From 93ae8c08b8e23909bdf60df4e77b20e8e46aa23f Mon Sep 17 00:00:00 2001 From: achingbrain Date: Tue, 7 Sep 2021 17:18:28 +0100 Subject: [PATCH 1/2] chore: move gateway response into gateway --- packages/ipfs-http-gateway/package.json | 15 +- .../src/resources/gateway.js | 6 +- .../src/utils/content-type.js | 52 + .../src/utils/dir-view/index.js | 82 + .../src/utils/dir-view/style.js | 16 + packages/ipfs-http-gateway/src/utils/path.js | 50 +- .../ipfs-http-gateway/src/utils/resolver.js | 75 + .../ipfs-http-gateway/src/utils/response.js | 105 + .../test/fixtures/.gitattributes | 5 + .../test/fixtures/test-folder/hello-link | 1 + .../test/fixtures/test-folder/holmes.txt | 13052 ++++++++++++++++ .../test/fixtures/test-folder/pp.txt | 120 + .../test/fixtures/test-mime-types/cat.jpg | Bin 0 -> 443230 bytes .../fixtures/test-mime-types/hexagons-xml.svg | 56 + .../fixtures/test-mime-types/hexagons.svg | 55 + .../test/fixtures/test-mime-types/index.html | 5 + .../test/fixtures/test-mime-types/pp.txt | 120 + .../test/fixtures/test-site/holmes.txt | 13052 ++++++++++++++++ .../test/fixtures/test-site/index.html | 5 + .../test/fixtures/test-site/pp.txt | 120 + .../test/fixtures/testfile.txt | 1 + .../ipfs-http-gateway/test/resolver.spec.js | 332 + .../ipfs-http-gateway/test/response.spec.js | 425 + .../test/utils/web-response-env.js | 31 + 24 files changed, 27772 insertions(+), 9 deletions(-) create mode 100644 packages/ipfs-http-gateway/src/utils/content-type.js create mode 100644 packages/ipfs-http-gateway/src/utils/dir-view/index.js create mode 100644 packages/ipfs-http-gateway/src/utils/dir-view/style.js create mode 100644 packages/ipfs-http-gateway/src/utils/resolver.js create mode 100644 packages/ipfs-http-gateway/src/utils/response.js create mode 100644 packages/ipfs-http-gateway/test/fixtures/.gitattributes create mode 120000 packages/ipfs-http-gateway/test/fixtures/test-folder/hello-link create mode 100644 packages/ipfs-http-gateway/test/fixtures/test-folder/holmes.txt create mode 100644 packages/ipfs-http-gateway/test/fixtures/test-folder/pp.txt create mode 100644 packages/ipfs-http-gateway/test/fixtures/test-mime-types/cat.jpg create mode 100644 packages/ipfs-http-gateway/test/fixtures/test-mime-types/hexagons-xml.svg create mode 100644 packages/ipfs-http-gateway/test/fixtures/test-mime-types/hexagons.svg create mode 100644 packages/ipfs-http-gateway/test/fixtures/test-mime-types/index.html create mode 100644 packages/ipfs-http-gateway/test/fixtures/test-mime-types/pp.txt create mode 100644 packages/ipfs-http-gateway/test/fixtures/test-site/holmes.txt create mode 100644 packages/ipfs-http-gateway/test/fixtures/test-site/index.html create mode 100644 packages/ipfs-http-gateway/test/fixtures/test-site/pp.txt create mode 100644 packages/ipfs-http-gateway/test/fixtures/testfile.txt create mode 100644 packages/ipfs-http-gateway/test/resolver.spec.js create mode 100644 packages/ipfs-http-gateway/test/response.spec.js create mode 100644 packages/ipfs-http-gateway/test/utils/web-response-env.js diff --git a/packages/ipfs-http-gateway/package.json b/packages/ipfs-http-gateway/package.json index 5bbf2fc9f6..e376d22d0b 100644 --- a/packages/ipfs-http-gateway/package.json +++ b/packages/ipfs-http-gateway/package.json @@ -45,22 +45,33 @@ "@hapi/boom": "^9.1.0", "@hapi/hapi": "^20.0.0", "debug": "^4.1.1", + "ejs": "^3.1.6", + "file-type": "^16.5.3", + "filesize": "^8.0.0", "hapi-pino": "^8.3.0", "ipfs-core-types": "^0.7.1", - "ipfs-http-response": "^0.7.0", "is-ipfs": "^6.0.1", + "it-buffer": "^0.1.3", + "it-concat": "^2.0.0", "it-last": "^1.0.4", + "it-reader": "^3.0.0", "it-to-stream": "^1.0.0", "joi": "^17.2.1", + "mime-types": "^2.1.32", "multiformats": "^9.4.1", + "p-try-each": "^1.0.1", "uint8arrays": "^3.0.0", "uri-to-multiaddr": "^6.0.0" }, "devDependencies": { - "@types/hapi-pino": "^8.0.1", "@types/hapi__hapi": "^20.0.5", + "@types/hapi-pino": "^8.0.1", "aegir": "^35.0.3", "file-type": "^16.0.0", + "get-stream": "^6.0.1", + "ipfs-core": "^0.10.5", + "ipfsd-ctl": "^10.0.3", + "it-all": "^1.0.5", "rimraf": "^3.0.2", "sinon": "^11.1.1" } diff --git a/packages/ipfs-http-gateway/src/resources/gateway.js b/packages/ipfs-http-gateway/src/resources/gateway.js index 2c6460f06c..70580a6599 100644 --- a/packages/ipfs-http-gateway/src/resources/gateway.js +++ b/packages/ipfs-http-gateway/src/resources/gateway.js @@ -7,10 +7,8 @@ const Ammo = require('@hapi/ammo') // HTTP Range processing utilities const last = require('it-last') const { CID } = require('multiformats/cid') const { base32 } = require('multiformats/bases/base32') -// @ts-ignore no types -const { resolver } = require('ipfs-http-response') -// @ts-ignore no types -const detectContentType = require('ipfs-http-response/src/utils/content-type') +const resolver = require('../utils/resolver') +const { detectContentType } = require('../utils/content-type') const isIPFS = require('is-ipfs') // @ts-ignore no types const toStream = require('it-to-stream') diff --git a/packages/ipfs-http-gateway/src/utils/content-type.js b/packages/ipfs-http-gateway/src/utils/content-type.js new file mode 100644 index 0000000000..2d98f6e9a2 --- /dev/null +++ b/packages/ipfs-http-gateway/src/utils/content-type.js @@ -0,0 +1,52 @@ +'use strict' + +const fileType = require('file-type') +// @ts-ignore no types +const mime = require('mime-types') +// @ts-ignore no types +const Reader = require('it-reader') + +const minimumBytes = 4100 + +/** + * @param {string} path + * @param {AsyncIterable} source + * @returns {Promise<{ source: AsyncIterable, contentType?: string }>} + */ +const detectContentType = async (path, source) => { + let fileSignature + + // try to guess the filetype based on the first bytes + // note that `file-type` doesn't support svgs, therefore we assume it's a svg if path looks like it + if (!path.endsWith('.svg')) { + try { + const reader = Reader(source) + const { value, done } = await reader.next(minimumBytes) + + if (done) return { source: reader } + + fileSignature = await fileType.fromBuffer(value.slice()) + + source = (async function * () { // eslint-disable-line require-await + yield value + yield * reader + })() + } catch (/** @type {any} */ err) { + if (err.code !== 'ERR_UNDER_READ') throw err + + // not enough bytes for sniffing, just yield the data + source = (async function * () { // eslint-disable-line require-await + yield err.buffer // these are the bytes that were read (if any) + })() + } + } + + // if we were unable to, fallback to the `path` which might contain the extension + const mimeType = mime.lookup(fileSignature ? fileSignature.ext : path) + + return { source, contentType: mime.contentType(mimeType) } +} + +module.exports = { + detectContentType +} diff --git a/packages/ipfs-http-gateway/src/utils/dir-view/index.js b/packages/ipfs-http-gateway/src/utils/dir-view/index.js new file mode 100644 index 0000000000..dcaa0464ac --- /dev/null +++ b/packages/ipfs-http-gateway/src/utils/dir-view/index.js @@ -0,0 +1,82 @@ +'use strict' + +const filesize = require('filesize') +const style = require('./style.js') +const { cidArray } = require('../path') +const ejs = require('ejs') + +/** + * @param {string} path + */ +function getParentHref (path) { + const parts = cidArray(path).slice() + if (parts.length > 1) { + // drop the last segment in a safe way that works for both paths and urls + return path.replace(`/${parts.pop()}`, '') + } + return path +} + +/** + * @param {string} path + * @param {({ Name: string, Tsize: number })[]} links + */ +function render (path, links) { + return ejs.render(` + + + + <%= path %> + + + + +
+
+
+
+ Index of <%= path %> +
+ + + + + + + + <% links.forEach(function (link) { %> + + + + + + <% }) %> + +
+
 
+
+ .. +
 
<%= link.name %> + <%= link.size %>
+
+
+ + +`, { + path, + links: links.map((link) => ({ + name: link.Name, + size: filesize(link.Tsize), + link: `${path}${path.endsWith('/') ? '' : '/'}${link.Name}` + })), + parentHref: getParentHref(path) + }) +} + +module.exports = { + render +} diff --git a/packages/ipfs-http-gateway/src/utils/dir-view/style.js b/packages/ipfs-http-gateway/src/utils/dir-view/style.js new file mode 100644 index 0000000000..9e1548741a --- /dev/null +++ b/packages/ipfs-http-gateway/src/utils/dir-view/style.js @@ -0,0 +1,16 @@ +'use strict' + +module.exports = `html{font-family:sans-serif;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}body{margin:0}a{background-color:transparent}a:active,a:hover{outline:0}strong{font-weight:700}button::-moz-focus-inner,input::-moz-focus-inner{padding:0;border:0}table{border-spacing:0;border-collapse:collapse}td{padding:0} @media print{*,:after,:before{color:#000!important;text-shadow:none!important;background:0 0!important;-webkit-box-shadow:none!important;box-shadow:none!important}a,a:visited{text-decoration:underline}a[href]:after{content:" (" attr(href) ")"}tr{page-break-inside:avoid}.table{border-collapse:collapse!important}.table td{background-color:#fff!important}}@font-face{font-family:'Glyphicons Halflings';src:url(../fonts/glyphicons-halflings-regular.eot);src:url(../fonts/glyphicons-halflings-regular.eot?#iefix) format('embedded-opentype'),url(../fonts/glyphicons-halflings-regular.woff2) format('woff2'),url(../fonts/glyphicons-halflings-regular.woff) format('woff'),url(../fonts/glyphicons-halflings-regular.ttf) format('truetype'),url(../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular) format('svg')}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}:after,:before{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}html{font-size:10px;-webkit-tap-highlight-color:rgba(0,0,0,0)}body{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;line-height:1.42857143;color:#333;background-color:#fff}a{color:#337ab7;text-decoration:none}a:focus,a:hover{color:#23527c;text-decoration:underline}a:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.row{margin-right:-15px;margin-left:-15px}.col-xs-12,.col-xs-2{position:relative;min-height:1px;padding-right:15px;padding-left:15px}.col-xs-12,.col-xs-2{float:left}.col-xs-12{width:100%}.col-xs-2{width:16.66666667%}table{background-color:transparent}.table{width:100%;max-width:100%;margin-bottom:20px}.table>tbody>tr>td{padding:8px;line-height:1.42857143;vertical-align:top;border-top:1px solid #ddd}.table-striped>tbody>tr:nth-of-type(odd){background-color:#f9f9f9}.form-control::-moz-placeholder{color:#999;opacity:1}.form-control:-ms-input-placeholder{color:#999}.panel{margin-bottom:20px;background-color:#fff;border:1px solid transparent;border-radius:4px;-webkit-box-shadow:0 1px 1px rgba(0,0,0,.05);box-shadow:0 1px 1px rgba(0,0,0,.05)}.panel-heading{padding:10px 15px;border-bottom:1px solid transparent;border-top-left-radius:3px;border-top-right-radius:3px}.panel>.table{margin-bottom:0}.panel>.table:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.table:last-child>tbody:last-child>tr:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.table:last-child>tbody:last-child>tr:last-child td:first-child{border-bottom-left-radius:3px}.panel>.table:last-child>tbody:last-child>tr:last-child td:last-child{border-bottom-right-radius:3px}.panel>.table>tbody:first-child>tr:first-child td{border-top:0}.panel-default{border-color:#ddd}.panel-default>.panel-heading{color:#333;background-color:#f5f5f5;border-color:#ddd}.row:after,.row:before{display:table;content:" "}.row:after{clear:both}@-ms-viewport{width:device-width}.ipfs-_blank{background-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAWBJREFUeNqEUj1LxEAQnd1MVA4lyIEWx6UIKEGUExGsbC3tLfwJ/hT/g7VlCnubqxXBwg/Q4hQP/LhKL5nZuBsvuGfW5MGyuzM7jzdvVuR5DgYnZ+f99ai7Vt5t9K9unu4HLweI3qWYxI6PDosdy0fhcntxO44CcOBzPA7mfEyuHwf7ntQk4jcnywOxIlfxOCNYaLVgb6cXbkTdhJXq2SIlNMC0xIqhHczDbi8OVzpLSUa0WebRfmigLHqj1EcPZnwf7gbDIrYVRyEinurj6jTBHyI7pqVrFQqEbt6TEmZ9v1NRAJNC1xTYxIQh/MmRUlmFQE3qWOW1nqB2TWk1/3tgJV0waVvkFIEeZbHq4ElyKzAmEXOx6gnEVJuWBzmkRJBRPYGZBDsVaOlpSgVJE2yVaAe/0kx/3azBRO0VsbMFZE3CDSZKweZfYIVg+DZ6v7h9GDVOwZPw/PoxKu/fAgwALbDAXf7DdQkAAAAASUVORK5CYII=');background-repeat:no-repeat;background-size:contain}.ipfs-_page{background-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAmhJREFUeNpsUztv01AYPfdhOy/XTZ80VV1VoCqlA2zQqUgwMEErWBALv4GJDfEDmOEHsFTqVCTExAiiSI2QEKJKESVFFBWo04TESRzfy2c7LY/kLtf2d8+555zvM9NaI1ora5svby9OnbUEBxgDlIKiWjXQeLy19/X17sEtcPY2rtHS96/Hu0RvXXLz+cUzM87zShsI29DpHCYt4E6Box4IZzTnbDx7V74GjhOSfwgE0H2638K9h08A3iHGVbjTw7g6YmAyw/BgecHNGGJjvfQhIfmfIFDAXJpjuugi7djIFVI4P0plctgJQ0xnFe5eOO02OwEp2VkhSCnC8WOCdqgwnzFx4/IyppwRVN+XYXsecqZA1pB48ekAnw9/4GZx3L04N/GoTwEjX4cNH5vlPfjtAIYp8cWrQutxrC5Mod3VsXVTMFSqtaE+gl9dhaUxE2tXZiF7nYiiatJ3v5s8R/1yOCNLOuwjkELiTbmC9dJHpIaGASsDkoFQGJQwHWMcHWJYOmUj1OjvQotuytt5nHMLEGkCyx6QU384jwkUAd2sxJbS/QShZtg/8rHzzQOzSaFhxQrA6YgQMQHojCUlgnCAAvKFBoXXaHfArSCZDE0gyWJgFIKmvUFKO4MUNIk2a4+hODtDUVuJ/J732AKS6ZtImdTyAQQB3bZN8l9t75IFh0JMUdVKsohsUPqRgnka0tYgggYpCHkKGTsHI5NOMojB4iTICCepvX53AIEfQta1iUCmoTiBmdEri2RgddKFhuJoqb/af/yw/d3zTNM6UkaOfis62aUgddAbnz+rXuPY+Vnzjt9/CzAAbmLjCrfBiRgAAAAASUVORK5CYII=');background-repeat:no-repeat;background-size:contain}.ipfs-aac{background-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAnhJREFUeNp0Uk1PE0EYftruVlvAUkhVEPoBcsEoLRJBY01MPHjCs3cvogcT/4qJJN5NvHhoohcOnPw4YEGIkCh+oLGBKm3Z7nZ3dme2vjOhTcjiJJvZzPvOM8/HG2q325Dr3kLp7Y1ibpIxjs4KhQBZfvV6s7K5Vb0bjeof5ZlcGysP1a51mifODybvzE8mzCbrAoTDIThMoGXZiZ4YSiurf+Z1XeuCqJ7Oj+sK3jQcNAmg8xkGQ71mYejcAB49vpmeuzJccl0+dUj6KIAvfHCPg3N+uAv4vg9BOxcCmfEzuP/genpmeqhEMgude10Jwm+DuUIyUdTlqu2byoMfX/dRermBeExHsTiWNi3+lMpzRwDki8zxCIATmzbevfmClukiP5NFhJgwkjeRTeLShdOoVJqnAgwkgCAZ6+UdLC9twjQZ8pdzioFkZBHY3q6B3l4dJEEEPOCeD4cYVH7Xsf15F+FImC775INAJBJSkVoWo0QY9YqgiR4ZZzRaGBkdwK3bFxGLRZUfB3Rm2x4x9CGtsUxH9QYkKICDFuLxKAozGZwdTqBRs2FbLlXbiPdECMCHadj/AaDXZNFqedCIvnRcS4UpRo7+hC5zUmw8Ope9wUFinvpmZ7NKt2RTmB4hKZo6n8qP4Oq1HBkKlVYAQBrUlziB0XQSif4YmQhksgNIJk9iaLhPaV9b/Um+uJSCdzyDbGZQRSkvjo+n4JNxubGUSsCj+ZCpODYjkGMAND2k7exUsfhkCd+29yguB88Wl7FW/o6tT7/gcXqAgGv7hhx1LWBireHVn79YP6ChQ3njb/eFlfWqGqT3H3ZlGIhGI2i2UO/U/wkwAAmoalcxlNA1AAAAAElFTkSuQmCC');background-repeat:no-repeat;background-size:contain}.ipfs-ai{background-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAk5JREFUeNpsU01vElEUPTPzZqBAQaSFQiJYUmlKYhoTF41L3Tbu/Q/+AvsX3Bp/gPsuWLrqyqQ7TUxMtAvF1tYGoXwNw7wv7zwYgtKX3Lw379575p5z77O01ohW+/DVh8zj7aYKhflGdG9ZsGwLNydffgVfr19YHvsEa+Zu/nxndob5StQK+dyzvZzyw/gKlmMj7IygFM+xvNcanp4/t5dAomXHBy2UUBOO2MAl/B9/cPb6PULuoHx0WM0e3GvpUOxD3wZAJWutZqYUYmqpSg5OMgH3YQObL59W0/ullpryR3HegkKEqiWBSGV4R3vQ7sIhScTZFTpHx3A215B5sluVY/WWMg7+ATB/lcLsKpTonHzD+OMFEuTz8ikkt9Kwt9YJZB38cpBdoQAZJdLvCGByfoPB6Xdk90pYy6Xg3c/DaWwArg09DaG5lCsUFN0pckZAojdC8m4auBqaALuSgez7VB1RtDSUWOQvUaBLFUzJBMJ2DwmPgd1Jwm0WoSgJfjDvrTKxtwAIyEkAOQ5hU//Zdg5uowDlUNMnwZLW0sSuUuACYhwQRwFvJxupCjEYUUccOkoaKmdOlZnY1TkgAcXAhxhOwLsDsHoN3u4O5JTDfVCH6I9nfjId3gIgSUATFJk/hVevGtOMwS0XwQ3AzB/FrlKg8Q27I2javVoZrFgwD4qVipAEyMlnaFArzaj/D0DiMXlJAFQyK2r8fnMMRZp4lQ1MaSL5tU/1kqAkMCh2tYI+7+kh70cjPbr4bEZ51jZr8TJnB9PJXpz3V4ABAPOQVJn2Q60GAAAAAElFTkSuQmCC');background-repeat:no-repeat;background-size:contain}.ipfs-aiff{background-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAohJREFUeNpkU9tqE1EUXZmZpE3aTBLbJFPTtFURtSCthr7UCyKKFJ/9An3og6Ag/oXfoUj7og9asCBYKT6UIPHaWtpq7NU2aZK5z5wZ9xxMpMwZDuewz9prr32ZiO/7CNaDx3OLt6fOjBqGg/aKRCIInp8+KzfKH7fudnVF58nE16el+/yU2mBFSWZKpWJKVc0OgUBo02K4NDmU6o75Mx+Wdu9IUXFeiOA/pn1xHeYaugVDdzpbp91qGlAKGTx8dC19/Wpxhjnsxj/RRwk85hGJC9d1O6fneWAuoztDYSSLe9OT6SuXB2ccx73Z9uukwDwfls1g0xZIY/Ad/Gnyt/XVfbyYrSDRE8PExHB6/8B6QuaxIwRBFMt0iIAiMx+LCys8jfGJEUik2WpZOD2SQf9oDtVqQwopCAiY66FS/om3b75CVS2MlU7AJ2WiJBCZjZ2dJuRkDJZFwFAR7UCBja3fNfxY2YEoCtRCj9em3Tpds6FpJseGCBxS0GgYGBzqw62p84gnYnAI2CSbSbPhEpFAaE2zODaUAlWWwDoS5DheGqbWpVE/0CmqCY9qkEyINBceb2uADRNQ8bSWAVVzIFKomCQim+0luS4yKYlsHlRyZo7EsSEC23K5vAsXh/H92zZkuRvxeBS5nEx2yp2KqhxPoV5TYS/8CtdApylM9sZQKKSQzyeRTseRV2QoAzIYY8jme5DN9fI0dQoUIjANGydP9VM7PZw9p/AiBpNYrdbw/t0yTJqRtdU9UrfJCUMpSJIgbWzsYe51BcViHzLHeqCRqhZ1YX1tFwNfZBxS9O3NWkAcHqR606k/n/3coKAoV/Y7vQ/OYCZevlrmv3c0GsFh06u3/f4KMABvSWfDHmbK2gAAAABJRU5ErkJggg==');background-repeat:no-repeat;background-size:contain}.ipfs-avi{background-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAm1JREFUeNpsU8tu00AUPXZcN0nzTpq2KQ3pAwkIAnWHqCoeexBb+AQ+ABZ8A2s+AIkdm266QUJIFWKBkHg1KpRHi5omJGkbJ3bGHj+4M1EQrTvSyGPPueeec++1EgQBxHp+/9mbyuriRZdxjJaiKBD3W+u1+p9a856max+gDO8ebT+WT20Ezi9NZi/crqadvn2MQBAGfpCOpqNru2937vxPIpY6Onjccx3Twck9MBiSU0ncfHirXFmZX3Md9wqCUwiEVN/zaQfHt0vfbBe5uQyuPVgpl5Zn11ybL4/i/lkICOw5niQRGQShoiqI6Bo43W2ub8n3hRtLZT7gTynk6gkCX9gAOxpAnxhHZDwC1/aI1EViJolu/QhKRMHZ1UX0Gr1USIEn5FPWHy+/wTokkrQOq2vBaHZBN4hmY9Jwfr4An/teiEB45ZZDwDiMhoExT0N+sYDCuUkkplLIlXP4/XEXdo+RUhdhBSSfUwtVTUG8MIHK9QVqI7D/uY6vr2pwmCPrkz+Tk9gwARWQ9WxppbXZhNnpw+ya4A5HZi6L4lIR8WyCcL6sTZiAWjWgAmpxkn5+kqTamK6WkCwmERmLDLvjB0ML9ikWXPLFuozYOap3L8HYN6DHdbS/d5CeTVBndBz87FCBLYkNTyIjBQemnIEsSY5lYrK1+UoWcToLMjEHAyIQ2BCBSx/NVh+ZUhrqmEqBebS3WyhdLg0zt/ugAaIklsSGLHCLa6zDMGhZ2HjyGsnpFPqNHnY2fmHv3R5SMymYbROszSQ2ROAY9qHiofvlxSc5xsKKqqnY3diRE9h4X5d/pzg7lnM4ivsrwADe9Wg/CQJgFAAAAABJRU5ErkJggg==');background-repeat:no-repeat;background-size:contain}.ipfs-bmp{background-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAmZJREFUeNp0U+1rUlEY/13v9YV0vq2wttI5CdpL9aEGBZUDv0df668I6n+or0UQ/RuuD0EgVDAZrsKF4AR1a6COKW5qXvXec27PuVeda3bgcF6e8/ye5/d7niMZhgExnK9fbTrm5pbBGMZDkgCyq+VyhTUaT6Eo2ZHJePPWXJXRhez3B1yxmM/QdctXUSCgtV4Py4CvY3cky4e1x5DlLCaGbbzjXDcousG5OQe5HPRSCQPK4PpsEM/XH4WvhS4noeu3JwHGGRiULhsMoKZS4I0GtEIB9mgULJGA0+9DPBpBT7sffvf1W/Lg6OgJufw8C0CRGEXWazUwiiyFQjA8bsjVKjaJzovMD/Q5gxyJhG2cvyeXe2cAuADQNGBmBvLaGuTFRaDfh31lBTWi9pumjbK0B4JQul3vOQpM8JdskOLrdCvDcDjAsjtg5TIkoiKLaokMNR2cnZbqNAMycqG7XbHKR2fMzwO/dsxSwu0BiBJsNsv2LwAJAJCI5ux2gXYbqNetcz5PoORI1cDS0n8AxGW7A+zvEYBKZ2ZlcsEtJLbedMjePBaCTQMghx45ulyWkzxMVUQ2RMQhLfFO16YAqCrixPnm6iqKrRb2W23EfF4cUNSrHg90cr7hDyB33MTnSmUKALVs4uIlROjxg+AsPhGVl3fuIl2tIOB0Ya91gkOi9mxhAal0ekork1ic/kGLBORMxy2K1qS9V1ZQbNThIj2EGh+2tsyOnSai8r1UxMNIBB+LRTTULr4Uds0K1tU/uOLxIrmbNz8XXSrnASSpubG9fbKRyVh1n/zSw29t9oC1b47MfwUYAAUsLiWr4QUJAAAAAElFTkSuQmCC');background-repeat:no-repeat;background-size:contain}.ipfs-c{background-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAcxJREFUeNqEUk1rE0EYfmZnkgoJCaGNCehuJTalhJZSUZB66a0HwXsP/Qn+FM+9+hty0LNYCr2I7UVLIW0Fc0hpQpSS7O7MrO9MspuvVV8YMnk/nn2e5x0WRRFMvP/w6WSz5jbi/9NxfP693Wp3DrJCnMW5d28P7a+IE15lufR8o1ZEStwPhkWHsWbrZ+eNEPxsuubEF6m0TBv2Q4liPofXuzveulttSqW2UwH+GjqC0horpSL2njU89+FyMwjlTlxOJMTa9ZQHzDQIjgwdom9zLzfXPc75kbnOAswBJTlC2XrqQRMLxhi442DgB4UFBhgPpm3B5pgBHNUUxQKAHs8pHf3TEuFMetM9IKr/i2mWMwC0SnuSFTG2YKyppwKYVdGO7TFhzBqGIenVeLCUtfURgErucx5ECKREKBU4d3B718PHz6cICGT/1Qs8qpQtGOdyhtGEARWDQFqQJSeDL98u4VbLaKw9IRAJPwjtoJGlVAoDQ800+fRFTTYXcjlcXN2g++s36p5Lzzlve1iEROa8BGH1EbrSAeqrjxEqicHQt8/YSDHMpaNs7wJAp9vvfb287idboAVkRAa5fBYXP9rxO4Mgf0xvPPdHgAEA8OoGd40i1j0AAAAASUVORK5CYII=');background-repeat:no-repeat;background-size:contain}.ipfs-cpp{background-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAfJJREFUeNqEUs9PE0EU/mZ2WgqpXX+QIDFdalVslh8NlAOQaOKFAwfvHvwT/FM8e/U/MOnBmwcj8WD0ACEGghIkbU0baaEthe3OTJ0ZWV26q37JZt68ee/b9733yGAwgMbL12/fz+azbnAPY2Nrt7Zfqz9JMrYZ+J4/e2pOFjiciRvXlgp5GzHonXk2o6S8V6k/TjBrM/xGA4MLyeOSPZ8jkx7D+uqCU3Amy1yIYizB36AlCSkwfjWDR4uu40yMl/s+XwjeWThQQ4Z6QNSnSkYykcDXasP4lmfvOZTSF9q8TDBEFPbN5bOqCglCCCxK0TvvZyIV4CIxbgpC+4gm/PUmFCIE8iJPyME/e8Lon9j4HvyHYLjKSwRCSEUgf9+15mFbx8QS6CZJMzJ9SlBCwX3fJDLG4PX7ykcwkmQmJtpEhWa7g1dvNlSwjwelebz7tAXLolh0p/Fxe9fErK2WDFGEgKjxfNjegX0lDTc/heNuF99/HGEslcKXwyoazWNDdlCr6+DoJgrBzdI0T9rYO6yg2zszMlaKM3Dv5OBzbuyZuzm1B16U4Nzz2f3cFOx0Gq12F9cztpExncsqYoaHpSIKtx0zJdVIFpHQ6py29muNk1uTN829o/6SHEnh80HFaE6NjmLnWxUJy1LyTltB3k8BBgBeEeQTiWRskAAAAABJRU5ErkJggg==');background-repeat:no-repeat;background-size:contain}.ipfs-css{background-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAk1JREFUeNpsUktvUlEQ/u5DoCLl/RAKKKUvWmIxjYntQtcu3LvwJ/hTXLt16coFC2PsojEaMKZtCqFaTdGmjbS0CG3By+vei3OOBSGXSU7uzNyZ78z3zRF6vR6YvXzzPrMUCyf68bB9zO+VfpROn5hkOdfPPX/2lH/lfiLidztX5mN2jLGG0rKLENIE8liWpdzwP7HvqJqujmvudFU4bFY8Wk1FZsOBtKppd8YCDNu77CZevd3gflfTUFcUhP0ePLibiIR9rjSBpgwAfe4dVcV6dhtep4PH5msylGYLrzeybErcT85FYiH/CyPAf74gObC2vMhzsiRhPhpC6eQUM+EA1pJzILEnjRSuJsju7MJqsUCSRei6Dp3yXqcdGlHZ/rLPazQWGCn8+6YW4pAkEW0SjzUzanWlCa/LgcR0lNfovTEi6lcIkzesnM/R8RlN0INGp3h4DHoDsE5YRvQyiKiRSMzikRAOS2WoqoZWu41K7RwzlOOAVDMMMHhIGvFlRxJFrKYW0ep0IYgC3SDh4b1lTJjNfENsrazOAMAw680mPuW+8lFno1P4XDigRhOiwQAyJK7TbsNS/PaA7giAIAhYz2yRgBIfsVA8wIetPG6FAqhdNrC5u0f+TUyHgyMTDDToEt/ftQsEvW4EPG5OZcrvw0mlimarTXkPfpXPcNlQoGtjACgpryQXsPNtH/nvRXqBJpoKHMzGNkNB0Odls7LNyAYKpUq1dt1iuvB7fRDp9kr9D1xOFwkpoksXusmXaZWFn0coV89r/b6/AgwAkUENaQaRxswAAAAASUVORK5CYII=');background-repeat:no-repeat;background-size:contain}.ipfs-dat{background-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAfVJREFUeNqMU01PE1EUPe/Na0uptmlASg3MoiZgCA3hQ8PHAjbqwsS9C3+CP8W1W/+BSReyYUPwI4QAVkAgUEgIbVIg1FZb2pl5b3zv2cHBjsaTTOa+e989OffcGeK6LhTevFv+OJoZHPHOfrz/sl86KpWfhxnLe7lXL1/oN/MSZqonOXU/k0AA6lfNhEFIrlAsP2PMyPtr1AscLpyg5pbtIHErhqez4+awmc45nI8FEvwNaiQuBHqTcSxMjJhmX0/Osp1xr878FxWEzwMinxAzEA4xFIpnOjedHTKpYbxW4U2CP4j8uWxmUKsghMCgFI2mFe9QgHZj0Ba4yhFF+KvGJToIRLuPC/efnjD6+26wB1Lq/xgbSCBXKeWJG/OTdky8cWTdT3C9RmWSGk2XCLlWo4xTNbfN5qh7PpXM72GjZeHt0gpq9QbmH4whGb+NpU/reDQ7hcWVVXxvXOHxzCQopQEKXKEbL6o1ZIcy+LC5g62DY2zsHeC0fA4zndIrHOjvg2XbAQRSfsuy9XxC2qzi/H5B6/68W0AsGkW0KyJPBLbDO0fg3JX/CUM81i0bD6WKe6j9qOPJ3EMcF0tSNsFA6g6alqW+VtZBUL78Vtk+Oqne7U9rs5qOQCjSheJFBeFIFOfVujSUYu3rIc4uqxWv76cAAwCwbvRb3SgYxQAAAABJRU5ErkJggg==');background-repeat:no-repeat;background-size:contain}.ipfs-dmg{background-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAn9JREFUeNpsU01rE1EUPe9lkk47yWTStCmtNhFSWxos2EXVhSsRcasuxYV05V8Qf4DgD/AvCK5EV1oFI7iUBqmCNdDvppq2mWSSzEzy3vPOpFFq+uDNfR/3nnvueXeYUgrBWH1/9/NE7k5BKRnuRcfF2qdnmJq9DeF9tQ+2isuMsxXGWHh/a1mEVsPJSI5fSU3OPEj291IIlN49RXz0KqzEQjIeZS/L5Y/3wPGhDxIM/i/A7fZWgVG0t5EaG0ZUa0JGM8gvPrZmLt58QYwv91mfAqCIE0sAqgumBFITGQzpUYhuF0KfRa7waDyXXXolpVrsh/0tgSLDr5I+wUZo1UHCSkAficPzY6juFSmbRPrC/azjq+fkcO00gAqoU7B0ETKkfWbuCTjTYeq5oESAauexcTScX+ZACWFm0YQSLZKhHdr67+/wW0e0dgjYo3sCEXXybYtBDVSHLp2es3IpsILS24c42lkBg6DzRjgRzCDZ/xr0GNRJwwYiWgzt+hYMawleu0V3wbkT+kUirOc7IGJAz68R/Qak1BAlx3hqASPGBJRXpXOv58dkz3eAgQoOm4hyj57NgZm0MHvpBmK6QdUdg/DAg9cRkhicBSDaKJdeo1bdxmR2DtWDDUxl51HZ+QHTysD3XdQO95Gfv06aeGcAdBrY3Chi8lwO3768QWX7J5q1XWyVSxgajiOXLyBG2hzurRKV9lmt7ISNkkjo6HhNyjoK+2gXRsKE57ZIE2ot10Z1fz0Ue4ABVw3NMjnW14rInh8jTYywoTg3EOFpOM4mXNfH9PQUfGlrAwBOs3I8ljbtuMWhRWzIIPrkn+GcYcgIWEowbZ+0qB334/4IMADESjqbnHbH0gAAAABJRU5ErkJggg==');background-repeat:no-repeat;background-size:contain}.ipfs-doc{background-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAppJREFUeNpsU79PFEEU/mZ39vZu77g7DokcP04BBSUmiEKCSCxs7Ei00JAYO2NlTKyMrX+CJhaGwopSQ0dMtFEsbDRBgiZEQIF4IHcg+2t2Z8eZ5QDlnM1mZ9+8973vfe8NEUJArfSNhzPG0VIfeIiDRSDkw1cWVt3N8rhG6SdSO2Gvn8dfuueqZwuNZqk3Jxg7iNcIfBbgXD6ZC8u5qffzX8eoYeyDxC77uygKhcouovgVUQj1H4YB2ovNuD9+tTTU0zMVBmG/+C8AIYh8F361DL/yE5HnADKYlVdg6MDAmW7cuz5WGuw+PsWDYGAvbL8ECFUt4K7/AHd/I9c7BLaxinD2Ld5Zo7g78RLuRhlBS2cpWbGfStfhfwCEpK0nUjCbWuGsLciSOELPhkq/YgdY3l6HsLfRcLYf+pHNbH0JigEPkLAyMsiEJ7NrqQzM1i7wyhoMZqOhvQs6Z0ovXgdAJACRoulEg5HOwrOroKk0zOY2BDtVpTF0CU6kLkQJXa+BNEoG0lMSsBBKQXWNQktmoGcaYeSaQCIVWOvUYQAiWZFQtk5mSMoSzEILtBrTfEcviC5bwVwQmoh96wA0ic5dB57ngeoaTIPCdb34zDITYNLOOIeVSsW+dQC+7+NSWx6jJ4tY/rWNV7PfcGv0tBoPTM7M4eKJVgx2FTE9u4QPS6x+kHzfw/mOAjarW2hJG3hy8zIceweuY+PRtREMdzbjzcd5WBqPB6xeRGUMGRzHjWvMmxQ7tiOF1JBN6FiTd6Sy9RuFbHpX7MMMqOD088Ii+op5OUAO7jyeRGfBwrF8Cg8mXuDL4neMXzgFwhwZz+hf7a9d5yu3Z6DTPjVQIY9k7erO7Y63Lvc8ErEeyq6JaM6efjai4v4IMABI0DEPqPKkigAAAABJRU5ErkJggg==');background-repeat:no-repeat;background-size:contain}.ipfs-dotx{background-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAndJREFUeNpsU01rE1EUPTPzJk0y+WhMStW2qdVWxUVEQUF0I+4ELQiC7lz4N9z0T+hG9wrdZKUgLqulhrbSag1CKpT0g7RpYjqZmffle5NEKdMHlzfvvXvPPffcO4aUEno9f3Vt4dTp+BXOe+fB0u/NbVpv7h89NU1j1TCM8H7+xY9wJwPHZMbOjRadLAvE/2gToJTiTPx89k+OlVd/LT+0TPIPpO/SzyQk40xCMxBSZ9Z3CoAx5DOjeHT7SbE0XSpzwa8OWB9jINELolQg8AR0EgUKn1PIlIWpkUt4cPNxkTOU12trs8p95RiAXpqaztqou8q6SKQJJmZSqGwsodFsIJk1kcyLYv7IeafcLx4HUNkFF4jFTExMZ0B9DrfD4HUEusYhWs4GPEJg5wly/tBYRIOeDhpEwlS34xcyajdQr3UwOT2MlJOEBRuGNHWp9AQRVXDfQiFV/U5GBSiQ5p6ngBEa5z3fiIhC6g6IMDBwOdoHPkYnHPVyhN0tF7E4QSpr94CEOKELffq+y9Bq+DCJ7rWBoQQBVbPR2O6G4OlsLASJMtCZfQqm0NP5IVWnamdAkUxbyuIYtD7wWegb0YAzAVMkkI6NwPM9xEwHloyDGAmk7AKS9rAS0FKOdugbYeAHPu7OPEM+MY7q3hIKqTFQHmC3XcONc/fxdfMDrk/ew/edzyhvvTmBAddocVRqH3Frahau56qpZDho7+PnTgXffi/gbHYmLEvPSIQBp5JU62sYz13G609zKBXvoOMdYn2zgm7Xg2MVML/4Eu3uPgxhk2gXmNl8v/i2pcXTP8tKdTEcbWLZqDQXwu/l6pfwbEnSGsT9FWAA4mdHv2/9YJ4AAAAASUVORK5CYII=');background-repeat:no-repeat;background-size:contain}.ipfs-dwg{background-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAoFJREFUeNpsU0tPE2EUPfOg006hD4rQh8WgbCSwkKgbF2owujaCiQsXxpX+D6MmbtXEsHCLmIAbE6NLo8YlGIxREIshIqVl+mQ6j8/zFVCb4UtuZua795577rl3FCEE5Bl79vPd5LHYiOP7cH1AUWi85ytmvlas1bJ9E5ryBntH3BpuP/X9i7ovkluuiE8N9SDepaLpCcRCCqa/VDCaMuIjSWP25Upl6n+QDoCz6Yh7KKzh3sI2LuUimPtRRyaqodj0MDloYiITSTi+mH29Wu0AUf9CsZPJoW5czJl48LmCc5kIKo5Al67B9gUGYxrun+5NnMlFZ+GKiQADj2a7AquseLIvjMv5KMaSBu4sWVir+3i8VIVKYSby0UTdFU8Znu8AYBHQgVOJEN5uOXi4UsdawwU0FSf6TaSoyw6DRvukPkgGWpDKy4F8a3jImCrqFDFn6rhKPR4VGnhvOTAY3WLcjifcQAsqRfhUc/Gq1MKNbBh9nIAMDjEppocxs9HCMktfGTCwP/oOBkUKNk/qF3pDYC6Ktk8RfWzyaaoKrqdDaBDwya8W1m0/CPCR3kFy7CcnmWQRUJqcRJFUKtTnPCeR71LwoeYF92CYyVnCFZpCTrRtCv5to2St8SOrKxiPqEEA4fkYT+mI0rdoeUiH1XZVuQPpsIKqw2QmfifTsnOABiWySlH9uU0Hh2MqjsZV5LtpPSoGeN9rKnhBX7ehoOSLIIPfnGONXGMMWN7xUfVldYDbjM3mrh5HCDgS17DhHgDQcIU+XbBxnDTn1x1UuQcJ9iv7l5Q5e1zLGri92EDJFnoAgHtcfr6wbbVXUqq193+0z97n3UJt1+d51n7aHwEGAAHXJoAuZNlzAAAAAElFTkSuQmCC');background-repeat:no-repeat;background-size:contain}.ipfs-dxf{background-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAo5JREFUeNpsU0trE1EYPfNMmtdoH2kDNmJbaVFcaBVFpAsREQpFwY0bu3HjQnTj1mVd+ANcuC3qQixmry6E0kWFVIQ+bKy2tbFJm3emyXTujGca+4DkwsedfLnn3POd77uS67rw1vC79ek7fZEzpu3AYUqS9tKQGZPLpa3VXP0uFCmJ/8t9OLC3q/uJbcs5bkIybvdHoMsSbLKENRmvU2WcNnTjRFD7ML1WGSPJHI6sA4KRWMAWVDPxLYex3iCmfpuIh1QsFSyMxQO4GvXHHwOJ6XWSyIck8v6HQsnjAxFc7vTj2VwBg4aG78VdBHQFCk+dbVcxMdwev9gTSEC455sIBOu2KLsoJFzqasP9vjCeDBlYqzn4VXXwarGKZN7Crd5QfLDT/7KpBM84c9fFUFjFp2wdk6smflRsKKqMa7EgfJJ3Ac2OKlit2pEmBTQfngdpnupoU7BUtRGiiTe7fXiRqmK+KuDn6TpvYogmBRJcrOwIJLIWxmM+dOsyLKryQAaJpjJ1/AxrGO3SqdZt7kKZJrzJWBg5piHENuY8vV6e0UOye1TyftvC5l+gZB8SHJTwpSx4q4JeTUKaxhXoR57h7Rn+3iFolJ3xvPhab6HgJG/pJ7jsNP4sUX+jZiCgEsWd/DjH5IrSYpBUAr0yHpzSoXKOP25a6OBhndh0zcX1qIYM2RIbu6i0KiHD5B/GTMHG03kTGpEL7H80wHFOWwhqDZ+SpkBOtCDYJDhZE4gRcKNbYynAqbCMbXpwpVPFbEng0aKJGbYzK1p4wIegLlcEPmdt+DjXbzcsxFlCynRwwVAwW6hjqeg0Zt521SYCWCJvbe0Un29UDx7Hgrs3IEitHXkw3jOv2fl92D8BBgAJeyqBh90ENQAAAABJRU5ErkJggg==');background-repeat:no-repeat;background-size:contain}.ipfs-eps{background-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAmlJREFUeNp0U01vElEUPfMFCEVArdoSqEA0KV246UJdUJM2Lo2JK/9FjXu3utJqTNz4D9worrsQExbFpAFT0TYp0CZ8pIAiyMfMvBnvm2Foa9uX3Lw7c98979x77hNM0wRf7ufPsq7Z2SQYw2QJAkDxQalUZa3WI8hy3gmZr15bu+z8kILBkCeRCJi6bufKMji0NhwiCQR6iitdatTvQ5LyOLLEiWcYukm3m4Zhmbq1BX13FyoxuH7xAlbvpqKRK1fT0PWbRwEmDEyiy1QVg/V1GO02tO1tKLEY2PIy3KEAlmJRDLXb0TeZL+n9g4MHlLJ5HIBuYnSzXq+DlcsQLk/D9Hoh1WrIUjlPcpsYGQzS3LWoaBhvKeXWMQCDA1D9pt8PaXERUjwOjEZQFhZQp9L2yERiqYRCkPt/z58ogTGqHQLE1BLgUmC6XGD5AlipBIFKkbhanKHGYLBDqQ4ZED0OAbfLlo8OIxwGvhVgyTHlA3xkomjH/gegBgDURMv6faDbBZpN+/tHkUApkdTA/PwZAPxntwdUyjYA/+ZMqJHjLgM9iv/6zRt2GgMaIE21aVIjnSm0DGPfmhzyde0UAE2Dj+p7urKCPvkZku9eJILOSMUnkvVhIo7GYIB3xSKYdhoA1erXGVKXpvFxZwdBonnD68PQ7YEwM4O4xwMPxc8RYE87g4FIcz+kvfmnA0YzIJIy77/m0OCqsTkkCTysKPjJG3viLei63Gm3kCO6UWqcMejjxecMPmxsoFKtYop6UNirYL9Wtc5OHqzznIXHq1na7OfMJROcK8a6O7MjW7nfzZdrd7jzT4ABACh3NGsh3GcdAAAAAElFTkSuQmCC');background-repeat:no-repeat;background-size:contain}.ipfs-exe{background-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAo1JREFUeNp0k8tPE1EUxr+ZzvRJO62lUAQaKIQ0FVJFjBBdoIkrDDHuXJi4NnHtX+HCjW408Q/QmHTRaCRRohIJifgiiBICTQu29mHfnc7MHc+MlECKdxZz595zf+c737nD6boOYzxJLC6Nhwej7e/24HkO779s7G6mMjcEwfKZ21+/d+em+RbagaFev28qEpZwzKg3ZckqCPH1nfS8hScIdyhBe6JqTG3PfyTTeLrwFhvbKdy9/xi5QglXL0yGJsKDccZY7LDIAwWHpSferWBh+RN8ni4UylVER8MY6PHj0uSpUK0hxzfTmWsUtnoEwO3rer64jEyxim6/Hy67DXaHExvJX3jw7CX8XjfORUdDlOohhU4fAVjILCPbm9V1yIqK2FgYt+ZmsZcv4lH8Nb5upXD7+hVMjIRQa8qeDg8UTYPU5cTcxSk4nS709XTD53ZhpD+IYMAPj+TBz93fZiz5oHV4AP1fGdlyHZIkIZkrI7GyhnK9CZXy+Aig6p1+HQAY003AcF8AVtGGfLWG9XTO4MLZ5cL0WAixoT4zVmPHADSiMo3hzHA/xgeDWFjbNg8H3A7kKnX0koEcPdTu/ylgRGZgOjNv38zoSXC8BZJDRKOlwGEV0VJVGM0y4joAPO1spXbx6sNHeD1uRIYGUCxVSRlDt1fC8rfvcDnsmJ+dOaLgoAs6AVLZPJJ7WdhEkUyT8GJpBflSBcVKDTvpDBw2GzQqQT1OgaZqUOhtFQUTUKnVTVWNpgy51YLVKph7sqKYkA4A1ScEfT66vm5kC3+ofh6Xz59FQ5bpkvE4QW3M5Apoyorhl9ABIKnFgNdTOh2NkJG6WSf9eRBJtmFwLDJmriUzeaOkYvvcXwEGAIVNH6cDA1DkAAAAAElFTkSuQmCC');background-repeat:no-repeat;background-size:contain}.ipfs-flv{background-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAmtJREFUeNpsUl1PE0EUPbssLYUCXdpaC9gWoSTgAyFigiRGY+KjvuuTr/4A44MP/gx/gMYfwIsan0RjIjGiJIZgSIGFIoXSD0t3Z3dnd70zpITazuZmJzP3nnvumaMEQQCx3jx69SV3a3KWMxetpSgKxP3m242Do43SQy2k/YRydvds67n8a63k+FRSn7l/bdg5tdsAuM3he/5weDC8vLdqPLgIIpba2niux52mg//DqlsYSg3iztO7mczN3DJ3+ByCLgCBH4hOFEF7cDpzPCRyOpaeLGXSc2PL3HbnW3XaRQCPEgWI2MsRVAVqrwbX9bHxbhOKpiJ/bzpDOr2k68V2BtRNzMtqDEqPejY/4zSGjb54BM0mQ8k4xsDoIMauXxnqYOD7PmwScP31d0SS/eAuh1lrolFpIBQNQw2pqJdqsAlIceB1AJCIkkE/FZskXDQVRXw6IYHiE0nBEcaPXSSvJnGwWkQXAE4acAhbxPMJpOdHweoMhc9b2F8zwKizbdlyPLVH7QLg+JKBYzoorxzjz3oRzUoToaEw9KyO8XQW5AE5jrFT6AbAYVVNxCZ0Ka3So+DSTAoDiej5ywTySbls1OEDobhFlMcXxrHw+AbINEjNXgb7y6BndLhk8cRkHHbD7g4gEhiJFxsdhrDqaamBaDKKerGGSKwPI9kR9EZCaNA5ubE7A5s8IFhsrxQkgJhZoa/06xC5xRz2v+3BOjFlbqcGlquxsondT9vY+2pAJdeZR6fI355CgQCN2A4O1w7gkQ7cdLUOAKdhV6uFSv3kd/n8mT68eC8dKWLnY4FsfeZQh7nVVt0/AQYAsf5g+SvepeQAAAAASUVORK5CYII=');background-repeat:no-repeat;background-size:contain}.ipfs-gif{background-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAmVJREFUeNp0U0tPE1EU/trplAqlL0laiw40xASByEJIZFGVnSvj1j+gWxNXJq7VrbrwF7h10cSNhMRHojEuACVBKmH6SJQyJeXRxzzv9dyZPiCtN5lMe8853znf953xcc4hztDzZ1+C6fQMHAfd4/MBFG+p6h/n4OAeAoGNToi/eOm+A50LKRaLh6amoty2vVpZdotNXccMEK3LwZxa2bsDSdrAqePv/mLM5tSdMwYBYqyvw9zdhUn/L59P4OGtG8qlZCoH254/DdCdQBCxqZu+ugqnWoW9swN5ehp2NotgIo6bGQWGtaS8+vQ5V9a0u5S+1gfABEilAqdUgm98HDwUQkDT8JXoPPq+BoM5kCYmFT9jryn1+hkAt7heBx8dhbSwACmTAUwTgdlZ/CVKJaLnI1GD8TikZiPSR8Gxib8chH95mZTxgwWHwH7+gFMswqcokIRbjMO2HDCnZ1VvArpjEmnKZc8+cZJJYGsLsMiZ8AgwEqaY6Mb6RQR33JFhGECzCRyfAFXNu9v+RVNRZWIMuDJNuYMAaDycUFGhCOgtuAtFVDA83G5A8TrFDw+F5QMAxAKJJxz2xnW3RPJGbm+rCyjotZetH4DGzaSSeDA3h4Zl4R0JOEZWTpIzF4n/m995bNdqZwB6m0gFft3Ak6vz+KYWwFsGlqIxXItEcDt1ARMEtKdVgZb+fwA0G2C2hXM0ZTZNRcSf0b1pmXi7uYnjI+Lfanm5fRQsK8BIxKcrK7i/uIgP+Tw+FlREqHN5fx/vyU4uHBE6UO4gDWqk/JFaLuMxcXeFk6TuJ90V0HOk1in7J8AAjmgkPfjU+isAAAAASUVORK5CYII=');background-repeat:no-repeat;background-size:contain}.ipfs-h{background-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAbRJREFUeNqMUk1Lw0AQnf0woK0ttVqp0hwqVCl+UBERT94F7x78Cf4Uz179DT14F8WbYHtRkBYRLNqDtdaPZLObuLs1NGlXcWDJZGbey+x7QUEQgIqT07PL5WKhHL5H46J+22q22vsWpbWwdnR4oJ80LNiz2czGUjENhvj4ctIE4Wrj8XmPUlKL9nCYcOFzE9j1OKSTCdjdrtiLdr7KhVgzEvwW6krC92E6k4Kd9bJt57JV5vFK2KfRQRV+RAMkzxglYI1RaDy2dW1rpWRjQo5VGicYIorWVooFvQVCCAjG8Omw1MgG8AM0uSBUDSnCfk/IGCHwf3DCD/7UhOLBrFkDuep/hDUSSCv1iYo4rIfqGwmUSNJjfYbBcQKhZw0aBMA4B48LwBhBt/cON80HmM9NQ6fXg/Wlku4TwmNWDzaQqzHG+0PSKod5cH5Vh2RiAhYKc8DlV1UPSyuFMGygVlMg1/P6BC6DqXQK8jNZDXAYA1f21V34wMXYFaiyVw0rJyzLgs3VMkxOjGtix/V0XWChZ0cI2i/dzvXdfTd0Qf91BMPrhyNzgKfOmxaWypqaDXHfAgwAtCL8XOfF47gAAAAASUVORK5CYII=');background-repeat:no-repeat;background-size:contain}.ipfs-hpp{background-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAehJREFUeNqEUk1v00AUHK/XKf1yZdESVRBXjRSRFqMQVBA5Ic5I3DnwE/gpnLnyG3LgXglx4UDDLZS0RWkDLiRxSusk9u6GXSembmLgWZbX7+2bnZl92mg0goo3b3ffO/ncdvyfjHef6q2Dlvs8Q2ktzr16+SL60jhhZ69bO8X8ClLC7w9XdKJVG8fuM0r1WrJG4gXjgqU1D0MGc2kBTytl+7a9XmWcl1IB/hZKEhccq5aJJ/e3bTu7Wg1CVo7rNLlRhUh4oMnXoDoyhoHGyWmUe+QUbELIa7W8CjAFlMzdzeckCwFN06ATAn8QmDMMMGlMuwWucpoCHNe4jBkAMenjYvRPTyi53JvuwX8AplleAeBcRFrH6rXIxLim9I/pi3QA1RhKaYxdjkN8IwalCMIwWs9ljMkh0wzk+9M7w179C3LZNXxve2h+c3Hu91HeKmD/6zHOLnw83ilB1/V0CeqU3Q81LC/O41b2Btx2N2JVP2riR8eTUxmi0TzBwrKZMsqMoz8MsDh/DWuWhUBKURLKxQIeOMWoptYPnS1c+INZBkwISomOSsmBZS7B+3WOzZvrKGzkMAiGqNy7g+LmRkRfekBnANy2163PZXrSbrQ6vch19Xz8fPDHyL39QzkHBKedXjfu+y3AAGU37INBJto1AAAAAElFTkSuQmCC');background-repeat:no-repeat;background-size:contain}.ipfs-html{background-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAmBJREFUeNqEUktPE1EU/mY605a+hhZTBNKRDApNrWIRA4nEBUZdmCgLNi4MK5f+FNdu3bFv1J1EXODCR1JJSMTwpqUP6NiCpe10Zjz3hj5Mm3iSybl37jnf+c53jmDbNpi9eb+6Ftcisea909bWNzNb6dwzSXKkhIt/r14+515qBqmDA8HpqKagh53XaopblpIbe+knDpFAhPab2Dw0TKvRK7lmNODzePBgZlK9oUWSpmVNdpIU8T+jaMsyMaD4MDcZVa+NhJMN00w0n6V2nN3yQgdHWZag+LzYPTomIAtT0THVtPGanmb/BbjwLFkvn2IttYGYplKyDzsHh7gdmyAWfh5zVq0Guhg4RAHFUhmfvq3j134aXo8bd+ITnMFOOovU5jbGRoZwNxFn1cxuAIcDW/sZDjA/c4u+BNxOJyxqaenpI3z88gMfPn9Hv98HQZS6RazW6kjExvFi8TGdDSy/W0Emf4LS6R8sv11BmfzSwkPcm74Jo9Ei0GZgmkw8QCOao8OXcaz/5vSZnPdnp3ApqBBLkWJE0Ci7ASzbIhCLLQ1E0iOkBDh9NpUgiUejo8oNuJwyn0YPABtn51UYFFivG3yBGCNZkuDtc/MW+ZQI3OrYpBaARCKufk3B5XIiWyhiL5ODp8+FfFHH+KiKSqWKUL8fC/NznGlPBmz+24dZjKnD0CJDcMoyW0SqXuMtHBFw7rhIAD1ErNUNafxKBNevapwu65NpEQ4FqXIA+RMd6VwBP3cPSERb6gLIFIq61+UqGWaFdcrVt/lmAuWjAi2aiMFwmOYuIJ/N6M28vwIMAMoNDyg4rcU9AAAAAElFTkSuQmCC');background-repeat:no-repeat;background-size:contain}.ipfs-ics{background-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAhRJREFUeNqEUkFPE0EU/mZ2dra7bLNpi2AxQFKalkJrohICiYkXPagXrx78Df4K48GDBzmQePLMhUODNxQ5ciEkJVqDtJGmMWrCATRbd2ecoS5u3aovmezsvu9973vfPiKlhI4XL7c2r5YL81LIELEghLA3u/udxmHnPmfGW/Wuv+LpwwdneRYBx7PeWK0wOYYhcXxyckGV1fdbnbuMsXcklqPRJQxFMKz4RxDCtVO4s3xlRjWoB0FYjlQPEEBieChwKCRGMx5uLtaKs1P5ei8IKlGa/YkXMXYtlTEDlsnw/mMXhBJcqxSK6vlcpa4PEpCooUyIqs5M6hG1o2CUwqA091cFcYLf/sjzcX75EiQIojI9779CTYR4jwTBf+r7GAwh0AxCiL6JMT/04vQ79u8aI2O/7Jzg69o6Go8ewycUahtBpADhHKLnK/eVbkMdtROWIv80NQ2sPhncA9Htwn+9hZG0rY6DzFwJl+7dhs0ZstUy8rduwPS/wd/ehmi3kwq4zTHiWUgXp+EuL8FvNvFl5Rn4xAS86iyI2kY3n0Mv48ByrOQmancdi8I0Kcj3U5iuA29xAelKCUHrEIayzltagG2E4IwkFaQgSC6lYI09iN0d8It5uNV5nG5sgJdKYC0G8WoTOZvBISFNEBxnsuzD3GX4vfDsszzqAu0jkJQDedCGbB6AWg54pYbPo+NGVPdTgAEAqQq70PytIL0AAAAASUVORK5CYII=');background-repeat:no-repeat;background-size:contain}.ipfs-iso{background-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAjlJREFUeNp0kstrU0EUxr/k5qbJzdPYpGkpsUJoA2q1oLjTdiGiIC5cuXHlxv9BEOrStTvBnQvRrSAIsejCrlqpsURq2hCJNQ+TNLm5uc/x3MmzJh34mDNnvvnNzOE4GGOwx8+t9XQkfn0VE0Y5/7Z+kHm+dvOhtd3P9c/xwNZh7nWaMYtNUmX/Fct/vlN7/8J5aRRgyzm8xzpRDjGE2aVH4VTqdnoUYg/XkEhmy+Cx3DhA5tMzdFolvg5Mx3Fx9SmH0JIg79Zo3j4GADMIokJTKtjbfAKXU4Y/2NvSfyH75TFOxa9Cmr0XnlPFl5ReOQ6wNMDsoFX6AElqQlNV1KsOuNwS/AGFjEUIDhmn5+/DMM16/9igBowAzFKIswPJr6MjlxFP3sV04gaP7RzMPe6xvWM1gNUBM2UKYlBau3QghGphg29J3gDlLLilWNdD3gkvIIDRhD9yGe2mCV0V4HFXuCxT5Dlv8Dz3sIkAs03FalDxBMQSt9BRBMhNncuO7dyU28c9tnf8C/Q0ZtR4GImeQSj8APLRH772BWcgiFODffCv/t8H9tO0v3RjV7VqkeeXLlzDfvYjj88uXhl4JwIsrYxmLY/M1gYclIvGE9jZfNPrSCD3/QgLyeWTADV6wW9AryIcCkB0u1Aq/oCPumlufoF72vIheaLDr4wCLIOqrYnULA14PSoqpSJEAUilZrD77Sv3LK+cI0+Be8cAbbmAOrob0agtD491LYfkoqvnyZLsWRkA/gkwABL4S3L78XYyAAAAAElFTkSuQmCC');background-repeat:no-repeat;background-size:contain}.ipfs-java{background-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAjxJREFUeNp8U01v00AUnNiOEyepQyhQobRBSlVIoRCBEPTAjQsSEneE+An8FM5cuXLNoQduIAE3qopKNJAIIppA2jrOR93aa6/N8yZuUxyxkrXr3ffmzczbTQRBgHC83nj3ca28dD36nx6fvnzrNNrdp4oibyUmey9fPBezEgWVFuYLdyvlPGaMY4fl1aRS+9pqP5ElAkmcnknRwuO+Nyt5u/ETYfyj9WrpZnmpxn2/Ok1Swn/GvtnH5k4TLue4kNfxoFoprRQv1TzOb8cAIu3+ZD7oD/Hm7XuxzqRUNDtdkuLiTmW5tFxceBXlnXgQTAORSMt2oGezUJJJrK9dFWdEH7Ik4dB29LiESeUEJXd7/dAT3L+1ivlCHr8NEzutXTBvbJPPSdO/AH5wysChwM/1HzCGlmAzOrKxu2eCud6Z2Jke2MwThpUXL6Nn2ZAVFTlNw70bK0iRnGAq9qwHtOmTRpsx1NsHyKRVnNPnoMoK9kc2BjbD4vk5JGV5NkBoEPM4FFnCteJFWOS4ntHEfphQyKaFTWFLw704AJ26ZFx/ZEEi3YyY0O1Dmr4EKTUHA8hUnS6siI0DEHLYog+b28RCRuNXR/iQUpPUEQ+NVht6Lodnjx+GXYgDSFRnq97Ed2pXSlXhUSeGhxYc5sKlNXM5DGLR2TMwfZVPAIi+otGNWy1fEZUKeo4qc4ysI+F8VksLIJfYcD9QYgB/DNPMptWBlsnBIS86xmDMTBo/PWd0LB6VZfdEbJT3V4ABAA5HIzlv9dtdAAAAAElFTkSuQmCC');background-repeat:no-repeat;background-size:contain}.ipfs-jpg{background-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAmlJREFUeNpsU8luUlEY/s4dmMpkWxRopGJNNbiwhk1tItbGtXHr0hcwmvgOdWld6Bu4coXumtREE3ZKu8FgOlC1kIoXtC3jPfdc/8PUIpzkBM7wf+f/hsts24YczuerGUc0moBlYTAYA+i8sbdXtAzjITRtq39kr73s/Gr9DTUYPOeamwvYnHdrdR0SnDebuCbswJGqpX+Uf92Hqm7hzFAG/4TgNr1uCwEJ0trcBC8U0Kb1/PQkHt9JxSLnL6TB+Y2zAIMOJBGLXmtsbEAYBsx8HnqCGKVScAX8uHf5EpqmGXv18VO6VDEe0PXsKABN8+AAgiabmYFNNJTDQ2RUFc8+Z9G0OPR4PKYwvKari0MAgiY/OQGCAajhMNR4nDZMaInrKBGl70SPMScck1NQG3X/CAWLE3/dAWV5hRRVIJxOWNksrP19sFgMqqAebUGYHMI6teq0A9oTVAhqu2sfbYYjsL7lCZ3683gA70T3TK7/B4BNoO020GwB9TpwfAz8LgMtWn/NkV8EHgoB81c7nYwCyBZlEVkHcqMTKFnkmehJTOPvEfCnKi0fAyADJKfXC/h83TaZTJjaa5lANLpOFqAXtlEAorAwO9u5syT5UxLfU0e3o1FMu1x4u7ODYq02BKAMAVSrSNLrK1MhLPj8mNF0vFm+C1ZvwKBwXXE4AGn1WAASazESwUW3BzUSMeJ2o1Aq4sPurvQYSRLwlhRR6mSaYyi0WlpAJrFRx3ouh5/lMt5lv8BLwXp0M4lSpYL17e2uK5wP6lj/c2ZPn2RI+YT8fDvqoyegVLyfG5kBKaQQOfvF2pLc+ifAABiQH3PEc1i/AAAAAElFTkSuQmCC');background-repeat:no-repeat;background-size:contain}.ipfs-js{background-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6RUQ5ODY5Q0NGMTE4MTFFMTlDRjlDN0VBQTY3QTk0MTEiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6RUQ5ODY5Q0RGMTE4MTFFMTlDRjlDN0VBQTY3QTk0MTEiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpFRDk4NjlDQUYxMTgxMUUxOUNGOUM3RUFBNjdBOTQxMSIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpFRDk4NjlDQkYxMTgxMUUxOUNGOUM3RUFBNjdBOTQxMSIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PoT8zQ8AAAJdSURBVHjadFNbTxNREP52t7S0bktbKFAvTUVaw60YqkExUTD6oD74qC/yD/wp/gh885XEEI0RAyYQUiMpIBGMkYR6o23abi+73e2uc04v1LROMtnZPTPffvPNHMGyLDB7sbJ2ciUSli3U35smkK9t7x9v7n2dD/g8KUkUwWqeP3vKz23NxJGzgwOx0RC6mSgIo+WKuvP56MeUzy2nJEk8PWsGJVVTuhWbpgmHw47FB7d98Wg4mVWK52o1sxOg3Va3PmFp+Q2PdUquaFUM9/vw+O6cP3bxwm46Xwh1ALR3/vL1e+hGjcc9koScUsTSq3coVDQsXJ3wzo5HEs3clgZNMTVdx1T0Ep7cn6//QRQwMhzA6uZHLD5cIFEFSKIU+G8LK+tb0KsGZKcTJoEyP08AbpcLy6sbPKdQrigdAGaDwWxsDH1uGbliCYIgcM8WFPg8Mq5Pjzdyu4jYbCE44EepXMHuwXe+A8x3KKYxYsjvbUzmlPGpBmYdgI1oYjSMbL4Ao1YXMkcM2Dd2xnbAamPQAqg1GORLZdycmYTdJqFKk2DPR3fmwI4zBDrg9RADqxPAbPBif2WTSB584/3/TGegEOit+DRcvQ4OZJi1LgwIQKVCg2i6nb1I7H3Br3QWqT9pBAP9uDY5xjdSM3RqxeoUkfVnEOW8UkLykERTNXjkM7h3Iw6NNvHw6JjuhAhVrba0+QeALozcI9nQR0VvNxJc/ZmxCNGvIBQcpDG6udA22kyW29HC72wu8yG579ZoiSYuR/ly2+y9CA4NceWLmo717T1i5ULqJNtapL8CDACskxPFZRxLwQAAAABJRU5ErkJggg==');background-repeat:no-repeat;background-size:contain}.ipfs-key{background-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAlZJREFUeNpsU11PE0EUPbM7u/2AtJUWU6qiiSYYo5EmmPDCD9AH46sx8cEnja/+CB989z+Y+MKPgMiDsYQACcbaWBBogYD92t2Zud7ZlQZsbzKZ3bl3zj3n3IwgItjYeDO3MlWme0bjUth8e8/fO2tHzx3XqUEk50uft+Ndnhdmc3SlfNPkVZT8Cy600DoIISvVfKYtlvfX1p66XmoIYsMZdjJQWvEFbbsC/S5g2QhSkKUK7rx6OzvzqLpsovAhaAxA3DUBQn2TUFsl7KwTfm4Z9DoO5LW7uPXi9Wxpfn7ZKF09vyPxX2iWcNRkKGZz0mQWKoNs8AVB6x1yRY2pYnc2LLofuXTxMgAlmlXIfngCxNxEzM+DPv6NQa2BygLgZyX6JT83ngHTN5GAL0WSoUQkSQnXkyBh/k0GegTAaldM20sTKvet+yyhIZApECamL0jUSe3oFChx3TopM4TeEQP2gc6BgGIwb4KGNXRhCkMGxgg2kJeybRiZM45D8W61qEAknSmpHStBhywu0nFVupSCTAcM4ECwqapv+NQ6LS9JGALoMIIoPYDjZiEL1xHtbyO39AQUDaA7R1AH23DSeSA4hv5RG/VAhxomPYP8sw9A4TaC9iHkjUWmrtGvbyC18BLe3GP0m3WW4I5hEBEnPIStXzyuFIxb4EkMEJ79Qa/xHbKxCdM7xeCwzUZOjgEwnuzt7qLz6T3cySmQP43uzjeIiTJM6io6W19B/NLCKMVGCzkCoLR/0lrfOI2fNy/huKC1FTsK/rbGNeMRC8dHpHByfu+vAAMAL/0jvAVZQl0AAAAASUVORK5CYII=');background-repeat:no-repeat;background-size:contain}.ipfs-less{background-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6RjZERjZENTJGMTE4MTFFMUIwOEVERjQ5MTZEMkVBREUiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6RjZERjZENTNGMTE4MTFFMUIwOEVERjQ5MTZEMkVBREUiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpGNkRGNkQ1MEYxMTgxMUUxQjA4RURGNDkxNkQyRUFERSIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpGNkRGNkQ1MUYxMTgxMUUxQjA4RURGNDkxNkQyRUFERSIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/Pl1w97IAAAJhSURBVHjahJNLbxJRFMf/wPAIMIxMkUI7tS0VYqlGDLGhjdKkqyZ24cJFN925de+XcONHaHRj4k7TND6SGo1VWwmp2kSLhlqMDbQ87gzPYcY7k4GgoJ6bmdw598zvnvM/95pUVYVma+svcovx8yMnFZHAMJPJBJfDzq5vpX6+/vD5qo/z7DOMBdo/d26t6jFMJ3iY51jBz4M+LP6wxEw40Gy23qYzB3HO7fpmpZCOmfEfa7Xb4NxOrC4lvbPToe2yKE3K1PdPwNOtHdx79ESfq4qKkijB5/XgevIyHxEC24USmewDqD2ABxubaLRkfW6zMqjWGlh7/ByyAtxYnOPnL0Q2+gGGmKRaw8zUBJaTiS5QOO1FJnuIAM8hciaIWHgi8NcSNt+loVDY8JBXh2ojJAR1HbTSNFMUpV8Dxcjg0nSYBrtBxdLbqI1iheCUh9XXNGurAwCdEkb9QyBSFam9TDfoPZ1LUg1BH28IiwEARTVAQOzcFKRaHZpLoa9avY6L1Gfs0c32t4PU6W2lWsV8LAorw0Cs1nXftYWE3qZGqwWHzYp2zzlgetuolVFvtiDLbRRKFTAWCxx2G/KlMtXFhWPqOzsWHJwBx7rxKv2R7mwFz3lw9/5DLC/M4Us2RwV0g3U58XJnF7dvrsBOoX0Abbej/DFKRMKI30fTVGC32WA2m5H9cQQvhYi0vE/7Wdgczn6ARA9QPBrBszcp/XvpyqxebzQ0Tlsq6llxLhe9bD4cFMr9XdjLHpLv+SLGBYHAYiVu1kNOpAaRTWbCejgiw0zGhFGSK1aw+zXbvfK/BBgAPwADAs5GpGsAAAAASUVORK5CYII=');background-repeat:no-repeat;background-size:contain}.ipfs-logo{background-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAoAAAAEACAYAAAAjlcdmAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAALEwAACxMBAJqcGAAABCZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IlhNUCBDb3JlIDUuNC4wIj4KICAgPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4KICAgICAgPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIKICAgICAgICAgICAgeG1sbnM6dGlmZj0iaHR0cDovL25zLmFkb2JlLmNvbS90aWZmLzEuMC8iCiAgICAgICAgICAgIHhtbG5zOmV4aWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20vZXhpZi8xLjAvIgogICAgICAgICAgICB4bWxuczpkYz0iaHR0cDovL3B1cmwub3JnL2RjL2VsZW1lbnRzLzEuMS8iCiAgICAgICAgICAgIHhtbG5zOnhtcD0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLyI+CiAgICAgICAgIDx0aWZmOlJlc29sdXRpb25Vbml0PjI8L3RpZmY6UmVzb2x1dGlvblVuaXQ+CiAgICAgICAgIDx0aWZmOkNvbXByZXNzaW9uPjU8L3RpZmY6Q29tcHJlc3Npb24+CiAgICAgICAgIDx0aWZmOlhSZXNvbHV0aW9uPjcyPC90aWZmOlhSZXNvbHV0aW9uPgogICAgICAgICA8dGlmZjpPcmllbnRhdGlvbj4xPC90aWZmOk9yaWVudGF0aW9uPgogICAgICAgICA8dGlmZjpZUmVzb2x1dGlvbj43MjwvdGlmZjpZUmVzb2x1dGlvbj4KICAgICAgICAgPGV4aWY6UGl4ZWxYRGltZW5zaW9uPjY0MDwvZXhpZjpQaXhlbFhEaW1lbnNpb24+CiAgICAgICAgIDxleGlmOkNvbG9yU3BhY2U+MTwvZXhpZjpDb2xvclNwYWNlPgogICAgICAgICA8ZXhpZjpQaXhlbFlEaW1lbnNpb24+MjU2PC9leGlmOlBpeGVsWURpbWVuc2lvbj4KICAg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O4qxDy/KPWcv/tsh82bPxyKRSyH+woXBUiwwNcNIYdO5ZbPVtXWLq6DFPsSQ0C4xgDOZkI2p+CNzskdImGjb+rXXHXbQwhkSfwm9LGpMBERABEQgiwloBNDDxT1706bpDUsfuqmkuuZELKTI52igaX5hBiRmyJgyhI7hatVkFT+PAHLBTP+eZju0C7OxmBQKP476Ydp3tGf7ticC9TNOfeCcc3aZ1NU+IiACIiACIiACYwQkABNwJ5z56BNvbHnhuduRGu4wt2nluFKY/oFccWs6kuimy34UgBTJXJlMP78ogjqblpfStzU2Nlgjo5/611cv/JdpXe0nAiIgAiIgAiLwMgEJwJdZeP7rA7++6cyR0ZFfIK1cNVcLm45q8cBMJxeCf2CgEvEDE1j8JgCHuhnPD35+SONmWjhaynA6SN820N/U/G1M9f7MtK72EwEREAEREAEReDUBCcBXM/H0ypLVq0t3PPHUdwtD5V+CaCliOBPTaWHG3iupqbFCM+utwtJST/1wKvtFAEbh59fX3AQR1zFp3EGnvxO3HBFl+BwwjPVs33r74R/8wJIbjjhiYOI++lsEREAEREAERMA9AQlA98yManzquedmN69cdUtJVfW74B+YZwcxNgwbwxGvshl1ViniB/JvLyXdApCjoAOI59ffssd8RJRhXTDiB0E82rNr5wtFleWnPHjeeZu8cFBdERABERABERCBlwlIAL7MIil/nXrfA+/o2bHt94GqmgMYO9BVWjmscrXDxmBU0Mna4baT6RKAzC7C0T6GdWFWFNNip2/DIo/+5qYWjPwtWfaNr/7dtK72EwEREAEREAERMCMgAWjGyeteee+78befQyM/Ki4LVYxEhoyzW/DA9AukfyD9BN2WdAhA+vfRz4/+fqaFWVPykXYu3N0VHtjT/OMV//vty1B31LS+9hMBERABERABETAnIAFozsrznues2FC++/nlPw1UVZ2dl5dfGIMQNPYPhD9cKVYKlyJsDPPcmpZUCsBoOIzpXoR1wQpfN+fFfMOjsehI17Zt98487G2fuuPU47tNz0/7iYAIiIAIiIAIuCcgAeiemeca57z44gEND/7rDyW1046KDUfy7NXChv6ByEds5xYuhY+gSVq5VAhAO30bfPyYuzeG2H5GBX5+9upeTPf27NqxIThr5qn3nXnmGqO62kkEREAEREAERMATAQlAT/i8Vf74HXe/v7+n8zfFobL62BDDxhiKJxy2CKuEQ/WzrJLqagZF3mdHhvv6rPYN6yddeev4FdJfb+/C92oOO9wqDoX2fuvlf9PPr7MT072NrjKb2OnbAsXWYGdnV7Sj+0v/uuQrt7zcqP4SAREQAREQARFINoF9K4dkH1nt2wTOWraspHVHw/9AcH2zIFAc5DSq6fQphR9WGVuhWbNsQTgZ0qGuLqtz86ZJBeBk+7/0GgXgQQdbmK5+6aWJfzB9W19joxXu6oSn3qsF5MR9nb/t9G2Yvh4eGBzGaOGvFh51xNdvXrTIPBK005C2IiACIiACIiACnghIAHrCl7jKTCvX+PC/rg5UVJ6CIb18ho0xFYKcSg3W1iKjSL0dPoW9Yl2Kvz4kzRgeHIyro0XBIMTlbFsEOllK2C+s0LUG29uNw7rY8fwQ1mUUSrFnx/ZltW9+05l/ed/7muLqlCqJgAiIgAiIgAh4JiAB6BlhYhs4+5lnXtOw6qlbg9Nq34hp4Tw3YWMYNLkMsQMLse1vacEq3MSspQhUViIu4QykbRsa8/PD1rTYYV2K6ee3a1tJZfnp93/mM6tM62o/ERABERABERCB5BCQAEwOV8+tnvzHP38k0tt3XXFl5YwY8uW6SStH/73J/Pq8dMptm/YCD+Q5Dre19mCa+Kv//ubFN3g5vuqKgAiIgAiIgAgkjoAEYOJYJrylU1auDA5u3PQdzOtemF9UGKAQNJ0WTnhnDBscS99WYmGqODrQ1PD7acce88U73v72+OagDY+p3URABERABERABNwRkAB0xyste5+1du3MxkdX/iZYUfG+kZHRfISOMV54kbIOY9SxoAjp2/KRvm33rifLF8w79Z5TT92ZsuPrQCIgAiIgAiIgAsYEJACNUaV/x9MfffSt7Rs23hqsrD6U/nhu/AOT2Xv6+dHvsHdPU0N+nvXfD37xiw8n83hqWwREQAREQAREwBsBCUBv/FJfe3Q076Q/3blkNBy+vCAYrIohbMxILJb6fuCITN9WwLAuvb0DA91dP1x+0Zd/iNA0ZjFh0tJjHVQEREAEREAERIAEJAAz9D44Y9Wqis71G3+EtHBL8kbzCqMu0sp5PWU7nh/Tt43GRnoaG/4y+53HnHvrUUf1eG1X9UVABERABERABFJDQAIwNZyTdpSznl13cPMTj/0uUF19FKaE8+xUbIaBmV13yvbzK7JTuPU17F5fVj/3k3ef/vEXXLejCiIgAiIgAiIgAmklIAGYVvyJO/ip997/3t6mhhuLK6vnxJLgH2jH84Of32DLno6RyPD5D110wW2J671aEgEREAEREAERSCUBCcBU0k7ysZasXl3U+J8NF46OjnynMFhaFg0Peg4bY0/3lgSt4b7eyEBb2y8OOW7RJTcccYR50uIkn7OaFwEREAEREAERcE9AAtA9M9/XOHft2prGx578ZXFF+SmjsVhBjP6BLqeFGfi5AH5+Vn7+aO+uXQ/P/H9vPu2Pixa1+f7k1UEREAEREAEREIEpCUgATokoc3dY/Pzzr2t54qlbSiqr30QRaBo2Zix9W8Dqa2rcWjyt+oz7zzxT6dsy9zZQz0VABERABETgVQQkAF+FJPte+Ohdfzt9qLf3F4XBYK3tHxiNTnqSY+nbAtZQT09ftK/3kocuvODqSXfUiyIgAiIgAiIgAhlNQAIwoy+feedPWbY2FN75zLes/KIv5xcWBKIT0srZfn7I24sVxNHBlqbf17z1fRfcsei1feata08REAEREAEREIFMIiABmElXKwF9XbJuXf3Oxx6/KVBeeQJEYD6bLAiUjPY17n6y9uADT73jpJOUvi0BnNWECIiACIiACPiZgASgn69OEvt2+qOPHzfQ3Hg3FokUxqKxT9x75ml/TeLh1LQIiIAIiIAIiICPCPx/9LZZ0UZyLiQAAAAASUVORK5CYII=');background-repeat:no-repeat;background-size:contain}.ipfs-mid{background-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAnhJREFUeNpsU01PE1EUPdOZKWUotKUKFLEWkQ1EASGGxGBi4sIVrt27IixN/Cn+CxfVnQsXJiz8IAoqRBGEaMUUWzofnXkz781436QDkjKTyXuZe96595x3rxJFEeTzaKW6dmdpfIoxjuRRFECGn7/4Utvarj/syWgflU5s891qvGoJePJasfBgeSpnW+yEIJVS4DEBx3FzGT2qfvh0tJxOE4mCU0yy8X3BLdODRQTJZ5oMzYaD0UuDePzkbnnx1mjV9/lMp+izBKEIwQMOzvnJGoYhhBDgFKtMjmBl9XZ54WapSjLnknMnEkQYgflCVhKXLt+/dRMy2d5OHdVnPoxeHUtLV8u2w5/S78UzBJwLMC8gAsosIqy9/ga37WNmvgKVKmEkb7JSwI3pIdRq1kBXBZJAUKkb6wd49fIzbJthdn6cIhE0XUWbyP4cmshmdZAE0eUBD6gCN0DtZwM7Xw+RUlVEJCui7CmyPaS94zC06ZMedREERNA6djBWHsS9+9fRS3p9AraOXbhELMlUQju2G2O7JAQENk0XhpHG3MIVlEZzaDbdOKO8jWy/TraGsMmL4L8KTgnIfcfy4JBWeQNp0j10MQtB4EJOg6qFMI/bEH3pGNtF4LOAjHMxO1dGvW4jXzDi7Iw60TB0jJRyONhv4MdunbDneMA6BMPDA6iMFzExcQH9AxkUiwby+QzevtnF2OU8lBT1i8fOa2UO1/FwdGTHE2STHM/14+vlPOz0RxibKPfn9AHXZHBzYx866ZdTKkuVndhHuqenS1h/v4ffvxqyvbUuAtPizZ0Dp7X1fTs+FA9cMnWd4ZG90NOjomVFzeTcPwEGACDGeYddZX86AAAAAElFTkSuQmCC');background-repeat:no-repeat;background-size:contain}.ipfs-mp3{background-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAnxJREFUeNp0U89PE0EU/ra7XWxpSsFYIbVQf9REFBHkYBRIPJh4wrN3DsZ4MPGP8b/wUCIHEw5EY0w04o9ILcREGmwVgaXbbXdnd2bXNxPahGyczebtzrz3ve99740WRRHkWn5cebu4cH6SMY7e0jRAHr9c3WxsVvcemmbys9yT6+uHJ8oaPefypdPDD5Ymh5w26wMkEho8JtDtuEOZFCrvN/4uJZNGH0T59D58X/C27aFNAL3Xthmsww5GCyN4+uzu+OLtQsUPxPQx6ZMAoQjBAw7O+bEVCMMQgqygs+LFs1h+dGd8bna0QmXO9OL6JYgwAvOFZKKoy3V44CgNfv7Yx8oLH+lUEgvzF8Ydhz+n41snAGRG5gUEwClzhHdvttFxfNyYK0EnJozKK5eGcf1qHo1GOxtjwI+pfvm4g/W1qtJgerYE2SXJSIL9+W0jk0mCShAxDXgQKgbNXxZq35vQKCiKQkSUXdc1+gcch1FHGPmKuIgBCdc66qJQHMG9+1NIpUylxxHtuW6gEiTIu+N4yjdWgty0yTmdNjFzcwKjY0MU7MLt+IjoSad16FoIx3b/A0DZ7FYXnsdpAjUMDOjI5zPgfoBsRodhhGhZHfBBU/nGAGRtxWIOg5lT2NtrI5dL0SB5KJzLodloqXaOEatPGztKq5gG3S5DNjuAK5NjKJfPYKI0okBkSdemCiSgS/rkQNLSePtxBj4LSCwfFtE0krqqX7ZVMnu9XlMXy2l7ME0dzA3iANQyY6vWxC61UY41zTyNcYh6/QCNXQvzi5dR39nHVq1BUyuMGAARsF6tbbe4iKD1r7Om5iFBdmW1SsDflLiuB6sX90+AAQDHAW7dW0YnzgAAAABJRU5ErkJggg==');background-repeat:no-repeat;background-size:contain}.ipfs-mp4{background-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAnBJREFUeNpsk99r01AUx79psrTrujVtbceabnZs4DYRHSoMh6Dgq77rn+AfoA/+If4Bok+C0CfxVRDBh+I2NqZzrpS1DVvbtU3SJPcm8SSlsJlecsn9dT73nO85V/B9H0H78OLdt/LDlQ1uMYybIAgI9n99OWxoe83nkiz9hDDae330JvxL48O51Xxm/enNtKPbVwAh0Ec6kYpXat9Pnl2GBC02HrjM5Y7h4P8+7FtIFVJ49OrxUnl7ucIdfhv+BIDv+fBcj7p/tXMPrs2RXVTw4OX2UnFTrXCbbY7tpMsA13FDSDAOQ4gJEGUJLs0PPh9CkESsPrmxxEz2lra3rnpAt3G6adgdQhBpmeLkFodNmsjpOPoXBrQTDcmFFNS7i3MRDzzPCw/vva8ikU+COQxm14BBhvJcHLGpGPTOAJxxeLbrRgAkYujBdH4G5oWJWXUW19YL4XqunAMFhnq1BqWYgaY1MAHASQOiU96zKzkU76mwehaOvx6h9uMv7KFN3RopL4oTAI4HRh4wSl399xla+00YbR3yrIzM9SzSqgJJnoKcklGrH08CcJjnBtLLCsSEGGpSWJvHtDKNoFippsJ0ulIsDDUCCATMlBQkNuahEyiZTcLsmFBKaQxaOk53TlHeKkM70AjAooCghBOk9sKtIvqtPqS4FBaRnJSRX8tj2DOh3lFB5Qw2ZNFK5LRo6w4sKt2ggAzywidAMN/9uIPSZglBLDO5FF3mRD3wHE9qVRvoHrUpfn+UEQK0/7ShtwboHJ6jdH8RZxSC57hSVETb7e5/2u0FxqPHJow+8iZ4lYY2QGu3idhIxO7Y7p8AAwALCGZKEPBGCgAAAABJRU5ErkJggg==');background-repeat:no-repeat;background-size:contain}.ipfs-mpg{background-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAnxJREFUeNpsU0tPE1EU/ubRdlqmnUBboa0UeUQDiUGCC1+JmrhxoXt/gBvXJi74If4AV0Y3sNKF0YUaICqoIfjgVShEiGF4tDOdO/fOeOaSKtie5GZu7pzz3e/c7ztKGIaI4vn9p+/P3h4e4a6Pv6EoQBDiy7P5rc1P1Xt6XP8M5ejXo6UJ+dWbuemeTGdpvNdiNe9YvQLe4Bi4PmTpRmyq8m71rp74BxKF2twIHvAo+f/l1T2Yp0zceHizfOZa/xRnfBRhG4CQqAYioBWeXDyA8Di6ei1ceXC1XBwrTXHPH2vW6ccBBBMI6BsSUEQzakGL6xB0tvjyBxRNxdCtc2Xf8R9TyaWTDOg2TjfVdw6hqIoE9B2GxkEDWlLH7s4ette2kSp0oDRezrQwCIIA3oGHr0/mKMmE53qo23W4+w5S+Q5ohob9X3tgHgO8ULQACC7gMx9mKQP30EW6mEHpYi8xcJEdzMucjfkKcrTfmqmiFYBxCF/Id+gayKJwoQjHdrA5v4HK7Cq44KjZNWpagaqp7QACks0H9znW365ia24DzoEDozOJbH8eVtGShXHTwNracnsG7q6LzsEuaAlNPm9h7DSSVjLyCMkppDI+GS2StQWA1RlKo0X56n2X+6QHkmkDakxF9WMVqWyK+s/BrthYfvWz1Ug+zUDcjMPMm0h3pxEjFma3CbIuCud7oMc0LL1ZgmElpGJtW3B+15HIGNITrMYIlOH7i0U41NrInREylYbu4R5qQbQBaAh95fVKZCnpQCnb9DrWZyrRERS6NDeUw+yHaXh7rt4C4B8y+9vkwn7kwKNRpDoa9aiFKBYnF+RcREqQ2e1m3R8BBgAy9kz9ysCE6QAAAABJRU5ErkJggg==');background-repeat:no-repeat;background-size:contain}.ipfs-odf{background-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAi5JREFUeNp0UktrU0EU/mbu3FfE1KRRUpWYheALNBURUVy7cy9UkO6KW/+Lbt0IPsFui4gLBbUqFaUuXETUKCYa0jS5yZ2ZO557b5MmTXpgmDPnfOc7jznMGINYPi0de5UvmpORxpjE/kbNqW005DVu8TWw1H758ZfkFgNgJmtyxSPRjJIj0QTW/RDiYGXGb7Dl32/eXrVsd0gSCx9miqC0ooCdp69g5Q/h6OLN0ty5ynIkwzMwUwh2FwMdcbDiCZQXlkqFCpEoPT/wih1YjLInANcD+/Ua9bu3wJlGvrBZCmet2+S6ME5g4oGlZ9A/I70XCDhhDexPNTFmswJBwcnuXkF86VSNZxVu0ukLSGnBcqlnN4HoCQIaIuIv7LUooMOgQ7q75LAAb59B9gCBHSKgqemRr94mMKmD24CfM8nb7THYGQNLpAkUkcb66JyGBFFEWRVL57gFEH5qj8Lxwca2qS3EZaugmzAw24dR/XQgwtsCSBjPIdWbUoE2UJLBnV8Ac/ciWHsK9/glWLnD6K2vgPszsOdOQdfeQ1c/ThKoTgDn9A3KUED/52d45xchZsvorD6Bf/Z60riV3Q9Z/0bbGU1uopYGkfERSQ3VbsMwl0qlqoIARmSoPYXWy0dor79LfBMEEd8jGs/uQ3Yl7PJFNFbuEXiV2riCf88fovXhBbo/vqP3t02/ZYmJFqTkzY160Go9uEMbFK8hR/NrdXtFuUVmnmySVGgO4v4LMAAjRgmO+SJJiQAAAABJRU5ErkJggg==');background-repeat:no-repeat;background-size:contain}.ipfs-ods{background-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAetJREFUeNqMUj1IHEEU/i7u7Z23e8tGgneGQPw3hZDkkhQiSuwMQREba4uUgpVlCrvEQhurkCoWqcQQ0oTAaYKNqJygGEwgHCSB6Knn7eXcdX/GmdHVPWYFP3gw78173/vmvYkQQsAwNvckq96UnyIEh7/d4t7uUd/8y+85P+bXSX4grkhI6nJYPW7LrXpBK2YxiSoShhu4Buq1NPofDeqdrZ3Z4cl7D4J3UtA5VyVAlmJoru9Af2ZAp1lcCQ3nqgiuKmbY3l/BH+MnHM9GVLP0Ww3KNA33CQoQQnL834Fj74PUGkANEIkCSSsa8gQqgYTIcB0PVsXB318GInRiCVWCkpRFAs+j5gKlA4t29Ggh4d0t04FKt9PQqF4UFgumSEA8ApeaElilWbYRVy/lsns/N1QBkxtENF4jxPxcgcB1CZVOrvMteK5IQDtJJIGh++PcX9iYwWjXK37+vP0WdYk0Ht99jtX8JywWFkQChw4tc+cZcvlF7rMze+ubbxN40fMalRMDP/6twaiUeK7wlZ0TD0a5hLTWxo2d45KKprqHKJslTsy209s2wnMFBTYNZjc/oLt9gPvLOx+hxVJIKS2YW5pCbSyJTGMK775O8VyBwDJd2LTDl/X5i8v3S7NVw9vJb51tITDEUwEGANCx2/rXEEFFAAAAAElFTkSuQmCC');background-repeat:no-repeat;background-size:contain}.ipfs-odt{background-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAepJREFUeNqMkz1II1EQx/+7Ca6JkqyYiJ8cKEpAQbBQFDm0sVOsFBS9wt5KOTgEG5twxVlZ+XEnKNiIghYKxx5nwEpIIXaiSAgKGmMi0d23u8+3T7OaZJEMLG9mmPnN/w1vBUopLPNNhRWXHOyDg0nx82TiJtZPlPVoNpftc2cTotcHtxx06kdXpSQ/BvzKESZzIDmAz6y+NojOjpDMZiqRPIgNoFyWM8DrKUV7axO+gcp4g7AzmquAdVNqOgL2z2I4id1B0wgeygOyt/rLL5buLwAIDgA9dY+L+DkuDQOCrkMgBsRglcMOqAGwIstMg8AkGsuZMNUMRMkLqE+QGloglvlA7uIOAKvZajR0qJkUj/XHe0BTIclVKKlrfKsj9qA8gA6wqSJzPaXlr7ky//tdLEUfawsBjExUFGVWbT7AxSa42H2LMfODmvd3wKb7RAMLYwM8nts8xJ/pEe7/3PmP2eGv3D+9usb35W0bINoA7RmjXSHsH0f5Z/mUSZ0Ir2JmsBtD80s8/rGyzWsLFTD5yUQCbfUBHl9d38LvkdDTXIuHVBo0k+bbt06qO+yAPGXwe/cA4wO9PN44jKDG70GougIzi2tQ00ms7/3lpwnBBgjZ37Kkd1Shht5XzBIFl/ufFtniT/lFgAEAU//g6kvdGBMAAAAASUVORK5CYII=');background-repeat:no-repeat;background-size:contain}.ipfs-otp{background-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAcJJREFUeNqMkssvA1EUxr+ZjkdbrfFKVD12ErYSRELY2fkH+BMsLcQaSwsrSzZi47EjJEQkEhYkFlhYSVtFpdqOqpk717l3jKZmiC+5mZlzv/s795wzCuccQncz3YeRBj4KHz0/RrOZe2NsZPP20o255zQ3EAxzEAC+6uzTw13G4TFQAakA/CWtIYbY0KBOrx7IvwDQqlHV1o3YxKTOvyAUvfQCfqmA3e4ikyS/zRAKvOot7eoSHEgZIHrCfQAfBqBaKQQDKScQAExd8emBANg+2U2CvNMkkgSqBmrCxFB8mujeoJBWwEqARcssKTAJEGrmaGrjqK1zvNknH4BtyxKl2VUpRxmj5W+x73q9AEaZrR/ND1EJluIpS3i9JQiA+a+hSq8HwJjTsLrRaWitPTCOlhEZn5N75sM1qigmlN+dB3u++Qao5W4TtbEXXIsiszGL4PA00itTsu6XnQWo0TjMTAJqfMDx/ryBJcaVzSNSH4fW0Q+rkIf5rsjRiid7yyN7uoXS3Zn0egE0NiORAN9bQ017D1Lri7CLlP2EDr3Rf7C/itzV2bfXA/igLDaRixfngFhSCooH2xVPCWBlwKcAAwBX1suA6te+hAAAAABJRU5ErkJggg==');background-repeat:no-repeat;background-size:contain}.ipfs-ots{background-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAfZJREFUeNqMUk1rE1EUPS8zmabJdDKB2glEwY9ExJYiBUEQpV25qgtBXfgbpEtXuujKf+AfEKRddOdOGHClbYVCvyKWaijT2mhjphk7Sd7Me76ZONp0EsiBYWbOvfe88+69hHOOAE9f3zTVnDKNHvhlsfqPw/rM0ovyWsRFdXJEpDIyRnSlVz0KSkmvabaJeXSJBEhgAJzTDNybmtUnS5Pmg/lrN07H5NM/f13FoMgpXDSuhiIiK3Qi6LUugX7FAbaPPsJqfIHHKCStqRsXVFPQuZgD9BBxjikSiRq41AAkgCQBzVf0+BWEBX7GBm0xgHHUqk1UbBuEcIydzyCZlOI9YEGuDxwduCCitS3Xh3viCZ4jrcq4PJ6DLHd67tjtuAAXib54dCPVEfQ5XIcik/0/2iDeOYz3ceCxrisMi904y0XiMQFfkB7lg6xFHwFxEqUMV0anUNBLWKm8xd3i4zBWOzmASx0UsiW831mA59Xjm+h7HCOygduXHqJatzA7Poey9QnXjTuoVD/j/sRcmDOWLgqnLC5A2wwST+Pn8T629lahSCo291bwu9XA7vcy3m2+gTaUR14thrk9BXasbdiOjSe3nmPpwys0xSi/HpbDd3bIQC6dx/q3ZbRb/j8BEi3Po5cTJpHI9CBNDEa++GyDBN9/BBgAwfDlCVUQaNAAAAAASUVORK5CYII=');background-repeat:no-repeat;background-size:contain}.ipfs-ott{background-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAdFJREFUeNqMU89r02AYfpJ0iVm7EqhVOxw7dDBEdpiCE1RoEZRddvUgbIex/Rs7eehppyF4LOzQu4MxwYp0HgShIuwwUVSCVtl0s13afl+SzzcpyZYmyF74eN583/s+PO+PSEIIeJZdrtQVI19Cgmk/Ph39bpllXq82g7sgLxVcyKNZpIx8Uj5u5zSjc9Gov8ZihCRC8D+7On4JczevGeTGSEIC4ctKJtB1DTPXi1iCCEkIm1EFlC2Em0iwtWfinXkIzjiO0jljtDC5TtflGIGUQMB+mfja/oPv2Rx9MMjpMdJxOXyXTwkcwIkewfqQ1QtQNB385zcI14FrtQexsSb6SRysZ4Fbf+F6eHwATc9gJGNAm5iCTL5n/LCVRGADNoeaGoHqyaXj5gqQlTODovcwNk5Aj6wXqV8eCo7EDhMonEHpW+dZC7gUG98D3geo7vkb01h9cAvPdt76OGy1xntUd3bjUxAk3+l2sHJ/FgtrT0MUJNfDSm0bjQ/72Hzxxo+NK+h3B7XRNO4UrwymQtMIkdTBU0m+sBOayLsn8Ka78mQDjx/e87HXPkb1+UsfP37+AmZ1fP/suknBb6nefVQXjl06TxMlJfWKNWr+Kv8TYAAkUueexJF47QAAAABJRU5ErkJggg==');background-repeat:no-repeat;background-size:contain}.ipfs-pdf{background-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAmhJREFUeNp0U0trU0EYPTP35qYxaW6TlDapNKWGbgo2FkF8rARB6rboXusf0F/hyq2U4krFqugqSBeuAyL4SERBstHa0iR9JKZJ7mvu+M0tqZGkH3x8987jzDnnm2FSSqh4ns0VU1ybFzj674Wa3uWiWbfsFQb+jrGj8Xvbm0HlvYVRxhJprpmTlGmum+OMm5uNPZNbtjk3l82ey8++8oW4Jv/H/wdA456g2kvH99FyHNiuAz2dwflbN8YW8zMK5Go/CMfQkAhpGsyQgRCtlpE4jIULyC9fHzu7MPPEl/5ib6WOE0JJNRiHHg6j86mMjw/2gG4bkbY4PW4Yj2j64skA5FTHdaEMPiAJszt1sK0d4suJmY4k0+IDDGRfqmh0u5gejQc+fG8eYCIahRQCEfgQnIuhEkgtONE+dGxYxEDj1DhiEycZ+1YXdUpHCqTMJIYyEES5aXXQsi2kYlGEia5GtHVKn+amPBeCutPgfLALPuVu+xDVPw2EQyFEjHDghbpYNm1yKVVnYjTOerepn4E6XQmLGSPkPkOXWATMSDcjQEkAaqOu6+i/rccALtFL53LI3r0Nq1ZD4/MXZJaWYFer+PXiJc6s3IEgY3+uPYZHTAcAHM+DTE8gnM1CSyaCulv+GrRy8uYyElcu4XfhLVpkpNtn/DGA5Uu0abFH36WnzzCayWAkmYJvWeCkfb9SwY+NDbSoOx4bYqJF8rZqVRRXV/HhzWtUSmWwmWl0RmN4v76OUqGASrmMOkntSHF8MOs954dT08W248wzYsJDOujRBAaqqikTpRo/qqd0/dv97c3Lat9fAQYA4z8bX9nTsb8AAAAASUVORK5CYII=');background-repeat:no-repeat;background-size:contain}.ipfs-php{background-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAhNJREFUeNqMkltrE0EUx//ZbDaXNrvZzdIkbYOXGgxYQlCK2IIY6EufxGdB8Av44AdR8AP44JOPBR+Ego0PClUKTTXQSmkTYtOkmubSJrQ1e3H2yJSEJNIDs3PmP+f89pyZcdm2DcdWvn7LzkxFHmCIra7nm9ulg8yLZ09yXON55Dgjt1PM2iPs0+aW/frdh8bzV2/SvQBnCLiEqcFxLKSSodlrU9leiGPihWePBkgeEZO6ShC2dCAZNuf6ADb+ldQ5PUPx4BCFcgXfdwq4Ph1Dtd5CZi4Nw7SQiMdCXkl6yVIy/QBWgcU+yx/XsLK2cdHndqlK/lZxH/OpJO7fnsWY3z/YAq+g0TmHpoUH2vB5PXi8RD9Fo10aAmDJTgWyIuOupmK38rsPcOvqJO33XWEvwLJsmKxHRVEwf/MKWl/yUMf8mIloWN8rw+sP0D6PHQmYuzGNgCRiMZVA17IQV4OIaTI8buH/AJMFd02Tkp05PO4jnWvc57EDAINt7u1X8Pb9KgI+Lxbv3cFR8xjx6AQ+b+Txs/qL9KePlih2CMBCq92hg2qzt1AoV7H5YxdhdqhHzRbgcpFeqdUplpvQW4FhmAixZ/sws4BoWCM/qmsE5XqE3dDQCrqGAYWdejqZgK6GUD8+IV9VghBFN1RZJv3sT5diBwC15gncggCPJKF0WCPN8dun55jQdVpz3Ynl9leAAQAJhiGatD9AOgAAAABJRU5ErkJggg==');background-repeat:no-repeat;background-size:contain}.ipfs-png{background-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAmtJREFUeNpsU9tOE1EUXXPp0CAUWmJbC04xBANNTF+kKhG8fID6aqL/gPEj9E0lIf6Dj30HL03wxQtVIC0QKrWxNG1Dk9Z2Oj1zxn1m0oIZTnIyZ8/ee+211z5Hsm0bYg29fLGpxWIJWBYGS5IA8ncKhT9Wvf4Yqprtu+w3q85X7f9QxseD/pmZMZsxN9fnc5JNw0ACGGv6tPSvyvEDKEoWZ5Y8OHHObKpucw4B0t3agnl4CJPs2YkQVu4s61ORaBqMJc8CDBiIRhhVM9bXYdVqYAcH8M3NgS0tQQsFcfdKHEbvlr6WyaR/V6uPKPy7B4DT7lUq4MUipMlJ2MPDUKtVfKZ2nn/5BoNbkONxXeb8LYXe/A9AJLNWCxgdhZJagDI9DZg9qIkEytRSkdqTSFQtGILSbgc8LViM+tc0yPfukzIyOJ359k9YR0eQdB2KmBbpwXoM3Dod1SkD+scpEapCI5DdpsJhIJcjajQZagcjI+5oLe4VkeQnyiZgdIH2X6BJ7dSqQLfrggjw0AQwP+/GegCIHppNoFAgEMO1RZKo7BQgRi3yN05cnwdA0BQMAgF3C6pnbuNg92M9AFT1diSCh6kb+FGvo2MxnBB9ocZxp4Mns1cde213B81e7xwAcl4jkaa0IUSjUdLJwkL0Ej6VSvArCt7l81iku6GrKnYEU89VJlSJRmR0Dax+fI9suYxSo4HlWIw6M3FBlnD9YhiXabyOsOeIqG7TzDeIYo6EDGp+ZPb2kKKqH8h+mkxiI5/D1/19J3bwYPvPWXq2skkiJVxesqt0XzghpKM8nRVV2Lv2q9eLIvSfAAMAaacnllcFBmYAAAAASUVORK5CYII=');background-repeat:no-repeat;background-size:contain}.ipfs-ppt{background-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAkhJREFUeNpsU11rE0EUPTM7ySZpmzT9DNamWAtFfSiCigr+AxF9zKtv/hvf/Aki+FEi6ov4ItWHPGiwiBUKoUqqTUJImmR3M7Mz3t0kNe1m4LIwc+65595zlxljEJzdR5uf5nLmsvZx6gSvtd9W9bjhF7jg5dH9nRc/wq8YXaTSJptb0xklx7IZoKUEz1zJ2DUU69/37vFYrDxegJ9U0lC+AoIIVGg9CL+vIObP48KDQn7x0sWiVnJrnEDg7KGk+i/Ac4iUM/R7BsmrSSxtXMfa3X7el8+Kjf3KfUJ+iRJQw4w0Tc8BRyWGRAZY3rBR/VlC+XED2ayDhZyXl03+hNA3TxNQshlGLAnE44zCIL1goXZwiMNvB1i6zbC0KuAsxNITWwgNMYPeLVJiFEO9ArjHAivrAjNzBr4f4vwIgdGD4YUACsZCE8AtYGWT5jCsGQw5wEYJzP/pj5RwYTA1b07eQmfZ8P0sgdaM2FlYwWkMgMpl6NQAO33GKM0wsQWflkh1uqGVmVWblsiDkQyqxwfag35SqcktaEWTUTHYNx4iGU/C29+BvX4Lpu/C7zYgFjegSY63WySsHyXwpYHU00ieu0bAOuJbBTArBkiXKiaAmTzcvRJUV9E8rOgqBwqlY8ASs/AadbRLb8CzeTjVClqft6FdB17tL7yeCbFRBYoLr6vR/PiSEl5BZJaBD0/R2nkOZqfQ2fsKt+0SEQ+GLSIEUvJm+6jbah2+pS2aon+4g/afd4SYJVuA7vvXdC/IHQtSoTnK+yfAAIEaId1m+vudAAAAAElFTkSuQmCC');background-repeat:no-repeat;background-size:contain}.ipfs-psd{background-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAqxJREFUeNpsU01ME0EYfbtdKKWGtoItRWgJHApCBE2I0YuoiSaaeDJeOJh41YN3TfTixcRwMfEk8eDJGA+Eg0YTTRRMg02KKFooCBbTlkJLS7f7P+u3K9Xo8iWT3Zn55s173/uGM00TVlwZfzJztD92iKO5ouvQGQPHcQDN380vlDPr65fdLj4Oa41i9sFt+ytgN7o7woGOrqgvvpLBaF8vWj1NUAwGTVNRM3mf5vU/zaU+XySQuTqIFXz9hxmGLkoS7r+YxvVnrzGzlgXPDOzUZPT4m3Dt/KlIuH9oUjXYEHZZ/wOgGQZi4TZcGI5hLb+FO++TSOSKcLtcMA0dI0EPrp4+HtnfG5skiUecDGwQE2MjAwiGWlFVNDz+tIyCokJhPKYSX7Gdz2I01hOJdnY9rJ/7UwPGTEiqjtbmJtw4MYx78S/4Wa3h5UoOYwPdIOp2Xi/t18rlFgcDw6o+ydiWVRwOBnCpL0oOAMmNEhLZIgSeoxwGSWcERon/M9DoBknTIdNQNAMnO4PIVGpIFXcwndlA2OtGc4MAxml27p4AIulWSIa9QVadiYSoJxhqBJivKgh5ad3k9gaw6JdlDaqq7q5wINY4F22HaLHSDZQkBW72O9cBYFEviBIURQH7a7MN0uDisUW12ZZcaGlmdq4DwCqeTo1zNtZuW7hUqGIw7MNqSUS2ImNsKEpSdEwt5lGhfQdAkQBEoub3NNrDJfAIeBuRrcrY5xGQ2RFJAjl00I8PCckJUCB9q1URBnk38XEJEuk41tmGwZAf66s1VOh2keqwoUnYpFxHH4iKIixkN3HzVQKP3iQR/5GDKMuYmE3h+fx3MHqh1sMafztHLuiCg0FAk0uFdLqcpGY5QEXbTC/j7mIaVjc18DxufUtBJ/vcggs+3ijVz/0SYABsJHPUtu/OYwAAAABJRU5ErkJggg==');background-repeat:no-repeat;background-size:contain}.ipfs-py{background-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAlVJREFUeNpsUktvEmEUPTPzTUFmgJK2UqXQFG3pA6OBLrQxamJcaYwuu3Dp0l9iXLvVtRuDpgt3JIYaTVSaxtRHsJq2xEJBHgXmifebMhECXzKZme+ee+65516h2+2Cn2cb2VwyHl12//vP2/zOQaF4uD7GWN69e/LogfNm7kUsPBFaXYwHMeK0OlpQEJApHJTuykzK98dE98O0bLM/UNgr4v32Dj1fwSQRt9dSsfmZcMa0rIv9ODaqYrPVxuPnL1Cu1aEbJu7fvIZUIo4bqeVYRzcyv/8c3SPYpwECt/dmu4ON3Ed4TymI+hQc1ZqoE+F+uQLDsnHlwkKMscJTgl4eJOi9fxZLePNhGx6ZQRRFqH4VjZaGSv0Y6cQcJLpra0ZguIWegqDiw7lYBBZV6xiGk9DQDLzK5bEyF4Hi9VLMsoYI7J6Es5PjeHjnOl5ubqHaaJGBEkzbxplQAKIgDmBHekDTgI+qKKqKLvNApgmEgyquLs1CoFn2Y4cIeLJpkjoCLkWnUSIF3JxISIUsCjAoxhWNJLBIJs3YeXj/08oYZkOKY65HllE/bkMmY504YUd40HUq2JSSyW6iVPmLiXE/ZMYQCU+hXK3h1toqdNN0sEObyKtqtDQ6kXDwcadDS2TBryp4nX2HxXjsJK6bDnZIAZem6Tp5YMMmicn5OC4lztNWtvB9cg+hQABtWjKL2jH/T3GgBcYDXEE6mcDM6SlaJAGMWkivLBC54ZgniZaDHSI4rNSqn7/t1vgkGJPwZXffSeCjk2iUWz9+nSTQN8e6ef8EGAClUi/qoiOc3wAAAABJRU5ErkJggg==');background-repeat:no-repeat;background-size:contain}.ipfs-qt{background-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAnVJREFUeNpsU8tu00AUPU5sp41NkzRxpfSZqi0VIIQqEEJUZYXECvbwCWxYsuBD+ABUFrDrCnWBQEJdIWigBSr6pqRJ1ebhxrE9M7aZmSrQ4o505fHMnXPPPWdGiaIIYrx89GKpNDdxmXkU3aEoCsT+z8W1Sm21+jCpJctQTvaerj+TX7WbnJ+0cpfuX8mQtn8GgJ4AZtIFY2Hz3foDVRcgyt+cRHcS0IARh+D/8G0PpmVi7smd0dLs+AIjwTVEiANEYYQwCHlEZyJgIQKfoX84g9uPZ0cHZ4YWmE9nuufU0wABCSSImMsWEgqSuoqA/39/swZFTWLy7vQo7dDnfPvWWQa8GuOV3IYLJXmyzDzG2/ChZ3pwbHdQ267BKJoYuj7SF2MQhiF8LuDK/Gf0DKTBKINz1IbTbEMzU1ANDW7LAfEIQKIgBsBFlAx6LYOz6MAcvoDCtAVGGPKlAiIu/F55F33FDA6W93EOAOMaMOl7biKPwRtD8Foetj5sYPfTDtxjl1f3Ubo5jkQieQ4ACSUD2iE4XDpAdbUiW9D7UsiN9WNkZgxajwbd0LGzt3keAJPUc1N5SVeENT0Ao2BKV6QzwlZeRBSKAYhe3aYHcZWn7l1EfjyPypcK9LQGa8qCvW9j9+MvaasQOHaRhGWdhsNLR8hwodYWf6B4tYjDjSOovRqq32rSYq/lytw4A77o1V2ERiAtzY5kkUrrsH+3QF2KY87ArTtQuQ6nAf4x6FCV1D001+vYersBM2vA4y1Rm2D7/Rac/TZIw4d/6MrcGAPf9htN0miJh7Lyuoyvr8rQeP9iVJcrSKgJ+TrFcyYebXTP/RFgAFQobmIOBxbsAAAAAElFTkSuQmCC');background-repeat:no-repeat;background-size:contain}.ipfs-rar{background-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAnpJREFUeNpsUktPE1EU/u68OgylZXi0hZACQU1LEKKCMcat7jTRnQsXxsQtv4E/4M74P1iriUaNCw1FgxpjCJQKKAU60+m8mJnrmSll4XCTc8+959zz3e88GOcc8aq9evChOHl/lvMoubvWX/z4+BwTlbvw7bXdg8b7h6LE1gGW+O88CRMt4XTlR6/rYxce5Xv3jlHH19fPkBu+gWy5mlcFb3Wn/umeKOEMJF5C7xCFbtA9dRXjFoYKGiTRAlPGUV1aKU9O3VwNQ74A8DQAIZxqAuAhBPIMFYpQVAVB4CPSZjEzv1weH5tbDQN+JQ2Abu488mnzIbAAA3o/VK2PwDJo7r5Fy7ZRuvi4PFS6+qIXdVYD8Jg6BUcuOD8BozSLlRWyicgVKkTMQWwUlFF0Ooe5FIPk57BD7G0SiywyjD8bCDyHsOkeeeR3SUxEkROmU6BfQYFJMHfhWXV8efkUrb13VPMTsrcTQSzxZ/+n0GVA6EGbSGdgG9vo15fg2nFgbO8k70SRdd+mahDT81vUxTZRlJBRMsjq89C0EXCvSf7TIBZ136YZUJEiE7LgJ2dN01BZuE0dkIhxE7KcQTK1QUj+cwAEyrPZ+IydzRoyah+mLy2isbWBweESJEnB9q+1RM9Ub9GQOWkABg8HjRr2d9Yh0hTlBlRsfn+D4vg0BvUC9rZqECUJuk7Tzr1zahCYlB6HJAREPwfbbMBzLBzsbUKVI0qBgQkc+SxgWUYaIAqOpKwKXJ6bgGlaaDV/YvHaFNrtDsKTfVSrJeqIg/bRNwjclFIALeP3saybhu8SC4VBHwnhBXXIKocYRXD9QzBi4Xgchmkd9+L+CTAAMqwy+ZzluBgAAAAASUVORK5CYII=');background-repeat:no-repeat;background-size:contain}.ipfs-rb{background-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAixJREFUeNqEUktvElEU/mag5f2yJhXLwxIt0kiqsVEXujP+A925cu1Pce3WtXVtYuJCF7KtTY0NrVQIpRVKeXTkMcO9F8+9ZVooJJ5kcmbmfOe733fO1YbDIWS8+/g1dycVX7W/xyO3vdsuVKqvnE7HZ230783rlyo7bVBicSGyfjsVwozomVbIPe/c+FmsPHfoRKJd1HT7hXHBZjVbA4aA14NnD9bC2VR8gwuxPi5Sx39Cp+M0XUP0ahhP1jLhW7HFD4zze3b93ILtXYyyVKlR8/5hFbnvO9gtlrGSjOF+OpXkYviWyo8mCS4R6bqO4p86vm3v4fC4DrPfw4unj1XN6JvBaQtjChzUXK43sVU4wNFJA43Tv/B73edQwTmfIhAjCVL6UdPAj1IVFSKhCdAcAI9rnjBiAjtBYEu3GEeh1sKJ0YXR68sVIujzIhzwY8DEBHZqiLRKkicQDfvABxaiQTc4Y/C65pCOXwcjcmlvJgHtlwi4epYifiQWgmoLZwPW6HQG07LgcOgKO0UglAKOTt/E+09fwAiUWU7QAE9xUK3jbvomsispZVHMVEDSZdHo9rCZ/4VIMKAu0XGjpU7d2S8hk0pCELHEzrjKnCQOYJoD+Dxu1RyiwUm5LaMDo9NFt2cqDLvY4oQFp/QpfT/MrmI5FkWebt+NpWto0j2QmQkOjZ9hpwhqjXZzM/+7LU+cc7lRrjXh8/lVLRK5ovLWXglOsiOxdt8/AQYAzv8qbmu6vgEAAAAASUVORK5CYII=');background-repeat:no-repeat;background-size:contain}.ipfs-rtf{background-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAe5JREFUeNqEU01PE0EYfnZmd5FSvgLYFuwWt9EgHyEaox68eDJevHvwJ/hTPHv1N/QgZ2NC4g3kUAQKFKGhjVKqRrvbnRlnht262FHfy+y8877PPM8z71pCCKh4/ebt+rJfXEz26Vjf2mnsN5rPKKWbVpx7+eK5Xu2kyMtNTd5d8MdhiJ9BOO7atFI9ajy1UyAqSPIRMR6ZmoNehNHMMB7fX/UWvEKFMbYKE8DfQnAhwRmmJkbx6M6S5+WmK2Evup2c9yUk2nnKA0XVcSiGXAe1k5beP1i+4RFCXqnPywB/AKVzK34RjHNYlgVKCH50w7EBBogbTa/AVM5SgBdn0gc2AMDjPsbFPz2xye9asweS6n+NTbG8BCCfUtLjff2WoVnVpAH6z6hMUtJE3EykYfpF4vUiL3QNS7FMeSAQRBHW3r1Hq91B+VoBQRji4+ExFsvz6Hz7jm7Yw5OH92AcJKW9G4SoHhzhy/lXbB98Qmm2oCXN5WawsV2TACEoJXqwTKOsb3BtR2ucmZxANpPB8JUhyPnHWDaDpfJ1eZFALzJJ4MKO5MEtv4TSXB7V/br8iQLMz+almRZWbvoo5q9qRlxwewCgeXbe3qrVO5ZkUD/9jJGRLPaOm6COi92TU1DbxYe9umRD0DrrtJO+XwIMABWp9nS+FgaoAAAAAElFTkSuQmCC');background-repeat:no-repeat;background-size:contain}.ipfs-sass{background-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6MDNDMTBBM0JGMTE5MTFFMTg3N0NFOTIyMTQ2QzhBNkQiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6MDNDMTBBM0NGMTE5MTFFMTg3N0NFOTIyMTQ2QzhBNkQiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDowM0MxMEEzOUYxMTkxMUUxODc3Q0U5MjIxNDZDOEE2RCIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDowM0MxMEEzQUYxMTkxMUUxODc3Q0U5MjIxNDZDOEE2RCIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/Po72XUcAAAJcSURBVHjahFJdTxNBFD1bykc/ttvdtttWGgI0bYrUgDZoNYqRJ014kMRXHvwB/hQTH/wFhMREJfFBQxBjhMRIFEQSCAlQxKYGggiU3e3HbnfX2bFt1EU9k9m9mblz5p4zlzFNExYmpue/jmTSZw5PZAl1MAwDT0c7O72wvPdudeNakPNtOZ0tsM7cvzdOc5yN5LDAsTFRAJks/kC2PxFRVe39Si6f4byez62EpAEH/gNN18F53Ri/Ocxf7OtdLMpKT42s/ZPg1cISJp/P0tg0TBzLCoK8D7eHh4RkLLJ4cCz12AjMXwgez8yhqtVo3NbqRKlcxcSL16gZwJ2Ry8KVc8kZO0HdTKlURn+8G6PD2SZhLMQj96WAiMAh2RXFYKI78lcJcx9WYBCycICnpNbojUWpD5Y0C4Zh2D0w6hWc70uQZC+IWfQZrXF0IsHvY+meBd08haAhoVMMQFJKWF7PNZM+klhRyogGhbqxOIXAMOtEwGAqDqVcgbVkkE+5UsEAWavf0az2t0ZqvK2qabh6IU3joizDwTgwej1LdVfJXkdbK8mt2QkayO99A0/0trQ46I1lVcX+UREhnsP34yLp1AD1xibBMuntpzU8mJyi3Tc1O4+l9U06n7x8Q/8PHz1DrrALt8tlr0CrkbJMHTop9Sk5sLa1g8L+ARJdnShKClY3tunN69t5iGLYTlCtakjFY7gxNABdN3B37BaqqoYT8pyX0in4ORbRkIA46YlDRbUTbBZ2Jb/Pw4qiKFnapcpPo9pdbrg8DjAOBsFgELJmsGs7eWkkc5bu/xBgAHkWC6UPADTOAAAAAElFTkSuQmCC');background-repeat:no-repeat;background-size:contain}.ipfs-scss{background-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6RkM4QjYyNDVGMTE4MTFFMTlBREZCNDNEM0ExMTk0MUIiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6RkM4QjYyNDZGMTE4MTFFMTlBREZCNDNEM0ExMTk0MUIiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpGQzhCNjI0M0YxMTgxMUUxOUFERkI0M0QzQTExOTQxQiIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpGQzhCNjI0NEYxMTgxMUUxOUFERkI0M0QzQTExOTQxQiIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/Pkf1yeMAAAJbSURBVHjahFNdTxNBFD0tLULpB91uodVWPmorUIxo0VSiNSExMYYHE33l0Ud/in+C+OSjYgjRGDBRCKJIUkIEWi0WKlja0ul22+5219lJ26gLeiezuXvn7rnnnrlrUFUVms3Mvd2bjIyezRVLBA0zGAzo6jhjm1te+7EU37rFO+w7JlMbtG+ePJ5mOaZmci/nsPl6ONBtw18WDQc9tZq0sp7YjTisXV/NFKRpRvzHpHodDqsF03djzuvDg6vHJWFAprF/Arxe/oins6+YryoqCiUBvNOO+7FrXMjnWc0WyIAOQP0N4Nn8IqqSzPx2swllsYqZl28gK8DDyRvcxKXQvB6gISYpiwgH+jEVi7YAfW4nEqk0PJwDofNejAX7Pae2sPhhHQoF63U5Gai2Bn1epoPWmmaKoug1UBoMrgwHabIVVCx2jdrKFwm67TZ2plldPQGg2cK5HheIUMbaZqKV9In6giDCy3MNYXECgKI2gICxoQAEsQItpNCHWKngMo01arTY/jFIzbutShJuXh1Fm9FImYiM7tTtKOtbO+toN9Nc+fQ5SGUOIVYl7HzPIH2YRZ0y2KZ+sVzBHn2v1mpMGx0DTaR3nzfwfGEJdybGkdo/wEigDyvxLzg4yiESvojZhfd49OAeLJ2degaSLIPOO6vwgiYaaRErTRREEdn8MeJbSVZ5M7nLdNExqFLaQwEfFfACQn1+HBWKSKb3MT4Sgstuh9vVDa+bQ4DORE6o6RlspzMk9TOPfr+fiLJCLFYr3TZSKNcI7+aJwWQmPM+TkqRg49tu65f/JcAAMwMas6WUKd8AAAAASUVORK5CYII=');background-repeat:no-repeat;background-size:contain}.ipfs-sql{background-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAh5JREFUeNp8kctrE1EUxr+ZyXMkoa1NBROaSkpTBE23PhZ25cql2y5duvAPUdGFS1FxIRRBXZlFQ9GVdDENIhGJxkDsw2mneZnM83ruNZlOmNoDhzlzz3d/9zv3Sowx8Ch/qlYK2XM3cEJsbH0+qjV/rd6/u6aN18b7RMFT+9aosP/Ex+0ae/puw7j36PlKEMAzctKJ3aGFamMHjV0d+wcGitkMrpWWp6hVIciEk2MAOwbUWjosx0UiFoWqJpGMx5DNzODq5aIPoa82AWBg/lyKLMH1PMp/a9XvLXLzG1cuFlBaWpiKxaIPSLY6CaC93ggQjyiQZRkeQSzLRovGaPciWLt5faSWEBoh6KBvOhiaNga0+Y9pwaFxvu7rfp8F5pWDt+qNMp2IijHGwddWCvN+33/CoAOP5nVdT9SdoQ1JkggiQ6Yvr7V60+9z7akA2gfH9cRF8hO5F5Ve4lQAF9uuK+qFsylkzsQxrcaQm04hdWkR83Mzfp9rQ3fAFzu9Ph6+WMfjl6/pGBdb2jbKmx8QlRjWy5vkyhUZBPgOeGNHN9AbDLGUz6He2hVj3Ll9C8/evsdgaMK0HV8bcmDTU0UUBYXcedR+NLGnH0I3jvDk1Rsy46FP4C/1BtrdntCGHNiOAzWZgEKQ5Qt5lIqLojbaXSQTcRy2OwT4SZqk0IYAOgkVWUE+lxX/zb0DpFNpkTzmZmfFtzewhHYcfwUYAMZmVaZQlLFHAAAAAElFTkSuQmCC');background-repeat:no-repeat;background-size:contain}.ipfs-tga{background-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAnxJREFUeNp0U89PE0EU/ra725K22ILRGipb22pMG6JcSEQTbUIwnozxpBcvepeEP0KPogcT/wlNT17kIKbEmChFUYKGVtL0R2gLtNCl3Z1Z3+zSAlonmezOe/O+973vvZEsy4JYnqdPMu6RkSQYQ29JEkB+PZcrslrtPhQl23VZc8/tr9I1yMHg0EA8HrBM04lVFAhoY38fSSDQVN3pfKV8G7KcxZHl6v1xblqU3eLc3p2VFZjr6+gQgwsnhzGTuq6Nhs6kYZqXjwL0GFhEl3U60OfnwWs1GGtrUKNRsKkpeIIBpKIRtI1J7cX7hXRhc/MOhXw5DkCZGG2zXAajzFIoBMvng1ypIKOqmP30GW3OIEcimovzlxRy5RgAFwDEAIODkCcmIMdiQLsNdWwMZdJlg8pzEUt1aBhKq3XinxKYqF9yQbqRIqsMy+0Gyy47bKgUWXSLtDENE5wdtuqQATm50F1VnPbRGeEw8HXZbiV8fsDvI9ldju9vADAyihLEbrWAZhOoVp3z6iqBUiB1A4nEfwCEsbkL/M4TgE5n5jDx+oTEzp1d8m9tC8H6MaAB0imzx0NU/WKUYE+loEyawDBo2ui6TGfT6ANAxrvx87gYCGCxXEKVJvCWFsG3eh1vN/J4OD6Od4UC8o0G3TX7TGLHwI9iEQmvF9X6Fh7F4/iYy+GcLOMSlfEgGsP0qdNOmX0BiGKpVkV1bw/1nW2b/gCpf1PTcI+Y7eg6ps+G4bG4PR99SjAVo9HE4q+fKNE0vl5awuSohjeijbRefVjAtUgEQRK7Yhi9OKn7nKWZxxlSPWl3QwgnaIrW8QMhD542vUbx/W49m7sq4v4IMABOqi3Ej7bAEAAAAABJRU5ErkJggg==');background-repeat:no-repeat;background-size:contain}.ipfs-tgz{background-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAnhJREFUeNpsU1trE0EYPbMzSTfdtInFtkkpiaXVWou2FRUEn/so6JugL/oH/Af+B1988if40jcFERQURNBSQdDWlLQN2lsue8neZsZvc7FoOrDszM75znfOmVmmtUYyvry++36yfOeS1qqzDtvH2P76ApPlW3Drb2sHex/uccHWAdbZX30kO2+B3siN3zhTnHuQ66+95i423jzFzOVljBdKOZNHazvVT7e5wF+SZBj9iZJ+3J11mbW2kR8T4LwFli5i4fqTUvnczTUp9RLtDhKgJx0q4dEwWAxrREKICHEsoYYXMXvlcWmquLgmY71yCkG/c0AkARgLMZpnMDMpGNzEYe0dGp6HwvmHpbHC1Wf9MnFCkHQOyYEPzSJwQ2B65Tm5NZG3Fshim6wbMNJn4bpHowMKtIqo2COgR2IcAptwjvcgo6i77igjEmVDqbY8xQJ1VwRULhiBI6+G9Zf3cbTziuzIDkmHSNqECTFgQScEcYuc2NA8TcdYwXD+GkK/TYVN+u72WrIudiAD8o6oAR2RRCmQMjis3CIy1iSpPySCXhFTXeyAgh4BR+JVw8pauLi0Cp4yCX9A90FQhnSBYtnF/k+Q+HYam9itfIZB3QvT8zj8XSW5EhNTs9ivbSLwPUzPLNPJBIMEKnaQYg6aB9+RGR5F5VsNgnNKXMI1NdJGG5WfHzFVLJ7k8c8xUngpVodlDSGbFYj8Y4yMpOG09lHf3yIFPzA3fwHZTAQVtU4JUTeFDrdgDdlI8wAz5Qy2KxswReI7QODZcOr0ZH3q2hIDBI7zq16tuk3FNPxAI4wN+pkoccYoE4YJU5EdUtM4Qst26v26PwIMAKj3P/2YUKgYAAAAAElFTkSuQmCC');background-repeat:no-repeat;background-size:contain}.ipfs-tiff{background-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAmRJREFUeNp0UktPE1EU/qYzHWstlrYJNcWUElyUJsaNGh9B0g1Lo0v9Ey78EbrVxBhXuHShm25YGBJRQpAYBDEWpaEPEhksdVpbyjzveO4MfZDCTWbauefc736PIziOA77OPH2yJCcSGdg2uksQAKofFou/7VrtASRpvVNynj13f6XOhjg8HAlMTIQdy/LO+v3uYUPTkAHCTb+cK+0pdyGK6+hbvu4/xiyHbncYAwfR19ZgbG/DoO9LsSgeTd9JXoxfyMG2rvQDdBlwIZauQ5ufh12twioU4E+nYU1NIRCNIDs+Bt28mXzx8VNuZ796j9q/DgAwomwqClilAmF0FE4wCInAlkjO4y+r0JgNX2os6XPYS2q/cQyAcQatFjA0BPH6NYipccAwIGUy2CVJFZInkKlyJAqx3T4/IMGmJkeWIWSz5KgI5pdhb3yDXS5DSCYh8rTID8s0wexeVD0GtMd85KkkefFxUfE47M1NokbJkByEQl6tL+ouAI+MUwbFhnYbaJKc/Sqg0x4H4eDRGDA56fUOABA9/GsCpaIHwr8FOhQ823O5RfW66tUGADhNy3RNRDjcN41HLxdQ8J6jYTsOQLfOJBK4f+s2/uoathoNGKT1MtFeVHZxdWTEZfEq/wMKl3rCJOIzTV6ADs2R5ulYDDNkYjp0DhrF+zCVgkw31+v1UxjQZkNV0SADd2o1MIuc9gmY+/kLxb0/UFoHePd9A1qzeUoKpilx9xcLWzgg+u/zeVfuQqkM9bCN1ysrWKXxdtPgvScwUAm58XZ52W16QyPtifRUzi588GbEi1ztHPsvwAC4uC9qhnsZvwAAAABJRU5ErkJggg==');background-repeat:no-repeat;background-size:contain}.ipfs-txt{background-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAeJJREFUeNp8UrtOG1EQPfsyXiyzBguIJSyChZBBEFCKpKHLo6egpErNn8CHgH8gkZIiTSIXLhJAWCgkoMgRMSiRBSK29z4y9+I1d/HCrFb3MTPnnjkzlpQSynY+fP70fGF2gQuByCz6lfdd9Uurfvrrjes6762eb3tzQ69uFJwPsqOPC+MBEmxxphi4tlU5OGmsOzaBWLc+O9oIIVhScidkyGZ8vH62nHtSKlaI4cse6TjAfSaFBBcco0EWqyvzubmpyQrj/FXk75cQaSEMeMXU8xykPA/Hjd/6/LRcyjEpt2i7HAe4A2TeLZWKUOJaVLxj27j813EHGKCXaAJExu/4BOdiAED08riQD2riOrexyRoYc3CvsAbLGAAjZga7vgZG23WMCdBvoxKJc36TRBlMiaa2JByjNqqD8qkYc1pjDK7abey+/YhrWlfKswhpiCR96aEU9o5+QE3g2ovVWDm2Sc22bBQm8vrVpbkS9r+doPr1EOWZaQ0yFoxg2PcREosEAI4uvZhJpzFMP+cSXRbq+043RManez+tNWKMI6GN0g0Z04HFR+NoNC/0yx717efZOSbzY3AcR4Op2AGA5p/W31r9e0vNgSrh9OwCrpeCkqvZuqTybnpRqx/r2CjvvwADAJC/7lzAzQmwAAAAAElFTkSuQmCC');background-repeat:no-repeat;background-size:contain}.ipfs-wav{background-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAApFJREFUeNpsU1tPE0EYPXtpKbX0wqUQKVQMFdIXQBNCQBs06KP+B8ODGh+Mf4b/4IsGE54kxhcMBrkp7YOQgBRvSKG73fvsrt8Otoask0xmd+b7zpxzvm8E3/cRjPkniyulW0NFy2JoDkEAguOlpXJ9p3L8MBqVl4O9YHxae8pXuRlcGO7KPLhfTDVUqwUgigJMy4Whm6lEXHjxYf3XnByRN0QB/2KaH7btMlUxoRJAcyqKhdOaht7+DJ49n+2cvTnwynXcsb+kLwJ4rgfmMDDGWqvneXCZS9ND7mov5h9ND85M9y86Dpto5rUkuJ4Py3YDJpy6QGJPayqB+Njf+43XL220t0cwOZkfrNXsBUqZugDA6CbLdAiAwaek1ZU9LmP8Rh6S78GsGxjOp9FdzKJaVZIhBgGASzK21w/wbrnCk8euX+EMAjaaZuPHdwUdHVFYluuGPGCORwwYjg5rqOwccRk+3Ux0IEvntmsNG4ZmUayL/wAwKHUNfZfTKN0ZRaw9Cof8qJ/pMAyHy5KkAMTksSEJtnMenM7EMVMawbejMzJRh67bXEYiIXEAVTW50SEAhzqwfqrBcXx4VOhYm4RsNgHbsJFOyZTsQ1MN+hcohoUlkFiMT+TQFpMwXOjGpXgE+XwGk1N5pFJtKNCequgYGupCRBbCDOp0KBJc4VoP3dyBONW8uydBgBHUThqQKCk3mEZ/LoUG+RBioJO7VarAwEAntjYPiUUW9Hh4b2R7k9j98hN37xWx8fGAt3eIAdVMLn+uUv+b2KReSCZjZJiB9bV9jIz2ofr1BKvvd7G9dRC80lae0HzOt+cWVnrSKDrMJykifwNBpCgE/UAllEXufmDu8Zlffvvm8XSQ90eAAQA0pF7c08o4PAAAAABJRU5ErkJggg==');background-repeat:no-repeat;background-size:contain}.ipfs-xls{background-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAmxJREFUeNpsU0trFEEQ/mamZ3Y2+0zIC2MmITEkUYgERFQErx5E8KTi1b/h79A/4SW3nCNeYggBYZVEMU/y3N3Z7M7OTD/G6lk2ruw20zRdU/XV91VVG0mSQK/3n1a/jky6d6Xs3G8WXS+Pw5N6LXjLLGuna/78oZKerGsYKtrDE16uJGL1L9gEOOcYd2dL1fNwrbL//aXN7J1efPMmkUqEFAk0A0VZNbFEaQCBscIkXj975y3NLq9xye8PBkAniHOFph+j2eC4rsdoB4LsFubGl/Hq8RtvYWpxTQi52o1jvWiGYaRZL0/auDgOkC/Z8BYL2Pqxidp1FZkhoDxpeaXA/Ujuj/4HoOxKKjiOiek7RUShRNQWaNYFQuMafrYCxiw4ozZKfqbYJ0EvRdl1DQyyTs8XCNTA6UELMwvDyLpZWIZNNlNLlQOK2LMJRJ+5AkuZ1S7CFFzJzk56GnUjQWlYkqCoBWFbonEVYcLLA4dNnB624GQsDBWIgfZJEgxkoChzSFWvn4VpQemDm2VwXQsXJwF1h6c+gxlQ5jgSiEUEt0wdIe7tMES+nEG2aCLiJMOIIWIr9e0DEELAMUrwRuchVAyTKimUwO75Jm6VF3Bv7imOaj+xd7UFKVS/BPJF1b/E4tgTrE49J60O5kceoNqowiuuYKa8ghHXA48U9MT2AQgyRvTThE30bQiaSGa4yLMJNFo+Dq/2cHt4CYlwyFf2S6BHwwrMw/avDbR5C1k7h1YQ4KH3Amf+AcZyEbZPv9CItzQD1l9EbtYOjv74v/d3O9RMPTDrsEwGIWN8q2yk7XNYRs9JrRv3V4ABADSGR6eQ0/NQAAAAAElFTkSuQmCC');background-repeat:no-repeat;background-size:contain}.ipfs-xlsx{background-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAmlJREFUeNpsU8tqFEEUPVXdPY/ueWZIoiYZiSYKYhJc6EbduHOhgijo3t/wH1z6B0JAhOyMILhxo4kJGk1ASTAxwWF0Mpp5dHc9vFUzYwidaoqmq+8959xzbzGtNcx69PTS26ETmQtS9r4Hy/xv7MW7jV+th5yzVcaYPX/++It9u4NAv+CVR6tBUUTqMJsDcRzjZOZM8W9ZLKx+/XDb4e5/kH5In0lpIYWGUaC0YTZnBCAEKoVR3L36oDo7NbsglZwbqD6iQKOXFMcKUVfBkBAoQhlD5xxMDp/HrSv3q1JgYW3z0x0KXzkCYJaRZljru23aHWTzLiamAyytv0O9UYdf5PArqlppBfMUfu4oALErqZBKcUxMFRCHEp0DgW5Lo4N9NIN1dF0XXsVFOUyPJTzo+WBANDidjp8tgHGG3c0DnJ4uIRf4cOCBaW5KjY8xkZL72xpJ9QcFz5bVqHUJGHZL2YtNmKi06YCyiVFb4s/vEKMTAf1p4edOG6mMi1zR6wEpdUwX+vLDtkCzHoK7ptcM6ayLmGajvtex4PliyoIkFRjmUEASelB2rXQRSfjUCT9PlWpmW21iTGzCAyEkUixPRqXhe2V4zKczbdmybgkpJ0cGOuA6Y2MTCsKoi5HsNK7N3MN+uwYaWbxYfoLLkzdxcew6lrYWaZhm8PHHG3zffp1UwJSHz9vvkU8PodbcQYYYS5lxYkxTkGdVDQdV1Js1qPgYD6JIuIE7gsXVefIhIuM05k7dwMbeMmh87a18ufIMaVYyprrJLgje2Nr+1tzYXANnDnr3zRhHj37Vvy2wpXHtNAd5/wQYAD6WMuT2CwoVAAAAAElFTkSuQmCC');background-repeat:no-repeat;background-size:contain}.ipfs-xml{background-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAilJREFUeNqMks1PE0EYxh+g3W2t1G0sEqyISynUFJsSOShNwCamiYZED3LgIkcuxoN/iCZePZiYGD2aGD+i0F5KMChxlVaakAK2ykcAt+WzdLu7zkxo3WZL4pu8mXfmeeY3885ug67roPFh5nvc62m9hjoR+5LMp7MrkYf370qVtco+VtCUFpbj+jGR+JbWn76OyQ8ePwsZATQb8R/hanZgINgj9IqeuBFCw1Kt9OMBnNWCs24XwkG/QKYUEiGjVAPQof/rq0783pShET3ULQo8xz0iS5FaANmrHQH2DoqY+DSLSz6RzecWlnD9ymU47LYjd4O5BXqDTG4FM3NpTEkpdJ5rw0AowLRMbhUfp58gTOaD/UHmNQPI6YmvKWRX1zESHUJ/oBs2nmPa+Mgw0ZIM3tZyGoJwygzQNB2jNyJIZX7iB0lpPoM70UGmPX8zCU+rG8NDVxHwdiC5mKsPUFUN/gvtLLf39sFzVqaN3YrC6TjBauqhXhNA1TQoqloV7Da+pjZq1FsXUCamF29j6LvYhf3iISamZ3Fv9DZevouhRzzPfOG+3hpA9U9UyioOlTJ7pFeTCQS6RGzIebyf+oz5pSzWtmSW1EO9phvQ00slBRt/8qR3DoWdXbiczUiTzd52D+tdLmyTB14mx1rMAKVcRpEATjrsuElee/HXGmnFRyBOGD30C/nEDjNgs7CDpsYmnHG3YPegBCvHs9oYfm8nG9dJa5X4K8AAQzQX4KSN3wcAAAAASUVORK5CYII=');background-repeat:no-repeat;background-size:contain}.ipfs-yml{background-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAdxJREFUeNqMUl1rE0EUPbM7m5Y0Zptu21AwWwhYpfSDFh+kvvRd8N0Hf4I/xWdf/Q158F0QoQ+CVsFKaLSQpt/dpmvztTOzzky6cetOpWcZZvbO3MO5514SxzEU3r57/3GpWllM/tP4sL3TarROXuSo/SWJvX71Uu80Cfhlr/T4UdWFAVfdnmsTUtvdP35OUyQKVnJgXDBTcj9icAsTeLax7j/052qM81UjwW1QJXEhMF0qYnN90fdnvdogYmvJPU0/VBApD4hcDrWRcyikfB17srzgW7b9Rh1vEvxDlI4tVytaBSEEtmWh0xsUMwpwnWjqAlcxogiHd1wiQyCu87iI/+sJtf6+NXsgpd7FWCMB50KvkYMGMbLdZgLlfj+K9K4+FnFQ2x7WntIs50AbmiGwLILt+k+EvzvSNIHzdigdJ/AmXQRhiHv5POSwYmG+cqPVo0HqDxj8uTK2vn1Hfa+JmdIkvtZ/4fOPXU3WPDpFeNWVyUKryCiIGMN4zsH98gym3CIcOTwT+XHdXrdQQHAZotE8kBPpSqPNHtBOr48HUmLOcXRJT9dWNMGYJFby91pHOAvaykSaITg+bwefdhrteDRTMSwyrFCgI88E056Hy+4Ah2cXQZL3R4ABALUe7fqXWFN6AAAAAElFTkSuQmCC');background-repeat:no-repeat;background-size:contain}.ipfs-zip{background-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAm9JREFUeNpsk0tv00AUhc+MY6dOmgeFJg1FoVVpUWlFC0s2IFF1jxBbhKj4BSxYdscPYcEmQmIDq0gsERIViy4TpD7VFzF1Ho5je2a4thOqNhlp5Mz4zudzzp0wpRTC8fPrk0/TC6+fDtYicLH97T1Kc2vQDcs+rH3eUAxVznn0fn1DRM8E+iOdv5ct3XmZG6yVlNj6solUbgVTt0q5FGtX6vXqC6VklTE+KAO/OODHSIQPRQpsXC+kkEz2ELA0ystv84tLzyucsbWByisAGf+QAS2CCDRRLMJMmxC+i8C4jdLCm/zM7OOKFGptcO6/BTpJ0yeQB0Y+mfKQuZZG0jQgeRbW8Xdomobs9LN8scc+UPHNy4Dwq8IljotIIQEm59/RoSyM1CKkXKZNBm7kIVgyM6wgAnSgRK9vqQfHPiMFDHqyFVsLR9Cm0o4YzoAASrSjCelQfRPb1Vc4qn0EY5L2W9GEaBLcxQgFHpGbkMIDJ69e+wjJ8VXqRgKid0r7ftQdxkRs9SqA2kgAm14SSIQh9uhuLGPMnKJs/5KquL1x0N0RCsizigoDaLqBdHoMiyvrlBsHVx1wphD4BCewoqxGKKDwAgtOy8JufYuk+5golGGaGZwc1sIGoDz3AOPZSVLaHgVwydoJDM1H4DbQODughB3YpOD44HfoHgnu4e7So0uAi0stHLJ3Aud8B9bpHu6vPoSu9TtDl6tUuoFiIYOgu0+158MKmOxomtyD3Qi/3MTR7i8K0EDG1GHO5DE3X4DvNahZlJOwEkOATvdPc2//hx3mXJ5lFJaF8K8bStd0YGfnOJbMGex21x6c+yfAAOlIPDJzr7cLAAAAAElFTkSuQmCC');background-repeat:no-repeat;background-size:contain} +.narrow {width: 0px;} +.padding { margin: 100px;} +#header { + background: #000; +} +#logo { + height: 25px; + margin: 10px; +} +.ipfs-icon { + width:16px; +} +` diff --git a/packages/ipfs-http-gateway/src/utils/path.js b/packages/ipfs-http-gateway/src/utils/path.js index 9f0564ff19..9d24189040 100644 --- a/packages/ipfs-http-gateway/src/utils/path.js +++ b/packages/ipfs-http-gateway/src/utils/path.js @@ -53,8 +53,52 @@ function joinURLParts (...urls) { return urls.join('/') } +/** + * Converts path or url to an array starting at CID + * + * @param {string} path + */ + function cidArray (path) { + if (path[path.length - 1] === '/') { + path = path.substring(0, path.length - 1) + } + // skip /ipxs/ prefix + if (path.match(/^\/ip[fn]s\//)) { + path = path.substring(6) + } + // skip ipxs:// protocol + if (path.match(/^ip[fn]s:\/\//)) { + path = path.substring(7) + } + return path.split('/') +} + +/** + * @param {string} url + */ +function removeLeadingSlash (url) { + if (url[0] === '/') { + url = url.substring(1) + } + + return url +} + +/** + * @param {string} url + */ +function removeSlashFromBothEnds (url) { + url = removeLeadingSlash(url) + url = removeTrailingSlash(url) + + return url +} + module.exports = { - splitPath: splitPath, - removeTrailingSlash: removeTrailingSlash, - joinURLParts: joinURLParts + splitPath, + removeLeadingSlash, + removeTrailingSlash, + joinURLParts, + removeSlashFromBothEnds, + cidArray } diff --git a/packages/ipfs-http-gateway/src/utils/resolver.js b/packages/ipfs-http-gateway/src/utils/resolver.js new file mode 100644 index 0000000000..0a99bc3aa9 --- /dev/null +++ b/packages/ipfs-http-gateway/src/utils/resolver.js @@ -0,0 +1,75 @@ +'use strict' + +const pTryEach = require('p-try-each') +const { render } = require('./dir-view') + +const INDEX_HTML_FILES = [ + 'index.html', + 'index.htm', + 'index.shtml' +] + +/** + * @param {*} ipfs + * @param {*} path + */ +const findIndexFile = (ipfs, path) => { + return pTryEach(INDEX_HTML_FILES.map(file => { + return async () => { + const stats = await ipfs.files.stat(`${path}/${file}`) + + return { + name: file, + cid: stats.cid + } + } + })) +} + +/** + * @param {*} ipfs + * @param {string} path + * @param {*} cid + */ +const directory = async (ipfs, path, cid) => { + // Test if it is a Website + try { + const res = await findIndexFile(ipfs, path) + + return [{ Name: res.name }] + } catch (/** @type {any} */ err) { + if (err.message.includes('does not exist')) { + // not a website, just show a directory listing + const result = await ipfs.dag.get(cid) + + return render(path, result.value.Links) + } + + throw err + } +} + +/** + * @param {*} ipfs + * @param {string} path + */ +const cid = async (ipfs, path) => { + const stats = await ipfs.files.stat(path) + + if (stats.type.includes('directory')) { + const err = Object.assign(new Error('This dag node is a directory'), { + cid: stats.cid, + fileName: stats.fileName, + dagDirType: stats.type + }) + + throw err + } + + return { cid: stats.cid } +} + +module.exports = { + directory, + cid +} diff --git a/packages/ipfs-http-gateway/src/utils/response.js b/packages/ipfs-http-gateway/src/utils/response.js new file mode 100644 index 0000000000..19ff65f52f --- /dev/null +++ b/packages/ipfs-http-gateway/src/utils/response.js @@ -0,0 +1,105 @@ +/* global Response, Blob */ + +'use strict' + +// @ts-ignore no types +const toStream = require('it-to-stream') +const concat = require('it-concat') +// @ts-ignore no types +const toBuffer = require('it-buffer') +const debug = require('debug') +const ipfsResolver = require('./resolver') +const { + joinURLParts, + removeTrailingSlash +} = require('./path') +const { detectContentType } = require('./content-type') +const log = debug('ipfs:http:response') + +// TODO: pass path and add Etag and X-Ipfs-Path + tests +const getHeader = (status = 200, statusText = 'OK', headers = {}) => ({ + status, + statusText, + headers +}) + +/** + * handle hash resolve error (simple hash, test for directory now) + * + * @param {*} node + * @param {string} path + * @param {*} error + */ +const handleResolveError = async (node, path, error) => { + const errorString = error.toString() + + if (errorString.includes('dag node is a directory')) { + try { + const content = await ipfsResolver.directory(node, path, error.cid) + // dir render + if (typeof content === 'string') { + return new Response(content, getHeader(200, 'OK', { 'Content-Type': 'text/html' })) + } + + // redirect to dir entry point (index) + return Response.redirect(joinURLParts(path, content[0].Name)) + } catch (/** @type {any} */ error) { + log(error) + return new Response(errorString, getHeader(500, error.toString())) + } + } + + if (errorString.startsWith('Error: no link named')) { + return new Response(errorString, getHeader(404, errorString)) + } + + if (errorString.startsWith('Error: multihash length inconsistent') || errorString.startsWith('Error: Non-base58 character')) { + return new Response(errorString, getHeader(400, errorString)) + } + + return new Response(errorString, getHeader(500, errorString)) +} + +/** + * + * @param {*} ipfsNode + * @param {*} ipfsPath + * @returns + */ +async function getResponse (ipfsNode, ipfsPath) { + // remove trailing slash for files if needed + if (ipfsPath.endsWith('/')) { + return Response.redirect(removeTrailingSlash(ipfsPath)) + } + + try { + const resolvedData = await ipfsResolver.cid(ipfsNode, ipfsPath) + const { source, contentType } = await detectContentType(ipfsPath, ipfsNode.cat(resolvedData.cid)) + + if (typeof Blob === 'undefined') { + const responseStream = toStream.readable(toBuffer(source)) + + return contentType + ? new Response(responseStream, getHeader(200, 'OK', { 'Content-Type': contentType })) + : new Response(responseStream, getHeader()) + } + + try { + const data = await concat(source) + const blob = new Blob([data.slice()]) + + return contentType + ? new Response(blob, getHeader(200, 'OK', { 'Content-Type': contentType })) + : new Response(blob, getHeader()) + } catch (/** @type {any} */ err) { + return new Response(err.toString(), getHeader(500, 'Error fetching the file')) + } + } catch (error) { + log(error) + return handleResolveError(ipfsNode, ipfsPath, error) + } +} + +module.exports = { + getResponse +} diff --git a/packages/ipfs-http-gateway/test/fixtures/.gitattributes b/packages/ipfs-http-gateway/test/fixtures/.gitattributes new file mode 100644 index 0000000000..50b793660f --- /dev/null +++ b/packages/ipfs-http-gateway/test/fixtures/.gitattributes @@ -0,0 +1,5 @@ +# Make sure fixtures have correct line endings on windows + +*.txt text eol=lf +*.svg text eol=lf +*.html text eol=lf diff --git a/packages/ipfs-http-gateway/test/fixtures/test-folder/hello-link b/packages/ipfs-http-gateway/test/fixtures/test-folder/hello-link new file mode 120000 index 0000000000..50b07e9e71 --- /dev/null +++ b/packages/ipfs-http-gateway/test/fixtures/test-folder/hello-link @@ -0,0 +1 @@ +files/hello.txt \ No newline at end of file diff --git a/packages/ipfs-http-gateway/test/fixtures/test-folder/holmes.txt b/packages/ipfs-http-gateway/test/fixtures/test-folder/holmes.txt new file mode 100644 index 0000000000..292f068d53 --- /dev/null +++ b/packages/ipfs-http-gateway/test/fixtures/test-folder/holmes.txt @@ -0,0 +1,13052 @@ +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 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. diff --git a/packages/ipfs-http-gateway/test/fixtures/test-folder/pp.txt b/packages/ipfs-http-gateway/test/fixtures/test-folder/pp.txt new file mode 100644 index 0000000000..f1922904c7 --- /dev/null +++ b/packages/ipfs-http-gateway/test/fixtures/test-folder/pp.txt @@ -0,0 +1,120 @@ +PRIDE AND PREJUDICE + +By Jane Austen + + + +Chapter 1 + + +It is a truth universally acknowledged, that a single man in possession +of a good fortune, must be in want of a wife. + +However little known the feelings or views of such a man may be on his +first entering a neighbourhood, this truth is so well fixed in the minds +of the surrounding families, that he is considered the rightful property +of some one or other of their daughters. + +"My dear Mr. Bennet," said his lady to him one day, "have you heard that +Netherfield Park is let at last?" + +Mr. Bennet replied that he had not. + +"But it is," returned she; "for Mrs. Long has just been here, and she +told me all about it." + +Mr. Bennet made no answer. + +"Do you not want to know who has taken it?" cried his wife impatiently. + +"_You_ want to tell me, and I have no objection to hearing it." + +This was invitation enough. + +"Why, my dear, you must know, Mrs. Long says that Netherfield is taken +by a young man of large fortune from the north of England; that he came +down on Monday in a chaise and four to see the place, and was so much +delighted with it, that he agreed with Mr. Morris immediately; that he +is to take possession before Michaelmas, and some of his servants are to +be in the house by the end of next week." + +"What is his name?" + +"Bingley." + +"Is he married or single?" + +"Oh! Single, my dear, to be sure! A single man of large fortune; four or +five thousand a year. What a fine thing for our girls!" + +"How so? How can it affect them?" + +"My dear Mr. Bennet," replied his wife, "how can you be so tiresome! You +must know that I am thinking of his marrying one of them." + +"Is that his design in settling here?" + +"Design! Nonsense, how can you talk so! But it is very likely that he +_may_ fall in love with one of them, and therefore you must visit him as +soon as he comes." + +"I see no occasion for that. You and the girls may go, or you may send +them by themselves, which perhaps will be still better, for as you are +as handsome as any of them, Mr. Bingley may like you the best of the +party." + +"My dear, you flatter me. I certainly _have_ had my share of beauty, but +I do not pretend to be anything extraordinary now. When a woman has five +grown-up daughters, she ought to give over thinking of her own beauty." + +"In such cases, a woman has not often much beauty to think of." + +"But, my dear, you must indeed go and see Mr. Bingley when he comes into +the neighbourhood." + +"It is more than I engage for, I assure you." + +"But consider your daughters. Only think what an establishment it would +be for one of them. Sir William and Lady Lucas are determined to +go, merely on that account, for in general, you know, they visit no +newcomers. Indeed you must go, for it will be impossible for _us_ to +visit him if you do not." + +"You are over-scrupulous, surely. I dare say Mr. Bingley will be very +glad to see you; and I will send a few lines by you to assure him of my +hearty consent to his marrying whichever he chooses of the girls; though +I must throw in a good word for my little Lizzy." + +"I desire you will do no such thing. Lizzy is not a bit better than the +others; and I am sure she is not half so handsome as Jane, nor half so +good-humoured as Lydia. But you are always giving _her_ the preference." + +"They have none of them much to recommend them," replied he; "they are +all silly and ignorant like other girls; but Lizzy has something more of +quickness than her sisters." + +"Mr. Bennet, how _can_ you abuse your own children in such a way? You +take delight in vexing me. You have no compassion for my poor nerves." + +"You mistake me, my dear. I have a high respect for your nerves. They +are my old friends. I have heard you mention them with consideration +these last twenty years at least." + +"Ah, you do not know what I suffer." + +"But I hope you will get over it, and live to see many young men of four +thousand a year come into the neighbourhood." + +"It will be no use to us, if twenty such should come, since you will not +visit them." + +"Depend upon it, my dear, that when there are twenty, I will visit them +all." + +Mr. Bennet was so odd a mixture of quick parts, sarcastic humour, +reserve, and caprice, that the experience of three-and-twenty years had +been insufficient to make his wife understand his character. _Her_ mind +was less difficult to develop. She was a woman of mean understanding, +little information, and uncertain temper. When she was discontented, +she fancied herself nervous. The business of her life was to get her +daughters married; its solace was visiting and news. diff --git a/packages/ipfs-http-gateway/test/fixtures/test-mime-types/cat.jpg b/packages/ipfs-http-gateway/test/fixtures/test-mime-types/cat.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8d8cd22cf1afbc6e09c20cb9d6c0d3f8f5eccd7e GIT binary patch literal 443230 zcmbrlc{E#J`2U+k5Cn-DLQFw5EhXlurih_4Z9hfL)YKYltT8l+lo;Bop{N>)4rUcK z3#COVs-rU(bb9dG{IobQ{y`O!ale71EJ@4~(;_nXt?3~3} z3jh!Z0vtd30RGYeW=FsN|E2#L`Ty6#QSHB-062t0mJ`4Mlmmd^Kn^(YZx28Q003}t z92FmZ|L+OR$;Ax;aq#d0`Hl_b3vzd|28& z#)}9mZs@sA{5<=wMcumiiEz^6EZXSIQGb#^0Fd+lVh`ZI4!O92kfYKI@FQ!$APAU~ z0|e#-ae}ykAPzVHj8ZeT;S@S{WW|HEBMU~jgyrO?)iu}(X51p!tD3kg?jE8c*X|@f zEWY=sPVD$i+RW(RZvZF<@aRk&)i(yL1sH(Tu*~OswQT8%eP0R+VWvy}&DvXR3KHga zOIS&o&e}g{yS^k@n9WFk^MeG?`XRi=&8pr^ zPp~^0J3)GHx%Y`ZX|`BZp0d47UFSI_thSCvzGblJ>t!?iG{kF>_XnpN=L;hSW?#NH zyNTlUfYac0n62(J&BhW@HedKR=bJ@dRa(RZFs6k2?GYC5u_J-4XSVvL*NAG?FHdw@ zQz9F`FEPC9>C89UbXl~CUaS)5$n4xj4+<&@lkU`LKdXCaUH*hP&=Wg-e7vgKV7K@E z3s@qoCusaoEos<043ZP{4Bdm7tV8bZdyh*1(@-QRr7` zoSEN(He)Q)GsekiA@*~xS{u>>;^18{#@eHPvJjns1RhKiODM4v@KJ;^TVxA!{kRe18Fzq}aazqIyDhNpE`IhTG!~ z!!iG9~0y-mv!tbj`V-+#LBR)O%F=SW-M= zy(CN>-+3I5fh0tv_OWOB^&U{bcpZ1yDX6J8E-rXw=c=k&gKBhlyiF86)E4cOL*{QO zizEQcV5&G6|1|ev7>nvnZNL9hk>HNzoua(Uwk59=*Z!Q#4CG>s?n)V~r-$Alg1#GzZps76Ai+tVPVZmlT+WF z2hRAjo?UAm_=IPJRJB=$wkdw;Z?$<7?#S~`h({gDtVRwLXMK29MCLZwB1VoXC_Z`e zhMQIXm?@#lJG23k-C-E9I#x@_iA~vV8SXLz^}W|Ti=2UEn+BA~_e&~6RVxJz;d0jU zI7fe2(|5PfJ&(tYena1`UzQ6UaIAdn8_nePmd+_t0UV5RNn@&oJ4J2y7Z3=%6QjT| zsL1R=Ck%Ezb^6v1rN)5zVm-^|6my&$AZB7c+pX|e;2eGY!i8p7G8bcJhe?Vp2=32( zr`DLoTI;?@p9ZTnaoufnOV8B!dV=68HyxeqJkVyS7qJn3MJN6OfY6BrLV{*Vn7-bj zg+BdrDHJ@159j>dA~DNLF1!{jlCZA$ot5ce8Z2pcoH|+Wsim*b4;z=7*ea+zkNa>H z@siK@?#67UnbLazP8JIjh!0;G*^jVMfm3yD?#}$ng(hi}-DZ-)TI%80kz}s)O$NFJS2%ZLbFAk>T_@Mgg?JgM4S5gbI#t zcX4*8*uJd^hY-CH4yq1)t9!dIa`V58?@E9F*18g&e7Cyv&F$Y6ac=Lxk=ZyuVED=* zy45~=&J1e_bU?QJ1#BtPTdKYK-SgED=Ld?1baD$Rd+LipidKl7TCu#G)$YJ_|MtO{ z9@_o9{z25#(zlIj(o`C34#9-QOzDu9>%C(e6f07STd$q|*%!V#)pCb9LLaewkcua$ zVi)kLI#qgef}%7=ZIRZ+M$(!q{HD{7zE_Q~O`Eerv1bF;V7JrfwoT!`7jopG!m>z^ zR8dl4wsXAEH;pVwl!++;2M4>HliKN{%cKRD=DcXe@J|qoYTQMb@U4wWi`$Q4EDTTp zvUBW&*zE86FwJlJZW<9WPaY>dQuAFT&vzs}!`-RbPF|~AH~%@6?(Jx>PRD6jxE7S0P5nbwOAAc z(lG~etyNn9hn1o{R)-!I;{xup@&2$F<`f-b<`rk)`&zMA7UOK-&tPrNo5;O`;4w9} zt!6L31)y|^@2HF2%|la#Lj;)Xy&gv##cWwEz5BeM=U-r7ILj{iZSs{RVs~e} zE|VY`sN4kzY6C)CaHz?V6>5ERS`S)Q1x-Uz?|!7VdYYxa{@IDbn26B#-Tv(DMMqcc z-geiW&Js#Q#bTzQkq2<*I5p5*J>-eG(CpOV^)1T&;Pkm~hf>sZifqQ9-3pmVLgw3T zGuDSsNl3O@;pKT@_XsK&bEz6eVLg+HR(SkRZW1C>jf;^TvbY)fs|5e{rnPc66rU(N z`3|OD$DsQW^nLRjF2s+tx9R+@79*d!#B*`O({heA0X6fPD2jktkCP+=S#uo$Owz=s z9Q#hp6IVRksRwXxziHi|XgR6n3Ot!G!DPxq=cwoiKuFlEfeCTEr@gIc|=7KV#oW z20|{VQtYB*TUzb&CVF#dK<&9{ZnFQUm`zLixVLFA3UBVmC$`F$y1GgU4_z)T-N+uT zkbWC}(9&&@uPq#4qV~K2-(!LF{6y#|RzgvgqIdVyOC~EgX$yk{-Nq?MTs~^@aa+*d z0uv|;8Gzx@$*jCzoz4q3JsG1Px9Pkd32-yw+od7aV}3N52C;l6 z{P+}%XOe7o0d21(&H-KOjQYfbRkn+Z*L$62v%lMT^;B`9Vww1COFP20_OtQlE-xGrb01tAj(} zZen3A2e~$Nw}KJM4#h1wGbjfp)%)_iMA%!+kPzI)mt`b!sc@3(LCl zqwK=-XInFf(WWnKRlANq+}1>e5@F6L*sk$;##bgaR?13{{7jZ>ZdQGk+kR)I?wi)t zGEI0J-&gYkM#t&R4J`9^k+>q4b`NNVO*=jHK2AHd+f#PPZ_r_^J4>X0uZD0k$=E7V zM+!k!#EOLxvryn0U6U(a%<;3pre#w)u$SFxk|YmhSiM6NfdrdYWPALU;oH@P0k80p z*w**#RGvf_7R_jRrGjZRlK)-i9t^5*DXEF+c(*a51PBcm=XDXa zsis{9g4fp)+zn>^G3?v7fu)j!qre41z-fRPVpD&~&z1j&jR#N7AedGqaS=bn|>Y zMy)8wD>?TV|LVkxbKa>g5ymsp4@L{+^^{|-I7&>^bfn`)70Puvk;y;1-Q}+7ytJby zxjA0sxB0iA>d*IK+tAa+R-&CF#~?j&a3F^BAg48K-uzte1?*_{qe;-Ec-IYc{mp+p;$~(9uYD;9((xBgWIi#t5Xqzf+ZvFMK51mNDnyJw5fZk zMv|p`0Y3GwS0Dmw7bAL&|fv#IM< zYvHN!ZX^7@`Sg$HYtK4O)#Z5Hc_O`>lVF3p2Y&&N;j+utTpUn@X;3$Jkc-)Ac8RI` zEDFd4Z-rjg9a@-nn1Po#&I3EKFeuyu7TI-lcT4e3t!17+dsnE!iBTgMS_3tA4mKC& zC`{sdepCuqmfW;X7NKWbCiTIJorY;LM5ISJp3*{ABIdpmOk;*`k0d&jasn;ndCq+2 ze7CpTj(qXD&j5sWfns570?Lia9=RDYYFfJKxvTEIY%C4yPf@Om+xEV}p8fEz;3@EX zuJ_y@Q>UHR2iTLDI^L!t?&K75G5;FmyjY?1;V>~Xg|;Qst2Dx6-ZxH&eA0o8Wq9>R z;S=1vxIZ@N5DUX6?CZ;hnosQ-T}?SBCuwnooQP5my6-w0Yv>nd$CSzq zBnnHIC7;3AhyUqv>Yu+JD>agI>6`kfG`az8?T7*mI8s3BTe%dQFCz6usT<+yuL)2^ zxO9c-EW~lHjUH7r8PIQRPtQ(mF!M_tgQiO#&yh00Nr$k1mDCjXsCNTFYaV-D zUpQW^|5`1v>tzLf)+k?>Qa4v${sW;&u>-jXHU;;N0pmuv$w5U0e*tr5%i$|UG@4Hr z0{rSZLBBR6n}4!;tFMX#e%K`r=SaCTkFmQP^d2qK2%z%909Hu71{gK43|nSBEj`A$k+4 zBX~8YHttaC0f{rWuP%)!r`&|#;|#5J#OQ?K7qyX5)ILv%)nBeKh*~R}qF*cadd7cg zEB15#mHXGM&U()~cYj6PH&n?z_X4N$t%&g#peFY8hr1fNUI1nmI;7j4?>1{V!YabF zn3xkVl3@4^16oq&W`Bt!)vlVPe(F?&qWIZhxnGL|Hw_FbT2y&?uYtSIVQL|( zvPTY}&%W~W6^2#G!OQ?DLqw|CD;cViVS(_Y=VRykPNYYofNuQEmWTlR<&pvUx)Y*N z?K&~?=0#buRef)Eat6m1e-(=~`<6y@Lk7T#3l|M#weV@ddE+o_jtmr)BBtp#g{!?;pC)U4AwQZ{< z@XZV4`eTg@Ej4Ij!{QFfAn{rccHtSCY!5aSFx#AiY#eM*eu7bOF9g&`E#@}ea(Q*Q zJmA~8suQAq0GAO+fRliQWxFV=G2`FCCJZD|0Buf&5FCFxAr1GY$01|(#So7dFCJ-2 zaqq;A{G*wBcEkH?p`dGnX^1`O6zIOSKy~^T!4Bit7XMPjrr!k!32`*XhsJ-{+_0B! zzN|XipooPDBFV71cI4Kd?Zym)eYtC3q&qA}%C7qE0Tbe|b@ioB=^LxgF4uWK>X%8* z;wmQ%(dqQ^7&WF?C87u(T=GtIB5copAoiHgT}M}WC_%@2wy_`neB)e#si`Se`oy9@ zoChc|F_CbJ^C&@Nt*xzXXh`7P%F4d!fB9+uvn9aLXfz6`L4=$gusx3X(B0h*|2;v& z5ZrE>3qEe!t59{KXw(_B#vXj$DJW`_Jk+xnys5swz`;iomT!~}3^+_n37Kq8LaZMc zUzfTg(3kId)V;-6U-oNo4SNG3EG!IL>QB~7?a}zK~g1Ro7al&_m;z!T4(v0YQeoW7{&wCf*3J(ek)Qh-xjdx@JXB>~j zt~s<%iM)Dc;TLf5?Z5FI`>#GP?7tR^{vW$$-*|fDDuqExUv8qqwxVCB@^wKkNaD~_ zkod^!^JB9r&AMDqF)fhp1$GGKG*bpyahI0^nmQq@1~FZ)nhW$S*qmgQiYOkt@GPnk z@imr1wAAKyn&~Wye@%ymf|*ET%mlRP+THZoF!&cmOc8Bjirn#5rv2d$`m_93T$i5+ zvG}Oe-)RF8HZR{w(MKBT#*s#+8=0x{1D8e20&ZPxU-F3+9xV5tiXAl+_JBLF>%K3R zx)WsKr9>~WBXu|twBwzb6~p&^_oM~}Tj#+h!^ z@-ou1GnM!{_VQ}6k2!+wXRsB?rss1a{8Awobm`*`@Ec0cAdys}H`R;fpF6Vrpi{1c zkG3A!HPAjR11-@-de%0w+NGQgH?9Xdz$h58C$QdyIAg)^!MYSJm46;d?IWUt7`8)l zuX8QWa92=CVpD8wt&=?Sy+G6Di))Ussq}9~)G(6df{}ip2^F+CT0^=`Y^0m%8#M z;ohSFMt97mQ^&dD4$jC~oLh?Q0;?qnJH_coZ1|C`J(S3wk;P*)u_CL=U>W1`z>YAb ze$Ns92?3e&)#Y;?9mNkd_$tdeprBTyD(_}>`^TMtx(v;y=_en25pbwuWV>0_KYZ;{ zq9X1Py`BPijB^F_s_~D+t%WoqD;Xo+b;R*g-DJEP!L})JvhUY^1ie6F(aBVZ_G_Y*cF4kTdt-;=fDTnb~=h$Cg{Q}M%YA_m8fMK>CgQislW*Qr6OcD^=- z`Iq{w9eJ)7PFsjffN%s}Y@aw(t0R4v>``;Z2drujF$0I^W!@^oW^MuuS_8BeZtaKB zsdZ02B1`%&e|`5`QprWY##c%8)$Z2n4@OY8?nUQk90&_|@PDmGHZncoGk&@w1P`eK zW_~oaxA3C2oX9{IY_rGNSb6s8zcwP_=ku9d94iVCRH)mx#{m*aa* zozQ+y2Xb|?jRlV`_{gFoYC0XYP|srK8)^DwDB)n=kVcsyU+l*NzE`x`tu&*9U)Rw` z*nHZP1sNr`6t4>Ve7q46w{2;i@apos%w3PObMUp9l@D3n07a#%$W6_EpDAYZ@TV3zJLV>NIe-wJ^|R8uk03tnc^ zmrFQny09n=hJW;(&%5aHJvZv4zk_0hZe046sCFe@A8W>1ZTr2v?U~hlQT`1vuM#l0@-fbR;`}&H`DtX4)C-Co)8N-L+ zu+@G;@lT%}dTv@AlaD%1nimU?b=KEkJXcnPKckK zH0a*ptA(DLLK;sB8NF@6je-L5m}`Uje;Su#ev^-fID$|XBNIqqD2l~eUM$h-YJhS6 zV7o=lO|=ykoZ!}ePf|4DB%8wCc9M+O;|xlcOUym2O5gzNHrOwkZp23Dp@YVkbG~w8 ztH0N%{Lsl0y0~SjwLQn}J z6IgacjrqI!xt6t|`?Wp*3nkM~jF>Q%D(Kz*aU@ms!RXn-KdXNF)N&=lIpuf8VcjJG z2)6_%>Szu4DdnTUR3VKSZd05bzD?@--mKJWmu#f}n^+j~+`x*0C&=QkyC#rIygqfW zvUnNU2_SKBj_`f_l}=gT8d16|TvpuhJjbGo`4skHyv9FbhoCK_)vMUq)G602ql-!p z-={{VDm0#rnWi*N2fIr-4G*I|17px!T5y^7IbZp>!k=BtGo(}Vij-W-36+g~=e_B(X;<+UCUVw+u}WS0he6D2g1kuQl%Us2f%qS9bFLm)$+I<_eW^heyF-kY5O$`olBTROC%7s5oq#ou=MHiC zFJQ)hDvBfeq-llq&4F&OO4c6;)-8fkyQ|U*O3M2AiulqbTU6bgK`txNmg{5 zP8mM5{jF^=b+|C@0C_}s&jo}Kl=iK=^XtF*FHhD7nyd1bxt{|j;T4V`x<<0(!24Gk z>=whCQolbc@-~1R@HC`~2`iQ~*bGtZV~$Y68m?&YiM2xkl64HI>RK~NyB4&uAo{(t zOGJ2slfz1pldSNI1#!7B+`(v1eGK_wR|&z&PVJh`EB|TS(+LYG-Ci3dlgVR8&p1RA zHI7%xGBOeU-*ADD9+P*VAMzmS;|cs!W5Js`tfBtvk^M+XJ;9hL!p-@H8>3~reP82q zW`}ie(+{-*qf2* z7FO<><|K}~HLMESeEew;eYrkNMeCle1J~-?Kr*@1Qw6la-oHC7;HsE3;mNk&`aPUMy*_PNtB0TY;b;zo$febort6F}KfHx? z{bz(%rxvpU`$G~`DHI(Q$TW}ql%oqdcRGD^a5b^jd;IJhwFgkp1&8v!4QrcT% zYM7@VFBc`$Lz`zNJ){h#H~LGTNmmWW06U(36O?p)W@Q&fmGWKyRtMC;f*oGDwQ zp_A9D5g6_*=)1i@QU4P1oCO61R^|QVTA_TSZYAAzph`-uMC&t`Ndh?E)Zu=pqTpbf za@ckH=APTO4epDoWOa;wZ$ilVUqI%GTaKVf1CM;m5D9!Q2bmRQ&ba=Zkt^S!q zUBc+fq2(Y%H0FG(Zc;?mVS_=5#SXux1&G{<0(Z+9>AE`= zNFNq3GC%qJF%=0)ZgHQkcYgzJKIbOVr_-5JZ?<+_7Ek))x)l20;(|Fhv z+)M=s)s8o&Z`ogra)F_F?w$IWF6-Y#Z}9X|Ec5()*~Un|)uBcj0lsRcaLm=UN3J?J zvP(f5!QUb9ec{56^l`iexE9joAVgCw-&(2fIT=elegdNnDDb3Xy(1#5}iJ~ob| zvkw}41G4OIbc19xTGq;o*x2VV{>szD)19Vyl2n}hqF(7?TSiUIJ#Oyqvhe3}MA|jX znF}gGIy5-<_}2c`hNbU}=kFhO6rg*nBu1>45FWOj_Oa%9P4uhn#D)9v60jZw_QILJ zfF-}ZlI2pbT6|9#p%Wgen}54wsJ_EkbYyLt{OXwX>?2#jQnXCogtJ2Vb4vWz6c=r1 z9~D3*KxF~Im&#N8e5mcB0{$-1^cKaQk~ zO*65V4E7RH1b})Bbc6&QW=2q&_S)X|4!!g}XI%{I9Vlw?RqI~=Q@g-eS*S|_*t_E0 z2uDsVf!lfS(kuIO-xB-%UqJOB0?RDYnR}_{QV?aInZ%l(g2T~ZRalHi5(J8YnYkq% zx}?&>ZAQOgAgFo@+zVNhBr`oWqv=%w0RnktaMyR5JNoGKFN@gH;sl>w*}Rwo(X_~{wfMm*%YUQedp$?M+i!9bOz@RP5*5e0>~16m4IX#X?Rk3b?4J{5MvMdG zdTRVf5iKp!n;G&8o04fJ4i9}7vE{hl3?R!_C>D4S@4Unr; zUsel-!Xt?@vDq!WWTxY6RRq>|7ntB|3wBWaU;Fu*jKK z$-c3BTUf)->E9psaP;dugU!QIhWEDqtkjpOk9~8Pn}9iwPry?0_mv0AGEx?>99(dV zg$p9@MP)=oH@uh2x-D~r{g)3KJTIQQ`DOCyS5}1KWbdQzei*ZQii)mj)WoBwPI(L0 z`Z93xu%xK9yY+9f{{m#BLVZ;og}`WDo%20u;@N-h{RfhD1Ve={O1trYC&JeAT4n<+ zU1GJ!R*!F1JSH-mHHbdlf})P^w4WWfnA_fDdKX;^@3F?aqfBgRr+=*cO3mBdvbihH z#+V{nM|kIEx<7~N#{>{FDOV~HRmt0l=-ePjpWx-4(7lQ+KTT|c8ie?2-8^D&IlXFu z?a6tBZ>e_!r}yuL2<<-S__^)!DWXwpR=+`1<2bh)Il|Rp%tctcZ(ItgoZdItp3HAi z0L(&~_lZW-Z$=JR;R8L1?!27@zrqshLW9J&X zRh`8owPOXv_wJN>Xy+U&qS%Ecs)$vk2*!5gNBjMX)f@~-xFZ?e*L$j=&Ue4AtgZ(s zz>J90_3*Ho78-0A;1n!|C80LDUriTCQ_47m>|6;s>>P6E2;9IEx${m5K}FE z_@esy5*EW>>SGcY2aJ=iX8qmxo*scbeH3cl;yf9p z)%sM?{js?t-&+KBCF}cmkIZ^qan!r-ZX)q_J@^yH_t#hUea0^=0+RRTlzMr8m`B?t zWrxR;e!;J^IiNfysY^{6VxkDw$+1`kJR0V@7dRIucAEW8xetOA;7&d!N|5&kA|T zYQS5q`n;|O&_@d7smI}vOLz+ur0F~S%v61guKyCFAala!KFsQw+@9@iNA<>wbLo44Y)o|2i;f4la}qPEBL!7(N9%Fz`rkhfMiDPd5RxdYQAAq5 zNYT9uHSSP1Mzm30biCo)Pi?0gqxX%~mU(&IWu6~y#9iyZuNHQrYK?80EGbjz`X5xq zR2+dbVcGwfnEA0k+{P$UzX$)x^XY8M|FSIqhpYXsVk~3_K@;yS^g(NfS(Anw%?dj@ z)?vn>i^9M;J}80J27M^Xt*GxOUX&*_7AgUP=GcOU{4b(>jq;Eh%4h&zRTK z)KWXIH6A{l&}nA;Qw?8)^kZD8K%@P2A`j&!{xfK8OF+8he^990e-!rru;Bl`d*22# zILjxDDjfZe70>BLCW-POte_gn`TlA%xJl3a6HF`r0IQ)&f~- z1|XwgSk&E5u$ZB$j|C4H&FS3co}F_1MFT^>((6?g0x51*<0G!-$eMJd(&YADi-(oI z7AMr3y%vx^`vx@Ip3IGYLzS39=uK>nk{#T5VRC9Q@>+!K#!u=RjA?G@GcpexRHSp8my zOjv`Jrz7@SqETC+W|L;-qNj_Gl&2jshIuD5`5>|gn#?(!N)}_azAmqd?*AZNVkqq> zuulG|p(V9*19P9V&+l{@!kX-dZ?voq9G(r#luj^CBIwEGhuBm}L&cTG`_gb|3 zs*R;EMf{oHTDgv`=^q@aF}27wBsogt)ES5MqW6g?*gXW_>8zC1;oo##zD9py2g{)_ z?IoQCLPN|Zcb57 zueVF(ZtQtrHTNLB@J4u@ChB8uSlGVLDuc+f3VZkiL!(D_t(!r%=C|qNQVkd#zBNe6 zyMrHn%|=GsUSsIJj3Z%cd)NZ2zP#`HubanV#1kp< z8<9+@LK#@G-DlhorUd9LW?A3YOu&U@&mf#-_85Ab^exYeL5RbQ>TsIODNeK~W7mW+ z%apcuwIJwWrH!TOQNCn;*bEvAn_1oNtM;b6D3+t#q4=ie-<~@1TbKwy@e1jUBsMed z@<7JSrAI77XWyKSK$135LY={i>Gss0^SiEELC&iby?(=+yFFkv%4 z6ID$IYQ*N8cP#9sr**Lz(O``r`D6;qKJ`3On73|?7`@0>EQ21i9~zNLfb_r^9g$8Q z=-3VSa$8uZcHd$!b(t+NM0wFPr^aPXHnAfjzX#kIYPteg=n2oewD+D1u@gJD$a`MW zJo0)E}UZSF-u)J+}G({7!mw**4u_ciKutt+Q!D#=z&^4r^)Ky452}r-WMGm!+mdNpaBBxMW}MVUth_mlphn?_ z(R*QL<1$_o_DqYbt~dk)o0N}CgvNS4MFn~-d7M2C%t-L;#86Xxs_lEW14&Fz^&3|G zV!!%if|drA)e3WVDYARa*ra~Zhj_PUgkv*e$)H&~W_PzR)g8j&cVRXKD(SlO^m}7; zeSMh3;zI}I8l+PFOkiN3%ca9#26^YeT=v0V1h+~AR=&*5hGFV|`Ro0&zS1EdndrX6 z5kWUw1arDtLT=baPQ#+2qc?k}lJ!zlxTZ;*IVkaYjy&=}qh45?rul7U8=i2Ek75Wc zH1cp^qwiIi%*Rrkms>6ryGjoo$}g%fH-2YgwO^50cY|=ApGNEz%Zri>G0dV3HJ|6nFsbVXa;K@8aONgS2eO#n z)G}hW;(Y*A);f^uI0KgSYgc}p?%hi{zj&Ot>P@G?uP&EcX5A`R%D;XMzueqSF-d;D zghfN;8XSZ8c4F!3OkVW@J9!B2zc^=^zen*;=2rNX*x*x$s7@zL-RhAZxv+|QdU9iO zWXuAI2c7-8MsUkGTs=PQ6~z8}kyj%b@j)_iVs)sAd04U3gMMjcrhkD?xeo0U4Fju6Pe#QSro$R1KBPUzt4W%MD)Obz+t~)zvr9s) zp{93$5c3ApMU8spJ^d)(;_Q6uxu3)7YtpmFpwzJqLv~FtH-nbsfo0fat^>ab#Ecb>8Wf{S31cKooCP&o+oKoA)f z?w_iXtYR&h*pkN2LR;AkzWIX&E_|@sq{T&zo` zU6~mOazebOS$4*4hR?RekQsAQP5Xs95R$-$b3F%k)$KmU_*&>x5L#I&2;=c2n+?jX z6F1`pQx$qN6qKR3upd7`g9o&|y7cp%-CQAFsd>k&B`|7X2HNp#cN5EXGS-Ma^_RM zxAe+b(2PrZK>xY>(*4@(V38$|9S9Z640~&N%34ZG=wM)b=PNbsMe%2I-_XZ$E#G#o z5?^E*ioSr*+&o~eRy+-@YHpkU>6VliQg2@nf_u<7EbNV&K;6!Rg*_Qji)7yKSCd68 zbO_RZrsG+H8*anV>ddTOr6;r8aM82b=6hXCP+YHJeAYF}m8Bp^jrwym_01Af%cgM?l3_F?(fBogKP0Qw>9r&*BMo z&>j`KQQs@w$Vm(RH1(WvVUTN^D@o?ekt%h8-u@6SmBW;lik=lOIDYC$=E@82H;b_T zO_6fRn^s>Ss9sE7lb0YJ7u3)r2f+c|Ax1uRZ)MUiP4!TqCp z>&tMOaHp9Os;4FBsp_t-LwLac>AGpXdf=_Sn&0J4BM);Q*&HL4-!)pBzGNdNmkm}U z=x~M)Oe1!h#E>4+FAYZfzgE%UFf+I#Mo!>_#@CjrA-X?NhMYqHB_d9=p3MT(;OvO_ zre*XiJxl5-Bcb!3ye}8n4BALnO=YH_9s(p2tRjDiPH*jRMvM~1EKWU{m)%DDf&hRbDWU#r*u*|=`=FU z>TUO?|Ke);Kd_G`b{<1uEG&*3hSv!2E|BRiDN9zKkm$Z-wkUW3k@$3NHjW-9cRIzl zPY4Dnf|_YiiucY(!c5HhwM2$rA5VrjC_S-5Qp1p6xl z2w;q-_c1RMN(ek})ZF1-Tsxk*2dDe&zXt62OgAJv(%u4g$~4cgKBK*oGps3wJ8ZT$ z>54@N2VBC&77JSf$F(=Fo2|_&hPe(P*&K8^q*!hh@_sH=YHpixnXh!H{L`PHHL9r8B;Px~<(KEm z%ARXqhm}llq#<9k&tIpqoA8jJm=U*~zkqD#phj3pyh**#`|srNzkv988Kkeq1%HWY zF#tiwpR6X8u|rON-Y`T^(SP%xiP{`VZD=Fd|NIyF4_`LAPzep*|$>!WJVZLW%6 z47$xNczbQ$>+MODw1O+Ln16U{E&8A_fV8rmb-^7y2_uc<80!cf@)t-Cd;cS8a|r?H zG;#I|b362IVXUTIJ9YPXF9@s^;{cXDC_A0E+fu?RO{}`=-Q4!3^~rJJ-f`Zo#S3pu z?+hTGISqV$hMeJfGEl%Ipk0F`FY>=j{;A~xv@gqSRF34 z#a5+8r$3Q#h8xL6#$kOak#R>d{>ji9EC_O>4(1*lp7e?iA=!@%O*meIq6k>n&XYFJ zf%r!SS$n(a{)7h!>`AM&&}AqZ-X#)n$0`x<5~1 zKk{ISN}Lv|)XWvk2oqiFJ>jb`cKqFnYK5?5>f{S|t%Y&0orN!CT&U)eM^<@mdWwIe zBnoN&{e-X<@st`d?R+Ka&b(eQDA@gkzx@kKEzHB{J*Xjum$xRhGrv~|yRBX)vPuz*W_x%-PZd+WUh2AvY zxVL{@@X{cy_lvbi+fEB72bojf^45rfhSfV!+onYI@;ugApZdiob%PcN$74}PhS?N$d&M}Uk z_I$xdOx>5KRT0+f=G~o_kj2XysApb$nrv4pOgYz-RLFL|j_6wS)f~zBx@;EfuwCIM zGWU5z91b}_KnaepC%0@~CA$)CqWFs2hD>xx-m?+S!tsXMU@me{>YgnJStQ7V`tKqRI?u8V3esskA*yn%05kDW4KfBRAEMPQVoud|MTOQ~q6MEyUChDrq zKchGKzoOz^9ZwJ#_@Ot79-{6y>ZC6Bc3b+o;;W|M9{e*i_BjtoOmV-)^!{fSw^OgK zJv6yEjUb(U^z#@~R_2Xc(ZSRC20ZoU?K$>Ey88+?4T@YpuuAf;?zcVtSP*W1)*dndGU?PI!bsDeOJSRV z26wgn>vGu=-yj zHzaPz?XpXBSWO^v-^_5us@RSMTD!!P(dxNE?0Xfr7n_BB5Z#=EGgZKmPe81thQG7e z)VdD|4tmKfE{>*Sx--Ie2QSttO*S)QC93W;6Mkm7_KOLf@kz3me$;O8`Z?hx@#L$= zF}IlxhG#aOBqQxk_oi9~4TRlp{xkPMQcj};(7V{~6CXdj(x_>2g^uX7CY%2n6122< zzqjkFr&mMhvaY#fOvnw*_qpad0b9|l)9D19M}Rb(B-R7F2b>ZdV+S^Cj^<#M&3jCmQU0x}#$HbG zhHL!~v89|&%A@y1KCv-9k~N24hDB{ohd>0BM3h0tKxn~aRr>&!xWiqC;yU-hs*n2y z0=svyLfKEW-~UT1>00WYb+IKp{0RFXGSPF!fg~hZ{bPG8S|XqdbU~gZ)PoZDr+;g0 z+)g`uqL0H}#f_H0rhD`|Qx-zEHa#seJ0VccG|ujnp9E|gLY^-0^!x5fH`!c1jNsP8 zCU=1!r;{A!2)7h|j-NHeen+T`|3om$f<9hfKvSAAIY@cY0}I(#n6r23}0@aK$MlkQ@Iv z9O)8$T7UoRTP#B2gF5>V^VOI3mXl(|PhEq!uUF%Y{1+m^?YFM%2>*%hd+xg^Bul0N z?a;{!jqEt7x89JIP3s2b`qPq_CLQ^yeHo{ zr!!+Iw+Seuf6{1rymPEkzh^jRLME*66oS{3_fNtsiOw}T7Ufns^|>23ENz_~YLl9QZ_B7NV#=twR@SY?*3{FfjMbr(8<;NS2yx|89aGf5 ztQOukBxYXdwHF>ad0C4uCw?c|GS5u36_mXO>tORla6&@=&~iRa6LY;Kbefngkk!ro z-NiBh!Q&>1mCnRTHYFLy$NxMg;U?K!0*PIFR)$qs#wkU$OB-32HDN{V{aH7oi$=_a zo2zXjqaELF3pRL~UU0i9A1>9+=tzJh9IcP2qQcoZFwOB?=s_cQ~@8F)$Tt326z7RbRqgqsV&Dx zh#8>o}p;vL& zKV9jUR$UZe|2IObwF=?)(xC>2@G?!9FbC2@vcouV+Ol7wsC|FSlsC&lRxn^{d;fG9 z?MSjPpc>r47gaYYFyU8pha_#hH#NkheUp|`OU?Elbf%wNHr=J@Hr)wCU$ZI{6*UnL zjhtjMM>x@?{j8C?ANB0Ow3lEQUJgzJ{%>@hcRXA1|L*^b(U){GtD5}mWPiH|e&9_%A&nd!U7~&Y34n?_{ zAGiR0hi6}zlP4&;mvDa3SfF&OkB&5QU2tr|6`Ck=ZZo4G&e;9ts^;NEx=q&6pGwK= zST321|J;dOk4FJKU=;0>)&Iu34eLL#;!r-m|B?5hWDOq2;Ga4q?^GZ?U4=_^7oOjz zR1%1})mekjEP^pzK|zeXj|VT7WqA>7QQX4>U0~9agM+|phmP=L8&96(f~*&|ZztV! zTq?Pb@colS@e*PdWC@)y&=?}^JMmyYO0vjSJMr_t2gRZSDj-j6N&?Z)X4gFWFSgAV zX8JwuBqdUn{Ug!H3a*5hDa?I!m_sZksjCr35tNv@4zbc1p(^p_{Gx(dC|rEq0W)94 zG~dIx$0TebJ|z}q?gtZXumTLxzz~rK`0i+Fu?;1Z(j^&rP^xO>%uACC1KIsV1I&-I0JDjnk zX`LE-ZA`VncFRMTDnURs5E`=ZQ&jvXKD6f<{rw)2*H#`qwYz^1eW_&3PC^%{f{dge z_=es%pA_D$w9(Y8X}lapMHG1s@-#Y`S=8>0c>no>yI(BBABtLI`o6GXGAN=%a}YeL zNN+XBO|IO9uQ~6^<@oOImaB*LiY0@rLe(~6lsH=6mOZm{LrAyJ?=LqG%B|66()jBP zjTW+Z4wM_hl4^pJMYYbdTXgoc!U&9rRL#L2qGVOr`E(`0hpaV2p+P0&FWj;@-x_1a zcgNPWPJgV>sq(f!sYr$}Z%5RxI|QM;-ijn?l%i%#eayUYd`cUak+(LbU>Y09g8;N(w^m6*A)uAR_ttgYyDmP1AJ>;KahO&5m88o(FEqXnFK48bI0ktOP?&PV*t@+CN`@2LHptk(@-4-_$lA&?D zuUU2=e{b)N)Jk$Z#%uRTDAUhH2FhqGXs>xeU8_Q0GzlDXaD3{!puwBn56G8+{K?ud z$NL?R*1wwVRI0P!S3`_;n+}KjrwGX<$78KVr>taB|6A)(QP?GQK$ z>4<=Ds~Bc>r~}HuqB*$9P{pXo0*?C_C~eFuV&neNbEW8Aq!PIgtOQ5KVd1K`xp%Jr zYe5`C(wj{`Xe)|*kh8kfy{+8gTki# zJtH`FoYUG7);qfPEH?2)s${PZAwO7BJycc0$f#Qfp{-WoO~|TTV={}-2Pq!mBHhYQgG5s+W#M-o;g&ib+*x&F7np#cA3swR&Lj0gqe0;; zVej!>Mw;5LW5)^)*b#BD7}NK7Lr&M>&0Q@VwYb>7a=AfwY1AJ!IIcf3HW=ik$ zpnl3QO|4HnOAhC^e*pFxno@7Zhu$QSeUwNBQKp&Z_sl^HCbqWfS=trE{klLM5ap#| zR!mcWpgQNJ!Q|ElYDio3yTCoX==gN%zXXb^RSbEHWLkl30?|G zeFFcywlSc_u@pKn-zVreVOB$PoR>~og>D6@ha}itXnk;1L#<#Xt`T6-U5GkLyRd=XT=`z_b5b$ie1O%sq`F-?HA4v&Kx#2N6M=#1zcLI3;{XWuEFB68NYIAUF zvmdik&oJTn+j1e&oE=E6d%RhYq90BClbQHHKAA;$t<1)WLsC0?5p(Ck=UZ)m;p6>O ze08Ma>*Vhd%db<3UC63q-mVccdr=9)-tkgs)a~y4qJ=pqW z>I{r@^lPUg=!)$g{|BHg;2dA4Z)sFcSv7+EPUXcX7S|b07p|-p*p&bN{aziaPBg5G z@6mzcCS?8rF7o7^%eE?RH2Gg}z<` z*087kkk=BNDR@cmC)0tjzy7MB2v6Ih1pfnEmFVVOiB7M4*`kYk#T^z|jiHNg{IJsPF@wp&=O;#ly6?lZu;s>MM@9WAvk7>k#BH zueD`+pEx0)td_vzk5(U!^8>7W>Y0;{%S&44UYTXVKP{;*;|^S9;Ooh&tZ!K>lySt! zKSI{r<{L_RXZ_2I>OxToLcf@b8QtRc@^u)3PTeLy1iSK0(8+uE_n8kSA1M?nw7Ar^ zgLA+@E8zJVf<4+{M99ZeU2;}y=T*5@M3+r3d!;mbOlYYqo8-My2le+E zrQJe}!giSs;1?wmLG|OU=a|y0H1UWX>`^BtKYvaF(+=9FpXFC6U5vaKWvyb!K-+=} zUx70r)Slh6{%nJxWXjF0BSFHfj7X*tsNy@;%F5pHcI#rjBZqmfUaAitFkyhL`e>jW zn(G;QMl;~H)ZWEt-wk?2BMdS?H7W@dgRg-!lLT)D$NX*V*u&++PBS?o3!H3P@V!m- zU3D%cZ~ZZcC*41%Irv6-L#^moJPk3TrHa@r7nI|+s~I5Q)I*hl8{*q96x-(WB*ZKI zW9~b}NfBYj!^4=0xZ0-8TAd}gJS)^i{JUje1pNrXD!H=u0FdNQu=&sZilpj}F^~7J z#?p4EA|JX_weG&mvY%pga-(`p5iT8V)4I+6F8@t%eb;g2lWYo#r(c=Ds&uc$K}}=| zb(^x-i8OJIX{|6Tc2%&+2Y91Ka_da;@B(f$+b`CO;hCObZ;;0bWCphFFYd*_AJ_kY z|^IOT>cJ^{8lbymncVOgbVf9X=>%4au>ulh)CjWvPy0`E{fJ^xcyeJy_ zj;fDh(;0{`ujTrNH-?O7=w#}f;$l0FF^}h64lhI8`BYV_a;zur zatgv=qxe)w(DZm_*K5(2qDl^JN1NsT)0sR}&fqdCIcuS1hm)>Dtlb@3^@N5he$rtc z8M{z5WY6<%EeAFUwkZ4V*kyvF`OSpQ9fQN%lck$5 zJsIgzKrGS{P9+upjpaMKZOyH9%h zVb-+LagaGvaXIR{lc3}vdJ<8NvupL@h%hp*F33oN?bD|TC~$<4RRbU%^@sJ;EKdSQ zl_{n6(7{@TfvQ>5!-jz%T>*!El2~QVbU28BKOl=o9k%&6JMOXaA}wLdNO#{p+)U3# z)7`n*53S6>dkhps;{qRI*gGs&MsdK8S*uVAF*pzPj4&|%Xr-Ggc_Q)t)6XL#G%RYv zEj&z7*gjl0hv8FivG;cqfWn=Yjqs18eAu>GPZP{uX(_q<8o;<;SJ;a5-0js#QSgDM zKkQ>6qxOl}LC?&9Fd^#`kwJ2gBj07V(2sj4POk~rdJA` zZ@`tr{$_KNXLp)-RFB`;x)cAo*8|CE>NLM*z`=<8*^pfhc$yhr2n4nl3{vAD5V%%M z;*Dp7J)vbTKX8Vo1<}GoS9sgLp{;dpz?0uk42*=X{S*==m9_|8y7^H*lgslSLsb58@;Y}eNRZ^()GpduF@(04$Oqez-m-=qOG@(5$G9o)3>XpQoXPc znEF0iQExPFH$lUH`QGxq9)&A8lyK$r7v!2Rr+eT}mkBtoJ1a`30*ei3Q?2Hw=LMs= zFxP=5=W1%=1i4}eIO?j?yvR+%N5?Tp9EMcWpxyF_puC60&UYw|DzasBi&=vyhhipx zfhIGYg*SE8)>TCtRXw2tcXjx4+(XtQ-deLmOLNLsMv$Q8=5H}GxVE7dVI-|b{o;V3@u1^0$Qed;x$nJawkOauC6P}LG4ULSo%zt<5T)OdB%^6{m6l=PIT zXy+S$ueb`y6fL*1fqHZBUvRjNHC)~(3pGLGebsg{9J^`*m$nuu#P6W)QD^JHqh70bk6pem3iY*OGcCM$qO-I@f6<~kRLZAc&Ns8VH~}A)g)PLtzlU|BhL{+!p84NejQ*D-K-2sG>can*MEw6d z6s7t?!;GNAo$19^Dno4k0UYedq>fLo&Iai6VZS*=UD1v@2u9z=#I_JF&^1ie7egY( z=n}P~y%lzCV)7xJE-b#qyJc7FKjdC7mP?r$v5R!6#@uFZFic;V0M#(HSPU}+@JjwRf$PhP1wKMb{TjKHo+Y4|)byRSZG zWB={PQ<>@|M&VH3Za0SzEE_1+$9wqOl@i;dSk3tpylLC9eo&7mJVZYF-{!=Up?;fJ ztMBQ|V{u^p2tI2o84yFOAH{Qa7P!?EH74O|2D$RDY2fLiQ^8Ep4l@UAB6wlLaHKO{ zAb+1bvY~-mp>RoXj%t|!qailkk#xn%kvx!wBUBS^?e6OYZlS&exquZMM#W$rG|bcG zmeAZB_-3nwn1K-*a1X7Jsh*>3LnRC>g-98%G7=q?Vem}d5}MSdo03PQix9UUPHC2^ zg(8%lII;w<_1<;}WPs5=n{n_nU}1gXGRQN@P)@(eWsDZGHZm4CN!wrYn=3yx8odT)2#v;63V~+ z9*XKJ;=K7`XYlOV$wl;ID&ZW1y~f>u^3K>LHP%7#!&VB+sn7bV)Pg1fq+O>AfP0Jf znLNYyaYj!IhM^#hfJC=EuBw8rAf=#|K&b}_DkK9@f0k&O6?uWXm<65NcT*;+gI9OY zLYIVI`>6#E=7dZI{cJV+WG+l(J=M?GPwEkz#WLRPmT*>{m9(Wr58iT~I`#l(Q=uu6v&YPuF!0zTWtc zv&)UN`437kA+jvSO#^RMet&WjBZ*c;fSNnm>n#VmvCK~u%&Y09-3IZs^}U1U-K5*) zQ4(E5w-DaCgd&OD)!ycX&}OM9O!<}(5%}@|Ymtp4wVbrblVg`e;or6fO!Tvx+zZA7 z&@Ji$20=?scCw>%X*0uAU4C{oNEhei*h*{4>*kykUb2*rM2;zL$ZQpL`)zLOSV~olrOqFqbp%^)uR~VirrtJok(3H zuT0QGYIlI5e<4JhhyHYQvwE87xMpTO8or!%8ww>7J{lFWM;eT^2>fZa?>g$wisxQB zydRYfBqLTQ?zAC<9qdoapPlWM<*-f(Pf_sW!iCPQY1(drHdN|U{;nB41Kte3Bw-6{Q?7 zK#Bf3*n%Ur=Oi2yD*ZgfQpC|wa4TDl6*CS+hB2rLl}b?Y&~Wq(pjMm})p@K2P(UjT z4fg|#EmiU`2Bqj;D%*!_%%enbhrSrQy~&f_ON55|_moxKT$kSYJyj`O?S1ig5;+jn zW$a@qHi+NqV7ocYoA;b?`BDd^n}(V6#EwZ4#+0ia9Oft)<+X09e#J|*YBO%lIpyBS zeuPU2^Ec0X_{a12zKNHpE?v zBG7?$Yj@>YE5$<5Job1Dm!xR_M$)F+C|dBDT-mto4?;fle#5*d7+?0MQ#RO^A&FpD z=y@0K8M_D_Cj~Z|otX5LdcE743`$Qgf3=ch`y8Pcre_M7BO{rr7;MV?)KPlN^tEMQ zr&;~7%Iq#A@Q0-(7^d%;dYLzb>EnIi6Z_c-@Mm$8s2RDf|9)K zO^f4;cGteH3#LeVPW_{ko&22d{hKAMTE=hkvK zS=(G*w&|M|C2It5(8H3ciWqUqL{#Fed1}0%F=M-}h0K&Gs_Pm;M%wf9#aNy=iN= zSlnvWCoqawjpabZAZ z7DgV9Ea5BH?1PGhUpf6Q3ObMXsb(Uc?0nKOlyFM5^LQjgHNaz)F)XUUFZEwql+H(5`%N_YCvKKU)fv0Y0jm6eAb+HjL+Tuns+6`Lo&5hQC zGtxCudnwIj>$?luHTN0BQeUqwpU=j0^j_SjlTHjI;xfZAe-;jlW~KbT zraIOhAbWLFpkJo;)s`ENRHTenB?XIoWOZmARp7{*c-(;KfVlQTakR|(;lE8K1Gw46 z$daslaH0ckJ{^mmE-Xz(HGXoISD&AGzSQ~$sKS@J*Qh_~9uC39z^b5lyQRHIUJUq} zm&^X4C!iEkNk(OLy0_Olkx)CD_(D0Ch^m8tk^vqEd6?Dw;e)GwDY-T^u?sjRU^9;J zBv0PUxpIq|Gbi=0Wu2j$+}$8y^%cM1!nUy_G7zdJyJ(S1-!ieS#=Ttnfi`rO66 zi8+amE}S+GxDmVd@!oOh^n+}mGbjPsxqE)4sySezy6sa7suEuKY;@qycME6^Jt$_#?+P#+J^owq%`Jo@ z_)yI=D_vFV18=zIu+HCw@Z@{JHGT{05a(Y5o2QnV5_IE}uinv4#jK1_*j4 zWs<+?p6X@0cCk$6(`nQl)Vx_z_`7+)bV~oTmp36)&9{#Q-(>M?y7mfyZMr!~mJz~w z5fZkdEcklm*|ejEK!S=e!4oGd^6dFW4_>zf{IXUKs`gtPUd)|vCjm+w3ThOi8bU{L z6qrktYbMG+Cl)J~>7j@Lcj&%+W7&(i!_C|#P3aTJ^Yqu;56Sx>{i*g~ZMwSq{G_GY z0BdrU!qj6>{}{H{tVKC>=Zj47b!87M8-hF@aBhPdCg&nT{4=_I}2E zvR;z(pWghsQ}t5mAE1*qRElXpM*p?09*@xw12Oml&(j={xKxzhU{i!>(!d@|0zft# z77!z)%@g$QZY$D>oEs_(jc!1+!_r~+5hjFz0hR)`Z1ubzd z<`!r7*DORDwNxE{033$rH{#z${ZhX(sGjE8{}14QU?J(FK2cb$|4=AY4U{Qn{i+_! z@SxqT88+2TGDWNdLmYK}$LCUh4+uM6o#`X!U>;OzAY@OOPd=Bkx9j9uM_6#CGw0Rn zt>NqKAJ^xtL2si51$ht+aonAcB8_%Iok!v^=7xLaQS_8X_{&NNOhyu((OYQrC~ixj zKjs1xRXqTpK|4&0ZdK0dRbAQV&ai4=Y$tc|JJv?wztw<_eph; zSx(kT&ptzR|s-5+z1_9u!5%4ES_UYo}522)g(wEqF< zAy$W&w$jvRa+WHPDe7gZa`>D@tCYrC+hIv%C6L9_24=_%DfG#?Uf#WQ;^BD>d6POJ zPk09!W}7yAr+;GjWUB8^h{$$qY@fiUD;DD3>nNG9G`<)k^$pI#1}AwXOK51-e~i$}HWvUK0E-Ky-bui%~X z_)xT7_Pt^3v^t0qEZD61PmJ`b!E#d{B@gsrO+!o{LiNU@MM^>I{w2NXtGvbSDW#3+m!-Ql%C;^|_KAape15&v-v$l!zVI(vGm(M)AfJl^APht8^Jk<;{WhE z+W$961OLMRQjzgcjsO24?`9-4?%0Mp=VWG`*b3|tX@!1>fIvMs&2O=T|NYS4|MSs! zk^cX<1C{;O5H;6b)V2D=(pG&Au^~{btyux`^nR&gY=Ya>I$3HDskrreNzrnZQ^YgwPEPZZAtPL62K z*0Z3|l^+Yx#|L{K=?Uo)JebDRZoZG;*^!*&`jI}CU<#!!&j;tp-HC?z;=`apt2IIv zRKVH#Dq~un6(E%^6y6~UH@k4X-pa|nRBHozgbY5N;M&HxPqh2~1Hdh#cPa+;s5dt@ zT+wSQ&W<{N;^%dcVsJdn^ES&?R#DPVKm=!~&ZRyf70lcAUJm*=TnF5%EZ%3HoGTQf z35-d&ivCl%m{R^OAzf}s5P~^?7${wCo z*1Grzpl+lLj@xuin2^R$xB4cw@cUUY!hb=DEz}R?ZyGP`X4MrPhnEx-2IiPr#HtC_ zuI1I=zZ`I^qY@>Rx4iuau;q0_*?T50K`4L;kV&@in2PF99XY^q^ZuO$zs;>D%v#pa`*_;s-jbhsY8rYPkhb>EfGH~D<_kxd@ zq`}lirhB=kUur@9;yab7G1b*2FPgex533P=9=#cA87{0OiRUWpCT;E|jlrg5;YZzx z4Qs};M|+sZ{`~V#EU0|kmvDiIZD03_;za!Y#vZHpA2+AK?ZXS7#7pUf|M7Nsx#RXe zo480bLHe03)W>AozIWk;dR2Xz7oEOX*Gte`@gGjb@BTa;1c=EilbdB(!S|#ll+I@Z zgMlV?_pMc5Sh=|+-k81HsWgDnH8Xs`o9D+-85t2H0gvIdby|78@J>mJTf;pzIIhi48OnRn|X<#uO?n=>Hgn zA*VkknCj#42Lx*h=r;XAIt){rFPdm?6mJ&M+OY!-dP}0kS`Q9dkv-%elQyoN;VQd6~WKq%y5!lR#C@gAvsGcQ0Rv$1`mX zZ&}kaAA8&nzAZpobtL_s)EDO)EJ5}yuSS0}^{<^=Xtu?V@?eu3WqD>hkj!b0TCH$0 zvk6wX%Q4N*jmn|lCFU`5%LX7Hp4v^JF$jKHHU@yunQyx_ZSYS|jf3qnmQim)!WOlJ zhuu7bqSqEh%|bAPC*Dclfl?P?gVY6cfh!bG%SyGfUvu1br<_3tInmud*_z+DX!f-T zROI>VH($r}3u*3!$vNA@O{t?kq`Lv77Vla1bH~%H1O)Hi+yE;d4CCArrw>8`#xV=K zO%s?J0ioDNVN(mqUW!eW_xYHNU50Q)xmMwqU4qxv$DeBF&!PkbEoS=bN=4Y;9t0tw;B+e|G1mJ!53 z@&C7Yg&a>rs$sM#z?7Gco|kNd31gOXyguciVg6S@D)ReM)1exWsOn%6<-(u&W^!gp zqcfT@C$!RIZ%M8{g(W|CZwGqpc7c*}*}L#gV`_+MNc#3UICwIMi{hObvK|OUZ7_4I zyg1k_b3Semwx_@+1pTMpx}Pq97aW2Fc$)0tulz{1=1K;9*Tn8C);_FDGVjah>nBLK z7YViO^ljd+T;%~}gKm%g{kwyu7wX5vo9(x)4XlZX*h@UshR0A>YqpBFXu-R8UhU`? zLE3y`j{FYq5(&JoeVLrY#dguHL_KVKKo$yCeoU< z@F{!7cA!b5*^XBb>&W_4chc%GgBHvNX$>Vkx8kZI3UYga#i|o`tm?mt)$=5@V)+z> zlOs7K2pBB}7PZnLGF9Ar8r14`v@(>cxOD14jt%6>N;pinB!NpeE3o zUEC7VH^;_dcg4%`{ZFvcofm|ZU{#^AL69pkPqJsA$*h)b&&xpkHZD8PFEQWIMb=-G+>Cd8-k<2o>5tQ`8Db#8FPWi(4Q8BJ z4o2J0FF{D2P9aK(MCwo+w#Y?tQNFsm`1Sl4Zn~ut?&SHc2)__0C)*q*879S`HcT4a zaTFrbJu6wZq+)9x{ZK0-3At(L)qtH?=r_wP=OdaU#+1uXVRuPn?9gzxGTj)R!&r5i^ZH(S%MoJ~YQ&74{)6*? zl!$t&g=$IP_&`Znm988k$91U>$HJ7oLET{>=lw>G?>F4U-;87xFbbZ{`5YU~i+^mx zDe}3I`s!9u@#zeSJ6dv1a-DXM-aB%{Dz9sm#4A4EwMxmjYf1XzG}KAUb^B@ncH(pi zT0b@Jnp%7j;O(AK^+%tXnwEiTNbsxVwQW_}_LIjo{{Z*ff`h;D)i{%V5^(c`e;Q4# z5`!B6Nvwg*@qKb^%o;~qiSo9$vAMOikE^LfJMNqfc&J4+GgtA|8&V z$L^{cDQn0Y2o>Hd*rb~#YzOy4K#Rsh5nWQvWq6)?dA+Zai#qdgG4Ekk>h^ zxM9v1>uY)u?CtAF6hZKs3KH0>AsrjvO1!qMv>MEKBlXhst05hIbu|ESDgWonYR%1# z*MFf}wz0m(X<5IBPdz6p3da`tn&G{U-guY;DT#I3cYog#b@;@nblDT>vM;2mMlUj$ zxw0U|j2`W1Dz@2JHXD^qjMVyc(>KXnYEf}2R(Kay%A?NaFRkH^!zntaO#^zyQsESK zo)gRFoKr8?$EaseB0Ty17$U}L@Y_x<-; zBiq3YL78On_q+)LD)*fP3M;e*1sjuEj+d`@kII7#KaXka7wZ)$Cp||>;=KvvlUZv` zfnm(m3chzX%kl`SAX-cPsXa9Map;9~0zPnvRAkDTqU3)X^gFDl8lPW%zu>mU!S&02 zcc@?LqrC{p^Xk7^^!AB7R=>`qWM1Jd%~@AoA#ggIt)w%v>=*7-yEEHM!}yB)<$BI! zil=Qgq?Rc~g?z>-tl!=;c6_#xTYK3%*vud+l}BjECygH`88vm(I!5`mN=96k*AzMQ zxE?qmyeev)X?2$_uO=a+=p>t7HS`UO&*0Bt?+&4#Y@=r`GK5=A= zEVd$WI*4A$atorm@i8l0?hvZY6z2I(yrPN_;bB5k5k#UF*n5PmG*a~F;J_CG2O+E6 z0*9ArkvGM~$1JqH-cwqbif5By??TWW7198tU3^ zp2EV%SdkB@!KfcDtkTZ2zmn+?#le*btw~a*iyIXt$w4-#1NbnJlmd!A{{Vv;W$$zA zSSlHHzS?13@>MKWK7U2*qzJdIpS#j&V8A2(V!#8S{6l8$jfG6K%Y`uo{JC_PU@OIg zWpPCxgMgcqiqhj`y|8X1VV57lwF7axON)2Kgr;c$BHr ztfXQ-6EVg6GZ_t7X|j8x+1on=o0VeQNAUnP|} z1=SsVrE8H?ILvH8i_G9W(-U${DFX5^8Pt^ARA0m?<`xQkrk&FWi93pflVySlfbeK8 zSs$N?tWnr=Dn3lK!70sdl);=x*~>CrmbFPh%rlcPJV~4u{GuL!XbVZ&FE|d8?qqec z2ABD&2Z1jNx;TsxDdhG!1f)E0)Ad7AwgEExb8oi;G$mAnP)&tA3>ZpBr8kRVq~2*; zYilb_Z(dZmPuS_Vv6Cbf7nL>#YYPd(4zL*sx;iK{4ncAVJNQ3o&Js7o(_Gl*5hV#+ z$RZ0C5_O}V8(>8Zq$$XQ?fryBGBgw=Gs(liYSB4!A9nQ9Pg&p9bzbqDB-4;9eyWfV zz~~y^hcT75bW4)CBf2gIdeF1J+VGs2h=eK$`r@?0yY{d2p^Es4h|^?(x<4oB7mt!o z2BkV$JEb@N0cz9GI-KblclmEVnAgr#A8_u_+5LQ|4B>^x&6CYql58FmET7Q8KbbNa zY&^}VlYg%AlS8Y+sFj{hn-@+&uKnE2Af{Tdkz`QZvQmp*_*OghH0w z(O}=AZ_V9GvL+Ni<-O+nhRb$V3B(LAhIgrc;Y^Z9$v`KYQyJ@bD}vwr101jlXkTjJ zGz5~L3tdr&QTav_8xotlNBv=Kl2eouANwF%{(bjEX`wG$ZLuh404&f?}v6;h*b|FI$tsD2J z2nu)bqT@G4)gjR)ur%n?b#zPgOL8YT0@B;i=h1JsEVFWc-Ql+ z4#~`Rz-c|zNdPlL1fjJshb<8pY;oeVd(b2n^PI8t`$Nkf5Mpy|&5X8|AA5lfG2^+O zz^`SmY@Yfd?i79^s!|?p>3$K@ywt!v0c`4!2c-)B{mid{^!OB^ai^JWG5Ohzk8sl@ zR?Dyi+4K!R)oqI28yFEn3;uG|g)w%iQWvUY2frGLkjGc?i1J>Y+UC!aod+UlHACp@CCrY7aNu#yc{TCglw?Vw~IMWqi z$*5MI-SvSY9kAxL{5w_<05LewZWZ`T>QxDKHzrTKDe4O#4o>hn8v2rs^q^>OG*y4E zEgW{yAY2HG-Qc~(qMBVmmJ_gi?wIEZ=Cx}Cw8;}3xQf)b{@5Z9?~%E?%*q{KiCSH* zH#)9X`0s47*bKo{bB3sQ@${^W7RmguDsGS@KM=v_K`>L-_OTu<_qMdeDT11FdLSH% z?F3&=y#5=FmUHyeehQ8Q-(v z)B$KQJTzPksLpUd3UhSTJiN8PVDDL-tM}f;OBlZ|NZLz(UH)7w?Z^HF&iNy~Z8?1` zxY#)Gb=!n6R65okEmoo}Kdr~Ttm*R+EUaDe$HHDJgkw(qooVNsvF7($d`+%IpWo?) z+6SHDG+ll^2B3f9O;AgQiEg+fvZ{E-aLaX}L2_t_j|^fj^Yl)soJ81IA;-Q) zmv}t(=+21+v(Ev#P)uWoDFqrK)AR+D1oF!t|NOpTGi_>h^y$T@F`Gv|kP_4kKeT2a z4+~oGGC8QYF4Pm$`v9_I^;6X$kT=zJm@9A#XZH!Sjh(Ow}|d< zw~K~kU!A!pNa8kiK7Z>)U0uq$Occ=Mt*^!Fy7N*_NziY;-4LHOS)D*T(Mvw(?Yxj` z8q)!KR%zUMPczkT&+0Gt>UokjjjTWjRTS%};)7J_9d0dT(+v1RRWRecP9j5hwH(Z#>;)rgde8TRQUJeBxtp zVpAk^iRC>pdX|RocE&b;;6S84CQda~HWDXo_{GzQisJngsC38~F-4~NJk0NFF~I8& z0779PODi;|Bu7z&&+7T*Wlw317DSFQ0rW}*4;L46{})|v8PwMLhVSBD2--lfK!Kpe z9a;hecZx%CEAGWh3GN!a6e(V;K(XRp+$rwvQf!~>{hR-sbLPzXl3B@@WZqd>S$Xg0 zzOIQ>o20Am zI7+q=^nz}p$dGrwa4_Rjh^-G(4t^IuXAwekct?!1!2ir?mu^>Dv}5{(#gNH#YQ0Q$j@H- z0ar%zW!l$M8r?h8AbON%(bG6+Xy)YQ&@e|rJ8Hb+CT`W_JT5yybw(H|K4lmNQd7O@ z(78$k2a9wW;UOqJC4WlNGkU-_i28pOi)j8KD3Ovl#~5xF@jvtY3^^32S^8CQ8M&I( zBY;H#a8<_rOl(GU@pJyEUNoSEmBdgU@=oC9M|bSqIHOJ)()=}j_MOUWW^gml-J=MI ztKOqBvHThUu8Uuqn5k?d}GOEmkc0>rB z8t&fQIxi?TN(x|{WuUDAqMjy)_s2Nf0vUf5@4XP=mL++J!`uB?8u0`1ahtO8_17Wo zl=c}eHD}YJ%TbZ2lMXi?GlY6H0BSXXBN?!f?FmC9v%&IxIz~=Lc1_* zD-6>TZE>_r#wLfUGB_Do8+gB!`c z;XQ!!7DF+lL5xy>1(ZIzblH@%x6rfNJYDhCFZ>orGKd=ZU;H<5s98ho(ernrhbBW| zWZ)rJE{gX*qzzw*L#y=4e;^y>|2CcfZx7`EdK3RCA^%^8AQhZ7c3Hx5KhE<76>Y)7 z8tl>GhnBj7z4P3S6mb1@%=-%7-MEu`lz*EFp2K;;57G($Zf;jP8nl?%oQ(e$!MyFI z@*#5kzv~!e^szm0!_^~_oOR^|Wwb-0lq13DrtZ|3h<4gHI1>f3mNr16w{a&&_NR$sR`q^z6)ajI83aip#G@JUyXPnS~pE+=1oYTe@iVa9R-jv3(mKR%_{L{ccOswr~?{T_HH~M?I>BiyV&M|#CQz6XSF+* z2e(VdwHdf~+>nX**xrp5KB7&K#gdH`L_1Yor9{x_MTfYk3*MyyqC21i*b`P6&~@Aj z2-Wlc`ubb8mtR1R`d8t(P$?oR>IKBdzYmUgUUH5=7Rg|lR2&+g8tfS3`TjuHG0ERK z50Gr3jt&M~m*&^EtzJ$GGcw6AL?6NO;qj^tau0a9bblSbK5(#xl4fcuq1T?!_S31* z`lk*QMTUO4G5S{S{9(_`qMgSa-hdFVijy?UNt3H{q&&=ahAmCBz7|CpUQLf_wDDss zh{3!+IUNH{=ESI`r}CP-TVFLl%U$#70lPY5yjQ%{_IE-$WG4o|;aSe7K6^{ZSU`OP z&J)qJ;^l45g)F})3vSCyagsU4xbGAA*?m!NEWwbKa9`nynPst7=f^Pt>bf#hx}VDDm=g6%fYV;w4dYUboO5ECya6f=iBvZK`+U=mWjH0)yDhl*1j6iph;J5JxdTxC@c5 zIJ^1y?#sU%eK>A(zvn+F0Q?vRc87-XbKlz=e{UG2mS;W@#VYas7Xq*)qs;`oEyrVs z!i0da{f+k!Pd-7!uW&g1G-pfR#PjyA6kqR~qx_JOYK<@!Q?G6twYnZ&E+A~lti|8U z=cw37&&p~^`e@lI$MES2`~#g9iavI6R*C6Kcy})CqQ5k;wCVVB!j3cpjv#f#0IkaP zkJZLPVDpB`3@*dG!wxNkd)JnO$2&V=AK9%iYR6}mM^_FkGt^(Na?zb)-C95WmEMHu zku7);A2yuEwM`tyzF^k(5_}6Y%!^n!IX4fKFH-wfgyM7G6T_YYy2(A2kF zD}YlB6I+K_o0FsAhG^V1ba)TY+3e3kCs1# zZ8rVozj7Can29qEx0k0Boh#syxEjyLpFXi-ULGjfnNq8-TU=$$> zw6osw^Wz1T!A+oaG&%;cYfLk{@+affyygt{Chmxus8fnHSK07Qj&&PZHUdw9_Lj+v zlOLk78{jBMvu{4SSgVf>a{yuj>0qCRCxX+bzuu3wV+ z%v&Knx-xY947`76V{V-f_Y25J?)pgtBlI$G7%2?$K(|-hN`oX>*GsE^BOxh$nrYv* zAJ6N-IrwfbU&i*XPBkuD|8ChcK^xFNFR+QLd_IJjY7n@Gc_Z^yB9KEqA5u1|9_kz} zDbNxmiLAG9F^r&~jepUY;E;-u_4rlP8_IFM+z=lo1R>+?B<`k9_t0&4x!KGgBjeKm zqiMCh)!*RPl&NBh;c3`2XL#_Je&cjhGSVexIm3*?fg&*UX%!5F!qLgzw?DKR>r%ZeVW|&8OBJCcCo71DXVKc?=T+L<)Mkw5y zE0-ahHgP3T;-&UvKDLMTT5Oz7bJy=!^XN7zITC^MQ#t#NK=Z6D!iun_=!dhTnwgOJV11OWFdPi{6X(Qk^`)vLm(z%nwFU&bLZS*`=;ju}%pjpJWl zvS6=m&fkz7pr)Ot<%&y_iT%@QrXVEOC6wd0g%DD3TKA%vsD$W z$)z)!a&jvl1VP zXW>#GwnP`xRRKO_l)LrcnLht*24%cxal74Bjr@AG$ezke(0nLZ9(!Cq7r665wjv=V z7)vzbMFsgkC@ST@;&y?BeZqJQWSG9FIPLK*NZn=w**rEXAzJJ@217lqx3i^?H%zeq zYg$5C!&=&Nd)<`~~@Eb)zz_JuOCY1#Rjt z7@HU-rlSw$?wxzLo*F+B(luV^>wv1aBwIJy1C6(*)w630G(Rt+Zmu@&VdpX9woCb% z`+a!TQIF8?ZK5!13J1ED3w#532uK(&U4AQqj^VO#VVJ$@>b;W9TW(y<5l?syUYK;S zMdUD%D`=K6x$#aTwn%@KWlb=M)`~VTh>SV4qJ% z{)@i#yF}o+e}bn~B${x5Be=UDeY@9fIWa+(u^4_ggWlE^_*^;V}(BQ)qb}45~c|$cN+m~q&jEk7oZ0IJ|aWRSY^J(9b?Tu<-T^C6K zAhafc{a3ud`zU{F>N}BO^pF;EsS;ptgvRHwF4k{Mcy!Rn<0PzdlxoA+U}z5SWBpDs zSfHJNP=OrmjvGertJ;*Tg}@BW3UO^>aSKuFkB1queiX)4Rp!tt{H^&TiHA~4oB=rf z?&!=cvuk0Rqfb;PQ$cLHByC6HMdvHcy+6Mt#F0vo31Xdhe|GujER)fT1{3;b;-?dQs3w$!*zbcfkvGSBdQ!uP-4*^%w*1t9xT|o;6XyX(7bik(|kVlC`=>+F;qX~ zHCe~yXFkc1%DtQ8STQ@%=|dtsgS4`C;!$-S)>=a|Ih`K^HLSk8y5b>H0a6@Nv7c9+V;8*E!jxk=mbsY}-^!fj za3R7@sz>Fj#J}Gq2|e1qqE-m)VdL)h0LM*$-4&kV*g2uNWg1 z1e2JD3hJugzE3*d9T%ziIz{;)@VTpd{lPe{uOFKmc9&I$#pE^F;rg>YqxYuohe-|o zzLw+ox^(rM{U%X~C%zF~E=Hn$hv2M>EG&ilWq4n^sSIb1B$&2^^~d<)TPQ1{iSddjWemxDQ&UNcxhQjRm!On)}VAPUao2$a~2ae{5HO56p4%AgAcKq0j3^(## zjW0KGucg#z%wC5WD4aqXg0hNa+I8LgK0Q6y&GIWxx}y{~e{#TT#2RrA0>rQi3^;mb z(3Eg%F z~ct3D!kfmVL_zH;6fRr zRL!j-hWhnpt2cj&i2p8q6QzW2X1zZJQ!XuWk6$eMxRS3FydHz4rdRIp*Z8avWQGk& z!sWow--%$s(B%sC$;n-{*1wuOc99ZDy$SLt8!S{n7QGH@^*s`BCEivK+h=pP7U_N$ zSwga#CJP-aA0)^JVRwd#s;+Vj{@N=|`4r~ZOt@(j#O|0$PPn~Rgdy~K^5>M4BtWR zN=m_p<<`eIBdpyf?!_eB-W?P=TyCJZ_YYeJ&dcXnM;F>O#K#enXjvJbMOO&U%47U| zcRtY`lmb&FE{apD2^&r`^&$bsSuEHcKugI zNW#+N&wx0(0Ne@8!m@u*o)cp0R%9#bUwi^bR1defsJ{raplmI87QES|QpBYi=Em(q zQv!V6i9(%Oe-0GYcPIsub*kF{Yp9K&E+J09YdIQcS31cuWrA1lahX$WLrusZK~0&z ze?D0>k2YIcr`2X>UkW3hyMR54%>qp}x7kT7i_)>{>38-AY5V}DxgV&2 zzQqcG?N|^bPW!8}?NJzktVd_2%BnuRbXfR-;~`mDp0ueb6x@mgycuH$vGhII){_v0 zLch?n5F|OT_bkJg4l7slR^Mv59;z~_6k~xoM!3_AeC{M01RYkF+S3#ey^uKLIIp(4 zP{kou!9D=M8V~-KLmWMf+Jw}CgYgqQiWz4(*9ZDSUt+fVY*o6`3WjR`1sFl!WGX$1 z{=IpauVFMA@+DtC6ahr3?S5gr&2Y`MR5iM+rXmQi4d#9;u7SZ!6h*C+L-Twfx{0_3 zj1&0|i!%QrU z6JbnweLbaQl2D(3Kuyy(>k*dSkc)V~xcjJfc4K2j^8zD97{e;G17R8sgqo^!v;5Vu z+8CH9KmwiL<9pl7)8$V2R5I>snx6m{8cvr6N9~2&Xf`2D&w^wOhwy3CG zam-%p7`ayBc!rxELGmt^19YzKI6ig2v1tY;SK`<-@JTS%cE{)%Jzqv^h8FHHLG|O} z&~Pm?K1Y2W)2c_@x&?VA=67web{>^~Nny6Z!Kv*d@lPuibx)R_J^YzuHq|0|&{bji z{CQ$O+#lp#Cu`Z4#QR=~`_!9mhdt#_#5RNQ^chKXXOn(!@=iefJzxRftq|{VQg4{p z{tF<&NU0{CI>@o=_;_gGXf$2Nq3rK%z$2~aW@7TGeVy!Nr&qjwgS@Ti>I>y z&*>FiD=?X_VIATg#Pd}6t!hdTzx4K$!pl%aGB#7}lS7gK)yki6ck}r^7wZ&qPcp@0 z!_z9txvXAU|Ky%6yQpqz6eeC2ZZOeBe&VX*++VHQ)dIDvAW2=+NfpNtx5R-hvTGY8 ztS=c5qA7q+Lzl{711qJQC6wUBX8Z{|(NOS1IxA5x`*sXuHhRSN3#Wys)@*)98y%}o}p2$w^8J_ zRP-Y~qI@PLQAG5Jj&=ySK}0f{(`Dt&U!A1%(JD!q;Bth2$t7{^ACxzfo9(H6goKxP zBKh1ScoIB#pCUDSGffB8>om2w1E`-znoDyvz05tGGZ8eUGxic0@DrL{8abG)zW%Fr zW3mP@nux`8d_J9mVH{V*)I$H6`@XvfIUE))o-$qMNKuh+(|+U6Ad3=}vTeM;MG5{n z4z?*;a^7O@!4Lym5P~V(UnwPhp5xVaB8D@hUaJ=6eSA|&Q!DNL^1g!Py%>P zQ}il1SVJ-+C0;Au2l2R$xBO7#VpTG#-W7t|DNzoG7{~6%bnQf}{+bkRE@iJuM;x;0 zAc~5@NNO-T2DfIQakYPK$Z4Ffz-fU`)A`nsy~_qa#*|V>a&Z5^MLmksVtV`sA^d;N z>vNAuB*ZG2-l^D-WJ5L0J=pm}uEOd!Sfvz_dn#20iTFxtVDXQK4h5)nT7q(|g5=8FGRGH9ohko}a-y;I#rk%6DQ@K(;=N1FJkSt8`MEvF^?{ zFmuYXjzh>Q$kqu^=dCr$Q&BnI|vQY$B;SLVW^ko3i}*HoX)zR?pke%Xr|Pp6^d z?H@B|#yjYQBp5qQtW3XTSO&IX7`a7qkT=Quc$#~a3U(C}hevM;5xS1-!riaAPpgTo zWzTkf`@B3+vfd$Yp%(IFOHepkga}H5+riXbf_B|9Km`3hmhBox6HWQ6u|u0!Cy#l( zU>8iZujE)HX2HZE4=NebVjoY_w5#^tcbS86x?%P|V2m8qDC*PckI^EV*AmkiOuMfN zgBke`i=qMMO%O_S(MRuznXMZP?M{PnY0f{a23O%%{*&(bsMuJ3COK^2btP#@N2gC+ z+^DUL6|+F_#|+=x@_?JkoKeTG{ThI-b2D61oS)yX9YXmI>rRU%vy4elYA6tBz);Y3 zwxk;k_gMcsw#QKbuEqp61Hkolu#l$<_o2gbPVS6Q2u?x80%7ISt)b!+Zy|?uHqJ{_JzzZ2F)`O7k=D2BS$~*EI0jTJ6GxjX3fuJA zUDQ;wHa0t5yz1^^H>?Gnaq|%PAHMeRYeUko9Sxaec(K@5=XzWCJ!L=VWqS=rwwRuJiX#mm(DE+cj6%e!|AC7Y%1 z5Y*p1S(5I;kVRQQRuC-i)PE*~GSK%?Ac3-d0WB5q|G}+7T)2>_72V46hM2!czg|8N z+3sGY@VwH;bN(0JGh-UcK7MJjLHt;GQ~+x_rxQ*DVsKN;|3wZxw^J_6G%l!|6EG6S z+q5GhbQv8uHmz2dryO~3oSo}7)#yI~V1PDMeecmnB#!yPp%`hD8v@m~-7VZ+YuR!V zk-08!40OMt;a>#2)ek#f{$q4>=W~h#!M8bB-~=sDd|WuYJ-XQ@Y~8cQ==S&b);}-K z4*`=Wg!=o7-QPo`sP(UWk&|r!U%o9_%p8R;tEI@W z{HJsHuX|I1%)9=7^|qR(=^gsvSbI=*2Y_=k4E?O(kqQ^*35 z7GYpQNrtv-B|*^2V@tEQzMQms(`RZPO7Ga-m;H^ugs(Ir|8=i|Y^|{(#BJsJwRz8T zKpMOdIuq(eAP?S$@XOWh4fTs`R4-t92pIa(S^r|mS=Z~Hsnmy?8$j=Ui$UGsvv*J+ z-iQt+=mF!WVS*wrxKtdAhRMCK>J`tznj)rSA6OR!43wt&u#A zcQ4t4`8(-(n|J%}1Un9?(NBguRw)XF{AIK%g`*&&opB@fZ z@sGZpXjy1L7)2lGe!nV9>OXzyfWuCQ$OE#A#*;f*Mo<-f+vu}@d{CQbhHqh`rXp#B z+97DNy1Bg2KCd3O2@FGva2$R^_a;CfMo=H6+sn}59LK-JiM~N_<)oHY+{O_f#sKI6 z_Pq>hxxMy(uzgEiYOtv{hwnH_-14wW*PLYv=%eTY`EK4$9f1)(EpOVaG9Ldy5iel? z!UUISCWa&>`RQW{96z-n$7HKc>zs|=a75#LWw$`Z_FO?YE~LX;;+r#)9q$Yqj{Kp^ z%VaCIUjf^jHmgw3+!CKYv_Q@^t-e%irt{?al21s6qPXyeYV&cs8S9lpEh?R|Y@TtiD?*w%*yy|VBl;A!Q2qGimX3eSoHV-YVrt=ui;>252>YZAw35IAF@T^3v+ zZOxupdomNJfV!vguI03={_|xe%PF?^1%G=tpiDCY7t0Ya=C}cUoO9`2e{qk#P;?*<?&9&=`I^JYusLdU}MJHwGl) z>*=GYpx<7m|3FRR0GCQtG@we+>OxhfWcmXx-+j+Th}X6BE?mv7Ui+3>Xx>FxHZDb?xnXax`2NM%%Fxd>Z`vT6;a3Zh&pQZh|qa~UZH(>SXuPVg8> zLB}0OQNmmmmbzU+Cg;tn=Uqk_^YzF6^p=#qjZ_mw<5O)WPr7-;-^O0KYvJOia4f3b zEb1!nQ~aEk)tJo%r;-{fXtc9cTg^DSQfN0^M#A?hF4qN>#;~`|)mWL$!tdI1c7k&_ z>ioM4$)1OQ?VXBZ-6cfg);%bqb*eqGuMh4U`1SM5y+rAO#$ftN+RD=LiZ$2X$RRt5 z2zZ1bkW1(!Y96~J`*ZuPIw#n>yI28gdZ(BR>sH%2~@=^EjRg$!GO8k!FMQ%#g*X$oME9gk0m#Z21 zY0=ds^6rXaQa$w*i;$d*i@bhlgd#o)Oih?*=WbNQxqvSz$;O>#(zL!QZoLZCK3rwI zK4wUPp;R!7x*C;AtG}kgZ~KW%z(z}9M<-*Wz~;JqVMHZ_lDRr_=tCwY{+ye(yQTzX z&RzUDp60%B7USNt#j61dg#%4sN+*Rn1|$shW@6+tT~<8cIdqf7&TLtXpa(I=T%u?a zx0Wvj1M&^_&6wWj^@#~iEil?&qnpZW*5YetcPaJ0TI=ZQKkHmdci;@=_%`$p3T?Ws zvho3bgD$>J!0$tv@JCU--iZs?Lfnje6?rzm0P4r>nve(zH$XnkU$EECv}Q%n zmZR>ASZ&D&Whz63-@spbP9Tf* zRk(PU=xSBv=`iW#ksqAai1=JrVc?K(xj4BZ0vd%8!hSXwQrDmHgtRDM< zbudv0%;?1Su5Yh*XIezD4+7#?-HAYC}qn$XKKl%(SJ*9S15Lbq z<BeaxAa}TXJM-TdwAM-q`x9X~tM$|izUM`3n z-9pYEL;CLuMEMb4N`O0aQLd2mg1X%J*?0e-=u0Go4f*j_EM}&BU=r2(v!nouwhx&V z`uVb4Pa!lb+FEEH_C~jXj>?@Syb;3&@7P@RegskdJJzv}#6^ifiSsv9oSKFgc;l9Y z%kr%Hz?zc*`yi(lvylA2|FCW^h$87su}9FJoPulYMGY^tK6Jsez91V>|$<`hEeuSUPB`)DY8J3hpq;Lc1v~@*Q1y|yZ zTkPiWdP}XeL^InGt+^}GdWIu?G4s1sF|qAc*`>#TF+WXW%8`s!`S7q*&HNIoCMz!e zMFFEnJaeVuk)x-tmfk*5aeIzLk7(vf6uvEG|Z%pqJEga$2O$jGlqyz+5u zDBCG_T;^g1pYXizr5iJl)Df$J#oppJ(0fHKOScKvvR0w%6?<1cU2@Ntjj0XC>Wu*4 zp2hWz2B0}!jgLcpXv0Ns8INh)GR+LDq`GgirrwAq^rS|%Val+8gum>Yrj^R~RXikj zNJSdpOz$)7uK;lrgJg9Gb{PdU^h(vSvr6UqCXleUwpWWmL8|lK zK#kWa-0IiPbbte&S>@=vXNFRdL*hn9La=ie;8Dep0$l3{ajRg%AqPt zN39gCZ^`e`vAks!Bd18~ny3|e8b&OWv_1P9s)SQ%{4R>j5lp3@hl-lS3xwtx;+sODL0ze({Hd9=YvdErsu$-!WbC=QjkbzmNcRv@yVhrGOK+mxv#d! zr7tAnqT(mfu{Odqb*Yr?;IzjA`cBa+#CklN=$O08gi2bG0Uo{_t*tk?nypQ|n7!6g z`5|Q_0N0u7@;I)ODd6FF+sZmkwwAE9t5@^G&#ou8NaVMwyee!h5tcfXlvNvMRRU0t zL)(BdPr?0@zneppt8*0QMLrCK&rUhSu)2PL6&t_bo(mDLGFmqvXIook9Ft?DNZi(! zKUTuKP+`e^G89iuy8l64o|LrOp2$(BeMvCz>8}{bnxT}FC{;%&qRCEDZE?#fsN2G` z>~P6iN}*mS^@Ww>!FyA7DHOo>c5?5iHi3fO$vojC`F9Fd4SQM+^dk&$+n;a3J{e(# zaHeBk$r8*+Y5ybzXJQ}hk)#Sd}h+9pu6V{E| zWTA>%^E38$1bbu&Pj8KUVd@9$;?;coG$Lx&gB-1!k&P{#^eAE;(q0VnLD)kZ3PmdY zMEddGWm5i06^g<7)+dL&K9S=fhrFTQ1znQS$KPP(WpWm&cLFX630h=s7@nkEXwnt? zRwDg&cz}0LF68-1_HW9wp((f^ZRg$6QU3a$)01`#Z&8=F{`8D+ zX@^oI%b=NpD82Mw;tPv;luxqT+chu`UbKkHFeMRl>D6c@z$<8Z3X`KMj(eEtb22U` zLd|mB2`ae}{vek-wxeoN@8WwIU3M~>ZC|K;r^;TbtbHg=Yl8ot*ite54 zvm`3*Di&J7iUFIG@Q%Xsxc=q*t0D{m|0$)zsi%}T5!JYN(UyiD~RKW ze{o8Q6!@sCB&vjrf&;QdANsPk%oX|_!|qZ z!fC0Vu0V(ar9JQ7USTP}GEQb8OoWEf@6dnm$h_a6!%KV5F7~u{W0U*GU;ZS1H~+|I z7RAX_xxj%T$#_}1iZ!|qY!UOIfYJfp&{x3~Y}BjuvAU?$iwnqs%($`8`tBH18|pu# z0%7h}Y1U-8y<)|qciYYU{)MoeEmC|d`i@AD8=Nily-0qt6Ty2K*M2G4%xT@d|OLsjx$Pb zzHjc|Zu#c4N2R{LYY&^sfCS^c_kcVTwNQ*sxYS40?vOwdj-i#K@ms{o@?chTVrCXV zHioMyw{Dwp^$dxs-QaB(_t21DDb;rt+zCy7&8zCGE7!*%ONfekHgMrE?ZR?v7boCD zxhK~Yror^PcO>f~aaHLmql(l7%6;pS_-Udgb0o3s4q=P_poIaI#+$`&+lm!~3#E0!~Om@ zEWx#;Ok6XTH}d7)*jPp7%1`FaBjh;B#V7We6S)h8f<5^h<`&K@*Iym=%Q`>F3D)Hm z2qr#T4=L2z+G{6Gd^1aVDe}!|cCDy#!`DMV)RT?af?Cm{sCb#OHHmC(D_=F><76Ao zEpF%UeFnd>IK4J#sw(u#U)jNd!S&}+K25{XNx>&5ZxQj2PP;zgs#hs{2=&lbX`DVG zO7nu}?<4{fS2o@rq8X`XSn&jY;YkkqDUsg@xMR%RFK8>Jk08 z`h{4`cpitjq4{PZI72*Atk2VX+fK>XZ)6JuTDhD{(`XewsgvzeAlg}r(lD|0N4Be$ ztWRR{sorXU4G+mGM9!*+)3Z3nexu?MrUzr9=(!UILV=Ss-xZ5B4MMJBXVy~eBUJ?y zL-KXvvJ6~BKQ~wV-NKSrF`o%M=eh_TKlr0R|MHC_$O?LsrT5P?Zo;iM|ZCPs$<3*s&toH_>`RFzvP#wHmctgftz zdD@CZt5h;fn=u9y1i$3;}7J zKQoY_ccyTVO!G>P*ymtnk++erNw8VFwxcQ+6###?_YVtg&5E!U&CCkx|x3T$e~qVh(KpBOBUm3Cmykn+3--$0GH2!mLrZ%H|;qGeEsT z?qhR*e&0P1GKRzcie!Tp%BJx5Hid_)b|ud9J4Nv-e2U8LK|%k*7wwMz~x>$X;Fr{KwygdfxgThP`O1ha|Oi-3`t=0&~ zKM&rXz?QUqOvxVIV%gk^+1^9n+kd_!G7RUb1d}%yvo;l&W7_@6Ce$+<#Y@AO+#qnW zMUM1<_g3QRhzqk**%H(AtvhN+6b;i8qop}1{RsK@?qxg>3p6c|T&M*D;1jfKJQ=ma z8aZF8F0th0{tT8iE7GwmDpo+pf5qL-1jE-BJ__TP@ctW!xSqfrae)3@ZTnL&rF0yV z)^xk%R0n0Z_}r`=_FlYOJ*gBHvf?ci;i@P6Ymo6#&IqY4p{g_yG-G>*CXE@LLh(Zt zFMzt*^gu!BadRE$Tq{A=iErRG1>rdClU1VwN zmCW>tSw=#I{dGR zG-cfO{N|!L6`l8kPG)+cqgqRPp&5i zWL9{L5C@o8V8`0l>NYXU;pic};gQm_|BB`*&xWa%tb)^>eh_nlruWrAtVjq2&9P1k z=r8eop+y4?<Si`3sbUIHb4LcMF;T{pV}qYVeDjdtChsOjcNAsUD+UfUazt4C6HONH{y~A`;Fa_M zR_NF6U6YxEn{{tLv%0TjKT;ETw9O6iPYRrhb=PqX9KOAteVr@T9V^~-6)N)6I)a0K zxtqT!SQ=0eLA0}We;PjYL$VAIN5Qnz*gB7NF*W@DMWx8cS3R9($pFS#3)l4#T;`kZ z$jMo_oy0dW3yXOh@!i#@^Cw}GdAE18uibb%T`Jj)oaF8SdV&uoZPo>qy{$G^zQ}zz z;R@BsS`0q7YbZ8K)SaxiSzde}2rM6f)cxXYUU@}JX8Aen)fFc*)P|WV2Y-QJ9iN3C zjXY?zEj&}mIx7^A%HU(recQDnqLJ{}OJXMO%VB?vmgR}On%(rOc3IygsAF`H#eoXd zwXEjF*5A=baN~RdE%YIy!exF*S8kN5e^9)rZT%Wf|9Xu#1w+C*rGJM9^@%llcxyg> zW37bzPM_f6Q4tH}1G@y5|K1+oc#gM9Sz-d^Vu?;3?_1VoyDad> z8&2-+c`1+~YuN9JSRpO-&72%MQGgUWBTg8145p2|Sz~!!aUOod%P)|}+VhLiELosQ zE#R_Ie`fP_R|bX<(zCGu!@zh=M7B5vv*q&K+s1MA^Y^k@ZV2X~80ZoT@;a4Mi;Dsh zyEL;;)ZNMwrNeYQA2wCY;0bk0YG9326bnGtfLwn-JsE%i2@E={yEw|naKf+v!g%(- zkb!|Pv<0ATOt_{<{-Hj7o%Kyj^FsN$fponF>U?d=O_KIU#|G~`g6%!rEN5^C|Z1kU}P2bW+9kN*M< z(x~<6F_gCCo#*a9Z|o1qJna(7_YtdTvk6>@cosaF<>~hM?sJ~QA2;j>&l2n!3wTK+ zH_#^neIp0)xzXCj#3Zq>|3R}M^KYEY^1nq#9)bP^Pcm*NG%WG$7n{b8@{9UPm>hb` zHLPY^#A1?ZeUPBcXXdIF3aF<=orpoVZORYjT5uXUe%x=s>LP9+u6v$+a6CGxjr4*p zIgAzO*_Nn|1%>Yr;;f3j7P4)%IzBkcH$0C4JIFvze-S=EFQ@!JerRTmiJJ zeS$}OqeyDU-t^3xon<^sKRCK+QD^^(7?U zu_*X<7iPA`-lN`0^;1M$1?nbBYnEUPH{*;IJMD@?BZUW*2ZiZG) z)0h|O+yQxB&jS(Iv-M5#0@Bo+fo$)251b&kxOe)P=Br*CEOR&!V zU9Ap#@OzJlY2rU9)AL1#dj+-R$sK(SgggQ++J0kC^0zIBXrtk zn`|ceuM)7Dt>vT_&#>)rw-gM7=$Vm4S5JUD)9D=f_WQPp}{=wq>((G*47{yGmebHFV-?eAcb8 zDc5foePYaCm4q@7zR2IS-<;c6wY1yWz4Ct7D?dsU%eQTSW?hzUKKyzpNvtKQv`a}u z?zuCAFgyi>(;ykQJs2>3RT5dh_1ludPLF{jPxJ;X_i|ierDfTsJx}b>AfWY6XAjT* z{fEuvf<5Qp;ETzN$P#)ndMr>Iz7xZ1xTuVm9WidPOcTbNQ!i=j=dm1`-m{ zOc9Pvdfz{goc6vtm0viJRR78w4bSmV$B|(->l+$*5WBZEMWk3dU{6#BdWbuntfq=g zcn&$vW16(IRLhxY#HdIYCA0~>plKA;hHqDPJL9O(o9P929H@3K!bY3Mn{^>* z;BG*OssF|eX!CnSBtP(7w;yUdRYVE<->t0!^`U*t8C=;dZ3-g948DRBiA|1w|Kw+w1)f5UczI}Pr|U5XQ| z6nEEPCAbB5C{WxbXp!PtXmKd+UK|RfI23n^6xkS@!k5XvDMzXM^DxOHh90^HWf7&V=D-zotM2Y8`_~q^{ zY14tA5H+NZD+)OfZ{dolV#X(~y@+_7P6?)^@q~rR0v~>=Zp^xFb?2PY@+bVI!b%To zslcw=TOPJ`1Um>3@gqyNyc%$G^D7Y=&>CNojI*?Hff`xF^CBx$QR?zgL{7onXXXN0 zy`g0oc_0Cf+Ul-PW$gnn64K49dMiiUr5CMyN`CcSSEgdYo3ZWoxe!Xb0)3(`@;zeb)PXP;eK>DMD!KMf-Sgb!qb?!-Yi>~ zTBs(`O|mYnT-~~qNXpAhj7u57NeY>Dgaw+?%kti{B1P<#g@`Kn2UQ`Nv6oL;_f9v- zmksjuMPtvu)*$d^%S6!My$R-7!Di^Gzv1ZIrz`92O zW?V*|^vYpLj8HY*Yg$JEv0&-lSAs+x8fW@Ui?74!#F-Xet1)qoAu_2_ub18Vy?5;u z`H8FS75)8>qxq3zx%~#>KVCbWf;BRmzly$7md~fyI}*mALGn!B!cR*!Y+u@S9`?i2 zv-b_>Z{pS$EOqSUS-6M-^eOq>+lVH!rbkdCSz(&2$x9^#dWZ+E1szzXzBYk^1q+X$ zty@s;B)3sSUP9cpfB-wIbk>7A5}+9+nk&fa8ZooRxYoNH2>y2D{mg4dQ2CxcW+%1C zpa{f#4TD|mR>DL@N-Kxe@f(~QJ`Yxlf9%h^TYadZ7xQNxyG-0RPc zuY?0B0Ub^9vuu+#{&I_v5 zy)$(O;5}aw#BpO>q<@Z)IMf9Ym|Oiu>#s?3t}Vcqea&JWjNj;s=0f5yNyM1G!q_9q zmclv|MHajF`!4EABPWB}eO1LPSlwF;oA85^ZYJEm3M@fmJ6=`0dh=zeoCMR_cm~Rq zDN>x4Q$ms7lWHI(#wVYd)ifPehq|~Dr&Ze>uzcA^QA@%xa^7Ev7`EP-7koUg=tBhPAQzXdYggv98*^U8g=V;eU%m_ zWFc8DYRO=-pcY3^F>7LrmZDI^FBA!`C;=ZFV`|99iE8e_HSnI02aHNz>Xzp89Lw0R z!)sa%8;L*>j?+tESoOLFbN&Nl`DsuKmMoimeOmfm>ldXB`yRkfxwdzN!X~3>>@7N) zOsP$Y#*_;_``>4}>t9`rO1f(;t6tUBzkgRmMR4=iTSqqMTa`FCtZv2S=O<(~#zIA? zq&9C7m#W8qq{o)NFqp{`EYP;&_ER_h`ei=LVX|dLQ!<;)uXBQUBmizn6WFc!l%QQ> zZb_=Up*sfG1`Hx39~FGHU!B4H8XBk-Y=Z&(f;~5HHS8KcGt#2Twj|C@2+vh7g`l#F z4hPg?Hqh{jp=+xw2~D4=;At3-L~|0f)CuSLq>bwGh$||;5a&7^S=Pc$nFD%ENzsWS z`8x~Fxbk_H+pceNot#3xwj&AmVq(pi2BML`G z`qd?^9REb@5hbhn4^|#5z;O>sUswxdk0j=6xX5s;CEip0q_!?9YBKGw29Ac&^`2_= zqTu?O@Fojobo_lw$)qSMgt~s@5sejW^6XNJo@wnE?+WGG_8O*8RT~+*98I9%ma%R} zSb{UZEPeYe`t^$+->3?+0O13VrZz~FEV`t*Ik-bglyG%Yxo0aI4&JPl3vLRz&+&P_ ztz>5P&mPWdW?TFGh2GsoQw5cqUZ#M>gNutOd7*IOkoJkyO2NJ+2|tE)qzZcEs8RKx zH9KBoKcQYuihhe63l*(xJ%J=8D;YLc*hq>DaaQKo>7m(Z1BnEhO@Mo*esjd{BW+s# z!Wt%VRAVNMe0sUH$}pyyY9&sy`Y4z(7@C#>8<8vDqI+ZmNb)L&ZziE_Y-1uAw#YUZ z@(OQ%sIk8?_@LkKAZ8epK4^IuSI1ID`0MLxzGxeUNMjl6xat(>e1GtytLdD^esa|K zr$&Zweo7jlN;P;!q$L(VCC_0gc-ces>wcCf(AS3HZ)Pg9@n9{5w{z>8Xi7ts&5!J< zybGru%61%}{T*edGYyYD)*Ua;RTeL+e*k(s7Cd`COFTUAqc+$DYV?b0yuc{mr83M%L8q$*32Jo7ob2;)nVYSKb2=Cm zyEV!>m7j3>c8p8=O2nzC06WPGhoDuN?z}B*QR*K`!>KyLsM2~xT)2*|u1KFX6%s}F zED+>iV8g~Xu}%A`frFVyGwPDaY6doL8=fgeeki*k8McJ z@`T*$HNkNEWEBCg!EVE>u17rA@(rBpv(RF*5w>9L+jlcH%#em(Ek3aIfPKcxbbsjy z6}>NM2M)qI9R>@XEw#roCIKeAqM8|b-?2iaMI=y*(>5d-T2F`*Z1tH@Lzk$-S7$`!j~TN*wy5*U z$4`lKb+kzX8Wi5>j9x8Zu{^zCqdBjEhx1j^{qR`@Zl8$+#KP<7is7)jr`+zJa#7ao z4H7mZ;oBgh)Nde|zZgH?gTk~tD>S7fCQdOMB_$xq3XW?qJ?g|%go)2-oC)bW3>CK` z4p6g8-*ZqBa7smXOa;q^CA6Xx?J4JP7U(F8vh}JV?!vqI zeuRUl|Zm{Dsr zW*@zQR3uV5o=YLIxpPnML21rlAf2W-MS0_QQ9frTf3$EhM2&xIFG)63QF^9kQ-__x4EZ&(befspD9aQ!zh6}d$mfHM98%{{c@<>5R(QWRk4&3rcHDhl z(Bz=2MW#mvjiaMO(nz+b6n5QZxV^9COE?|H)vD(&{R@&)Hhwn&+R#wEU9lA-18gpU-IFUIe-KnRhz6~2PFE>;d^*z6-)s#IiFR%-8|5W`rSS7qF@;t!2B zwv{4;XuNV#YlX>DsqDl3`XY5aE-o(o!=M|s!SqUBDEPBXsD!?qrhwdro%`Y1^29;D zKBNb9Giqf~ufY~r@|)R=7&TZ%p^r`hClNl1-sxUh06?({CbIG{`hyIx>-~+#+GWYR zIxNl@QVMFzi9saGuKiC7>aTyu$r~rK8OqVS4_e5^0z*vJ&dVIqf1=YWTy!CPmZ;-7 zKb=umJ`l2lo_)aLE7K=bN%4zB zwmEh=i+6d2ne^xb8bEiUkYm@Cl~x<32Y=2`{c1hO_^L35DP9qGT(P;Hx0)SmatuG} zPTn%l^PZFWehYDiJeVjJ6WF(^a;2iOxKHw*f1=5keEjP>r#e~5*e0{qtuLmm zS)oO^)xGjpy8x7xlSR6jXN}1Rbotf(rsC?}6okky2@gN{fS*unhpM)oF%|`Nz>NtZ%1fj|R9z2Zf9NfXC zST0GEzIFZ&K+bWDm2H#Mt4~xd8P~c|WAa7b$x)-Ge;?~3;u5v47>vJ-bDO8Ayv(>M zgANyNQ2TTJ*~8ktv|`9=M#Y`I|h8?I1bZnM|9`-)A+gaGQ>U!XjMaY!W`axoNDdcLe^w6;Er< zj~Y2dezp!a4)XS2G;|VpT0D6k9#ptxrpZOH%{wnS!+R;}ZIkRQ{H|l^xu>r7c*60gl;5F*d^P)(FqPeOg!Baz>5iXhECWue(0k8z>munnI*e#vT_&LYC>s)=^R17qA2`t z$O8NKqXD!MPy!Im88wJAq#$Y4Ml*~U1;?r(>fhNn31#FyG@8mbu=@b4?qi;$eeIc? z&@OfWnoVFNa1T!Y@X5=|`_Z9}7Z+k3beh!}^!DE9m!HKF-rasTAl!#O`rKxtpkqVY zW_ce|k;9s{3D=Apq%7y`rFJ>Cp)*9lw_uz9g>%FEEo{lL)Qw&TDb%nw+gN1LjJCr;; z_A=xd44Nn0=0(=Y0%b72&U8}!?9OZoihxGe{hJ#RdyxHm+5anP`u`z6#{Caf`ET-o z#?!c%^Iy!QJrU!1clYuisZZ{R>J9Mjzs!kPW?Q1`x#zzWO?&izSsFiPBo)0i%52a1 zy{?-)x!vsJO!V4CQGhd`6})ksh-uyT$Guf*(gkxUK%}PQ{BlQ(8Y36~A3%bA0r@+y zNn^>rdUk4pbAqc`axzuxOvKUu^eo|Ik^eTx)Kd~%;M9*|Qg}BEY#Z>|ZE=SNlxRxH zCy3p=T~f9;cn4j2hF&akV(`Oe?~v`ISg<*Q!-i>c9@>~zi}2GC)q?-!ZU6g6 z@<2oUQ2Zac;nL!l7SiC;|1vm`Zk8VBR`99Oe>dbO?@OGY2Q@(Q`+qn6bJqK3C?rti zUmhl2`ZCz6i6KFT+#Gr!ynh*$m{_a#-~L}N_^wl z>G{42(%~ZHj_5#uOEmr7>t*e>)HWcw9Glm}M$|^u(0D!<4g$C*2ORm)PX6b1WrG~9 zbREZHiG+vnj`?oD<^3nkOnPv|n?2VE1)LJM`{}Ydi}vGrMQ^rqY*2l<{bo#Pr%8 z#Mg=#B2XyaXhyii#n@YJ_v9d05{!P#(TRh+hBYy_w~t%%G8F{`GC($Ztbu(=JKvXsTIxuFYIbRc6{UB3EC(oyoD5V zEDd<*H0gu8nEwM9Xr7!G5^JF(-yz&2LiwuFmPl8Bwl=wvRidMkrBS6E3l7cA`R#za zBLwkDTOht)N5O9-pU*Z;Rx6ge7;iZnPeanmdUJASF%j*9>3gvF_X%Y258y{GdD03t zCMs1QFo7hMOQg2VS<+d;N5?NC&wx%xNjnE(@UG*R{f*a?_zr#*7V|s(+!~@`^(|)R zbuGf-jF#X`TTw}c4%bsA>$d{E&+AzYFh*8X<4cJj3xC|p!|XZTsy9t5v>bToIi2T8?w{uftJ&-XaANQ+ka6Mpp^QBn#poR@x1Vae z_52lB(a8WAe%nJmrtZT773EVu>c&6MGDj9N7fI-TX2$zX6x5K8zGhA)=>E21Lla-B zM5ESEM*rqzQndTqKD!s}qR+Biz?5R)`d;2&xmDTq_@+{Kl>{vLd5gOYyI+l20j~nX z7A|D+H-LU4ALKd|6Pu;AH;D8^dsz_bJAJWYBQ>$tZ4rC`09^bvdJnib;JR>=NgUmx zoGE3hiD^!(PF$?|2f)(sL-XOo%$mX^8F|b>g^u*-0xANKw0SH5w-#}kE|IuyWu3E7 z?ia!;r@=!QUU?^(rVmVZ*3=I-QrpnPu+lsFBHO7_oac!`t_Kz0D6eQZTTfKe`b@pl zW`5!G(;6S{egL_2?MG^Fk`l4lXIhsE{|8D~KCWY0K%>7L$G2 z3fiXl-Pvc8CWcX&(f9o&EXsHMS+=KJ!aTg=x4+A_QAovQor zjqZA2oNLaa667*Xw-@9YDGLwViQ0|VX<*okb>8pErJdMO%QfD{K*5dNR@NWEba{xf zadnN^hc=CoPt(n?aY2$-!|3* zM=D; s#;4f9JWUkpULtV8Wx+89a7YJhT_Xi0|*{xq96-VA#4lu@72ADB?JMeALSI28%O9>_$bk*hxti<=159<7sp)HM&1+s^) zG>#$-x0&N}5y*&x%-eZ{HqXu`?Bt|~Ns^G*3C683%|kE7@RlD%`rnGP*N)kzS<;}$ zhCxIIExMy{eVtEQD;iQxRzxxpBo_t)V4hI|5(}zWCqMSbkzCgsEU~F^YrBe=Y_>%c zBuC7@Nv0+Gj3tZND=w}Qb#@mWE0c#JecdJ=9!v;64AnSp7cRf*&`E=Md*u%Y&#S^$ zKE_PJ>OeIeBA%^f@L(Ed2KfrE)vfbNd)^3mz}O@^>xX)21D8H?Lk*7!pQSgYXwtVN ziE*PNA*Oft4g}h`j|Vs4ezfmZ)Zdt}*033DBb8Tk{k0X|Wl);)t)5?u8v2O?nhfvcE_|@#M#a=XEiQNQ$ zs?GElO~<5IjYt$#`GfgKvm%Ur7NFI$u-(Hj_0MUEsE3RN-FX`|XFxkCr94VA(!Ltk zjJ7TQNgl4fY)3|diEH}OlFUWI2I|YF@kCnK>X(c;OPvXhs45Nso#^)V&U+;n4L$q@ zJENOrA@LLBZQCEt?=sWJ zHmY6p`p(5U1|C@n_%N%=wDwLS8nE>arI&UY6U<*!EQY!u?UAcY_lpDj*9wkQTo@QB z3;10fhjn}eG?3)xhB7$Mmsg)3vCo)1hcC%a&VCaq>|iGDAgbzJTJ^mrg0TT2l6T6* zz&D2N&ZZib{E{S^H?`#dw)Diy`mdV5`6p*9+vUx1wT}eP64PlgLc5wE0!dU*hXv{eIPKCda64Rq0z{lBx`nvr zs>V?ll{$>5cGu_E*plwy?u+M6bB|b-FH13Wv^HzWa zl@KM?s=`JPcbWS$Lr*DtarIs|a3<4yOkZ3~W21`y5!+jy-A}HFVsy--7Ya%;lF3&I zR(FXncktRxl&2LlOmsHT_fDS%Cx(1Y(CTME0on>wb=MW^-(B?mzMk8*_Jhp+(~!u>ppAJ*6Ms+H0=}p z@rx<;-I4M664M)1;)i#AhxpMTDdwxOWwtTx>GEOma>4FJ$vy^;O?a<)2YRMD-^+K- z?RMrCUjD6EY! zj~FlCoq^q|_)n4&zT&O}w3*^aw}gRp$H5gFI%_;OD?DeOHYdiTO)-;}$untli}cRj zJfl*IBXm6*f&KT)S6)m9sJ$J~i3tr&R;%p4mmkmclgc;2uhAU{E9)mL7lm34x(g+z zp?-#pjtz6BvC;iu)0ka6SSl-<++69aO8WBdd~a~Hw`*&xPnnxtK9-=h2DB3^GBD}Gg4yJpbd4(n9Xj{cjg^7Xc^p`k7&Tg6@?5V477G1!fZyU%S@unWYH&g@>sEK zIZ?Csl9(XhvC$It(B-~%8N8}uJWm4aVsN0Zvgn&QsoI2Jpr1HtmwA;A_7N+yDi})0 zA$@O~&lHN3(X9+CLjql5){UUHA;1E#(Fm-Cw2jkZ>@j(UG7K(+gD!R~tsGc44=Z@! zW&OEwc{_@YZdM40!wM5H1^ad(&bn6HWA+$&AUVNc2M%izz1iSD0M+(1k~C%658jXu z)9SsK?-J(5$joSdtu>&3rCQy>L#iLd%c1heny)0V=}qClDrZ&5OKTSUTr6P%rFi9S zKU(H6kyprSMS|m>&fZ1O5OPhN7pffonk_txK;b?TN9eQIi{Mf* zJ060tEjCc%ae?-m?05&I_NevE56*)HJvAyMBuCyx-efA9IpWW$*~;%E`v!(`%X}ee zy5QokGn`)8)Z?~vS&IBnzGZgz1(roZ75;jS-TQw4{jBO^Aqg8Q83KBF_zEWtPKL!b zLg~Yv_(~9SJqjnhmuUreiLoQ)o35UVrbD$~J3tO*e%tLE;w`~bx;^wvi|OCa%rrTt ztafJkUeTF#h*85>X-tH5r$;X-7uDfBySU?*57ayJ1oa9}w>o(~k?*aOf=wR;hBLKg zXlSYvl1aNz+3qiI5D~au#1NAZqoUze3i=bn1R}h%P?=fz({4Gh3>8nSG5h0{qmeOQ zf)>aw13!9OcO2!A!^9AFLVBfL>7A30YMWX@?!#BwI?OwpMtD??n&#-WG-5^>;3pnl zY-iU(Qjv|Oe)Zr8$ma;-eNgVaE*b$l9H$rHF^H+>=T=^Qar~IZu`PgoQL6EM)za8_ z1c@THBoD%Jq~6zBaEZfSIV&dPsMQ{pyV9zEnC5+vaGSveEBsusw&jiOU^Q(mZ|6RG=S zou|=s0Io{vxM~%$+n4)cZ$M5?hI%j%)c@2!6*iR)(IAV$R}DvO~VUUquYkjzz_hVAs_vCYrLG4YZ#?vUa`QFlZrcjh_egY3F( z&L`$MEaOcCmCg|rGRQi})^HQ1Md-@~Iwpb@n2j;^kU`mG%YvtMO<#7WPTxeCWPua- zk1z5_NG*t92A_^&t^!kO?`j_#N)y42kA(iUWla5D96CgeVo0;^BD7;hUI$|4S>1Rp zu=LGtD(dHF_&%3Xm~3ZL?($=OD&^xsd{e2lSDAk;RQg~wdS6lQrii*r=n--;+bTPk zI=2d@u?|1ASTk9DW5bMMc+PSp-X?&F;@+~~7In|yyfgq7_>%rh?TAIIHIh**^Y(`2 z;4pqawOTQ8Y&P{zWN^lK%iO4v2OkFw4r+-=?B%RX*mO3zt=wOVWXvf}N;GPBsm8Gv zdTKAdl#?>3n5=z@De~Mx|89vQMuv&97jFsGFnIX5K1p0*TRiKG^yo2L|O#N+_B6rLQuQD-h_BF{$P3Qoq7IF`{sOEav;Wcml0t zZ6nDZHXWG7m~cllHXeJf#asG(2bI!;sz!Z!>S$hc+X`Plo1F3WTp+1?WE3QdoLUKY zdiS((Wu<}GKq0gDS7Wi6uP7P1X*+!NJd<6HM8k3VxmYn}Vj|s`quz=H z6T7xbzbmn}1ZL8^L-&RK*5nyAv8|Bl&3AANI3=J5jc{e#*e%S z#zF)4Xkq$}6WC>k>lR7@GA26NPn)VBWl8qE2Z;wV!<6%~d ztkiPup(K5n66;S5``sS`&wB6#J*!=S-cfodlW^{Kfi5;XS?>ClGFPXp?AZ~t=1=() ze7}k4`?P9hKI>IyphH2b)To6`yJY~a67{h3PX0{@yE3a;2W>!S)!L19f4s_g_T30y zA--s2G+=@@mvw=uJ9Q3K^)@xz7=D2F13s7fIuDS;2yk!{1h04U)V6$BKVqZ?5&{$m z$jIz1-$;!(i?P)>Scaw((-?)(7QdkwUauw~bT@6`C1su)K??ru?|O*{^o!WzbnfR{ znxxoT>fdQ5y55HvyA&JgV79~^C{R3*|k>S`Ax$9s&=db9F4 zlmO0fYb5C-N!@_JxIbGMgy&?F$@>W68dNGROsT|8!ooe$hbGqt`sBb%4Fhu3g?1Eo zxzTswFz$T0vg#_qC-@j6{RP*`;=__`Ypa-C)*Oad-|r`hT2dVQOU2_=_u(4iX4MeyFJCe+m*9(0zU+xJILiu8fx$7DmM(@ujHZ z_ncRZ#_>f!$ot|<7L*8{m7X8%-&?*PaD&~74s{sFA*AT!{#C|;bGLlWyT zAvacbJyMbU0BD_A{^LssrDG@rb6D~%V*VbrMCk|bn4?A^i#iUbo56{Y%?r*-y1#G9 z-NK=_lNWmD3u*l3y01QSJf0+@H&9S&MLvuWZLb}yZI6FI$igA>nyI+1s9K2yc_HN9 z&~iQcwj}^6uz~71m;3QR&n-04_OX5vG9jxn9Fk<;NeY{H|_#Xy%$ zW}+@});#&_)@T2$)f+Q_Hv&SFS^;OINlCDGMC}(TArE|lCI_!AkkcRh12`_Z(~3&0 zt-*cl3VE}KX3u8#N}LO?!}r6&f(2UO6sE`R>EUCMj0B?ce|8y(R!^+iMX=s6-z|E6 z+3}r6*d(LH`?P4Ur0LkX<-o72{z>fatcX(a<16?Z|9|TurG5ebjioc3}~R!3Zcku63TVbzlLog(ReIW3@RLMFDtq0id* zxu|B(CL1XELU6l$GXkd!N(%HmokHXm|Ft0=odc{+6ZxV>ZS3^l&S)j8m>J$Q{hLn! z|0D2O4=-*0S9>Y`FP@P3Z%$A5FEZ|bFaHON3k%D|!K=UbJ-^jf5dNaQjtOA7uR)*} zTP{l)zkF%rs!96$x`TWekUTf_Vgo!Lu~B1PLTcrz-GL7t_ANE+9hKL}xq40}Y=AR-Zq^UEmr$d23m4?OCS0*J z72IpTVC~^0C!~l^@Lz|S>t)QOUrxnbFC=2|*c;7dNGIVQ@vhmlB6+$rbYyYay(jAO zr32;jOxF^fB+s!X&Z76m$dL4*pMUD9aQU^B)skjqT%-p3A5>f@yT|AX z`ehe|psF*{QuHx6-q?hI)k52{tb&TnGdglSCNC`G4wHYs_<#DGpa_SiB7-aOS zL<2_10=|WKnM*$V3=5jjlW&{Nz8gTLerNV-=CWg@eU-CJg`oclr<1DN-upu^|KUak ziA7i+m|WrDBfiKN+CM!7tuE70dUk=@KLwfkmwV^LU%1fFM?UmIkJs6d>H5M(H@d!T zuZ_~;K7Ss^amAF6vE(v@40S-lr-vUUXX8ucV`OObXX2iB&}yPyPbc~Kg&8-{V>$!F z2u!!LqOF4oCg268_A3TIc~kN^*3O(6TI^Q`wl<_O8OR5hO$Y}Gh;E8)D__6FTiLD2 zu#zM9TgwLGT5iWkFUgGh-0Ytng*B;!h63e!<1SnuT7GfvUriUsaD)?JfMQJU`&uP- zt_}}N!_tdgkThO(B$33p>B)W!!^DY+=V~~QyC?)_2mfj~S(D%W7@^K(5o1X$&WB8% zr#fy7jer7xklTZN;~Q8=aTxK|x(x2L_mogI4*~n9 zrfuiZcz;;UFJcJ_Rgkrc!FeW~mQ(mOZkHXwYfYc3pNqt=O6XGk%9`aa2Yp};_EQJH zy>}5&f^2mP98!Ty4=mRDUS~GianHN2eCy*iXPQCu*`r}N!BFj09s!PlkDw?Vk}BCD zY+}tGHMfoKj*jc_J$iU+n9a6aSoTjB)%+WD=QlJb&lDO$eM|=;wSXW}1DtN^cFRCE}pe!xlpyjp_mFlZ?_(5LN6`yAkY9y`jqVAK{4Y4cB_ ziSVVpII@l(WARE~tx$wFbDj1#tqn7`(lxV5Xd_iq>6wrAMyn}Ec31RVmUxewdjbVv z6U;hp%YbSHTY5wSqBw`yKyiCozBl14C@ol+$&(TV`e4%Sb9!9lH62AShE7O8{5ffO|`;b?m&3w0ba^LoPkj-a4^xDuBc0o0S!~*_dkHy7lb)X zc`W5%YmShnROnMd{y0$x(_Aoz6o=p{zH7GXph0%}Q5da;3MX_rUm{n;E3op$^<7up z#AOm2>T5p85~+KL??{OlKa4%bQQW)yM6zzUyOy`u_Ah7d_JHAupUjqg0y-Xg6+w)PP%g`{4B4%Nw+1!(HScqDbwj;@15-~P#@_vO~t z{Uf_^CExmEZ&i@-BoDEo?qeZq(Q+HH_867gq+Sqo&QyyJh4nsU2J)@MMuV z?bF<*j8RxURy6YE=Q>z@v(&4MPs4fnMsM&YG&1v(XH0Wxi0%7HGA)U|GOfK7BMSF{ zRpp&dc+M@N8XnTfiyWrwiSBk}$93um#FgAXfXwNwmI+3thT{n&;Y4$Y$@>Lfgc>y_ zeND>20>8+(V;O~N;HbqcvR%!y@nARS@?lRLa!EI4W;>KykJZCo`7^a8?D4nTjmq6bo5=xF6 zQmce)H$UHaOA;za0FK%3VCG5WQMDjIXq^=$mJl#Qo3~=E*2H%cdPG0nP4L7_3*vS2 zsr(*vhe)q_mSpF~QfKn%%5c!F#6J!`*i3%bDNI|~v47D#DXV#YoiXs5+(pOQKyU8v<4f7yTxw zG^f5){ASkHk{aLRYteJV=<-KN2;komA0VvSqxkApwX!(LN?*Wi7(pas)LQKprf1!J z7*Pmirl6D_*~!ynQ+G)`jF+U$_@lPIVZMI>)_x-#Gs6B>Gn+_g9J;-PXF2r##!!uQ zj^F{WCZC@655d0y3ZIg{2*UNIiXvw zT=owjena^>oWyUmlk8r*hx+B}0-Wx;`}Y4BmS{L`M7V~lbt@`Q8w?Vm!+7|wtNjNw}R zV+vhI63s(<2IT2T#V7{ictsQMby6%a2g$23J+!MjoT^xPw{+r!W}X~&Rz`6u6mtbp ziCRTXYjzstCuW$L+JK@MvF z0OZZ|mP`x&>VWJGcGB^)lY-MHYFIqiBTL!9e@}&Ln42RZte!lzRb$|>m+A~kmv+gL z8*Hah2dtIDaswS@v~E+W4-l{yIKMv@6zVsU79hK)U`AXP>1F$K8F%Cn88fV<`R=dc zn|rIJn$B-G%aU~Vd{(8=hTiG*i-(+tzY+s?B-$Dra|(U0f~wWPr^y!%ck|5~B{`~W zM_pnTFcUJ4pj^&Fs==FnFeq_K*XnwF(3uUN?M(CUckX6Ue=DWv;sdutiKod$XKrJ(e;3GH@#_^-;3lKgdI+QP!5#E=^1Lb4|85$YuBNZKI~{`y#VMCw;Rh z|7?sXiibm4CPa*XF@YXkP6LuiOPqc^8c|H~RP?8oAMVh7|3i?u2|ZRtUtLR6Zj7Pl z#hugyTikp{VORh`_^Rbak!TO)X+k`7yve4E31twf1YhmZ?B-iLD76S1cL*XtLQJrQ z%yH!$%II+FjNmyh(D}v2Q*xt|kmDT0U;(Z)VtFHyX0w5DqnMMlfRG90u*97Zxd%5!OBavg%d) z3I_j@Bfx?oo8a*|0ZPj7QH&qZT8P-YTvGJemXVi z4_*r-)hK)&&}vSUNPF?lDwZ+bpq5+z7@Lf$38##q62c{;o}(AP9Rn-H`SgNuF`*^b zM5f>Sbmc0WlHg9ure7q-54G{%bY6ZwZk%J#uM?@QjTLXw zDy{;Zy~mSQzIm9s3qKy5d^0|=OQXVNEB!ja)UR8pXXWR1=3twKtTNo2)TJS^*fS{+wZ~xgfI!ynUl?>60*=dgvQmryl6OPxjy@Vyg!*m*#0o^=rH}{2N(k$lsOQ`* z*|B_?yl`X?K!zY^;%S}wL+114QHxM&w-;LrDL+6Gx9L##nVYWHiurdE=%oH1z@Rsr zCR5j>8EW6JA!8}Spq({L7%t@Y;$r%zhsx(HTb<2=wK8PwTj;~q+$m7KXhAFvNJx`{ z2}z0O_zT!3u>0YSi%tg)qh0HYv6wiyv{MHfsMl5k3J37G>MD5dqwGG#&cEs>ovZz1 z%t6e;+gq!Wr(oiD5S`BP5st@t&rhVdqZH&_nE!0NLz07%Gh5Axm;?y_O(WQGLXZdr z!pDR^oYa<)>Qx=-uRn=bdfI1jUR-CR_Gvj{x?TO|bIUiK7pqnQeWr%2crjx*xF?m) zw_5l@lTGarf)b{?V$|JLCAB@W62~-2FYzw8IJ=X#9bnK_^otu;BZ(z7vIZ?bcon81 zg__Xr719oC>Jd!o;?U~r9m<+~GlfrJM{(OTldL)7VQt`zdc6AN?d%cz>7tN;<})K3O5M%d%OPV6cQ+dTe#j_BE{WD6j}+tMRFZaaKhl z%vyBl`EpIWw4GjIvv7MtJHnDz0%GyN9nAyY{dLn!<6gFyGxKq=cZic(nK`j3jW3Mw z5>H2<`E5Jp&cZ;-wA z43`6)RWtri(OF^v4|YZ#W;(@T5i2nU#WzT9gED#kg8E_$a=-6G(tm?Suhcp>NpGP0 zAi)RstpG{3Q{H0jztV4Yq>iy62Tcik2E(YXev7VR%}o(0R{jKK5ew*e5aIr%#dv?| zk!q>A+du~&${dqCs`*I)M>!TIJ(V!iOsqylK9w+MMl1?e2M&CC_T9XEhQN>*!$tY1 z{ZC3Ib4AWDGG*EV?JGrHC{N6HT{%L>ivfu{kKt51c952) zUX?ZASPaPydq-1M-qq3J6X`cs1_vuXUC*%X;iRO0Og59P-Ob#VW7|0BL*XE3fk-4OX)A1smcY5!gML947X zW>r0#YHpktTaDHCGccGZusHW~QA(~P&k|tG&M$vFb zU_h6jr;7zO!_#=FwT@^SM#l}t0Nudqs}c>+@clpnc~mc|^x!4DfyT=$%%dL|$F9nH z_cdy6t9?2V2j-^AOBWMH9yiH*`V@k!<~l)g9ybK#p{?m1Gb1d>N-JhKCtyTq;n>RK&ha?F05 zQ15WD`%t@%jmGmN8CcMuzL;dGN=+1Y|6;!@!;AmT5A634WIV8H?`BAdl0NMo_R;sc(OjYG%dyEALn~ z4OYR5Oq%5df782u!KkLOIYl+*fI%OR(Q++m4$IGQ5({0=VpQhc1(FblUeWJzR2c!d z5W&W;RYWYpLCYY;y*=Y`7Ru3FPQrHD!Mfp}V`H-c(HP7aY&uvO9hF>=4~hXhT2igD;1e5na;yf zMs68{GW3d2L>}=RuGsU&`!#dvTcpTYCse9!k`1bw!&WtIM-VrN2b;Z z@s+<2<9*mGP#FJ11lFv{Pm&mjflTX{kZ^rFrn;Nqd)?cg(at-BLht*Ee-rpZOGV%4 zva0Ah4zSh$$`F_*eZ9-nemgtK*V9draP8_3)GD&VY+0iz5_IEhwnrPgF+}1~86~ye*6ixs{>s!TS$f z>Bq18Y@6;HhTBJhjaR^um6;vvK@cy{75jM>n`Zr(>#Wpg_d{8X3??%0bjNZdS}{K0 zuq{CKGX=^Nk%bVa*l_8SwzmM#LU4C0?i6>I;4Z}>xCOW3g`f>k+@ZL)xLa{66nA%rA_WTV z$=iMQH+#;UIrII=gqbJ9kHF-~z1F%e?soPs4=o`<0y?;cw(n( zPHV#35Z4_+8 zPTW6xk+80+3bP=G&nnU`gZNhAG%KIg9fHYcnr1+h@2=GUR+@0tK+H>WTN-v956NI% z^;EtytJF~@RxRCGH4$}@4?65pLqx{6t+hwj4a?JM2$)5oR=?Ae$n`l0z&w8Fl~6-xp8!O{!F9BhZ|~1gN9Rozd00^2)5xYhx;4Q&=ey6e?$oX zoiPZdpJJJT|Ml#J|2_Vn#H;^X{_x)~{y(oRvSopKUb)CV{%i7MCjPvlw*OBG0uMR< zQL_jL2z39AHU9Trf~B=pjvLurdD{7SjPfsl%%R}(`yZDNplI>%gwOqU0ti!Z1$=nK z(0KD%SNiZSaN1p1s*@y=LhF5D$FKce5!%QzOY*=?oXxYx>52F^B!c&|rwHpef;YOKAc(lp7RV&9 zU3XQS_w_HnuJN%VHgnt_GM-8i9~G5>UtI~;OwAY3L|?G9Y}eH&P>o*!H{0BN9U%6aDx%EGj+8k}i*GOjJI)10VtB%MG z@IP8Mfc@y#=YsCOzHR$OPWm8&{L_H4+U_z6RsfDeC!@t9lS_k)I3& zEieoRHT`Qe%_RIyjH6}}Ea%%r2ACf7(qynRC%jNoW@^EY9;_TofW(EG5gwjgdUU#G zq%kQj%$Jlz-W!S513evDcdnpTY<7aoam~Zc?Mo=X1#FtK{uYUC2Q_o;^!(m#RelfB z3q|C873G^rc;VL{cOHj9@X1}^I;@=r8Gz%mle%mBCvMIQPa2nS6(x}F$ryHgZ5>os zq=VmHGI!j)jBcj^BsN&-k!M?MJ`6=7lZgbxt%-gk&cc6PJrGrWyouG}z%sT)kDQJ$ z@Jdk=`^z!(+9tO2W!vR{-y^5)(7Yus5duCzg;*XP3?FXom)JD<}-{;Y!h#XJd z&P~T^QC*!ZuYs6}SW<#-usH>QT@+-cG8wi*zR0*4Dy1nfWJ?sqZd-OYZ@yoNy-yxq z*_BPH#$!@R9izv$ABb-sFC#CV9kv9+8_i0Dw^2*p;H0wlPpb=cs=kt#%W=_2aJd}I z+m%#Uz4^IJ*+h3tO9E5Z92a58Fidl57dU%ZUL3!z-{eYyu5?Si>g3*;i(mXhT2`Ml z8nIlHQ2KC$I48{~6LI~1&A1P$avvPzJ{Du4T8P+>^SXV*say2-pYyM>Xdf8kgd;57 zVY`NQySuFHf;5Czy?qE?`lhH^>t-R$#+3Q2)_-!%f43dZOs^=njrVlBPLi`n6XSgz zL1rYr?H@YcbdAqzSH=8#(1L@fpF$UdWebkN-#xoOE7Uqh)O5F?9mNe?-})^USUwXR zC>PzDMfZj-jO~{S0k;@vYBKdeU}RHj8hn6(5V-|7nC8oxmA)&pK-Z+o@a>}?^c3b8 z3EP7`%W?4{?SAar8yaS(i}?*SzB(=>&+gL$V!5dnv*KoAydGTN2Xc2gEck!)c^1@u z<(>hRMx(&Z!GqmQ(r*n6oT9I34IIvrfmoQB^i$dLGv;GtjXYdixhii5ULVGVxo@th zDT7xFwdzden=2$_<4geN8FKlFtQMJLJLQXTZ?vYLXP>(s`}fh=&XjVsLyFI6_;|LY zPWZ_amGtL_rMGdNmC<@-qJrH8Jnj}^%EZbCL@Gl(o;u|Quw6H;uV-pWF4gy1WA|%G z!O3Fv;kZJosKFW{$IAFkEG=0=XLA%0>XEAnb@41NIG#EMY|3+V?u@d9YZ zRwf0J&OCyA;;6KWU4Q8eSgWI8YW+6ohWJd0of{9bwp7?$w z*+nP67yI$KnI8?EYvxuEQJD#8w~5+P)%W&nRROn{+ECAswdt*xnGqPHw}d%4H_|f2 zuXUOgX&>V?z4QGvXVad2$A}JJ=@3p5(RV5^9N9fb;BH6$5t{Jws(LbG4zF=)_Jrt_ zTE9Wx%0id6iL5&s$0#ydUkuasFKq`+7U`_DRkp~NCD}?<2p-L~oSa7qKmlR2`o~2Y z>vW~N)GYrO)EIT;I1xlupjULoTY_?mR4{i7^CMr%OPO{ae1>9MDS_2gAjX6%9UL_9 zQ`8~6p9>#hEJlH&5+XX6w{qeE--e&j5qu;XV!*hLR#7j}yR}I&qk@@BZ%#Exw7Qlt z{sk!a5i0NdS5zVUFhyBzGJa)gL(N6~g3h(-rp~}JGP;jTqx?+pq@V#|zXc=B{v6b~ zmv+M~7j2UZG;Q;&dMskKMSy%l_e8Ur6vLeF?2Su?rn;)lx8{PsbJ&}cjXYCnWR-{u42|54I-N}!P*APx8!b6z#MHRpjAf5*{no9nu7qV!(EAW4 z=NuxY2^;>V^df7MRSv1KcNFk2GGjEK{>G#SPGxMbQ*gh%CkI;M7=^fnUYF4J1qb!6yPi?5Gd##TSLmgC#Ngi z)5XKq3eZK8UPZv%s2!|!LEkd}wopf6r0f^sQ)M`#pFD2I-J+&BxoDu>#=PJ2wg}Xr zC_Mk^?jwF>!ppmTj<-ogYBqd-G9<8T?u^V|iEO8lkK(H-sxa!lcnFS<>e(MrN$O~| z>9u_&qaaubfFtZ1W`f=+-%k9DvTH?m3#c9-+&9##6IW%$N^(lF&7h(nQ|DmynDm2~ zdAaN3X)udHHxw8|H01ZbD0AHU>xay66K6{Q>D-G6)8gWnH5wNZ?rO+!FJS={5BO6= z?xm6r91AgxJH^v{Gl~!=7&QJT-$dO1_ zav~C-2Q2*Pf1%LhnHIXjuO65x*Jttn>h%TB`lTQ(RU{=?Ep;-hM8DJHy{zLtQ|Hgd zzW}3e4W|Oylv|}hePUz@U@C;KP~mNL%F1C(vwJ2qWk2Cn+TPQ#U0Te~>v8OtEZH3* z&&=sTLC}a!We$p;L`~I6WDN_Ufli}3mfk$e0xRB3lH(ME7$u8}6Gc+tBAnNxI^@nQ z8L@09=S*nsrk-NGJOh?Gn9Q9PIp*u7NR<|{AKIw*@XM-ge#nJsasXE_34u8$^NxS+7)DDI`N65kXO`pv1Fd9WLb|JPJd6CU6EbH9|C71aM zGjuzv9GIfEM+~=>A^o@wJ0n#=6Dob#^fo1-cBRd?NLf7{y+kfH?N1GOC5fg^B3{`P zeA??os@Ma$dvjIlx8a>xGPLi-vsm>MnByAT^fGaHM-w92E9e_f^5J1+4y73>Bc2jt zzY8kGaPj#s?ZU+pI~6@sZHhN#zliCNa|rnBM%kU;mAb-|MGgL6_Oc!R_)*-#I| zYjP)LY5X%qlYD!qpQc-jyp1lcQFZO>*Q?=O4d+E8V@4IZY?n}RN4nGmJmSiYFJ*Bk zn4DQg)=reTKa=C@csvudJ-*W=+Y!`s))URnw;<~}-}#l)yb_7PQsr=g1yZrshZ)esAKC&cTs|49GL(mA6jkvw zG!D(?qAtJ0a8f*Px0C542YX%odTrD#Gm_ZU)%1<5s5r8L_2kP&Jca7FY%JzqCoB0_ zF&hQR4+%A_jG`(K7RpzfP$?FL|OzX9F&HbOyQ7Osjp4cH~Yk` zjY%&iO2aM9;p*t@M_YB|;X`$zYfE+SQu3&4gzkh!Y&u<;iq*3QR`M$K-m{vUU2XFT z@lPNXC~&JswzsJ!C@F&sIi7a&&>(MiZ^Q47CiltMz09`-w7#0$w6Sg$rwt5$Vf?yZ zZ;nf}fZymz+|Ym@rhF5Bo3QFqT9qfb87q0rSZG`TXo&;MB(TkY0!NYvEn#V1Li9?II!tw9F1Um>YqAWUXvIn z^pUr$E-~?yc)J8fJ|5GjG0MskIxzp_7Y>}`f1d9@ zjhrdflf%RJZXs&LltqoDf0QFa4C9J7N>Rcyo?(t!;%e%78U{y7G&2}dn~6(b6#PXU zDFTa%pY$<&v=O`%$}ee~vQJ3ux z@vb4m(_<%--8+SX_u_3bP>(T!2nG(B9K2e6Rt8df!{enD#+OD#s~U$7%LL!~dx~@o z3@}{nQuk8!QmhJxWnptEd-W8fCzkH4L`*726`qFOc`SvgEaCPUhR$N~xD0naP2_x1a zzU(I1Y8atfL$!4NsXx?rDO|izhFyta*w}=yQk)q-%?k(0tyw^U3LpE%--)P8E@;>)crhi;$chd5U@*(x1+m;Z{-* zw0v?YBS*=c(O{b1J*o&=5N5m9HvC@A?mmNMKs%{fTm(n#zX+PRm$8ff7*RXA(mGbI zJ}n;j!J?QPd>Oi*;ff|7_*219vYNavrO9v!K=)Z&`4{2dd$oP>K@hN$=(ez*t;n=B zo2U32PFg9;R<#Vb)>5c443V$?Tlkb!P;;Ei_qprcgG6>8iue{l&hmp zZzc=Zd7D~bf+jXIk+n*xtr-?dOeATI$6n!BTCOGRA{04E_(58d^(#&q47?2jIY&os zng#Ud+&-UZVVYeaqW<_>55<;~tM%Dtyf>e!DO7~eaEs_sJc`hn6b))yp9+JApNCy^ zKRVG2fXc{_cP2bFEn$j+X>rI)X=h~nJRB}B#bYKyEOB@v$Rwp?n3nfl@L2(p>}qLTuySMm;2OT05V@Tx{U=mENq(5PgpwaEzUs6H|g-zO8RX0S4&^Udu_)^Of`5= zh7ffBaeycdWJ)h5P^8WY|9R=k&l)h4GRpP9t1NKJOA^1gB{|lUGJzq~vb&c{J}ne>S~ZV!5Ou)) z1g|l3XiE_-8TcJA&fwLshggNRP)x->@R7kt^6IU&)MI_EsI)knKgR+ZM z&-P)9*R6kOA4&CKWFr;#mE?U(;#H~AVe|+@@5YGJS6)xHs#`{g2K5 z@xs6HeXlCFZbiR&7L)=Cq5x%RB3gXh3og$m$$zsK?mC1^oG0!g86tDt{NY-?yeMM4 z+OdCQA&WS%gZ}XsWGn&XP9(p&g@a^Hb>-t6Wu|Wj8hr}S|J3g}lFIid%_p!9fU_x0 z5<*Xh(a|3_jXsI>V3$4?i5sruS^pqoXtPH6V`%#PdU=|RA>%AZX&0}L4hFQU+7J!u z%9~taSFzwbLYnS7f^qfmnT7oH@%GtQiP4UYQVG>Y@xIEoge|e8vRQ%UMado@7x&yL_kO&s?TbDXU^alhQP00RuT= z(&h^wrVA!JSP{s$f;QTvcYN_?=cAa6Pv2U*fRBz1V~nna!~x2L$2z$AXd;#8GYfG> zOTc9hl;32roL!nEl=L71S%IX ziG*9*cf-LTSintGp#78~Vr(Z4u#QMl0M4!Azz*roMithb$dVILi}n+AIhT%_u*{n8 zh0Ibt^r0txNU{$nS?@HxiWcecJzt;4_EoX}#f63llfQKV3i<>%8tR9kQ*FM(1eZ%(ArLoxCuWOdpE0Gyo5_Q#St*IHZo?kEMmZB6(bXToveF-?af^ zKx~Wn9AbP6GCBhs;(`9bl0g_)<6t;~0NXp;ArAQNbZzZ&mYMU-fbeipM?;H5R~w|j z6Fs`f9~U!QVEJCVokVZ;nJ}NoJxe&2=4)BZ3RSHRepGdM#25F(7S!0Uas9 z65@?x0z(Ke8gke7-4c94Zww)ycJ2bsuWh)Z!IZV1wNJWCxBLDBa3Vt#wRkgp^zq{+ zwcR^&Qw+`4&*VG_B!=(1(jHp2)q3l>2&@im>}++FKY;hd?;=3lm<9FJa{6Y=*UL8% zT`2<=?QEM}yZh;Sf;t9+*aB-$a6njpVO&2WF~1N>phYzjpqC3K@E73w)kZ*y2EGFc zw1?Z$5yzH>s6-_Kj$R?i(00x4Hh2S7?SRJQBK{8TI1QY!4p8T~=3saZLI!qsH?0R=v82!hdJ)|QRo6p|zCpPxVf3rNsj0apH9r2B9D@c#%+ z5W3R?$yT>CHFcPgX_t2^^MIjd|FV4@eR`@kF2l>{B6}qW|@V}TmqpVjNpM*i`9 zIKvA5Dnx!H!J5f&X8Up@Hj(ZVK)SW8bKok+&b=)2u$?ztIf5Yz=>H1{Xm|@_za|r~ za^i;zG@eYaoLu9+HF8bGQU2kGf?(4c;-SDnMSkXS9XI2gd0Dv4OUuBh!*v@Z3pPk- z^55FZ2qWS>=4Rfp zrVL-S%gReBP|$x`G=;vOn3>rnTS)4xuftFV+kq3rAg!a$e*t(3ObK@t+!`L+9zPEj ziGDzjU7Vaa!KuVVoa%L*m#VDfTpG@%uw0{%xHtD<7-9&x*X@SjooI#~xt`(WytN_- zC*iw>s+yDbOx6e??lKlJPQpYzr9KLIETvKQ-6}L~rpFVbm=_Dh>{I2$qv#orEKgHz zF71jYRry4+2V~3p8X0CCxT!)(Ptprv|5wfJ6*bN_Vf47_0MznLrq3IkOUK_&@Il9_ zTm$Y#+%_BnVc;Gw|3_;qfoD~NLdK#kN%m8i8N&_7K{MpEK5HO!%N)KffWF!6Mv%qH zI6sg79dK-x_DQw>>$`Q|dt8e34n5 z&`I*x?M!Q4{VUj%&o&J#t!=3VqnUk$lX=o>zH}EXak?xVSGIsCYTQyL_9$0un}YWu zv2gi=hFIZS^bpQQJ4a7XLpv4E7$2A7B?&HuGzJ1b;O(O!VMo!|<_I;sFbttObPU=7 zdZ~NamgO9ef`LyYLnJ_H!XNMwt$UuN&^}PZ*x>jyx&3w3%++@M{$~7hcz%v3X_&4m z1_Vcr`i>SePawc&Mp;H0I>1DTOGMtn!PRAc7nG}cuPx%txE%&VsbUs0ZyXTyRRxng zJG^bKBoC82{vNRdrx_?=A($+S`uZ%tpjmi*o8xXe&H#Ay1U$&;$)resVJ9pV?2odz zFADdX3KwcD_Td9DFlbp}VDLJmoxHaW41Bq8V=_wIsA0GxRzmHAsB=Ys+98q%7*=)I zDhr=0+^c_Yqd*i6h22$L&H2OYe4^`@_rEu`1evLs^sLw%Lo?{mWlRgZVr&Jtm-H_i z%3LP1EDp!C3k#wNh`y-PM3UUZul}J%Xhx`h<>sgp;PW^*fhLWyEiWyQLgOBMi8~fg zD~BgT68bF0H5}`mxLO~V>ZF%O1BNj~-nyDU_&QGt{HXMONFYJuf`h;eqpI7csi{e3 zSuL}59X3n#;#;#q8v7RqpUI0!GHhuT-wf<%njS@I+cE_u{&wksqo|w$aCFLzUNZvg zkox3k<@9OI!j+g7?H*=8IrGgdq46+)0oc)}2orp}WziNa$C z!j6C9UZS4k7W)GBqaR`N!nJZ00&O2TV#jkc78(9wTsn4mAzp^yX%*^5JJ^Ei$UIfT z_%W;Ene+|D?}YXt^tbCdm1|El9E!!oxthJ{pslp61={IKP|+gO9c$tR(_HyQbAn>w ziBp0!?(UMmHg&dcMd=&Vuu&mh7ozROC}0w6Yf@5!5aC<79;V#r*BB?G{T#2L!h6Mu zCyF}H;#qGOre{fGI_JXBfKo~yJs?H`^RcgDikO9}v(~PA9^{D(s@ju~3K(B!&N;27 z?lO3>*Xu!d?wq)q=yxGM7E3pmota0!9OCKJ3URk#$`FPPh&O>F!MlVMRMux_VOCcj zQ)0)3j3PPDy!#|2s#et~bZ2=TANsOaf6!&|==q5ZHKytn6%yi@EMj6>dd3{AV)5;G zo1f-rF#Yk-?c_(*0jYS$?u!bUYF5a|qh?KZL|Uxw;@2vRx;RAdt(CFrpw%RSMHgd- z)Ay0_`M4|96JC>e`BiXRzKUlexil^Q6wj*7yl;HGG^&-dC&S2;h7+x*A~b?zh-X(X zv0hg++bdHZKeWk7&E4wYxUpD%Rjj6Or5h@W=te~Iq_kJ#VA@|+4CdyDur9-s>LWypW zNq`3a{c$nkMEex>E+rw=WmgT&ou~xJw0O{lG!$&Se(v|A9TH0y-L@Z1Yl57NgQ41_fl)UJ3ckm|30xFv+aLL2W{L> zJIXV2g7EDq@muzQ5>m2iQ#_o6wZ@pw+LI;MYa?Aj=y8?v#SVJ&$_79w$6(KZtAlB9 zD?fulcXdf!PV`YU^Mv+sRF%P8!RY?po@2b|B2ICbW#PoR3WUVFL+^}mRkvm`Ih-b$ z8?3^`TPfo{t!`;K`JTbbX_8y4h_Y!eiBFAeWL3q6X?!$m#m>HnG)89v%i#NwPCrH? zCZxpPdh4))Mrqh9z=1(vjAKNLB8P^(k)c%m6@GN90WYd3d5>L>2&=(Ksc%s94^P|y zZvS73-@h}HoBEpsu_RRUp8WYb$eE=yo|ME(LDATc@z&rqs~Aj~{Z}&53aLQZA64di zU;8(#X2ev64D7<4jX?QRFVCbLb;9hXE4USl$LA=HBQ&zM4pRwC^p(9RVs{f%HK#iLH`R7$mk=R-}Ln0ef3E?rI_D+T&H z{k@hX!$=WH61XE~B)<9;dHz&txTTdDf!`}XM2t3=@<&A^Y#9T+Pq1I6C(#o1%6O`G}V~--UDYmO<@Z6 z`y`O?w3a%7(hRNRNex*;wqZPeQlS%>Go!5=7Hf2=>z}1T`s6lIM`8|)wA)y^zW@}> zl=){t7IxPY#^596pkMt5Ecepk$iapy&#{4>UkU`RdIA2m7oQ`x=e1`BMiSLj=Xdew z))|$%9K13&@iW+E)~f2;V(ByAjnU`YWC=FCt808v@ zCz@n$lm&7TWz%#~WYwR+EZ|aB10}H{1OWk&E~ccC29Dd$lk))r-}&>DlX4{uiGhc& zIq~sBmDBd0zErh7fmNB$;aw*O8il>RypM&&`yqy9&SmexI-lpOlrz!zml)~Lwwai} zBTx}=X&2GWCH|p&TjC|dw?7431g$iss#>$WxAgbdj>~lne^tz+eeY4@UWVtBRPg9w z$@?=9?~&tca&efv5r1Qql58=%6m}P=!v`UrgD6W}-j<*>{`d9++H4=`84oYP#J-sR zzFiMHqk_5-pGUTmK{@Orxr3RSois=Dlk|qRDDrR=^RV*Jo`axP8Ta?F0Q_)n7IGVX ze)=Mao4VD9id%l9R2XcLA@9@G>4z~6D4%YJ?{trm4n<#@Atc>6y*xBADQ?U$P`I;* zNO%HeE2(c1wjayqA(nlNb_-#X-+NBvXUi6q_1raXInA|8Qfase;{z`5FL-OjBNJ(e zeZXbo3*z>9T}fCTRd_p{kVZ52n9OnyS3VY*R-e5Hfu=bM?O*(UO(Ad4w6oj1Q{iFz zJ?a9p6;{UNHg3=Az8MZE~? zv+_9)IhY(XkM3isq-^CBDQZ`8>zAjzT;YSU%Tzo{%yc`z-_IS4*9gAji|nGYH-5Lj z6T4pF@tK{=Cyc6^E+`2>QKG(kqh7A)^6JDFHTc9sCWZEcTP77Mo0wJn9cqflN6A#1 zY!;2;8J?5iBU+NzPMZ71`b$VE>84Ci>u^9VcmHS8Fk1hi>R%3RllnFmVUe}WLj50| z*v~1N--i%um+$!Il}IwbJF0BBEdIz@ri_=u%5NL{Ng4lx)$!<k_Mu_aLd6({X{WK7iw*C=$<3AR7_lg#Is@cM`w9~dgW}^^7LMQ z#@>^{O_8grk;mx=XN%SvG@b=2CF?d(R+UIg}hjhAa^Od7qj>9K*~1mWo08A!nEL2_q~#EJbKmU zo@kmRu5s8>nM0y;-Mx4#v6#X?_c+_@OF$aix(WxA{tR=|cE*+AQWQ~!w3B*8ml%-( zZ>%tQz_BrRE&U2CrNzMCY~CpWaVZ!r4D*n?d97PoWQ^-``}rPsZonywe#t_J7AO3R zmRF7Mt|HiHpBuX{L9c68jpjPksh#7pTql|$JaWdS3%&U%Cp01~Ce?!*E^hKuKYe0?2gSliSVFr~u9>zvv zhPY{}5K(foEZ|?jj<2sVUlnPS+jB6tpGi(;S-Ki6OPxzPwz3JQu>K$mjd08WUG8Up zce!uTOkh$^lsr~krZ0)(ADPu-i%RBUCs??_ustIk?$5qYs44h60ygSSQ@op~*2p%WV8Jv?0I#lqDPiOi=`8~;0xKHEFm-#3Q;#SOB4AGKS%?i4J4>5Vh zMn9Oj1hF_+2aQCMUVMu4G#MO_(M&@e7h+t}_zMtsIq#@2nbWVO z(thNS>z(DJ(;yGy8W>BgCe3I+BZMYWVB>7c+cJN;cekVGkm0kJh1sS!zen&{p7K|C z7RhB>hAG&1j}srm;qV zonqbNc9Q6UhVs_2Z)lKbRfvD!d?dhVgM7M9ZJTK?3v!M9h7>vwHcnLD>C7ux>AUJ6 z-X;s@8bwIIT0j(p5q5(!eE+=Ut=P?FaI4)t>_&N`6q|jwM=W4v)8(AVSpvB4H%85OXJrNUvCPf*l0QT;!OOHsDVqn)hHdN6y3T`^_7t@69ojIfja>D zwqd-;cf2rG#YE}N=ge1bgV6?vY%AluzlK)XuThmU%Gjuy9Q}N|9~6XU9I_q0z*_@C zqAgtoTCG~z)|P;cPIs%0fGOVfo|J2iPx3rE@vhXpOl5m)p@ z4($ZxX?xvikaxb&;aTzRNY-mW@+&N^vjLJomjrLV6*ARTxwa6xsc?_@_hn_$GUeJ9 z-!z7ZHWfVyfN4^NBtS8f4uA0Crd-1WSM3sl>COcfllq9=ZeeUJ3JxC05ci*>V9n#> zLWduyp#-WJoaZ<_fvx?6UAbP1-&2Zi4YXPW$TWEYH!zb{;m|`D5^ORoHL8%m09DmQ zK6OItJpd@7uLw~>%PG&N%$iGS)9qdPmdXK6sOmuIg3p_H1f#9q}ie2qxmOc^a9`~Ig3Z3QS{U5Ts=|Ys^eI6%RNJE z=u;9up0WiJ!p%I6#o+Z2eW0$A`?U5f5@4md9FrXb^IJn;VSA+^;u{(=o*}@FSx5DP z>|j3BepR!9B4Zfq*SA2gr_6tALzIIkT^xOi(ax??*AbOlH^n}6Ql#pboQfc~ zCY3=a1_!PaY1EvySbN;hwkeLB9JUIE5Md+7v+pnDRtcwYihHV2SkZI2BQO zwn)S!7BSe7bkN{zpY*c9kCofkvo};0LYXLlqz9)oUP5WA*eFB8IU>Mvg9k=UhwkmOAK**EQo;S7O&Wii}Ew-~f_HW^bi;J;* zOJFQFOd=?|rr-vVMrOnhCKl{9gaCzWvIXTSo1=!i39wA0gns{qcjg`ci*+By&B+xC z`3q=*qlKp0CmKHYpZ?O^L&pI(4BOO|zEc3MQVVPd1ig1ofc^f||LK-QORcKcqBR_+ zZ^^yW_u;%$n)91k%V6GR5T*gHo!yu?dBvBlcJZs=EzzwYU5zwT#U;H`vQ_T^e(qsz5p@k^rP(s%&2T>TG9DOc zL~`A5+^{*j`OAtNoSNghzUlH8V1pBYLMQkgVZ2cVIhP zEzequrwnjUjze%d?qxQrtd<*WB!*tW*kJ<0ljG~VwkP~(^H1I_55`qPnsK$wMt};)WW6Gn^%pby2wxyck~?&;(K!1RKAFN9?bs2CMULR98B*Jy$E3*L;JMyQ z=I;Wv#aGjp37cvNFbg(WpED5==abE!rB_4T5p{(FVLnEoL?+2Beh*DJpy>x0V-B05^0k8@-x6C*c+1bVrkR@8QSNb>N6 zWSs)e98bjuE>eUKZ}6|che4Pv?c1(CFKKqtfK>!DxWS@mw{Y^vI8Ap6XB~d+vETA$ zOM9kf0tT4>_g$O?P`1IoIcW6{-y|;72bBN%He@4eG8Q#4+7g2n0cc5_>)K5n?B!O% zX1kW%4aUq^`FzzmkW8`Di@x1Sy?*m2Xx&HK+0LHljRrcvX4)Of4Bvf6UXHEs+N9l} zX`B9d-?!@yS-v?vtxuy&gjylcOVy?a#N$LyT>Fc+!Cg8$?M_O#cqa=v(hu9|DOR^B zhilKb>(QpqVT1<8@$|JA4DJ)e1a!ovol_x)N=b@A8O1DF<~jQ|3W5`ORWpLkdeCjD zJ`>#RxL9}On}HxxqmUW~QC7>bA;npIl2B6W))OKFao;!n_LCuDjiZUMhn zm{0*P?udKswaeI7W*RkRo=Q>qO&8Jf>X2(0G7?gLI>CB03{_yxYL%aF(7wN?!u2*A zqi<3&K}&N0YDVF-*VP~yNY?0i?B78HTX*wp_|d%NzQEYyn{rv8>|qd38SnwcLise5N3kjXo@Z(phsxhblA-9Sp)7jp8x(pc%<}}HEV3TTOz!#<@a)!XoiFr@1w_p*nZt+J( z_~a;8iALySA%Ozq(hyxD=r4d3?&76T#k_h}pRVLUa0kfjIarc#nX6Xk znb3_tj|gz~ePt}fx=ey06)o>`nd^Jb`*`a$qnbL;$ROkQmX86cffMCpbqnzqu1yds z=Cum?Zp1W(nV0RC}UfzF6ZL4&(Gp_ zq4Q(_!{p^7m zLRTV`^c{hoU<{hD{&!sJaaLN#G3ZX;gxC_x4wW?3T3KW0FRcHpXCGg;e+4>d;t@on znkSWU^OEn_XKDNDKHtaI<|_<0_|E$pEBWB#bEL`8q7Fu3^y#5vN};c2Zp3@%<~A~_H%S)Uh!l6o%e(Mf5XbRzB`FTz8=M&B&m|0zYod{qU;5Thx0}hI zXcX$cp*jp8K5s=KZ}njNYJz%?LxqWO6#tO6 zge%a!5Kl+7lL`>srMire)_zWqLx%3Xw1JtX*rxoRAosW~5 zz_0B|cG#0i03m(SP83!KSj3}Rk(NXUgQ3}W;tgekDK=v@C*x%Nb-0nQx0G(f+_}-| z8~rv$UaUg8lX?Ax=&|T!y+F)d6s`@Twx-=Y#n5T)xGxf~wo@geVm;ZBhrMf$$&=mT zpU6-K=tw9nX2i*}Yki{Xf}57OeIK*5a&3;KI)S(gC+etG%lj43%kK(i5`6IM!2v-z z!_i)x*d_1Vv+Jet>~MtW`U&Pb0%cF)44bu3Lm?)x_pwAmb3CcIrK99w%f%JWN-07= z$qqGIlA-6i#6s<$>gC~aIAkD`xt^_`H72#h8dMTPk>a&PiSpa?qWI59D;Q> zzfFN>UoL}NPFzf4;m%2HC*mWp^cR4-Ss!c540xmDfCf~L_NM8mqVH*1|I+ehqI_NW zyfbW$nFIz0v>*-O8K~{YqC(&J{E4fCH?R{Yo(hF#t0K8|wNqpzk@u)GV75^Dw+?PB zbYH?!NlWpr_9P&JKVw8T3_9Lc`M>SXamZ}tn`%J17Sb2>wDhj|nQa!u(50TBWVke4 zZqPHk;1G2*ajw)fCM=OsG5_wd(&yVq%7r{7iu86-OcoD;!;t;%!rIa1`C>vtG)?T`f*rUH%G`oF>mOSL%!(NS;Ct)7KyIR`nfI2 zx)qEngtLv`?`S6`CRL0^#($3ClHxXv9~q6kl>&V<@u=a-X;Zr1cci&9r4x~JofnJ5 za!KaJwH20-z%$~p9gM!30KxM7O2d@)fzvi)b9)uD5PH18A=Vg5@mSYj_B))x^FzfS z_{xms$VGtN)T$8QF4|8iqXy33vGS{-0+rx??#AZkd3ib~)tsbSeFjFPn=4iMcH@MF zREomv5>Ps7mykZQxQpa11#yKaFiERlr+90r2DDDBpae3t6c_%~MNz<-H#SFU$UI=k2sh?{ z+)Zi=A++4Wo|zN{mid(ycQa@wgyx?sYI$M3-4{Nay9TM8wWolND(R#3F0q2>%({AB z@T|(oBGYRO=AA4ZJN=^3vm*>eebk{M`aDgaDaG}CIp=pTIvzn%=e#|5`|p>f?cURW zqS(klo$fuuOEUf~1JtF4|5NH68yhFiX=nqJ`4c6XM>PMUTcuWpS`+V+XxWG%^hwrL%=o-U&_d$B>UfnAf?Uos( zH>I!fpp^vWy{$tF%LPBWC`re--&++hPaa11HptBc^L1;)VceLgrdiHh)tf4>Y=_0Q zB$E6D(;r7!vF|O>v&1klEvFaC7N#s%Bp;F{8oHU}j-)&(SvaN7X6`jY)D9K2Q+DgF zrzCZX9VF80(~>F)RKC=!)%6PiPQ<8-Iv)+gNTrCkzDXbKrU)3XkYJcaXr1JjO4YWc zAxMgefa&P}0?Z4VlSi-T%9lzs3b*dHf9Q2Qe*z!t<$%Z06^311Wg@hqZ^PSmy=J5L zGwq%^Q$fctJbqK9ZMQ7k|Har_2elQp@49${Hb^13LvVKw?oRO%oZ=KKQrv^PyGyYG zg#yK`xRV0KTHLKzcfN1Wp7|Y_GiNfhX8pO6nXI+m_kQl{s&vx}XY7-8^i|WcEPthF znla%diuFOWjO7s|TLUv-E=}tw4K#?Lh+X;x4MJp|A@fX%Va^NW4SP7dOi_Q|*`!&I z{OzyhMx#uj*WhowM79`ar2Gvi)*hu6tfVbxi+%+-5U-SwMBx6C(#zAi!xG~26p4%@ z%C{eM2I?37A!Vx1+ps?(_!#);q5^pP+q)Jn=puAWue~YrbJ?5o?ov%nbu>gxX7mq@5lCYK8{Sz6Vx@cMsXHdhue z+j%m|XWXsFiPsWX)R}*SZGf^}G@!-~5}(2pv9a4y4Tnv`gWKEFY{KJ|^XGL>e?<-l zAA@|Yq6am0bdCxp8C+oXPA4%7oBDgqvbGVgNN%MDR(C$>FEy6?D5-IVtDZF1`p1@H zyV~0^l4>NxEfC@mq>Eb|uwu?e?~zIMXJVed=lT8*iI!Kq24c}TrA6G@5sPHBw(XuE zmc4#atQQ}j@>fALT6tBcDkhj<2S3efAZ6OL_CB>GQ-fWBJS7Y87@}T-$L(U#Q43k8*0>H!0fcY`F`5VXy{z{0Ts(RAUM{v#>*; z2JJe$bv}tFyGiBwHs+>DPw-VbwHV)#A`??vfh)@#4-6yltN!BYY={DY_+aU;8OB5+;3U7qMWv0a===6U^Sid)Tyto5hCSDw?5-9(YoJX z9*3mm+cdl)uh;XKKJVB(?-m0m1D6PJU2ZOrcHfkFZ$^5qGAkH6s=zwwXyz`dHw#SV zxB{aYjdu*yp&t!@W}pNNXjE-a%uWmrYWcw5YyAFjk~lS>bmhY8Wcdr2VHA;~zCQxL z2>0`GE*D6%S$-G_^7!ccq0iA3cLX)0RwKBjsnK{g_23nCqHAeTZhUJ#Be7li7|dG> z3Y$B6U&!2+Vam-c4i0CBPPBKv)Z+t_*&X5MHDtwYfEL`01a$# z>z7|Wf}L}ZqaI5@!ScVY0>}o3qERtzqVnFH81hYD!hHUaIT&9uCfbxm)6vB(WNFJ1m!O*N# z85*rnA57@akKp-CgZQIKa>#f7PqJ+=QgxPyB*RlDO}B<5J7s(n!%$G5i!DwF(BZ+F5Vb$yEw6gk6+4#L(Uj7@k z@H&OLPCYSPVPe8CSo)X)8cW~qACK0H$Wfe05?m)R}e84L`wLO#T>qi7Q2ing++)b0}rmUnqAtDEO30n03Q2zP*JfniG zkCTGYiHw_Dl_`>;aP$Vr1p#CB?A+*tp7XnxWNIKq76v$H6qz3#xu2FBd575TX=;)yR zLS1LoPyDJ;$gxwnM1HRrSc9hdycB1keR#tEL!_QCc$lY)iu2>y<2P?zH7K%qlua*J zgg6lS8-4}tI!LP<7e`PU(q1vOayRo$)6 z3o4v_c9eSO=YCAP`XaxZ95Fwttc5(38)y}DC=gK5$B6^TDTel|( zV#_+7w|VnXxr}iD1zrt@LM*w z{w8`wU28wN=6@!0!7kl=-IE0YMviJBytwpuIq!ikXKnxWY>UTRc3adTUh#771hB1W&-x(qO*OnP|dvvpkhu(s&aKe_%Zyc1DG&_5CKeW8>4 zPbIf0Bs*ms9P_72#KD|G_M=9RE+)l8{rvdM{@}PmZ0< z{zl7w=1|x6Mo%YHJ%orBo1WSW;B^1tI=&H+7*!Ph?;j*$3j~h@{oQceu}OYBeuAds zp-x5x4fE4>a0;9Fa<6Cho<<0Kr^9iMB0I~cMg&PzE4KDB;j~V)a5Wmxh&4ws8gWsD zEDkMjm@+U(vcq5WARd5-*1~$h|IIP>|8x8wZI1tQ3Ix&!OS^r;$07;CH(I@epA;40 zxFovfgCJ9rJ-o#LZqr3F==kT(upR7(LN4hz97nVG*M=q;q=6J;V_Viz!X|Pn=->!o zX7syxfEvOh)37qowW%&*WD#+EZ(=u6ll5JzZFE@tT{+xky>Ytbk8D%q`W1!TyI|Dw z&xYJ6p`6_6oG1I%Y?5ZA*Rl<{p(?@s=dr-J2RbgJmeq`Rd3?n@3fJu6TxQMtpFXYZ z*#>e~Y(o(pWOfK%kemrEx%2*=_l;Jf*x9#B*tgje66&cQ3aO{lsc)Sg#nB4HSimS^ z>TpSe8zWhC;T%-#*pwJkqfZ}MV-}C$FwK$G3_VWzrcG3g1#7UYZYLxEwHc3jBEx z^`b|jH9=oj_kguNPD^N8{3()**N*G3KDR&jD8m~72lbO%$pGMm>R2XOP>bSr*SCMx zvF$DKiG&b~s=ebW2}=H?|CFG1CbPeMtK1Fb7x+I?-ZdG`%cxo&R>G83yUBivsrP6V3|E#u+%jXzY zC7XGZ;HgI<`Y_uS9}PH5znBoaGH-4XP;>;l38%8-hXR8t1G{wp+ZIe*1d7`@N=?;PfYDCp5#A0Ig>b|2r)J#TwOq;91Gjb$>IT z2_r`5NtGWXLMz}Zm}V;jRov)q72>hOy^vx`1B#Fd<-CBtE{wl(f^XU|D||JRVaP;Q zB)e|_5vW|@95$~|y1H&^sFzj#c;&e`D6-=FLdI#`>N=Mc3wheagFYFD;E&q$59{F| z)VO`5q4=cN6GMsZT;#N>X4+nHj9*kfn^GP9B^zmY-Lg}euE*-kzDOvqHl1Y%ID*JM z^lg-jud=~Q)N!px-Vcs}CpE!1Tjp&m)u$J4{zabi)ET!^@HXzRi2e+B6$>|@F?iLjLZI)I$T#+0*6m#$E3pSQ z+Nh;bNc`W|M>t`IFkcl$zoE1##Cjk;csr<0#mo8dtFB2UyIi`vx&Ma*tQadW4NjrY(XM>XxOT73kWLP=?IF;!@IZ~ZF@Ad+ zs`Tub=A){Ko6P6Ha(d#`j$@E8U&Xm+6{yEjU<_KjSsWr0m3Is^zgYO_H6pMw`kKv2W`QujY zH}SjZHCDgvR%n(^@CJTzB+!B)?jSLK!NA^F2aI-}>O0XvhaWu1?(Lasr+E&)T*p#h zj4-gCAOsqt9j5=SUS)AvHQR_o8sI_dh6k1dm~<5|CXV|sZu|It#GEj zARf|sm?me5Z~ZrC!-u>wFrR;x$;e%qzN+3GN7|%w8&&Csg|xeq_mBKyQ3nPJtqFG5 zY-H2X&NXlmI=T3%rU}!?H&Z%8Ic8A8lsiET0fQIo#q#4dXBfufR;QAHXFucRagl}eHj*!Cw-^Bt?;+H^Ttt45R!8>`SGTYY&Gl5g+U&21j%`EFM6D01W zxyQip=6(z<$u8x$`^2Yl9zt|=5#z}qmD+Y}cDXfk=CvKqo0(s#$gK5Xy6zbJxTWlX z4*yT5KlY0R&^kawP!*z*-{ZnE;QlAYEwzIT&Fdf}Nui6ti+Va%M-h$;@_PjNAXecI zt_9}Y_js|{h$ysvh$nt_gq_#{mV2k4&~cfB_)@v~g!(X+BjdOc=Kv2(D{35b=cSo` zz9Y48Nl<6v2aY>`okf*K!6}88g9>*Oe3rsy_Y@;KewV@$TRp}|5YZ|>y zWy9F5d?7PdgSRv}|BYBr)2gyZ3~YQ%6@SFlwkkeQ=pDk&@G3WJfz`7S(Q0}?T56BI z>({+b8BI4Y{zdS{vC@wRkVYe%qGn!dRMpp~&^)a$TuE-;tHz8So+`peQMTefIv)c; zSz^@DkphDPI}lRwkkZR6FV?BNgu3xf20oKAQbQum`My{pWSxrZ-}}F`e8e3_fC>rj z7Y`fp8RIgVEpM?Qf~;2SgJM-6BilVCfYZRiq?(p)WgUKgxbEnJ67 z$s39oZ#a8uTv}cX;4M;!{h;unMO2%ZSJ_iRYd#EZU84(CiqfsJC}>8uUxqKBx1HqroAkm)2vFhb8jGYQlke;BaaM>rJIPp1N}vdzn;>)Ik6EsG0+&hf|x> z<>ifh9uH3Blc-Lnx_$LrD4KJ-ZonH}XI=EjQuJ5SCO+p@(A|K{kZE`x{ME#{Q=1 zyU?rq#Fw?u=+g?s%sV~AW2OiMgS=VU#th#k7N@XE5F(eVv+_JCH=jT7Ge!)0KfCp_ z$6}~+OL-%C|2aq+Pzwg>5oht?Xf4q#urLb4qRI%5g0?judcBB&f=Q@jIB4p%*s)it z?81?RHGPcCPb_~ZPgb!&?#}oPI)~OX?1SZbzshBxtsOZ1D&g9{_PXVJoiD8v8Ryh#mD-b zBaf&*r|z#35wl2Al`WfgW@*jpd~bs)3)8uP0t2+?ci~t4Jg~P7J7kvraIwpFS7-7T zED2iL!3{jxl`@Qz>^qyw$DgsPFbk#PR_z{O_&ck+n-^s^1udOuJF^5lnjwEZL&>$N z$zE1JMqqDL;5Tpy#+S=sI)Rgz@0MOn(R~yuAGqDI*%TFuPL#)cKZm5KU$lr~$nVV`e-YMS;D1xa@G zQhwD!Qr1<>1=&Xv$7kLrFw=4+=2q*kSZj|@8lfgCjVUlk8LkwE5q2SdQIV1A>rb1W z2k)Xhhf^|iELHTp>9r`(kRad0tB9(GekQ=s(+KJsCY;?y?LjjXTqgYf1%6w&;HEDG z%s$?8%V73_)buEfBD|?1IhG&NZggcphHjtn|ruOI9bi_gkzgucG)^;4u4Rcc^Zjjz(M2^^C z+eoz{=D4!(&OfBazk7t(qSj4_EePtR>gmJQ&n!Llbjby<`>fr6vPZ^q1}{C>8JdP9CldaN|? z^U`Hs%YR74bgVZn;>QjSAyzZt%E7|Sm3nz?1bncHG{6^f}9R1x6;&Fc{WT{GObjU!Gfd9N*fLII_}Hjuw9QB zdPVW;LBdjm@NiOlKHnha-YbxxCL#;>{$Z_s_ZAQ*!fK6u%X))Bf+sFc;n-D_sHJkc z;i=5RGKELHRVBiiWtlSe56S!oZkq{S4PC5J5NRI+rkZix_n+d);MoZU^BoQ06tQd1 z1#gI5rhe5%)|S^<{7L^tz&@etbWTAp?c-yKe;gq;(q(Bh*JPp5?p} zJcGi}olaI=BkT32aPa{tp4cM+CB!NlC*=FLV$smyjy~e5ic3ApWTsy`mjgT1*ZHhd zYusj_wY@p~0v4w~nM1zeyQ$H8vs!Xpcm<|?2hFiq|rI*&y zy7o3Sv?D=w4SL>!si>K<Z)XHIpB@@vW~$XUj^|DV@XOd{ z;mH=&r=A5_u@DYNB4*MAO%&}>_fxzLd<0PX3plL|H0z1UmE{9umABe(rPSaMeBmK><4B>S1mz%fa0YH9Rd!9+}7wYbowG zQs=8q2W5iwb?rX#DtcV{bzC3_M{jDXbDLa>W@KU_&R@kT7?s7qHB+v{?ay$zwx>N3 z#Ow-I@|fAW)ayYO!+I`NEpA3^)32-?SrkN^Jxl5P+ZiC(^v=(wL|s^rLaH^vv&Nc& z?ZkQdQpBM%2WsogZkL*y;cmOE96a>x0{%+J@m`M%v>`a2HDEfr;4F!RW=+2>sIAF19j)fu*= zS;$IiWOK9{rI^&x@HtGUQk)m1*;aD)>r|=~lkxF*jd>1ym6M9v9dm;D6)QbefB8as zAYF{*3s#`#AIK14)hcF*`hWmMCuk@iTHW{yotFN!9`8Q*plX7m?8Qlo-~gMeOd7G` zmkl$r+;0x99$y#iZziqhiPaf0>A%61tw6zhgSGPxW8M3k=||(XbP+L% zpXsti+U?P;{T}bQzDHhUHxt((HlEA=>~G>`l-IFP5pIiprPZ@g<hMQc6D` z9yAl*&Zm0dLVIGA-i8bwBo)PO(c#Ag6d3vabfWk&Xth$P)Qr`A-KnECRbkJ~P_IO^ zml_pKL^r^m%Km8eRdiH)&?}X*WJ==2SHV?v|1!yp#HZ`rd;Lki-}H2XwTv{{CPme- zQ45ry8e8&%vI22QxAxDTiL;Grgem7g5~K2nSRi((v#FCQ)*tsrP7)9A6o||-aGYGQ zJ~P(y{2kpVb`Q_1Dmlx(eK*iQ;dFdlQdA-Du0@v@Z21N`T-uUAdH2_FLM72%$hSl7`VP)rxgkkiYF+J^l@&3vzAZRyC+uB*~6nfxbHc^R`_m*Q-$cC@@h@bHR3 zmJhSy6J(N%^k%NOHiONh+boSGhpAXa-#bl#qQJz8OOZo0=zaveKQ5y2x-3X^bZ%8@ zLOZvBTwj7=E<8;Exf^rDFrUX=IM2orles`b^ZXx@{;lD$*074)AzfXGDtk(6QU-KQ zlm~uO$qxEJ-7i#LWSOIEH`P>fm+t~Qx1>UZ-G-WMNb&g zxVc`VHM^H6BmR`d#cGN+J%>(C1~b90#PWa*pS1D@Vhrg53Ji6x7;=;)%W*tr`3qIz z84k2|hS!Ym_)t8C6o{3f4BFdPl(-tB#|NvkN_#SV+4MPI+Ahw#fm7-8IZ8TOf3mV( z)w>&-)W5=V^EJ0kR`nHNDdhsBg+)(jXbO9MJ?a?@AG=(?`+>Dbx0)@xJJ(2;mzxCe zvcPL2K5G;6qiyeu^+LnlkCKEaFouVz>_=QFO|Z!ot35TMrB23~-U%{zKYxJ-Tx# z4Vm3dlfjZ3U{HZY^qCX+My$@-DYi?l*%7Ehl!rF}vQdAq7ylH#?JX@Kiq}GF7x;tI zVqvNEH*6r1cG&Oe)4pqS{Ab~h{3)sQ&goA5p$m9izB(QUnzdKhpVnvt2FXV~roE^! zC#gZrsQzy1M1ihv_wHsb-UcIEX0f%aUdg}ET$uJz z)R|T6qxq=r@}C1n_fKgx=9XE8yIzDgbDlQJvvr;t7Cen!9UNsW$H$S{;VfH%t$JJ@ z0iIgL>9QiR3t%1M8)PAz&6>TWBZh)y z(;Hj%w)vOwhw+nl*sZA1C{kn5+$Ok$Q#>`%ZzsJRq0! zMKbsJWao^%5shy9$wyIfz%GuS3<=;K4ZU`O?_5rCSMWq+E5wQ1d>h&_j+_{j`1My| zAczExvvuAwVqghE#|Z~LZ58Ng0-HNQ?y`;VdfUW&uFs01L#*jI1^yukQkoRowO3XY z{5RrK0|gh`Y9+p0e=^eQXc&ZqTX~!j!eG-% zZ12^cWH%7b6;~sQhN!z9>d1E-koczdRdvH;U~kvsCgra=f*8X4)pp~`gFD@#vDtgdaVjI8pKcuRUAJN#}9xQEc zxqK#th?qSeaULH`WkYWsd&w+KrP+(~WZ^rUi9P)5a{U%{%0#rzjqyBPNE^*U5k8+s znt{i~#gG-FrRws8E4U;~Jt$?ucx+kp{lX!BZNIKoF>Iof|q zK~KePWzl2w$;^``1Yo{e@PLKwbG*6w*Lwyc_y-H9fWWW0DiE*cNfc64ner@Q5SvBK zP7ivIoEES2uNXm=X+Xz2vY!yxFMU!Tx%RUqz<4ef9AtBq=#x<6SX5#WM$|t#2qhAS zH=SJ++6Z9KMb||?woH5;^f?{R4FmKOD^|p^d@)ZrhafEC=xmn%O`HDjGLQc+@dsJw zg5B`R`mg_hyA)$_j4!C}|653j{hv7%FAgnel?=Hb7-{Zv3U8@gbrSlc=FmaqB=*8n zj9dFK@=ZY?Z0h)_$5X@!72w}#rH&s?pJtB*<7fkR{X=qGU2gY&IRyT64YvRrokR!> z^PpJ)Ol-}le!l39x_6L6=Pyp4JSup2XH0rmU8DOaU+%R+`Lnxv_tZUCY)=vO5`mdS zRkv*_H$)Z&mOcN^@&8$yVM#Ff<9D)II)A=8pDqcyjpp?F%&;${fI(&_0_r{5>Uw;I*uL6U*vJud)}N*j6Z1MC%Zwvz7shq;Mlal2c8 zY9}@Cet5a_v9p~_TP9F+4sAQT3&Xh!ywy5j90rnrq#oN|s091Ng){5i1a}e@Nb&uANjX^I(XS3W@)RiB+{7Z<;Q@jV}7XP8ZGL+;&Ts z*Dj~$2PteAUbTw5ALJtV#8eVThXSIQy!=FxZWM_fBw_9#QVW*#=8Wg&?tAgK08c!^ zFXBw3<+f#=cU4*y>A&TMEq7!B77av{t_(H|ih1=ukAH=9bHZ8V>pGCaN-yr=7ezo> z&~Hja)9mc-qzp3~jY&|EuS6^=!cfE}0L*>ymOBuIX#75`z5Gu8=EE;c5e;@1!q4a* zPc^rU7>b#&Ofi!tpWoFhI}3KcBIngd8})N2r{;A9JI|#Y@^^WvXz%@)a+*?X?G^mW z`<0m&NpI~u-ozwC1dfuR&=@|BdC`;IC?!6A#&Jc|akxMDu;BjQcq50T*71XjHZ~NN zJVttuMhG$?r!Pmmid&JrYkNJ1Y@EvH&Q3wk;8(u|?e;=L&osjXxl6p67tDBHl16W=0;FZm6Es^{q3#kA7=P&3K)!^!fWdY~Sp|PQTQ-yu9I$A#4M@Hv~_k!@CC9xkhI=8#b_Nksrh57Px>=Y!0d3y23LuoJKRHVjn#*v_-8IoHqvkwn zbxro>>*?_Zai1MxQ9@~A&uTTqLQ~o`3x~wkHlT)Rf;jrcG?gHnrQbn@`)CM8KX4`W zxp(2IE^Qk@ohaG?0TK8$cFg6k7cL6~LL4ReA=E zJ0zl%gz5syMo2)ltvR*c)izsk#`--qjz1*~MGs^+6isP?6V>%+UX><`MFlI~oF;C7 zG_&aK1JkdOf`f^YjaWg`WO@Vo@Yiq2x4Wr%nFHG=b`;AOSX8S`2i)!sVAwPT)BDue zzR|A3tTn^#Xx}&3Y4B}9?tW9YVqPL^-s#IOZe`U50>_c+j&9ZC`p>Xg(H_Nh=CM=hBs3LR85J?=3~A0Bo-?0n(l zE{S~75$0M*7JB?p-WL)%s3qsAU*Y~S{pv;A_FKKphAi{X{`cPa5N7etAL-IAsE&`4 zx5MO5937P3^xl)YwAip@ceZtiFCj=@OQY^%YXFG8zrFlPel-?3Ex; zc8P%^4`nx)TNcoG3e_$4?*j=?$(l)crVrq>0Gztay{wl2GNE?l(MYkM8+#?j~xm4IrGLe%%5&yYWO7X zkiwc!x>S=!ECZ1eJPURcPdFh#HZ?!c$m&lahBJQy+rQ|?|Yr);h&dr<{QNH>by)u?on?dku#&AHVK=% zFJ_)n#J}|h=CCx_zF)<0@2Ig;YOk)ghrUkSTkZx~a|Rq%^Vlm*jpt zCeWO1N?d*Kr?Tj7e&q$N0g;lKQV_=+b@bba?sdLCp;KmeTD< zY=vTo;9?hTfgIFMrB=}`8=LtRXs4$!881Jc+`Hy1LM&#WqLuP+TUnTu5)C#K!bkdz z`Ar3dZ6#VtAiP40tHn zl?oMY#vKrqQ0<9*-4Qi^?b}-7)NxFD-J603&zf@c4m7unTpzLD>p zn90nlg5S05EhUe7-e!we4mKN$hdvr59vT-n5xbMOjauHhtv*u;$QrT`v(=IcXS_nM zc)y0wbRx3!>K1g;krmjZkL+1xVFBt~x8=FhGs_o3aAT8j%$S!wQ(7UTMU>$lR~`6_ z#VUxF2mf+VYHWU0uAJ|Cb#*u>vj2iq`ml+F9nU2kY16(jDxy=U%(n8kE^yrX?YVgEJ)W)3RAh1+I_?IJCEEH&B zpRaeXB(z)3OFcv7=!vN8n-Gd;D>S;N{%2)#(Fb}>7#f#Ocq=yc?4VKuJrD*Sz#3>d-s@Efk;3_Xs4wPD25cE^GEw5fCxNWN2kN{rE;>hAS z$z=NS@FKnFd7oU636sT==`^Yj5QJf|dvA=|5>k+h3CixNV(O$tJX}pk_CHh6Hn>)5 z@qDU(@&*>cFoNBc0)O&hgKgsOcGjDz9>qTV^h=4xpef=ogbj9rGv{~q(y?-inqxTe zqg^tf!T9Zs=X}eCKCYf(9_1Wc^!>4Kt0M(ssq%2dr@335J5&u&c`cQ*B$GoL&fuy# z!13qSpK|u!cU-?pX5Uj*c=wm2wYshRGiUweY&N&8{494zc3fKXD2~+Dg2s07mkt0d? z7o&xKNK&P9PQ}|n`@y0op>Xul^v%5FG*9K-KYpZ3%n2s9^P{hEr+|EuHX3|7W95Ir z$>qKQ((VpZGZSQj%jwZg+U(3}1b%6|spXZA2R-+izgV6H%0e)ABS@tcf0MX%;^8h8 zZ7FOz24`p}3ozNfI;DFZd4_;|WXT6@N%ZS{+LAZ>An&srTGm_pV#=e+>XxD%z4TEC zolLORI(3|%QknZ7(i<$jk(}kagN2`%hAoUsI)8a2RW(aZF}MWc4=A1+$0rx~3U8TLtn?@A=s;@^18LtmQHFv(IUNY%sOS+@X3# zMpkw|Rw`eqGz$*rUj_!^p8xn(mra=Ys6=dr86baS^qqC*9n#Je6Cw`GGqz4i#V$+y zfw%59+>bMfR^&+v?O!zQ67&Zo!sBlMGB#vj(W&kC5|X*smxf0uaFDjrj_P*O~V zlUP(KQ*Xy?T3c!OiMSCrFpaWoFRS@hnCbM@U%U5c-2Qb?)2KW%dw`jm7j*Tc zI97@C36*eNULAc&En_< zG*d)fNC1<-6V;(?NyN1C+=t7#2L*rU(xpcvzBj-s^g*LwM>i}yD0R^Y2G(PaT@2G( za{tb~I2`Wp6f8+fL?9sHVFnQ_4!`h;E^)j5pgD7^!b+bf^q7u;PQwn&dtr#My~`o0 z4~kEUE{DF?&#wdchKv^d7(Ul+;X+lnIMBW$i+$vpKu@h8e6ySHlAsYEwhw37@7K;< zr_ME5YMYEv;bD!o0__%1>CN^A3vVkel!cNQUpMV%E{fPV>iDjWqe|L;l?LVoh4HR$TD5;J4SY?M z45G2X){lllmjKO^f@kK4dGFGEx@=23!cY+MM;R4&TT_)P8SoF6d}UFAaOZ^N*?ej= zVYx<3-XyfC54psY)2^WC~8Yb_?y%g=uzP6!Dzw1z!QBDj%&7(+(}hWz8lvmGpj`=FUo&jeOwf$QW446N=n z!E4%En6@8_H8hfn0;9Z7SC=8kges}QU_eoJz{L0NXp0-|n^kz>mP!jdh5)>={~m*6 zm?PFkNekor)B3ap@JHV@B9!(e!W71_<+@Q6TruQ#*w| zI+1@!Ih#sLPDv{TDzl~pf?rz0kB(5ZGqGdx?ut`O9inz_SZ4!Uokhy=xnF5I`3N*Z z<6_JhbOR|(5(6$1h-0-B(TcNP`*E||WLT{1Wn5PZlpYwte*2t6C2qgzV7aauSfw1D zDrRjiU*YA24LAR$yWSpCafu3UER7Li6=r{7BNH`=`lGQt5XRo~^1Jwb1Y;K?5GI_A zUMcG;6F*Ik+H@UJu+ZkzQvQt!JLS09H?zoKs#u0qHwVZnys#G{!nFNBDv@+;uD__f z`Fn_#2+nNV;E9*lG4!(`Esc3j>yyC5M(`y7ejeJ7B31@q^ z+2lucC}6uqc6YZ@O##bA_rN@}CsX4y^Q$(`0*&lsF-FEZ#smw|cZwDCVIiA0CPFVA zrn$3=RqD8JIL9@?TUs%ju&x||;iyDhSp4(G#?Qw7TFiZQ}QWduYiKLxr`N`0VLF;YBV zR838+7m=}+DK3vK$5cKH_=RICL8NUi<&+gMNh4)sE2vi~e5$2N*1P>3MCc{7Qqklo zESfNT%xRji74SY^A=W(Eqn8skBu&hA_Us(iH6ep3yIW=Nv^4m=M&zEepKUXevryUl zF#meEZABU8i)2LxiDe^dWakH6R?RCcyy=3dweLuP8}RxbUO#o-Dhp9o-nUNX36%CE zQB7O`vRQVmG@B~#E;mu-Ra`l#`WA(MNS!x!X(onm@}`*^Q|fQ42N1t_gA3|L{)w7}=@hVMY^*GFB!^2hBr=8sp zei{XhKdWoo^&DRNnUh`t6A>r~1b>+3OMll*z_#~kF8%CzMaJzn00td<;{|kxU9_j6 zYR^tVZ;UKn#61!X17z6pjn)VnG&b?s$J(jnUJgGC2tfr%bFv4%^Q6u11}3iCa1Jv4 zCd$G0rap*FBeTB2dZC+kDgjioBS(B7LzRjoc|Wp3PB7pJ+`*VA#yjawDt?1C!7z#h zFCKigwbL*msI4U(?23ibdt%FGSR1E z6kf`WyjG}N!~E1{RDB$!PV;up7zpD%2-z_O{-T3U8`VDr$oANmO}8SG)hbdIcwX0e z{4Gz_yeU^-8YF!_y^j8}a*5QWCx!$cwz zK7Zyr$;GO9Srvq=M$k&Q;zsl=LbYu&Yg&j-4`o`6cB2PcWzp!+z(`G`*FSESZhUmB z_WQ#og!M!27Lfd)TcDeahjbV7x-Db7u~522S@zNBj>vOYSs3WyN7skd^Zj@N3osUS zm#5Yf`~7i(p0IrpSb?W`U;a7}j%Y&0Z1e7y;vx{2-_20pBa zOHtenD`3$?TT+Yiw5-}~sdEFvxg)u+A_~l!4h|wu&QB9$J83qCj1`l4S;PZZ%RnE+DnJh zR_Hk*8i_ba-o@VrRF~|_Bano9>x+ssi;Ja#LZ42kp&%@BLC-%}R`|Bql1VM6h=NT% zFVNM;_w=MFoZgOnDls1pk#PUv2eVPL0QR4{!P6``dp6Sr5-1$4$lIRT>+f#n@gci3 zY#z_>p3MM1(Jhy8{9Q|nI?4>$DJ~zoX42!;_6nlMX3`Pcm3jU9S2U2jGxPm~A3KHd z-J+ACg62^qiNhC*@Xq+^C@Cd+9z)P7Xkbf?765Pud|MfitSer>nW6Q3chvwN>k>|5ng45h!A}bF5HUxjW3CCg9{Uw_GM=&{fqbOdf4^D$h3_C3fJc7S zbv&&zvFjVI27yxEn>K`Kwx-SzjZ>s%&67Q6(>;-4a^ z0~&OTP50-vc6)MrtL3UPadnPJN0iyhl>;3(=g^01KfXg`US4O|?-K%@~?AeDP} zCMOcOuD2|M^VultJz9K+fRbO zcXqP;zl&v~|EE}{ncRF%Pnp>xl?Ilfwr5H2Gf5Nf?RGJrw%e4Y(QM<{@p8Ga8*n)U zuBNlNj(lsbm2nJBoV}`F-6>sd4nw;Da3hHZ%tE9BB=y|N-t%b1u~Qh1l=|$gFFP|3 zf8=HD*a67jT6Wd`^|{_tNHgO9hh%tJ?(-I-=Lmbyt71IcEVScwf;MqRuvJ76Qatg! z_kH{3tUMk3^*3O2F&g)NL^rAL(Rc)Jk!upQ)()Ls`#~;-f%rL{1Mz0~H%pPyY6} zHsZM@13(B@12Tbka7^y50tCzi*6vM*28<5?EZ?t z?sh`?Sd*!jS@q=Dg|37D7h`7`)K>KV`C!GJQrw;3E`<^xxVyW%ySux)7cCmB6n9FC z7D#a@PH~5Be*c|)v9tOnlgUgncjn$XC+GRfr!Bm!1N8?r84Vo1Z3Ss+3XyTp*?LHc zrEN(x%?MSjfG^bX=wV+@&*76K?mL`zvDOQ7;}yrtek)>!pYPtNP5WY*+?-!}+|SRe z(s_{d7ymZz;$t|e20z<6LeV9OoL|qI3Y=n8LRw4MK~Ro>uR*Vx8hH2!m?iR@DYN9{ zcN#dAv7sJlywA%@D_8E66EDTMsd@UTVLWb;C=$kbQd{Ih=~L4N8W+XzD!R?J4=2^t_iH zFeC~Mjl@|3ur?Zc?#q^R^grU_ZlK|07c67H3{(SvFGV~cKZqAnUlg?n zk@zkGnIjB*BAnrd72gi+SzELQPYfQD1PoZbDk5@F;xE%v85wjN_2wGCU7FIP)u=4L zYnx_ZwEtSbjdQmd_78x5U8Bs>AJyI=!mLDhkzUWzSwweFpC))z+nBjZVVb>;#hUhQ z)UtDO88;>3gUhO4)qdu7kb2Ju=HSi=QZ#x`!zaBTq!BJMKOot5*;YMnZlgF-R9hoD z6*101-hsiMJ3IxT85YU<47Y0S{SxExQboGCEB%=r%8kCT@kYtiZSu(cJuIw54ftr} zEp01>9V3X?ZQpT5L@?gCs*AlIb_^J7z7-0SfX7scAOru45>d6{^B4= z!=t^dFn%03B>r|iOCdET9-LetzmBGDU%gGS7_FwF^?sUzSa(StpDSOZMpGm3Qbz$> z!0?E=-_#Bq8T>%Xo1u$POiGuMD?*>;RG;3*-h|lj~v36x{?AaS%-HubC3pA ze84uJmO)EvZy1ArmPx%$$lPsSkbz5UN)?rnDLfPZwLOw}PAU3`H13Pe^Z*Olj*$K# zcSK+=aX1lCuFh>#ic|l+V%{SyL>+V?!cD_-d4AEn2C5%?UZ zxO0{Xw#~>*gV{yZbBS`dP^`?Ppji-u)k?xM;vZ<%@^(za=_ z+(=Pnjc$}Oe{y3VNJ~!3anp&^ftA8pwhP=$P`ir*#*nJv!Q`Cg$^l_y<@c&OsScM{5?|)^_K!u_baf3_$O6{lsQajETEnRt zQoe?M);h&Ze&59PGZ~}9M1zd3dWWIb4PL*hi8h(dVx+D}tJU+|>|y1{d>v1Y?NxnU zAvv{S|6yGgDN%*at-cQkRFAXtEGlcrt!cy&?;gHWI5Lg;?5_OBX*y7(^XeZUY#d3r z(?W>sPl2qmn^m@J79sr;n4uThDCHku1q!TsYnsKw3#^`JW*fbgL@$fI;h#KJvM<7K zK92kOJr5U8O0;sRMU;SHU&&j8ui9G7-A;&`)fh;{zG4DA9hCiRf_bJ7f3YClHn0_QzAj~g7C+(W%TA%Q@SCt@X$|iD3O*)9;4{n672LXK#2XYHf zN*Y0V()<8|=0ETs?Y4WEVZ&6)x%D9|H&C+AHcrDM!Y{DND}B8n5xXxO`_R`5Xx(wh~ky7=)bG-0`XCw=jDR%mnqxh^&79Sy^70<%e|#_308qsb zsWtZE^+ns6Yg>Ru%) z9*bt-mNF&@k~2<7vRQ(-Y^rd7 zI?P2KCzg3Z{Kft(?>6_mHkemt|$+xCR0M_!#;>^ zi1RRo+7>igui;wqTv5$%s)v#ST?77(Q7l0R{hHdWv$gOYdx|VXyAF#2Y%?7+QkzeS z@EUgH#2@)(+8`NwUs&a@OjFwllQ^>0HEo@a6o3^xf8>CL6gKBE(r7bY=PQqF>4$MN zylgwT{-!y?1VzKxAKnqs72U6rwQVXG4U*KPiqIV4gCGIDKZ4=u;o&ic_t$&Ta9t%ybiG%~?si^*uX-DrfNG zEity?ZKUNw+S#nLlZ4m~l{gUl_tI6E1d|IKAJkzbbDf0VV~ZBHpXf1<32Dvj(Dh`9 z^w=W{!rMqsRUrcKtlZX~%osyqeL}4HTAvm7X1D5PIWbQ7I6dk9%E$(!As(S! z$8eWCJ#hthEyRgrl3Ep~9BJx;4x=5xxD~t-p2{?reAX3Q*4R)yuV%Wp zzWBCICM!*S2Z$jlG(r+RA6KA4)g~KVkl8F~7$qZ)>6IrFzp`ZVr8Hk`jf1XX&dwaP zV+p!(V_*iat*!M*5^bdvw>&QnKlCxqd3&mVGnepOIilRE;D+ZrX7piK>Ld7>P1-Kqu}_Z$UVsdom+VFOi*8 zH_knfH4c)|O*hX{wAD-0G}z719ou>@O;p6~;5AhscN5WW4m_(4Q8(jxEqhjqP3Vmh z?N*;Fld{Uh)C*l@85mk5MUHoZ3oTkv& zgk`UYtItdy#yo~xqUu+<`~DvQGYLxZY$wM63ps)YQb&)`-OcRK+EBSXcJ-^T(kf(N zp=}`x+-E)vl^dzco4!}BWM4V$1;p>_)9Lal@i`*j2sh-A+AH|x<|f**@H|D66H9i? z6VKSda_YP4cG%pgKeqcP$7SoOK9}j(kR4)fh|>6$_!`Oq**_aZ z;b#Lsij>3AgX-~BboSb^Gs^WQXPd8l4tv;nxoh(E|2Ep?Lu}&W1{Qv?;DGF{Z|vsl zMx0zm$Ambpb7}|YE}tNt+QjC3G5UpkSRrAv-&=ndD^Bc{8))v?^I@>ZD8wlE>M_k_ zKPnJqkqA4c*D-wbJoKy>RQ_ro@16ZyziL(6_4BRzb42DU4^iggwFO!sZ96aK=gY-M zIgr)3KUiPWpLsQySVsDgekzET6I}@ysz`<4$izp+5wtSQBh0g>A+!%_55a(PZrX13 z!%q$8{-K=rVV}8fbI5Fsu3bAR_rWJA%}){}+3)$1AGfgM?K@s8dgFSyJXT29K(gXr zoFz!eLqmXt<%}f(95@lT6C`Uh3=VO^C|idVA1ZDApk2<)8}fI{AyUb9zgQrzVyikBsyLKZ4wt<5U^uJS;?Ee%~VQLr+#&)6?R$&CHn{Pgo}EJGAIhv zc(VZ(S71%Ke()EJIYNsy%k9EO8;8XP!DO+Y_FF{RllbG z$L794@|2Ar3qRp2$G^84$o*kdWkiNY*LAZSZV;R?B(TDh8vRH z!w5*X=XG(3A!*KIP^TyR=$~WQKWe&fl{p3L z&U5PUO2J9&*n_o<6E4N8@BA-W%qv3{xv)aaA~u|SnT;Ca_wxin*^A2jWWffZ^e#pM zRMd1`!mK;~nzhfJ1Nh^?xERfPv5@KJfqV|}^z=vV zYU#)V*n_fv-JV1&raGF3H7UeT3EOXZYIOeru*4_~B+taCinR^EhqZD(kJ~ti)=cnJ zq3EU?xYryHy_fHD9yYuA(LVC#3gq@mOi`!X-!`wPNXJ?B@+v10D zs=#?@_)9Fh`sS0Y8WD-Xy=s#?W!jl_k^cZP$cN{w5d;m}0xBa6x%KWX7|JI?!b}SG zktcj>q%d+^fvgkN8KumPNs{nPfRqLv%|w`GJare|bn6F!fpW*E{@Fsw7p;e7lbs^o zQrkz6A#05@ zI%ih8GxR#_+aQ-lu0og$)Cnc&M#=SK34O^ zJ+yAJ|K=Jr`^nab==Agl6-|>oXKBG-N7;L!){y5oFA%DoL4zut<(3g1?uQoLs>-P9 zo+LMt=`l2`nuHbjMY_{RspXPm*dg=>svnosy0{8HF>t@N0{nGMFDU1B&^&#X^(0v- z=24OYdFwD==TSL#Jpa%LsqCg_OYZ1r28pUIj48B13?b4MvDbH;kguwzhv-oKrVcg< zO98999Eqh>6Cizd%Yz!{%PCv^szN4PPJF?4OBR^?Jh3pBnjfZ3$&f?(Z%i`z!rob&X-Om3$ z`IL!hO5F@6y2G3|q@B=qEm^s4McqDw5er|Ylin}8YO>Wc=VufRHnS)_i@{ZW*zapT zgQ+etRfAR%{iF{s`b(ZmtZ#&}m1tzV?LAvmTckm;NpN+jti}k%_qY#rS|+8Q_J>K4 zI+BFwA6x%?r+8%viMch>PLHg^m;R~9NN63dTXm~+0?Uwb>U87zQMUON%NEHuvJBS- zvb=R#u8s~++j!!KhLgr)X^n&C`pvjC6l>RC*BPW~v*AI>)@hj?R~T@f(x;n@i##k2p}b1!Luo zuHougv^s_Kt|nD>?+_OMniQ5{(K-r_Q8uY*XTDL-kFA5R6R=k+(sV1 z@*~*XT+5C&2y0~zPGOM~XML!7)F+2R#f6?4D+WK-xeFyVE7~o%vf-L8C5yCXDG)!~ zzf_ovk(Nq#YpV>^no-eA1dW+OtOx2CDc}_Cr|uj_EjUMnkB-~rGeV6_6GHxt8Vy&! zmYE(!Cf~eJjDCLVWOMV^FBAhAm5QHSMrJid61ATkeZNwpuBPXrq`FL5W=FfmNFRI3bql;car} z*03~}rO=}PWKA6^)Q6J9IY69%-<+(k!g#b#iJ4i0K%(UY3jQvrU-HB3b6O$y#Akf? z=@9I`=J8-$_(A_i+a!W+HS^o4B;c-SK2Uu*C>eF+NDxu-z|!_uPV9>%9jzK$1O8R{ z^qhW1)m8XZs%GvO3NgmAzd9?4;)Vw)I8f0Zz7N zdsNi0E<{^7diqyq>q57m^TIb#VrQv&4O$q;Qa&AjqbM?6FyKjv!!r)`sK|d0Gjw@C zF5{=gzv}${y=6#N-K|}_hm&ne@g7M?IYTmg;;?dSbJKclx$7&8mM{8mYXb#s(CE_u>1AYqh-#g9HvMD=Obg z-EP^O&5|}C;O(7&Y1KpJQR&s<5(Edfv;88k=jcjKo&)TNTL)EfYn;My)^Q7KRddYp zC?NtGZ7=lMcYhO0=fZQaP%}{IV&ZYpwRO>u<-yME16>CRDKOG||G+u<2eGGK7M2hb zTv#{ym|H7~bd1Mib0>Sg1O2S}1Z+IEG4#tmsjW#YF9T;RS1CN=#rq6Nt%i-;4TOsV zBKjTk;fwWV$guYzin%Z+J2j49i_?xxe?>pk2_?TXo@R@6C{Zx#ZM&eSa~}#td;h6n zFwge_MIvRP6Qe&yGlWHgW%7g$q>DTu>|R5ZiTc^R&SP8t8uLveMu2N8k{U%y;7bsS z@9}KXEkmIpye8WFzvVc$FaF+h?g*IBxzJwV?D`w<0p=0i5gF!4q>4!h2>5(W38E9N6ddN|S+R!gjG{&Ww%Yk|1rS z>6blK^nj4y`s@8zoq-(}Ee}WQJDYy*W|^e!H1p_dDWtO)MxX>I9Byt^4P1z&9HW7a z%D!yY`pY{)ns|EV(Z}t+c(aJ(=3^zTWxM!w{4TbFg&t&_%9SyFb65Kgx?^`n@%s7J z?-LXx>UhUYa2CRepHTg|2+T}5bC2Z(bFb22G0S62Ogdy~dWce|GaI<^RA7@VMS;aq zQ;neCq0ugRdon+*$+9S$%?Sj>Q!7)>5{gSCaYs`wn`lcKYq5EB%ow(w=GSxb4sk`T z5NzEcLZrD4L0P>%-*CEJ#NnMrG>zt{2-v46$_`pgS*(ps!YOB6z78kwmbpBw`IMHi zic6c*8U{J)(x&0m;5kQQ+(dVLKvbm(tnmfu9)x5dse7UXAaBCe}%(;n8$)ty} z3RMI%eX`a&aKicr_;GPs=7xP6gLS<>vSTx{A>o=zuX;zwfNd-TAY`KO4c07B>h5phN!vb zPUWs+X6s>>z(zaOZAjk4$$!tE8y}#Sz>{Olo8GPEO+<6159H0*N+-Qyxa+@^+*rtL z(G$tTlD%y@>utW}Nq%85XBxw4=W45IyKYTHiQPcqz!@+w+dbG+w7`izl%(XJKpzYE z>R8iJ5Hn#OX9TtYhgcy|0?r8wfqh9QaTc^QWJ z?Eg*d=|dtsI|s>)5Awz1y($Q&2iBX~7tqPJdS`R*Le1$a8EHyN`^(2iCAp}baDcOw ztB=U3vpR|cJTSy{9k@CErD-ZKHj+bFDCRuUpWghdpB_(OPP+7bF1yzt z8X80+)Y}pA0pZ;J4ChN;8R3ld{|BHf(Mmh2o&e31{YUoY_|Kgox?7NaIlK>~R$3g} za)SJz5O6#$$2Q$PJ~&Hr?5eq;IqzHo6f`+NN0RN73P z^1SMMAJ7R)YW~ldHZ-*VX8=`H{rHmTKhiVIVgu8#|8D`+|I=?(OCVjo<4hsB*Zwj4 zkz(d3k=j|ctQyDmwHfq7gh(8qcG*4l43Wwo3ZOI4>z~1&Rx-Ha)xtS4L0SRkj{kzAx0v_Bvbo0d|bWtb~-K} znv~`oHUpy!4Py&Ru*T)^VE2DpQ%*WeU~cb%KP$)nkl=LnW+G@Kb$j-cfD5EMjS6ZX zh-jL9D}FLlsjMc@FmaIBEr>q(`@_@T>L#$qwvyp>*|o_j#ifU}{80=MaTug)j*kIE z-1zWD40E=ul4mAU(3eu;qI^P8WYWPvk*-HhE^%VhNQc7+BQ_0}3++;4@XtVfbb>*3 z#Jz185K#~_$t)0!4v8=g6{0)qflm;1LrA(F&q|1YiAnZha%GDKe>XzYpQ8=W z8W%-)Wv@AauJ>;&KLpa{m;1T$!x>cok<4L^Y1DHxXj&k!)`GGiEZnOMC7hmkeMQju z?2_mf+$4*hh=c&=f8izIn!p)gv6;ORaMU{2HpQgF&yPcDu|VoC4IFv@}-Q|AtF6 zhWrf`BH!F_>_S{*?6IKC`7*v|<07s-g1cDjLZKv^>W{le7`WvqQKLJN;(e6j>^|!~ zyzJ)GS){Z+I3`kJAG=?u(LN?g0J7i=i9qaOdLgU5BW57vYNSHlNNTJGn%)>op6QCQ zXJ)}RB(4sji@%#hYBm^#EJ6Y?ev+oG11Pb$C|`ob4qrsJWoY0+;n_bl-{uJR%2-cG zj<172RNk=vEm1i8p0LX1H_k^5HHBEFfzVN@NH^RZbktFEgY_v`qMPW}N1bT55)nOVtdndmN*C%9f%=~37QCSt^?LHA(oh$76^85dmJg}Gg1 zE=X9oh#3ckrghmK&BT8hC$-O}avPZ$G6xH>BCvGoLwexsp(3j0aemCH8YcUNS}t%{ zo)uk40+QvDMG8{9d*uEXZk&pJ(R$0*^yJvy0awwUEfY0#HW;lSr>$77ucT`e&}=9* zywCmZI1BKR>KCT*04V>swSC_M^&o;%Yi8|N8087jUMV8`m|g&8jYc$=5M-oRjqrez zh^kRV5HFNl{ycqI!#ZDr@!9IVu)t6u^VsjTZu@rQ?7}QLUM*R>UjAV~vukp(fYKH> zVxn7Yq%sI6YVzXkSEmNl#fvVErSDIEPi}$r5skf9#-Fk4q=djp_9i~kaNBJU8PhAT zSk1JgYDSGJdadHz3>FWs=yok>6clyN*etk6gjitQKfuA+r4?_UZgqAuC#NZ@fS0xL zQp%WtI1BGL@ubl@1}ZxO#|Q(p^zSU6?1m1u~`HXwO>l&-f|UehDq7z8`VuNJz>@UOD^opVEtltBPmYnN!ykj<+%=!m0~(&W8y~v( z^aBOncIsp&r`YIE!#$9HfL_3WK4EoUYL1GUU6@{TpWTfAey-Hbao^T9st_W|ATk~U z;;6J4{H9j83e)%{My=qIw3lmHHXfQ`mZ7$&TvfK-ta{Q8^(WtV~h#Oba(L? z{=>S4rw!Lgx>}u^x{0jz<*baTly_@iimPcRyXv|s^|XMUoNVlruk&(e^;Hm`h${xc zv!*2b{vmJ%MwjjQSjZ?gRY2M{w>9&a#o+? zp=;jOHZGiizgBRC6y5E{w-Pu4$uQ!ft+Y+j4gL;2y|Mq5jlodkjP4b>WiB)%lPf6t zeG0)%>QS5Zy%HXPko-hj>*Q*m9kUW9gs!AaYB==a@#fZDhd!SqKm!-FuQNhWn1NYQ zNuHy0Uv1B0#WOFNglre!VXcNw1^ZGxMT?f*7oxR$XElnPtdT9iKg5YegGJvY8zv2R zW^enO@P1!ZeJu+5TBICbw`nD8G*DMdw}%IVu~h1HZ+8q(56?5m`Du_Iaw-YtT96HO zp9!u010MJteZptZ(Kb6%Lk7Hjd*&IPsQ12` zWYLjb?jBLBov-OKjU*y$A&xwVZz29&@ny9Aj|%Dt84KglB`LX1WA+kP!}}Z7M36>= z``BB6$^uX!QA#9>zDBhkBwbwpK4Vg2FE<-fwYUqkYOo7t(I`fJa}XX2R`q%G;qOq@ zia51i97kR)SKu35`$Abl$PLsiMW~xvw0YIZC7ym}cH1^P*86>$!lYdxuTbSQ$DEkG zq@-mNCg+ts6jmZrZ?!BuuR))~IDHz0V`_#|72Zj9u`V0vN?9j{s}&g5sAN0i{`GXs zns{PWy+S^5Qgb5Ro4c9}VR1`BF^EkptGw=M&u+Og`I96OiEo0S-gcoVoARu0x==|- zPi9oLk83vRe6w(cu!$>B0M%~JbfXPR6o!z^4#|UE4Rqc%|ImYNWe;F&ypi(mDGUC! z)FKtNO=}P8nTVp-FZQIWWVgV|UD|-q-ob)-Gxyw#81N?BFeqWpKb??FLG>Q1dvt}( zo&SQUg}5qr)|wi|4&U{Ik1c4@loL0t{0C5=J%&KnludK!kM_GIMdGELmDo|8$?zla z(S?LYZE9~v3@By)9#%=12=}32o-f%imYaei-;uqtB8^K0(msi))5_?^6h|i)Wa;G? zktb>`u&3Mez}JETKMi0h9!-X4rLRTA3tng8$q4}^T&g;U=YrVNr&lh;na&ZXhW1rM&A&Sj&UKE8QynA0QX4m!Deg_=E4xGvnd>R?#3t6@O-H z+4F|jDr?7b;bN-5?6we0j3lC3V18jEr9+h=z2R)?DG zi>l^`Se8{RaOD;yk~-Db95S*aD)EZI*qNfm1!uK~_%}6QDd}Cc8<2@0{Y>D)C=rd+ zsvCwbVR{E4f7tz&l7P*uCntqK{TGnCg=rPU;t%hUjjtU>O_mmh!YQlP>y)meE9!V+w>;#Ujk;qRg0q^=Tcy<`BNgDK(7!5-G_ zYgX1bGamNzwnV%`wC(%Rse$F7;Uezj6rK)|+_JuX-hKWGS9#?|bdjNKh!yiivuif3 z(?@QP6ph;sH1#9--o}c!C@XhPCHn9C+Jyt=2DOvAQ_ZcJe1#i{6={#8k~cv}a_Cs| zZyoC(Hn4ONd_=M;RelM^hiEdvbiIvwm!tyzi3Wf7{if*1HKeEvh?i|)w7|#MMklvv+01YTdN4CM=3JIY9_Ohrz?v;G69aE5X;vo{jTIBum1oCoj59*~RGixDH& zODQHAniLU45hq}Av4<`%BgNjb8>{Qf6HHE0bG=J17r*~_^ELg}Ok}o^K`Wtf-h(xr z|K`~K4`kM5o^+MMFhOv)YW&n3|0vN}$~}lyey^+jdRT3Yd#cuf1ft6j=M&{6GksP^ z0X;#8P{=u<+fvXUs;H(fs^i_?Jd@~fx46BeBb_C( zibfH=?nGWS--z8Dtx`FW=^~l#jEh*baDPe#?8B&DpFaN5!PAd#>vC0P&6}CoTu+rf z?1*NN%z1K zoOJTZCRwatBqmX`O$XVwUAeovD3wF48ltjN-f%@MYVVj-&kP-ngSvId;7xWe z7&wNR(t{+RUx;Ax^2FAJPbVo&LxSZ_gW@lcL+IKAs{pS_ua=s%Sv`V=4^jBH3;`(h zEGr#mu+B*r#hk|Re0kLv!MW`mqz2q$83-G&`Ko1>ajl5eBhS6M{Vu6IkN@mNWm z=biC~^oYuOgZG}Es<*DE?o2vDG-q$Pm%ir5`&4EnJE-tH^T>`k?V2;4MZxN&vZM%(t+MVutPdv}s<>hC1z!jX13m zmGX`@-1o!Zv*I$k!Cd1YaXMwDmRV5f+o%+oOhJm^rTX-cTP`ljbjAs@L^ZWCx96moJ8<+o z@|vNzg;d>WzvTlR%+H4Q2ym`$~rMNn>VL4L-j6tTEKqs%B9oq1a-fs!asq`}Nr4H8dg<=k2 zf}fOm#ET-xH%FKgnaL>=tmqS26b?)EbUx3pQ{JVVhD$iSofxAwBKj@f$>hEs3!}U< zO9nig$mCf6{rL|tbRC7B*vtJZbCP*6UJ|Kt##lu@Y{%6X-2B@j)q=mMBHiDdQ{xDC zz7tv`vOgFR`UCkJ8ph$=l4ap+(nGs+scU{Vf2QTcxt{nKFa|cV#HG+UsZbCUii-kZ z(A~dV$gBy|$*9rI>;M4&LKrDEHl@7yQio!7t(a8bgRnT&i$*vw3a%u z%`Q>AE)SeMIc&isp*3(x!ptt7n^@XHh3ZxIks7Fw&wd84@-k{(OVHM5<}%y9b+d<{ zR@+J%vnel<)wNB%-Qiu6SegwmKYg=-9RL(LTv_|woGdu=m81?!hJ}0I(A6XBcXep? zRx`flo?Dy6pbH0D`)D*IgD<#M0FsvM219~|OLgm&&6mss;+*hJVoZ4{P6FHLUUkh> zhXs`67I%Jbr#mcO6g%b9*`7x;!;ysjF*Lp8l0K*ZvxzZl^6ONasL3 z=q7+uK`)kCV3E;ODhcQW#r zf*mQsJO2TcSRVcXu$?`5FZ66`yI0Be`)EHuis^Y~X(UbVnCPlUmwiXP8d7>yDWqhy z3%C5p^&m`V{Y%b>rOHNHey>F1tMQ*2b`&(^jcv?Gh|+Awpw z_PZM5!EML7s1B*EMQD?9T2be%v691JOt$FfWP<9fDy{h}W1;A_2L&C2k4BJgR^95x zLGjL56)nPUU1KKegyUh2UDr*|@7LV~Wzc~MEp8nvv4zzlP} zRAmbVwE2DTXS#Sm*KtJ8R1F042(YbaUKb#ruUMPrWwrmQ!_?%jBjA(zJ5zg`0gEq% zL=Wc6TGnD8XuA~{b*y~I7+|MbR-NJpy3}bQ^HeT+_V4$K(NwBFi@51NqB55*xby8DdbBbq8rNSMH|M)e zypnS#Nlb!_I2IG^!!gwuCmR(ztbg$lNmL#d>&dW`z2+|^DiRD9$=67WkFjc1f~S=R z6QZ4bc)vL1>i%%4b2n7`Op!|L<^P?Y_?>B?O=e-rJXy*cF6=;{6>y|;$@pL*oY<2u zP4H9Z)WCU$y4R~^Fe;P=3JTPy@SHE9@i@!-!ePiolF%svJN86=(M>W3Q#Z_q)5CN6 zTa+I%0z>AW21mR+p>v;3^sg>`6cO^+-x1*himAEOJ?#=0i^o=zEFB{WY}S>LFH{dP6V48hB-enf5c5 zlknF503su9lWeq*1nQEx>5k)62|fCols|LV;OFxGZY^PGO{@bwhOQtYdld-&RI>G> zn@O)i8sw|b1`Il14*vP9j9Qqi+<|ZupD5a=;7lxCL1B3O9h~Y$?rkMqr6Q@X=2VAM z;o~l-GYzl#)Nb{3Y7sYWJ##giYOm8RI}t_Kv~kntJ~S=$A$swft_wJ|*s~&qF(cKz zaQnz$+bYx0L~zWAbBw^*=};3m46kYX^NXu)ZrA&hIJzXa*UaehYK~*)ylZSqTT`ph zVX3z>gy_4*Vo3c+*VUesFU!gNJknq+nHge zHtwkv59sqYSh4-4+LS4iNxhpM&+|nqp<;iLPX>?Wzir#A5Gi^P+=`yh(huLw#F+Bqk^~K>{!qlXMxQH{)wspMeQ_6S>bTrqI#&lwC&(BAdIg0f`h|WU#!#ReH#J7Y-jEhIncRPdqRn%Q{ zG8_pQ*_m`zYNqf(Gty{^(}?9E&n|N7B+R+zzUn)4xMSlahhXdG*@$L2Xy?a^!-^(b zCMVeuKUq0lIr>B!#Kr1dUG%6fm^^P7VltK{tg-x!nr-wOP4+Bs7+~&$rCZqk&`lBx z^GFZ03V+0FQH;x?@+NI|)GK4kopwx07Cm#`pdVwDmik~iLJcC@-*y0|Kvf6jbJ&gI zUELCZV6)f^&gn4MXXg^~cAE}1xIqF`UNm$ZXQHjof<7~COL)q&FFlY28tb8-^+H`s zPTPjKgaABxu90E!JON~c5a%^8@7zqfG0|8X{v2bqR zQY9NN*Ok&j#|+t!P6l@+R~0IlMEEZ@7d~9B6FiH5Fw=A^%=#t zoQTG{^>-_@*zX2h$o5M66)(Ox-|&DqYs|pf(i+?{sqQ6bYGE*jg~g>H)~Z}_BCe@* z==nF2BtZ-wHw{-XYyy_2zjyFA`?fM%5tNy1v(}#VXL%Ge17FT1R+(;OD!p-3HA&9< zS_Z%Q?At~zI17EEDRD?2WW*&WC57l@U}1w(vC*FJowQOzb{JTJrVtv@tTrrsVf&JG za!Js~@!bO#&%Cl)&Vdj};>jeruLzoabAx(X>{ik}EeEt#vFg9=d_q+BSR^c*5gAR? zjoN-q8#(_m+I~;`WE>*(4}iR&DWswm+)Zxs4aojDe z2>$NvmaKV6tCy}3S^luk)eUK) zikTsuZVd>3$=$o(`aQk#iYZi4gP*?|FZ|KwF%aoU?MHMVjX+)&UjucYgP9DCCc!;< zTI>W-F&dW_OWOIqiGj*`KfhqK2wS9YPA8Z`IB4Bdv^_%(XUBAinuIhQMLOP8geOMF zFlbSU|AU#OixEm=FVWq&kIZhHi$;zjT5;*4PSB$p%9#DDNWbzk*iX{Zx3}?qf2P2* zKl6j8Oak>^!(yEHb7Q(WR`;4o2mI{yf<^KYLsNHsb7JarAl$+&>?FrnO2-6z^>|VHLKk zbdCDC|90r(@**P4U401cbur>c!Rhut*VF5FaTyEyRuiZXEe+@Qg82x3<@By++TC#_ z@`Ki#;$T!rkoa8yTPO7429!%m+CBEc#jh`f=`5x#h;)^b1MV&yKZ^7n6oQvz6cEQZg7qmd`k{~Hp6xTz*$NY4U6_Xef1tAu>9|Z)+EFA^%3`q_k(IVC`O6= zk;cw{NzM8XK!0QsiM+>QD?AaAA%WxHlgs-#Ue!byBFWWt?6J7WF<#hJeTn<8koW&u zmHfXeP)^2K!RByr*+GGQk-+`GUjGNj6ZXOX@7po16p{(Y*4bWv5s||NRY~uaOLMC8 zOUHoM?m1q#uS_5)&tewXu=?l@$=~Q z_TW}RVQT8z8``em$t|r=rso*>D z-qE)GHt!!%)ZgDq-qNn)<%XHtp6tJGeY|WNjm?-JLc=e>8%1BmqqBK5p>Zu&>Izk^i^st{zcJA#9S(zVf7DOzM#AgqsVN8l6dkcEo z$oEjF~6kkk0H+#Ez}9ArLJ`jP7>0TGdha~im{o>J7N_4j;rwQ~Lk z3-WuE1e71bhaJV|O%LiHoda0_Kq^6L6tT)#N6NXQRU4O}`gbCTZmsV|GQNBm!_Cck z5)GtP%$|7k#cp>_TZkmcc+TAa2e9Ro7%c@1$*P1V;F@>of++Ry&7kWgnoQqA03g|@ zv8C7neSCh$CEt_sq4CN&)EuSvCso_=r*5c}t2VpUzmEuKGEl(@81@M0<=3vauA7)J z_QhA9v#FHnX_mUd5UOD>`xT8y0g6X}2kiki)6gn=TE@?P0VQV_l3i z*lO*hu(WcCf>EHo=SS8d?O(znjwh2%fqit9US(kC@6?i;9(VS>GzjLf*Mx&@gk;B@ z+ZxMHKfd~VO&9BqT<9F$8PT_*?nZt=EyflloxwowW%?>cs+Se>)?PwGQ3c{TixVwU z-tBRUBKvr*E54L~>|5z5V0JU;3zsoQ@sbsdBZ#RV5y?8D2#W*JytYk%;u zgHgalv{HUGWTuNmu!1bpnUqGs>rT&LPbt+Nn%HR4QXI3QvX|cHtMZJrBF^YFuK+#l zR?4HdI~~9stQ9b4jYi$X=lw>P0qeQXl&}y5;R`0qt;CoX_TgEoks^=*4mdbO(P6`~ zs2ArV>;Wgt+wbz=G8AVAQ+MOw(V9)=ZfQlS9SXmO2scHadT4Anr-BI!@HJEyKz>1>VbbBUXj04#HB-v#v zpQB*8En)b18l}6ZqH9aOWuDTi1xA2T%QhM*uii^t|bM<`R(C|{XcgF?R6 z{3mmYb`G5u>-FUqP8k;4_Pd(^muL6QIjEvE(U6EF`OnyXQm4y8r&1?!hMJS?j$W*j ztfbVqj<6WCOaW&Ki2zrutoOs!O~o8w-z}}dYI8$Zg;5>0|Hjx`1+~=&+`G7!;$GYd z?(XjH65N6n*Omr%2wL1-g1fsFcbB3q+G6EB`Mx<9=YP)4xyfWQv-f4@xA$7>c^I=U zW~R~K)oMtXnCve_0xJs@(K%4uPmlqlgRI^VcMLeP*!BZbK4x~oEwTit2c5#s*-et2 za2$LrHx!3(yTSY4kMpbYA33%{jnPGc5{}Qb*MfxhY`BVGS zurfiqY9~1G_;oNdGB|qI>0Vw&V{V29{R@X(>WoW1!)^MX(jHZZD$N4BUahHgpLJbT zo3D=EgbCGraj{5ekmXBU7!E*tt0v_KGNw6LVdOsY%6XK`= zW%Jk2D6<`ikS-_j3Ic{(M4cTcS1de)5U1-d|3%%!^Ksyqu3*lWp;1@X*$e(&=3T~H z8>FQnfL=qQOgDK+%rXxF?P#!1h%pM$%v6$}Oiq6rijfyhE-YKPD|0|kNRSyN+D~;) z+0_hkKVceQSYl8`+ftpSHQ+?Fn=PnG58~Hc#JHwHVynTZ*H=Ry5VLTyok;lX9FkqD zmCa!>)fg zM1>*pSm&o7(;>{B`m++rE@O+e3(qym2yOattdlMqO)bwpp*}HryxE7HKKjyP(aS#5 z+Ryhb!iA8yrF`;t~!litcGkjl+6_l7lDvICPHhgE`_R%tV6a8|BI46%K~8Y6YHV~LQDfJ z_#q&vazS0BnU0@VO0rylx%41Tm2&;k&bs`2LwTsWhOC&aF2VF#T@90|Tr10(8+l;# zq#}IQ@2WXB11Ed1<)3CL%W<1-HV?n&bZhh(0b#EJVPLOkY>VwBgSmL`O@VIlGk3e9 zyHR(Evdcmsv@H*7|9NnByQ+f|y5lU)tKT(ZZ>{e#llnD5#*XaJQ+ozBoc@ud7IrhK z;|(Z5TDU8xX5xZx>t6aS+Qwgo2oncEd0?V+QZS@s?Fu+fywfktU95sQoJ!QF+)R-F zhmd3l{U=#tqt*9w3mv9>Iz-5Sa2VABIy23BDnc9#XAUJQ`}h!mo@$U=;_e~v&!qvL zH$SXM6Rm!3Zmjb;!>(oK!?{+BN`$nA`9M~kbPZP2%ebu4^_DB_m{)p(2QO!rNZ7S&P3|TEax>hwIya3y|;>mDiznSWIcAR#~0$Z^`>WnvxjV zcBD$y?o_2stCTR{y%ZBv;7>d6bps6Hs8b;H6LPQ01E&VH7Cy9UbN3tV?VF;!>r`q{bExDwYsugHh`Od^14(czhku*k$dg&)(_-P_#o z03A3A7SHJLUAYk8(q#O!FPm#7cTSC$s>^!}K--z(%k^RPT$Y|V-V~G*(0vs1;b6tj zQffe=<%}Ec|13$~^?3^;pza^rBR7Y>zA;laLyH4n9>|_5i~|w&}5BGA5f=Q_>c-83zXc$nmZ@= z*n1q!5Z|?+J@`tGdj1R(BBD_QwD=AumQ`!aaQwc{m>Evx@1T^L#%lmi@kyQ%}Nx@_b5RAV7pAE|c2@RN-r3jmXK&H71s0 z{Nf6r-lx6p$A%;|J?ut(*FB*Bkzq!dL-3;#Ga98*gCsgr3q83 zD(Dx!+;5()QQ6|Z@;L0$aWMNRyU?R2m^L`HQjUGY77!t-Ip_jYbj}>eTVkvdi_EG& znvLZx*ob}`F@5VWVIr_Sax8C4?q&T}k~DdQw3|R;N}`bGx6eJWYFig`36@*Zr&NZR zl#gPwFV^mxlFGwsaB_AO@oCzf_$AB?7y$DoVk1q4MDEIen*Ll zBa85!qJLHXq1AM~pIU3wYu`t*`L@WUt}$BPKf++g5XWAEV9Xxh(?yPgDrHnJ3ic%5 zD;N>^d|*yqXpfAqj-9cH8GAXShBR1th_FSCi_^y+T)EA*4?D2@*wo8J${ERU@xK_( zWy7$|Tx{wTsAbnJ&3YOaqSNy>;1tRrwxp}I)sY^lxD(CMH=9a2{QS_$uD{&O7UNaE zsvMFxd#fF5L9ANqNRrl7DGIDXS5Qc*2#dZbX+ns!*3QJqh0t$#$e;@ujrmc1bf1gN zn5nDO7i^`%8`(c8{m@IH#@u5)2}LC@xY^>_aaR{EPhaBQblfuD_@ak$!Vc#Yt;I4- zGFSRVrK*90HtvI&Lih7;@~5?z-P#S5iXTL_QwPT@nwlSG)oHq%K@5Wvi#CWFgEVUB z3r)2KCBB=EwI+wDwisRi!8tc0ew_tuk_}^q7puocB%(bs$BOFCcT##u)cF8JyNH;i zX}Cub14q9dGV<%_K$!PZxI`;{pBE7;6Y1xWE^|pvU%SoJAmsjLtXI*AyeFVr3nbkx zkoe9b*@>y^Nx9YGitfO!Au#8lt|{0rY;JD(uOB%an2ny9npH$ zzFN6QZ9ajU5ODpp5xkv|S~0QQ30>y?nU`*iB61Y|OiDs{3FV%y%IhGEYAvlat88a7 z?MBbQTLEzUEaTvn!JNB?JtqA8^cKP*jq7Fp7{afrULrwTrT6#7NVv=EOT-&(WSG?YZJ=?(Zx(QDcLjt=)^TW(Y zcbtwe)gw?h`v!CBhltMS@8l5=xyPwKqv^y14fP~z_rPn0s~PEchp$z)v5)^&|}k%l_YtMI#71NfGm z26mrMP~{n2o)>cynX+lP-(zk|_4Rys+2?=T&AGcJ*kfqZw-qs?sVlOdx$rXdtHIWA zoN^l3I=$p2LdN?3ZfhgY2CZ2cy49WN3mYk&5h4zP)^_Vm5NuPh%1|R!uDL#wFg83> z#lmtUE9~`RNhRD2_C)bi^>A<&>meM`TaSn_->4KTOP}oN)|2>M9J-L9+||r+QPV+e z{R(>S_lTYn;lQXU`rA`|I?;D1jb?WnK{XZx|{8rfE5&%=))dE`Z#M=b)2-mW0Uva?B@ z^2J_k0_!!oX?;S-Eb9z5KZ_{IQ)jOj0MCj~x=G{OGpke^ zYkX;qBfvkiPgN0eJU*95nu5)?yJQcL%2xJUD!&^qis0$+M?hnM$_3~Onso}wt4>k- zUWw|zDrirf$I`z;Fw9*l`SH0yKpoZM@C^$ElN$={k@HI;yo=2uTc7QQ)Zy&Qvihok z`uf;d!PZtA*6F(v=jo_EAr;p6e-_&Ag#mVxE7PRj64iMEkQz2&cHX5f7G<4EMn59w zH4iSE0n}QTlOe4U1Xm~p^!{XZC$I(^FZJQ@>Hys*+)AUUrJ1(r-~heu+J>9JLt{)7 zu|OSLBh8)dDuFSIwD*s#(_K!xEx^IrD#PYJpgsn-WNc7qN3%gku~@eN`WL+`u>jMo zTII7odkkqLUSa!WNI+d6ka0h?*CvIY(cLI8ZSpwb#iX*VtgR-X?!-%9WfzAo8_~O; zse|>-GG#K6Fh2^9Uxb@HK&L)dJDv0k&f2FqPpoEF#KBs4!ax}lbvlHJ(j#dKFZkf* z^N;0Stqhw??6xr+b0|p73Ep_Ry6uPfZdlsQor;P(lv>~G(>1|_GU`k8eH~FMP2X#9 zWx{VvZQEF~>HFq+0AIV(9EiaVkdsO|MQBXdv7>yRW@0?s`zk;`QW>1XCTzCq2B7C{TO}1=7h=-oPUY5@nblB zY`94|>oYvYiBPg?2{ zQnUIlW9nLncs-){zV=G@+UeF>oZLI{YuY|-w?k6j&a8|(_i)n7%Pxm(kNUg*x7emh zs(-}5?F#0xRHT--6N3>ZbYA1n5pJwn&Q9STK$U7+O%^62x6ay%cr@PJZn!h1yKpzX zbf%(3jZ{{qsImYxbtqO9xBfR(+>xw7d_{#`Zlts+Uj26t z;l*HB9agU595=wnTyy$JJv;XRY zzp0?c@UGx&Z*C7q^!$Y|dLVqz)oG2}&7w=3p>G#t27GC^rMlv%9}v6O-KhIG3ndnLtXxq59ktXmU_Gd=x*cWTKx}> z@s5AeAb>p{;xgg>Tav{egB+kbi$7c~u!W)cy=)1LNRVy1u3S83Q&bsK9z zpytvj({7Kb)%JnUeBY#(OBHw*umjOLW+%wEepH;xhdBF5%{iUR;|rxnB^s0o3H*$T zO~w7PxQ`YM&l$~tRLS-+)B(SXQb2oV*BhPGE_&!!wmoT9eyFj3`v%3?EGfg-oNf@7 z*^LGp4#|(#PrGkL^5tVtD@V2H>BahO++RO5 z4K2hqOJD5&)_K-S5VgxMNKky_`9%Q$(5{R>cNhBoTvJgsk7i;~#{sXu6w2zA#2T6M zjU&b_??W_KV(6G3LDS_ow6Wpe!1$^=xENx4<4|!)#@e3@Z8I@g+|EY1rO z%zS?Xdv}-9XGvCkrLT*hVrQ_A{JL*H+!`_o1t=%I33*{(khJLMl;?l4f^cPTK=?aJ zXur^~3Z)USuq}@qO6=}HAjIrIox-y$YmZT>){)E_BZSHMg7e7t`e>bud43NlzRcM2 zXg{8{KFdmm3Z7wmSj`EoA)|&T?!2ldcD3^25!_Jn% zqD>jl9)>dPM@8deFcPtr(O?+ z(tV1%;LUNqj&;{P|GI>d`m=?*J$ZlH&Bf44iPoZIN&I8 zh|v@fNMtAl+sFIXLB-^$->{ga=z(Z9h!AeoS6Pxn@_xlQEH%kKqT!pV z^|7$rErv)tY;5PHasWfN_Yrbb?Hg!o>FQf^nn>z}OVTDT9Ofx}UoLl~?TK$1y4#)$ zqWO6AKJIwI;y+H3$Rb9k1R5+YJg@24D7e&g*&$?-4x!TA=4=}Ewv8RlSw%3?F?wHM zkcmH7IZ*oxlaY4BA)W#H<{{`I_Y;$1L}!rG)z-t1$N0C6&kS1P)AeY!8=V+pPAM`I z2jxZzon-glUDs$fTtf+NhK-e$1ZFkm8BA1%@Yb-<4d^&OaF4!xSDu>f+pYHNzmb&9 zx6twRvSW{~@4)IssYK+LW9dDQhlLo?yfS!qI?C0Uu>b@(>Q$8e6*QYFv?;M|FmqfY zA`+)$JK#ELSd`fU5$Ac(bMzE!!82b@`F389GO~`sBttAej`les`#nVTuNIKRj2-9g z>|)ec$UnqmYTdLwG^jlUzoyR6VX$_22jZ1Rpc?wm#>%ykD@tKLsV`e$E9k!6{U-)Cq=ca!<*FjmY(;P3VA4hG7~&+fdN-dpeh80HQ@Ly~?mh0c$5*ZwX< zvLQj)DZb5vvtkBqI6wui{76S&>(=en`9(zf~OiwyH^&t(tL z|8fIuYfq*G&UK1h?96m;$z8E8p9O|sr>>ijl8NYjZ4d74yKo{rQ{))*3=|Fd{_lYo zZj2n+!S6^j9NUxF!97|#jo36=8p#^XJ>vU|gs?6N-2Xt#Edkv}vWQr8x$=InP6D93 z;{;0FyKIlP26tPVaM|s3yR)QLNFv)_{~duOmS{Zgcg1?yea4qeNJ9#ohw6z{c&&bOl-ff=&m9bYK0R%g-vu|M2M*W2>*!hC~Lpm*h{d z=-=1#dTKBt2@1k}_uU?LecvY8S6|nJ44+UwnBbfnDlnAqOwNh(Hyl%!L;)co87vPY z%loVk(Gno9IkZW@fL)l-K^PC%rC7XQ)Gti0i{%cTKf8_ums)959ChcVtL!^3|5x1u=SfBR3eB zsR)Cl=V2*Kz?^R94t@?vV3A5$uEG>Ow0Iiwq24yyTPh-B#WdM+^oTLK7Xu8zVDF(% zux1^WpD`t$*lq!lY={7X|MZcJVCQVxt-#-4(aOyjP+ZL%+p40YJQ|5n(Bv?@e{=18 zM5?v}0d)pI^l;woY`D8TjSV($xl`p}JcynVg{hWI7wo>*l~KF;@l~Qchj%~7292$6 zrDr>IO)OmG*znQf#0fF%66b|dMa6gX-kT7+x)=qWkMT4IQcN+Aw-H*^i~pL-B;)na zl{3-?NUxluAQ?q$T&TC(HC_I3D?gj3CIH0TVqvnL(pbNSg+bH#@V(->H*j|Mye-1w zcy3AH)iC3uaOH${E45a`=BAJOx0EEY8?UiQ;cf~yI(=^jy^UkFs6R9YKFeo)&Wr!b z2v_C@#wD&t4;X1~e<$aiuIBX5rS=$s%f~^Z;Ubo;<+ArRU9+Q2cYo<_BF)vx;@V^j zHdcVP>&n46=smb0GzyZwzJG&0m*wV1DMcWrH`^j4Fo0plXcNJg;A1{rrMrCTXcVO_OT}O@%dsCxIh{K?mCr00hwKT9uhTWIJULzjh zmLu^->YBb+i%Mmeo5y2b;TpjnX<^JYH4hw~{M&Zc%n^%>l|6URwE-uHZ5VB&GRtSp zcaJ5sgd99b0+2DdW^k9oPxt(p6Lz9qkh~*p$8@D-oZqiy&zM< z-o{$Onkr))oR@KSqe~v>RY+FO;~>v8m+^P5ZI>%JY0b^F^C;Q|2jA2tcj8!Au4Vg( zTa<+e{X?yzzHkTCdO}MC23>(X6FtQTSTzF|aZ#^ye-mbN$$&axnq}nLjfwr@+wV-B z&=&t0X&%zx#-ASRrbs<~N(?8TSa;IK!rp`YFY{_qtZ3yt$i^+m$!wR2rRiq)Ltyr) zqAWJyJ<{>p8T3u$HdBFeUACQh{Z==-Z~>=qWeasM^1!7(pz8yI{awbERvh1;FuOt_0HP5Sm11yU&b_$_ifl1>HJ-%jPx z)Z`0<;L|bo$7%@4$FpY*f6!P|=%tN{1aq_? z5SwFv=X|Sqd@g5%drS-{^Vc@ecTBV-Q*mnKEvHCRGc#L0wSq&pt;p5 zv~=s(EjMjh^4v2qYVPKdodd?N8&=fwa&5~!yo#z9Y1)S1yPY}qE{oax2Y2@1I`Y+v z3cae5rX5R#DMrDtAJlZJY!h_$3@XF#&EN8koZp_W2;Czc%i1D|HZXNx#0dl3&22J! zhc@*e5)Xuh)~WFC-P%Xs%sg90gm;21m<__<_#)!D_G>ISQINQXx&6>>qv7qZtW#FZ zdpmzFbfKcxza!YeaV5cbZpi;I!-05I2aHhNYYf$JTmt?Ys{n8mt}l7x{rf}$MS@B+ zi;y!0v~cR~dlcJCHss0V5e0X$28ZE^;DX<*5WlLL3HOJ%#9JB}M#0@?*Y2~40yoAm zLJ8+bVLSkRi|y`EMV&RKv)?g;vAam=Gr6=x&696{girHlNBWk16Ry7_kl}zIlD`Dq zm1{H0Bs9V`Aep&M_-{OEQ=LqZ|I;!&7BR41t+e=sGp(i8Cr zI{>ln^2QyTJfxo@{23B8P@2t8*xA7_#^}rGmj_JnknGqDE7!F;EeyKj1qe6-(kV+9 ztrAvRrI}ufDC#PxO1-q0O$e|*jBv6`waQoO6O6%4{EH9qwrS?*dtJ~^XEWj~XV7P! zF7nM>td2?#AF?1Du{#J`HMk3R-7dK+b4y8+C-u3{9G8MPU=Qgl%&|RQ#R#hO!VDHWO3N2)l;<2#lhtGNLUS%z|nC?ullS> zNMd~@ijK~lpfAM%O7Q&i5dC~fjX4&-5GwqG`M?0{9_tx3;0K=4G(BXf`YKoA$(jJQ z`^&bJBh3*JcC~Ycig2>3t@CMh`!IGaSjiqeMeI1i?z<9yYwJM*kC(S)wd+PYqy1Fn z0nW&G`D%>w%u|-+=9VF~(7Yz{wj?J@r`eJm@~V_ zOnQ!!BOn(HeB*^ePJ3J-)N<{lm4!@mhM#2RDP=>-WD0y<8}`@4=?UCUlatFAK7a5+ zdc|K^BC;&4omu|6k9+9k#XCuRvARPm*;PQva^w#Q0;YhfH`&;#3urfjHF4lUCabTl zzZx*N%Q91o3HD{r8fvPw<-WI}k)brJNU$xHUV$NxVj@(bK|#NN{xf=!`^{&#pp}$^ zRh}20RHtDl&Phl?UT)<0O(*=8D_{o;Mt8kk(MabVa9V;WUw9VdY{PQ{>MY-qhV2NV zD{Wi~lFT<=6#SGZu)4t8ACip}S`R6IV=e&fh6bYPaN13idE2&v{g!ZuZ0UeaXy5+* zc>mOCjJ;`%KZu604ks9V>Gzb75zL$)R0SU$jvtQ}@o!t`*RQ?Xc@X^wi9R#3%#F$y zx45}p3ULSXjHkJXLrP{?9&ZeZ8%=AdwW^*3F3l2m#qsugXR_NEXU7+{nt8No$80~_TnF!lf5 zuw#+L#Hg)t!%Nqc(ChgVJ#HUR)iZ*PoDukNfm_RjbnLQFt9a&Os!5$rnSS9~R{Yu0 z5t9VyZ{gpN9SNgswNq`}Onu6cCFC*&qHjHX6Dsb~&QVTggT0V36>vSjD52LHHD-XL z0v;ZIIEFu7j$>iBg|I9T>BD2)qvABc2h-i%|D%0mw-iIKiM6j`8NIeSEIw$Alouj4$^Vm+cIO?vnpMT%qU|93f=)wDSp&Gss%vd{uXnBpYf|R2? zQl-$CcEw62EL;v9HN9)gJ^qK3PO&)uGRmz2ie$h$!c-6}$spsugb1)2;}Nor{>xSI z5k3Ql7^1A7mT&q&_)cT9p7@Q^9M8iFAk1M_RPNHq*B18)ho1|`@s%0GGDmdJ9n)L9 z_8CaOS`nyF0ihj;{G8yx%l&yq{S);G9dQe#IvRzksXTJ}zT6_R!WrIJp~u+V1kv|a zFG&cSxPD4({gkDxd~TqQj&+6wnj0+J$CVjLZXmc8Txld~j z%+fxC(EGc06jetwm!biE236RYzV)Kb=31(>2@|6-HP=h_u#FrE&c*0sEU) z_pdH~Pl=ntl(9KwA8et{HWwtwUSLuQCtWTk^jI_ue)&V3eQ+9I0-@rDjbg(cG!@rb z#(X``8-W-nRfe|M>OVLbyRJy@Y^fAr$H1KG-!+3bbu?W1)&)JAua0pl3zsB-ORKY(Kp6W|?MyW6za<92F{7Nlge2Z4 z__J+_J~u{Mh6f>94M5XjOhZKa4N98jxhv{;4A5p~M1qeAN2^B?^a-(;-KCMC(Q&1v zrc~06r36NzHPetwjF0U+=)|O%n*Eltcf0+AX5vi#5a5o*eFwUk6o#Z%SQ>2`Cl3#f zm>1vjoW_dU`faqOyv@WaYnIddJKRkor&>*ew6}R_Se6LC&FQ>ao zatx!@pXrlFtm$Q#d#FB{@?MwPpPdC<{S2*x8d>ooOHx~-ODUrB!ZuCQWL7~)c zj`ceIQ_Zd!Pa*J&Mf%{?3j-moV_Bnmo8VaS96#o^XOMf6$a#maM@VMH*>{WIY2m_6 z3uQw1=^U+Nrrw!N2}0KdM=`#-oOz`w-zFhv)v1e{yaph{)!ORlPPdi{##Q5@A1z7~ zwKh4M6gZ@D;nHgJSMR18zG+S(OptW?|KJ3w(~e=?(lU4TrH4}Q__HwxM=Ux+?>n?7 zlckeMq4F>os)4BkIX>20N%t}ui-u|uioO%!eW27VWo6a$m zbST-nyNg*9uQ9t_wNc?`x)fC+C!K1gR>rh-yO9w*Kj!RDgsggyJPwK`jW}YyZ|p*S za2&e5K=^dhsa(<(hVN8V86-U|_WKt`Ms{OrL=83PAF2ZMB-%lwkNN`|wX7kd&xbY* zFS`fA{7f1}vh0>Cm$ca$4ReE!ny_bt_w>)3GA-}1HL};GlZIjh-G~CSLZM4R>V?&kvPWUfwawFNRE0kSWKNjBKp~(N=}=x^sZ~WgKVLTsZyxJxW{5tI`6T{DB|%vEr>vZ2@mAG!0xJl(oYQ%yg0&;G{5?c^ z+Tr6ARYUqCAE*1>=8!rg>=oET@?RmfsPe%mCbiX}bOW9cZi`JH650k*Mj7AWRNENJ zQmr!f9v~<y1r+r7tEc9-rHQ<+P0ZEd; zSGhv(@oOz9c!Eq9yR^qKR`Aak=?dqTjF@yG5edEj;7~R`#1AdO4$Qf%Gb^#gl}sq8 zoWP9RCBe3HiNr)pP!40%qtSK~t)+a$M}Ni8)av6}0?pJ`otv)>=Nq;IXN5iyX81?N zC}DqM3y6`)P)O+uSOh1$s;xtC^F-=c49n^aDHfO739km(3|vz)nl6UFdhZx5*#urW z3|DLvD?v`4xmvSOxq2F>8nCN$OEM`Z=&w0btM$^CV1ooq4Y~SS?`jA7`t;7hj7t3? zJIt?%lf?MktB8U2En(XK!4*3C!1xh~DU(&}ePoKVYUHPx3wM{ba6<@Pn(ZE#*em+d zzgrEm#Xir9nA3iJv|}8lHe&lHRJe>%=ko3609^so{2MJrw2Kec6x3cX0RudSyxEA; z{w#+?bx|HJYgi5-9MfX#jAJ2~RFC!g| zifz1Vssw^-I^|QWepZk8W-K-n%_XAqGq&~6Io}12>$7sDmAWtJvo0ou_q2Nt)!6;Q zdwh9%=2L$B%qz~H^QkWosTc#{W{@+{*c7*Vix2yJ{k1@Ufv$z zvE3{KMrcl6)vI3^o9cFosK;N<$j>t{kd3f3<hl~I=uI~etf z90#hxnVDine*DyMa6XD!4yLHRoxwB{~VmNoN1?MXUW1^i_5v4r|+3AokUpL|%` ze=eLd@T-64QJ>0Ss6+3Jc!G>^vWvt3&KIotk-nc**o6LIz=&^mcogx?DL#okO+N8m zvxhQ}R^1fqRxK#o@aP)#b{y6TYjbFraN|fa-?^)tRbVXLElx5+hIq;K-3H>|1S&BF zKtrvG(Y8ar>dFCysP0ek7FoY28b0N+Z?_v|Xscr4xC67yRGCNi-}Ori2yrDh6tAl1 zXk&R$7`REpc@P0JHhM(j9gO#@F#W|4L`FW#e!0qIKv{|;a-12 z>UKgNRHSOhQkP|&3_Svf3EtKdF`?SlV4>bMD(|(I?8(ZjMgG8UucPX7BUKb$!efvZ zm(wc@-ZIi_N8O!3We(sNu;}MIOZdH$<~@84ecn$u>y=da^&Cc5UnFDSEs-D zi0UN$6O7Mw#aS`l&c^(pP^gVIV(S*US4!DW-uL3x61<@9(P1R(r!+9Dnk9NL&FXm^ z#jjHJX@SJJ5HLteB_zW~)|+4YZ^zh9i7&R-U@?H2UY-O}!kK0Ajb^+}5=8Z>r3Doa zSqck@(BSBi`IyybX8F8-jb4-_@ z5_9yGXPN8jjL3*rLMx37w~{J4O>f=;;leEbO8<_`&zXrB(n(WIv~(#8r?11zpSX6K z`|GnRb!=i&$Ba=TxI>);J!VH<)y&?-Th`^Obt3F)5PXn!UId#suWz4D)V_YTq0-T& z8DNthP+ShaBmFDe#WT`8wqPK!l~ifzFKDSoiALiGK+2Nf5U&$@NGnxag~oMhq{dy>%M(`@H#nPvi5=uYw9?+A^kbVdFs= z!;!l34+%Or5bFWJbZTzWT3F_j_GD^`JVxI3037M+%u2oXRbpF5F2wq9pQb;#J^$%# z?LRn`t$B1t2}0h7PRlfmaVFbKOyODLE3DAhuAWioxk zv?|7fEBe+VEcxcEjw4r6i&@>`8>4*&T7~AilWnWGA(WvAP?X3%0*x%0kpzMQOE8Gh zo45*-sUy$i$@{mV+f@(+?g6fNIGo=czq_a+zB|$c;xvjso4UIvCGe$K*q}G;)ds^T z-nMK5|1KLZri*ufy?_$7+Q0^W;}XAzchpqjgB`~N!vaOS>i&!uXDx`7g%Lfv4dIg= z;>vQ3|GNabhsD`!seKDNm%Xi6-|CtUJipszZ<^+$+$4*b9tkO!u@IQ*TxZ`OQfrk1`WwNA;U9d!~d;vCeYj>=-Cu= zi(~`Mm>h^LF#A4_Q!d5x$Mb(;JBJf0cXP;)z!1?8ZjxqFy2Ovj11TaSawJ^LbIgOA zKflW-M!1g@=h~+Gb{oiAHYxPPrmxEYWk%<%NzeR>mEg3k`)g2f8w z;9yX*T^@nqBItUAI=+&nb^_x!@y5-ckma$bu8<$El`}Y~xvue&B>sOCHk}BQBi3ab znj22kGaD2p#wDXP6Z)oXabQDf3HRpFP6xS*e+{<7yDeMcfzH)t^y=5y`DMu|GrYfl@9XxD5_03p zS>$mv!vD#bgSzc{^~MIG1)|Pf2|$UV@7-anWH|1!c13JFd9$=g7 z(trRkBL-5F%;TBw<8}M^f%~Q#PW^B_-y*YVdY@xYkmC#vOgb^N84Ue|^GBw@DcScQ zd6>7QUl$m+ehV3Aqq(7Z?8PM-hR-J>`+|s7|GW_^zIC*vE}#IT#5XsW^nr29!?UAt z!0cd~Om(i}`2WG}<0Qcx-zus9>&AYQi-rxd|L=*may)W>X!8F+)JwSj=kx!8QZE_h zsOq`2CXapukZW+NS=@Xe-FjCXh~q(D=HBfy=6@!yuC5fcVN4*<4v4?0o{ z_XZH2`MlAre54#A<^J%V*Z|srk=aQ`;3L{y_l~xH6@{{%(fGv0vX9(9T*Ewzb`hJx+z&Wra;LQWODiF4{hIGpD_${Kf&tS_^)}X&~7q zmc^LD?Y8O|qVUiAbo;!D;oR*Lx%_)S~rS?#;ur|7{g_sjXOST?0~<6Rkw%ERWSiH zxIf}Qxa9!X$kl&&;tTB}(&ZGuu_I=_;Y6H<=p*bAF8eT}Eo*PzP=ZDB;HRORVDE8B zdy6NRFC`?gI}5Mx7s{+GnXfWfYdd-8>OWe}AI#rwFUOJ{70101IRDlqc>}3H+_=N> zHe=lmzhx!Ct`YnS+==T;XYwQp6VH7x;Xwj1rK{@J>)6DI3}I73cQM<-(YUCX@35~m z4(vEpLhfhr2Ku{1eh_&O9O{_>6M&EmO=v}6*kg51*th~+0f{hM0}xF?f==32=Zu1Rep_^`KG&n<7GE_9&2=#l%} zcNvm!ghs=L5Vr0fyR990g3WmaN9BZScs0eo`>(cuW}gf{-2huO?H(L7?H5DP)b4!P ze5f`fF=wKXRpKB9F=i5QCv-Pfqg8cqs<$TB?msxFb439YRL+ewu51G|C@W0y5a4oK zwKRP;u{^edVUAZGB?l-$D8m2eN|&}324C_~$xdD(7oqk^vJ5q3hz_M~1cl5nU8YQ! zHYRZBF%kro4C&>*C~K{L$*!rY3iRHuMT2{U??e7*gXdpNKF2<)tW0@tdA&dP z8gRcFo0}ylv&3zB2n7cXR6P}TU3b@~1x1K54kHqv%4%nji`FrlPbEGZs%q+%D-7nT zs$NK5fOrpatkJ{?@?}JF9ZwT7ar*nD%hz)Q=N$aF+AhL-`aFqg_O4I&R5j4nSOw$J z-=Y&|6Cl_VIQI8o(2g<rSye0QTgBj`_Qz_G+K6Tgu=EX;EO)U$1)h#SIVH;?j3Uo}x4iWh7A|}%O>`M_o#j}nX(pi}+ za;0$T%n=dShFW)iijhv^RW0^Ih6h*+pL$F4iE;9lAd_MxoV{4*@tD1|Z=9~2u+u}A z82D(3b1k?{dafI=QSgqHNvK_b%D!kJ(ubiyP>wvXwiX>Dx;W7cD#4(Ry8)4AJx zRR0<)QmbF`)6ZHi#8L#B0IqVW#$?4CG8P!z6nWbAEN!!{*dih_^Y@~EPo%w^3(Wq5 zvjxDb8Q-3+xiz7!@LnUk%K1fbVf_9>l69yI-%H^s>-m+_IP5>T{EMBfeq6NVAsTdh zIogjTgQ)WxP*neUQBbil+Z2*ow3Wx`Lp*W!_>r8x=CBwL!3)8G?Bq(5cdLukeZ!S` zZin-wh`kng%GrIdf6MZIb=>7D0jvMSzvbV+^YFx?TnFNRv*&LSh~PH* zwr6pPP0-a~=)Zlo4=*=@smxK_{1ck2TEr@)ggb z<|C+&H!@^?vh}QVQjfsttA>fEnHG76(ZzWh5RONhbX3;F^$Ew zRUu0Vg|9vFVqEw?IHmLe!S9T-3HYR;%I+Xh+fQxMCT()3`Q6uX9p{+_ zC$XW#ug~FSs6~rxeP*0S1(p4Uf?&t&TYQ0p1%IweJbK{*O1*^I;9fpiSzTUbmQ1s*dVRmP&Mx(E`Jfk%2IYj_Q7+VW!HQ=24TYba04K7BixzZ*SU1 z{lvK~C_?ZNg-58!yn#TjcHKqqCl69(ShbE~PO6%ZSG8=07Cpwu0id|alArQ03Yj|i zgL+?7u@-E(gAJG8Wf~br1Nw`Ms&$fyy8ir}r_-EG_N7GX@Das{is{?8LY#Zx$UV90 zN(SnNRa3bZGTyzZTpZ-wG*NHtlvEAsxn=-X$*I9Z%j;lU2nRq6ht>}4r;wfF;Bmy(zpTaHSxpo{7(CyLED0taA@4o+Sm0ya!y@SWSm4e-uosadH(Je`pL zFu2)D)iuCRN|n!Sm}KJ*!Lw0)-MekaR~|lcv+rJWQ<1H=9VFJrKg1v1YM zgNDBC$h+4{vRMf9m(~j!{X1oI0e?rZNHQ6qhgI#h7ugM{l<( zKJ?{pZM9QES)0T7wu~jeE6B2U;4i`z zjHota%uejP!!?WG?*3Iv%x$9AmwXi-_oId zfxD6lm+m?y>`jT=&iV)+FJ1y4wT-O*KZsKLWW4~-Vjm_UsoFFYYhE#EESy+~6&&MO zWkb?6qUb%WokPoQ8GDs~ujGXdbhVLWRQGg=d+oq%J%6r(s+si{KP8^g0 z%0P)na6^&iOUN9>VdPzq-6pDT1Nsp;{~&a*j7@VM>~Z&H5t2fi8a3q*($7U%Z4t&0 z2Qb?3nHrbIhq*UR>NE*r_Vi5ESVc%mh0_aK$E@Ai)+ABqzr4a#J|8MAHET^ny4s?L z#Eb=mR&k5IGVi0%N&O<$Wpf)_m zP_~`Zuhd1qMbcK8V@B*K?j2Zy;Ma;)wj}+N#v7~QEb7!7)rflV3v{dqQ-s*NdIZV5 zsJ2kY>>GU1N`dQQrY}+nIJFuvrHop@d}x^}gu2tv#wvIDzZn$3^_}7AgYH@_g}V7d z>oG$FOM?T~G#c@sH<1*pZawQgwICMMvyS8y>Xc&K)SGU8_~j+$(DAGIESmXc8{l2? zqRR>`tQ&p!@aMD!!%2l7+nT2O3B$-K`%doU;t*BSWYXWoEX^xKSdh#67Wt_8B*&M; z4`wqrduo%g)-UlD2GKcG`t4eYV~0K(beuE&NOH9ZGBQf|4DWpuP>(~yFR>&zs()pG zg_u(F>?aJ;UwZ=#)8Q0MSIpJqCoh6wppyV&XX#`2XstE2QXm4$8twIUafhNZS@{Lz z7F8p|oA=TDmgUlW`&u|8Xcn0@Ws19GO3(;b3ub;rC`|q9c&&P6t|5TozL37UESNEc zH={=-L9A^EmOA{0HjQkAP#Z14KU)*6l-6o{pyW1GGZ^all4hElf4;=|WpFnMY|JV%Xs85X47xoGgbE@`0)Q0nV z8_7WMX?3==VWs*=Q(Wv|9A(avc6$0%vU0un2@YNK%HP+;p0^P~PnXjiCmIQXTjU`L z;YyqToLx=ELVJ*vxB+duy?QOIOFRt&Yg<=ri|uF$+*pqw{1tP{wY4mfK`Z3JnU`%` z+M1?y;z8>*RR8(eQ=}j_?lZ2gzEqf>U+RG#n_45Lq-srWfb|A}D?H-sn)OlvWu&Gl zYZ_U*R*C8~Cd9auBW3y@1YPNi)pm-5vxQPyjf6iD4Y^rWBn8wyzrmG%x6G5%Q?>~i z1#OtDB6R(Y(0hu!2d-)sU&E4e!F?qfnj?O^ZvvmOSJ0cJxkuwO)g_m-#JEtKDLe&L zh{HKFApkP4?PGd37IP^aUq<*@V>_o>Qc|7$BC|ejCt)Q3&G59!{1xQv3t;nR5~O06 zkPCS3gqRyNic3~?18-@;itCHnz35&sV9TFQDCE@a)#3KwAe+<-x$xJl9yT3Y)9&24 z15#WCs!P7_A_10)dlq9YQr9bcytLnSN4ZjW$?GO=2Bg%zp?CoOrdj%Ii)U`lh;9;< zb=G{SVO+YDnaOfQq`X|CcLeH|cC^wv>6APz~l;MZjVFh zh3{~&bbQdxtoYv%Tf10xvC zJQT>d3`o!LL)+&cAWMzs2xT!W+_@0N11mP^P_U7N&J7;>1T3q-9bV zJ^KeipE+Ex%SW@1kbGw}AGQ%F}NpUl6gw|mq~ z*Jcz{+n_8~f7H{yaQ^KLpU0|nldnDSW6S3lXnJ62?dBN8ZZU9U@8G7B+W1_qLik=p zXzRmX9jSS$>1e9PNxAkF1JNS1<~=dTQ_5Eglb#CWjv~>742r2pcEYjoAU&Kyn_Gd{HefTs2FMBlt($_kunJKy6fQXg zLeQJtS(I1kD&?e0^$s}J$C2P-33W-60*+)rgy*K%koh$*{OJ78@y2Gq?H*C`ON z8Wd(z#KPK=W=#DnJKAku3)WgvUmc93PU%^|{X$I(Kf364bRD}Zp_rsX-kI2nOKAEI z4a`a^TJeAG>Jx^;DtTRRuprUDS^>0-*?(jLYD_ejNYw2U#|)dAPqHId04_}*u9fyK zF~mI7^3kQ-S7rLV_*1dhlNS!mKeMvY_wh1n?U3hff7_@eTF(u+fV}ie;jBe=n>1vd zYi8^Oj~9CpZCVXolv|gOBiGBRs)fe99WXn0%~}&RIWe+jk3THm*~?2$&(3*Z5T`1v zCSw{o+)5Z5BWA|HOm)qo?C2hxp3eb&iJX*2)Wq?y4vZ~fj!eyC@ii^@%A8pN8>d5@ zR2L~~fqbnH^hY>ww&PnA+zKm$y;$CbI#fRXBl_vOwCYm;wmmAsB+ac^@KAtycE18` zuAB=;Q89+}$N6?nV)Et|GJ*vRIR$+CPLVQrTb7%^(O=KBC55K8^o|rd8h|d$6<&|S z{V>=`?FHogY&UvTHIVWVqz6$S2PW}VOX-c{!bnEfpBz)l{mJ)!P4wpGv@4@aVx_VW z2!e;H`i2y8j{OQEwxtpPv<4x4ty;*|85|A~HIIftrhs=qymI~ral6I+s4^Lej-Z32 zW9MGD%In*UYG=vZL8AeQ0~&_jiR4L2r#rKM!)zHSYDr{ws|$y)LK$Q@2^O2E%=#dx zSICrBO!aU^^qh6-a`iq?hzJhLcl|>?_tcwt`=y0E7#3695%*FA&;09cOzyjSaAQ72 zDBW=15jxyR=T)IKIL3gi-zkvjV(%s6$+yKZpLb)oNgR7NERyWdpO~;!Z%Mw9soDUT z&*$WP;nl5!#-{iy+|6I<^cY$!g8mDZ(?sX@7%$;B%B@y6y0%ON5Tpbf%3FPBn*R5< zj_Nh3j4}viEXprXdcl%*tF*LjG?;l(7xAs|2DqO0gP!!0No+pN3v+s{??rLm=jyP-` zS+eq9S+p=nyFruuy+!xkkFN5CRe&$>N?$R&q ztMtKA%^4yziCMS;6}mENWfTiY1cg!mAhZnbCYU3=oj;i0xen7_D-mB1UEDH=@s2{^ z-yDQEJ?tzRwFv4dr=ndl`&q}rS4<6cN6`3 zu36mp2N7ljG4(E2XPwf!i=Ga-%JNOm1T0SvpoQJHWF^g7UwGIeug~v&RjRkC%mt9<%ZsNS>429v! z3UkGI@!DcOx1bm+IShzqr$qS4g9iG#DUkKC?T0A^Dqxf_+zXeC7Cq+6&GPwMwlYSg zjwTU|2m#^Q_oXhDu_3Twyqftu>hD%>_pI)JkVPH^p0s027Gt=h6!~9pQRm@JTPsE zxW{RYH~BxErbYg=Zd^351ykCA{ubs3@|Z%3p@%z!O+ho=E|3mqh@nT@1=F|n1@jc5 za9xpsr{SGtzsx!3Lg}SX`~^OGS*1sZNA-vopV19F%@{v+9nRvUp1szxzd-gWw^o%6 zTHisoCsSTL+lAnyoue3npzRTq!)wADQRh0>p4~?_93=b6Lng>b^JYXQ?5xWv8XoFq zPS*CeCmeyGXour8uC$hIe}hFA_*Zsla>KttAD0=&ma!+|_H6i2ap|NYY@Y6JpXyw8 zFh~8Ym)LozIgoY1WO(1SdW_pajFkbM-`b=}FP zt&Ma#D{1@UI${?R`r_Z;wn)R=;bYnAe(TKPxvwb(;1!|kbOgwwh8vpxBvm1@TFfRcZ}oqDevqVlg|LP@9KxG-j>Jx$ z{xvhTR0@BX#bf;w5|5kpa@}}yT?7El%)?_rOjE?9IULbFUvH$@H!YKku{NMz<})gX zJWD@;RpSm=shc8;zIT5i;+A9NifD4Y{tW@29=G9VAHTV`if9SE&nM4gb9hR0lvP9= zkJ~PtMn~`w0!;fT|IhB_|M`YL!MIT3zs6|fBDW#=H8djl!S`RE^}l+l`v1xMa>Nez zgm3;s5DWAF^I>K@hQPD~#g?l~s#R&Q8Q2hV=gP61psb7PC6a0Qc-$ot) zg8%Wb?6ozgfIQAUQY7G0^gJ7Uo+SbiO-G;dhw1!#=S3+ed4HD9$<%)Y)?mQ@U5gd& zQwg0hXYVBm|Ni+35*7O&_m;hfInPb_3?AP@Ks;^k_UTED03wo%_yqQ${YU%Cllw?d zFf1J^+I3ff7>`;24IQKf5!p7m$d&za&h^=rSQ$XoYljkuo+j=@fy<5R$kE97%Dtw@ zhW6{57+N8@BbNR3%o++f!W*k2e=g;JO1CMdI!SrVD4oPkS{t`fVwTkmVBnFJxdwXa zxG*n6Qo(v1Sc3Iq3)o}aCHhSL6W9C09%qR8wJzTh#>s3MzWlXA+pz>Sy zmeVbwIpm-UmiWS3&(xpmlw=lkF-RDlGRRmpxz8%}xJ;bX-=h>))q^6&V?aLI@5Y{mYL+;%k)^+b$yYc`c@ zD>UAHDv|0GJC8LL02x9UA4X6Lle-+}lJg;d&yD)d&Stx z=$+F9hxwVUX>0V!|0T4NzZ>_-cKp_&=D>lqnw>J-L#r{VAsCm@_~IMq;F%r2=!jk`oOO^%v> zP!{8&1f@pqwbtj=gZfX4EtE<2pt1vZQDuq`E5&ynl5 zam(LTq8xnuSMkK+3eSb2`D4fk)oOWiOGLniW4r+pSTA@K(m0)8Hn*b(&&_Y@@&7?o z-bq(9jvK0ncBK5Jm6F+B1W@)b*W{6TAX73FyM^|iqPKnA;-HfnY%*BI=6IQ`+#e;g z|CO{ytT1<1`AKiCTb+bg%xyv$HTCVt3_ydO3C^AaxSe0raXI#7_RuaX1D7h;nkTsY z+o*Fs7uv)W5KCGHlJ<56MlToC%2F-V7QuLIG)2pdXH>Q81E3L*RJJpsKJO=2L&XMB zhfBUf2f)&esuDN@Q$lb17l)l5V zO{|J@v0U;FoCXX|eY*&_FUsvE+_wZd(YaYkYlr=h?F8yN=j?&>bLet6uG*5kxfb?y z|CGR5Oc$w5OO=WjalD9%+Q?PTfZ*M#+4A#Wa6i#fw$YT(xG* zSf2@NJuOCwRGCt^$LdbeA>4OvwXzhq$ur$=&GB9KHRj=U(4zfP+4~%^2vqy0a8_F$ zkB17}Df58Io{p-T72_*?tB0bV=d)h;?6TE}!&#~6r#AmD!p=4&tw4-3H`KiXg z1;hB^xDn|!Y(HvwH;Mf4@d+EZ7wl0Ph>e9rd2y3x`=2S3tr%U#Icvi=)DqQY=W~{c zi)aN@9=uez>XU-)^b=cUU7UVs3}<)ACW!Z|Aqzm4uR3%P53}mSeIc@j*}(PZD213iO`6p=V8EH4jQg?y2(yVz1MtReWEKyE1omf%Nl5StK`# zpW`ViMU>-6Xr=e={t{u-ua}I+a6Kp~ipq7ixn?g0XPpK_D9ZXR7ccA#+J*MMlz1tz z;RknG^uU;y1m|_(_^K3u#sg5HGC>dZOXkBa8!KhTd53Gd4Xm0@QIV;&sjV%$nc=V! z`xIbQ;?7%DUqO`We6wdmevW%>Nw+W&T|PpkVM#x?L&MY@K5pjJzo~$P=2byo8aHmg!N;+xO{SwX1eTYCh|_kT zuc}1KJdpDV3Pk!=zxd@EW#r)Cbg!ALn56PU3gaMhRuSp}Rr8Y2g9>R6DpWU8RZ7m1 zGgi&_kPuB#7zZZWR70dp7*!2*i>*G0$AQGpa!ZC1BT-Sl~H zT=;X1q(73erT%PIkh8W9#)mA~ajI9s`I2)=mHT>el<&VJiVS+V=_$C30ESnD#DC;l zUIzQD_lh#@>jj`d9?X%$;alSvun9PMJ?CkwyqBAAnRnXF_#q?D51^$cC(1J>7$F40 zRugjdP78?0JYN*r=_6|rD!|K9@xkzV*Wos{&|Y0$HvAL|FQcMH;TZ&1h#XJ*Bu3mW z%}L3bjjuWopoZ{!_nXQE4cmmLs-%bckt3bpKBh0qJE>xfqeYvn-~3{P-~(NgwGrw?K;W zP8P0NS4ue>&={wh18`APhNeo#O9u@nYPN&P{72knh~VnYYqBkB@OeGEZ{SS@gxEp; zu_blPQK~NIvGF-@fz#q0e&ToIXftgLb=+petD#qWM8XAcad4Glz@f z9T4W;9!W`*^CcFbR3pyCr-q*<8l^5m>98g`BOBITc+AW3UigvXv%xVs1-flksSz)$ z6>lQ*+Er9*X;~XKqUA76e>H0?;!{`PY^f+83LywJzp+(KUz7vju##>Ha3fp9rzF8&IX90I`1q{rujX{2P&yV zAv{~0ycoGbE{tRKN5{H)X6P;?qXG?3j;dG+Q?tP)h`PyDJU#|!w!|$yF09Sfl#(!y zA~q^+y;(S|b?RYX6seIr3yj!Mkg0B#rUMrExJ#7JBN;~TYhnPo@7zE6IZ74Au&3i& z<=k78Yz5T$pd!*M0Vr>f#zl*gL4p^z770m=_0WF__v%f;AdSI**|uJ0 zGo{7Wy=tNlN~pzB(0QfsOYykydY=XMQ9h6Oxz3Q~oPyAhM3qh03~_TogZr4zPnQi? z+V;-$B9Fi0%hyNl~7~ z=Jz&LpZi?)f{puCB~q1E9(`+jsNS5T8n zB>IZ!hCzaMqb@#Y^WwH8*oZP=)6;)P?f_X6;HT|iF&~#*SvPV=-{^O+28_@zcl*y) zv~oU--__d)AY#Nejk8IBWUD%+CySVtMGm)!)Zd;VwA2l7^V}pN7kDJDV^1FERQL-q zqx+>~oKTLxTr4N0b&TU`Zc>E756Ku4K8>M?6BEn&moGHlTBys7Atb%B**xu$pxLI0 zKt9IM_i2yVn98$1Rj7?khTZ#gITjQ}=;D2w|Lvw_PdumR%3w!z75fjuoHK+Dl8{1U zK|EgayVlp$`o^uR7_M-@1fDTPNJ#uG60Wp#xL!)?yvXI<(e=?sqj(5L?@E-Zq0VlY zj54|MW=MWpBBWtVzb3>4GS!T#%G|0qp-VJnZ)w6rcJUSrtwaMS2hz`cK0Z)Wmzb~D zbX*Yx`WCbT2jR(|7t2P=a5cAnojM(#8&R*|=RO2;eBViC&)cHR^`T{(koMN^UBcR{UnSza|4(0ftrCdvNU32*&N` zz20UKP~(X5PF~h9Q2=Gr$z8;%#?E3E|1vAq&y9(^Pi4$CrD;&Y=7%$h`qpwrA-GMu zL$IQ6`GAzsQH|pSeaXDoc@*J~aCA$PB(;<#!nJuqmRvQsT-oK^BMqf7hF)6_jaIMP z@HPwB%c=b}#`u^7|1KNIXxX*B)`viM^U+ZOurN#khR6+Fxi{|dN4?g}bE6aHmF+Bw zLdHN}G8;wL$iyRSEXgW$P?-ENLbr;dsmghbRDJgSDnH9DqMK0;z`$8!NK>=8P5$~! zu)}#elyQ(QB{pO-jFD>lwQ0}5BtMTXftWIR#A4m;SJ)@BuDnI`9gPmT;~BIOc~$r- zVLCFO$W49e5H)oU4jfva1VIgG0JaK5;-ix`xvVNA)-Ky+aR65^t)$OF3%nQ;=sQC*WLp|0|oH|fYkxLtf<+AS4?p=dlMjUd0 z8!}Z%lw)`Ubd)U;RaLKy1=g6UQYr#1m#0+As?vr~s^`rnC*G9%V0?%0zbYjrgKSh= zJ{!3Bc>WR<$*Q#yq_nhCe`2RJrF0ox`m`97cq~4%zxj*|x5?VWw3J zEc!^9TT`q}NJ>~ZEpCduJBcANiTO;0MDKqLFaK4-sf<8FJ#3c`86W@=5;{E-bMh2t zl$eJUi|(-0OE(re(X1OQO}$2_EdSw?MnpJQM7N0SjjS90-n5zM0#5cFYAc2lK1 zP*2iuTF%feZ5^Bx)gMpcKOP)xtQ)7-p6ju42&3RF%Fd-EG9N1#r^q{3zY}=nuM7*} za74%~mPl>hI4tFE|EaLg4zr}0zNwJMRG@wIdUxPVTNy#8M%(n<&nAyIGP~cB%KZI< zOoNB2Tkx~lDX+E`E!M2ojo_5MY{I|lHOZg#@SG@u;UUphXl!3}1tUivUofM@*hNIP z6vuI=B4D19p0Y0M4I7IQWeL3;4!88({?M%@T!px4Tz;%7bSnX7t0v&eqV!DKkAXBq z;l1_Ycl%Z2Ijmj|!TLh?I7iUWDSKP2v>9TCY}t`g3+dv5gG>6wVZeOl+|qTK$hqzP z&na_Z`LkS$$JCdMQu_O$B*@wr3l=G7iGL8Mlu7)!H11JqI;RK~gZRDoahe}iinW-O zSw0wtxKL`%{srN6G! zD6;Z{Bm@!eDz=z3{Ahdx@QfpBLFKPAg&tyQuL3(MW^xHl(Jiyq62dnDb3qHq9G{j{ z@Za6@8-xSwGg8{>HJI*S1;^zURIn7^^m4+Mu#b?7Gotq ztBe7GYp$AA$bCO_9?M&(vVZb+F?X+UH~XX-w8sP=8cnBAXno)ep)Zz70BgWbyo`aw z#2@}Mj-s;ZBcu+tQ)NW3u1V^hjTeGKs+yyaptxFYRIWn&Cxy7ib!>P>mO6Op?vQ37 zjpj$+HrA=?!t|x%jbcrJaKv{-BL&qYIoD{YV1`(R@rW4SEnuen-N7^*NttEgNe7eA zCqije2=j~c9G590qhvsG6%GyOaDBN*dL%c7x2S;KJbOcS{cb1Sjb`?!aww=G7q#(k zzZ)-|L6zv9eeyAs0uLN?u`PN>scHl1(B+&}Z}2C7daACWj(By0TsQ;-7(b)%!8xV~ zXUxLnii%ReQ#3-vXiGqdr~iG7BXD%*5tjYZmuXhlMXv4Ql-j<_U)mg;>z-Ms!(FYJ2SF=A2t@k>_So%@QqQd->#A6eW0}jy=-n4+Qo^g-6=;>jnSlnpsS z<X$8h%z#2?+5Xs;12wV zj6E|pA_YQQ-z9BTyV+=1zLZ)9{Fe&(Fg8+Y)k*;$jxw3b$d=GcCV2J-^YI5=dWEKg z`aSs?JMgkqst1Qra>ne*IcIu~Ni#w_bClyP=aCVS)uJT2hK?zqG9Q8isVx*$y5xC% z^&u~WGh({Xs<@mYQE}n4#PM6ROPqE#2CZyvgASfSj(O_iQ=lp>p9_a9w-Ken3Wl>p zqS77v`Gg;T>=rY@O$MLM5;eWc4?g-Rj5ZvXA8NI<$#(A^V!1ADXc`L}6}vfQfHxgZ z3}dx+c=od)U?wNZFwMMv{e7TJ#N&q+@5R~mp-}|uJ+`8B8-D>Suk|K2o{9wq2;0AHii;X)L^?hV{+Eq}eI-WlL;Y-Y)G_o@)7o;}cAJ4rhStKeVT=KDuBN1Y_ z6mk+CBpfQ;5wmX}H^qa?<(m{ccsP_$gpzKC{?jqbDy8El$+LBRba6Nz3tS<4 z#Mu7FrakE5Xq|JD6sURTxguXfrt#zg`rJ&&kfxCN`tW zvFhz!cp5mCG)cm?0zrh%6nR><4$qkQfWA>6o1zxE2!q4CNFqttzR5Cg1YyDCT>JZz zUlole2Q$fuvLPwe2NocVl4jgd%`wOb8yxh>Jw+QkanJopDw_eenFDe%CqR zct1K0K2v6Bd`$xHo#|k_3^SVfm@%$E-E+IzyV$xMASCTqQ1FWZv+-2XahZ#z3RLcZKM9iYTPPpcKu1#@RrSKS&r+-{@JQB z;>M|fA1c9$16hnZG+-_H zjBZ$5f$PBM_Wjxy=Sg;kdlwe2rr~B_Zt_?!8tT+V>qL zg!!cmN=8l)pXPBp9rXUbSF}k5-ZZ{@`U{ggBuH@&qx}_k{OI-6>W{_in9{VO)Q3wJ zqkEYHcXE0fz?^4z|Hier?(9I1$#I)!8$|1dhx>tLgyi{TnP$L^8{YzZ`DY^GmZYb) z31fd?kt}ApA1&Gx>HFh%?ziu!@s#kx8!QG-9(qf2TZ+!X9%9@c;zP-hAqm~~g{LPM zMRigedtG$i`C&O;LWV*cEq(|;!(9W4Hb}EQ?hh5oiO3;?#rECZ#2uqJO4~BbnD+Yk zp2tO)b34#P3rHbhSK&olhzvdiI*MAsNGDvSWmTHoQbE#=0^R?{^*nYeN9So_C*(WJ z*30q5yA@b1J3K;@9?ihBG{0iG8tA<_*=V)U{t3aArmk?_ONT*zIa~vMhV}?)^abtHywvw zHkX0qI7gRYUEdQk)ji;M8I9gT*>E9F(i^&szaTRxKnXAP^bv$8*K7)An zUBET0)NkY93{hCu~zknk6VW_yyAMR|d6ZIhpSLfS~76u{&zR{+5;J@5uH+v#q zci-~0uv6d5nOkUM@A92JPY6qrx!>bEOH+5_um$`zDrRo;{MTg)fSVa>~hz(M( zY55;Y2=0ar_5ssHt-$q@8JJF{ePNl@e$y+kbLdnKo;+i;_ zEQTVQu@l~Jc4nj{^R#Yu7^-EO+39&0$L+8s^F%DF#=y|y;lDVP z)q>-H`CrKSztL6tM?#OamAvtc-TrB=bK#V&jqk5L>g0`B`S@PFzWF%nlIX*19cUkf zBFsIj%Ai5zPKOPbunAt}MRE^9nBm){XLmKiKxDAgwraUAAhbx{ZOQ!)VyT035Dg4p zM_5XRrYGz}w}}^5AU@~@qVl#nYr`Vx{tjY<(+wc=jwWJ^v7r6Vc+?i|6-pK7b-QYI z*%D=yrEck6c}t3d&#s$Ev+>twQLK@jAVB*~cK~)=Pvo%Cc$41qU!W^fsAI|#Dr4Qi z*4m>9Gb*`_M&9UyRi7-1Y&5b1TmFzP=|Fr>T~6EGP_B`j zL^?KFbcE)^E2kZxkH;W2pE<>hsFB1fuiygiG0=^~7-iSRh5;V{^E4Pl?7j+Pp@It! zmC|v%H58oG{paUXNS(n`sRpN3$NQ`#!@~6 znh8&Es8#?BJPTF3POB?|^pFF)!dSQU?jY9J{{9`IIW)MN>@!f&up2$)Te%o73gPnQ zrDIcDOx$4o^&xHMHN$sT7jcLg82m;t!6XTg*%75pY2r0EV)!16ZKb8XF*h|MQJSJH z8AiW!(GkMfOFlmKlsLe|9iP(!H*gLFxRpuj44Dk6G>jg}Bpj^|W)PaK;pl$PqA4qZ zp|J)7)xQP?xP%tmCHSOcv?+9t!)fv#KNqFpKrl*(^cxR*bxCQ_BwrsmZ&FMK$0=h1 z0~;8u@yAQNHAjt4?eEshjt_dm>nU`}{58Jt!me5L!Qnu9ATz~j2B&vyYis$@O(}n8 zg-}iHhNk$nB&4LN=rUO{-fTo8tb_>>sJ%#TDWeiXrqn3!<)U4{A%KYbk^fjx!^mnn z{y2Z%w8#T{mMBQ$^t1X9yF!Sv1+kJOUkl5G(}vQ49ihJ~6|L0BzVTf4kOsf#96_); zRe&6v?G@4tQkuU9tV`OOly{^78BWepD1*I9 zmVEL~01D|QPSlMjqU@<2MPzTqsf*FhwuU7L^zzUpmdAd$%{94)``ERNV3!DsMSF=!@nlrzK?LEZ&>3m zh9lOQ?r@j#AntmxE@(NNiOCqJ%Rw;;{D!9t`;67}YAj79kSJftC&?Z3 zXL%6)Ff-R*8DlS5GBLZ6EtVe^E4vT3QLPouleV!owYKuCpuS?Mi(aJ@h)G#+D-}{h zmqHhr0_PVy_~XMSnt9WB2+Vu$kGeA~YQWX(m*gOE>fuY-93mExJ{iHYrx7=5y2+5og#b;mQo zN|4Afqckyvuirn2)w``4YmHaa=J;Y)LtiQjK8+dJ%KqfjzW&KC&DM%T`AkdfE^@ym z)Z3Z*;wT#nUOOaCn@V(E4PQwpKp6~7ChUmR^Txh{De&uhnQoeo_tvAaZN*j*b4e`) ziVw~BKccnf49_hrjMS#-H_ZrIEol|H(N!0q1%}mYQ98iylO))Nsnw#d}4BPv;UCaO*5x z>R=WnFyQIKPS7+K(&sv5BYW|PQF~Kmi=`kl$^L_g`yQwv*HfCH!JJ%vD$)s4LXm@_ zmaJUP#G#P8o_!bvYgs{Wve0WKT)Q!jH4GNwkQ%bzD)B!%X`0nInk{=me(#Qzpv^V4 z)XEhs$pxzKV`#F`?-iy0R%(>oD0py3k+K5FQ}b@a)}0NyF;gg~Dcl8{-CL%dd@b`4 zBvwyA(cFD7jA6%7rMj4#Zty8;kby1g!XqLb5M+7) zw)pyP`S@tD7m}h7;nybn7fZIWqk5m!dtT+f8AURxz;~HK5{V+6V6R!aS^S-JL=3~nCD zl|jby-WU91t437w^wx2*p&8kiZYDphOtwA9${PwA@r*vXk8~2F;AF##o{47K`p`6Y zwBu3Xl7Mi7)}BEB8HWKAZU|P42HbpniYf1}EgrncLsu7@r@WmA7;&2V4}q|v^j;Pq zZBdD&pT#a&B9Wo5vIto!JK=+7Uy!Br!HM>G&gng!q@F*d&3VWa(ZY~b5PqU!!jlgG zkzZ=_9D#b}Z5UCEkijg59~-@f8s#7Y^Vhxu36b+=AvOwoA>KTy|A!J~Bo?E>C zHZ0o*8AvVlwW2mmJAIPT&Y*|=w6y6E$CTHE<4bsc)AKOwq)JA}^wXNeV3Rr;GgCkg^QGR6}GJ+q-=m_0tiU2sa+8w$b|>)c9PFReu(nx{CSA zm)n#UBQ6klMK^dfqf<_$6xrqPZE-ty3Gc-VqMd0{apPHVSrI0*sKjG=&{ulUsGziG zvL>V1Lo`XK+t{4X5##^cZzp)H2*vGKYZ2+?=^{S%y%mQaYpvy|nFxn*ZrDdOh% zzaDgH_s}BGrM`+Sa}og zP_>-Mhza~u%nyH+VwywcmN@yb!UA_}oT2mmRl_->ChmnFf_cKj^|mE|6*EI)-SO{? zLt@ItNWdmu{TV?OT4EE|ZlxB^Iz^O&t}-NFMXLQT;heNM6m?@N?~vO^uB{!p`p0KY zSwtj3Lh4y17F^>T4POZI&X(3DWNlN7SYu;z<@*QrcA`TUc8jUz+Eq)NBR&|UO44_} z8g5dY-OB+6g7qp~p-PkBp~HmmOw_Mp6{P_JFrhZo#1+dV8-WU{3OIMgQJAO6No)mj z+3iQ@IqQ+4-w3#VR-JdZ>R{-P(^hMA*ygKs4#oaU8wQHh9K&HW88=Y`;7t)p?%XRQTD~)CMn^ zZkgjbc{==bzp)~RI&Zhp^E4o!b`0JzJ(I{GgDfNd4&BxdNhR9yk~MyLd0FIVykk=o zCs;3zW#|TTV01_9H#YhfQ^&C2sCLl4msVFN?yXf;U3;h_1grjP3Z?TS|xr@7I*4ieRDSh|6{{%^%iCR^PHl?AwWu6G zHPcjn>_pHmBZp6@#{yNssWOEcnYR2!_8LsfU#fdter+re4kS#;Ce@X@kX_Sq%3aty zL^D}~Ca^o~%7_f95p2xWX?=>a(tu&iR0Aop4pXP*-g|m%)FF%qPUPynTxjWW)$CT4 z1wkb*G@BKdjlo~7mteHW{9V$|ar9D`V7dk;U7;7JxR(PxT&5%V&3>pFFM$9Q5+Xy? zja80c&If{7AbH?$`MNFPN_C$z;nlMtt1JAad4jUbO3{O&9T)_M4{qcR`R+m#=v_ku zSO!F}BKy=zs1O)iuYWOb`)_x|M~Y$ngP6F+%V8_fqH90$pEs%td{bG4N6=UG$1bUl zm8ctc;X4(>Jm!J6B^=BHT6?AG2o}PxpASF8h=|6-$gZ!{#@V zmr_@)x472o1j+P=hT8u9dy5>gHM4l9hz~IQelE{FUX$|i%9o)#;aI(Ry-8PEA}c?8 zw7i}Ks63V>>Q_99mAZLepJ6Kqd#PbiL&>x{YD%7nn4%S~%)5XQ{aN)bAL7U1xeWR@ z40hc}8UH@`S}sBeRH1j?A?-xl&{`_VlW83lT0sJtXo#-5_hl1~q#X0m7t;qmfR|6M za)xF~>zwuS6^bDLw`J~Bo93!zYXgE3gz1cEBz!fB5E_#m@GV@ik4rWNCVEUEFL(1l zi0tu%^W?1GVpdgwRVWo+yh{HcUvCxFRu{JI0tFg8xJ%IBT3mw_cZx%Bx8hz1ZpERv zOM&9P47IS!eDw%{dgh zmcy#-za?nT=zSR$@o_-LK>{Dt)H4&Ah&nh|-oDYjOeltar8xbXg)K`^WA~*ZBA@Js zR-A{hT#sO}_Fh8a9cKWGqMFFBe97dTOg(=Xsh)Ly-=pd9pOp1hsg!BEk|>L4l+U+& zsWaPFORSlaH^)<@a^%a6b!#UNUSO&6kgrEVjIzOs6ESE)%w)@6hhG2z)|TL`gkQ;B*o0+WPGP$Oem1N zofFRKT-)+1ve>($B*u8H!hd%1CzaARgol$kEp3a28<`|Z9^_7W1U2dgQZI*Lxu*XZ zlwbYHG~$%2yq0V_ho@djM-*|c=8p8==^oVBXI8H5 znP-`%TdG{C6C3q8XA-qO@0DE720D$2I??A_1*YL;NPRCo)ZI6^c$TpHWxKrS+-pE= z^uz|6RX%V$Dbe7#x~>dqZ4|7O3r=ZQ)UD=_G%sUvT;_P_lzpDc`{o~KN%T*s7nAAwoNZ7dDb+hV4YS{5Md|g!0T|vSC2&6SJ&; z4x6NlyOFLE6MK3)AMd|G2_>?&4n7AZXR(@fZ*Bx3ZlrSwgPmK1R}rsoQW%Za<)Kh; zGk#1xaM$`sFpZTNTuX=Y5<-2mPeb^ls%tfigh`UGS$rhJ#Dk#9D!Xj$b1P!k`KJ}} zW+b(zJ*XSNSw2?vw-NqoQsGfhf!Z1J-7fZKX*FNDtR{8MO^vcuZD6WI zRzN8BE!Mk{ybk%q1nwc-g!Yzk%5deqBqq;7=Fi!;>h#-tv6q#y3y5v*u?whFPlOps z2MOWeLp5umeeH;R@am4Fz#A6j3eizwlusj0)s;QJ7)QshHn}9mLiKgJ4}4Fs4lydU z$w>;BUn2pF2=ogI<}&<9tlCec(pFap$O*BQEwj1}Rau*4Jt0uYOK{URHcW2J#!)uJ z)Xr-xoV<)pt7Rvr!evY)WH$Wa*{55r*RZC}bNzm&*^s~rLSAB`{L^@b^M(sGJIYJi z0anF4WT{{7nSokRX@0`0ef7gz>>W!NYc^1zt>=AZL%r)#o>gfSWw^7IM?K z0+%t8xP}>x*4U9>-rXR#c5f!@oA;WC-W3REi}T`_OLF&UL(>jX%2n6?FhHv0JK4K0c2 z@D)!&KejuI`o6Ma={wIM&USjGO(2N_EvEv!mQK7JFSr*EhMNlaan;kxpJHE1rJGk? zDT~C}6^qK2W+!1jC9iDceyhHU_@Sz_m~y{u^pi7e1I32)GGe)_3|ad~l%kkbcV_FT z@CJnow32@Z_hc5lv3p)r5n6FfPy6^ZsNSK#Eb_617aQd}C2BrDGH$;)N=U0~jJHIU zd(|#GmwU5qp)dy^%BSlda&GyhGa!Tor>@>wA%f~xJ5wbvM+9uU#P}pN4b&s5)|2m7 zt^6cB?u4Vir52iL2&jSDaW{{Dx5A zJc}woIq9&<8y86N{)}Qe>mxh<1P+zD1MK#d)_N%ta*(A?oH?W{Yq2>lL1sBE^34(S znOQ8TZ!?wX)vKjZ40IjP26{}@@l=CvPNouciX%q_m`T86kFpmx%`P+=R+|3V^^Pr( z*%nAebbBV;wj=^RFMS@4d304>CJ5|`xgg#~bW(n=z_S{WJfk+tB^-T%cP#5inWqj_ ziA&|n<#5`gkQZ#80vwTuC#*>W+05$u{xDoZ^bKmD* z5NL1Dd4uE{PUW`6quD;1azi0(J!3oA5jf-%lXZ6Q`}@A)SRRH({fS8arQNFkTld<} z49SsV*<*w%%x622>Oe@&9e56q$J=`ClB5JR#f8}sS%{$^qOJO;Uy8nnlZSl5Mj@9g zfWRO&3GfixIBID1CLZrk#NKv)R}MO`3C^vsZPzv>HDek13FlMqeLU_Dx6N)gW{PQR zR4~eBWAxXx#h-hEbE~;+e_*de%r53ahatoyQ8AG&tMIIs{)FHsuQeAwU=i5RS$6Y} zmi@16QhYOjtnc@I{{n_AHG;7OY2xFH-uu9px;419eMuQpgTJ3_xfVa^%J3d&p*V?0 zRbN(kXmd+E$etTQKAh+?y&~%yFVTCyN{>w?2SDYGu{y%C^EvjL%|5b(xAoXpaWNC-mRo4*-~>B>qshV^jcIzGGIT_Pa` zxSw0gHGP@BD>%Lx<~hYrABCtxv|p|!&Ux&m^TGv3Qeh}T+a9Dai_-+oYF$iFxnqLS!5 zGOSX!E~1Z`Yktu^?EiZu1%6ZH%LL?=F&DlW; zJD=2SF@cdO+kfUfcJt(DZ3+{S!te+5WoOsgn`>4dE{ahdn@Hf+oG06=ydXc#=I_np z@vP}c)(p-cn_o8de?Las@Zv)fIB|Aj%zTV{T&BAcvwy8nJeqfF0}z`5{6E3>q`UL9 zzS|m~81?Na1O7u29zKH4XJT9BaW>cg=pz!W{4o-|6E1)VJ);T!m$CZ4URsO)i3k60 z_cDp;c{nTkf0dp8|Kd*8X1s5kk8>oHb9X`8B#PpHpIj@Z8=HRThj=;PEZgY;?Eaen zHEWEK^&#=wR2zhGgq6}dd%|gF!_ne+5S7HU{k5*#`c>1EFuyi0-`{QzzM3#6WSDW1 zWCIHD&58e96LmU1&gVA#-o-tl34I7@DH8nt%}=|2w@qg&3I}W}GGhw-UA5YK+k`4G zYfLc!rkQ*>&P|Olg;uS&TLIyKr_O(pQuHmGz#-mt_)k?-N`4sMV+gG%uq0RS_=*hS zDbZzQGcj z8-#{Ion=Rp^G8pjra4ZV+uLA_W1#-`f~T&R4XR9-JneMRmDgtv@UAEba17XMQQOXg zSSz}62lQ@Cu~Drp*gv6dc}hr1dZny8e&02++%VS@n!>IKUD2?GX7k-nWG;l-Q+J=P z-7gLbel>e^jhW)m4rY;@%?#`h{4?T$Z-_KT3!#Dr-9ET(+c2#OR{SEb?$F_1Nas_H zN!RDj{ROo@;ryYyzM1^?Z6sWT&n&;Yq$$bns|bK8mrZ3%{SM!KPxYe*K4%W1h3A;0 zx9a6G`}3W0b8?CC`vsRg=GffhV<6NaDm~0+4~>Rn)o-F+UF1 zkZi`)m~lE4hl#J#heJKntWlPMq!ef}EF>eQXFgy z`_b}okl(DaH00B=Ord@(lMmwbZa(vY2#f|DV3vnR80V>GpXKkM<3bBEshmEg)@SQ? z_QLk>^LdvcANR|9TvU!@YG(za$V_yV%gD|PadD>sy!;N~xS$xq{2yOgo~9(I83O~s z3o+`#wq)R#K{9bG>|R8!*S$v5H^rj!?+R~*LAO${=-=Fj|B(DbGPjT;&`@QwEj=T# zi1MlpkJvPe&W>n`hE;j?rSg0h+Y}|M3@IIimp0{lR?18(SV(=IaBB{!-tqr-P?h-` z%~>k?7RscM%tS~vb{Ii)!S~{tS!dLoHng-hmTc5rb>fh!qi7ODXG+DS+^X~DE%W3> zhjcCGzCpqUVeX-}dh%b&EJE6dLx;f&4g&kOCu)Y0nQ9vS-(Hd{pXw4Z*4N9rx-&*B z7;9QGEgU>IYV(er5@N>{-v60hbLTQvCAKIPk?rb9B**s7@tY0`r(+7O8>EaEOMLYJ-Gq1dy9&xZ^+>;?l8wrD@peDI9 z8zwdv{xQTY3^sQV0FhaZ?vs07_g>!=+O8TZA^TaxNXJ^kMuz&xf{O!1FSeEI*bdn~ zSri#_hz*ZZR_gGkX+lP0s#>);n%iSW2JL~!}sjM$&SnClkOnFs$B0cR66@X z&!Pwr)PW}FNLs-?XCzu50kXx*?Q#VFxoJvfFtnOUnFFg?kSLRGNS2y4d}|71mGp9YmZmPN#Bl~&&yAOOO0bAR4}^#vwg z%XY4JYW6CDQRrZ^qN_%hrM0yT*3RFBOns^){8QnzN|Q$MF)A3grB28>>q?BZM}4gB zF6a5k<{wfjT{Au%R+e0^SI8$G5v^_|>s2eyHtfBda2FA6hi#=-Y44+6EJRszXz=+!h_IS_Dv+Wq72#T*l>}W3% zZma|B4_Hh(AMsjfOoRcv_<3tS5rj|CNA1m{ZIB$6L9%)XG5|&+^pzWkAS@&0QXo|Hp&|9UpQZ!8tdRRTy;{@L0_k&WUaKVDSN?hLsiYT|(8RXxa6c<|e1IH2 z;mdmO-ZA^RooeV>*|-2ys7~b zg9MbaA?|k~7Q2Scp?wqg5b4a6)b#RtX>`6%AWoF37~z1ip`^L*QLjO7+Tf>wRj7Ky z8Y3}&gL_-Q{x%+;zS6gBqsYF&`0XSd4h$~)7eas6KL;;(*zB#t&N|_tZui35Z;xp+ zhDvW#Ykx|mU+AELa$#KFTE!a@HYN`KW*J`)5!|2L=^#{P&VN$ z1XWrV!pwxNNrj3}0u2MoyEa!+w$0Y(3dx-BeZI3Hnfr?2HwNZ7gaDlTP=Wzh`9z5N zxvb6Ow>mO~m)(+(BfP{)uF^gSzfYod?%XDg? zf@oZ9)-tDCM6+PQc^WWZ*kXPKS&|52RQSyEKcs7&6HiP9{M4c<;~0XgOolhVT-q3a z{~4~V$(?ak_e-k*dcX{Q=`A9EK3MVYOrq^rbZ^05W;vQ!%-`s1AI1VcJ^`pVBrmFQTo`pK8Vx@v5bv1!TDZ4&c=^1 za#Wji0Fa{?$`nWO3Sl4Genc5NbS9K|MWAyFH@QV!2TI{)A7;>J|IajX0A{Ulb5>2l zn=y_L!o9rkKbH?j1iT57F;^ydWc0XAM~AeOtSJ$Rci2?iFbIz&ULE2+k6Lp!)($*> zD=;(~nv3zJndf%dIKNNm+Imq=^27cJ-f9PFL_+S9`hdK6O|HiW4~V` zbi_}}S?RB!>EMvpXJ;1&j!yvUv83emaluV&EuQLFzwZFr1t{TWe-BP$bON3mZ=3z_~FlBjGM~+s-fGNT4x6 zfkn!JIVlc=iue}5M^brOVwOrT;tCme@+<0bF}=~G$fZ`(Tby40pTsKLx5S;?kJ9xp zzF;v6m($yLDl_hlklUN*Oljs@##lL)XjDtC%FDBx>~hIFdgI=vcXFq$<69(Jx@R0B z*EXZ>t25cLM5WbhG^gHcUw5i{R-qEbCTnWhy+uv0pSU4R2bu-UP!($hI~ua!E+zswF7J;_W&O6`TfRVs@oPnF#T*a`bq1SVz~V48070uD-dRLJ;qX`5Pc~Pv`Jf&+_*WMfZqHl0?Ugs$ zOCJENlGd8hQ{^-9Wmy@iaAw|~ggpZTFWVS!R5! z@^0cWTqV6+d;ac_kV)`1GP;H#ol(79-+;H3Iz8&lB1kMo;UnhhU7Zp&xeco{bJG^- zwCD3M?$KusW(_Gt#^0!fuE{0kDy^pADF-*$8Q&ez)Lr-99~-QA?IO;PqvLP#Fa(G6 zs8nvFma*`Dz_F`W4j7M^W#n!8m}NjD{|cbqnQ|X(+6=Bs6RpsMM7S9%#;jy8XQXZj z{@5YAD-^6G<>)%j5^1Y$9lo0+5N}y2&f{geDUk7({=we)t}VA-x?a|gLGcqAP0UUX zS9+>=9kr-E=CHBpu~B90TUby9{2iMpqDqQc({7hX;x9vP$H6R{M}z-)eJjcFzz&?s z44V`%oMfd@GJJuyatiM=eUNvVVU1wCF8})FAX^s~4JjzJOb!_`vWX;6Uwj)k{UQ)IA=@43Q1<gn4!8H_YuTzPwlaAJxa#@4fn{xI zs2TO<2foScs3+pjEhmMk@OHU!vQR|Y_KR-p6T0osQY;7SEFa{- zF8=PTyE2;S;r7%f#r5m`Ik7w#cB1{57?KutocLv_9%Y?8pDU;2n8%_@teteT>`aBR zbg7uXmbg1+la<3fF}>9|FO%)JBX}KZKVo@G8XP!|Ek{?oy9BvF)ITp2{%bh|%+Fuw znU{Hc)xH{j``u0dU3=ZVazs5!Df{4Q9wnkzNA}L~*U}U1i6d1>&9w6muy!I|_)$yH zdh`>cK+*`ce`pU1#|)ei(!J{0VjA=-K2M%g4b%V^JncYJjOXd)Yw><6jJ5+v0=3WP z95G@`x+>@)hWzq!v#8}?yGBI%3x*gEtcCbzqAM8E9XPuZP$qhdaH_sAvEj zwEKi9S5SyC0U;^^dT~aBDf4~Q&=u-~l{$K`?tO(`KN~~mbz{}(l__WMaw(eWOzZV= zwW#Hq-O0LV^`Fs`Nj707hA%mD|0?^rmWI<=m9t*AHIx`#DSB8o*zTVQ9ID*AI2_dT zk)7X#6@2?jH)2cRuu)y$BZ8HRQH^Pd(X6PQQKze&S|Dlym8&cN2Qjv;kHnBObbmQJ z*B=0f_jhZ&%BYOT1c~tROP95!!1)0@X63Y7j)~RkkP8WSy%c>;BRG$)gu}$$NE>50 zP47be2C>prvdfX9(z_{*;Q1!C`h%yMq?zjVSnn}U&&)-(2vB5pzKC@;3;oX4DH>{i zxMw*m4RM5Xu(A+&9a3+UUPrPbm~*L>W}Q>qi(yBWA>QT`7?6QFY~sL)^R=`X4&|MP z>#?(iqrf>}mUIzv0|Y;Y;&t0} z9**`=i-X7y6r=bT<=C+_KkZ=U1{JA;qM(G~pR7dY7D({>r!oAsjl8-->qG(!QBt!g ziexyNd12{k>Gs>bHf%YjmmpYr94d7!$N)tfk|oxZ~7AHL zVoP;S-6HzP%oRXPg0X@FoDDgcTwo;9^ZM@(kmKHF3$mj^l2>^a;o6aEjV9&k=|r>Q zKbq(z-;Rt{!0<2O%QPP0;U%g)7TB0!PP~E^c^YMeONH$vv4WZSQ4?|>`ZCQp5_9jK zq*#3S?8x&MY&>JF#rxQJCs%h)r?sz}O&Wc09j3z5o*=yxBMqfN&heP4`5w?k0#=^s zA!Vfsi=DL}jsl@1I!(-6(ktltnJr|DuH6^Q2mC8r11f~%lAis-+o(POrS>w>_1EWggl4a!9%lu8!t+3kYgbD zkYhP2m8?GM&FkqlqCmU*$58mtnk=(c1UEj-3z@JM4;!eDE(WCm9aX03K=d`xw;Ba4 zlV^i^CrU`TXWLrb#s;u61Z+DFx9E%Mez2SG?=OjZ&qopi!Egt94g&)OeSO^Ei?aWt zpTJ+zEHV!W_{W~dIs)P#Ed_3o&|Lu}x26S+7u!Wi@qwL`pA+Ze=KezpZIgHrn!CmZ zi$U+X{JSOE{37|NkZlHUBC~R@&X3QEo40qLVr-00X-R34vnr9Jx|ZAp(G5qDRQKa} z?`BS53>k%ql$DGz3N`~VP`up2Y00lX=cS!NDm2qSU8OC7A;y8-&&P3KX&EXAd*dC1 ztGDmsUQls*Ah^Vmoow@FXw_pICbU<;gGWULMc?{H;`(ZDB8LK;6_V|m%@ub^ux})j z1}3Ip_9K=u2xoK-1h_H$V%9>Q%jF`DxZLRIm zyns=+fN|HmM=qpC&1*Pw=U%8^t!%<^cFubX3}62)tulTlLIc?OhMH|{)%A*jA#v3S zBJ+2*_D+#BG7a57hZonVnr`MPY>J0?V)k%(B9`ajc^{Kz^V_thh>8*z$jorIg@pn| z`KE(~26+^{kT~e^7J$z$e8(5(tI`gUQVO!82!ger!!dpv526G>dij)Nw+!D~u#!Po z_Rt?*T!;I86RQ4&^9;}<6_53P?S><=@sx{-j$#-cNI|GA0z6!?Rqz6a#PhglZ4OIO zHP|QbYy&V?VILIxZ7)_{Kz3aMK(_>t^_z=XDR5xbGocqMr5pNn;Ik0?d@a8>of{RH zz!f8I^35$d=H>Rd#2YIs=4CiC`#Ercw@%zIflnc7VhjamZv4b7A+V3KpPE@{1k?cB z`}a4cy<&4yD#+!|8Fo{c%RJ8 z^S>b}`Tt(2RDMVQKOa#2f3ws7o2a7l1EDr;M}K~wCnuZ}tr~Cwt=u&Bucu&)>)R(s z+kS2lNB~(}4)H6owf_En7d{T2Hek2wOS_M^U3b6F_ZDOr6pKM^j_tVZ@TJ{%E+)?L z%i4~x+3x47gxbXJH-9hl5RD+gi=r4=M8YptTcJw?LVGrB2)s&=2N=8L**kAGUv8gQ zWDg0sU~`iE=-#I(%n%wQxgTzJ5m*Id&a@3(jY|zhwbhw6H2<-8uK;VeBDgQa_5=6{ z&;pOsoAb(f1rj?-&I+x_lqRt%P1yu_TbZ@7hoi^W2jBs+0uL1kPf+mH>N+YgMBs%C zA_moHA)-sP#0FtOasGP!lqLEZ{qyqGKJ|Yn!k9k=Ly#{hj#(c-31UJDh2W|HG&D)X zztf{~9f$xJSFS=<*KqFXlGBNJQTM{?u+e;ex3|CaKAmr3x?+4#02{kp7E-%kO}9j; zy0{{vNds^}&9ktOkn<`>y0DKuV62(*)8i(}-K?S99V`X_yt$@Ojx0t78x)v0?-moh z1WKdoDm5QRh#DI9MkMqfPc~%$Y_! z^vwu>2BPiaqGj6wd7i~2{}pBhlTJ9j|H71g`wg`b{aU*s0nb1(9*P~?#=G4fGUYg* zfbIc|03K%9EsK&YuAvkO+tFuGjUXPPU zyF~ZRck~SXgLpzdER4pREIFvNEpceFTSDX1d4`4DeoI~@cI~Lm@`STPxP{ibkJj39 zQFJXpa=^Wu&6`cz?QRDe01&5Efug%LV5?Jt;XRVU6{>U(M=k08)hoCvk_=CnK@@p@ zi1HWKpX-m!SIOIyAtajdKnvjc-)-ub^NLkekKXa_InZ0lZ{yq<02|qe)84@8P;_AU zv;`9;s<3Q483~FCwg(sKX{*FTAgE8EE%hJ~bRF!ZDE>2$l|RF}Rv~}t+bOlySfzT7 z$fzPDmtAwuWp3^))@+`oGC6~qUV}4E&e26z!OT@gGxbH!O0vk!qb?_fHoa!cz>Bdw z_8_ylG~)T`oe*sqg0)hDi=fLopE}R`i#2^uulwQZnmp@NK(j$2CMpW%wLD^Za~~N` zLY>JvPW{7cj3~~|VExl-*lk-d!_rc-dwbaOZIuue)U4qvu4f%a&X9WnO}eC{u>C=- zOk`?`sNk*gpu)=fx_Ux>etAob{Rt&pyIct`$N+`y_i+@;-oLBO{`zPJW>jRdsBKZuzH7qA%8Rd1aGf6XKrpf;HD~OyUNzq^70*wpM}S zg)Gwx&#t=1r=ETRv}~199YPb_t^G!P7iKCrk|sH{N#YLi2HlglFJi`yvUvr}{?*f` zo(FA9iB{9?Z1=iGEEUz|y}Lp~y&1cy<~#FRZ0dM#jlQ~Tx|_yo9C&9e8blL^{WT(_ z7sp|M#6DXEeV(aIZEcWMX;#%z)qO|=XM2Zwc~qS{zbSaLaGxN)0t0_%786QG`d55@ z|GQpoiaW#ly0NCETwo%@g`2~t=DC+=$Z=MhcVgv9f--jO-$MS89sT>;QK&jU=s%M?sq#PHYK@=sZTUR4f<*Hpek@b%jtsl{L+{T&kbtee=sZ zPX4<9oa}M6Wr{GVTtPu5Vax^@SFGQ!s z;W}|c&g!#}ymkjuuSP-^KsjNG&HE;T3RaSOZQGFShD*(ZkP4b9%Zhu? z5kvXN)wf^GIkK&4gZNUNs7S=O5ps;IEJB_gE=lBRnE54MU4|3Cz8H3WlZSgP>49yP zrx%kXo4;vQ+fZXelGwkdWCR$s`awikSzmS1u>K4H>7T6SEO|$%>{UIbp2#QQlj_kh zHlKEzHu<=KwKI`w{MFymxd89We5W{0&ydjwftq?z>WURm$w0DOX)HWx!B<--+hUtn zs7AlodZs}UFx-+zt!2MR*>FstSTDKpatl{IIECI}P}AA=f*&6jYkmHrrrPQ;*%G-c zm}MYWHKUOUwWkf+Bw4syh#bb51Y0`=hj;; znX}RqYt7oJxws|A)5rE|IpT19r@ByQWmHTnmH1G)M)q)7maEh1Jjl&q7hspde8jpI zJ(Wygo}Q1Re*M~{;Wf9NnwB^jYsy&|UNW*#sjy99_(j>&fwoSgTc*#%C1j}4t7)2C z{vBb_yZjntP0H@T>w6uR<+Fv#lBHT-p3ET2ITFT8h2ux-npno%a3u;E$%(&~6L9rJ zy%OC-SSLw=P)d7St*X15Ww!E=^3uL@tf)pj>yP!$+UV*BwY);Qfsa-WbZK8c*SqOz zN1*RY9=m)SD}5dsqBIv^L5&N2F79VDujzGg&phxSdX>vx+x3s8@=P*}D9$K0obySu z8_QNYn99HgZPBbQ+{dMn%fHn;eIsEHkCp;H#IDs?Fk*wDZ?Je4hRkXkexDWFjc+O% z>7m8S%r{*zaM)rI0tYN|mubl_%H?XJ73IH2GJG^480BN(9caG3o>5py*r3*sIsE|i zV)#qz{J6Sjs4Qo#&BmdeQYnp3{XMKnO$;5_3_bOpLJa?4rsoPR@T3oD2I3et+xAy5 zBz&kcua1%UiB2QA602DnCwUxCQvbUnJh{N!TGVIwveHw_V0OIu(KKiksoi$DAx zBl02F!43JG>Mlz-L=ex7#u|n6!P}O~8FOsS`W^Y&8Xk1uYwRzg9AOkX*bF}!vg3_} zZ*!&O6k2sMXrw7l!E@9p%wkf(ytI@fwZTK5BeLJ%Y332H}?J1eO`b=GKw?|Bw!8Ky@e}38K!H z$0~e>;V>q&C|=D(ne}tsQ0IJgBcqTmW$uOV5!*pBn%f_bTl=XMwp8cTbBwA3$&90#SED1ODgLEYPSKV;u-Uu-K{1$dY$ zD|eTS?OCC3Dktmw3on?M58zN*#y#GRG75Jk%cEZbBK+04l8=U&t3#hKU7Uod0(<$k z@nnfO!~FEOYEgQKOL%aRx${(u3XQ2>$NuIV$w%lD)U8?C1L$Q@R9x`se+||wRkQfd zk2hbIjF2T-IvOHTFk#NJynP=7jg3C_Xj?0_k}dV_cAzX)ZotIAd;~-!j3S3qc{?iq zW(*qL*fx|Hdw=b@<-|y{vIvCud=y&tpN6ge}#6c~$PkqNybQKL& zZtsDw5jME=#c>s4?TaDel!?WSd{Z`^6=aL4mc9@Liy_B%3Z;wK@apEYwDro0DM<3^ zlF(8Fk1ouCN zbc0uNY`x;>idoff{jJci~uEPyb#?(wfP6VuD2w5x%aSAYey+_MPR7nxyiz z+U$t!+|gOOmt&tBXv{Vv#YVPaSRXsdvDf_0k?;NOCl>gt5c`@70U&z}XGmnf;P33K zl?GdJ>zfOd+JPtI$WJ$AkSnaR^2rYjY|xwu_0nUo@G@Ya6pL&xR!j&bbh<+MYu~zN z0K7)Hx9vM5Z96}Y2%xl)+QC!HD$1vC`K-<7aSwA!3lQyRmEp?3@*QT+5#ma-t$=LQ zbegmZvO)4jSyy$1De~veDgC*!o6{X8Ti2O0rrNY&-(ML{Q;ogc^&fZ0iSI$TPGJqp zWJX^l-mwq6;wCk1YJhdH`zo8VL`BW4qtLXJyz@W7IM$2k@s3t!*NL{J;{yO~5@LQw zkD~-LYtU%Rzj#uMrx&9LCj%(yt=o|@gvWJ<6_nsQhQm= ztQ!-iZZk$=hrE@1_AgSf15RZHUE%v=IR`^6Za?g)M1g+u43mq}DjsyDwjjUK>=c`?@IVXgr@G zx5U9u`Cyw(HHgW{QrV#Bf-G%DWO34i<4RVb4#QIq_2Pd5I*vdF`44@VRD3nx8*0{S zzKnliXEs&XDM~Z1*|YM`-k?ZNgKoDOXj4@Wq@O~+Er@4UbA)uN56-soiQe0~TV-r$ zPke)Fcv!}&cA9mveZLr%XS@wP{yP4b$8I5*+B}6AVZr4O@v`|D_6;`)*LC4#sZM*t%KmNyX>IGd0|*`fxTReMnI4-mb2k zgMLK_en$R$(?p)0D6P%Eq1)Gb!2DT^$dsB{F&DkJ|x{8#!qyFGU&E!4gY zR!3Z0gY;i^k!MV!U)a3k1l}a7pKpA@AZAx73--;>u6O^vp=qy3hE9BrvoA_&PpvaeR6wS%1-<6MEbz=5mcT$hPRe$B6 zsL9J*oAc`#SG_G`^+K00K6kBNqL}g#Pwjjjev#*(!VT(0O(}p)1k&OF-U*TyDXEb3 zcHqGX>kR(RSRoA%}`&G(_d^?_XNIvoi8cm~WP# zHj8D2KfP-waZ=Q$T@J?y*C1g*jj@t>BN*fujBrXj{bR6Uj<)-U_p7s$E87Nhu1a*z z)1YyAEpZ~fhVi#LJF%6~@LK{Aa*E?yZ%%i$`ev0ixAztG*u>yiodBOLoEp@`K}Z&U%Agi|@#+U*iVYKcrNQV6y*+B#sCF{d95n1D9jZ>_f?6RGERUh`v(&up zr5Uc)oj$0IH2!QDj16Ro3aqx7hJuc<&wVH^r-X>t&&b0hyxN&)QXV1EC`I8$IV=h# z2j${#!1MbuKZG?_@yX4Gam>)sErUwDBZHnimOOex6J39)!v19PcN>Bfh?tNM*vt^_ zBrr)6v+Rgu4G^|6SEUb0S>RhN)8f%C!ZCWwa*g>D8~uT|gP8z=SktqrIV|vdip4E_ zzWco1CU8#Iry}FWOu#HS5MUi&gyYWpUb{~@4d3?II&Zz0;$zx=B|+M|F#dCwi`S;I zg{^vIq!MWemtZr%z*jK%FK?u%LR22&I6+b-8nijPYDHzPqLlLvW_bEgx=4B55q}ji z4MHZ31p??f#Emz*U7noF7$jC?ohy+tuX!pN2TeGJ)1kz%f33PiZ?7U*>}$}0-%tht zLXSOjVgb%gdAqy496tzk+deuM93CuLa+B|bp{!3>B+bLUvv4jrX<+6HH6=-c9l`Tvs1{Ned|4(DV%tcy zqc3|J#0W@>MXbhcCj>o{nRsBegT4vvkZ+hxAJcPenOQAs|tbpKCO$iQWU5c5=7lg&OVY^XE@d zeXjlwX*ZaY=Gj{+EQHE4++jAXg#ArS7$9Eg`~a`;vjF7ri@%aU-Z2;MB^dB-K-`tP z#|a?LHm|odp&d7($b zT8#)R0&-Z*n&l5Yn~cS**BOtiMtDl?6S&kpH^UC9r3r-vxz=uunCVun|f;;oIh(? zZRG>iW|!Gf_PP1!7A65?GZ1Dn>)w=k2>qs0WEpr1=?WrqNn4H&EMzt-2inmikl=Q-YUil zOKip+2pE+(kKT~m)`Do(gLcpcPVs^xVZ)|m+On+L0*BUc7-t`{K9rd??E5I#t|vU( zm!NC<3|vypjeosypAz&qhv|r@$53W~x2>N!rxTLP zK9+&${C;iA8u#{!FYn>xD50nvxLXr+ZHU~@we@nmjh&S-G{oa$$>v`G5rqa5L-NE} zLVusnlJo5cIm`|ozONq$6fE{8p@-2%@whjKzPuqG2O&1cTU>4N+pH^CgXRGThW9{DI>NM1!o54!hpYySnFLqhXyK; zq1*^92CaSFx_F!!6PS?&q7@PJ`UnO+nB3oPtYGne^mFTZv}*8q0trHVU(^zupv&@b zRK1V$QT*rZ(VlQL1e+}g0-W4v7vM2@dBaX#_d*uo;;h~C;)A_9GIS?O@=xPb-eh7^fwh!3@!_LHLnGL`v7!3`+kp^cPP@B}V zL0MUaM@09L79T=WFJ|G~BZ)j#Or|V=hf5~Cy<*AF7C4?ZgO&hReG~jh}*jULh+ogy|Ya=9u!3E;H1P1A;POp3T+|gub0Qr zP<%2}BQ)UoSD)##+z!v_0tBV79kYblVa)#Mm1l{w9Dj7?S1I9#-hKWd8n8<|EnNI{ z+ySQvr8nOge5e&0vd?+$hm8l5>z}M-_$acZMR0xGPX^whydOVjc-`o5P)+s^MU&9H zo=a|RYyjUUP$OAK<6S~A-BI6#uE9E>pRowxAn;(CtRc&@<+)s^JHOVip~*8QXi~ta zcNbuR&&z>5M1PR18aKh*=FyZ3e}0xN4Th)@)|tMbu8^;M3KjiG^g)pg;fjq0Gu~#k z)6zDWcOnV}4@?85#y2DVO7{2oqO_WN zqW-%$RPo6*>j902mSlFm%a0~KS>VtS(m@=Kb*{)+# zJ-QopIm_z~{J$v>pdWg?D=7AK>93$~5YOSVYO~c24xcQ(*^?x*k38OUBeX9HK61&* z#OL)d$aAal=cK5^_r?>5UytuBuHeG;a&Id*fDxhPo=<-ThLpD1k@+7^IjpBV$auBz zf9-R5wd%Kg-`oEh!_-$o*|2KrJvqY`qCbs1JVy(tE zfxo@hy@V;s8?BI-gZF;~?|`pi`-8nZ6vSvXi3U3x+tceEl##7=m~=aJeCiD?&&O}r zPJ%fq$V>x; zgmxPY42u6%U!dE;$p`xY{iP8autcVYw;-B8)Fcq!@BHCFwUCnYG63e=y_~_StcOP{ z#P@PJOxnsg{=Xk;ns3%N{(LX!d|al*3Lp+o`Z`mP@M?5&$cJ!_G0;eQ?>l&~!)9;a zx)V(WO%vPli&|1}?TFQQZ(hHg#^QUwetPjWl5C)F)Sw_QH-wAasjMLt?EoHl5j4$d z5pDZ3fojH{2YCZb&DP1WobmRfAn_I782}(sfH!G93=k2#UtV-3{_n=2Wd9BAoGgdz z#mQL8VaAb#oCm^Y>`4Z%3PVxtL1bp#E`MIU9}-C7<=vd{fTC@+*SqLnPCIX8Yg+iH(cCf(=eut~*{0S|MA*_F81VfP!x$A5FUc z0*6U?fvO}zK2lNCuh@&$(bnnpr0M851?-0C#AkNcDnd+HN(LQ)iRlm5CM4gjH54Ti zpfC;zy2_tvVu{HMzc9-Z+hLdw@%Bh?*sIXcxQBjk^J_K2_kR;Jkt;IZWHtkGrhSd_QAxJ^J(K3Pl5ujEH$i zObg}F>hksq zV@0|$!SHC*9EScs$sbx*7$Fg~G%`o1mm6~~{s$PW>^-R{?llOZw3N{6o}{fAvS+AL zQB}?|L4HR_ZYr{F6GNo%_zD(SmD4VJdiY8d_mRp^u772tDjCZ7?0{D)RjO1{%1jo; zEYt`ScnC|6Y^LT1_l9gJsW<2ote^-ZBd?)osoQ4p+y-lBQMsvk==z$9zsGB1rxdAJ z?kSQWdjQLt4zD24zYa@30lX``qre;dFjzNX+6*@b!9jF73X5Uk*d2kAZ0fP1x;%zg z%+5yMmtxhWk^ay4-l%8OYrobSqr)|~Eu-O3VU&=8#<%s?W@J1XG=0psv54NCovK(C zZ|TlcD1)$$2ilJL!$lX95vFJ4uU9swXxmAr#sXQqApr<&vjr~RB?SjIk))THCi!rv zb9ZB8UzS$n$tt;I~dkP5%q$@BhO;bf)9~-H|qZ_nHE!oI_9;HSL;8} z8No7Wavw_fA6^7k)k?@{!ECF8Gi0PY*GEN=Uu$S`c0@GWOYgez?_QqsJQyrG^@;X4 zl(0&eg=ZatT&pyQ6T>IaaWgnv^bi(O<%QdfqPs@Cq+BU6@VDk+5)r=5GB&DTH6|)oad=dD zWgNOFSE?%;J44y&>IDJb(uqHtj{mlO=2%1@Y2od55h0O|DK&1W_W2!9my+nkgS^Z& z&JvW<0DBb(o-x{MPnyJ~${7ou-N2B6FjgW+BUy6+-dd+fK?r5!p+e5~^CsC9OHdd7 zJdENDt-}(cWLoe_Rl%CB{e$s?OSL73VMWeYmYx`|yDA9k5~U&XkfHDTj~@0>gyUQR z@7hNJ%lwGlfSTlamYVj1#% zkow%s)WyrK5w7BRT%TBd#ZEH{iD%5r@~>7XU&c*=ak#9*qZvgd8~VQSX0Z`(&A@Jh z?%Dv3gHzR`tb0Fo>v30#p1)NfUmAE2Q6a#zCMvM<&R#2VMn0X6njxQ20bMb4_^6>XTm3ZeSelY<*K4eXlqwD`v=APb9gsL z>v%I;p7DGMJ6vw8|; zrH{=)skSoDQYramhOL(r1F5M_2aWvnN)h)Wm(Wh}Gt8yBMOe1m?phY2GA2R+iIjCz zJ+f``+=^F2Eg4X^;hjzaMUavdW_ssxQWGWi2>nKMbTm;d`8CctcBD?gpQIomRW5^K zB(RyHgfyxcb_Ch`@K-@Zy@ofQFDm!tp(IBOz?xbPE^@0J z-mhb~Vw!DE#ADCIXD;W61NCaNBF{9-6T>fxE7DlhVlafFT*wkBdjb(464AHw%UIYTn(dq4XPmf9)D_PU*YaC*gf;^bNs1i{19o{K#gY^>y z5laWN|0D>%zheB&qqR~n6I8KO{5Q4|V}AadAo?k$Y2RIg2q6?&?iOok#c1f|&A6GX z@cZ+7^!Y3E4(}`I$KSti!UN@pB75vzO*dD0m;qh9R9{+ieb6grQpaZsk`h+uW`35( z*Fb%~nmwGAB2q|RzEk30cNi$se$A-3lZ;C|l&i?eaY^3u##XabZZsn}3S*Xm4zWaY#!5WM%hh0KqM;(l!pF1Vl5*zhE9Y`bbFM7vqAPwL`vuv+``DH z5c-O#SxoZaia*xvXOLyvV~;5Hx^$Tu;q0)0SySo*ZjuC6{z-ziV)+Dei{_MKhBhV5 z29E+ogObA)c3+0Ixfn)UdqZi5B|;KL4+uMj7Lyf|&`(os-o!VumtM44tQn#V0M6Wf zn@@j#Wx#Up?LWBNfT8SAgg(6Tce4>gBYUU8HsuGs(jV+W?8)7f_ij7lawVr{%RS(QjNIP?->Nt$Jdr@7WQ7b&JhPz6 zDD?H-QEO!G7KJukg;p||Uu%B3I(&=-Eoej9+!&jQXzrZknBwZsqR=L>imsUPgrlx> zxDHMiI_y6(=z#N9`mEysQQwiNoCCcb)9LPn<-ottXqs6R! zkFr`wo3ILZ`2K?Z6M4k3&{yBPkrkm-JX*RS1Jw>rj=z3cYewF;_rTOIszf9Clx>Th zL)Jv4T*>z;KviQ!K1MiM@X#@W%?x=Bd#c3PU*FScRpvd_EO>P|BtQ&^6FCYNqUCRs ze77o1iEJ-LS+ucn5)JYGbs^(rU=6oM`ZZ88$$ahN!ANB?o#T(6Z}-JCMJ&1KVzSF0 zTtAzvsZzv5T1%w;)QAy!qY7uO55^j+$>jk-&1TEX3XDj|cokq7c%~sTnMRlsxwGT2 z){B%qA>Wq*pR^!7?{%gST?)*Oy&)oQ{u4jieAR|T5AZI~pdeb6rGqZpnk;v9P|$sw z|I+Ik&bTi_2qN7qrU~JWelmYsWe&AwVYFi6Yn)QH^e2O2TL~@yusgZ;o>?InfLrSz z^URb9+*_t(Pt;w6lfs)I1u|bo*tD8txSvceYv^XO4u3!yovFEKWPxomEAEX^XzcAv zoX7^;Kgswh6J}-2H7$}he+?E6=5vOA;!jH-5P%2leykwiMZU{2Y4v@+(^kWm&m@ao z=lm%+x+QBTE2E7VN)}JsuLX}Ju);IVenRGZx9S>X4X-4wUFLju@A3k@`K>zA;=A*r zlgNkmjTbQCnl;n~MWZp52^g%48W<_YBVl0>ss3IXX3NFr z-QD@rao8;=Ff{ITyIv;Xm0lD6%%c7%U+TqNQ>_KwkRp8@?6!HV4M zBpLIl+(WujSL4xUY)e^>=qbXYC-A|GVmQp^HlDZ#SN-up2D#CWqI6mb2i}SsGY~pF zlokBzJ-R|bfp(C_WU5VTdb)SuWQ7UJ0T1F?2E z1k1B>W*a7ey6n1#`xabW{X)eteTmV>z4nZ|-EIj;SeV2z|KPZW`~V&koOr2fq2&YL z-A8fABjg}@0|UAoZbl?zyQBG#u2QcWE6g}LlKVq{j>b|@ z?nAJ$hfE<+yK2-sy0}ErJNcF~(W!r6k`S96X2r&wHNuN0V<|*E zvjnh3y4!ti5vYWa8Gc-IYjL5Sf2`^Am}mJ1cU)wa;XOB{ za&oe0j8#pAOb!EdgK4Mzd9<=p$~C)wXq*CVdQ_)9ZdSX#79A;Bm6s7EnEjP#Cr5X1 z*5V}>V^B7Ngdg$oynX9nP_Vn5FZWDLvRlwIX*c6Xe?beI*vrPQ<6LOHsPmh-tX9aQ zFZkuJMe<=|dNBPZ=)(fCwOd5`JA!NxC0vJDs`~8_)0{&(iq${4l6RPwVg>4|(jxMS z+tumTIyv68Pr$z%!gY!$-&0^nBRkfN{jd%dM|4dM-d+D?3SxRHV2WgnO3~e*9bYNy zLJbNNiNSzg3hbR9Wpm`hxWvQc3(~Q>i95u@b*`R{=t(|4^JR@OV90pR(Bm-U{Zf>Q zpSlq$PeZ#9tDjW}V8`D|+oEBstjR-f_%@}~-0nXhv-ijs_PJ$lV! z2J`DS?F0JaEea|109|@FwRbG+{dW;^8~a}una z1nRQ6&ZYxk5VsWJ>T(tOZ!_0i3n^ab9^tw!1S@AEzH(Um6#gB;z=i6j~Ff%(n!f{^qZzg~9aa;|JZ>kDPf43o` z*pi?RQ~98#;Q&h_5@C@9y}!>6zmTs2bSuG-*(n-#MhkX9uOQdMfmP?o0_Ir;cf;)| zKN9M^G6$&vobNVNCX%|srzz$4jSNpk&-oYCYj`@!OiPlunpRce7kI_y^NQYhrBSxB1i~Y;SjC2b+!=p_F-n z8b5YbmfxVfcn|*5@?x_RDtQ!~nBoBavvTlH{nBm&jbpFBFz4CA5>yJ=B zHEmV(7~^SVG3wg!=9)(->*%t&^%SQ1&zi>2DgNEVU!H5sEUNgfF-ctN{hFMjQ%=uN zW;*RIKNqe7qX?S6|Zo5-_i!j(i8>deSwAlbSx|cT@Sh z!KEHn!XmwlRd?D$dLhUMu`NC-ypsbS>J?LxYz*=sc{&~Fu2M;gFSC3=3h&H~ZmV{! zjdJqm&;W7x;jlLB5PVl&E@&n-dbCwl;r$S0uxK>dkqKrtF6&t$N--cg!`&tao4O&x zcd6#(?Z~^PVmo#QEZyz-<2PcHulefd=9rSJbZiXwEPN(S+DB<2w?XoDXV#^m)axeS zfmA|}CVd^BP(Lma?FR!V0q3$}AklzshW-G2s5>bx7ug<#{VvM_E$vp`73TA5n(ZbT z9F&C2GWPT$3vb2nO}rqT?X#P5lFJWe;(DYOOv2P>u`ig0{FLfS33nLY>!z0RjHWkJb|I2RI*Th5i3Gc zc+oKT+IS%?$7cQ5%D58FaZPYd)W>SdW*iL|pgwB1nr3LsR%?KF$Ewc1?7vD9KRcW> zmC~tDG-&{lpmWrzm9qD9oqVZblGjxAxXi;h{>ZzRDd1nF8#kZC$6cp>Jn=BGNBmyR zP2Po@^-G#B^Z(XrSU*uDn_rK;io5O#%Z#9HjXeNEV7Kx&VK!61&h5sKab{g|V4eYY z8iIU!|Al-89T(crcbjax+WtvNJC_MxmXH{RGWt2j!s6*ZY9iF?<@{|ru*c&mNs117 z)>g~17J5|Sk`&6$%MfTlxtuk)tyEtEkDnIOYBZLy>)gde&mS6L%;z~UrzF2>Oc221 zFCy&WEcp*k(PU0R&e2QsK}3@Yqh1&-jw8?|(b9hm6K!C`?lwm9;=EjmkgqzOsDS}&HcwENXA)2k7HL?`$C-vK-vd`ntx5@GsV4D4@iO3X&MYU^&ojIL zx<$G`Lriv=711ItqlKmo74EqSN5o3UHVTjLp2hKU8d9kS$2;mW>aI>!Y1P%+(-3Gh zUhW4W!2pi4(|awxmCkr%n?YK8|2_zy%~!)IAkf-|tDc^A8f=Xu=#FGI$GLTPwlAKs zEW40Gt%SpgCl?(9!HfRMJDiuNFCU8=!|xtEIMMBZLn^JZHPF>Qj8BvbHz0sVhwS$q z137lBXZ<`E^woJp3yYhU0Le096fgYUKez(tJl#&ry`oK;5#(q*3HPE_M#tI(!rtnl zFOy&K+-0$7kOW;&j%-7_*GO&$0P#NBvOW2vh!>>WYev!HGboP0lgT@`GpIWi+Xzc_ zS`EG|5F%6>o#ge+sCVySCbr514}m(qi7U$#FvN2y5U@l%=enU1x;;)gB7<@oWqSR& zTYQzHNrYElxosFiJ3t_}4*~v06wk{)_vXZ(9Tt>G(g@0D_3=a!BFeZaJ1d@MUCKg2 zL`=3Gev;eDLc4SQTb4?WmGmASOJ*PCBFO9hyfjgV8LeRiz(fE)G=wMTJ0pmwES@NvuH& z@elv)G&yqGNvD9#qs8$LPR#Kq>Huz*?r->@K0_JS>k?@IsB<(lWUafvPD2h0KKziq z(+e0)CXK5bC@L!6oL|g_rpfus9C^*uWozSwXSoq@SV+`Hpxj6e0Wxnu(enRCJ<|#>Nrt;NR0Tb1rcp)hP;s9FWH$Y3i z=#juXPBP89ScDz4Zi^t1otwBsZ9|m32|aYq+!zQu1cPL#3D2!QBY#dV7t&HmItw}R!CXiN1NbgUK|$U|z=%&^ z*^hp0-$(<$i3%*=&#k$SiGAK=U1=uydvrpxh5urr(nF=_U$hMtxP3Tl5>HzuLWXsm zsnN_@NoC1y0(qb4npcM9_rpq0%}{c!fND+DDT63sUgyh2R1#TC*?W+HLM5K zJ{y4&5HpQiA3i=x9FCHa!Xu4k-gN!!92t{`r7ZxEVxJR)_kyHTYinosyLXhToKb=U z@9MFn-n)H&I7@U}1`Yz*5Yc1>n4Z)Ai&v)|?h*92{x-wa@@jP@t&2sl%Wb0M8ZkNS1r!?D58HW)n&u zv?NR0J%r}+7k-f}SoFyms#%0fWC%iwxQVpu`OzcrD>}^S`REket%x{sL{M&c$Ej(j zcMI4cFNDAiafxMgZ@aNMTbt?i98x@q%mR`=_g_DKe&zecHxosVj3v76hV;&Eu=8{G zS1Q;Umh_Xb%=QEG$R`5GKnGH^y@gDpN8^vm<%oE89P)t*meD3Z)Zn@2HFauM!a29)+#uCK?7l+V_p5 z_aF=zde+$`C{bu9(b>=EwEU+S#RIlnB1BS&%Br`#~3+9`k zYZMshi<0ow@L79pNHjUjqWfq~DTC(Pw!F=q09V__Y|B-8|N1s{1aS^6A{*`8xM+G@Q-rhSm?XAiY6{rDP|G^zhQ-}{nR}6%cJmAof<}yb;MELwUIVKUlN%5849O4g>FV*cLtTf^$W>R|7S*{~m{}~k7Hj)}wRvMaXCp~SF~Srxbd!1w`;22LV5;~1r1i2!RC5$wb7M<5 z=RY_i(f?Hxe^wC%#=uL%atr#@8$1`?9p@idDKTgZrQINcf6)54?DkyESmOi?aK8)T zyb~I7%_ChrPuf1m2YihnlSg0&l4h|%7q%6O*X*2|6?9h+*-? z+i&WBduT6dk|^@W31vvpXo1fjrM0zD@yTU|N6yW>_RxtBXzi zE8Sw}np(0eCmo(jQr-}r><1@-^W)OYDMBv1BFm<$-2uG4d5c4i(5SLkJz@cB8wd-haTWc)54CNL()O`CANIiNsDJtNj zGn-`}@MyrPwnp1wtw<%=DYX@S^-fU698C&u9pZ8s*F9W6-J3Y+3B5|q#$N$|dpP>Q zHjj4-HrWRsCEula^wT5y$pbedEs-$SPd9v)<_uFX@Otr2a4C8HF5cSqmNB^gN8iDV zRwO%BIInQIjyh4U?}N~w#p9i!g}^YQQJRhK0_`ghBFQk|BIgj^Q+M}p+@FF0;P~ z_^3Z{2CQh(uF?Po5+Wc5E zUAzpL0v0Vv%~&)J9oI>R#IY!Tt9htSxM1Y-z{2s>TGM4DmcN+N4n!y#Nt&0)^x!4; zDrv)pHHpV6%9L5O3OgYpYf#kcuZOF-#QTe3?R9v&cb0Xl@JJ$4-FgL4OEww0Oi0pH zoT2d8CsH^FBoEF_J3CBU{F1qJ7~|TuvFSQoD)auBZgP(%tE0BZRS>6LEMU zN@Nv^7xZ9v_Hc7nl2ywBtJy=mBd)_aY^ErK0--&4jy3YmZJ}o8(3hV4_5Ag*fk`A= zM3cWGtq0DJ^MEcBI)GIsCi0`pUT2ncB|IOZ5O1zM0?0mIvtGIrVmKwAwi7c=V)CsY z9O$!WL!pk6-`#IKS4cxu3yc6WJMu?UP6ztjYb|n6SX)0U@5G^{rhr2A$uOt}8ZXqR z@-mo2Sb0{-X5>Msi+tiW%0{4mw1$){HY|4g=|uw9o)ig(cLu?J8}*&mSV7~M0-m`c z4btlfX16bM%%EavLsz2I; zIG(1b+cRoN-IjuniE|Z=)CNC;*a8cs`08k-J3+qwa?d84c`foPr`RlZ6~&^I@Cpt$ z#vdjpbXfz)g=%(37PKud1MMa^8EMf}$a z>!$dYHcy+5M6eD0lzkQ$R>Mx!{N{HzFQMbMjFoU+>S4UZGeQG_niA1?P4=UcwDt-6V(BjFTR4o=Iqj~CO+{7Ar0yH@thtYkd; zeQ^p9i>t*iC0rImvrcu<`7f8NHtqdbd$GhqRepw+=^~tl(120}&j>?@@1vCOBX$UD z?_FA>FvS&B@n^zvt@*RUhT1-7`z^~BQS08SBQ}swEN*1Ucsl0E&M7fS z!697={vIfaM^@C1y=GVz19HfGWm9MM*vLa)ByhYMyNc$ZJdT;aGHdu-lx~od57IOd z8M&mY1m&b6eJ`=O*8e2=J`d*Zn1K~naJ}W-W866@jDQEd#hqL(`pYWgT8->wr$py? zpEyKxcS*$PkRgRAo?_#F?*2Mh2n*z(Rd{}cqpC+4SfdjK5FA0dShd_AV`F!|iUXku zL%^MZ3ta;g|1vxFaHF#QcDV$pxLGRQ=t&$nB!0%tmCqfLP0Q-Xy0!X>ExNydFQdvW zlB9o_c+pEf9TfI`%NTxI}$d^(lQoe?afy#%7{~w$_ zb!w-8jrvzN)y#sjrc8nXD64;%UFss##?&1ZflT&ucrGT$6!&**CP{5q4hJADCS#!{>qP@~^A%BNI1NK%c~{IVqwTSam| zGZqtrt;wuu(hdb=f4Lm66PgDxH~(EjS5{&pw%pGnKi1rQG~$Q(VMHu`J51S?`5b-1 zW9xGf=fQF6f7fcn^A~lcUaQja;-b$HCACI|1CR6wy2Py2O8|02p-wXfh_nwWwJ67Rq_8YYjNZlOG3`_Aj~aDeQ=(Kg_LSubp=~pMvBDJHfhCWS&uLp07_#2!++)XO0X_B}*?ANy z>MALF*kx_S&W`d6yR&BOLJ71~QPWzu$|sRbL6Sv^T|@P?fa!KwQ=SE?y!PAZ4Bb+f zpnq_brz9OE-)$%A^h9|jNa}%^DeYMU(-({5Q*PWlsti{8YqC@%oZ9jj!DG8 zB@{o5<7+&_5_!>UTSAy7*ll^}GFJvFYxlM;cVrAbwA~@I?->PY`2=obh4tem_(WO8 ziCqZ2rRO8nrarAErtI6^c+%f8G;|3QCG_)x_3VQ!Jmh^+ppZy<%foz=J>_=!s8m*M zqo$jh-(qP3`lRUw1|Iy`L1)21UEdsSR|(1>4>9gTs4ZEibR){7Ojyq zwQtr4wGsO>3;PIlxk=nPQe-jo4R3!8{)VIJHfvLo|i>$X(TBo%w@cd(i-g3p4#6wJbV9K5n z^D-e7CGC?vou7>A&fi#a;g~);PjuyHU*-ivJTV4yAu8eRN@NoR(i)|f73Fdif1tel zrKZL(jL#|6ZW$|kDf)@2@7B!Saq6LqS*PG`XtZiYt|?mAwp$A3g;zzJ8e2s~hF5suqrt%FVHOPsAL^ zG2oIVX~=Nra|Kg~Qnf#gCw?WryogA2Q_O2iDIK|zkHhe&<-h0<5xOqV%z9SDJ>hzO zCPDcGr~N!ABG*;2ovK9t`D?=c>PXG=fH)B~oJyC`IC>W#6H+N0=?-w3M4gA_b~(@* z2c+ab0xe^2!xsJ|X}B8Lo*W@9cs(S3q#i;oy>i^~YvxB+6`I53MVc#4!+Eh*3RNj$ zKD?h|-XaYWY-D#oy5F<)nq-9b%1>-J6P zgs%1!Ae1D>%Vm2_hVCE%2PaQG+D4t|6oUg@YiM;yF6rA#F~iBM*)t7NW7jX@h;prB zM3$JH&B79jKD_9k#1LlM$1f z_~8~?nA*GuMkzYRn>E{CQU--o{3L4#RO*C>${Qx;tI`7(9)yFlKBav7^u$_Bj_}C& z6Q1~xOOTM9EjgTxQ<6T&B>YMe9gJnr#reeA7)mDRY6EU6<9v*IUl~DCh#;CbW zn#nqx*5$A1JbR`WCBAIZpt<>C!phq|*BIz9xO5y^4dF_(_e=wMSB#B~N*Uba3g z&nVvJG?w1`MyevQ)3<#r$>2?f{IKoJ=BE;Or}Xt6Nh&R&*Ux3DhQs6*j$G67rJag; zy^Mh&BQHk$!fGQ+8 zo0GFkx#v8<{mtoN0;QEE0i4xls3GVeB5>ikO`&y#3_ff&9FTa)ia3NOx3l4DMqe&g z{K+oz0f)FeVx2BWw^&0A6)X&Plf#44T+0RByqGMv@-2Fr1kmlENZ7x)tZumYXwf%q zva5ven15$pzs9<}|FtRa1SFHC5xCFuGjcvkbbs(NQUYhOmRkQ&5cu<<4;Mvuzqh6u?fb<<8r?03Mp0RmT}77a(t~O4`7+Zk!rH?>>Xg%dDEVB zD4Fq8EKB(ah-HmHp(f*Z)qk_rm7!wLrfH}+uypb@7XH9FAD_)#^T~%Jn?0>k=ZhWx z57m;lX6_m;Q}_P?rbGe4CIR2_I6r3h>5dns9Wu&R*jXnEwVZN=DLdG-(+!Ud$nPp$ z{#q>i2e)t>aMhSnjEXW|*)pvCQKP0Be+t##2pAcoY|X2?Da4wi;y6@gI22*gIC@r|cKYYjOE9^U1=S^MJ2p1|xfK0S_O`0v@i; zJk1X{L5qHjL1Q9$@J)J$Y{3BD|C0qxw@wqq0i%a(Ax2JKj?$~rRg(tl{14D9eo5SFn^8U0$!iQg+P({v|$ZmyPaVSHLh!}Q_!qWXJe z`lc9?Ct4Wq$h^b9Ql~GU6k7hW*vVWE$`dA{8L=b?_`{}9yd>pBei5a{4{*Awz^#Au zj6;g|u(sl>#FUTU1m~GF2q{hp{m3fWIp0{cd5^6_F%*~b%|2*mRaxHHj1(CG?1*_g zQZv#b$#OjD@}vi|A%R#Fuy3$flg-1|xJmFMw_fY`aJBRQv<0?mGvzv>_dAM2vsMIV zY@iqg1d!Z(LnckIE2CzTkzo1#iMv_$ID~OFMWhI+8V&Wl({l5CDnOh3ISM+mx^evu zV19?JM3ve0PNF$RC{EZ~RB24#viu;?%bDpf#QCYiML#3?!4Uz(ZJ4G+T$nIEwz-2| z=H|dsOPQwhRHI~MXK?4rx;CRB>iy$MitVZ4~A z)t*svwW4jD3q7TD-%IX`p1hjbTNe8J=AVRSAIDGxV>THCpm{NI1z%u~Kgs8mntdW? zb4`$0()fxaa%wtjRAQ}ddSj-|gMlIj<;N&9$B-aIRHjjPZZvE#)= zt#K{Q)V*>i$k9W&upwhnh$Q`EFCfFmud!xx37Gcmc@>z(SJItU!3JyCPOOZpU*u~W z(3WQ9MHZ9m@zVEYV$aXIx2Rt0qh>J3jn{jDb2J$AT=g*LNii9p&b6B&R#hDl${j%> z;2jOUE;^fyyD**WsUGj%<@7IwhYuKQzO&o~HjdbT99hMmeY|aoc z;UZCTU9c+R_9Ao8(ner?&ath5bBq*0oS3!9fN_DYy^gUeZ*z0`hV<4Z_@{ohAF2nI z#lm&!wMyb5X}bkU;n33l$rQUH_5@Cz*e{h6_hKqG+23V_X$%cF7#6pc4G)u4qgeT- z)k+F>uM~A$>HVDBlvU8~bP_mbrE3UyVl=|f(I1b$QBIRv`lS9{F?sdV0F<+6Eit2e zh)5{d$s`fzdf2{W(HCSl$TvgV95imp=3?X+38_-zI4Ns{?L7gCb#hGVJhwxeo5eF} zmMrV*rM22>^W}3GbgXiu(i{oNpw|lw{nOEFiZ#+=A}tt1ap{)C?xM6-zfkrImm5pg z?sBt+%Ls#r8L(=bc=n=sJGq>TuaeT*RfDzZ!SvmYoMAKXVL zEE1s)7eHYK3zYCy^xxQr;43Q2=a*J3swRS}nNVX~?3L4orhnAo7{;MHNr)xre@|Lb z)UnJhV0N$=(H>X;5B)hV$q>%C5*(UDQI<&rI{G^T)W+r=(Pvu7@2ZYkiT3{=02M*% zzWPF7%BluF=4uP!S_Q8f6((j*hu#gA!K;`sa0bi4qRdt7xa2}&QOrR^_(?D;M{vQ4 zMS%4_Gw!7Pg^?m?1Vxr179TegS*x}@&qR8?yJ*a8Mij;uqr^m*616zO#LFvl{P)Lf zDJ7D43`YZE5f216%zTU~-5V3e0EllIE20hXgnZ$4ZRzpRZ3&IkNq`ec zh)pD6)(aCNdt>7|WQD;J;R+#$L@0lIFh_q@-v0n>DR5Iu0*Mhn5pCPC^XpDx%pEZ~ z>Xm?awmpxW7kE}Q(GX0I7=yP2pn_U}1-?=dJPGN20=X zl1wZiEkS=ou?NS(&YiT6TwCIhz`3LufeC`wAs9+fUrrbDdU-ci>O-6~!BqNw@;mUx z-9ru0DpaVLphF7?SKp@&uNCgHD#__;H_)V5VZw0|b5g2C5|gL~38d=P)QR4qRP?XjC47l9W=jykV-X3L@9P8h`|^F#&@YQ-ggJz(L!?#Sc$$V%`kw7 zDho3OMaUU)AI{!R-@ccG)4~iJMzt+aZt!-(C_Y3B`hRPGDp$N;K6nC1QelL|q@oal zcCf43v6s;wXNz;p5}Cx9aDrK7gv&>Cz!YI*+o}7kx8ap8;)w(a!Xd#m;_h4+L(Psq zYaN>S?y`-Q(kuutFf}k^#=dZ39abfr?%3)-!|dzJImzk68G!0oJ%b*vTw#Mt88Ztv zVmMbW5m8pPni7OeL53jO0E9t?5DbrRJ-^#XrSy|PP=NxkTb>|!&-p(;&X;-mMkHyB z5K|Ueg!7k#ZYayL&vmqe<|#G6sKiAA@I}WL6s%H9=5Vs-wH^Ik781Hhy46?5gZMMh z1|ptZy4yly(fq1BID}LeB1Q-ZK>?xJ#=G+Qc!MosSO_LUAT#-K5PWah@Yzc!<0%=7 zaN@Y30hez705%kEnI{-=Vu*;t5QVM?L5N^Il(;UGOu_-R?%D6k8Z@r4Ty5{jH&)x? zwX0<)=m;eSArXOx99-c3+r%yD>_;|Oj36t(y>vz3itm~1&&Jy!OEg@HaiSI(Tww>z z5OrWL?5sOK7DkE*>g_;bdMS*%hpQNEFtPpL=06HcE}Kmo&8 z>qG#+q(=t!9q@=c!T9kV^j{{Y)d~TClY~ZH(XNXM;Or=zZFGA)Wo(50AxxzQQnaJ+ z8s(Gjr7h{SI%g1M`=v*xZqY;qB!UqLqEJJ|uwe*%&*=Ed&HE|#61ijuAqWAh*B5u` z!*06I9h>ibYFx-&hKi#w#^{C3kEc_f2_GEc(?b6M>`BC8x)cIB=&lG+4js!j#|N%C zZj3wWH9v^TC1F;W2-IvHyeu>tWoy9Xn?+w_IS@aHdU||63j5Nf+*hO3hX%jf0T01WiHZ+sdNMc5f%`H<1Pe4513!6f!#hb zqg7>Gs0c(^i4MFG7y}?8@ic7z0P(Zxhi^=T^zj72sHP!t#(+G$L@~k=r^BUCpF&vq zc||ojlHq2SFox*3;jq0`k>As^cXbfdG#nVJs~I){trzOh2&mbdOqyvmL{Vu%mKO^Z}0Ef@uibfC*qnb0d(MpjR1$v z-Ls}WbV*SmsfqYu07PKC;cIj8yYHmL^uhy^4eMc}4>$6yq9|xJP4(h9Um>><<`0BG z5Nn79cvrZhzjUzb{{S0&Mlg2qpQ#)!Ajev4^{D7F{Tq3vF(}&%N-H=$V5Qb8MI_4PEcMmEs+WDBZj$3h{vA zitk5@GuhL!-7!U-u;T<=aOb8--lNIx)+OZg&V<$ zxWlke%E9%1ee{wCFOIk)$Sj2XE2tXEC9w@K*{(g4u@w$WtiXjMNXhJB*j3Eo>?4*)&EMtZU z0L~z|qPw$iN4MM8LS{3H5aNQsoEz6gmAgE6%g>r2hmJUTKqXkexRdW-c58CRBk>Rz z2J|lq9WnX$c5bGz69_~xjA9-y8;S1O?9VRRJ_OGQljaA`xpw~mtk1jWZd6Y>rv@M$ z-}km>4wy`)%Dq6RceP2ih};MQk$p`}RYwnSd~`B8(w=&A!-EWdw2!?z=4M>+#V-8!@$- zjM0oE8^VNt?Dlx^wwpp5(6%+H^(?*`asotb>>hTD32s7fAiKi-GJG}{ouA_$`&H^zQH z0uu*fD@F|Xx2*g9@ZY}8lsuL;9$aG{C~eDcj~2#>a5fRUcZ@B;*&lzmvpOCmcSm~8 zC~~)FM~H0r*h5FSaP=6G8zTtBm`3Iu?O=uUHquH#0KylbSZ>3PF$x~9Z*Plt(jRGE z0?o91*@Cz%q0!r)y4>SQX}w5HN*loy;c>zc=ewH5gdyzrWla8(A+?7c{2HC#tY@c_ zI5EM;h9hg=8qyubk%tRKh9XW6suiZgr?anQY@&f+h1=GIFeo?670<)Q`X-?~u@(}> z0E8hQoqN_>>S5ClyS;MZU;qLu){7I2FQK0`(@FxE0L{Cob`RLa8irEGY@d!0lCZeI zkwy^2fr5-Y+&>+CIrKt}^GbvV5QKWMasL1;_Gi;)RA}f`b|AeBu7<)yK5%w){5JK` zx_kr-UM<+&zjtSM-JX50rHrY5txrD+#C@@YFm3hnctcW<5eQ>t%s)2{9)8_ydwV1B zroz&M(cQQG;{+X@S$zKh8W@Z~FaR<0L%+MWJss9>vW5UqL9d4z^`NtUAAgH2jV+T* z)!*sou+Hxqw;-jBKwImI35h(Ljb zism4L^2$CevfCp;5~4FgY$7i=iY)e9zdqVXD#b8AH#)DFfIbS`@zNHc5chMi?Ae6EKuTz%Xp>29a;D9>B@y}SRrD<=yg!yiat8} zt@gz<)*b`u+^!KIrZR;R6OWG(4sc#1z!43C2(1nLFo(|ZmijItE+!mZg1jK-diGy; zzoTW8O$;DWLd6J673+ZzdB_)U-P@MTsGyPsi;H>z<9WBY=bwu@wo(ey9=vyVPFT31 zOk({Vc-UXRP) zObBf=+Y3BHJ+yTqmI9zfz{K~iht3z@ZI*cHrEmGEGxGO*dLGNn_G z2ulG15rH!Jj1M`755hZg?V;l&Oi@MwD8U4<#BnS^w*EJW+p{hGHe{JN04yUBI>Q2G z;TNBby8iks!dD4l3~=Bw!W~Gh{{Wm%cZ)2fH9jCYn^NG_$G7EHfciy$^aJ=iw(cGm zqg9j@cAREh5hCLG#e^pDF}~Z`3vILEN6=(p41}OOA}}e-F*$lbb%QR*V3p%2by9dq zF9@>&P|7R<2u#8{@1KMGjkH{Y8Nz^KWC9TcH^g9bx5v-2)<;h)V|{Agj3OJJ{yVq? zRLyA#;eAIRJTtm9wPk|`pR=RKT_mMAV;AVl zb~%k2w9nSR{LW)(sCu|ieJgOiqB|Q=1RHuW2t{-kLLi$9h5Y<%q8hZt*`o#+ffgm} zn?W0TeRlXmcG%KHQkWwMgd3Q}i;J|vu=Cryr|*nt)>>R)ctQ|DW);Fj9O2iqt0+>= zT|*enwQbo@YwyY=Avkjw12zvFd^>oLn&qI(vpWp3K!5`t9vj*22qx-u#a0|{yZI41 z&Hc7Qg)8=HDsruPz3~{anoC%oU6;!UU|DIH<+Q}Jvy@N#3Nm+n^pj+R0)k<3m`4Ik z6t6A5I+N=zI2wTDXwClspC0QYx)iLg7jZ2VM0Xg&g>oca))x}-1R-JEF3WcJeB(<1>YSNMqvd&N5ugL*Yda{NW+H?v zGY2oR8==c-4u|-Y&N;_*u_vxEq%6?PY{vZBz?v8*JUJskBLim;v(1Jvr+*L;XJjqDTbIayaLWT@GGdY9la|#d<0$Fvqsk~_Y_opc=6q5jMkFV04*#D3aZhBw!+`dcTyQr@v>^s zgs1Ah#0}s2y>^doTH|%Zd*R(?%37%gSgJQQrKN3AGs|vACAf_!Qu#qTV=d=MIFt3= zx-FYwzJyrnn32Gktwv*7g9E8M4AV5vwuvP5`!`!lB__1X%}R+iwF+>Y5(`YC8X2j~ z0c7fRKjXdjWlS!T(?(G}L$&GFk6!SDM#@dEFp{TD(x>nL0DjxDqv1#0YIr+TVr-l#Y+KgiSVU(Nw{d?5;Vq~H*d z;W{URGx_6*a&1thz2U1L89Ke1F5Q&n44qNZ!D<>`&u?y1v=ITa7Q!MFm0l>*n^(e#hN(ravkZ7u;{>DlQ(8{UnOQZFRe25}h9 zuxdiyViJsA-moTN#N`nymKA2-_M@UeRuGQ*@I zdrsS_a%NaeQ|SowZFZN|ik)2HK{vXqs&^!a5}exTsA<5~7SoUzX(pVgoMTa(cPBp5 zBfmKAr-j}YGlP`f!!g08r&h5N{LU{WCwNAyM{ijAN&~-H5~FSOg=!SwtWK>*@m}aZ z1L#s|+4-WVE(p|d1{N0(dsg^>Fy|eSeTcM8g#~a6EYjcO4XiS976184U zidp6)=-Tzfm!v0Nv)2_Zw#1Ed9tZ68Y83CcLZzSJqg?gi?2u-^H7qg36t>=_(ZXPt z-4-JPeRNw=`5yyQ{7#PL=``b=TCq+JOC&ngo*P$7M@*-qm0gw?l~$Q8Hf>)wBo>W4yrN@OER>#Tm!<+u!EEx9KS*+F zd-Q)OeOEPE#+ywll%|c92{ckc@tDTph;9whQdd}ZyQmhp2cHJto9chyMN|AE+ngV( z77cS``!pP($;s$JUn`?^P>icdK;+u6^(od6+x18`=&4fRr>7F#{{Z?Orh4d`<_5V^ zv=P-BzbRq`!eMkvI5Va%Tz4%c8R?ufs- zodcwv?1ciw6X~8%DH<}R$*CTbX12dkcCabtbEd z%N$j@z7djC8Y~i~-ma4D$@%~*lA+xgWGQ^Ng!6R#!}_Y8xx9j^U}R^&KueWjJoz!S ze2NZHo~4C{8IRZQ+@r0&cYx$Fkm&p z`PJzV{{Zyll6v4rzz1-+TKBKCd8^<(`akNw^kHyZt!O#Vt0w8XVo=XAP7?ugnzpwB zOGg8VXG(Jk{#xYhnqtKbKgB9LOIhgIP8BV~B@J)Y$%q*w_sRLazG5+nr79I=BgRlp zG1^%(Qwi#Pn)!}Skz`@%T$0VyN&P0ZeZzCeXHE4OQz|*>nr>%O*E}awON6%ZE#ly; zK|4!lX(`Sk1RQpWq^0y-wo>wbjjjr=wOb$;H`WtXT?S;FFyEe=WSKQAr!A7;bPnZ6 z(UPM`B>Z!>SSRIfc5nAajJb+)LI`M~c}C8<_5Lt*XIu6p z?IlM}?}ZWz90aCM?6Cg$XG-PY2zbfUQ!v5D9#P3Pf1y8vjJq{faU33|n#$m#E!Skc zv9_@)=0tZ@Fx8sJ$Qnwvd7&FS@`VlP&rGNiTu#=*yMr273hm09g*K z^BsB$UHwULtjT36q-}HK8)~d(7e^)+Bh>jB@hJq7onP%mT35rM)T$)!x5wC@ZM}4}nA3Vibapcn z8($m9^@{Yep7+@fUMi}kdW+vX~(rPO*V4`6AQ3rh31bT=D z??`GF>Qh)abY^fK@`nTj69Z&pdiQR7daUS=bqc^D0EGw+^hNh)Z;bb4O(fhbvf%+; zyf5DTcUhNxv@l?<3h=nl0C>Xak4FCh5T$`sGNtm9{+`Iuk2Z|(wJI#KOE_m0#u1#^C*f*L-w#NJ+^F&_z<@!$&KMpo-MLxY@`t)K zZ_H3MZOWiXN)d&Up-FKtTD>C*(tLY5DH?F)GCxP|1{02SE4M$C9E&XQc|Ue6gNIKooOd8 zVRCZK9=~7Y^*>sVBIu-7S=D7(ta9PZ0!}w)#3mS+B7y&6R+C8OO|@_T z0GMgNSS;+`3^5R?DrI$#`&;jZ=jX|WI*BO$l$A2b36m=pQgTL|#Q4VrVpT@9oMyP< zSCN99N`}Mr(N3*8Z7D8PUYx{k>s=rm- zrI95{T9U~u?R+UQGI8?f2O~*`4YQoly3gZBBHa6Wct*K$!lTaK<+@P=G zIX5Nu(s~j)B4~g~guxY78`kvV8|~GiGSaG__J*Dz!v6M->nyGW$2TQ-t2x!KYL`v{ zid)HGbU@(oDwT`O`2gk0e5BN-!?`+?s=wiB4a_cuObVN3k0UOS-V%%U9c5IE&di;S zW1%L*;#EwN8pmB6o$1x5OsOZo;X$|BPaBv3ny+F0L1lKGsR%dvg(KF@>ebR>2yjHI!p{ilwyau zeC>CZNhO6smj-jwD8^8&K8oqjdLh`M_Nl^IgT$_+!c|)m zoZpEf%QDgFzld^*UAw5+MB<95kwFDtm8ncwfLJiXCVZ+o$C&>*A!;5^PSela4>j1n9?{Omuf8Z_>M> zQmsaQGK0q^43iN9EO8QlYR9z97L|k_59=!;E;DWz%0| zWd)XC3S&w*Q_F-*&Xr4D92OQXn-m;(32q4P!7L25u+GQixw1p@m86oEu%*m+%nU1= zR~$~3qm?zPN>-GOT_*~XnU8-MOp^&!GI?0*iNqiJJvK9_M`_V9g~;t0o@7F&2hr5> zy>xQjOA%Jnd-H_G;G=_N?uC|@UIlL07OPdJQ!OiyB@x+&UUZ1|49=K7pgo>Acx)E3n3 zY0CqI^DniPG|J#ni>WsW86H??B}o`6G=(}ZJfm)nN@it5R%E(UO;lHm-i~8KF1RCJ z(^zu3X2^AsFBpv9*{X_v>qm{xPg;D6R0l^#){)17G&kcQPo#qnWle>Sx@MxYHXGI?{IG!{i)uqZfy zyN1MGm1~V!v34rLwk0XDUTbn^d`9HPsItpO@QlqN8lKb6!E-?etjJe>Y4Nt}qsaUCp z8}@!aInhz0ru1BBS+bWPiLPvy#>!$9EXiB+lE@ip&M9GQ)5NG9qMS+IgnrLP{Nu{$ zIe|)oDD0Z=y7$C4zm{)Id^s+f;<_!e3XHnd2XfNGhrOcBuuci)0>cM3;#$-|H_i!1 z;wKr0Yp|e9A@&d@N8JpmAdudeftF%J2?#~z#DQU$4cU`s-J7$dV%(7%!XUdhnqC^f z;|Uoh>r<%pu_Wko-aFFb=qB{%0F{aaS%w%zq825?KFHz^3u zE&@BM1Lc-Sm4_N%7YNKV0cY}l>tWNKBel-&ZLNkV0)aa~JaW*V4p0L2YEI7^cd|Y8 z?fPI~m`^!tONWwP5}AC&rU=&chA4?&_j9{!rJ)m;P~SqFH(BYNRcj`hzPuT_cHA(F z0Xj@lv{J1h#33NV3Dl~)hGFU~*A-fl zl6k>XlPDgL2CbKmkTC$avVXKPQmKG*d zv3WBjuBrwNIm%O&q&Am}f^og7e}~=CO9>quWYqeVyMA1F^|k>FuQ*i`)w@}@{{R$) zn(mgD$p*HsU@Wx_b5m+{EbALf#7;Z|xnfuykEvXn8%ED;dTCpPyyb_MVkU7TR4yW? z1H++~H4yc^7JT>8#5TSd?8fa^jr2lpEN`*j)3%cHn$iy@0)_2hwb#T~InNV=wm&HEqXl}b zGYc#u2!ts4*Q16A?&-nk`}WexUU0_my9KbV-XbV+fxO4p_{t(zmICy1B4S{eV6DRs zG+^*e@gEk_DSMO?s3gchgD#zjbWVtk=Qmm7C~dNqDZt`PETY05Fonex=oxa~u{)}b zlUu@UObFw}FhzjD2O|byJ~nUY-y5W73{v;s@tiVZl(wcLZn$^CD(Uht#%P6x7>4!0 zhVCJ{lKq|Z*BZMJz#$ly6wAEei^D8teXMY|rptd#Eb(l_2qy;&AuL6}0x%|F+_pOJ z5z5LcC1oT8fM$$0b%d571k(C5>4$y26np&9LgFqReDU9&Q3Or2HtM@IJD@dUu_CI` z83MxsONw)h#tZ}W`+E0TN2&^^AQ3QQOc7nS;bDw6XUv`G@gpm2rHnx?qB7`00TvTH z(B;kjuZ*`w+DS~(!~{_Q6apXN{b$3jF#Ks9O)O&oVU=6X+@B5cWiKvP{yWRA=&Yz} zl(jJsV&8PbEe0WC^X&U;Ea|glw0a|{!Xi+FVI_pXoLC7gB>DIyZumoQ&X%#7Qvp~w zu*5R)m*NoW$N2o=(MRfeV3?;2AQ1lmbiQx>F1)(3qDM(A4XiF3gkFt~?c)=ZmHM^o z;xxjXvBD_u>V+}U3`|NBi!%@b6hdit3o6}D_4oC4!*0RVLQ;i%B;Gpp@o|ka)mm{` z!rj|5rQQ^X*a$n{Z#|x99VZQdLPwPk>JeAuvG^V-_Jg&tx<4vt+FTHeG`r>f zuTGJV_tBE!QP2Sb6cYr%mLmWY0xv%(?6%yMcKj*V#~A>K!pNo(hYBWQ7-4y0Y_ywv zcTtYvA(k?POi3)lgcw~2iNn@!+y4OB8#-wunt4(b3PlE#8(qSf`exAQ$bj5G{C^S1 z2MUoW3PJ%R3RLC_7ln5a%wJRee)=^PRN2rVLID`qAu{NK5{oe6j_p1>z8y5{BaDEW zF)+B7$}ZYv(Bc=o>=I*^qw?QID!CB28Xyn=gdsS+ULGCzoL9Hm9?D7&h!zHO*|G1> zoJ3Pcfxkjj;rPCE@Mh&|ik>i&0tf>TLMsjdFt}O|X8!<{1S(<|%o!;JX~z~^OWIk3 z`(nR5^Rk^pg;*s}6U)PZ^@WT^7*{7A4qWxNZSAJO)p<}DLvSJu=p3Txe9y4gZ|K{W zR_~+b_?1%KT$mq+jRvr?=*?oj%fi;cFNg3E%W+h4$dV|54Zw?2cp}ySzw3K;eCU#@ zr4A&qhe0qnW$O$GaSR!oFtB!ZSs!gW=uJ~0h(X`QPYU)6;DN{7}Bp_N*2PhVEQ3wosC2vg_(>n-QRQ>%$H?sHt^P z7-1CAD6<4u#7GM^!GAU#ar|hUqNPlT2_6`Q#V`UeMcAAkGP0eO{{UlU1|m8o2JnpI z7+`S={{X>`yQ3&Zghf+H3NZKqHRA**d8PTCzdL=KsVn~gRjfb_L8vw_m2!J^-wlR| zOv*C=fHgP>dH`^v*hVR{N-`&wh>WYpeAii=8GQuA;kd=r6&dXD?t2p&iVLmWap+TtP_%Lw{ zg4{Q#+trm2RLClTI|P(L4c;+g z3^4)Y#4M*@l+U_ff*auogR9$vsXENJ^;<@}jYx?&j)YKR2scpm&XPFQCK0f~djT7Sw zBN%j2MRsoyViYX97y|#QieZ74NGZjMX?xmb~Zq6z-%b$SzL3#=b z3L1sW#C_n`E`9^;0)m2qhM{utA9z#>3JMAuh0DZ!;DJFwK|@fvc#pggC@3f>Y8NjN z_ksll1qBrZ3JM57af~bv7x%Y#-A&K{VX_dR4V>5qKW})~a9tkwee~EEMi9@Z?xs}A zFonTe9yWiD{QZ&lP=@0$j3U|Zrcs0=wiMJ{F2*p1&A$o(kIsNacI}Y!e;=PzGtPt% zB4i_EE#q|T@o#ms#+gC^ve9|py<~hxu9!wJhH;?;d=zYkU6j@#!ZyOsJHFdDZ20xl zAz61X-uKxb8D&j$Ab|*3lqe`T(TGELjh@j%x*pE#;Xy(iDXCFoXBNd3NzbH7E4$=Y^}s4v{Yn z|lLnLtE>*gR8s6vO6q|us~tzJ1=$ zXN{D5XQ~3tnACk@Ii$<0_44q)vt`B|5K=fmuv>IG+rTgo-Q(RFC=zhX2uu)QUFgIC z742XAn=Q+4$D)n2=H7+2S|bDJZ0gHC?}k)bEZ9cqO)z$ZJYFw|!{OIRsux*J)DLd2 z`H13yN@xCfzqnHj;aH2{0HP=e=n5Z5TOrlg;v1+j42*8VJWz{_9&pTEyKV2z-*!px z5DSPy2t-9)GVRe~Kz2qJ_F4GQ1wh6TKyl+19w2}W$JL&G{;EealzxiyYI1Jy$tFam zzkT)J3o!&kwj5%`=G}(h7G)l-mS#wCvLZBN5QT|ty9>*s#$8rWoD>2VVTfg#zy|2C zF*e)y?50?;8ABD(h{2BdMSBdf!^cP8Mnp_(AAm#2BdL#mSV5yB697y}^Mo!iL>nxJ zx1t?+TeorKMcfc?2)o7#!G`X$6F7byG*2riSR33?7sU{HpO;2)@7V~&$b_5XEMbk% zUj5kQWIo$2{*H=3nz(WF2ug-3Wu;rc3*25LiDfBbh73R`-ZK9H6kd6e@3!9idh@c9 zV|z&v7(`%v-X+kB&oeB&-uo=Jk?g$!!4YxpGQ)mkag<)~V_xRhsk^>Pi2!bdGLb_pt6hacB zSoV|SEc!C0W^q*jzeg%>r+AL*J)9LwN+v(M*f!^I_l7-jf>5!bNP-}S z__pDUzR!ohtsPS#SHc3qAPoLEgdpoP^}9ZMGNkOSq(KBM2n!H!z*tNaOe+(`n>KBu zMd1y|h=Sk{3?VRh#&d+3mp%60H$sX>N)PCK+t4r28Ync5g&_k}iG8d2KX)9)@dCUy z3h1K%gv>i|Oc;OXby=5HotqizNgPiu1Go^G2w{X;%;Dl5&GeO?;#guK6d?l>67&oH zPTMX1C$n^E7P;XBHoze)H(~<<5l2@K$HkjztdW@7CJ%;KF!K8NZr7|L_rWmctQz)5JesPbL;5s-(?+73L$VnybzKT z3oOBU!I|SO?#f2bD@6er5JXo*7(_Qi<|yp#rm{&*WI*G9ho2im(rKEQgVy->Ox_n- z7QsBBS_TFeM4_%kS$}$I;fKf_w;8-1;PTqXobZHZeA9zKjjnAvn{=pmXoa! zQf%B9fU?dK#yBVtb(uiiwr3u{jh0dmR)+_Lfcq;9<8g-RZwuD;9 z5XKSWVU8e=(Z#t7d$O_}ACHS4P`y8ho}sHTi2WcA^cM#ocHa_opxl_U%T{W`i7rNEJ=LfgzP1{$eCFo>`cB>==MW&M%bjZgWCRyjGUD_~=EOS)iz zjFf-O`ycq9zLS)(FH9yDNyH{l5Z-_bQdxMVgZW1hW{ghWx?=RA>6E(1Q$HTt3^BH1 zVqJA668U7rRiKW>qSU`y`QADuD9!B4Q70%(!8ven$D^nYvqn2SB4cijcHc_UK z$JJxW7E_;3Opp}RC+%;)F16eNkjGm1M@G+0ri!y^Q5tH9ZVolx-f?iM!m7z(Z6(zM zQi-BVRiVM*ypWrSvA-8xgKsEC?8u<+C?rw6D#ZyY*DAPSLnkmPWszmJ_Vzb^Sl+Pk znqq~EFtM>-F}}S5F}@pVP$xh-8(`Y%+qXze zt3`B6ORX=cPTY(}wx>C~lz6J*+;NJHFt{u?BT2?RPB96OrW;I5iGxx7e;3E{-$(p4 zC<&&Px?BT&G8=Z*dcR(C%$U69S#jj$2tTs^(^s|1>Xs0%8OY|{f7|}hNy@ZdSffMBDp-6Wrd81i&aO|gD9})cA6{!EZTwhB?{2xmv#_n*GW- zCX`1fgd&@301R3@eqfisGPS00Vz~03LwfPloLC z2=ow@h58a==@AQ3=``a%SQbdLDi>u_VT{iNo8=;4@Uda)loET|3}opOspPs>q3F9P zid}X~vXqEm=lOnULQ>{^G5%^TjVWl@TpLYBjN*wTr zglumwO%90JUKT8CbSywM(O?Wm%_YWd(i6E5nGR`Ga#dTXmiXdg*LlKBndavNYz7VA^YlKPI*Mw>I4me7Uy2U+rMd zFJPxW4M1x_sfG5co1CRT)z)dz!3^N?q2ZNr$=*{-=-d&L2QS)0wx6j*f#{k~)~RPC zO5|yL(utRo%PvP9p)6d?B_2yya($;S<%DSq2 zS#Asn+fBj6B;qujWe`6rG+$FkGlGc{u;%v(PFhTzE251J9K_%uCGxBbR#uovOzR2J zls2B52S``^OitTHCZ5o`gh_`Ccs=p*;|wf9iRk_Jmzc%sIH`JRLg>&!F9!(ZaP=O`VcAF2hQMs8FQsJ^e5SE1HOhh#laQyLJ5o=n@7YR!F276dLc@BB zgA=x+F&cHxOE8o@wX@_&r$;Px$&V!O@n0#?s-m2umfxl&O{kR^b14ZzSWM!oGYGS=WA@&s z-DceB8MI9d3R5X^d1y+6Mx0mzTUw1UvhkzNlc68@_FG5F!V@_q2~P@@6e9zC=J6ef zo)-G7h_?e|Y}xWiZ;+)%-6(C%ZRk~*9CFS|pwi2-Ir^UH=hJ1G*+vXfl)N$Sfk<$_ zOEwRE@U~fUc#TS^4vW&9aPA`)lodq0Ncy9R_0ii+YtqRtXPDmo7WW|-81K;56N9$| z;(dHNdhDWuJ2|AL3=E5VvJyk)r%q9ZYrn=Fm*1XnqI}FsC5Vy5zF#cmNAtol2CR4y z$kV+UNhj?1ZO)9QV*zg7IcEK|NHZ91OY?@D%Du{8AmZe56U_liP4khBQARow0&Ue` z<&E3AmF}&pVs|F6i*sT`-jR)J%ac z&lP7eHlr-#-=y&*Sd3<2dgOeiPIx|#@T3=4GFqltpp})0HInH3yv!BTlEmpuPcWw^ zQc0^3qtU#Mb_Svxm++pMkt$zWp|!AYvjuiGgs9v{JO|iD zE$~&QTtZXI5QLiPc$dDJXIX`uA^H0#g65_PRIP3Rj29=<5(GJzGRZ4l_uKP@8*I-k z?kSM1WN{vb{NJV_0C?qq&$8d^{B5D7jwP-wj$|eTn4zU%jgN$c2I2ufGI3Zj-kR7c zvWq(VWW(-#)@$+%-!0fZp|YZ6%#qHM^P_`!a|~LLwJ$u7?1;rk%+j@H0JsERd79pP zW&!xn(f$$JV}X_Ix2E)JB07FB$P|WOXG$%8AO$aAOs@BFyhWDBW(V@elkiE zTQa0Ww_%?+T*4$!>MB63F2k1a?zqH`D@_4#3Abz&!vlA+-=A$aKw%i55ku(r^mqGV zvu0F9An+PNkt{*FcN{-yxAC{zWeq1+0)|Oq2%~$)TqE~&Q$(7@Gip)8AmiWWDh!#5 z4nF=v?MH)x1R`N34luAdx3=xs+xTvdR3h^Ne4MZ%yM`pjVnjm2h91q(`THoOU?Oec zM%Z(Au7}L=zkbNZ6e8-5D^i$~=$;#cvd(X2%>Mcd5XMbIUBo)u9_3&I1=}NRcFVN}g(rE(3NF9u6PD##9^7@plu{4b!5pX!G z5%ruzBZH-<+oJ8?3VG1sx#bF`V1I9!CSNNx)eN?>u&a7z5OgypO5mRm9pn@Y8vQ~R zMyB5j59EJoh+&L}*Z`p;OT zDv}^_7Wwg<#RoPRacNVyPHcK9#Osb($??-;dQa7Tl#~-y9GY`zkiRvjN~ym`Sk~U~ z64YqLogHzctRmbUB>w>6l}4NqNy3s-t<=JGSlvtz_k+}crW>J=8~Os_H|CrorCl1S1a1k4ivDE<=YlFCDh~dM9W294G z2gbt}7NK%N(YB~jeXaQk#TPI!x)PSdlH(KUgsD8A`>EMm7*Q=;fg&eqc0}U(mTvM% zW#h2SNO0W~7I9b$HOEFc#3{$xo08Lnwd49kYbmhj1QKM@nrM~S)it`KETv_c<+gLI z(B4UMC-#Fp#+y>!?4OmTRrSkbNXD_hNfl^K)G<%}-~ z@Dn%8gjtQEI49D%Dc0zTVP!34z6;X^O))x{fUx2EM|K{KoI+FLeH@?C6;&2$TpYO7 zx4w1VaI3q8HAG0$LxOg+Nm||-+>2*bE{K&$*wr_jQ9OW`gk&a8+UlFq5;$nODz2RA z8Y!rvlxWU?nEiY^p8qQxnE5UX@qgK4r9)u*7O(~$&}6G8yRgtecV+|U7dox0TB+Qp1aexHE)^G8jtBWP$rf-z zslrp4)Esd-8BFtnO()1JvCbt&DbkY1_`S5~v=4va{Mz7W2|z9lS+0p@nJTxnl{z{- zqd!ne^lKY*mIfUd^NCUAh${a8gr_{~+PC;QR?LR7uy{OI^8}MIDkQ(x-VAk#AgXwk zqf?!VDeLm@c#g;n%eY5M<+?jkS7+iWNHe90F^wOBeOy%k1nnq}$D16zuTbegkxcqL+KfuV#Z%oT4rx)OFW zHO;yjj^xZt4jX>2$qqmdWV{v6B9Tyt40F=p83ryfNMK~#RQvza#U{zAyX^7 zAIz!pdy=H8xB6zsC3IGdK#2_O!ssxA%dP=YaHiYsZVI$pFQn%tNU5}RxGb71J9&1@ z7+73HC=YIe5o#(ghGeP1#<7H+MxK>UoF8Wcla6z$n#yHL;Lh;Yu%n4sO3V~GKb2Du zdEBKkRIaITV6RK1mahuy;Qc(TmFH@+ln~Y=w4jA)N48V0KR?%?6`%kRB15c80wfFCVkqkm&rQM@*G3Gfsh2 z49UXwahe%I!@?S%cy4fEYdguQ{A> zIbuxdxFbTR_=PEAkt(er zA~$7JtJ2exnnd^#yUWDX*NKd=kny@TEJuQDBgovF7b(}rZjrxoODTgtz|ylMnqEgr zgRMz`oI7wy0&Ns>pI{C(2HhMLQ*CSuhQpl~Ie5RvD=p5sjK}tpXQmq#%dEwyvyM~m$ z`y|br3+DRVnVyKz@amRgdS2jQ%l`nZnU*7RJxhD@8klLEp*D=EFVyr(cAB)o~Fv3tfyw5`dL)6+JdKvp{YX&q`>s9b0Rh0tK^Y@PwbT%SC_n&vqV^tQpVjW zRvSosJ)>k&O%+v_oFBg9E+8wQ;28(zG&(YBZFP=SWu_5GEmlB3NW1m)XzlW9;+Fu^ zD$j@tmS<|0oRgL{2+-)SZW3g{ib*lz|S=D+fiK&)kVl&Bu z@}nApag(QT2~aUNt|ZbYRd( z)j4@!gvrsL&uMAfTJ)%N>{Sl9aBrGirLPGvtL5-X0fE{ekV(|#e;bKx50WmTM%Q2S5@Yltsqrv{F)BomaPrNKGQ zg!we`%N~Xpo2H<_^`(8b_|iYDiLFCLt{QR+=N zoDFdwbsf&_CKA%2Gki=?)>$TjoxoT{s6b)aVBnpjC|F1Me!aA+m4(8Qs#!{Orz=Y< z92^smLwJ6CL!p*80!rpt$ve|Me<)Mi)lD>`E`3>g2;X%9!TY3UCkmlMU(cSu?Wu=AOuPh z@iB`h)SP#z-SW^oCyRaq&s0QH@H% z+rosz#p!|7==|}=Z^n*4^Fwjwv>Gb!TSiQNWd%SULbx z3OLcTcN_E=tQE?ddhf=(H}DR@?QwI0bO29<0G1p>FAn#tjh35@9%r{NeX%aSd?{G3 zs1}eQaSsqhhks_bsQ#)^)fJhEjU77>l7*`G{N#%3DRh*q_=JueY<-&VVCepheIS_iq#7AjC9LKuY3Fk&d; z55C_WInj=yYXYGbJVOLbLkq?PUqjUDa)x>C>xSDYR##S0%0!~z!XXG;Twz#dCx0{5 z9ntrmY?=sx1&b6!j^US!7`)9@r$Qf=-SoJYkx@U@W&y1Swx)NqMJ(3QPY&D9hCudv z$}v6|u{P*LE-5!W!#(|fj!~hdE?^`j#6k%WC(aZFpEc{ct?Bquzmqr^CvUW`|P3{l=d({krptBK`_INEJ4J^&j;JnpHFn7BB$t2!TtC7J|PiiXN;P7 z<`mz%4sm6m^i&{ZO9)KH34B~mXZgAF+jn$PVGH2_Fhs;bydanY!YyfM+s_*g-1b70 z>{XIT1|rjs3?>Hnj1Y=5S>Lm6==^BrXP(Pe0?R1-#$C8rNi5zek=j-@y#8CdEu#iR z);$NG<{`??6=PNM8hPd2S}xNf;#7>1;BbQj49G$ZIR603C!&*dx>!vln`4L@reYU| z&Ff)ieV=~#Qm4qSQCM*?yaL0k077S3TIg)?vNl^weJdvb;8U~Ttw`}TEFy4GA`5(F4TA-izFUF-X-`Rt>xtKkn9oVx&VMc4WELXK^e zF@JNuLFPPS@TLC%pgIq%6%ta+fQKABK;|AXx|?&(JsT*NYDi*+Fo28*MFPSh2UZV+ zH~W3GR*ImP8^ML*??=uQA!mP2U*AG16a+9FAU`|KfP<^=&KvCP?Ts8N#vks#gM0LN zY{=^Uc=-9XpAQ&GiZBZCcE;`7_d;K1Pk+A3W90aZVTj{&F%A2;d4s3t)9|6F8xdZ^ z5JP*3A6K{EmyGS9!cPE(5gW!8;_mT$&7RM1UVD^jlNRlrp=3;^-VE>jH;idc*a5?g z0|j_D3=Yed_W0RsY^IgXDaa&HAR>+-c8DSmGw<f|Aa%z$>(D{$BmG#8UW00RSY6jr51BhxEJi>gdjr3pP5w7qc~- zIA0)aA-zK7;y&?M#U&>$HpT%EL@R}d56>^x6=%ZOZO^ojq=A=rQY=9jV9O2NSRo&} zmVCxA1XrR)USN2>XZjv9vnnH)&5AQ(AqYHfC_)_ZJ$4VzvN58IIAYSgeJJ#WMO{8e z0kOjxd(ge+-760g-ge0K?z3&3bWK+v0wD}w2nHdrBDx(|;lESkJgI0Dus|cY5^n?| z)Pz4}v#!p|J@h7}ps2u52xI)gd$ln4*-0hR2i4u=G_Z}Z-3^LA_403jP7zd1kqLk- z00VeIxGTZv`E~u-A*+zCYQ`(1mLmXMOD_)R^nb)}_V&`&A1?&c%oxcsA}l50hoso` z_UFHJZK7;t@Ce8lXm9-tF$WSOGCf`29n^U_@2aZ)E#Do`l@lq8sMW(iZnU@rRI$jZ z&%p`F#l02C1f0uhCZ<`_ffb?=9W+ee0INBg}8#v-PflQpOw6|Ha( z$@k$OoZP^g7lmX4#t*~qvd@1-BK3)30R|z2c>ZsX5RTeSkEyO+9m~P-_eaKbj9p0x zuUH$mMYpT3E&D$lsr3Asl+@qP&j;lko+I;%h(~(MA$I%)pN}1M(+Jy~D5#*F*E-?u z*=Kw{G$LtYgl|S64@hk4`2FyNX+948<4pxJh+`022ywgPZgKJPrZgc%Hm>*UPv!*$ z1qBFt1qB5K2p~{UPzDi=km`g!`Vc^-zz1Y)_jbc~-9QrTjiQFg@qT_X=#O5=LNUr4 zV?raqr_jOz-wzwSXVp)!E-{2{j6J>k;Xqt7gdqWl0*Hll zIYW0>e%~D%L>qQl4w&zzsM;9aglv!ZdLiz!cfy1aA(Sq|&FI}sMHs_4dBPWqJbZ1Y z!3H7QOg1g$6bVFuS(w1HZ@Jmqj(~k7RxnF&J%xVcSfg7{(UD$`RyY7(zKl zm|TV73OsMz=={7{WjA4uq&~>~^a2ba0bCCn_J0nq8)!i7&X815ga#=2x&HQl9KRX> z#>-;}`Ot^5A3uj}3|)*k)>+r%2*g(XAD@VL*+M*nKpZxT%(s3K+d}~yAz-Yt z`?+Pe@9d#4dEPUjxY{tocTbNV>JZt@{(uhYVCe?R5V2tx#@+m1!+!q&os?7~67Zlc z@ZyWJ$Kkq(X~%3sWO&wD+2dzU`Yk35MRqY2*jx8y+iuUogjcNQDCQy_4+;dtc0e$X z$7Q}ctmw{)zy}a9y?3K$OlYUp`?-+?+$Q8C?zUIA2cNdpdfyTidcDhzqg-5tl{ghq5_#?&|KQyeong zg5sDTq#G`6>&x9uFbInfg&U!}9w>w_S+mEw+B9P8HCdv+RIlRRt=K}DO2Sx!XhbXC zXn%4Y{{VMqO%_X4ZyF*HPWmwZUvA&R&6Y-t*eQkU1Th8|w@0V(-TB9HZbB$R5MmxL z6mb^Ne65CET~vyqe^=4N0p*508WL%JVuq~*dihty=rHyg$QBzT3(;C|JE$rLb zlxSQ|F%(5|0uXmy6}fcy?#_*0D8d5_E$qGYyCJ{3e|5Uzwl~Bfaqn4>MQkIxKOc)? ziHt98*XYoa%9y{dwCDNn7u9oUZk zp%Mad#CM_?2(b%j1S<>&i2U-hjz;s0C`7^o79RdIdCyb7#COs&NURZnV*@V;VX)3F zeevn{(Zq$yArM1wC5R%hA-#)oF!o13pR%@MRH`^*{AYt)Gm6Q{dmN$T){W&8<7mPo z1;vfrhsPGI7Wj>w)@-Dzz^X925QwpeviPCARxTcX%YD7{uZ?ce5Q7K^M2O5TFoUWF ze}s4YsVFtMjsvg*2ybQ(-nTy%$F`Wc>2nm?-^2IqzA`hCrZM&Z05$$H^NHCbgh;w+ zrd|L`)&ybm4bKOs7o&Y1jc)-Y;GPi(l1>3&72`R(dH$I1-_aUDsa)XzhB3rAum<6m zz8=lJG3|vO%?<&D!p#swNrqnz997e!?CEnDsj4m;W` zlQc#%1Q82XMi}o3Fv`#T=J;_N)clz7X*mVl;-bf1?L??%iXfXo;e% zkPv^nm|5HK9RrKOxuOE|i!8GX4dbrj^L_b4E{*h7@?d~ohlU`4Au=SEXF2xUZ1J{> zgc6is#!6^}5QmxO_x}Ln_V-Yl<>ZxVArwRq{UDcz{+4~)yQ!bnGx#^7b}?zHo9b7= zy61*(43`8Xh?53+VF-c%^IMfrpXy<|jR<=xwzE43gLKB z%jZssqZ9uCM+R&xLWm+O@fG120bUiC%O=|m_UB0D z!NkF08XQ4d9xMbeSGUycvoB>8pH+xZ3`9G@7n~cq(ZlSs@gAy2PKTKQnFtw%SmEag z%(^T%p095B=eK<$F2SkHGki1d*bH7tO8p>ng4dV+Dpb$hHGc`R>*&lT@1r1Pc`ErZdSzU>gA#n$6FwWR- zu1aW*@kH2^rB&b7Ov!Rbw2I?0DUdRSx*6GSd3y?N}(Ca zoD-OoqSL7_?3Q4W(e;Zr)1B!B6jZ5NuQ^{2;-*-lZ^^D5Y(mJfV2p04WwdKs8ZC7AbCb*U=5DsOzz z4#qpkFAb+dErjTrI;&FC6Qo3_m0e{;YXd!SZ*L&a=%0slSxQvOmTE`lBlw6dXbP6jD3lC=gSawqu&+ivixup2jfLz~CCQU<9GbG44jjme?^#&|(IW7q)RxENMHim^OR1vso z7REZAl$k3+Zf0jRF0QLpH=%7*jj20WOE(S5%oC2#@Oe4iY5RB6o%2ljDAjz|T@Ld+ zT^2CBA#Y!ZNDw1ydzR)xPHiR{86-tH$E7^)C#z1Ul|u)vk4Sw)m`b$};yy-BZ)lD(={U*Mm3!;ylakdawL*JX?bmT z?ENCnN~o0m^I-UH@OlF>YTc}f`QeIHazpyC;VrPI@_Ki-HXIX)a7Q%~LTwFxgW081 z&EF1+(~-e2%vEzI!N3jg->c-DCa~yc6D^}ljpVbD=>AV6^vj7QNBFE9safXQ+6&CB zI#sBqmD5#LO$brBBMZ@Zf2y;CYhUcwL}dCxHOf~LqpMDu)T+L@wwL}@(9x*5ml z_zH4Ptwofk^Zi%9IlC-to1RNSNL^ghg&FYf#K>X-$VW7-tn2l$xKj1z|AK34}Xxvwb>7g#Q2uO)(+!8bw`_ z%Ty)D1RN^Vt6`ht6uL*^IeArq8AO3`2EZyV50x)oG5W^U2MXyLW@IJ7=6_>Y6F7^G zYdZ}d9=as+Hd}AIzLV^=IWW7HV}!XjqnepiM&N=KkP~ zaJ;t}O0_EjSvc_)aD4^&woWbx%xVPP4!{b{LEaN!d#iAeyfM& zjp!UF29=nKB=Zi&B$t(qq@YrvVHn2~rP-p{vXuIF{3Dt|U0JOeGBZE`{{Sxg1`1ef zfKuuDFoWP=r$!tVM;_qO8JcjuQKfFrhUpW&ORWfw+e46%+4f5O@8?fFH;~S|| zNe6OwFY@+TO^nX9qX}`nU0}-ceP$>*tr^bmjqU#ct8NZS$u~7eBP5L+lkjZP)BgY! z+ZfWf{{Xj#q1EcAs;7EunwB?(oaF_$BT8eUmN%Rn6I)!Ce<0#iB-`zU8?s*s3d>Je zq{`K%3N6zwCc*c<-)5XKzK^ty?a?|Q@lnzjbekKaWP8#+YP!g_{r7j zIqlAsffVw`HaX6W)nxLFHH9e_j%`rhcX^;cR^Ld@DH zQw%asdP-`UZP4U;I)>7THqRxw6aE`rqHN}OLXsovun~!Jl_Ck!?i+f-5s+C%Cvr}+ zQgNux^~8N<%(Po$O41o152Z?l1&17N5ZRMcX{fWaatZ)jhY-r}%bT6iC9H4NmuA5d z$2Ci6-wSrWY*Ui(z^euYEWze^J`RYZu8R{xqWOAkX*i|C7@hFMZJ|PLtzyE-j=0o+ z;qVq|7Ic$GtEp`(P?E%GldM#rl?jrTVZNSOJh2)KcylM{_&@S!koJ|m(Y+dgx5Vd! zsgwb%kqXt2P;vu_Sd^S^LtUw|-PBUG0K_lJz(>La#G+y*bgGp(Fk{miw)TlRLXov3 zZvt~-V1jlIFohE}cEsy??Xn)2^n@wR6BiZ-EvVaAM2AL6zLJlE=6~C89S6#VK znll8UL54uk#38g02t(^Iw_Be^-nuCUI6{mp7aRNDH*f9R8egKyCO~)l_7UDjYvo@oX*jrKhL-fZszASQQms!(tt#Ru# zSR+qmJw;A3@;9T|PIf-)I}?xV3W7{G4LX&G{{XYJ!gIzUG3RL-JYm}nl=8Rwai*Wv zQfiK_6-p)6#cxg1^W(<{YK>GSUPGSU8%<|zM_F~ujGs(nmfa0GJf_a4lEqgmc;sB{ZKLZpm!4$2hTkusySNP0E2f+yLuN}PqD5|E>bRI?eu7;wuw z8ps-h0vd>rnm<_j)?Kvhmkws>)~coI$dqQMFV?BCo!Om}ge7z!OQW~eJ#HPLxg)7* z3kUXlJzUh{9!{-1wfimk(5_i#i%uAvu&BUBh_MMlhA08XZW(6o=(pRyb+C`q{{Rln zhLDom6@?_30UX2{yYt4PAz`i`OiKi+q#>32gZ)5-L98Mc-C@Ug!f7f`C_#w^h>^fN zTrq6RtMQ@4N(}@=U4aRPM)@WPSb8dtwZ`>3dSUIM1B45Bn}rLxVeOB1j>>I{h^T;| zW!M{c&i(%Y>hJI0O&Lq8{8PT#kwf;&z4=?GtUZ>_&&tA&PYM$p8sQKWv`I=Wz-9jc zIO1%^(WB^*>$b?}M@t2DOpWK3Cuo%HB1-~btXPn;!mRZ9-%OUKu zb(CbtByXqD@CU=Wu|PnM=es72VJvCx9KYYU%3 zH&#U$DiZEgn3$wj#j?gsk)_B0j}he0;lABrB~w{VbG2T(`^VNA((LIm%Ey*- zGoqB`gv;VaV4$JA*nOF(&E)a_0O734&5)&*lek_^vh)c~v8gM&Zk+|^BP~Ix)0U@h zDl%|Xz?fiT>Nn*WtA=(%u2NLFFFm?SvunbJcLG9;=6RW{m_AEx&FcvzVm0t2o={R1 zC{7_n4@|B)G;*>!J&{HfoS4^HxnI@p`r9%+LvM!Ld(>nOuY$s~FxdU^dBmC0E0xs`_} z%x+V2vr05TIgQZ9wV1`6Y=5!bna_%1Q}fCrmt1BKwT4u)-%G*+yY0Y9@ zsgYxGro&#A2+leXf$@xOj6Smn?2WXuwIN%)GTRn@uhrQzlfjA%xUj(idW1knh0QrR z9DkG1wWf`{p-QdYIa3j&bT*ig+01-9rDSCi5M(81{`ky;g(;5vMAUr(cW~vF+xHvt#n9A_C^`W#W%xrpP5s7@cEOR827be$> z6hAdv>2mUvsm#smPmqR$#7xypy z8+A;h1xvJ^r7BfgS0qQJX*4|!5S2Yy%qZl__L3#~)~u;KMaE{BBoQi6I7z6{;}WrZ zJm8KAkE|jST1J;If7MA*@;XgbEnbx$SFG+*^uV~ulB;G%BGj}Yc#zV~2=t9~QOyi5 zI38G*<~GyL(iOM4dR7LAvY2fsu9Hbat2v{}l+vy9AuhJSCM+T?wE$tq?PFNnXu?PW zBqonuVQFCxvGW19n3n-z{`H3c0Nnrq!#ay0evu9qG7_f>yNsSGC6tv48+?x}u$sp< zH>kz*2PcgO%L^0zT0V>2N0iH66`?etPV8B;bek~}qR}onkM)GZhO!XG#>PXWU_gV8 zhLOIOdTc3L|o1?GqTasbbd6?=_&mliPD=xL!gqPAJhP@?#*}2 zzuo8-z0n9xEKinFc41d%+smbxS%h=z6-J`}09&WjZAjcEipqZSc&<50Z8db2ytA>f ziPPIoSVCN5_1v>Y%PMvwgSALZ&C8R`?bGFBRjS5Vn1Hh8hPGz408Vx`swC<9?I-Q` z(J{fEVkNna_!8-p0^uqxF^d^iL9Idr#K+R0+S?S+feNAHDs7bOc1o1o5~7)y=g%md zW(mttoun3wxO2v=B;pjP@!L*$rZkk!lm<##SsR8FwLf;=@wb!F$Vw-u6FX%@9h#3z z2W?8$J7-nFm=HCiJ-U1)@lu7!#&Eo(mcghbt#Pr}_gb5)vX_Om_3gDdRXd1I%}R-Y zi$t6{VQ9>cJW<#`_m95F(}Y!VSV)VV(xhu~m>if@6Qw0^F+PW*S+2;ENK1l##Qy+w zJ5N@VFch_+5>YBjl~Fg$5`th_a$)Lu?ymY{0Ln|uf-5y^MrWnBZ{Hc;i1cwvRF(i? z#+SBO+PU%(Zq^ZUbz-FQLNnA$uPTc(M_8a*8gO)A!;@nkrZ)com8TQyeo?NvsGF80 zog13xi5#(-Lu-N9MW;BkjMp0zk?AL+Jv1y&+yoylzyb*PS3B}hRlqe#Jls3N*_n-%S0x8X=5h1k?aL)jsZt?(&A^OlU z99_`}0tj!MA!{{#9b32Tqp2L~ND2soJWYMu*S5pom&>Y@{u4Y$5Wq%??yM0N<8cA; zkH2pCQF$EFcp?(uU_@QvfLClX;h%S9EeejcNqlcj)o>nRz7hU$E%Ezb|Zd(FJtN6#@v0I6w%z;RrDQ07Gw9UwyQEvS%&8c;nv&im9zEh>IO+ zyJ2_m%YgEU@jTjT$AmyQA{FbGMIZcV{#`wkovQt6m5S5Ev4|osjw`triJpEk=;@^= zVRF8x0u%yRLK4A<7pN~Y%iT-KEF=^HSV!u^9595qmS)b2 zJGO77RjVS4feFpJ5kx|`AeJ0E=4~f;i+57iHMjx^!VpI2uHS&J`nxsXJ^QndM>$ep zrdeKoEyvS440I_&6p7P?d0D-pQba5`1gwM*hW`K?tFwQyhJw5?31f&uctSGimc*-@ z34OWe$4y2x^_`TP`ch!!)zz|wle!jQL?cbQUG2sCt2|}f8bWU~QeqAiV0c7eMSdOIeVO(A z(951;2#B)}yb%WY1A5!`c!pMYM{N{iYc(074&1u>m3~=y?stnQC!4q66N!jR`ZuAG ze(GW;l0^XuFcF%)SVk>iEz7HKS9P?ng5 zfa0P%qAhc=1R}s_!X9uwH*e3XiwFz>fG#1shjWX!iTtn6XKfi&%-y()`+39Yrd2QD-d-bk zbR#a&1cBZ#F%|HJ?i>M?y*794?xcj)++;%t@o;Zkx=^-s(YDxOaW2?K@I+q0W^O0L zC~x-XNg2Gj0HWh<>q1z>E7*M=HvH)gNrL|XqrK06=N5@NrA*Jm7W3QLzS=*~w?ZX`&|WY+K^u4O%f*p}5?TlhB3Oe6#5YPDMW2rmq=?*< z0>d)SHJoq1kY-poB{eunA(azz92V`}X!(^QPdp z;s7EvI>6g^i?=vi4xFRg-$lZRh2VrDyd2}k_;h@}TcAio0LC!l3frLPI(mD3)Oe;h z>)*fe(}YFUA%8`&@9_;mHw3;d+rbsLi@D+%M|a&s^O?aB2vGoU8Rq?<3$v@=4C6x7rli+(HPBRJIH-y8wm)4-g^{wQ=b7XW}+d6xP6kB8}TbEHQ|?-p#(= zm~_UHLZS&7VZ0cKK;zvIdCivp07qrJXpEs8FWZH9Ld4>TUS`d{H}}!vnax~er*K-wz=DDrUwh$8P|LvG7_Z|RL6M<;+{ zAqEgHkE|>)ft^@hAwmNtHr)_H6E5Es-fX)&WAOZGB&wLbw|P;c!v?7Czb*0ks6Q3O z6mEIgcR1ef8T)A!x)tX}8$8cD$IjiG=_))L1A=veFU^J9zCGKczoIj6jANC7{{XTb z*7(oivY%eal-i8nmgCoZM->ABp8MVy>dU)&>^|(X_CqbdbRd#-R>5;uuCY#@Y~qn_CNac+){aK|&=!prD|k1PXnGBN*kjpDB<<7+KNLLK`-> zE!^*ouY_%kVGXgT(B6b?j5xo%D`VGh-Lis$F^qP`G3}uZz=*|q$cu_Byx3*CcTazI z+H4KTW&Z%_XYY^aO>`OOWNgYXp#*Lfwq@cO_{%zJh)2h_i~a9!j)+Dy$R2b%{t>3j zVHgU{*2CSlgb}JSjCRJKDe^Fga)e_Y_KMhehvQ763j=%G3p;-55JsT{Fuxdi-|uvL zz1^E=18*8T{(W%qwlv)UKv2(TzuUWYGQ)=G{Ql|?N7w{0gd=9&xc&6{3nOd;=G$O= zc-u^%0No5NyVKoo&#$v(K7^RUK6kV7`=~-pU@iOfkDw?p&M@N(b-w6t`RAQ8h#|W# zg)^XpEXouiCOv?@T>{>aULc6Fh;8l5?)Fm{mk4DTdtm%H+!@d1n>U_>EakBeizJz3eljkNK$0)V4-KfU)uuc|$ib0#nl z1R)5=J2v$EEbQpY+7Sgp;2cBS&%&^*S#dJxuS1I;I6m8Z`+BxfU;~UVKqBV&fh;<| zyLFr4o_%yhAn*hsup_&6{2`usec4lRl>j2WZQD18cI~EG{qr=ZpV#yQRwz`bw|H;bRcTz09J%w_I!0m#&Dux ziy$}%WyCy7E{nu{v`(S2@egI3NR1@#`;0=v+svgTUN)WKG@UfOfWG7ZG>+4 z%de(1Kh^&L)$0MJ3T%U~paeS$TL6mmVR%2i+q1_{Wi~;;LV$oE@kM6OcYj}qGxULR zZ7@;0+xL66P{0+4SFIlw?`6GK_3g@mlGex5mM;ydB2!tv0n-}8*($)mH(?vl`ahgH zdZE+NM==V5VPYH%GBF375ZGROyJOLBO(OCZVM5S|TyHy#(GJUg5zn@ZNSt5@-V8-{ z9&m4J$8V1tp{*;eLJtpwlz!O(M31V!@qWZb>$ZY3*bO;P_QBhvk*ispN~v7 zQU1#GObspsh+J+YObl@@ZRmz}`>9LYX4nKlj*ue7tB8ycviSB{;>jVFaV)r!I3LCs zt^^pmqoEC!L+|XST6;o?OR7%{>3+Y&XJ#}asGD67y#vb}d}8)9%;JfG7(^lq34Buw z79oSdDm~n%@wSsRzdr>qODKVP;UBG>g$ap zMv0^_fdGMqS|2<6_H#Hru(PY(OeT@hKlOlLyq&qfIQC6R$t8nYw!m$JhE~T1j)4(a z%9D&Dz5u5aFtH3q3_%Ar2w50n<9PSduCq*rt|%lO z&Op03-~5l?9h7nf+~Xn=P8op?;Doqh48KxtS?|jz!#=uX{{YKMQK<9=et($MeA0@f zk;tgOWBH(CQHe3`Vl>2}5Ka&x6C?Cv4kp98emz<2q%Si%MAHr#W{U8PxGUPS!Gq9D zGuzz=Wkp3wB3Qzr7fcY0)$23YN7--V-5$Rh5Mmt>7m10uTF-V{K6`e?beyS5Z=(5Q zyB>SoGmO5Pno!B=h_wg9SKjsThHJ9>ViKY-gfR0(>j%4hZQHVuJJS2ZFlQZh!5M}i zguFNz>V6x(c{v|lLkI|V@wJyk5nFyAYx#6`QX6`CEWAq~AddE^Ar2-d+jnQ#(@oZh zmrxY}AUJzmIP<vwzT#&J*> z2u1|K8F;eB8{FN$jggOSopk!->tMnn4AqD>itvi#+uxUqEV49ft6LKW5g8sRLvXO~ z{JJ_Vj_6aPNlKek4_kX#pE2>uH8PTaZ&N0EQuzM>032Y{6%4b>7!1QOy>LWd&@i2z zBfDjkT6-C0uPw5PzMwEuSpX&^G3 z0hURph((tiK>*G`F~5W&ge)`X^XRiWRZpk({ra%^g&~8=J^6_GwjOpjNr?8$E(LolzCxE=q1_ zWa;&hbi|A$-)@+ZouRvuoe@W4HLE3I3R&NXQimHvPUM$L)aaUBJ3&!sB=IId?Nybu zqGFQY8B@Ko$|@Syqi{f@Tyf7b+nbT;qRzQBmS|b(bd|&qp%w}3+Nc_CUDZvU-+?){1DOESPEKiy;T?ob@GK6~n0837pR*R(* z9lL20x>pK!7&;d^O0BDoYgvMo!GyC*zOe0f5ycT?Ng+udmq=!NpBZMxb5=&L9=}>8 z)McPKr5b{zw?`uJakNrfrcD{c10NYbCXS1>UQwhIRSs-|c6yzEQRYI#>iq<1<@T9@ zd!u;D=2j|lZTjLCMc6u9f^JKtay;WqxA}RLMNM?wg8Ui88p0RnoOD@Yl_5y`_uGSu z*V54_R+EBvxfwyPh?gi%vGYtNQz2%kF`Z(?MBtiAGxTQzh*C!<(i3_v^pvaBtuL0^ z(K1O>47}j&E4WFjR+%>iIbK6&SdRr^$PPH}Pn=`?%#Q1m z&65KeX{GhPRx1&yIXFI2HMJSgOq`ftS-VQJvf6WFgf#6i$<<`CUkS4m+;a+|<&&CR zi&R^C+BbrUB;{Dhh*OMvX$uL4k!LFQ(VY;2XP8K*2G4M~Ux!%HzO=fhCw8xmM*eZ; zuD9y?VSnK}I!a_rN!k#~vg&o}reQYeiN@FDVpcYiFq=vowV#K|wC zZ8g!*nR<40!EHd~v(e7-AqNtp9Y-okmq)hRRho^cSy}Z%^PAkvz|%ZRZ{Mp7t`3uO zW@d6;5tMPqJh?15?Qs@ZpGV0muSDsm)p`p`BuyNO-!LkpCoL~70WJ*d2nA^Uc;g&P zOvo)WKB@&wcB@P*KQQ;T13C>evtu0BP?XRI8Xy!)5Uzy4hgXT?wlvaE3>l#;H((~wKJM{x80rt`k_~dCt(B6y6YKQ0T*%(m z32izR#W%M-noEJpRi!1!o@I1Xl5&)t8SJOCdZ4Uc5UCD$Q#DoyLob}1#BFlK)XsrI z#LEfBMs_m8h|&%rP7aZzeODIVs(8Tt7E+H0i7$jmK&D%mn`HXAFv*s6m))6F7@%e| zl(dpfXT~E)(~}<`M@?pwm#P{1lBzBm=FMkH?dMdi)m)1wMaCmkB}J6RodSI*=toj? z6F8EEHVk0|`X-gB%AB*~^b0klMDnJVQ~?BDsE$G}i1-htk3s>`lTjIz#Tu|UGt@B7 z+n*Td0Hot0;Tc0Gc3-)P^ve~?h&$U=_N9f0DB2I{-lI`7{89X4k09Ea1 zuq=}iGt1(uHBD*|D3qoK*F}pFuRUZ$Lsteywe^HvJh26d_l?ofkS&?VVB^GdJT z_Ilkgk~Cw8Q~XD=pQ`;}Ffo*1oX&M}IF$H@6rH6R%2ph0yw);1R1>$vGNlRO7@^8< zlU*B9)e@@IY9x~ewXNC5$!`RrJggIqB;%07O#c8c9QSRfPtbqj){_91mY$QBn*d_` z$Ly}a0Z?`q@QPLb7D;7AL{!+dM+O>OC*}ee$L6?2Os{?+IZ}%B>z;7&luFAM6pXt1wSY;M=61 z4@mxZbvdiTgMc3hXO{-~GFYs4Ct_MxmI7+s(Rx&Gic^z z6FdfZH6dk4(&p&(E6$Dg0$jSKe90}6jFnhR5MwzX$oz=A8_|_|o%TkZG$`q9WUftT zO7)_`qN^qZCIPZperYvhz!YJ6m4u(9BeVE*DRaxe$0VmE&GmI5H`R@8NRE|en8c=% z(>f|c`#f$7GC0$b=AQvhY56j)OJw7Iy{;sq!W|; zy9uIUZ!$_Pw*|g%n-!)py#t0W3CJEb=~QXSmt!Wk+fIKyCaG4`R^fSYdNTkx(${^_ zc8D0|aZ!_OaLd{{Oc4Y!q{AfnZ3{bs6N_IiIucn`iIya}CAGQHVg<&S23e7Mm)U22MJ(3TuHe05an6i9vRgIarJva3J&|iVy(dLWrJYEK$cEQb`%4c;YCXB` z=M5Oe5d!Tvh~obL0EUYZEKKea{Onw;?FY{)Os-6Ca`;`jIf)3-PUHmO=_$!QwDMLb zR-;Pgc**xh+FWAi*|~6=6%WoZmN0j*}u;k*%t3mlrmwMzc&u`!wb9*(Yep;zDd4A=}BiQeBGvwQVj$ zfgn#uSG?$C{)p#hlO3jn5^#cU8I4KFwBijWB-xFnAA+Mt&M~5=WyVm!uA&<(DgOY< z0mqIMk4}mw9c{tA>4rXZj-WS9hJLsxY|w;R0wx1cq|ssAQOxM1<7Re~-_;mV^b-PM zfj;&SRRubc2FRIwxLc~~?%VFAIVQ1OS4gb$nXR5!a%@%P#fKvlQ{yKkf0I^uHyS$i z$&b%Sq=0Q;yE|4TT(hGgVG_%uE2FA~#gm4OGK6r!&=wtb%4CUebMC6=F(JDXd;Mr!_Q-ypX>e=3A;n)7! zf7ztW=*v_RN;xs=eo@HQKR8Yp&P?@HQz-3@hKB&+W(v)$1v)BLwzkymDEVTQRPQU2 zBG&4LNK_RZFoig>#@}pX+1I+*(yLaIMfI$q@=Ru4v9ep1))qO*;jjBa__SqtNo0n? zao&b|lt@ONVR%jTQ=pUhsxvg9keN`#5!#L+Oq>F~yy!79K~0(U$yNYQL`t9>UC@{vU<)|BYjfGtvV`FniaBiA0P~-GZ0LtqwO}NwT$RDVa5F|E(;k_{3;hMG6OW1c+C8!CMFb8U3l&!rlJt?4h_LT8O&H`mhHrC?QJHyEFbv1Wt`2s^qYI=nJp-Et!1Uj&r=h@ z2PzR@V>m>mEv^bV?G?y^V4DPmIp~TuB~`a=5TFV`4qyNP&Y8Q5Q#>n>!b(vxfSD2z z<}cRSap@2>u#7_pLy8~oTW_;xvpYKDK?sW51LuEt=tF0_@aVSX%iIL`Ma|A9HOuvB zG@fxQG+~&zDr9KM{&D9VeV7o24ZCCRrK^*_MKtWReB^drYnMhsP)=5!#?Px>RQ`FzoUVt`Ge-iYF1s)@yKcL4;Lg;JbG4GT zVwT(Gx6+heYtnyHRfw{amxy_~V#X7eU}i#}NK3axRis(zR!1ofzGF!-CNf-a3a13B zuaef_oYe)YFq3h#Q<3s$9sE9zrDvTzZg4vN1yy}7c{Xh~g=C9ag*ybY)>Rs*Wm2;y zQpwK?)4yY=P3ay`&qawmvu0f+n?FJgGIhi-RRa=zRFuX1-0(Np^D5m~LsYrm7e3`x^CV?W zYk&s(JtM-357E6}JRf3Pk_kDCD;oIf90Hxt#Oasoi8%r_g>rR-Y|_+bmd;5|gH@LS zNwQq0V8 z46Dp1SV_!y5#{QkWrBZ2xk zJ#@lpFO77*kVo#Qf>T!sjkgR3-^w)-3ux&|6GqH8>DYLvKFjCCm zl*ZJhl4Fur4Lz?Do;cD;H%3rKl1HLj1zy^^0t#e;VoWJPfdX<%N<2Jc6M;RNok{yWk+VIp*_={uNzOQ}GfF?p)$RGh zw;RLjd_tV5lQg`x$syb>HtvsGfX6Xpeg{o$7m&qNLTb_`pfq-1vq46n; z2ZNpyZ`l6;6QuoWkc`z@_3KxvNMAEaQ(`$NvdhyFGli|w$nnbqxHzZUPxSm!KgpylW)PEdL)*?m+!vT2lnav6~Z0HbbZ3swCq9CuC4h)nHLQFW45j5c}( zEZ7aL;#PcoR%)WmSc^tD%t4ZIeA&hQt}!_s`BEHnnoUXq)I>&I4-k-&KUwU{bsRIo zhf>j}MoRIzHJ~iOAQ5HZn2fWz;-o|haB&<2WMXh_5RBu9Js;8E)3VLcsAci%+ePGSL@0-j5QIYd zK*Ta7`1keE@kFIBhh5gs4;$1TWn!)eDAB{;mr!iREVQDq28=)yZr(7s-WSu2yP>zI z@y?gJrB;P8^A{U>RRhy{KT{~JaL<0~+b}iv&12D<^ZrFH)DOXIN zh7yb}Cj=oZP#!RY=a~q0?CXbp8!i*@h!~?2#9?Bv;E1teT>EH8=L>tNO3AHmRL}UP zIdQ!CgaE<64@cwqi&%XASR;WI7e#g+Xt2wHnd-ltXTIIkZn;)UViTBY#)w#9%onik z`+8w#L^|n5-s?&vnj_0P=&>+DGmN(!zqKTv@X+n(qzgLNagZ$3WUIuwX1F3VRx|Y%Zrw}NbVAF1m%|L(b?X)LT45AT^{b9JR|@4`JYwujb*fAZEkslg4(Wpki8A?z zefze2qe%R!<0dP~PGX@1&1NU7x&33eb*A}cPG!Epe#hFF9hguLvA91%d#BzX8xNqq^RFGz+o=a1RKHPgeG(U0Byh7y5DU%XDQYo zk4j7m3Akbrc-KR$h7Nn_@SZ_|Fc8eqlq7Z;gga#0nS(ul3!RvL~`+ihb zZOjN?k4DZVgIcxQy`!PJKKf70vi%fDq5StfNMh)EE|hkDTz zSiHiC*K^i)L$2E>qabZxuYi6Y-Z5Z`#V-EG3**Cn5qst5*qUi#38n}+aYP)!t?t>; z)xML%B8VDUafQ(cIGAF+hqm2RbNNQio2g0U$JnSCVG)=kOfa!r81VIUOvt<*D^%1bcz+%TRfFd2p-Uze0Sghvrx8342 zl@Z1;ELMi`mw2J|n09u1t=mYIl|XC=!YiP|z9589zlZGI@1&gEsIx#Df)Gr*d@=js z*VjhGrZZ~uzo$FHVqqyqEOW{ogyvX6I12ag7$`@@x$lonxzIo(hE{~WIhF`tPChzl z2oNIx!UGo=9%bJ@EWCac1H2-`2;C8x+!yYAd$(`1WhF#n*fP9+mtM!6ODkQdL{%y4-iF)Ik3(_!lDaH}L@P!Z20VTsyhrcs zqb*w4Kw=Q1csX4T-@+YH{3u~^xW)!VRtoo<#?If4e%-xPYM!Jc7IEWU=;_&)i#Aj2 zw2P`<@a?OVaZ;2EZv7(_iVQM2Ks;YM0om-2-PaDZ(F!7r1!qsv{B4KNvdU!`#vLf}wP zP*8$12H5s|;Z3wJY+;yu?cP2ebleMK7)IOOG5h;=_t1#(l?4Sdx+w1Xd}u)e0f@7< z9r31jc(Dz;dwriDY-j=I+55S8_)}~k5piRfzjwqV@1tin0ngjt`GPf;Rgvi5zA%RF z{{VLSY>9D??)T^Nroh<`HW3fDA3nNeMC+SB0QQE=fBJjKE$IdDqX_H{aM}@N?z5tq z03(I#U?0Dy+m$y^QAII?bMS6q`HwZnAo2H%Y>Z~@)*+y=Xx-YnQvES&9K|Hngl2Y7RH}U zy~PY64?6w-03U}{yY-F`fNlNU{`wI2ZH#6sY>k^~^sXpi5p-Gc=;@|`2zF&0`=RWn zVH9q|=?Wfqe{~2T*i5?{Vdmbye}4S)_F35;iYbz&Hrr@+dEXAqvZ5|`Zrd9=DY&t~ zA@h9OW6_jt@%hk%7=<;%r+!f4C0WH?ydd#m#t~S-55u{-*h9D1P+8_X6@cT z2vIsB73*LwFGt}Y8B^>{6d`4{ald!r;yv_Mp>pvbcvi!IkKz=uI=%k@g)soFh@k-N z{`Yp@8)%;cEw=D4f4vJf`1|N!vn{=!7ya8dcYL9{s)~f_7cUXVoE#OlS{Q^P`XZ0t zm(H62d7zD#w_m&L-L`~6XBc6OeBou+zr~a^7~2lL^kmPi<>=kr;j^Yzeq4EjW$6br z!GJeI#=UQUyLV5BYzu*wTNn!c+nndSE{=<6pO~S%IrrJ_v&T&`qKm7~e=A{oV-4yT zFFx=Nkf>9U)`l=17%y={qzJ#&wj&+NS%Jc(b zoMjBanXEWM-_wP=q8q+ce>TieHWrNG4ke2O!!Z2K{{SC`bg1oAB==) z7GUSn0t}Q9cN6G`4#O~`pW)F+rev6)7?>y<5R_a@!w7{AH{s)=k*kd5c)U0n4mo!P zbX&bn{hrTdBRAQQCyMyTcp~#fiH2Eae-?ddVP42(up8eC^M6?bIUW zFbGgG?-;R1ie>LGzK)tQ)-Mr;2yrkX;`zZA{{S2NJGvH&(R&i5_JAAD&%NUpvYI5N zDp%J^RkLb zKr@AY0tkd&SEJ%S%)Rs!0+71x+hLAAFdAG+YO{EM8>`Sl9ElDXObFrthVK*Y3m%85C$li62r}!E^K?bob&f~!i}^=h@qA-7845)ZUiE>az--Lq=lRbrJRwmEf@2G&3`Lp|aZAI7 z9Cz!#4|OHUT};4J$`(ltwPJ^b$0IQ*&B4T2v0*ywTyIiBY~i=jN$8_ySYI!%9**SQ zhT2d2g)O0?42Us9t?>*~o>iNV^qB~+)$OssRvAJeED zuQ4Z=W<4EF4rHoEa2UlvR=6J)1q|M^lC{@O!93= zRwFyZS?Fde#8O#ghEG*8Ol8Rpt@uYAvS?W4pv64ZF{V2KIz;KTT@_N#@X0OnQ^SUD zPcql=k9u%$@}gI7D*mstuETF7&U@1i=UHr7>;7CBRzYe1I*4dc2XRNuIM?n&(-Z#@e@7n0^l z@Y6J7{{XU6IcTc1tsXjMG}ip4RbAB7$5_lhSR|Q6VZKHw%SBN*JR@>>J4{q}mJd>$ zAC$DilxX&QoYTh@W;gRIWcr8~DDOcBJ&6XnAQODxSqtOCX5bU@qGc97m1u zcZ^c9sZE|>=KHClKVhDZ&tQAMhX`fxG^q#^KFTc>ds**>GND4w39+?9Sx$yZN*hod zuaEusFV2$M#B1<> zSlRs>mnK|JkgYmowk1`wktxm}s3}f*s4&k}tbE-r)})YiVK>NgGfNw3O>YtezO(jo zVyEIrL!=ygX&#oN{x3_V+?QlFehn<|6C|59JStAdF%D{eHYchr8}zR=nsLV~u^y1# zcawC&Q>)QaX;8uKr!>?0O=HfUV3Q&M?tlP@0^%)3?Xru#9FicKa^*_7jqDhW@WXS& z^}(J(YM4_6eD5f`r&U(!v;^}s(CmR6$vzjNoJlXw&8@LbjSurWT3TExuBn>6k&Rg~ zw#n^m>y|7~ytT+trP3g=W;QacW4WCw8(|E(x_SEVGPBLIEYRrGV{3w0x?Pw5098v) zyF+kzEP{zvaY*zt(8UXB;HV+Ioh>`6P$6dc}4In=08TtVC>M>^>s}aseKw7XN3Vd!e#&QIpXaxpn*c+HI=RE@!6kE!Tr+jL~- zXxS*zEca3UhO(eVQxI2h(yf()@kSUxKDMb;6r1@TBHkfbYu0p-wzbTd7+Gr(y_uB> zW(>44p~j<}8+B2^DC3SlNI3j>`Z{h))xMBCnZS~?RiSSsW%-E7c6gWPX;ycfr$bM4 zC&=o*X*I-?muUp~NRCaT`Yk9Kj&BkK%wo0)y08hFl{^+;ix^Vj%1vtxj5PU?TfzMP z-4VY^iltPLCJq)grBtZEI0wN1hjuJ~0;^8AA#u9a%eQCQ)o`7O~YY{T-AMB^00G7^4{@Isw( zk0-fuRJ-W_Wr{_%13j@=8GVA|KwZJW1b@4HYT;;-g2gETQ?Ov&`UM-DLbB}A#UP<_ zPb{iAEUO{DD0nVgDCY$2ZKa&6mNl@sZ6`@T8A44PlBHF$%696dq{dqFsYeIezHBD7 zBv+#mxlFRVnuM+MBPKCNc}dZ=8Qh@fRLhBumY>m8VCiV-Os1X(J0CT;faTX9Vda8h= zwZiRC>1<-aN>!}mRg;qHsCZUQVln_I(@5=eW8tXLwJBO}G_kk)V4o)E$p5UbDGrG z4P`zS%>Ke*YDD)iOhrrxz@HW*=}oH}S1C|(?q~jWE(GCPAmKk$?-D|JbsMqM1A~O6 zRw8j;k-g$)W@k%`@M$M3wY_5O0$`)b>U33KR7Xtg!4LL;sWn692F?0HgFpcWA9#=; zn5p}JZiCK)l{niNEmoDuFK~)ErF^myWcsadnG?K9wV0^H1(zqjX+)e$S;s6PGKVR0 zWQiv?#Y&!5)~d)-mrR^EtAbhKIax9tUKn)GSdwJW@Un2KnTRP?Cs@vml3od3!gdER zrd&B8ffZJ^W~HnjpW;0_ zMrUqisrDJZQC8vp&)$-mH8zk+ShzeUFFi4Ymeri0W|Fw$v_%Q5f?ORhvd2q~jH}&P zUr1Uevy;on+L+R)N@<#Vqm*^a&L{2p?oIVoHru+CW_6egs9M2mS_MfE)hdK+^4N<; zpr;18c^f-7mJTWetmO#c_PFgGT7=1CqT_PPN)>s+S-!MPk>_b7!-CQ|jlqIsWU;Md z#H*pD)ai>6o~1qmkr*!tG;1KKDb&cF1rr4pB2JEC_N9EW$*2&cCS^;g6#kx{{vs5_ zMY!;em^YE5D=>{H%xk5ba6%t47+USxoh1DF^Rsmw$;=>76ibL=AoGH~9hqC=-iX;s zyt27vW{D-nc~-j#9_(qo!T1g~KmnRJH>wIj~Yi1@iT+x#io56r=*9;xJ z0XVM$n}15}tN!-`nLtcA~2oO1D%AgaJ@WoCMIuF0h$hm_TKB0Zy)SyIHq6r3}o zS}edy&YA^80#i z6-q@&)A~~0NlrS~F9vx+az`%D6UdZGb#h#~;MKufgWIvkBby#7jh#-qv?s?beIbR` zv}QbM!CH4e+t13Jzk{cxYW|lI%nb8C39c3d67e}#GqN$vl~*9Kn(;7Jx``;wGOGA8 zNNuRk@`A}eLH(OJR>aVyQdYNDLSWLdToLI>Y3E;uonXopSHeM-NSYj6XG-2aMwcc@ z*%^>Z;Id4eCZ@7qk;>~95`XIX%b5@yN_2_Y66mdINzp0R{tlfP`H5mn0PR9t0cFu^ zqp?H*8h*pvf7|9U6G};3n;-9p0EOv6-{Ql*Dw-|^6@M_WIW9P1Wm2g<^OA_Q zMYXkHs)5=oYz{s+$NvD9+0hDaY^e?p64OK);>OD~JqiXAx#7s=_@guUT?~`-a%}!0 zA7is+B69dkn*A}gl8q$V@#R4%mx*t>YR87xMP+DYoZQ+^?E5tDtSN{6);ZFyPLQkz zDa10VaC~x9gyR!Tq{^+!oIHr2lYIc^cqoYr7bdnIRa2#CiB%nV|!lFkutJrn_U@qR9dzSKB0VvhIvOx*Hupjm=ZRXDWx`71nDt`NJ}>j zzt@@q zm9t1CIVzzNnVFg!3L+vIRq|$hysb2R)VU^8`H5+CQV@Tbql*9wTzGzC(S>zzxH@^1 z8e5%*Ewa8z_-(M7D(vGFC`Qh(t#Vf>4?)q+YD`8Bh@rQYCC@^)WND3HaFmqvX>A+1 zZVro@QkZir(J87m8#&i)OV{Mouk}>%|>w{`lO=*2CW>mn>$w+9Ue5}%9ou)pe z#VS(nG_Cl?*F~-~Noz}Lf^=Y7<506^1M2aY2M^M18AfS15+RMRNX8WM!ENpYl-A(X zV#u6HCqZTgj&_o}8Ap@$D#52xB#+X8!YZs3t|96|RXdTS7z2!9LV+6_YkI>;iP*%p z5u`jWQ;Q7|M12)hcT>$>btkOZ4Z-rPChiG!8W*JNlqpL6SF>XF`|cW}zgiKtqnfmM z>JBGFj*6F(otLCSG@Lj%FRgX0%FdIbhbaGaRI1Om|uMu zW7Blg`dO7Tw~1t?jlp!U!NEEZjy94(IzEpM>QLIOYvB!BZLR3uYwA&- z9p%&|rbhJBDaum$)t3QlE)vlKnj3Wz$-g}g;6M~CZ* z$H4M|E5F1hg{gM*QP@`t2PZT{&WsMrgz8&@hf?IZl3P^b*5qC(B%GC=WJZTbIP4Bl zqq#*_OleZ<1N3;x{2#|PC8>(hci}Bv1pdvGszP9Gn<}1HVNm2z-cvbb>Ujzo=LN~J ziHDJ!RW)g9j*gh@s?4e#YF2*^ZU>_-QJ5-Y^)_Ia)0Rt>X*at(%#yk{hcbyc<`%+R zSE-lIJ(El&I=@QgUG~@pgwa}9pV2EVwWs_*f&wUgJKol%dbEjcCI||I**@FBnz=o> zacJ(PPkxgj&Mrc$71Aj+Z!x$SVa;#BRJ}oH))S4Ps#=WXK2Ik}Je?m${&hNa!QX`K zcFj>aG{VaCBr5{o%Arwh>5ERx=t)NsO7*84L=+N4S45Q`;*!}N(5I4mjNvl*T7p$9 zSG?ylGtP#kF-sijE*!$fVq(rHAiPG;L=hMsXywx;c3Ta+LNa!O_+K02T4h>3@fll`@1R#Jr;g!l817-w~sS zj9SXrq6p@zAn<)d%HJ0TwFd=N3HwfiR2`7`C6vTE?skBb+ zvWe~rP2qr@8OcIn&8TJ7QykKul?0U>VvcQi(UX!wlf4l-l~Ks*P8DgxsHYSSlH~0% zyiE#>IL|02m?TqM*w!br8wnf9C>)e+{{SoSrYO?0sHv<*Stl09AiKM8er^$>PF_(o zlPYP;g1`VY07lxqdH95EE?BJ@89=8AR$^TBCbg`-Q%hQdQ@AE9=#v~$NjUu=;uN3J z9@y=rzN;=6a*KkaCHd)&a7N^)yaLHNiFudHB&~LvsL}jyq~$4zs%@80y)j5leoKB# zjY)|~IK3e^*p!T%4R`bbiQFw$qfARr4~v9G6x(QhYQe;iX*V7#1}I>R}x*AO8SjsrJ&f z)+_qzub15zXI2LJh__>toU&k(*#7`s4+B~~aVR{S=_Khex0I&(*7|DnW{{Zz0Sv19 zT3KbW5W?)h&BC}xH_{R*YYB>)8zR=#3u51!0}OfFugTcyE@^ORI;SLdvw|4tE0!2@ z#q!Q8QfVaFqxB@;2yCStb(x%=4iJ^-;V@9YhLt*0iS7PLB>Q@|)1{my9qLMJbC@Ox zeq4CGVbK~=&RAUlC)&f& zt?1oOuOw9qE|HH>7UN(W->h++IGfFmw7_hY=)q*|p?S0w3Dgm{FAD4WvZ zfXqEjr+y&= z(T&9vK?~h?u_6OI{B7-`dbCg+1rR`A%oIcGKMx%gxRqGOr+z(q2EwhYt@PU-G`Du# z&|gjn0vHkzUNl$ldv;~lXH;lqI+IMjdgzN5(O$#Z;yoKESSbY%*>4yj)^Tk9k6b<- zlsrTWv@jQ(C~-xH(c`PG+cTVh)I7X`7%_E$yX~P-Bm@HEd>4xmd|-%LvHt)oDmojD zFpvagitiZ9LM?5=^3@V{U2&s)i=%;I2t#yUaUqO;9sd9-ED@@SWfu_$1>(d&5Pu!< zx2E5N3oZrv58fecGHPeOAJ_i?cZ^7_E<-3miBZJj`M1BDu7`+sWg1HCQ*p`6!7Rv< z5eDF(5p#v-2phL&Pkk%7CYn%0BE}G24;mpCnf$0jEwK4Qj;3Ye0fCL+gdr8Uf)%C% z?)mi6y=i3T0Zno52Je1RVWTIeB-R27i~`tLEo*RVWYKn|iMaEEgfTcL1SWByV6fqw zH83ZC!(}W}Enpm$A%HMUGu8y_Oukv(K5*Giez80b5eR}Y-3V?(;71Ps08u-k4vm>c zlEXXbplC&kAsAdr07Nlr{=zWv@wS=uG;n{du;)ryvhdsy)+8rQu}xwt$HS*QaErzM z&BeM4jVra}D}wG9k@Df)(q65Tj{eFYSJL^mkLqeHxjR`T?(pm#3BD!edI6 zGKFtfe;0S}D3GRV!4RS-5T^DfAOs-?4%0pn@v@K$+}#sKWK1^_@QjV%iw^!@2=!5( z{{S-ppqU68cvnn_p%CjKx3Aqujn-ok(YO=fD8M%b#@P(E_|LMN2^|_;pY032L0p4> zmlg=Z>2HY+2iTF8aJY6nS^eSgs$qzayNWA;74V0g_T_9no4t-EN9daX#wLhDAkW_O z;j-U{O}*5Bz~m7eAji%Z5;sTYN29CTM^j436^3o|0xvS@BE0p`Xc#{&u zq`-tXO8|;6&0#VAN#B%vX+;^GqFxLjC`3VlWAnUc^0$O_y%9VjhzS%CR{W`6>utjq3N?ZyricU#IK`QA0u*q|vOc%F zvYL}j$3`L;Vk~0JGAHHRyFK3OS4NYK5|aj4;u7;1gdpm{<38N-q`=Tf6d0V+2!sp} zZ{di{H01q>zs~O8*-Et}%8$}U%q{0i4L7}GSt~SUD0iow8yXIK`9z$Vz~Nmip%^2A zWNwGd=e=$WJ@)MOQbJ_Y0Q5i$zeF;@7zDuxH^dQ#T0Om6z56YrLRe{v)zKwEW)vj_ z-z+@gfc}ricYQ1jy)9Z4qvDJp6~PuC{L`VgKO5;wHnB_eTNdA+Z{Zp=e?V~*4A6J%LF#Ij0aFd##K#LHg2n-^= z8#RT1!b-E_+47~4mBj!Em`4o38IX%FE9L#KUtA&6?WIx7;@E(KQ4AIGMWgDKGn0}vPRM z7{(Cd<@COVy?;N(gijsl*$YK`&Hn!Yj?au~xY3RlzyZ7;?{4jnWfRm7i=P`{F)sP$ zZ1!30g$N+2p$`~P`XPufddoa+?BBIKaEO6uL7;K^$ z;lBY2Aq~+A5xQQ{`1Vn0Od%Ktk9Z+3i+H$LJ3BmkXpVK!UI=0Ip>!hYjh~OhEU586 zP;>GaY}(wnbG|md5RjrHgiMHqf-Jxi!d@qDX5P5RqjeCE9ASxiJa40Sn+3gjd#I>z zMH9ye1VRt)z|1(=Ebt;XR_JNH4@oEShbgdq#R-tiyCJyz3j1Q-GrV|%B^RTJSDM|Yc@ z@8A6Tc0)Y6Hbl_`VuxkEGufZtLKCa4MtpDi-v*3?Vkkm8K9o0GX3m=_q(cyH!aitY zyWO8ebGO;mO=28v&pf(&e13HK0oxct&AoIXB`J$~Vi)U&d?Vy7jBf|%*>|EnJ~G`+ zag1Y}VRwJyO~Qq+v)N5?0HN2}LL4czUXJmN1pr|YM$0Vd@ejwNZ3PH$rg~x<-=qo% zM$F+sK|&Iy9Q`A4agBi$ylXt}-tQZs3K%S6&pwUN>*}E!x1*Fe+ad4WvYUb!hS*2N zlu3)M)npJ{)c2L9x2tvrh-ufr>Z+=$m zoHw)I;rWA!l!$?0hVZz&Q2Y8lnbFwZ^kgC!#y4>`L-#y%WgNTc#fhN3dJv37xLf>w zbTCoz0Ivi>>j-}Rk^88n6HQAb{3}j={IX?9a+~)(d0`U*XY)i^V8sZ9^o$5_^7n6! z%R390Kxm=Wwc<4!pPgk!}G&GE*B2p<^kD+RD2M3>6Y+<`w`~%R zj7c+V0|0tZE6MT*id`H;%m7rM8n!v~{%s3KDimROL*rgBe%~4O@1lH9gh6-B`hNbN z%&hM1BZ@1+5WbbXQ1g4eyRweX>nL2o4mX7X`Md7r4cm8n`YhQ?0-{of(ZDzOkCy1L zO%&5EqjdlqU&t-a4+%sg8!Y07&W~SL-5Q>DdrG6OUmh89>7=o!p#`nd;@eekX$w$N;;{sW5074M=^x4t3Z6zimTL=L$ z7*t#cwZRZ#Xa4}H>+1Kh*b+h|VhRECi-vadonAAAz0!gNk<~;gu`ctNn!E7vm$J;M zi_#NCFV+K)ZfbgZ){$1SWi_jZQ44$c&;}=ILR_l{=nxezXE8V!7?X8!6L8My*AvX| z{3$$3H6-ZJyh`OoZSPQBiFv$OrMH|`6b{#EoS)ZHDUuL02%^k6y-~|N^28wO!)AUg z{O#0@F3!zSPV7|1mQ`a^BJf117bnBlYL%n0N`v+B(b9H8G{mi>W(=Tx(C)qAxua|F z{)Rwh(p2*30-_*4F=77zOH(Ijrd+HALsXo)V9<(VtL07V1gNkCwmHdBWt^bwT{BF< z^fWjep(2E~=&HRkoeEdMsf{xUh#OT+5oeTHstZ#Bb7XE>~95>_Ms0IN?;-KBe>meTWcU|=$00u&GJV%)AZ{6}5T zGV;iysBPS6&3vutmz=uvsw(akbk(~ZR<*d8!i2Ssvjt=xK^y&#n5B_!u5-Q!W^ z2Pag^v^5DC)Y<525`AWrTY>d{OpjIVEgdNic%G24xF>Q@N)dTNWO8TI$!A9V{IST5 z9i0o3ha;3LZ%xTqTFL6qZ=&V&lDZ*1DJk;l1e~(yJu2<{+uDuF9h;bwEXYYJBC?AM zu(&mvgNSfo^YlwmO!ZwP%kR}~EfYCUQuLPPBgku$w268(j!OD+QdU))IL;Ypa$v-%8O=v!<3A{1S8J zO_x_k%dGBBQvF=FsaVcZ<5QM5$0K6>pd92)iV4wAIw~EL`ctB!bV_q6=Pc55XCOb# zVZT<_@f^1dY$ZTJ1d|{D0Dw3?3?YtPw0Xy#*e0F|d?Bj-vKvMftf)&+vTAQ|N?DTH znH^%Kji)bJ0(6w*uC-#s=`@~I==~Pc&}CV%w9J(uCCaD*j%I2K<&#vZr9+ZclKaHJ z<)17wysW^pOg%DtG(`5;lLwYlkvt}(M3darFUzUK^sx-7`n4y|nkY?gYknj{oOi1}b4D#97&P287XL5HgMU0&y zczd=}ZKUSMO6Zv*0tjQ&cbr1zn3J?4A3sSZ4XtFM&Gs!x---{fgxza(+`AKB<;eytRE;^66-Vovr!3 zW(rdgw6dd4X=dl@@s9QX0L9tUWhtce;+A?%I7sW0l1pNQ>J+lRH3|ikN`iUp6N$`~ z-{JmrCs1sx!%Fp@XjyQXv}FEWrp<*52I~4F=@^@0up?v=yQSp097QPQy=I0By6_I zQYnlV#SV<^D4|T*A_`c=xJ>xKW~k;J(R8WTfz=jpB|nhwDM%k;JI?5040ywwsd3@ zjjARG5oyXdtM_fEvgn+C;#}`;FKzItU7n`;=if?rL3SC|zR!1jn5IRtgX1ZoipEs# zi;}D@FgcQSIO(u$*`!hA&d0*$w~LOEF%wq|EvJ8JN-by%Z*xu05|opUKS2x-$KG^N{;2m$)tc5L$q>E3NNdYx3jb52O#CUW7h_i_6euSHt{{TF$Aqn$k zN>t)mH49YKY1M%-Ds)ceFagiopwIwOd zGL6;A(YZT2G_P3RfU-))IIr4K(eOF$Q>A+{gf9DU3)Xg3sokZz%7omGT{{G}w}k|! zbeKVlgKmb5jZME)QPB!5Jn-d^YcghKlT+3JrLzfm(r0FLtfeup@>$m7ASP-?hxU;P zv&k~7;crzmnlfWa$Q?ybE(*N8sKK`oX05|;_+G5&D4=R(#<Gq1PZ>HOD#W;E5Q%Mc^zhwN7e1*yrRlU6=7Q38QxBImbgs0qg{Dn zgp#qoRhb?pL8v=&!lk_#Im#0sZi%BM-%gxL^$Agxu_C)hy%x@#9OSc=Eb@4CjkYuu;6jH#}spGlGrClq{beMrW*;i+~Z}^ zlV$D>${E_zR6S?S&2q?;DRPx$+Q?;8)>Ev&jHr@J%$~8!MtDYglkt=*QJPgz?xRMi zC*A`qg)=3q+P#(Cr5Qyk*SXTLota)#I6at7F()J?W04U~cP_zZ| z>nV*g3Z<+``fzb}YbD?*S9w46ZM|*^Hq;W^IV5t;7=wxZoSW=pXH78ENX}^`l}!@Q z03rcZmP9fU+h!GQ{sBHsP)s$>uGj=Z=zurr;19fP*Ss-!Wvk(?s(k+dYqe=1K1s7x zS*~MklHRCy)`U5OVVsqsaGWWtu99jI`o_>kSsG?l~xr> zv89f!Wjfug#4e01%>GzT@q^{!m`OWGP}?!4iOWJv55isny}r^@eIxdNY@;I$P0H977{YGJKMo_@#;VY>c@r9Wgp-F<(bK zq?mnE68`|dFw7eqm_sn%5@r`kCRB=wF2VQK`xpRHoV^?(5#dw%PTPM-^vaEbL1CP# zo!U^F9uP~bC4DKuL-KWvWRv9ej69h!$GIUS?JYx>C2QZlG`kfU!H0*fNi@~HU{s95 zCfDUa%&bNZvzJJ(NgC$`vtcIaenus<FRVH0*W|T?+K=|bY3YbYu}e(Ar7BjnT4y7t zYPccQVrELXl-!s}F`{0W7~0pamQLjw1HwH{5;dNYps6Do%Rd-Vo&nR7m1{mfGR(4j z)RQtUkmb30W>YY*r7_}dSuK>c8pUtx4kPxHQ^{GI0ThZ5`Cp; z8M}yY-^YlwOUWz=C6*}P;@TjGx2DeCz5DX5Tq0%#$wM#7jAs_EW}FUEf>o8m3^N|q zHuBYmoaN~4jcuevn5cPcEh^HS-8o~vm7=7LJb6v^OIaRICTlKCa%xLBIXnz9%M&8~ z4T%~zLs6qjanR>T$AyVBn=*!#ZglQn024<^$;zq%Sw%))U=;xU=5fy-wmChTne94+ z`ilU74B9Jw`a9u<4M3}a4i|TvnrxjV4GhCBaExtZeoE+^ ze00b1k4lb}XMGFTJ$}v8k@z95X{vorB}SaAqvdwV9i04bc-WH7;l67@UE;dLj$#Gbmv&=nlZ~r#UIsnvCZq+B(J9{GXvNE?cRu(t2Y-=+o_|XF+vBtb+(t3(LIX zvQI(jInfPCZHO>dVZd;33KP~~qMUB*b0fh{D;KOM7~_|=l8tme*o5g5{{SaTr5XPK#D9j7bCYjM zf&njsVj|As;Qa0}WS7EPK;{jys3es?zTSj~tQ%P6*7^Wvr1Uh#|ut) zm6ka`{{Y*|p4Stkd0|f~N~@t9DVmx8021^bktmvDK?>VY8DJIAaoA^T_r~oHhEzvn z26G>7J=LOiOZ`JY^Y*L1lC;o^xYuHwEDW z%pDm*H^xN-9pz?qDRiW%PEX{0DH>F;q%eWwg-n3wC)7h6)S$UV8*Y-y)=4Ey2;S5k zjB>?CKRFSkEYYBG$>N_$m_!nGF(k)FCf!Ul zhS+kf9$N_0o~!XBjIot0jJqX-y6(YiGj8{d^pNY62(-&9KpNx#;5og=v5M)yi-JXG zG|NS?4~_J}OCGoBTG58#YtYeN;8KNYW}2-QE^Ip>IZ< z2RbN4tUCm(AM*zh{vO`Vl!xk8SCD0PQs9`a1*9eECE_PE!Xl$HjwqaOP?s;BRI`jK zWhL;u%IbvUoD04{3o{V0mQUD{cYTr0oZez-dC8?_3;+PI&>GEv(v3{LVN?1*RQ{Zg zvPTyX9LBt0<1(tJpG`_MjZLnDM*|K_ zKp_Z%i!2*0G~!9;_D4Rfqh?gep0HZaJV6S;lt_cdF&So#UU_Gv0^}*g#SYx3W zE{=@dt;d-w%f0dqoj_{bskc80Q#J&04z^c6>i4Hz;aUX+fk}?QGW&;)`sM} zM>zig@es47IYO7=x?*lrq%kGHCk8oU9G?!$H~eF=6m=+2lrRCOlw2<66M`>4`MdX7 z4xYO<_y~mLwyLw+VMs$DxPuG&y`O|h{{T4BD3~<_YQQ145dQ$B^RHfG9G9E;H=i}A z(8;UE$xI}epy3lMr;}0nZ)qg?VPe8Gj}gw5b?<>KU@Q=dPbmJbh`1PXsJTvFRB&FN z-BMg)P^M=^sJGFT!?K=$i!mwuV?-O?uK0X(*}j_;qHS;_Bq<=Xiv7`MR{oEVzMdze zS11Og=nh~Y!Ty&Eh*rWBtu5$^+)!M) z#-H|lgDaYs5R%Erl&c;MBT`54iaA%hH0T9SpIr~l`cuiWxg?B`Vkaj`P+5i&SJw_$ zLVRQY0Lw?&OUNlDsH1N(#R@YF#L@{UvWwD7%cHx#+HQ=zh>M_Do)<|E(YDZa?Twzx zY|fRZ(JKku1U$f5ue-3LG^vk^0%0&I<&XtwR;yDt<9|4%v+oC)MrlZ?!R?%t3X~mv zL5!v7?gW_)N!ss6hxv`Wwr!(zpHti*YV^WXRP?}xO_fYeU=|XM50@Su6XL`BVd3MH zBexjtPMI%ay|nGX+gpwpf{@~%ah!7t5tw+Jt=ZR|kh5=XD{W}YZ%!x{pC$=AJJ3up zYKvG|MV6$!O_(^_PKL$H&D{qo%Sp)6(^L)g5ThD;6P_D-vFn=7o*^O)Uz^ zZ7ZU3bz0()tc-TK5$Suk$0~EYuhHAWiLwfZFuJvgtmNh_B;;w(BV$Zi(TopNu#=C` z&OYDbbJ@|KK+)P{yAp)LuB|8!x_}*pqcu6AWhPCsJi8{V{{T=odS7r0^&S!C-Qfvg zR3_r@7O=Cfgdr^4Kq#|hGUh$j`zY*}YOXU%WkQ-4lE#FxRuGlg;>}Q3lnE&Fv|E3~ z+uPf}u;uU~sa7RUN~iu1l3UE=hn5CUl*{tNfw(coIHijbD2sU~<)i5E?~Ndt=Dno( zS(RkBRy797CjwS+CrZe2O7LPe8DlDElhKj-zK>za`Axl)x*Z|&2L$BhrZ|Xf0-Cks znEFROKf`j8n^~rS^sBAj9L0 zzmbSOC_@tDyH;aZR-5k3pV76#l7zBX?pqs|LA3ty14gUZ-S$~-mRq(TZa_75rXA2;ygXm4L z#=zIkgXa_0KoP-PULAp~o^Jo)(OF zVhw&3OfV#km!c(_EGc{G0nyOG2HK-_@*~3c|EzY9>cm<(qyKUo0cx1sP>>-dOza| zUd$<+f?e!G3@}3aH~jwq=J?s~q;mT@7AS}}!VwD+_+o50=10|cS=-e}U0mD&gfNPe z0xRBVqaP6XXVFG_xq!ok5x~I+!D0Z*-)U!5E$yCpoSlf{2ny??9sJ0 zzh}fPyN)fCNRBfQ#vueInC0j3BeC}QIIp|d}9I=pXvF%+&M2;fk)esP8Koi=!fw<;vDrvic500g_B zz7UANKW9d8?b&B-Cy8y60~sR-3Tt_#+E06>^`_=Oh|NP|8l zngTgNVZI>qck+ZG(Ql5rOmd8vp-4-C$c2Vp7|zw|@j5zw`ekNjlPPuid1L7vcSdM6 zC0K!G4tC{`Wl+KjOH76i@So)N%heAM}AbEWr-;DS70dK5oQ*7VlFYm z1a0r`@1p#>SEdp)X8=?4H502YA zshOVATCJ()X5-E^(t0%JH`JThUkb3liw&U;UX#rcDZ(VhmLQoNBfVfCPd%>td=9>j z+DyosiUdoHND*a+h$w_TSUV#PogJB3Z5#~p=mP-^1_mPMfFIm1`rf(_+n0XKmWXP* zjBwx`V0C`1%(L4Lt<=w%Q>bh?`QN^AY-IIAQ>8n{EG-HQfdX<&2uZXi2(U-`MB5J? zTOmntjNp(G;wXeyg?|#=So-~)SyCrTArwh)h_#X9;s@imF1?+UlbQl#baOGz7ti0*v&Q;9+LmEP=u8$EuY)pT`7 zd?@HjAeI|oE5A-4-aC7|Z?=uW2cn_^2!tEgf*V2`wp-T^&$@)wMgkCG0daD>dOm*5 zR$e{UWf7GKh69W-1;@H9u5I1;!ruB5j9@5;K@@QWAEV9weg6Q1g(*h0rNj8EK>&9J zdN%?S0xJV{5g(6z6HgVe5Mc~XHNk5&aE^KJ@wS_l3O=kh!u9b8A=Yh&PR`7`=v-$6 z$ZEzQ;l#__TuYsv&dNCi6*$1eW?zV|m&6g5aWC)NZNDlcoM2#Bp>#Kb7-D~O-)DE> zMIj3Cj0g?mT?Xx4&$7xe?fmFS@rof30~@zY;@-;s{{X|I+mQ(|OlwyWzg&Cc2nquM z1mfT!77&E7mLTC`S>tRn>avJx0~m(ew}KonWG{yNyJ+Y=FhyiwEHMT;z=$Oof8)2i zs);H}32_La=Lk10h*9EO-5$Gk(c+t1h(l&Bt5x1VEKoHlj@S%AyBj#ZE$r>Kn}E=0 zg>V26zugRWb?4&BTIf}@LzEK;Ty7|WURxs_ojy0v&??AL8G!*eg?ElDGfOiQ<8Ma& z{dD_#R$Ev1e44B|z92pk!i_SbpFkoss8Ddq{vK@=JPfA_A_xi?zwE<_lq1u#q8aan zKKTV*k+i!%y?3X-*>B30{T)~-HuM6NTu}WG;>W9}v^3&MrQ2;SDe&^rJC`8;h7)q3u|urnIO80~mnI!H*bMV{9Y0vwmNFHHiU` z$Yl%t=zF()-rH$ymeskTC{Z-9z@UK7G&;Z+x5n+%XsN5nf*AxxUXIP%^7i|;(bAGw z+r%wV@Tl(U8N*{R1UK9PXRCmKWq!xVYit_~97G_5Tu|GPemlM&8$?hH0gNsPSALb> z8@uUYBO=_1frvyA2hF|o%lvnB+f6W#PV<6Tg?rDs7=B-U10s=ISy#(0^Ymy^bBO-{ ztw9%TGZ3)%;T7jX7^7{@E#KYU;yFV)YZ^g7IR`lXE5D3k4Y1CZ5;cBqLAWSg^MWtB z&i?>pGS1wGS4P~uqXlG8}vhVJN!q+bWKqu997tfIIjd;--z4O z4Zizm*`@xj{p(IN#9?1Hm-~a`5gZE?U@Jo%oL;|_ZI8RYn}SfH7(x-_Z1Zg2(c`v~ zWMuUg!T~5(e8F*c_hr>XP?J_byU+(1IoKfd`0vh&G@E^A;mLE1!rE!U6!J=W6^}9WQvNZcg0gNV+ETS$j4Z0hSzSQy6G*$%7L`1a*YMiAL-Jly(sc-hrOp);txcF5Uh7$W!eL&PXp#>Eig z;g}$7yd3&+%iWgGcw(5P@eB2+Hvx%7D44sLFO4A!i+gqJJa_x->Y%tDk9>amC`GvF zN1GHQ8*c}9SB|*vr`-VPKvA>J7n|Roi09k6Fryb$s_z5=WPIpd+#er>mQ&;f2*TJ$ zDjbRYye=7$gaP=~_G z0VNb-D2z8QhBrm($F|QMwDpG}=rG}RN*d$h+5S2`puIjq5Qb2u`~g@P+Y1Hm@#8$G zB1oaPD>}a#dId1o#Cv#dG}##Jgkw#Bgl&zm?2LSP@1{W{VTF*6UEh5+0HZk3gm+oy z_Cr3Hc6&F_F?Cw5@EF$-9`XQ;VQhCtv+}lrA&g;UVIO2@ZwOm_;X`g&`+iwd2tZKC zLH_`?pTqF^Q81lg&%k}RgcXE0-Ls=-h(|p8sfetN=)w^H0N(ul`PtV)!6;FMvGcn( zcWm3yZ8eC2Li8a4UiSMk_;&Tsg+Ur*09z48Fc)6U*>>;W-$Mc!20qGT5W?-y-Mwa3 zWuD%>zRGL8cROtH@20>+F$^q^oo|mBTS5rZ5Z#1r+aDi&GN$0bB7`6-Bh(u{{=T|v zG93_y_eI^`x3gp@K>$#Qfo+$Cvv*&^Z8v}*uuzPD`s*zAc6hRd0${DXZMFv?U4%Qg z`y=^*3_`sNc3Ef7s@P}OLI^nsgfW0^vH_3pTf3vi-SDQ!LK)d_8+UJKZ3&eDM=-;T z4bklUsA@4318gC%J-?0d2YoML%PnIYz!d?h8=MD(AfmUH=}S|YX%Ws*}69Mb$jXQj8QKC z02jiTHX;zo{{Tqx^9WHw2*AtXj~C1cL-5P)jD6IQnV=I32|*3(Z3pu<+0kvE8Z+C< z0Du@qK6em85738de45|?~NvjT|kH#W?zUzEIdG#Wu|km=1KPL%FX+!%yh)U zj;^3mo2=gac-|V5Ax^j$>@@)K@oR=6A-XyjD%GhDsnVxsLf&zS!+b&|a`fs6hw@1~ zp6}AV(WStvimF7>5?)jSumZOZ3DzSSSgB>%v4&->i3QM=7%mNG z0$k(@2{e)sl>Cii7bNc}RN%v*BCB~~ODTUDF-El6tKfa#ux0x0pkPr(w;htb{Tv0g{}up~(ySjTH(Ob>?8p{!}F8 zs+^t`u1wyIa*_!-LeKE0C*_-I#TgTXB>TYHW}A?)P3>*&Qzw*AIW@^i*^F>T-mub7 zM~wVR6(^F0Boa^T_&O`vqRkg=JuQBcS+U-3t6AuTs3r8~I3Y%GnO840jJ!=rCmWCb zpmE8pC-!=7N~+#j$kS8HVonY-ywg9+Yvv~QnIc7+i%xNZRH*@O4ovJNV?22^pC8K$ z7b(F$KeJN$>UKYX=8G|+m6w_^ODZK`m;V5KMSuhY9(9Nx6{4zZr7f^56ha zaoyWqJxbKUh~x^gsyBxQRR$;FW|chPpyz`OaCl^NM%U%#g+DA?6*?LhH&e8Rof$7A zOQXge6jZ6%60m0`xr$?VQ0Ur>iIB6H!W~(w9TBQ{ZE{LM-j1;gZV@UKxG78Px@?6x zO~AUfr;6~Jr|C*{TI{-0PdI3DtiWQUOP0?u9J%Bc84^`kPbWm`nF=x!t5BNOw5fSo z%6E35D{bK^45F<@k_(q+$HqFYljU@(v~wh8bCRA)H{-BL(j32AT~VFNJt($Pa)$F#*1K4dN}~6)iB8Emh%U zOC~*eQQ@w3TuCMxozdyxoYPV1L@fIR*gN?xhe0HID9@`24qln&iEYiUT5y#{p^jv7 znVZxo!*3^8DEH&Y>EB=?RiE zv#L2_#H{f3%>muaMEh&X4FZe6ds6>;C|Dowj)NiYGA4OJ2=-lpdnGORWZ% z4=uNnVPz;TWHUu2V#h{vxizg?l4GO8(J`&xOMxXf$kpE`OLMck!G%waC3#7`@w_-{ z7ns^s3dF8hG4grKQ=X4TijPWEmXSI_WV+UQSkF8oN}jW-;$$$HK4eU?D9mz~+^|+0 z*h~-6v5!o7CnrdsEh#T$7_P3Z(gO`(6)nsO!zQ>czG#|6QZ#HPOp3HWES!$TDjRfZ zjUSWUve9{DX{J#ynN1{-OjA`RvyB)syYg(JjHfb3RO5G`3wM<;2XJDXvFB;$|dq6xnLPW+c*V49_`F8y1XOB z=hGB^;=3DU1BDs#8hgiLALiy11-m!8tOJ-5=7s=*OBRhWf-|e3t6& zKw(_ggu>1&4jOuN?+&Ed%ACLTlJ!6LRJKwS;AO$WO{sKlgB;oVqIYBa7GgGyoPyYbbC4_R# zC;Tq^DV5R)ry)G2$|bc(8!W;v5m@sHBw`cp*?P0t_>MPS{PmN5=HRFvbJy$ppUePK$il-Qa>sby>q$STgN6SlH6tS`z(B{-yRj;lV@ z^@|8n;IM?+??%ySY^0fy?qU!~aH^)WmKd4)SBdR)~Q&zOg^rgN=lci zFr*(@OwzOS>(U95V{dCph0(m_O)`j;X^rX$^fU)7Y(JP&;>&Vunn6`e1Tvx)3`3V8 zz5Ja;K*jT=Md_18U6|O9YEqo4w3TKlU9JWr1Hu-!$42yX3xURyf|TbhbgD8x()47u zCC-i|OjYYLI4(YJsnS_cBSKn|8(V8nLuf!-XV>OQkzon3k5g`u%vS04#^ zvZ&fxWeFm!OP(H`m0-7r6x|+MYdoS!CDF;t0ZuaIINXssRJqyF9H@O@ms|zCiSvcj z%H-2lDiP@{wR*sT#(Zrza-#XDgT;0+kaRYO{*vi_Y?q36y9$}my+1i;1!P3+z^t>8d zqpG4!m4_nL>&yEr$yu5zal6Xw?`cbGVNa>hit;-SlA-z4w2T(?noMGqEHs65zL=lT zlConch)gQ7A|Ej@S^^elv*lmrti)YKK<8KN@!`6-4>+`yPPFQg;5j^3M52K#%~=)6 zHz$_lI;Wo$OP)$bv4wyC0GgznLS)A^B|rX;H0{>I7slTs^;0# zgjC>}VhV#wV=wIaC1J*$<>}q|wB^chP^M}>_DYZB`dvE)MPG1ytMpYvD_0?gPnD5Y zWxh=E9D>S9qUAXa!T8dgiFuhEmL8ctoTmhyPo*l4q493=~^6^;@cv$WJ( zGJ3m}Ww(bzpNW{|TDOz*mya$>Yn;5Gkw%Kvl~xXkrShtD&w+2~#^DWAye*`z7Mvq^ zOcPy->iR`3eNM?iYfD$|shi1Ra&47Lcwt%O#`bb$CX=*}BdO&|l|$=$^`+CgBSYxf z#7KE$l~^Y}L4CL{w%dSgQAHH2vS0ajO@0(>OHa;DBvxNykRiZq_&tHGi;fW;R7V3^ z^sa6k6NI-W&ee@1exub2Gpp*glc(}piOzg}N^--cb{WC44Xx@7jtC4d$8w+G5Pbyx25 z!zE_T&C2B#T_7?noV~VYUh084j!uqIIH!hEQF=l&?W92M5dKT$Om2!fA8Vbquh64w znU$wbu4;Zpnq5lLTB8vwdSm%Mk(3o9VNYEzzNt%;E87dMtxqiWPRI@}_?3X%s%k*5n z)@KMRv6o!9L&{-qoT}8dl1j$|j!Lshd~U`iVn-rT+MOEa(}^b48d9jL#!nvHo{`Wq z`aJ}VIv|qE5BxiZ-w(ZfMwuoXqH;^gD3rv(KJrOXcmDu<1TkTD2ekp*Bezo2RYfvf zV{w55>HOmG%o&(A9BJM@R6(q_2GlGf3!|`@iBPdQDb^BZ8ig(z?`ow8viq^T6;TbDVmdjc;cqkVqZBVeR16Ptv zKD?zrC(<^ihCYYsF|zFP=9keS{^+;=05g3p?<(>_k z6{@;umYwAG)NfVH?3|OEC3GbztqS;gM!(C>O>L_%BA!ob$H8Y;Fe%Ymxnhq>TWvUp zHgLhHS%_@4goZ+TtG7cDn8;;Q%P8QZ5v{c@hD%#JmIssZ(;iF|J9%v`l&MkPmkTrW zB{x;Ubls2!yM%OK{qajO#w<@-tPowCqX%$(e ztX8U&s<${9B2ei#KQPrfjPlyYM};lnSc$ETVafEZa-vCcbxonDQhzAYG_5L+=zSwD zfdMr}V{1?9HHEPIExQp6YZ_9f3tTM0fN*b44IF-Lt;)KZWakOZqNxYL>Skjsw9Ruw zn_%Rb5qUV3t{UOwPurCYlD;m%yc1*8FA`3Cr+p z<%jBYeIYWXT{Lk{91Q9)k%`fH)l|Rral9qEyeO-Ak>tj-$}w@Y{{SGP(sVr=B@xk* zrRaq%*3xncmr+E-U8*iT?g4%{We%A!O^6Bx#i+rHH={y4!o4z7Z1I=RQ7foiVl>4} zfvqD;ZqeIKu!IW|pCX!}sHq{JsG8N`Cwz?cvrR0UD z5u_4&pGf`|G%dmsshpoAW$jE%Eu_hEi|RG4RL;W`2yOuO;W9toXa8cnV&>3ko=DM%z zL9G?ZR&Z2W@&L;~G{4x?xMJfIrg>jTP>l|!>nfEcOZ7C6vX5puubt#aCL(86bhC=< z$;RIJg+xZ3$r;-HJsXp6Cp-Mdx}58ixj`gj z+sV^uNnx@SRP?$iBd;W{+qi&*TmT0U_49|5L1fMJJx3myS~_i2jx#*Q%wpuKNmA@i z5h+Vpgrx2SwUhN#g#Q56S~hUVcXl^%u)o5ZL^oFwK4 zNlpVHZnYWSr#pSLYfAOKQ?-trV>=|=&gAUgtI4aSl}e3cm=U;h#IHsq6LP|Ip&h)tLY(GbdmRu*@vK=$#LjeK~txHDNByWh|IvNeW+WbTJN+OVM*7U#n+0YG83st*FrX zL9ujy^}=MjE|q4PqS2#OsCYuMqAjh$W0Pj3$kV5ab~e|v!PWcsRS%eU{n`(j8WX=49_cax5bp_9J|6&xFp9`<_g5C$0exF77;FK z#iOW9XY;X$(azLINaV_?W2M^etNF#nLqxeSrAsyzpOmw?1k~yVUfoWaqjvUfqovX* z2vDLAgD|^fKG9abgPTE5sZFv@z$lJ1rKs;*{M{9iIL|UtLf%?fk+~-kh3Z6Mr6>oe zIGs<6a->Gh!p9Zg$geVd#9NVuafH&J$_T(+mJ(^l9iw3F(fV!d&Ot|8%t;*;NfYWf z2Gxi05vW{^QH^d^6^(@2{7Q5<50*q+wEE`!!OS+!EtNh=W>%3TdXCVG=}&+$7uDOGC`7YX)xjOP}1;W#pg!vsc4%nVcnu2;)iArZiaacs9cqEVP)z}AmN7k&3 zHySHMOsGWGKiLoLS(l}|aNik8nZ%`3Q89J0t%d5>ap2Yg$|D-W;AviRzMAwFgvt=7 zF+%rc$<-iEoO<83MtnMB4IMXSD+|=H%=U4CUiyqL1gE$bma@$<7?3a5tU3wP?$Ptl zEcV8iF(rSs)+>6G+NSpj4ze267Bi$br3V=+%!QrliiucvCnWy>tRzmSl6qyc2<48Qyw4;wTX(kw`!#UyD zX@lwC@9FNMmQdYq&)*u?!ZDgkNdP9H6cvPS9XH@V#4yq^T{ux3Vqmat2+ZyNNu+q| z>~RHvtD!KG4iL4sgRr<4w`Wg99*wOL96%_9CT=hx4Z6?2-PcE9jDjcyj8G6mcF_m- zEcLPcbKBh?Ze38<;scgEeCpMN%IIVfDo3q*BV{_0B3J*ee{*qC5cctV=y5N;=ut&Jht`av#aFFcn2I|3<40{ zFadyz^|(;+pSqF|HnFj5*6tl*a?(j8gRpUIg}eX)jMRuuU`$Dbs1aZ!SA~hJ#o|KF z>wS>!rFwlB(U9sYud<!vmfYx`bHKz9fFlrwFF0RjZ%2*WXxd(+MHz=>?lgGu=Og!9@u6S@Q4mZG z;bIGo>h5f}XHIalJ894ml}rh(lK_W>I1cE}mRzL|ugAaSFvc83I2vf;Azr)mLwk+^ z{jYTtfOJh5V{RaW=RiRB?dbPe*F?mL<7i_Lgdz~Qn1S!Jv+nk~TU!QbxS;cXk)Kan z;>dQw&YumaQ)?3d%K+#V@QEKs{k{-sB4L{lh;S9_-@6Vz{=WXa=_52Y4A`eEMTd=N zo25aV}IxU3JE=whf>jZq@>JJ znvc&M0xPByF@Az_;fU7?18{bV?vb3~op{pk1h|*1*?0Os8#-wyGO?T?UVuar#fOF; z8Eub@sPauJ7!wK<2)nGgbXv>)&u@Q5*Ta0hgfhVxbHeks7xMSf#Z1lHh`+a-Hd5-n zUEv*}upks57~$Ox7=j?{GWL66Nh!GuKv+WvafBWyaP^yhG5q>qVGAe=$N}QrEMf?Z zg}yp%>x~_WlY{`aH@Mt?H!^l?-PK6?=Fh-ApdpRGGtILMe4|<-Er4-z!wFyrL@RZk z%)2}DqPVd5poPNVPaGnSz;|r7ci&HhCWu5Rh9L+o&h5K*e5hzi#sCNc5JVV? z{{Rp^X6)e{z829is3s6ZP!NR_PpO<_n zTxG-&zW`gSj3O9|2&24N*X*Ie3Kk9lx*~*Sz=&4jdpml1dZ<)Eh#+Kb2!s(93;kCA z06S;1=VS0e0fsQ*#xV$BBH$~<^LXAj`y;ZFE0l{WHK@>B>lwW&l8H`mlZl0Sku0@^ z5^*r+{{WpDM}vUJ5XQ_*K|~it^zpx)m7dOsEIe{^Mxv&hnTd!jp-&mL%BxOpQ9^2+azge5f z6M}a0k(i9V0beE8TZ}@ToAW1qAyouh5m|I137&9!I*xBx+%=ak1OVU!qpGi>O zanlkorEk)bs79xfoyxU3Rtf37mhG~T>9B>E#SFm;+kp^+tltx}?%BV8L{__N0)Upn z)#;US#vGS3mA0E^3pU_!LI~l$p(gXd`V8lnQPBkqOq=|m{G$4Nz4p6u^3(%nvQ$@eu(u)rZj+kH>5V2AuJZ#qBRnEbl%hmk@s%LNgXU~Y?7bUt}|J=-aL50?dSSCb`CctzltArx6)#@8JlgS=U~G$vfX z3}Va@FvcPc^8y&>sk2&6zoW&pxDScu)DNbWwM1}gz4{2=ASdv4ixK(~?wMB+Y&z1H z6H?glEMiV8zq$~|6A$fhdiyu_QB>NBJo3wcQiL}{#uNjFW*wPq+qdthKpEN_B2dgR zC_{85-3UdNC;tF3-yFA5^a*VYNE8B)BE82ju!h42-5(t`QWBpOPlAD}Ey>y1-Q+PK zeihLvrUW`nA$A;m!+$C}KPT4IX^Da&bbG?R#m~$yuRWh0sxsEp$??Q2Bnt3>d?CB} zd;O88V;9LNg_Khg5Zx>$8Fv#{cdFgp({5CZ9AtDQoLnLy43QjJCtW94GckFtzW$48 zK40R+!}Y565w>Lk_sX3rroI!=N*h@($T$VWIC%3OR0^n-0s`d0)rX1^3t5TVmS2sq zrnI$OVTR)17;uG%3=szmuy=3UXUfWT0P43wrC8!xF&I_zAZ9qR1`f{u0K$p|RXPAb zP!ul+u^2nSCsq><^;kYSdZ{>mE&`MQ{{VDo-9ohw8jd@{l-~zSiT;7($*vCgSBpn8 z(bYJ{SfVudLRT^%mtlE(qw)AdBdU<$#5WT}U%P33A>znWr^u?kDshAg3=A&@`FBgh zzt~6NmrWH3t2Wgom}m?vvxNfg;uD5g%;^3}8U8V{jsF1Z(+(r$);%ACr7m{?U=g=s zA?F;aGO5diE)6a3peX^@I*!U%m(b%Te;IQWKi>VmqfLjuBS zIyi-Qn=n3kpD$--`XH#PlxAgWa>a?p32=rUyZPRx-u&USDk#4e34jA@h+gi&{BVzd z^jxZ+Q9<`~=oS#+9KRh_2vH5h!v6qr?kD5pDr*H(C_KX8B4Q%L9a)%uehs}o==am5 ziYmm2D2O2xp$KF2aItX-`yYfmDT#Gp5tpO}7KZ6#2yr~}?T$9P?c*3iA9hrbUy2MN z`?jZmdyg1Md>)!*0&M8i-DdRu0y(}_Q<(^v5EdZa5qx0>)%AF@cWH>#P)vooFoXNI zp=I*^el6*zNI%)gN5+9=hVFKV7?#5#Nx|;+`>1pMmcSt|R4c@bj3EciGdSYg>!W7x zespZ#6gvUb$SKG`Jl+x?2PR`a&4z=H4ZL&4*1|bx;Z>0c%?wi;bRjbB;=Npb-Yuh9 zO;}w96jO7M;*25lH|wn1PN+ClxPt)3DTH;NSR+wG$*O6kBd_pkf%TKtpf>5#ta9~bR-6b3As|8sgJC9J z)qu>rZp(hkBb!#L0#GBNh`@^y>4FcLzoX}}oj_Sup$u%%!bz8k8Jt`~i|h8;8#nwD z$5#n&7+{kY6RzA4j1C@M-5%eZ!hAxRi}i>L{s4T(_y~*t0HtR&pS+(ZY$KQBt7RpI z@Y4t(5Uz29vv0dUe#>&AS(S3A1G}T%{m|XR=!Ls{XHKUbRtd#!8WI9zeC$qd6K}Vx zs@;^t+N?zY3erFzm?He(`J0Z^#uoI$Zhe#u@d7%ySMV>_&93oahr-JNKz5f5Tr%U> zjboK2RjH7=D3l=L1k0g_aP8aUZhcfqGOx}KsA-Idh5g+6Z6*Z$_Sw@;ryW))fdIrP zgQ^jhcAeehbrDUf^q>fX5=ksj74bx2)?wS-yLFwENp$ii25_kQ1{QkJ>kohFbpStc z?AY`d?+l}uVv$UQJsd^`?-n^jF0RTK{XrZ=E6K!IuUaq&J|VlZoiskGQiLWzNy`@) z!;1(@*k^8DEQJ%#s-$)ZBTgWls~EVp!^N0s&+O=u80bVe0|WXN{CcaH?X15a5zXu=wU)4!@@t`QA6>Nk!8#;vh5&V_Se{ zz99bqk!c_R92haLv~wK!IY2@Y;0PfQxS)m%15SSwT{{Ru~?xd3GDK(pZ@Moum zeZk|w(R1Z5?c^7|n;Nsykwwd4GB6c{-Vf3ceYSjZ?&zVyC4+1XAXtTXH|!8%XKwDO z{ONKDs&hnOffV;{!qUZe)%R@c`0k5=rl*ZOLB2qSE1Y8PdFB1CHvOMInl`lLnL}Kv zFw-sBjYHnM!f4s^P?F5|8|32F#<}5yQk2q>qJ@_QbXa2%n0{rQ5ZN64p86^gC>lGq z6?*VYyQ_yD-x==PvKCVNCaGv)1aJU_bXUR=b3*=B-J5cilSybef_O6@}i9(fc^Zqdv_2{WR(E^)!bJQG#&@!1?D5^J^;uLQhyVxYY$4O1&dA5Qod`Ol0xQNq zfe5kT5>P@MIBUIcM|3UOKxIgn5Qj%15aV%zXE+bGv+cZR(693;PxnKo=XiC5j)tEh zb;4Qu2lL@TYlL&o63W3C5J0Ge&75Gv*&f`w^4qeTqbw;5Ijh%kAIgVLr^5_x9A(ho5JX)(B@wP3}o{xHS5;EeT$BGdMK_3Wfs7w8TtTZK?5`tVrVVAP$?D^5)(h{bw&@=9}z2XV9c9GW9 z*)wymG0L&du(K~DVuk>}?DcQA#gxh|OJf@#Sijwfd`6uFI-=ADB7h1GE#5GK97~1$ zuGnKjgojb8i#p^=5RJHA9nwDAFCQ8!=cT{g4*T#O&dH>7fkLS6?--&HWnH)yc7`-C zT(q#j+XCV!gg$6}XO9`#Z$J~&I`g4=DMVOxgD@f%vlAj{bv;C^D6s}94TaG0VTXuV z?dkSs@QoN-NlS<5Q^Y*~0Fd*DW|o{Nx61en+%gURxPT1+E>>L_3ep95KT7YuKb}#` zWfcgMm59KI7qG+U-4CqzThp?g3`bE)Vj*HDFu;})@9{0N2YRlkZnBO9l^znWLMapq z@Oa!`KdLc??)p_Nrx7RjU&9c|@$!JWKS?S2C4_u>R}OK`=t*k8Ai^UMc(?Bey_R^g z%)T@_2|0LT5X46Z=m@BnX@*BFY&?4@(4kbhY2ZvEokD>J)rh|{K6h=uJgl~#4yn@u z3@{}WF$}*E-Ybq-8Ak{C`FP3{tQ|aME~xo?(y*WMZ6sj>5iON^g)PUXQ9=^RtBU|j z8GK-iS!6YXFE4gk=hF&2*=1F#4GDrFVZyz|B#=O|@c#guY&kg|Iw^2LRi_eYLlgoL zV#FCn93EuP==$#7nAvW03aa5s!vdJmoFZX|c`$-eWnx?QKf~^hc2XMpP!#^?dU$>u zcLXHb5`9mg>3T5JtN7D6gjw4f+s-Ub5p66*gN#{bFL+Q7^ilGCo+FhlWmUMyB#2sD zdx46A8-iS&jjs(K^M7e=vK?7bii)n+wkQdyMRy1|1_&Y5k1XN*`1}2|vy~>qoxQ}R zGXOMHVu5^6vy`nu{{ZD9`ycZPc5lj=eI{b8p6+3kSZIw1s%s^+4Zs#0H&)@poLmZ% zl;pY1;S)16v!k=3ftGNQhOB&`Sta3QYRI$mKju4W-O7#Nz|fHkdz9HNwaksBn4HGf zO%Dycn|b1v97+CA%>MwZ$9XaOp2{P^-OgJ~*aXO`u;SWp7Xub2a8#XRm7m6Pa2k$)l1~c_}FL4n{}+0Bpvb<4T;#xMVbL zO_pJMU=h+JWOhGA+%xdU%wK(?%QV#VhS=hsU}tM@YnTa6T0bo&5sM2szY7ONM%s5L zN2uibMvK#wX&u(mlyXZmkm6)o+tm_bCm7D(<%b0*&5xxyV|t9b{uGs3Q8TxxCE4xK zE2Hz)A!VvX#IqkICQB z^n=fd8#z{rmn&mTf}^xqEqhX#({^;>8x0znb(rsld%N(Yaw4~??yD~Ba!O7&k=c>+C%F)fVswrQeG`-`?1pQmUzKX1!0r?Zg5NZ7j;zEja@>a2 zpg4wA>p3lFBP8GCo~1blD0X;qu~M%@N66!CI!1ya6FicJFodv!>@t|3A|v3a;Z9KO z@`?&-B2=Ahn!6fVz-~L<(71O7mL3e!4+l19;@ekO7YHfILnOZ@$s%4N|hpCL$cc`7S1)#D74pmpXT&AwPj-kQ%PrCOhSGxlurN=>aUf9n)X1%H^xHlVN)n29;X9!bR=ma9?9HfdChLpdv)D{=Xb)Tn0X z@Ahu@EX)Hq)aA_Va@$*y$0CXJY+@6B(oT^^c~P%atE(nSn7BYo(*iW^31ucGd6HdJ zBlUA3gsM4X`dqm=+Aj~GQHc4^m@>G~a5X-YdcDGiUy`;Q131RVtSCp7lELcw{B!xJ{@{dJTrblHc4EHol zwM|(sikz0LdaL@_Lg?PH8{s7wo=&i)ufo9a2au{c~m zSQ}MhAdz1+N*nx+j|7x$Zy4H7l*m$q?H~4+Dr;1Zoh#v)VNlY^EY7wfEW=IS{NjU4 zOcbe|Vt>lox9OEHNOvW#m5q|RHi?CtH`rAc)a@`O7MRwltnEoEwLGAb6KZ0S!8N)n zsB+GVQ+mr%$ZW>wmQ|k{-VlX5dcdV6(5AA?cqbbe)3A1~P4%@OTG?g0Dk-!4*ue1U z`6@lEmsc)Mu`A@Ju}+wr8mQwY(AHR=0av6X_ri=*r<8|5LDMvpl}e?BsTnE@IM%!7 zEH)b5Pd%eswi)!pr>ukm01PZ+M#9F%DUZX(Z@)$Le+e09Z}GrZl|O9bL@`fJ~xt@gsN$ zODydLXOs*^p<&q3N{#rQPOz0EdS6#g%5w3xTxfd%VMeXNQOXR}x0kF?O`fZj!$&*w zjBU;_u@zW4v#X^+ahT>gvgst2H4@qu6I$N}py-@dwC5rerZ|ZI01%tuNmKGkEP$e5 z+c1Al!OHf|m2swR0!Db!^P6JZ9C8|kHx6z9&mNlUN_cW1of{%4G|7;a$%|4>8p4{| z&PQ#!Q^LnCPP1p$c~*3|lErLFb!{`Q0nAMPSXSDc^OL1nq;1y{ZkUhue*GUu+o^@L z;Y~xL9=}@z#oJ&t=a-le(6-jUvLBK2*EpYDFj-{hC zkrkH>inq$xJC5e1UOLK~gb-%-z>v_5m5yD}Ow(S1ECk?Dh08IP97d6|lj#=pZ=`JK z6Q(i~wpDuzJj9_;)EuGMB&99927exL)GuXRV7Q6EChp9(rrnxI!ew{O5*0}fU?oekHoIg-5iT2TuKB- z9DkGBNVia_LT!m-?7;+*Qp)N!Ain#C=f3Yc+ZAEe*V@n@*Mwp@9hO;@o)9|L32g5L zr!nq)tTVJz3~e(PG^ofrHox-F zw~~$~;G-#>8^=7O{I@DqgWXA4%5;+vyIf6KP+X+Bt7q~ng!G@nXTPV{N0&XJoTQ%*)x<^J_%HXpva`(SOl z&0xnmL}b$`mPqYD8i%G|#p1Y~ReU2~imd5``nG8@U980gu(Hjs#Js#ZODi<;Np12w z3vVbmha@p2K9T6UQYAR$hO@c9 zX0g`;lm7tr9{YI1K7N(z`eyQ5HBibk!O6n8I|-BY$ncfD8e+*e8RBSiB$7Oz&z^F0 zjp?~px|Q#Q?+u<3HR!5Sn5zbEnHgl3l}Z|;Hzb$|m(i-`bj3*Jv_xqS>#zyY(sbg( zOrT8(rKZXf>x{Z6tFd4xi;wAGhk+^s()RI7IQ(xTUw>3mX( ztIU5vS(0U7aDs3#@f_rgn!j{WFV*XL*wz}(azsC?>mrzhdOAk+JgUg)bl_|3w_e;Q zt8LP+ct6$D$u=!8DgOXg*jEzOV*k&ZBlLZlR zV~x62J(lSar$XxO_w-XKV6Dy(a?H-@A*}L~S~+FfewF4mGFzmZuRa+KQqTi$U^q5prTF1(_uWk{OCkRQ?$>uMS-N}^vhb4hISm%DL)$Loe zvB2_ICWgP1snWJmI?INSH01oh!^^6wI}ewaT?QF+5Ja_fzqh@w5=xrWUo3$%iU}kC z05Pyx*Za-5Y6D6O1w$C;C+K*nI`pfWxK%$*RWny>s=jWRi07$Ma-7n zDo;J*_QMOTkrRn{@`7*ePEM1ip7XdV)ije*bzavf%4)*woxyU)XJ><9hN0o%$kUEk zY1;T=pROf5HuF6jI2~0o8|MwWTq(#tB+`>pdQkJzX`qsdxAfKioCHDkxnK>HYXV&m(MV|db$@2!KfGb1 zy=vkV3Q{^CjAIN#0|Wtn=;6P&ID0xNso?<&$Ou#?3Zmd)X9R&lIB_(iEwt{Q{oPTc zdQ@0?v`NiSAjB#NPH=Az5l1x)Ziq$^KdWSD_8bKe-Go2?0FB+<*8SHK2Q1{Hv!(%` z0q8bi!r>TMfcbf)31w|?3IlW-4=g}pmDjZ3va1;xU(bA#Ti>20B@L{sF2^ND`t2|* zN^&`Eg&UI3L-KAnlojaND~UQLT1`By)~5^l#c`b+<$BYc79*ODdRT#t;S3NgYf|WO zILAwi8&2fyx;LYwx3{i7p14F+ys+_DGEHRGK}{C&sfEqcuXAVL>f$ImzWD z3Fo4j2`6%Ws-kxzhT3@-s~!vwwcTHdo#p5G4}^7G)^%b&%@d=fw$^NyGF7^aQ=T;U ziB-vOmK#@UNlud3D)ORUS4OllQl?U6Nrbj3BZb|1RfV~O`_B-jB?KXgPF13S~{ zrr>(DeBvE`;b~bC^bYrqETo*P zhUqQOt*&x7CxFZnx`SM!H&y)TY`)JhxDuBIVg;=4#CaKG8f#8({uNT9RBoiRS-+#{ zj<;rnWK2?`>ZPm+=~U2iv@Np{Mkq$c+HR%g;mKx_+>C`SS{|02PK(Np-%4dPRV2m1 zn1pprG(I>TEV~k*nLciEX=_l%afBOeY;wSIPO$XY*>a@6;L+I_Q&lVeS2k3OMO6m- z4gp7gfrz+6^BY5e5RJbb^zXr<$T;wks7l}^VwZUev?_*r5yrU($gWbka-C(oV)Lgq z{{UyOx~3yIs7)Oi({@yGRfTms%WtO!Oe$()M(L)rt_tOeW$A(8I>e_Fg^W+^^N(#m zlq67^Fw&CtLX@7fWrxIap)-`*Dn2ZiTTJqi&XU>^oD>|7nnt~}mfI8@Mn5RzyZ6$` za9DM!y8LY|Q>A=MLYWIroho#5B&#;cY7T28tw~Nu+*)4S$#qSFa(^f$(R8dHSs22T zrX(c^Bl858+b6s40v6&R^tY{Il}(z7BC4!8+bi&=Vi6!#x|-D~@RxLHTOE`jMx7X5 zm`m~-qw#AJ+Yc`zM`Cl2)SREn9a-(6%AT0oR?dyCf}7@wx0oB!7`?%jQXkfW)t1}O z6wjtQ(o$ek;Yc98>;f%;M5TlewFR64?7#v6!rzFiCf8u%tTVM%FO*&s7|)^3(yDgf zA-Ejibag6`zhH7bB#3Dc(s?eGq;|r*pIX%j{WC0!OT&bjT1Z5ldifr5G5W9H$yiP? z%NNUYf;|5Vds z$U8{U(>iFXy%H39S3#n=0O(9I!!GQ&FpDsa-<2DLB-81UFj(QXs6Jrg0oJ+RFVyP$ zQB{F7v&t3f!Z}84RF%EfN35k&gUqhr>Z1sq4BywuJpTaI=j|I)qIpa9qFX5-7hf|i zP|cF;v0U>zd%~e5Sb?5mtO8R0uU2%Hvr>*I>$Y3}0HfzRrX%)xw)wY}Dv1gHyGovG zWlvU02DxTps4Bpz*}0v(vA9)?;W;lyC8z-=>4?+ldM#Bn1SIE&nYK3gv5Fxg*>ZD-@Yi9lR{x*%LoEO zivWnbjRWro8n!&?51v?}U9wE;FtAiX*{zd+Laz-@3Xcwp+^3EXFLi+}`C(R`8iSoC z!%Rjp$&7TxRX;mv%30r#xe<(`$of~6JsBcA;cY7QRB+U6OB2O!R4ONBm3*7^jz>`Gal%h{P*lkw zuSJFFPx2GTl#{csu;Y{@aBWJLnbP#Mt0_KB^&3=tGHMlc-!K{;4(V3P<}ZXpDJDy_ zDFj7SZClhH?RE~9iQ=ulOC-lBp3gAWF>Lc>w&bxvjq@^A74rP2I~I1N;#M4u50m7X zt6j?5?9p_ts$EGpgjWZ?8*Zjcq$ojPyzAA7XRZm094f-Pq}3Iv!CtllvU)He+L4 zaVjCC=&F@q#UkA*minuuDJDUIHGeo9NTv5hep0Dk5iKD#(4{T!#+?#c=A?M~KPEo~ zzF}|Vs+!el3eoa9Q|XU~^h~)Fo6+C9K?TuaKm+Lz+aaCIqfo1F z#*JI=rwHic$v1@cLpi0GD({4(=RQ=cEB=i9$5=>JI6cVC_`I>2YL@v+jsl!xv`2=` zDJri^r$;4(vNsLNvI~V@PQjIHT3=5D%(F95g)DSna3tPz%vV!xjHY_ zO$?^D#vEdfIt$KNNgS~ZW1d-d!jjDEP;2WE3dOZn^DoUzDui2sD9l--zA!oxY!1;$ zS&p3bh*X|VP*a**?4xm;hWwIJBy1J4Ex1arkBQ9D-w7A}A6X7$;*q%$LY!mMZGv?_ zeGpG|tZ6{RbDd2*$hDZ#w6!bT40gqp-Z05KQj~>_r|9c;oS#VFgUd3dNf4P;U8%V+ z2sY8ge%Z#L^EQH4=F)F7+ z5Py?cPLrk)AO6LSly2AJS>+^@$?_PLa>1%VcA+%18}0 z!m_vJ14R8+GX-DI4Y+9BoIIeBYZxMTGN(+@`D%D&^nXW(uq1cN^`mINKBVShF05483`rVodgUZr~?k`g*f4p;htJ; zVAWAp*w6q%+-evN_q=n?y{k@Mts+Y~{pxC~m%`O70WOQ33w&c!gQ+;|5_y>FeIsVh z+Bmp7aEOxIgbJ^$%GhhI$rZy#Oj@p`H7} zk?0eI2L)P@9GEA`6^j_=Ryh6 znGH2UH-__yJCGfZq}oR_q9=}8R*$o6Xsv%YrBOV;O$;R}{Z)2$a8oXYLZcQeZ*Mr; z32QlF_Gy|nr8-R~>b=yd(Z!ohX^DBIHpwGEeoO%O=ba)>m710$guL#LVO3SY1OmFC z!TZ5*0O0q^884(3X@){y8A=;Y74pI%a*}%Cxb1zJP^)=LqXI}=PZU=Hcv`!g_D6qC z+BeEhGa`&=j>J`WS$9{Lk7n9EkcmN&EGmu>fiDndghJu~&*b*)&uy{krHZ8~G4uS^ z*v2MaXtN6rz5*|g7RtD80i;Tj!%|XBEK1D?TVM-R?=$^uySjVn9lEw-8)SUz zvEzR)W){zNySLj(lBYJZTKEV*o**5KMkCE83K!_z!^XZ|QC#Oj#StA51XoNAz?dI( zzYAfWQM0CyD&&ToF>!=t(Q!lS{{W>7{^;$cynmL;IwQn3@P!Ktjo)-5-$-52kdlU= zumm9pdBF$hbY-$VeRSJsg$hv)AlT(WtvB+F55!VR6u&Ya;ZAwv5mwz=4FaJIB!=jQ zW$*5OTQ>*S z{{R@}Zhh307^S=8EXY7H5WL|CI=#90-x?liXu1L~KtUDQgIFlyZ2bGdZnBi~)0+?gB?E?ikFz{0N2a9o$|#o34m+QJjW2~EN?ViyF%xtl2(H{0 z77+gcRPS#3Sy?_nHCPLPO1vyQV*)VY?6)fpjk()Q`~Lds)`akhLo^CB1&b`1$KBo|o zbbGpKV3JD36qe~A2t{`IO9*r4d8{43cfN{}n-OtFTwoC12xG+vb-&2&-?y_mN+{Yu z5SL^F6CfWrA@e+V+e)&VS?J9cP8z#C-WJO~+9JYb!GsnFlENrv98q-ouXl{-yp~)5 z;1~!IEI|o(L)o*U-PTe{A(*&~!Qu0Qura%=@gHRspoo(1LIDtN;erAPtcP~pz1>uj zCIYqhG)JTV01nUI=ZNGo;3E-Q5eE`DffuX9v&VhC6jDUh3|JMAjKnMk2JX$7XJ?I> z$0uo|gNz7qf4#hM&%2_ZOS@=65ZlMTFTcB^;bj(8KC9bxm~h}cTr-Hv7PROa_*$Vz zZl5ov#Io()JO&%TPo_T4!iNfH5IDe%-`)k>%gc98oyWwW;@XHQE&|x%`04^NZuLxJfA$re;d@Ya0hct5G3v3P0 z+r_(O_*DZiJd8^W z03lrnf)MNtxO=`GKKN5y1!yer>J zwlJXtC!cyS2yTKLV=jv93h3RpzJhZrrh?>`JoI#69XHfFkE4N8D$GT>J}UZIEDfYIKtyy2br?Z7W^o!b7$Zl&_Z~C zD=?rhv%9xhzuWJmnE5R)aa2o;$2Ci`tAWk!;1ha<#;9046r_`-EFhj_^(0`Z(e`Vp z8=5F3FqI(@c!|u%Ai--jmip}M=+CZ_gR*%!`~sTZgEz{jJK>z5;I;Wtol3*CCn`p; z?odvX{69g^+ewmwVZYt5VgMDVMh-C@V*OuVz53Fo-JjtDf19`24z4y34f}z*Ao47oo}_s5p_RtOW_g{A~r&NxiZE@lyr_-yU7Z^2QrvqAyEFk&mgFv0Of z63ZE#ecd~IX;RkBFbTE+c$Eky7)XLLZ7lD${*R8F%BGmkh>Yb|OAxQ?Gv9-S`1Mn^ z6GEx0uUE^ad~X)YPDy|P4j?aT@9#YCSiVT-^hQSUYD5z*!s+4FfMw_R*TSc!-J9DXtyy;sPCFaC4i}EsrNQ1H&xKMR?-N{;yO# zLd~>jn(9)M1OpWm1B^JJD2amN4+ohyXVtcE+eq}+!VJBR0Tdx|3<-YXt&c}+Gu@tO zqj(@9y#ZnbLWdM0)(`OfJ1F9MJwlW6j8 znu$z|7XWE01S~utmMvi>{gK^yW%16APbeh_%T)ltF(gocf*x!NJ{~Q~kUCeaQ=t*A z4dVH&!5T8oB`JL5Oy+s-M~r^4_gO}~SE5oP!br>!Wu9S| zxx+s%Wg^#S_&_C;Bg;Al2H=b?ICn5(>%LyvC8l*SM%@s^U(*r77n%P6&u;hSNo12Z z>(1kC+@d+mZELp-d$n@k7IB=U&>|rgFoY=I5JQ8BsE;+>4zI=DnWZSiSWPcdBQ9eI zy3V}uPbf$Wl3?B+6v+vB}a&pF!hC*tIpp0 zI{S0ZktUN;o}P`;oEpOkF}1h^N}sFfgdvgyw%!fF79iqlH8Jt=-5rCL5{Qu&a$yLt zm#i}f48yY2m*aGEp%zu}iDn8a%n5{uzyu-|CL}E8wpvbG6nv<-L&4=llZ-ea4el^S z&f)Vs%xs5^k)?Tzw;vzCaDhLo_1}ou`=?;XT`VLjCKzOHgeCEB2NDFA+D^>v`D~*N z-LWZU3IZe|EJ8Bqf;=+@UKU2%>$*EE+evxhSy3z_Eb$l-bA^XiStXNgnw_wZ&XL=) z!eT5yjGLkj%fi-R7y!ROK)-Rn4gUZw^l=@ryQdtlj!^VQD;rY)7KE_~NyK2u)#7@s z`#rsVv@9?d5(|kC!~w*ZFo>|>C&b0(x*_rIrfzDCA|?zb7kd4{2t43B{AJZfbRD8u zVgaUzH40&)K7gpYWeWp0gbA6cK!nJ@KT7=h7*J!iws5pLJ@q~eMI=@ zsDyd|gwq0S3)S%h0|6XAC<3L%={ z6QU!4aIXp;b>gtbSsxCIBObojQAEcxoxnHv?#O>IC@7V{ozOBKJD|i$B-q$8O1*c@ z37&r9PRh>Sy_88cDqw(DN&$fgb%GYG&wZP7w=UeNti^yZHp5sDg7`!*`}}RsbrDs% ziW!0-yck~)OBJ7vaOn9`YAL8wXPzG0+j~PMSgE_P@wG61oZ1wk0$^o^1R@A*x*&$w z+IP3%oiQ0H1RJ6#CI|i9WxZDP_kHbfIv8Ab79kiL_k;8{=i)X-+H4DyVk-n~+rhaF z`pup8!{?UzNHS&?!MJYUx*-_bLf{|BUZa#a2uzp-4lpEPEWh0{{2t+Yn7Z4%! zWAWpx`n7dAV|HfiTV4XDT~IE|yZCR)3omCtaBNNi;oiPrVjM!jA6@M6vW=5vHq8q>u6jv<0iGJTyci8rIY~4fT7C@jg1Q7^Dj_d`z9i1os zJye3cu&fLw@gh$0pp?Pg%cj;EqKzUn0jd1d#cuoe&mH?NBDin0cOI>>nKrjjMAAUMF1 z!+2N196U(E&s*=0w%znnIe0^OWyB%9&EDwuSr2zkbk<9>A$AwU5eQI(d~NsAZ}mlO zK=B`X{vooJJ#9*K;hXXRj7pP97_Nk%-iWSQc0cPw;p1V#q>u{eLP22&f@SEyyiDwm z-9v@CKxTviyb|uijuB;sPF>mA^S5OkO|HXGcwixjz>5%K2!)0)M?B%voO*uhMp0?9 zTD*Jjg<;~BS?tZ&LV6h#li_4jfXhrQ9&eatdFpMqYa~1UGNq5OsgaH#kFn+i4^nf6^j4!xAER%&FW z{obNDH>ZGZg#sv;p|8^Wtl@)1KAx(}I3<)Mfh^%-af>hQzCF7(PztKy2nevG#1Mt% zK(e>nf^J^^x>;uBMwf;i9Jt|x!ond34A19(Tkh?nsF9*DMd=C2j}{_`dm*zfXT)g_ z=ca$$9^1Zr8A(b@vbEpm-!aOR=}l1#011#tBRIv_6N=UD#w!?}*zW1*g%P7wkO`%P zX#!wGWx)vGz`bWr@^kUib_-ID1Hy>`5hapf#2$7wotKYwv`bW5Qh{QYQDzG5`)_&X zejS@5-$@B+Nuq;PLki>}%M9WolB6wIFlGz@LxZ(D28vv^sGt+90wCwd2um+kGXDUr z*}vaHK&pi523f&EE--xP7aT%<+qcJEF5rr07(^oz77-Q>QHW`{aWi(itELf!Hz96h zFjmDVv5fPJy_n1K^P|SoOB8iDal*rw<{=(UEB5?32VoTLJyHe%5rw7+g_a#|uM+0X z-I@5$0o80EaAOor*`fRr@=61Eq>a2vDq$|%cqPe$mX z5^+Ky7CX5Ya0i>~zS}xEfm2C>JE1Ni<6Ojmy#E08v-bDW@)ayLBnU-`ZJ1#&SUnp) zHt+7)MdD@FkjC+vI6@&`2yp#eAEIQwAg0Eg78WagTn}MA+6c%{Hf9-b_Ny^ z2akB7`eVAt?#82R_9P~R!44OTvsYbjn%&{`XwzOwzeT$X}z(_jbp<}C#|?I zg+m`Mk1bTHxowCPZ~7NG3)ILPoIpr7*zvd)%?imm0;VG8qAHHEaG+&NHE z`G!MjSS5bY$F|MieJ>?hF*2hq3iRVt>30uDYbQ%aS>}43F&fCm1oU>&o^whYSLo09 zxIXMW+A*YxTkxhG)5CNTsO|_XGT9`aiKNwv2_&-IU5sI`!pJD0|K3y|D zuXVs~0fZu$IeZQZ9@IRNVS!FzErC5Q8Al^02TWC=b#Cz*P@WL6Z>?v8(WFx|ObA#) zQo}rkxm2dynLIFcs~!%?$mJ)K2x#e&(%3jmEd(57N|uy67N{krRIq9aEn>q7kD`-} z%%M&7wGsG6+EZQ^Rowc=DhTO#;$`s`Vsy#OM$S@$4pH?a4XDl|mLL8i9F;G+ktI-2 z(=x#S0CYfD9qCNCZnYxvT*jbmw_hCa%sTOUzdW_9l%$!8dnL6W>qHbajp4}e`atLg za!Oc@g)Fw(aT+>9@DB8J$yF-RPtw*a^rW=s3AKSHO%t;$fYmdxJ5A``7C%l*tJ+ey zOb5CggOR0jazFNYDbnK;x02~cXo&jyfh|@sGUSfzTJSNrENzkewsNxrrWk^3Sd^b8 zrEMggCrm$ed~QM=2i>l^hALX}}@Yf7W_47VjjoZ8Y36>ESnPQ2u3ECljY(%?`*DR%6jAO~gRrdiXZWcq=W*3|D$0blGUJjWe5NN5s{QS;-vD za7NQm^|3T5mDyazQEwBp;7a$Ik@v{|09epd9`H(aZVGHmqUh;6FC_I-Ph_CI0CwX= z+Mi{v)xJ>)ZKw8>buD&#ec`WP0JL-&)?$?B$p(olDvnQL(sP`!oau1}Z}h^fKmTUcR67MR6~w8Nb-iRAqKiIt~Q$yH-$izt<3 z1QeoTw7odsw;heER<*AXlNyE9U0bpqG#@T^VUBdxGS)dxvs+e6o=_7C#<|cE<7k9x zbjn)JRi->LynTu3ut|7nPN(ZyMu$q9T(zLJ(TTO3%t^XItfuuIO(a-a8VP}j(~l*4 zYQwohJLUn)6RU3YS4QHP@zu+y+z8-B5l#=6$`Z5#YP znN8=zVJ;yobyC$)A-gaIsP@ASv7XY)8)hU)MgbdVZP@46D68|-l-DybrI-*nDiV+~ zmYEub&H6fnmJn_ak)NlTIT8 zM_CSM(UpEP0d;*oIiMI6KPZ`yyBJ=Wa#STvjNn9ZzNN{u{{So_KY!M@QPC&NwfPk=4w%uO=7=~0zp@UJ^Y^XfC z?}9uWxE#*QXC!X*WW?I!dT^F^>jSjh=AF`BDB_`vkd}M|*axZCTMkvpVb@OLHq{k# z!7~eVxO!P-K{#ZuT;P=gI6*-;9;D^UR9dI}PK%{*2E^NmJ~TT_OJf&&zv&yXO88 z7dciO-%(77(pE&?;2DY08JAMa>Cj@S!SpRL%adSbf}vV;+?LXF(y0hctBg>Ma_~IP#!>hw~N|BpoIc=7E zo{||aw}C2zay?$%RN%8nC;LhG;*qGe8R}2v8bg;Q*C$Ais%)#d8hw`~=gHZTslmPB z@j`tDa-NM!ovD#J%W@C=@a@=tQ{{ZR=yZ_tFC7NgynspZFb#KQf=LsPcRxVG@(5ibz;H?yD!o$CUu zT?uDdg56o+t(>28DjjZY{a$cnPT9G=O{{YR|N&{T=wOca`@{P5*$yH%0zFEo{ z&Yhar<+f(ywIu0?(djAqf_Wo4WV%+m&Wj;+tchi5PEl_e0*t5tf=2vA*a$JDMO|V%z%||&NnV%g_xk5zhf5asuqs9?S z4XMx52M9hAGs}dXH*koo$;r~O6(|Gqd6Js{04JztMrjKUH5n%mnVqqXF$C!f)2UVH z$kU{O@OiCD%xQE`u}f_IBe$wDbYvPo?Ip(?{i8R`tx>@xK91(-nNnLh z8o#R3s!Zf?olRH_ELAzc(x7TBmREF8jikAej$Exu%uHF@>}T~v)_OvvP!6z599L0OfSOIvz2 z7WIfvSmf7&YpR$$E=)vDPLuXpRY_84_VUe~YvB#U)qe`w;E~kU-9y!_TTU(vuM(`f zj$1+NYY|)$+dX)Z0a^*^$BTSFPQ`%5;Y_i%?cjTs)`zx~h512xX z!0y%k-IYPvz++dU6ha>MktkuTHcF?Z>Li=57iERc&MggY|SuwPz&oh-sN8 z#C4z+`N+E5n`=?E(C2lF(aNgW+gu!FRzxVy(R`bwXsJ%p;E`7)jU!41GICm`L?;~I2K3reudS@~ntC#- z3Ye?vgPBuJ>L;a=Jyy5Mu87-e{4&|BOlypIx5`WB36jlHbkB=4iFrbwMO1x|vqq;T z(#Mia5|@{l+p9DiX@L-b*>CSr>B2S%rkN$w1G3HmZ{HQ^S`A&dTz5xU*&tlDw2}t6 zC7@Ii(;+26#bPEfo_Q%I*$taM>P%>kfyH7LAdBgS@6!Bi>Dvl(-mWX1zP}u17SvLc z9Eqpg_dv1pHWXUUL>279fYIB1- ztiZ(J$c@xVN^mK(#id~B{!KfRtkHS@04J%jDwxAK#x$yRW5JF@sJ54vglQ4hMQpe- zC}f%|FveDCP4VHm9x>QXUO^+t7k;!V_35- zmea^2Ra_MmcESQ7h5{luZW}&vUn4ZIvSOyiAP{kO5vVpV$;TF?aa)DOVNcG|g=R=R z9;&Lcnq-+}g&5x_DP~EU3r{{)WAxCE$nukH$vYuaFieu;Y9A>mm|hblO4hAbkgw46 zT5}njgoSt2`k9dF{;#U_ML@Q^CvBVqJ~$>VVhM%0DLP~-^@QRkNrHA=kLiD^O=(i; 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 X7O!0NTTbQRw zKC0x@B!@;=Hg?<>=jTJPNKO5u>PZ}*E=rSaJmGMOo|3aWHKS)Fg4x3tH7pI{%*8F_ z>Kj+N6OrVQr0Y~@{{UNuL?KIGgtTZcJuy3^06|ay0Jg^g0B=l#IIPpNM@TUUhhRaNgS*Xv8dqH6(`cKvWI$iZ@qMT5V90&9&ySP8eyZvP;r;cFkeW{ zzn<;T+e3+<;IzyH;SqwufCdu&%&ktl+YcF2c4W{M_4OR$8wSmQ1O@kC;YF%-|j80)itXQ5~ zVOc7yG~S&6Ou(%RAg0JMo+80h-8aM2+ea2{c)I?tWwnu9*27OYgqD74Iy8a8`5d&0$ za?W^)$%sK}-AklQ0uf1?>KU?OojBlUZ5h^hHBBGzh;-VdBKs=892TiqMvd7-gC>PuVUX6WpUb0#wZ&n)QowKmOO zmY?dXNz&=-x?VYRDCy54ELpn?@4idp>VBkx9?3K1^l2@a_=Djl-3}Vq~$4Rl2TZju@3GEY;-l z+!~jxw%WvXovMmS+hZ^vFgBpIaR8<@eeqmm?hln1L#x!`SJJZM zB|6M&Fq-C&))(aTXF5w}or1k%X~*c#6628(I@biz{g?f%NDSFZSKy$sU#<#>s^EzW)x0j z!S`iq^6R^;P=3LO#w~(kUSUItKePe72Hx);h`2pZGHq#9x;J@Y;$})xw1x~X4oi-3 zEgFJNz&NNx?oM`$e%-cGjPT*831v2&SV@)6%cc(_s3j|uqghhqhmqI_)+I)b$n?Z4 zKHc7wt7h6>ikx9BjUj1XK+H2R^3jPq05r0(D&&vr!ng0znbI;M7d6+r<1Gtq~GSnixAZ3 z2x)xP6C{k_u&s2iayKOULu=w=?fsz1YFAE9tsE?kC$1QrA8NXxs|6d3&r&Z{cQq;! z!H#m2-zR#vV_A*NwarZJuC7vh!3uG?BZ^kGw!h;VVQsXFYT1gUXJ!&!P|KBxFX;{l z!8QeA6cvDslw_)ghG{R-tQi~@F}a@&A*Di|RV%6{)O79Asz@J1gvv+)$$&V5B9J)I z!C~5}82;*8CVD1uiex1YT_goGz=$l)BJ1V*BeM_x0B`OGT6G)rUw)9D4i#rQnN^dj zDVu`~__e^a#I?UWDtD`SiNRu{uv+5gu!~!H?ns@>m84X4JvB_V9W76hQ8+OYWUn+W z3N`Byp;ZLv-V~FQYoR8RevV4rOnE|HOz4))GT3bL&%*0~)m(6cs@XQTW$NTYDVkkv zEw*&>q=vmSgTr4VM%$(%Z9OxAF0$DK{{U<$B&;yXlm)sw2E3XburRXiV8}q{{S(g z#c$baIxBy)@B5h8Ef;fgT0tWnM2GDn)yDw@b|MZBakBt}UY#;=mk%Kvz})EQDO9(k zk&V%nIx?LZ+1?5`k_mNkC1g1n4`=dqdN(E4b<>eE;zsJeu9>0IPG=^qr-Wtlj5mUt zXs3*!t z;K3;hW8}47=w#DOl7+D%%T%@NCAG3a~`|6Qu;l*eVoRfI;!dL}&v3aU-xh zox-xNBon8`F;(4VOKD4fZY;wJct!;06hb$I4uqfh>CNxb!WEyw=AbTI5%*st^Ng7z|&UsoRxIp zQLawjO(tw|T5H36q|T2Y1(=-=%1#K^Hbml6XzEpRt9q%{?i9__ZDmSQrFL*-m_pYw zHx&m2?PeuPT8WBVSg4$4zFE%@q>N<$0O4_{)clg9GGcWl*=WT0(Q5GaVPn|{a(XWe2^G+9gY z1qC+AD$QFs12ArH5q;fsSvgKJgYtQ@TxL-HBFqM(K%oYlR+%ci5|&d^OibXZy~PW_3{qfIl5UWg!cB$_GCxwGH}MI*l%jkI=BK#|elkU# zCvxVhrJ7M`jpsTlHN?zCn8!AnaonXsMai`()u&S(*>uv$R+$n^fmw@@tVorV;z==U zD$FxXMx`3mAKT3MKED{^bhh|?RD~33buy&3%M`2N9ySW!H-QNePH*KlW3~Bkn6R^h zSZi#2F@kEG$byxTZBP)ZEH~Oz0Fz5bfWwRQRhT@XX8uvLx{H!T!uaaVx%^??664_cGqtjQ7SD!ldLNTO4Od3%_q^~nKEBR z*$Oi2YOtkgLSJit0-vZg+v{$FcK zp>bdiO-qJBggzxq3XqUF2sQK0jmr#UqD)nc=B#%QPDp~BQ5cLY>oGr-jh9DXbZF>t ztkTetY2+MPW^wTXE_kwS+INWi>0agM1nuO94Y_e?@Nb-`NlhrsJWh9?=kw3*&WJN} z;f_kqF}0~eR@AA}rX@O~F%%55x#eH}Pf7yHrliK;d)NY%d^tp8BvW?%=U0iLb$y~w zd?EtOOV`W1S-j@>;QMyRIx<}A?h83M4lOKV9x$()iJ$UtGR}}YfDbk&MM_0R7GSk^ zby($K{{Sa1X3o8|Nzl`V1&GwDiwH^7ge1d=X6zl2%Q{X@R#c!C?}!di(U94vv?J!- z;rWT!isKky7{yN*vx_G1j@A!bsm9()60R;DNxCR9mYR>`iBl z--S8U8Gud-$$*vw;E2;K35m^4SU;Qp01ckqojFrm$-_9Xm<3@G!Y@#9W*S|>^3{B8 z`OziNsF>eSfQ2i*jk?{|6|7>DU-<2s{*i89tHD^paDuq7mJpT$0xYkai=2J-@1$I! zz1+o&GX|VSClPmJq+ysc?f(GrJ$vCwrucA5fnn1kBZbcLjU2-DTOsz)Q{UO0Avae= zM8wD@S|V`;tPVD^CKG1UzYk@!vPVIqOUPOl}mg`8HgslhP-dNr_6E${?IUx>YPJvFE~PKrymkTS^@uK9$NPBBM)me};uq0%*9s5B*p1ebSa9v4T9y`53!Kj{^F zT+csBvcot@!*6XdO5m0wF#uxB8!@)S)c5V^rhY|DwBE#n_GlaK-uMrLMOlWh zd)2)C!`ZW7}&MVL+wf9qRr zUph*hkw^X45a=)bj_7d>VKY~sr-1(eG0^1|l2M7w7)?rL>)^Usn3oLcw|BM{=N+-6 z4?9moFp~p-T7v{LJl=2xeV1nMp4d_wUa>-W+W{yMCI;XH5nFJ~FP)v9+Av)e8f*jt zlN=K+@qrUD3kG)CyI;|}qLt~&6cxBphWF>a!`b4{6xID5Z|~<40x7r(S71Q_Y6-kp z47(ExP$M>H+q1Vg?u{*dSSd#sB^ilMAVIVT1Um<<+q2!bx-{o91aGG}CsKsPNkUw8 zgoo%CZo|*^_0sQE+NH^or-W3PBd!<4G+1}b*KCiocF1;7bBU%>ZX9p?y))qrsACwq z`L~WiUutfSh|BJcRu)-GF5V9}cFURbUw4R7TWVC4Q3wk=&bIC(H+!x4QlrVvO5p&* zO9+G!M(|D%P`Te2ep@ME8XZFdOB7%e1RHI=X?OSdxALGee^A$td;If;HH5$q#}7!J z5+0TX@k}hy3(mW@$4*wlG;<>i1q&b$@%Z8pgVmR_@uVo+^B4~18Dfv08%4kF&u`&J zIS=s&L@O>^58n6pTfZ)jwoFq1W!~#YkoItiVJyK!MT8;xLD^(KJ@##+8#uidTn;F( zgh3FDADs`sbaL$PqPzUoOabRzyXQb%T~YBGRZ7gB(vVrf35EwN_k+{z%kK8kQmCkP z0H?N1$Gd(AO`P2zd@mgW$}BjyuM1}KetCOoN9R{!i+2!7D-!6`-f+X7fgIOPTL0|HcG^WS1mi!AA-R;_CITDe1_ z<->3Zh4I1=ndTOCxH_D@Cw(KT%9`7o6PbNtfCx&i93R~O02SHn-AX?`&Z%A?a&)hO z5JWC9!V$1D`dRqOmhyTivkD}!lga6gH(^1mH%LiSPga59`NMnj2sJ&|AY6yMWb#hd4!?ZJwLZv&w z3Qs%x9m|sFw$hKN0m@VW$gRXAvo021G(Qf`*i!Rwc$ytp>dA33T|hoe&&{VeezjK= zn=v)B%$`p;)0L9U+Ofq7l?dY6gzi?NTm7k``??gYjJhc5ad2-wS&!zjWi6rg3N)w& z{_@YHOI5`+R`jsZFO@k~dKt!9nhZ|xhF5!GYnA8LqY?TUvm**JG=_e3?opamNq1XC zi8{WMAVPU3lFnJd3UFUBR*!tcyjf>QMJrmvB!~Gi;%b$uo@_*@x5n~Zr|E)tHfV3t z7HOEx=Nz#LY-d$iK9Qv=(J*;sA(y9NlM@6{3CS%uZXRJmD?Dtnj`~wgNTWQarpwbE z*ZhTH(kHPm)TNr;1AAZ=-Z9mNIf&uI1mn}*^8_K5VP)cao!MyC*_|CnIvgmLVa5_L zh6Ul?38k6*<97YO%XU<*GQ{T2XpAJqMVuiIi;OK;4BxHw-F-cDln9zpsVO+ZU||eS zFmDuLU@qABv)QtkH6=`$oKn39zLB*#^}NO6VQ-iqBMX3_NQ5ITyjUTJ68_5u&VDxU z+0#erRcTKJuoc`xIl*r)tGBE2fz!XXgwVjjhVVpQjv$I3Yrpf|?06-aP+Af|abhzJ z!IEX|XZ)WY`)L(PQycVi9)0o8CQNeyghRSt(XF~4#y9~b+n_H5$ntSw<`3rMcJxE9 zeKI-N(t;HQ1hb2~gLtzwafQ6rTVrjJ{PSU|d1y2^pd1XmVPL#HU-PJf{Y zBft@sVPXsn#^R{+@vZwF;QaqTh;ncnwFCJR>l~z>F3cWCdl> z<5?L004oQ+h7muAp@is`AcQ5{34Gz5Hgs;^(Ma6jp&4cjCYgAX4H7psomzY*JI81O8SmJk-C=wxNwLiJ!T7uQ?s z{ggC}CC2sRP7#4GS$G&`Vf~g|&hEc%QOz#xk9@shvm01nzTO{@bT~!ch|Ca9375Fp zkL-Qk&X`dhV~Ask#Kei1c8EdN0LW*B+YOuOiUio_l38j*a)Sb33o~1Z{VOB0XUDRO zkZKSDS%w@d#};OgE8bz8&f7Eg?vHR{l`^^i06kuqSZl_Dq|9T~dlzljhM4B%Xv{F6 zX;;hQVhEfv`tW+=v+uHs2r(x{WwKInk z+7#NIGVjNTG(M5eiog&OAe{@?c%q3q%P_x_-O-~=x720Pof_v!WJJ+Gzy|3iVgx}Buo?42 z+1Y1rWiMsdOsqru4j;fpS@n!-aP{`-onqEGrNJsvV0p#~NI?J@5p%eI&gZ3oNP=#X2^AQ+p~2YiDe{4<|IXi_8uUD81tY0Q{86jJPMN#7Z8{f zrH6}hAuv{`${zUA8Kx61eZ6=?$);0pvu}G|o)He7%#gzZX+S(C1XnJ^c$&ENZnv-7 z8fiXWZw=5`6AKA;WFI`w=Y5Ixc5c~8`5df>keE~x1jt>qID$7QV_Tk7)+s@>Mg+4+ z5Q{So01*AX{?EcE&YLeNnJ+G%4*ToYvYNm|P8JwWFtJ)NgdvHy%->-S^LMqB3vQaWLX_}E}XBRGOASb6=IU(Y`LK_Qf6On?V;Q8Qhz z%S-m{*&n}pOFV5|PWp{#9#J^5`nU)+Y$MMP7l@rBSr9JdVRSf#09~}Jz0WriZz{2-Ef3i0C`BCI_f?Na>F%%Xe@W4n#tivy_-?Oi--G$3Vm2^0`VGj}@ z5Oro3&v=EFL)k?9*mfm=$dup5e*59!Eh`C72tjlry>LRkX?A6n-0ilK>wA#NEMkC! z5eLl{C7qtgbo}#yleEDof*>mvuv(yqKC{P7v|7YiNJ22KfPxbE;SjQknfy2B9_mFh zplgqxj6+gKSl>lE^WDdcShN#3trS3DLLkG7bXvcc!`&J{$6D^5>7Z+9{#T~G>cdoLB6T2=iF+^4fMULraLlY35qq(0Q5Thzf>t782 z037n?0VTCf_2Ivxe;nfA0&+Z(;1~~#D+k3FnYX8+hLg^=L?SR`1UP04Mqcwa!!Lhd zbt+kpYs~?0iGm1){p_u`Qf<9i^w7B89RQ-tb3z-uQ!e4({#0}JZTsVzRKfYgIDatl zikV*x;X(1IUpTsiP9(x2F8EHp&4&{(S^Vwsx4SAD6xc)qY)5wPVTgn8ggkciQna%x zu>!m$rI-+g_(kgN+syR-5!ta!$>GExzZ36Y6@=XpMq?M3h}+p1Q6Da@LDV52p=?0n z{kZx?%7oMb8FnU>d-t|&_eS2&zJ|@1$`FGLeki_{AD{Pb?xiUWV6KD(7~L>J6`~Ph z{{ZBEd+qD83y3QTLD+YX5n>Ro7FLLrBX zY&`pRTf4^G=$>rAmL&=xFtYyu-uT-M`E+*frF$ZBR&B6~jxF2b6h4Q`vt%=k4ifw& zw!}VYMRSZO;t#8*@7=PVe7V2t@DFHAObVSFkHm}zcIcou1R~ZMP9E4RA9m@1S_G-49#HSZ#D1s`zV^FV*DXQArT@7c(+9j-Xpd& zN{E=C+2x0m^1crbCREM(>t6cj#<4FHt`WNoK*T~7!3Psr<1M>AxjB%ygqRWt#3H;X zjv*GW{{S1WD}MVaT~oWQ384w0I}+{wau}Tu_xv*3N8@|x@c}rnx?pnS2R*%6ecSfa z!jQ(Wb??p+rp-U0uZQKbA3O#uS{0>;yGIiL0KLYyt`_CpZ&uy(`ZEd?MF_)<0U7~7 zBF;Y^%X+#g7PU;k3`2hQ9(u6{SD)paZ0Xx&9K&$O03ukz7zjLI#9cofy|AO{qOnat zY;oP+@bOZzg*VU`_vzTULxvC{7ep8YUaUe8dwy~JA-0+XsTmO!@t3RfW0w;xH*YDEG)qUAr+Ajw)S|-E~+rrKBF?jZgKa~6-${S4S@lAz{bH|j}!eE@3ZH=kea!b zKnx9|919L*h(Wk#&pf+#$D)MeGnim;OcXANCIGQ_dvmrOeOu^itJr`3u<27T`urc1 zN=BZXaS*PT#t#@F`X4^Lt?h*o#T3vOtpo%k1?L1dc5m+OqXIK9;xgk11XyNV6fYYR z!O`Pwop#gdvmr&mLxw>QoGa18AK2N`W^m};*G5dA)kn|RcV&ijiHMlFWDV&1{CLCY z2NwavFuQv6Zrv6g&mJMVn4EG;1}KXJvjgUcTEX|_(X-ppNZm}-kS0L5h(R#0-@F`N zKZsc!os>aSG^HjXIxB8~LNf7U)|a=kHfLmPk7OfHbq|1#{{WA)O<>461V~GaM{+o3 z8DM>2dpWB%+w-GX;z|MHIKdoXZH*VsrC#u}z@UoFJpla!;}(lJE8hQ&+`gnqQhi& z(u&tpi8GUeq5%Hn_;YGg0AdnJ#7=U8dF*46$3`b|eu($mOHCYsk2sKxKw06JN8&Rpz{GgdHrGFH% zodn@9IbosfPBW8#>r?c)C5suV>A3IMZ0iLa6cTd=+cg|OyxEuB*Mr+<%Mx1=C%zm zjUyjiYL{n!N>r$w5g#M6m(p&YQc8>CSJI=qe3viDY^9v}IV{$Gs8GB=r9)wJbs>=b1>7|zy?2YF$6K9h_>WJhS} z6k8ruq;I3ju$4?xqQws~#u|oFT?|svHzTnDGR})3gZjqhjs2uVq(}Bkf1;)K(;=ob zP)zA%CN`hasslm34k5mqf-iJj`O7MrAyrYw+dS`0@p~nX5CE9wwz|Bksd;mPhSJOf zddD#prZ%TGCz5p0GHp(cbCwCpKWTa@QZz(#w9Y-JB%Zx1^tyz<)_T}DmnFxE;Q?i;(AiO@I%IMRj5Ur^V#2Ul*iq^}-0dM|S&bZR2!^vH5s zGwIQ&?7o%K8a7T;nnm_N05yHtgHh{)16ASWCFEzO1oCVvGrvZ=a>0jvc;ms%G$z`_ zOI$N5^-QuG3RR5tddgusW8=4wP&qj{y?-G0CC#U3nolK4lN5FDiaXKP@;cZt-sL8;ZY;tvaa43|rte)E1vPP?R zmhi-P8rC85JHn%uW9b@mk^|hVP^*<|sYv)+RaDmQnn~b`RW( ztHCLBd}WBu$41}J^9hf}QKSC=Aw?}Er?ftnHZbdQXE+*mpV!9W*l}NlIXEf3tk-|jb;o}5y}<+07ok+B~`^; z&yQ1V#Ck!6Dn~}YCZRDw1r}K>=+cyo<6?KIBGOJ!llrvilCBK$q6c;r5ipRFnZdx} zC`wtX6b=qpK3F%O(aAkg9GxPCUu|MLXhryhEv$1Q;?b6bv}@KN!B5U9P_xj`Z^qGx zB!wLvT`N=K6y^|4UQr?YSni+*wJp#gvS>mhv^>g#g9Ud8HR;&l5RAPewj-4bA(1kJ zmM54S+0wpUfn}gbjLa2}u|4GJOE(eW zMlmNWKuOCIjf zyd{bnmbR1_Y0;QrfF&ZK=?0UHgJPqgPSf@%j_oT)?V}nhPIF1lr>grDXfMgceXU#8 z9MV(L(sGIHe|mxB-PXKfAg`Ltml_82dZh{8=SI+$23B-p#cL&F!9?kfYR)HyxlsxK150%}u%Nq}3!=Dm3%qlT1+(OuJUHf0E_a zvdq!qr9sgpwGp`AZl!aP&kFwlquox2{$7a6e5TdK^5^4EK#Y=yQA6#j3W$RE-kyDK zG>*V8pUkdjI>u%>{wqIIVB)dk$>HQ|K3Fyg*iaI7)0ZYe`$1ZdO45$$r%t#9w!b2j zleIw+OtRTCk~9ks2(*KAHWst3L4)db_}W^I&Dm4VR|U${UnV4;nj#?x$EUy68M)+; z#X^NC+3}pTRDDiMv^jkyjk8R$p0M~h$}X~Z25EJ?wWTVZC*Z3Zg$5U+sBKX-Dm`P7 zsL49bdm~c9Te~3|b6<<)&7+X{V<+}in3w7Fg+tDtjTVVmCQ6_C$aTWw#=LNb4QbC3 z)XOu!9WEZBDl{^C&o#V-=lzz~eCrPOTlM8B8XB}dWQuwf)FY3AbUscNE2^zE~YPxJcPL^dE zPE(c^2(vVWYuz3(o)2%v^n%8ZSqWtl*()lbeda+6jTREUJ!0B=V4{*@sIVn^WX;4V82C~- zgFMY|b*Eg@kYzv}8ERD$IZ5HzAt^a+t?jlHbhj;|`ks<`Izq<}N>$1|7MJR-gj&82 zZE~}5suQ!Wm=T!9x|a8O~w z4VtvY!Q}v_NY>kxRh@v2pNIsB^GmRX!`03ppn`t{hN-ZrcxfM_Q!CK-WZgrrDd4oDm zU?vnu^dGPvn_D5zlzkaNfho*@p$LiwUW5Z=GBz-`XSc6pcE*7*3f3yn@Y&PS4^wHuJjaUgZ`bJwC{-S7RS5%Yo^M^SlXFUB*enT&cbUuJ{E`m8wFyGnZW8v(>h2rWUzyP zD#5!9==2ca%?r@-Upp|6oc{o1E;$GY0Ea79?%BoOsfKjbZCBhLnP4Pl7WF+%uWri` z#G=#7403u?pyX}=)_FcuEmpvv11v} z&kjo!IUKW@@?i&K$M{-yVI-j=Nt_|72B7DqIP1Sw>rvKbMufPiM%3vzO6xp=!myHg zLN&@`gyGrIl_)J=N|OAUQ!^D=)vS==Dw8=&?B_o&dR65K@@P(T^3qPz4)k^wHBcn& z4V^Z6DLPun^zvyb#L@|wg$eyq;)>`9+N&$~v9JnQ($xWt=*yXP6PHK!QRpn*d$(s> zJ^C@w)q7h_a!ZXyE>SAV6)v^4Q=yIKycY1+HBQGfzb_>0eIxdf>kj1#eyhI9SDqPl zy)V@>EQ7&%quLwghDioPe3s{#vS5N&388z0$f`3ZkVrex*~nD8$+1`D-788&R ztF}oXL;x?hnWNA#3WY0;8YeIIB{oFBTxq}t_MiZ>Kuo`Sj!|wnNN|9W>f)*@@APEO zg$+|0%7<*M37T+gFr@F5Z^A>$pRbZi_S|c9!`Tp=OM15bDKC{URCLozmj}5)eTrZRqUHlN^6-y;>|KltR(LbNajY`#;bXeVc+^kGBqq%-mX{WYLdD+DEgY7 zOGtQ8)nKRY99$)<3H>&aAckZzf0kT?d8SM4lH97++Wc$t!o+-_rliCiOL9j1w53PE zB_h|37}J*vehs`Rr8?VsQ5HAJ@~qL-E20!7H?`HH5+(1)Mp8YU83~iDX?!8IokB$X zsZ&~{Y8BH?8UWy)j$1|^f@weV5E_2}0Pg}n`LG;s8PU@MC74NM{_p&|TAH<3M(hoj zDD*MFON9$B4)4*MJvFOrM8aK-1DL=N=Gq9%xjIoqfHq{)>CAu5rdg)Ip%x6rJss@K5Pg374)--^G zR`c0~^R5YxlG5QtjwV#8V9}M9+By@gsl{&1Anx zHG)aex0BB7WRl?0;F{E}YQJRc%9+#rIthGDq$PzQ4GgfOFe}^di#XsFS7`SQ;};Sd zT|($|^%MoPhTK2~tO!zo{6&NF9d`X2f2AsC;Z0X{nJdW5spVc5)fU%VHM*)W=57ImL?0UkRjcq%VoX4Q!D44WVyp_}Z%{!4?as^z~ z^=C{AI2F4)9M4%3G_S&;?qF+hD8_NR9H|?UIW|K^asL3bV#w>|B@W6qI%$weqG)uf z_@hGTjT1PbW&T`M5JF;JWB&kwT^cTe&Ha_Xx1U(I(32ChWS83jtPZ~YwW>e+JO2Qm zQoI}Hv~}mfvaXa?WW^~~bz{}JFeS=zVJ;>kSu`^mbV-_6aCBz|WzT3yG1+%u|CLt2zmU!dc!3oE%czPOPqk~Jh00m1h8DW-kwk>!Oh&N0Q;vRBDwDMwT#h@-9GciA zRC10<%4x{-f(xW7tRu1oW*l18YJde8ZC%xkGDxi~aRSjKu*6-x+bc&&q{dwVD2EZO z5}=0ph+rH<`Wnr0JpTa09C6S_qh%U(r&zA?M80D8c}+vBc`6G`6%9)~mgbH)yzVi? zDNc7sDOK^dj)_)ciZgKk#-Db7IfM#B`38lqp*u&h zwJwyGOirz0PpwkuaKqruSrrcHSX?SNC9tTSX9o0uQ(e^xt=Um!)})`ztSKJ7Nd&HK zAmfxIaBWMaXttzT$mv`-8@6yo;cF_LKUDmp@mJ?3F=HicRbyJ^Ma`8nGAuOXk-9;g z?HNKoTtUtaE)1Wt-sl!$%x* zW*dtQ^JtW%P8ob29V%kJS=-5;7)dRja$s+8H%wu0CtTYxu(=bXxFSCT1;rzRZ}N*X zr#*NrSJi27W0)N{AMmMIbMtF^!=qI~&eeimj+e%ol_O*`(X(`q|v5;{*ol31K zQc_~A9+kSmI8Dx#A6W8@XtN@KTiV#l1M|{wuY6BfwJfmGNjcEyl0vK*jzC;-JfG5) zHJz6vqw9y423oD*u~yQn$|sWB=4lNp&| z5RyGHl!VECT=LT&wf*M~76u$^OJpqZOk`!zpHx5PX22#9m}mKQ=;-3XaJW2k$A=`O z7CCh4;i)NnFAVBeEF9%mX%Kl)u3mg?!6fJAbI68}c9Kv2kh8gRl)jdZlZOMI7!tL0 z)bl#DOvg#C)pm@=#YL@0XmY&r+*nohCxZW0Z6HTedU)% z<7NQ?2e5@l0SsdGB|r-;D5|frW!x(EV88e8t05fPokX88Rw5F|K1kxy zlrzf?h?QWhDTI@tnMOOA1nCe^n@Uw_)R$_P^sVrBTTxQFx7mQ%`eBpbAk#2Qft1&= zx=H7nY2`tC!)}AFX>ub_uSWXZV`n3cIo-n&P?IGYZ-!IipH)uP3}R zH@O;4nAUMN=?81hJ48|STpK#+23JR{<0U;VGL-(FXJLC~TZ=pLi^(O?np0-qcFxpn zDh${=+d2$&GOcROwy!10!gZ?h6U+&amfo=(vh=A?)A>A;a8;B^-nkA2D}uENxlh$7 z_@9)_)yT}w>WzhB8G=_kNohGLW~@&9&akaPOy?X*Z9{3~=<(=FwL2 zSP6Ps;NVGf2`>elX>IEp)@zRPF~pJ2=cB4lo0927^317fpDQsPNw>4MFG%2>8nBp+ z4vx5_>l;U<6Q+4j8rYMh<3^cTl}t(HQT^orS@B@2_B`U{M3qd(P^pK_C1HQ;eL37K zy_yqhjq0)GiDAhjX$|U?8670H^~IE0a2Jem&P8KjYES+~e=1lhscDl$sv~BE3X>SA zytK=boFbGKb}?3xX*k}!H+RO26jQ@H3iNIWoLZK&yeBMb0_Pkv30o4mtP{O{K3nv! zjDK5`!Sf`ru{5H&$hnC!!oWyLOQvXO@wLY2e(s*QMl@PTl|zBv!WHPu9pe;}+R7=m zc31+P@5er26*^#&s`0o-Aw>83%Iw#O1g)*c6yC9`7~E|s%L*P6lkLsFgKJdW6lbrK zS3DB1vj%gq%P`ZNX3Qh8tWUqIILCbx>Zu&NBuvwbgwo)~`7pX8PO!rKpiyoKlxbMl zM>dnsD7OboO&*JBehPk=XK76Y*(|F{pA4Vc4H~U6s0j50nP$X(Qo*vCv#7kW(b%8* zZHMoOjRut8g|FijYOS*!Lx$O0J-4)Sr-TRS>#V`BsG920D{Qufzm|n@E0m{Lac5wY z1qR1~6>Qgq~mmJHVvpRFC;#D$km|IFv+#*Xky*tr~e4&PMxHgiEn^Z?LtMuz7YSaHvMGuz@ctNGG^}i}CL1g&j{yEJHTYnxWy#3wXmO)iFcF zUX;cA#yKu3l|-Kqzt!OwA#;abH;7-_;O*=D=#LtT3fLJBC74K0Fu|B0i!t~2Z1End zEvqz2g%U~;!7O^Q8d$ZKY};>FjHp%>R|1JA0L!@;0EX|M4}@&XyV(bl(#sUV_h|O6 z?`!qW54K|JTYp<(Jh{F+SD5%Ns#0mfG{+E!47@RBq6Pi8^mb=&zK~1r2K8u2Rchmj zFIWP^ayw!?v9;Om>DkjBk3q`nsZr$^J}`t>c#sHx@P2vrQY@LOae9D=01_z)B$1l5g+ z&5{!^z5N}wd+BhGK+K%KN72Qrw(zkvo;vsMq)RuwHx^yOl;M|dtXWt;&u;F!DEVfU zSl1Tk?b4YADIS=m*0xSLd(pGq6-8{Q5eE#$v0ezZVF{+d%}M;`C1_MTCGS_OEV1N2tIAl*k4yijolLCRGfu4iv{d6FLP!DqYM6a z{hsfICt_Ptz!xA|GVaFx(FZ)ct@rPuqDDdnU`z=K{OwpvFVESw&xZO(G{BoXQr>(w zVR(*XYc(06qc6*)01yxkELTT=oAdU=e~tU{nw!{%gb@xU@k`=}R%iVly!$uM^8~z{ zW`-h65Qgv34zPCoGPV?y2w_PQ0udHqZihSGHtyTD$i|S?TUWbVcMLs56A@vF6cQ2P zmv8Rj>dfe}&lYFfMB`0TNH0XOVZbH;QN;87XAgfxB?YYn6%hmj5O}uU7mIo$51v$t z<^*B^W?-o>BG$(6L+6+8`1DXsLaAzZ_!>bGtlsc4Kq758yRa;Iosc8EuaYtM9BXN2tUa zu$mJg#ue>nU72;p-itdaHecyBzjyBWM5$7jTPpcu%ka$*dQ#0&VTUP;fQiJp0Sq|< zSF?6EjkHg838beHViLnHmSH9Y!tjgM*=bqBW^smX!p z_w4W4NcLw#GDL%jOr$rpmJ3yeGdINUf-<*fUrjA#&QqQ7a1h?jg;}f5giKhwGV7B3 zo4@2@oYu6qq1a+9D^5>>67hr(lxDNxgZTE+l+5yIg0z?f@RlP2W+Zf6P5!%I*YnDq zAAM+=@v%utn8N~bhZt~!970RkhYLCH7F)VD6I^RRKocW&GoDnBbQgA8_;o@;lD9iEt zEl%ydbm}JvCRQrEmd=vgXL-u7Cnq%0`|-<(IeBtIHg$z#5>s!K&x(g7%1Ah$+8&CN z1xN8PjCq?gFHC8NL||5wL50BH)s_$C6V=g{+F0n76czQ)TQ`RMvK}#6JhLOHnsr*k zm2u+WJM*+Unr63BfEYm1!-8R83~h;pfWx=$#@YGN^qPKpL}*3`nI0*4z$8{&!0P`1 z6Rz9Q*9u3i=oS$iGZT~>rg4HItm}+=bc#v|*pse$ z{sZOU)QxaV0cdr1Wc~Dwv97n|_hT3sV2i`T5Kh(%zZvz@18e>4Q5D@NpQd4D8RkcE zT*iHQ_0XtUl12)QQj9|iQFCDqVDaqsMu{iN2oHuKz`9t3S-}m4-ycVRx1+Kt6Oh*W z<;IQ4nvadW8q6E-TCeHTI$H*ZX_J#nR3Dnw2g+oTAbF>5t{ z{I}=RZ5L9>AtoXb>hw_uh?edVu~J>U>CyE%OnS18?ChjfCA47vfZP_`*z(Sx5aA_N z*80ZnhaVe0F=-3o2MCNtlxczpu=JwE&5s)2UD2uQ*+m2#C6Sf^9C*Z81_&2Rh_!<= zD0-4UFxg7RbgY@AA;uW>C({Xnfkhm(+}sz_gVD2yev9VzACHnU7ZQ zWwhkeWFAryad293Wtqezkc*z{#@X+(6ni!l?Gz#b28iJo62M_%5xS#3*KWJ;-IXbn z(B(|uy4VjUrta_mB*C(&5)FY+EPmLuQBSfH>#3x+5AEsxBQQV4hK$~3^C4?qx z2{3_T7Fm0B*+bjY)f#g(v9e`YX(eeV2tMX!J@@*HegeezgdYU#Qyk-?#vKV9GCYYRqdmvO;0FYQh|h z2y8DqIp}Wf%il*LO2|f>yXGh+=y?AC^SSR4kKIZZ1QRJrL;{U0H-ujsoWI$PyDprw zqOpn{>@)-_#v;=0h`_|N0pka|rz$}gd6sj(DmFSFP}=5KD+}e8Jh8o@D=GB- z6|Z08_^U;|++E#=PXBt?c zieOK=pNK3hFk|!3@swd5v{?|(QZSrpcW#{#;%c?nB}Zlsle!(-x}=-qaUt zv21XPou;r0HbX)6iNsUdI0UgB5Qwn=zBTCD13UhG6xfci&{`!oLRdmBF@}aXW7gpG zZv3`Vzpq$vaKQ+IF@!k65J@YX{&WtHkBKyn3C_A$juD0y8+Dr?VcDEl@b-MWAsTz~ ziGQ{}F!E;F8&e1G3SW3$ElO&|Z5$4O1W2!0kh#Da@!Opj(pFj#!whAX69PL#VVI?u zGWYfG?cGYMj|77utS;z-eBgS#Ou3&KN1~1ao(PsGKw-LHoyE8Qci8xilwnCE%u&oc z@7g|CjyuM@L!CE8hB9Yr5Q1DHULj(?c(H2-jb(*&`+by9PWawfjD$-rA-%>G?Pq@b zA>!IVWSoK*LKT-lA>R;%>P+eWcTV2=NX=%W5q3rdgusNbUMuPC>)Y3F!j-B@if8N7 zoiZ1z#P6EbFPD!WF^M?GL;?sz5y0&r35F1avq{4cc*TchxyIP_Q5|d(7$S#!tUJ6=i=4zK?0=EtZ5z}sUL)@f?Ty=e zM!`9^fWU^qK#SVY>x_(S^`!3V-2^SX>u$P_8Y-r)(!aV6D^lbcS;381Hd+Ff^%s1<+)6cwl zM&pkv2H(aN=nFhUFv}l{I;pUQWscxLc!ptkcfb&p$Fk41@t1WIP6}Z}Mq!dHJ|Kb- zVi$fJF}HY)kfAi|+lv^lhk2Hl3|w8mhTnZ3Dtg7&Y=;~5@0>EC_>ep~Fb9Z?JQIw# z920bv7eFh8hb%D}0=cXnt^Kyctw_Re1iR)67qSqqd4>M~JGVQ1{S-$)?932^XC|d(-HD+TOc8OzEI(yt=ydq%SyL%@_ulQ%1!Ehdbm42#*^V%m z1W+Bd&x-@hS3-kEiY0pp_elleYa;+bB1(Iwyh6r9=$vDh~O$%gV)RP z;T6R~Wrd8u7O+AHdBF%UEWws{e_zLT(@22i6GB#!W!+uT7%g8{xzmN6_q z7;G#?77&IdVS{d}G4a<&(FxF(0?i1+cIkr&K^KpP-IRu+W!CYhFvt0740vgU4VQ0T zF{GBIMnb_ryQT*Hu9x0-WMzjYOAl>5&c;UFL z8#4AscU>`wiG(XJgjj)rW!v_jWghPMY@~A(y2DQWa;!@#hSd%Hd&3&>wBo+5C{mZghO~C;{-zU`nt05 zx`f8HAt4M6h)f7YbIsO!yCdw`M+#!KDE!~2<8(H<#xw5q_IuyVc9LSDWgmy<3MQ#6p+up8z~O{f0wDugiSM#KIr}LwG8g@L z;LnyBk8Kfz#x=+J^M)zsuM`DgA~NnJ+rjfU@6O*Fs9q3Xe%KY~2hA9M@5&JDg(P&z z;~0hpl32|w&U5Vw?1}kjMUtA*8w=M9EX&1@&h>w5)0fWPxG7CikEf>wfDCRsulb0D zR8)YW3`KFVINM`$`8eHsGwY%vhb2V<&?Y1y5WLX~)^vV*X+D_BoktYVmvly75JL|? z#g=c`)kFod@c;>f2n!Hz766E0#lBp9lw_t%-^l*}J`EBIV-(u=_v6!pQY)jI*`STl zqy`=(^FivtXO9`ik*mDOu(*mOAPLwwg9r;V48i{Zt>Z48l(UY^X(CbApbt0c7w+rX zWIrlKt`h2SUMM9JB?1wb!WeqXdp_$UNfP@L8|rK^ew-i5(D9}eF?B2JNUrN9)uxEM zQ4%2tFulCEby<}XVEClaS)+s{z{4)yJ6Zi$?#j;2`b^7Zl(C3K6k#sypgRwo!?&6L z0G|$>`D~(C$P$#}aSpOJSp$i-9bWoB8Xsh)5`^NJl(zK(FH(4;rYu-yTHIr~ zm~ZW&^W@|y$s{2}8^&=262oK%x1ReQ`#O55tsPbz;2d=&C?gbaptuCAX4aJ)*Xw*t7gvg*obbsdgNgSsIoiLU2M8l9!B}l>ya~ zVcxXjNrpPZ;nB0JJ81^iT*$QccZNAp9*W)~^fyV#(+N3bmb0EIwHfy5hp9d=PuC8r zJt}565RA?qe8bbs1OAca<`L&7g+ohIjKCJ*BnXSr3>$p9g+ZmdOeT{ONr|pU6X;|q zKkEu?(R=C7n6}EbTB*hIVIi(&pBxluZ8G`=2Kg>bFBbpj&&8H$-xwK24((NX@W$Yhjp4-St9dOJUq zkmIUl4vK0Tj; zo+=!)traQSB1DO4Vd}x*)pW@%)w3euc|92^rmE0Tsv19&Sldd{(V%&A$Nic{#QsNZ z{{Senu6~fw2VPxCr9RT48xRX@ZEW|_ydEi~XN-#J5R?i4<^kd%OmDbw>?a7OM!9yc zNlh%EZ*Y2YF*?T81e1tiCLC!t#e|zIIo0g*zqSssZc&K`>GAle!M0LuB%e$2X$sCz?BNJ1(N%h8X{li)juPw>lhV17LX}U4G@ay0 zH3?!gv~gLBp`t0YlZe+4+l>oUdMt2sxcydz+S-{XN9SbCix9TUa=2U(teTbxr0wLs zxfP8vDs4FKc=X!j9#G{o&N@)vQ6ds7Z`6y;fS1o<&V8OBR!O=nI^lB0Zvkz&kZboib83n3Q4B6Qnh z?(Ecy!ht-%OOtHAl;F$KOs^x!@;fQR!%;X+ug;4(dzLkd3DJ=L*wOZ-iq2Wp$hqX% zRJH`{^3-bLttz z(en#Q%p{z;q9FeOd_-!_8NFy0=~{XMMOgCWpvq%9*F>(%WcKw2I~-YN;rUSJv(`Ug z{{W%;JtTjfPJc8xCrBqs&vf!CSBJ$~V3DXsRw9zlU#UxtwGtGhVCiae(zjBYP1UP4 zv9>uho^hCy)Xd-o3X~a!oR;)ziHRnhb+#OQ7agQ4PMhk4`y$%PtS8dl+U4eGjoBQ! zj1OidGZ?iK3c_$sme3qY+@k?X{{Y$w^3ilsX^_$X01TXpDs+@&mI1SfvMqe@^k~1E z(x6n-F~+FuX!tJJd4>&W=yRK@cJKtprH$toW;QdCxIf{D!Ee$d{vw>VGIxAr zJ+CgU*-g)LyGScKWNUC*SPrY% zEuH$aCIx~h!wFdAl;fLOk&U2tw&UM zcr)z)bozv=iX&N>pRJmy+BQ7FPVBvS!2y{cgySi*h zxgsHw)XbPm6(L5aNpuKJEWw$~=%~ntG0%EWMJC9U3|BrQPe1!P z0RCdn@L`n@s$Sr+NX}6&%kwii(-4!H63ZKVY))C^X49k39^|;49bLa|(N9NGrwIX? z#KMsZ#SR3qHm$c3epFA`p-ugt;t{8s)Ki=)vPYL%QI~a6a42{@lJQGW z_VDmgRZIeFEW^*ze!k+80UvWzmS=6 z$9hlL?A=O#h%^zjsC_?sWWios_|fZp)uZ&HS~*n~Kkci>b^(BSR`K0g0#a$z#IY)fWa$_#ixRfBtWP7NxQZu?1vSJ!r$XRP8M4m}_dcpZf++=3$x07^!P|+tk zf+SGC?G+Jh#6Y+7YmO}uOCqSK$yrvQh%hrdRe&jM*KnV_b+`=;Ka}FP1c{8+nAyO{Bwps+Lod{8u`zkT8_u z$p_fuUPs@nIVwIUWsaDFKkr>O(zEcS zp4D(q;J;f3uq{s0IahM#^^-*Q-f><~WM^{ah~*QGvyr;FH7q5;U)Iv3Sxk}yR(f$c zRH_Ps5-13}q5uKIEUI|qdi<5@;mte6X;n z+UD*LbL`1DKPm~T5uBn!aK>%HMsXUG)H<-se5FsfWg7s!Xt^6 zT(03??QJL)aEjTv&c}qN;>ab<>sd;^zVsO@@|u z0w*NpwyZE_>jqnsfh3Y)Uw^}GI<)g4wAUx-#-2DpsWpVT{;1~ZZmlM=Pfl-^0c-c{ z9T4Jq;yjguqA1vx`zF}ipSosJN>meBbjM|+L*!R8kNiTy3_tjr!nMX7(bES|Hc9=j zl>VU%1i*_rI6H?ZSf8e8pY(R{!;~kQp(VZ2MXV~lpB77R&1q7)OLdng&yUk0H!Kuu z2vVJAlTRnf&eHmyMRaXYlhCcFppFLQ%N2!Q)ppk6-~PvDiQ-*vax6<4^op;p$t~rZ zO=o_UNy$B1zDsVcrzcjOj5ay57{Dt?sYbS!UmE?^8a z#|BB`_40OEKDD;2Z6YoZm1fqWQK*dlv&lMFB~<*4I=#AGIY-9Q>8Bu?Mo0o_ zAzcOL7=HQy+W-+7i&^i0Z|NTj%qU@)SQK=X`{*Fwu;35X>Ks5~+E%S*RgtJ%xH#4o zTFY|0^)S0U4!Nqm`8xS%xxqxXZig+_HCW7?rJaUjRGg9~4+oIRi!nh zKlh0eE!DCXAKWJ$ADoe@| zQ;ccCo=Q?#B0kD(w&7ifT7ka@0gbG>grAjARd89E?DqUq2L`lt9i6Ev!rN7>Ea5Cn zX@sLxsK}O}lFln!mmlkp+tJ-^8Plrbf}4qsdA%qDisIw4P9L z3UT>bgx-tpqJ33PlKk|{vB9Z%Y83?J;FuDn(x5|Y=8KF@3N^YignCIfbbVrz0;e=5 z6#>Et)*?_&jOZ)4hLTyudg6Y$;vE#MK&Xl!*jcO%ZNbmdGczSwIgN?&$AxKMTr(Ku zp9?ZwD$&tJZq)dZ%k`l(1p;jqW6`bhRc#naM90X)xgLBOqM~5Z z@ug`wQuWGZ#*^h<6Py%k(yq?oIPjfgRLxiK$W5wu$^F5z{{Tv=`g|oC=GlFQcv6Iu zoF(rmB~;e@=t^~M8!6H%?Wh%%i7VEGjVMksnx%!3-!QY)yxtu)UmAmo{iQBW4VeB= zDqNWeB$W*_3ucPxE4m$}qgVA>bB%$9S*>Piil<$wo@9{tMkAEeFsQ5g*jT8~*Y-9A zM7Xo1mg|9^_B_;kCWoWSbA%N&PEB~t=^i|&i%LsNnKeu@Z0w-S{{T}~`xLm>YLh>A zoPknZB@)C1z*{D$4*q%Gu)RN3fgB)=lWXovK=C8YWwyEvD;lJwAf6Ie8HZIeKIi9P8;*)Ws#%WU}b{Qnje)n?s)@Y4WT} zImyaHtQfYDq%4@*P?Mvia8neXR7z5He5#FJ1>8FuWZLPjsb0Ap63exBIS|h78pKXv zOC=@hU$K$4yr1OKG=|SD;G@#q6KIKisSOcYM5{EaOJ77ytVxAsR6%4>W#z#D$LSUy zUYSIqP9&jHmp|DQ8uwrTrC%;}wlmvmRBc0e>eH@v^kc=2RGr?EwM7aEuOifB#T<)!Pd~I)3sM%TFYXVPnW1ExJ3XV?S zGpBO>vP1Nq%GY6z!j;@N8hKlg^}E9gVyQ*7t-&va`Ct7rl@{J-ks9k+r8-vn z^s5HO(yT!F zS%xs6XInN%a;aKlX-^WVC+RFR8zfQ^pGc02rEk*XN)ulU@_k@P)s4amtLE|+EM-cv zUazXPT_~kdJQFEDK$2Dz+OcFmwN#%CBg+YrrR7>hx-QyLdYP|k#Natu?DIDS)`_B3 zW11y)cj>yW=0`H05zS5HlyNRiZ^SH5%LsdFIOQ5bWQ}T)$C4w`v}$zYXykN^l3y&J z$>~G^+Q>{56oYJtBlfl`{?^HA?RUjvnFaRJ>TRWjL;7(a*mlP4Uq-1 z6&)<6Lpe&i7z<|#GjxNcwji+H8UaK+YNFX^26*T{Wz19EN*+zcW7$W#*PjO94}@1rIt*p3d2J?G}eP_ z;x_W!9*_0qT5s_42j}Ik|kDF;?TJ`OD+o()!L^bO5!z> zu9{>#XpzegQhW|@Nu^n$?x#r|E2gHnUsW2Zs#!FjDJKk6&9ZvLx*LO2qi)>JBS|M- zPoyTbFT$L)of?x%5{YvoESvhtBdVB;n_J9AaY)gPVW#5{X)8S=8BV9sl6sqMrs-`U z-b-(<3YR;{V`(hU_N3NgtsKVE+|7bKT@3Dcg*F|f$3<77=B}LjVnR}6eslw3uvAyz z&VYbgxPV!+rqW_vC3a`1tdbR&0sjEy8h}uI@0B_P%m(F>p(|##z^qUq7`%{@<%rJO zoRYa3QgBGK9|K~K;(IAmXQ%q{{cLS`sKm~W45`XcHviyw-Ts*&Y32IFcywWJES(8DHzG;HSl&)HGOS{GIokZ-apm)X^&!LELn(5N`KBN_B`Z*6BsQq-`LW25QGzlh7HI$UPo(g!0n zu&0}sAu(dZF$wY-bBfajvOcKeiH@ZY@Q|{LPe4zRDRm^qVPIHWZc!EnV5kKGl@@of zS}117c0;(0y?@*!sIw$qh7 zAe74>c?vqet1}isJA%WLu29LLngr(^0!b@Fz}Fvv*GajnhFLSik}#=7FQ*E@7;%6L zfmjWNoztk-AN*dDsuZvZWbxK91}tZOEV9=SoB|7Kd~*r6n87&c>UR5j>3O5&CUi1@ zd65>N-!`~$z+7ux`1z&FH}o@XdWef#!>=gk+>I+N(G#w6ltSLD>tlk2DqSHmf=)XF z)L3_3%@*2Si3PaE;t4q7pEQ98xEY9ck*p^&btLpc+f}8||;!GEuAdfsxhW`M*8BxTQIv^Ja60BE)#N!8dzp~qU zDVA8;)!*+96;hNktL5bIxdf=j7zQVVUuSeV+aB(o+9s@QKp%gsab8U;COkHX+dsYgmRsZ9x{8Qc3|L?V00uobgNN5=du_IiM+SFbgz`-s1$&4Q1W>eP?Du`}pkJiAx8IL;g+vuF z$*^;d07(dfE;yhe6&qvS_wD!TZ;&G262?&%LK|-J@5FX|x-IRb*o~oR2YxBb6@s`S z1YQ3CcTQc@JZm!Jj1AI7(RSQEp5FT*7eSx?lt#iYA%vj(ya17>P1;x6VQ+T@Mx^6}JqJIMOvVgBRJPX{H|wa zTlqwHQq8d?f<&aJPT(Nnm**H8FYdQ4zjt27l%*h=0|K!021LUFa6%9@W@l`Cdu^nM zYgp63B?TSO`oTn6%uW3rvChuxY3jx)zK+77&!v4up1PLDC-%z++|b}-n_CK^L|j=5_wXl1sM=PUT^PwJ|7IJ1kH{sgA1U6+Octkb|v5c07g6Z z!rDrY4pzWWEYSi13;-bA-)+4AK-Vv z72aYwV#pbIkrrL1aYPcLVD@b2w|8wLm=Lu-xk7OZ519~y4n4lNJ^i-Elda#0pXt~L=xPXK98|jrBs&*-c4bBn5V<^c|wOEEojN^xmhF;xG znfr6yzKQGWc_T9sGLyno^Msp-pzqZ;gessxDi8F=2VGW4bv z+oz)_B$i#l1aUOIU&1!;`>4wFJ@mselL^zZnJhr$xEDw?s|7R^ixW+`T3 zM2cIM%#mDM%~;+B^l4&`Pi>mcAvQ4@o>-kvD$COBg*lrztUxmqMk|Xl1_n2xBK*(! zJ~z{(953aG@tK{avS+QN^E9tBDo*N-TXJcaCArb5LvAz(He{CB(56t^ZZX#BDwRc6 zGIe?)N^)*+VNDaU3UU!$cf#mUL3BT@^4zKWh2k3ULdMyF~Qn(>BSL3^KEE$I+tAHL}V>f~*74m?2xN zIFn1bU$)O}F;ytAfgzVyB@m7Yg9*jz?Ea2XwjCSk4YyWIs$jxk)ad61H!h5Lg`A!o z_fa``-AAxzSzzR*CyJp6poTnSH<=$><9#bs(ep_t3=@fhmRIar?{t#o8q%TXZ%prl#DY|!1tf&?i6KH$1YOYtJe&r9N76Y=V;FQ>-$U+I zbQQoFlEZk!;nm@tiPlU`-LgA7VPzT&@DU{_EQcb@EFr_u&QXR~;jUf4)9k0~lkyRkDJ{ zA;KcVIJ@Bygxi8%Et-?F*Yx-F!icG474R$~5hfRgb_s=uI=I=t+uImY#~fmqr`8rD z0(Kqo1X!iwe@A)#I-&7PdBOp)DJTg$4~!DUhF%%iI69u|ei4ndxA}#PR^eaAwIY>7 z%2hD;?-1-^gp!J}gdi-zT^NicAQ5`N7*DFfJ1cC5;YFm9)43&DQmq)vw=oPR&0!|% zy7&8IZIAAth6B!B8wf zgu@KOh|Abcs{$W|DrTkT6j3t~HVcSX77Pa1`bDu+DPNXhZc#X=a(RhGm||i?BSU=1 zZUzsI+7kk^%rr)d1%@Ij_)7@09g&W!8}5y?j8s;Na!UxHl*0`PoS;d?hF&MxeTQ#- zF@#fzC(yRiAMiH117%&7W&BPgay>@u_%PJEIm-f5q zpO9r0t4<+gm0`$t)x2-Jls=kJfFrPFm{^oVuwJ`}Sj*k__EGRlL<&xE<-p>@t0X$S zOZjWMGx+syj@v5^}_-DGXn{+~kF_(jK@2l;zvu}MFXG<anRqKJu){Nv*e9YZKJ#k;RBc7$*wn8;8Nl&wi3#w-Ss5l38J7ykfk z+1Hn5PGZS^EbzoDju9gj_?B5Xm*cbj9h)c$omoW#g#m=HmJ+~OhKE!$Gs~~P@_9B) z%&IWpXkb``6EMSf%rBnB-Ls?Llqe~*DL}t01HFRO9v)a>2HRKd?Qgoxz4t;X3Fc_0 z5Xe-b24fa5gtGl!FEn(0pM|-+&>1s;(o{h6u9zF*2#dqjZY#&nBV|mjMw&2}69Qm? zVI`TFVBOW<+1E!>2d2W|qvjzP62>CK^e|%&8N+VNV@OL2(DJmWAqIaR28STZCmEGp z(!i&RWo5+q#bAj*Zx3h_G(L+n_MNZ_m4Jw$c`^uh;Uq2-BWo)U_d?Sjn~9ynFJ9 z)RJFdX0+j9mK%eF1?TUulfE$B47w<^n1}J5ieY-O1kGShh8%v!Zhj+2@Ru~kI8lhN z7%SxnA;d3s?;h$NgM(sl76T!6>^PzbO~nUaL_T|ZD1lH+Kk&YR$>C*C$_0DE-C{c} z1F(yX1{_FXn1T~->jiY%N7IcC%P4|O>X-JPyszLLBhxv7p9T)E6};9L z(U=p-h8@#2m?4ZVM+!Qu9lJKu64A`a;3$?g0W3i-^gpqnDMfc@~2kd7k2SM zG9coFMdEnrj60~BYnve9h!_$Rf)ei*En$Gqx3}T5YlWB-7hhxDFz5MbK@EWN_V)fF zFGS@t5qJft5oKZDFu@n=F=O9vWtq|3*)dG|z+#wSOct!d!-sF**GtxRV7jjjysE9BIAA-C|NEDXH7< z^2ZF|!nwX;x(FT|NZr+$g`=1P;cq;5yJvkFYUb&YI8IRu!7}amixU$60AG%%N3HOs z!Gz@DD<2fm3djeXzFseO*!A@GMXs(a_k<{pH%SjOd(YW}7{|wUbX2KJwEDxqYB&Qw z4EF_LO9@+48nYV zGcgPYS>I!onRtUBwzjyKTycpIgd=ZV6~3#T?Af1Q`T|;8O*}z}!YBmn6C;g~F`?DB z+iemENowmJ`8N)D*C_Nv0`TlQy4(^HVVWS04kg0GA?qCp0Z?b}4BVwjF1{=3hw1yNhjc>?z;ebN$E1?tu2*e-=f+H_R_OBD|agOn3 zd2Uv3t=8Cz@Sq|>FE;kF<)vG0G=2MR=%WQ?T7YHU!Y1*0!t66vGcB`S*Wb3vY5xFb z2AKfB0T6E&a3KJ^&A%)gbM{h3&PzWK^@#B_7g+5oEf$b)lms{KgkEO-op$$Ix{Ab4 zNCyE&OS}^CE{HsV`T$kQi#YVP=;YoT#xtTwsmR!2Ll@Uck{_Q+D<=AB2kuwK8=-$2&c)wZ6h_4AiL>mjdWw>|ydcG7Q zre+A@AmW#YdzrsZOF->90A<1|xS$Tem*1}W{HSp|Ktl0q6uFjeaDieGh2PuFm!7jf9d=QYwMiF+6GUC>yisk5 z-yWW?lp#^flSCpCOif_JhA|nDUN`jTWIAYyqGp&zFoG~I1_Ce^dcpqyE8__MH1p+` zDR0f~=siXE#FW!a)%=F*{u(8t788mn2!M-O8@ELmN2~IWUR2yn6Abdlgdpt)o#q+7 z+imQmE|u-*cSaBj=&ZeWSYZCgKW&yrrjJ(j?jjgK5=F%?5Lbn(J1=Q5vv*a!RP?1V zF%C4RlX%;9Hiv;Snd}t9+q@!8Ei6W5>=Mi4YYY*4$?k+dDsNc22#FA(0UTxBNqpLH zZ`Yk2{TnxS(V&s>Q6daYNGriGuw5U=I9cqn9Tw3*<%-@8EKw%}lEi4jNkrlpPh@`I zueOcr7^--1dRTjRi04lc;NU!IUubUrt)^1uC$~i<5+y;of?qf?$tv6?-P_^HDG1NC ze68@rs-2W2mgS440FM&Joz?H@)8#R86wfUGTXzsZgU$fo5~n1adywFowDUE~3lFA?>1 zsLzetyT>W`T*#7~zak@cXhK?Y(W5bXbxV@rm;~{`CK~8{dC2}z{8qbXPnP=8d3LNh z!R{&z7?L-OMn;sLZM`u%-B0<0_eK!+Q`H9zLR3C9ESFSiOA)uDERdEc8d`~+(BjD? zoDxa?&1!Aw`qo_#rThC6?ey%j*^=3{1GQ3mIaihiuW?NIOSKPV@d8 z?F}xb*yh4&Q8k5>(1=5+02DF_$1!Tim({PT~J+-1$VI>`HstIFlQOVLL$y4&9 zx;8}2vcWB+qZq^oB}y-<5`h_`mNO1ECt{p*ZM1~Gkgw+);%QU*nf7Z63nHBm6(iD# zy|o)@SS<~G*gaeAr&mygSusrG`!^ivaR>9?9Q*1a!0Fj*z5px?^l#%Bosvz9$!KzO zml7qFTV+zyV#9Hwmlx}gicj>v;jy;zS`k=uUQSr_%&f$69G0-O2pkS37P(9gT9@bY zQF`O?`8rJ}{6Fy2h~CwpUgo7@bZQBdSw;IjA>Nqe;IsJ8tQ>oh_}TqcE|F$dMv+sO zOHnln0I+<}4u}rbLIb#fSaS-1arTQ2W1L>%5A4i2%cCah^$WPc_d187L`EO7;%_|zfX$_<%+SrLgg#Y zIYy6StraN=(b9y}6OmO>Rm!XB%py?rr7f1KeY_-;S~pq2%NU1+=Mr|3pq8dY=iB8E zttuuk%PK)NvsvpFG_}=>OTmknW%#IjogRq^rKp@IMvsIW*MKW?D`v#%9iRiBsnfeqyGSv(lg~0bV^mskm8tk zB&`j}=F@qWug|KS-(Y8nsZ^|cIa704!Tq6gR-xd`UPmjp9qLH>!?OJJRJ&=iW_nu# zf~_egmZ|83=-SfyxHprjB&2BVjtLtyO#K%wid!S1q`^H>rU^@;8wbQ}4lW&Oei0D! zvqn>Bbp!5=n*eL@VZQug-%GWnHP)?jIZmV)VyRB5jso`bP62KPY)Vf|bCoWN2%G3kKFr!;yi6ixPawc6OE&8Fzy!$MxeK7ZZX_cgKYo3^zWk_h zy&zS@!5CnRPC;fEAzX|v^cN3qU6jch1Js#@LU9~wf#9bJe?z9t-5WjBwz4HfuW*+T zjY51C4hoD?sO17H3<$~QQvU$N+hv~3w2nIzYcQatxG}F6{M!g{r80r`LyZ7>)5X9d zze_Aj41axFkA1xquv0<;nxbQB z60pUBp|tS_n;MKQcJHfO_rjIY)ksqTQ2JV&U+P;zv9$wc((JuW|$8!O!p z3yL&}l@@lA^q`bwmK|9r(VK!qN&f&`og+IVu8kHdz~u&zv0zjjN}^DxZD}x&;g(9p zg&a;V{5Ce*I(lJ8QIZid%*x8*aiK9AIm#0pE3q>h1uiy~{S0%xzRFA$541>x#{2Dk zz#&MBvq+}Yp#B(etulN#MD4-0bS|!|I;~vXz+$Bztg{2E*0PMz@r=+O77~{mJR2}k zfp&e6I=Cu*D^Z@B1Tx0rOt@k> z^BCxpot7!~!7VZ$7-*2v5{gWsn0(S9m{!a;u5FlSYi$EKZ67+3k7Y+Or9-9zh2yjp z;UyAN#GfWh+Hg_Hh+iC>l?Tz=OFLeS-E@6B1C(`H*G^)|&a)G>SRI*}xQ1*-}hsn{* zh}WIhpC^IeIN1v+cbe)EBqt6LPbI1lndfO%QzS{k7@3Xwt1>XT5?B07QZu2p5QgZ| zNZ_YZh^3VT%TDcPE@5=5QzoWy9G_N9$mH^{^kra^{7N2A4c}XgIyduLZb+yop>D`H zFn`;6^1`^is1ebNk$rumBqFjlz(#{w{{Sr&rl-)%4zkTewU(H&$vMJwczAEU={`|m zAsRewzQ1Nv^kms0%dc`pPNQZK_sV+?ydCg@EB zLh2b%t2np@FT$6{mJmB6^C;BqT(->4snWrNgG}KotXvfYlxcH=#bi2pH$f*GnbDUl zB|5bq!u$AN!sRskTbva5N=kDGOmv$hx#f<&<{?0=H!@lO0NShdUd|4O5Lf+Hl>=*P zjUUlcrO~!V%1t%@09;9vku^v&gvOwWezh9k7*eM!I7J= z$#6}|lBM+Bu%nt;5B~tE%u2WPI$Pz;0K5HxRb&!bgBIG005yf^;|)noypa_$ZmK(d zhQ_p@IEzx$2ai2`9OlWNgGcEOdY0!>!&YawP8Fe3b*RTPC&W(Lj&Mrw!u>8h5>Gmx z%CSbC5#NfPR?O)E@Nug{TzFwsxIh+(eC*%?a1(bcIppyh019;OYk&zL_6U8ZXv_wdFEZ zb7~wDON#ZV%9$P+(vuu`e{GV^b9zgDv~qhXXE+ydh?uIgfY%R-w{|XDe3gRfQEv{C zJj&je%B#zAo!ppaw5_WTBS<9mEku(AdN(Rd0#mEED`|5$LU3?=ld9#8401Hal zDWPHWg=R=~UV-tQQAI)0UayHNv7DAoND4+xx{2CcBlUr!MoXgW)Fk?~Gl=QAJtv}) z3Aa@>W>Fg8xGszDf3&4vphdLIk))>sQ~O9Ph~^?YN`PQLbSl?NoKz6a6AXtjRlB87 zuW*{G#ig~;9ERk|BD|>1WYklNH-;DDPSSKajWG^hPgkV+Qc`rZev_B1&JQzrwNv^( zcm&qG!rWxpR;X(Vu_QX`N}(aC(V&*xoe4adp=Z_^*Gp@WlA$HMul8z`pIN7l-UbO< z71unb*)ok$GIYS?V{3qfpwip)!;+oka-6fW1Swo`3AB&;tx?)sdSUK6^nWoWbE-8T zquRWrWlgFlNnW-mIBfp5ozu>|sGP4Wq2P|kbrtC(6a2z3_`c@lKy70uS(o0B7wNlR& zKUVXxGcqw6Vm3z>ex8 zOKYMP1t>F2y*f+PF~L5w<>^h?!gZ(`t(hch%&S?6 zIZh6PtFm9PNrBC)G@mSx$h#RbwCSLwR8sP^bnce~newWuPN3zvhOd;3(nnC>Pgxrk;;VI}IFs;rQWJDjTLbl53F`kk>jrHK!%WB!0f|trf*{H|CZ&#$*&vrsQ{{XCR9F=n=@Qs`*@^)@jBFxoB z^>LPBSXr&{m{K`4lCa{L&cK3qBq~Td$^K7MrC6x#EgdTeipmK{ME=+R0Na4z*Y#_1 zh)JYrlY)o+&Mmfwod$!nUN ziT$4N#@e{zQ^!f=NimcE01r+c@TK7aUsZ0?BG;_OvD#HF6>Aw*^K&~YgsK|ar$*Nd zW)hA&0Zt25Xv(ni#Jup`$$1)ti!@y(o&1=qQm-o_tB}o2E@)q*SEpunr==y5Z|u}> z1!-q9JTRO`JfwrPjUV_^ljwepP9E@^;QH@9pIv+xr)Q$xj;zU7^}~XVWTVxWS|!!$ zqGm?f4as5Lowl*6-3iW2((jh+RWvZUC`rn+Xj4O>6HJpLjO(b22w`Ui0L`+`oHA1h zgbbQ{6@Ya`{{Ug!KY*toj*3+**7H6^lCWk}5>04J0htlGKdc)mO!JJepyaVfr7Y0& zl<{2Ii{$lxRdj3jdH(>djs)?lP7+)oss)i+fXFjU#OQ*qS4=^}9JZoxOZwo#mjvVg z0BlI^N1Ss%CWWnPiMNvPR%o0n1A}d5%5Kg|t4dL++Sseq?DOQh`1Sg}rIKhRFOXgy zrL=lNl@3}l=S9LT`SPM+6n5E8yEV+EOw&x8Qye7^mSzdb@=a$tuWK365lGx8HH z0*S0}`=SoNFe?ad%YaZKrSM1L4GPTQ;GcpuaHlRw;T2PJf_3tYpD;KSjU3v}!tz6w z6stHLqi9a4n!ji?@~tUXCuy}(H7cV^k;6-aJS&XpK6`#%)XQ5EqibBrQuUZgs+-n4 zHY0%^Sd(iH$*|@V98QkX;q_Hf-A*>v^q84f3wqL!9HzvzOFmV}&F->W){1J$J^FE3 z`$@I0%2}svYMBt}jq1~>Rr@W|m7~c`FM&KH<{H+JWm29}tdnNSrJjrdGZQgu{^&>4-{aQb{&J!!tkz3Mwg4~2!#`9B`S#@`%8gpy( zhU8BtIQ1xWH2z0T%3!ONqx7nDACetcr%MLz&oS$$SO6)O_$_g-OdgWJj%d zmE4Ks-c2J;MoN7hPok_603mBy6gikG;|y*vJdUI?tgO8BSoB} zI0-DAxJXbo4YkUv3q9MrS9q;tlcaPqxKRn>Lus0#@hXz3MjY7GjpI`Mg9gnYoh5O^ zs9F3hNzRv{eOOhjni*xLev`bi8S+_cnI$Q?Kus=eXGU>Y#Hu9YkNu>EBpu4rsPv@0 zRDsy!mPyLEe^n)NMDUH_(Lv2~0_0|vqeplo?wT_`guBmfd zl$!3~Mk8AzhLmwD3ebwuR3qk2n#?cuI1_Uu;*w7?fAE?wWjWmZxL}*i@`G8)@W~{SoUyq&&+v*A`YbywrE`#YL)JT^*rqDPtg_{iJtZ+S zaVX18p<6~e$w)8Ir>HeY52+XWj|G< zOH!4yR?-y6sR}3QfrORJsqqYW5~9(8MlU)_HJtX73n9@-l3n3X!U|TDXC%!ko9jqy zs}>V5G|fe~mZWW1ryZgaj{~1fLEes@?V1Si5Il2BmeofeaWq<3~%$eQJ=$EuHZPL!vq zR$~j2RO`fARa!@qlby`zm?x>_+B`iUx3(A4g=^JMh)HB=NseHvoM5OVpVlE7TN~a9 zn8ccl?H@-aI&2=VbvdUo7b-DJiB55v(Y`mk617QXG?Sz}HaZe+0V!XOJDKvAq$J;> z==o)BHa`a%bcL1_<`*=o(;y)(DDA@myEb4fGMsn60r^hB&&uI8vh3c+BBYBI`3 zU=xy8^fZIE=eI7ZbEZm}?EyqxY_cJBHCMum3)*@ zJr@bN*<-SRz_N1DN(fctLHQrh=5)3fK6Udt$;7GbUx<6ta@#ShEw`D~-nBS8_mD1fk- zA3VH2A3UMoMaUAFD1!mOH-a85-o3kFmRl{Pcxa0l#;3M*XKXU@h}?42LIDZ@^S+Rw ziL3E%w#zrslI+D2;BtW$E1~m6cW=L<9hUp-AmCY$2%`eR9pQ(II^oxD%V`bHQ#xZ5 z38@T8FeD1%gMvR<4^?Mg_|ctXXW$;uFsdoTeTUp)D*`bDVvW;o-r|SoXP@EGzov^s zpcw$a2wo4f<@i~ZF)eygiZHu-`@u6lzno$C!iNoXPYc4s5KI1~cXZj~J=@&XH~U^* z(D&*tPwxdpGr`3W?*v|L*kSf{{q|)<(^MUJaEOO?&oo{8^6SdY`R7ARUJ--=hwt%% zAK&q2UL!_pgv``IrUW1`P`$6P5sgpxw*@5AJ;T!ZcWcZLy7o9$y$+GUBfD~bt1wnU0 zE0;nq5!vDvSw(AoJMHRBY+Y6pO zoiuNWAg-1e9}E)m^SV0r=ew`2i6*2v5i$Zivm=Sc4ewXuqurelQ#PJy04!-Iy2`G*jgk%H~?v?>; z%lW=D>W=-8N@%WIj-hy;gK(M>Wfzfcrreh2}(aFww-7f#ZD>EW_0Fbanf3-5kGF zySlXFfhOw=v<5^XE8lK=dg*bEWikUWVNM}&VgU*n>n+Q>cZ`Usm7roXED3@Uf#UJ7 z%m-$Dy?r!sH8oB2atl3sd@Iq-wyJH@@mn>+jB~u|pnb;?5mTx#CIazc^Zx*q)9&_d zqpDh{m(Wwet}uqa6j zp$LR!-YA40Kci>MJ36T;X`^cY00Hm2lfYG!DW48L4es`eK=V`%!wtcv#4I7=gut3% zaWf0oL)nxv_fZ6dtkN{RV`wVt8e&zZc|vq&aw)E0IT^;Cf`J+5X)#8h1C!|qxmR>4 zcpikLg3cA&!3cQ35q^Y5H;4!r7uujV3`DN9x}GhEE5)r2F;>>g2@0YWLn5f|o`6Fz;h`=LTGaU{bGg@zUp2GIu$t|rY_ zM{i#0B&0GX5+NFlu?SGU9cP|jVcExTRldp`gal!iOh#CY78t_;3KoM^X1jMr?u@DQ zA<-#ccJcFnNad-`ETVr>p?_ z+4l5=vP3uQ0Cu2&biwKQi!@YRyEE*^sMf>a9=QxTF%kel32p%_A{B+*IO5^ojq&+H zia2+cbT;E1u7C`8izZd+r~?}TloWYnrA`UuZ)9_!=M(S0hs z!G41XwiW5*0hOWnQSX5O3?)%_Lx=+jQXOAA%=F{?J+yE)K1^T$geVuJnd(grA-vb} zdG70M>V+fFDHv{&7a^D%=8WS395V4Ry7K(@ZzmTgG-DA(F2g47q|A7jSvcDb?}qy< z>dusk=%kNO0PVZo(X7+bY7pQ<^bveIyYZ;oDapF9X0%|mz=T+0EU^T^8xsI#7R{dy z`YwO9x8%?)odhNd_Y}NLJB9k=POymX%Fk~2QVl8D);A3yNQ@+~m<}WgFwe2e?W1mX zZjVNE*cT@=f)cCaw%GOOWMf9Z%Suyybn@=t_j)`jX~L*qru2Ne z*3Y|~SY*|_apMwmk%T3PzA1sU&0W7d_FKO?JsB%l!Gt8JN+8`9sFOLnPRkbLv0 z?6#GWxP^gL69oczp)8P=V0_4bIzFdKx30@+C$zV^rio^dh_iqrIM{l^$NZy?hmE_b zUokFvvG+SRW>Im!qe))5o-?nXzFv{?e4LPw6atg zhC%?A9caQbZ7{-f%lg}XG>I-!;+_|~TDaeLQNnR`wrZHd0517-;e0(~VReAgLg z1YZ{TgLe?J4ErLi=eqi>?pjYgF@gdK1eXY5m@t+gnp%t_y>1Vqo!drv?4+D#G#dnA zH(&u0S%p{(@`la1(Ymd;1ehp|yx@ylbU_u7!jH<&mdaTX8EsmtTea%JZ|3|WrDGJv z`u8|jsB+I3l8v3^lYkHyP|FF0Vd(;azx%>T@bGbz?Td#83MH?;cPgK zoS%2PkA#{k{ToorhIo!mgHj==VE+I>hga+etXrnp%1TifnwauHE4Kt$!NV{c4*viy zN&d=83^Qb)VoPAKFf7bYA%Zs&=G-l?!PoEWr5kHyZc+hSdB8I6xG^&hCViA)v#aji zM`||I12HT~butGh2sLGg65)jAaa%le(!Og)OMZ>7Dz{v{ zqpU1Ns4%buIGx=P+ijmaDfH&{Q4s{?sw_9PCJUWW{aEGQZ%1V-6Dwj>3IhV(2@VK# zW*C2%XReNX_lqeoHp}reNy`Jcl;c9+j3`&l9u8dhsnUP>7{-)pqM9c96{WX#?%BiX zn8&F0F59mTMKbG2kT4Kh6E9c;EY+9;Nw);zaCc|&q-x^C-c$sbm0=N=jJ#oj+5DK; zeWz^Mp6ux+D3jDKG_!Gw!2u?KMZoMc0A?54`k&%6>CTLm)qe2^h?2xffh1VOnk~hh z+w1cDp+OT6zwP`DN!JhsZJ}ngNdR$&oc@?cV6E5Fkx2?M!+Qmz?LCvuNXTb4~FfVt?i?s zB!KW00S=RRMUwzt!-Q^sTkJDCzu+ol%wOFL)}iR!H@r9Xn9ooU9-iVpJR($VNZw$H z1}aj*A2`JZ!<_pp_GSDx#uNcG356KJNjJi2fCb~c$l_{0?=+9mNz*YwZC@tem(Sy0<5N}R+!VL z;v_QWB*2Y_D8afM6+yDX!MZ!Qb#>cEYAK;9V!}M~aPZ2}%*572$ZqQ+^XP>us@X;C zB?tpbAcRo4=Nree$m_bh<3{<-kLlq8gqY(DEV95@fMunfvs=Hrj(}az<_?^+FIsU=x7NyYaLB zzI&-aQ8~Uh7!pm>0xPCrh`}4poxAxbrr-B%kQgQ>z?*Q`E-b+D;1dPs!*QhNuD2WT zq$!OaVwQ@A=4O68JsRT@5mTp)J-FCy7f~{Vri8cv(oDk-97YPmBeyo$ zTq^DuL}nm?h0Wo1$MfGx(g*k0M6srVfePt>36Kmhz-QW>zm(^m+9RJeznXA~Q4tn# zCKe0k2hZQB!KG??Jwm7-cDD|<-NQDdOESoZ>*vpSKXi*Qpw!m_6Gm7}{`MZHzp6eh zvWTX(lp%&8x?y4!@m&_Md!g|Ay5SO^-&AVCaD*WYyb)c))!{>)#8Ui|Fj!_Z6Q~G7d_pjsI3_P`k;dn<%FeBu=`A!*eULVNIOG(3Ee-9J z%l`n&^A0gJoe>BooMC}9!*KB9>itg6X3qO8?54oAtHBX)HDP3kCEbV)Hw+fzWA*Z1 zZd6MmaafWo zfIAEJ18@{6gZDRE9nBb}PUM`?5EUwpOjt|f0PjDe{6X7yWxm+P6ml>W-~&vCkaQCq zE8z&a!#>!pc3nK9u8i}i6bTI!1dT*Xfa7>U4VSI;yLDPOh|$u|I?HPmTro(3abdn8 z7$Ufs-l(Yho{z?n#$12eel)W)JU#{xw@e~oVNmW^qX;Sq!7NwHEaL3A4;@x_=Se9U zt4)kfI}Ad*>O-sR?eS$8Y_F{bgtG#*DvQP!#kUB-#v6YB02WeCZFFxK0s>7>#upz9 zUaw>d_eW(Z)R#Z|P3Rk|QSrz!_i3tITHSKTtQjPw3Q7oIRUuyT-^+yJF_c0})*e0wXVRq5lAbv!g%4kH(cP=J87~vmg@T z#TSnql!{`MqxH~5t|M3B=}aLy+SPZ$&E4R-c4G~IKs4ciMIE=X3Le%8%ysNMI0<0hg>Y<>1Gw#@PF; zq!So!Bi=#N!QsSA1yDQdx{(fwRK^Kn!3aZh&j5e$ymVU%6*^K4(B4j1ix8kZP=_-t z%j4Oe>R4bgkSJJDWye`>9AC}u&*8F%11}S3pb-Q?7pt<%J{UcDebk0og+D>w-SqRs z1|}$>b)22|;hig3{{T{BW%#5g1l~AJ5oKEvv(;O(vfTI6S+a2gfshhRJHBa`x_wu} zZ7lcd?g)&D!Q$cZZtFICvg@KshJb`ZzYMlrvsY|8ETq)t6cEePEQbdMh-w%NXAaqe zyek!i=~*C)3{OZ{L=xkB)$R4WY|lNLx9qhH`8}{_TLk*S3gAE(bo$=7Z1zWPRI*Fj z0kRMg+-@j>UaTL=v#Q^18mijF6E#Ez7ldaNIpFkLpWjC|ihsI2P3;Oy#sb~Ea?Sf_ zhf>L{n1XMgclO!x_r{3VHhux^3NeHW!rqU;`b0Klgqk;EYJOxl z!eFDU9yB?tW6_*xtcfTou)s(HUC>-Gz{1OO_iW$rjVGg0lMX(tCJTuX1H^hW-|V)H z)wo0i%~6L4F~4-NM7?MAvg+vH+dxcVr+{|wgxq+-}dMOsoEUJlbF$BL5mZ3WwUtq-m8Mq^}rsbohf2 zC7G)PKdthPc2XUl-5}o3sq85Z#?~g6(S|&sV#BpMl4G;{$JJ>vTUb;`f!O~5IYS01 zj3C3jZv1<0HI6;-%sDiPDm)=+JwxR5sS1Q?Rb9j}5`9jzl5NxidjhN(Axo1K!#~cclCC(iR3K?EmeYb0CV8Nf0AVH;QJzX< zAyFqI*|kESNVEApv4XW$RV2wbHH5Yxm=}j-*ef2478-VTfBMPO818#fjGsr3*0b#^ zB2|OcW6ge2m|Q}XAx>MvvgLv+4UvqPM3i{h^XhET(nlyIrRrBX%M#qM88)tw9E6~u zPK^nM7HN);1|4QH^Rcog*JzPbz7*;66N=0K08cKMiQGP7U|pJ-D58P3Mpatj zm<=tDj%}P(n$d7TtqUzzRpb;UtJwgvEI7n`vSOM}*Eu>IaonSM$}Cc=MM{+9={+)$ zT#qI~wx?G1B2E)blG<@&dU(2Y3^>288cn?Voza* zD;%vQBu2|5$O%+3N+`l8n4F~K;F5F7%=O2q$`oXiFSp7>7V7wzO5L1`Eaq8kwFK#j zoBsgyqrcd$dp{iXY1HzhsZWZ!O^-}cRat23j3pbx;zKlM^6zOLSbX))ixK+dET2?w z^hm2GJ1GgSNLs|=T)rxnCs?4xN}YrrSoWh3n4FZK_>NAkN21tIBZo$YSL#I~q>yar zBT#V>Yt_$G zDm_O1xVO0{M>eRLoUXVy7l;HU=(iJ+W)=xCB%3ulG5(3We(E}tJsO~;h}xiMmlX#E zIcQ15M#$fTf=UL`NwxL$!bp{cgS?7F8)%W_Yrxd6^kj#9_;GLFkfSi3R*b-fw+scR=L-U}wIo33_I+R9lqqyLGH`JTiBwM$ zAR;8j2|_d^tPUPFF-H<{#O(b0<4XD2l%&%Ij3Kjd00C@UA$|CGQcS50Jhq`gTRS!z zpT20k9_mEEHzk_h&?g_14Nyx-DlD*NlZ}k1?;hCFaI7O!v!<0;5FT(~S!)!iB%C74 zIK+Luy&pJITy;GI2`Spr!U@~jP?}0H061g}&$5X>Z%B3O*U6|WVos$Fp%{(T#a1$2 zSZ@1aY<^VAjN;SN0I9!b)O_0;-oIXSga;7XuR+ zr7SUGhSQW2>P*t1j92jZ7#Zmqd-JYo$jIRcBGJNU7(pLjGmW}E8{zGy!c{XSf=4~E zaQ=KSjKRzbZB9+uh~Eot&(0+lRU=aOD$A|sVJA-o3RM{C@~t&a+;ZPN{~uSg!Jp4lsG&rSTgfc4L=36vU+q_<9B5XX?7}Z zZg;B+fd2q!3Ee`S@@{llR&w}`FA+j)6HX=LLjM3QixEM*AwUZ>{GqaF! zyLCF0XJriXjA>Mq)Vasy7k|Cz%-&o&M3qupWxiyI1v7JLz*j zNL%r&@_d^uh1ENfr^jZ7MGKqF)ttvIrAD!|qlqV;IWmWnlj%Ejq;c6AR_T2cBQ-gr zNT>rMAT9t6V68di<9o-tK5}YZIfRPiwb(CQ#6qA9EyKy{ex&;KmY)^i5?E9DS-m=B z;xNOLmxxORJvB)8lco%#zmNFp`C?Lwr&q)0u{$YkD-Nl1W(K z;k_fqUTa*dP1-;Vj_lf`h`6&EFD2SHmYzDCYf=*TVY1A zgsfxvKAoVfCv0ufj<(BTMojTuZn8yfyiQDx@w_e%Ec44~UAC}AVss-)`7@?IrFh1M%SCe-~XR$)5Cbucp zrz;YDbu&piORJX&C4`fNR*~F0eba&g9eRjTgtrBONsGq6|XnQp2cZ1}`E!Rwv-e`0;1Z;Ct2`m-l zl^Vi%K_oeT&3IPcrBb~szMQw1CuQ?ALqwm9SO6DJ0_a%tgRJ=FY#DW+DrvZ-sm zy^>RHPL(NZ8l^ebQgZS-q84-Hkfn5=krytWj(!OZb1+SnHdG1$8*E-6mC* z>#AucK^O#SY8sh{bn!}nVZqeX&;FcNX_!H@(WDME;S9j-l{-| zhyE4;46(o>^)-nvq4fbzx~lc3{{ScmP#hdayaw?naAK*oC~J936*H7(&*OPY$(sII-ojKuSpD-mV+hQy-``s z>lb4v!cKsqe46DlB{<@J4EzE~&u+MiSmGU~xB1wf7nPLIv0Y##CSR)R*hUh~PT?@j zt2~)4v(|<&Jjw5Dnj3<*4@Fe`ONT3`LO6I-^Q4gb!m>p465Q;moPtk^b%Z9BRueEgCQE8vD3tV4+DP)VlJaIz1&cW@1(^gfTv!zZYTRG( z4@%2xrV6tx0O3JwDjfozv07@|gtW24GlkpN2DcZ}rTV$ybtSXayIQcSH_38Mc1apy z%7K~@lVWTW*(NsD)^~LYv|S~w`NNgbVy!q#lP1^wK>q->#>Tm2w!71pA=i+aR{qaz zt;(gXSB803vGhCzDbcR-<_?yhMbT9?xhRLBc zHGHoGRY3B*xq&i0U@5 z33Mg3%gLu5qvK1CZmSW_67r5pm&hwLNcuLFPe}6y&Z0ip^)bwEIFUb4Z2q)cux*hqf^f>51E|_a@}x+TwI-+=81Nz z+h%0x#}eKpis(lvGybQ}OAh}4t`N<#IwD!!zlwB5p=N6nDyOZk2@Vx)!yAJq2YHbj zQ+k4HlY>m@Q}u#~@BJh}I!dy?lU6zsN!mA-KeJm?t0U62$<_T@+H2zyh3x$=O|v|+Jg=+&0M<&iCBgEiI7BqE=}G3v zEqjzo@&n1uzxDLE;z7vXA(gr*+FCwZnN>JMx&{fUtx+9_h>bA~`EDhGLUuA0Vz0g5sePkw#ur zOKLw%rFWCws~Vtd!M3j}J}$`Wo_3T|%Mz^Mslh6Fk@&WCL@bllFuaqQ%cUjD8Q_({ zO}bKLkw~)L8Z_yV^Sse8#;JHg)v>513doe+4Up!v>I*51y3v=(RiV5|ugKPD$=GKW z(s7(6?JJVHD&&aO!%4Ce&;!d&OUx$iVJQB_0Z_$g_I&}-hEP#gZT|p)p6ntRHS_-1 z2^i|pk$vaDK(zI7Lwqwk8JUllmhK0G)*))3sLB#m>!f(hzLa1x^?2`3oe zBa=4Dq^!}D9M+lC;+z%e$vG-mDCK$`9`c);F9}+{miRcn!JS0i!P)UUkuw8{i_^}C zC9+kVv9*3N+B3l@RFY1PtwU<3M7l1HulS_2yPPV=BG!4;cVCrnK1ytEukY&_<>~n< z;++`DnHDwq9m-Nzu$vpnb$d>6$Dsdfs`e{iX(y0%tT#|sV* zb2pXhIa$jY#5uK&CTl-TRk>yDr2q+UXgDEvKDJP^v5SLx{-!Cyi zMe;@2>;dM~{KAQ$FnM&gyDOj}QDzqh2N$>ve1L0t=Coq zsKjA3?syj6-A>6dpcI*vmqArfLr&=0JF*%<1`55F5o|{o&Ph%I z75SusVQCeZMZe|d1%Y%{-Ih%qhN#;4ajMzwPivjrUE6r&f#B{%ttg$*&#d1p(n1MoswIjkIkI9qMZ)aIPeKgxU|s`go*rKwJ4Z?8w-qiU~$%v@47cZsoK&?SaN9^eddkCNc0ro>LDC_zbWf7GPU}VL%6BnomJC1k- zDjS+Q7r}9*nt7WX92Pc-IUy84g>zfcrYCqtPB$vh&gBU7Y#kp*Q>E{>Z90I71QE*5 zN!U;TCtdUv25E*bFD+@uU_%>5v(e)YjkeOKR6SIyk&-uj+2BZG~*Lb&QI@%RUkD{pW!kmZ0${}gV zqNuuq{iFaZje&*kHNE{Kh*k9YGs>(J5|PNQ>j@MLOyDP^=J_n-@HCqZMvR_Na^%@^ ze?^B)D^dxYf^6?s3Fn!|6uJsZrW0z6nmcg*p$EfN zsfJYHzABZRSy@m#xHDmm05^vocnnEXR|S^YfR{<;rK_F4$>%C9N_MyR1f{qsSaCQw zu~>2XL8qxB89tDuDz0ZbMDDe*H*hWzS*~-IQLYJ!5$Q{r3re83g3i=Ltq+vru2MnY z+6l7mq!TmLWbwh~YkFWK8n+py23%==XqVkhExoB8q~vSxVt%;&sq}R^FSd}B%Br(w z<^mh%rOTqqj3yFsiVP`b^2p{&!SsT3Z2NnuwI+&5Qvny8`OOxyfA8UZ!;X2xd2J%7 zBmgOZO)y@WHa2VCp_D4{so^^`*W}8cVU!!wohPGEVC7a<1Zhh#F-H_hCqVmolkvzq zKjhMrxUfvm<0OX`ZzGj>!MdEBT4WUKafmAi(aF)hyP-z|@|I@u9h!vwpop9?v=W@o zWkEi-Q_Sf$`aa&Cia_O7Y{Y@rMK)n_SdT|A0YW??)9Z@CI~?y_&vxyG`)SvH8PQ;j znn_6|E{Z6(%Zq*NE*E@3-LMG3d_g_3P*j>we)a$?g+wmfw>CUwWSBB~^AwPzveASk z=;f9Z6ez@x@^SoS(My$4b*9$oF`-W~O=_D;N;+C^^e7&OcS6y5c7l9?8dX7$NIMJyJ@JH(1_1T zsxxW=LI6M1QSjfFT3``@Hkn#da0Xsm?6_XIhnV4ZZPDxUMXEZYc#y*WK`kdVp-%&x zCP51OamCxIOQsxuKaO|RvV>0CoM|4m%92qjRyne?npq+h!juTemYjIT!y$yI9sy}6&7yLKs5sHvI(|8XbaGpJ zumKPWCg4M=yM@OucjvQjRVQh2{{RF6IY2^L1(yQ?E7=dnzuiiYD5i9aVP`5SIl?3* z-WAeI_jF~~?6#6~YPE-h0A>;Zia8b$d7WKRwmWxhrbR;Q8|eq{E9Vag0Ny9)PHqa$ z!$}Y)CIaG^5bG`O`@R%)B~xNeB}#ynSZ|EO4l>w8ys@#m?W7WgToIBXoT~O1xsprP zTi<85I!CpII7|;nOl@y8)aY*95hUSjzpb~UJ+w~FpIsl2c<W>n zSatY@0XdFZR1<<;Au1dK8!y{tsGgsdAjI=orkQwWeWmj@Uoh;pcJ@PdRE?s}=m=UO zZ(SB)Fp{w~G5CHI*fP}-dc@%fiw*IFKWDe^_*-QZQk1`=u09?3ME#jc#2|9YB_Pd& z5??r3V){c6qsPy5K5*Nf+9s^5QpgREj$cL>wSMie{QF?{b&4VY!YRdfT5)j?(Cf0^ z-mq!-ogoxN(5LQ#LPs(R5^~ja&>8l_rE@ z2n)lyEnxkfIcIEs6qo@!922m`gkfQ{VKUzxn|tYA+6hicDa$N-xS|Mkofy70?cGN( zVgYeWJVO2MH~wro`ge5F3AKOI&i=4O*kt31UE2a+j1SR|MX~JJ_|XkS>46PwErdnI zx*T1eEu>-v0t^LWkzN3}*oEbXpTnoSs)<7ilf)v4R1k?+8M})yFLSTL|`0*_T_Ja`WGKB3F#&C`JJR;ujmu z#LRz(XX8x}oXiQgVy5lUeJ`hMbH?^`QW-cdAsB*4f?cAtBJtbs>Z4t0@20LQ!0|#Y zV1v%#?)dvNqP}1M03Ur~K}?#PyWSN1@QXM(y+}b30a$McS2*0+Htn>G{k{Ekbu-QJ z2^fbOKuidX1OhLiWNq2mXNc!j%Q;|!cO1*19hb}cAJ*}2WGL=!Sg5XWT2!<0&2t*5pisioV9nqn8 z8MY~k$YtpQ;$9x#y4>xJnZ}S9rbS6nguDR=A`S5fA@dBgW>DYLvW&M`xk*4VNzphW zxpL^a!RMBLcHP}HSIh4=NQ!^dJiLM|5a(mYX0TdrY*p1sz3l7oZ*m=f-o4k&eiGkvk!mqyz+XGU5%%<(A35`!S5 zA>x<&@jIT*9XtLsuun&h%shDU!vOGx%w1-yG;|%3u~C*tOgaV#{Pc*JA3txi@1mNj z(?m!yFNjeHuiXiLuPwixR#J?hok0K=Gmqlg#ochsF55DUDA}7UFqAFl4hsTZ(3yrE zw=MopU*!rj{$8n#s2sZo{NaQuEd={s%#BG5Ib2hcEIw>PHxK~!WtMTIM=RFFUd-$Z zCef(5=3}cO0a?(7Yap|#-^qAX~y)mM+xm&U-CiKM&;F58KnQ3AU zux0-MJMM%x(~Pd~d?p*@fq%B?G4Qk~UK`Q0&XbceRP#eogz1Em!{y>g(jE}0J{m@j zrrjGuPe!Uq_0?=c%T*E(f*=r1`glKLcV|atSyIw_;k}xmO{MUASQ?aW@Cb1=iYV)s zux|Q`XB@3gq_IF(lL$h*Si>8>dfBaZptF2Mxq#jPC>yHykg8Z&&#IEBM5leLj{t!H??L2BEuMqyk4$9Yt`}i(y+%S zu+%H~^KcsG8ODhP6$AhZo?Ki!Kv;O=Xn!=hke&g7q7Z^1U*kg-{{Zu1cld8?DDrDw ziYFXcPb|Ys4e*#?P2zayj@vgBfY^NB2MCr5iZc!`8E9_Zh{6*CWy3zp z@yp>t2PTM22^Oa`yT%UbkSmiGciV3|J(+x)(0oV~A}QfSVWd0+!h`eY8EV2uES0FqgP z2NRARWxs20e{Gv+o_bSGHt9ts<6;0sUN?^j_|JE`6m=4a29`yG2#yhaW5Qvjmf7{xG=&VDk>P-`&QyMs0e=-YXlPn z6ojyZ)aEB9Auozan}4IfpXlGR9STXJY370@!9Ywf!sEr}#$0UAx9_5m8`cz1fOHOs zLK~KZUS_t^bw0><#+!hQ)bP0woJoSX62cP+!yaG#j|+Nzw68kE0s4JK`{U;lQz43A zdQ*LzH*$p_maYR3lZ`=V79z$QqBoC&(ft0cnc3R-VVazh79x#vF*uAe!b=b_48+e{ zo?AM$by1dCun0sG4GC(CF8G8UW&Cc=X3n3^hKw*E6ci_15d^YJI}AV0_IU55N{EEP zo1hNpu~AJ?ND8Iy0Nlg8x5Siu%IrAUO62AQBGwiX@U1M1ckI#oHpe<5ihW*Kg{V(- zMryAMSpw~k;g_(+CMW#}@{VFsLI6nxAtkIPE30%Jw;rzvhVXP4!0O>7-h$aT%mjw<# z&$pwZj_A8JIwvSmMF5-~NJ1k#{{XSu%zkvOtqyQ3LB0T(SaAj;3p)pqRRZ9~BV97fWyfXq|OvEg4`G1%0>ZWC*F*1WJ4-_Iy z0|kld{?~1%ANch`FNCBSX+tFSK^7;j4>Qx$aUYC#(i(~icHN6-hz*(>mmzg^!+_r5 zf5T&K=;TYR_67!_G$I$Cs3hVU9p_sQj&QaX(ae#8S%IN2(gd7A%IHh;JxL`Umu^=3 z?4zNzywgB%hM?lpoFc{|%qAR~IA1-H+wr3CSmHfrlmad`Fp~tlGY9r2{62K6Qe$8H zz1O$!i3LQ)7W{esVY1f5!xK&f6>E;;+`4IS0iSF9p4fKTNt#_@m*R}E816}C2+c@K z#s2`C9p`M0-+d$0&1V*9k2O&s5MWpYTsg6s4ck4w?zb{BmR%4ctdVg`8F+yw5E~u}Tmt#!kYX`1AY*GR8l|bkphevCqXNcfkI!wphb}jb zK_*3VVHQYy(5TjL$Jx^l8)(5OrxG>MRE*;T#7H3qC73e3ZG@8_ceaWVLZsN1Si%s5 zBGw%PHHTw#6K2>SyW?#ubw~Zt>JZ_6p!)m+_}^MmAApsSjIiM;P7xU$BsgYsCV0vp zDsD=|VjIx{(o{qD3^1cF?SU}H&tx}8JgCqqy+{c-004z_lE-u>;o<)PD4ve*br2i~ zJd^ARCj=o0a3ru9WxB6Z@b~Pto)t4FZ9!Knci)ntazK#7gd1R-L5QvxE7*NrrV;Vg zN0BTfovaodL@ze@aPUjd1KYZlH7dsxri5i0xRAs*4jF0FW&0mKQ{^p0@IcJ=L! z?)q*dw<5=I#Dtbz+vVbGBNFhro%!e6(L|>SmB3L^aFG~ZCGyJ{eE!Jok9SX12@Yvn z5rsHO7>q9r;V2HXS7d+reox<>Bo#B9xze}cOZFCM0L4#*eH>hUVeA9eCx}WhF=d28 z;{>qzoXOZw{5SSwY9ok*Sd4E@V1!<;jcv`^n>sSj@}pfe;;`sp2%|zEi_y#pJmEI$ zalQHOqW9|w#$Et}hj=jofeAim^k8%-t(uzF=f93vS-C;CDT+Nk_;VO=At5+T71FrM zFu-JP;oSQYu(JGiQSg9-&>4b>7-k4XfXqR02ftGSd;WBX0W%m#0wLj+5s1xMfx}Vn zjikq`#CMZe#1f<_;}G5qOXn=ZC;3Mm>$I)#@dM>lH|STB_3sZhOk$eVz-`kW_{D&N zcGE#&Y0Jb95WtIAJ)WfOq2JqbT$KDxHKukP?!@k{F zVir+G@r4tJ8w4ysVVXY6JZ__R$;?7h5I}&I5RAc#UD>Mfls3n8J{J6yX{DZeOcRB+ z@UaRVyA6eq@v@mgYEpt55ST4x{5XmR8T{jR{Cnvk)GHDF2Z#exi-T^1YE1k?-Y`C0 zY6$@_1eb6;co-uy9Aoy;^&f{!X{4rPF)+m>0I-;6nj(zmbvbH&!|v*$YL~Rhj=~Bx zMV4%C2Jp3i@;q(si4@ZU7@c+zF*=}}UKwW>tHUR5agKexy;L<;{{VD+VPzd)-)?)M z)EQ8Nz?`K579qmogtIk$y>`c^ZIoC^ATyF~EDOXq!fptgrj}UCD|XEK;SQQ>Xm?C# zjEP2sLL@M}S)Aq}-;dTQAtGGTT5``&tiYZT76XJJ`T0Yh!S3qrq-6}TcZU4`06a5^ zF^hDXkgyjL3Nj{L)tD??ICT@8V+{Kv3O^bpk;2FZ7lU}Qh#(X={{YtP>Gs0f6+)na zKu|5l>0&ce5f*MBHpAW58b2D(4jC{s(sg6im=SsQc=%aL^J{*#t^2+FdBFggOu_Mh zYJ)zV(2ESRbGHv0D{cAo(Rm|F$}oho4m3rCHw+GTVt+fvS;J<>GjXKG>~EKJBJ)f9 zzB&7?bOJX?1*0J1ZkPc;zo&w3qx#)>(h`E9zN7d9aNIpd&In6rjKW+Bh{R!#4;(i` zX@Keex3ZFx8s~tBn5YSWh(&y{UBkEY@v?|b%Oe4j002dVCFgWj?X$*RRFE52mS95x zL|2997yJ7<{B+V1#ny1yXVVUB{dqwS)N2+D0X8Rbyu$@{5wOhr`n|B*MWU9t76C*e z<9#d8)qky&dwreh1P&#Z5n=>c*kD3jcH8av(9Bm1A^@>V!}~~K8MkN0WMfF~Pxib+ z-Ut5x%j5q5`oe+B909Y95eDFI3fMz`e%$@^CToJIhUkhJyDz|BX$_b?@#>*doecml z#vu?dTm(J-{m}2CY3|?*19&CGxLI~3iwwY7y5AieAwz^Vb6_0(z5f81Fr`8F#SAe9 z_8r)VoEM1O*+kJs7c7hdS%MXT4d`2JA+{7xQ2Hq6avWSs#f(vbfbX-$>uB8+%1Ca9 z3L@g)2(LyqneFikJXB0;ci&C$kuipu;2pd?fOr!M!*6kfUbDxI{S-W6!h#V72L{6P z2!v#DJb1E^ikZUA*mjnr+rttn!#gvCb~N>eX{lJQJ06Qt;qku3ec~Ula*3HpLn9-JjWU}$IGEtd6St zMdaZrEgOTug`DiDvhh5c)tlDM^ZsHi*J`chww9yk%QBW{HOavLceKL+dEJ*mu zoVHN_w)GE&d2M2HeQ})2I#ruB37~XzMCyOd^wB~M%dnu zU7%^1>(tu~El1UDq{N=0Co_viY|8d>cWJI3Qe5a1fIJN1~;& zA6%pOQ!QV&#XO-YwT54krFQ)eXqpZ$NLVu=3}OYO1W4{Jwa4`0!|#TIVv+u_}Ht4f6X-N*E(; za8O>X26H-+eIV^5{!WoPZM>e{(4%3xS{f0qibaH(Haj6urRYZ)qo`*_;#M{)!;Z+4 z+=wSg{{RYNKSu09Hl9Zw}| z-L{Y_n(mC$O5~=HsFqcVJf$%baK!-POXB|k_J%mt&D2HU!|c4xG|Z=_W>l$iHA^%H386Vgr%nd4 zP1iF?+1xQ*S-K zk11}j3!B^mge8Si#i`6d6Pw8?y%IKZeQpn2gr8ahPjy(=|qXxVuR7w+xacOYNn)rkRyVEt*40P#8o(m?_J{D5pg7 zvkNF$g?`lsoj;oH#hRq~71m8=4CxdBZA#iL0!>D8a#{YsKD4$=O{rR2+W!D$ zGp9-@s4WIDL}L_;oDFf>o>t-YrCx>6M+BWzb$c!=6zy5gWRl+~r7_B8FhV%P7A;x* zn!-*6yrD_>Ii{r2uDWvRtu&U^Rll&`cmwGT`huq?Wai#4%ezVCRY4b^Dm zrEE(HDhXt7EjZOIIXR`6v0=qpNhI#&C)s2zvJkVPlZ>fUu8a!OyDccOOiGMUOG{}v znvG(}`cluUl6qu6SGV|mnNj%RS&lQi`Xn;5I(BsU#(5PIfSO`7dSSL4y~}Qxy8=9u z_*@IQ@AtY(pg%TAV6l+kusPqB7FHWGzlxhtVe7?qr@^o;Raf{soWN{Qa zsOPYbJ3JC0?e7!zV`5b#24W&LSS69b5a#VUOu>_Y(IsUYifwCzV$bdBc8u>tZ*7e$eY zB2cK!9Vw~}*I<-!B&+fHRvOBzRc}cfTGFghA_dmZ3q4PB3GL zxW+~z4$mFY-yWJzm0pGiHM=MYMT9AEz$1hcOfY60ZV!&U?WTZN0T2>?%LVYKhi)$w zMJb9M#6PPE)?UNF#(6nwpFMA+<7oXo z(5H6lnzMjRf|g4H!irqv@QQ#WA zjcoC0p{EL(qa`rg6|4dx7Z9~_@aPmZf~6I-*At=c=tL%VS!t~rrvnFx5v)0WH(tN| zKXzM~{3=zSS(BRL+h8lKLRhi47@ZqNF&kTJ!PfnblY+C9eQKRVo28UVpTu+^aLF;* z(Bq3Q{<19Qykbo|8XU$yDM@5A?9P=2YpaJ+WNFd;5&)`rIXtJMstJ0?BgOJ-$y)DT zrKq0druI@6kJ6<%fmxgw8i8L*`wUN=(WXeCX=K5N$QroOn%kq9m9m^dV*-of5zuyP zUZ&CM1%BOT#wf@~b+{IF?1U|)$>2>ls}$cmGp0O2N}&sTQOL|Q2&f}iQRJOr@%8XO z#>zpp_gCteTc!mB5p}H^sa;cfnU-MM;*jVQ93Swfoula%eglFdie$4(%K?CGRQK1^kwS%o_rcr7ZYS4Y)~04-n?KVX!1{n&^T zv+QHK$|6_>r7g%a617T&Q*CP2JtefyEPm5u%-smSfN^V>E;o}5fTMHN&3 z0G9^niw^OzYUW`&J*c`ZStb)SXk?XVPb1Ox+uufgZp#6aW@*w~ zNTAhC^1S5ufvHpjg?&21biz%+{{UE?-q_MktjW4do+a9ijDXzm+T@N$Ed=P=2P9Qb0g{FBM@PeGfj8}+H?Au9?q#V0WJ4nxF>uHT=wzU&n)u`ak zlu8($CZ~fL)H)Z-6JshR$|jsn^%&=ObZoG!pH}MK=Gk4)Krpng)rioHqk>hb$wsl~ z7~^reamgt>a`oQX8hcDZb)Pa60R+i`RbwZYj7C{yC~rMM#*%R>(Zi#_%)dL z?d1yU;O{7w!!$W3N1?1!SL+=XBPU#pj#;C5MH_pzll5I6eF@F1$t&-Ldre!jD-u~% z>Q`quVTs8pL4bIZ<}_`q6**<2onhx3o(eyO(c=pvwi&LcB{ez1YO<<2VsA0D>2_?G zDzWJrfoOhMm*!RTQ))9#C)ALb^QBjdRNLrj_R}g^2@|Y>NlUhnNfc+n-uom(c-pkA zS&Yj26$fa)%CI3!==RG74K-vfPv9 zp{b`~{{TcwJ#LDrcrd46Oq`avMzEUeEfU0T1tV~lCkE8BB$GYL?*!SdLqD}V6yT9R zqW;adWjTMq)_JTq3e>G+#VwXh;R#f7e7`EAcvMPLC3?kfl2ZPy=me7vPIO-60(_s2 zr%UBTr&f=aMl|kc0q454l4^dT>jgubq_0%LtX>mjysC1i$bw}N>? zY3Y`^9?zrtBCRnxx^VA|w2b;vis)h_=?uaGhAV^ZZ@5S8C0g-#>iQZ=MUv7J3J9vK zy5D-c0iX+9KW~Wik42JPCHZywVsn<#nTPt+=sBQ*L{XkiSaPmef={VVnQ_NyY4g!? z+np%gbxX-jnyZ3W@Y6&+=)>y zI41O_A1ExdOiiCEHjY|OZ)A5>RnYl>r~VLH&K9jMJX$UhP|ED)5gnUap|?if&H_2p zeNnGjDe4>(TjX~NzdE@eDqYLUNLD3!R9nEzXLKa#shOQ;q#~N7BnN2<+tk5Vl~_*F z(fo@Q!l`=D5k%HiTD}<*3)2yjK`RYsc;zk(?~(q{(k;@G zzY?CEbD3u16v_%XMOE^orm3t&1<6&-S0X&5{z|RMJf)2Cw8p}*XD4lZduk^~NS-{F zXvS}8S<4j05Q!>tgA(as1nF5-JhiOpCU{(qVQiD!MpA}3da*E$MKZG-+T|5G93Icc zP?JgIsa05$rj8>q{$8q|F)g(L004Y8$fMd>7l?O|S-Bujltv{tO zrC6C;K8vHqjry*VD>AC3_OMGt`2@N8VSEC@bi}40V^HM1V#kSb$+c%Pg(>F}p{MG$ zay*gSNY#$EB$}e0=7yTwT4S?J=wiuMev#%wO);IM*CM=*&b*XoX-(%zvm)b>s7T?W z+QR5^gplNVE{wt?FrR8b+X_P94Oeh#aQm2yR~ZCTPzVJ3L6E*c>s9XA_{2j{^)|s( zi0kWvB~DD|PZd8|Y$i_363A5);V@O}qReN8cj;|omXrF_MxJzB5-3co(Mi!3Zl!mW zYZhW$y>c!T3}*iTwyLp4&nLFlbe1Be{{Sktxf*xsO=Ch@B#3%3{{XS(#{U5Ns>K^A zK1^*YI6SmT6`dx^PlU^LG8dKeQ+$>ZpA3-YbCrI~RgCe1C|r6Sj={rr2hbIkd6>XlBBWvn!9bb zN~fAMyv)EzjNGc|M`CWS&Y>!tVQP7V$$3DlgZEhbub(E?(vI>x#@cZw=<=(p+8h|nE$OshDk_SMw90nL z$&M4t0$Td1hV(UeS&AClfiB4HPYn@C3G`$12oDuQ&Ga$0e3 zhh1URbM)lY#O%uHCaaz%0~mNgRokdE|#k!l|<0V$z zb5D|eZX|Y+>k3Cs^3^yAttqQa(;3P-4Xe?kM{0-UFd(8-a&A2 zHPt7DM43M&m6d+f@`E~9qn6)^B$7XGG|jAdDix?x9TiqGj#s{gYrleRS&pxr>mH}h zm)U0t!O0St!cSD-{V+I7(_%ILQaWgs+he0MwvzXaqpR}TT`4WRj@op2?}`gEH}dnM zAea>Zmo-38T>uZfh|ouE$;P{(y&s}YDJ~1koES&?fC}x=U9-e6XCD}f_%2IRl|;;P z%Qc{zqvifpH3MXr0{Z~~ z7IqN|!Hd%IYyCt9Fn%InT#zmZCRq zcEQAbf-}=d{X(iL0^4e^*aDg06%6-9Z{Y^wRNl*?OilRDON=ZM(x>N7CoD{$<4MyJ zqjD#dHlC-^{{Y2V3PNplUp2T1Em|2T2uNL7)0|s7(x{kPlGbaEH0LaRAd}Sp0Gf`L zs*tY?s?d=u5iF}#jq6+_`MLPw+>=a73{~WHj)?GZTJesz$*1F$=^m7+S8XDih&HrH zcQA-oOJ)qO`!$_8Gb9}xPINm5OiHn}WsV1-$NI;mCC=J(Js+bMK8jIbQ)CMN0AlSx zY(;{N+r>GRP>UpqY~bUD16u`YdU?dxI#(7PiI1QGBCA-qf9wPx{{VG zB>f=fq}g(Q+H#U`maAf=(!Vx6IC){ON6^rtd~Zsy!MBrXHWRl5{;uBIdRdnEUp~lb z63Dgq!l^^Dq-FUoU`l2iT9WeCl6o>e!w1rOEVh+~zba;>Yf4pFFf-1lBYsqNl3Bqe zQ=w-Tak}EHHW5rub(${vF`_io?vGpLX8!D`U^l>PPs?zNph+pA0A5^CnM433<^s(} zaSm6$=<=gq0GVd=P4A78Lu|I%VP&?aT-u*UP`^X78ByCYxkmp0Z6GuiG`3|#6~`Q6 zg@u?=I<9a9_CWh^Iw{nS5mM~ISCCmPvCVC3nO&0clDaaLrf6_9pF>#=QT`*7Z1zHw zJwtM-b=mfU~-Bl4%ve+_AsSJCMVx{~PQTj6&X0KKw~ zeWx@;xXlK;u9jQwG_$=q0K-L+LYRtjRNmG~#~_58h8S{P9I#tvHV@V9j(nyxkfiFi zOjGN6$7DsUB?`jymawS9EmjOQ#>DSZMh5NHQhbGIJjjV9bkUSjp<{4LVD!m|C25Za z5^wD%1)7U6G5rxbZJAMdb!k9y2Ze&>Zw~>XQfjqFtp3< z!o*IDB)cju35!OT2MeD~jRiX88~QfcNg`L^B<6|pOn!4~SP>i!ON?&0KD%2BPxtiq zQa7jy-K+UnDcbz7+EcQE;5O10IvS0ic5yzyHg8~Jor4D zR+T`+!~)ulU~e#z;eukK&M316pX`a;Ngv_;w7hj|SCY^|5E6uxB!2aR}Hf<8LF`ear`M0oq)?j7Nkkyh3=?;z{LkWv(qGbn}PR2*P~5ZDk0=ttK^ zKJLuBX_%N&@j-W35b=x@c5H`Tom+jhS8sSkAPOUhuLv>Xk5>`x-{ZSD$6(yii0cb5 z0tlh>Lx)WeXIb zm>q%_@9z8T+1r(rlMh~yd5mF&*zEpS$~pH@w!OhHp#Z`l33s`$`0VW42vH?AtI^&) zHq-leZ(MhJ#1iQ*pd@A+5`+;1vu@$S8}@YVx2t~pX$Z^>xUez>B@V6^u9?k){eI87 zmT~SW4S+%(F`CQKy`7#m^!Hmxt@Shpltn@?0EP5J4_65Ij_mqlM~g5eHm3IH&_Fxn zq|s2u^LO>@$|`HqF)9o!FuD;B5FT;dPqwx`Gw-J9GG8INQk4M!Ov4gz1j7T-Z^n}c z>eNp;MZgzyMe&3n*k6sYj4k=oBIS^PWRy?^#s%>VCHww%(s8DYV!a!6^4*?$;z4D= zw{IUI_ifN59tQnKy3DR?D$6~=?;El44As2-S+U^ig?6A zfWlyl4-i8RvOD%{kBH@+6p@kwA`yx=j1QU%#bx~7-Mw9uaS<=9Je;5)mwSvD2U+-b z?}R<8P4a4k#t;et{qY}nSN$&7WxL}?%5s{+*S|Pu`r5xu{CRia@R*6HCxF0&CtVku zW!+eF@21lk6C4o}4>!-SJ9;|2M?I933S>IzX^4g5OAW&eyB%?z_U`Q23Mm&ZTq5zM zYXl!R4_WfEi`ya?`nR_jgl)I$9v^|Hv-67b=E4v_z$XBU9q*zX{C(Z9qdfMJr!ZGc z5Jev}A{Hh80Oecn_fpC^F#sVQ&<5~@Wzbv4GvneEYl2RSlb~>uag*WQ2%&FRh{vO4 z9xBP3_1C*#9u(gRD#k6l@22RD5HKAALVAHjLXWGzhuf;}?4zYBV3q*gBqZ79-4~gI zXJm7>&vhOOSX2%LlN91CA{Fsnvp*eOyXk=0O)RlM1&Bht4PE_b&!UXOn{WCmJi+Y@ zMS~rp1WPW$;#dSB2kpCde7ZJKj`Ube4k(~2r0x)LFPZR$%1uSF49%e(f)Rrh1!Q6Z z?eX!WRo+|>%n^Yq>3)9{T*;dWvu(W}7*RVyl)+l|9C`r6!v2u&7_2WWfmSgF1Oy@x zm+uHVvFmxSyQ^~p7CK88HNuS zz~RJwp6esKwvM2;l8hc{Vfq0KMIZUSd47B8E9X9qM;`FCyJn;YHmgzID~qgx)&lUb zaPGjsLyOIs4_ll%X-sRPSwxvB#1yDnRvawEI^AD0w`WbZLY*?1&PqZPhYUU_OvAh# zU?bO`KjJXToYk)Zlrz>FU_w|+h{9#vSoKloj0`i6p(=9lG3s?gF$_HhQlzdr7WnW1(m~@oRWk%Iwz^93r$HWhn z#1jf|a059j&MU~$N;QY*>?@#0Cw6#E4=O79o_iZLfMSKt8Y)u-62x(rgkLsspZqt7 z_S2wT3ivfSxG;*b=aZ&sZbff6z$JA~;Jm{f6hzg8`5IMcMx)b|pXq8Ml`f0vYc#!- z=&5NF$jXAdKy{b^EFnNRp5xENl;EOG4l z+q0&WN@LY<~#LTN`wS2iRCJwWA)7#QGUSYHaI`1PA>*Y0bg<+;VE+ zxlv?@MWQT|yy0tb$-(uyoW5|TW2>|x2#rosa|9t4F$Vq`gNwJFCO=@8-_uI=n!AdC zL|BK1cvtZ+W&Z#xZ{u%!k-oeL7&YTAH-m7ngjjcV*VOE@!E{{WW|z83OlbtRF&d`2LYpdw5w zfeq_#{i&q=wYgi}(?@ex(N#b6U_9aB0`Q06KkbzRGO)Nx& zk_1^Lm5OEDGYZ@XogM#>?Iq8`Qz6GY3# z2H^obQ7FTUCph!R?)cl=PO%BGh|-LKpe6;KaAkx-jk=A!-LSK=iKR<2z||5-fC1MF zzvpVkXYyhG8Xb9j1hnkY7(@le%=@#)9pc%;M%C8W+U^dH9p!u1kSc0AXbI*B#D^Dy zXBa}nP8|88t&aZ7H*cZf)WpaLTsa}dh?5I}CE=Bct&Uhf3n|zmC1w={7hz@Iy>kR& z#4`}@ZojsQ1xYMQ2nlh+2t*r#Fd_5f6LGwJp$Jk>{-&C3NB$YJeg2Tykts|kCB5>k zpS#B<+bTX{iFnXP5S$)3gd%ld&wpo6d?_FmR+AE9!Wf_>RoIqU!7v7vVDL)kNjRV3 ztnnPF)uvf7o&XV1!7>6QvBXg?4(H|aqp&r0*l8G1N|fTlE-x1j8{?_Ze{WSFOlj$Z zRQzzne;DKyhlrU>ZA11J{!eH;koC&LU+ z`#o@u3`)8zOgo$4R?o|SO*(jOT{YQ-1Y`@F(d-FWfc|dy^z7Z!lqhk!uN#vee?ly> zObxh~aXnX!xxyV;QYw09Up~AWp6@7=ujpvR0^+4R}(v%ZQ2OL2}E3A$K}34kq8h|R+u2ioI({>`ww(X008 z0L0-eK?r=y+d+k%FIRVE3=>zVg_Xk05A^W$e{0>>9osCjk;|lv9CzS6X#`S|@J)B8&?-Wt(qF-ZsXM1d>s=!wA5$0ufxi6EN`$w^UbujhWlxD(MhKXbL1m79#M& zchC0k-<7%9wlr}USE$brM*pfxmg(Rq*BiqqmXa&2F8~dBAlU-j8ZWSP38z94Z?1Q z(*fcz_vJ@oTC+H0f&p(homqeYLVg)~?w!X+bSZ8dYWOKkA}|1gAsNQR)))Bq+wIDZ zb4Q5LIEhG5Q7-Rto-gS8H4_`HrWii{z?VN$;=Q!0?Q7! zQyAu8J^A)_QG;nE3-yw=@DS@k0Lh*R=1Tgeu|R-HiY|+YSz{#Ad7CoS`iNP(v$3vK zSsGA`5r8bqp|m$_FIn*Jx4z1CVCew0C5R>z95Dvv=<4tME$Hc^O-)x_5rGP1!U>VI zJXqpcZ%^Mv7fCCv#oy0ZyXGD0x&7ArdZ^$o zPB0-P2e$;VUC3PIa`iu!?aD6fnb1iBKX;e zK?$(dbm#Zy-<$sc=1Lp&*}MK|JK)qVUL)@m5zUiERjZvFiovHd!98WHwW$N-EnNHXPg%ZwrcL+(Qi3_0gjBQ^dP6Jwrjonqtn$! z+Bl^d!X(015^{l)V|gS4a@UfN#H!H-2!+a{8wF z_wMX--Q!PGvK1Izfy*o`ICzmR7=Tl|$B6DGT25%o5@jPe!53+P5OB=d&Xc>uDR7n5 zNKS#46d@QPafB?kdajO){q#pNr%r$`z>x8S#ttE+-!s2=PkvO7^Qr#;x?ZF26BADE zJ{|$yREoxlnL2O?WvK{6BJN`dFvL43S*VO?=0t@-WdsozP7#J?BMij6U#a%^=%nB} zs&FWx;S|C%1k6jJ4khyP)SU=*?%mg&4<@U%F@S~?hY}E%#ntM`_iMZIqD?lL-n;4o z92%7I7?BZiaZ!L+j4+b@Nntaa=)wLb5ck`&Jm{vCV)z&kmOxCz5qgqL^E1n@J^gu7 zR!vrh2(XAHhWT83rGpaweDCsic(#TkASet45TOl$j(??3sudi;3xWk)DoMgs&QV5lXT3j|?;=>A7+GTB2g zkySvjgpx!NUcMmWM~G){MZG=oqL3v=QsN^-L4v!_h>>dW?6a%zvf3o7reOWo<66>` z#<^z+F?E`(&}q5c=mf9`^#KTiWzz-DWoBn>`{?#H^4*n`QHqkK)CRzB zeqbZYjg{e;pNM}}0Kj2gtJT8rzMsMy?ECka49c`o3?i(v3>P+C*kx^=yT7iG7#|$( zUmh5OFW%Mn!+b2=`O^^03c(VF0&iJ}0bt_C4hMa-cXoJ#BPyP-YP+ynwet4k1Wt-( zM?pg54hVuCIUxvg#Ls2C_uacIXx}z(aDWC8M-%sg5ck>J9HZhfq<&hZ21K(21A<_S z<6bhuLH6G5`D~#zYk>fl3+4o2iI{;e>Fwrhv)#XL2X#4 zie8FzZ${~G`1RTB`IS{Kjsp;4+*yYh9bl~U;CFqwTkfN!)xo>tSX%}`&>{g=+YyXn zEz~8#@ppn=v!nh`ZrV20HoAa9EGtC<#4Gm%EGzyLZ;$6;0VgJag%c2oL4o6#Sh0BJ z^uyb3S;uuXt&v;cS#SzN0wWCbgJG6g4r)I;Hc~-m68#?EhV-OH*qgTZiu>gEhT#}6 zC{SQbF5%`9BY5Uw^HKX7J+xG8Zr*F-sXxEW-vsOHNpIX-Whz{{WK{ynWP( zOp{i)jbgVlf`qjNtQnBiK+PMOCsXQd_S=;uOKAnA&#qbphxy?OI%P3-XX9I5)ut94 zW6Q4yxte2^VBo@qyywZnWYQB|5U|Te-jC`8lMZD%Z-tpsjaZBHolRJ(T5u$(w*h~TH09-5LULdKj%CKJJF@YFjPP7fqT zbU8sJZBDI5dvogGyvHd#nCzZdNS+B+E(vQL2WBB`?fL6g9ro^9G=I9C_u(0-Y26r> zs|lDMpyNR2%Jz<5@f@16^ZL~UZ!c!616`@U7%xt9m2OO`pC8qnaF;4G7mLWzrze>} zjGsm%gx|xagkcTPqQ8-y911Osuw|i^P??OVoprf?(DfS%0@DJPUAI(UbKuG5yx*o2e4bGwa0Wtt*>?Z55>{W;aT5+g`0Y2J(62 zsPJ=!ll8X_(wA{L7DoXxI7gW$2O>A}e7m6=DE|O0t%-rn z6b^xI4+{ynjFB0n7RZh~%Cn+RC&#irj|xgMW-x;XAqr;i(jup^M2ZRj0C&QaPQr1$Nfuej(|l-NVywnT zXF}JE1|gGM6cz+*rJ4IeVOjiA!@j14G(NA@(@48TjHaOx46GLhuaAgxRJx^5fNi6C zfZ84XDY?inC^PW6iaWbD7Et zEJ7`+v65n9LRfyd zccvSbeE$8Nw1V7Jfb|dwV!T-)hypL)-Q%XsnNvuQH1qGAAqc?>j4j^XoxOWEPyr~8 zh=T}=iXP1S?cW`}J(P4+Vya6B^yV0d`SJ*Kput`v-v*3HAj8HW6?9x%`?qiD_-ENm z#UslEGDt1zPEW6P50z8|BGzG&Yzarz%6lz@X<23FF@&Jwk`V~u7XXR_jvx#5*gr4E zmqF4gQ?fFWNc^B$RB3<|evV?C6EI24o>73CT}W#jN%RvBel`#vJJKGP0;ybloLerm z-JC~rTO*o8nB+u367D!nI9`m5nCp)J0H4XyW$mMN#$9t0TR|>BF*uD7*Tp$u=F7K{ zltdEK`F#=u;4snaA0kor!KzT)Mj3LXs{FT;vt@Wa2mstIy_NNZAVmbxLXV`YeXLP zE*@h{zMw%6lN{!=M+xR(m@?6tPMWCeW4BU&Wh@ktI6Jl0ds=q`L|Yxg&M>>WvA5_D zIFz{G;!h)IMYLnfXaMl(R}GO=Nyy7w=$PRcTnjJzFB;5m>#Vn@Q`1LO;M)=>Ad=UJ zp(`WPP|lrkg2VlmvDF@jjUA_RJ$v@Tl^#f!7FBx%WkF$tlBv;+ zzd^hcbbvLvIz_c&QgC^nDG+vz8$0P}rb&>u3cOIttzIF8u(!WqmMlOHEasANCVyW+ z#{U3{C$^26^kXG0R=3YdN2Cg7XOq?lCE;Oc?DHBjaKDkSvL5ZUx|KSTWlmjc?N`0U zsP^I3){513Yi$meH}4L(Hc>$5q$-rUIuJ16gzi$?0c!7<+HaFifj{zd=)vC_CeBMn z{Qm$a%n5LG$7Z&2R0zGkRBTn`!=iM4-%^XGGq+ilw5-~=i+sH%zmou{3gr`G^ktYF zGcgnGGWXF#iB82<4XhX>Ov4 zO&v3qjeENy+n)YchDw&iH7=0Sm7w9D4r9TyS+9!T+zfJXfx=wuaK@fjqgmzS2xV;1xvzQyyFNhfzm2YJ)QX(#AT;89!a@+ zGNh{`2d>Xm~l{dr095&}e9 zO6tRFRW5`^a&k+V5E608PR9Nj)wf6g09UG&J%S3GE2XJpk@t)`x}6gkE7-cEZznb$ zZVtk9Vh-e;(YBLU2PlowVMgkEfKs?Ls4dkhgACP;V+p4tcuGm#o=0#=mRe^c+em&w zmXuC4^46JhlY)BX;CozU+)NYEuUN5RB>M@^uctaP1u9C+DrVUwE*~)TXJv8V84b69 z_yBP*ll|4eL7u^?4jb{d1DFJLYk~}p;@!gDu1OraTfvjHTJW4xE+sKm8E**irb0-0 z)aFSItC`7g(fYP;r4!-pSd4X^$*IBS}v>V9f|XLwd?p`Wi6dftvhoJ(?8 zb-4apnB;|y5&jh`lqqVsE>`(XkGuxw=C_qh?$VUeT@^VpIV!Zoeny(rIV?D=VtGL% zDQZ0Kt#!L8Mfga|q%}TI((_5m3}vZm>Qm%3iHwQqn`AoFG^vrCqE5;LkeKpL>E%mQ zTMe+LMFmVvEP~61$yAUQTphL>Wl{kD0QP~pVHWBa`fY+r0?GdSS%rd>=sT*`dr>tq z##vtJTk_1Don)IX)>ZD<*83r8<|CYWSfl z(k97%Qk*4MrGdnOP8Dx7l8tVM1G$nEwLYv)tv~a+DX)M_lTzB&BvWG&Y(DvYal zpsEo@Cu*7=7)~X$$if_=I{u1SDKK(NPU$lUEC~w+TBwRDtd2k0Nl++e0=bE179+!Kw&a%v zNtzD9{?bC2g{u%dC`^@CB}dCF(W!8hRqK*2ADlS<07gsP$c;Ts@Wd@WYw&qg6;SdV zrCl{{%+EC}Yb2A8@`GyWk*gWGUn)uIjqcp5MyE4>M@4YV)dgAHHaHZmewZ6(*}AT0 z#MMq(ff|iLGbL4&@jDXDfe&9c$;Uq?Ny@n@q-o=plS^U3A>sPDCEg1^q}ryZ6$=+s zoat4SQNt-1MWMV%&*Y^>!&P;luN#yT<+e8`i9TUanJiMOvAtT$X~}2gCREdUMRnH% zIt}_piD?Tjosg6`DiV4|O%=e#7W$C}*zCBaQQ{mUMu;sXH!5@`_R^~^hs*#D z-GPGjrdI2C?3GzIOErWiDL@aRc9!O1TqTK^?UKD&%scwI%`!r zC5nY`*-E3q9;pX4Rr^hFNyRH+t_BheY_6#VQD*rru}flAp`7U2ar~dllHusdm=Y*W z%CuFGN7-m4RPya~$rD8RBMsVJnxqGV9Z^j!>lHVdCQS(O^fP{}oou-GgXH&Q>Uk_N zcI>A(omk1N1Tvd#lOQ91`a#4k{9ZJxCV`QeITDvdR$%}Susd6V5 zNOqUdD^B42skOdgm)9jc)P_2<=%;8(i6=?yz6VWJJN zpGe>UJ2lX77Z4B-D+c_9v*}V|i4ag|$xDaKQS#$!i1iqwf1_7~<8=2b6~TVLW~B=y zS?LOfc}4m8W*KC$xoL#FOP*3Elq@4nJ4f<5m0Xo9Ew-HFt~N6N07K6XS)xFwdf=H0 zmft1`Zeb=$iWg5Oy-9BcX^T}Hak@@7>XGXfC$b)tl$u)!cCP9LT%lJpgox;6XjQFg zP0o{pEcqmbdm4(dpV`eg=Xo|{IG@@K2f1?15xq`}%&6>)^}~aLS-dqkF-Y}=F1|`` zyf3QEGXnOR>9uwn`D6iUWvqFZt&lp{i=)fpaEPi~ZzQ7RHG^qNsVAN(F9 z`I=iZgj!P29b8pv*3Q+!vQaH5s|6aS4$A(EXba;uX`HzoOQ=R#gnf zS?^PFz^poCMwts^kcu$0W)hXiqovCu$_YPCIHc;~{g#y}$`!2iSktmi)!d%3I6*v< zTS%K(YXIp#ld_4ODmJ>~s`ny}CCP;3cpgu3J&_Dy`$N*cx0Nxo`Zjk%X_Z1+V17|C z+sg_FT?LuJ8dO^Kw>a16<0Q12N+?IS%mdUxfNB6P05^_TvsE2(N%CCD!VRWxE!w1A zzgF97{&;Pin#`IOOXnN=9#?W~IQ1_CkeL2VmBU5Sn(%pNBDR+%rE3|?WzVPnNO34L5-M+F|AKe?}_k^Y4vX-2p z)Fyi*>=l|}zf(hx=!xmj8Dg)}JUX207^hIUMV4{N%M1!LZdgBU@1!wPa>6(HO|{KP zv>Avf)1WOHUQV6uJ};#lv(e&y2fo`WEWAwaQjukrtsx4f4H`3Y!8DV-Af0`RBbUOQ_^#Ts5=yg}riS-+HIL2( zw=m1^%ASo_i3XagB--SUAChKw_J{I!HCk54Y zUFge3XjB)CIGw97wEqB8G@TCIVmY1u`bpI^;GL=BB}orUCYfD2%jr~0u1b^nHyERd zIe8?V9U$l_*`xLB-%ijv5^qK5)6D4kiG+Xv24D<;FC?%thI<|j_^3{LR&sCU&YA!# z2!G&T3+W1LfwB$27-qMt}h>04-vSJJ%GFv?_!qIFyr z5Th(-82p^9MB3PCinZUg4qemJMr*XoG0JmDiLHioQ>9FWIfyZYtI7wGS=yXj1N4;y zpA+zQ!Zz7XXtKqeT}Mh?WkJ8;{>#*&G^H8e_>Ed<6d582qRnx*Qjfd=x4c0!o3&F< zRlH+V>n^8uQuJ|X6a&ZGY#;R=Nd^QnvCQ9LThwIDZs)0IN7$!57%&W=KgD|L6=%QahpyPGg8*T=Uv)q*}Ir{pNt$<<5j&@;gSXj&C zZDP|gj6a!6joI$%wiJCz$($Y5x2Kd9B|N+s3`ML7MW-aPY&#WU$9ja;L&n(iiI#Lz zm>@2Kw`IbCP!Yo1?}cJ25+zMV5*evwk_+qvHu!kAOh!7bQ-)3iye2gaODK67|7?Sg0(2%IM#=Hq*=e+gjCzQ|g3F zYK#hWdXOw*1{rvsyF=|!o{`r}30Ad@U5$uQxt%enP7>1_bvuBx)rVtk$3 zODwWPpeV{OSs%750^bnnr$!}Nk-%Cqau6&s>1E>_pgK8cZ{N4&)lOfe^iidh)G&o{ z3v%)dLv(88*uV$HvE_$&MchX}LM51Bq7fJn@v!6OZniPmo_irp!JHy-p%^a&o}0SQ z^}XAyhJ6`8tv*;>Aw&(v1hYA?m>Aj&{AKdCkF*cfQ~buiz*qL{_>l^3918Ide8 z#2xQfA64Jkwvo7kzQC3=;R%5eze_L5-JKiu(L8WcjI!=PTv+jfAnQI6f!6)jZiOQi zGY9MTe))UKIcVgr8L;^G#v}ztM8FyZ*kZkhcvrCu2Xz~35Uer+hzk&eD*zDP>FBq! zx8Xu94UX<7-Y`c5LJ@Y1zq9=9>9Ug2R#>MN2qGZ}BDfq+{BIpSInjj*B~VYFmHd6; zQ8h|i@z112@Mu~hf&h>q@opIih9&gb-R=3uT7*DEJCQEK3@?fyM#AkTHu#Ktx@jl6 zC{EIxK{zGhmK|WdW+u-O>+Ym9`#Bb^c|-ubFoZY6Eb!x;Hhcd73O^{Ciz%o|(;9H@ z_Rb>AOl(73S^3is=CSZb1V)G@mJr>;0EKoo>;4h9=ic>}*nqr27|0N>8E`@u*~cPw z!a4inMr%5-EI!x(b_y$aL;L-iS?r{xlTkmTXYF9@ za}F^DDT1hNV&}g1Z(7)Jhgw-wqDi@h#k+HgEnxHZcl_v}YeW(!xLIN@@NNG9Q`zs2 z<4jY{2!dE(7>MNo4gN5E{=L5IX{|)kQL(gfyK{~pgizvpcIDC0?1)mVUBR9dz(3lZ)h%wB2 zdiQwFh0S&eq?r?Vq8A)rY0k%OpFfms3<6R5{e!>f7*4577N-w?TgH_Jr8Ln7A;JkF zxEsOq{{WjGWIC<4Y$>>akr?5`5DGq%$kA!E zB#g_j5n=&?^P^|CeVtn)^N?fxA*tPSemMI?Rf<&oyBs~^bP^UJ783ZpQzLX=m(D%g zX^E|n5Q7+Dh^UK=ALec<+`ZB2qo4()A{XFLL?ZtHyXIx<_d}yEcG@=Hp1_=|LRf=u zn`YkJFr8tSLMU(P_V@cCV_9_k+X&u)!Vs@q^F3x=u)yo~ z^u^N4sBF8#j7UvFiG8c<_@;388A*|*yAT#-;_VgTYcV$Ky}mZln(XL~7l#2769On* zgawJwZ;0E`Zd71A&jiNU5~Q%;hZyLDUS>3Kd~J_z_#$VX6ea<}3ZUKyOx6rB#Mj%c z?DpB7bagp(3~fN*6z@Kj-48>;d6?j&B1}+=5JkrjaifVHzdWODoAz#?HLMk?!fZ)0 zA|xgmh)8TOv%S0eHv8!zOmq6e2r)siHuM8~?6pDh9-)t)gf^kIOROD${{R8L7%kG8S80(7LrS`!ZO#|++q-aW5@IFfW%dlHm$3CJvcUguW7zyn%?Aj$wb32IxG~m zF)_24$|6u`dSTvDJsi`g^ zE;j>qF~leEge|u&j@m;^+NSTi`Lqd`r7pdzhb|B5)Q<_J&a2=c-c@?<(hz)m{{S^K z)r97pVTcdn-t%pbPT2PN*%~vvfPIh@2siuLZO<;e?a$>w1_f5w5{wAH-T8Ip*H5nY z$NvCqd*>WW{hsMINsAfr<_}6#YlClTiW z3;UwGtB=Y%`+BHoxpCqlup#0L&Eod>&$Bu$rT+lg2=J&NU(m4N>^2;qrDDhsz# zfI$Qos4TnD8HI+9b0&XraA=TW&Jkrboy!N}dZhqL?PDYfO>y5@b z7KFRP@z>qAzi>wIRp=IR+Q9L++q^>EzRFcC@cxLHa5_!Nvd2E}Sg=b-X+*zjcp2P7 zgJ3s)+Kt>M?j6dDBFLyP3X2auB}Tx{=K7A9ZL*RwKhhKvz)VDO#R)yg=;Bmqg{d$3 z){z@>x2B$c^yk9B7~&W!u;PdJKbzxz{Ibi-Pr-<8nq}bG^gHeG9HC0nd=;S-7ug4G zxI+xUaK+)%X{|IO`%zmL*x~fm>5Er;7j)yyFw9I6#c!Bic*NlN_EEr# zhwEq#5s+F9f1Fu@HqqeoKhf!rN4lPGV=z3G0m1__iykP0tL*XDKwQ}P2nG=ufw#@$ zcAB1g?CH@`qj7Jd-%@}U+iwLoKza1Tx?6b-lQ>)-1U`#q83@p2P&xZd1 z9aK^T{_z1uAylHm!}Ls#AIIlxY@}sB!;KK7K}(JqQ^!9i8c0XtO(>DRJW%TbBaDUp{{Ugr_;06; zV(UHhu-}T6K)Ne}6i)5!_+>>j^}jFz0f1Mmx)AO=y3dzgl&@R-E|D>QiG~3j?9INI z<6JNpbe|Q>?EvSNr~dd*7=fPQ$2>wkpA*9xPFNyFp>buv;Fk!6I;~-U(fe-f{!Rwo z6!Lkd+>5A7fx^|6VTSR{`>g8tQ^pB3?=*%Xgj`ibA>tMsPK>_qe$DPA{3GV{ zfQrjSct-I$x;y%5UT^TRGL$w`Eo#$s+O@Os7@A*=75@NKmRLXiFP8j$Bip-g3Aro; ziZFS*f-PnyFCWI+DCdJGG^{-D8mm$5M8*&eT)VU?7tH~2{~eW3iywsdQQk_FuS1Ec!j;b%$#lY{{SVNAd*|sF$m8( z@T|C9yR5U)d-{5#;mHRL8R)2lCcLN@_o6Q|?Y&1a-yG=jO~bl+N+B3qu!YUW;P9i& z{{X}G^~Y{@QYZfa$|?L74!k$-@eXbW#&Sjvtu@id_5gCYjsW2H8sPEnQ3Y;Fsz@#* zJ0UbeD2-8y)o< zR-2Tc#=1C7s5J~}!lUWlJsAsy<)f&QisJ!;8)DLzwwgn zA{1b~9}sBufSR>h4HQHWh#>&)m>~up_ zLsQ@_ESW1Uam)s^?}r*pOHIhAW(k>kfK|9-%ttB=dX6S^Vo)N&HMemEe=$d|cfYEK zMKrOBB7jwhB8Qw9^Kpmu`#v=Dn8W%^WupK|YSyC)gS3DIK^8zS`Pz+1`E1V5jHKQA zMWrP{1PWS~0SpTT==-{9PJe{-q93kZaotvGV}&2ANG6b$H|Us`VZnnS z_sh}y!3UOeAXtETV&ieRyEn(bF0T3kIX4*`F)JuVm^++*$FIivaZLvgxis*EL0p`Z z1;kiDRTY_Wj;E?SKPo#DaNm;DfUyNuF=Dw5TC5{1x7{0hebi)h6zNLeEir)9b7y+v zR{-7|UM#|92lVmW57IjDYJ``s0ZLn@8O9aZnR3jt{C*V7-2i0@1Hp-K;s^nbBXQiz z)|OtkFCNZ{a=8Z#nJi`D`9#3o5oCn1bEV@I&0`a1&utyacvwm&lw3-Bh(sal0w9|b z^7UQz$J<5^q2~ZVPM%i7emVJP2`a*DcUvBj(ZgCB;sV1Er-*ffjh{@-#eQ3Dq8aky z6(SG}D4U|<2GYvsJ1n#E%dU^5;XNweFdknlR|Ht_@imakU6;E({X1hIH1LL&76R!{ z1;8TXhY-&)HudfCZrfofT7{{W}EJQUad8T;n(IwF!A%K&3=L5M|d z=nE4N%|qVj3|rC35J9Gpg8v_kcR>-+xf=(1Ga)@ZVc zcSYuz>iWC-qtzYsY};*Nz59Lnx11|nx%dyXH;Aj`!3Gc#0_e4Z7gRoR>f3D;fmdW* zy%c5L5V+Ct-wnSTDDF!&wL%zX@j@Ru;Gx&wZvOzji;1RIk;2f9@q+&JeYSifvnnHK zxqq}BJ*ft_)2+M4-5w+ID)AIUXwj8)K!EPy`TH%|@Ay+As`TUUu9EHRJ~2+)~sudBvedb(_o)}$0{38mf_ zo4N*jHgtFOQ9VJW3?dz*-pB>*F5l?v>4&zS{KCZ_qaGcM8rs!&!p+^{sHm!xrd^B( z2!(e2(Cpjo_xvoTlIo;@h){}fmS(OZ7poj{?WL_LIzuxsqBz_^2NT$LU$^B79VxjO zp==X`L5~nNS^3!xi*5GN!cQ(wpz1eVnz&&KF0FOBU(zaQ>aGwC;>+`chCVm`DK_V~ z#`-s1s<$gJ?%ftPAcKeh046)SE%s9L6xx(P;}#IzvkW(Sd_#ACK{YJs%>+UsL*{)g zztZa2ZInKE)Yn(m*)=-i@S^PL>zDrk!)r%3*Hw^9I8ll_qYs=AhZ6obt^9JPNb1`0 zf{YUi?c)B7ef`;X?WOEjC#H`W0ljor!x)EGyHy$$E=@;%&_E^L+8=*zdnlsM8iERg zW$E85!j58__2HNeI#bgas_pf97!+7dB*M!yCPc9Y8orwe$~_&HQOs3eC9_$KUC`eU zgfCaKqoZccxyL$L(xp<$0IuMM=(xALcXh+Mo8d1&11wrOW(Q%Sz1i{E-%m|Ab7ua0 zd!#mh)I7X`D(GtHvfvRGq|3fwf*|7WhF&)Ap~LF#A_OrpZTe9E@I&m3v@ zLNtswvJ5jsi{UK^>T9yun7tHCMgkQguFsHf8lo1+$7IeC(R2NViFYugj+-sx;LD6e@AZmaaV@l2Joy- z04C1rbWekRB{q(kNdX_UvjC6#AEYt-Z;H(=qyGTR zWx*o=2!}D@n>E{nc~h+!faa-qy10{67$!9X(q`$Hu;DD7oe97=l8M@(8&hq%I!yFf z#@*X1f|Sl~CX$6TLUAbta3T(^I&ZhZ+y4M~+tEu$Tyh(WB+%|lhy>4b(iI(PX~3MG zWh-erwHZG}uOpDa!~<328ztSt{ONII0ygJ0B&_y!p6(Glrc|?Rc+~U)yLd1F7@u#3>sC&h`-hBRXgW1|}(82oIqj0ma24S*1X8{Tk(&HJMb-P>ub z_=t#x5rBeVi^xB|VZJs-k<^+uF|Hj%Gv8QJa_N}XuKK_6?Fx(7wDKO41cs{Vfnb+Un*A28V1SZ6kgakGib|J=npbPQ0;YVUw zek&0p85fHu8U>gTht?czmTkAX--VQdq{06H-G5NsN)L`hoPw04`UjiWkCWZurrd7GjJ$v@sNP9rqYGdo>#dN zj9hKKfLo|jr<)d9Y=ZX`;Y|>Q3weenFvE=1#KXtVp_rzdK^9(zf#wN{oXH+)rrDd#nLBe7Rbi^kRf+Y#SxWI}f>G(FBb}8PZ zgx37wOJKPHs!%5m1%fc+1`!x9Gt`n)Hxr|DXB@hyn=-N~gbPYd=pCV$0Fp^Qd53GY z(EH=l(@eyi>S@etbMH2wM#gtXrmUa_KpTU<#B-iaasxZ*=oFYCcBx^akqRa63wy+jUHSSPZ5Gv zokI5miw>-m*s(uF#`XI6cICHi8TCgn8rGq4>CG89$1|*oGR(uiS~cYC#^~D`ZV=eb zpr)d=*acr2IOj_M+$$X2bk>xZP{;kJ{hQgIf&<1Z(|n?yGn|fv7{X$CZQa3OuM5(X ztZO?MtRF|WA1{R?TJ2ErFV+2A#I(3+%bBLaOITQnE-)=&xWuM9Hva%P>mv=ca#fVh z2P)2RSES+x^{BK7%P>%heor|m#H=Kq?;S1*!bD8LR7ImG;?#bs*20F+h+4wHoSYPA zV_9d_?CR>-K&4R?61dv85dh%b;_%s2MQ`klvvKm@$AmH8-^v?0GsY7OJef7V>_TCs zmNf24ypD0Ff1q*M_Cgess|E^{)WSJz#Q19^l|`}^PByV(bCr_vPb2j@F&jPfhg>CB zHS3z?s4NMARPbb(c*5-~M%26`hR$Ogl2h&V)IC{~k<7E1<01irDtDx7FvM}D7&i1w z#IUQu#{PUg{Zz3sa`OgAgbIU9SSrnIt{#yDRZ#+e?+wDi`17o8n`gz3TpnZuiO^yww}523dwoQrj2{5oPfJp`BDn=cCVL zc{_Gs^+wexjl3voeU#F|VaFk^CzjOrg@}x4{EXYo!~9QwJ>Nvy$zGv-T}tW;!->^v zFsMe}tR`Au+uyKUu)m<0ax=L{x{Lw>U2~-0@c~LZ4y*M6ZS>(1zF?&pVj8<(cCAK& z0Y}c+LOptze9JMmxsXt_SEH|~2t)q>S|c=sYYp3PF`vRTR+m|lr>Q#ZIA(H&nTeem z63Zq$d}T)y(W#CB9bH{UCE*z~Ad&=NglR3aQHoR+Ao=OmFDDq>X#W5W`CCaD6FCgB z9ds~|t4=0vlm7r(?#EZl8RkWiM}rTyOhM6vbZ!0AW^B7QO)hVRov;p>M1-a`#UEy7 z7~Q}*yxPE=9BOoxIxN9h4G)J%YK|7K^^t~LesfmTNyl>sy`UqKZHkph)54PH0O@iK z{4Z)AZ<`qvI!dmSbnzt4$#uMp#B9z)tX2JeL|im~@O`wTbs;l3NG_~3kl1*eoFsM2 z9a&uo))<;#B-Yi8=HS`09Gv#)Npy{r=#^6NgOeKT4zP%VaF&L*nABD&IDDPLtt*00 zKyt)tk*p>^*;640IX62ehb7Tmtfe-PPG}|9G{4?TX#hrIkNQ|%^!0G#5@n8=reVYGjj9taZ6)Dacv}d0O514a z;ZVj)Zwi^+R0z@!PNxL)>d1yx9dFgBxpWiKNJ}nI*s2o3 z6A!omF}+8NGegHzsGU@*DL7Oyal3i-$~!~ClFCtWlQDv89BSAlBgV!A@jCB?}_$BUW62IY8waw9`8YOIuFR&pI|>C~9&> z;E_IYjtq0#O4nD+uJcW4*0jFXlNn>oqdln;d;^IbMsmER{{YCGqvcB3c|s*AHz=aJ zRE75c0RHNLuXNHpG>LH#9FL&Cron_(-w~w2-@Kx)ZEJEVV%8J|5O>#^9i9$Pqjr4-b$LPZ)cr7)=JvX7~PqLMTr;Qs(w ztxxDoN+CQjx4bjyOwNr{;xweWOKyiO^(p2=UmOCUWTs9Jh&ayRLuTFp7A;i zmnUbYQy0o>7Z_7|$?=V})r{oI=-vtRIg+cFBPT^u=}w7B(AGs&l(3St_P>OKM+SQ7 zHC(pSHB{R55;V;-IW9`*of&W5nJzpdSs15ShTc%p;F=1Rc`WKXs?krBD%!cK!d6r# zNvc__X|AxUx5z2YPcT(P*)6|mlZ3g;2+`IxOo)H!14@L}C3I^!LQhOhWjJ1xpPU30 z(dsG)s)*nF;tm%Zevx*3A9Qs&5~D6ujGB8TLB3(|pkU3NLgR#4s+b~Vmk)k;lU&dj zGBLa-SX{K^>HAC*qiH7+{=FM-qoYGMvEwIJ-QdF_&&Xa*M=~06nWJ^+$Y14a> z8GdbiT!m*RQ=z5P4sAtG5N=}MCD?(tKr)DQd3XF9sMW4Kqo_VVI zke2e4HOwXwQ7axK*CJLCqnw5B0c(1+`?0&Jij|sBvtn@j$qM@hmm*ksrmQgptgxhO9OZW; zXwQZ+=F`tRMC81y{M|C)+T zWSGf0LrR3nW1{2ekjq7LO0{lLN@ikO^dK`_utL9}*WhZBT{c22c z3lfsCx6s;@km8NOCXMK-iT?l-8fbKMq|DLO0}iUPf7EO&vdB|xD1W@c?GTSLM8P?u zg$Me1hoDt~mH`1AUc0!&T$*cO;745ZX9zl^Zcj1rOW{oNTW<(zzriWto~kP{(qh9{ z&8@tpN9uEv>dhe{j!LOCPSF-o)UvUpJ{1+WT$NK-j*BXGw<{^No$a<+C3&gk@K;4u zmHP&Al3o${H$oz0VcEz&hldB~`>Yk!kuAz5 z%j`3wNSb_?SduY%Q3%eHW>$5X>C)L2H~C>oU)#(ir&f=aK~!nb(vXy$8ELgmFsiD{ zf+3|s(&IoxCs5-}s}360{O_TJn z7P8d2Dr<5yw+RAhB`GN91QM&kJfbq>$cF{P$o!QmRYdwG+CsIV!VUR+-#tmwdz0an zZ!Hp%Sni#)huCkA!rc}bcJ49r_Sw?@epg7TD1wX06?G*gz&>RF3d^hj z03%P`VQ|Pfj9uu3WL20rl4oJ_YoLeAF8h9$1YAd$agM7_)sEu*SG9jOOKxhWN~3yM z-kM3A4t6zU(N->vxFoqtbAxH#hScPKGJPLvuS?ks=FSe&ag24I84>ygtd{5JB??oP zoFyY`PPBrcbWJ4Uc~3FP^m}`@(y#Dq8hH%)`8hJnT=7w}Fk0TYuH_fx6FHnxS^Xhm z?I7q8%6%6twCW{A)x}kwqsay_tTnvS%wH|>`Qp@}D`vsh)rVU+@x%m;XQb+ML6CP`~;0s_;4D#W@iD36YW_bi)9n4m_0Qhej#;R8pj>Sy|Gwyo`gK z6gee8=vIoMa)OIab5SK7jiHnE&Yd4->u9wu@ST-r_LA9&RMRiI2;~UW1!9PnW|6Md zVERTno&NyB*=;h&BBFvCnT06z$H;pa%1k7v4%hd#Lx(QBeWAfzEJwQ46zs&>O2vrO zHR#C6ER?GjDNstIw8Drw-60w9*F%$2mZ)k0sp_wmOVV?M;ULWq2}~v0S(=QChwCCT zO(rCg+KplG!O~8Lq;geBdO9Wq6E_Junym+?d2FQhfm5xe`EA-;B+NC9sun6c87peT zw51MQ^b}hUj@beFc9UyjVNUFF^@!hz#BxeYA19b4fE<%jX~!MO))1OIQ>OGtV<@fN*>5Sd7!u`AH5w3UrDSK~{>Fs+{rQ%^@&UU2~@d(4j*bR@KHF;FV%k?hWHk zPcx~rU7yx1+m=-Ig;n3IR}M!o65U%2rx;!fk;fFCXh2@rc}S9dFpa$t>7z!yxC%-$ z!!w0qOQ_q@y%=I)m~m-M;y06nslo1zy?eJ)UWdi&At^DV7FK0xS-`3n5TJ1#`|+ef zDl%g`EWE;78L#xN4Y|Al!y1f5a+PFoXs@`WErD8OGXn}!31w8;l~OeN;;>eENg2dz zk5QZ>{4cVVhQI2vu;jF1nPo#zx;Nq|87Rv*r3O0S;NxPW$F!Xr#3M+(+O1tAM^fG7 z#mP~+c}E3dWR_Nrb`PyN8AtZ-+Z~jQXYLU54D8zHDn2hz-#f9pV>HZ7p((tzC8Op_ zID@oi{0n3JR#|MOa#llaq!T=%f~rAK1-`=dYGu0Y7N|zCJ!Dcy=NHBIXN}(+;!vxq z_^UbH8mSHLSy3;~2NMLxo?v{AjGwkBla9C8omXWb+Wt=SR!&8_wagOhq7wp)lO?qT zl;Bw7icShrP9`dGv#~~z+iyiAxgK6mUs9u?j?WURshNy8I421MI)yOx(MN-?IzL#q zcTYquGgX5%TriU|OpYrW!)k&HMD%x+6R$D`;F3`|HeisN9HU6_3(Xo?M0A5FGaE+- zm)%FU0{3eRxYgrn0-a=a(NrIOU8`Pz5B$M)&Kf)$+Q}uD^vF?62u@4|f=vk+&aGp-BY# zI&CRZtZme-Gfh@D&(kNA6sS4Cw*w3$L2GX`vg{pAIFBT*5Sx!O325tw%}SCf9<>k-m>x6`p`T??a@Ss~H$vl5f{VHZaMX6P92YezBD zbJKEZD5Tu73rg^~(!0kk^t^qZs)jXm;GI#+6(wz4af%ttR9U5{Ij@;Uyy8yf2>hjP zkdg{g!B&YvZBxtZDxn1{nxoQ}sa6o`^pf`#f_JF<_V0rQu5p?sr&88F%p-PiIO4`1 zD;cC;FrQj+$6BAGlf!=Pw3`rBJjATx-N?G+ol)4>goeW%OpZrjlMYdUoBTJroq;V> z5Cn9plIpGU;11OhU;?`bc(}(NT3%vtUABxMq5>fG5DS2g_X}}h45E0IXEq}cmgemA ztr~!qUK(`l_=N-PP22wf50=_pDw(XA0b;POnO%aEM3;T7I>xnnIN^n^HW(ypkB|6| zd@ZFHm)A)Qi&C`CNtTc(D1v2$x0Y&!1N&mJiR<5^bK@ans);$p%3wxW zcZ`?>X>Dzw*K1D8NAc~$Y3Y>Fm()6Q2&C`x4m%5nJe#G)G%_;knukywCJ|u!!){z~ ziBesk7CN~lGDRA9!a{L(LY=(QiyDu!Cm4j?J@mfSZ#B+m0VrPC6CpUjmN1eWBTSAz z+jU2?zLkzdl&9HYnB}NZh1(3=5Uxsuq;2C->x*qVBx*=a{6>0LRV;;DLa&lj zOfx(&X&OcH{{WqBxIXV?Ii8Z3MQ_;|aY@?|f78Tw?rL5xQ$=JIrJHxQ>iy9a^a34YL(Aqt) z!cP&v5rGsu-Zmr*@fguHaf(1`a5Q2K;c+hq)$|=@mh7a2oq983VX-W;FADI2BdxMK zF?VgZvu|CXl*rZ^5g15J5QPpXqrdHKvd#PYw`E4ntp5O0zW)FodE*|Gzy{%c;g3!D z#>srkfCwz-1s*6vtB*(J*|w4rM5PuyV}r*CeDLRccaFXLBSQ=g1dbMnyTK5P<6-lW z`(GP-^HO(2SPKe52dp?eYohZb-)wC8!rNg=)s!-d0%Y%lbH+ZPa-z?$> zo*au_wB+f963GZ|2+qCTkjuJ}`BLNr5g!2YMTR^>0~p`;bV56Gx34-*$|R&wHx$TY z8Y3@+S!8EVi+ZSF$w0BdvY`<|1@QxP-*j{D%jXJMOD(f25rwWcu6_GOYRH*OH(=fM zrJ^TpY%HLhabPgA%;T0EIBTr+r*~V|*+6m8OlB~z1Us(lE){RG-M-$ereI2iksC2= z07DC*{$^3>{JPXH*L!-A~}rE zoF)o5Rz~f>-4+>x=#K2Vqwd~dm(tIONr5H^zolu}<=f+RyDVN&SK|SpgbTVM3ypL+ z48Q(EuH3t$LjsjzoUsl7FeTkC@PZ#c&dvQTQ+G9WM|{Xd3#H}z4inM@k^_l?5%d&7}AdFF;NR883Vq8NPr zy4YE6&lYT=@)anPL@^S?_pfn<5XUW@x#hCoWgsPULEwm?bj~ntT?nxY2g7}y%Wa_| zry(W)p#cb-KR9Br&1YWEk9=~39V%uv?)%@m8&NP){rC@jBGV{*Z6uQc6#_EwZ-gNy z^2YHE_R=YtX4cz87@BZIA2v8T&wPF~jz>5}NjDEt6E2F-*eo*uXZ5>sw<{q=OX-Ra zzjaY!I`#0DS(tYC+3cr|kHPd2}lUg-~Uc1FJ zRfICRoL}Uhv*RAPW^SxFw**HhRdl>PS1}1%4wP(Pedg^6hsTf-wB~E zICy(7w)6RTjB=}UjOJRCP60wJyg*|oEJeZ*#Lw-zY>!kn+hw%AlatyPTwl~FmGXe! zL%t1e!V>1X_tKXfh@%7}hAa@45bDXn-;LwjWN8z(zNwfd6yX`B94H-#a!?D;=Y4TI z@%pXz(Wf&wCkUcxDU;%yVSq5g#ffmu+MV|0;xr*9s)IU{91SQYD7~qPXJMDAg_`WQ zdwulM7EGl_yY>83YYl>l>wQ7q{`}f6?4m&9p`n06E2bC5FfrmplXvay_V!Z!Ggl<^ zQ8=Omnj5f&q=_z99m4RvckHcqww!%pt(c)$S!a>S1THm(8;8wh{cePj*_L#f8*AMN z4GBX|vq;0n5_Dq3GY{1N07en%`O=|T8Pfibd;>ml>ZX@5M^V1W^9}w@T%)Or-hW@} z{$P5U8d_7lO0SFrx4Jd6pl492JI0xefnhDACQh?Q(8*AdMY>X0?6S&N`J|#ooZ{1# zEJz5j9ALhmXKsImAeP<|D-2;y!ZnH%OXazFS3|=nvizudSU9?71-SnJSBh+`=(33K z74Xh+2Ms~N!Ms=kUN#w)=l5>glrp4aO3ea^Z~+&_*l!BeqPP@KRZu;*2LPqV%N(Qs E+4;*j6aWAK literal 0 HcmV?d00001 diff --git a/packages/ipfs-http-gateway/test/fixtures/test-mime-types/hexagons-xml.svg b/packages/ipfs-http-gateway/test/fixtures/test-mime-types/hexagons-xml.svg new file mode 100644 index 0000000000..fe6b79dfd2 --- /dev/null +++ b/packages/ipfs-http-gateway/test/fixtures/test-mime-types/hexagons-xml.svg @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/packages/ipfs-http-gateway/test/fixtures/test-mime-types/hexagons.svg b/packages/ipfs-http-gateway/test/fixtures/test-mime-types/hexagons.svg new file mode 100644 index 0000000000..557d927b39 --- /dev/null +++ b/packages/ipfs-http-gateway/test/fixtures/test-mime-types/hexagons.svg @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/packages/ipfs-http-gateway/test/fixtures/test-mime-types/index.html b/packages/ipfs-http-gateway/test/fixtures/test-mime-types/index.html new file mode 100644 index 0000000000..b7350c2b6f --- /dev/null +++ b/packages/ipfs-http-gateway/test/fixtures/test-mime-types/index.html @@ -0,0 +1,5 @@ + + + Website + + diff --git a/packages/ipfs-http-gateway/test/fixtures/test-mime-types/pp.txt b/packages/ipfs-http-gateway/test/fixtures/test-mime-types/pp.txt new file mode 100644 index 0000000000..f1922904c7 --- /dev/null +++ b/packages/ipfs-http-gateway/test/fixtures/test-mime-types/pp.txt @@ -0,0 +1,120 @@ +PRIDE AND PREJUDICE + +By Jane Austen + + + +Chapter 1 + + +It is a truth universally acknowledged, that a single man in possession +of a good fortune, must be in want of a wife. + +However little known the feelings or views of such a man may be on his +first entering a neighbourhood, this truth is so well fixed in the minds +of the surrounding families, that he is considered the rightful property +of some one or other of their daughters. + +"My dear Mr. Bennet," said his lady to him one day, "have you heard that +Netherfield Park is let at last?" + +Mr. Bennet replied that he had not. + +"But it is," returned she; "for Mrs. Long has just been here, and she +told me all about it." + +Mr. Bennet made no answer. + +"Do you not want to know who has taken it?" cried his wife impatiently. + +"_You_ want to tell me, and I have no objection to hearing it." + +This was invitation enough. + +"Why, my dear, you must know, Mrs. Long says that Netherfield is taken +by a young man of large fortune from the north of England; that he came +down on Monday in a chaise and four to see the place, and was so much +delighted with it, that he agreed with Mr. Morris immediately; that he +is to take possession before Michaelmas, and some of his servants are to +be in the house by the end of next week." + +"What is his name?" + +"Bingley." + +"Is he married or single?" + +"Oh! Single, my dear, to be sure! A single man of large fortune; four or +five thousand a year. What a fine thing for our girls!" + +"How so? How can it affect them?" + +"My dear Mr. Bennet," replied his wife, "how can you be so tiresome! You +must know that I am thinking of his marrying one of them." + +"Is that his design in settling here?" + +"Design! Nonsense, how can you talk so! But it is very likely that he +_may_ fall in love with one of them, and therefore you must visit him as +soon as he comes." + +"I see no occasion for that. You and the girls may go, or you may send +them by themselves, which perhaps will be still better, for as you are +as handsome as any of them, Mr. Bingley may like you the best of the +party." + +"My dear, you flatter me. I certainly _have_ had my share of beauty, but +I do not pretend to be anything extraordinary now. When a woman has five +grown-up daughters, she ought to give over thinking of her own beauty." + +"In such cases, a woman has not often much beauty to think of." + +"But, my dear, you must indeed go and see Mr. Bingley when he comes into +the neighbourhood." + +"It is more than I engage for, I assure you." + +"But consider your daughters. Only think what an establishment it would +be for one of them. Sir William and Lady Lucas are determined to +go, merely on that account, for in general, you know, they visit no +newcomers. Indeed you must go, for it will be impossible for _us_ to +visit him if you do not." + +"You are over-scrupulous, surely. I dare say Mr. Bingley will be very +glad to see you; and I will send a few lines by you to assure him of my +hearty consent to his marrying whichever he chooses of the girls; though +I must throw in a good word for my little Lizzy." + +"I desire you will do no such thing. Lizzy is not a bit better than the +others; and I am sure she is not half so handsome as Jane, nor half so +good-humoured as Lydia. But you are always giving _her_ the preference." + +"They have none of them much to recommend them," replied he; "they are +all silly and ignorant like other girls; but Lizzy has something more of +quickness than her sisters." + +"Mr. Bennet, how _can_ you abuse your own children in such a way? You +take delight in vexing me. You have no compassion for my poor nerves." + +"You mistake me, my dear. I have a high respect for your nerves. They +are my old friends. I have heard you mention them with consideration +these last twenty years at least." + +"Ah, you do not know what I suffer." + +"But I hope you will get over it, and live to see many young men of four +thousand a year come into the neighbourhood." + +"It will be no use to us, if twenty such should come, since you will not +visit them." + +"Depend upon it, my dear, that when there are twenty, I will visit them +all." + +Mr. Bennet was so odd a mixture of quick parts, sarcastic humour, +reserve, and caprice, that the experience of three-and-twenty years had +been insufficient to make his wife understand his character. _Her_ mind +was less difficult to develop. She was a woman of mean understanding, +little information, and uncertain temper. When she was discontented, +she fancied herself nervous. The business of her life was to get her +daughters married; its solace was visiting and news. diff --git a/packages/ipfs-http-gateway/test/fixtures/test-site/holmes.txt b/packages/ipfs-http-gateway/test/fixtures/test-site/holmes.txt new file mode 100644 index 0000000000..d96acab087 --- /dev/null +++ b/packages/ipfs-http-gateway/test/fixtures/test-site/holmes.txt @@ -0,0 +1,13052 @@ +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 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. diff --git a/packages/ipfs-http-gateway/test/fixtures/test-site/index.html b/packages/ipfs-http-gateway/test/fixtures/test-site/index.html new file mode 100644 index 0000000000..b7350c2b6f --- /dev/null +++ b/packages/ipfs-http-gateway/test/fixtures/test-site/index.html @@ -0,0 +1,5 @@ + + + Website + + diff --git a/packages/ipfs-http-gateway/test/fixtures/test-site/pp.txt b/packages/ipfs-http-gateway/test/fixtures/test-site/pp.txt new file mode 100644 index 0000000000..f1922904c7 --- /dev/null +++ b/packages/ipfs-http-gateway/test/fixtures/test-site/pp.txt @@ -0,0 +1,120 @@ +PRIDE AND PREJUDICE + +By Jane Austen + + + +Chapter 1 + + +It is a truth universally acknowledged, that a single man in possession +of a good fortune, must be in want of a wife. + +However little known the feelings or views of such a man may be on his +first entering a neighbourhood, this truth is so well fixed in the minds +of the surrounding families, that he is considered the rightful property +of some one or other of their daughters. + +"My dear Mr. Bennet," said his lady to him one day, "have you heard that +Netherfield Park is let at last?" + +Mr. Bennet replied that he had not. + +"But it is," returned she; "for Mrs. Long has just been here, and she +told me all about it." + +Mr. Bennet made no answer. + +"Do you not want to know who has taken it?" cried his wife impatiently. + +"_You_ want to tell me, and I have no objection to hearing it." + +This was invitation enough. + +"Why, my dear, you must know, Mrs. Long says that Netherfield is taken +by a young man of large fortune from the north of England; that he came +down on Monday in a chaise and four to see the place, and was so much +delighted with it, that he agreed with Mr. Morris immediately; that he +is to take possession before Michaelmas, and some of his servants are to +be in the house by the end of next week." + +"What is his name?" + +"Bingley." + +"Is he married or single?" + +"Oh! Single, my dear, to be sure! A single man of large fortune; four or +five thousand a year. What a fine thing for our girls!" + +"How so? How can it affect them?" + +"My dear Mr. Bennet," replied his wife, "how can you be so tiresome! You +must know that I am thinking of his marrying one of them." + +"Is that his design in settling here?" + +"Design! Nonsense, how can you talk so! But it is very likely that he +_may_ fall in love with one of them, and therefore you must visit him as +soon as he comes." + +"I see no occasion for that. You and the girls may go, or you may send +them by themselves, which perhaps will be still better, for as you are +as handsome as any of them, Mr. Bingley may like you the best of the +party." + +"My dear, you flatter me. I certainly _have_ had my share of beauty, but +I do not pretend to be anything extraordinary now. When a woman has five +grown-up daughters, she ought to give over thinking of her own beauty." + +"In such cases, a woman has not often much beauty to think of." + +"But, my dear, you must indeed go and see Mr. Bingley when he comes into +the neighbourhood." + +"It is more than I engage for, I assure you." + +"But consider your daughters. Only think what an establishment it would +be for one of them. Sir William and Lady Lucas are determined to +go, merely on that account, for in general, you know, they visit no +newcomers. Indeed you must go, for it will be impossible for _us_ to +visit him if you do not." + +"You are over-scrupulous, surely. I dare say Mr. Bingley will be very +glad to see you; and I will send a few lines by you to assure him of my +hearty consent to his marrying whichever he chooses of the girls; though +I must throw in a good word for my little Lizzy." + +"I desire you will do no such thing. Lizzy is not a bit better than the +others; and I am sure she is not half so handsome as Jane, nor half so +good-humoured as Lydia. But you are always giving _her_ the preference." + +"They have none of them much to recommend them," replied he; "they are +all silly and ignorant like other girls; but Lizzy has something more of +quickness than her sisters." + +"Mr. Bennet, how _can_ you abuse your own children in such a way? You +take delight in vexing me. You have no compassion for my poor nerves." + +"You mistake me, my dear. I have a high respect for your nerves. They +are my old friends. I have heard you mention them with consideration +these last twenty years at least." + +"Ah, you do not know what I suffer." + +"But I hope you will get over it, and live to see many young men of four +thousand a year come into the neighbourhood." + +"It will be no use to us, if twenty such should come, since you will not +visit them." + +"Depend upon it, my dear, that when there are twenty, I will visit them +all." + +Mr. Bennet was so odd a mixture of quick parts, sarcastic humour, +reserve, and caprice, that the experience of three-and-twenty years had +been insufficient to make his wife understand his character. _Her_ mind +was less difficult to develop. She was a woman of mean understanding, +little information, and uncertain temper. When she was discontented, +she fancied herself nervous. The business of her life was to get her +daughters married; its solace was visiting and news. diff --git a/packages/ipfs-http-gateway/test/fixtures/testfile.txt b/packages/ipfs-http-gateway/test/fixtures/testfile.txt new file mode 100644 index 0000000000..84b31025b1 --- /dev/null +++ b/packages/ipfs-http-gateway/test/fixtures/testfile.txt @@ -0,0 +1 @@ +Plz add me! diff --git a/packages/ipfs-http-gateway/test/resolver.spec.js b/packages/ipfs-http-gateway/test/resolver.spec.js new file mode 100644 index 0000000000..7027bb2875 --- /dev/null +++ b/packages/ipfs-http-gateway/test/resolver.spec.js @@ -0,0 +1,332 @@ +/* eslint-env mocha */ + +'use strict' + +const { expect } = require('aegir/utils/chai') +const loadFixture = require('aegir/utils/fixtures') +const { createFactory } = require('ipfsd-ctl') +const all = require('it-all') +const ipfsResolver = require('../src/utils/resolver') +const ipfsModule = require('ipfs-core') + +const factory = createFactory({ + test: true, + type: 'proc', + ipfsModule +}) + +describe('resolve file (CIDv0)', function () { + /** @type {any} */ + let ipfs = null + let ipfsd = null + + const file = { + cid: 'Qma4hjFTnCasJ8PVp3mZbZK5g2vGDT4LByLJ7m8ciyRFZP', + data: loadFixture('test/fixtures/testfile.txt') + } + + before(async function () { + this.timeout(20 * 1000) + + ipfsd = await factory.spawn() + ipfs = ipfsd.api + + const retrievedFile = await ipfs.add(file.data, { cidVersion: 0 }) + expect(retrievedFile.cid.toString()).to.equal(file.cid) + }) + + after(() => factory.clean()) + + it('should resolve a cid', async () => { + const res = await ipfsResolver.cid(ipfs, `/ipfs/${file.cid}`) + + expect(res).to.exist() + expect(res).to.have.property('cid') + expect(res.cid.toString()).to.equal(file.cid) + }) +}) + +describe('resolve file (CIDv1)', function () { + /** @type {any} */ + let ipfs = null + let ipfsd = null + + const file = { + cid: 'bafkreidffqfydlguosmmyebv5rp72m45tbpbq6segnkosa45kjfnduix6u', + data: loadFixture('test/fixtures/testfile.txt') + } + + before(async function () { + this.timeout(20 * 1000) + + ipfsd = await factory.spawn() + ipfs = ipfsd.api + + const retrievedFile = await ipfs.add(file.data, { cidVersion: 1 }) + expect(retrievedFile.cid.toString()).to.equal(file.cid) + expect(retrievedFile.size, 'ipfs.files.add result size should not be smaller than input buffer').equal(file.data.length) + }) + + after(() => factory.clean()) + + it('should resolve a cid', async () => { + const res = await ipfsResolver.cid(ipfs, `/ipfs/${file.cid}`) + + expect(res).to.exist() + expect(res).to.have.property('cid') + expect(res.cid.toString()).to.equal(file.cid) + }) +}) + +describe('resolve directory (CIDv0)', function () { + /** @type {any} */ + let ipfs = null + let ipfsd = null + + const directory = { + cid: 'QmU1aW5x8tXfbRpJ71zoEVwxrRDHybC2iTVacCMabCUniZ', + /** @type {Record} */ + files: { + 'pp.txt': loadFixture('test/fixtures/test-folder/pp.txt'), + 'holmes.txt': loadFixture('test/fixtures/test-folder/holmes.txt') + } + } + + before(async function () { + this.timeout(20 * 1000) + + ipfsd = await factory.spawn() + ipfs = ipfsd.api + + /** + * @param {string} name + */ + const content = (name) => ({ + path: `test-folder/${name}`, + content: directory.files[name] + }) + + const dirs = [ + content('pp.txt'), + content('holmes.txt') + ] + + const res = await all(ipfs.addAll(dirs, { cidVersion: 0 })) + const root = res[res.length - 1] + + expect(root.path).to.equal('test-folder') + expect(root.cid.toString()).to.equal(directory.cid) + }) + + after(() => factory.clean()) + + it('should throw an error when trying to fetch a directory', async () => { + try { + const res = await ipfsResolver.cid(ipfs, `/ipfs/${directory.cid}`) + + expect(res).to.not.exist() + } catch (/** @type {any} */ err) { + expect(err.toString()).to.equal('Error: This dag node is a directory') + } + }) + + // TODO: unskip when https://github.com/ipfs/js-ipfs/pull/3556 lands + it.skip('should return HTML listing of files of a directory', async () => { + const res = await ipfsResolver.directory(ipfs, `/ipfs/${directory.cid}`, directory.cid) + + expect(res).to.exist() + expect(res).to.include('') + }) +}) + +describe('resolve directory (CIDv1)', function () { + /** @type {any} */ + let ipfs = null + let ipfsd = null + + const directory = { + cid: 'bafybeifhimn7nu6dgmdvj6o63zegwro3yznnpfqib6kkjnagc54h46ox5q', + /** @type {Record} */ + files: { + 'pp.txt': loadFixture('test/fixtures/test-folder/pp.txt'), + 'holmes.txt': loadFixture('test/fixtures/test-folder/holmes.txt') + } + } + + before(async function () { + this.timeout(20 * 1000) + + ipfsd = await factory.spawn() + ipfs = ipfsd.api + + /** + * @param {string} name + */ + const content = (name) => ({ + path: `test-folder/${name}`, + content: directory.files[name] + }) + + const dirs = [ + content('pp.txt'), + content('holmes.txt') + ] + + const res = await all(ipfs.addAll(dirs, { cidVersion: 1 })) + const root = res[res.length - 1] + // console.log('ipfs.files.add result', res) + expect(root.path).to.equal('test-folder') + // expect(res[0].size, 'ipfs.files.add 1st result size should not be smaller than 1st input buffer').greaterThan(dirs[0].content.length) + // expect(res[1].size, 'ipfs.files.add 2nd result size should not be smaller than 2nd input buffer').greaterThan(dirs[1].content.length) + expect(root.cid.toString()).to.equal(directory.cid) + }) + + after(() => factory.clean()) + + it('should throw an error when trying to fetch a directory', async () => { + try { + const res = await ipfsResolver.cid(ipfs, `/ipfs/${directory.cid}`) + + expect(res).to.not.exist() + } catch (/** @type {any} */ err) { + expect(err.toString()).to.equal('Error: This dag node is a directory') + } + }) + + // TODO: unskip when https://github.com/ipfs/js-ipfs/pull/3556 lands + it.skip('should return HTML listing of files of a directory', async () => { + const res = await ipfsResolver.directory(ipfs, `/ipfs/${directory.cid}`, directory.cid) + expect(res).to.exist() + expect(res).to.include('pp.txt') + expect(res).to.include('holmes.txt') + expect(res).to.include('') + }) +}) + +describe('resolve web page (CIDv0)', function () { + /** @type {any} */ + let ipfs = null + let ipfsd = null + + const webpage = { + cid: 'QmR3fdaM5B3LZog6TqpuHvoHYWQpRoaYwFTZ5YmdzGX5U5', + /** @type {Record} */ + files: { + 'pp.txt': loadFixture('test/fixtures/test-site/pp.txt'), + 'holmes.txt': loadFixture('test/fixtures/test-site/holmes.txt'), + 'index.html': loadFixture('test/fixtures/test-site/index.html') + } + } + + before(async function () { + this.timeout(20 * 1000) + + ipfsd = await factory.spawn() + ipfs = ipfsd.api + + /** + * @param {string} name + */ + const content = (name) => ({ + path: `test-site/${name}`, + content: webpage.files[name] + }) + + const dirs = [ + content('pp.txt'), + content('holmes.txt'), + content('index.html') + ] + + const res = await all(ipfs.addAll(dirs, { cidVersion: 0 })) + const root = res[res.length - 1] + + expect(root.path).to.equal('test-site') + expect(root.cid.toString()).to.deep.equal(webpage.cid) + }) + + after(() => factory.clean()) + + it('should throw an error when trying to fetch a directory containing a web page', async () => { + try { + const res = await ipfsResolver.cid(ipfs, `/ipfs/${webpage.cid}`) + + expect(res).to.not.exist() + } catch (/** @type {any} */ err) { + expect(err.toString()).to.equal('Error: This dag node is a directory') + } + }) + + it('should return the entry point of a web page when a trying to fetch a directory containing a web page', async () => { + const res = await ipfsResolver.directory(ipfs, `/ipfs/${webpage.cid}`, webpage.cid) + + expect(res).to.exist() + expect(res[0]).to.deep.include({ + Name: 'index.html' + }) + }) +}) + +describe('resolve web page (CIDv1)', function () { + /** @type {any} */ + let ipfs = null + let ipfsd = null + + const webpage = { + cid: 'bafybeibpkvlqjkwl73yam6ffsbrlgbwiffnehajc6qvnrhai5bve6jnawi', + /** @type {Record} */ + files: { + 'pp.txt': loadFixture('test/fixtures/test-site/pp.txt'), + 'holmes.txt': loadFixture('test/fixtures/test-site/holmes.txt'), + 'index.html': loadFixture('test/fixtures/test-site/index.html') + } + } + + before(async function () { + this.timeout(20 * 1000) + + ipfsd = await factory.spawn() + ipfs = ipfsd.api + + /** + * @param {string} name + */ + const content = (name) => ({ + path: `test-site/${name}`, + content: webpage.files[name] + }) + + const dirs = [ + content('pp.txt'), + content('holmes.txt'), + content('index.html') + ] + + const res = await all(ipfs.addAll(dirs, { cidVersion: 1 })) + // console.log(res) + const root = res[res.length - 1] + expect(root.path).to.equal('test-site') + expect(root.cid.toString()).to.equal(webpage.cid) + }) + + after(() => factory.clean()) + + it('should throw an error when trying to fetch a directory containing a web page', async () => { + try { + const res = await ipfsResolver.cid(ipfs, `/ipfs/${webpage.cid}`) + + expect(res).to.not.exist() + } catch (/** @type {any} */ err) { + expect(err.toString()).to.equal('Error: This dag node is a directory') + } + }) + + it('should return the entry point of a web page when a trying to fetch a directory containing a web page', async () => { + const res = await ipfsResolver.directory(ipfs, `/ipfs/${webpage.cid}`, webpage.cid) + + expect(res).to.exist() + expect(res[0]).to.deep.include({ + Name: 'index.html' + }) + }) +}) diff --git a/packages/ipfs-http-gateway/test/response.spec.js b/packages/ipfs-http-gateway/test/response.spec.js new file mode 100644 index 0000000000..c67e75b14b --- /dev/null +++ b/packages/ipfs-http-gateway/test/response.spec.js @@ -0,0 +1,425 @@ +/* eslint-env mocha */ +const { expect } = require('aegir/utils/chai') +const loadFixture = require('aegir/utils/fixtures') +const { createFactory } = require('ipfsd-ctl') +const getStream = require('get-stream') +const all = require('it-all') +const { toString: uint8ArrayToString } = require('uint8arrays/to-string') +const { getResponse } = require('../src/utils/response') +const makeWebResponseEnv = require('./utils/web-response-env') +const ipfsModule = require('ipfs-core') + +const factory = createFactory({ + test: true, + type: 'proc', + ipfsModule +}) + +describe('resolve file (CIDv0)', function () { + /** @type {*} */ + let ipfs = null + + const file = { + cid: 'Qma4hjFTnCasJ8PVp3mZbZK5g2vGDT4LByLJ7m8ciyRFZP', + data: loadFixture('test/fixtures/testfile.txt') + } + + before(async function () { + this.timeout(20 * 1000) + Object.assign(global, makeWebResponseEnv()) + + const ipfsd = await factory.spawn() + ipfs = ipfsd.api + + const retrievedFile = await ipfs.add(file.data, { cidVersion: 0 }) + expect(retrievedFile.cid.toString()).to.equal(file.cid) + expect(retrievedFile.size, 'ipfs.add result size should not be smaller than input buffer').greaterThan(file.data.length) + }) + + after(() => factory.clean()) + + it('should resolve a CIDv0', async () => { + const res = await getResponse(ipfs, `/ipfs/${file.cid}`) + + expect(res).to.exist() + expect(res.status).to.equal(200) + + // @ts-expect-error types are wrong + const contents = await getStream(res.body) + const expectedContents = uint8ArrayToString(loadFixture('test/fixtures/testfile.txt')) + + expect(contents).to.equal(expectedContents) + }) +}) + +describe('resolve file (CIDv1)', function () { + /** @type {any} */ + let ipfs = null + let ipfsd = null + + const file = { + cid: 'bafkreidffqfydlguosmmyebv5rp72m45tbpbq6segnkosa45kjfnduix6u', + data: loadFixture('test/fixtures/testfile.txt') + } + + before(async function () { + this.timeout(20 * 1000) + Object.assign(global, makeWebResponseEnv()) + + ipfsd = await factory.spawn() + ipfs = ipfsd.api + + const retrievedFile = await ipfs.add(file.data, { cidVersion: 1 }) + expect(retrievedFile.cid.toString()).to.equal(file.cid) + expect(retrievedFile.size, 'ipfs.add result size should equal input buffer').to.equal(file.data.length) + }) + + after(() => factory.clean()) + + it('should resolve a CIDv1', async () => { + const res = await getResponse(ipfs, `/ipfs/${file.cid}`) + + expect(res).to.exist() + expect(res.status).to.equal(200) + + // @ts-expect-error types are wrong + const contents = await getStream(res.body) + const expectedContents = uint8ArrayToString(loadFixture('test/fixtures/testfile.txt')) + + expect(contents).to.equal(expectedContents) + }) +}) + +describe('resolve directory (CIDv0)', function () { + /** @type {any} */ + let ipfs = null + let ipfsd = null + + const directory = { + cid: 'QmU1aW5x8tXfbRpJ71zoEVwxrRDHybC2iTVacCMabCUniZ', + /** @type {Record} */ + files: { + 'pp.txt': loadFixture('test/fixtures/test-folder/pp.txt'), + 'holmes.txt': loadFixture('test/fixtures/test-folder/holmes.txt') + } + } + + before(async function () { + this.timeout(20 * 1000) + Object.assign(global, makeWebResponseEnv()) + + ipfsd = await factory.spawn() + ipfs = ipfsd.api + + /** + * @param {string} name + */ + const content = (name) => ({ + path: `test-folder/${name}`, + content: directory.files[name] + }) + + const dirs = [ + content('pp.txt'), + content('holmes.txt') + ] + + const res = await all(ipfs.addAll(dirs, { cidVersion: 0 })) + const root = res[res.length - 1] + + expect(root.path).to.equal('test-folder') + expect(root.cid.toString()).to.equal(directory.cid) + + expect(res[0].size, 'ipfs.add 1st result size should not be smaller than 1st input buffer').greaterThan(dirs[0].content.length) + expect(res[1].size, 'ipfs.add 2nd result size should not be smaller than 2nd input buffer').greaterThan(dirs[1].content.length) + }) + + after(() => factory.clean()) + + it('should return the list of files of a directory', async () => { + const res = await getResponse(ipfs, `/ipfs/${directory.cid}`) + + expect(res.status).to.equal(200) + expect(res.body).to.match(//) + }) + + it('should return the pp.txt file', async () => { + const res = await getResponse(ipfs, `/ipfs/${directory.cid}/pp.txt`) + + // @ts-expect-error types are wrong + const contents = await getStream(res.body) + const expectedContents = uint8ArrayToString(loadFixture('test/fixtures/test-folder/pp.txt')) + + expect(contents).to.equal(expectedContents) + }) + + it('should return the holmes.txt file', async () => { + const res = await getResponse(ipfs, `/ipfs/${directory.cid}/holmes.txt`) + + // @ts-expect-error types are wrong + const contents = await getStream(res.body) + const expectedContents = uint8ArrayToString(loadFixture('test/fixtures/test-folder/holmes.txt')) + + expect(contents).to.equal(expectedContents) + }) +}) + +describe('resolve directory (CIDv1)', function () { + /** @type {any} */ + let ipfs = null + let ipfsd = null + + const directory = { + cid: 'bafybeifhimn7nu6dgmdvj6o63zegwro3yznnpfqib6kkjnagc54h46ox5q', + /** @type {Record} */ + files: { + 'pp.txt': loadFixture('test/fixtures/test-folder/pp.txt'), + 'holmes.txt': loadFixture('test/fixtures/test-folder/holmes.txt') + } + } + + before(async function () { + this.timeout(20 * 1000) + Object.assign(global, makeWebResponseEnv()) + + ipfsd = await factory.spawn() + ipfs = ipfsd.api + + /** + * @param {string} name + */ + const content = (name) => ({ + path: `test-folder/${name}`, + content: directory.files[name] + }) + + const dirs = [ + content('pp.txt'), + content('holmes.txt') + ] + + const res = await all(ipfs.addAll(dirs, { cidVersion: 1 })) + const root = res[res.length - 1] + expect(root.path).to.equal('test-folder') + // expect(res[0].size, 'ipfs.files.add 1st result size should not be smaller than 1st input buffer').greaterThan(dirs[0].content.length) + // expect(res[1].size, 'ipfs.files.add 2nd result size should not be smaller than 2nd input buffer').greaterThan(dirs[1].content.length) + expect(root.cid.toString()).to.equal(directory.cid) + }) + + after(() => factory.clean()) + + it('should return the list of files of a directory', async () => { + const res = await getResponse(ipfs, `/ipfs/${directory.cid}`) + + expect(res.status).to.equal(200) + expect(res.body).to.match(//) + }) + + it('should return the pp.txt file', async () => { + const res = await getResponse(ipfs, `/ipfs/${directory.cid}/pp.txt`) + + // @ts-expect-error types are wrong + const contents = await getStream(res.body) + const expectedContents = uint8ArrayToString(loadFixture('test/fixtures/test-folder/pp.txt')) + + expect(contents).to.equal(expectedContents) + }) + + it('should return the holmes.txt file', async () => { + const res = await getResponse(ipfs, `/ipfs/${directory.cid}/holmes.txt`) + + // @ts-expect-error types are wrong + const contents = await getStream(res.body) + const expectedContents = uint8ArrayToString(loadFixture('test/fixtures/test-folder/holmes.txt')) + + expect(contents).to.equal(expectedContents) + }) +}) + +describe('resolve web page (CIDv0)', function () { + /** @type {any} */ + let ipfs = null + let ipfsd = null + + const webpage = { + cid: 'QmR3fdaM5B3LZog6TqpuHvoHYWQpRoaYwFTZ5YmdzGX5U5', + /** @type {Record} */ + files: { + 'pp.txt': loadFixture('test/fixtures/test-site/pp.txt'), + 'holmes.txt': loadFixture('test/fixtures/test-site/holmes.txt'), + 'index.html': loadFixture('test/fixtures/test-site/index.html') + } + } + + before(async function () { + this.timeout(20 * 1000) + Object.assign(global, makeWebResponseEnv()) + + ipfsd = await factory.spawn() + ipfs = ipfsd.api + + /** + * @param {string} name + */ + const content = (name) => ({ + path: `test-site/${name}`, + content: webpage.files[name] + }) + + const dirs = [ + content('pp.txt'), + content('holmes.txt'), + content('index.html') + ] + + const res = await all(ipfs.addAll(dirs, { cidVersion: 0 })) + const root = res[res.length - 1] + + expect(root.path).to.equal('test-site') + expect(root.cid.toString()).to.equal(webpage.cid) + }) + + after(() => factory.clean()) + + it('should return the entry point of a web page when a trying to fetch a directory containing a web page', async () => { + const res = await getResponse(ipfs, `/ipfs/${webpage.cid}`) + + expect(res.status).to.equal(302) + expect(res.headers.get('Location')).to.equal(`/ipfs/${webpage.cid}/index.html`) + }) +}) + +describe('resolve web page (CIDv1)', function () { + /** @type {any} */ + let ipfs = null + let ipfsd = null + + const webpage = { + cid: 'bafybeibpkvlqjkwl73yam6ffsbrlgbwiffnehajc6qvnrhai5bve6jnawi', + /** @type {Record} */ + files: { + 'pp.txt': loadFixture('test/fixtures/test-site/pp.txt'), + 'holmes.txt': loadFixture('test/fixtures/test-site/holmes.txt'), + 'index.html': loadFixture('test/fixtures/test-site/index.html') + } + } + + before(async function () { + this.timeout(20 * 1000) + Object.assign(global, makeWebResponseEnv()) + + ipfsd = await factory.spawn() + ipfs = ipfsd.api + + /** + * @param {string} name + */ + const content = (name) => ({ + path: `test-site/${name}`, + content: webpage.files[name] + }) + + const dirs = [ + content('pp.txt'), + content('holmes.txt'), + content('index.html') + ] + + const res = await all(ipfs.addAll(dirs, { cidVersion: 1 })) + const root = res[res.length - 1] + + expect(root.path).to.equal('test-site') + expect(root.cid.toString()).to.equal(webpage.cid) + }) + + after(() => factory.clean()) + + it('should return the entry point of a web page when a trying to fetch a directory containing a web page', async () => { + const res = await getResponse(ipfs, `/ipfs/${webpage.cid}`) + + expect(res.status).to.equal(302) + expect(res.headers.get('Location')).to.equal(`/ipfs/${webpage.cid}/index.html`) + }) +}) + +// TODO: move mime-types to separate test file +describe('mime-types', () => { + /** @type {any} */ + let ipfs = null + let ipfsd = null + + const webpage = { + cid: 'QmWU1PAWCyd3MBAnALacXXbGU44RpgwdnGPrShSZoQj1H6', + /** @type {Record} */ + files: { + 'cat.jpg': loadFixture('test/fixtures/test-mime-types/cat.jpg'), + 'hexagons-xml.svg': loadFixture('test/fixtures/test-mime-types/hexagons-xml.svg'), + 'hexagons.svg': loadFixture('test/fixtures/test-mime-types/hexagons.svg'), + 'pp.txt': loadFixture('test/fixtures/test-mime-types/pp.txt'), + 'index.html': loadFixture('test/fixtures/test-mime-types/index.html') + } + } + + before(async function () { + this.timeout(20 * 1000) + Object.assign(global, makeWebResponseEnv()) + + ipfsd = await factory.spawn() + ipfs = ipfsd.api + + /** + * @param {string} name + * @returns + */ + const content = (name) => ({ + path: `test-mime-types/${name}`, + content: webpage.files[name] + }) + + const dirs = [ + content('cat.jpg'), + content('hexagons-xml.svg'), + content('hexagons.svg'), + content('pp.txt'), + content('index.html') + ] + + const res = await all(ipfs.addAll(dirs, { cidVersion: 0 })) + const root = res[res.length - 1] + + expect(root.path).to.equal('test-mime-types') + expect(root.cid.toString()).to.equal(webpage.cid) + }) + + after(() => factory.clean()) + + it('should return the correct mime-type for pp.txt', async () => { + const res = await getResponse(ipfs, `/ipfs/${webpage.cid}/pp.txt`) + + expect(res.headers.get('Content-Type')).to.equal('text/plain; charset=utf-8') + }) + + it('should return the correct mime-type for cat.jpg', async () => { + const res = await getResponse(ipfs, `/ipfs/${webpage.cid}/cat.jpg`) + + expect(res.headers.get('Content-Type')).to.equal('image/jpeg') + }) + + it('should return the correct mime-type for index.html', async () => { + const res = await getResponse(ipfs, `/ipfs/${webpage.cid}/index.html`) + + expect(res.headers.get('Content-Type')).to.equal('text/html; charset=utf-8') + }) + + it('should return the correct mime-type for hexagons.svg', async () => { + const res = await getResponse(ipfs, `/ipfs/${webpage.cid}/hexagons.svg`) + + expect(res.headers.get('Content-Type')).to.equal('image/svg+xml') + }) + + it('should return the correct mime-type for hexagons.svg', async () => { + const res = await getResponse(ipfs, `/ipfs/${webpage.cid}/hexagons.svg`) + + expect(res.headers.get('Content-Type')).to.equal('image/svg+xml') + }) +}) diff --git a/packages/ipfs-http-gateway/test/utils/web-response-env.js b/packages/ipfs-http-gateway/test/utils/web-response-env.js new file mode 100644 index 0000000000..430b110ee1 --- /dev/null +++ b/packages/ipfs-http-gateway/test/utils/web-response-env.js @@ -0,0 +1,31 @@ +'use strict' + +class Response { + /** + * @param {*} body + * @param {*} init + */ + constructor (body, init) { + this.body = body || '' + this.status = (init && typeof init.status === 'number') ? init.status : 200 + this.ok = this.status >= 200 && this.status < 300 + this.statusText = (init && init.statusText) || 'OK' + this.headers = new Map(init && init.headers ? Object.entries(init.headers) : []) + + this.type = this.status === 0 ? 'opaque' : 'basic' + this.url = (init && init.url) || 'http://example.com/asset' + } +} + +class WebResponseGlobalScope { + constructor () { + this.Response = Object.assign(Response, { + redirect: (/** @type {string} */ url) => new Response(null, { + status: 302, + headers: { Location: url } + }) + }) + } +} + +module.exports = () => new WebResponseGlobalScope() From b52d96fa27e7e5a56010e41dc863c557147b5991 Mon Sep 17 00:00:00 2001 From: achingbrain Date: Tue, 7 Sep 2021 17:32:54 +0100 Subject: [PATCH 2/2] chore: fix types --- packages/ipfs-http-gateway/package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/ipfs-http-gateway/package.json b/packages/ipfs-http-gateway/package.json index e376d22d0b..0467ff2c0f 100644 --- a/packages/ipfs-http-gateway/package.json +++ b/packages/ipfs-http-gateway/package.json @@ -64,6 +64,7 @@ "uri-to-multiaddr": "^6.0.0" }, "devDependencies": { + "@types/ejs": "^3.1.0", "@types/hapi__hapi": "^20.0.5", "@types/hapi-pino": "^8.0.1", "aegir": "^35.0.3",