diff --git a/core/MAINTAINERS.txt b/core/MAINTAINERS.txt index ee94ddaf2c55c0418deb9a64425c13f5e5f9a996..a7e633921b0aa940d1d2b99146c9b9b57d4454ae 100644 --- a/core/MAINTAINERS.txt +++ b/core/MAINTAINERS.txt @@ -344,10 +344,6 @@ Plugin Queue - James Gilliland 'neclimdul' https://www.drupal.org/u/neclimdul -Quick Edit -- Wim Leers 'Wim Leers' https://www.drupal.org/u/wim-leers -- Théodore Biadala 'nod_' https://www.drupal.org/u/nod_ - RDF - ? diff --git a/core/misc/cspell/dictionary.txt b/core/misc/cspell/dictionary.txt index 82443609218b0f12de2a73e48cc850124211a047..7d206951736aa241842d1e111c07c6894a76bfe5 100644 --- a/core/misc/cspell/dictionary.txt +++ b/core/misc/cspell/dictionary.txt @@ -15,7 +15,6 @@ ahah aimez aiufyfh ajaxcallback -ajaxify ajaxing akiko allwords @@ -361,7 +360,6 @@ drivertestpqsql drivertext dropbutton dropbuttons -dropzone drudbal drup drupalci @@ -474,7 +472,6 @@ filesystems filetransfer filevalidationerror filterprovider -filtertypes findwith firstcolumn fixnull @@ -503,7 +500,6 @@ fourthcolumn fozzie fqcn fraîche -freenode frombracket frontpage fsdf @@ -511,7 +507,6 @@ fudgy fulldata fulldate fulltext -fullwidth funciona functionaljavascripttest functionaltest @@ -779,7 +774,6 @@ minusthick missingkey missingkeys miterlimit -mjuc mlfr mlid mlids @@ -849,7 +843,6 @@ nearbykeyword necolas negotiatiors nemo -networkerror newcol newdata newfieldinitial @@ -871,7 +864,6 @@ nocache nocase nocdata nocookie -nocssjs nodereference nodir nodo @@ -984,7 +976,6 @@ plusthick poink pommes ponedjeljak -popperedge popperjs porterstemmer português @@ -1054,9 +1045,6 @@ pwprompt queryor querystring questionmark -quickedit -quickediting -quickeditor quicklinks quickstart quinlan @@ -1170,7 +1158,6 @@ shatner shorterthan shortlink showblocks -sidebarborders siema silverlight silvie @@ -1388,15 +1375,12 @@ tiplist titel titlealert titlebar -titleslogan tlds tmpfs tnid toggleable togglewrap tongatapu -toolgroup -toolgroups toolkits toolongdomainexampledomainexampledomainexampledomainexampledomain toplevel @@ -1434,7 +1418,6 @@ uicrud uids ulwa umami -unajaxify unaliased unallowed unassigning @@ -1450,9 +1433,7 @@ unchecking unclickable uncollapsible unconfigured -undecorate undelayed -undelegate undoable undraggable unextracted @@ -1479,10 +1460,8 @@ unmatch unminified unmoderated unoptimized -unpad unparseable unpermissioned -unprefix unprefixed unpreloaded unpromote @@ -1539,7 +1518,6 @@ veniam verison versionable versionless -veryfast verygreatdrupalmodule vfsstream vibber @@ -1547,7 +1525,6 @@ vids viewmode viewports viewsviewfiles -vmov vocabs volgende vorige @@ -1624,7 +1601,6 @@ zendframework zettabyte zettabytes zipf's -znor zomg zoneinfo zonelist diff --git a/core/modules/ckeditor5/js/ckeditor5.es6.js b/core/modules/ckeditor5/js/ckeditor5.es6.js index cd76957c6d1e2e9820f86e573e402ceb2056e916..f276df9f76f1feb8b86b4e7be25a8602b463fdb9 100644 --- a/core/modules/ckeditor5/js/ckeditor5.es6.js +++ b/core/modules/ckeditor5/js/ckeditor5.es6.js @@ -495,8 +495,6 @@ * The text format used in the editor. * @param {string} [mainToolbarId] * The id attribute for the main editor toolbar, if any. - * - * @see Drupal.quickedit.editors.editor */ attachInlineEditor(element, format, mainToolbarId) { const { editorDecoupled } = CKEditor5; @@ -524,8 +522,7 @@ editor.model.document.on('change:data', () => { const callback = callbacks.get(id); if (callback) { - // Quick Edit requires the current data to update EditorModel. - // @see Drupal.quickedit.editors.editor + // Allow modules to update EditorModel by providing the current data. debounce(callback, 400)(editor.getData()); } }); diff --git a/core/modules/comment/src/Plugin/Field/FieldFormatter/CommentDefaultFormatter.php b/core/modules/comment/src/Plugin/Field/FieldFormatter/CommentDefaultFormatter.php index 4e918ed5a8bc2705e36eed7c12e6d0b33b596c53..3034bcdabcdfe000717f8b14047a3d634222c578 100644 --- a/core/modules/comment/src/Plugin/Field/FieldFormatter/CommentDefaultFormatter.php +++ b/core/modules/comment/src/Plugin/Field/FieldFormatter/CommentDefaultFormatter.php @@ -24,9 +24,6 @@ * label = @Translation("Comment list"), * field_types = { * "comment" - * }, - * quickedit = { - * "editor" = "disabled" * } * ) */ diff --git a/core/modules/comment/src/Plugin/Field/FieldFormatter/CommentPermalinkFormatter.php b/core/modules/comment/src/Plugin/Field/FieldFormatter/CommentPermalinkFormatter.php index feb19ec13a83affc27fb36d97062a11a0e789539..cffb748b518ac1065a48ded08693396dc7628ec4 100644 --- a/core/modules/comment/src/Plugin/Field/FieldFormatter/CommentPermalinkFormatter.php +++ b/core/modules/comment/src/Plugin/Field/FieldFormatter/CommentPermalinkFormatter.php @@ -19,9 +19,6 @@ * field_types = { * "string", * "uri", - * }, - * quickedit = { - * "editor" = "plain_text" * } * ) */ diff --git a/core/modules/image/src/Plugin/Field/FieldFormatter/ImageFormatter.php b/core/modules/image/src/Plugin/Field/FieldFormatter/ImageFormatter.php index 4c7fcd6100a6c498df951d9ee39499a941e71dda..0c5be967e0d93e2814bff220f4d8ad6d8eeeed11 100644 --- a/core/modules/image/src/Plugin/Field/FieldFormatter/ImageFormatter.php +++ b/core/modules/image/src/Plugin/Field/FieldFormatter/ImageFormatter.php @@ -22,9 +22,6 @@ * label = @Translation("Image"), * field_types = { * "image" - * }, - * quickedit = { - * "editor" = "image" * } * ) */ diff --git a/core/modules/media/src/Plugin/Filter/MediaEmbed.php b/core/modules/media/src/Plugin/Filter/MediaEmbed.php index 0f09cb723bafd7ddd9179c527022009ce1eec8d5..3f9324edb1a3aa46dbd810f8253f31045e7a8d98 100644 --- a/core/modules/media/src/Plugin/Filter/MediaEmbed.php +++ b/core/modules/media/src/Plugin/Filter/MediaEmbed.php @@ -235,7 +235,6 @@ protected function renderMedia(MediaInterface $media, $view_mode, $langcode) { ->view($media, $view_mode, $langcode); // Allows other modules to treat embedded media items differently. - // @see quickedit_entity_view_alter() $build['#embed'] = TRUE; // There are a few concerns when rendering an embedded media entity: diff --git a/core/modules/quickedit/css/editors/formattedText.ckeditor.css b/core/modules/quickedit/css/editors/formattedText.ckeditor.css deleted file mode 100644 index 6850af4c65fd8805c93c621a384d54478e909a41..0000000000000000000000000000000000000000 --- a/core/modules/quickedit/css/editors/formattedText.ckeditor.css +++ /dev/null @@ -1,18 +0,0 @@ -/** - * @file - * Functional styles for the CKEditor-based formatted text in-place editor. - */ - -/** - * Adjust the style of in-place editing CKEditor instances. - */ -.quickedit-toolgroup.wysiwyg-main .cke_chrome, -.quickedit-toolgroup.wysiwyg-main .cke_inner, -.quickedit-toolgroup.wysiwyg-main .cke_top { - border-top: none; - border-right: none; - border-bottom: none; - border-left: none; - background: transparent; - box-shadow: none; -} diff --git a/core/modules/quickedit/css/editors/formattedText.ckeditor5.css b/core/modules/quickedit/css/editors/formattedText.ckeditor5.css deleted file mode 100644 index 9608266e2f16ecbcf3046f00c9c084d86baaac14..0000000000000000000000000000000000000000 --- a/core/modules/quickedit/css/editors/formattedText.ckeditor5.css +++ /dev/null @@ -1,9 +0,0 @@ -/** - * @file - * Functional styles for the CKEditor 5-based formatted text in-place editor. - */ - -.quickedit-toolgroup.wysiwyg-main .ck.ck-toolbar { - border: none; - background: none; -} diff --git a/core/modules/quickedit/css/editors/formattedText/ckeditor5.workaround.css b/core/modules/quickedit/css/editors/formattedText/ckeditor5.workaround.css deleted file mode 100644 index e64eb0d03cf14d1f076da38d2ec8cf26e163aaa6..0000000000000000000000000000000000000000 --- a/core/modules/quickedit/css/editors/formattedText/ckeditor5.workaround.css +++ /dev/null @@ -1,9 +0,0 @@ -.quickedit-editable, -.quickedit-editing.ck.ck-editor__editable_inline { - top: inherit !important; - left: inherit !important; - margin-bottom: inherit !important; -} -.quickedit-editing.ck.ck-editor__editable_inline > :first-child { - margin-top: inherit; -} diff --git a/core/modules/quickedit/css/editors/image.css b/core/modules/quickedit/css/editors/image.css deleted file mode 100644 index b6218c93f955a94138196ea437f6a2737d120c0a..0000000000000000000000000000000000000000 --- a/core/modules/quickedit/css/editors/image.css +++ /dev/null @@ -1,52 +0,0 @@ -/** - * @file - * Functional styles for the Quick Edit image in-place editor. - */ - -/** - * A minimum width/height is required so that users can drag and drop files - * onto small images. - */ -.quickedit-image-element { - min-width: 200px; - min-height: 200px; -} - -.quickedit-image-dropzone { - position: absolute; - top: 0; - left: 0; - display: flex; - flex-direction: column; - align-items: center; - justify-content: center; - width: 100%; - height: 100%; -} - -.quickedit-image-icon { - display: block; - width: 50px; - height: 50px; - background-repeat: no-repeat; - background-size: cover; -} - -.quickedit-image-field-info { - display: flex; - align-items: center; - justify-content: flex-end; -} - -.quickedit-image-text { - display: block; -} - -/** - * If we do not prevent pointer-events for child elements, our drag+drop events - * will not fire properly. This can lead to unintentional redirects if a file - * is dropped on a child element when a user intended to upload it. - */ -.quickedit-image-dropzone * { - pointer-events: none; -} diff --git a/core/modules/quickedit/css/editors/image.theme.css b/core/modules/quickedit/css/editors/image.theme.css deleted file mode 100644 index 8514266ede4ee66c00544700037fc69512898d03..0000000000000000000000000000000000000000 --- a/core/modules/quickedit/css/editors/image.theme.css +++ /dev/null @@ -1,100 +0,0 @@ -/** - * @file - * Theme styles for the Quick Edit image in-place editor. - */ - -.quickedit-image-dropzone { - transition: background 0.2s; - background: rgba(116, 183, 255, 0.8); -} - -.quickedit-image-icon { - margin: 0 0 10px 0; - transition: margin 0.5s; -} - -.quickedit-image-dropzone.hover { - background: rgba(116, 183, 255, 0.9); -} - -.quickedit-image-dropzone.error { - background: rgba(255, 52, 27, 0.81); -} - -.quickedit-image-dropzone.upload .quickedit-image-icon { - background-image: url("../../../../../modules/quickedit/images/upload.svg"); -} - -.quickedit-image-dropzone.error .quickedit-image-icon { - background-image: url("../../../../../modules/quickedit/images/error.svg"); -} - -.quickedit-image-dropzone.loading .quickedit-image-icon { - margin: -10px 0 20px 0; -} - -.quickedit-image-dropzone.loading .quickedit-image-icon::after { - display: block; - width: 60px; - height: 60px; - margin-top: -5px; - margin-left: -10px; - content: ""; - animation-name: quickedit-image-spin; - animation-duration: 2s; - animation-timing-function: linear; - animation-iteration-count: infinite; - border-width: 5px; - border-style: solid; - border-color: white transparent transparent transparent; - border-radius: 35px; -} - -@keyframes quickedit-image-spin { - 0% { transform: rotate(0deg); } - 50% { transform: rotate(180deg); } - 100% { transform: rotate(360deg); } -} - -.quickedit-image-text { - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - text-align: center; - color: white; - font-family: "Droid sans", "Lucida Grande", sans-serif; - font-size: 16px; -} - -.quickedit-image-field-info { - padding: 5px; - border-top: 1px solid #c5c5c5; - background: rgba(0, 0, 0, 0.05); -} - -.quickedit-image-field-info div { - margin-right: 10px; /* LTR */ -} - -.quickedit-image-field-info div:last-child { - margin-right: 0; /* LTR */ -} - -[dir="rtl"] .quickedit-image-field-info div { - margin-right: 0; - margin-left: 10px; -} - -[dir="rtl"] .quickedit-image-field-info div:last-child { - margin-left: 0; -} - -.quickedit-image-errors .messages__wrapper { - margin: 0; - padding: 0; -} - -.quickedit-image-errors .messages--error { - box-shadow: none; -} diff --git a/core/modules/quickedit/css/quickedit.icons.theme.css b/core/modules/quickedit/css/quickedit.icons.theme.css deleted file mode 100644 index 4a1768de0b71b7e86ea0921dfe1e158128fcaff9..0000000000000000000000000000000000000000 --- a/core/modules/quickedit/css/quickedit.icons.theme.css +++ /dev/null @@ -1,74 +0,0 @@ -/** - * @file - * Icons for Quick Edit module. - */ - -.quickedit .icon { - position: relative; - min-width: 2.5em; - min-height: 1em; -} -.quickedit .icon.icon-only { - text-indent: -9999px; -} -.quickedit .icon.icon-end { - padding-right: 2.5em; /* LTR */ -} -[dir="rtl"] .quickedit .icon.icon-end { - padding-right: 0; - padding-left: 2.5em; -} -.quickedit .icon:before { - position: absolute; - top: 0; - left: 0; /* LTR */ - display: block; - width: 100%; - height: 100%; - content: ""; - background-color: transparent; - background-repeat: no-repeat; - background-attachment: scroll; - background-position: center center; -} -[dir="rtl"] .quickedit .icon:before { - right: 0; - left: auto; -} -.quickedit .icon-end:before { - right: 0.5em; /* LTR */ - left: auto; /* LTR */ - width: 18px; -} -[dir="rtl"] .quickedit .icon-end:before { - right: auto; - left: 0.5em; -} -.quickedit button.icon { - font-size: 1em; -} -.quickedit .icon-pencil { - margin-left: 0.5em; - padding-left: 1.5em; -} - -/** - * Images. - */ -.quickedit .icon-close:before { - top: 10px; - height: 12px; - background-image: url(../../../misc/icons/787878/ex.svg); -} -.quickedit .icon-close:hover:before, -.quickedit .icon-close:active:before { - background-image: url(../../../misc/icons/000000/ex.svg); -} -.quickedit .icon-throbber:before { - background-image: url(../images/icon-throbber.gif); -} -.quickedit .icon-pencil:before { - background-image: url(../../../misc/icons/5181c6/pencil.svg); - background-position: left center; - background-size: 1.3em; -} diff --git a/core/modules/quickedit/css/quickedit.module.css b/core/modules/quickedit/css/quickedit.module.css deleted file mode 100644 index 4c55a9a4f72c29475b4424df0f546480dca555db..0000000000000000000000000000000000000000 --- a/core/modules/quickedit/css/quickedit.module.css +++ /dev/null @@ -1,122 +0,0 @@ -/** - * @file - * Generic base styles for Quick Edit module. - * - * Note: every class is prefixed with "quickedit-" to prevent collisions with - * modules or themes. In Edit module-specific DOM subtrees, this is not - * necessary. - */ - -/** - * Editable. - */ -.quickedit-editable { - position: relative; - z-index: 98; - cursor: pointer; -} -.quickedit-editable:focus { - outline: none; -} - -/** - * Highlighted (hovered) editable. - */ -.quickedit-editable.quickedit-highlighted { - z-index: 99; -} -.quickedit-validation-errors > .messages { - margin-right: 0; - margin-left: 0; -} -.quickedit-validation-errors > .messages > ul { - margin: 0; - padding: 0; - list-style: none; -} - -/** - * In-place editors that don't use a popup. - */ -.quickedit-validation-errors { - position: relative; - z-index: 300; -} -.quickedit-validation-errors .messages.error { - position: absolute; - top: 6px; - left: -5px; /* LTR */ - margin: 0; - border: none; -} -[dir="rtl"] .quickedit-validation-errors .messages.error { - right: -5px; - left: auto; -} - -/** - * Styling specific to the 'form' in-place editor. - */ -#quickedit_backstage { - display: none; -} -.quickedit-form { - position: absolute; - z-index: 300; - max-width: 35em; -} -.quickedit-form .placeholder { - min-height: 22px; -} - -/** - * Default form styling overrides. - */ -.quickedit-form .form-wrapper .form-wrapper { - margin: inherit; -} -.quickedit-form .form-actions { - display: none; -} -.quickedit-form input { - max-width: 100%; -} - -/** - * Entity toolbar. - */ -.quickedit-toolbar-container { - position: absolute; - z-index: 100; - width: 320px; - max-width: 320px; -} -.quickedit-toolbar-container > .quickedit-toolbar-pointer, -.quickedit-toolbar-container > .quickedit-toolbar-lining { - display: none; -} -.quickedit-form-container { - position: relative; - z-index: 100; - margin: 0; - padding: 0; - vertical-align: baseline; - border: 0; -} -.quickedit-toolgroup.ops { - float: right; /* LTR */ -} -[dir="rtl"] .quickedit-toolgroup.ops { - float: left; -} -.quickedit-toolbar-label { - overflow: hidden; -} -#quickedit-toolbar-fence { - position: fixed; - z-index: -1; - top: 0; - right: 0; - bottom: 0; - left: 0; -} diff --git a/core/modules/quickedit/css/quickedit.theme.css b/core/modules/quickedit/css/quickedit.theme.css deleted file mode 100644 index cf8f60c56118f282a431cc8c5919c800200ab44a..0000000000000000000000000000000000000000 --- a/core/modules/quickedit/css/quickedit.theme.css +++ /dev/null @@ -1,254 +0,0 @@ -/** - * @file - * Styling for Quick Edit module. - */ - -/** - * Editable. - */ -.quickedit-field.quickedit-editable, -.quickedit-field .quickedit-editable { - box-shadow: 0 0 0 2px #74b7ff; -} - -/** - * Highlighted (hovered) editable. - */ -.quickedit-field.quickedit-highlighted, -.quickedit-form.quickedit-highlighted, -.quickedit-field .quickedit-highlighted { - box-shadow: 0 0 0 1px #74b7ff, 0 0 0 2px #007fff; -} -.quickedit-field.quickedit-changed, -.quickedit-form.quickedit-changed, -.quickedit-field .quickedit-changed { - box-shadow: 0 0 0 1px #fec17e, 0 0 0 2px #f7870a; -} -.quickedit-editing.quickedit-validation-error, -.quickedit-form.quickedit-validation-error { - box-shadow: 0 0 0 1px #ee8b74, 0 0 0 2px #fa2209; -} -.quickedit-editing.quickedit-editor-is-popup { - box-shadow: none; -} -.quickedit-form .form-item .error { - border: 1px solid #eea0a0; -} - -/** - * Default form styling overrides. - */ -.quickedit-form form { - padding: 0.5em; -} -.quickedit-form .form-item { - margin: 0; -} -.quickedit-form .form-wrapper { - margin: 0.5em; -} - -/** - * Animations. - */ -.quickedit-animate-invisible { - opacity: 0; -} -.quickedit-animate-default { - -webkit-transition: all 0.4s ease; - transition: all 0.4s ease; -} -.quickedit-animate-slow { - -webkit-transition: all 0.6s ease; - transition: all 0.6s ease; -} -.quickedit-animate-delay-veryfast { - -webkit-transition-delay: 0.05s; - transition-delay: 0.05s; -} -.quickedit-animate-delay-fast { - -webkit-transition-delay: 0.2s; - transition-delay: 0.2s; -} -.quickedit-animate-disable-width { - -webkit-transition: width 0s; - transition: width 0s; -} -.quickedit-animate-only-visibility { - -webkit-transition: opacity 0.2s ease; - transition: opacity 0.2s ease; -} - -/** - * In-place editors that don't use a popup. - */ -.quickedit-validation-errors .messages.error { - background-color: white; - box-shadow: 0 0 1px 1px red, 0 0 3px 3px rgba(153, 153, 153, 0.5); -} - -/** - * Styling specific to the 'form' in-place editor. - */ -.quickedit-form { - background-color: white; - box-shadow: 0 0 30px 4px #4f4f4f; -} - -/** - * Toolbars. - */ -.quickedit-toolbar-container { - padding-top: 7px; - padding-bottom: 7px; - -webkit-transition: all 1s; - transition: all 1s; - font-family: "Source Sans Pro", "Lucida Grande", sans-serif; -} -.quickedit-toolbar-container > .quickedit-toolbar-content { - position: relative; - z-index: 2; - box-sizing: border-box; - padding: 0.1667em; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - color: black; - background-image: -webkit-linear-gradient(top, #fff, #e4e4e4); - background-image: linear-gradient(to bottom, #fff, #e4e4e4); -} -.quickedit-toolbar-container > .quickedit-toolbar-pointer { - position: absolute; - z-index: 1; - bottom: 2px; - left: 18px; /* LTR */ - display: block; - width: 16px; - height: 16px; - -webkit-transform: rotate(45deg); - -ms-transform: rotate(45deg); - transform: rotate(45deg); - background-color: #e4e4e4; - box-shadow: 0 0 0 1px #818181, 0 0 0 4px rgba(150, 150, 150, 0.5); -} -[dir="rtl"] .quickedit-toolbar-container > .quickedit-toolbar-pointer { - right: 18px; - left: auto; -} -.quickedit-toolbar-container.quickedit-toolbar-pointer-top > .quickedit-toolbar-pointer { - top: 2px; - bottom: auto; -} -.quickedit-toolbar-container > .quickedit-toolbar-lining { - position: absolute; - z-index: 0; - top: 7px; - right: 0; - bottom: 7px; - left: 0; - display: block; - box-shadow: 0 0 0 1px #818181, 0 3px 0 1px rgba(150, 150, 150, 0.5); -} - -.quickedit-toolbar-label { - overflow: hidden; - padding: 0.333em 0.4em; - white-space: nowrap; - text-overflow: ellipsis; - font-style: italic; -} -.quickedit-toolbar-label .field:after { - content: " → "; /* LTR */ -} - -[dir="rtl"] .quickedit-toolbar-label .field:after { - content: " ← "; -} - -/* The toolbar; these are not necessarily visible. */ -.quickedit-toolbar { - font-family: "Droid sans", "Lucida Grande", sans-serif; -} -.quickedit-toolbar-entity { - padding: 0.1667em 0.2em; -} - -/** - * Info toolgroup. - */ -.quickedit-toolbar-fullwidth { - width: 100%; -} -.quickedit-toolgroup.wysiwyg-floated { - float: right; /* LTR */ -} -[dir="rtl"] .quickedit-toolgroup.wysiwyg-floated { - float: left; -} -.quickedit-toolgroup.wysiwyg-main { - clear: both; - width: 100%; - padding-left: 0; /* LTR */ -} -[dir="rtl"] .quickedit-toolgroup.wysiwyg-main { - padding-right: 0; - padding-left: 0; -} - -/** - * Buttons. - */ -.quickedit-button { - display: inline-block; - margin: 0; - padding: 0.345em; - cursor: pointer; - -webkit-transition: opacity 0.1s ease; - transition: opacity 0.1s ease; - opacity: 1; - color: #5a5a5a; - border: 1px solid #d2d2d2; - background-color: #e4e4e4; -} -.quickedit-button[aria-hidden="true"] { - visibility: hidden; - opacity: 0; -} -.quickedit-button + .quickedit-button { - margin-left: 0.2em; /* LTR */ -} -[dir="rtl"] .quickedit-button + .quickedit-button { - margin-right: 0.25em; - margin-left: auto; -} -/* Button with icons. */ -.quickedit-button:hover, -.quickedit-button:active { - color: #2e2e2e; - border: 1px solid #a0a0a0; - background-color: #c8c8c8; -} -.quickedit-toolbar-container .quickedit-button.action-cancel { - border: 1px solid transparent; - background-color: transparent; -} -.quickedit-button.action-save { - color: white; - border: 1px solid transparent; - background-color: #50a0e9; - background-image: -webkit-linear-gradient(top, #50a0e9, #4481dc); - background-image: linear-gradient(to bottom, #50a0e9, #4481dc); -} -.quickedit-button.action-save:hover, -.quickedit-button.action-save:active { - border: 1px solid #a0a0a0; -} -.quickedit-button.action-saving, -.quickedit-button.action-saving:hover, -.quickedit-button.action-saving:active { - color: #5a5a5a; - border-color: #d2d2d2; - background-color: #e4e4e4; - background-image: none; -} diff --git a/core/modules/quickedit/help_topics/quickedit.quick_edit.html.twig b/core/modules/quickedit/help_topics/quickedit.quick_edit.html.twig deleted file mode 100644 index c267721cd0dbb88d96b4408db60fab6fb0efeca9..0000000000000000000000000000000000000000 --- a/core/modules/quickedit/help_topics/quickedit.quick_edit.html.twig +++ /dev/null @@ -1,20 +0,0 @@ ---- -label: 'Using in-line (quick) content editing' -related: - - core.ui_components - - core.settings_tray ---- -<h2>{% trans %}Goal{% endtrans %}</h2> -<p>{% trans %}Edit content in place.{% endtrans %}</p> -<h2>{% trans %}What is quick editing?{% endtrans %}</h2> -<p>{% trans %}Quick editing is editing content inline. Content quick editing is provided by the core Quick Edit module or its contributed replacement. It requires the core Contextual Links module in order to expose the links that let you edit in place.{% endtrans %}</p> -<h2>{% trans %}Who can edit content in place?{% endtrans %}</h2> -<p>{% trans %}In order to follow these steps to edit content in place, the core Quick Edit module or its contributed replacement must be installed. Also, either the core Toolbar module or a contributed replacement must be installed. You will need to have <em>Use contextual links</em> permission, <em>Access in-place editing</em> permission, as well as permission to edit the particular content.{% endtrans %}</p> -<h2>{% trans %}Steps{% endtrans %}</h2> -<ol> - <li>{% trans %}Find and visit a page on your site that has the content that you would like to edit.{% endtrans %}</li> - <li>{% trans %}Click the contextual links <em>Edit</em> button on the toolbar (in most themes, it looks like a pencil). Contextual <em>Edit</em> links with the same icon will appear all over your page.{% endtrans %}</li> - <li>{% trans %}Find the contextual link for the part of the page you want to edit. For example, to edit a specific post on the front page, the link should be in the top-right corner of the post, or top-left for right-to-left languages.{% endtrans %}</li> - <li>{% trans %}Click the link to open the contextual links menu, and click <em>Quick edit</em>. All editable fields will be enclosed in a light blue box. Hover over any box to see the label of the field that box contains. Click on the box and a form to edit that field will appear.{% endtrans %}</li> - <li>{% trans %}Make your edits and submit the form.{% endtrans %}</li> -</ol> diff --git a/core/modules/quickedit/images/error.svg b/core/modules/quickedit/images/error.svg deleted file mode 100644 index 1932ea402c5b5a6600fe4a96953c255251e923a3..0000000000000000000000000000000000000000 --- a/core/modules/quickedit/images/error.svg +++ /dev/null @@ -1,4 +0,0 @@ -<svg fill="#FFFFFF" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"> - <path d="M0 0h24v24H0z" fill="none"/> - <path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-2h2v2zm0-4h-2V7h2v6z"/> -</svg> diff --git a/core/modules/quickedit/images/icon-throbber.gif b/core/modules/quickedit/images/icon-throbber.gif deleted file mode 100644 index f2603e8a2cecdf53e7c2e370a50c0678e7c4b677..0000000000000000000000000000000000000000 --- a/core/modules/quickedit/images/icon-throbber.gif +++ /dev/null @@ -1,6 +0,0 @@ -GIF89a������������������������Ž�����������������{{{������!�NETSCAPE2.0���!� ��,������@`��)Kk��ŏ�A|�ad��0L���9~����\��8��L��� ���Ǹ0�,� i{��q�B��C�~H�'J�RĨ`��f4&a�!� ��,������`���s��ɺ��(��t�34M!-0���,l#)�)9 !q(i<h�B������ ���3˥�(`� �,9�%�cm -b0A��Y_e�!� ��,������d����R�j�:ړ���tG�8�$��c�0���2����P� hi,��ǑQ0X[LEck5`�ڭ�P�2�F! �� a�� �@q dfz{l��Q�zK�!� ��,������`���B�j�R:�$����BPF�q�(ˢ��� J�@0i�-�2͇�� Qck�6[G`�m��:��p���Q4���fqo�w�!� ��,������d����1�j}M�S@�S\� H9����#�IrPØi8�f��..�r$�ł�|n�l� -�*T\�![�͂l�,Q0��@�(��KF��MO�{ ql{�!� ��,������^�I 3�a������!P�(�O�l���~`���8 LÇ!�@$�Lg�x|f,`"`���J��ʼn�"�c�U��P -�GAw< tz�!� ��,�������h��9C�4kk��\ ���&I�&�l� �)�F�-P@c�hH!ш4< -�� x��@��R����`0�C"��8�h0B�fg�X(rc}Y -1�!���,�����aйҚ�X��]mK�l[�)"�aĢ\�*�"�$t&�#9��@�1p��P`,`I�,8 S �8U,Q�`(d�`���3-��qH$�1T����{�; \ No newline at end of file diff --git a/core/modules/quickedit/images/upload.svg b/core/modules/quickedit/images/upload.svg deleted file mode 100644 index 168bc43e6afba6aa031a4d20663871d740eda7de..0000000000000000000000000000000000000000 --- a/core/modules/quickedit/images/upload.svg +++ /dev/null @@ -1,4 +0,0 @@ -<svg fill="#FFFFFF" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"> - <path d="M0 0h24v24H0z" fill="none"/> - <path d="M9 16h6v-6h4l-7-7-7 7h4zm-4 2h14v2H5z"/> -</svg> diff --git a/core/modules/quickedit/js/editors/formEditor.es6.js b/core/modules/quickedit/js/editors/formEditor.es6.js deleted file mode 100644 index df4c8751e9ca845a9c9ce17209a45eaf16c1517f..0000000000000000000000000000000000000000 --- a/core/modules/quickedit/js/editors/formEditor.es6.js +++ /dev/null @@ -1,279 +0,0 @@ -/** - * @file - * Form-based in-place editor. Works for any field type. - */ - -(function ($, Drupal, _) { - /** - * @constructor - * - * @augments Drupal.quickedit.EditorView - */ - Drupal.quickedit.editors.form = Drupal.quickedit.EditorView.extend( - /** @lends Drupal.quickedit.editors.form# */ { - /** - * Tracks form container DOM element that is used while in-place editing. - * - * @type {jQuery} - */ - $formContainer: null, - - /** - * Holds the {@link Drupal.Ajax} object. - * - * @type {Drupal.Ajax} - */ - formSaveAjax: null, - - /** - * {@inheritdoc} - * - * @param {object} fieldModel - * The field model that holds the state. - * @param {string} state - * The state to change to. - */ - stateChange(fieldModel, state) { - const from = fieldModel.previous('state'); - const to = state; - switch (to) { - case 'inactive': - break; - - case 'candidate': - if (from !== 'inactive') { - this.removeForm(); - } - break; - - case 'highlighted': - break; - - case 'activating': - // If coming from an invalid state, then the form is already loaded. - if (from !== 'invalid') { - this.loadForm(); - } - break; - - case 'active': - break; - - case 'changed': - break; - - case 'saving': - this.save(); - break; - - case 'saved': - break; - - case 'invalid': - this.showValidationErrors(); - break; - } - }, - - /** - * {@inheritdoc} - * - * @return {object} - * A settings object for the quick edit UI. - */ - getQuickEditUISettings() { - return { - padding: true, - unifiedToolbar: true, - fullWidthToolbar: true, - popup: true, - }; - }, - - /** - * Loads the form for this field, displays it on top of the actual field. - */ - loadForm() { - const fieldModel = this.fieldModel; - - // Generate a DOM-compatible ID for the form container DOM element. - const id = `quickedit-form-for-${fieldModel.id.replace( - /[/[\]]/g, - '_', - )}`; - - // Render form container. - const $formContainer = $( - Drupal.theme('quickeditFormContainer', { - id, - loadingMsg: Drupal.t('Loading…'), - }), - ); - this.$formContainer = $formContainer; - $formContainer - .find('.quickedit-form') - .addClass( - 'quickedit-editable quickedit-highlighted quickedit-editing', - ) - .attr('role', 'dialog'); - - // Insert form container in DOM. - if (this.$el.css('display') === 'inline') { - $formContainer.prependTo(this.$el.offsetParent()); - // Position the form container to render on top of the field's element. - const pos = this.$el.position(); - $formContainer.css('left', pos.left).css('top', pos.top); - } else { - $formContainer.insertBefore(this.$el); - } - - // Load form, insert it into the form container and attach event handlers. - const formOptions = { - fieldID: fieldModel.get('fieldID'), - $el: this.$el, - nocssjs: false, - // Reset an existing entry for this entity in the PrivateTempStore (if - // any) when loading the field. Logically speaking, this should happen - // in a separate request because this is an entity-level operation, not - // a field-level operation. But that would require an additional - // request, that might not even be necessary: it is only when a user - // loads a first changed field for an entity that this needs to happen: - // precisely now! - reset: !fieldModel.get('entity').get('inTempStore'), - }; - Drupal.quickedit.util.form.load(formOptions, (form, ajax) => { - Drupal.AjaxCommands.prototype.insert(ajax, { - data: form, - selector: `#${id} .placeholder`, - }); - - $formContainer - .on('formUpdated.quickedit', ':input', (event) => { - const state = fieldModel.get('state'); - // If the form is in an invalid state, it will persist on the page. - // Set the field to activating so that the user can correct the - // invalid value. - if (state === 'invalid') { - fieldModel.set('state', 'activating'); - } - // Otherwise assume that the fieldModel is in a candidate state and - // set it to changed on formUpdate. - else { - fieldModel.set('state', 'changed'); - } - }) - .on('keypress.quickedit', 'input', (event) => { - if (event.keyCode === 13) { - return false; - } - }); - - // The in-place editor has loaded; change state to 'active'. - fieldModel.set('state', 'active'); - }); - }, - - /** - * Removes the form for this field, detaches behaviors and event handlers. - */ - removeForm() { - if (this.$formContainer === null) { - return; - } - - delete this.formSaveAjax; - // Allow form widgets to detach properly. - Drupal.detachBehaviors(this.$formContainer.get(0), null, 'unload'); - this.$formContainer - .off('change.quickedit', ':input') - .off('keypress.quickedit', 'input') - .remove(); - this.$formContainer = null; - }, - - /** - * {@inheritdoc} - */ - save() { - const $formContainer = this.$formContainer; - const $submit = $formContainer.find('.quickedit-form-submit'); - const editorModel = this.model; - const fieldModel = this.fieldModel; - - // Create an AJAX object for the form associated with the field. - let formSaveAjax = Drupal.quickedit.util.form.ajaxifySaving( - { - nocssjs: false, - other_view_modes: fieldModel.findOtherViewModes(), - }, - $submit, - ); - - function cleanUpAjax() { - Drupal.quickedit.util.form.unajaxifySaving(formSaveAjax); - formSaveAjax = null; - } - - // Successfully saved. - formSaveAjax.commands.quickeditFieldFormSaved = function ( - ajax, - response, - status, - ) { - cleanUpAjax(); - // First, transition the state to 'saved'. - fieldModel.set('state', 'saved'); - // Second, set the 'htmlForOtherViewModes' attribute, so that when this - // field is rerendered, the change can be propagated to other instances - // of this field, which may be displayed in different view modes. - fieldModel.set('htmlForOtherViewModes', response.other_view_modes); - // Finally, set the 'html' attribute on the field model. This will cause - // the field to be rerendered. - _.defer(() => { - fieldModel.set('html', response.data); - }); - }; - - // Unsuccessfully saved; validation errors. - formSaveAjax.commands.quickeditFieldFormValidationErrors = function ( - ajax, - response, - status, - ) { - editorModel.set('validationErrors', response.data); - fieldModel.set('state', 'invalid'); - }; - - // The quickeditFieldForm AJAX command is called upon attempting to save - // the form; Form API will mark which form items have errors, if any. This - // command is invoked only if validation errors exist and then it runs - // before editFieldFormValidationErrors(). - formSaveAjax.commands.quickeditFieldForm = function ( - ajax, - response, - status, - ) { - Drupal.AjaxCommands.prototype.insert(ajax, { - data: response.data, - selector: `#${$formContainer.attr('id')} form`, - }); - }; - - // Click the form's submit button; the scoped AJAX commands above will - // handle the server's response. - $submit.trigger('click.quickedit'); - }, - - /** - * {@inheritdoc} - */ - showValidationErrors() { - this.$formContainer - .find('.quickedit-form') - .addClass('quickedit-validation-error') - .find('form') - .prepend(this.model.get('validationErrors')); - }, - }, - ); -})(jQuery, Drupal, _); diff --git a/core/modules/quickedit/js/editors/formEditor.js b/core/modules/quickedit/js/editors/formEditor.js deleted file mode 100644 index 7d49b686bf21c84821ce91d7117ee928313a6997..0000000000000000000000000000000000000000 --- a/core/modules/quickedit/js/editors/formEditor.js +++ /dev/null @@ -1,168 +0,0 @@ -/** -* DO NOT EDIT THIS FILE. -* See the following change record for more information, -* https://www.drupal.org/node/2815083 -* @preserve -**/ - -(function ($, Drupal, _) { - Drupal.quickedit.editors.form = Drupal.quickedit.EditorView.extend({ - $formContainer: null, - formSaveAjax: null, - - stateChange(fieldModel, state) { - const from = fieldModel.previous('state'); - const to = state; - - switch (to) { - case 'inactive': - break; - - case 'candidate': - if (from !== 'inactive') { - this.removeForm(); - } - - break; - - case 'highlighted': - break; - - case 'activating': - if (from !== 'invalid') { - this.loadForm(); - } - - break; - - case 'active': - break; - - case 'changed': - break; - - case 'saving': - this.save(); - break; - - case 'saved': - break; - - case 'invalid': - this.showValidationErrors(); - break; - } - }, - - getQuickEditUISettings() { - return { - padding: true, - unifiedToolbar: true, - fullWidthToolbar: true, - popup: true - }; - }, - - loadForm() { - const fieldModel = this.fieldModel; - const id = `quickedit-form-for-${fieldModel.id.replace(/[/[\]]/g, '_')}`; - const $formContainer = $(Drupal.theme('quickeditFormContainer', { - id, - loadingMsg: Drupal.t('Loading…') - })); - this.$formContainer = $formContainer; - $formContainer.find('.quickedit-form').addClass('quickedit-editable quickedit-highlighted quickedit-editing').attr('role', 'dialog'); - - if (this.$el.css('display') === 'inline') { - $formContainer.prependTo(this.$el.offsetParent()); - const pos = this.$el.position(); - $formContainer.css('left', pos.left).css('top', pos.top); - } else { - $formContainer.insertBefore(this.$el); - } - - const formOptions = { - fieldID: fieldModel.get('fieldID'), - $el: this.$el, - nocssjs: false, - reset: !fieldModel.get('entity').get('inTempStore') - }; - Drupal.quickedit.util.form.load(formOptions, (form, ajax) => { - Drupal.AjaxCommands.prototype.insert(ajax, { - data: form, - selector: `#${id} .placeholder` - }); - $formContainer.on('formUpdated.quickedit', ':input', event => { - const state = fieldModel.get('state'); - - if (state === 'invalid') { - fieldModel.set('state', 'activating'); - } else { - fieldModel.set('state', 'changed'); - } - }).on('keypress.quickedit', 'input', event => { - if (event.keyCode === 13) { - return false; - } - }); - fieldModel.set('state', 'active'); - }); - }, - - removeForm() { - if (this.$formContainer === null) { - return; - } - - delete this.formSaveAjax; - Drupal.detachBehaviors(this.$formContainer.get(0), null, 'unload'); - this.$formContainer.off('change.quickedit', ':input').off('keypress.quickedit', 'input').remove(); - this.$formContainer = null; - }, - - save() { - const $formContainer = this.$formContainer; - const $submit = $formContainer.find('.quickedit-form-submit'); - const editorModel = this.model; - const fieldModel = this.fieldModel; - let formSaveAjax = Drupal.quickedit.util.form.ajaxifySaving({ - nocssjs: false, - other_view_modes: fieldModel.findOtherViewModes() - }, $submit); - - function cleanUpAjax() { - Drupal.quickedit.util.form.unajaxifySaving(formSaveAjax); - formSaveAjax = null; - } - - formSaveAjax.commands.quickeditFieldFormSaved = function (ajax, response, status) { - cleanUpAjax(); - fieldModel.set('state', 'saved'); - fieldModel.set('htmlForOtherViewModes', response.other_view_modes); - - _.defer(() => { - fieldModel.set('html', response.data); - }); - }; - - formSaveAjax.commands.quickeditFieldFormValidationErrors = function (ajax, response, status) { - editorModel.set('validationErrors', response.data); - fieldModel.set('state', 'invalid'); - }; - - formSaveAjax.commands.quickeditFieldForm = function (ajax, response, status) { - Drupal.AjaxCommands.prototype.insert(ajax, { - data: response.data, - selector: `#${$formContainer.attr('id')} form` - }); - }; - - $submit.trigger('click.quickedit'); - }, - - showValidationErrors() { - this.$formContainer.find('.quickedit-form').addClass('quickedit-validation-error').find('form').prepend(this.model.get('validationErrors')); - } - - }); -})(jQuery, Drupal, _); \ No newline at end of file diff --git a/core/modules/quickedit/js/editors/formattedTextEditor.es6.js b/core/modules/quickedit/js/editors/formattedTextEditor.es6.js deleted file mode 100644 index fad6a3fe0ad7f6f27a7b7539020f7ef1b46f0018..0000000000000000000000000000000000000000 --- a/core/modules/quickedit/js/editors/formattedTextEditor.es6.js +++ /dev/null @@ -1,293 +0,0 @@ -/** - * @file - * Text editor-based in-place editor for formatted text content in Drupal. - * - * Depends on editor.module. Works with any (WYSIWYG) editor that implements the - * editor.js API, including the optional attachInlineEditor() and onChange() - * methods. - * For example, assuming that a hypothetical editor's name was "Magical Editor" - * and its editor.js API implementation lived at Drupal.editors.magical, this - * JavaScript would use: - * - Drupal.editors.magical.attachInlineEditor() - */ - -(function ($, Drupal, drupalSettings, _) { - Drupal.quickedit.editors.editor = Drupal.quickedit.EditorView.extend( - /** @lends Drupal.quickedit.editors.editor# */ { - /** - * The text format for this field. - * - * @type {string} - */ - textFormat: null, - - /** - * Indicates whether this text format has transformations. - * - * @type {bool} - */ - textFormatHasTransformations: null, - - /** - * Stores a reference to the text editor object for this field. - * - * @type {Drupal.quickedit.EditorModel} - */ - textEditor: null, - - /** - * Stores the textual DOM element that is being in-place edited. - * - * @type {jQuery} - */ - $textElement: null, - - /** - * @constructs - * - * @augments Drupal.quickedit.EditorView - * - * @param {object} options - * Options for the editor view. - */ - initialize(options) { - Drupal.quickedit.EditorView.prototype.initialize.call(this, options); - - const metadata = Drupal.quickedit.metadata.get( - this.fieldModel.get('fieldID'), - 'custom', - ); - this.textFormat = drupalSettings.editor.formats[metadata.format]; - this.textFormatHasTransformations = metadata.formatHasTransformations; - this.textEditor = Drupal.editors[this.textFormat.editor]; - - // Store the actual value of this field. We'll need this to restore the - // original value when the user discards their modifications. - const $fieldItems = this.$el.find('.quickedit-field'); - if ($fieldItems.length) { - this.$textElement = $fieldItems.eq(0); - } else { - this.$textElement = this.$el; - } - this.model.set('originalValue', this.$textElement.html()); - - if ( - Drupal.editors && - Drupal.editors.ckeditor5 && - once('quickedit-ckeditor5-destroy', 'body').length - ) { - /** - * CKEditor 5 destroy lifecycle is different because is uses Promises. - */ - const ckeditor5Detach = Drupal.editors.ckeditor5.detach; - Drupal.editors.ckeditor5.detach = function quickeditDetach( - element, - format, - trigger, - ) { - const destroyPromise = ckeditor5Detach.call( - this, - element, - format, - trigger, - ); - if (destroyPromise && destroyPromise.then) { - let textElement = null; - let originalValue = null; - // The revert() function in QuickEdit's text editor does not work with - // CKEditor 5, as it is triggered before CKEditor 5 is fully - // destroyed. This function is overridden so the functionality it - // provides can happen after the CKEditor destroy() promise is - // fulfilled. - // This pulls the necessary values from the QuickEdit Backbone Model - // before it is destroyed, so they can be used by - // `editor.destroy().then()` to perform the expected revert. - Drupal.quickedit.editors.editor.prototype.revert = - function revertQuickeditChanges() { - textElement = this.$textElement[0]; - originalValue = this.model.get('originalValue'); - }; - - destroyPromise.then(() => { - // If textElement and originalValue are not null, a QuickEdit - // revert has been requested. Perform the revert here as it - // can't happen until the CKEditor instance is destroyed. - if (textElement && originalValue) { - textElement.innerHTML = originalValue; - } - }); - } - }; - } - }, - - /** - * {@inheritdoc} - * - * @return {jQuery} - * The text element edited. - */ - getEditedElement() { - return this.$textElement; - }, - - /** - * {@inheritdoc} - * - * @param {object} fieldModel - * The field model. - * @param {string} state - * The current state. - */ - stateChange(fieldModel, state) { - const editorModel = this.model; - const from = fieldModel.previous('state'); - const to = state; - switch (to) { - case 'inactive': - break; - - case 'candidate': - // Detach the text editor when entering the 'candidate' state from one - // of the states where it could have been attached. - if (from !== 'inactive' && from !== 'highlighted') { - this.textEditor.detach(this.$textElement.get(0), this.textFormat); - } - // A field model's editor view revert() method is invoked when an - // 'active' field becomes a 'candidate' field. But, in the case of - // this in-place editor, the content will have been *replaced* if the - // text format has transformation filters. Therefore, if we stop - // in-place editing this entity, revert explicitly. - if (from === 'active' && this.textFormatHasTransformations) { - this.revert(); - } - if (from === 'invalid') { - this.removeValidationErrors(); - } - break; - - case 'highlighted': - break; - - case 'activating': - // When transformation filters have been applied to the formatted text - // of this field, then we'll need to load a re-formatted version of it - // without the transformation filters. - if (this.textFormatHasTransformations) { - const $textElement = this.$textElement; - this._getUntransformedText((untransformedText) => { - $textElement.html(untransformedText); - fieldModel.set('state', 'active'); - }); - } - // When no transformation filters have been applied: start WYSIWYG - // editing immediately! - else { - // Defer updating the model until the current state change has - // propagated, to not trigger a nested state change event. - _.defer(() => { - fieldModel.set('state', 'active'); - }); - } - break; - - case 'active': { - const textElement = this.$textElement.get(0); - const toolbarView = fieldModel.toolbarView; - this.textEditor.attachInlineEditor( - textElement, - this.textFormat, - toolbarView.getMainWysiwygToolgroupId(), - toolbarView.getFloatedWysiwygToolgroupId(), - ); - // Set the state to 'changed' whenever the content has changed. - this.textEditor.onChange(textElement, (htmlText) => { - editorModel.set('currentValue', htmlText); - fieldModel.set('state', 'changed'); - }); - break; - } - - case 'changed': - break; - - case 'saving': - if (from === 'invalid') { - this.removeValidationErrors(); - } - this.save(); - break; - - case 'saved': - break; - - case 'invalid': - this.showValidationErrors(); - break; - } - }, - - /** - * {@inheritdoc} - * - * @return {object} - * The settings for the quick edit UI. - */ - getQuickEditUISettings() { - return { - padding: true, - unifiedToolbar: true, - fullWidthToolbar: true, - popup: false, - }; - }, - - /** - * {@inheritdoc} - */ - revert() { - this.$textElement.html(this.model.get('originalValue')); - }, - - /** - * Loads untransformed text for this field. - * - * More accurately: it re-filters formatted text to exclude transformation - * filters used by the text format. - * - * @param {function} callback - * A callback function that will receive the untransformed text. - * - * @see \Drupal\editor\Ajax\GetUntransformedTextCommand - */ - _getUntransformedText(callback) { - const fieldID = this.fieldModel.get('fieldID'); - - // Create a Drupal.ajax instance to load the form. - const textLoaderAjax = Drupal.ajax({ - url: Drupal.quickedit.util.buildUrl( - fieldID, - Drupal.url( - 'quickedit/!entity_type/!id/!field_name/!langcode/!view_mode', - ), - ), - submit: { nocssjs: true }, - }); - - // Implement a scoped editorGetUntransformedText AJAX command: calls the - // callback. - textLoaderAjax.commands.editorGetUntransformedText = function ( - ajax, - response, - status, - ) { - callback(response.data); - }; - - // This will ensure our scoped editorGetUntransformedText AJAX command - // gets called. - textLoaderAjax.execute(); - }, - }, - ); -})(jQuery, Drupal, drupalSettings, _); diff --git a/core/modules/quickedit/js/editors/formattedTextEditor.js b/core/modules/quickedit/js/editors/formattedTextEditor.js deleted file mode 100644 index b193275354a58a6369a42ed5d261df4e7cbf41cc..0000000000000000000000000000000000000000 --- a/core/modules/quickedit/js/editors/formattedTextEditor.js +++ /dev/null @@ -1,165 +0,0 @@ -/** -* DO NOT EDIT THIS FILE. -* See the following change record for more information, -* https://www.drupal.org/node/2815083 -* @preserve -**/ - -(function ($, Drupal, drupalSettings, _) { - Drupal.quickedit.editors.editor = Drupal.quickedit.EditorView.extend({ - textFormat: null, - textFormatHasTransformations: null, - textEditor: null, - $textElement: null, - - initialize(options) { - Drupal.quickedit.EditorView.prototype.initialize.call(this, options); - const metadata = Drupal.quickedit.metadata.get(this.fieldModel.get('fieldID'), 'custom'); - this.textFormat = drupalSettings.editor.formats[metadata.format]; - this.textFormatHasTransformations = metadata.formatHasTransformations; - this.textEditor = Drupal.editors[this.textFormat.editor]; - const $fieldItems = this.$el.find('.quickedit-field'); - - if ($fieldItems.length) { - this.$textElement = $fieldItems.eq(0); - } else { - this.$textElement = this.$el; - } - - this.model.set('originalValue', this.$textElement.html()); - - if (Drupal.editors && Drupal.editors.ckeditor5 && once('quickedit-ckeditor5-destroy', 'body').length) { - const ckeditor5Detach = Drupal.editors.ckeditor5.detach; - - Drupal.editors.ckeditor5.detach = function quickeditDetach(element, format, trigger) { - const destroyPromise = ckeditor5Detach.call(this, element, format, trigger); - - if (destroyPromise && destroyPromise.then) { - let textElement = null; - let originalValue = null; - - Drupal.quickedit.editors.editor.prototype.revert = function revertQuickeditChanges() { - textElement = this.$textElement[0]; - originalValue = this.model.get('originalValue'); - }; - - destroyPromise.then(() => { - if (textElement && originalValue) { - textElement.innerHTML = originalValue; - } - }); - } - }; - } - }, - - getEditedElement() { - return this.$textElement; - }, - - stateChange(fieldModel, state) { - const editorModel = this.model; - const from = fieldModel.previous('state'); - const to = state; - - switch (to) { - case 'inactive': - break; - - case 'candidate': - if (from !== 'inactive' && from !== 'highlighted') { - this.textEditor.detach(this.$textElement.get(0), this.textFormat); - } - - if (from === 'active' && this.textFormatHasTransformations) { - this.revert(); - } - - if (from === 'invalid') { - this.removeValidationErrors(); - } - - break; - - case 'highlighted': - break; - - case 'activating': - if (this.textFormatHasTransformations) { - const $textElement = this.$textElement; - - this._getUntransformedText(untransformedText => { - $textElement.html(untransformedText); - fieldModel.set('state', 'active'); - }); - } else { - _.defer(() => { - fieldModel.set('state', 'active'); - }); - } - - break; - - case 'active': - { - const textElement = this.$textElement.get(0); - const toolbarView = fieldModel.toolbarView; - this.textEditor.attachInlineEditor(textElement, this.textFormat, toolbarView.getMainWysiwygToolgroupId(), toolbarView.getFloatedWysiwygToolgroupId()); - this.textEditor.onChange(textElement, htmlText => { - editorModel.set('currentValue', htmlText); - fieldModel.set('state', 'changed'); - }); - break; - } - - case 'changed': - break; - - case 'saving': - if (from === 'invalid') { - this.removeValidationErrors(); - } - - this.save(); - break; - - case 'saved': - break; - - case 'invalid': - this.showValidationErrors(); - break; - } - }, - - getQuickEditUISettings() { - return { - padding: true, - unifiedToolbar: true, - fullWidthToolbar: true, - popup: false - }; - }, - - revert() { - this.$textElement.html(this.model.get('originalValue')); - }, - - _getUntransformedText(callback) { - const fieldID = this.fieldModel.get('fieldID'); - const textLoaderAjax = Drupal.ajax({ - url: Drupal.quickedit.util.buildUrl(fieldID, Drupal.url('quickedit/!entity_type/!id/!field_name/!langcode/!view_mode')), - submit: { - nocssjs: true - } - }); - - textLoaderAjax.commands.editorGetUntransformedText = function (ajax, response, status) { - callback(response.data); - }; - - textLoaderAjax.execute(); - } - - }); -})(jQuery, Drupal, drupalSettings, _); \ No newline at end of file diff --git a/core/modules/quickedit/js/editors/image.es6.js b/core/modules/quickedit/js/editors/image.es6.js deleted file mode 100644 index 30a54f51b821edfc599a7c4b44b9b1cea6511cbf..0000000000000000000000000000000000000000 --- a/core/modules/quickedit/js/editors/image.es6.js +++ /dev/null @@ -1,375 +0,0 @@ -/** - * @file - * Drag+drop based in-place editor for images. - */ - -(function ($, _, Drupal) { - Drupal.quickedit.editors.image = Drupal.quickedit.EditorView.extend( - /** @lends Drupal.quickedit.editors.image# */ { - /** - * @constructs - * - * @augments Drupal.quickedit.EditorView - * - * @param {object} options - * Options for the image editor. - */ - initialize(options) { - Drupal.quickedit.EditorView.prototype.initialize.call(this, options); - // Set our original value to our current HTML (for reverting). - this.model.set('originalValue', this.$el.html().trim()); - // Copy input from our custom form to the Quick Edit Field Form. - this.model.set('currentValue', function (index, value) { - const matches = $(this) - .attr('name') - .match(/(alt|title)]$/); - if (matches) { - const name = matches[1]; - const $toolgroup = $( - `#${options.fieldModel.toolbarView.getMainWysiwygToolgroupId()}`, - ); - const $input = $toolgroup.find( - `.quickedit-image-field-info input[name="${name}"]`, - ); - if ($input.length) { - return $input[0].value; - } - } - }); - }, - - /** - * {@inheritdoc} - * - * @param {Drupal.quickedit.FieldModel} fieldModel - * The field model that holds the state. - * @param {string} state - * The state to change to. - * @param {object} options - * State options, if needed by the state change. - */ - stateChange(fieldModel, state, options) { - const from = fieldModel.previous('state'); - switch (state) { - case 'inactive': - break; - - case 'candidate': - if (from !== 'inactive') { - this.$el.find('.quickedit-image-dropzone').remove(); - this.$el.removeClass('quickedit-image-element'); - } - if (from === 'invalid') { - this.removeValidationErrors(); - } - break; - - case 'highlighted': - break; - - case 'activating': - // Defer updating the field model until the current state change has - // propagated, to not trigger a nested state change event. - _.defer(() => { - fieldModel.set('state', 'active'); - }); - break; - - case 'active': { - const self = this; - - // Indicate that this element is being edited by Quick Edit Image. - this.$el.addClass('quickedit-image-element'); - - // Render our initial dropzone element. Once the user reverts changes - // or saves a new image, this element is removed. - const $dropzone = this.renderDropzone( - 'upload', - Drupal.t('Drop file here or click to upload'), - ); - - $dropzone.on('dragenter', function (e) { - $(this).addClass('hover'); - }); - $dropzone.on('dragleave', function (e) { - $(this).removeClass('hover'); - }); - - $dropzone.on('drop', function (e) { - // Only respond when a file is dropped (could be another element). - if ( - e.originalEvent.dataTransfer && - e.originalEvent.dataTransfer.files.length - ) { - $(this).removeClass('hover'); - self.uploadImage(e.originalEvent.dataTransfer.files[0]); - } - }); - - $dropzone.on('click', (e) => { - // Create an <input> element without appending it to the DOM, and - // trigger a click event. This is the easiest way to arbitrarily - // open the browser's upload dialog. - $('<input type="file">') - .trigger('click') - .on('change', function () { - if (this.files.length) { - self.uploadImage(this.files[0]); - } - }); - }); - - // Prevent the browser's default behavior when dragging files onto - // the document (usually opens them in the same tab). - $dropzone.on('dragover dragenter dragleave drop click', (e) => { - e.preventDefault(); - e.stopPropagation(); - }); - - this.renderToolbar(fieldModel); - break; - } - - case 'changed': - break; - - case 'saving': - if (from === 'invalid') { - this.removeValidationErrors(); - } - - this.save(options); - break; - - case 'saved': - break; - - case 'invalid': - this.showValidationErrors(); - break; - } - }, - - /** - * Validates/uploads a given file. - * - * @param {File} file - * The file to upload. - */ - uploadImage(file) { - // Indicate loading by adding a special class to our icon. - this.renderDropzone( - 'upload loading', - Drupal.t('Uploading <i>@file</i>…', { '@file': file.name }), - ); - - // Build a valid URL for our endpoint. - const fieldID = this.fieldModel.get('fieldID'); - const url = Drupal.quickedit.util.buildUrl( - fieldID, - Drupal.url( - 'quickedit/image/upload/!entity_type/!id/!field_name/!langcode/!view_mode', - ), - ); - - // Construct form data that our endpoint can consume. - const data = new FormData(); - data.append('files[image]', file); - - // Construct a POST request to our endpoint. - const self = this; - this.ajax({ - type: 'POST', - url, - data, - success(response) { - const $el = $(self.fieldModel.get('el')); - // Indicate that the field has changed - this enables the - // "Save" button. - self.fieldModel.set('state', 'changed'); - self.fieldModel.get('entity').set('inTempStore', true); - self.removeValidationErrors(); - - // Replace our html with the new image. If we replaced our entire - // element with data.html, we would have to implement complicated logic - // like what's in Drupal.quickedit.AppView.renderUpdatedField. - const $content = $(response.html) - .closest('[data-quickedit-field-id]') - .children(); - $el.empty().append($content); - }, - }); - }, - - /** - * Utility function to make an AJAX request to the server. - * - * In addition to formatting the correct request, this also handles error - * codes and messages by displaying them visually inline with the image. - * - * Drupal.ajax is not called here as the Form API is unused by this - * in-place editor, and our JSON requests/responses try to be - * editor-agnostic. Ideally similar logic and routes could be used by - * modules like CKEditor for drag+drop file uploads as well. - * - * @param {object} options - * Ajax options. - * @param {string} options.type - * The type of request (i.e. GET, POST, PUT, DELETE, etc.) - * @param {string} options.url - * The URL for the request. - * @param {*} options.data - * The data to send to the server. - * @param {function} options.success - * A callback function used when a request is successful, without errors. - */ - ajax(options) { - const defaultOptions = { - context: this, - dataType: 'json', - cache: false, - contentType: false, - processData: false, - error() { - this.renderDropzone( - 'error', - Drupal.t('A server error has occurred.'), - ); - }, - }; - - const ajaxOptions = $.extend(defaultOptions, options); - const successCallback = ajaxOptions.success; - - // Handle the success callback. - ajaxOptions.success = function (response) { - if (response.main_error) { - this.renderDropzone('error', response.main_error); - if (response.errors.length) { - this.model.set('validationErrors', response.errors); - } - this.showValidationErrors(); - } else { - successCallback(response); - } - }; - - $.ajax(ajaxOptions); - }, - - /** - * Renders our toolbar form for editing metadata. - * - * @param {Drupal.quickedit.FieldModel} fieldModel - * The current Field Model. - */ - renderToolbar(fieldModel) { - const $toolgroup = $( - `#${fieldModel.toolbarView.getMainWysiwygToolgroupId()}`, - ); - let $toolbar = $toolgroup.find('.quickedit-image-field-info'); - if ($toolbar.length === 0) { - // Perform an AJAX request for extra image info (alt/title). - const fieldID = fieldModel.get('fieldID'); - const url = Drupal.quickedit.util.buildUrl( - fieldID, - Drupal.url( - 'quickedit/image/info/!entity_type/!id/!field_name/!langcode/!view_mode', - ), - ); - const self = this; - self.ajax({ - type: 'GET', - url, - success(response) { - $toolbar = $(Drupal.theme.quickeditImageToolbar(response)); - $toolgroup.append($toolbar); - $toolbar.on('keyup paste', () => { - fieldModel.set('state', 'changed'); - }); - // Re-position the toolbar, which could have changed size. - fieldModel.get('entity').toolbarView.position(); - }, - }); - } - }, - - /** - * Renders our dropzone element. - * - * @param {string} state - * The current state of our editor. Only used for visual styling. - * @param {string} text - * The text to display in the dropzone area. - * - * @return {jQuery} - * The rendered dropzone. - */ - renderDropzone(state, text) { - let $dropzone = this.$el.find('.quickedit-image-dropzone'); - // If the element already exists, modify its contents. - if ($dropzone.length) { - $dropzone - .removeClass('upload error hover loading') - .addClass(`.quickedit-image-dropzone ${state}`) - .children('.quickedit-image-text') - .html(text); - } else { - $dropzone = $( - Drupal.theme('quickeditImageDropzone', { - state, - text, - }), - ); - this.$el.append($dropzone); - } - - return $dropzone; - }, - - /** - * {@inheritdoc} - */ - revert() { - this.$el.html(this.model.get('originalValue')); - }, - - /** - * {@inheritdoc} - */ - getQuickEditUISettings() { - return { - padding: false, - unifiedToolbar: true, - fullWidthToolbar: true, - popup: false, - }; - }, - - /** - * {@inheritdoc} - */ - showValidationErrors() { - const errors = Drupal.theme('quickeditImageErrors', { - errors: this.model.get('validationErrors'), - }); - $(`#${this.fieldModel.toolbarView.getMainWysiwygToolgroupId()}`).append( - errors, - ); - this.getEditedElement().addClass('quickedit-validation-error'); - // Re-position the toolbar, which could have changed size. - this.fieldModel.get('entity').toolbarView.position(); - }, - - /** - * {@inheritdoc} - */ - removeValidationErrors() { - $(`#${this.fieldModel.toolbarView.getMainWysiwygToolgroupId()}`) - .find('.quickedit-image-errors') - .remove(); - this.getEditedElement().removeClass('quickedit-validation-error'); - }, - }, - ); -})(jQuery, _, Drupal); diff --git a/core/modules/quickedit/js/editors/image.js b/core/modules/quickedit/js/editors/image.js deleted file mode 100644 index 8845cf76b13277dfc36e4ef3b18776f83eb91b1e..0000000000000000000000000000000000000000 --- a/core/modules/quickedit/js/editors/image.js +++ /dev/null @@ -1,237 +0,0 @@ -/** -* DO NOT EDIT THIS FILE. -* See the following change record for more information, -* https://www.drupal.org/node/2815083 -* @preserve -**/ - -(function ($, _, Drupal) { - Drupal.quickedit.editors.image = Drupal.quickedit.EditorView.extend({ - initialize(options) { - Drupal.quickedit.EditorView.prototype.initialize.call(this, options); - this.model.set('originalValue', this.$el.html().trim()); - this.model.set('currentValue', function (index, value) { - const matches = $(this).attr('name').match(/(alt|title)]$/); - - if (matches) { - const name = matches[1]; - const $toolgroup = $(`#${options.fieldModel.toolbarView.getMainWysiwygToolgroupId()}`); - const $input = $toolgroup.find(`.quickedit-image-field-info input[name="${name}"]`); - - if ($input.length) { - return $input[0].value; - } - } - }); - }, - - stateChange(fieldModel, state, options) { - const from = fieldModel.previous('state'); - - switch (state) { - case 'inactive': - break; - - case 'candidate': - if (from !== 'inactive') { - this.$el.find('.quickedit-image-dropzone').remove(); - this.$el.removeClass('quickedit-image-element'); - } - - if (from === 'invalid') { - this.removeValidationErrors(); - } - - break; - - case 'highlighted': - break; - - case 'activating': - _.defer(() => { - fieldModel.set('state', 'active'); - }); - - break; - - case 'active': - { - const self = this; - this.$el.addClass('quickedit-image-element'); - const $dropzone = this.renderDropzone('upload', Drupal.t('Drop file here or click to upload')); - $dropzone.on('dragenter', function (e) { - $(this).addClass('hover'); - }); - $dropzone.on('dragleave', function (e) { - $(this).removeClass('hover'); - }); - $dropzone.on('drop', function (e) { - if (e.originalEvent.dataTransfer && e.originalEvent.dataTransfer.files.length) { - $(this).removeClass('hover'); - self.uploadImage(e.originalEvent.dataTransfer.files[0]); - } - }); - $dropzone.on('click', e => { - $('<input type="file">').trigger('click').on('change', function () { - if (this.files.length) { - self.uploadImage(this.files[0]); - } - }); - }); - $dropzone.on('dragover dragenter dragleave drop click', e => { - e.preventDefault(); - e.stopPropagation(); - }); - this.renderToolbar(fieldModel); - break; - } - - case 'changed': - break; - - case 'saving': - if (from === 'invalid') { - this.removeValidationErrors(); - } - - this.save(options); - break; - - case 'saved': - break; - - case 'invalid': - this.showValidationErrors(); - break; - } - }, - - uploadImage(file) { - this.renderDropzone('upload loading', Drupal.t('Uploading <i>@file</i>…', { - '@file': file.name - })); - const fieldID = this.fieldModel.get('fieldID'); - const url = Drupal.quickedit.util.buildUrl(fieldID, Drupal.url('quickedit/image/upload/!entity_type/!id/!field_name/!langcode/!view_mode')); - const data = new FormData(); - data.append('files[image]', file); - const self = this; - this.ajax({ - type: 'POST', - url, - data, - - success(response) { - const $el = $(self.fieldModel.get('el')); - self.fieldModel.set('state', 'changed'); - self.fieldModel.get('entity').set('inTempStore', true); - self.removeValidationErrors(); - const $content = $(response.html).closest('[data-quickedit-field-id]').children(); - $el.empty().append($content); - } - - }); - }, - - ajax(options) { - const defaultOptions = { - context: this, - dataType: 'json', - cache: false, - contentType: false, - processData: false, - - error() { - this.renderDropzone('error', Drupal.t('A server error has occurred.')); - } - - }; - const ajaxOptions = $.extend(defaultOptions, options); - const successCallback = ajaxOptions.success; - - ajaxOptions.success = function (response) { - if (response.main_error) { - this.renderDropzone('error', response.main_error); - - if (response.errors.length) { - this.model.set('validationErrors', response.errors); - } - - this.showValidationErrors(); - } else { - successCallback(response); - } - }; - - $.ajax(ajaxOptions); - }, - - renderToolbar(fieldModel) { - const $toolgroup = $(`#${fieldModel.toolbarView.getMainWysiwygToolgroupId()}`); - let $toolbar = $toolgroup.find('.quickedit-image-field-info'); - - if ($toolbar.length === 0) { - const fieldID = fieldModel.get('fieldID'); - const url = Drupal.quickedit.util.buildUrl(fieldID, Drupal.url('quickedit/image/info/!entity_type/!id/!field_name/!langcode/!view_mode')); - const self = this; - self.ajax({ - type: 'GET', - url, - - success(response) { - $toolbar = $(Drupal.theme.quickeditImageToolbar(response)); - $toolgroup.append($toolbar); - $toolbar.on('keyup paste', () => { - fieldModel.set('state', 'changed'); - }); - fieldModel.get('entity').toolbarView.position(); - } - - }); - } - }, - - renderDropzone(state, text) { - let $dropzone = this.$el.find('.quickedit-image-dropzone'); - - if ($dropzone.length) { - $dropzone.removeClass('upload error hover loading').addClass(`.quickedit-image-dropzone ${state}`).children('.quickedit-image-text').html(text); - } else { - $dropzone = $(Drupal.theme('quickeditImageDropzone', { - state, - text - })); - this.$el.append($dropzone); - } - - return $dropzone; - }, - - revert() { - this.$el.html(this.model.get('originalValue')); - }, - - getQuickEditUISettings() { - return { - padding: false, - unifiedToolbar: true, - fullWidthToolbar: true, - popup: false - }; - }, - - showValidationErrors() { - const errors = Drupal.theme('quickeditImageErrors', { - errors: this.model.get('validationErrors') - }); - $(`#${this.fieldModel.toolbarView.getMainWysiwygToolgroupId()}`).append(errors); - this.getEditedElement().addClass('quickedit-validation-error'); - this.fieldModel.get('entity').toolbarView.position(); - }, - - removeValidationErrors() { - $(`#${this.fieldModel.toolbarView.getMainWysiwygToolgroupId()}`).find('.quickedit-image-errors').remove(); - this.getEditedElement().removeClass('quickedit-validation-error'); - } - - }); -})(jQuery, _, Drupal); \ No newline at end of file diff --git a/core/modules/quickedit/js/editors/plainTextEditor.es6.js b/core/modules/quickedit/js/editors/plainTextEditor.es6.js deleted file mode 100644 index a951015127e0db0fa6c98788728726b6ea87d938..0000000000000000000000000000000000000000 --- a/core/modules/quickedit/js/editors/plainTextEditor.es6.js +++ /dev/null @@ -1,143 +0,0 @@ -/** - * @file - * ContentEditable-based in-place editor for plain text content. - */ - -(function ($, _, Drupal) { - Drupal.quickedit.editors.plain_text = Drupal.quickedit.EditorView.extend( - /** @lends Drupal.quickedit.editors.plain_text# */ { - /** - * Stores the textual DOM element that is being in-place edited. - */ - $textElement: null, - - /** - * @constructs - * - * @augments Drupal.quickedit.EditorView - * - * @param {object} options - * Options for the plain text editor. - */ - initialize(options) { - Drupal.quickedit.EditorView.prototype.initialize.call(this, options); - - const editorModel = this.model; - const fieldModel = this.fieldModel; - - // Store the original value of this field. Necessary for reverting - // changes. - const $fieldItems = this.$el.find('.quickedit-field'); - const $textElement = $fieldItems.length ? $fieldItems.eq(0) : this.$el; - this.$textElement = $textElement; - editorModel.set( - 'originalValue', - this.$textElement[0].textContent.trim(), - ); - - // Sets the state to 'changed' whenever the value changes. - let previousText = editorModel.get('originalValue'); - $textElement.on('keyup paste', (event) => { - const currentText = $textElement[0].textContent.trim(); - if (previousText !== currentText) { - previousText = currentText; - editorModel.set('currentValue', currentText); - fieldModel.set('state', 'changed'); - } - }); - }, - - /** - * {@inheritdoc} - * - * @return {jQuery} - * The text element for the plain text editor. - */ - getEditedElement() { - return this.$textElement; - }, - - /** - * {@inheritdoc} - * - * @param {object} fieldModel - * The field model that holds the state. - * @param {string} state - * The state to change to. - * @param {object} options - * State options, if needed by the state change. - */ - stateChange(fieldModel, state, options) { - const from = fieldModel.previous('state'); - const to = state; - switch (to) { - case 'inactive': - break; - - case 'candidate': - if (from !== 'inactive') { - this.$textElement.removeAttr('contenteditable'); - } - if (from === 'invalid') { - this.removeValidationErrors(); - } - break; - - case 'highlighted': - break; - - case 'activating': - // Defer updating the field model until the current state change has - // propagated, to not trigger a nested state change event. - _.defer(() => { - fieldModel.set('state', 'active'); - }); - break; - - case 'active': - this.$textElement.attr('contenteditable', 'true'); - break; - - case 'changed': - break; - - case 'saving': - if (from === 'invalid') { - this.removeValidationErrors(); - } - this.save(options); - break; - - case 'saved': - break; - - case 'invalid': - this.showValidationErrors(); - break; - } - }, - - /** - * {@inheritdoc} - * - * @return {object} - * A settings object for the quick edit UI. - */ - getQuickEditUISettings() { - return { - padding: true, - unifiedToolbar: false, - fullWidthToolbar: false, - popup: false, - }; - }, - - /** - * {@inheritdoc} - */ - revert() { - this.$textElement.html(this.model.get('originalValue')); - }, - }, - ); -})(jQuery, _, Drupal); diff --git a/core/modules/quickedit/js/editors/plainTextEditor.js b/core/modules/quickedit/js/editors/plainTextEditor.js deleted file mode 100644 index 7f386d4e4e3e513c145be3fed075f3b93fe02dbd..0000000000000000000000000000000000000000 --- a/core/modules/quickedit/js/editors/plainTextEditor.js +++ /dev/null @@ -1,103 +0,0 @@ -/** -* DO NOT EDIT THIS FILE. -* See the following change record for more information, -* https://www.drupal.org/node/2815083 -* @preserve -**/ - -(function ($, _, Drupal) { - Drupal.quickedit.editors.plain_text = Drupal.quickedit.EditorView.extend({ - $textElement: null, - - initialize(options) { - Drupal.quickedit.EditorView.prototype.initialize.call(this, options); - const editorModel = this.model; - const fieldModel = this.fieldModel; - const $fieldItems = this.$el.find('.quickedit-field'); - const $textElement = $fieldItems.length ? $fieldItems.eq(0) : this.$el; - this.$textElement = $textElement; - editorModel.set('originalValue', this.$textElement[0].textContent.trim()); - let previousText = editorModel.get('originalValue'); - $textElement.on('keyup paste', event => { - const currentText = $textElement[0].textContent.trim(); - - if (previousText !== currentText) { - previousText = currentText; - editorModel.set('currentValue', currentText); - fieldModel.set('state', 'changed'); - } - }); - }, - - getEditedElement() { - return this.$textElement; - }, - - stateChange(fieldModel, state, options) { - const from = fieldModel.previous('state'); - const to = state; - - switch (to) { - case 'inactive': - break; - - case 'candidate': - if (from !== 'inactive') { - this.$textElement.removeAttr('contenteditable'); - } - - if (from === 'invalid') { - this.removeValidationErrors(); - } - - break; - - case 'highlighted': - break; - - case 'activating': - _.defer(() => { - fieldModel.set('state', 'active'); - }); - - break; - - case 'active': - this.$textElement.attr('contenteditable', 'true'); - break; - - case 'changed': - break; - - case 'saving': - if (from === 'invalid') { - this.removeValidationErrors(); - } - - this.save(options); - break; - - case 'saved': - break; - - case 'invalid': - this.showValidationErrors(); - break; - } - }, - - getQuickEditUISettings() { - return { - padding: true, - unifiedToolbar: false, - fullWidthToolbar: false, - popup: false - }; - }, - - revert() { - this.$textElement.html(this.model.get('originalValue')); - } - - }); -})(jQuery, _, Drupal); \ No newline at end of file diff --git a/core/modules/quickedit/js/models/AppModel.es6.js b/core/modules/quickedit/js/models/AppModel.es6.js deleted file mode 100644 index 907055840e50659a168629e1f619f8d6261896d1..0000000000000000000000000000000000000000 --- a/core/modules/quickedit/js/models/AppModel.es6.js +++ /dev/null @@ -1,52 +0,0 @@ -/** - * @file - * A Backbone Model for the state of the in-place editing application. - * - * @see Drupal.quickedit.AppView - */ - -(function (Backbone, Drupal) { - /** - * @constructor - * - * @augments Backbone.Model - */ - Drupal.quickedit.AppModel = Backbone.Model.extend( - /** @lends Drupal.quickedit.AppModel# */ { - /** - * @type {object} - * - * @prop {Drupal.quickedit.FieldModel} highlightedField - * @prop {Drupal.quickedit.FieldModel} activeField - * @prop {Drupal.dialog~dialogDefinition} activeModal - */ - defaults: /** @lends Drupal.quickedit.AppModel# */ { - /** - * The currently state='highlighted' Drupal.quickedit.FieldModel, if any. - * - * @type {Drupal.quickedit.FieldModel} - * - * @see Drupal.quickedit.FieldModel.states - */ - highlightedField: null, - - /** - * The currently state = 'active' Drupal.quickedit.FieldModel, if any. - * - * @type {Drupal.quickedit.FieldModel} - * - * @see Drupal.quickedit.FieldModel.states - */ - activeField: null, - - /** - * Reference to a {@link Drupal.dialog} instance if a state change - * requires confirmation. - * - * @type {Drupal.dialog~dialogDefinition} - */ - activeModal: null, - }, - }, - ); -})(Backbone, Drupal); diff --git a/core/modules/quickedit/js/models/AppModel.js b/core/modules/quickedit/js/models/AppModel.js deleted file mode 100644 index 21232d763a73012ba5d2601719d6bd76d996e4ee..0000000000000000000000000000000000000000 --- a/core/modules/quickedit/js/models/AppModel.js +++ /dev/null @@ -1,16 +0,0 @@ -/** -* DO NOT EDIT THIS FILE. -* See the following change record for more information, -* https://www.drupal.org/node/2815083 -* @preserve -**/ - -(function (Backbone, Drupal) { - Drupal.quickedit.AppModel = Backbone.Model.extend({ - defaults: { - highlightedField: null, - activeField: null, - activeModal: null - } - }); -})(Backbone, Drupal); \ No newline at end of file diff --git a/core/modules/quickedit/js/models/BaseModel.es6.js b/core/modules/quickedit/js/models/BaseModel.es6.js deleted file mode 100644 index a3a6e28c1b4fb5d3e99d41c309ce29b78cbfd6cd..0000000000000000000000000000000000000000 --- a/core/modules/quickedit/js/models/BaseModel.es6.js +++ /dev/null @@ -1,55 +0,0 @@ -/** - * @file - * A Backbone Model subclass that enforces validation when calling set(). - */ - -(function (Drupal, Backbone) { - Drupal.quickedit.BaseModel = Backbone.Model.extend( - /** @lends Drupal.quickedit.BaseModel# */ { - /** - * @constructs - * - * @augments Backbone.Model - * - * @param {object} options - * Options for the base model- - * - * @return {Drupal.quickedit.BaseModel} - * A quickedit base model. - */ - initialize(options) { - this.__initialized = true; - return Backbone.Model.prototype.initialize.call(this, options); - }, - - /** - * Set a value on the model - * - * @param {object|string} key - * The key to set a value for. - * @param {*} val - * The value to set. - * @param {object} [options] - * Options for the model. - * - * @return {*} - * The result of `Backbone.Model.prototype.set` with the specified - * parameters. - */ - set(key, val, options) { - if (this.__initialized) { - // Deal with both the "key", value and {key:value}-style arguments. - if (typeof key === 'object') { - key.validate = true; - } else { - if (!options) { - options = {}; - } - options.validate = true; - } - } - return Backbone.Model.prototype.set.call(this, key, val, options); - }, - }, - ); -})(Drupal, Backbone); diff --git a/core/modules/quickedit/js/models/BaseModel.js b/core/modules/quickedit/js/models/BaseModel.js deleted file mode 100644 index d03b920ea5fcf8a12bbf567d8426edfb5e98ff6d..0000000000000000000000000000000000000000 --- a/core/modules/quickedit/js/models/BaseModel.js +++ /dev/null @@ -1,32 +0,0 @@ -/** -* DO NOT EDIT THIS FILE. -* See the following change record for more information, -* https://www.drupal.org/node/2815083 -* @preserve -**/ - -(function (Drupal, Backbone) { - Drupal.quickedit.BaseModel = Backbone.Model.extend({ - initialize(options) { - this.__initialized = true; - return Backbone.Model.prototype.initialize.call(this, options); - }, - - set(key, val, options) { - if (this.__initialized) { - if (typeof key === 'object') { - key.validate = true; - } else { - if (!options) { - options = {}; - } - - options.validate = true; - } - } - - return Backbone.Model.prototype.set.call(this, key, val, options); - } - - }); -})(Drupal, Backbone); \ No newline at end of file diff --git a/core/modules/quickedit/js/models/EditorModel.es6.js b/core/modules/quickedit/js/models/EditorModel.es6.js deleted file mode 100644 index 036fe8ed8d2b690d4509fcfb29a0718ccbb45c5e..0000000000000000000000000000000000000000 --- a/core/modules/quickedit/js/models/EditorModel.es6.js +++ /dev/null @@ -1,49 +0,0 @@ -/** - * @file - * A Backbone Model for the state of an in-place editor. - * - * @see Drupal.quickedit.EditorView - */ - -(function (Backbone, Drupal) { - /** - * @constructor - * - * @augments Backbone.Model - */ - Drupal.quickedit.EditorModel = Backbone.Model.extend( - /** @lends Drupal.quickedit.EditorModel# */ { - /** - * @type {object} - * - * @prop {string} originalValue - * @prop {string} currentValue - * @prop {Array} validationErrors - */ - defaults: /** @lends Drupal.quickedit.EditorModel# */ { - /** - * Not the full HTML representation of this field, but the "actual" - * original value of the field, stored by the used in-place editor, and - * in a representation that can be chosen by the in-place editor. - * - * @type {string} - */ - originalValue: null, - - /** - * Analogous to originalValue, but the current value. - * - * @type {string} - */ - currentValue: null, - - /** - * Stores any validation errors to be rendered. - * - * @type {Array} - */ - validationErrors: null, - }, - }, - ); -})(Backbone, Drupal); diff --git a/core/modules/quickedit/js/models/EditorModel.js b/core/modules/quickedit/js/models/EditorModel.js deleted file mode 100644 index ab9f555e192b5cd81f81889f86a2f36047e892fc..0000000000000000000000000000000000000000 --- a/core/modules/quickedit/js/models/EditorModel.js +++ /dev/null @@ -1,16 +0,0 @@ -/** -* DO NOT EDIT THIS FILE. -* See the following change record for more information, -* https://www.drupal.org/node/2815083 -* @preserve -**/ - -(function (Backbone, Drupal) { - Drupal.quickedit.EditorModel = Backbone.Model.extend({ - defaults: { - originalValue: null, - currentValue: null, - validationErrors: null - } - }); -})(Backbone, Drupal); \ No newline at end of file diff --git a/core/modules/quickedit/js/models/EntityModel.es6.js b/core/modules/quickedit/js/models/EntityModel.es6.js deleted file mode 100644 index a8838bdf13e5652bdc528f50bf1d6370a61e1315..0000000000000000000000000000000000000000 --- a/core/modules/quickedit/js/models/EntityModel.es6.js +++ /dev/null @@ -1,802 +0,0 @@ -/** - * @file - * A Backbone Model for the state of an in-place editable entity in the DOM. - */ - -(function (_, $, Backbone, Drupal) { - Drupal.quickedit.EntityModel = Drupal.quickedit.BaseModel.extend( - /** @lends Drupal.quickedit.EntityModel# */ { - /** - * @type {object} - */ - defaults: /** @lends Drupal.quickedit.EntityModel# */ { - /** - * The DOM element that represents this entity. - * - * It may seem bizarre to have a DOM element in a Backbone Model, but we - * need to be able to map entities in the DOM to EntityModels in memory. - * - * @type {HTMLElement} - */ - el: null, - - /** - * An entity ID, of the form `<entity type>/<entity ID>` - * - * @example - * "node/1" - * - * @type {string} - */ - entityID: null, - - /** - * An entity instance ID. - * - * The first instance of a specific entity (i.e. with a given entity ID) - * is assigned 0, the second 1, and so on. - * - * @type {number} - */ - entityInstanceID: null, - - /** - * The unique ID of this entity instance on the page, of the form - * `<entity type>/<entity ID>[entity instance ID]` - * - * @example - * "node/1[0]" - * - * @type {string} - */ - id: null, - - /** - * The label of the entity. - * - * @type {string} - */ - label: null, - - /** - * A FieldCollection for all fields of the entity. - * - * @type {Drupal.quickedit.FieldCollection} - * - * @see Drupal.quickedit.FieldCollection - */ - fields: null, - - // The attributes below are stateful. The ones above will never change - // during the life of an EntityModel instance. - - /** - * Indicates whether this entity is currently being edited in-place. - * - * @type {bool} - */ - isActive: false, - - /** - * Whether one or more fields are already been stored in PrivateTempStore. - * - * @type {bool} - */ - inTempStore: false, - - /** - * Indicates whether a "Save" button is necessary or not. - * - * Whether one or more fields have already been stored in PrivateTempStore - * *or* the field that's currently being edited is in the 'changed' or a - * later state. - * - * @type {bool} - */ - isDirty: false, - - /** - * Whether the request to the server has been made to commit this entity. - * - * Used to prevent multiple such requests. - * - * @type {bool} - */ - isCommitting: false, - - /** - * The current processing state of an entity. - * - * @type {string} - */ - state: 'closed', - - /** - * IDs of fields whose new values have been stored in PrivateTempStore. - * - * We must store this on the EntityModel as well (even though it already - * is on the FieldModel) because when a field is rerendered, its - * FieldModel is destroyed and this allows us to transition it back to - * the proper state. - * - * @type {Array.<string>} - */ - fieldsInTempStore: [], - - /** - * A flag the tells the application that this EntityModel must be reloaded - * in order to restore the original values to its fields in the client. - * - * @type {bool} - */ - reload: false, - }, - - /** - * @constructs - * - * @augments Drupal.quickedit.BaseModel - */ - initialize() { - this.set('fields', new Drupal.quickedit.FieldCollection()); - - // Respond to entity state changes. - this.listenTo(this, 'change:state', this.stateChange); - - // The state of the entity is largely dependent on the state of its - // fields. - this.listenTo( - this.get('fields'), - 'change:state', - this.fieldStateChange, - ); - - // Call Drupal.quickedit.BaseModel's initialize() method. - Drupal.quickedit.BaseModel.prototype.initialize.call(this); - }, - - /** - * Updates FieldModels' states when an EntityModel change occurs. - * - * @param {Drupal.quickedit.EntityModel} entityModel - * The entity model - * @param {string} state - * The state of the associated entity. One of - * {@link Drupal.quickedit.EntityModel.states}. - * @param {object} options - * Options for the entity model. - */ - stateChange(entityModel, state, options) { - const to = state; - switch (to) { - case 'closed': - this.set({ - isActive: false, - inTempStore: false, - isDirty: false, - }); - break; - - case 'launching': - break; - - case 'opening': - // Set the fields to candidate state. - entityModel.get('fields').each((fieldModel) => { - fieldModel.set('state', 'candidate', options); - }); - break; - - case 'opened': - // The entity is now ready for editing! - this.set('isActive', true); - break; - - case 'committing': { - // The user indicated they want to save the entity. - const fields = this.get('fields'); - // For fields that are in an active state, transition them to - // candidate. - fields - .chain() - .filter( - (fieldModel) => - _.intersection([fieldModel.get('state')], ['active']).length, - ) - .each((fieldModel) => { - fieldModel.set('state', 'candidate'); - }); - // For fields that are in a changed state, field values must first be - // stored in PrivateTempStore. - fields - .chain() - .filter( - (fieldModel) => - _.intersection( - [fieldModel.get('state')], - Drupal.quickedit.app.changedFieldStates, - ).length, - ) - .each((fieldModel) => { - fieldModel.set('state', 'saving'); - }); - break; - } - - case 'deactivating': { - const changedFields = this.get('fields').filter( - (fieldModel) => - _.intersection( - [fieldModel.get('state')], - ['changed', 'invalid'], - ).length, - ); - // If the entity contains unconfirmed or unsaved changes, return the - // entity to an opened state and ask the user if they would like to - // save the changes or discard the changes. - // 1. One of the fields is in a changed state. The changed field - // might just be a change in the client or it might have been saved - // to tempstore. - // 2. The saved flag is empty and the confirmed flag is empty. If - // the entity has been saved to the server, the fields changed in - // the client are irrelevant. If the changes are confirmed, then - // proceed to set the fields to candidate state. - if ( - (changedFields.length || this.get('fieldsInTempStore').length) && - !options.saved && - !options.confirmed - ) { - // Cancel deactivation until the user confirms save or discard. - this.set('state', 'opened', { confirming: true }); - // An action in reaction to state change must be deferred. - _.defer(() => { - Drupal.quickedit.app.confirmEntityDeactivation(entityModel); - }); - } else { - const invalidFields = this.get('fields').filter( - (fieldModel) => - _.intersection([fieldModel.get('state')], ['invalid']).length, - ); - // Indicate if this EntityModel needs to be reloaded in order to - // restore the original values of its fields. - entityModel.set( - 'reload', - this.get('fieldsInTempStore').length || invalidFields.length, - ); - // Set all fields to the 'candidate' state. A changed field may have - // to go through confirmation first. - entityModel.get('fields').each((fieldModel) => { - // If the field is already in the candidate state, trigger a - // change event so that the entityModel can move to the next state - // in deactivation. - if ( - _.intersection( - [fieldModel.get('state')], - ['candidate', 'highlighted'], - ).length - ) { - fieldModel.trigger( - 'change:state', - fieldModel, - fieldModel.get('state'), - options, - ); - } else { - fieldModel.set('state', 'candidate', options); - } - }); - } - break; - } - - case 'closing': - // Set all fields to the 'inactive' state. - options.reason = 'stop'; - this.get('fields').each((fieldModel) => { - fieldModel.set( - { - inTempStore: false, - state: 'inactive', - }, - options, - ); - }); - break; - } - }, - - /** - * Updates a Field and Entity model's "inTempStore" when appropriate. - * - * Helper function. - * - * @param {Drupal.quickedit.EntityModel} entityModel - * The model of the entity for which a field's state attribute has - * changed. - * @param {Drupal.quickedit.FieldModel} fieldModel - * The model of the field whose state attribute has changed. - * - * @see Drupal.quickedit.EntityModel#fieldStateChange - */ - _updateInTempStoreAttributes(entityModel, fieldModel) { - const current = fieldModel.get('state'); - const previous = fieldModel.previous('state'); - let fieldsInTempStore = entityModel.get('fieldsInTempStore'); - // If the fieldModel changed to the 'saved' state: remember that this - // field was saved to PrivateTempStore. - if (current === 'saved') { - // Mark the entity as saved in PrivateTempStore, so that we can pass the - // proper "reset PrivateTempStore" boolean value when communicating with - // the server. - entityModel.set('inTempStore', true); - // Mark the field as saved in PrivateTempStore, so that visual - // indicators signifying just that may be rendered. - fieldModel.set('inTempStore', true); - // Remember that this field is in PrivateTempStore, restore when - // rerendered. - fieldsInTempStore.push(fieldModel.get('fieldID')); - fieldsInTempStore = _.uniq(fieldsInTempStore); - entityModel.set('fieldsInTempStore', fieldsInTempStore); - } - // If the fieldModel changed to the 'candidate' state from the - // 'inactive' state, then this is a field for this entity that got - // rerendered. Restore its previous 'inTempStore' attribute value. - else if (current === 'candidate' && previous === 'inactive') { - fieldModel.set( - 'inTempStore', - _.intersection([fieldModel.get('fieldID')], fieldsInTempStore) - .length > 0, - ); - } - }, - - /** - * Reacts to state changes in this entity's fields. - * - * @param {Drupal.quickedit.FieldModel} fieldModel - * The model of the field whose state attribute changed. - * @param {string} state - * The state of the associated field. One of - * {@link Drupal.quickedit.FieldModel.states}. - */ - fieldStateChange(fieldModel, state) { - const entityModel = this; - const fieldState = state; - // Switch on the entityModel state. - // The EntityModel responds to FieldModel state changes as a function of - // its state. For example, a field switching back to 'candidate' state - // when its entity is in the 'opened' state has no effect on the entity. - // But that same switch back to 'candidate' state of a field when the - // entity is in the 'committing' state might allow the entity to proceed - // with the commit flow. - switch (this.get('state')) { - case 'closed': - case 'launching': - // It should be impossible to reach these: fields can't change state - // while the entity is closed or still launching. - break; - - case 'opening': - // We must change the entity to the 'opened' state, but it must first - // be confirmed that all of its fieldModels have transitioned to the - // 'candidate' state. - // We do this here, because this is called every time a fieldModel - // changes state, hence each time this is called, we get closer to the - // goal of having all fieldModels in the 'candidate' state. - // A state change in reaction to another state change must be - // deferred. - _.defer(() => { - entityModel.set('state', 'opened', { - 'accept-field-states': Drupal.quickedit.app.readyFieldStates, - }); - }); - break; - - case 'opened': - // Set the isDirty attribute when appropriate so that it is known when - // to display the "Save" button in the entity toolbar. - // Note that once a field has been changed, there's no way to discard - // that change, hence it will have to be saved into PrivateTempStore, - // or the in-place editing of this field will have to be stopped - // completely. In other words: once any field enters the 'changed' - // field, then for the remainder of the in-place editing session, the - // entity is by definition dirty. - if (fieldState === 'changed') { - entityModel.set('isDirty', true); - } else { - this._updateInTempStoreAttributes(entityModel, fieldModel); - } - break; - - case 'committing': { - // If the field save returned a validation error, set the state of the - // entity back to 'opened'. - if (fieldState === 'invalid') { - // A state change in reaction to another state change must be - // deferred. - _.defer(() => { - entityModel.set('state', 'opened', { reason: 'invalid' }); - }); - } else { - this._updateInTempStoreAttributes(entityModel, fieldModel); - } - - // Attempt to save the entity. If the entity's fields are not yet all - // in a ready state, the save will not be processed. - const options = { - 'accept-field-states': Drupal.quickedit.app.readyFieldStates, - }; - if (entityModel.set('isCommitting', true, options)) { - entityModel.save({ - success() { - entityModel.set( - { - state: 'deactivating', - isCommitting: false, - }, - { saved: true }, - ); - }, - error() { - // Reset the "isCommitting" mutex. - entityModel.set('isCommitting', false); - // Change the state back to "opened", to allow the user to hit - // the "Save" button again. - entityModel.set('state', 'opened', { - reason: 'networkerror', - }); - // Show a modal to inform the user of the network error. - const message = Drupal.t( - 'Your changes to <q>@entity-title</q> could not be saved, either due to a website problem or a network connection problem.<br>Please try again.', - { '@entity-title': entityModel.get('label') }, - ); - Drupal.quickedit.util.networkErrorModal( - Drupal.t('Network problem!'), - message, - ); - }, - }); - } - break; - } - - case 'deactivating': - // When setting the entity to 'closing', require that all fieldModels - // are in either the 'candidate' or 'highlighted' state. - // A state change in reaction to another state change must be - // deferred. - _.defer(() => { - entityModel.set('state', 'closing', { - 'accept-field-states': Drupal.quickedit.app.readyFieldStates, - }); - }); - break; - - case 'closing': - // When setting the entity to 'closed', require that all fieldModels - // are in the 'inactive' state. - // A state change in reaction to another state change must be - // deferred. - _.defer(() => { - entityModel.set('state', 'closed', { - 'accept-field-states': ['inactive'], - }); - }); - break; - } - }, - - /** - * Fires an AJAX request to the REST save URL for an entity. - * - * @param {object} options - * An object of options that contains: - * @param {function} [options.success] - * A function to invoke if the entity is successfully saved. - */ - save(options) { - const entityModel = this; - - // Create a Drupal.ajax instance to save the entity. - const entitySaverAjax = Drupal.ajax({ - url: Drupal.url(`quickedit/entity/${entityModel.get('entityID')}`), - error() { - // Let the Drupal.quickedit.EntityModel Backbone model's error() - // method handle errors. - options.error.call(entityModel); - }, - }); - // Entity saved successfully. - entitySaverAjax.commands.quickeditEntitySaved = function ( - ajax, - response, - status, - ) { - // All fields have been moved from PrivateTempStore to permanent - // storage, update the "inTempStore" attribute on FieldModels, on the - // EntityModel and clear EntityModel's "fieldInTempStore" attribute. - entityModel.get('fields').each((fieldModel) => { - fieldModel.set('inTempStore', false); - }); - entityModel.set('inTempStore', false); - entityModel.set('fieldsInTempStore', []); - - // Invoke the optional success callback. - if (options.success) { - options.success.call(entityModel); - } - }; - entitySaverAjax.options.headers = entitySaverAjax.options.headers || {}; - entitySaverAjax.options.headers['X-Drupal-Quickedit-CSRF-Token'] = - drupalSettings.quickedit.csrf_token; - // Trigger the AJAX request, which will return the quickeditEntitySaved - // AJAX command to which we then react. - entitySaverAjax.execute(); - }, - - /** - * Validate the entity model. - * - * @param {object} attrs - * The attributes changes in the save or set call. - * @param {object} options - * An object with the following option: - * @param {string} [options.reason] - * A string that conveys a particular reason to allow for an exceptional - * state change. - * @param {Array} options.accept-field-states - * An array of strings that represent field states that the entities must - * be in to validate. For example, if `accept-field-states` is - * `['candidate', 'highlighted']`, then all the fields of the entity must - * be in either of these two states for the save or set call to - * validate and proceed. - * - * @return {string} - * A string to say something about the state of the entity model. - */ - validate(attrs, options) { - const acceptedFieldStates = options['accept-field-states'] || []; - - // Validate state change. - const currentState = this.get('state'); - const nextState = attrs.state; - if (currentState !== nextState) { - // Ensure it's a valid state. - if (_.indexOf(this.constructor.states, nextState) === -1) { - return `"${nextState}" is an invalid state`; - } - - // Ensure it's a state change that is allowed. - // Check if the acceptStateChange function accepts it. - if (!this._acceptStateChange(currentState, nextState, options)) { - return 'state change not accepted'; - } - // If that function accepts it, then ensure all fields are also in an - // acceptable state. - if (!this._fieldsHaveAcceptableStates(acceptedFieldStates)) { - return 'state change not accepted because fields are not in acceptable state'; - } - } - - // Validate setting isCommitting = true. - const currentIsCommitting = this.get('isCommitting'); - const nextIsCommitting = attrs.isCommitting; - if (currentIsCommitting === false && nextIsCommitting === true) { - if (!this._fieldsHaveAcceptableStates(acceptedFieldStates)) { - return 'isCommitting change not accepted because fields are not in acceptable state'; - } - } else if (currentIsCommitting === true && nextIsCommitting === true) { - return 'isCommitting is a mutex, hence only changes are allowed'; - } - }, - - /** - * Checks if a state change can be accepted. - * - * @param {string} from - * From state. - * @param {string} to - * To state. - * @param {object} context - * Context for the check. - * @param {string} context.reason - * The reason for the state change. - * @param {bool} context.confirming - * Whether context is confirming or not. - * - * @return {bool} - * Whether the state change is accepted or not. - * - * @see Drupal.quickedit.AppView#acceptEditorStateChange - */ - _acceptStateChange(from, to, context) { - let accept = true; - - // In general, enforce the states sequence. Disallow going back from a - // "later" state to an "earlier" state, except in explicitly allowed - // cases. - if (!this.constructor.followsStateSequence(from, to)) { - accept = false; - - // Allow: closing -> closed. - // Necessary to stop editing an entity. - if (from === 'closing' && to === 'closed') { - accept = true; - } - // Allow: committing -> opened. - // Necessary to be able to correct an invalid field, or to hit the - // "Save" button again after a server/network error. - else if ( - from === 'committing' && - to === 'opened' && - context.reason && - (context.reason === 'invalid' || context.reason === 'networkerror') - ) { - accept = true; - } - // Allow: deactivating -> opened. - // Necessary to be able to confirm changes with the user. - else if ( - from === 'deactivating' && - to === 'opened' && - context.confirming - ) { - accept = true; - } - // Allow: opened -> deactivating. - // Necessary to be able to stop editing. - else if ( - from === 'opened' && - to === 'deactivating' && - context.confirmed - ) { - accept = true; - } - } - - return accept; - }, - - /** - * Checks if fields have acceptable states. - * - * @param {Array} acceptedFieldStates - * An array of acceptable field states to check for. - * - * @return {bool} - * Whether the fields have an acceptable state. - * - * @see Drupal.quickedit.EntityModel#validate - */ - _fieldsHaveAcceptableStates(acceptedFieldStates) { - let accept = true; - - // If no acceptable field states are provided, assume all field states are - // acceptable. We want to let validation pass as a default and only - // check validity on calls to set that explicitly request it. - if (acceptedFieldStates.length > 0) { - const fieldStates = this.get('fields').pluck('state') || []; - // If not all fields are in one of the accepted field states, then we - // still can't allow this state change. - if (_.difference(fieldStates, acceptedFieldStates).length) { - accept = false; - } - } - - return accept; - }, - - /** - * Destroys the entity model. - * - * @param {object} options - * Options for the entity model. - */ - destroy(options) { - Drupal.quickedit.BaseModel.prototype.destroy.call(this, options); - - this.stopListening(); - - // Destroy all fields of this entity. - this.get('fields').reset(); - }, - - /** - * {@inheritdoc} - */ - sync() { - // We don't use REST updates to sync. - }, - }, - /** @lends Drupal.quickedit.EntityModel */ { - /** - * Sequence of all possible states an entity can be in during quickediting. - * - * @type {Array.<string>} - */ - states: [ - // Initial state, like field's 'inactive' OR the user has just finished - // in-place editing this entity. - // - Trigger: none (initial) or EntityModel (finished). - // - Expected behavior: (when not initial state): tear down - // EntityToolbarView, in-place editors and related views. - 'closed', - // User has activated in-place editing of this entity. - // - Trigger: user. - // - Expected behavior: the EntityToolbarView is gets set up, in-place - // editors (EditorViews) and related views for this entity's fields are - // set up. Upon completion of those, the state is changed to 'opening'. - 'launching', - // Launching has finished. - // - Trigger: application. - // - Guarantees: in-place editors ready for use, all entity and field - // views have been set up, all fields are in the 'inactive' state. - // - Expected behavior: all fields are changed to the 'candidate' state - // and once this is completed, the entity state will be changed to - // 'opened'. - 'opening', - // Opening has finished. - // - Trigger: EntityModel. - // - Guarantees: see 'opening', all fields are in the 'candidate' state. - // - Expected behavior: the user is able to actually use in-place editing. - 'opened', - // User has clicked the 'Save' button (and has thus changed at least one - // field). - // - Trigger: user. - // - Guarantees: see 'opened', plus: either a changed field is in - // PrivateTempStore, or the user has just modified a field without - // activating (switching to) another field. - // - Expected behavior: 1) if any of the fields are not yet in - // PrivateTempStore, save them to PrivateTempStore, 2) if then any of - // the fields has the 'invalid' state, then change the entity state back - // to 'opened', otherwise: save the entity by committing it from - // PrivateTempStore into permanent storage. - 'committing', - // User has clicked the 'Close' button, or has clicked the 'Save' button - // and that was successfully completed. - // - Trigger: user or EntityModel. - // - Guarantees: when having clicked 'Close' hardly any: fields may be in - // a variety of states; when having clicked 'Save': all fields are in - // the 'candidate' state. - // - Expected behavior: transition all fields to the 'candidate' state, - // possibly requiring confirmation in the case of having clicked - // 'Close'. - 'deactivating', - // Deactivation has been completed. - // - Trigger: EntityModel. - // - Guarantees: all fields are in the 'candidate' state. - // - Expected behavior: change all fields to the 'inactive' state. - 'closing', - ], - - /** - * Indicates whether the 'from' state comes before the 'to' state. - * - * @param {string} from - * One of {@link Drupal.quickedit.EntityModel.states}. - * @param {string} to - * One of {@link Drupal.quickedit.EntityModel.states}. - * - * @return {bool} - * Whether the 'from' state comes before the 'to' state. - */ - followsStateSequence(from, to) { - return _.indexOf(this.states, from) < _.indexOf(this.states, to); - }, - }, - ); - - /** - * @constructor - * - * @augments Backbone.Collection - */ - Drupal.quickedit.EntityCollection = Backbone.Collection.extend( - /** @lends Drupal.quickedit.EntityCollection# */ { - /** - * @type {Drupal.quickedit.EntityModel} - */ - model: Drupal.quickedit.EntityModel, - }, - ); -})(_, jQuery, Backbone, Drupal); diff --git a/core/modules/quickedit/js/models/EntityModel.js b/core/modules/quickedit/js/models/EntityModel.js deleted file mode 100644 index 18c37c3c2283c3b1fcb69bbf8c4a4d22891144e5..0000000000000000000000000000000000000000 --- a/core/modules/quickedit/js/models/EntityModel.js +++ /dev/null @@ -1,328 +0,0 @@ -/** -* DO NOT EDIT THIS FILE. -* See the following change record for more information, -* https://www.drupal.org/node/2815083 -* @preserve -**/ - -(function (_, $, Backbone, Drupal) { - Drupal.quickedit.EntityModel = Drupal.quickedit.BaseModel.extend({ - defaults: { - el: null, - entityID: null, - entityInstanceID: null, - id: null, - label: null, - fields: null, - isActive: false, - inTempStore: false, - isDirty: false, - isCommitting: false, - state: 'closed', - fieldsInTempStore: [], - reload: false - }, - - initialize() { - this.set('fields', new Drupal.quickedit.FieldCollection()); - this.listenTo(this, 'change:state', this.stateChange); - this.listenTo(this.get('fields'), 'change:state', this.fieldStateChange); - Drupal.quickedit.BaseModel.prototype.initialize.call(this); - }, - - stateChange(entityModel, state, options) { - const to = state; - - switch (to) { - case 'closed': - this.set({ - isActive: false, - inTempStore: false, - isDirty: false - }); - break; - - case 'launching': - break; - - case 'opening': - entityModel.get('fields').each(fieldModel => { - fieldModel.set('state', 'candidate', options); - }); - break; - - case 'opened': - this.set('isActive', true); - break; - - case 'committing': - { - const fields = this.get('fields'); - fields.chain().filter(fieldModel => _.intersection([fieldModel.get('state')], ['active']).length).each(fieldModel => { - fieldModel.set('state', 'candidate'); - }); - fields.chain().filter(fieldModel => _.intersection([fieldModel.get('state')], Drupal.quickedit.app.changedFieldStates).length).each(fieldModel => { - fieldModel.set('state', 'saving'); - }); - break; - } - - case 'deactivating': - { - const changedFields = this.get('fields').filter(fieldModel => _.intersection([fieldModel.get('state')], ['changed', 'invalid']).length); - - if ((changedFields.length || this.get('fieldsInTempStore').length) && !options.saved && !options.confirmed) { - this.set('state', 'opened', { - confirming: true - }); - - _.defer(() => { - Drupal.quickedit.app.confirmEntityDeactivation(entityModel); - }); - } else { - const invalidFields = this.get('fields').filter(fieldModel => _.intersection([fieldModel.get('state')], ['invalid']).length); - entityModel.set('reload', this.get('fieldsInTempStore').length || invalidFields.length); - entityModel.get('fields').each(fieldModel => { - if (_.intersection([fieldModel.get('state')], ['candidate', 'highlighted']).length) { - fieldModel.trigger('change:state', fieldModel, fieldModel.get('state'), options); - } else { - fieldModel.set('state', 'candidate', options); - } - }); - } - - break; - } - - case 'closing': - options.reason = 'stop'; - this.get('fields').each(fieldModel => { - fieldModel.set({ - inTempStore: false, - state: 'inactive' - }, options); - }); - break; - } - }, - - _updateInTempStoreAttributes(entityModel, fieldModel) { - const current = fieldModel.get('state'); - const previous = fieldModel.previous('state'); - let fieldsInTempStore = entityModel.get('fieldsInTempStore'); - - if (current === 'saved') { - entityModel.set('inTempStore', true); - fieldModel.set('inTempStore', true); - fieldsInTempStore.push(fieldModel.get('fieldID')); - fieldsInTempStore = _.uniq(fieldsInTempStore); - entityModel.set('fieldsInTempStore', fieldsInTempStore); - } else if (current === 'candidate' && previous === 'inactive') { - fieldModel.set('inTempStore', _.intersection([fieldModel.get('fieldID')], fieldsInTempStore).length > 0); - } - }, - - fieldStateChange(fieldModel, state) { - const entityModel = this; - const fieldState = state; - - switch (this.get('state')) { - case 'closed': - case 'launching': - break; - - case 'opening': - _.defer(() => { - entityModel.set('state', 'opened', { - 'accept-field-states': Drupal.quickedit.app.readyFieldStates - }); - }); - - break; - - case 'opened': - if (fieldState === 'changed') { - entityModel.set('isDirty', true); - } else { - this._updateInTempStoreAttributes(entityModel, fieldModel); - } - - break; - - case 'committing': - { - if (fieldState === 'invalid') { - _.defer(() => { - entityModel.set('state', 'opened', { - reason: 'invalid' - }); - }); - } else { - this._updateInTempStoreAttributes(entityModel, fieldModel); - } - - const options = { - 'accept-field-states': Drupal.quickedit.app.readyFieldStates - }; - - if (entityModel.set('isCommitting', true, options)) { - entityModel.save({ - success() { - entityModel.set({ - state: 'deactivating', - isCommitting: false - }, { - saved: true - }); - }, - - error() { - entityModel.set('isCommitting', false); - entityModel.set('state', 'opened', { - reason: 'networkerror' - }); - const message = Drupal.t('Your changes to <q>@entity-title</q> could not be saved, either due to a website problem or a network connection problem.<br>Please try again.', { - '@entity-title': entityModel.get('label') - }); - Drupal.quickedit.util.networkErrorModal(Drupal.t('Network problem!'), message); - } - - }); - } - - break; - } - - case 'deactivating': - _.defer(() => { - entityModel.set('state', 'closing', { - 'accept-field-states': Drupal.quickedit.app.readyFieldStates - }); - }); - - break; - - case 'closing': - _.defer(() => { - entityModel.set('state', 'closed', { - 'accept-field-states': ['inactive'] - }); - }); - - break; - } - }, - - save(options) { - const entityModel = this; - const entitySaverAjax = Drupal.ajax({ - url: Drupal.url(`quickedit/entity/${entityModel.get('entityID')}`), - - error() { - options.error.call(entityModel); - } - - }); - - entitySaverAjax.commands.quickeditEntitySaved = function (ajax, response, status) { - entityModel.get('fields').each(fieldModel => { - fieldModel.set('inTempStore', false); - }); - entityModel.set('inTempStore', false); - entityModel.set('fieldsInTempStore', []); - - if (options.success) { - options.success.call(entityModel); - } - }; - - entitySaverAjax.options.headers = entitySaverAjax.options.headers || {}; - entitySaverAjax.options.headers['X-Drupal-Quickedit-CSRF-Token'] = drupalSettings.quickedit.csrf_token; - entitySaverAjax.execute(); - }, - - validate(attrs, options) { - const acceptedFieldStates = options['accept-field-states'] || []; - const currentState = this.get('state'); - const nextState = attrs.state; - - if (currentState !== nextState) { - if (_.indexOf(this.constructor.states, nextState) === -1) { - return `"${nextState}" is an invalid state`; - } - - if (!this._acceptStateChange(currentState, nextState, options)) { - return 'state change not accepted'; - } - - if (!this._fieldsHaveAcceptableStates(acceptedFieldStates)) { - return 'state change not accepted because fields are not in acceptable state'; - } - } - - const currentIsCommitting = this.get('isCommitting'); - const nextIsCommitting = attrs.isCommitting; - - if (currentIsCommitting === false && nextIsCommitting === true) { - if (!this._fieldsHaveAcceptableStates(acceptedFieldStates)) { - return 'isCommitting change not accepted because fields are not in acceptable state'; - } - } else if (currentIsCommitting === true && nextIsCommitting === true) { - return 'isCommitting is a mutex, hence only changes are allowed'; - } - }, - - _acceptStateChange(from, to, context) { - let accept = true; - - if (!this.constructor.followsStateSequence(from, to)) { - accept = false; - - if (from === 'closing' && to === 'closed') { - accept = true; - } else if (from === 'committing' && to === 'opened' && context.reason && (context.reason === 'invalid' || context.reason === 'networkerror')) { - accept = true; - } else if (from === 'deactivating' && to === 'opened' && context.confirming) { - accept = true; - } else if (from === 'opened' && to === 'deactivating' && context.confirmed) { - accept = true; - } - } - - return accept; - }, - - _fieldsHaveAcceptableStates(acceptedFieldStates) { - let accept = true; - - if (acceptedFieldStates.length > 0) { - const fieldStates = this.get('fields').pluck('state') || []; - - if (_.difference(fieldStates, acceptedFieldStates).length) { - accept = false; - } - } - - return accept; - }, - - destroy(options) { - Drupal.quickedit.BaseModel.prototype.destroy.call(this, options); - this.stopListening(); - this.get('fields').reset(); - }, - - sync() {} - - }, { - states: ['closed', 'launching', 'opening', 'opened', 'committing', 'deactivating', 'closing'], - - followsStateSequence(from, to) { - return _.indexOf(this.states, from) < _.indexOf(this.states, to); - } - - }); - Drupal.quickedit.EntityCollection = Backbone.Collection.extend({ - model: Drupal.quickedit.EntityModel - }); -})(_, jQuery, Backbone, Drupal); \ No newline at end of file diff --git a/core/modules/quickedit/js/models/FieldModel.es6.js b/core/modules/quickedit/js/models/FieldModel.es6.js deleted file mode 100644 index e4da0c42166f98a0b168f63ed3ebfa1f6923944c..0000000000000000000000000000000000000000 --- a/core/modules/quickedit/js/models/FieldModel.es6.js +++ /dev/null @@ -1,343 +0,0 @@ -/** - * @file - * A Backbone Model for the state of an in-place editable field in the DOM. - */ - -(function (_, Backbone, Drupal) { - Drupal.quickedit.FieldModel = Drupal.quickedit.BaseModel.extend( - /** @lends Drupal.quickedit.FieldModel# */ { - /** - * @type {object} - */ - defaults: /** @lends Drupal.quickedit.FieldModel# */ { - /** - * The DOM element that represents this field. It may seem bizarre to have - * a DOM element in a Backbone Model, but we need to be able to map fields - * in the DOM to FieldModels in memory. - */ - el: null, - - /** - * A field ID, of the form - * `<entity type>/<id>/<field name>/<language>/<view mode>` - * - * @example - * "node/1/field_tags/und/full" - */ - fieldID: null, - - /** - * The unique ID of this field within its entity instance on the page, of - * the form `<entity type>/<id>/<field name>/<language>/<view - * mode>[entity instance ID]`. - * - * @example - * "node/1/field_tags/und/full[0]" - */ - id: null, - - /** - * A {@link Drupal.quickedit.EntityModel}. Its "fields" attribute, which - * is a FieldCollection, is automatically updated to include this - * FieldModel. - */ - entity: null, - - /** - * This field's metadata as returned by the - * QuickEditController::metadata(). - */ - metadata: null, - - /** - * Callback function for validating changes between states. Receives the - * previous state, new state, context, and a callback. - */ - acceptStateChange: null, - - /** - * A logical field ID, of the form - * `<entity type>/<id>/<field name>/<language>`, i.e. the fieldID without - * the view mode, to be able to identify other instances of the same - * field on the page but rendered in a different view mode. - * - * @example - * "node/1/field_tags/und". - */ - logicalFieldID: null, - - // The attributes below are stateful. The ones above will never change - // during the life of a FieldModel instance. - - /** - * In-place editing state of this field. Defaults to the initial state. - * Possible values: {@link Drupal.quickedit.FieldModel.states}. - */ - state: 'inactive', - - /** - * The field is currently in the 'changed' state or one of the following - * states in which the field is still changed. - */ - isChanged: false, - - /** - * Is tracked by the EntityModel, is mirrored here solely for decorative - * purposes: so that FieldDecorationView.renderChanged() can react to it. - */ - inTempStore: false, - - /** - * The full HTML representation of this field (with the element that has - * the data-quickedit-field-id as the outer element). Used to propagate - * changes from this field to other instances of the same field storage. - */ - html: null, - - /** - * An object containing the full HTML representations (values) of other - * view modes (keys) of this field, for other instances of this field - * displayed in a different view mode. - */ - htmlForOtherViewModes: null, - }, - - /** - * State of an in-place editable field in the DOM. - * - * @constructs - * - * @augments Drupal.quickedit.BaseModel - * - * @param {object} options - * Options for the field model. - */ - initialize(options) { - // Store the original full HTML representation of this field. - this.set('html', options.el.outerHTML); - - // Enlist field automatically in the associated entity's field collection. - this.get('entity').get('fields').add(this); - - // Automatically generate the logical field ID. - this.set( - 'logicalFieldID', - this.get('fieldID').split('/').slice(0, 4).join('/'), - ); - - // Call Drupal.quickedit.BaseModel's initialize() method. - Drupal.quickedit.BaseModel.prototype.initialize.call(this, options); - }, - - /** - * Destroys the field model. - * - * @param {object} options - * Options for the field model. - */ - destroy(options) { - if (this.get('state') !== 'inactive') { - throw new Error( - 'FieldModel cannot be destroyed if it is not inactive state.', - ); - } - Drupal.quickedit.BaseModel.prototype.destroy.call(this, options); - }, - - /** - * {@inheritdoc} - */ - sync() { - // We don't use REST updates to sync. - }, - - /** - * Validate function for the field model. - * - * @param {object} attrs - * The attributes changes in the save or set call. - * @param {object} options - * An object with the following option: - * @param {string} [options.reason] - * A string that conveys a particular reason to allow for an exceptional - * state change. - * @param {Array} options.accept-field-states - * An array of strings that represent field states that the entities must - * be in to validate. For example, if `accept-field-states` is - * `['candidate', 'highlighted']`, then all the fields of the entity must - * be in either of these two states for the save or set call to - * validate and proceed. - * - * @return {string} - * A string to say something about the state of the field model. - */ - validate(attrs, options) { - const current = this.get('state'); - const next = attrs.state; - if (current !== next) { - // Ensure it's a valid state. - if (_.indexOf(this.constructor.states, next) === -1) { - return `"${next}" is an invalid state`; - } - // Check if the acceptStateChange callback accepts it. - if (!this.get('acceptStateChange')(current, next, options, this)) { - return 'state change not accepted'; - } - } - }, - - /** - * Extracts the entity ID from this field's ID. - * - * @return {string} - * An entity ID: a string of the format `<entity type>/<id>`. - */ - getEntityID() { - return this.get('fieldID').split('/').slice(0, 2).join('/'); - }, - - /** - * Extracts the view mode ID from this field's ID. - * - * @return {string} - * A view mode ID. - */ - getViewMode() { - return this.get('fieldID').split('/').pop(); - }, - - /** - * Find other instances of this field with different view modes. - * - * @return {Array} - * An array containing view mode IDs. - */ - findOtherViewModes() { - const currentField = this; - const otherViewModes = []; - Drupal.quickedit.collections.fields - // Find all instances of fields that display the same logical field - // (same entity, same field, just a different instance and maybe a - // different view mode). - .where({ logicalFieldID: currentField.get('logicalFieldID') }) - .forEach((field) => { - // Ignore the current field and other fields with the same view mode. - if ( - field !== currentField && - field.get('fieldID') !== currentField.get('fieldID') - ) { - otherViewModes.push(field.getViewMode()); - } - }); - return otherViewModes; - }, - }, - /** @lends Drupal.quickedit.FieldModel */ { - /** - * Sequence of all possible states a field can be in during quickediting. - * - * @type {Array.<string>} - */ - states: [ - // The field associated with this FieldModel is linked to an EntityModel; - // the user can choose to start in-place editing that entity (and - // consequently this field). No in-place editor (EditorView) is associated - // with this field, because this field is not being in-place edited. - // This is both the initial (not yet in-place editing) and the end state - // (finished in-place editing). - 'inactive', - // The user is in-place editing this entity, and this field is a - // candidate - // for in-place editing. In-place editor should not - // - Trigger: user. - // - Guarantees: entity is ready, in-place editor (EditorView) is - // associated with the field. - // - Expected behavior: visual indicators - // around the field indicate it is available for in-place editing, no - // in-place editor presented yet. - 'candidate', - // User is highlighting this field. - // - Trigger: user. - // - Guarantees: see 'candidate'. - // - Expected behavior: visual indicators to convey highlighting, in-place - // editing toolbar shows field's label. - 'highlighted', - // User has activated the in-place editing of this field; in-place editor - // is activating. - // - Trigger: user. - // - Guarantees: see 'candidate'. - // - Expected behavior: loading indicator, in-place editor is loading - // remote data (e.g. retrieve form from back-end). Upon retrieval of - // remote data, the in-place editor transitions the field's state to - // 'active'. - 'activating', - // In-place editor has finished loading remote data; ready for use. - // - Trigger: in-place editor. - // - Guarantees: see 'candidate'. - // - Expected behavior: in-place editor for the field is ready for use. - 'active', - // User has modified values in the in-place editor. - // - Trigger: user. - // - Guarantees: see 'candidate', plus in-place editor is ready for use. - // - Expected behavior: visual indicator of change. - 'changed', - // User is saving changed field data in in-place editor to - // PrivateTempStore. The save mechanism of the in-place editor is called. - // - Trigger: user. - // - Guarantees: see 'candidate' and 'active'. - // - Expected behavior: saving indicator, in-place editor is saving field - // data into PrivateTempStore. Upon successful saving (without - // validation errors), the in-place editor transitions the field's state - // to 'saved', but to 'invalid' upon failed saving (with validation - // errors). - 'saving', - // In-place editor has successfully saved the changed field. - // - Trigger: in-place editor. - // - Guarantees: see 'candidate' and 'active'. - // - Expected behavior: transition back to 'candidate' state because the - // deed is done. Then: 1) transition to 'inactive' to allow the field - // to be rerendered, 2) destroy the FieldModel (which also destroys - // attached views like the EditorView), 3) replace the existing field - // HTML with the existing HTML and 4) attach behaviors again so that the - // field becomes available again for in-place editing. - 'saved', - // In-place editor has failed to saved the changed field: there were - // validation errors. - // - Trigger: in-place editor. - // - Guarantees: see 'candidate' and 'active'. - // - Expected behavior: remain in 'invalid' state, let the user make more - // changes and then save it again, without validation errors. - 'invalid', - ], - - /** - * Indicates whether the 'from' state comes before the 'to' state. - * - * @param {string} from - * One of {@link Drupal.quickedit.FieldModel.states}. - * @param {string} to - * One of {@link Drupal.quickedit.FieldModel.states}. - * - * @return {bool} - * Whether the 'from' state comes before the 'to' state. - */ - followsStateSequence(from, to) { - return _.indexOf(this.states, from) < _.indexOf(this.states, to); - }, - }, - ); - - /** - * @constructor - * - * @augments Backbone.Collection - */ - Drupal.quickedit.FieldCollection = Backbone.Collection.extend( - /** @lends Drupal.quickedit.FieldCollection */ { - /** - * @type {Drupal.quickedit.FieldModel} - */ - model: Drupal.quickedit.FieldModel, - }, - ); -})(_, Backbone, Drupal); diff --git a/core/modules/quickedit/js/models/FieldModel.js b/core/modules/quickedit/js/models/FieldModel.js deleted file mode 100644 index 514531df2c8398aad79e29d90cc1338caa337874..0000000000000000000000000000000000000000 --- a/core/modules/quickedit/js/models/FieldModel.js +++ /dev/null @@ -1,89 +0,0 @@ -/** -* DO NOT EDIT THIS FILE. -* See the following change record for more information, -* https://www.drupal.org/node/2815083 -* @preserve -**/ - -(function (_, Backbone, Drupal) { - Drupal.quickedit.FieldModel = Drupal.quickedit.BaseModel.extend({ - defaults: { - el: null, - fieldID: null, - id: null, - entity: null, - metadata: null, - acceptStateChange: null, - logicalFieldID: null, - state: 'inactive', - isChanged: false, - inTempStore: false, - html: null, - htmlForOtherViewModes: null - }, - - initialize(options) { - this.set('html', options.el.outerHTML); - this.get('entity').get('fields').add(this); - this.set('logicalFieldID', this.get('fieldID').split('/').slice(0, 4).join('/')); - Drupal.quickedit.BaseModel.prototype.initialize.call(this, options); - }, - - destroy(options) { - if (this.get('state') !== 'inactive') { - throw new Error('FieldModel cannot be destroyed if it is not inactive state.'); - } - - Drupal.quickedit.BaseModel.prototype.destroy.call(this, options); - }, - - sync() {}, - - validate(attrs, options) { - const current = this.get('state'); - const next = attrs.state; - - if (current !== next) { - if (_.indexOf(this.constructor.states, next) === -1) { - return `"${next}" is an invalid state`; - } - - if (!this.get('acceptStateChange')(current, next, options, this)) { - return 'state change not accepted'; - } - } - }, - - getEntityID() { - return this.get('fieldID').split('/').slice(0, 2).join('/'); - }, - - getViewMode() { - return this.get('fieldID').split('/').pop(); - }, - - findOtherViewModes() { - const currentField = this; - const otherViewModes = []; - Drupal.quickedit.collections.fields.where({ - logicalFieldID: currentField.get('logicalFieldID') - }).forEach(field => { - if (field !== currentField && field.get('fieldID') !== currentField.get('fieldID')) { - otherViewModes.push(field.getViewMode()); - } - }); - return otherViewModes; - } - - }, { - states: ['inactive', 'candidate', 'highlighted', 'activating', 'active', 'changed', 'saving', 'saved', 'invalid'], - - followsStateSequence(from, to) { - return _.indexOf(this.states, from) < _.indexOf(this.states, to); - } - - }); - Drupal.quickedit.FieldCollection = Backbone.Collection.extend({ - model: Drupal.quickedit.FieldModel - }); -})(_, Backbone, Drupal); \ No newline at end of file diff --git a/core/modules/quickedit/js/quickedit.es6.js b/core/modules/quickedit/js/quickedit.es6.js deleted file mode 100644 index d399a1323635a5c79cb8193d2e3bf20055e61d79..0000000000000000000000000000000000000000 --- a/core/modules/quickedit/js/quickedit.es6.js +++ /dev/null @@ -1,752 +0,0 @@ -/** - * @file - * Attaches behavior for the Quick Edit module. - * - * Everything happens asynchronously, to allow for: - * - dynamically rendered contextual links - * - asynchronously retrieved (and cached) per-field in-place editing metadata - * - asynchronous setup of in-place editable field and "Quick edit" link. - * - * To achieve this, there are several queues: - * - fieldsMetadataQueue: fields whose metadata still needs to be fetched. - * - fieldsAvailableQueue: queue of fields whose metadata is known, and for - * which it has been confirmed that the user has permission to edit them. - * However, FieldModels will only be created for them once there's a - * contextual link for their entity: when it's possible to initiate editing. - * - contextualLinksQueue: queue of contextual links on entities for which it - * is not yet known whether the user has permission to edit at >=1 of them. - */ - -(function ($, _, Backbone, Drupal, drupalSettings, JSON, storage) { - const options = $.extend( - drupalSettings.quickedit, - // Merge strings on top of drupalSettings so that they are not mutable. - { - strings: { - quickEdit: Drupal.t('Quick edit'), - }, - }, - ); - - /** - * Tracks fields without metadata. Contains objects with the following keys: - * - DOM el - * - String fieldID - * - String entityID - */ - let fieldsMetadataQueue = []; - - /** - * Tracks fields ready for use. Contains objects with the following keys: - * - DOM el - * - String fieldID - * - String entityID - */ - let fieldsAvailableQueue = []; - - /** - * Tracks contextual links on entities. Contains objects with the following - * keys: - * - String entityID - * - DOM el - * - DOM region - */ - let contextualLinksQueue = []; - - /** - * Tracks how many instances exist for each unique entity. Contains key-value - * pairs: - * - String entityID - * - Number count - */ - const entityInstancesTracker = {}; - - /** - * Initialize the Quick Edit app. - * - * @param {Element} bodyElement - * This document's body element. - */ - function initQuickEdit(bodyElement) { - Drupal.quickedit.collections.entities = - new Drupal.quickedit.EntityCollection(); - Drupal.quickedit.collections.fields = - new Drupal.quickedit.FieldCollection(); - - // Instantiate AppModel (application state) and AppView, which is the - // controller of the whole in-place editing experience. - Drupal.quickedit.app = new Drupal.quickedit.AppView({ - el: bodyElement, - model: new Drupal.quickedit.AppModel(), - entitiesCollection: Drupal.quickedit.collections.entities, - fieldsCollection: Drupal.quickedit.collections.fields, - }); - } - - /** - * Assigns the entity an instance ID. - * - * @param {HTMLElement} entityElement - * A Drupal Entity API entity's DOM element with a data-quickedit-entity-id - * attribute. - */ - function processEntity(entityElement) { - const entityID = entityElement.getAttribute('data-quickedit-entity-id'); - if (!entityInstancesTracker.hasOwnProperty(entityID)) { - entityInstancesTracker[entityID] = 0; - } else { - entityInstancesTracker[entityID]++; - } - - // Set the calculated entity instance ID for this element. - const entityInstanceID = entityInstancesTracker[entityID]; - entityElement.setAttribute( - 'data-quickedit-entity-instance-id', - entityInstanceID, - ); - } - - /** - * Initialize a field; create FieldModel. - * - * @param {HTMLElement} fieldElement - * The field's DOM element. - * @param {string} fieldID - * The field's ID. - * @param {string} entityID - * The field's entity's ID. - * @param {string} entityInstanceID - * The field's entity's instance ID. - */ - function initializeField(fieldElement, fieldID, entityID, entityInstanceID) { - const entity = Drupal.quickedit.collections.entities.findWhere({ - entityID, - entityInstanceID, - }); - - $(fieldElement).addClass('quickedit-field'); - - // The FieldModel stores the state of an in-place editable entity field. - const field = new Drupal.quickedit.FieldModel({ - el: fieldElement, - fieldID, - id: `${fieldID}[${entity.get('entityInstanceID')}]`, - entity, - metadata: Drupal.quickedit.metadata.get(fieldID), - acceptStateChange: _.bind( - Drupal.quickedit.app.acceptEditorStateChange, - Drupal.quickedit.app, - ), - }); - - // Track all fields on the page. - Drupal.quickedit.collections.fields.add(field); - } - - /** - * Loads missing in-place editor's attachments (JavaScript and CSS files). - * - * Missing in-place editors are those whose fields are actively being used on - * the page but don't have. - * - * @param {function} callback - * Callback function to be called when the missing in-place editors (if any) - * have been inserted into the DOM. i.e. they may still be loading. - */ - function loadMissingEditors(callback) { - const loadedEditors = _.keys(Drupal.quickedit.editors); - let missingEditors = []; - Drupal.quickedit.collections.fields.each((fieldModel) => { - const metadata = Drupal.quickedit.metadata.get(fieldModel.get('fieldID')); - if (metadata.access && _.indexOf(loadedEditors, metadata.editor) === -1) { - missingEditors.push(metadata.editor); - // Set a stub, to prevent subsequent calls to loadMissingEditors() from - // loading the same in-place editor again. Loading an in-place editor - // requires talking to a server, to download its JavaScript, then - // executing its JavaScript, and only then its Drupal.quickedit.editors - // entry will be set. - Drupal.quickedit.editors[metadata.editor] = false; - } - }); - missingEditors = _.uniq(missingEditors); - if (missingEditors.length === 0) { - callback(); - return; - } - - // @see https://www.drupal.org/node/2029999. - // Create a Drupal.Ajax instance to load the form. - const loadEditorsAjax = Drupal.ajax({ - url: Drupal.url('quickedit/attachments'), - submit: { 'editors[]': missingEditors }, - }); - // Trigger the AJAX request, which will should return AJAX commands to - // insert any missing attachments. - loadEditorsAjax.execute().then(callback); - } - - /** - * Attempts to set up a "Quick edit" link and corresponding EntityModel. - * - * @param {object} contextualLink - * An object with the following properties: - * - String entityID: a Quick Edit entity identifier, e.g. "node/1" or - * "block_content/5". - * - String entityInstanceID: a Quick Edit entity instance identifier, - * e.g. 0, 1 or n (depending on whether it's the first, second, or n+1st - * instance of this entity). - * - DOM el: element pointing to the contextual links placeholder for this - * entity. - * - DOM region: element pointing to the contextual region of this entity. - * - * @return {bool} - * Returns true when a contextual the given contextual link metadata can be - * removed from the queue (either because the contextual link has been set - * up or because it is certain that in-place editing is not allowed for any - * of its fields). Returns false otherwise. - */ - function initializeEntityContextualLink(contextualLink) { - const metadata = Drupal.quickedit.metadata; - // Check if the user has permission to edit at least one of them. - function hasFieldWithPermission(fieldIDs) { - for (let i = 0; i < fieldIDs.length; i++) { - const fieldID = fieldIDs[i]; - if (metadata.get(fieldID, 'access') === true) { - return true; - } - } - return false; - } - - // Checks if the metadata for all given field IDs exists. - function allMetadataExists(fieldIDs) { - return fieldIDs.length === metadata.intersection(fieldIDs).length; - } - - // Find all fields for this entity instance and collect their field IDs. - const fields = _.where(fieldsAvailableQueue, { - entityID: contextualLink.entityID, - entityInstanceID: contextualLink.entityInstanceID, - }); - const fieldIDs = _.pluck(fields, 'fieldID'); - - // No fields found yet. - if (fieldIDs.length === 0) { - return false; - } - // The entity for the given contextual link contains at least one field that - // the current user may edit in-place; instantiate EntityModel, - // EntityDecorationView and ContextualLinkView. - if (hasFieldWithPermission(fieldIDs)) { - const entityModel = new Drupal.quickedit.EntityModel({ - el: contextualLink.region, - entityID: contextualLink.entityID, - entityInstanceID: contextualLink.entityInstanceID, - id: `${contextualLink.entityID}[${contextualLink.entityInstanceID}]`, - label: Drupal.quickedit.metadata.get(contextualLink.entityID, 'label'), - }); - Drupal.quickedit.collections.entities.add(entityModel); - // Create an EntityDecorationView associated with the root DOM node of the - // entity. - const entityDecorationView = new Drupal.quickedit.EntityDecorationView({ - el: contextualLink.region, - model: entityModel, - }); - entityModel.set('entityDecorationView', entityDecorationView); - - // Initialize all queued fields within this entity (creates FieldModels). - _.each(fields, (field) => { - initializeField( - field.el, - field.fieldID, - contextualLink.entityID, - contextualLink.entityInstanceID, - ); - }); - fieldsAvailableQueue = _.difference(fieldsAvailableQueue, fields); - - // Initialization should only be called once. Use Underscore's once method - // to get a one-time use version of the function. - const initContextualLink = _.once(() => { - const $links = $(contextualLink.el).find('.contextual-links'); - const contextualLinkView = new Drupal.quickedit.ContextualLinkView( - $.extend( - { - el: $( - '<li class="quickedit"><a href="" role="button" aria-pressed="false"></a></li>', - ).prependTo($links), - model: entityModel, - appModel: Drupal.quickedit.app.model, - }, - options, - ), - ); - entityModel.set('contextualLinkView', contextualLinkView); - }); - - // Set up ContextualLinkView after loading any missing in-place editors. - loadMissingEditors(initContextualLink); - - return true; - } - // There was not at least one field that the current user may edit in-place, - // even though the metadata for all fields within this entity is available. - if (allMetadataExists(fieldIDs)) { - return true; - } - - return false; - } - - /** - * Extracts the entity ID from a field ID. - * - * @param {string} fieldID - * A field ID: a string of the format - * `<entity type>/<id>/<field name>/<language>/<view mode>`. - * - * @return {string} - * An entity ID: a string of the format `<entity type>/<id>`. - */ - function extractEntityID(fieldID) { - return fieldID.split('/').slice(0, 2).join('/'); - } - - /** - * Fetch the field's metadata; queue or initialize it (if EntityModel exists). - * - * @param {HTMLElement} fieldElement - * A Drupal Field API field's DOM element with a data-quickedit-field-id - * attribute. - */ - function processField(fieldElement) { - const metadata = Drupal.quickedit.metadata; - const fieldID = fieldElement.getAttribute('data-quickedit-field-id'); - const entityID = extractEntityID(fieldID); - // Figure out the instance ID by looking at the ancestor - // [data-quickedit-entity-id] element's data-quickedit-entity-instance-id - // attribute. - const entityElementSelector = `[data-quickedit-entity-id="${entityID}"]`; - const $entityElement = $(entityElementSelector); - - // If there are no elements returned from `entityElementSelector` - // throw an error. Check the browser console for this message. - if (!$entityElement.length) { - throw new Error( - `Quick Edit could not associate the rendered entity field markup (with [data-quickedit-field-id="${fieldID}"]) with the corresponding rendered entity markup: no parent DOM node found with [data-quickedit-entity-id="${entityID}"]. This is typically caused by the theme's template for this entity type forgetting to print the attributes.`, - ); - } - let entityElement = $(fieldElement).closest($entityElement); - - // In the case of a full entity view page, the entity title is rendered - // outside of "the entity DOM node": it's rendered as the page title. So in - // this case, we find the lowest common parent element (deepest in the tree) - // and consider that the entity element. - if (entityElement.length === 0) { - const $lowestCommonParent = $entityElement - .parents() - .has(fieldElement) - .first(); - entityElement = $lowestCommonParent.find($entityElement); - } - const entityInstanceID = entityElement - .get(0) - .getAttribute('data-quickedit-entity-instance-id'); - - // Early-return if metadata for this field is missing. - if (!metadata.has(fieldID)) { - fieldsMetadataQueue.push({ - el: fieldElement, - fieldID, - entityID, - entityInstanceID, - }); - return; - } - // Early-return if the user is not allowed to in-place edit this field. - if (metadata.get(fieldID, 'access') !== true) { - return; - } - - // If an EntityModel for this field already exists (and hence also a "Quick - // edit" contextual link), then initialize it immediately. - if ( - Drupal.quickedit.collections.entities.findWhere({ - entityID, - entityInstanceID, - }) - ) { - initializeField(fieldElement, fieldID, entityID, entityInstanceID); - } - // Otherwise: queue the field. It is now available to be set up when its - // corresponding entity becomes in-place editable. - else { - fieldsAvailableQueue.push({ - el: fieldElement, - fieldID, - entityID, - entityInstanceID, - }); - } - } - - /** - * Delete models and queue items that are contained within a given context. - * - * Deletes any contained EntityModels (plus their associated FieldModels and - * ContextualLinkView) and FieldModels, as well as the corresponding queues. - * - * After EntityModels, FieldModels must also be deleted, because it is - * possible in Drupal for a field DOM element to exist outside of the entity - * DOM element, e.g. when viewing the full node, the title of the node is not - * rendered within the node (the entity) but as the page title. - * - * Note: this will not delete an entity that is actively being in-place - * edited. - * - * @param {jQuery} $context - * The context within which to delete. - */ - function deleteContainedModelsAndQueues($context) { - $context - .find('[data-quickedit-entity-id]') - .addBack('[data-quickedit-entity-id]') - .each((index, entityElement) => { - // Delete entity model. - const entityModel = Drupal.quickedit.collections.entities.findWhere({ - el: entityElement, - }); - if (entityModel) { - const contextualLinkView = entityModel.get('contextualLinkView'); - contextualLinkView.undelegateEvents(); - contextualLinkView.remove(); - // Remove the EntityDecorationView. - entityModel.get('entityDecorationView').remove(); - // Destroy the EntityModel; this will also destroy its FieldModels. - entityModel.destroy(); - } - - // Filter queue. - function hasOtherRegion(contextualLink) { - return contextualLink.region !== entityElement; - } - - contextualLinksQueue = _.filter(contextualLinksQueue, hasOtherRegion); - }); - - $context - .find('[data-quickedit-field-id]') - .addBack('[data-quickedit-field-id]') - .each((index, fieldElement) => { - // Delete field models. - Drupal.quickedit.collections.fields - .chain() - .filter((fieldModel) => fieldModel.get('el') === fieldElement) - .invoke('destroy'); - - // Filter queues. - function hasOtherFieldElement(field) { - return field.el !== fieldElement; - } - - fieldsMetadataQueue = _.filter( - fieldsMetadataQueue, - hasOtherFieldElement, - ); - fieldsAvailableQueue = _.filter( - fieldsAvailableQueue, - hasOtherFieldElement, - ); - }); - } - - /** - * Fetches metadata for fields whose metadata is missing. - * - * Fields whose metadata is missing are tracked at fieldsMetadataQueue. - * - * @param {function} callback - * A callback function that receives field elements whose metadata will just - * have been fetched. - */ - function fetchMissingMetadata(callback) { - if (fieldsMetadataQueue.length) { - const fieldIDs = _.pluck(fieldsMetadataQueue, 'fieldID'); - const fieldElementsWithoutMetadata = _.pluck(fieldsMetadataQueue, 'el'); - let entityIDs = _.uniq(_.pluck(fieldsMetadataQueue, 'entityID'), true); - // Ensure we only request entityIDs for which we don't have metadata yet. - entityIDs = _.difference( - entityIDs, - Drupal.quickedit.metadata.intersection(entityIDs), - ); - fieldsMetadataQueue = []; - - $.ajax({ - url: Drupal.url('quickedit/metadata'), - type: 'POST', - data: { - 'fields[]': fieldIDs, - 'entities[]': entityIDs, - }, - dataType: 'json', - success(results) { - // Store the metadata. - _.each(results, (fieldMetadata, fieldID) => { - Drupal.quickedit.metadata.add(fieldID, fieldMetadata); - }); - - callback(fieldElementsWithoutMetadata); - }, - }); - } - } - - /** - * - * @type {Drupal~behavior} - */ - Drupal.behaviors.quickedit = { - attach(context) { - // Initialize the Quick Edit app once per page load. - once('quickedit-init', 'body').forEach(initQuickEdit); - - // Find all in-place editable fields, if any. - const fields = once('quickedit', '[data-quickedit-field-id]', context); - if (fields.length === 0) { - return; - } - - // Process each entity element: identical entities that appear multiple - // times will get a numeric identifier, starting at 0. - once('quickedit', '[data-quickedit-entity-id]', context).forEach( - processEntity, - ); - - // Process each field element: queue to be used or to fetch metadata. - // When a field is being rerendered after editing, it will be processed - // immediately. New fields will be unable to be processed immediately, - // but will instead be queued to have their metadata fetched, which occurs - // below in fetchMissingMetaData(). - fields.forEach(processField); - - // Entities and fields on the page have been detected, try to set up the - // contextual links for those entities that already have the necessary - // meta- data in the client-side cache. - contextualLinksQueue = _.filter( - contextualLinksQueue, - (contextualLink) => !initializeEntityContextualLink(contextualLink), - ); - - // Fetch metadata for any fields that are queued to retrieve it. - fetchMissingMetadata((fieldElementsWithFreshMetadata) => { - // Metadata has been fetched, reprocess fields whose metadata was - // missing. - _.each(fieldElementsWithFreshMetadata, processField); - - // Metadata has been fetched, try to set up more contextual links now. - contextualLinksQueue = _.filter( - contextualLinksQueue, - (contextualLink) => !initializeEntityContextualLink(contextualLink), - ); - }); - }, - detach(context, settings, trigger) { - if (trigger === 'unload') { - deleteContainedModelsAndQueues($(context)); - } - }, - }; - - /** - * - * @namespace - */ - Drupal.quickedit = { - /** - * A {@link Drupal.quickedit.AppView} instance. - */ - app: null, - - /** - * @type {object} - * - * @prop {Array.<Drupal.quickedit.EntityModel>} entities - * @prop {Array.<Drupal.quickedit.FieldModel>} fields - */ - collections: { - // All in-place editable entities (Drupal.quickedit.EntityModel) on the - // page. - entities: null, - // All in-place editable fields (Drupal.quickedit.FieldModel) on the page. - fields: null, - }, - - /** - * In-place editors will register themselves in this object. - * - * @namespace - */ - editors: {}, - - /** - * Per-field metadata that indicates whether in-place editing is allowed, - * which in-place editor should be used, etc. - * - * @namespace - */ - metadata: { - /** - * Check if a field exists in storage. - * - * @param {string} fieldID - * The field id to check. - * - * @return {bool} - * Whether it was found or not. - */ - has(fieldID) { - return storage.getItem(this._prefixFieldID(fieldID)) !== null; - }, - - /** - * Add metadata to a field id. - * - * @param {string} fieldID - * The field ID to add data to. - * @param {object} metadata - * Metadata to add. - */ - add(fieldID, metadata) { - storage.setItem(this._prefixFieldID(fieldID), JSON.stringify(metadata)); - }, - - /** - * Get a key from a field id. - * - * @param {string} fieldID - * The field ID to check. - * @param {string} [key] - * The key to check. If empty, will return all metadata. - * - * @return {object|*} - * The value for the key, if defined. Otherwise will return all metadata - * for the specified field id. - * - */ - get(fieldID, key) { - const metadata = JSON.parse( - storage.getItem(this._prefixFieldID(fieldID)), - ); - return typeof key === 'undefined' ? metadata : metadata[key]; - }, - - /** - * Prefix the field id. - * - * @param {string} fieldID - * The field id to prefix. - * - * @return {string} - * A prefixed field id. - */ - _prefixFieldID(fieldID) { - return `Drupal.quickedit.metadata.${fieldID}`; - }, - - /** - * Unprefix the field id. - * - * @param {string} fieldID - * The field id to unprefix. - * - * @return {string} - * An unprefixed field id. - */ - _unprefixFieldID(fieldID) { - // Strip "Drupal.quickedit.metadata.", which is 26 characters long. - return fieldID.substring(26); - }, - - /** - * Intersection calculation. - * - * @param {Array} fieldIDs - * An array of field ids to compare to prefix field id. - * - * @return {Array} - * The intersection found. - */ - intersection(fieldIDs) { - const prefixedFieldIDs = _.map(fieldIDs, this._prefixFieldID); - const intersection = _.intersection( - prefixedFieldIDs, - _.keys(sessionStorage), - ); - return _.map(intersection, this._unprefixFieldID); - }, - }, - }; - - // Clear the Quick Edit metadata cache whenever the current user's set of - // permissions changes. - const permissionsHashKey = - Drupal.quickedit.metadata._prefixFieldID('permissionsHash'); - const permissionsHashValue = storage.getItem(permissionsHashKey); - const permissionsHash = drupalSettings.user.permissionsHash; - if (permissionsHashValue !== permissionsHash) { - if (typeof permissionsHash === 'string') { - _.chain(storage) - .keys() - .each((key) => { - if (key.substring(0, 26) === 'Drupal.quickedit.metadata.') { - storage.removeItem(key); - } - }); - } - storage.setItem(permissionsHashKey, permissionsHash); - } - - /** - * Detect contextual links on entities annotated by quickedit. - * - * Queue contextual links to be processed. - * - * @param {jQuery.Event} event - * The `drupalContextualLinkAdded` event. - * @param {object} data - * An object containing the data relevant to the event. - * - * @listens event:drupalContextualLinkAdded - */ - $(document).on('drupalContextualLinkAdded', (event, data) => { - if (data.$region.is('[data-quickedit-entity-id]')) { - // If the contextual link is cached on the client side, an entity instance - // will not yet have been assigned. So assign one. - if (!data.$region.is('[data-quickedit-entity-instance-id]')) { - once('quickedit', data.$region); - processEntity(data.$region.get(0)); - } - const contextualLink = { - entityID: data.$region.attr('data-quickedit-entity-id'), - entityInstanceID: data.$region.attr( - 'data-quickedit-entity-instance-id', - ), - el: data.$el[0], - region: data.$region[0], - }; - // Set up contextual links for this, otherwise queue it to be set up - // later. - if (!initializeEntityContextualLink(contextualLink)) { - contextualLinksQueue.push(contextualLink); - } - } - }); -})( - jQuery, - _, - Backbone, - Drupal, - drupalSettings, - window.JSON, - window.sessionStorage, -); diff --git a/core/modules/quickedit/js/quickedit.js b/core/modules/quickedit/js/quickedit.js deleted file mode 100644 index 91d07d9acca7ff6b4d5d637c8dedd2c2915b15cb..0000000000000000000000000000000000000000 --- a/core/modules/quickedit/js/quickedit.js +++ /dev/null @@ -1,378 +0,0 @@ -/** -* DO NOT EDIT THIS FILE. -* See the following change record for more information, -* https://www.drupal.org/node/2815083 -* @preserve -**/ - -(function ($, _, Backbone, Drupal, drupalSettings, JSON, storage) { - const options = $.extend(drupalSettings.quickedit, { - strings: { - quickEdit: Drupal.t('Quick edit') - } - }); - let fieldsMetadataQueue = []; - let fieldsAvailableQueue = []; - let contextualLinksQueue = []; - const entityInstancesTracker = {}; - - function initQuickEdit(bodyElement) { - Drupal.quickedit.collections.entities = new Drupal.quickedit.EntityCollection(); - Drupal.quickedit.collections.fields = new Drupal.quickedit.FieldCollection(); - Drupal.quickedit.app = new Drupal.quickedit.AppView({ - el: bodyElement, - model: new Drupal.quickedit.AppModel(), - entitiesCollection: Drupal.quickedit.collections.entities, - fieldsCollection: Drupal.quickedit.collections.fields - }); - } - - function processEntity(entityElement) { - const entityID = entityElement.getAttribute('data-quickedit-entity-id'); - - if (!entityInstancesTracker.hasOwnProperty(entityID)) { - entityInstancesTracker[entityID] = 0; - } else { - entityInstancesTracker[entityID]++; - } - - const entityInstanceID = entityInstancesTracker[entityID]; - entityElement.setAttribute('data-quickedit-entity-instance-id', entityInstanceID); - } - - function initializeField(fieldElement, fieldID, entityID, entityInstanceID) { - const entity = Drupal.quickedit.collections.entities.findWhere({ - entityID, - entityInstanceID - }); - $(fieldElement).addClass('quickedit-field'); - const field = new Drupal.quickedit.FieldModel({ - el: fieldElement, - fieldID, - id: `${fieldID}[${entity.get('entityInstanceID')}]`, - entity, - metadata: Drupal.quickedit.metadata.get(fieldID), - acceptStateChange: _.bind(Drupal.quickedit.app.acceptEditorStateChange, Drupal.quickedit.app) - }); - Drupal.quickedit.collections.fields.add(field); - } - - function loadMissingEditors(callback) { - const loadedEditors = _.keys(Drupal.quickedit.editors); - - let missingEditors = []; - Drupal.quickedit.collections.fields.each(fieldModel => { - const metadata = Drupal.quickedit.metadata.get(fieldModel.get('fieldID')); - - if (metadata.access && _.indexOf(loadedEditors, metadata.editor) === -1) { - missingEditors.push(metadata.editor); - Drupal.quickedit.editors[metadata.editor] = false; - } - }); - missingEditors = _.uniq(missingEditors); - - if (missingEditors.length === 0) { - callback(); - return; - } - - const loadEditorsAjax = Drupal.ajax({ - url: Drupal.url('quickedit/attachments'), - submit: { - 'editors[]': missingEditors - } - }); - loadEditorsAjax.execute().then(callback); - } - - function initializeEntityContextualLink(contextualLink) { - const metadata = Drupal.quickedit.metadata; - - function hasFieldWithPermission(fieldIDs) { - for (let i = 0; i < fieldIDs.length; i++) { - const fieldID = fieldIDs[i]; - - if (metadata.get(fieldID, 'access') === true) { - return true; - } - } - - return false; - } - - function allMetadataExists(fieldIDs) { - return fieldIDs.length === metadata.intersection(fieldIDs).length; - } - - const fields = _.where(fieldsAvailableQueue, { - entityID: contextualLink.entityID, - entityInstanceID: contextualLink.entityInstanceID - }); - - const fieldIDs = _.pluck(fields, 'fieldID'); - - if (fieldIDs.length === 0) { - return false; - } - - if (hasFieldWithPermission(fieldIDs)) { - const entityModel = new Drupal.quickedit.EntityModel({ - el: contextualLink.region, - entityID: contextualLink.entityID, - entityInstanceID: contextualLink.entityInstanceID, - id: `${contextualLink.entityID}[${contextualLink.entityInstanceID}]`, - label: Drupal.quickedit.metadata.get(contextualLink.entityID, 'label') - }); - Drupal.quickedit.collections.entities.add(entityModel); - const entityDecorationView = new Drupal.quickedit.EntityDecorationView({ - el: contextualLink.region, - model: entityModel - }); - entityModel.set('entityDecorationView', entityDecorationView); - - _.each(fields, field => { - initializeField(field.el, field.fieldID, contextualLink.entityID, contextualLink.entityInstanceID); - }); - - fieldsAvailableQueue = _.difference(fieldsAvailableQueue, fields); - - const initContextualLink = _.once(() => { - const $links = $(contextualLink.el).find('.contextual-links'); - const contextualLinkView = new Drupal.quickedit.ContextualLinkView($.extend({ - el: $('<li class="quickedit"><a href="" role="button" aria-pressed="false"></a></li>').prependTo($links), - model: entityModel, - appModel: Drupal.quickedit.app.model - }, options)); - entityModel.set('contextualLinkView', contextualLinkView); - }); - - loadMissingEditors(initContextualLink); - return true; - } - - if (allMetadataExists(fieldIDs)) { - return true; - } - - return false; - } - - function extractEntityID(fieldID) { - return fieldID.split('/').slice(0, 2).join('/'); - } - - function processField(fieldElement) { - const metadata = Drupal.quickedit.metadata; - const fieldID = fieldElement.getAttribute('data-quickedit-field-id'); - const entityID = extractEntityID(fieldID); - const entityElementSelector = `[data-quickedit-entity-id="${entityID}"]`; - const $entityElement = $(entityElementSelector); - - if (!$entityElement.length) { - throw new Error(`Quick Edit could not associate the rendered entity field markup (with [data-quickedit-field-id="${fieldID}"]) with the corresponding rendered entity markup: no parent DOM node found with [data-quickedit-entity-id="${entityID}"]. This is typically caused by the theme's template for this entity type forgetting to print the attributes.`); - } - - let entityElement = $(fieldElement).closest($entityElement); - - if (entityElement.length === 0) { - const $lowestCommonParent = $entityElement.parents().has(fieldElement).first(); - entityElement = $lowestCommonParent.find($entityElement); - } - - const entityInstanceID = entityElement.get(0).getAttribute('data-quickedit-entity-instance-id'); - - if (!metadata.has(fieldID)) { - fieldsMetadataQueue.push({ - el: fieldElement, - fieldID, - entityID, - entityInstanceID - }); - return; - } - - if (metadata.get(fieldID, 'access') !== true) { - return; - } - - if (Drupal.quickedit.collections.entities.findWhere({ - entityID, - entityInstanceID - })) { - initializeField(fieldElement, fieldID, entityID, entityInstanceID); - } else { - fieldsAvailableQueue.push({ - el: fieldElement, - fieldID, - entityID, - entityInstanceID - }); - } - } - - function deleteContainedModelsAndQueues($context) { - $context.find('[data-quickedit-entity-id]').addBack('[data-quickedit-entity-id]').each((index, entityElement) => { - const entityModel = Drupal.quickedit.collections.entities.findWhere({ - el: entityElement - }); - - if (entityModel) { - const contextualLinkView = entityModel.get('contextualLinkView'); - contextualLinkView.undelegateEvents(); - contextualLinkView.remove(); - entityModel.get('entityDecorationView').remove(); - entityModel.destroy(); - } - - function hasOtherRegion(contextualLink) { - return contextualLink.region !== entityElement; - } - - contextualLinksQueue = _.filter(contextualLinksQueue, hasOtherRegion); - }); - $context.find('[data-quickedit-field-id]').addBack('[data-quickedit-field-id]').each((index, fieldElement) => { - Drupal.quickedit.collections.fields.chain().filter(fieldModel => fieldModel.get('el') === fieldElement).invoke('destroy'); - - function hasOtherFieldElement(field) { - return field.el !== fieldElement; - } - - fieldsMetadataQueue = _.filter(fieldsMetadataQueue, hasOtherFieldElement); - fieldsAvailableQueue = _.filter(fieldsAvailableQueue, hasOtherFieldElement); - }); - } - - function fetchMissingMetadata(callback) { - if (fieldsMetadataQueue.length) { - const fieldIDs = _.pluck(fieldsMetadataQueue, 'fieldID'); - - const fieldElementsWithoutMetadata = _.pluck(fieldsMetadataQueue, 'el'); - - let entityIDs = _.uniq(_.pluck(fieldsMetadataQueue, 'entityID'), true); - - entityIDs = _.difference(entityIDs, Drupal.quickedit.metadata.intersection(entityIDs)); - fieldsMetadataQueue = []; - $.ajax({ - url: Drupal.url('quickedit/metadata'), - type: 'POST', - data: { - 'fields[]': fieldIDs, - 'entities[]': entityIDs - }, - dataType: 'json', - - success(results) { - _.each(results, (fieldMetadata, fieldID) => { - Drupal.quickedit.metadata.add(fieldID, fieldMetadata); - }); - - callback(fieldElementsWithoutMetadata); - } - - }); - } - } - - Drupal.behaviors.quickedit = { - attach(context) { - once('quickedit-init', 'body').forEach(initQuickEdit); - const fields = once('quickedit', '[data-quickedit-field-id]', context); - - if (fields.length === 0) { - return; - } - - once('quickedit', '[data-quickedit-entity-id]', context).forEach(processEntity); - fields.forEach(processField); - contextualLinksQueue = _.filter(contextualLinksQueue, contextualLink => !initializeEntityContextualLink(contextualLink)); - fetchMissingMetadata(fieldElementsWithFreshMetadata => { - _.each(fieldElementsWithFreshMetadata, processField); - - contextualLinksQueue = _.filter(contextualLinksQueue, contextualLink => !initializeEntityContextualLink(contextualLink)); - }); - }, - - detach(context, settings, trigger) { - if (trigger === 'unload') { - deleteContainedModelsAndQueues($(context)); - } - } - - }; - Drupal.quickedit = { - app: null, - collections: { - entities: null, - fields: null - }, - editors: {}, - metadata: { - has(fieldID) { - return storage.getItem(this._prefixFieldID(fieldID)) !== null; - }, - - add(fieldID, metadata) { - storage.setItem(this._prefixFieldID(fieldID), JSON.stringify(metadata)); - }, - - get(fieldID, key) { - const metadata = JSON.parse(storage.getItem(this._prefixFieldID(fieldID))); - return typeof key === 'undefined' ? metadata : metadata[key]; - }, - - _prefixFieldID(fieldID) { - return `Drupal.quickedit.metadata.${fieldID}`; - }, - - _unprefixFieldID(fieldID) { - return fieldID.substring(26); - }, - - intersection(fieldIDs) { - const prefixedFieldIDs = _.map(fieldIDs, this._prefixFieldID); - - const intersection = _.intersection(prefixedFieldIDs, _.keys(sessionStorage)); - - return _.map(intersection, this._unprefixFieldID); - } - - } - }; - - const permissionsHashKey = Drupal.quickedit.metadata._prefixFieldID('permissionsHash'); - - const permissionsHashValue = storage.getItem(permissionsHashKey); - const permissionsHash = drupalSettings.user.permissionsHash; - - if (permissionsHashValue !== permissionsHash) { - if (typeof permissionsHash === 'string') { - _.chain(storage).keys().each(key => { - if (key.substring(0, 26) === 'Drupal.quickedit.metadata.') { - storage.removeItem(key); - } - }); - } - - storage.setItem(permissionsHashKey, permissionsHash); - } - - $(document).on('drupalContextualLinkAdded', (event, data) => { - if (data.$region.is('[data-quickedit-entity-id]')) { - if (!data.$region.is('[data-quickedit-entity-instance-id]')) { - once('quickedit', data.$region); - processEntity(data.$region.get(0)); - } - - const contextualLink = { - entityID: data.$region.attr('data-quickedit-entity-id'), - entityInstanceID: data.$region.attr('data-quickedit-entity-instance-id'), - el: data.$el[0], - region: data.$region[0] - }; - - if (!initializeEntityContextualLink(contextualLink)) { - contextualLinksQueue.push(contextualLink); - } - } - }); -})(jQuery, _, Backbone, Drupal, drupalSettings, window.JSON, window.sessionStorage); \ No newline at end of file diff --git a/core/modules/quickedit/js/theme.es6.js b/core/modules/quickedit/js/theme.es6.js deleted file mode 100644 index fd0bba7a0fd252db439e9f888196e3e8564645d8..0000000000000000000000000000000000000000 --- a/core/modules/quickedit/js/theme.es6.js +++ /dev/null @@ -1,270 +0,0 @@ -/** - * @file - * Provides theme functions for all of Quick Edit's client-side HTML. - */ - -(function ($, Drupal) { - /** - * Theme function for a "backstage" for the Quick Edit module. - * - * @param {object} settings - * Settings object used to construct the markup. - * @param {string} settings.id - * The id to apply to the backstage. - * - * @return {string} - * The corresponding HTML. - */ - Drupal.theme.quickeditBackstage = function (settings) { - let html = ''; - html += `<div id="${settings.id}"></div>`; - return html; - }; - - /** - * Theme function for a toolbar container of the Quick Edit module. - * - * @param {object} settings - * Settings object used to construct the markup. - * @param {string} settings.id - * the id to apply to the backstage. - * - * @return {string} - * The corresponding HTML. - */ - Drupal.theme.quickeditEntityToolbar = function (settings) { - let html = ''; - html += `<div id="${settings.id}" class="quickedit quickedit-toolbar-container clearfix">`; - html += '<i class="quickedit-toolbar-pointer"></i>'; - html += '<div class="quickedit-toolbar-content">'; - html += - '<div class="quickedit-toolbar quickedit-toolbar-entity clearfix icon icon-pencil">'; - html += '<div class="quickedit-toolbar-label"></div>'; - html += '</div>'; - html += - '<div class="quickedit-toolbar quickedit-toolbar-field clearfix"></div>'; - html += '</div><div class="quickedit-toolbar-lining"></div></div>'; - return html; - }; - - /** - * Theme function for a toolbar container of the Quick Edit module. - * - * @param {object} settings - * Settings object used to construct the markup. - * @param {string} settings.entityLabel - * The title of the active entity. - * @param {string} settings.fieldLabel - * The label of the highlighted or active field. - * - * @return {string} - * The corresponding HTML. - */ - Drupal.theme.quickeditEntityToolbarLabel = function (settings) { - // @todo Add XSS regression test coverage in https://www.drupal.org/node/2547437 - return `<span class="field">${Drupal.checkPlain( - settings.fieldLabel, - )}</span>${Drupal.checkPlain(settings.entityLabel)}`; - }; - - /** - * Element defining a containing box for the placement of the entity toolbar. - * - * @return {string} - * The corresponding HTML. - */ - Drupal.theme.quickeditEntityToolbarFence = function () { - return '<div id="quickedit-toolbar-fence"></div>'; - }; - - /** - * Theme function for a toolbar container of the Quick Edit module. - * - * @param {object} settings - * Settings object used to construct the markup. - * @param {string} settings.id - * The id to apply to the toolbar container. - * - * @return {string} - * The corresponding HTML. - */ - Drupal.theme.quickeditFieldToolbar = function (settings) { - return `<div id="${settings.id}"></div>`; - }; - - /** - * Theme function for a toolbar toolgroup of the Quick Edit module. - * - * @param {object} settings - * Settings object used to construct the markup. - * @param {string} [settings.id] - * The id of the toolgroup. - * @param {string} settings.classes - * The class of the toolgroup. - * @param {Array} settings.buttons - * See {@link Drupal.theme.quickeditButtons}. - * - * @return {string} - * The corresponding HTML. - */ - Drupal.theme.quickeditToolgroup = function (settings) { - // Classes. - const classes = settings.classes || []; - classes.unshift('quickedit-toolgroup'); - let html = ''; - html += `<div class="${classes.join(' ')}"`; - if (settings.id) { - html += ` id="${settings.id}"`; - } - html += '>'; - html += Drupal.theme('quickeditButtons', { buttons: settings.buttons }); - html += '</div>'; - return html; - }; - - /** - * Theme function for buttons of the Quick Edit module. - * - * Can be used for the buttons both in the toolbar toolgroups and in the - * modal. - * - * @param {object} settings - * Settings object used to construct the markup. - * @param {Array} settings.buttons - * - String type: the type of the button (defaults to 'button') - * - Array classes: the classes of the button. - * - String label: the label of the button. - * - * @return {string} - * The corresponding HTML. - */ - Drupal.theme.quickeditButtons = function (settings) { - let html = ''; - for (let i = 0; i < settings.buttons.length; i++) { - const button = settings.buttons[i]; - if (!button.hasOwnProperty('type')) { - button.type = 'button'; - } - // Attributes. - const attributes = []; - const attrMap = settings.buttons[i].attributes || {}; - Object.keys(attrMap).forEach((attr) => { - attributes.push(attr + (attrMap[attr] ? `="${attrMap[attr]}"` : '')); - }); - html += `<button type="${button.type}" class="${ - button.classes - }" ${attributes.join(' ')}>${button.label}</button>`; - } - return html; - }; - - /** - * Theme function for a form container of the Quick Edit module. - * - * @param {object} settings - * Settings object used to construct the markup. - * @param {string} settings.id - * The id to apply to the toolbar container. - * @param {string} settings.loadingMsg - * The message to show while loading. - * - * @return {string} - * The corresponding HTML. - */ - Drupal.theme.quickeditFormContainer = function (settings) { - let html = ''; - html += `<div id="${settings.id}" class="quickedit-form-container">`; - html += ' <div class="quickedit-form">'; - html += ' <div class="placeholder">'; - html += settings.loadingMsg; - html += ' </div>'; - html += ' </div>'; - html += '</div>'; - return html; - }; - - /** - * Theme function for validation errors of the Image in-place editor. - * - * @param {object} settings - * Settings object used to construct the markup. - * @param {string} settings.errors - * Already escaped HTML representing error messages. - * - * @return {string} - * The corresponding HTML. - */ - Drupal.theme.quickeditImageErrors = function (settings) { - return `<div class="quickedit-image-errors">${settings.errors}</div>`; - }; - - /** - * Theme function for the dropzone element of the in-place editor. - * - * @param {object} settings - * Settings object used to construct the markup. - * @param {string} settings.state - * State of the upload. - * @param {string} settings.text - * Text to display inline with the dropzone element. - * - * @return {string} - * The corresponding HTML. - */ - Drupal.theme.quickeditImageDropzone = function (settings) { - return ( - `<div class="quickedit-image-dropzone ${settings.state}">` + - ' <i class="quickedit-image-icon"></i>' + - ` <span class="quickedit-image-text">${settings.text}</span>` + - '</div>' - ); - }; - - /** - * Theme function for the toolbar of the Image module's in-place editor. - * - * @param {object} settings - * Settings object used to construct the markup. - * @param {bool} settings.alt_field - * Whether or not the "Alt" field is enabled for this field. - * @param {bool} settings.alt_field_required - * Whether or not the "Alt" field is required for this field. - * @param {string} settings.alt - * The current value for the "Alt" field. - * @param {bool} settings.title_field - * Whether or not the "Title" field is enabled for this field. - * @param {bool} settings.title_field_required - * Whether or not the "Title" field is required for this field. - * @param {string} settings.title - * The current value for the "Title" field. - * - * @return {string} - * The corresponding HTML. - */ - Drupal.theme.quickeditImageToolbar = function (settings) { - let html = '<form class="quickedit-image-field-info">'; - if (settings.alt_field) { - html += - `<div><label for="alt" class="${ - settings.alt_field_required ? 'required' : '' - }">${Drupal.t('Alternative text')}</label>` + - `<input type="text" placeholder="${settings.alt}" value="${ - settings.alt - }" name="alt" ${settings.alt_field_required ? 'required' : ''}/>` + - ' </div>'; - } - if (settings.title_field) { - html += - `<div><label for="title" class="${ - settings.title_field_required ? 'form-required' : '' - }">${Drupal.t('Title')}</label>` + - `<input type="text" placeholder="${settings.title}" value="${ - settings.title - }" name="title" ${settings.title_field_required ? 'required' : ''}/>` + - '</div>'; - } - html += '</form>'; - - return html; - }; -})(jQuery, Drupal); diff --git a/core/modules/quickedit/js/theme.js b/core/modules/quickedit/js/theme.js deleted file mode 100644 index 81e43d961ff6b5f7fe23a74b30c9851c5a3edd38..0000000000000000000000000000000000000000 --- a/core/modules/quickedit/js/theme.js +++ /dev/null @@ -1,113 +0,0 @@ -/** -* DO NOT EDIT THIS FILE. -* See the following change record for more information, -* https://www.drupal.org/node/2815083 -* @preserve -**/ - -(function ($, Drupal) { - Drupal.theme.quickeditBackstage = function (settings) { - let html = ''; - html += `<div id="${settings.id}"></div>`; - return html; - }; - - Drupal.theme.quickeditEntityToolbar = function (settings) { - let html = ''; - html += `<div id="${settings.id}" class="quickedit quickedit-toolbar-container clearfix">`; - html += '<i class="quickedit-toolbar-pointer"></i>'; - html += '<div class="quickedit-toolbar-content">'; - html += '<div class="quickedit-toolbar quickedit-toolbar-entity clearfix icon icon-pencil">'; - html += '<div class="quickedit-toolbar-label"></div>'; - html += '</div>'; - html += '<div class="quickedit-toolbar quickedit-toolbar-field clearfix"></div>'; - html += '</div><div class="quickedit-toolbar-lining"></div></div>'; - return html; - }; - - Drupal.theme.quickeditEntityToolbarLabel = function (settings) { - return `<span class="field">${Drupal.checkPlain(settings.fieldLabel)}</span>${Drupal.checkPlain(settings.entityLabel)}`; - }; - - Drupal.theme.quickeditEntityToolbarFence = function () { - return '<div id="quickedit-toolbar-fence"></div>'; - }; - - Drupal.theme.quickeditFieldToolbar = function (settings) { - return `<div id="${settings.id}"></div>`; - }; - - Drupal.theme.quickeditToolgroup = function (settings) { - const classes = settings.classes || []; - classes.unshift('quickedit-toolgroup'); - let html = ''; - html += `<div class="${classes.join(' ')}"`; - - if (settings.id) { - html += ` id="${settings.id}"`; - } - - html += '>'; - html += Drupal.theme('quickeditButtons', { - buttons: settings.buttons - }); - html += '</div>'; - return html; - }; - - Drupal.theme.quickeditButtons = function (settings) { - let html = ''; - - for (let i = 0; i < settings.buttons.length; i++) { - const button = settings.buttons[i]; - - if (!button.hasOwnProperty('type')) { - button.type = 'button'; - } - - const attributes = []; - const attrMap = settings.buttons[i].attributes || {}; - Object.keys(attrMap).forEach(attr => { - attributes.push(attr + (attrMap[attr] ? `="${attrMap[attr]}"` : '')); - }); - html += `<button type="${button.type}" class="${button.classes}" ${attributes.join(' ')}>${button.label}</button>`; - } - - return html; - }; - - Drupal.theme.quickeditFormContainer = function (settings) { - let html = ''; - html += `<div id="${settings.id}" class="quickedit-form-container">`; - html += ' <div class="quickedit-form">'; - html += ' <div class="placeholder">'; - html += settings.loadingMsg; - html += ' </div>'; - html += ' </div>'; - html += '</div>'; - return html; - }; - - Drupal.theme.quickeditImageErrors = function (settings) { - return `<div class="quickedit-image-errors">${settings.errors}</div>`; - }; - - Drupal.theme.quickeditImageDropzone = function (settings) { - return `<div class="quickedit-image-dropzone ${settings.state}">` + ' <i class="quickedit-image-icon"></i>' + ` <span class="quickedit-image-text">${settings.text}</span>` + '</div>'; - }; - - Drupal.theme.quickeditImageToolbar = function (settings) { - let html = '<form class="quickedit-image-field-info">'; - - if (settings.alt_field) { - html += `<div><label for="alt" class="${settings.alt_field_required ? 'required' : ''}">${Drupal.t('Alternative text')}</label>` + `<input type="text" placeholder="${settings.alt}" value="${settings.alt}" name="alt" ${settings.alt_field_required ? 'required' : ''}/>` + ' </div>'; - } - - if (settings.title_field) { - html += `<div><label for="title" class="${settings.title_field_required ? 'form-required' : ''}">${Drupal.t('Title')}</label>` + `<input type="text" placeholder="${settings.title}" value="${settings.title}" name="title" ${settings.title_field_required ? 'required' : ''}/>` + '</div>'; - } - - html += '</form>'; - return html; - }; -})(jQuery, Drupal); \ No newline at end of file diff --git a/core/modules/quickedit/js/util.es6.js b/core/modules/quickedit/js/util.es6.js deleted file mode 100644 index c6e4b952bba242e484b2e5d13a2bd8bc34b83bc5..0000000000000000000000000000000000000000 --- a/core/modules/quickedit/js/util.es6.js +++ /dev/null @@ -1,223 +0,0 @@ -/** - * @file - * Provides utility functions for Quick Edit. - */ - -(function ($, Drupal) { - /** - * @namespace - */ - Drupal.quickedit.util = Drupal.quickedit.util || {}; - - /** - * @namespace - */ - Drupal.quickedit.util.constants = {}; - - /** - * - * @type {string} - */ - Drupal.quickedit.util.constants.transitionEnd = - 'transitionEnd.quickedit webkitTransitionEnd.quickedit transitionend.quickedit msTransitionEnd.quickedit oTransitionEnd.quickedit'; - - /** - * Converts a field id into a formatted url path. - * - * @example - * Drupal.quickedit.util.buildUrl( - * 'node/1/body/und/full', - * '/quickedit/form/!entity_type/!id/!field_name/!langcode/!view_mode' - * ); - * - * @param {string} id - * The id of an editable field. - * @param {string} urlFormat - * The Controller route for field processing. - * - * @return {string} - * The formatted URL. - */ - Drupal.quickedit.util.buildUrl = function (id, urlFormat) { - const parts = id.split('/'); - return Drupal.formatString(decodeURIComponent(urlFormat), { - '!entity_type': parts[0], - '!id': parts[1], - '!field_name': parts[2], - '!langcode': parts[3], - '!view_mode': parts[4], - }); - }; - - /** - * Shows a network error modal dialog. - * - * @param {string} title - * The title to use in the modal dialog. - * @param {string} message - * The message to use in the modal dialog. - */ - Drupal.quickedit.util.networkErrorModal = function (title, message) { - const $message = $(`<div>${message}</div>`); - const networkErrorModal = Drupal.dialog($message.get(0), { - title, - dialogClass: 'quickedit-network-error', - buttons: [ - { - text: Drupal.t('OK'), - click() { - networkErrorModal.close(); - }, - primary: true, - }, - ], - create() { - $(this).parent().find('.ui-dialog-titlebar-close').remove(); - }, - close(event) { - // Automatically destroy the DOM element that was used for the dialog. - $(event.target).remove(); - }, - }); - networkErrorModal.showModal(); - }; - - /** - * @namespace - */ - Drupal.quickedit.util.form = { - /** - * Loads a form, calls a callback to insert. - * - * Leverages {@link Drupal.Ajax}' ability to have scoped (per-instance) - * command implementations to be able to call a callback. - * - * @param {object} options - * An object with the following keys: - * @param {string} options.fieldID - * The field ID that uniquely identifies the field for which this form - * will be loaded. - * @param {bool} options.nocssjs - * Boolean indicating whether no CSS and JS should be returned (necessary - * when the form is invisible to the user). - * @param {bool} options.reset - * Boolean indicating whether the data stored for this field's entity in - * PrivateTempStore should be used or reset. - * @param {function} callback - * A callback function that will receive the form to be inserted, as well - * as the ajax object, necessary if the callback wants to perform other - * Ajax commands. - */ - load(options, callback) { - const fieldID = options.fieldID; - - // Create a Drupal.ajax instance to load the form. - const formLoaderAjax = Drupal.ajax({ - url: Drupal.quickedit.util.buildUrl( - fieldID, - Drupal.url( - 'quickedit/form/!entity_type/!id/!field_name/!langcode/!view_mode', - ), - ), - submit: { - nocssjs: options.nocssjs, - reset: options.reset, - }, - error(xhr, url) { - // Show a modal to inform the user of the network error. - const fieldLabel = Drupal.quickedit.metadata.get(fieldID, 'label'); - const message = Drupal.t( - 'Could not load the form for <q>@field-label</q>, either due to a website problem or a network connection problem.<br>Please try again.', - { '@field-label': fieldLabel }, - ); - Drupal.quickedit.util.networkErrorModal( - Drupal.t('Network problem!'), - message, - ); - - // Change the state back to "candidate", to allow the user to start - // in-place editing of the field again. - const fieldModel = Drupal.quickedit.app.model.get('activeField'); - fieldModel.set('state', 'candidate'); - }, - }); - // Implement a scoped quickeditFieldForm AJAX command: calls the callback. - formLoaderAjax.commands.quickeditFieldForm = function ( - ajax, - response, - status, - ) { - callback(response.data, ajax); - Drupal.ajax.instances[this.instanceIndex] = null; - }; - // This will ensure our scoped quickeditFieldForm AJAX command gets - // called. - formLoaderAjax.execute(); - }, - - /** - * Creates a {@link Drupal.Ajax} instance that is used to save a form. - * - * @param {object} options - * Submit options to the form. - * @param {bool} options.nocssjs - * Boolean indicating whether no CSS and JS should be returned (necessary - * when the form is invisible to the user). - * @param {Array.<string>} options.other_view_modes - * Array containing view mode IDs (of other instances of this field on the - * page). - * @param {jQuery} $submit - * The submit element. - * - * @return {Drupal.Ajax} - * A {@link Drupal.Ajax} instance. - */ - ajaxifySaving(options, $submit) { - // Re-wire the form to handle submit. - const settings = { - url: $submit.closest('form').attr('action'), - setClick: true, - event: 'click.quickedit', - progress: false, - submit: { - nocssjs: options.nocssjs, - other_view_modes: options.other_view_modes, - }, - - /** - * Reimplement the success handler. - * - * Ensure {@link Drupal.attachBehaviors} does not get called on the - * form. - * - * @param {Drupal.AjaxCommands~commandDefinition} response - * The Drupal AJAX response. - * @param {number} [status] - * The HTTP status code. - */ - success(response, status) { - Object.keys(response || {}).forEach((i) => { - if (response[i].command && this.commands[response[i].command]) { - this.commands[response[i].command](this, response[i], status); - } - }); - }, - base: $submit.attr('id'), - element: $submit[0], - }; - - return Drupal.ajax(settings); - }, - - /** - * Cleans up the {@link Drupal.Ajax} instance that is used to save the form. - * - * @param {Drupal.Ajax} ajax - * A {@link Drupal.Ajax} instance that was returned by - * {@link Drupal.quickedit.form.ajaxifySaving}. - */ - unajaxifySaving(ajax) { - $(ajax.element).off('click.quickedit'); - }, - }; -})(jQuery, Drupal); diff --git a/core/modules/quickedit/js/util.js b/core/modules/quickedit/js/util.js deleted file mode 100644 index 2c006393f55f653ccf6d89c992d536fd14f5468d..0000000000000000000000000000000000000000 --- a/core/modules/quickedit/js/util.js +++ /dev/null @@ -1,111 +0,0 @@ -/** -* DO NOT EDIT THIS FILE. -* See the following change record for more information, -* https://www.drupal.org/node/2815083 -* @preserve -**/ - -(function ($, Drupal) { - Drupal.quickedit.util = Drupal.quickedit.util || {}; - Drupal.quickedit.util.constants = {}; - Drupal.quickedit.util.constants.transitionEnd = 'transitionEnd.quickedit webkitTransitionEnd.quickedit transitionend.quickedit msTransitionEnd.quickedit oTransitionEnd.quickedit'; - - Drupal.quickedit.util.buildUrl = function (id, urlFormat) { - const parts = id.split('/'); - return Drupal.formatString(decodeURIComponent(urlFormat), { - '!entity_type': parts[0], - '!id': parts[1], - '!field_name': parts[2], - '!langcode': parts[3], - '!view_mode': parts[4] - }); - }; - - Drupal.quickedit.util.networkErrorModal = function (title, message) { - const $message = $(`<div>${message}</div>`); - const networkErrorModal = Drupal.dialog($message.get(0), { - title, - dialogClass: 'quickedit-network-error', - buttons: [{ - text: Drupal.t('OK'), - - click() { - networkErrorModal.close(); - }, - - primary: true - }], - - create() { - $(this).parent().find('.ui-dialog-titlebar-close').remove(); - }, - - close(event) { - $(event.target).remove(); - } - - }); - networkErrorModal.showModal(); - }; - - Drupal.quickedit.util.form = { - load(options, callback) { - const fieldID = options.fieldID; - const formLoaderAjax = Drupal.ajax({ - url: Drupal.quickedit.util.buildUrl(fieldID, Drupal.url('quickedit/form/!entity_type/!id/!field_name/!langcode/!view_mode')), - submit: { - nocssjs: options.nocssjs, - reset: options.reset - }, - - error(xhr, url) { - const fieldLabel = Drupal.quickedit.metadata.get(fieldID, 'label'); - const message = Drupal.t('Could not load the form for <q>@field-label</q>, either due to a website problem or a network connection problem.<br>Please try again.', { - '@field-label': fieldLabel - }); - Drupal.quickedit.util.networkErrorModal(Drupal.t('Network problem!'), message); - const fieldModel = Drupal.quickedit.app.model.get('activeField'); - fieldModel.set('state', 'candidate'); - } - - }); - - formLoaderAjax.commands.quickeditFieldForm = function (ajax, response, status) { - callback(response.data, ajax); - Drupal.ajax.instances[this.instanceIndex] = null; - }; - - formLoaderAjax.execute(); - }, - - ajaxifySaving(options, $submit) { - const settings = { - url: $submit.closest('form').attr('action'), - setClick: true, - event: 'click.quickedit', - progress: false, - submit: { - nocssjs: options.nocssjs, - other_view_modes: options.other_view_modes - }, - - success(response, status) { - Object.keys(response || {}).forEach(i => { - if (response[i].command && this.commands[response[i].command]) { - this.commands[response[i].command](this, response[i], status); - } - }); - }, - - base: $submit.attr('id'), - element: $submit[0] - }; - return Drupal.ajax(settings); - }, - - unajaxifySaving(ajax) { - $(ajax.element).off('click.quickedit'); - } - - }; -})(jQuery, Drupal); \ No newline at end of file diff --git a/core/modules/quickedit/js/views/AppView.es6.js b/core/modules/quickedit/js/views/AppView.es6.js deleted file mode 100644 index 8cf4e0f43b1f538350f55a6d4fe165f2fdb8adbd..0000000000000000000000000000000000000000 --- a/core/modules/quickedit/js/views/AppView.es6.js +++ /dev/null @@ -1,653 +0,0 @@ -/** - * @file - * A Backbone View that controls the overall "in-place editing application". - * - * @see Drupal.quickedit.AppModel - */ - -(function ($, _, Backbone, Drupal) { - // Indicates whether the page should be reloaded after in-place editing has - // shut down. A page reload is necessary to re-instate the original HTML of - // the edited fields if in-place editing has been canceled and one or more of - // the entity's fields were saved to PrivateTempStore: one of them may have - // been changed to the empty value and hence may have been rerendered as the - // empty string, which makes it impossible for Quick Edit to know where to - // restore the original HTML. - let reload = false; - - Drupal.quickedit.AppView = Backbone.View.extend( - /** @lends Drupal.quickedit.AppView# */ { - /** - * @constructs - * - * @augments Backbone.View - * - * @param {object} options - * An object with the following keys: - * @param {Drupal.quickedit.AppModel} options.model - * The application state model. - * @param {Drupal.quickedit.EntityCollection} options.entitiesCollection - * All on-page entities. - * @param {Drupal.quickedit.FieldCollection} options.fieldsCollection - * All on-page fields - */ - initialize(options) { - // AppView's configuration for handling states. - // @see Drupal.quickedit.FieldModel.states - this.activeFieldStates = ['activating', 'active']; - this.singleFieldStates = ['highlighted', 'activating', 'active']; - this.changedFieldStates = ['changed', 'saving', 'saved', 'invalid']; - this.readyFieldStates = ['candidate', 'highlighted']; - - // Track app state. - this.listenTo( - options.entitiesCollection, - 'change:state', - this.appStateChange, - ); - this.listenTo( - options.entitiesCollection, - 'change:isActive', - this.enforceSingleActiveEntity, - ); - - // Track app state. - this.listenTo( - options.fieldsCollection, - 'change:state', - this.editorStateChange, - ); - // Respond to field model HTML representation change events. - this.listenTo( - options.fieldsCollection, - 'change:html', - this.renderUpdatedField, - ); - this.listenTo( - options.fieldsCollection, - 'change:html', - this.propagateUpdatedField, - ); - // Respond to addition. - this.listenTo( - options.fieldsCollection, - 'add', - this.rerenderedFieldToCandidate, - ); - // Respond to destruction. - this.listenTo(options.fieldsCollection, 'destroy', this.teardownEditor); - }, - - /** - * Handles setup/teardown and state changes when the active entity changes. - * - * @param {Drupal.quickedit.EntityModel} entityModel - * An instance of the EntityModel class. - * @param {string} state - * The state of the associated field. One of - * {@link Drupal.quickedit.EntityModel.states}. - */ - appStateChange(entityModel, state) { - const app = this; - let entityToolbarView; - switch (state) { - case 'launching': - reload = false; - // First, create an entity toolbar view. - entityToolbarView = new Drupal.quickedit.EntityToolbarView({ - model: entityModel, - appModel: this.model, - }); - entityModel.toolbarView = entityToolbarView; - // Second, set up in-place editors. - // They must be notified of state changes, hence this must happen - // while the associated fields are still in the 'inactive' state. - entityModel.get('fields').each((fieldModel) => { - app.setupEditor(fieldModel); - }); - // Third, transition the entity to the 'opening' state, which will - // transition all fields from 'inactive' to 'candidate'. - _.defer(() => { - entityModel.set('state', 'opening'); - }); - break; - - case 'closed': - entityToolbarView = entityModel.toolbarView; - // First, tear down the in-place editors. - entityModel.get('fields').each((fieldModel) => { - app.teardownEditor(fieldModel); - }); - // Second, tear down the entity toolbar view. - if (entityToolbarView) { - entityToolbarView.remove(); - delete entityModel.toolbarView; - } - // A page reload may be necessary to re-instate the original HTML of - // the edited fields. - if (reload) { - reload = false; - window.location.reload(); - } - break; - } - }, - - /** - * Accepts or reject editor (Editor) state changes. - * - * This is what ensures that the app is in control of what happens. - * - * @param {string} from - * The previous state. - * @param {string} to - * The new state. - * @param {null|object} context - * The context that is trying to trigger the state change. - * @param {Drupal.quickedit.FieldModel} fieldModel - * The fieldModel to which this change applies. - * - * @return {bool} - * Whether the editor change was accepted or rejected. - */ - acceptEditorStateChange(from, to, context, fieldModel) { - let accept = true; - - // If the app is in view mode, then reject all state changes except for - // those to 'inactive'. - if ( - context && - (context.reason === 'stop' || context.reason === 'rerender') - ) { - if (from === 'candidate' && to === 'inactive') { - accept = true; - } - } - // Handling of edit mode state changes is more granular. - else { - // In general, enforce the states sequence. Disallow going back from a - // "later" state to an "earlier" state, except in explicitly allowed - // cases. - if (!Drupal.quickedit.FieldModel.followsStateSequence(from, to)) { - accept = false; - // Allow: activating/active -> candidate. - // Necessary to stop editing a field. - if ( - _.indexOf(this.activeFieldStates, from) !== -1 && - to === 'candidate' - ) { - accept = true; - } - // Allow: changed/invalid -> candidate. - // Necessary to stop editing a field when it is changed or invalid. - else if ( - (from === 'changed' || from === 'invalid') && - to === 'candidate' - ) { - accept = true; - } - // Allow: highlighted -> candidate. - // Necessary to stop highlighting a field. - else if (from === 'highlighted' && to === 'candidate') { - accept = true; - } - // Allow: saved -> candidate. - // Necessary when successfully saved a field. - else if (from === 'saved' && to === 'candidate') { - accept = true; - } - // Allow: invalid -> saving. - // Necessary to be able to save a corrected, invalid field. - else if (from === 'invalid' && to === 'saving') { - accept = true; - } - // Allow: invalid -> activating. - // Necessary to be able to correct a field that turned out to be - // invalid after the user already had moved on to the next field - // (which we explicitly allow to have a fluent UX). - else if (from === 'invalid' && to === 'activating') { - accept = true; - } - } - - // If it's not against the general principle, then here are more - // disallowed cases to check. - if (accept) { - let activeField; - let activeFieldState; - // Ensure only one field (editor) at a time is active … but allow a - // user to hop from one field to the next, even if we still have to - // start saving the field that is currently active: assume it will be - // valid, to allow for a fluent UX. (If it turns out to be invalid, - // this block of code also handles that.) - if ( - (this.readyFieldStates.indexOf(from) !== -1 || - from === 'invalid') && - this.activeFieldStates.indexOf(to) !== -1 - ) { - activeField = this.model.get('activeField'); - if (activeField && activeField !== fieldModel) { - activeFieldState = activeField.get('state'); - // Allow the state change. If the state of the active field is: - // - 'activating' or 'active': change it to 'candidate' - // - 'changed' or 'invalid': change it to 'saving' - // - 'saving' or 'saved': don't do anything. - if (this.activeFieldStates.indexOf(activeFieldState) !== -1) { - activeField.set('state', 'candidate'); - } else if ( - activeFieldState === 'changed' || - activeFieldState === 'invalid' - ) { - activeField.set('state', 'saving'); - } - - // If the field that's being activated is in fact already in the - // invalid state (which can only happen because above we allowed - // the user to move on to another field to allow for a fluent UX; - // we assumed it would be saved successfully), then we shouldn't - // allow the field to enter the 'activating' state, instead, we - // simply change the active editor. All guarantees and - // assumptions for this field still hold! - if (from === 'invalid') { - this.model.set('activeField', fieldModel); - accept = false; - } - // Do not reject: the field is either in the 'candidate' or - // 'highlighted' state and we allow it to enter the 'activating' - // state! - } - } - // Reject going from activating/active to candidate because of a - // mouseleave. - else if ( - _.indexOf(this.activeFieldStates, from) !== -1 && - to === 'candidate' - ) { - if (context && context.reason === 'mouseleave') { - accept = false; - } - } - // When attempting to stop editing a changed/invalid property, ask for - // confirmation. - else if ( - (from === 'changed' || from === 'invalid') && - to === 'candidate' - ) { - if (context && context.reason === 'mouseleave') { - accept = false; - } - // Check whether the transition has been confirmed? - else if (context && context.confirmed) { - accept = true; - } - } - } - } - - return accept; - }, - - /** - * Sets up the in-place editor for the given field. - * - * Must happen before the fieldModel's state is changed to 'candidate'. - * - * @param {Drupal.quickedit.FieldModel} fieldModel - * The field for which an in-place editor must be set up. - */ - setupEditor(fieldModel) { - // Get the corresponding entity toolbar. - const entityModel = fieldModel.get('entity'); - const entityToolbarView = entityModel.toolbarView; - // Get the field toolbar DOM root from the entity toolbar. - const fieldToolbarRoot = entityToolbarView.getToolbarRoot(); - // Create in-place editor. - const editorName = fieldModel.get('metadata').editor; - const editorModel = new Drupal.quickedit.EditorModel(); - const editorView = new Drupal.quickedit.editors[editorName]({ - el: $(fieldModel.get('el')), - model: editorModel, - fieldModel, - }); - - // Create in-place editor's toolbar for this field — stored inside the - // entity toolbar, the entity toolbar will position itself appropriately - // above (or below) the edited element. - const toolbarView = new Drupal.quickedit.FieldToolbarView({ - el: fieldToolbarRoot, - model: fieldModel, - $editedElement: $(editorView.getEditedElement()), - editorView, - entityModel, - }); - - // Create decoration for edited element: padding if necessary, sets - // classes on the element to style it according to the current state. - const decorationView = new Drupal.quickedit.FieldDecorationView({ - el: $(editorView.getEditedElement()), - model: fieldModel, - editorView, - }); - - // Track these three views in FieldModel so that we can tear them down - // correctly. - fieldModel.editorView = editorView; - fieldModel.toolbarView = toolbarView; - fieldModel.decorationView = decorationView; - }, - - /** - * Tears down the in-place editor for the given field. - * - * Must happen after the fieldModel's state is changed to 'inactive'. - * - * @param {Drupal.quickedit.FieldModel} fieldModel - * The field for which an in-place editor must be torn down. - */ - teardownEditor(fieldModel) { - // Early-return if this field was not yet decorated. - if (typeof fieldModel.editorView === 'undefined') { - return; - } - - // Unbind event handlers; remove toolbar element; delete toolbar view. - fieldModel.toolbarView.remove(); - delete fieldModel.toolbarView; - - // Unbind event handlers; delete decoration view. Don't remove the element - // because that would remove the field itself. - fieldModel.decorationView.remove(); - delete fieldModel.decorationView; - - // Unbind event handlers; delete editor view. Don't remove the element - // because that would remove the field itself. - fieldModel.editorView.remove(); - delete fieldModel.editorView; - }, - - /** - * Asks the user if they want to stop editing via a modal. - * - * @param {Drupal.quickedit.EntityModel} entityModel - * An instance of the EntityModel class. - * - * @see Drupal.quickedit.AppView#acceptEditorStateChange - */ - confirmEntityDeactivation(entityModel) { - const that = this; - let discardDialog; - - function closeDiscardDialog(action) { - discardDialog.close(action); - // The active modal has been removed. - that.model.set('activeModal', null); - - // If the targetState is saving, the field must be saved, then the - // entity must be saved. - if (action === 'save') { - entityModel.set('state', 'committing', { confirmed: true }); - } else { - entityModel.set('state', 'deactivating', { confirmed: true }); - // Editing has been canceled and the changes will not be saved. Mark - // the page for reload if the entityModel declares that it requires - // a reload. - if (entityModel.get('reload')) { - reload = true; - entityModel.set('reload', false); - } - } - } - - // Only instantiate if there isn't a modal instance visible yet. - if (!this.model.get('activeModal')) { - const $unsavedChanges = $( - `<div>${Drupal.t('You have unsaved changes')}</div>`, - ); - discardDialog = Drupal.dialog($unsavedChanges.get(0), { - title: Drupal.t('Discard changes?'), - dialogClass: 'quickedit-discard-modal', - resizable: false, - buttons: [ - { - text: Drupal.t('Save'), - click() { - closeDiscardDialog('save'); - }, - primary: true, - }, - { - text: Drupal.t('Discard changes'), - click() { - closeDiscardDialog('discard'); - }, - }, - ], - // Prevent this modal from being closed without the user making a - // choice as per http://stackoverflow.com/a/5438771. - closeOnEscape: false, - create() { - $(this).parent().find('.ui-dialog-titlebar-close').remove(); - }, - beforeClose: false, - close(event) { - // Automatically destroy the DOM element that was used for the - // dialog. - $(event.target).remove(); - }, - }); - this.model.set('activeModal', discardDialog); - - discardDialog.showModal(); - } - }, - - /** - * Reacts to field state changes; tracks global state. - * - * @param {Drupal.quickedit.FieldModel} fieldModel - * The `fieldModel` holding the state. - * @param {string} state - * The state of the associated field. One of - * {@link Drupal.quickedit.FieldModel.states}. - */ - editorStateChange(fieldModel, state) { - const from = fieldModel.previous('state'); - const to = state; - - // Keep track of the highlighted field in the global state. - if ( - _.indexOf(this.singleFieldStates, to) !== -1 && - this.model.get('highlightedField') !== fieldModel - ) { - this.model.set('highlightedField', fieldModel); - } else if ( - this.model.get('highlightedField') === fieldModel && - to === 'candidate' - ) { - this.model.set('highlightedField', null); - } - - // Keep track of the active field in the global state. - if ( - _.indexOf(this.activeFieldStates, to) !== -1 && - this.model.get('activeField') !== fieldModel - ) { - this.model.set('activeField', fieldModel); - } else if ( - this.model.get('activeField') === fieldModel && - to === 'candidate' - ) { - // Discarded if it transitions from a changed state to 'candidate'. - if (from === 'changed' || from === 'invalid') { - fieldModel.editorView.revert(); - } - this.model.set('activeField', null); - } - }, - - /** - * Render an updated field (a field whose 'html' attribute changed). - * - * @param {Drupal.quickedit.FieldModel} fieldModel - * The FieldModel whose 'html' attribute changed. - * @param {string} html - * The updated 'html' attribute. - * @param {object} options - * An object with the following keys: - * @param {bool} options.propagation - * Whether this change to the 'html' attribute occurred because of the - * propagation of changes to another instance of this field. - */ - renderUpdatedField(fieldModel, html, options) { - // Get data necessary to rerender property before it is unavailable. - const $fieldWrapper = $(fieldModel.get('el')); - const $context = $fieldWrapper.parent(); - - const renderField = function () { - // Destroy the field model; this will cause all attached views to be - // destroyed too, and removal from all collections in which it exists. - fieldModel.destroy(); - - // Replace the old content with the new content. - $fieldWrapper.replaceWith(html); - - // Attach behaviors again to the modified piece of HTML; this will - // create a new field model and call rerenderedFieldToCandidate() with - // it. - Drupal.attachBehaviors($context.get(0)); - }; - - // When propagating the changes of another instance of this field, this - // field is not being actively edited and hence no state changes are - // necessary. So: only update the state of this field when the rerendering - // of this field happens not because of propagation, but because it is - // being edited itself. - if (!options.propagation) { - // Deferred because renderUpdatedField is reacting to a field model - // change event, and we want to make sure that event fully propagates - // before making another change to the same model. - _.defer(() => { - // First set the state to 'candidate', to allow all attached views to - // clean up all their "active state"-related changes. - fieldModel.set('state', 'candidate'); - - // Similarly, the above .set() call's change event must fully - // propagate before calling it again. - _.defer(() => { - // Set the field's state to 'inactive', to enable the updating of - // its DOM value. - fieldModel.set('state', 'inactive', { reason: 'rerender' }); - - renderField(); - }); - }); - } else { - renderField(); - } - }, - - /** - * Propagates changes to an updated field to all instances of that field. - * - * @param {Drupal.quickedit.FieldModel} updatedField - * The FieldModel whose 'html' attribute changed. - * @param {string} html - * The updated 'html' attribute. - * @param {object} options - * An object with the following keys: - * @param {bool} options.propagation - * Whether this change to the 'html' attribute occurred because of the - * propagation of changes to another instance of this field. - * - * @see Drupal.quickedit.AppView#renderUpdatedField - */ - propagateUpdatedField(updatedField, html, options) { - // Don't propagate field updates that themselves were caused by - // propagation. - if (options.propagation) { - return; - } - - const htmlForOtherViewModes = updatedField.get('htmlForOtherViewModes'); - Drupal.quickedit.collections.fields - // Find all instances of fields that display the same logical field - // (same entity, same field, just a different instance and maybe a - // different view mode). - .where({ logicalFieldID: updatedField.get('logicalFieldID') }) - .forEach((field) => { - if (field === updatedField) { - // Ignore the field that was already updated. - } - // If this other instance of the field has the same view mode, we can - // update it easily. - else if (field.getViewMode() === updatedField.getViewMode()) { - field.set('html', updatedField.get('html')); - } - // If this other instance of the field has a different view mode, and - // that is one of the view modes for which a re-rendered version is - // available (and that should be the case unless this field was only - // added to the page after editing of the updated field began), then - // use that view mode's re-rendered version. - else if (field.getViewMode() in htmlForOtherViewModes) { - field.set('html', htmlForOtherViewModes[field.getViewMode()], { - propagation: true, - }); - } - }); - }, - - /** - * If the new in-place editable field is for the entity that's currently - * being edited, then transition it to the 'candidate' state. - * - * This happens when a field was modified, saved and hence rerendered. - * - * @param {Drupal.quickedit.FieldModel} fieldModel - * A field that was just added to the collection of fields. - */ - rerenderedFieldToCandidate(fieldModel) { - const activeEntity = Drupal.quickedit.collections.entities.findWhere({ - isActive: true, - }); - - // Early-return if there is no active entity. - if (!activeEntity) { - return; - } - - // If the field's entity is the active entity, make it a candidate. - if (fieldModel.get('entity') === activeEntity) { - this.setupEditor(fieldModel); - fieldModel.set('state', 'candidate'); - } - }, - - /** - * EntityModel Collection change handler. - * - * Handler is called `change:isActive` and enforces a single active entity. - * - * @param {Drupal.quickedit.EntityModel} changedEntityModel - * The entityModel instance whose active state has changed. - */ - enforceSingleActiveEntity(changedEntityModel) { - // When an entity is deactivated, we don't need to enforce anything. - if (changedEntityModel.get('isActive') === false) { - return; - } - - // This entity was activated; deactivate all other entities. - changedEntityModel.collection - .chain() - .filter( - (entityModel) => - entityModel.get('isActive') === true && - entityModel !== changedEntityModel, - ) - .each((entityModel) => { - entityModel.set('state', 'deactivating'); - }); - }, - }, - ); -})(jQuery, _, Backbone, Drupal); diff --git a/core/modules/quickedit/js/views/AppView.js b/core/modules/quickedit/js/views/AppView.js deleted file mode 100644 index b6e2e14cc4308cb11dd37eafd28aaee8a3cdf175..0000000000000000000000000000000000000000 --- a/core/modules/quickedit/js/views/AppView.js +++ /dev/null @@ -1,328 +0,0 @@ -/** -* DO NOT EDIT THIS FILE. -* See the following change record for more information, -* https://www.drupal.org/node/2815083 -* @preserve -**/ - -(function ($, _, Backbone, Drupal) { - let reload = false; - Drupal.quickedit.AppView = Backbone.View.extend({ - initialize(options) { - this.activeFieldStates = ['activating', 'active']; - this.singleFieldStates = ['highlighted', 'activating', 'active']; - this.changedFieldStates = ['changed', 'saving', 'saved', 'invalid']; - this.readyFieldStates = ['candidate', 'highlighted']; - this.listenTo(options.entitiesCollection, 'change:state', this.appStateChange); - this.listenTo(options.entitiesCollection, 'change:isActive', this.enforceSingleActiveEntity); - this.listenTo(options.fieldsCollection, 'change:state', this.editorStateChange); - this.listenTo(options.fieldsCollection, 'change:html', this.renderUpdatedField); - this.listenTo(options.fieldsCollection, 'change:html', this.propagateUpdatedField); - this.listenTo(options.fieldsCollection, 'add', this.rerenderedFieldToCandidate); - this.listenTo(options.fieldsCollection, 'destroy', this.teardownEditor); - }, - - appStateChange(entityModel, state) { - const app = this; - let entityToolbarView; - - switch (state) { - case 'launching': - reload = false; - entityToolbarView = new Drupal.quickedit.EntityToolbarView({ - model: entityModel, - appModel: this.model - }); - entityModel.toolbarView = entityToolbarView; - entityModel.get('fields').each(fieldModel => { - app.setupEditor(fieldModel); - }); - - _.defer(() => { - entityModel.set('state', 'opening'); - }); - - break; - - case 'closed': - entityToolbarView = entityModel.toolbarView; - entityModel.get('fields').each(fieldModel => { - app.teardownEditor(fieldModel); - }); - - if (entityToolbarView) { - entityToolbarView.remove(); - delete entityModel.toolbarView; - } - - if (reload) { - reload = false; - window.location.reload(); - } - - break; - } - }, - - acceptEditorStateChange(from, to, context, fieldModel) { - let accept = true; - - if (context && (context.reason === 'stop' || context.reason === 'rerender')) { - if (from === 'candidate' && to === 'inactive') { - accept = true; - } - } else { - if (!Drupal.quickedit.FieldModel.followsStateSequence(from, to)) { - accept = false; - - if (_.indexOf(this.activeFieldStates, from) !== -1 && to === 'candidate') { - accept = true; - } else if ((from === 'changed' || from === 'invalid') && to === 'candidate') { - accept = true; - } else if (from === 'highlighted' && to === 'candidate') { - accept = true; - } else if (from === 'saved' && to === 'candidate') { - accept = true; - } else if (from === 'invalid' && to === 'saving') { - accept = true; - } else if (from === 'invalid' && to === 'activating') { - accept = true; - } - } - - if (accept) { - let activeField; - let activeFieldState; - - if ((this.readyFieldStates.indexOf(from) !== -1 || from === 'invalid') && this.activeFieldStates.indexOf(to) !== -1) { - activeField = this.model.get('activeField'); - - if (activeField && activeField !== fieldModel) { - activeFieldState = activeField.get('state'); - - if (this.activeFieldStates.indexOf(activeFieldState) !== -1) { - activeField.set('state', 'candidate'); - } else if (activeFieldState === 'changed' || activeFieldState === 'invalid') { - activeField.set('state', 'saving'); - } - - if (from === 'invalid') { - this.model.set('activeField', fieldModel); - accept = false; - } - } - } else if (_.indexOf(this.activeFieldStates, from) !== -1 && to === 'candidate') { - if (context && context.reason === 'mouseleave') { - accept = false; - } - } else if ((from === 'changed' || from === 'invalid') && to === 'candidate') { - if (context && context.reason === 'mouseleave') { - accept = false; - } else if (context && context.confirmed) { - accept = true; - } - } - } - } - - return accept; - }, - - setupEditor(fieldModel) { - const entityModel = fieldModel.get('entity'); - const entityToolbarView = entityModel.toolbarView; - const fieldToolbarRoot = entityToolbarView.getToolbarRoot(); - const editorName = fieldModel.get('metadata').editor; - const editorModel = new Drupal.quickedit.EditorModel(); - const editorView = new Drupal.quickedit.editors[editorName]({ - el: $(fieldModel.get('el')), - model: editorModel, - fieldModel - }); - const toolbarView = new Drupal.quickedit.FieldToolbarView({ - el: fieldToolbarRoot, - model: fieldModel, - $editedElement: $(editorView.getEditedElement()), - editorView, - entityModel - }); - const decorationView = new Drupal.quickedit.FieldDecorationView({ - el: $(editorView.getEditedElement()), - model: fieldModel, - editorView - }); - fieldModel.editorView = editorView; - fieldModel.toolbarView = toolbarView; - fieldModel.decorationView = decorationView; - }, - - teardownEditor(fieldModel) { - if (typeof fieldModel.editorView === 'undefined') { - return; - } - - fieldModel.toolbarView.remove(); - delete fieldModel.toolbarView; - fieldModel.decorationView.remove(); - delete fieldModel.decorationView; - fieldModel.editorView.remove(); - delete fieldModel.editorView; - }, - - confirmEntityDeactivation(entityModel) { - const that = this; - let discardDialog; - - function closeDiscardDialog(action) { - discardDialog.close(action); - that.model.set('activeModal', null); - - if (action === 'save') { - entityModel.set('state', 'committing', { - confirmed: true - }); - } else { - entityModel.set('state', 'deactivating', { - confirmed: true - }); - - if (entityModel.get('reload')) { - reload = true; - entityModel.set('reload', false); - } - } - } - - if (!this.model.get('activeModal')) { - const $unsavedChanges = $(`<div>${Drupal.t('You have unsaved changes')}</div>`); - discardDialog = Drupal.dialog($unsavedChanges.get(0), { - title: Drupal.t('Discard changes?'), - dialogClass: 'quickedit-discard-modal', - resizable: false, - buttons: [{ - text: Drupal.t('Save'), - - click() { - closeDiscardDialog('save'); - }, - - primary: true - }, { - text: Drupal.t('Discard changes'), - - click() { - closeDiscardDialog('discard'); - } - - }], - closeOnEscape: false, - - create() { - $(this).parent().find('.ui-dialog-titlebar-close').remove(); - }, - - beforeClose: false, - - close(event) { - $(event.target).remove(); - } - - }); - this.model.set('activeModal', discardDialog); - discardDialog.showModal(); - } - }, - - editorStateChange(fieldModel, state) { - const from = fieldModel.previous('state'); - const to = state; - - if (_.indexOf(this.singleFieldStates, to) !== -1 && this.model.get('highlightedField') !== fieldModel) { - this.model.set('highlightedField', fieldModel); - } else if (this.model.get('highlightedField') === fieldModel && to === 'candidate') { - this.model.set('highlightedField', null); - } - - if (_.indexOf(this.activeFieldStates, to) !== -1 && this.model.get('activeField') !== fieldModel) { - this.model.set('activeField', fieldModel); - } else if (this.model.get('activeField') === fieldModel && to === 'candidate') { - if (from === 'changed' || from === 'invalid') { - fieldModel.editorView.revert(); - } - - this.model.set('activeField', null); - } - }, - - renderUpdatedField(fieldModel, html, options) { - const $fieldWrapper = $(fieldModel.get('el')); - const $context = $fieldWrapper.parent(); - - const renderField = function () { - fieldModel.destroy(); - $fieldWrapper.replaceWith(html); - Drupal.attachBehaviors($context.get(0)); - }; - - if (!options.propagation) { - _.defer(() => { - fieldModel.set('state', 'candidate'); - - _.defer(() => { - fieldModel.set('state', 'inactive', { - reason: 'rerender' - }); - renderField(); - }); - }); - } else { - renderField(); - } - }, - - propagateUpdatedField(updatedField, html, options) { - if (options.propagation) { - return; - } - - const htmlForOtherViewModes = updatedField.get('htmlForOtherViewModes'); - Drupal.quickedit.collections.fields.where({ - logicalFieldID: updatedField.get('logicalFieldID') - }).forEach(field => { - if (field === updatedField) {} else if (field.getViewMode() === updatedField.getViewMode()) { - field.set('html', updatedField.get('html')); - } else if (field.getViewMode() in htmlForOtherViewModes) { - field.set('html', htmlForOtherViewModes[field.getViewMode()], { - propagation: true - }); - } - }); - }, - - rerenderedFieldToCandidate(fieldModel) { - const activeEntity = Drupal.quickedit.collections.entities.findWhere({ - isActive: true - }); - - if (!activeEntity) { - return; - } - - if (fieldModel.get('entity') === activeEntity) { - this.setupEditor(fieldModel); - fieldModel.set('state', 'candidate'); - } - }, - - enforceSingleActiveEntity(changedEntityModel) { - if (changedEntityModel.get('isActive') === false) { - return; - } - - changedEntityModel.collection.chain().filter(entityModel => entityModel.get('isActive') === true && entityModel !== changedEntityModel).each(entityModel => { - entityModel.set('state', 'deactivating'); - }); - } - - }); -})(jQuery, _, Backbone, Drupal); \ No newline at end of file diff --git a/core/modules/quickedit/js/views/ContextualLinkView.es6.js b/core/modules/quickedit/js/views/ContextualLinkView.es6.js deleted file mode 100644 index a9f0e2b5e7ffe585510e7850dc1dbc2b92a69531..0000000000000000000000000000000000000000 --- a/core/modules/quickedit/js/views/ContextualLinkView.es6.js +++ /dev/null @@ -1,79 +0,0 @@ -/** - * @file - * A Backbone View that provides a dynamic contextual link. - */ - -(function ($, Backbone, Drupal) { - Drupal.quickedit.ContextualLinkView = Backbone.View.extend( - /** @lends Drupal.quickedit.ContextualLinkView# */ { - /** - * Define all events to listen to. - * - * @return {object} - * A map of events. - */ - events() { - // Prevents delay and simulated mouse events. - function touchEndToClick(event) { - event.preventDefault(); - event.target.click(); - } - - return { - 'click a': function (event) { - event.preventDefault(); - this.model.set('state', 'launching'); - }, - 'touchEnd a': touchEndToClick, - }; - }, - - /** - * Create a new contextual link view. - * - * @constructs - * - * @augments Backbone.View - * - * @param {object} options - * An object with the following keys: - * @param {Drupal.quickedit.EntityModel} options.model - * The associated entity's model. - * @param {Drupal.quickedit.AppModel} options.appModel - * The application state model. - * @param {object} options.strings - * The strings for the "Quick edit" link. - */ - initialize(options) { - // Insert the text of the quick edit toggle. - this.$el.find('a').each((index, element) => { - element.textContent = options.strings.quickEdit; - }); - // Initial render. - this.render(); - // Re-render whenever this entity's isActive attribute changes. - this.listenTo(this.model, 'change:isActive', this.render); - }, - - /** - * Render function for the contextual link view. - * - * @param {Drupal.quickedit.EntityModel} entityModel - * The associated `EntityModel`. - * @param {bool} isActive - * Whether the in-place editor is active or not. - * - * @return {Drupal.quickedit.ContextualLinkView} - * The `ContextualLinkView` in question. - */ - render(entityModel, isActive) { - this.$el.find('a').attr('aria-pressed', isActive); - - // Hides the contextual links if an in-place editor is active. - this.$el.closest('.contextual').toggle(!isActive); - - return this; - }, - }, - ); -})(jQuery, Backbone, Drupal); diff --git a/core/modules/quickedit/js/views/ContextualLinkView.js b/core/modules/quickedit/js/views/ContextualLinkView.js deleted file mode 100644 index 3df24887bba37a72745fc033d68038cf5e6c017f..0000000000000000000000000000000000000000 --- a/core/modules/quickedit/js/views/ContextualLinkView.js +++ /dev/null @@ -1,40 +0,0 @@ -/** -* DO NOT EDIT THIS FILE. -* See the following change record for more information, -* https://www.drupal.org/node/2815083 -* @preserve -**/ - -(function ($, Backbone, Drupal) { - Drupal.quickedit.ContextualLinkView = Backbone.View.extend({ - events() { - function touchEndToClick(event) { - event.preventDefault(); - event.target.click(); - } - - return { - 'click a': function (event) { - event.preventDefault(); - this.model.set('state', 'launching'); - }, - 'touchEnd a': touchEndToClick - }; - }, - - initialize(options) { - this.$el.find('a').each((index, element) => { - element.textContent = options.strings.quickEdit; - }); - this.render(); - this.listenTo(this.model, 'change:isActive', this.render); - }, - - render(entityModel, isActive) { - this.$el.find('a').attr('aria-pressed', isActive); - this.$el.closest('.contextual').toggle(!isActive); - return this; - } - - }); -})(jQuery, Backbone, Drupal); \ No newline at end of file diff --git a/core/modules/quickedit/js/views/EditorView.es6.js b/core/modules/quickedit/js/views/EditorView.es6.js deleted file mode 100644 index cb6b5153a35f6f6e6fb2ee94cf6c160f899b1fdb..0000000000000000000000000000000000000000 --- a/core/modules/quickedit/js/views/EditorView.es6.js +++ /dev/null @@ -1,322 +0,0 @@ -/** - * @file - * An abstract Backbone View that controls an in-place editor. - */ - -(function ($, Backbone, Drupal) { - Drupal.quickedit.EditorView = Backbone.View.extend( - /** @lends Drupal.quickedit.EditorView# */ { - /** - * A base implementation that outlines the structure for in-place editors. - * - * Specific in-place editor implementations should subclass (extend) this - * View and override whichever method they deem necessary to override. - * - * Typically you would want to override this method to set the - * originalValue attribute in the FieldModel to such a value that your - * in-place editor can revert to the original value when necessary. - * - * @example - * <caption>If you override this method, you should call this - * method (the parent class' initialize()) first.</caption> - * Drupal.quickedit.EditorView.prototype.initialize.call(this, options); - * - * @constructs - * - * @augments Backbone.View - * - * @param {object} options - * An object with the following keys: - * @param {Drupal.quickedit.EditorModel} options.model - * The in-place editor state model. - * @param {Drupal.quickedit.FieldModel} options.fieldModel - * The field model. - * - * @see Drupal.quickedit.EditorModel - * @see Drupal.quickedit.editors.plain_text - */ - initialize(options) { - this.fieldModel = options.fieldModel; - this.listenTo(this.fieldModel, 'change:state', this.stateChange); - }, - - /** - * {@inheritdoc} - */ - remove() { - // The el property is the field, which should not be removed. Remove the - // pointer to it, then call Backbone.View.prototype.remove(). - this.setElement(); - Backbone.View.prototype.remove.call(this); - }, - - /** - * Returns the edited element. - * - * For some single cardinality fields, it may be necessary or useful to - * not in-place edit (and hence decorate) the DOM element with the - * data-quickedit-field-id attribute (which is the field's wrapper), but a - * specific element within the field's wrapper. - * e.g. using a WYSIWYG editor on a body field should happen on the DOM - * element containing the text itself, not on the field wrapper. - * - * @return {jQuery} - * A jQuery-wrapped DOM element. - * - * @see Drupal.quickedit.editors.plain_text - */ - getEditedElement() { - return this.$el; - }, - - /** - * - * @return {object} - * Returns 3 Quick Edit UI settings that depend on the in-place editor: - * - Boolean padding: indicates whether padding should be applied to the - * edited element, to guarantee legibility of text. - * - Boolean unifiedToolbar: provides the in-place editor with the ability - * to insert its own toolbar UI into Quick Edit's tightly integrated - * toolbar. - * - Boolean fullWidthToolbar: indicates whether Quick Edit's tightly - * integrated toolbar should consume the full width of the element, - * rather than being just long enough to accommodate a label. - */ - getQuickEditUISettings() { - return { - padding: false, - unifiedToolbar: false, - fullWidthToolbar: false, - popup: false, - }; - }, - - /** - * Determines the actions to take given a change of state. - * - * @param {Drupal.quickedit.FieldModel} fieldModel - * The quickedit `FieldModel` that holds the state. - * @param {string} state - * The state of the associated field. One of - * {@link Drupal.quickedit.FieldModel.states}. - */ - stateChange(fieldModel, state) { - const from = fieldModel.previous('state'); - const to = state; - switch (to) { - case 'inactive': - // An in-place editor view will not yet exist in this state, hence - // this will never be reached. Listed for sake of completeness. - break; - - case 'candidate': - // Nothing to do for the typical in-place editor: it should not be - // visible yet. Except when we come from the 'invalid' state, then we - // clean up. - if (from === 'invalid') { - this.removeValidationErrors(); - } - break; - - case 'highlighted': - // Nothing to do for the typical in-place editor: it should not be - // visible yet. - break; - - case 'activating': { - // The user is in the process of activating in-place editing: if - // something needs to be loaded (CSS/JavaScript/server data/…), then - // do so at this stage, and once the in-place editor is ready, - // set the 'active' state. A "loading" indicator will be shown in the - // UI for as long as the field remains in this state. - const loadDependencies = function (callback) { - // Do the loading here. - callback(); - }; - loadDependencies(() => { - fieldModel.set('state', 'active'); - }); - break; - } - - case 'active': - // The user can now actually use the in-place editor. - break; - - case 'changed': - // Nothing to do for the typical in-place editor. The UI will show an - // indicator that the field has changed. - break; - - case 'saving': - // When the user has triggered a save to this field, this state will - // be entered. If the previous saving attempt resulted in validation - // errors, the previous state will be 'invalid'. Clean up those - // validation errors while the user is saving. - if (from === 'invalid') { - this.removeValidationErrors(); - } - this.save(); - break; - - case 'saved': - // Nothing to do for the typical in-place editor. Immediately after - // being saved, a field will go to the 'candidate' state, where it - // should no longer be visible (after all, the field will then again - // just be a *candidate* to be in-place edited). - break; - - case 'invalid': - // The modified field value was attempted to be saved, but there were - // validation errors. - this.showValidationErrors(); - break; - } - }, - - /** - * Reverts the modified value to the original, before editing started. - */ - revert() { - // A no-op by default; each editor should implement reverting itself. - // Note that if the in-place editor does not cause the FieldModel's - // element to be modified, then nothing needs to happen. - }, - - /** - * Saves the modified value in the in-place editor for this field. - */ - save() { - const fieldModel = this.fieldModel; - const editorModel = this.model; - const backstageId = `quickedit_backstage-${this.fieldModel.id.replace( - /[/[\]_\s]/g, - '-', - )}`; - - function fillAndSubmitForm(value) { - const $form = $(`#${backstageId}`).find('form'); - // Fill in the value in any <input> that isn't hidden or a submit - // button. - // eslint-disable-next-line jquery/no-val - $form - .find(':input[type!="hidden"][type!="submit"]:not(select)') - // Don't mess with the node summary. - .not('[name$="\\[summary\\]"]') - .val(value); - // Submit the form. - $form.find('.quickedit-form-submit').trigger('click.quickedit'); - } - - const formOptions = { - fieldID: this.fieldModel.get('fieldID'), - $el: this.$el, - nocssjs: true, - other_view_modes: fieldModel.findOtherViewModes(), - // Reset an existing entry for this entity in the PrivateTempStore (if - // any) when saving the field. Logically speaking, this should happen in - // a separate request because this is an entity-level operation, not a - // field-level operation. But that would require an additional request, - // that might not even be necessary: it is only when a user saves a - // first changed field for an entity that this needs to happen: - // precisely now! - reset: !this.fieldModel.get('entity').get('inTempStore'), - }; - - const self = this; - Drupal.quickedit.util.form.load(formOptions, (form, ajax) => { - // Create a backstage area for storing forms that are hidden from view - // (hence "backstage" — since the editing doesn't happen in the form, it - // happens "directly" in the content, the form is only used for saving). - const $backstage = $( - Drupal.theme('quickeditBackstage', { id: backstageId }), - ).appendTo('body'); - // Hidden forms are stuffed into the backstage container for this field. - const $form = $(form).appendTo($backstage); - // Disable the browser's HTML5 validation; we only care about server- - // side validation. (Not disabling this will actually cause problems - // because browsers don't like to set HTML5 validation errors on hidden - // forms.) - $form.prop('novalidate', true); - const $submit = $form.find('.quickedit-form-submit'); - self.formSaveAjax = Drupal.quickedit.util.form.ajaxifySaving( - formOptions, - $submit, - ); - - function removeHiddenForm() { - Drupal.quickedit.util.form.unajaxifySaving(self.formSaveAjax); - delete self.formSaveAjax; - $backstage.remove(); - } - - // Successfully saved. - self.formSaveAjax.commands.quickeditFieldFormSaved = function ( - ajax, - response, - status, - ) { - removeHiddenForm(); - // First, transition the state to 'saved'. - fieldModel.set('state', 'saved'); - // Second, set the 'htmlForOtherViewModes' attribute, so that when - // this field is rerendered, the change can be propagated to other - // instances of this field, which may be displayed in different view - // modes. - fieldModel.set('htmlForOtherViewModes', response.other_view_modes); - // Finally, set the 'html' attribute on the field model. This will - // cause the field to be rerendered. - fieldModel.set('html', response.data); - }; - - // Unsuccessfully saved; validation errors. - self.formSaveAjax.commands.quickeditFieldFormValidationErrors = - function (ajax, response, status) { - removeHiddenForm(); - editorModel.set('validationErrors', response.data); - fieldModel.set('state', 'invalid'); - }; - - // The quickeditFieldForm AJAX command is only called upon loading the - // form for the first time, and when there are validation errors in the - // form; Form API then marks which form items have errors. This is - // useful for the form-based in-place editor, but pointless for any - // other: the form itself won't be visible at all anyway! So, we just - // ignore it. - self.formSaveAjax.commands.quickeditFieldForm = function () {}; - - fillAndSubmitForm(editorModel.get('currentValue')); - }); - }, - - /** - * Shows validation error messages. - * - * Should be called when the state is changed to 'invalid'. - */ - showValidationErrors() { - const $errors = $( - '<div class="quickedit-validation-errors"></div>', - ).append(this.model.get('validationErrors')); - this.getEditedElement() - .addClass('quickedit-validation-error') - .after($errors); - }, - - /** - * Cleans up validation error messages. - * - * Should be called when the state is changed to 'candidate' or 'saving'. In - * the case of the latter: the user has modified the value in the in-place - * editor again to attempt to save again. In the case of the latter: the - * invalid value was discarded. - */ - removeValidationErrors() { - this.getEditedElement() - .removeClass('quickedit-validation-error') - .next('.quickedit-validation-errors') - .remove(); - }, - }, - ); -})(jQuery, Backbone, Drupal); diff --git a/core/modules/quickedit/js/views/EditorView.js b/core/modules/quickedit/js/views/EditorView.js deleted file mode 100644 index 6eb89ef164a7d25ac612d95970d52db4e2e2d6d2..0000000000000000000000000000000000000000 --- a/core/modules/quickedit/js/views/EditorView.js +++ /dev/null @@ -1,151 +0,0 @@ -/** -* DO NOT EDIT THIS FILE. -* See the following change record for more information, -* https://www.drupal.org/node/2815083 -* @preserve -**/ - -(function ($, Backbone, Drupal) { - Drupal.quickedit.EditorView = Backbone.View.extend({ - initialize(options) { - this.fieldModel = options.fieldModel; - this.listenTo(this.fieldModel, 'change:state', this.stateChange); - }, - - remove() { - this.setElement(); - Backbone.View.prototype.remove.call(this); - }, - - getEditedElement() { - return this.$el; - }, - - getQuickEditUISettings() { - return { - padding: false, - unifiedToolbar: false, - fullWidthToolbar: false, - popup: false - }; - }, - - stateChange(fieldModel, state) { - const from = fieldModel.previous('state'); - const to = state; - - switch (to) { - case 'inactive': - break; - - case 'candidate': - if (from === 'invalid') { - this.removeValidationErrors(); - } - - break; - - case 'highlighted': - break; - - case 'activating': - { - const loadDependencies = function (callback) { - callback(); - }; - - loadDependencies(() => { - fieldModel.set('state', 'active'); - }); - break; - } - - case 'active': - break; - - case 'changed': - break; - - case 'saving': - if (from === 'invalid') { - this.removeValidationErrors(); - } - - this.save(); - break; - - case 'saved': - break; - - case 'invalid': - this.showValidationErrors(); - break; - } - }, - - revert() {}, - - save() { - const fieldModel = this.fieldModel; - const editorModel = this.model; - const backstageId = `quickedit_backstage-${this.fieldModel.id.replace(/[/[\]_\s]/g, '-')}`; - - function fillAndSubmitForm(value) { - const $form = $(`#${backstageId}`).find('form'); - $form.find(':input[type!="hidden"][type!="submit"]:not(select)').not('[name$="\\[summary\\]"]').val(value); - $form.find('.quickedit-form-submit').trigger('click.quickedit'); - } - - const formOptions = { - fieldID: this.fieldModel.get('fieldID'), - $el: this.$el, - nocssjs: true, - other_view_modes: fieldModel.findOtherViewModes(), - reset: !this.fieldModel.get('entity').get('inTempStore') - }; - const self = this; - Drupal.quickedit.util.form.load(formOptions, (form, ajax) => { - const $backstage = $(Drupal.theme('quickeditBackstage', { - id: backstageId - })).appendTo('body'); - const $form = $(form).appendTo($backstage); - $form.prop('novalidate', true); - const $submit = $form.find('.quickedit-form-submit'); - self.formSaveAjax = Drupal.quickedit.util.form.ajaxifySaving(formOptions, $submit); - - function removeHiddenForm() { - Drupal.quickedit.util.form.unajaxifySaving(self.formSaveAjax); - delete self.formSaveAjax; - $backstage.remove(); - } - - self.formSaveAjax.commands.quickeditFieldFormSaved = function (ajax, response, status) { - removeHiddenForm(); - fieldModel.set('state', 'saved'); - fieldModel.set('htmlForOtherViewModes', response.other_view_modes); - fieldModel.set('html', response.data); - }; - - self.formSaveAjax.commands.quickeditFieldFormValidationErrors = function (ajax, response, status) { - removeHiddenForm(); - editorModel.set('validationErrors', response.data); - fieldModel.set('state', 'invalid'); - }; - - self.formSaveAjax.commands.quickeditFieldForm = function () {}; - - fillAndSubmitForm(editorModel.get('currentValue')); - }); - }, - - showValidationErrors() { - const $errors = $('<div class="quickedit-validation-errors"></div>').append(this.model.get('validationErrors')); - this.getEditedElement().addClass('quickedit-validation-error').after($errors); - }, - - removeValidationErrors() { - this.getEditedElement().removeClass('quickedit-validation-error').next('.quickedit-validation-errors').remove(); - } - - }); -})(jQuery, Backbone, Drupal); \ No newline at end of file diff --git a/core/modules/quickedit/js/views/EntityDecorationView.es6.js b/core/modules/quickedit/js/views/EntityDecorationView.es6.js deleted file mode 100644 index e00439c37756d77f094d31e9781c6a0a40b552f0..0000000000000000000000000000000000000000 --- a/core/modules/quickedit/js/views/EntityDecorationView.es6.js +++ /dev/null @@ -1,39 +0,0 @@ -/** - * @file - * A Backbone view that decorates the in-place editable entity. - */ - -(function (Drupal, $, Backbone) { - Drupal.quickedit.EntityDecorationView = Backbone.View.extend( - /** @lends Drupal.quickedit.EntityDecorationView# */ { - /** - * Associated with the DOM root node of an editable entity. - * - * @constructs - * - * @augments Backbone.View - */ - initialize() { - this.listenTo(this.model, 'change', this.render); - }, - - /** - * {@inheritdoc} - */ - render() { - this.$el.toggleClass( - 'quickedit-entity-active', - this.model.get('isActive'), - ); - }, - - /** - * {@inheritdoc} - */ - remove() { - this.setElement(null); - Backbone.View.prototype.remove.call(this); - }, - }, - ); -})(Drupal, jQuery, Backbone); diff --git a/core/modules/quickedit/js/views/EntityDecorationView.js b/core/modules/quickedit/js/views/EntityDecorationView.js deleted file mode 100644 index 7c3158ad775971f17218e94ead8cdda3ca32c56e..0000000000000000000000000000000000000000 --- a/core/modules/quickedit/js/views/EntityDecorationView.js +++ /dev/null @@ -1,24 +0,0 @@ -/** -* DO NOT EDIT THIS FILE. -* See the following change record for more information, -* https://www.drupal.org/node/2815083 -* @preserve -**/ - -(function (Drupal, $, Backbone) { - Drupal.quickedit.EntityDecorationView = Backbone.View.extend({ - initialize() { - this.listenTo(this.model, 'change', this.render); - }, - - render() { - this.$el.toggleClass('quickedit-entity-active', this.model.get('isActive')); - }, - - remove() { - this.setElement(null); - Backbone.View.prototype.remove.call(this); - } - - }); -})(Drupal, jQuery, Backbone); \ No newline at end of file diff --git a/core/modules/quickedit/js/views/EntityToolbarView.es6.js b/core/modules/quickedit/js/views/EntityToolbarView.es6.js deleted file mode 100644 index d559b9fdba98a565d8087831b2e196befc556594..0000000000000000000000000000000000000000 --- a/core/modules/quickedit/js/views/EntityToolbarView.es6.js +++ /dev/null @@ -1,574 +0,0 @@ -/** - * @file - * A Backbone View that provides an entity level toolbar. - */ - -(function ($, _, Backbone, Drupal, debounce, Popper) { - Drupal.quickedit.EntityToolbarView = Backbone.View.extend( - /** @lends Drupal.quickedit.EntityToolbarView# */ { - /** - * @type {jQuery} - */ - _fieldToolbarRoot: null, - - /** - * @return {object} - * A map of events. - */ - events() { - const map = { - 'click button.action-save': 'onClickSave', - 'click button.action-cancel': 'onClickCancel', - mouseenter: 'onMouseenter', - }; - return map; - }, - - /** - * @constructs - * - * @augments Backbone.View - * - * @param {object} options - * Options to construct the view. - * @param {Drupal.quickedit.AppModel} options.appModel - * A quickedit `AppModel` to use in the view. - */ - initialize(options) { - const that = this; - this.appModel = options.appModel; - this.$entity = $(this.model.get('el')); - - // Rerender whenever the entity state changes. - this.listenTo( - this.model, - 'change:isActive change:isDirty change:state', - this.render, - ); - // Also rerender whenever a different field is highlighted or activated. - this.listenTo( - this.appModel, - 'change:highlightedField change:activeField', - this.render, - ); - // Rerender when a field of the entity changes state. - this.listenTo( - this.model.get('fields'), - 'change:state', - this.fieldStateChange, - ); - - // Reposition the entity toolbar as the viewport and the position within - // the viewport changes. - $(window).on( - 'resize.quickedit scroll.quickedit drupalViewportOffsetChange.quickedit', - debounce($.proxy(this.windowChangeHandler, this), 150), - ); - - // Adjust the fence placement within which the entity toolbar may be - // positioned. - $(document).on( - 'drupalViewportOffsetChange.quickedit', - (event, offsets) => { - if (that.$fence) { - that.$fence.css(offsets); - } - }, - ); - - // Set the entity toolbar DOM element as the el for this view. - const $toolbar = this.buildToolbarEl(); - this.setElement($toolbar); - this._fieldToolbarRoot = $toolbar - .find('.quickedit-toolbar-field') - .get(0); - - // Initial render. - this.render(); - }, - - /** - * {@inheritdoc} - * - * @return {Drupal.quickedit.EntityToolbarView} - * The entity toolbar view. - */ - render() { - if (this.model.get('isActive')) { - // If the toolbar container doesn't exist, create it. - const $body = $('body'); - if ($body.children('#quickedit-entity-toolbar').length === 0) { - $body.append(this.$el); - } - // The fence will define an area on the screen that the entity toolbar - // will be positioned within. - if ($body.children('#quickedit-toolbar-fence').length === 0) { - this.$fence = $(Drupal.theme('quickeditEntityToolbarFence')) - .css(Drupal.displace()) - .appendTo($body); - } - // Adds the entity title to the toolbar. - this.label(); - - // Show the save and cancel buttons. - this.show('ops'); - // If render is being called and the toolbar is already visible, just - // reposition it. - this.position(); - } - - // The save button text and state varies with the state of the entity - // model. - const $button = this.$el.find('.quickedit-button.action-save'); - const isDirty = this.model.get('isDirty'); - // Adjust the save button according to the state of the model. - switch (this.model.get('state')) { - // Quick editing is active, but no field is being edited. - case 'opened': - // The saving throbber is not managed by AJAX system. The - // EntityToolbarView manages this visual element. - $button[0].textContent = Drupal.t('Save'); - $button - .removeClass('action-saving icon-throbber icon-end') - .removeAttr('disabled') - .attr('aria-hidden', !isDirty); - break; - - // The changes to the fields of the entity are being committed. - case 'committing': - $button[0].textContent = Drupal.t('Saving'); - $button - .addClass('action-saving icon-throbber icon-end') - .attr('disabled', 'disabled'); - break; - - default: - $button.attr('aria-hidden', true); - break; - } - - return this; - }, - - /** - * {@inheritdoc} - */ - remove() { - // Remove additional DOM elements controlled by this View. - this.$fence.remove(); - - // Stop listening to additional events. - $(window).off( - 'resize.quickedit scroll.quickedit drupalViewportOffsetChange.quickedit', - ); - $(document).off('drupalViewportOffsetChange.quickedit'); - - Backbone.View.prototype.remove.call(this); - }, - - /** - * Repositions the entity toolbar on window scroll and resize. - * - * @param {jQuery.Event} event - * The scroll or resize event. - */ - windowChangeHandler(event) { - this.position(); - }, - - /** - * Determines the actions to take given a change of state. - * - * @param {Drupal.quickedit.FieldModel} model - * The `FieldModel` model. - * @param {string} state - * The state of the associated field. One of - * {@link Drupal.quickedit.FieldModel.states}. - */ - fieldStateChange(model, state) { - switch (state) { - case 'active': - this.render(); - break; - - case 'invalid': - this.render(); - break; - } - }, - - /** - * Uses the Popper() method to position the entity toolbar. - * - * @param {HTMLElement} [element] - * The element against which the entity toolbar is positioned. - */ - position(element) { - clearTimeout(this.timer); - - const that = this; - // Vary the edge of the positioning according to the direction of language - // in the document. - const edge = document.documentElement.dir === 'rtl' ? 'right' : 'left'; - // A time unit to wait until the entity toolbar is repositioned. - let delay = 0; - // Determines what check in the series of checks below should be - // evaluated. - let check = 0; - // When positioned against an active field that has padding, we should - // ignore that padding when positioning the toolbar, to not unnecessarily - // move the toolbar horizontally, which feels annoying. - let horizontalPadding = 0; - let of; - let activeField; - let highlightedField; - // There are several elements in the page that the entity toolbar might be - // positioned against. They are considered below in a priority order. - do { - switch (check) { - case 0: - // Position against a specific element. - of = element; - break; - - case 1: - // Position against a form container. - activeField = Drupal.quickedit.app.model.get('activeField'); - of = - activeField && - activeField.editorView && - activeField.editorView.$formContainer && - activeField.editorView.$formContainer.find('.quickedit-form'); - break; - - case 2: - // Position against an active field. - of = - activeField && - activeField.editorView && - activeField.editorView.getEditedElement(); - if ( - activeField && - activeField.editorView && - activeField.editorView.getQuickEditUISettings().padding - ) { - horizontalPadding = 5; - } - break; - - case 3: - // Position against a highlighted field. - highlightedField = - Drupal.quickedit.app.model.get('highlightedField'); - of = - highlightedField && - highlightedField.editorView && - highlightedField.editorView.getEditedElement(); - delay = 250; - break; - - default: { - const fieldModels = this.model.get('fields').models; - let topMostPosition = 1000000; - let topMostField = null; - // Position against the topmost field. - for (let i = 0; i < fieldModels.length; i++) { - const pos = fieldModels[i] - .get('el') - .getBoundingClientRect().top; - if (pos < topMostPosition) { - topMostPosition = pos; - topMostField = fieldModels[i]; - } - } - of = topMostField.get('el'); - delay = 50; - break; - } - } - // Prepare to check the next possible element to position against. - check++; - } while (!of); - - /** - * Refines popper positioning. - * - * @param {object} data - * Data object containing popper and target data. - */ - function refinePopper({ state }) { - // Determine if the pointer should be on the top or bottom. - const isBelow = state.placement.split('-')[0] === 'bottom'; - const classListMethod = isBelow ? 'add' : 'remove'; - state.elements.popper.classList[classListMethod]( - 'quickedit-toolbar-pointer-top', - ); - } - /** - * Calls the Popper() method on the $el of this view. - */ - function positionToolbar() { - const popperElement = that.el; - const referenceElement = of; - const boundariesElement = that.$fence[0]; - const popperedge = edge === 'left' ? 'start' : 'end'; - if (referenceElement !== undefined) { - if (!popperElement.classList.contains('js-popper-processed')) { - that.popper = Popper.createPopper( - referenceElement, - popperElement, - { - placement: `top-${popperedge}`, - modifiers: [ - { - name: 'flip', - options: { - boundary: boundariesElement, - }, - }, - { - name: 'preventOverflow', - options: { - boundary: boundariesElement, - tether: false, - altAxis: true, - padding: { top: 5, bottom: 5 }, - }, - }, - { - name: 'computeStyles', - options: { - adaptive: false, - }, - }, - { - name: 'refinePopper', - phase: 'write', - enabled: true, - fn: refinePopper, - }, - ], - }, - ); - popperElement.classList.add('js-popper-processed'); - } else { - that.popper.state.elements.reference = referenceElement[0] - ? referenceElement[0] - : referenceElement; - that.popper.forceUpdate(); - } - } - - that.$el - // Resize the toolbar to match the dimensions of the field, up to a - // maximum width that is equal to 90% of the field's width. - .css({ - 'max-width': - document.documentElement.clientWidth < 450 - ? document.documentElement.clientWidth - : 450, - // Set a minimum width of 240px for the entity toolbar, or the width - // of the client if it is less than 240px, so that the toolbar - // never folds up into a squashed and jumbled mess. - 'min-width': - document.documentElement.clientWidth < 240 - ? document.documentElement.clientWidth - : 240, - width: '100%', - }); - } - - // Uses the jQuery.ui.position() method. Use a timeout to move the toolbar - // only after the user has focused on an editable for 250ms. This prevents - // the toolbar from jumping around the screen. - this.timer = setTimeout(() => { - // Render the position in the next execution cycle, so that animations - // on the field have time to process. This is not strictly speaking, a - // guarantee that all animations will be finished, but it's a simple - // way to get better positioning without too much additional code. - _.defer(positionToolbar); - }, delay); - }, - - /** - * Set the model state to 'saving' when the save button is clicked. - * - * @param {jQuery.Event} event - * The click event. - */ - onClickSave(event) { - event.stopPropagation(); - event.preventDefault(); - // Save the model. - this.model.set('state', 'committing'); - }, - - /** - * Sets the model state to candidate when the cancel button is clicked. - * - * @param {jQuery.Event} event - * The click event. - */ - onClickCancel(event) { - event.preventDefault(); - this.model.set('state', 'deactivating'); - }, - - /** - * Clears the timeout that will eventually reposition the entity toolbar. - * - * Without this, it may reposition itself, away from the user's cursor! - * - * @param {jQuery.Event} event - * The mouse event. - */ - onMouseenter(event) { - clearTimeout(this.timer); - }, - - /** - * Builds the entity toolbar HTML; attaches to DOM; sets starting position. - * - * @return {jQuery} - * The toolbar element. - */ - buildToolbarEl() { - const $toolbar = $( - Drupal.theme('quickeditEntityToolbar', { - id: 'quickedit-entity-toolbar', - }), - ); - - $toolbar - .find('.quickedit-toolbar-entity') - // Append the "ops" toolgroup into the toolbar. - .prepend( - Drupal.theme('quickeditToolgroup', { - classes: ['ops'], - buttons: [ - { - label: Drupal.t('Save'), - type: 'submit', - classes: 'action-save quickedit-button icon', - attributes: { - 'aria-hidden': true, - }, - }, - { - label: Drupal.t('Close'), - classes: - 'action-cancel quickedit-button icon icon-close icon-only', - }, - ], - }), - ); - - // Give the toolbar a sensible starting position so that it doesn't - // animate on to the screen from a far off corner. - $toolbar.css({ - left: this.$entity.offset().left, - top: this.$entity.offset().top, - }); - - return $toolbar; - }, - - /** - * Returns the DOM element that fields will attach their toolbars to. - * - * @return {jQuery} - * The DOM element that fields will attach their toolbars to. - */ - getToolbarRoot() { - return this._fieldToolbarRoot; - }, - - /** - * Generates a state-dependent label for the entity toolbar. - */ - label() { - // The entity label. - let label = ''; - const entityLabel = this.model.get('label'); - - // Label of an active field, if it exists. - const activeField = Drupal.quickedit.app.model.get('activeField'); - const activeFieldLabel = - activeField && activeField.get('metadata').label; - // Label of a highlighted field, if it exists. - const highlightedField = - Drupal.quickedit.app.model.get('highlightedField'); - const highlightedFieldLabel = - highlightedField && highlightedField.get('metadata').label; - // The label is constructed in a priority order. - if (activeFieldLabel) { - label = Drupal.theme('quickeditEntityToolbarLabel', { - entityLabel, - fieldLabel: activeFieldLabel, - }); - } else if (highlightedFieldLabel) { - label = Drupal.theme('quickeditEntityToolbarLabel', { - entityLabel, - fieldLabel: highlightedFieldLabel, - }); - } else { - // @todo Add XSS regression test coverage in https://www.drupal.org/node/2547437 - label = Drupal.checkPlain(entityLabel); - } - - this.$el.find('.quickedit-toolbar-label').html(label); - }, - - /** - * Adds classes to a toolgroup. - * - * @param {string} toolgroup - * A toolgroup name. - * @param {string} classes - * A string of space-delimited class names that will be applied to the - * wrapping element of the toolbar group. - */ - addClass(toolgroup, classes) { - this._find(toolgroup).addClass(classes); - }, - - /** - * Removes classes from a toolgroup. - * - * @param {string} toolgroup - * A toolgroup name. - * @param {string} classes - * A string of space-delimited class names that will be removed from the - * wrapping element of the toolbar group. - */ - removeClass(toolgroup, classes) { - this._find(toolgroup).removeClass(classes); - }, - - /** - * Finds a toolgroup. - * - * @param {string} toolgroup - * A toolgroup name. - * - * @return {jQuery} - * The toolgroup DOM element. - */ - _find(toolgroup) { - return this.$el.find( - `.quickedit-toolbar .quickedit-toolgroup.${toolgroup}`, - ); - }, - - /** - * Shows a toolgroup. - * - * @param {string} toolgroup - * A toolgroup name. - */ - show(toolgroup) { - this.$el.removeClass('quickedit-animate-invisible'); - }, - }, - ); -})(jQuery, _, Backbone, Drupal, Drupal.debounce, Popper); diff --git a/core/modules/quickedit/js/views/EntityToolbarView.js b/core/modules/quickedit/js/views/EntityToolbarView.js deleted file mode 100644 index 6ae60ddc742059fcd6e712fd6c74922eae0458a3..0000000000000000000000000000000000000000 --- a/core/modules/quickedit/js/views/EntityToolbarView.js +++ /dev/null @@ -1,315 +0,0 @@ -/** -* DO NOT EDIT THIS FILE. -* See the following change record for more information, -* https://www.drupal.org/node/2815083 -* @preserve -**/ - -(function ($, _, Backbone, Drupal, debounce, Popper) { - Drupal.quickedit.EntityToolbarView = Backbone.View.extend({ - _fieldToolbarRoot: null, - - events() { - const map = { - 'click button.action-save': 'onClickSave', - 'click button.action-cancel': 'onClickCancel', - mouseenter: 'onMouseenter' - }; - return map; - }, - - initialize(options) { - const that = this; - this.appModel = options.appModel; - this.$entity = $(this.model.get('el')); - this.listenTo(this.model, 'change:isActive change:isDirty change:state', this.render); - this.listenTo(this.appModel, 'change:highlightedField change:activeField', this.render); - this.listenTo(this.model.get('fields'), 'change:state', this.fieldStateChange); - $(window).on('resize.quickedit scroll.quickedit drupalViewportOffsetChange.quickedit', debounce($.proxy(this.windowChangeHandler, this), 150)); - $(document).on('drupalViewportOffsetChange.quickedit', (event, offsets) => { - if (that.$fence) { - that.$fence.css(offsets); - } - }); - const $toolbar = this.buildToolbarEl(); - this.setElement($toolbar); - this._fieldToolbarRoot = $toolbar.find('.quickedit-toolbar-field').get(0); - this.render(); - }, - - render() { - if (this.model.get('isActive')) { - const $body = $('body'); - - if ($body.children('#quickedit-entity-toolbar').length === 0) { - $body.append(this.$el); - } - - if ($body.children('#quickedit-toolbar-fence').length === 0) { - this.$fence = $(Drupal.theme('quickeditEntityToolbarFence')).css(Drupal.displace()).appendTo($body); - } - - this.label(); - this.show('ops'); - this.position(); - } - - const $button = this.$el.find('.quickedit-button.action-save'); - const isDirty = this.model.get('isDirty'); - - switch (this.model.get('state')) { - case 'opened': - $button[0].textContent = Drupal.t('Save'); - $button.removeClass('action-saving icon-throbber icon-end').removeAttr('disabled').attr('aria-hidden', !isDirty); - break; - - case 'committing': - $button[0].textContent = Drupal.t('Saving'); - $button.addClass('action-saving icon-throbber icon-end').attr('disabled', 'disabled'); - break; - - default: - $button.attr('aria-hidden', true); - break; - } - - return this; - }, - - remove() { - this.$fence.remove(); - $(window).off('resize.quickedit scroll.quickedit drupalViewportOffsetChange.quickedit'); - $(document).off('drupalViewportOffsetChange.quickedit'); - Backbone.View.prototype.remove.call(this); - }, - - windowChangeHandler(event) { - this.position(); - }, - - fieldStateChange(model, state) { - switch (state) { - case 'active': - this.render(); - break; - - case 'invalid': - this.render(); - break; - } - }, - - position(element) { - clearTimeout(this.timer); - const that = this; - const edge = document.documentElement.dir === 'rtl' ? 'right' : 'left'; - let delay = 0; - let check = 0; - let horizontalPadding = 0; - let of; - let activeField; - let highlightedField; - - do { - switch (check) { - case 0: - of = element; - break; - - case 1: - activeField = Drupal.quickedit.app.model.get('activeField'); - of = activeField && activeField.editorView && activeField.editorView.$formContainer && activeField.editorView.$formContainer.find('.quickedit-form'); - break; - - case 2: - of = activeField && activeField.editorView && activeField.editorView.getEditedElement(); - - if (activeField && activeField.editorView && activeField.editorView.getQuickEditUISettings().padding) { - horizontalPadding = 5; - } - - break; - - case 3: - highlightedField = Drupal.quickedit.app.model.get('highlightedField'); - of = highlightedField && highlightedField.editorView && highlightedField.editorView.getEditedElement(); - delay = 250; - break; - - default: - { - const fieldModels = this.model.get('fields').models; - let topMostPosition = 1000000; - let topMostField = null; - - for (let i = 0; i < fieldModels.length; i++) { - const pos = fieldModels[i].get('el').getBoundingClientRect().top; - - if (pos < topMostPosition) { - topMostPosition = pos; - topMostField = fieldModels[i]; - } - } - - of = topMostField.get('el'); - delay = 50; - break; - } - } - - check++; - } while (!of); - - function refinePopper(_ref) { - let { - state - } = _ref; - const isBelow = state.placement.split('-')[0] === 'bottom'; - const classListMethod = isBelow ? 'add' : 'remove'; - state.elements.popper.classList[classListMethod]('quickedit-toolbar-pointer-top'); - } - - function positionToolbar() { - const popperElement = that.el; - const referenceElement = of; - const boundariesElement = that.$fence[0]; - const popperedge = edge === 'left' ? 'start' : 'end'; - - if (referenceElement !== undefined) { - if (!popperElement.classList.contains('js-popper-processed')) { - that.popper = Popper.createPopper(referenceElement, popperElement, { - placement: `top-${popperedge}`, - modifiers: [{ - name: 'flip', - options: { - boundary: boundariesElement - } - }, { - name: 'preventOverflow', - options: { - boundary: boundariesElement, - tether: false, - altAxis: true, - padding: { - top: 5, - bottom: 5 - } - } - }, { - name: 'computeStyles', - options: { - adaptive: false - } - }, { - name: 'refinePopper', - phase: 'write', - enabled: true, - fn: refinePopper - }] - }); - popperElement.classList.add('js-popper-processed'); - } else { - that.popper.state.elements.reference = referenceElement[0] ? referenceElement[0] : referenceElement; - that.popper.forceUpdate(); - } - } - - that.$el.css({ - 'max-width': document.documentElement.clientWidth < 450 ? document.documentElement.clientWidth : 450, - 'min-width': document.documentElement.clientWidth < 240 ? document.documentElement.clientWidth : 240, - width: '100%' - }); - } - - this.timer = setTimeout(() => { - _.defer(positionToolbar); - }, delay); - }, - - onClickSave(event) { - event.stopPropagation(); - event.preventDefault(); - this.model.set('state', 'committing'); - }, - - onClickCancel(event) { - event.preventDefault(); - this.model.set('state', 'deactivating'); - }, - - onMouseenter(event) { - clearTimeout(this.timer); - }, - - buildToolbarEl() { - const $toolbar = $(Drupal.theme('quickeditEntityToolbar', { - id: 'quickedit-entity-toolbar' - })); - $toolbar.find('.quickedit-toolbar-entity').prepend(Drupal.theme('quickeditToolgroup', { - classes: ['ops'], - buttons: [{ - label: Drupal.t('Save'), - type: 'submit', - classes: 'action-save quickedit-button icon', - attributes: { - 'aria-hidden': true - } - }, { - label: Drupal.t('Close'), - classes: 'action-cancel quickedit-button icon icon-close icon-only' - }] - })); - $toolbar.css({ - left: this.$entity.offset().left, - top: this.$entity.offset().top - }); - return $toolbar; - }, - - getToolbarRoot() { - return this._fieldToolbarRoot; - }, - - label() { - let label = ''; - const entityLabel = this.model.get('label'); - const activeField = Drupal.quickedit.app.model.get('activeField'); - const activeFieldLabel = activeField && activeField.get('metadata').label; - const highlightedField = Drupal.quickedit.app.model.get('highlightedField'); - const highlightedFieldLabel = highlightedField && highlightedField.get('metadata').label; - - if (activeFieldLabel) { - label = Drupal.theme('quickeditEntityToolbarLabel', { - entityLabel, - fieldLabel: activeFieldLabel - }); - } else if (highlightedFieldLabel) { - label = Drupal.theme('quickeditEntityToolbarLabel', { - entityLabel, - fieldLabel: highlightedFieldLabel - }); - } else { - label = Drupal.checkPlain(entityLabel); - } - - this.$el.find('.quickedit-toolbar-label').html(label); - }, - - addClass(toolgroup, classes) { - this._find(toolgroup).addClass(classes); - }, - - removeClass(toolgroup, classes) { - this._find(toolgroup).removeClass(classes); - }, - - _find(toolgroup) { - return this.$el.find(`.quickedit-toolbar .quickedit-toolgroup.${toolgroup}`); - }, - - show(toolgroup) { - this.$el.removeClass('quickedit-animate-invisible'); - } - - }); -})(jQuery, _, Backbone, Drupal, Drupal.debounce, Popper); \ No newline at end of file diff --git a/core/modules/quickedit/js/views/FieldDecorationView.es6.js b/core/modules/quickedit/js/views/FieldDecorationView.es6.js deleted file mode 100644 index d4a8a02262e972cbdef2ec6534285239b5b9da99..0000000000000000000000000000000000000000 --- a/core/modules/quickedit/js/views/FieldDecorationView.es6.js +++ /dev/null @@ -1,368 +0,0 @@ -/** - * @file - * A Backbone View that decorates the in-place edited element. - */ - -(function ($, Backbone, Drupal) { - Drupal.quickedit.FieldDecorationView = Backbone.View.extend( - /** @lends Drupal.quickedit.FieldDecorationView# */ { - /** - * @type {null} - */ - _widthAttributeIsEmpty: null, - - /** - * @type {object} - */ - events: { - 'mouseenter.quickedit': 'onMouseEnter', - 'mouseleave.quickedit': 'onMouseLeave', - click: 'onClick', - 'tabIn.quickedit': 'onMouseEnter', - 'tabOut.quickedit': 'onMouseLeave', - }, - - /** - * @constructs - * - * @augments Backbone.View - * - * @param {object} options - * An object with the following keys: - * @param {Drupal.quickedit.EditorView} options.editorView - * The editor object view. - */ - initialize(options) { - this.editorView = options.editorView; - - this.listenTo(this.model, 'change:state', this.stateChange); - this.listenTo( - this.model, - 'change:isChanged change:inTempStore', - this.renderChanged, - ); - }, - - /** - * {@inheritdoc} - */ - remove() { - // The el property is the field, which should not be removed. Remove the - // pointer to it, then call Backbone.View.prototype.remove(). - this.setElement(); - Backbone.View.prototype.remove.call(this); - }, - - /** - * Determines the actions to take given a change of state. - * - * @param {Drupal.quickedit.FieldModel} model - * The `FieldModel` model. - * @param {string} state - * The state of the associated field. One of - * {@link Drupal.quickedit.FieldModel.states}. - */ - stateChange(model, state) { - const from = model.previous('state'); - const to = state; - switch (to) { - case 'inactive': - this.undecorate(); - break; - - case 'candidate': - this.decorate(); - if (from !== 'inactive') { - this.stopHighlight(); - if (from !== 'highlighted') { - this.model.set('isChanged', false); - this.stopEdit(); - } - } - this._unpad(); - break; - - case 'highlighted': - this.startHighlight(); - break; - - case 'activating': - // NOTE: this state is not used by every editor! It's only used by - // those that need to interact with the server. - this.prepareEdit(); - break; - - case 'active': - if (from !== 'activating') { - this.prepareEdit(); - } - if (this.editorView.getQuickEditUISettings().padding) { - this._pad(); - } - break; - - case 'changed': - this.model.set('isChanged', true); - break; - - case 'saving': - break; - - case 'saved': - break; - - case 'invalid': - break; - } - }, - - /** - * Adds a class to the edited element that indicates whether the field has - * been changed by the user (i.e. locally) or the field has already been - * changed and stored before by the user (i.e. remotely, stored in - * PrivateTempStore). - */ - renderChanged() { - this.$el.toggleClass( - 'quickedit-changed', - this.model.get('isChanged') || this.model.get('inTempStore'), - ); - }, - - /** - * Starts hover; transitions to 'highlight' state. - * - * @param {jQuery.Event} event - * The mouse event. - */ - onMouseEnter(event) { - const that = this; - that.model.set('state', 'highlighted'); - event.stopPropagation(); - }, - - /** - * Stops hover; transitions to 'candidate' state. - * - * @param {jQuery.Event} event - * The mouse event. - */ - onMouseLeave(event) { - const that = this; - that.model.set('state', 'candidate', { reason: 'mouseleave' }); - event.stopPropagation(); - }, - - /** - * Transition to 'activating' stage. - * - * @param {jQuery.Event} event - * The click event. - */ - onClick(event) { - this.model.set('state', 'activating'); - event.preventDefault(); - event.stopPropagation(); - }, - - /** - * Adds classes used to indicate an elements editable state. - */ - decorate() { - this.$el.addClass('quickedit-candidate quickedit-editable'); - }, - - /** - * Removes classes used to indicate an elements editable state. - */ - undecorate() { - this.$el.removeClass( - 'quickedit-candidate quickedit-editable quickedit-highlighted quickedit-editing', - ); - }, - - /** - * Adds that class that indicates that an element is highlighted. - */ - startHighlight() { - // Animations. - const that = this; - // Use a timeout to grab the next available animation frame. - that.$el.addClass('quickedit-highlighted'); - }, - - /** - * Removes the class that indicates that an element is highlighted. - */ - stopHighlight() { - this.$el.removeClass('quickedit-highlighted'); - }, - - /** - * Removes the class that indicates that an element as editable. - */ - prepareEdit() { - this.$el.addClass('quickedit-editing'); - - // Allow the field to be styled differently while editing in a pop-up - // in-place editor. - if (this.editorView.getQuickEditUISettings().popup) { - this.$el.addClass('quickedit-editor-is-popup'); - } - }, - - /** - * Removes the class that indicates that an element is being edited. - * - * Reapplies the class that indicates that a candidate editable element is - * again available to be edited. - */ - stopEdit() { - this.$el.removeClass('quickedit-highlighted quickedit-editing'); - - // Done editing in a pop-up in-place editor; remove the class. - if (this.editorView.getQuickEditUISettings().popup) { - this.$el.removeClass('quickedit-editor-is-popup'); - } - - // Make the other editors show up again. - $('.quickedit-candidate').addClass('quickedit-editable'); - }, - - /** - * Adds padding around the editable element to make it pop visually. - */ - _pad() { - // Early return if the element has already been padded. - if (this.$el.data('quickedit-padded')) { - return; - } - const self = this; - - // Add 5px padding for readability. This means we'll freeze the current - // width and *then* add 5px padding, hence ensuring the padding is added - // "on the outside". - // 1) Freeze the width (if it's not already set); don't use animations. - if (this.$el[0].style.width === '') { - this._widthAttributeIsEmpty = true; - this.$el - .addClass('quickedit-animate-disable-width') - .css('width', this.$el.width()); - } - - // 2) Add padding; use animations. - const posProp = this._getPositionProperties(this.$el); - setTimeout(() => { - // Re-enable width animations (padding changes affect width too!). - self.$el.removeClass('quickedit-animate-disable-width'); - - // Pad the editable. - self.$el - .css({ - position: 'relative', - top: `${posProp.top - 5}px`, - left: `${posProp.left - 5}px`, - 'padding-top': `${posProp['padding-top'] + 5}px`, - 'padding-left': `${posProp['padding-left'] + 5}px`, - 'padding-right': `${posProp['padding-right'] + 5}px`, - 'padding-bottom': `${posProp['padding-bottom'] + 5}px`, - 'margin-bottom': `${posProp['margin-bottom'] - 10}px`, - }) - .data('quickedit-padded', true); - }, 0); - }, - - /** - * Removes the padding around the element being edited when editing ceases. - */ - _unpad() { - // Early return if the element has not been padded. - if (!this.$el.data('quickedit-padded')) { - return; - } - const self = this; - - // 1) Set the empty width again. - if (this._widthAttributeIsEmpty) { - this.$el.addClass('quickedit-animate-disable-width').css('width', ''); - } - - // 2) Remove padding; use animations (these will run simultaneously with) - // the fading out of the toolbar as its gets removed). - const posProp = this._getPositionProperties(this.$el); - setTimeout(() => { - // Re-enable width animations (padding changes affect width too!). - self.$el.removeClass('quickedit-animate-disable-width'); - - // Unpad the editable. - self.$el.css({ - position: 'relative', - top: `${posProp.top + 5}px`, - left: `${posProp.left + 5}px`, - 'padding-top': `${posProp['padding-top'] - 5}px`, - 'padding-left': `${posProp['padding-left'] - 5}px`, - 'padding-right': `${posProp['padding-right'] - 5}px`, - 'padding-bottom': `${posProp['padding-bottom'] - 5}px`, - 'margin-bottom': `${posProp['margin-bottom'] + 10}px`, - }); - }, 0); - // Remove the marker that indicates that this field has padding. This is - // done outside the timed out function above so that we don't get numerous - // queued functions that will remove padding before the data marker has - // been removed. - this.$el.removeData('quickedit-padded'); - }, - - /** - * Gets the top and left properties of an element. - * - * Convert extraneous values and information into numbers ready for - * subtraction. - * - * @param {jQuery} $e - * The element to get position properties from. - * - * @return {object} - * An object containing css values for the needed properties. - */ - _getPositionProperties($e) { - let p; - const r = {}; - const props = [ - 'top', - 'left', - 'bottom', - 'right', - 'padding-top', - 'padding-left', - 'padding-right', - 'padding-bottom', - 'margin-bottom', - ]; - - const propCount = props.length; - for (let i = 0; i < propCount; i++) { - p = props[i]; - r[p] = parseInt(this._replaceBlankPosition($e.css(p)), 10); - } - return r; - }, - - /** - * Replaces blank or 'auto' CSS `position: <value>` values with "0px". - * - * @param {string} [pos] - * The value for a CSS position declaration. - * - * @return {string} - * A CSS value that is valid for `position`. - */ - _replaceBlankPosition(pos) { - if (pos === 'auto' || !pos) { - pos = '0px'; - } - return pos; - }, - }, - ); -})(jQuery, Backbone, Drupal); diff --git a/core/modules/quickedit/js/views/FieldDecorationView.js b/core/modules/quickedit/js/views/FieldDecorationView.js deleted file mode 100644 index 605f59526ca7f50ab9eb3c1487a4e482dcb9e85d..0000000000000000000000000000000000000000 --- a/core/modules/quickedit/js/views/FieldDecorationView.js +++ /dev/null @@ -1,229 +0,0 @@ -/** -* DO NOT EDIT THIS FILE. -* See the following change record for more information, -* https://www.drupal.org/node/2815083 -* @preserve -**/ - -(function ($, Backbone, Drupal) { - Drupal.quickedit.FieldDecorationView = Backbone.View.extend({ - _widthAttributeIsEmpty: null, - events: { - 'mouseenter.quickedit': 'onMouseEnter', - 'mouseleave.quickedit': 'onMouseLeave', - click: 'onClick', - 'tabIn.quickedit': 'onMouseEnter', - 'tabOut.quickedit': 'onMouseLeave' - }, - - initialize(options) { - this.editorView = options.editorView; - this.listenTo(this.model, 'change:state', this.stateChange); - this.listenTo(this.model, 'change:isChanged change:inTempStore', this.renderChanged); - }, - - remove() { - this.setElement(); - Backbone.View.prototype.remove.call(this); - }, - - stateChange(model, state) { - const from = model.previous('state'); - const to = state; - - switch (to) { - case 'inactive': - this.undecorate(); - break; - - case 'candidate': - this.decorate(); - - if (from !== 'inactive') { - this.stopHighlight(); - - if (from !== 'highlighted') { - this.model.set('isChanged', false); - this.stopEdit(); - } - } - - this._unpad(); - - break; - - case 'highlighted': - this.startHighlight(); - break; - - case 'activating': - this.prepareEdit(); - break; - - case 'active': - if (from !== 'activating') { - this.prepareEdit(); - } - - if (this.editorView.getQuickEditUISettings().padding) { - this._pad(); - } - - break; - - case 'changed': - this.model.set('isChanged', true); - break; - - case 'saving': - break; - - case 'saved': - break; - - case 'invalid': - break; - } - }, - - renderChanged() { - this.$el.toggleClass('quickedit-changed', this.model.get('isChanged') || this.model.get('inTempStore')); - }, - - onMouseEnter(event) { - const that = this; - that.model.set('state', 'highlighted'); - event.stopPropagation(); - }, - - onMouseLeave(event) { - const that = this; - that.model.set('state', 'candidate', { - reason: 'mouseleave' - }); - event.stopPropagation(); - }, - - onClick(event) { - this.model.set('state', 'activating'); - event.preventDefault(); - event.stopPropagation(); - }, - - decorate() { - this.$el.addClass('quickedit-candidate quickedit-editable'); - }, - - undecorate() { - this.$el.removeClass('quickedit-candidate quickedit-editable quickedit-highlighted quickedit-editing'); - }, - - startHighlight() { - const that = this; - that.$el.addClass('quickedit-highlighted'); - }, - - stopHighlight() { - this.$el.removeClass('quickedit-highlighted'); - }, - - prepareEdit() { - this.$el.addClass('quickedit-editing'); - - if (this.editorView.getQuickEditUISettings().popup) { - this.$el.addClass('quickedit-editor-is-popup'); - } - }, - - stopEdit() { - this.$el.removeClass('quickedit-highlighted quickedit-editing'); - - if (this.editorView.getQuickEditUISettings().popup) { - this.$el.removeClass('quickedit-editor-is-popup'); - } - - $('.quickedit-candidate').addClass('quickedit-editable'); - }, - - _pad() { - if (this.$el.data('quickedit-padded')) { - return; - } - - const self = this; - - if (this.$el[0].style.width === '') { - this._widthAttributeIsEmpty = true; - this.$el.addClass('quickedit-animate-disable-width').css('width', this.$el.width()); - } - - const posProp = this._getPositionProperties(this.$el); - - setTimeout(() => { - self.$el.removeClass('quickedit-animate-disable-width'); - self.$el.css({ - position: 'relative', - top: `${posProp.top - 5}px`, - left: `${posProp.left - 5}px`, - 'padding-top': `${posProp['padding-top'] + 5}px`, - 'padding-left': `${posProp['padding-left'] + 5}px`, - 'padding-right': `${posProp['padding-right'] + 5}px`, - 'padding-bottom': `${posProp['padding-bottom'] + 5}px`, - 'margin-bottom': `${posProp['margin-bottom'] - 10}px` - }).data('quickedit-padded', true); - }, 0); - }, - - _unpad() { - if (!this.$el.data('quickedit-padded')) { - return; - } - - const self = this; - - if (this._widthAttributeIsEmpty) { - this.$el.addClass('quickedit-animate-disable-width').css('width', ''); - } - - const posProp = this._getPositionProperties(this.$el); - - setTimeout(() => { - self.$el.removeClass('quickedit-animate-disable-width'); - self.$el.css({ - position: 'relative', - top: `${posProp.top + 5}px`, - left: `${posProp.left + 5}px`, - 'padding-top': `${posProp['padding-top'] - 5}px`, - 'padding-left': `${posProp['padding-left'] - 5}px`, - 'padding-right': `${posProp['padding-right'] - 5}px`, - 'padding-bottom': `${posProp['padding-bottom'] - 5}px`, - 'margin-bottom': `${posProp['margin-bottom'] + 10}px` - }); - }, 0); - this.$el.removeData('quickedit-padded'); - }, - - _getPositionProperties($e) { - let p; - const r = {}; - const props = ['top', 'left', 'bottom', 'right', 'padding-top', 'padding-left', 'padding-right', 'padding-bottom', 'margin-bottom']; - const propCount = props.length; - - for (let i = 0; i < propCount; i++) { - p = props[i]; - r[p] = parseInt(this._replaceBlankPosition($e.css(p)), 10); - } - - return r; - }, - - _replaceBlankPosition(pos) { - if (pos === 'auto' || !pos) { - pos = '0px'; - } - - return pos; - } - - }); -})(jQuery, Backbone, Drupal); \ No newline at end of file diff --git a/core/modules/quickedit/js/views/FieldToolbarView.es6.js b/core/modules/quickedit/js/views/FieldToolbarView.es6.js deleted file mode 100644 index daa07364a6fcb318b3b83a078feb245c2bce71e4..0000000000000000000000000000000000000000 --- a/core/modules/quickedit/js/views/FieldToolbarView.es6.js +++ /dev/null @@ -1,244 +0,0 @@ -/** - * @file - * A Backbone View that provides an interactive toolbar (1 per in-place editor). - */ - -(function ($, _, Backbone, Drupal) { - Drupal.quickedit.FieldToolbarView = Backbone.View.extend( - /** @lends Drupal.quickedit.FieldToolbarView# */ { - /** - * The edited element, as indicated by EditorView.getEditedElement. - * - * @type {jQuery} - */ - $editedElement: null, - - /** - * A reference to the in-place editor. - * - * @type {Drupal.quickedit.EditorView} - */ - editorView: null, - - /** - * @type {string} - */ - _id: null, - - /** - * @constructs - * - * @augments Backbone.View - * - * @param {object} options - * Options object to construct the field toolbar. - * @param {jQuery} options.$editedElement - * The element being edited. - * @param {Drupal.quickedit.EditorView} options.editorView - * The EditorView the toolbar belongs to. - */ - initialize(options) { - this.$editedElement = options.$editedElement; - this.editorView = options.editorView; - - /** - * @type {jQuery} - */ - this.$root = this.$el; - - // Generate a DOM-compatible ID for the form container DOM element. - this._id = `quickedit-toolbar-for-${this.model.id.replace( - /[/[\]]/g, - '_', - )}`; - - this.listenTo(this.model, 'change:state', this.stateChange); - }, - - /** - * {@inheritdoc} - * - * @return {Drupal.quickedit.FieldToolbarView} - * The current FieldToolbarView. - */ - render() { - // Render toolbar and set it as the view's element. - this.setElement( - $( - Drupal.theme('quickeditFieldToolbar', { - id: this._id, - }), - ), - ); - - // Attach to the field toolbar $root element in the entity toolbar. - this.$el.prependTo(this.$root); - - return this; - }, - - /** - * Determines the actions to take given a change of state. - * - * @param {Drupal.quickedit.FieldModel} model - * The quickedit FieldModel - * @param {string} state - * The state of the associated field. One of - * {@link Drupal.quickedit.FieldModel.states}. - */ - stateChange(model, state) { - const from = model.previous('state'); - const to = state; - switch (to) { - case 'inactive': - break; - - case 'candidate': - // Remove the view's existing element if we went to the 'activating' - // state or later, because it will be recreated. Not doing this would - // result in memory leaks. - if (from !== 'inactive' && from !== 'highlighted') { - this.$el.remove(); - this.setElement(); - } - break; - - case 'highlighted': - break; - - case 'activating': - this.render(); - - if (this.editorView.getQuickEditUISettings().fullWidthToolbar) { - this.$el.addClass('quickedit-toolbar-fullwidth'); - } - - if (this.editorView.getQuickEditUISettings().unifiedToolbar) { - this.insertWYSIWYGToolGroups(); - } - break; - - case 'active': - break; - - case 'changed': - break; - - case 'saving': - break; - - case 'saved': - break; - - case 'invalid': - break; - } - }, - - /** - * Insert WYSIWYG markup into the associated toolbar. - */ - insertWYSIWYGToolGroups() { - this.$el - .append( - Drupal.theme('quickeditToolgroup', { - id: this.getFloatedWysiwygToolgroupId(), - classes: [ - 'wysiwyg-floated', - 'quickedit-animate-slow', - 'quickedit-animate-invisible', - 'quickedit-animate-delay-veryfast', - ], - buttons: [], - }), - ) - .append( - Drupal.theme('quickeditToolgroup', { - id: this.getMainWysiwygToolgroupId(), - classes: [ - 'wysiwyg-main', - 'quickedit-animate-slow', - 'quickedit-animate-invisible', - 'quickedit-animate-delay-veryfast', - ], - buttons: [], - }), - ); - - // Animate the toolgroups into visibility. - this.show('wysiwyg-floated'); - this.show('wysiwyg-main'); - }, - - /** - * Retrieves the ID for this toolbar's container. - * - * Only used to make sane hovering behavior possible. - * - * @return {string} - * A string that can be used as the ID for this toolbar's container. - */ - getId() { - return `quickedit-toolbar-for-${this._id}`; - }, - - /** - * Retrieves the ID for this toolbar's floating WYSIWYG toolgroup. - * - * Used to provide an abstraction for any WYSIWYG editor to plug in. - * - * @return {string} - * A string that can be used as the ID. - */ - getFloatedWysiwygToolgroupId() { - return `quickedit-wysiwyg-floated-toolgroup-for-${this._id}`; - }, - - /** - * Retrieves the ID for this toolbar's main WYSIWYG toolgroup. - * - * Used to provide an abstraction for any WYSIWYG editor to plug in. - * - * @return {string} - * A string that can be used as the ID. - */ - getMainWysiwygToolgroupId() { - return `quickedit-wysiwyg-main-toolgroup-for-${this._id}`; - }, - - /** - * Finds a toolgroup. - * - * @param {string} toolgroup - * A toolgroup name. - * - * @return {jQuery} - * The toolgroup element. - */ - _find(toolgroup) { - return this.$el.find(`.quickedit-toolgroup.${toolgroup}`); - }, - - /** - * Shows a toolgroup. - * - * @param {string} toolgroup - * A toolgroup name. - */ - show(toolgroup) { - const $group = this._find(toolgroup); - // Attach a transitionEnd event handler to the toolbar group so that - // update events can be triggered after the animations have ended. - $group.on(Drupal.quickedit.util.constants.transitionEnd, (event) => { - $group.off(Drupal.quickedit.util.constants.transitionEnd); - }); - // The call to remove the class and start the animation must be started in - // the next animation frame or the event handler attached above won't be - // triggered. - window.setTimeout(() => { - $group.removeClass('quickedit-animate-invisible'); - }, 0); - }, - }, - ); -})(jQuery, _, Backbone, Drupal); diff --git a/core/modules/quickedit/js/views/FieldToolbarView.js b/core/modules/quickedit/js/views/FieldToolbarView.js deleted file mode 100644 index da2be3a13c6d7d8323f212d024263aed705ecf86..0000000000000000000000000000000000000000 --- a/core/modules/quickedit/js/views/FieldToolbarView.js +++ /dev/null @@ -1,121 +0,0 @@ -/** -* DO NOT EDIT THIS FILE. -* See the following change record for more information, -* https://www.drupal.org/node/2815083 -* @preserve -**/ - -(function ($, _, Backbone, Drupal) { - Drupal.quickedit.FieldToolbarView = Backbone.View.extend({ - $editedElement: null, - editorView: null, - _id: null, - - initialize(options) { - this.$editedElement = options.$editedElement; - this.editorView = options.editorView; - this.$root = this.$el; - this._id = `quickedit-toolbar-for-${this.model.id.replace(/[/[\]]/g, '_')}`; - this.listenTo(this.model, 'change:state', this.stateChange); - }, - - render() { - this.setElement($(Drupal.theme('quickeditFieldToolbar', { - id: this._id - }))); - this.$el.prependTo(this.$root); - return this; - }, - - stateChange(model, state) { - const from = model.previous('state'); - const to = state; - - switch (to) { - case 'inactive': - break; - - case 'candidate': - if (from !== 'inactive' && from !== 'highlighted') { - this.$el.remove(); - this.setElement(); - } - - break; - - case 'highlighted': - break; - - case 'activating': - this.render(); - - if (this.editorView.getQuickEditUISettings().fullWidthToolbar) { - this.$el.addClass('quickedit-toolbar-fullwidth'); - } - - if (this.editorView.getQuickEditUISettings().unifiedToolbar) { - this.insertWYSIWYGToolGroups(); - } - - break; - - case 'active': - break; - - case 'changed': - break; - - case 'saving': - break; - - case 'saved': - break; - - case 'invalid': - break; - } - }, - - insertWYSIWYGToolGroups() { - this.$el.append(Drupal.theme('quickeditToolgroup', { - id: this.getFloatedWysiwygToolgroupId(), - classes: ['wysiwyg-floated', 'quickedit-animate-slow', 'quickedit-animate-invisible', 'quickedit-animate-delay-veryfast'], - buttons: [] - })).append(Drupal.theme('quickeditToolgroup', { - id: this.getMainWysiwygToolgroupId(), - classes: ['wysiwyg-main', 'quickedit-animate-slow', 'quickedit-animate-invisible', 'quickedit-animate-delay-veryfast'], - buttons: [] - })); - this.show('wysiwyg-floated'); - this.show('wysiwyg-main'); - }, - - getId() { - return `quickedit-toolbar-for-${this._id}`; - }, - - getFloatedWysiwygToolgroupId() { - return `quickedit-wysiwyg-floated-toolgroup-for-${this._id}`; - }, - - getMainWysiwygToolgroupId() { - return `quickedit-wysiwyg-main-toolgroup-for-${this._id}`; - }, - - _find(toolgroup) { - return this.$el.find(`.quickedit-toolgroup.${toolgroup}`); - }, - - show(toolgroup) { - const $group = this._find(toolgroup); - - $group.on(Drupal.quickedit.util.constants.transitionEnd, event => { - $group.off(Drupal.quickedit.util.constants.transitionEnd); - }); - window.setTimeout(() => { - $group.removeClass('quickedit-animate-invisible'); - }, 0); - } - - }); -})(jQuery, _, Backbone, Drupal); \ No newline at end of file diff --git a/core/modules/quickedit/quickedit.api.php b/core/modules/quickedit/quickedit.api.php deleted file mode 100644 index daebe6c95e1879ef3b1927da1eb25fed156cf562..0000000000000000000000000000000000000000 --- a/core/modules/quickedit/quickedit.api.php +++ /dev/null @@ -1,82 +0,0 @@ -<?php - -/** - * @file - * Hooks provided by the Edit module. - */ - -/** - * @addtogroup hooks - * @{ - */ - -/** - * Allow modules to alter in-place editor plugin metadata. - * - * This hook is called after the in-place editor plugins have been discovered, - * but before they are cached. Hence any alterations will be cached. - * - * @param array &$editors - * An array of metadata on existing in-place editors, as collected by the - * annotation discovery mechanism. - * - * @see \Drupal\quickedit\Annotation\InPlaceEditor - * @see \Drupal\quickedit\Plugin\EditorManager - */ -function hook_quickedit_editor_alter(&$editors) { - // Cleanly override editor.module's in-place editor plugin. - $editors['editor']['class'] = 'Drupal\advanced_editor\Plugin\quickedit\editor\AdvancedEditor'; -} - -/** - * Returns a renderable array for the value of a single field in an entity. - * - * To integrate with in-place field editing when a non-standard render pipeline - * is used (FieldItemListInterface::view() is not sufficient to render back the - * field following in-place editing in the exact way it was displayed - * originally), implement this hook. - * - * Edit module integrates with HTML elements with data-edit-field-id attributes. - * For example: - * data-edit-field-id="node/1/<field-name>/und/<module-name>-<custom-id>" - * After the editing is complete, this hook is invoked on the module with - * the custom render pipeline identifier (last part of data-edit-field-id) to - * re-render the field. Use the same logic used when rendering the field for - * the original display. - * - * The implementation should take care of invoking the prepare_view steps. It - * should also respect field access permissions. - * - * @param \Drupal\Core\Entity\EntityInterface $entity - * The entity containing the field to display. - * @param string $field_name - * The name of the field to display. - * @param string $view_mode_id - * View mode ID for the custom render pipeline this field view was destined - * for. This is not a regular view mode ID for the Entity/Field API render - * pipeline and is provided by the renderer module instead. An example could - * be Views' render pipeline. In the example of Views, the view mode ID would - * probably contain the View's ID, display and the row index. Views would - * know the internal structure of this ID. The only structure imposed on this - * ID is that it contains dash separated values and the first value is the - * module name. Only that module's hook implementation will be invoked. Eg. - * 'views-...-...'. - * @param string $langcode - * (Optional) The language code the field values are to be shown in. - * - * @return - * A renderable array for the field value. - * - * @see \Drupal\Core\Field\FieldItemListInterface::view() - */ -function hook_quickedit_render_field(\Drupal\Core\Entity\EntityInterface $entity, $field_name, $view_mode_id, $langcode) { - return [ - '#prefix' => '<div class="example-markup">', - 'field' => $entity->getTranslation($langcode)->get($field_name)->view($view_mode_id), - '#suffix' => '</div>', - ]; -} - -/** - * @} End of "addtogroup hooks". - */ diff --git a/core/modules/quickedit/quickedit.info.yml b/core/modules/quickedit/quickedit.info.yml deleted file mode 100644 index b778482d06feca7aee2341e42fd10085ef218016..0000000000000000000000000000000000000000 --- a/core/modules/quickedit/quickedit.info.yml +++ /dev/null @@ -1,11 +0,0 @@ -name: Quick Edit -type: module -description: 'In-place content editing.' -lifecycle: deprecated -lifecycle_link: https://www.drupal.org/node/3223395#s-quick-edit -package: Core -version: VERSION -dependencies: - - drupal:contextual - - drupal:field - - drupal:filter diff --git a/core/modules/quickedit/quickedit.libraries.yml b/core/modules/quickedit/quickedit.libraries.yml deleted file mode 100644 index 84df03a98513c195c9c49e63228fde1fd19e4fd2..0000000000000000000000000000000000000000 --- a/core/modules/quickedit/quickedit.libraries.yml +++ /dev/null @@ -1,91 +0,0 @@ -quickedit: - version: VERSION - js: - # Core. - js/quickedit.js: {} - js/util.js: {} - # Models. - js/models/BaseModel.js: {} - js/models/AppModel.js: {} - js/models/EntityModel.js: {} - js/models/FieldModel.js: {} - js/models/EditorModel.js: {} - # Views. - js/views/AppView.js: {} - js/views/FieldDecorationView.js: {} - js/views/EntityDecorationView.js: {} - js/views/EntityToolbarView.js: {} - js/views/ContextualLinkView.js: {} - js/views/FieldToolbarView.js: {} - js/views/EditorView.js: {} - # Other. - js/theme.js: {} - css: - component: - css/quickedit.module.css: {} - theme: - css/quickedit.theme.css: {} - css/quickedit.icons.theme.css: {} - dependencies: - - core/jquery - - core/once - - core/internal.underscore - - core/internal.backbone - - core/internal.jquery.form - - core/drupal - - core/drupal.displace - - core/drupal.form - - core/drupal.ajax - - core/drupal.debounce - - core/drupalSettings - - core/drupal.dialog - - core/popperjs - -quickedit.inPlaceEditor.form: - version: VERSION - js: - js/editors/formEditor.js: {} - dependencies: - - quickedit/quickedit - -quickedit.ckeditor5-temporary-work-around: - # "Temporary work-around until https://www.drupal.org/project/drupal/issues/3196689 lands." - css: - theme: - css/editors/formattedText/ckeditor5.workaround.css: { } - -quickedit.inPlaceEditor.formattedText: - version: VERSION - css: - component: - css/editors/formattedText.ckeditor.css: {} - css/editors/formattedText.ckeditor5.css: {} - js: - js/editors/formattedTextEditor.js: { attributes: { defer: true } } - dependencies: - - quickedit/quickedit - - editor/drupal.editor - - core/drupal.ajax - - core/drupalSettings - -quickedit.inPlaceEditor.plainText: - version: VERSION - js: - js/editors/plainTextEditor.js: {} - dependencies: - - quickedit/quickedit - -quickedit.inPlaceEditor.image: - version: VERSION - js: - js/editors/image.js: {} - css: - component: - css/editors/image.css: {} - theme: - css/editors/image.theme.css: {} - dependencies: - - core/jquery - - core/drupal - - core/underscore - - quickedit/quickedit diff --git a/core/modules/quickedit/quickedit.module b/core/modules/quickedit/quickedit.module deleted file mode 100644 index 54cf10dc686be3ccc824b27463554f90b6392d2e..0000000000000000000000000000000000000000 --- a/core/modules/quickedit/quickedit.module +++ /dev/null @@ -1,236 +0,0 @@ -<?php - -/** - * @file - * Provides in-place content editing functionality for fields. - * - * The Quick Edit module makes content editable in-place. Rather than having to - * visit a separate page to edit content, it may be edited in-place. - * - * Technically, this module adds classes and data- attributes to fields and - * entities, enabling them for in-place editing. - */ - -use Drupal\Core\Url; -use Drupal\Core\Entity\EntityInterface; -use Drupal\Core\Entity\Display\EntityViewDisplayInterface; -use Drupal\Core\Entity\RevisionableInterface; -use Drupal\Core\Routing\RouteMatchInterface; -use Drupal\layout_builder\Entity\LayoutBuilderEntityViewDisplay; -use Drupal\quickedit\Entity\QuickEditLayoutBuilderEntityViewDisplay; -use Drupal\quickedit\LayoutBuilderIntegration; - -/** - * Implements hook_help(). - */ -function quickedit_help($route_name, RouteMatchInterface $route_match) { - switch ($route_name) { - case 'help.page.quickedit': - $output = '<h3>' . t('About') . '</h3>'; - $output .= '<p>' . t('The Quick Edit module allows users with the <a href=":quickedit_permission">Access in-place editing</a> and <a href=":contextual_permission">Use contextual links</a> permissions to edit field content without visiting a separate page. For more information, see the <a href=":handbook_url">online documentation for the Quick Edit module</a>.', [':handbook_url' => 'https://www.drupal.org/documentation/modules/edit', ':quickedit_permission' => Url::fromRoute('user.admin_permissions.module', ['modules' => 'quickedit'])->toString(), ':contextual_permission' => Url::fromRoute('user.admin_permissions.module', ['modules' => 'contextual'])->toString()]) . '</p>'; - $output .= '<h3>' . t('Uses') . '</h3>'; - $output .= '<dl>'; - $output .= '<dt>' . t('Editing content in-place') . '</dt>'; - $output .= '<dd>'; - $output .= '<p>' . t('To edit content in place, you need to activate quick edit mode for a content item. Activate quick edit mode by choosing Quick edit from the contextual links for an area displaying the content (see the <a href=":contextual">Contextual Links module help</a> for more information about how to use contextual links).', [':contextual' => Url::fromRoute('help.page', ['name' => 'contextual'])->toString()]) . '</p>'; - $output .= '<p>' . t('Once quick edit mode is activated, you will be able to edit the individual fields of your content. In the default theme, with a JavaScript-enabled browser and a mouse, the output of different fields in your content is outlined in blue, a pop-up gives the field name as you hover over the field output, and clicking on a field activates the editor. Closing the pop-up window ends quick edit mode.') . '</p>'; - $output .= '</dd>'; - $output .= '</dl>'; - return $output; - } -} - -/** - * Implements hook_page_attachments(). - * - * Adds the quickedit library to the page for any user who has the 'access - * in-place editing' permission. - */ -function quickedit_page_attachments(array &$page) { - if (!\Drupal::currentUser()->hasPermission('access in-place editing')) { - return; - } - - // In-place editing is only supported on the front-end. - if (\Drupal::service('router.admin_context')->isAdminRoute()) { - return; - } - - $page['#attached']['drupalSettings']['quickedit']['csrf_token'] = \Drupal::csrfToken()->get('X-Drupal-Quickedit-CSRF-Token'); - $page['#attached']['library'][] = 'quickedit/quickedit'; -} - -/** - * Implements hook_library_info_alter(). - * - * Includes additional stylesheets defined by the admin theme to allow it to - * customize the Quick Edit toolbar appearance. - * - * An admin theme can specify CSS files to make the front-end administration - * experience of in-place editing match the administration experience in the - * back-end. - * - * The CSS files can be specified via the "edit_stylesheets" property in the - * .info.yml file: - * @code - * quickedit_stylesheets: - * - css/quickedit.css - * @endcode - */ -function quickedit_library_info_alter(&$libraries, $extension) { - if ($extension === 'quickedit' && isset($libraries['quickedit'])) { - $theme = Drupal::config('system.theme')->get('admin'); - - // First let the base theme modify the library, then the actual theme. - $alter_library = function (&$library, $theme) use (&$alter_library) { - /** @var \Drupal\Core\Extension\ThemeExtensionList $theme_list */ - $theme_list = \Drupal::service('extension.list.theme'); - if (!empty($theme) && $theme_path = $theme_list->getPath($theme)) { - $info = $theme_list->getExtensionInfo($theme); - // Recurse to process base theme(s) first. - if (isset($info['base theme'])) { - $alter_library($library, $info['base theme']); - } - if (isset($info['quickedit_stylesheets'])) { - foreach ($info['quickedit_stylesheets'] as $path) { - $library['css']['theme']['/' . $theme_path . '/' . $path] = []; - } - } - } - }; - - $alter_library($libraries['quickedit'], $theme); - } - - $moduleHandler = \Drupal::moduleHandler(); - if ($moduleHandler->moduleExists('ckeditor5')) { - $libraries['drupal.ckeditor5']['dependencies'][] = 'quickedit/quickedit.ckeditor5-temporary-work-around'; - } -} - -/** - * Implements hook_field_formatter_info_alter(). - * - * Quick Edit extends the @FieldFormatter annotation with the following keys: - * - quickedit: currently only contains one subkey 'editor' which indicates - * which in-place editor should be used. Possible values are 'form', - * 'plain_text', 'disabled' or another in-place editor other than the ones - * Quick Edit module provides. - */ -function quickedit_field_formatter_info_alter(&$info) { - foreach ($info as $key => $settings) { - // Set in-place editor to 'form' if none is supplied. - if (empty($settings['quickedit'])) { - $info[$key]['quickedit'] = ['editor' => 'form']; - } - } - - $info['basic_string']['quickedit'] = ['editor' => 'plain_text']; - $info['string']['quickedit'] = ['editor' => 'plain_text']; - - // Update \Drupal\text\Plugin\Field\FieldFormatter\TextDefaultFormatter's - // annotation to indicate that it supports the 'editor' in-place editor - // provided by this module, if enabled. - if (\Drupal::moduleHandler()->moduleExists('editor')) { - $info['text_default']['quickedit'] = ['editor' => 'editor']; - } -} - -/** - * Implements hook_preprocess_HOOK() for the page title template. - */ -function quickedit_preprocess_page_title(&$variables) { - $variables['#cache']['contexts'][] = 'user.permissions'; - if (\Drupal::currentUser()->hasPermission('access in-place editing')) { - $variables['title_attributes']['class'][] = 'js-quickedit-page-title'; - } -} - -/** - * Implements hook_preprocess_entity_page_title(). - */ -function quickedit_preprocess_entity_page_title(&$variables) { - $variables['#cache']['contexts'][] = 'user.permissions'; - $entity = $variables['entity']; - if (!\Drupal::currentUser()->hasPermission('access in-place editing')) { - return; - } - if (($entity instanceof RevisionableInterface) && !$entity->isLatestRevision()) { - return; - } - - $label_field = $entity->getEntityType()->getKey('label'); - $variables['attributes']['data-quickedit-field-id'] = $entity->getEntityTypeId() . '/' . $entity->id() . '/' . $label_field . '/' . $entity->language()->getId() . '/' . $variables['view_mode']; -} - -/** - * Implements hook_preprocess_HOOK() for field templates. - */ -function quickedit_preprocess_field(&$variables) { - $variables['#cache']['contexts'][] = 'user.permissions'; - $element = $variables['element']; - /** @var \Drupal\Core\Entity\ContentEntityInterface $entity */ - $entity = $element['#object']; - - if (!\Drupal::currentUser()->hasPermission('access in-place editing') || ($entity instanceof RevisionableInterface && !$entity->isLatestRevision())) { - return; - } - - // Quick Edit module only supports view modes, not dynamically defined - // "display options" (which \Drupal\Core\Field\FieldItemListInterface::view() - // always names the "_custom" view mode). - // @see \Drupal\Core\Field\FieldItemListInterface::view() - // @see https://www.drupal.org/node/2120335 - if ($element['#view_mode'] === '_custom') { - return; - } - - // Fields that are computed fields are not editable. - $definition = $entity->getFieldDefinition($element['#field_name']); - if (!$definition->isComputed()) { - $variables['attributes']['data-quickedit-field-id'] = $entity->getEntityTypeId() . '/' . $entity->id() . '/' . $element['#field_name'] . '/' . $element['#language'] . '/' . $element['#view_mode']; - } -} - -/** - * Implements hook_entity_type_alter(). - */ -function quickedit_entity_type_alter(array &$entity_types) { - if (\Drupal::moduleHandler()->moduleExists('layout_builder')) { - /** @var \Drupal\Core\Entity\EntityTypeInterface[] $entity_types */ - if ($entity_types['entity_view_display']->getClass() === LayoutBuilderEntityViewDisplay::class) { - $entity_types['entity_view_display']->setClass(QuickEditLayoutBuilderEntityViewDisplay::class); - } - } -} - -/** - * Implements hook_entity_view_alter(). - */ -function quickedit_entity_view_alter(&$build, EntityInterface $entity, EntityViewDisplayInterface $display) { - if (\Drupal::moduleHandler()->moduleExists('layout_builder')) { - /** @var \Drupal\quickedit\LayoutBuilderIntegration $layout_builder_integration */ - $layout_builder_integration = \Drupal::classResolver(LayoutBuilderIntegration::class); - $layout_builder_integration->entityViewAlter($build, $entity, $display); - } - - if (isset($build['#embed'])) { - return; - } - - $build['#cache']['contexts'][] = 'user.permissions'; - if (!\Drupal::currentUser()->hasPermission('access in-place editing') || ($entity instanceof RevisionableInterface && !$entity->isLatestRevision())) { - return; - } - - $build['#attributes']['data-quickedit-entity-id'] = $entity->getEntityTypeId() . '/' . $entity->id(); -} - -/** - * Implements hook_quickedit_render_field(). - */ -function layout_builder_quickedit_render_field(EntityInterface $entity, $field_name, $view_mode_id, $langcode) { - /** @var \Drupal\quickedit\LayoutBuilderIntegration $layout_builder_integration */ - $layout_builder_integration = \Drupal::classResolver(LayoutBuilderIntegration::class); - return $layout_builder_integration->quickEditRenderField($entity, $field_name, $view_mode_id, $langcode); -} diff --git a/core/modules/quickedit/quickedit.permissions.yml b/core/modules/quickedit/quickedit.permissions.yml deleted file mode 100644 index f9ff51c86a53840ba5fde13e9f9327695107dd52..0000000000000000000000000000000000000000 --- a/core/modules/quickedit/quickedit.permissions.yml +++ /dev/null @@ -1,2 +0,0 @@ -access in-place editing: - title: 'Access in-place editing' diff --git a/core/modules/quickedit/quickedit.routing.yml b/core/modules/quickedit/quickedit.routing.yml deleted file mode 100644 index 35723d5aebb05ee54009925dff9bc0800a7f2a1c..0000000000000000000000000000000000000000 --- a/core/modules/quickedit/quickedit.routing.yml +++ /dev/null @@ -1,75 +0,0 @@ -quickedit.metadata: - path: '/quickedit/metadata' - defaults: - _controller: '\Drupal\quickedit\QuickEditController::metadata' - requirements: - _permission: 'access in-place editing' - -quickedit.attachments: - path: '/quickedit/attachments' - defaults: - _controller: '\Drupal\quickedit\QuickEditController::attachments' - requirements: - _permission: 'access in-place editing' - -quickedit.field_form: - path: '/quickedit/form/{entity_type}/{entity}/{field_name}/{langcode}/{view_mode_id}' - defaults: - _controller: '\Drupal\quickedit\QuickEditController::fieldForm' - options: - parameters: - entity: - type: entity:{entity_type} - requirements: - _permission: 'access in-place editing' - _access_quickedit_entity_field: 'TRUE' - -quickedit.entity_save: - path: '/quickedit/entity/{entity_type}/{entity}' - defaults: - _controller: '\Drupal\quickedit\QuickEditController::entitySave' - requirements: - _permission: 'access in-place editing' - _entity_access: 'entity.update' - options: - parameters: - entity: - type: entity:{entity_type} - -quickedit.image_upload: - path: '/quickedit/image/upload/{entity_type}/{entity}/{field_name}/{langcode}/{view_mode_id}' - defaults: - _controller: '\Drupal\quickedit\Controller\QuickEditImageController::upload' - options: - parameters: - entity: - type: entity:{entity_type} - requirements: - _permission: 'access in-place editing' - _access_quickedit_entity_field: 'TRUE' - _method: 'POST' - -quickedit.image_info: - path: '/quickedit/image/info/{entity_type}/{entity}/{field_name}/{langcode}/{view_mode_id}' - defaults: - _controller: '\Drupal\quickedit\Controller\QuickEditImageController::getInfo' - options: - parameters: - entity: - type: entity:{entity_type} - requirements: - _permission: 'access in-place editing' - _access_quickedit_entity_field: 'TRUE' - _method: 'GET' - -quickedit.field_untransformed_text: - path: '/quickedit/{entity_type}/{entity}/{field_name}/{langcode}/{view_mode_id}' - defaults: - _controller: '\Drupal\quickedit\QuickEditController::getUntransformedText' - options: - parameters: - entity: - type: entity:{entity_type} - requirements: - _permission: 'access in-place editing' - _access_quickedit_entity_field: 'TRUE' diff --git a/core/modules/quickedit/quickedit.services.yml b/core/modules/quickedit/quickedit.services.yml deleted file mode 100644 index 3d7d9343788f9cf150d1418076993a0745bc7eb8..0000000000000000000000000000000000000000 --- a/core/modules/quickedit/quickedit.services.yml +++ /dev/null @@ -1,14 +0,0 @@ -services: - plugin.manager.quickedit.editor: - class: Drupal\quickedit\Plugin\InPlaceEditorManager - parent: default_plugin_manager - access_check.quickedit.entity_field: - class: Drupal\quickedit\Access\QuickEditEntityFieldAccessCheck - tags: - - { name: access_check, applies_to: _access_quickedit_entity_field } - quickedit.editor.selector: - class: Drupal\quickedit\EditorSelector - arguments: ['@plugin.manager.quickedit.editor', '@plugin.manager.field.formatter'] - quickedit.metadata.generator: - class: Drupal\quickedit\MetadataGenerator - arguments: ['@access_check.quickedit.entity_field', '@quickedit.editor.selector', '@plugin.manager.quickedit.editor'] diff --git a/core/modules/quickedit/src/Access/QuickEditEntityFieldAccessCheck.php b/core/modules/quickedit/src/Access/QuickEditEntityFieldAccessCheck.php deleted file mode 100644 index 5404b04885482c70e17367734dcff9d5b570c47b..0000000000000000000000000000000000000000 --- a/core/modules/quickedit/src/Access/QuickEditEntityFieldAccessCheck.php +++ /dev/null @@ -1,62 +0,0 @@ -<?php - -namespace Drupal\quickedit\Access; - -use Drupal\Core\Access\AccessResult; -use Drupal\Core\Routing\Access\AccessInterface; -use Drupal\Core\Session\AccountInterface; -use Drupal\Core\Entity\EntityInterface; - -/** - * Access check for in-place editing entity fields. - */ -class QuickEditEntityFieldAccessCheck implements AccessInterface, QuickEditEntityFieldAccessCheckInterface { - - /** - * Checks Quick Edit access to the field. - * - * @param \Drupal\Core\Entity\EntityInterface $entity - * The entity containing the field. - * @param string $field_name - * The field name. - * @param string $langcode - * The langcode. - * @param \Drupal\Core\Session\AccountInterface $account - * The currently logged in account. - * - * @return \Drupal\Core\Access\AccessResultInterface - * The access result. - * - * @todo Use the $account argument: https://www.drupal.org/node/2266809. - */ - public function access(EntityInterface $entity, $field_name, $langcode, AccountInterface $account) { - if (!$this->validateRequestAttributes($entity, $field_name, $langcode)) { - return AccessResult::forbidden(); - } - - return $this->accessEditEntityField($entity, $field_name); - } - - /** - * {@inheritdoc} - */ - public function accessEditEntityField(EntityInterface $entity, $field_name) { - return $entity->access('update', NULL, TRUE)->andIf($entity->get($field_name)->access('edit', NULL, TRUE)); - } - - /** - * Validates request attributes. - */ - protected function validateRequestAttributes(EntityInterface $entity, $field_name, $langcode) { - // Validate the field name and language. - if (!$field_name || !$entity->hasField($field_name)) { - return FALSE; - } - if (!$langcode || !$entity->hasTranslation($langcode)) { - return FALSE; - } - - return TRUE; - } - -} diff --git a/core/modules/quickedit/src/Access/QuickEditEntityFieldAccessCheckInterface.php b/core/modules/quickedit/src/Access/QuickEditEntityFieldAccessCheckInterface.php deleted file mode 100644 index 1428b4829a4b64810e04662d5f94dc0a9dba5e03..0000000000000000000000000000000000000000 --- a/core/modules/quickedit/src/Access/QuickEditEntityFieldAccessCheckInterface.php +++ /dev/null @@ -1,25 +0,0 @@ -<?php - -namespace Drupal\quickedit\Access; - -use Drupal\Core\Entity\EntityInterface; - -/** - * Access check for in-place editing entity fields. - */ -interface QuickEditEntityFieldAccessCheckInterface { - - /** - * Checks access to edit the requested field of the requested entity. - * - * @param \Drupal\Core\Entity\EntityInterface $entity - * The entity. - * @param string $field_name - * The field name. - * - * @return \Drupal\Core\Access\AccessResultInterface - * The access result. - */ - public function accessEditEntityField(EntityInterface $entity, $field_name); - -} diff --git a/core/modules/quickedit/src/Ajax/EntitySavedCommand.php b/core/modules/quickedit/src/Ajax/EntitySavedCommand.php deleted file mode 100644 index a0366515e920ebd62a786ee28570aed3ab26fa47..0000000000000000000000000000000000000000 --- a/core/modules/quickedit/src/Ajax/EntitySavedCommand.php +++ /dev/null @@ -1,23 +0,0 @@ -<?php - -namespace Drupal\quickedit\Ajax; - -use Drupal\Core\Ajax\BaseCommand; - -/** - * AJAX command to indicate the entity was loaded from PrivateTempStore and - * saved into the database. - */ -class EntitySavedCommand extends BaseCommand { - - /** - * Constructs an EntitySaveCommand object. - * - * @param string $data - * The data to pass on to the client side. - */ - public function __construct($data) { - parent::__construct('quickeditEntitySaved', $data); - } - -} diff --git a/core/modules/quickedit/src/Ajax/FieldFormCommand.php b/core/modules/quickedit/src/Ajax/FieldFormCommand.php deleted file mode 100644 index 03faecfe9d081c4e9df050f46e80cd470138343c..0000000000000000000000000000000000000000 --- a/core/modules/quickedit/src/Ajax/FieldFormCommand.php +++ /dev/null @@ -1,23 +0,0 @@ -<?php - -namespace Drupal\quickedit\Ajax; - -use Drupal\Core\Ajax\BaseCommand; - -/** - * AJAX command for passing a rendered field form to Quick Edit's JavaScript - * app. - */ -class FieldFormCommand extends BaseCommand { - - /** - * Constructs a FieldFormCommand object. - * - * @param string $data - * The data to pass on to the client side. - */ - public function __construct($data) { - parent::__construct('quickeditFieldForm', $data); - } - -} diff --git a/core/modules/quickedit/src/Ajax/FieldFormSavedCommand.php b/core/modules/quickedit/src/Ajax/FieldFormSavedCommand.php deleted file mode 100644 index 1e84b0eb191933a02d58e8e68f05d8688f3490c7..0000000000000000000000000000000000000000 --- a/core/modules/quickedit/src/Ajax/FieldFormSavedCommand.php +++ /dev/null @@ -1,47 +0,0 @@ -<?php - -namespace Drupal\quickedit\Ajax; - -use Drupal\Core\Ajax\BaseCommand; - -/** - * AJAX command to indicate a field was saved into PrivateTempStore without - * validation errors and pass the rerendered field to Quick Edit's JavaScript - * app. - */ -class FieldFormSavedCommand extends BaseCommand { - - /** - * The same re-rendered edited field, but in different view modes. - * - * @var array - */ - protected $other_view_modes; - - /** - * Constructs a FieldFormSavedCommand object. - * - * @param string $data - * The re-rendered edited field to pass on to the client side. - * @param array $other_view_modes - * The same re-rendered edited field, but in different view modes, for other - * instances of the same field on the user's page. Keyed by view mode. - */ - public function __construct($data, $other_view_modes = []) { - parent::__construct('quickeditFieldFormSaved', $data); - - $this->other_view_modes = $other_view_modes; - } - - /** - * {@inheritdoc} - */ - public function render() { - return [ - 'command' => $this->command, - 'data' => $this->data, - 'other_view_modes' => $this->other_view_modes, - ]; - } - -} diff --git a/core/modules/quickedit/src/Ajax/FieldFormValidationErrorsCommand.php b/core/modules/quickedit/src/Ajax/FieldFormValidationErrorsCommand.php deleted file mode 100644 index cbabb47c0f65bdb32bc42502a46e64e574a1e258..0000000000000000000000000000000000000000 --- a/core/modules/quickedit/src/Ajax/FieldFormValidationErrorsCommand.php +++ /dev/null @@ -1,23 +0,0 @@ -<?php - -namespace Drupal\quickedit\Ajax; - -use Drupal\Core\Ajax\BaseCommand; - -/** - * AJAX command to indicate a field form was attempted to be saved but failed - * validation and pass the validation errors. - */ -class FieldFormValidationErrorsCommand extends BaseCommand { - - /** - * Constructs a FieldFormValidationErrorsCommand object. - * - * @param string $data - * The data to pass on to the client side. - */ - public function __construct($data) { - parent::__construct('quickeditFieldFormValidationErrors', $data); - } - -} diff --git a/core/modules/quickedit/src/Ajax/GetUntransformedTextCommand.php b/core/modules/quickedit/src/Ajax/GetUntransformedTextCommand.php deleted file mode 100644 index 1f934516155ba11dca17786048b2327d41cb60df..0000000000000000000000000000000000000000 --- a/core/modules/quickedit/src/Ajax/GetUntransformedTextCommand.php +++ /dev/null @@ -1,22 +0,0 @@ -<?php - -namespace Drupal\quickedit\Ajax; - -use Drupal\Core\Ajax\BaseCommand; - -/** - * AJAX command to rerender formatted text field without transformation filters. - */ -class GetUntransformedTextCommand extends BaseCommand { - - /** - * Constructs a GetUntransformedTextCommand object. - * - * @param string $data - * The data to pass on to the client side. - */ - public function __construct($data) { - parent::__construct('editorGetUntransformedText', $data); - } - -} diff --git a/core/modules/quickedit/src/Annotation/InPlaceEditor.php b/core/modules/quickedit/src/Annotation/InPlaceEditor.php deleted file mode 100644 index 8c9594b5e91f732da601623c406323ca0ab1f187..0000000000000000000000000000000000000000 --- a/core/modules/quickedit/src/Annotation/InPlaceEditor.php +++ /dev/null @@ -1,37 +0,0 @@ -<?php - -namespace Drupal\quickedit\Annotation; - -use Drupal\Component\Annotation\Plugin; - -/** - * Defines an InPlaceEditor annotation object. - * - * Plugin Namespace: Plugin\InPlaceEditor - * - * For a working example, see \Drupal\quickedit\Plugin\InPlaceEditor\PlainTextEditor - * - * @see \Drupal\quickedit\Plugin\InPlaceEditorBase - * @see \Drupal\quickedit\Plugin\InPlaceEditorInterface - * @see \Drupal\quickedit\Plugin\InPlaceEditorManager - * @see plugin_api - * - * @Annotation - */ -class InPlaceEditor extends Plugin { - - /** - * The plugin ID. - * - * @var string - */ - public $id; - - /** - * The name of the module providing the in-place editor plugin. - * - * @var string - */ - public $module; - -} diff --git a/core/modules/quickedit/src/Controller/QuickEditImageController.php b/core/modules/quickedit/src/Controller/QuickEditImageController.php deleted file mode 100644 index 21c37206c494e8c873a098e55669636cacabb657..0000000000000000000000000000000000000000 --- a/core/modules/quickedit/src/Controller/QuickEditImageController.php +++ /dev/null @@ -1,249 +0,0 @@ -<?php - -namespace Drupal\quickedit\Controller; - -use Drupal\Core\Cache\CacheableJsonResponse; -use Drupal\Core\Controller\ControllerBase; -use Drupal\Core\Entity\ContentEntityInterface; -use Drupal\Core\Entity\EntityDisplayRepositoryInterface; -use Drupal\Core\Entity\EntityInterface; -use Drupal\Core\File\FileSystemInterface; -use Drupal\Core\Image\ImageFactory; -use Drupal\Core\Render\Element\StatusMessages; -use Drupal\Core\Render\RendererInterface; -use Drupal\image\Plugin\Field\FieldType\ImageItem; -use Drupal\Core\TempStore\PrivateTempStoreFactory; -use Symfony\Component\DependencyInjection\ContainerInterface; -use Symfony\Component\HttpFoundation\JsonResponse; -use Symfony\Component\HttpKernel\Exception\BadRequestHttpException; - -/** - * Returns responses for our image routes. - */ -class QuickEditImageController extends ControllerBase { - - /** - * Stores The Quick Edit tempstore. - * - * @var \Drupal\Core\TempStore\PrivateTempStore - */ - protected $tempStore; - - /** - * The renderer. - * - * @var \Drupal\Core\Render\RendererInterface - */ - protected $renderer; - - /** - * The image factory. - * - * @var \Drupal\Core\Image\ImageFactory - */ - protected $imageFactory; - - /** - * The entity display repository service. - * - * @var \Drupal\Core\Entity\EntityDisplayRepositoryInterface - */ - protected $entityDisplayRepository; - - /** - * The file system. - * - * @var \Drupal\Core\File\FileSystemInterface - */ - protected $fileSystem; - - /** - * Constructs a new QuickEditImageController. - * - * @param \Drupal\Core\Render\RendererInterface $renderer - * The renderer. - * @param \Drupal\Core\Image\ImageFactory $image_factory - * The image factory. - * @param \Drupal\Core\TempStore\PrivateTempStoreFactory $temp_store_factory - * The tempstore factory. - * @param \Drupal\Core\Entity\EntityDisplayRepositoryInterface $entity_display_repository - * The entity display repository service. - * @param \Drupal\Core\File\FileSystemInterface $file_system - * The file system. - */ - public function __construct(RendererInterface $renderer, ImageFactory $image_factory, PrivateTempStoreFactory $temp_store_factory, EntityDisplayRepositoryInterface $entity_display_repository, FileSystemInterface $file_system) { - $this->renderer = $renderer; - $this->imageFactory = $image_factory; - $this->tempStore = $temp_store_factory->get('quickedit'); - $this->entityDisplayRepository = $entity_display_repository; - $this->fileSystem = $file_system; - } - - /** - * {@inheritdoc} - */ - public static function create(ContainerInterface $container) { - return new static( - $container->get('renderer'), - $container->get('image.factory'), - $container->get('tempstore.private'), - $container->get('entity_display.repository'), - $container->get('file_system') - ); - } - - /** - * Returns JSON representing the new file upload, or validation errors. - * - * @param \Drupal\Core\Entity\EntityInterface $entity - * The entity of which an image field is being rendered. - * @param string $field_name - * The name of the (image) field that is being rendered - * @param string $langcode - * The language code of the field that is being rendered. - * @param string $view_mode_id - * The view mode of the field that is being rendered. - * - * @return \Symfony\Component\HttpFoundation\JsonResponse - * The JSON response. - */ - public function upload(EntityInterface $entity, $field_name, $langcode, $view_mode_id) { - $field = $this->getField($entity, $field_name, $langcode); - $field_validators = $field->getUploadValidators(); - $field_settings = $field->getFieldDefinition()->getSettings(); - $destination = $field->getUploadLocation(); - - // Add upload resolution validation. - if ($field_settings['max_resolution'] || $field_settings['min_resolution']) { - $field_validators['file_validate_image_resolution'] = [$field_settings['max_resolution'], $field_settings['min_resolution']]; - } - - // Create the destination directory if it does not already exist. - if (isset($destination) && !$this->fileSystem->prepareDirectory($destination, FileSystemInterface::CREATE_DIRECTORY)) { - return new JsonResponse(['main_error' => $this->t('The destination directory could not be created.'), 'errors' => '']); - } - - // Attempt to save the image given the field's constraints. - $result = file_save_upload('image', $field_validators, $destination); - if (is_array($result) && $result[0]) { - /** @var \Drupal\file\Entity\File $file */ - $file = $result[0]; - $image = $this->imageFactory->get($file->getFileUri()); - - // Set the value in the Entity to the new file. - /** @var \Drupal\file\Plugin\Field\FieldType\FileFieldItemList $field_list */ - $value = $entity->$field_name->getValue(); - $value[0]['target_id'] = $file->id(); - $value[0]['width'] = $image->getWidth(); - $value[0]['height'] = $image->getHeight(); - $entity->$field_name->setValue($value); - - // Render the new image using the correct formatter settings. - $entity_view_mode_ids = array_keys($this->entityDisplayRepository->getViewModes($entity->getEntityTypeId())); - if (in_array($view_mode_id, $entity_view_mode_ids, TRUE)) { - $output = $entity->$field_name->view($view_mode_id); - } - else { - // Each part of a custom (non-Entity Display) view mode ID is separated - // by a dash; the first part must be the module name. - $mode_id_parts = explode('-', $view_mode_id, 2); - $module = reset($mode_id_parts); - $args = [$entity, $field_name, $view_mode_id, $langcode]; - $output = $this->moduleHandler()->invoke($module, 'quickedit_render_field', $args); - } - - // Save the Entity to tempstore. - $this->tempStore->set($entity->uuid(), $entity); - - $data = [ - 'fid' => $file->id(), - 'html' => $this->renderer->renderRoot($output), - ]; - return new JsonResponse($data); - } - else { - // Return a JSON object containing the errors from Drupal and our - // "main_error", which is displayed inside the dropzone area. - $messages = StatusMessages::renderMessages('error'); - return new JsonResponse(['errors' => $this->renderer->render($messages), 'main_error' => $this->t('The image failed validation.')]); - } - } - - /** - * Returns JSON representing an image field's metadata. - * - * @param \Drupal\Core\Entity\EntityInterface $entity - * The entity of which an image field is being rendered. - * @param string $field_name - * The name of the (image) field that is being rendered - * @param string $langcode - * The language code of the field that is being rendered. - * @param string $view_mode_id - * The view mode of the field that is being rendered. - * - * @return \Drupal\Core\Cache\CacheableJsonResponse - * The JSON response. - */ - public function getInfo(EntityInterface $entity, $field_name, $langcode, $view_mode_id) { - $field = $this->getField($entity, $field_name, $langcode); - $settings = $field->getFieldDefinition()->getSettings(); - $info = [ - 'alt' => $field->alt, - 'title' => $field->title, - 'alt_field' => $settings['alt_field'], - 'title_field' => $settings['title_field'], - 'alt_field_required' => $settings['alt_field_required'], - 'title_field_required' => $settings['title_field_required'], - ]; - $response = new CacheableJsonResponse($info); - $response->addCacheableDependency($entity); - return $response; - } - - /** - * Returns JSON representing the current state of the field. - * - * @param \Drupal\Core\Entity\EntityInterface $entity - * The entity of which an image field is being rendered. - * @param string $field_name - * The name of the (image) field that is being rendered - * @param string $langcode - * The language code of the field that is being rendered. - * - * @return \Drupal\image\Plugin\Field\FieldType\ImageItem - * The field for this request. - * - * @throws \Symfony\Component\HttpKernel\Exception\BadRequestHttpException - * Throws an exception if the request is invalid. - */ - protected function getField(EntityInterface $entity, $field_name, $langcode) { - // Ensure that this is a valid Entity. - if (!($entity instanceof ContentEntityInterface)) { - throw new BadRequestHttpException('Requested Entity is not a Content Entity.'); - } - - // Check that this field exists. - /** @var \Drupal\Core\Field\FieldItemListInterface $field_list */ - $field_list = $entity->getTranslation($langcode)->get($field_name); - if (!$field_list) { - throw new BadRequestHttpException('Requested Field does not exist.'); - } - - // If the list is empty, append an empty item to use. - if ($field_list->isEmpty()) { - $field = $field_list->appendItem(); - } - // Otherwise, use the first item. - else { - $field = $entity->getTranslation($langcode)->get($field_name)->first(); - } - - // Ensure that the field is the type we expect. - if (!($field instanceof ImageItem)) { - throw new BadRequestHttpException('Requested Field is not of type "image".'); - } - - return $field; - } - -} diff --git a/core/modules/quickedit/src/EditorSelector.php b/core/modules/quickedit/src/EditorSelector.php deleted file mode 100644 index 7eb73068c1fb65b84d4c996923d3e2a35be98e75..0000000000000000000000000000000000000000 --- a/core/modules/quickedit/src/EditorSelector.php +++ /dev/null @@ -1,101 +0,0 @@ -<?php - -namespace Drupal\quickedit; - -use Drupal\Component\Plugin\PluginManagerInterface; -use Drupal\Component\Utility\NestedArray; -use Drupal\Core\Field\FieldItemListInterface; -use Drupal\Core\Field\FormatterPluginManager; - -/** - * Selects an in-place editor (an InPlaceEditor plugin) for a field. - */ -class EditorSelector implements EditorSelectorInterface { - - /** - * The manager for editor plugins. - * - * @var \Drupal\Component\Plugin\PluginManagerInterface - */ - protected $editorManager; - - /** - * The manager for formatter plugins. - * - * @var \Drupal\Core\Field\FormatterPluginManager - */ - protected $formatterManager; - - /** - * A list of alternative editor plugin IDs, keyed by editor plugin ID. - * - * @var array - */ - protected $alternatives; - - /** - * Constructs a new EditorSelector. - * - * @param \Drupal\Component\Plugin\PluginManagerInterface $editor_manager - * The manager for editor plugins. - * @param \Drupal\Core\Field\FormatterPluginManager $formatter_manager - * The manager for formatter plugins. - */ - public function __construct(PluginManagerInterface $editor_manager, FormatterPluginManager $formatter_manager) { - $this->editorManager = $editor_manager; - $this->formatterManager = $formatter_manager; - } - - /** - * {@inheritdoc} - */ - public function getEditor($formatter_type, FieldItemListInterface $items) { - // Check if the formatter defines an appropriate in-place editor. For - // example, text formatters displaying plain text can choose to use the - // 'plain_text' editor. If the formatter doesn't specify, fall back to the - // 'form' editor, since that can work for any field. Formatter definitions - // can use 'disabled' to explicitly opt out of in-place editing. - $formatter_info = $this->formatterManager->getDefinition($formatter_type); - $editor_id = $formatter_info['quickedit']['editor']; - if ($editor_id === 'disabled') { - return; - } - elseif ($editor_id === 'form') { - return 'form'; - } - - // No early return, so create a list of all choices. - $editor_choices = [$editor_id]; - if (isset($this->alternatives[$editor_id])) { - $editor_choices = array_merge($editor_choices, $this->alternatives[$editor_id]); - } - - // Make a choice. - foreach ($editor_choices as $editor_id) { - $editor = $this->editorManager->createInstance($editor_id); - if ($editor->isCompatible($items)) { - return $editor_id; - } - } - - // We still don't have a choice, so fall back to the default 'form' editor. - return 'form'; - } - - /** - * {@inheritdoc} - */ - public function getEditorAttachments(array $editor_ids) { - $attachments = []; - $editor_ids = array_unique($editor_ids); - - // Editor plugins' attachments. - foreach ($editor_ids as $editor_id) { - $editor = $this->editorManager->createInstance($editor_id); - $attachments[] = $editor->getAttachments(); - } - - return NestedArray::mergeDeepArray($attachments); - } - -} diff --git a/core/modules/quickedit/src/EditorSelectorInterface.php b/core/modules/quickedit/src/EditorSelectorInterface.php deleted file mode 100644 index 2aa2a808920181a243224744a7f6d8834f11ac37..0000000000000000000000000000000000000000 --- a/core/modules/quickedit/src/EditorSelectorInterface.php +++ /dev/null @@ -1,38 +0,0 @@ -<?php - -namespace Drupal\quickedit; - -use Drupal\Core\Field\FieldItemListInterface; - -/** - * Interface for selecting an in-place editor (an Editor plugin) for a field. - */ -interface EditorSelectorInterface { - - /** - * Returns the in-place editor (an InPlaceEditor plugin) to use for a field. - * - * @param string $formatter_type - * The field's formatter type name. - * @param \Drupal\Core\Field\FieldItemListInterface $items - * The field values to be in-place edited. - * - * @return string|null - * The editor to use, or NULL to not enable in-place editing. - */ - public function getEditor($formatter_type, FieldItemListInterface $items); - - /** - * Returns the attachments for all editors. - * - * @param array $editor_ids - * A list of all in-place editor IDs that should be attached. - * - * @return array - * An array of attachments, for use with #attached. - * - * @see \Drupal\Core\Render\AttachmentsResponseProcessorInterface::processAttachments() - */ - public function getEditorAttachments(array $editor_ids); - -} diff --git a/core/modules/quickedit/src/Entity/QuickEditLayoutBuilderEntityViewDisplay.php b/core/modules/quickedit/src/Entity/QuickEditLayoutBuilderEntityViewDisplay.php deleted file mode 100644 index 3dd4eb9b106271d1c3a80b81c20d59bc262b262b..0000000000000000000000000000000000000000 --- a/core/modules/quickedit/src/Entity/QuickEditLayoutBuilderEntityViewDisplay.php +++ /dev/null @@ -1,68 +0,0 @@ -<?php - -namespace Drupal\quickedit\Entity; - -use Drupal\Component\Plugin\ConfigurableInterface; -use Drupal\Component\Plugin\DerivativeInspectionInterface; -use Drupal\layout_builder\Entity\LayoutBuilderEntityViewDisplay; -use Drupal\quickedit\LayoutBuilderIntegration; - -/** - * Provides an entity view display entity that has a layout with quickedit. - */ -class QuickEditLayoutBuilderEntityViewDisplay extends LayoutBuilderEntityViewDisplay { - - /** - * {@inheritdoc} - */ - public function getComponent($name) { - if ($this->isLayoutBuilderEnabled() && $section_component = $this->getQuickEditSectionComponent()) { - $plugin = $section_component->getPlugin(); - if ($plugin instanceof ConfigurableInterface) { - $configuration = $plugin->getConfiguration(); - if (isset($configuration['formatter'])) { - return $configuration['formatter']; - } - } - } - return parent::getComponent($name); - } - - /** - * Returns the Quick Edit formatter settings. - * - * @return \Drupal\layout_builder\SectionComponent|null - * The section component if it is available. - * - * @see \Drupal\quickedit\LayoutBuilderIntegration::entityViewAlter() - * @see \Drupal\quickedit\MetadataGenerator::generateFieldMetadata() - */ - private function getQuickEditSectionComponent() { - // To determine the Quick Edit view_mode ID we need an originalMode set. - if ($original_mode = $this->getOriginalMode()) { - $parts = explode('-', $original_mode); - // The Quick Edit view mode ID is created by - // \Drupal\quickedit\LayoutBuilderIntegration::entityViewAlter() - // concatenating together the information we need to retrieve the Layout - // Builder component. It follows the structure prescribed by the - // documentation of hook_quickedit_render_field(). - if (count($parts) === 6 && $parts[0] === 'layout_builder') { - [, $delta, $component_uuid, $entity_id] = LayoutBuilderIntegration::deconstructViewModeId($original_mode); - $entity = $this->entityTypeManager()->getStorage($this->getTargetEntityTypeId())->load($entity_id); - $sections = $this->getEntitySections($entity); - if (isset($sections[$delta])) { - $component = $sections[$delta]->getComponent($component_uuid); - $plugin = $component->getPlugin(); - // We only care about FieldBlock because these are only components - // that provide Quick Edit integration: Quick Edit enables in-place - // editing of fields of entities, not of anything else. - if ($plugin instanceof DerivativeInspectionInterface && $plugin->getBaseId() === 'field_block') { - return $component; - } - } - } - } - return NULL; - } - -} diff --git a/core/modules/quickedit/src/Form/QuickEditFieldForm.php b/core/modules/quickedit/src/Form/QuickEditFieldForm.php deleted file mode 100644 index 75fe7a45b3e7d2964b7806de3b9c725609743b10..0000000000000000000000000000000000000000 --- a/core/modules/quickedit/src/Form/QuickEditFieldForm.php +++ /dev/null @@ -1,227 +0,0 @@ -<?php - -namespace Drupal\quickedit\Form; - -use Drupal\Core\Entity\EntityInterface; -use Drupal\Core\Entity\EntityStorageInterface; -use Drupal\Core\Entity\EntityChangedInterface; -use Drupal\Core\Extension\ModuleHandlerInterface; -use Drupal\Core\Form\FormBase; -use Drupal\Core\Form\FormStateInterface; -use Drupal\Core\Render\Element; -use Drupal\Core\Entity\Entity\EntityFormDisplay; -use Drupal\Core\TempStore\PrivateTempStoreFactory; -use Symfony\Component\DependencyInjection\ContainerInterface; - -/** - * Builds and process a form for editing a single entity field. - * - * @internal - */ -class QuickEditFieldForm extends FormBase { - - /** - * Stores the tempstore factory. - * - * @var \Drupal\Core\TempStore\PrivateTempStoreFactory - */ - protected $tempStoreFactory; - - /** - * The module handler. - * - * @var \Drupal\Core\Extension\ModuleHandlerInterface - */ - protected $moduleHandler; - - /** - * The node type storage. - * - * @var \Drupal\Core\Entity\EntityStorageInterface - */ - protected $nodeTypeStorage; - - /** - * Constructs a new EditFieldForm. - * - * @param \Drupal\Core\TempStore\PrivateTempStoreFactory $temp_store_factory - * The tempstore factory. - * @param \Drupal\Core\Extension\ModuleHandlerInterface $module_handler - * The module handler. - * @param \Drupal\Core\Entity\EntityStorageInterface $node_type_storage - * The node type storage. - */ - public function __construct(PrivateTempStoreFactory $temp_store_factory, ModuleHandlerInterface $module_handler, EntityStorageInterface $node_type_storage) { - $this->moduleHandler = $module_handler; - $this->nodeTypeStorage = $node_type_storage; - $this->tempStoreFactory = $temp_store_factory; - } - - /** - * {@inheritdoc} - */ - public static function create(ContainerInterface $container) { - return new static( - $container->get('tempstore.private'), - $container->get('module_handler'), - $container->get('entity_type.manager')->getStorage('node_type') - ); - } - - /** - * {@inheritdoc} - */ - public function getFormId() { - return 'quickedit_field_form'; - } - - /** - * {@inheritdoc} - * - * Builds a form for a single entity field. - */ - public function buildForm(array $form, FormStateInterface $form_state, EntityInterface $entity = NULL, $field_name = NULL) { - if (!$form_state->has('entity')) { - $this->init($form_state, $entity, $field_name); - } - - // Add the field form. - $form_state->get('form_display')->buildForm($entity, $form, $form_state); - - // Add a dummy changed timestamp field to attach form errors to. - if ($entity instanceof EntityChangedInterface) { - $form['changed_field'] = [ - '#type' => 'hidden', - '#value' => $entity->getChangedTime(), - ]; - } - - // Add a submit button. Give it a class for easy JavaScript targeting. - $form['actions'] = ['#type' => 'actions']; - $form['actions']['submit'] = [ - '#type' => 'submit', - '#value' => $this->t('Save'), - '#attributes' => ['class' => ['quickedit-form-submit']], - ]; - - // Use the non-inline form error display for Quick Edit forms, because in - // this case the errors are already near the form element. - $form['#disable_inline_form_errors'] = TRUE; - - // Simplify it for optimal in-place use. - $this->simplify($form, $form_state); - - return $form; - } - - /** - * Initialize the form state and the entity before the first form build. - */ - protected function init(FormStateInterface $form_state, EntityInterface $entity, $field_name) { - // @todo Rather than special-casing $node->revision, invoke prepareEdit() - // once https://www.drupal.org/node/1863258 lands. - if ($entity->getEntityTypeId() == 'node') { - $node_type = $this->nodeTypeStorage->load($entity->bundle()); - $entity->setNewRevision($node_type->shouldCreateNewRevision()); - $entity->revision_log = NULL; - } - - $form_state->set('entity', $entity); - $form_state->set('field_name', $field_name); - - // Fetch the display used by the form. It is the display for the 'default' - // form mode, with only the current field visible. - $display = EntityFormDisplay::collectRenderDisplay($entity, 'default'); - foreach ($display->getComponents() as $name => $options) { - if ($name != $field_name) { - $display->removeComponent($name); - } - } - $form_state->set('form_display', $display); - } - - /** - * {@inheritdoc} - */ - public function validateForm(array &$form, FormStateInterface $form_state) { - $entity = $this->buildEntity($form, $form_state); - $form_state->get('form_display')->validateFormValues($entity, $form, $form_state); - } - - /** - * {@inheritdoc} - * - * Saves the entity with updated values for the edited field. - */ - public function submitForm(array &$form, FormStateInterface $form_state) { - $entity = $this->buildEntity($form, $form_state); - $form_state->set('entity', $entity); - - // Store entity in tempstore with its UUID as tempstore key. - $this->tempStoreFactory->get('quickedit')->set($entity->uuid(), $entity); - } - - /** - * Returns a cloned entity containing updated field values. - * - * Calling code may then validate the returned entity, and if valid, transfer - * it back to the form state and save it. - */ - protected function buildEntity(array $form, FormStateInterface $form_state) { - /** @var \Drupal\Core\Entity\EntityInterface $entity */ - $entity = clone $form_state->get('entity'); - $field_name = $form_state->get('field_name'); - - $form_state->get('form_display')->extractFormValues($entity, $form, $form_state); - - // @todo Refine automated log messages and abstract them to all entity - // types: https://www.drupal.org/node/1678002. - if ($entity->getEntityTypeId() == 'node' && $entity->isNewRevision() && $entity->revision_log->isEmpty()) { - $entity->revision_log = $this->t('Updated the %field-name field through in-place editing.', ['%field-name' => $entity->get($field_name)->getFieldDefinition()->getLabel()]); - } - - return $entity; - } - - /** - * Simplifies the field edit form for in-place editing. - * - * This function: - * - Hides the field label inside the form, because JavaScript displays it - * outside the form. - * - Adjusts textarea elements to fit their content. - * - * @param array &$form - * A reference to an associative array containing the structure of the form. - * @param \Drupal\Core\Form\FormStateInterface $form_state - * The current state of the form. - */ - protected function simplify(array &$form, FormStateInterface $form_state) { - $field_name = $form_state->get('field_name'); - $widget_element =& $form[$field_name]['widget']; - - // Hide the field label from displaying within the form, because JavaScript - // displays the equivalent label that was provided within an HTML data - // attribute of the field's display element outside of the form. Do this for - // widgets without child elements (like Option widgets) as well as for ones - // with per-delta elements. Skip single checkboxes, because their title is - // key to their UI. Also skip widgets with multiple subelements, because in - // that case, per-element labeling is informative. - $num_children = count(Element::children($widget_element)); - if ($num_children == 0 && $widget_element['#type'] != 'checkbox') { - $widget_element['#title_display'] = 'invisible'; - } - if ($num_children == 1 && isset($widget_element[0]['value'])) { - // @todo While most widgets name their primary element 'value', not all - // do, so generalize this. - $widget_element[0]['value']['#title_display'] = 'invisible'; - } - - // Adjust textarea elements to fit their content. - if (isset($widget_element[0]['value']['#type']) && $widget_element[0]['value']['#type'] == 'textarea') { - $lines = count(explode("\n", $widget_element[0]['value']['#default_value'])); - $widget_element[0]['value']['#rows'] = $lines + 1; - } - } - -} diff --git a/core/modules/quickedit/src/LayoutBuilderIntegration.php b/core/modules/quickedit/src/LayoutBuilderIntegration.php deleted file mode 100644 index 49e229b98540c4cd7f4a8bf5ee03cbbeb24e3d83..0000000000000000000000000000000000000000 --- a/core/modules/quickedit/src/LayoutBuilderIntegration.php +++ /dev/null @@ -1,321 +0,0 @@ -<?php - -namespace Drupal\quickedit; - -use Drupal\Component\Utility\NestedArray; -use Drupal\Core\Cache\CacheableMetadata; -use Drupal\Core\DependencyInjection\ContainerInjectionInterface; -use Drupal\Core\Entity\Display\EntityViewDisplayInterface; -use Drupal\Core\Entity\EntityInterface; -use Drupal\Core\Entity\EntityTypeManagerInterface; -use Drupal\Core\Entity\FieldableEntityInterface; -use Drupal\Core\Logger\LoggerChannelTrait; -use Drupal\Core\Plugin\Context\Context; -use Drupal\Core\Plugin\Context\ContextDefinition; -use Drupal\Core\Plugin\Context\EntityContext; -use Drupal\Core\Render\Element; -use Drupal\Core\Session\AccountInterface; -use Drupal\layout_builder\SectionStorage\SectionStorageManagerInterface; -use Symfony\Component\DependencyInjection\ContainerInterface; - -/** - * Helper methods for Layout Builder module integration. - * - * @internal - * This is an internal utility class wrapping hook implementations. - */ -class LayoutBuilderIntegration implements ContainerInjectionInterface { - - use LoggerChannelTrait; - - /** - * The section storage manager. - * - * @var \Drupal\layout_builder\SectionStorage\SectionStorageManagerInterface - */ - protected $sectionStorageManager; - - /** - * The current user. - * - * @var \Drupal\Core\Session\AccountInterface - */ - protected $currentUser; - - /** - * The entity type manager. - * - * @var \Drupal\Core\Entity\EntityTypeManagerInterface - */ - protected $entityTypeManager; - - /** - * Constructs a new LayoutBuilderIntegration object. - * - * @param \Drupal\layout_builder\SectionStorage\SectionStorageManagerInterface $section_storage_manager - * The section storage manager. - * @param \Drupal\Core\Session\AccountInterface $current_user - * The current user. - * @param \Drupal\Core\Entity\EntityTypeManagerInterface $entity_type_manager - * The entity type manager. - */ - public function __construct(SectionStorageManagerInterface $section_storage_manager, AccountInterface $current_user, EntityTypeManagerInterface $entity_type_manager) { - $this->sectionStorageManager = $section_storage_manager; - $this->currentUser = $current_user; - $this->entityTypeManager = $entity_type_manager; - } - - /** - * {@inheritdoc} - */ - public static function create(ContainerInterface $container) { - return new static( - $container->get('plugin.manager.layout_builder.section_storage'), - $container->get('current_user'), - $container->get('entity_type.manager') - ); - } - - /** - * Alters the entity view build for Layout Builder compatibility. - * - * When rendering fields outside of normal view modes, Quick Edit requires - * that modules identify themselves with a view mode ID in the format - * [module_name]-[information the module needs to rerender], as prescribed by - * hook_quickedit_render_field(). - * - * @param array $build - * The built entity render array. - * @param \Drupal\Core\Entity\EntityInterface $entity - * The entity. - * @param \Drupal\Core\Entity\Display\EntityViewDisplayInterface $display - * The entity view display. - * - * @see hook_quickedit_render_field() - * @see layout_builder_quickedit_render_field() - */ - public function entityViewAlter(array &$build, EntityInterface $entity, EntityViewDisplayInterface $display) { - if (!$entity instanceof FieldableEntityInterface || !isset($build['_layout_builder'])) { - return; - } - - $build['#cache']['contexts'][] = 'user.permissions'; - if (!$this->currentUser->hasPermission('access in-place editing')) { - return; - } - - $cacheable_metadata = CacheableMetadata::createFromRenderArray($build); - $section_list = $this->sectionStorageManager->findByContext( - [ - 'display' => EntityContext::fromEntity($display), - 'entity' => EntityContext::fromEntity($entity), - 'view_mode' => new Context(new ContextDefinition('string'), $display->getMode()), - ], - $cacheable_metadata - ); - $cacheable_metadata->applyTo($build); - - if (empty($section_list)) { - return; - } - - // Create a hash of the sections and use it in the unique Quick Edit view - // mode ID. Any changes to the sections will result in a different hash, - // forcing Quick Edit's JavaScript to recognize any changes and retrieve - // up-to-date metadata. - $sections_hash = hash('sha256', serialize($section_list->getSections())); - - // Track each component by their plugin ID, delta, region, and UUID. - $plugin_ids_to_update = []; - foreach (Element::children($build['_layout_builder']) as $delta) { - $section = $build['_layout_builder'][$delta]; - - if (!Element::isEmpty($section)) { - /** @var \Drupal\Core\Layout\LayoutDefinition $layout */ - $layout = $section['#layout']; - $regions = $layout->getRegionNames(); - - foreach ($regions as $region) { - if (isset($section[$region])) { - foreach ($section[$region] as $uuid => $component) { - if (isset($component['#plugin_id']) && $this->supportQuickEditOnComponent($component, $entity)) { - $plugin_ids_to_update[$component['#plugin_id']][$delta][$region][$uuid] = $uuid; - } - } - } - } - } - } - - // @todo Remove when https://www.drupal.org/node/3041850 is resolved. - $plugin_ids_to_update = array_filter($plugin_ids_to_update, function ($info) { - // Delta, region, and UUID each count as one. - return count($info, COUNT_RECURSIVE) === 3; - }); - - $plugin_ids_to_update = NestedArray::mergeDeepArray($plugin_ids_to_update, TRUE); - foreach ($plugin_ids_to_update as $delta => $regions) { - foreach ($regions as $region => $uuids) { - foreach ($uuids as $uuid => $component) { - $build['_layout_builder'][$delta][$region][$uuid]['content']['#view_mode'] = static::getViewModeId($entity, $display, $delta, $uuid, $sections_hash); - } - } - } - // Alter the Quick Edit view mode ID of all fields outside of the Layout - // Builder sections to force Quick Edit to request to the field metadata. - // @todo Remove this logic in https://www.drupal.org/project/node/2966136. - foreach (Element::children($build) as $field_name) { - if ($field_name !== '_layout_builder') { - $field_build = &$build[$field_name]; - if (isset($field_build['#view_mode'])) { - $field_build['#view_mode'] = "layout_builder-{$display->getMode()}-non_component-$sections_hash"; - } - } - } - } - - /** - * Generates a Quick Edit view mode ID. - * - * @param \Drupal\Core\Entity\EntityInterface $entity - * The entity. - * @param \Drupal\Core\Entity\Display\EntityViewDisplayInterface $display - * The entity view display. - * @param int $delta - * The delta. - * @param string $component_uuid - * The component UUID. - * @param string $sections_hash - * The hash of the sections; must change whenever the sections change. - * - * @return string - * The Quick Edit view mode ID. - * - * @see \Drupal\quickedit\LayoutBuilderIntegration::deconstructViewModeId() - */ - private static function getViewModeId(EntityInterface $entity, EntityViewDisplayInterface $display, $delta, $component_uuid, $sections_hash) { - return implode('-', [ - 'layout_builder', - $display->getMode(), - $delta, - // Replace the dashes in the component UUID because we need to - // use dashes to join the parts. - str_replace('-', '_', $component_uuid), - $entity->id(), - $sections_hash, - ]); - } - - /** - * Deconstructs the Quick Edit view mode ID into its constituent parts. - * - * @param string $quick_edit_view_mode_id - * The Quick Edit view mode ID. - * - * @return array - * An array containing the entity view mode ID, the delta, the component - * UUID, and the entity ID. - * - * @see \Drupal\quickedit\LayoutBuilderIntegration::getViewModeId() - */ - public static function deconstructViewModeId($quick_edit_view_mode_id) { - [, $entity_view_mode_id, $delta, $component_uuid, $entity_id] = explode('-', $quick_edit_view_mode_id, 7); - return [ - $entity_view_mode_id, - // @todo Explicitly cast delta to an integer, remove this in - // https://www.drupal.org/project/drupal/issues/2984509. - (int) $delta, - // Replace the underscores with dash to get back the component UUID. - str_replace('_', '-', $component_uuid), - $entity_id, - ]; - } - - /** - * Re-renders a field rendered by Layout Builder, edited with Quick Edit. - * - * @param \Drupal\Core\Entity\FieldableEntityInterface $entity - * The entity. - * @param string $field_name - * The field name. - * @param string $quick_edit_view_mode_id - * The Quick Edit view mode ID. - * @param string $langcode - * The language code. - * - * @return array - * The re-rendered field. - */ - public function quickEditRenderField(FieldableEntityInterface $entity, $field_name, $quick_edit_view_mode_id, $langcode) { - [$entity_view_mode, $delta, $component_uuid] = static::deconstructViewModeId($quick_edit_view_mode_id); - - $entity_build = $this->entityTypeManager->getViewBuilder($entity->getEntityTypeId())->view($entity, $entity_view_mode, $langcode); - $this->buildEntityView($entity_build); - - if (isset($entity_build['_layout_builder'][$delta])) { - foreach (Element::children($entity_build['_layout_builder'][$delta]) as $region) { - if (isset($entity_build['_layout_builder'][$delta][$region][$component_uuid])) { - return $entity_build['_layout_builder'][$delta][$region][$component_uuid]['content']; - } - } - } - - $this->getLogger('layout_builder')->warning('The field "%field" failed to render.', ['%field' => $field_name]); - return []; - } - - /** - * {@inheritdoc} - * - * @todo Replace this hardcoded processing when - * https://www.drupal.org/project/drupal/issues/3041635 is resolved. - * - * @see \Drupal\Tests\EntityViewTrait::buildEntityView() - */ - private function buildEntityView(array &$elements) { - // If the default values for this element have not been loaded yet, - // populate them. - if (isset($elements['#type']) && empty($elements['#defaults_loaded'])) { - $elements += \Drupal::service('element_info')->getInfo($elements['#type']); - } - - // Make any final changes to the element before it is rendered. This means - // that the $element or the children can be altered or corrected before - // the element is rendered into the final text. - if (isset($elements['#pre_render'])) { - foreach ($elements['#pre_render'] as $callable) { - $elements = call_user_func($callable, $elements); - } - } - - // And recurse. - $children = Element::children($elements, TRUE); - foreach ($children as $key) { - $this->buildEntityView($elements[$key]); - } - } - - /** - * Determines whether a component has Quick Edit support. - * - * Only field_block components for display configurable fields should be - * supported. - * - * @param array $component - * The component render array. - * @param \Drupal\Core\Entity\FieldableEntityInterface $entity - * The entity being displayed. - * - * @return bool - * Whether Quick Edit is supported on the component. - * - * @see \Drupal\layout_builder\Plugin\Block\FieldBlock - */ - private function supportQuickEditOnComponent(array $component, FieldableEntityInterface $entity) { - if (isset($component['content']['#field_name'], $component['#base_plugin_id']) && $component['#base_plugin_id'] === 'field_block' && $entity->hasField($component['content']['#field_name'])) { - return $entity->getFieldDefinition($component['content']['#field_name'])->isDisplayConfigurable('view'); - } - return FALSE; - } - -} diff --git a/core/modules/quickedit/src/MetadataGenerator.php b/core/modules/quickedit/src/MetadataGenerator.php deleted file mode 100644 index f6f69fa58de0e68078c2ff194f11be9c254ce34a..0000000000000000000000000000000000000000 --- a/core/modules/quickedit/src/MetadataGenerator.php +++ /dev/null @@ -1,102 +0,0 @@ -<?php - -namespace Drupal\quickedit; - -use Drupal\Component\Plugin\PluginManagerInterface; -use Drupal\Core\Entity\EntityInterface; -use Drupal\Core\Field\FieldItemListInterface; -use Drupal\Core\StringTranslation\TranslatableMarkup; -use Drupal\quickedit\Access\QuickEditEntityFieldAccessCheckInterface; -use Drupal\Core\Entity\Entity\EntityViewDisplay; - -/** - * Generates in-place editing metadata for an entity field. - */ -class MetadataGenerator implements MetadataGeneratorInterface { - - /** - * An object that checks if a user has access to edit a given entity field. - * - * @var \Drupal\quickedit\Access\QuickEditEntityFieldAccessCheckInterface - */ - protected $accessChecker; - - /** - * An object that determines which editor to attach to a given field. - * - * @var \Drupal\quickedit\EditorSelectorInterface - */ - protected $editorSelector; - - /** - * The manager for editor plugins. - * - * @var \Drupal\Component\Plugin\PluginManagerInterface - */ - protected $editorManager; - - /** - * Constructs a new MetadataGenerator. - * - * @param \Drupal\quickedit\Access\QuickEditEntityFieldAccessCheckInterface $access_checker - * An object that checks if a user has access to edit a given field. - * @param \Drupal\quickedit\EditorSelectorInterface $editor_selector - * An object that determines which editor to attach to a given field. - * @param \Drupal\Component\Plugin\PluginManagerInterface $editor_manager - * The manager for editor plugins. - */ - public function __construct(QuickEditEntityFieldAccessCheckInterface $access_checker, EditorSelectorInterface $editor_selector, PluginManagerInterface $editor_manager) { - $this->accessChecker = $access_checker; - $this->editorSelector = $editor_selector; - $this->editorManager = $editor_manager; - } - - /** - * {@inheritdoc} - */ - public function generateEntityMetadata(EntityInterface $entity) { - return [ - 'label' => $entity->access('view label') ? $entity->label() : new TranslatableMarkup('@label @id', [ - '@label' => $entity->getEntityType()->getSingularLabel(), - '@id' => $entity->id(), - ]), - ]; - } - - /** - * {@inheritdoc} - */ - public function generateFieldMetadata(FieldItemListInterface $items, $view_mode) { - $entity = $items->getEntity(); - $field_name = $items->getFieldDefinition()->getName(); - - // Early-return if user does not have access. - $access = $this->accessChecker->accessEditEntityField($entity, $field_name); - if (!$access->isAllowed()) { - return ['access' => FALSE]; - } - - // Early-return if no editor is available. - $formatter_id = EntityViewDisplay::collectRenderDisplay($entity, $view_mode)->getRenderer($field_name)->getPluginId(); - $editor_id = $this->editorSelector->getEditor($formatter_id, $items); - if (!isset($editor_id)) { - return ['access' => FALSE]; - } - - // Gather metadata, allow the editor to add additional metadata of its own. - $label = $items->getFieldDefinition()->getLabel(); - $editor = $this->editorManager->createInstance($editor_id); - $metadata = [ - 'label' => $label, - 'access' => TRUE, - 'editor' => $editor_id, - ]; - $custom_metadata = $editor->getMetadata($items); - if (count($custom_metadata)) { - $metadata['custom'] = $custom_metadata; - } - - return $metadata; - } - -} diff --git a/core/modules/quickedit/src/MetadataGeneratorInterface.php b/core/modules/quickedit/src/MetadataGeneratorInterface.php deleted file mode 100644 index a739fb2b6b7f326cfcccf15ad9550b35abc2c0f7..0000000000000000000000000000000000000000 --- a/core/modules/quickedit/src/MetadataGeneratorInterface.php +++ /dev/null @@ -1,43 +0,0 @@ -<?php - -namespace Drupal\quickedit; - -use Drupal\Core\Entity\EntityInterface; -use Drupal\Core\Field\FieldItemListInterface; - -/** - * Interface for generating in-place editing metadata. - */ -interface MetadataGeneratorInterface { - - /** - * Generates in-place editing metadata for an entity. - * - * @param \Drupal\Core\Entity\EntityInterface $entity - * The entity, in the language in which one of its fields is being edited. - * - * @return array - * An array containing metadata with the following keys: - * - label: the user-visible label for the entity in the given language. - */ - public function generateEntityMetadata(EntityInterface $entity); - - /** - * Generates in-place editing metadata for an entity field. - * - * @param \Drupal\Core\Field\FieldItemListInterface $items - * The field values to be in-place edited. - * @param string $view_mode - * The view mode the field should be rerendered in. - * - * @return array - * An array containing metadata with the following keys: - * - label: the user-visible label for the field. - * - access: whether the current user may edit the field or not. - * - editor: which editor should be used for the field. - * - aria: the ARIA label. - * - custom: (optional) any additional metadata that the editor provides. - */ - public function generateFieldMetadata(FieldItemListInterface $items, $view_mode); - -} diff --git a/core/modules/quickedit/src/Plugin/InPlaceEditor/Editor.php b/core/modules/quickedit/src/Plugin/InPlaceEditor/Editor.php deleted file mode 100644 index 5eb6805cbd358b10c0313451b3824e931285bfd2..0000000000000000000000000000000000000000 --- a/core/modules/quickedit/src/Plugin/InPlaceEditor/Editor.php +++ /dev/null @@ -1,97 +0,0 @@ -<?php - -namespace Drupal\quickedit\Plugin\InPlaceEditor; - -use Drupal\Component\Plugin\PluginBase; -use Drupal\Core\Field\FieldItemListInterface; -use Drupal\filter\Entity\FilterFormat; -use Drupal\filter\Plugin\FilterInterface; -use Drupal\quickedit\Plugin\InPlaceEditorInterface; - -/** - * Defines the formatted text in-place editor. - * - * @InPlaceEditor( - * id = "editor", - * provider = "editor", - * ) - */ -class Editor extends PluginBase implements InPlaceEditorInterface { - - /** - * {@inheritdoc} - */ - public function isCompatible(FieldItemListInterface $items) { - $field_definition = $items->getFieldDefinition(); - - // This editor is incompatible with multivalued fields. - if ($field_definition->getFieldStorageDefinition()->getCardinality() != 1) { - return FALSE; - } - // This editor is compatible with formatted ("rich") text fields; but only - // if there is a currently active text format, that text format has an - // associated editor and that editor supports inline editing. - elseif ($editor = editor_load($items[0]->format)) { - $definition = \Drupal::service('plugin.manager.editor')->getDefinition($editor->getEditor()); - if ($definition['supports_inline_editing'] === TRUE) { - return TRUE; - } - } - - return FALSE; - } - - /** - * {@inheritdoc} - */ - public function getMetadata(FieldItemListInterface $items) { - $format_id = $items[0]->format; - $metadata['format'] = $format_id; - $metadata['formatHasTransformations'] = $this->textFormatHasTransformationFilters($format_id); - return $metadata; - } - - /** - * Returns whether the text format has transformation filters. - * - * @param int $format_id - * A text format ID. - * - * @return bool - */ - protected function textFormatHasTransformationFilters($format_id) { - $format = FilterFormat::load($format_id); - return (bool) count(array_intersect([FilterInterface::TYPE_TRANSFORM_REVERSIBLE, FilterInterface::TYPE_TRANSFORM_IRREVERSIBLE], $format->getFiltertypes())); - } - - /** - * {@inheritdoc} - */ - public function getAttachments() { - $user = \Drupal::currentUser(); - - $user_format_ids = array_keys(filter_formats($user)); - $manager = \Drupal::service('plugin.manager.editor'); - $definitions = $manager->getDefinitions(); - - // Filter the current user's formats to those that support inline editing. - $formats = []; - foreach ($user_format_ids as $format_id) { - if ($editor = editor_load($format_id)) { - $editor_id = $editor->getEditor(); - if (isset($definitions[$editor_id]['supports_inline_editing']) && $definitions[$editor_id]['supports_inline_editing'] === TRUE) { - $formats[] = $format_id; - } - } - } - - // Get the attachments for all text editors that the user might use. - $attachments = $manager->getAttachments($formats); - - // Also include quickedit.module's formatted text editor. - $attachments['library'][] = 'quickedit/quickedit.inPlaceEditor.formattedText'; - - return $attachments; - } - -} diff --git a/core/modules/quickedit/src/Plugin/InPlaceEditor/FormEditor.php b/core/modules/quickedit/src/Plugin/InPlaceEditor/FormEditor.php deleted file mode 100644 index 83ab1b46364a00c54f88d68140e9134422ecbcaa..0000000000000000000000000000000000000000 --- a/core/modules/quickedit/src/Plugin/InPlaceEditor/FormEditor.php +++ /dev/null @@ -1,35 +0,0 @@ -<?php - -namespace Drupal\quickedit\Plugin\InPlaceEditor; - -use Drupal\Core\Field\FieldItemListInterface; -use Drupal\quickedit\Plugin\InPlaceEditorBase; - -/** - * Defines the form in-place editor. - * - * @InPlaceEditor( - * id = "form" - * ) - */ -class FormEditor extends InPlaceEditorBase { - - /** - * {@inheritdoc} - */ - public function isCompatible(FieldItemListInterface $items) { - return TRUE; - } - - /** - * {@inheritdoc} - */ - public function getAttachments() { - return [ - 'library' => [ - 'quickedit/quickedit.inPlaceEditor.form', - ], - ]; - } - -} diff --git a/core/modules/quickedit/src/Plugin/InPlaceEditor/Image.php b/core/modules/quickedit/src/Plugin/InPlaceEditor/Image.php deleted file mode 100644 index b03007f41ac4cebde23c2837d4ccccb216c7c7b1..0000000000000000000000000000000000000000 --- a/core/modules/quickedit/src/Plugin/InPlaceEditor/Image.php +++ /dev/null @@ -1,39 +0,0 @@ -<?php - -namespace Drupal\quickedit\Plugin\InPlaceEditor; - -use Drupal\Core\Field\FieldItemListInterface; -use Drupal\quickedit\Plugin\InPlaceEditorBase; - -/** - * Defines the image text in-place editor. - * - * @InPlaceEditor( - * id = "image" - * ) - */ -class Image extends InPlaceEditorBase { - - /** - * {@inheritdoc} - */ - public function isCompatible(FieldItemListInterface $items) { - $field_definition = $items->getFieldDefinition(); - - // This editor is only compatible with single-value image fields. - return $field_definition->getFieldStorageDefinition()->getCardinality() === 1 - && $field_definition->getType() === 'image'; - } - - /** - * {@inheritdoc} - */ - public function getAttachments() { - return [ - 'library' => [ - 'quickedit/quickedit.inPlaceEditor.image', - ], - ]; - } - -} diff --git a/core/modules/quickedit/src/Plugin/InPlaceEditor/PlainTextEditor.php b/core/modules/quickedit/src/Plugin/InPlaceEditor/PlainTextEditor.php deleted file mode 100644 index 5217c20f4a13697f8e56237732f6388afb5abf74..0000000000000000000000000000000000000000 --- a/core/modules/quickedit/src/Plugin/InPlaceEditor/PlainTextEditor.php +++ /dev/null @@ -1,38 +0,0 @@ -<?php - -namespace Drupal\quickedit\Plugin\InPlaceEditor; - -use Drupal\Core\Field\FieldItemListInterface; -use Drupal\quickedit\Plugin\InPlaceEditorBase; - -/** - * Defines the plain text in-place editor. - * - * @InPlaceEditor( - * id = "plain_text" - * ) - */ -class PlainTextEditor extends InPlaceEditorBase { - - /** - * {@inheritdoc} - */ - public function isCompatible(FieldItemListInterface $items) { - $field_definition = $items->getFieldDefinition(); - - // This editor is incompatible with multivalued fields. - return $field_definition->getFieldStorageDefinition()->getCardinality() == 1; - } - - /** - * {@inheritdoc} - */ - public function getAttachments() { - return [ - 'library' => [ - 'quickedit/quickedit.inPlaceEditor.plainText', - ], - ]; - } - -} diff --git a/core/modules/quickedit/src/Plugin/InPlaceEditorBase.php b/core/modules/quickedit/src/Plugin/InPlaceEditorBase.php deleted file mode 100644 index 005f41fb8bec9bdb4a67af857e3f3c0875c70d62..0000000000000000000000000000000000000000 --- a/core/modules/quickedit/src/Plugin/InPlaceEditorBase.php +++ /dev/null @@ -1,25 +0,0 @@ -<?php - -namespace Drupal\quickedit\Plugin; - -use Drupal\Core\Plugin\PluginBase; -use Drupal\Core\Field\FieldItemListInterface; - -/** - * Defines a base in-place editor implementation. - * - * @see \Drupal\quickedit\Annotation\InPlaceEditor - * @see \Drupal\quickedit\Plugin\InPlaceEditorInterface - * @see \Drupal\quickedit\Plugin\InPlaceEditorManager - * @see plugin_api - */ -abstract class InPlaceEditorBase extends PluginBase implements InPlaceEditorInterface { - - /** - * {@inheritdoc} - */ - public function getMetadata(FieldItemListInterface $items) { - return []; - } - -} diff --git a/core/modules/quickedit/src/Plugin/InPlaceEditorInterface.php b/core/modules/quickedit/src/Plugin/InPlaceEditorInterface.php deleted file mode 100644 index 2622f7a3f84e0c8d23fdd74635f3c12769acac5a..0000000000000000000000000000000000000000 --- a/core/modules/quickedit/src/Plugin/InPlaceEditorInterface.php +++ /dev/null @@ -1,54 +0,0 @@ -<?php - -namespace Drupal\quickedit\Plugin; - -use Drupal\Component\Plugin\PluginInspectionInterface; -use Drupal\Core\Field\FieldItemListInterface; - -/** - * Defines an interface for in-place editors plugins. - * - * @see \Drupal\quickedit\Annotation\InPlaceEditor - * @see \Drupal\quickedit\Plugin\InPlaceEditorBase - * @see \Drupal\quickedit\Plugin\InPlaceEditorManager - * @see plugin_api - */ -interface InPlaceEditorInterface extends PluginInspectionInterface { - - /** - * Checks whether this in-place editor is compatible with a given field. - * - * @param \Drupal\Core\Field\FieldItemListInterface $items - * The field values to be in-place edited. - * - * @return bool - * TRUE if it is compatible, FALSE otherwise. - */ - public function isCompatible(FieldItemListInterface $items); - - /** - * Generates metadata that is needed specifically for this editor. - * - * Will only be called by \Drupal\quickedit\MetadataGeneratorInterface::generate() - * when the passed in field & item values will use this editor. - * - * @param \Drupal\Core\Field\FieldItemListInterface $items - * The field values to be in-place edited. - * - * @return array - * A keyed array with metadata. Each key should be prefixed with the plugin - * ID of the editor. - */ - public function getMetadata(FieldItemListInterface $items); - - /** - * Returns the attachments for this editor. - * - * @return array - * An array of attachments, for use with #attached. - * - * @see \Drupal\Core\Render\AttachmentsResponseProcessorInterface::processAttachments() - */ - public function getAttachments(); - -} diff --git a/core/modules/quickedit/src/Plugin/InPlaceEditorManager.php b/core/modules/quickedit/src/Plugin/InPlaceEditorManager.php deleted file mode 100644 index a65fe13ecb04f86852030e7bc3fedca43629a39d..0000000000000000000000000000000000000000 --- a/core/modules/quickedit/src/Plugin/InPlaceEditorManager.php +++ /dev/null @@ -1,38 +0,0 @@ -<?php - -namespace Drupal\quickedit\Plugin; - -use Drupal\Core\Cache\CacheBackendInterface; -use Drupal\Core\Extension\ModuleHandlerInterface; -use Drupal\Core\Plugin\DefaultPluginManager; - -/** - * Provides an in-place editor manager. - * - * The 'form' in-place editor must always be available. - * - * @see \Drupal\quickedit\Annotation\InPlaceEditor - * @see \Drupal\quickedit\Plugin\InPlaceEditorBase - * @see \Drupal\quickedit\Plugin\InPlaceEditorInterface - * @see plugin_api - */ -class InPlaceEditorManager extends DefaultPluginManager { - - /** - * Constructs an InPlaceEditorManager object. - * - * @param \Traversable $namespaces - * An object that implements \Traversable which contains the root paths - * keyed by the corresponding namespace to look for plugin implementations. - * @param \Drupal\Core\Cache\CacheBackendInterface $cache_backend - * Cache backend instance to use. - * @param \Drupal\Core\Extension\ModuleHandlerInterface $module_handler - * The module handler to invoke the alter hook with. - */ - public function __construct(\Traversable $namespaces, CacheBackendInterface $cache_backend, ModuleHandlerInterface $module_handler) { - parent::__construct('Plugin/InPlaceEditor', $namespaces, $module_handler, 'Drupal\quickedit\Plugin\InPlaceEditorInterface', 'Drupal\quickedit\Annotation\InPlaceEditor'); - $this->alterInfo('quickedit_editor'); - $this->setCacheBackend($cache_backend, 'quickedit:editor'); - } - -} diff --git a/core/modules/quickedit/src/QuickEditController.php b/core/modules/quickedit/src/QuickEditController.php deleted file mode 100644 index 4a8223fb3dfceaf8abe3efcef6afb50e07e8d1b3..0000000000000000000000000000000000000000 --- a/core/modules/quickedit/src/QuickEditController.php +++ /dev/null @@ -1,391 +0,0 @@ -<?php - -namespace Drupal\quickedit; - -use Drupal\Core\Controller\ControllerBase; -use Drupal\Core\Entity\EntityRepositoryInterface; -use Drupal\Core\Form\FormState; -use Drupal\Core\Render\RendererInterface; -use Drupal\Core\Session\AccountInterface; -use Drupal\Core\TempStore\PrivateTempStoreFactory; -use Drupal\filter\Plugin\FilterInterface; -use Symfony\Component\DependencyInjection\ContainerInterface; -use Symfony\Component\HttpFoundation\JsonResponse; -use Symfony\Component\HttpFoundation\Request; -use Symfony\Component\HttpKernel\Exception\AccessDeniedHttpException; -use Symfony\Component\HttpKernel\Exception\NotFoundHttpException; -use Drupal\Core\Ajax\AjaxResponse; -use Drupal\Core\Entity\EntityInterface; -use Drupal\Core\Entity\EntityDisplayRepositoryInterface; -use Drupal\quickedit\Ajax\FieldFormCommand; -use Drupal\quickedit\Ajax\FieldFormSavedCommand; -use Drupal\quickedit\Ajax\FieldFormValidationErrorsCommand; -use Drupal\quickedit\Ajax\EntitySavedCommand; -use Drupal\quickedit\Ajax\GetUntransformedTextCommand; - -/** - * Returns responses for Quick Edit module routes. - */ -class QuickEditController extends ControllerBase { - - /** - * The PrivateTempStore factory. - * - * @var \Drupal\Core\TempStore\PrivateTempStoreFactory - */ - protected $tempStoreFactory; - - /** - * The in-place editing metadata generator. - * - * @var \Drupal\quickedit\MetadataGeneratorInterface - */ - protected $metadataGenerator; - - /** - * The in-place editor selector. - * - * @var \Drupal\quickedit\EditorSelectorInterface - */ - protected $editorSelector; - - /** - * The renderer. - * - * @var \Drupal\Core\Render\RendererInterface - */ - protected $renderer; - - /** - * The entity display repository service. - * - * @var \Drupal\Core\Entity\EntityDisplayRepositoryInterface - */ - protected $entityDisplayRepository; - - /** - * The entity repository. - * - * @var \Drupal\Core\Entity\EntityRepositoryInterface - */ - protected $entityRepository; - - /** - * Constructs a new QuickEditController. - * - * @param \Drupal\Core\TempStore\PrivateTempStoreFactory $temp_store_factory - * The PrivateTempStore factory. - * @param \Drupal\quickedit\MetadataGeneratorInterface $metadata_generator - * The in-place editing metadata generator. - * @param \Drupal\quickedit\EditorSelectorInterface $editor_selector - * The in-place editor selector. - * @param \Drupal\Core\Render\RendererInterface $renderer - * The renderer. - * @param \Drupal\Core\Entity\EntityDisplayRepositoryInterface $entity_display_repository - * The entity display repository service. - * @param \Drupal\Core\Entity\EntityRepositoryInterface $entity_repository - * The entity repository. - */ - public function __construct(PrivateTempStoreFactory $temp_store_factory, MetadataGeneratorInterface $metadata_generator, EditorSelectorInterface $editor_selector, RendererInterface $renderer, EntityDisplayRepositoryInterface $entity_display_repository, EntityRepositoryInterface $entity_repository) { - $this->tempStoreFactory = $temp_store_factory; - $this->metadataGenerator = $metadata_generator; - $this->editorSelector = $editor_selector; - $this->renderer = $renderer; - $this->entityDisplayRepository = $entity_display_repository; - $this->entityRepository = $entity_repository; - } - - /** - * {@inheritdoc} - */ - public static function create(ContainerInterface $container) { - return new static( - $container->get('tempstore.private'), - $container->get('quickedit.metadata.generator'), - $container->get('quickedit.editor.selector'), - $container->get('renderer'), - $container->get('entity_display.repository'), - $container->get('entity.repository') - ); - } - - /** - * Returns the metadata for a set of fields. - * - * Given a list of field quick edit IDs as POST parameters, run access checks - * on the entity and field level to determine whether the current user may - * edit them. Also retrieves other metadata. - * - * @return \Symfony\Component\HttpFoundation\JsonResponse - * The JSON response. - */ - public function metadata(Request $request) { - if (!$request->request->has('fields')) { - throw new NotFoundHttpException(); - } - $fields = $request->request->all('fields'); - $entities = $request->request->all('entities'); - - $metadata = []; - foreach ($fields as $field) { - [$entity_type, $entity_id, $field_name, $langcode, $view_mode] = explode('/', $field); - - // Load the entity. - if (!$entity_type || !$this->entityTypeManager()->getDefinition($entity_type)) { - throw new NotFoundHttpException(); - } - $entity = $this->entityTypeManager()->getStorage($entity_type)->load($entity_id); - if (!$entity) { - throw new NotFoundHttpException(); - } - - // Validate the field name and language. - if (!$field_name || !$entity->hasField($field_name)) { - throw new NotFoundHttpException(); - } - if (!$langcode || !$entity->hasTranslation($langcode)) { - throw new NotFoundHttpException(); - } - - $entity = $entity->getTranslation($langcode); - - // If the entity information for this field is requested, include it. - $entity_id = $entity->getEntityTypeId() . '/' . $entity_id; - if (is_array($entities) && in_array($entity_id, $entities) && !isset($metadata[$entity_id])) { - $metadata[$entity_id] = $this->metadataGenerator->generateEntityMetadata($entity); - } - - $metadata[$field] = $this->metadataGenerator->generateFieldMetadata($entity->get($field_name), $view_mode); - } - - return new JsonResponse($metadata); - } - - /** - * Throws an AccessDeniedHttpException if the request fails CSRF validation. - * - * This is used instead of \Drupal\Core\Access\CsrfAccessCheck, in order to - * allow access for anonymous users. - * - * @todo Refactor this to an access checker. - */ - private static function checkCsrf(Request $request, AccountInterface $account) { - $header = 'X-Drupal-Quickedit-CSRF-Token'; - - if (!$request->headers->has($header)) { - throw new AccessDeniedHttpException(); - } - if ($account->isAnonymous()) { - // For anonymous users, just the presence of the custom header is - // sufficient protection. - return; - } - // For authenticated users, validate the token value. - $token = $request->headers->get($header); - if (!\Drupal::csrfToken()->validate($token, $header)) { - throw new AccessDeniedHttpException(); - } - } - - /** - * Returns AJAX commands to load in-place editors' attachments. - * - * Given a list of in-place editor IDs as POST parameters, render AJAX - * commands to load those in-place editors. - * - * @return \Drupal\Core\Ajax\AjaxResponse - * The Ajax response. - */ - public function attachments(Request $request) { - $response = new AjaxResponse(); - if (!$request->request->has('editors')) { - throw new NotFoundHttpException(); - } - $editors = $request->request->all('editors'); - - $response->setAttachments($this->editorSelector->getEditorAttachments($editors)); - - return $response; - } - - /** - * Returns a single field edit form as an Ajax response. - * - * @param \Drupal\Core\Entity\EntityInterface $entity - * The entity being edited. - * @param string $field_name - * The name of the field that is being edited. - * @param string $langcode - * The name of the language for which the field is being edited. - * @param string $view_mode_id - * The view mode the field should be rerendered in. - * @param \Symfony\Component\HttpFoundation\Request $request - * The current request object containing the search string. - * - * @return \Drupal\Core\Ajax\AjaxResponse - * The Ajax response. - */ - public function fieldForm(EntityInterface $entity, $field_name, $langcode, $view_mode_id, Request $request) { - $response = new AjaxResponse(); - - // Replace entity with PrivateTempStore copy if available and not resetting, - // init PrivateTempStore copy otherwise. - $tempstore_entity = $this->tempStoreFactory->get('quickedit')->get($entity->uuid()); - if ($tempstore_entity && $request->request->get('reset') !== 'true') { - $entity = $tempstore_entity; - } - else { - $this->tempStoreFactory->get('quickedit')->set($entity->uuid(), $entity); - } - - $form_state = (new FormState()) - ->set('langcode', $langcode) - ->disableRedirect() - ->addBuildInfo('args', [$entity, $field_name]); - $form = $this->formBuilder()->buildForm('Drupal\quickedit\Form\QuickEditFieldForm', $form_state); - - if ($form_state->isExecuted()) { - // The form submission saved the entity in PrivateTempStore. Return the - // updated view of the field from the PrivateTempStore copy. - $entity = $this->tempStoreFactory->get('quickedit')->get($entity->uuid()); - - // Closure to render the field given a view mode. - $render_field_in_view_mode = function ($view_mode_id) use ($entity, $field_name, $langcode) { - return $this->renderField($entity, $field_name, $langcode, $view_mode_id); - }; - - // Re-render the updated field. - $output = $render_field_in_view_mode($view_mode_id); - - // Re-render the updated field for other view modes (i.e. for other - // instances of the same logical field on the user's page). - $other_view_mode_ids = $request->request->all('other_view_modes'); - $other_view_modes = array_map($render_field_in_view_mode, array_combine($other_view_mode_ids, $other_view_mode_ids)); - - $response->addCommand(new FieldFormSavedCommand($output, $other_view_modes)); - } - else { - $output = $this->renderer->renderRoot($form); - // When working with a hidden form, we don't want its CSS/JS to be loaded. - if ($request->request->get('nocssjs') !== 'true') { - $response->setAttachments($form['#attached']); - } - $response->addCommand(new FieldFormCommand($output)); - - $errors = $form_state->getErrors(); - if (count($errors)) { - $status_messages = [ - '#type' => 'status_messages', - ]; - $response->addCommand(new FieldFormValidationErrorsCommand($this->renderer->renderRoot($status_messages))); - } - } - - return $response; - } - - /** - * Renders a field. - * - * If the view mode ID is not an Entity Display view mode ID, then the field - * was rendered using a custom render pipeline (not the Entity/Field API - * render pipeline). - * - * An example could be Views' render pipeline. In that case, the view mode ID - * would probably contain the View's ID, display and the row index. - * - * @param \Drupal\Core\Entity\EntityInterface $entity - * The entity being edited. - * @param string $field_name - * The name of the field that is being edited. - * @param string $langcode - * The name of the language for which the field is being edited. - * @param string $view_mode_id - * The view mode the field should be rerendered in. Either an Entity Display - * view mode ID, or a custom one. See hook_quickedit_render_field(). - * - * @return \Drupal\Component\Render\MarkupInterface - * Rendered HTML. - * - * @see hook_quickedit_render_field() - */ - protected function renderField(EntityInterface $entity, $field_name, $langcode, $view_mode_id) { - $entity_view_mode_ids = array_keys($this->entityDisplayRepository->getViewModes($entity->getEntityTypeId())); - if (in_array($view_mode_id, $entity_view_mode_ids)) { - $entity = $this->entityRepository->getTranslationFromContext($entity, $langcode); - $output = $entity->get($field_name)->view($view_mode_id); - } - else { - // Each part of a custom (non-Entity Display) view mode ID is separated - // by a dash; the first part must be the module name. - $mode_id_parts = explode('-', $view_mode_id, 2); - $module = reset($mode_id_parts); - $args = [$entity, $field_name, $view_mode_id, $langcode]; - $output = $this->moduleHandler()->invoke($module, 'quickedit_render_field', $args); - } - - return $this->renderer->renderRoot($output); - } - - /** - * Saves an entity into the database, from PrivateTempStore. - * - * @param \Drupal\Core\Entity\EntityInterface $entity - * The entity being edited. - * - * @return \Drupal\Core\Ajax\AjaxResponse - * The Ajax response. - */ - public function entitySave(EntityInterface $entity) { - self::checkCsrf(\Drupal::request(), \Drupal::currentUser()); - - // Take the entity from PrivateTempStore and save in entity storage. - // fieldForm() ensures that the PrivateTempStore copy exists ahead. - $tempstore = $this->tempStoreFactory->get('quickedit'); - $tempstore->get($entity->uuid())->save(); - $tempstore->delete($entity->uuid()); - - // Return information about the entity that allows a front end application - // to identify it. - $output = [ - 'entity_type' => $entity->getEntityTypeId(), - 'entity_id' => $entity->id(), - ]; - - // Respond to client that the entity was saved properly. - $response = new AjaxResponse(); - $response->addCommand(new EntitySavedCommand($output)); - return $response; - } - - /** - * Returns Ajax response to render text field without transformation filters. - * - * @param \Drupal\Core\Entity\EntityInterface $entity - * The entity of which a formatted text field is being rerendered. - * @param string $field_name - * The name of the (formatted text) field that is being rerendered. - * @param string $langcode - * The name of the language for which the formatted text field is being - * rerendered. - * @param string $view_mode_id - * The view mode the formatted text field should be rerendered in. - * - * @return \Drupal\Core\Ajax\AjaxResponse - * The Ajax response. - */ - public function getUntransformedText(EntityInterface $entity, $field_name, $langcode, $view_mode_id) { - $response = new AjaxResponse(); - - // Direct text editing is only supported for single-valued fields. - $field = $entity->getTranslation($langcode)->$field_name; - $editable_text = check_markup($field->value, $field->format, $langcode, [ - FilterInterface::TYPE_TRANSFORM_REVERSIBLE, - FilterInterface::TYPE_TRANSFORM_IRREVERSIBLE, - ]); - $response->addCommand(new GetUntransformedTextCommand($editable_text)); - - return $response; - } - -} diff --git a/core/modules/quickedit/tests/modules/quickedit_test.info.yml b/core/modules/quickedit/tests/modules/quickedit_test.info.yml deleted file mode 100644 index 1af27d5dec92d315d471d3f869da1574b093df9e..0000000000000000000000000000000000000000 --- a/core/modules/quickedit/tests/modules/quickedit_test.info.yml +++ /dev/null @@ -1,5 +0,0 @@ -name: 'Quick Edit test' -type: module -description: 'Support module for the Quick Edit module tests.' -package: Testing -version: VERSION diff --git a/core/modules/quickedit/tests/modules/quickedit_test.module b/core/modules/quickedit/tests/modules/quickedit_test.module deleted file mode 100644 index 5a0ae84d917931ab8150818cdf6c64cef882f81d..0000000000000000000000000000000000000000 --- a/core/modules/quickedit/tests/modules/quickedit_test.module +++ /dev/null @@ -1,33 +0,0 @@ -<?php - -/** - * @file - * Helper module for the Quick Edit tests. - */ - -use Drupal\Core\Entity\EntityInterface; - -/** - * Implements hook_quickedit_render_field(). - */ -function quickedit_test_quickedit_render_field(EntityInterface $entity, $field_name, $view_mode_id, $langcode) { - $entity = \Drupal::service('entity.repository')->getTranslationFromContext($entity, $langcode); - return [ - '#prefix' => '<div class="quickedit-test-wrapper">', - 'field' => $entity->get($field_name)->view($view_mode_id), - '#suffix' => '</div>', - ]; -} - -/** - * Implements hook_field_formatter_info_alter(). - * - * @see quickedit_field_formatter_info_alter() - * @see editor_field_formatter_info_alter() - */ -function quickedit_test_field_formatter_info_alter(&$info) { - // Update \Drupal\text\Plugin\Field\FieldFormatter\TextDefaultFormatter's - // annotation to indicate that it supports the 'wysiwyg' in-place editor - // provided by this module. - $info['text_default']['quickedit'] = ['editor' => 'wysiwyg']; -} diff --git a/core/modules/quickedit/tests/modules/src/MockQuickEditEntityFieldAccessCheck.php b/core/modules/quickedit/tests/modules/src/MockQuickEditEntityFieldAccessCheck.php deleted file mode 100644 index 5e52e3c3045be48858a90bb5120f249a2f19054b..0000000000000000000000000000000000000000 --- a/core/modules/quickedit/tests/modules/src/MockQuickEditEntityFieldAccessCheck.php +++ /dev/null @@ -1,33 +0,0 @@ -<?php - -namespace Drupal\quickedit_test; - -use Drupal\Core\Access\AccessResult; -use Drupal\Core\Entity\EntityInterface; -use Drupal\quickedit\Access\QuickEditEntityFieldAccessCheckInterface; - -/** - * Access check for in-place editing entity fields. - */ -class MockQuickEditEntityFieldAccessCheck implements QuickEditEntityFieldAccessCheckInterface { - - /** - * {@inheritdoc} - */ - public function accessEditEntityField(EntityInterface $entity, $field_name) { - switch (\Drupal::state()->get('quickedit_test_field_access')) { - case 'allowed': - return AccessResult::allowed(); - - case 'neutral': - return AccessResult::neutral(); - - case 'forbidden': - return AccessResult::forbidden(); - - default: - throw new \OutOfRangeException("The state for the 'quickedit_test_field_access' key must be either 'allowed', 'neutral' or 'forbidden'."); - } - } - -} diff --git a/core/modules/quickedit/tests/modules/src/Plugin/InPlaceEditor/WysiwygEditor.php b/core/modules/quickedit/tests/modules/src/Plugin/InPlaceEditor/WysiwygEditor.php deleted file mode 100644 index c26bf909decf19961f9d62f4b1d0b72f53980b04..0000000000000000000000000000000000000000 --- a/core/modules/quickedit/tests/modules/src/Plugin/InPlaceEditor/WysiwygEditor.php +++ /dev/null @@ -1,52 +0,0 @@ -<?php - -namespace Drupal\quickedit_test\Plugin\InPlaceEditor; - -use Drupal\Core\Field\FieldItemListInterface; -use Drupal\quickedit\Plugin\InPlaceEditorBase; - -/** - * Defines the 'wysiwyg' in-place editor. - * - * @InPlaceEditor( - * id = "wysiwyg", - * ) - */ -class WysiwygEditor extends InPlaceEditorBase { - - /** - * {@inheritdoc} - */ - public function isCompatible(FieldItemListInterface $items) { - $field_definition = $items->getFieldDefinition(); - - // This editor is incompatible with multivalued fields. - if ($field_definition->getFieldStorageDefinition()->getCardinality() != 1) { - return FALSE; - } - // This editor is compatible with formatted ("rich") text fields; but only - // if there is a currently active text format and that text format is the - // 'full_html' text format. - return $items[0]->format === 'full_html'; - } - - /** - * {@inheritdoc} - */ - public function getMetadata(FieldItemListInterface $items) { - $metadata['format'] = $items[0]->format; - return $metadata; - } - - /** - * {@inheritdoc} - */ - public function getAttachments() { - return [ - 'library' => [ - 'quickedit_test/not-existing-wysiwyg', - ], - ]; - } - -} diff --git a/core/modules/quickedit/tests/src/Functional/CKEditor5/CKEditor5QuickEditLibraryTest.php b/core/modules/quickedit/tests/src/Functional/CKEditor5/CKEditor5QuickEditLibraryTest.php deleted file mode 100644 index d5e59343f26dfadfc654db601340f834d4512723..0000000000000000000000000000000000000000 --- a/core/modules/quickedit/tests/src/Functional/CKEditor5/CKEditor5QuickEditLibraryTest.php +++ /dev/null @@ -1,93 +0,0 @@ -<?php - -namespace Drupal\Tests\quickedit\Functional\CKEditor5; - -use Drupal\ckeditor5\Plugin\Editor\CKEditor5; -use Drupal\editor\Entity\Editor; -use Drupal\filter\Entity\FilterFormat; -use Drupal\Tests\BrowserTestBase; -use Drupal\user\RoleInterface; -use Drupal\user\Entity\User; -use Symfony\Component\Validator\ConstraintViolation; - -/** - * Tests that a Quick Edit specific library loads when Quick Edit is enabled. - * - * @group ckeditor5 - * @group quickedit - * @group legacy - */ -class CKEditor5QuickEditLibraryTest extends BrowserTestBase { - - /** - * {@inheritdoc} - */ - protected static $modules = [ - 'node', - 'ckeditor5', - 'quickedit', - ]; - - /** - * {@inheritdoc} - */ - protected $defaultTheme = 'stark'; - - /** - * The admin user. - * - * @var \Drupal\user\Entity\User - */ - protected User $adminUser; - - /** - * {@inheritdoc} - */ - protected function setUp(): void { - parent::setUp(); - - $format = FilterFormat::create([ - 'format' => 'llama', - 'name' => 'Llama', - 'filters' => [], - 'roles' => [RoleInterface::AUTHENTICATED_ID], - ]); - $format->save(); - $editor = Editor::create([ - 'format' => 'llama', - 'editor' => 'ckeditor5', - 'settings' => [ - 'toolbar' => [ - 'items' => [], - ], - ], - ]); - $editor->save(); - $this->assertSame([], array_map( - function (ConstraintViolation $v) { - return (string) $v->getMessage(); - }, - iterator_to_array(CKEditor5::validatePair($editor, $format)) - )); - $this->drupalCreateContentType([ - 'type' => 'article', - 'name' => 'Article', - ]); - - $this->adminUser = $this->drupalCreateUser([ - 'create article content', - 'use text format llama', - ]); - $this->drupalLogin($this->adminUser); - } - - /** - * Tests that the Quick Edit workaround CSS loads when needed. - */ - public function testQuickeditTemporaryWorkaround() { - $assert_session = $this->assertSession(); - $this->drupalGet('node/add/article'); - $assert_session->responseContains('css/editors/formattedText/ckeditor5.workaround.css'); - } - -} diff --git a/core/modules/quickedit/tests/src/Functional/EditorIntegrationLoadingTest.php b/core/modules/quickedit/tests/src/Functional/EditorIntegrationLoadingTest.php deleted file mode 100644 index bb869f60fd5e868aa92e95416ceee4797d43806b..0000000000000000000000000000000000000000 --- a/core/modules/quickedit/tests/src/Functional/EditorIntegrationLoadingTest.php +++ /dev/null @@ -1,148 +0,0 @@ -<?php - -namespace Drupal\Tests\quickedit\Functional; - -use Drupal\Component\Serialization\Json; -use Drupal\Core\EventSubscriber\MainContentViewSubscriber; -use Drupal\filter\Entity\FilterFormat; -use Drupal\Tests\BrowserTestBase; - -/** - * Tests Quick Edit module integration endpoints. - * - * @group quickedit - * @group legacy - */ -class EditorIntegrationLoadingTest extends BrowserTestBase { - - /** - * Modules to enable. - * - * @var array - */ - protected static $modules = ['quickedit', 'filter', 'node', 'editor']; - - /** - * {@inheritdoc} - */ - protected $defaultTheme = 'classy'; - - /** - * The basic permissions necessary to view content and use in-place editing. - * - * @var array - */ - protected static $basicPermissions = ['access content', 'create article content', 'use text format filtered_html', 'access contextual links']; - - protected function setUp(): void { - parent::setUp(); - - // Create a text format. - $filtered_html_format = FilterFormat::create([ - 'format' => 'filtered_html', - 'name' => 'Filtered HTML', - 'weight' => 0, - 'filters' => [ - 'filter_caption' => [ - 'status' => 1, - ], - ], - ]); - $filtered_html_format->save(); - - // Create a node type. - $this->drupalCreateContentType([ - 'type' => 'article', - 'name' => 'Article', - ]); - - // Create one node of the above node type using the above text format. - $this->drupalCreateNode([ - 'type' => 'article', - 'body' => [ - 0 => [ - 'value' => '<p>Do you also love Drupal?</p><img src="druplicon.png" data-caption="Druplicon" />', - 'format' => 'filtered_html', - ], - ], - ]); - } - - /** - * Tests loading of untransformed text when a user doesn't have access to it. - */ - public function testUsersWithoutPermission() { - // Create 3 users, each with insufficient permissions, i.e. without either - // or both of the following permissions: - // - the 'access in-place editing' permission - // - the 'edit any article content' permission (necessary to edit node 1) - $users = [ - $this->drupalCreateUser(static::$basicPermissions), - $this->drupalCreateUser(array_merge(static::$basicPermissions, ['edit any article content'])), - $this->drupalCreateUser(array_merge(static::$basicPermissions, ['access in-place editing'])), - ]; - - // Now test with each of the 3 users with insufficient permissions. - foreach ($users as $user) { - $this->drupalLogin($user); - $this->drupalGet('node/1'); - - // Ensure the text is transformed. - $this->assertSession()->responseContains('<p>Do you also love Drupal?</p><figure role="group" class="caption caption-img"><img src="druplicon.png" /><figcaption>Druplicon</figcaption></figure>'); - - $client = $this->getHttpClient(); - - // Retrieving the untransformed text should result in a 403 response and - // return a different error message depending of the missing permission. - $response = $client->post($this->buildUrl('quickedit/node/1/body/en/full'), [ - 'query' => http_build_query([MainContentViewSubscriber::WRAPPER_FORMAT => 'drupal_ajax']), - 'cookies' => $this->getSessionCookies(), - 'headers' => [ - 'Accept' => 'application/json', - 'Content-Type' => 'application/x-www-form-urlencoded', - ], - 'http_errors' => FALSE, - ]); - - $this->assertEquals(403, $response->getStatusCode()); - if (!$user->hasPermission('access in-place editing')) { - $message = "The 'access in-place editing' permission is required."; - } - else { - $message = "The 'edit any article content' permission is required."; - } - - $body = Json::decode($response->getBody()); - $this->assertSame($message, $body['message']); - } - } - - /** - * Tests loading of untransformed text when a user does have access to it. - */ - public function testUserWithPermission() { - $user = $this->drupalCreateUser(array_merge(static::$basicPermissions, ['edit any article content', 'access in-place editing'])); - $this->drupalLogin($user); - $this->drupalGet('node/1'); - - // Ensure the text is transformed. - $this->assertSession()->responseContains('<p>Do you also love Drupal?</p><figure role="group" class="caption caption-img"><img src="druplicon.png" /><figcaption>Druplicon</figcaption></figure>'); - $client = $this->getHttpClient(); - $response = $client->post($this->buildUrl('quickedit/node/1/body/en/full'), [ - 'query' => http_build_query([MainContentViewSubscriber::WRAPPER_FORMAT => 'drupal_ajax']), - 'cookies' => $this->getSessionCookies(), - 'headers' => [ - 'Accept' => 'application/json', - 'Content-Type' => 'application/x-www-form-urlencoded', - ], - 'http_errors' => FALSE, - ]); - - $this->assertEquals(200, $response->getStatusCode()); - $ajax_commands = Json::decode($response->getBody()); - $this->assertCount(1, $ajax_commands, 'The untransformed text POST request results in one AJAX command.'); - $this->assertSame('editorGetUntransformedText', $ajax_commands[0]['command'], 'The first AJAX command is an editorGetUntransformedText command.'); - $this->assertSame('<p>Do you also love Drupal?</p><img src="druplicon.png" data-caption="Druplicon" />', $ajax_commands[0]['data'], 'The editorGetUntransformedText command contains the expected data.'); - } - -} diff --git a/core/modules/quickedit/tests/src/Functional/Jsonapi/QuickEditLayoutBuilderEntityViewDisplayTest.php b/core/modules/quickedit/tests/src/Functional/Jsonapi/QuickEditLayoutBuilderEntityViewDisplayTest.php deleted file mode 100644 index 1e9fe10c1752a6e0c769aec65563f5cd2adfb570..0000000000000000000000000000000000000000 --- a/core/modules/quickedit/tests/src/Functional/Jsonapi/QuickEditLayoutBuilderEntityViewDisplayTest.php +++ /dev/null @@ -1,22 +0,0 @@ -<?php - -namespace Drupal\Tests\quickedit\Functional\Jsonapi; - -use Drupal\Tests\layout_builder\Functional\Jsonapi\LayoutBuilderEntityViewDisplayTest; - -/** - * JSON:API integration test for the "EntityViewDisplay" config entity type. - * - * @group jsonapi - * @group layout_builder - * @group quickedit - * @group legacy - */ -class QuickEditLayoutBuilderEntityViewDisplayTest extends LayoutBuilderEntityViewDisplayTest { - - /** - * {@inheritdoc} - */ - protected static $modules = ['quickedit']; - -} diff --git a/core/modules/quickedit/tests/src/Functional/LayoutBuilderQuickEditTest.php b/core/modules/quickedit/tests/src/Functional/LayoutBuilderQuickEditTest.php deleted file mode 100644 index db564fbec743bc318d68360016b9f787725cc740..0000000000000000000000000000000000000000 --- a/core/modules/quickedit/tests/src/Functional/LayoutBuilderQuickEditTest.php +++ /dev/null @@ -1,72 +0,0 @@ -<?php - -namespace Drupal\Tests\quickedit\Functional; - -use Drupal\layout_builder\Entity\LayoutBuilderEntityViewDisplay; -use Drupal\Tests\BrowserTestBase; - -/** - * Tests Layout Builder integration with Quick Edit. - * - * @group quickedit - * @group legacy - */ -class LayoutBuilderQuickEditTest extends BrowserTestBase { - - /** - * {@inheritdoc} - */ - protected static $modules = [ - 'layout_builder', - 'node', - 'quickedit', - ]; - - /** - * {@inheritdoc} - */ - protected $defaultTheme = 'stark'; - - /** - * {@inheritdoc} - */ - protected function setUp(): void { - parent::setUp(); - - // Create two nodes. - $this->createContentType([ - 'type' => 'bundle_with_section_field', - 'name' => 'Bundle with section field', - ]); - $this->createNode([ - 'type' => 'bundle_with_section_field', - ]); - LayoutBuilderEntityViewDisplay::load('node.bundle_with_section_field.default') - ->enableLayoutBuilder() - ->setOverridable() - ->save(); - } - - /** - * Tests Quick Edit integration with a block from a different entity type. - */ - public function testPlaceFieldBlockFromDifferentEntityType() { - $page = $this->getSession()->getPage(); - - $this->drupalLogin($this->drupalCreateUser([ - 'configure any layout', - 'access in-place editing', - ])); - - // Place a field block for a user entity field. - $this->drupalGet('node/1/layout'); - $page->clickLink('Add block'); - $page->clickLink('Name'); - $page->pressButton('Add block'); - $page->pressButton('Save layout'); - - $this->drupalGet('node/1'); - $this->assertSession()->statusCodeEquals(200); - } - -} diff --git a/core/modules/quickedit/tests/src/Functional/QuickEditCustomPipelineTest.php b/core/modules/quickedit/tests/src/Functional/QuickEditCustomPipelineTest.php deleted file mode 100644 index e044672b0be60e678b3243a7f98c716fa7760dbb..0000000000000000000000000000000000000000 --- a/core/modules/quickedit/tests/src/Functional/QuickEditCustomPipelineTest.php +++ /dev/null @@ -1,108 +0,0 @@ -<?php - -namespace Drupal\Tests\quickedit\Functional; - -use Drupal\Component\Serialization\Json; -use Drupal\Core\EventSubscriber\MainContentViewSubscriber; -use Drupal\Tests\BrowserTestBase; - -/** - * Tests using a custom pipeline with Quick Edit. - * - * @group quickedit - * @group legacy - */ -class QuickEditCustomPipelineTest extends BrowserTestBase { - - /** - * {@inheritdoc} - */ - protected static $modules = [ - 'quickedit', - 'quickedit_test', - 'node', - ]; - - /** - * {@inheritdoc} - */ - protected $defaultTheme = 'stark'; - - /** - * Tests that Quick Edit works with custom render pipelines. - */ - public function testCustomPipeline() { - // Create a node type. - $this->drupalCreateContentType([ - 'type' => 'article', - 'name' => 'Article', - ]); - $node = $this->createNode(['type' => 'article']); - $editor_user = $this->drupalCreateUser([ - 'access content', - 'create article content', - 'edit any article content', - 'access in-place editing', - ]); - $this->drupalLogin($editor_user); - - $custom_render_url = $this->buildUrl('quickedit/form/node/' . $node->id() . '/body/en/quickedit_test-custom-render-data'); - - $client = $this->getHttpClient(); - $post = ['nocssjs' => 'true']; - $response = $client->post($custom_render_url, [ - 'body' => http_build_query($post), - 'query' => [MainContentViewSubscriber::WRAPPER_FORMAT => 'drupal_ajax'], - 'cookies' => $this->getSessionCookies(), - 'headers' => [ - 'Accept' => 'application/json', - 'Content-Type' => 'application/x-www-form-urlencoded', - ], - 'http_errors' => FALSE, - ]); - - $this->assertEquals(200, $response->getStatusCode()); - - $ajax_commands = Json::decode($response->getBody()); - // Request editing to render results with the custom render pipeline. - - // Prepare form values for submission. drupalPostAJAX() is not suitable for - // handling pages with JSON responses, so we need our own solution here. - $form_tokens_found = preg_match('/\sname="form_token" value="([^"]+)"/', $ajax_commands[0]['data'], $token_match) && preg_match('/\sname="form_build_id" value="([^"]+)"/', $ajax_commands[0]['data'], $build_id_match); - $this->assertTrue($form_tokens_found, 'Form tokens found in output.'); - - $post = [ - 'form_id' => 'quickedit_field_form', - 'form_token' => $token_match[1], - 'form_build_id' => $build_id_match[1], - 'body[0][summary]' => '', - 'body[0][value]' => '<p>Fine thanks.</p>', - 'body[0][format]' => 'filtered_html', - 'op' => 'Save', - ]; - // Assume there is another field on this page, which doesn't use a custom - // render pipeline, but the default one, and it uses the "full" view mode. - $post += ['other_view_modes[]' => 'full']; - - // Submit field form and check response. Should render with the custom - // render pipeline. - $response = $client->post($custom_render_url, [ - 'body' => http_build_query($post), - 'query' => [MainContentViewSubscriber::WRAPPER_FORMAT => 'drupal_ajax'], - 'cookies' => $this->getSessionCookies(), - 'headers' => [ - 'Accept' => 'application/json', - 'Content-Type' => 'application/x-www-form-urlencoded', - ], - 'http_errors' => FALSE, - ]); - $ajax_commands = Json::decode($response->getBody()); - $this->assertCount(1, $ajax_commands, 'The field form HTTP request results in one AJAX command.'); - $this->assertSame('quickeditFieldFormSaved', $ajax_commands[0]['command'], 'The first AJAX command is a quickeditFieldFormSaved command.'); - $this->assertStringContainsString('Fine thanks.', $ajax_commands[0]['data'], 'Form value saved and printed back.'); - $this->assertStringContainsString('<div class="quickedit-test-wrapper">', $ajax_commands[0]['data'], 'Custom render pipeline used to render the value.'); - $this->assertSame(['full'], array_keys($ajax_commands[0]['other_view_modes']), 'Field was also rendered in the "full" view mode.'); - $this->assertStringContainsString('Fine thanks.', $ajax_commands[0]['other_view_modes']['full'], '"full" version of field contains the form value.'); - } - -} diff --git a/core/modules/quickedit/tests/src/Functional/QuickEditEndPointAccessTest.php b/core/modules/quickedit/tests/src/Functional/QuickEditEndPointAccessTest.php deleted file mode 100644 index cd367e0a09360d0e05aa0cb391eeee86d7468846..0000000000000000000000000000000000000000 --- a/core/modules/quickedit/tests/src/Functional/QuickEditEndPointAccessTest.php +++ /dev/null @@ -1,104 +0,0 @@ -<?php - -namespace Drupal\Tests\quickedit\Functional; - -use Drupal\Component\Serialization\Json; -use Drupal\Core\EventSubscriber\MainContentViewSubscriber; -use Drupal\Tests\BrowserTestBase; -use GuzzleHttp\RequestOptions; - -/** - * Tests accessing the Quick Edit endpoints. - * - * @group quickedit - * @group legacy - */ -class QuickEditEndPointAccessTest extends BrowserTestBase { - - /** - * {@inheritdoc} - */ - protected static $modules = [ - 'quickedit', - 'node', - ]; - - /** - * {@inheritdoc} - */ - protected $defaultTheme = 'stark'; - - /** - * {@inheritdoc} - */ - protected function setUp(): void { - parent::setUp(); - $this->drupalCreateContentType([ - 'type' => 'article', - 'name' => 'Article', - ]); - } - - /** - * Tests that Quick Edit endpoints are protected from anonymous requests. - */ - public function testEndPointAccess() { - // Quick Edit's JavaScript would never hit these endpoints, but we need to - // make sure that malicious users aren't able to use any of the other - // endpoints either. - $url = $this->buildUrl('/quickedit/attachments'); - $post = ['editors[0]' => 'form']; - $this->assertAccessIsBlocked($url, $post); - - $node = $this->createNode(['type' => 'article']); - $url = $this->buildUrl('quickedit/form/node/' . $node->id() . '/body/en/full'); - $post = ['nocssjs' => 'true']; - $this->assertAccessIsBlocked($url, $post); - - $edit = []; - $edit['form_id'] = 'quickedit_field_form'; - $edit['form_token'] = 'xIOzMjuc-PULKsRn_KxFn7xzNk5Bx7XKXLfQfw1qOnA'; - $edit['form_build_id'] = 'form-kVmovBpyX-SJfTT5kY0pjTV35TV-znor--a64dEnMR8'; - $edit['body[0][summary]'] = ''; - $edit['body[0][value]'] = '<p>Malicious content.</p>'; - $edit['body[0][format]'] = 'filtered_html'; - $edit['op'] = 'Save'; - $this->assertAccessIsBlocked($url, $edit); - - $post = ['nocssjs' => 'true']; - $url = $this->buildUrl('quickedit/entity/node/' . $node->id()); - $this->assertAccessIsBlocked($url, $post); - } - - /** - * Asserts that access to the passed URL is blocked. - * - * @param string $url - * The URL to check. - * @param array $body - * The payload to send with the request. - * - * @internal - */ - protected function assertAccessIsBlocked(string $url, array $body): void { - $client = $this->getHttpClient(); - $message = ['message' => "The 'access in-place editing' permission is required."]; - - $response = $client->post($url, [ - RequestOptions::BODY => http_build_query($body), - RequestOptions::QUERY => [MainContentViewSubscriber::WRAPPER_FORMAT => 'drupal_ajax'], - RequestOptions::COOKIES => $this->getSessionCookies(), - RequestOptions::HEADERS => [ - 'Accept' => 'application/json', - 'Content-Type' => 'application/x-www-form-urlencoded', - ], - RequestOptions::HTTP_ERRORS => FALSE, - ]); - - $this->assertEquals(403, $response->getStatusCode()); - - $response_message = Json::decode($response->getBody()); - $this->assertSame($message, $response_message); - } - -} diff --git a/core/modules/quickedit/tests/src/Functional/QuickEditImageControllerTest.php b/core/modules/quickedit/tests/src/Functional/QuickEditImageControllerTest.php deleted file mode 100644 index d01c915e1789540c3ea0e6515097efd62a91e188..0000000000000000000000000000000000000000 --- a/core/modules/quickedit/tests/src/Functional/QuickEditImageControllerTest.php +++ /dev/null @@ -1,192 +0,0 @@ -<?php - -namespace Drupal\Tests\quickedit\Functional; - -use Drupal\Component\Serialization\Json; -use Drupal\Tests\BrowserTestBase; -use Drupal\Tests\image\Kernel\ImageFieldCreationTrait; -use Drupal\Tests\TestFileCreationTrait; - -/** - * Tests the endpoints used by the "image" in-place editor. - * - * @group quickedit - * @group legacy - */ -class QuickEditImageControllerTest extends BrowserTestBase { - - use ImageFieldCreationTrait; - use TestFileCreationTrait { - getTestFiles as drupalGetTestFiles; - } - - /** - * {@inheritdoc} - */ - protected static $modules = ['node', 'image', 'quickedit']; - - /** - * {@inheritdoc} - */ - protected $defaultTheme = 'stark'; - - /** - * The machine name of our image field. - * - * @var string - */ - protected $fieldName; - - /** - * A user with permissions to edit articles and use Quick Edit. - * - * @var \Drupal\user\UserInterface - */ - protected $contentAuthorUser; - - /** - * {@inheritdoc} - */ - protected function setUp(): void { - parent::setUp(); - - // Create the Article node type. - $this->drupalCreateContentType(['type' => 'article', 'name' => 'Article']); - - // Log in as a content author who can use Quick Edit and edit Articles. - $this->contentAuthorUser = $this->drupalCreateUser([ - 'access contextual links', - 'access in-place editing', - 'access content', - 'create article content', - 'edit any article content', - 'delete any article content', - ]); - $this->drupalLogin($this->contentAuthorUser); - - // Create a field with basic resolution validators. - $this->fieldName = strtolower($this->randomMachineName()); - $field_settings = [ - 'max_resolution' => '100x', - 'min_resolution' => '50x', - ]; - $this->createImageField($this->fieldName, 'article', [], $field_settings); - } - - /** - * Tests that routes restrict access for un-privileged users. - */ - public function testAccess() { - // Create an anonymous user. - $user = $this->createUser(); - $this->drupalLogin($user); - - // Create a test Node. - $node = $this->drupalCreateNode([ - 'type' => 'article', - 'title' => 'Test Node', - ]); - $this->drupalGet('quickedit/image/info/node/' . $node->id() . '/' . $this->fieldName . '/' . $node->language()->getId() . '/default'); - $this->assertSession()->statusCodeEquals(403); - - /** @var \Symfony\Component\BrowserKit\Client $client */ - $client = $this->getSession()->getDriver()->getClient(); - $client->request('POST', '/quickedit/image/upload/node/' . $node->id() . '/' . $this->fieldName . '/' . $node->language()->getId() . '/default'); - $this->assertEquals('403', $client->getResponse()->getStatusCode()); - } - - /** - * Tests that the field info route returns expected data. - */ - public function testFieldInfo() { - // Create a test Node. - $node = $this->drupalCreateNode([ - 'type' => 'article', - 'title' => 'Test Node', - ]); - $json = $this->drupalGet('quickedit/image/info/node/' . $node->id() . '/' . $this->fieldName . '/' . $node->language()->getId() . '/default', ['query' => ['_format' => 'json']]); - $info = Json::decode($json); - // Assert that the default settings for our field are respected by our JSON - // endpoint. - $this->assertTrue($info['alt_field']); - $this->assertFalse($info['title_field']); - } - - /** - * Tests that uploading a valid image works. - */ - public function testValidImageUpload() { - // Create a test Node. - $node = $this->drupalCreateNode([ - 'type' => 'article', - 'title' => 'Test Node', - ]); - - // We want a test image that is a valid size. - $valid_image = FALSE; - $image_factory = $this->container->get('image.factory'); - foreach ($this->drupalGetTestFiles('image') as $image) { - $image_file = $image_factory->get($image->uri); - if ($image_file->getWidth() > 50 && $image_file->getWidth() < 100) { - $valid_image = $image; - break; - } - } - $this->assertNotFalse($valid_image); - - $this->drupalLogin($this->contentAuthorUser); - $this->uploadImage($valid_image, $node->id(), $this->fieldName, $node->language()->getId()); - $this->assertStringContainsString('"fid":"1"', $this->getSession()->getPage()->getContent(), 'Valid upload completed successfully.'); - } - - /** - * Tests that uploading an invalid image does not work. - */ - public function testInvalidUpload() { - // Create a test Node. - $node = $this->drupalCreateNode([ - 'type' => 'article', - 'title' => 'Test Node', - ]); - - // We want a test image that will fail validation. - $invalid_image = FALSE; - /** @var \Drupal\Core\Image\ImageFactory $image_factory */ - $image_factory = $this->container->get('image.factory'); - foreach ($this->drupalGetTestFiles('image') as $image) { - /** @var \Drupal\Core\Image\ImageInterface $image_file */ - $image_file = $image_factory->get($image->uri); - if ($image_file->getWidth() < 50 || $image_file->getWidth() > 100) { - $invalid_image = $image; - break; - } - } - $this->assertNotFalse($invalid_image); - - $this->drupalLogin($this->contentAuthorUser); - $this->uploadImage($invalid_image, $node->id(), $this->fieldName, $node->language()->getId()); - $this->assertStringContainsString('"main_error":"The image failed validation."', $this->getSession()->getPage()->getContent(), 'Invalid upload returned errors.'); - } - - /** - * Uploads an image using the image module's Quick Edit route. - * - * @param object $image - * The image to upload. - * @param int $nid - * The target node ID. - * @param string $field_name - * The target field machine name. - * @param string $langcode - * The langcode to use when setting the field's value. - */ - public function uploadImage($image, $nid, $field_name, $langcode) { - $filepath = $this->container->get('file_system')->realpath($image->uri); - $path = 'quickedit/image/upload/node/' . $nid . '/' . $field_name . '/' . $langcode . '/default'; - - $this->prepareRequest(); - $client = $this->getSession()->getDriver()->getClient(); - $client->request('POST', $this->buildUrl($path, []), [], ['files[image]' => $filepath]); - } - -} diff --git a/core/modules/quickedit/tests/src/Functional/QuickEditMinimalTest.php b/core/modules/quickedit/tests/src/Functional/QuickEditMinimalTest.php deleted file mode 100644 index 0b9557835f829984241705eae08918833ea875ab..0000000000000000000000000000000000000000 --- a/core/modules/quickedit/tests/src/Functional/QuickEditMinimalTest.php +++ /dev/null @@ -1,46 +0,0 @@ -<?php - -namespace Drupal\Tests\quickedit\Functional; - -use Drupal\Tests\BrowserTestBase; - -/** - * Tests Quick Edit can be installed with Minimal. - * - * @group quickedit - * @group legacy - */ -class QuickEditMinimalTest extends BrowserTestBase { - - /** - * {@inheritdoc} - */ - protected $profile = 'minimal'; - - /** - * {@inheritdoc} - */ - protected static $modules = [ - 'quickedit', - 'quickedit_test', - ]; - - /** - * {@inheritdoc} - */ - protected $defaultTheme = 'stark'; - - /** - * Tests that Quick Edit works with no admin theme. - * - * @see \quickedit_library_info_alter() - */ - public function testSuccessfulInstall() { - $editor_user = $this->drupalCreateUser([ - 'access in-place editing', - ]); - $this->drupalLogin($editor_user); - $this->assertSame('', $this->config('system.theme')->get('admin'), 'There is no admin theme set on the site.'); - } - -} diff --git a/core/modules/quickedit/tests/src/Functional/Rest/QuickEditLayoutBuilderEntityViewDisplayJsonAnonTest.php b/core/modules/quickedit/tests/src/Functional/Rest/QuickEditLayoutBuilderEntityViewDisplayJsonAnonTest.php deleted file mode 100644 index 5dedd754f55b57aeb186c6701fdce2dc225c949d..0000000000000000000000000000000000000000 --- a/core/modules/quickedit/tests/src/Functional/Rest/QuickEditLayoutBuilderEntityViewDisplayJsonAnonTest.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Drupal\Tests\quickedit\Functional\Rest; - -use Drupal\Tests\layout_builder\Functional\Rest\LayoutBuilderEntityViewDisplayJsonAnonTest; - -/** - * @group quickedit - * @group layout_builder - * @group rest - * @group legacy - */ -class QuickEditLayoutBuilderEntityViewDisplayJsonAnonTest extends LayoutBuilderEntityViewDisplayJsonAnonTest { - - /** - * {@inheritdoc} - */ - protected static $modules = ['quickedit']; - -} diff --git a/core/modules/quickedit/tests/src/Functional/Rest/QuickEditLayoutBuilderEntityViewDisplayJsonBasicAuthTest.php b/core/modules/quickedit/tests/src/Functional/Rest/QuickEditLayoutBuilderEntityViewDisplayJsonBasicAuthTest.php deleted file mode 100644 index dfda667c89521a545b7f11293c21bccbe720d3a0..0000000000000000000000000000000000000000 --- a/core/modules/quickedit/tests/src/Functional/Rest/QuickEditLayoutBuilderEntityViewDisplayJsonBasicAuthTest.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Drupal\Tests\quickedit\Functional\Rest; - -use Drupal\Tests\layout_builder\Functional\Rest\LayoutBuilderEntityViewDisplayJsonBasicAuthTest; - -/** - * @group quickedit - * @group layout_builder - * @group rest - * @group legacy - */ -class QuickEditLayoutBuilderEntityViewDisplayJsonBasicAuthTest extends LayoutBuilderEntityViewDisplayJsonBasicAuthTest { - - /** - * {@inheritdoc} - */ - protected static $modules = ['quickedit']; - -} diff --git a/core/modules/quickedit/tests/src/Functional/Rest/QuickEditLayoutBuilderEntityViewDisplayJsonCookieTest.php b/core/modules/quickedit/tests/src/Functional/Rest/QuickEditLayoutBuilderEntityViewDisplayJsonCookieTest.php deleted file mode 100644 index 7e625384293e15dd79ae8b89d184c3f572f71081..0000000000000000000000000000000000000000 --- a/core/modules/quickedit/tests/src/Functional/Rest/QuickEditLayoutBuilderEntityViewDisplayJsonCookieTest.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Drupal\Tests\quickedit\Functional\Rest; - -use Drupal\Tests\layout_builder\Functional\Rest\LayoutBuilderEntityViewDisplayJsonCookieTest; - -/** - * @group quickedit - * @group layout_builder - * @group rest - * @group legacy - */ -class QuickEditLayoutBuilderEntityViewDisplayJsonCookieTest extends LayoutBuilderEntityViewDisplayJsonCookieTest { - - /** - * {@inheritdoc} - */ - protected static $modules = ['quickedit']; - -} diff --git a/core/modules/quickedit/tests/src/Functional/Rest/QuickEditLayoutBuilderEntityViewDisplayXmlAnonTest.php b/core/modules/quickedit/tests/src/Functional/Rest/QuickEditLayoutBuilderEntityViewDisplayXmlAnonTest.php deleted file mode 100644 index b192703fa7c5d2e199c437a634b181e7535f32d2..0000000000000000000000000000000000000000 --- a/core/modules/quickedit/tests/src/Functional/Rest/QuickEditLayoutBuilderEntityViewDisplayXmlAnonTest.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Drupal\Tests\quickedit\Functional\Rest; - -use Drupal\Tests\layout_builder\Functional\Rest\LayoutBuilderEntityViewDisplayXmlAnonTest; - -/** - * @group quickedit - * @group layout_builder - * @group rest - * @group legacy - */ -class QuickEditLayoutBuilderEntityViewDisplayXmlAnonTest extends LayoutBuilderEntityViewDisplayXmlAnonTest { - - /** - * {@inheritdoc} - */ - protected static $modules = ['quickedit']; - -} diff --git a/core/modules/quickedit/tests/src/Functional/Rest/QuickEditLayoutBuilderEntityViewDisplayXmlBasicAuthTest.php b/core/modules/quickedit/tests/src/Functional/Rest/QuickEditLayoutBuilderEntityViewDisplayXmlBasicAuthTest.php deleted file mode 100644 index f90c32f896f74f983868adbd541d660fd3489b1b..0000000000000000000000000000000000000000 --- a/core/modules/quickedit/tests/src/Functional/Rest/QuickEditLayoutBuilderEntityViewDisplayXmlBasicAuthTest.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Drupal\Tests\quickedit\Functional\Rest; - -use Drupal\Tests\layout_builder\Functional\Rest\LayoutBuilderEntityViewDisplayXmlBasicAuthTest; - -/** - * @group quickedit - * @group layout_builder - * @group rest - * @group legacy - */ -class QuickEditLayoutBuilderEntityViewDisplayXmlBasicAuthTest extends LayoutBuilderEntityViewDisplayXmlBasicAuthTest { - - /** - * {@inheritdoc} - */ - protected static $modules = ['quickedit']; - -} diff --git a/core/modules/quickedit/tests/src/Functional/Rest/QuickEditLayoutBuilderEntityViewDisplayXmlCookieTest.php b/core/modules/quickedit/tests/src/Functional/Rest/QuickEditLayoutBuilderEntityViewDisplayXmlCookieTest.php deleted file mode 100644 index ea08d6364e1ec2f111607302b5aecc2e6183d328..0000000000000000000000000000000000000000 --- a/core/modules/quickedit/tests/src/Functional/Rest/QuickEditLayoutBuilderEntityViewDisplayXmlCookieTest.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -namespace Drupal\Tests\quickedit\Functional\Rest; - -use Drupal\Tests\layout_builder\Functional\Rest\LayoutBuilderEntityViewDisplayXmlCookieTest; - -/** - * @group quickedit - * @group layout_builder - * @group rest - * @group legacy - */ -class QuickEditLayoutBuilderEntityViewDisplayXmlCookieTest extends LayoutBuilderEntityViewDisplayXmlCookieTest { - - /** - * {@inheritdoc} - */ - protected static $modules = ['quickedit']; - -} diff --git a/core/modules/quickedit/tests/src/FunctionalJavascript/CKEditor5IntegrationTest.php b/core/modules/quickedit/tests/src/FunctionalJavascript/CKEditor5IntegrationTest.php deleted file mode 100644 index 01f79149449a5630a8525674fb3be1eaf8050116..0000000000000000000000000000000000000000 --- a/core/modules/quickedit/tests/src/FunctionalJavascript/CKEditor5IntegrationTest.php +++ /dev/null @@ -1,285 +0,0 @@ -<?php - -namespace Drupal\Tests\quickedit\FunctionalJavascript; - -use Drupal\ckeditor5\Plugin\Editor\CKEditor5; -use Drupal\editor\Entity\Editor; -use Drupal\filter\Entity\FilterFormat; -use Drupal\Tests\field\Traits\EntityReferenceTestTrait; -use Symfony\Component\Validator\ConstraintViolation; - -/** - * Tests that Quick Edit can load CKEditor 5. - * - * @group quickedit - * @group legacy - * @internal - */ -class CKEditor5IntegrationTest extends QuickEditJavascriptTestBase { - - use EntityReferenceTestTrait; - - /** - * {@inheritdoc} - */ - protected static $modules = [ - 'node', - 'editor', - 'ckeditor5', - 'hold_test', - ]; - - /** - * {@inheritdoc} - */ - protected $defaultTheme = 'stark'; - - /** - * A user with permissions to edit Articles and use Quick Edit. - * - * @var \Drupal\user\UserInterface - */ - protected $contentAuthorUser; - - /** - * {@inheritdoc} - */ - protected function setUp(): void { - parent::setUp(); - // Create text format, associate CKEditor 5, validate. - FilterFormat::create([ - 'format' => 'some_format', - 'name' => 'Some format', - 'filters' => [ - 'filter_html' => [ - 'status' => TRUE, - 'settings' => [ - 'allowed_html' => '<p> <br> <h2> <h3> <h4> <h5> <h6> <strong> <em>', - ], - ], - ], - ])->save(); - Editor::create([ - 'format' => 'some_format', - 'editor' => 'ckeditor5', - 'settings' => [ - 'toolbar' => [ - 'items' => ['heading', 'bold', 'italic'], - ], - 'plugins' => [ - 'ckeditor5_heading' => [ - 'enabled_headings' => [ - 'heading2', - 'heading3', - 'heading4', - 'heading5', - 'heading6', - ], - ], - ], - ], - 'image_upload' => [ - 'status' => FALSE, - ], - ])->save(); - $this->assertSame([], array_map( - function (ConstraintViolation $v) { - return (string) $v->getMessage(); - }, - iterator_to_array(CKEditor5::validatePair( - Editor::load('some_format'), - FilterFormat::load('some_format') - )) - )); - - // Create the Article node type. - $this->drupalCreateContentType(['type' => 'article', 'name' => 'Article']); - - // Log in as a content author who can use Quick Edit and edit Articles. - $this->contentAuthorUser = $this->drupalCreateUser([ - 'access contextual links', - 'access toolbar', - 'access in-place editing', - 'access content', - 'create article content', - 'edit any article content', - 'use text format some_format', - ]); - $this->drupalLogin($this->contentAuthorUser); - } - - /** - * Tests that changes can be discarded. - */ - public function testDiscard() { - $page = $this->getSession()->getPage(); - $node = $this->drupalCreateNode([ - 'type' => 'article', - 'title' => t('My Test Node'), - 'body' => [ - 'value' => '<p>Hello world!</p><p>I do not know what to say…</p><p>I wish I were eloquent.</p>', - 'format' => 'some_format', - ], - ]); - - $this->drupalGet('node/' . $node->id()); - - // Initial state. - $this->awaitQuickEditForEntity('node', 1); - $this->assertEntityInstanceStates([ - 'node/1[0]' => 'closed', - ]); - $this->assertEntityInstanceFieldStates('node', 1, 0, [ - 'node/1/title/en/full' => 'inactive', - 'node/1/body/en/full' => 'inactive', - ]); - - // Start in-place editing of the article node. - $this->startQuickEditViaToolbar('node', 1, 0); - $this->assertEntityInstanceStates([ - 'node/1[0]' => 'opened', - ]); - $this->assertQuickEditEntityToolbar((string) $node->label(), NULL); - $this->assertEntityInstanceFieldStates('node', 1, 0, [ - 'node/1/title/en/full' => 'candidate', - 'node/1/body/en/full' => 'candidate', - ]); - - $assert_session = $this->assertSession(); - - // Click the body field. - hold_test_response(TRUE); - $this->click('[data-quickedit-field-id="node/1/body/en/full"]'); - $assert_session->waitForElement('css', '.quickedit-toolbar-field div[id*="body"]'); - $this->assertQuickEditEntityToolbar((string) $node->label(), 'Body'); - $this->assertEntityInstanceFieldStates('node', 1, 0, [ - 'node/1/title/en/full' => 'candidate', - 'node/1/body/en/full' => 'active', - ]); - hold_test_response(FALSE); - - $this->assertEntityInstanceFieldMarkup([ - 'node/1/body/en/full' => '.ck-editor__editable_inline', - ]); - $this->assertSession() - ->elementExists('css', '#quickedit-entity-toolbar .quickedit-toolgroup.wysiwyg-main .ck-toolbar[role="toolbar"] .ck-toolbar__items > .ck-button[type="button"]'); - - // Click the body field. - $this->click('[data-quickedit-field-id="node/1/body/en/full"]'); - $assert_session->waitForElement('css', '.quickedit-toolbar-field div[id*="body"]'); - $this->typeInPlainTextEditor('[data-quickedit-field-id="node/1/body/en/full"]', ' I am not wanted here'); - $assert_session->waitForElement('css', '.quickedit-toolbar-field div[id*="body"].quickedit-changed'); - $this->assertEntityInstanceFieldStates('node', 1, 0, [ - 'node/1/title/en/full' => 'candidate', - 'node/1/body/en/full' => 'changed', - ]); - - $assert_session->pageTextContains('I am not wanted here'); - - // Click the 'Cancel' button. - $page->find('css', '.action-cancel.quickedit-button')->press(); - hold_test_response(TRUE); - - // Click the 'Discard Changes' button. - $discard_changes_button = $page->findAll('css', '.ui-dialog-buttonset .button')[1]; - $this->assertEquals('Discard changes', $discard_changes_button->getText()); - $discard_changes_button->press(); - - $assert_session->pageTextNotContains('I am not wanted here'); - hold_test_response(FALSE); - } - - /** - * Tests if an article node can be in-place edited with Quick Edit. - */ - public function testArticleNode() { - $assert_session = $this->assertSession(); - - $node = $this->drupalCreateNode([ - 'type' => 'article', - 'title' => t('My Test Node'), - 'body' => [ - 'value' => '<p>Hello world!</p><p>I do not know what to say…</p><p>I wish I were eloquent.</p>', - 'format' => 'some_format', - ], - ]); - - $this->drupalGet('node/' . $node->id()); - - // Initial state. - $this->awaitQuickEditForEntity('node', 1); - $this->assertEntityInstanceStates([ - 'node/1[0]' => 'closed', - ]); - $this->assertEntityInstanceFieldStates('node', 1, 0, [ - 'node/1/title/en/full' => 'inactive', - 'node/1/body/en/full' => 'inactive', - ]); - - // Start in-place editing of the article node. - $this->startQuickEditViaToolbar('node', 1, 0); - $this->assertEntityInstanceStates([ - 'node/1[0]' => 'opened', - ]); - $this->assertQuickEditEntityToolbar((string) $node->label(), NULL); - $this->assertEntityInstanceFieldStates('node', 1, 0, [ - 'node/1/title/en/full' => 'candidate', - 'node/1/body/en/full' => 'candidate', - ]); - - // Click the body field. - hold_test_response(TRUE); - $this->click('[data-quickedit-field-id="node/1/body/en/full"]'); - $assert_session->waitForElement('css', '.quickedit-toolbar-field div[id*="body"]'); - $this->assertQuickEditEntityToolbar((string) $node->label(), 'Body'); - $this->assertEntityInstanceFieldStates('node', 1, 0, [ - 'node/1/title/en/full' => 'candidate', - 'node/1/body/en/full' => 'active', - ]); - hold_test_response(FALSE); - - $this->assertEntityInstanceFieldMarkup([ - 'node/1/body/en/full' => '.ck-editor__editable_inline', - ]); - $this->assertSession() - ->elementExists('css', '#quickedit-entity-toolbar .quickedit-toolgroup.wysiwyg-main .ck-toolbar[role="toolbar"] .ck-toolbar__items > .ck-button[type="button"]'); - - // Click the body field. - $this->click('[data-quickedit-field-id="node/1/body/en/full"]'); - $assert_session->waitForElement('css', '.quickedit-toolbar-field div[id*="body"]'); - $this->typeInPlainTextEditor('[data-quickedit-field-id="node/1/body/en/full"]', ' Added text with CKEditor 5'); - $assert_session->waitForElement('css', '.quickedit-toolbar-field div[id*="body"].quickedit-changed'); - $this->assertEntityInstanceFieldStates('node', 1, 0, [ - 'node/1/title/en/full' => 'candidate', - 'node/1/body/en/full' => 'changed', - ]); - - // Click 'Save'. - hold_test_response(TRUE); - $this->saveQuickEdit(); - $this->assertEntityInstanceStates([ - 'node/1[0]' => 'committing', - ]); - - $this->assertEntityInstanceFieldStates('node', 1, 0, [ - 'node/1/title/en/full' => 'candidate', - 'node/1/body/en/full' => 'saving', - ]); - - $this->assertEntityInstanceFieldMarkup([ - 'node/1/body/en/full' => '.quickedit-changed', - ]); - hold_test_response(FALSE); - - $this->assertJsCondition("Drupal.quickedit.collections.entities.get('node/1[0]').get('state') === 'closed'"); - $this->assertEntityInstanceStates([ - 'node/1[0]' => 'closed', - ]); - - // Get the load again and ensure the values are the expected values. - $this->drupalGet('node/' . $node->id()); - $this->assertSession()->pageTextContains('I wish I were eloquent.'); - $this->assertSession()->pageTextContains('Added text with CKEditor 5'); - } - -} diff --git a/core/modules/quickedit/tests/src/FunctionalJavascript/FieldTest.php b/core/modules/quickedit/tests/src/FunctionalJavascript/FieldTest.php deleted file mode 100644 index 557133adb177dc9961a597ea05f66e10fda1785f..0000000000000000000000000000000000000000 --- a/core/modules/quickedit/tests/src/FunctionalJavascript/FieldTest.php +++ /dev/null @@ -1,106 +0,0 @@ -<?php - -namespace Drupal\Tests\quickedit\FunctionalJavascript; - -use Drupal\editor\Entity\Editor; -use Drupal\filter\Entity\FilterFormat; -use Drupal\FunctionalJavascriptTests\WebDriverTestBase; -use Drupal\node\Entity\Node; -use Drupal\node\Entity\NodeType; -use Drupal\Tests\contextual\FunctionalJavascript\ContextualLinkClickTrait; - -/** - * Tests quickedit. - * - * @group quickedit - * @group legacy - */ -class FieldTest extends WebDriverTestBase { - - use ContextualLinkClickTrait; - - /** - * {@inheritdoc} - */ - protected static $modules = [ - 'node', - 'ckeditor', - 'contextual', - 'quickedit', - ]; - - /** - * {@inheritdoc} - */ - protected $defaultTheme = 'stark'; - - /** - * {@inheritdoc} - */ - protected function setUp(): void { - parent::setUp(); - - // Create a text format and associate CKEditor. - $filtered_html_format = FilterFormat::create([ - 'format' => 'filtered_html', - 'name' => 'Filtered HTML', - 'weight' => 0, - ]); - $filtered_html_format->save(); - - Editor::create([ - 'format' => 'filtered_html', - 'editor' => 'ckeditor', - ])->save(); - - // Create note type with body field. - $node_type = NodeType::create(['type' => 'page', 'name' => 'Page']); - $node_type->save(); - node_add_body_field($node_type); - - $account = $this->drupalCreateUser([ - 'access content', - 'administer nodes', - 'edit any page content', - 'use text format filtered_html', - 'access contextual links', - 'access in-place editing', - ]); - $this->drupalLogin($account); - - } - - /** - * Tests that quickeditor works correctly for field with CKEditor. - */ - public function testFieldWithCkeditor() { - $body_value = '<p>Dare to be wise</p>'; - $node = Node::create([ - 'type' => 'page', - 'title' => 'Page node', - 'body' => [['value' => $body_value, 'format' => 'filtered_html']], - ]); - $node->save(); - - $page = $this->getSession()->getPage(); - $assert = $this->assertSession(); - - $this->drupalGet('node/' . $node->id()); - - // Wait "Quick edit" button for node. - $this->assertSession()->waitForElement('css', '[data-quickedit-entity-id="node/' . $node->id() . '"] .contextual .quickedit'); - // Click by "Quick edit". - $this->clickContextualLink('[data-quickedit-entity-id="node/' . $node->id() . '"]', 'Quick edit'); - // Switch to body field. - $page->find('css', '[data-quickedit-field-id="node/' . $node->id() . '/body/en/full"]')->click(); - // Wait and click by "Blockquote" button from editor for body field. - $this->assertSession()->waitForElementVisible('css', '.cke_button.cke_button__blockquote')->click(); - // Wait and click by "Save" button after body field was changed. - $this->assertSession()->waitForElementVisible('css', '.quickedit-toolgroup.ops [type="submit"][aria-hidden="false"]')->click(); - // Wait until the save occurs and the editor UI disappears. - $this->assertSession()->assertNoElementAfterWait('css', '.cke_button.cke_button__blockquote'); - // Ensure that the changes take effect. - $assert->responseMatches("|<blockquote>\s*$body_value\s*</blockquote>|"); - } - -} diff --git a/core/modules/quickedit/tests/src/FunctionalJavascript/InlineFormErrorsIntegrationTest.php b/core/modules/quickedit/tests/src/FunctionalJavascript/InlineFormErrorsIntegrationTest.php deleted file mode 100644 index 2a7dae3abc35da474610af6cbf613087b410efcb..0000000000000000000000000000000000000000 --- a/core/modules/quickedit/tests/src/FunctionalJavascript/InlineFormErrorsIntegrationTest.php +++ /dev/null @@ -1,98 +0,0 @@ -<?php - -namespace Drupal\Tests\quickedit\FunctionalJavascript; - -use Drupal\FunctionalJavascriptTests\WebDriverTestBase; -use Drupal\node\Entity\NodeType; - -/** - * Tests Inline Form Errors compatibility with Quick Edit. - * - * @group quickedit - * @group legacy - */ -class InlineFormErrorsIntegrationTest extends WebDriverTestBase { - - /** - * Modules to enable. - * - * @var array - */ - protected static $modules = [ - 'quickedit', - 'node', - 'inline_form_errors', - ]; - - /** - * {@inheritdoc} - */ - protected $defaultTheme = 'classy'; - - /** - * An editor user with permissions to access the in-place editor. - * - * @var \Drupal\user\UserInterface - */ - protected $editorUser; - - /** - * {@inheritdoc} - */ - protected function setUp(): void { - parent::setUp(); - - // Create a page node type for testing. - NodeType::create(['type' => 'page', 'name' => 'page'])->save(); - - // Create a user with the permission to use in-place editing. - $permissions = [ - 'access content', - 'create page content', - 'edit any page content', - 'access contextual links', - 'access in-place editing', - ]; - $this->editorUser = $this->drupalCreateUser($permissions); - $this->drupalLogin($this->editorUser); - } - - /** - * Tests that the inline form errors are not visible for Quick Edit forms. - */ - public function testDisabledInlineFormErrors() { - $session = $this->getSession(); - $web_assert = $this->assertSession(); - - // Create a page node. - $node = $this->drupalCreateNode(); - - // Visit the node page. - $this->drupalGet('node/' . $node->id()); - - // Wait until the quick edit link is available. - $web_assert->waitForElement('css', '.quickedit > a'); - - // Activate the quick editing mode. - $session->executeScript("jQuery('article.node').find('.quickedit > a').click()"); - - $web_assert->waitForElement('css', '.quickedit-toolbar'); - - // Clear the title field. Trigger a 'keyup' to be able to save the changes. - $session->executeScript("jQuery('.field--name-title').text('').trigger('keyup')"); - - // Try to save the changes. - $save_button = $web_assert->waitForElement('css', '.action-save.quickedit-button'); - $save_button->click(); - - // Wait until the form submission is complete. - $web_assert->assertWaitOnAjaxRequest(); - - // Assert that no error summary from Inline Form Errors is shown. - $web_assert->elementTextNotContains('css', '.quickedit-validation-errors', '1 error has been found'); - - // Assert that the required title error is shown. - $web_assert->elementTextContains('css', '.quickedit-validation-errors', 'Title field is required.'); - } - -} diff --git a/core/modules/quickedit/tests/src/FunctionalJavascript/LayoutBuilderIntegrationTest.php b/core/modules/quickedit/tests/src/FunctionalJavascript/LayoutBuilderIntegrationTest.php deleted file mode 100644 index 35c3499ed4f19dfd73a76056287ee8f73c0baed8..0000000000000000000000000000000000000000 --- a/core/modules/quickedit/tests/src/FunctionalJavascript/LayoutBuilderIntegrationTest.php +++ /dev/null @@ -1,362 +0,0 @@ -<?php - -namespace Drupal\Tests\quickedit\FunctionalJavascript; - -use Drupal\block_content\Entity\BlockContent; -use Drupal\block_content\Entity\BlockContentType; -use Drupal\Core\Field\FieldStorageDefinitionInterface; -use Drupal\editor\Entity\Editor; -use Drupal\filter\Entity\FilterFormat; -use Drupal\taxonomy\Entity\Term; -use Drupal\taxonomy\Entity\Vocabulary; -use Drupal\Tests\field\Traits\EntityReferenceTestTrait; - -/** - * @group quickedit - * @group legacy - */ -class LayoutBuilderIntegrationTest extends QuickEditJavascriptTestBase { - - use EntityReferenceTestTrait; - - /** - * {@inheritdoc} - */ - protected static $modules = [ - 'node', - 'editor', - 'ckeditor', - 'taxonomy', - 'block', - 'block_content', - 'hold_test', - ]; - - /** - * {@inheritdoc} - */ - protected $defaultTheme = 'classy'; - - /** - * A user with permissions to edit Articles and use Quick Edit. - * - * @var \Drupal\user\UserInterface - */ - protected $contentAuthorUser; - - /** - * {@inheritdoc} - */ - protected function setUp(): void { - parent::setUp(); - // Create text format, associate CKEditor. - FilterFormat::create([ - 'format' => 'some_format', - 'name' => 'Some format', - 'weight' => 0, - 'filters' => [ - 'filter_html' => [ - 'status' => 1, - 'settings' => [ - 'allowed_html' => '<h2 id> <h3> <h4> <h5> <h6> <p> <br> <strong> <a href hreflang>', - ], - ], - ], - ])->save(); - Editor::create([ - 'format' => 'some_format', - 'editor' => 'ckeditor', - ])->save(); - - // Create the Article node type. - $this->drupalCreateContentType(['type' => 'article', 'name' => 'Article']); - - // Add "tags" vocabulary + field to the Article node type. - $vocabulary = Vocabulary::create([ - 'name' => 'Tags', - 'vid' => 'tags', - ]); - $vocabulary->save(); - $field_name = 'field_' . $vocabulary->id(); - $handler_settings = [ - 'target_bundles' => [ - $vocabulary->id() => $vocabulary->id(), - ], - 'auto_create' => TRUE, - ]; - $this->createEntityReferenceField('node', 'article', $field_name, 'Tags', 'taxonomy_term', 'default', $handler_settings, FieldStorageDefinitionInterface::CARDINALITY_UNLIMITED); - - // Add formatter & widget for "tags" field. - \Drupal::entityTypeManager() - ->getStorage('entity_form_display') - ->load('node.article.default') - ->setComponent($field_name, ['type' => 'entity_reference_autocomplete_tags']) - ->save(); - \Drupal::entityTypeManager() - ->getStorage('entity_view_display') - ->load('node.article.default') - ->setComponent($field_name, ['type' => 'entity_reference_label']) - ->save(); - - $this->drupalPlaceBlock('page_title_block'); - $this->drupalPlaceBlock('system_main_block'); - - // Log in as a content author who can use Quick Edit and edit Articles. - $this->contentAuthorUser = $this->drupalCreateUser([ - 'access contextual links', - 'access toolbar', - 'access in-place editing', - 'access content', - 'create article content', - 'edit any article content', - 'use text format some_format', - 'edit terms in tags', - 'administer blocks', - ]); - $this->drupalLogin($this->contentAuthorUser); - } - - /** - * Tests if an article node can be in-place edited with Quick Edit. - */ - public function testArticleNode() { - $term = Term::create([ - 'name' => 'foo', - 'vid' => 'tags', - ]); - $term->save(); - - $node = $this->drupalCreateNode([ - 'type' => 'article', - 'title' => 'My Test Node', - 'body' => [ - 'value' => '<p>Hello world!</p><p>I do not know what to say…</p><p>I wish I were eloquent.</p>', - 'format' => 'some_format', - ], - 'field_tags' => [ - ['target_id' => $term->id()], - ], - ]); - - // Move "tags" field to the top of all fields, so its Quick Edit Toolbar - // won't overlap any Quick Edit-able fields, which causes (semi-)random test - // failures. - \Drupal::entityTypeManager() - ->getStorage('entity_view_display') - ->load('node.article.default') - ->setComponent('field_tags', [ - 'type' => 'entity_reference_label', - 'weight' => 0, - ])->save(); - - $this->drupalGet('node/' . $node->id()); - - // Initial state. - $this->awaitQuickEditForEntity('node', 1); - $this->assertEntityInstanceStates([ - 'node/1[0]' => 'closed', - ]); - $this->assertEntityInstanceFieldStates('node', 1, 0, [ - 'node/1/title/en/full' => 'inactive', - 'node/1/body/en/full' => 'inactive', - 'node/1/field_tags/en/full' => 'inactive', - ]); - - // Start in-place editing of the article node. - $this->startQuickEditViaToolbar('node', 1, 0); - $this->assertEntityInstanceStates([ - 'node/1[0]' => 'opened', - ]); - $this->assertQuickEditEntityToolbar((string) $node->label(), NULL); - $this->assertEntityInstanceFieldStates('node', 1, 0, [ - 'node/1/title/en/full' => 'candidate', - 'node/1/body/en/full' => 'candidate', - 'node/1/field_tags/en/full' => 'candidate', - ]); - - $assert_session = $this->assertSession(); - - // Click the title field. - $this->click('[data-quickedit-field-id="node/1/title/en/full"].quickedit-candidate'); - $assert_session->waitForElement('css', '.quickedit-toolbar-field div[id*="title"]'); - $this->assertQuickEditEntityToolbar((string) $node->label(), 'Title'); - $this->assertEntityInstanceFieldStates('node', 1, 0, [ - 'node/1/title/en/full' => 'active', - 'node/1/body/en/full' => 'candidate', - 'node/1/field_tags/en/full' => 'candidate', - ]); - $this->assertEntityInstanceFieldMarkup([ - 'node/1/title/en/full' => '[contenteditable="true"]', - ]); - - // Append something to the title. - $this->typeInPlainTextEditor('[data-quickedit-field-id="node/1/title/en/full"].quickedit-candidate', ' Llamas are awesome!'); - $this->awaitEntityInstanceFieldState('node', 1, 0, 'title', 'en', 'changed'); - $this->assertEntityInstanceFieldStates('node', 1, 0, [ - 'node/1/title/en/full' => 'changed', - 'node/1/body/en/full' => 'candidate', - 'node/1/field_tags/en/full' => 'candidate', - ]); - - // Click the body field. - hold_test_response(TRUE); - $this->click('[data-quickedit-entity-id="node/1"] .field--name-body'); - $assert_session->waitForElement('css', '.quickedit-toolbar-field div[id*="body"]'); - $this->assertQuickEditEntityToolbar((string) $node->label(), 'Body'); - $this->assertEntityInstanceFieldStates('node', 1, 0, [ - 'node/1/title/en/full' => 'saving', - 'node/1/body/en/full' => 'active', - 'node/1/field_tags/en/full' => 'candidate', - ]); - hold_test_response(FALSE); - - $this->assertEntityInstanceFieldMarkup([ - 'node/1/body/en/full' => '.cke_editable_inline', - 'node/1/field_tags/en/full' => ':not(.quickedit-editor-is-popup)', - ]); - $this->assertSession()->elementExists('css', '#quickedit-entity-toolbar .quickedit-toolgroup.wysiwyg-main > .cke_chrome .cke_top[role="presentation"] .cke_toolbar[role="toolbar"] .cke_toolgroup[role="presentation"] > .cke_button[title~="Bold"][role="button"]'); - - // Wait for the validating & saving of the title to complete. - $this->awaitEntityInstanceFieldState('node', 1, 0, 'title', 'en', 'candidate'); - - // Click the tags field. - hold_test_response(TRUE); - $this->click('[data-quickedit-field-id="node/1/field_tags/en/full"]'); - $assert_session->waitForElement('css', '.quickedit-toolbar-field div[id*="tags"]'); - $this->assertQuickEditEntityToolbar((string) $node->label(), 'Tags'); - $this->assertEntityInstanceFieldStates('node', 1, 0, [ - 'node/1/body/en/full' => 'candidate', - 'node/1/field_tags/en/full' => 'activating', - 'node/1/title/en/full' => 'candidate', - ]); - $this->assertEntityInstanceFieldMarkup([ - 'node/1/title/en/full' => '.quickedit-changed', - 'node/1/field_tags/en/full' => '.quickedit-editor-is-popup', - ]); - // Assert the "Loading…" popup appears. - $this->assertSession()->elementExists('css', '.quickedit-form-container > .quickedit-form[role="dialog"] > .placeholder'); - hold_test_response(FALSE); - // Wait for the form to load. - $this->assertJsCondition('document.querySelector(\'.quickedit-form-container > .quickedit-form[role="dialog"] > .placeholder\') === null'); - $this->assertEntityInstanceFieldStates('node', 1, 0, [ - 'node/1/body/en/full' => 'candidate', - 'node/1/field_tags/en/full' => 'active', - 'node/1/title/en/full' => 'candidate', - ]); - - // Enter an additional tag. - $this->typeInFormEditorTextInputField('field_tags[target_id]', 'foo, bar'); - $this->awaitEntityInstanceFieldState('node', 1, 0, 'field_tags', 'en', 'changed'); - $this->assertEntityInstanceFieldStates('node', 1, 0, [ - 'node/1/body/en/full' => 'candidate', - 'node/1/field_tags/en/full' => 'changed', - 'node/1/title/en/full' => 'candidate', - ]); - - // Click 'Save'. - hold_test_response(TRUE); - $this->saveQuickEdit(); - $this->assertEntityInstanceStates([ - 'node/1[0]' => 'committing', - ]); - $this->assertEntityInstanceFieldStates('node', 1, 0, [ - 'node/1/body/en/full' => 'candidate', - 'node/1/field_tags/en/full' => 'saving', - 'node/1/title/en/full' => 'candidate', - ]); - $this->assertEntityInstanceFieldMarkup([ - 'node/1/title/en/full' => '.quickedit-changed', - 'node/1/field_tags/en/full' => '.quickedit-changed', - ]); - hold_test_response(FALSE); - - // Wait for the saving of the tags field to complete. - $this->assertJsCondition("Drupal.quickedit.collections.entities.get('node/1[0]').get('state') === 'closed'"); - $this->assertEntityInstanceStates([ - 'node/1[0]' => 'closed', - ]); - - // Get the load again and ensure the values are the expected values. - $this->drupalGet('node/' . $node->id()); - $this->assertSession()->pageTextContains(' Llamas are awesome!'); - $this->assertSession()->linkExists('foo'); - $this->assertSession()->linkExists('bar'); - } - - /** - * Tests if a custom can be in-place edited with Quick Edit. - */ - public function testCustomBlock() { - $block_content_type = BlockContentType::create([ - 'id' => 'basic', - 'label' => 'basic', - 'revision' => FALSE, - ]); - $block_content_type->save(); - block_content_add_body_field($block_content_type->id()); - - $block_content = BlockContent::create([ - 'info' => 'Llama', - 'type' => 'basic', - 'body' => [ - 'value' => 'The name "llama" was adopted by European settlers from native Peruvians.', - 'format' => 'some_format', - ], - ]); - $block_content->save(); - $this->drupalPlaceBlock('block_content:' . $block_content->uuid(), [ - 'label' => 'My custom block!', - ]); - - $this->drupalGet(''); - - // Initial state. - $this->awaitQuickEditForEntity('block_content', 1); - $this->assertEntityInstanceStates([ - 'block_content/1[0]' => 'closed', - ]); - - // Start in-place editing of the article node. - $this->startQuickEditViaToolbar('block_content', 1, 0); - $this->assertEntityInstanceStates([ - 'block_content/1[0]' => 'opened', - ]); - - // The label 'body' will only be shown when the pointer hovers over the - // body. This can't be guaranteed by "just" opening the block in QuickEdit. - // We explicitly move the pointer first over the page title and afterwards - // over the block body to be sure. - $this->movePointerTo('.page-title'); - $this->movePointerTo('[data-quickedit-field-id="block_content/1/body/en/full"]'); - $this->assertQuickEditEntityToolbar((string) $block_content->label(), 'Body'); - $this->assertEntityInstanceFieldStates('block_content', 1, 0, [ - 'block_content/1/body/en/full' => 'highlighted', - ]); - - // Click the body field. - $this->click('[data-quickedit-entity-id="block_content/1"] .field--name-body'); - $assert_session = $this->assertSession(); - $assert_session->waitForElement('css', '.quickedit-toolbar-field div[id*="body"]'); - $this->assertQuickEditEntityToolbar((string) $block_content->label(), 'Body'); - $this->assertEntityInstanceFieldStates('block_content', 1, 0, [ - 'block_content/1/body/en/full' => 'active', - ]); - $this->assertEntityInstanceFieldMarkup([ - 'block_content/1/body/en/full' => '.cke_editable_inline', - ]); - $this->assertSession()->elementExists('css', '#quickedit-entity-toolbar .quickedit-toolgroup.wysiwyg-main > .cke_chrome .cke_top[role="presentation"] .cke_toolbar[role="toolbar"] .cke_toolgroup[role="presentation"] > .cke_button[title~="Bold"][role="button"]'); - } - - /** - * Moves mouse pointer to location of $selector. - * - * @param string $selector - * CSS selector. - */ - protected function movePointerTo($selector) { - $driver_session = $this->getSession()->getDriver()->getWebDriverSession(); - $element = $driver_session->element('css selector', $selector); - $driver_session->moveto(['element' => $element->getID()]); - } - -} diff --git a/core/modules/quickedit/tests/src/FunctionalJavascript/LayoutBuilderQuickEditTest.php b/core/modules/quickedit/tests/src/FunctionalJavascript/LayoutBuilderQuickEditTest.php deleted file mode 100644 index 56cf74b69ac9270aa0e82846ad1468365ccf2a00..0000000000000000000000000000000000000000 --- a/core/modules/quickedit/tests/src/FunctionalJavascript/LayoutBuilderQuickEditTest.php +++ /dev/null @@ -1,374 +0,0 @@ -<?php - -namespace Drupal\Tests\quickedit\FunctionalJavascript; - -use Drupal\node\Entity\NodeType; -use Drupal\Tests\contextual\FunctionalJavascript\ContextualLinkClickTrait; -use Drupal\Tests\field\Traits\EntityReferenceTestTrait; - -/** - * Tests that Layout Builder functions with Quick Edit. - * - * @covers layout_builder_entity_view_alter() - * @covers layout_builder_quickedit_render_field() - * - * @group quickedit - * @group legacy - */ -class LayoutBuilderQuickEditTest extends QuickEditJavascriptTestBase { - - use EntityReferenceTestTrait; - use ContextualLinkClickTrait; - - /** - * {@inheritdoc} - */ - protected static $modules = [ - 'node', - 'layout_builder', - 'field_ui', - ]; - - /** - * {@inheritdoc} - */ - protected $defaultTheme = 'classy'; - - /** - * The article node under test. - * - * @var \Drupal\node\NodeInterface - */ - protected $article; - - /** - * A user with permissions to edit Articles and use Quick Edit. - * - * @var \Drupal\user\UserInterface - */ - protected $contentAuthorUser; - - /** - * Whether the test is currently using Layout Builder on the entity. - * - * Allows performing assertions with and without Layout Builder. - * - * @var bool - * - * @see ::assertEntityInstanceFieldStates() - * @see ::assertEntityInstanceFieldMarkup() - */ - protected $usingLayoutBuilder = FALSE; - - /** - * {@inheritdoc} - */ - protected function setUp(): void { - parent::setUp(); - - $this->drupalPlaceBlock('page_title_block'); - - // Create the Article node type. - $this->drupalCreateContentType(['type' => 'article', 'name' => 'Article']); - $this->article = $this->drupalCreateNode([ - 'type' => 'article', - 'title' => 'My Test Node', - 'body' => [ - 'value' => 'Hello Layout Builder!', - 'format' => 'plain_text', - ], - ]); - - // Log in as a content author who can use Quick Edit and edit Articles. - $this->contentAuthorUser = $this->drupalCreateUser([ - 'access contextual links', - 'access in-place editing', - 'access content', - 'edit any article content', - ]); - $this->drupalLogin($this->contentAuthorUser); - } - - /** - * Tests that Quick Edit still works even when there are duplicate fields. - * - * @see https://www.drupal.org/project/drupal/issues/3041850 - */ - public function testQuickEditIgnoresDuplicateFields() { - // Place the body field a second time using Layout Builder. - $this->enableLayouts('admin/structure/types/manage/article/display/default'); - $page = $this->getSession()->getPage(); - $assert_session = $this->assertSession(); - $this->loginLayoutAdmin(); - $this->drupalGet('admin/structure/types/manage/article/display/default/layout'); - $page->clickLink('Add block'); - $this->assertNotEmpty($assert_session->waitForElementVisible('css', '#drupal-off-canvas')); - $assert_session->waitForElementVisible('named', ['link', 'Body']); - $page->clickLink('Body'); - $assert_session->waitForElementVisible('named', ['button', 'Add block']); - $page->pressButton('Add block'); - $assert_session->waitForElementVisible('named', ['button', 'Save layout']); - $page->pressButton('Save layout'); - $this->assertNotEmpty($assert_session->waitForElement('css', '.messages--status')); - $assert_session->pageTextContains('The layout has been saved.'); - - $this->drupalLogin($this->contentAuthorUser); - $this->usingLayoutBuilder = TRUE; - $this->assertQuickEditInit(['title']); - $this->drupalLogin($this->drupalCreateUser([ - 'access contextual links', - 'access in-place editing', - 'access content', - 'edit any article content', - 'administer nodes', - ])); - $this->assertQuickEditInit(['title', 'uid', 'created']); - } - - /** - * Tests Quick Edit boots correctly with Layout Builder defaults & overrides. - * - * @param bool $use_revisions - * If revisions are used. - * @param bool $admin_permission - * Whether to grant admin permissions to the user created for the test. - * - * @dataProvider providerEnableDisableLayoutBuilder - */ - public function testEnableDisableLayoutBuilder($use_revisions, $admin_permission = FALSE) { - if (!$use_revisions) { - $content_type = NodeType::load('article'); - $content_type->setNewRevision(FALSE); - $content_type->save(); - } - $fields = [ - 'title', - 'body', - ]; - if ($admin_permission) { - $fields = array_merge($fields, ['uid', 'created']); - $this->drupalLogin($this->drupalCreateUser([ - 'access contextual links', - 'access in-place editing', - 'access content', - 'edit any article content', - 'administer nodes', - ])); - } - - // Test article with Layout Builder disabled. - $this->assertQuickEditInit($fields); - - // Test article with Layout Builder enabled. - $this->enableLayouts('admin/structure/types/manage/article/display/default'); - $this->usingLayoutBuilder = TRUE; - $this->assertQuickEditInit($fields); - - // Test article with Layout Builder override. - $this->createLayoutOverride(); - $this->assertQuickEditInit($fields); - - // If we're using revisions, it's not possible to disable Layout Builder - // without deleting the node (unless the revisions containing the override - // would be deleted). - if (!$use_revisions) { - // Test article with Layout Builder when reverted back to defaults. - $this->revertLayoutToDefaults(); - $this->assertQuickEditInit($fields); - - // Test with Layout Builder disabled after being enabled. - $this->usingLayoutBuilder = FALSE; - $this->disableLayoutBuilder('admin/structure/types/manage/article/display/default'); - $this->assertQuickEditInit($fields); - } - } - - /** - * DataProvider for testEnableDisableLayoutBuilder(). - */ - public function providerEnableDisableLayoutBuilder() { - return [ - 'use revisions, not admin' => [TRUE], - 'do not use revisions, not admin' => [FALSE], - 'use revisions, admin' => [TRUE, TRUE], - 'do not use revisions, admin' => [FALSE, TRUE], - ]; - } - - /** - * Enables layouts at an admin path. - * - * @param string $path - * The manage display path. - */ - protected function enableLayouts($path) { - // Save the current user to re-login after Layout Builder changes. - $user = $this->loggedInUser; - $this->loginLayoutAdmin(); - $page = $this->getSession()->getPage(); - $this->drupalGet($path); - $page->checkField('layout[enabled]'); - $page->checkField('layout[allow_custom]'); - $page->pressButton('Save'); - $this->drupalLogin($user); - } - - /** - * {@inheritdoc} - */ - protected function assertEntityInstanceFieldStates($entity_type_id, $entity_id, $entity_instance_id, array $expected_field_states): void { - parent::assertEntityInstanceFieldStates($entity_type_id, $entity_id, $entity_instance_id, $this->replaceLayoutBuilderFieldIdKeys($expected_field_states)); - } - - /** - * {@inheritdoc} - */ - protected function assertEntityInstanceFieldMarkup($expected_field_attributes): void { - if (func_num_args() === 4) { - $expected_field_attributes = func_get_arg(3); - @trigger_error('Calling ' . __METHOD__ . '() with 4 arguments is deprecated in drupal:9.1.0 and will throw an error in drupal:10.0.0. See https://www.drupal.org/project/drupal/issues/3037436', E_USER_DEPRECATED); - } - parent::assertEntityInstanceFieldMarkup($this->replaceLayoutBuilderFieldIdKeys($expected_field_attributes)); - } - - /** - * Replaces the array keys with Layout Builder field IDs when needed. - * - * @param array $array - * The array with field IDs as keys. - * - * @return array - * The array with the keys replaced. - */ - protected function replaceLayoutBuilderFieldIdKeys(array $array) { - if (!$this->usingLayoutBuilder) { - return $array; - } - $replacement = []; - foreach ($array as $field_key => $value) { - $new_field_key = $this->getQuickEditFieldId($field_key); - $replacement[$new_field_key] = $value; - } - return $replacement; - } - - /** - * Login the Layout admin user for the test. - */ - protected function loginLayoutAdmin() { - // Enable for the Layout Builder. - $this->drupalLogin($this->drupalCreateUser([ - 'configure any layout', - 'access content', - 'administer node display', - 'administer node fields', - 'administer blocks', - ])); - } - - /** - * Creates a layout override. - */ - protected function createLayoutOverride() { - $page = $this->getSession()->getPage(); - $assert_session = $this->assertSession(); - - // Save the current user to re-login after Layout Builder changes. - $user = $this->loggedInUser; - $this->loginLayoutAdmin(); - $this->drupalGet('node/' . $this->article->id() . '/layout'); - - $page->pressButton('Save layout'); - $this->assertNotEmpty($assert_session->waitForElement('css', '.messages--status')); - $assert_session->pageTextContains('The layout override has been saved.'); - $this->drupalLogin($user); - } - - /** - * Reverts a layout override. - */ - protected function revertLayoutToDefaults() { - $page = $this->getSession()->getPage(); - $assert_session = $this->assertSession(); - // Save the current user to re-login after Layout Builder changes. - $user = $this->loggedInUser; - $this->loginLayoutAdmin(); - $this->drupalGet('node/' . $this->article->id() . '/layout'); - $assert_session->buttonExists('Revert to defaults'); - $page->pressButton('Revert to defaults'); - $page->pressButton('Revert'); - $assert_session->pageTextContains('The layout has been reverted back to defaults.'); - $this->drupalLogin($user); - } - - /** - * Disables Layout Builder. - * - * @param string $path - * The path to the manage display page. - */ - protected function disableLayoutBuilder($path) { - $page = $this->getSession()->getPage(); - // Save the current user to re-login after Layout Builder changes. - $user = $this->loggedInUser; - $this->loginLayoutAdmin(); - $this->drupalGet($path); - $page->uncheckField('layout[allow_custom]'); - $page->uncheckField('layout[enabled]'); - $page->pressButton('Save'); - $page->pressButton('Confirm'); - $this->drupalLogin($user); - } - - /** - * Asserts that Quick Edit is initialized on the node view correctly. - * - * @todo Replace calls to this method with calls to ::doTestArticle() in - * https://www.drupal.org/node/3037436. - * - * @param string[] $fields - * The fields test. - */ - private function assertQuickEditInit(array $fields): void { - $this->assertNotEmpty($fields); - $node = $this->article; - $this->drupalGet('node/' . $node->id()); - - // Initial state. - $this->awaitQuickEditForEntity('node', 1); - $this->assertEntityInstanceStates([ - 'node/1[0]' => 'closed', - ]); - $field_states = []; - foreach ($fields as $field) { - $field_states["node/1/$field/en/full"] = 'inactive'; - } - $this->assertEntityInstanceFieldStates('node', 1, 0, $field_states); - } - - /** - * {@inheritdoc} - */ - protected function getQuickEditFieldId($original_field_id) { - $page = $this->getSession()->getPage(); - $parts = explode('/', $original_field_id); - // Removes the last part of the field id which will contain the Quick Edit - // view mode ID. When using the Layout Builder the view_mode will contain a - // hash of the layout sections and will be different each time the layout - // changes. - array_pop($parts); - $field_key_without_view_mode = implode('/', $parts); - $element = $page->find('css', "[data-quickedit-field-id^=\"$field_key_without_view_mode\"]"); - $this->assertNotEmpty($element, "Found Quick Edit-enabled field whose data-quickedit-field attribute starts with: $field_key_without_view_mode"); - try { - $has_attribute = $element->hasAttribute('data-quickedit-field-id'); - } - catch (\Exception $e) { - $has_attribute = FALSE; - } - $this->assertTrue($has_attribute, $field_key_without_view_mode); - $new_field_id = $element->getAttribute('data-quickedit-field-id'); - return $new_field_id; - } - -} diff --git a/core/modules/quickedit/tests/src/FunctionalJavascript/QuickEditAutocompleteTermTest.php b/core/modules/quickedit/tests/src/FunctionalJavascript/QuickEditAutocompleteTermTest.php deleted file mode 100644 index 34dec11f83365d6c441c82e2a9ec5e313e2b76e1..0000000000000000000000000000000000000000 --- a/core/modules/quickedit/tests/src/FunctionalJavascript/QuickEditAutocompleteTermTest.php +++ /dev/null @@ -1,210 +0,0 @@ -<?php - -namespace Drupal\Tests\quickedit\FunctionalJavascript; - -use Drupal\Core\Field\FieldStorageDefinitionInterface; -use Drupal\Core\Language\LanguageInterface; -use Drupal\FunctionalJavascriptTests\WebDriverTestBase; -use Drupal\taxonomy\Entity\Vocabulary; -use Drupal\taxonomy\Entity\Term; -use Drupal\Tests\contextual\FunctionalJavascript\ContextualLinkClickTrait; -use Drupal\Tests\field\Traits\EntityReferenceTestTrait; - -/** - * Tests in-place editing of autocomplete tags. - * - * @group quickedit - * @group legacy - */ -class QuickEditAutocompleteTermTest extends WebDriverTestBase { - - use EntityReferenceTestTrait; - use ContextualLinkClickTrait; - - /** - * {@inheritdoc} - */ - protected static $modules = [ - 'node', - 'taxonomy', - 'quickedit', - 'contextual', - 'ckeditor', - ]; - - /** - * {@inheritdoc} - */ - protected $defaultTheme = 'stark'; - - /** - * Stores the node used for the tests. - * - * @var \Drupal\node\NodeInterface - */ - protected $node; - - /** - * Stores the vocabulary used in the tests. - * - * @var \Drupal\taxonomy\VocabularyInterface - */ - protected $vocabulary; - - /** - * Stores the first term used in the tests. - * - * @var \Drupal\taxonomy\TermInterface - */ - protected $term1; - - /** - * Stores the second term used in the tests. - * - * @var \Drupal\taxonomy\TermInterface - */ - protected $term2; - - /** - * Stores the field name for the autocomplete field. - * - * @var string - */ - protected $fieldName; - - /** - * A user with permissions to access in-place editor. - * - * @var \Drupal\user\UserInterface - */ - protected $editorUser; - - /** - * {@inheritdoc} - */ - protected function setUp(): void { - parent::setUp(); - - $this->drupalCreateContentType([ - 'type' => 'article', - ]); - $this->vocabulary = Vocabulary::create([ - 'name' => 'quickedit testing tags', - 'vid' => 'quickedit_testing_tags', - ]); - $this->vocabulary->save(); - $this->fieldName = 'field_' . $this->vocabulary->id(); - - $handler_settings = [ - 'target_bundles' => [ - $this->vocabulary->id() => $this->vocabulary->id(), - ], - 'auto_create' => TRUE, - ]; - $this->createEntityReferenceField('node', 'article', $this->fieldName, 'Tags', 'taxonomy_term', 'default', $handler_settings, FieldStorageDefinitionInterface::CARDINALITY_UNLIMITED); - - \Drupal::service('entity_display.repository')->getFormDisplay('node', 'article') - ->setComponent($this->fieldName, [ - 'type' => 'entity_reference_autocomplete_tags', - 'weight' => -4, - ]) - ->save(); - - \Drupal::service('entity_display.repository')->getViewDisplay('node', 'article') - ->setComponent($this->fieldName, [ - 'type' => 'entity_reference_label', - 'weight' => 10, - ]) - ->save(); - \Drupal::service('entity_display.repository')->getViewDisplay('node', 'article', 'teaser') - ->setComponent($this->fieldName, [ - 'type' => 'entity_reference_label', - 'weight' => 10, - ]) - ->save(); - - $this->term1 = $this->createTerm(); - $this->term2 = $this->createTerm(); - - $node = []; - $node['type'] = 'article'; - $node[$this->fieldName][]['target_id'] = $this->term1->id(); - $node[$this->fieldName][]['target_id'] = $this->term2->id(); - $this->node = $this->drupalCreateNode($node); - - $this->editorUser = $this->drupalCreateUser([ - 'access content', - 'create article content', - 'edit any article content', - 'administer nodes', - 'access contextual links', - 'access in-place editing', - ]); - } - - /** - * Tests Quick Edit autocomplete term behavior. - */ - public function testAutocompleteQuickEdit() { - $page = $this->getSession()->getPage(); - $assert = $this->assertSession(); - - $this->drupalLogin($this->editorUser); - $this->drupalGet('node/' . $this->node->id()); - - // Wait "Quick edit" button for node. - $assert->waitForElement('css', '[data-quickedit-entity-id="node/' . $this->node->id() . '"] .contextual .quickedit'); - // Click by "Quick edit". - $this->clickContextualLink('[data-quickedit-entity-id="node/' . $this->node->id() . '"]', 'Quick edit'); - // Switch to body field. - $page->find('css', '[data-quickedit-field-id="node/' . $this->node->id() . '/' . $this->fieldName . '/' . $this->node->language()->getId() . '/full"]')->click(); - - // Open Quick Edit. - $quickedit_field_locator = '[name="field_quickedit_testing_tags[target_id]"]'; - $tag_field = $assert->waitForElementVisible('css', $quickedit_field_locator); - $tag_field->focus(); - $tags = $tag_field->getValue(); - - // Check existing terms. - $this->assertStringContainsString($this->term1->label(), $tags); - $this->assertStringContainsString($this->term2->label(), $tags); - - // Add new term. - $new_tag = $this->randomMachineName(); - $tags .= ', ' . $new_tag; - $assert->waitForElementVisible('css', $quickedit_field_locator)->setValue($tags); - $assert->waitOnAutocomplete(); - // Wait and click by "Save" button after body field was changed. - $assert->waitForElementVisible('css', '.quickedit-toolgroup.ops [type="submit"][aria-hidden="false"]')->click(); - $assert->waitOnAutocomplete(); - - // Reload the page and check new term. - $this->drupalGet('node/' . $this->node->id()); - $link = $assert->waitForLink($new_tag); - $this->assertNotEmpty($link); - } - - /** - * Returns a new term with random name and description in $this->vocabulary. - * - * @return \Drupal\Core\Entity\EntityInterface|\Drupal\taxonomy\Entity\Term - * The created taxonomy term. - * - * @throws \Drupal\Core\Entity\EntityStorageException - */ - protected function createTerm() { - $filter_formats = filter_formats(); - $format = array_pop($filter_formats); - $term = Term::create([ - 'name' => $this->randomMachineName(), - 'description' => $this->randomMachineName(), - // Use the first available text format. - 'format' => $format->id(), - 'vid' => $this->vocabulary->id(), - 'langcode' => LanguageInterface::LANGCODE_NOT_SPECIFIED, - ]); - $term->save(); - return $term; - } - -} diff --git a/core/modules/quickedit/tests/src/FunctionalJavascript/QuickEditFileTest.php b/core/modules/quickedit/tests/src/FunctionalJavascript/QuickEditFileTest.php deleted file mode 100644 index f3b4635ba237531be660917f81c70e88023d87bc..0000000000000000000000000000000000000000 --- a/core/modules/quickedit/tests/src/FunctionalJavascript/QuickEditFileTest.php +++ /dev/null @@ -1,114 +0,0 @@ -<?php - -namespace Drupal\Tests\quickedit\FunctionalJavascript; - -use Drupal\Core\Entity\Entity\EntityViewDisplay; -use Drupal\file\Entity\File; -use Drupal\node\Entity\Node; -use Drupal\Tests\file\Functional\FileFieldCreationTrait; -use Drupal\Tests\TestFileCreationTrait; - -/** - * @group quickedit - * @group legacy - */ -class QuickEditFileTest extends QuickEditJavascriptTestBase { - - use FileFieldCreationTrait; - use TestFileCreationTrait; - - /** - * {@inheritdoc} - */ - protected static $modules = [ - 'node', - 'file', - ]; - - /** - * {@inheritdoc} - */ - protected $defaultTheme = 'stark'; - - /** - * {@inheritdoc} - */ - protected function setUp(): void { - parent::setUp(); - - // Create the Article node type. - $this->drupalCreateContentType(['type' => 'article', 'name' => 'Article']); - - // Add file field to Article node type. - $this->createFileField('field_file', 'node', 'article', ['file_extensions' => 'txt']); - - // Move file field to the top of all fields, so its QuickEdit Toolbar won't - // overlap any QuickEdit-able fields, which causes (semi-)random test - // failures. - $entity_display = EntityViewDisplay::load('node.article.default'); - $entity_display->setComponent('field_file', ['weight' => 0]); - $entity_display->save(); - - // Log in as a content author who can use Quick Edit and edit Articles. - $user = $this->drupalCreateUser([ - 'access contextual links', - 'access toolbar', - 'access in-place editing', - 'access content', - 'create article content', - 'edit any article content', - ]); - $this->drupalLogin($user); - } - - /** - * Tests if a file can be in-place removed with Quick Edit. - */ - public function testRemove() { - $assert_session = $this->assertSession(); - - // Create test file. - $this->generateFile('test', 64, 10, 'text'); - $file = File::create([ - 'uri' => 'public://test.txt', - 'filename' => 'test.txt', - ]); - $file->setPermanent(); - $file->save(); - - // Create test node. - $node = $this->drupalCreateNode([ - 'type' => 'article', - 'title' => 'My Test Node', - 'field_file' => [ - 'target_id' => $file->id(), - ], - ]); - - $this->drupalGet($node->toUrl()->toString()); - - // Start Quick Edit. - $this->awaitQuickEditForEntity('node', 1); - $this->startQuickEditViaToolbar('node', 1, 0); - - // Click the file field. - $assert_session->waitForElementVisible('css', '[data-quickedit-field-id="node/1/field_file/en/full"]'); - $this->click('[data-quickedit-field-id="node/1/field_file/en/full"]'); - $assert_session->waitForElement('css', '.quickedit-toolbar-field div[id*="file"]'); - - // Remove the file. - $remove = $assert_session->waitForButton('Remove'); - $remove->click(); - // Wait for remove. - $assert_session->waitForElement('css', 'input[name="files[field_file_0]"]'); - $this->saveQuickEdit(); - // Wait for save. - $this->assertJsCondition("Drupal.quickedit.collections.entities.get('node/1[0]').get('state') === 'closed'"); - - // Assert file is removed from node. - $assert_session->pageTextNotContains('test.txt'); - $node = Node::load($node->id()); - $this->assertEmpty($node->get('field_file')->getValue()); - } - -} diff --git a/core/modules/quickedit/tests/src/FunctionalJavascript/QuickEditImageEditorTestTrait.php b/core/modules/quickedit/tests/src/FunctionalJavascript/QuickEditImageEditorTestTrait.php deleted file mode 100644 index fd224e4e1d58bdebb203617f6691f22ca248943e..0000000000000000000000000000000000000000 --- a/core/modules/quickedit/tests/src/FunctionalJavascript/QuickEditImageEditorTestTrait.php +++ /dev/null @@ -1,76 +0,0 @@ -<?php - -namespace Drupal\Tests\quickedit\FunctionalJavascript; - -/** - * @see \Drupal\quickedit\Plugin\InPlaceEditor\Image - * @see \Drupal\Tests\quickedit\FunctionalJavascript\QuickEditJavascriptTestBase - */ -trait QuickEditImageEditorTestTrait { - - /** - * Awaits the 'image' in-place editor. - */ - protected function awaitImageEditor() { - $this->assertJsCondition('document.querySelector(".quickedit-image-field-info") !== null', 10000); - - $quickedit_entity_toolbar = $this->getSession()->getPage()->findById('quickedit-entity-toolbar'); - $this->assertNotNull($quickedit_entity_toolbar->find('css', 'form.quickedit-image-field-info input[name="alt"]')); - } - - /** - * Simulates typing in the 'image' in-place editor 'alt' attribute text input. - * - * @param string $text - * The text to type. - */ - protected function typeInImageEditorAltTextInput($text) { - $quickedit_entity_toolbar = $this->getSession()->getPage()->findById('quickedit-entity-toolbar'); - $input = $quickedit_entity_toolbar->find('css', 'form.quickedit-image-field-info input[name="alt"]'); - $input->setValue($text); - } - - /** - * Simulates dragging and dropping an image on the 'image' in-place editor. - * - * @param string $file_uri - * The URI of the image file to drag and drop. - */ - protected function dropImageOnImageEditor($file_uri) { - // Our headless browser can't drag+drop files, but we can mock the event. - // Append a hidden upload element to the DOM. - $script = 'jQuery("<input id=\"quickedit-image-test-input\" type=\"file\" />").appendTo("body")'; - $this->getSession()->executeScript($script); - - // Find the element, and set its value to our new image. - $input = $this->assertSession()->elementExists('css', '#quickedit-image-test-input'); - $filepath = $this->container->get('file_system')->realpath($file_uri); - $input->attachFile($filepath); - - // Trigger the upload logic with a mock "drop" event. - $script = 'var e = jQuery.Event("drop");' - . 'e.originalEvent = {dataTransfer: {files: jQuery("#quickedit-image-test-input").get(0).files}};' - . 'e.preventDefault = e.stopPropagation = function () {};' - . 'jQuery(".quickedit-image-dropzone").trigger(e);'; - $this->getSession()->executeScript($script); - - // Wait for the dropzone element to be removed (i.e. loading is done). - $js_condition = <<<JS -function () { - var activeFieldID = Drupal.quickedit.collections.entities - .findWhere({state:'opened'}) - .get('fields') - .filter(function (fieldModel) { - var state = fieldModel.get('state'); - return state === 'active' || state === 'changed'; - })[0] - .get('fieldID') - return document.querySelector('[data-quickedit-field-id="' + activeFieldID + '"] .quickedit-image-dropzone') === null; -}() -JS; - - $this->assertJsCondition($js_condition, 20000); - - } - -} diff --git a/core/modules/quickedit/tests/src/FunctionalJavascript/QuickEditImageTest.php b/core/modules/quickedit/tests/src/FunctionalJavascript/QuickEditImageTest.php deleted file mode 100644 index a7bef2541d6606268c9446d1006b8dbc0632d482..0000000000000000000000000000000000000000 --- a/core/modules/quickedit/tests/src/FunctionalJavascript/QuickEditImageTest.php +++ /dev/null @@ -1,234 +0,0 @@ -<?php - -namespace Drupal\Tests\quickedit\FunctionalJavascript; - -use Drupal\file\Entity\File; -use Drupal\Tests\image\Kernel\ImageFieldCreationTrait; -use Drupal\Tests\TestFileCreationTrait; - -/** - * @coversDefaultClass \Drupal\quickedit\Plugin\InPlaceEditor\Image - * @group quickedit - * @group legacy - */ -class QuickEditImageTest extends QuickEditJavascriptTestBase { - - use ImageFieldCreationTrait; - use TestFileCreationTrait; - use QuickEditImageEditorTestTrait; - - /** - * {@inheritdoc} - */ - protected static $modules = ['node', 'image', 'field_ui', 'hold_test']; - - /** - * {@inheritdoc} - */ - protected $defaultTheme = 'stark'; - - /** - * A user with permissions to edit Articles and use Quick Edit. - * - * @var \Drupal\user\UserInterface - */ - protected $contentAuthorUser; - - /** - * {@inheritdoc} - */ - protected function setUp(): void { - parent::setUp(); - - // Create the Article node type. - $this->drupalCreateContentType(['type' => 'article', 'name' => 'Article']); - } - - /** - * Tests that quick editor works correctly with images. - * - * @covers ::isCompatible - * @covers ::getAttachments - * - * @dataProvider providerTestImageInPlaceEditor - */ - public function testImageInPlaceEditor($admin_permission = FALSE) { - // Log in as a content author who can use Quick Edit and edit Articles. - $permissions = [ - 'access contextual links', - 'access toolbar', - 'access in-place editing', - 'access content', - 'create article content', - 'edit any article content', - 'delete any article content', - ]; - if ($admin_permission) { - $permissions[] = 'administer nodes'; - } - $this->contentAuthorUser = $this->drupalCreateUser($permissions); - $this->drupalLogin($this->contentAuthorUser); - // Create a field with a basic filetype restriction. - $field_name = strtolower($this->randomMachineName()); - $field_settings = [ - 'file_extensions' => 'png', - ]; - $formatter_settings = [ - 'image_style' => 'large', - 'image_link' => '', - ]; - $this->createImageField($field_name, 'article', [], $field_settings, [], $formatter_settings); - - // Find images that match our field settings. - $valid_images = []; - foreach ($this->getTestFiles('image') as $image) { - // This regex is taken from file_validate_extensions(). - $regex = '/\.(' . preg_replace('/ +/', '|', preg_quote($field_settings['file_extensions'])) . ')$/i'; - if (preg_match($regex, $image->filename)) { - $valid_images[] = $image; - } - } - - // Ensure we have at least two valid images. - $this->assertGreaterThanOrEqual(2, count($valid_images)); - - // Create a File entity for the initial image. - $file = File::create([ - 'uri' => $valid_images[0]->uri, - 'uid' => $this->contentAuthorUser->id(), - ]); - $file->setPermanent(); - $file->save(); - - // Use the first valid image to create a new Node. - $image_factory = $this->container->get('image.factory'); - $image = $image_factory->get($valid_images[0]->uri); - $node = $this->drupalCreateNode([ - 'type' => 'article', - 'title' => 'Test Node', - $field_name => [ - 'target_id' => $file->id(), - 'alt' => 'Hello world', - 'title' => '', - 'width' => $image->getWidth(), - 'height' => $image->getHeight(), - ], - ]); - - // Visit the new Node. - $this->drupalGet('node/' . $node->id()); - - // Assemble common CSS selectors. - $entity_selector = '[data-quickedit-entity-id="node/' . $node->id() . '"]'; - $field_selector = '[data-quickedit-field-id="node/' . $node->id() . '/' . $field_name . '/' . $node->language()->getId() . '/full"]'; - $original_image_selector = 'img[src*="' . $valid_images[0]->filename . '"][alt="Hello world"]'; - $new_image_selector = 'img[src*="' . $valid_images[1]->filename . '"][alt="New text"]'; - - // Assert that the initial image is present. - $this->assertSession()->elementExists('css', $entity_selector . ' ' . $field_selector . ' ' . $original_image_selector); - - // Initial state. - $this->awaitQuickEditForEntity('node', 1); - $this->assertEntityInstanceStates([ - 'node/1[0]' => 'closed', - ]); - - $admin_inactive = []; - $admin_candidate = []; - if ($admin_permission) { - $admin_inactive = [ - 'node/1/uid/en/full' => 'inactive', - 'node/1/created/en/full' => 'inactive', - ]; - $admin_candidate = [ - 'node/1/uid/en/full' => 'candidate', - 'node/1/created/en/full' => 'candidate', - ]; - } - - $this->assertEntityInstanceFieldStates('node', 1, 0, [ - 'node/1/title/en/full' => 'inactive', - 'node/1/body/en/full' => 'inactive', - 'node/1/' . $field_name . '/en/full' => 'inactive', - ] + $admin_inactive); - - // Start in-place editing of the article node. - $this->startQuickEditViaToolbar('node', 1, 0); - $this->assertEntityInstanceStates([ - 'node/1[0]' => 'opened', - ]); - $this->assertQuickEditEntityToolbar((string) $node->label(), NULL); - $this->assertEntityInstanceFieldStates('node', 1, 0, [ - 'node/1/title/en/full' => 'candidate', - 'node/1/body/en/full' => 'candidate', - 'node/1/' . $field_name . '/en/full' => 'candidate', - ] + $admin_candidate); - - // Click the image field. - $this->click($field_selector); - $this->awaitImageEditor(); - $this->assertSession()->elementExists('css', $field_selector . ' .quickedit-image-dropzone'); - $this->assertEntityInstanceFieldStates('node', 1, 0, [ - 'node/1/title/en/full' => 'candidate', - 'node/1/body/en/full' => 'candidate', - 'node/1/' . $field_name . '/en/full' => 'active', - ] + $admin_candidate); - - // Type new 'alt' text. - $this->typeInImageEditorAltTextInput('New text'); - $this->assertEntityInstanceFieldStates('node', 1, 0, [ - 'node/1/title/en/full' => 'candidate', - 'node/1/body/en/full' => 'candidate', - 'node/1/' . $field_name . '/en/full' => 'changed', - ] + $admin_candidate); - - // Drag and drop an image. - $this->dropImageOnImageEditor($valid_images[1]->uri); - - // To prevent 403s on save, we re-set our request (cookie) state. - $this->prepareRequest(); - - // Click 'Save'. - hold_test_response(TRUE); - $this->saveQuickEdit(); - $this->assertEntityInstanceStates([ - 'node/1[0]' => 'committing', - ]); - $this->assertEntityInstanceFieldStates('node', 1, 0, [ - 'node/1/title/en/full' => 'candidate', - 'node/1/body/en/full' => 'candidate', - 'node/1/' . $field_name . '/en/full' => 'saving', - ] + $admin_candidate); - $this->assertEntityInstanceFieldMarkup([ - 'node/1/' . $field_name . '/en/full' => '.quickedit-changed', - ]); - hold_test_response(FALSE); - - // Wait for the saving of the image field to complete. - $this->assertJsCondition("Drupal.quickedit.collections.entities.get('node/1[0]').get('state') === 'closed'"); - $this->assertEntityInstanceStates([ - 'node/1[0]' => 'closed', - ]); - - // Re-visit the page to make sure the edit worked. - $this->drupalGet('node/' . $node->id()); - - // Check that the new image appears as expected. - $this->assertSession()->elementNotExists('css', $entity_selector . ' ' . $field_selector . ' ' . $original_image_selector); - $this->assertSession()->elementExists('css', $entity_selector . ' ' . $field_selector . ' ' . $new_image_selector); - } - - /** - * Data provider for ::testImageInPlaceEditor(). - * - * @return array - * Test cases. - */ - public function providerTestImageInPlaceEditor(): array { - return [ - 'with permission' => [TRUE], - 'without permission' => [FALSE], - ]; - } - -} diff --git a/core/modules/quickedit/tests/src/FunctionalJavascript/QuickEditJavascriptTestBase.php b/core/modules/quickedit/tests/src/FunctionalJavascript/QuickEditJavascriptTestBase.php deleted file mode 100644 index 99e99151d816a144a40c6e5de14f0319f7f259b9..0000000000000000000000000000000000000000 --- a/core/modules/quickedit/tests/src/FunctionalJavascript/QuickEditJavascriptTestBase.php +++ /dev/null @@ -1,309 +0,0 @@ -<?php - -namespace Drupal\Tests\quickedit\FunctionalJavascript; - -use Drupal\FunctionalJavascriptTests\WebDriverTestBase; -use WebDriver\Key; - -/** - * Base class for testing the QuickEdit. - */ -class QuickEditJavascriptTestBase extends WebDriverTestBase { - - /** - * {@inheritdoc} - */ - protected static $modules = ['contextual', 'quickedit', 'toolbar']; - - /** - * A user with permissions to edit Articles and use Quick Edit. - * - * @var \Drupal\user\UserInterface - */ - protected $contentAuthorUser; - - protected static $expectedFieldStateAttributes = [ - 'inactive' => '.quickedit-field:not(.quickedit-editable):not(.quickedit-candidate):not(.quickedit-highlighted):not(.quickedit-editing):not(.quickedit-changed)', - // A field in 'candidate' state may still have the .quickedit-changed class - // because when its changes were saved to tempstore, it'll still be changed. - // It's just not currently being edited, so that's why it is not in the - // 'changed' state. - 'candidate' => '.quickedit-field.quickedit-editable.quickedit-candidate:not(.quickedit-highlighted):not(.quickedit-editing)', - 'highlighted' => '.quickedit-field.quickedit-editable.quickedit-candidate.quickedit-highlighted:not(.quickedit-editing)', - 'activating' => '.quickedit-field.quickedit-editable.quickedit-candidate.quickedit-highlighted.quickedit-editing:not(.quickedit-changed)', - 'active' => '.quickedit-field.quickedit-editable.quickedit-candidate.quickedit-highlighted.quickedit-editing:not(.quickedit-changed)', - 'changed' => '.quickedit-field.quickedit-editable.quickedit-candidate.quickedit-highlighted.quickedit-editing.quickedit-changed', - 'saving' => '.quickedit-field.quickedit-editable.quickedit-candidate.quickedit-highlighted.quickedit-editing.quickedit-changed', - ]; - - /** - * Starts in-place editing of the given entity instance. - * - * @param string $entity_type_id - * The entity type ID. - * @param int $entity_id - * The entity ID. - * @param int $entity_instance_id - * The entity instance ID. (Instance on the page.) - */ - protected function startQuickEditViaToolbar($entity_type_id, $entity_id, $entity_instance_id) { - $page = $this->getSession()->getPage(); - - $toolbar_edit_button_selector = '#toolbar-bar .contextual-toolbar-tab button'; - $entity_instance_selector = '[data-quickedit-entity-id="' . $entity_type_id . '/' . $entity_id . '"][data-quickedit-entity-instance-id="' . $entity_instance_id . '"]'; - $contextual_links_trigger_selector = '[data-contextual-id] > .trigger'; - - // Assert the original page state does not have the toolbar's "Edit" button - // pressed/activated, and hence none of the contextual link triggers should - // be visible. - $toolbar_edit_button = $page->find('css', $toolbar_edit_button_selector); - $this->assertSame('false', $toolbar_edit_button->getAttribute('aria-pressed'), 'The "Edit" button in the toolbar is not yet pressed.'); - $this->assertFalse($toolbar_edit_button->hasClass('is-active'), 'The "Edit" button in the toolbar is not yet marked as active.'); - foreach ($page->findAll('css', $contextual_links_trigger_selector) as $dom_node) { - /** @var \Behat\Mink\Element\NodeElement $dom_node */ - $this->assertTrue($dom_node->hasClass('visually-hidden'), 'The contextual links trigger "' . $dom_node->getParent()->getAttribute('data-contextual-id') . '" is hidden.'); - } - $this->assertTrue(TRUE, 'All contextual links triggers are hidden.'); - - // Click the "Edit" button in the toolbar. - $this->click($toolbar_edit_button_selector); - - // Assert the toolbar's "Edit" button is now pressed/activated, and hence - // all of the contextual link triggers should be visible. - $this->assertSame('true', $toolbar_edit_button->getAttribute('aria-pressed'), 'The "Edit" button in the toolbar is pressed.'); - $this->assertTrue($toolbar_edit_button->hasClass('is-active'), 'The "Edit" button in the toolbar is marked as active.'); - foreach ($page->findAll('css', $contextual_links_trigger_selector) as $dom_node) { - /** @var \Behat\Mink\Element\NodeElement $dom_node */ - $this->assertFalse($dom_node->hasClass('visually-hidden'), 'The contextual links trigger "' . $dom_node->getParent()->getAttribute('data-contextual-id') . '" is visible.'); - } - $this->assertTrue(TRUE, 'All contextual links triggers are visible.'); - - // @todo Press tab key to verify that tabbing is now constrained to only - // contextual links triggers: https://www.drupal.org/node/2834776 - - // Assert that the contextual links associated with the entity's contextual - // links trigger are not visible. - /** @var \Behat\Mink\Element\NodeElement $entity_contextual_links_container */ - $entity_contextual_links_container = $page->find('css', $entity_instance_selector) - ->find('css', $contextual_links_trigger_selector) - ->getParent(); - $this->assertFalse($entity_contextual_links_container->hasClass('open')); - $this->assertTrue($entity_contextual_links_container->find('css', 'ul.contextual-links')->hasAttribute('hidden')); - - // Click the contextual link trigger for the entity we want to Quick Edit. - $this->click($entity_instance_selector . ' ' . $contextual_links_trigger_selector); - - $this->assertTrue($entity_contextual_links_container->hasClass('open')); - $this->assertFalse($entity_contextual_links_container->find('css', 'ul.contextual-links')->hasAttribute('hidden')); - - // Click the "Quick edit" contextual link. - $this->click($entity_instance_selector . ' [data-contextual-id] ul.contextual-links li.quickedit a'); - - // Assert the Quick Edit internal state is correct. - $js_condition = <<<JS -Drupal.quickedit.collections.entities.where({isActive: true}).length === 1 && Drupal.quickedit.collections.entities.where({isActive: true})[0].get('entityID') === '$entity_type_id/$entity_id' -JS; - $this->assertJsCondition($js_condition); - } - - /** - * Clicks the 'Save' button in the Quick Edit entity toolbar. - */ - protected function saveQuickEdit() { - $quickedit_entity_toolbar = $this->getSession()->getPage()->findById('quickedit-entity-toolbar'); - $save_button = $quickedit_entity_toolbar->find('css', 'button.action-save'); - $save_button->press(); - $this->assertSame('Saving', $save_button->getText()); - } - - /** - * Awaits Quick Edit to be initiated for all instances of the given entity. - * - * @param string $entity_type_id - * The entity type ID. - * @param int $entity_id - * The entity ID. - */ - protected function awaitQuickEditForEntity($entity_type_id, $entity_id) { - $entity_selector = '[data-quickedit-entity-id="' . $entity_type_id . '/' . $entity_id . '"]'; - $condition = "document.querySelectorAll('" . $entity_selector . "').length === document.querySelectorAll('" . $entity_selector . " .quickedit').length"; - $this->assertJsCondition($condition, 10000); - } - - /** - * Awaits a particular field instance to reach a particular state. - * - * @param string $entity_type_id - * The entity type ID. - * @param int $entity_id - * The entity ID. - * @param int $entity_instance_id - * The entity instance ID. (Instance on the page.) - * @param string $field_name - * The field name. - * @param string $langcode - * The language code. - * @param string $awaited_state - * One of the possible field states. - */ - protected function awaitEntityInstanceFieldState($entity_type_id, $entity_id, $entity_instance_id, $field_name, $langcode, $awaited_state) { - $entity_page_id = $entity_type_id . '/' . $entity_id . '[' . $entity_instance_id . ']'; - $logical_field_id = $entity_type_id . '/' . $entity_id . '/' . $field_name . '/' . $langcode; - $this->assertJsCondition("Drupal.quickedit.collections.entities.get('$entity_page_id').get('fields').findWhere({logicalFieldID: '$logical_field_id'}).get('state') === '$awaited_state'"); - } - - /** - * Asserts the state of the Quick Edit entity toolbar. - * - * @param string $expected_entity_label - * The expected entity label in the Quick Edit Entity Toolbar. - * @param string|null $expected_field_label - * The expected field label in the Quick Edit Entity Toolbar, or NULL - * if no field label is expected. - */ - protected function assertQuickEditEntityToolbar($expected_entity_label, $expected_field_label) { - $quickedit_entity_toolbar = $this->getSession()->getPage()->findById('quickedit-entity-toolbar'); - // We cannot use ->getText() because it also returns the text of all child - // nodes. We also cannot use XPath to select text node in Selenium. So we - // use JS expression to select only the text node. - $this->assertSame($expected_entity_label, $this->getSession()->evaluateScript("return window.jQuery('#quickedit-entity-toolbar .quickedit-toolbar-label').clone().children().remove().end().text();")); - if ($expected_field_label !== NULL) { - $field_label = $quickedit_entity_toolbar->find('css', '.quickedit-toolbar-label > .field'); - // Only try to find the text content of the element if it was actually - // found; otherwise use the returned value for assertion. This helps - // us find a more useful stack/error message from testbot instead of the - // trimmed partial exception stack. - if ($field_label) { - $field_label = $field_label->getText(); - } - $this->assertSame($expected_field_label, $field_label); - } - else { - $this->assertEmpty($quickedit_entity_toolbar->find('css', '.quickedit-toolbar-label > .field')); - } - } - - /** - * Asserts all EntityModels (entity instances) on the page. - * - * @param array $expected_entity_states - * Must describe the expected state of all in-place editable entity - * instances on the page. - * - * @see Drupal.quickedit.EntityModel - */ - protected function assertEntityInstanceStates(array $expected_entity_states) { - $js_get_all_field_states_for_entity = <<<JS -function () { - Drupal.quickedit.collections.entities.reduce(function (result, fieldModel) { result[fieldModel.get('id')] = fieldModel.get('state'); return result; }, {}) - var entityCollection = Drupal.quickedit.collections.entities; - return entityCollection.reduce(function (result, entityModel) { - result[entityModel.id] = entityModel.get('state'); - return result; - }, {}); -}() -JS; - $this->assertSame($expected_entity_states, $this->getSession()->evaluateScript($js_get_all_field_states_for_entity)); - } - - /** - * Asserts all FieldModels for the given entity instance. - * - * @param string $entity_type_id - * The entity type ID. - * @param int $entity_id - * The entity ID. - * @param int $entity_instance_id - * The entity instance ID. (Instance on the page.) - * @param array $expected_field_states - * Must describe the expected state of all in-place editable fields of the - * given entity instance. - */ - protected function assertEntityInstanceFieldStates($entity_type_id, $entity_id, $entity_instance_id, array $expected_field_states) { - // Get all FieldModel states for the entity instance being asserted. This - // ensures that $expected_field_states must describe the state of all fields - // of the entity instance. - $entity_page_id = $entity_type_id . '/' . $entity_id . '[' . $entity_instance_id . ']'; - $js_get_all_field_states_for_entity = <<<JS -function () { - var entityCollection = Drupal.quickedit.collections.entities; - var entityModel = entityCollection.get('$entity_page_id'); - return entityModel.get('fields').reduce(function (result, fieldModel) { - result[fieldModel.get('fieldID')] = fieldModel.get('state'); - return result; - }, {}); -}() -JS; - $this->assertEquals($expected_field_states, $this->getSession()->evaluateScript($js_get_all_field_states_for_entity)); - - // Assert that those fields also have the appropriate DOM decorations. - $expected_field_attributes = []; - foreach ($expected_field_states as $quickedit_field_id => $expected_field_state) { - $expected_field_attributes[$quickedit_field_id] = static::$expectedFieldStateAttributes[$expected_field_state]; - } - $this->assertEntityInstanceFieldMarkup($expected_field_attributes); - } - - /** - * Asserts all in-place editable fields with markup expectations. - * - * @param array $expected_field_attributes - * Must describe the expected markup attributes for all given in-place - * editable fields. - * - * @todo https://www.drupal.org/project/drupal/issues/3178758 Remove - * deprecation layer and add array typehint. - */ - protected function assertEntityInstanceFieldMarkup($expected_field_attributes) { - if (func_num_args() === 4) { - $expected_field_attributes = func_get_arg(3); - @trigger_error('Calling ' . __METHOD__ . '() with 4 arguments is deprecated in drupal:9.1.0 and will throw an error in drupal:10.0.0. See https://www.drupal.org/project/drupal/issues/3037436', E_USER_DEPRECATED); - } - if (!is_array($expected_field_attributes)) { - throw new \InvalidArgumentException('The $expected_field_attributes argument must be an array.'); - } - foreach ($expected_field_attributes as $quickedit_field_id => $expectation) { - $element = $this->assertSession()->waitForElementVisible('css', '[data-quickedit-field-id="' . $quickedit_field_id . '"]' . $expectation); - $this->assertNotEmpty($element, 'Field ' . $quickedit_field_id . ' did not match its expectation selector (' . $expectation . ')'); - } - } - - /** - * Simulates typing in a 'plain_text' in-place editor. - * - * @param string $css_selector - * The CSS selector to find the DOM element (with the 'contenteditable=true' - * attribute set), to type in. - * @param string $text - * The text to type. - * - * @see \Drupal\quickedit\Plugin\InPlaceEditor\PlainTextEditor - */ - protected function typeInPlainTextEditor($css_selector, $text) { - $field = $this->getSession()->getPage()->find('css', $css_selector); - $field->setValue(Key::END . $text); - } - - /** - * Simulates typing in an input[type=text] inside a 'form' in-place editor. - * - * @param string $input_name - * The "name" attribute of the input[type=text] to type in. - * @param string $text - * The text to type. - * - * @see \Drupal\quickedit\Plugin\InPlaceEditor\FormEditor - */ - protected function typeInFormEditorTextInputField($input_name, $text) { - $input = $this->cssSelect('.quickedit-form-container > .quickedit-form[role="dialog"] form.quickedit-field-form input[type=text][name="' . $input_name . '"]')[0]; - $input->setValue($text); - $js_simulate_user_typing = <<<JS -function () { - var el = document.querySelector('.quickedit-form-container > .quickedit-form[role="dialog"] form.quickedit-field-form input[name="$input_name"]'); - window.jQuery(el).trigger('formUpdated'); -}() -JS; - $this->getSession()->evaluateScript($js_simulate_user_typing); - } - -} diff --git a/core/modules/quickedit/tests/src/FunctionalJavascript/QuickEditLoadingTest.php b/core/modules/quickedit/tests/src/FunctionalJavascript/QuickEditLoadingTest.php deleted file mode 100644 index 94879da0a008e33a227a3a3b25b65350fde1ee54..0000000000000000000000000000000000000000 --- a/core/modules/quickedit/tests/src/FunctionalJavascript/QuickEditLoadingTest.php +++ /dev/null @@ -1,394 +0,0 @@ -<?php - -namespace Drupal\Tests\quickedit\FunctionalJavascript; - -use Behat\Mink\Session; -use Drupal\block_content\Entity\BlockContent; -use Drupal\Core\Entity\Entity\EntityViewDisplay; -use Drupal\field\Entity\FieldConfig; -use Drupal\field\Entity\FieldStorageConfig; -use Drupal\FunctionalJavascriptTests\WebDriverTestBase; -use Drupal\node\Entity\Node; -use Drupal\node\Entity\NodeType; -use Drupal\filter\Entity\FilterFormat; -use Drupal\Tests\contextual\FunctionalJavascript\ContextualLinkClickTrait; -use Drupal\Tests\TestFileCreationTrait; - -/** - * Tests loading of in-place editing functionality and lazy loading of its - * in-place editors. - * - * @group quickedit - * @group legacy - */ -class QuickEditLoadingTest extends WebDriverTestBase { - - use ContextualLinkClickTrait; - - use TestFileCreationTrait { - getTestFiles as drupalGetTestFiles; - } - - /** - * Modules to enable. - * - * @var array - */ - protected static $modules = [ - 'contextual', - 'quickedit', - 'filter', - 'node', - 'image', - ]; - - /** - * {@inheritdoc} - */ - protected $defaultTheme = 'classy'; - - /** - * A user with permissions to create and edit articles. - * - * @var \Drupal\user\UserInterface - */ - protected $authorUser; - - /** - * A test node. - * - * @var \Drupal\node\NodeInterface - */ - protected $testNode; - - /** - * An author user with permissions to access in-place editor. - * - * @var \Drupal\user\UserInterface - */ - protected $editorUser; - - /** - * {@inheritdoc} - */ - protected function setUp(): void { - parent::setUp(); - - // Create a text format. - $filtered_html_format = FilterFormat::create([ - 'format' => 'filtered_html', - 'name' => 'Filtered HTML', - 'weight' => 0, - 'filters' => [], - ]); - $filtered_html_format->save(); - - // Create a node type. - $this->drupalCreateContentType([ - 'type' => 'article', - 'name' => 'Article', - ]); - - // Set the node type to initially not have revisions. - // Testing with revisions will be done later. - $node_type = NodeType::load('article'); - $node_type->setNewRevision(FALSE); - $node_type->save(); - - // Create one node of the above node type using the above text format. - $this->testNode = $this->drupalCreateNode([ - 'type' => 'article', - 'body' => [ - 0 => [ - 'value' => '<p>How are you?</p>', - 'format' => 'filtered_html', - ], - ], - 'revision_log' => $this->randomString(), - ]); - - // Create 2 users, the only difference being the ability to use in-place - // editing - $basic_permissions = [ - 'access content', - 'create article content', - 'edit any article content', - 'use text format filtered_html', - 'access contextual links', - ]; - $this->authorUser = $this->drupalCreateUser($basic_permissions); - $this->editorUser = $this->drupalCreateUser(array_merge($basic_permissions, ['access in-place editing'])); - } - - /** - * Tests the loading of Quick Edit with different permissions. - */ - public function testUserPermissions() { - $assert = $this->assertSession(); - $this->drupalLogin($this->authorUser); - $this->drupalGet('node/1'); - - // Library and in-place editors. - $this->assertSession()->responseNotContains('core/modules/quickedit/js/quickedit.js'); - $this->assertSession()->responseNotContains('core/modules/quickedit/js/editors/formEditor.js'); - - // HTML annotation and title class do not exist for users without - // permission to in-place edit. - $this->assertSession()->responseNotContains('data-quickedit-entity-id="node/1"'); - $this->assertSession()->responseNotContains('data-quickedit-field-id="node/1/body/en/full"'); - $this->assertSession()->elementNotExists('xpath', '//h1[contains(@class, "js-quickedit-page-title")]'); - $assert->linkNotExists('Quick edit'); - - // Tests the loading of Quick Edit when a user does have access to it. - // Also ensures lazy loading of in-place editors works. - $nid = $this->testNode->id(); - // There should be only one revision so far. - $node = Node::load($nid); - $vids = \Drupal::entityTypeManager()->getStorage('node')->revisionIds($node); - $this->assertCount(1, $vids, 'The node has only one revision.'); - $original_log = $node->revision_log->value; - - $this->drupalLogin($this->editorUser); - $this->drupalGet('node/' . $nid); - $page = $this->getSession()->getPage(); - - // Wait "Quick edit" button for node. - $assert->waitForElement('css', '[data-quickedit-entity-id="node/' . $nid . '"] .contextual .quickedit'); - // Click by "Quick edit". - $this->clickContextualLink('[data-quickedit-entity-id="node/' . $nid . '"]', 'Quick edit'); - // Switch to body field. - $page->find('css', '[data-quickedit-field-id="node/' . $nid . '/body/en/full"]')->click(); - - // Wait and update body field. - $body_field_locator = '[name="body[0][value]"]'; - $body_text = 'Fine thanks.'; - $assert->waitForElementVisible('css', $body_field_locator)->setValue('<p>' . $body_text . '</p>'); - - // Wait and click by "Save" button after body field was changed. - $assert->waitForElementVisible('css', '.quickedit-toolgroup.ops [type="submit"][aria-hidden="false"]')->click(); - $assert->waitForElementRemoved('css', '.quickedit-toolgroup.ops [type="submit"][aria-hidden="false"]'); - - // Ensure that the changes take effect. - $assert->responseMatches("|\s*$body_text\s*|"); - - // Reload the page and check for updated body. - $this->drupalGet('node/' . $nid); - $assert->pageTextContains($body_text); - - // Ensure that a new revision has not been created. - $node = Node::load($nid); - $vids = \Drupal::entityTypeManager()->getStorage('node')->revisionIds($node); - $this->assertCount(1, $vids, 'The node has only one revision.'); - $this->assertSame($original_log, $node->revision_log->value, 'The revision log message is unchanged.'); - } - - /** - * Tests Quick Edit does not appear for entities with pending revisions. - */ - public function testWithPendingRevision() { - $this->drupalLogin($this->editorUser); - - // Verify that the preview is loaded correctly. - $this->drupalGet('node/add/article'); - $this->submitForm(['title[0][value]' => 'foo'], 'Preview'); - // Verify that quickedit is not active on preview. - $this->assertSession()->responseNotContains('data-quickedit-entity-id="node/' . $this->testNode->id() . '"'); - $this->assertSession()->responseNotContains('data-quickedit-field-id="node/' . $this->testNode->id() . '/title/' . $this->testNode->language()->getId() . '/full"'); - - $this->drupalGet('node/' . $this->testNode->id()); - $this->assertSession()->responseContains('data-quickedit-entity-id="node/' . $this->testNode->id() . '"'); - $this->assertSession()->responseContains('data-quickedit-field-id="node/' . $this->testNode->id() . '/title/' . $this->testNode->language()->getId() . '/full"'); - - // Wait for the page to completely load before making any changes to the - // node. This allows Quick Edit to fetch the metadata without causing - // database locks on SQLite. - $this->assertSession()->assertWaitOnAjaxRequest(); - $this->testNode->title = 'Updated node'; - $this->testNode->setNewRevision(TRUE); - $this->testNode->isDefaultRevision(FALSE); - $this->testNode->save(); - - $this->drupalGet('node/' . $this->testNode->id()); - $this->assertSession()->responseNotContains('data-quickedit-entity-id="node/' . $this->testNode->id() . '"'); - $this->assertSession()->responseNotContains('data-quickedit-field-id="node/' . $this->testNode->id() . '/title/' . $this->testNode->language()->getId() . '/full"'); - } - - /** - * Tests the loading of Quick Edit for the title base field. - */ - public function testTitleBaseField() { - $page = $this->getSession()->getPage(); - $assert = $this->assertSession(); - $nid = $this->testNode->id(); - - $this->drupalLogin($this->editorUser); - $this->drupalGet('node/' . $nid); - - // Wait "Quick edit" button for node. - $assert->waitForElement('css', '[data-quickedit-entity-id="node/' . $nid . '"] .contextual .quickedit'); - // Click by "Quick edit". - $this->clickContextualLink('[data-quickedit-entity-id="node/' . $nid . '"]', 'Quick edit'); - // Switch to title field. - $page->find('css', '[data-quickedit-field-id="node/' . $nid . '/title/en/full"]')->click(); - - // Wait and update title field. - $field_locator = '.field--name-title'; - $text_new = 'Obligatory question'; - $assert->waitForElementVisible('css', $field_locator)->setValue($text_new); - - // Wait and click by "Save" button after title field was changed. - $this->assertSession()->waitForElementVisible('css', '.quickedit-toolgroup.ops [type="submit"][aria-hidden="false"]')->click(); - $assert->waitForElementRemoved('css', '.quickedit-toolgroup.ops [type="submit"][aria-hidden="false"]'); - - // Ensure that the changes take effect. - $assert->responseMatches("|\s*$text_new\s*|"); - - // Reload the page and check for updated title. - $this->drupalGet('node/' . $nid); - $assert->pageTextContains($text_new); - } - - /** - * Tests that Quick Edit doesn't make fields rendered with display options - * editable. - */ - public function testDisplayOptions() { - $node = Node::load('1'); - $display_settings = [ - 'label' => 'inline', - ]; - $build = $node->body->view($display_settings); - $output = \Drupal::service('renderer')->renderRoot($build); - $this->assertStringNotContainsString('data-quickedit-field-id', $output, 'data-quickedit-field-id attribute not added when rendering field using dynamic display options.'); - } - - /** - * Tests Quick Edit on a node that was concurrently edited on the full node - * form. - */ - public function testConcurrentEdit() { - $nid = $this->testNode->id(); - $this->drupalLogin($this->authorUser); - - // Open the edit page in the default session. - $this->drupalGet('node/' . $nid . '/edit'); - - // Switch to a concurrent session and save a quick edit change. - // We need to do some bookkeeping to keep track of the logged in user. - $logged_in_user = $this->loggedInUser; - $this->loggedInUser = FALSE; - // Register a session to preform concurrent editing. - $driver = $this->getDefaultDriverInstance(); - $session = new Session($driver); - $this->mink->registerSession('concurrent', $session); - $this->mink->setDefaultSessionName('concurrent'); - $this->initFrontPage(); - $this->drupalLogin($this->editorUser); - $this->drupalGet('node/' . $nid); - - $assert = $this->assertSession(); - $page = $this->getSession()->getPage(); - - // Wait "Quick edit" button for node. - $assert->waitForElement('css', '[data-quickedit-entity-id="node/' . $nid . '"] .contextual .quickedit'); - // Click by "Quick edit". - $this->clickContextualLink('[data-quickedit-entity-id="node/' . $nid . '"]', 'Quick edit'); - // Switch to body field. - $page->find('css', '[data-quickedit-field-id="node/' . $nid . '/body/en/full"]')->click(); - - // Wait and update body field. - $body_field_locator = '[name="body[0][value]"]'; - $body_text = 'Fine thanks.'; - $assert->waitForElementVisible('css', $body_field_locator)->setValue('<p>' . $body_text . '</p>'); - - // Wait and click by "Save" button after body field was changed. - $assert->waitForElementVisible('css', '.quickedit-toolgroup.ops [type="submit"][aria-hidden="false"]')->click(); - $assert->waitForElementRemoved('css', $body_field_locator); - - // Ensure that the changes take effect. - $assert->responseMatches("|\s*$body_text\s*|"); - - // Switch back to the default session. - $this->mink->setDefaultSessionName('default'); - $this->loggedInUser = $logged_in_user; - // Ensure different save timestamps for field editing. - sleep(2); - $this->submitForm(['body[0][value]' => '<p>Concurrent edit!</p>'], 'Save'); - - $this->getSession()->getPage()->hasContent('The content has either been modified by another user, or you have already submitted modifications. As a result, your changes cannot be saved.'); - } - - /** - * Tests that Quick Edit's data- attributes are present for content blocks. - */ - public function testContentBlock() { - \Drupal::service('module_installer')->install(['block_content']); - - // Create and place a content_block block. - $block = BlockContent::create([ - 'info' => $this->randomMachineName(), - 'type' => 'basic', - 'langcode' => 'en', - ]); - $block->save(); - $this->drupalPlaceBlock('block_content:' . $block->uuid()); - - // Check that the data- attribute is present. - $this->drupalLogin($this->editorUser); - $this->drupalGet(''); - $this->assertSession()->responseContains('data-quickedit-entity-id="block_content/1"'); - } - - /** - * Tests that Quick Edit can handle an image field. - */ - public function testImageField() { - $page = $this->getSession()->getPage(); - $assert = $this->assertSession(); - - // Add an image field to the content type. - FieldStorageConfig::create([ - 'field_name' => 'field_image', - 'type' => 'image', - 'entity_type' => 'node', - ])->save(); - FieldConfig::create([ - 'field_name' => 'field_image', - 'field_type' => 'image', - 'label' => 'Image', - 'entity_type' => 'node', - 'bundle' => 'article', - ])->save(); - \Drupal::service('entity_display.repository')->getFormDisplay('node', 'article', 'default') - ->setComponent('field_image', [ - 'type' => 'image_image', - ]) - ->save(); - $display = EntityViewDisplay::load('node.article.default'); - $display->setComponent('field_image', [ - 'type' => 'image', - ])->save(); - - // Add an image to the node. - $this->drupalLogin($this->editorUser); - $this->drupalGet('node/1/edit'); - $image = $this->drupalGetTestFiles('image')[0]; - $image_path = $this->container->get('file_system')->realpath($image->uri); - $page->attachFileToField('files[field_image_0]', $image_path); - $alt_field = $assert->waitForField('field_image[0][alt]'); - $this->assertNotEmpty($alt_field); - $this->submitForm(['field_image[0][alt]' => 'The quick fox'], 'Save'); - - // The image field form should load normally. - // Wait "Quick edit" button for node. - $assert->waitForElement('css', '[data-quickedit-entity-id="node/1"] .contextual .quickedit'); - // Click by "Quick edit". - $this->clickContextualLink('[data-quickedit-entity-id="node/1"]', 'Quick edit'); - // Switch to body field. - $assert->waitForElement('css', '[data-quickedit-field-id="node/1/field_image/en/full"]')->click(); - - $field_locator = '.field--name-field-image'; - $assert->waitForElementVisible('css', $field_locator); - } - -} diff --git a/core/modules/quickedit/tests/src/FunctionalJavascript/SettingsTrayIntegrationTest.php b/core/modules/quickedit/tests/src/FunctionalJavascript/SettingsTrayIntegrationTest.php deleted file mode 100644 index 4cb1ea56f340686aa9c6f23c37c36bf40f45a352..0000000000000000000000000000000000000000 --- a/core/modules/quickedit/tests/src/FunctionalJavascript/SettingsTrayIntegrationTest.php +++ /dev/null @@ -1,222 +0,0 @@ -<?php - -namespace Drupal\Tests\quickedit\FunctionalJavascript; - -use Drupal\block_content\Entity\BlockContent; -use Drupal\block_content\Entity\BlockContentType; -use Drupal\Tests\settings_tray\FunctionalJavascript\SettingsTrayTestBase; -use Drupal\user\Entity\Role; - -/** - * Test Settings Tray and Quick Edit modules integration. - * - * @group quickedit - * @group legacy - */ -class SettingsTrayIntegrationTest extends SettingsTrayTestBase { - - /** - * {@inheritdoc} - */ - protected static $modules = [ - 'node', - 'block_content', - 'quickedit', - ]; - - /** - * {@inheritdoc} - */ - protected $defaultTheme = 'stark'; - - /** - * {@inheritdoc} - */ - protected function setUp(): void { - parent::setUp(); - $user = $this->createUser([ - 'administer blocks', - 'access contextual links', - 'access toolbar', - 'administer nodes', - 'access in-place editing', - ]); - $this->drupalLogin($user); - - } - - /** - * {@inheritdoc} - */ - protected function getTestThemes() { - // Make sure to test with Olivero first to avoid - // https://www.drupal.org/project/quickedit/issues/3262273 - // @todo Remove when that is fixed. - return array_merge(['olivero'], array_diff(parent::getTestThemes(), ['olivero'])); - } - - /** - * Tests QuickEdit links behavior. - */ - public function testQuickEditLinks() { - $quick_edit_selector = '#quickedit-entity-toolbar'; - $node_selector = '[data-quickedit-entity-id="node/1"]'; - $body_selector = '[data-quickedit-field-id="node/1/body/en/full"]'; - $web_assert = $this->assertSession(); - // Create a Content type and two test nodes. - $this->createContentType(['type' => 'page']); - $auth_role = Role::load(Role::AUTHENTICATED_ID); - $this->grantPermissions($auth_role, [ - 'edit any page content', - 'access content', - ]); - $node = $this->createNode( - [ - 'title' => 'Page One', - 'type' => 'page', - 'body' => [ - [ - 'value' => 'Regular NODE body for the test.', - 'format' => 'plain_text', - ], - ], - ] - ); - $page = $this->getSession()->getPage(); - $block_plugin = 'system_powered_by_block'; - - foreach ($this->getTestThemes() as $theme) { - - $this->enableTheme($theme); - - $block = $this->placeBlock($block_plugin); - $block_selector = $this->getBlockSelector($block); - // Load the same page twice. - foreach ([1, 2] as $page_load_times) { - $this->drupalGet('node/' . $node->id()); - // The 2nd page load we should already be in edit mode. - if ($page_load_times == 1) { - $this->enableEditMode(); - } - // In Edit mode clicking field should open QuickEdit toolbar. - $page->find('css', $body_selector)->click(); - $this->assertElementVisibleAfterWait('css', $quick_edit_selector); - - $this->disableEditMode(); - // Exiting Edit mode should close QuickEdit toolbar. - $web_assert->elementNotExists('css', $quick_edit_selector); - // When not in Edit mode QuickEdit toolbar should not open. - $page->find('css', $body_selector)->click(); - $web_assert->elementNotExists('css', $quick_edit_selector); - $this->enableEditMode(); - $this->openBlockForm($block_selector); - $page->find('css', $body_selector)->click(); - $this->assertElementVisibleAfterWait('css', $quick_edit_selector); - // Off-canvas dialog should be closed when opening QuickEdit toolbar. - $this->waitForOffCanvasToClose(); - - $this->openBlockForm($block_selector); - // QuickEdit toolbar should be closed when opening Off-canvas dialog. - $web_assert->elementNotExists('css', $quick_edit_selector); - } - // Check using contextual links to invoke QuickEdit and open the tray. - $this->drupalGet('node/' . $node->id()); - $web_assert->assertWaitOnAjaxRequest(); - $this->disableEditMode(); - // Open QuickEdit toolbar before going into Edit mode. - $this->clickContextualLink($node_selector, "Quick edit"); - $this->assertElementVisibleAfterWait('css', $quick_edit_selector); - // Open off-canvas and enter Edit mode via contextual link. - $this->clickContextualLink($block_selector, "Quick edit"); - $this->waitForOffCanvasToOpen(); - // QuickEdit toolbar should be closed when opening off-canvas dialog. - $web_assert->waitForElementRemoved('css', $quick_edit_selector); - // Open QuickEdit toolbar via contextual link while in Edit mode. - $this->clickContextualLink($node_selector, "Quick edit", FALSE); - $this->waitForOffCanvasToClose(); - $this->assertElementVisibleAfterWait('css', $quick_edit_selector); - $this->disableEditMode(); - } - } - - /** - * Tests that contextual links in custom blocks are changed. - * - * "Quick edit" is quickedit.module link. - * "Quick edit settings" is settings_tray.module link. - */ - public function testCustomBlockLinks() { - $this->createBlockContentType('basic', TRUE); - $block_content = $this->createBlockContent('Custom Block', 'basic', TRUE); - $this->placeBlock('block_content:' . $block_content->uuid(), ['id' => 'custom']); - $this->drupalGet('user'); - $page = $this->getSession()->getPage(); - $this->toggleContextualTriggerVisibility('#block-custom'); - $page->find('css', '#block-custom .contextual button')->press(); - $links = $page->findAll('css', "#block-custom .contextual-links li a"); - $link_labels = []; - /** @var \Behat\Mink\Element\NodeElement $link */ - foreach ($links as $link) { - $link_labels[$link->getAttribute('href')] = $link->getText(); - } - $href = array_search('Quick edit', $link_labels); - $this->assertEquals('', $href); - $href = array_search('Quick edit settings', $link_labels); - $destination = (string) $this->loggedInUser->toUrl()->toString(); - $this->assertStringContainsString("/admin/structure/block/manage/custom/settings-tray?destination=$destination", $href); - } - - /** - * Creates a custom block. - * - * @param string $title - * Title of block. - * @param string $bundle - * (optional) Bundle name. Defaults to 'basic'. - * @param bool $save - * (optional) Whether to save the block. Defaults to TRUE. - * - * @return \Drupal\block_content\Entity\BlockContent - * Created custom block. - */ - protected function createBlockContent(string $title, string $bundle = 'basic', bool $save = TRUE): BlockContent { - $block_content = BlockContent::create([ - 'info' => $title, - 'type' => $bundle, - 'langcode' => 'en', - 'body' => [ - 'value' => 'The name "llama" was adopted by European settlers from native Peruvians.', - 'format' => 'plain_text', - ], - ]); - if ($block_content && $save === TRUE) { - $block_content->save(); - } - return $block_content; - } - - /** - * Creates a custom block type (bundle). - * - * @param string $label - * The block type label. - * @param bool $create_body - * Whether or not to create the body field. - * - * @return \Drupal\block_content\Entity\BlockContentType - * Created custom block type. - */ - protected function createBlockContentType($label, $create_body = FALSE) { - $bundle = BlockContentType::create([ - 'id' => $label, - 'label' => $label, - 'revision' => FALSE, - ]); - $bundle->save(); - if ($create_body) { - block_content_add_body_field($bundle->id()); - } - return $bundle; - } - -} diff --git a/core/modules/quickedit/tests/src/Kernel/EditorIntegrationTest.php b/core/modules/quickedit/tests/src/Kernel/EditorIntegrationTest.php deleted file mode 100644 index 29e5aa1d2e9eb21f8626d0355e2c3076c7ebf2aa..0000000000000000000000000000000000000000 --- a/core/modules/quickedit/tests/src/Kernel/EditorIntegrationTest.php +++ /dev/null @@ -1,259 +0,0 @@ -<?php - -namespace Drupal\Tests\quickedit\Kernel; - -use Drupal\Component\Serialization\Json; -use Drupal\Core\EventSubscriber\AjaxResponseSubscriber; -use Drupal\Core\Language\LanguageInterface; -use Drupal\editor\Entity\Editor; -use Drupal\entity_test\Entity\EntityTest; -use Drupal\quickedit\MetadataGenerator; -use Drupal\quickedit\QuickEditController; -use Drupal\quickedit_test\MockQuickEditEntityFieldAccessCheck; -use Symfony\Component\HttpFoundation\Request; -use Symfony\Component\HttpKernel\Event\ResponseEvent; -use Symfony\Component\HttpKernel\HttpKernelInterface; -use Drupal\filter\Entity\FilterFormat; - -/** - * Tests Edit module integration (Editor module's inline editing support). - * - * @group quickedit - */ -class EditorIntegrationTest extends QuickEditTestBase { - - /** - * {@inheritdoc} - */ - protected static $modules = ['editor', 'editor_test']; - - /** - * The manager for editor plug-ins. - * - * @var \Drupal\Component\Plugin\PluginManagerInterface - */ - protected $editorManager; - - /** - * The metadata generator object to be tested. - * - * @var \Drupal\quickedit\MetadataGeneratorInterface - */ - protected $metadataGenerator; - - /** - * The editor selector object to be used by the metadata generator object. - * - * @var \Drupal\quickedit\EditorSelectorInterface - */ - protected $editorSelector; - - /** - * The access checker object to be used by the metadata generator object. - * - * @var \Drupal\quickedit\Access\QuickEditEntityFieldAccessCheckInterface - */ - protected $accessChecker; - - /** - * The name of the field used for tests. - * - * @var string - */ - protected $fieldName; - - protected function setUp(): void { - parent::setUp(); - - // Install the Filter module. - - // Create a field. - $this->fieldName = 'field_textarea'; - $this->createFieldWithStorage( - $this->fieldName, 'text', 1, 'Long text field', - // Instance settings. - [], - // Widget type & settings. - 'text_textarea', - ['size' => 42], - // 'default' formatter type & settings. - 'text_default', - [] - ); - - // Create text format. - $full_html_format = FilterFormat::create([ - 'format' => 'full_html', - 'name' => 'Full HTML', - 'weight' => 1, - 'filters' => [], - ]); - $full_html_format->save(); - - // Associate text editor with text format. - $editor = Editor::create([ - 'format' => $full_html_format->id(), - 'editor' => 'unicorn', - ]); - $editor->save(); - - // Also create a text format without an associated text editor. - FilterFormat::create([ - 'format' => 'no_editor', - 'name' => 'No Text Editor', - 'weight' => 2, - 'filters' => [], - ])->save(); - } - - /** - * Returns the in-place editor that quickedit selects. - * - * @param int $entity_id - * An entity ID. - * @param string $field_name - * A field name. - * @param string $view_mode - * A view mode. - * - * @return string - * Returns the selected in-place editor. - */ - protected function getSelectedEditor($entity_id, $field_name, $view_mode = 'default') { - $storage = $this->container->get('entity_type.manager')->getStorage('entity_test'); - $storage->resetCache([$entity_id]); - $entity = $storage->load($entity_id); - $items = $entity->get($field_name); - $options = \Drupal::service('entity_display.repository') - ->getViewDisplay('entity_test', 'entity_test', $view_mode) - ->getComponent($field_name); - return $this->editorSelector->getEditor($options['type'], $items); - } - - /** - * Tests editor selection when the Editor module is present. - * - * Tests a textual field, with text filtering, with cardinality 1 and >1, - * always with a ProcessedTextEditor plug-in present, but with varying text - * format compatibility. - */ - public function testEditorSelection() { - $this->editorManager = $this->container->get('plugin.manager.quickedit.editor'); - $this->editorSelector = $this->container->get('quickedit.editor.selector'); - - // Create an entity with values for this text field. - $entity = EntityTest::create(); - $entity->{$this->fieldName}->value = 'Hello, world!'; - $entity->{$this->fieldName}->format = 'filtered_html'; - $entity->save(); - - // Editor selection with cardinality 1, text format without associated text - // editor. - $this->assertEquals('form', $this->getSelectedEditor($entity->id(), $this->fieldName), "With cardinality 1, and the filtered_html text format, the 'form' editor is selected."); - - // Editor selection w/ cardinality 1, text format w/ associated text editor. - $entity->{$this->fieldName}->format = 'full_html'; - $entity->save(); - $this->assertEquals('editor', $this->getSelectedEditor($entity->id(), $this->fieldName), "With cardinality 1, and the full_html text format, the 'editor' editor is selected."); - - // Editor selection with text processing, cardinality > 1. - $this->fields->field_textarea_field_storage->setCardinality(2); - $this->fields->field_textarea_field_storage->save(); - $this->assertEquals('form', $this->getSelectedEditor($entity->id(), $this->fieldName), "With cardinality >1, and both items using the full_html text format, the 'form' editor is selected."); - } - - /** - * Tests (custom) metadata when the formatted text editor is used. - */ - public function testMetadata() { - $this->editorManager = $this->container->get('plugin.manager.quickedit.editor'); - $this->accessChecker = new MockQuickEditEntityFieldAccessCheck(); - $this->editorSelector = $this->container->get('quickedit.editor.selector'); - $this->metadataGenerator = new MetadataGenerator($this->accessChecker, $this->editorSelector, $this->editorManager); - - // Create an entity with values for the field. - $entity = EntityTest::create(); - $entity->{$this->fieldName}->value = 'Test'; - $entity->{$this->fieldName}->format = 'full_html'; - $entity->save(); - $entity = EntityTest::load($entity->id()); - - // Verify metadata. - $items = $entity->get($this->fieldName); - \Drupal::state()->set('quickedit_test_field_access', 'forbidden'); - $this->assertSame(['access' => FALSE], $this->metadataGenerator->generateFieldMetadata($items, 'default')); - \Drupal::state()->set('quickedit_test_field_access', 'neutral'); - $this->assertSame(['access' => FALSE], $this->metadataGenerator->generateFieldMetadata($items, 'default')); - \Drupal::state()->set('quickedit_test_field_access', 'allowed'); - $metadata = $this->metadataGenerator->generateFieldMetadata($items, 'default'); - $expected = [ - 'access' => TRUE, - 'label' => 'Long text field', - 'editor' => 'editor', - 'custom' => [ - 'format' => 'full_html', - 'formatHasTransformations' => FALSE, - ], - ]; - $this->assertEquals($expected, $metadata, 'The correct metadata (including custom metadata) is generated.'); - } - - /** - * Tests in-place editor attachments when the Editor module is present. - */ - public function testAttachments() { - $this->editorSelector = $this->container->get('quickedit.editor.selector'); - - $editors = ['editor']; - $attachments = $this->editorSelector->getEditorAttachments($editors); - $this->assertSame(['library' => ['quickedit/quickedit.inPlaceEditor.formattedText']], $attachments, "Expected attachments for Editor module's in-place editor found."); - } - - /** - * Tests GetUntransformedTextCommand AJAX command. - */ - public function testGetUntransformedTextCommand() { - $this->accessChecker = new MockQuickEditEntityFieldAccessCheck(); - $this->editorSelector = $this->container->get('quickedit.editor.selector'); - $this->editorManager = $this->container->get('plugin.manager.quickedit.editor'); - $this->metadataGenerator = new MetadataGenerator($this->accessChecker, $this->editorSelector, $this->editorManager); - - // Create an entity with values for the field. - $entity = EntityTest::create(); - $entity->{$this->fieldName}->value = 'Test'; - $entity->{$this->fieldName}->format = 'full_html'; - $entity->save(); - $entity = EntityTest::load($entity->id()); - - // Verify AJAX response. - $controller = new QuickEditController( - $this->container->get('tempstore.private'), - $this->metadataGenerator, - $this->editorSelector, - $this->container->get('renderer'), - $this->container->get('entity_display.repository'), - $this->container->get('entity.repository'), - ); - $request = new Request(); - $response = $controller->getUntransformedText($entity, $this->fieldName, LanguageInterface::LANGCODE_DEFAULT, 'default'); - $expected = [ - [ - 'command' => 'editorGetUntransformedText', - 'data' => 'Test', - ], - ]; - - $ajax_response_attachments_processor = \Drupal::service('ajax_response.attachments_processor'); - $subscriber = new AjaxResponseSubscriber($ajax_response_attachments_processor); - $event = new ResponseEvent( - \Drupal::service('http_kernel'), - $request, - HttpKernelInterface::MAIN_REQUEST, - $response - ); - $subscriber->onResponse($event); - - $this->assertEquals(Json::encode($expected), $response->getContent(), 'The GetUntransformedTextCommand AJAX command works correctly.'); - } - -} diff --git a/core/modules/quickedit/tests/src/Kernel/EditorSelectionTest.php b/core/modules/quickedit/tests/src/Kernel/EditorSelectionTest.php deleted file mode 100644 index fefd2ad6d6889fcb325192b9665beb831f3206fa..0000000000000000000000000000000000000000 --- a/core/modules/quickedit/tests/src/Kernel/EditorSelectionTest.php +++ /dev/null @@ -1,158 +0,0 @@ -<?php - -namespace Drupal\Tests\quickedit\Kernel; - -use Drupal\entity_test\Entity\EntityTest; -use Drupal\quickedit\EditorSelector; - -/** - * Tests in-place field editor selection. - * - * @group quickedit - * @group legacy - */ -class EditorSelectionTest extends QuickEditTestBase { - - /** - * The manager for editor plugins. - * - * @var \Drupal\Component\Plugin\PluginManagerInterface - */ - protected $editorManager; - - /** - * The editor selector object to be tested. - * - * @var \Drupal\quickedit\EditorSelectorInterface - */ - protected $editorSelector; - - protected function setUp(): void { - parent::setUp(); - - $this->editorManager = $this->container->get('plugin.manager.quickedit.editor'); - $this->editorSelector = new EditorSelector($this->editorManager, $this->container->get('plugin.manager.field.formatter')); - } - - /** - * Returns the in-place editor that Quick Edit selects. - */ - protected function getSelectedEditor($entity_id, $field_name, $view_mode = 'default') { - $storage = $this->container->get('entity_type.manager')->getStorage('entity_test'); - $storage->resetCache([$entity_id]); - $entity = $storage->load($entity_id); - $items = $entity->get($field_name); - $options = \Drupal::service('entity_display.repository') - ->getViewDisplay('entity_test', 'entity_test', $view_mode) - ->getComponent($field_name); - return $this->editorSelector->getEditor($options['type'], $items); - } - - /** - * Tests a string (plain text) field, with cardinality 1 and >1. - */ - public function testText() { - $field_name = 'field_text'; - $this->createFieldWithStorage( - $field_name, 'string', 1, 'Simple text field', - // Instance settings. - [], - // Widget type & settings. - 'string_textfield', - ['size' => 42], - // 'default' formatter type & settings. - 'string', - [] - ); - - // Create an entity with values for this text field. - $entity = EntityTest::create(); - $entity->{$field_name}->value = 'Hello, world!'; - $entity->save(); - - // With cardinality 1. - $this->assertEquals('plain_text', $this->getSelectedEditor($entity->id(), $field_name), "With cardinality 1, the 'plain_text' editor is selected."); - - // With cardinality >1 - $this->fields->field_text_field_storage->setCardinality(2); - $this->fields->field_text_field_storage->save(); - $this->assertEquals('form', $this->getSelectedEditor($entity->id(), $field_name), "With cardinality >1, the 'form' editor is selected."); - - } - - /** - * Tests a textual field, with text filtering, with cardinality 1 and >1, - * always with an Editor plugin present that supports textual fields with text - * filtering, but with varying text format compatibility. - */ - public function testTextWysiwyg() { - // Enable edit_test module so that the 'wysiwyg' editor becomes available. - $this->enableModules(['quickedit_test']); - $this->editorManager = $this->container->get('plugin.manager.quickedit.editor'); - $this->editorSelector = new EditorSelector($this->editorManager, $this->container->get('plugin.manager.field.formatter')); - - $field_name = 'field_textarea'; - $this->createFieldWithStorage( - $field_name, 'text', 1, 'Long text field', - // Instance settings. - [], - // Widget type & settings. - 'text_textarea', - ['size' => 42], - // 'default' formatter type & settings. - 'text_default', - [] - ); - - // Create an entity with values for this text field. - $entity = EntityTest::create(); - $entity->{$field_name}->value = 'Hello, world!'; - $entity->{$field_name}->format = 'filtered_html'; - $entity->save(); - - // Editor selection w/ cardinality 1, text format w/o associated text editor. - $this->assertEquals('form', $this->getSelectedEditor($entity->id(), $field_name), "With cardinality 1, and the filtered_html text format, the 'form' editor is selected."); - - // Editor selection w/ cardinality 1, text format w/ associated text editor. - $entity->{$field_name}->format = 'full_html'; - $entity->save(); - $this->assertEquals('wysiwyg', $this->getSelectedEditor($entity->id(), $field_name), "With cardinality 1, and the full_html text format, the 'wysiwyg' editor is selected."); - - // Editor selection with text field, cardinality >1. - $this->fields->field_textarea_field_storage->setCardinality(2); - $this->fields->field_textarea_field_storage->save(); - $this->assertEquals('form', $this->getSelectedEditor($entity->id(), $field_name), "With cardinality >1, and both items using the full_html text format, the 'form' editor is selected."); - } - - /** - * Tests a number field, with cardinality 1 and >1. - */ - public function testNumber() { - $field_name = 'field_nr'; - $this->createFieldWithStorage( - $field_name, 'integer', 1, 'Simple number field', - // Instance settings. - [], - // Widget type & settings. - 'number', - [], - // 'default' formatter type & settings. - 'number_integer', - [] - ); - - // Create an entity with values for this text field. - $entity = EntityTest::create(); - $entity->{$field_name}->value = 42; - $entity->save(); - - // Editor selection with cardinality 1. - $this->assertEquals('form', $this->getSelectedEditor($entity->id(), $field_name), "With cardinality 1, the 'form' editor is selected."); - - // Editor selection with cardinality >1. - $this->fields->field_nr_field_storage->setCardinality(2); - $this->fields->field_nr_field_storage->save(); - $this->assertEquals('form', $this->getSelectedEditor($entity->id(), $field_name), "With cardinality >1, the 'form' editor is selected."); - } - -} diff --git a/core/modules/quickedit/tests/src/Kernel/MediaEmbedFilterDisabledIntegrationsTest.php b/core/modules/quickedit/tests/src/Kernel/MediaEmbedFilterDisabledIntegrationsTest.php deleted file mode 100644 index 341cb27636f616f4f81bb429206c097e4dcea2eb..0000000000000000000000000000000000000000 --- a/core/modules/quickedit/tests/src/Kernel/MediaEmbedFilterDisabledIntegrationsTest.php +++ /dev/null @@ -1,54 +0,0 @@ -<?php - -namespace Drupal\Tests\quickedit\Kernel; - -use Drupal\Tests\media\Kernel\MediaEmbedFilterTestBase; - -/** - * Tests that media embed disables certain integrations. - * - * @coversDefaultClass \Drupal\media\Plugin\Filter\MediaEmbed - * @group quickedit - * @group legacy - */ -class MediaEmbedFilterDisabledIntegrationsTest extends MediaEmbedFilterTestBase { - - /** - * {@inheritdoc} - */ - protected static $modules = [ - 'contextual', - 'quickedit', - // @see media_test_embed_entity_view_alter() - 'media_test_embed', - ]; - - /** - * {@inheritdoc} - */ - protected function setUp(): void { - parent::setUp(); - - $this->container->get('current_user') - ->addRole($this->drupalCreateRole([ - 'access contextual links', - 'access in-place editing', - ])); - } - - /** - * @covers ::renderMedia - * @covers ::disableContextualLinks - */ - public function testDisabledIntegrations() { - $text = $this->createEmbedCode([ - 'data-entity-type' => 'media', - 'data-entity-uuid' => static::EMBEDDED_ENTITY_UUID, - ]); - - $this->applyFilter($text); - $this->assertCount(1, $this->cssSelect('div[data-media-embed-test-view-mode]')); - $this->assertCount(0, $this->cssSelect('div[data-media-embed-test-view-mode][data-quickedit-entity-id]')); - } - -} diff --git a/core/modules/quickedit/tests/src/Kernel/MetadataGeneratorTest.php b/core/modules/quickedit/tests/src/Kernel/MetadataGeneratorTest.php deleted file mode 100644 index 2290024b20836670ee354567615239730904398f..0000000000000000000000000000000000000000 --- a/core/modules/quickedit/tests/src/Kernel/MetadataGeneratorTest.php +++ /dev/null @@ -1,194 +0,0 @@ -<?php - -namespace Drupal\Tests\quickedit\Kernel; - -use Drupal\entity_test\Entity\EntityTest; -use Drupal\quickedit\EditorSelector; -use Drupal\quickedit\MetadataGenerator; -use Drupal\quickedit_test\MockQuickEditEntityFieldAccessCheck; -use Drupal\filter\Entity\FilterFormat; - -/** - * Tests in-place field editing metadata. - * - * @group quickedit - * @group legacy - */ -class MetadataGeneratorTest extends QuickEditTestBase { - - /** - * {@inheritdoc} - */ - protected static $modules = ['quickedit_test']; - - /** - * The manager for editor plugins. - * - * @var \Drupal\Component\Plugin\PluginManagerInterface - */ - protected $editorManager; - - /** - * The metadata generator object to be tested. - * - * @var \Drupal\quickedit\MetadataGeneratorInterface - */ - protected $metadataGenerator; - - /** - * The editor selector object to be used by the metadata generator object. - * - * @var \Drupal\quickedit\EditorSelectorInterface - */ - protected $editorSelector; - - /** - * The access checker object to be used by the metadata generator object. - * - * @var \Drupal\quickedit\Access\QuickEditEntityFieldAccessCheckInterface - */ - protected $accessChecker; - - protected function setUp(): void { - parent::setUp(); - - $this->editorManager = $this->container->get('plugin.manager.quickedit.editor'); - $this->accessChecker = new MockQuickEditEntityFieldAccessCheck(); - $this->editorSelector = new EditorSelector($this->editorManager, $this->container->get('plugin.manager.field.formatter')); - $this->metadataGenerator = new MetadataGenerator($this->accessChecker, $this->editorSelector, $this->editorManager); - } - - /** - * Tests a simple entity type, with two different simple fields. - */ - public function testSimpleEntityType() { - $field_1_name = 'field_text'; - $field_1_label = 'Plain text field'; - $this->createFieldWithStorage( - $field_1_name, 'string', 1, $field_1_label, - // Instance settings. - [], - // Widget type & settings. - 'string_textfield', - ['size' => 42], - // 'default' formatter type & settings. - 'string', - [] - ); - $field_2_name = 'field_nr'; - $field_2_label = 'Simple number field'; - $this->createFieldWithStorage( - $field_2_name, 'integer', 1, $field_2_label, - // Instance settings. - [], - // Widget type & settings. - 'number', - [], - // 'default' formatter type & settings. - 'number_integer', - [] - ); - - // Create an entity with values for this text field. - $entity = EntityTest::create(); - $entity->{$field_1_name}->value = 'Test'; - $entity->{$field_2_name}->value = 42; - $entity->save(); - $entity = EntityTest::load($entity->id()); - - // Verify metadata for field 1. - $items_1 = $entity->get($field_1_name); - \Drupal::state()->set('quickedit_test_field_access', 'forbidden'); - $this->assertSame(['access' => FALSE], $this->metadataGenerator->generateFieldMetadata($items_1, 'default')); - \Drupal::state()->set('quickedit_test_field_access', 'neutral'); - $this->assertSame(['access' => FALSE], $this->metadataGenerator->generateFieldMetadata($items_1, 'default')); - \Drupal::state()->set('quickedit_test_field_access', 'allowed'); - $metadata_1 = $this->metadataGenerator->generateFieldMetadata($items_1, 'default'); - $expected_1 = [ - 'access' => TRUE, - 'label' => 'Plain text field', - 'editor' => 'plain_text', - ]; - $this->assertEquals($expected_1, $metadata_1, 'The correct metadata is generated for the first field.'); - - // Verify metadata for field 2. - $items_2 = $entity->get($field_2_name); - \Drupal::state()->set('quickedit_test_field_access', 'forbidden'); - $this->assertSame(['access' => FALSE], $this->metadataGenerator->generateFieldMetadata($items_2, 'default')); - \Drupal::state()->set('quickedit_test_field_access', 'neutral'); - $this->assertSame(['access' => FALSE], $this->metadataGenerator->generateFieldMetadata($items_2, 'default')); - \Drupal::state()->set('quickedit_test_field_access', 'allowed'); - $metadata_2 = $this->metadataGenerator->generateFieldMetadata($items_2, 'default'); - $expected_2 = [ - 'access' => TRUE, - 'label' => 'Simple number field', - 'editor' => 'form', - ]; - $this->assertEquals($expected_2, $metadata_2, 'The correct metadata is generated for the second field.'); - } - - /** - * Tests a field whose associated in-place editor generates custom metadata. - */ - public function testEditorWithCustomMetadata() { - $this->editorManager = $this->container->get('plugin.manager.quickedit.editor'); - $this->editorSelector = new EditorSelector($this->editorManager, $this->container->get('plugin.manager.field.formatter')); - $this->metadataGenerator = new MetadataGenerator($this->accessChecker, $this->editorSelector, $this->editorManager); - - $this->editorManager = $this->container->get('plugin.manager.quickedit.editor'); - $this->editorSelector = new EditorSelector($this->editorManager, $this->container->get('plugin.manager.field.formatter')); - $this->metadataGenerator = new MetadataGenerator($this->accessChecker, $this->editorSelector, $this->editorManager); - - // Create a rich text field. - $field_name = 'field_rich'; - $field_label = 'Rich text field'; - $this->createFieldWithStorage( - $field_name, 'text', 1, $field_label, - // Instance settings. - [], - // Widget type & settings. - 'text_textfield', - ['size' => 42], - // 'default' formatter type & settings. - 'text_default', - [] - ); - - // Create a text format. - $full_html_format = FilterFormat::create([ - 'format' => 'full_html', - 'name' => 'Full HTML', - 'weight' => 1, - 'filters' => [ - 'filter_htmlcorrector' => ['status' => 1], - ], - ]); - $full_html_format->save(); - - // Create an entity with values for this rich text field. - $entity = EntityTest::create(); - $entity->{$field_name}->value = 'Test'; - $entity->{$field_name}->format = 'full_html'; - $entity->save(); - $entity = EntityTest::load($entity->id()); - - // Verify metadata. - $items = $entity->get($field_name); - \Drupal::state()->set('quickedit_test_field_access', 'forbidden'); - $this->assertSame(['access' => FALSE], $this->metadataGenerator->generateFieldMetadata($items, 'default')); - \Drupal::state()->set('quickedit_test_field_access', 'neutral'); - $this->assertSame(['access' => FALSE], $this->metadataGenerator->generateFieldMetadata($items, 'default')); - \Drupal::state()->set('quickedit_test_field_access', 'allowed'); - $metadata = $this->metadataGenerator->generateFieldMetadata($items, 'default'); - $expected = [ - 'access' => TRUE, - 'label' => 'Rich text field', - 'editor' => 'wysiwyg', - 'custom' => [ - 'format' => 'full_html', - ], - ]; - $this->assertEquals($expected, $metadata, 'The correct metadata (including custom metadata) is generated.'); - } - -} diff --git a/core/modules/quickedit/tests/src/Kernel/QuickEditLoadingTest.php b/core/modules/quickedit/tests/src/Kernel/QuickEditLoadingTest.php deleted file mode 100644 index f2bd95f49d3200742c8720512b4450feaaf3e9ce..0000000000000000000000000000000000000000 --- a/core/modules/quickedit/tests/src/Kernel/QuickEditLoadingTest.php +++ /dev/null @@ -1,89 +0,0 @@ -<?php - -namespace Drupal\Tests\quickedit\Kernel; - -use Drupal\KernelTests\KernelTestBase; -use Drupal\node\Entity\Node; -use Drupal\Tests\node\Traits\ContentTypeCreationTrait; -use Drupal\Tests\node\Traits\NodeCreationTrait; -use Drupal\Tests\user\Traits\UserCreationTrait; - -/** - * Tests loading of in-place editing functionality and lazy loading of its - * in-place editors. - * - * @group quickedit - * @group legacy - */ -class QuickEditLoadingTest extends KernelTestBase { - - use NodeCreationTrait; - use UserCreationTrait; - use ContentTypeCreationTrait; - - /** - * {@inheritdoc} - */ - protected static $modules = [ - 'user', - 'system', - 'field', - 'node', - 'text', - 'filter', - 'contextual', - 'quickedit', - ]; - - /** - * A user with permissions to access in-place editor. - * - * @var \Drupal\user\UserInterface - */ - protected $editorUser; - - /** - * {@inheritdoc} - */ - protected function setUp(): void { - parent::setUp(); - - $this->installSchema('system', 'sequences'); - $this->installEntitySchema('user'); - $this->installEntitySchema('node'); - $this->installConfig(['field', 'filter', 'node']); - - // Create a Content type and one test node. - $this->createContentType(['type' => 'page']); - $this->createNode(); - - $this->editorUser = $this->createUser([ - 'access content', - 'create page content', - 'edit any page content', - 'access contextual links', - 'access in-place editing', - ]); - } - - /** - * Tests that Quick Edit doesn't make fields rendered with display options - * editable. - */ - public function testDisplayOptions() { - $node = Node::load(1); - $renderer = $this->container->get('renderer'); - $this->container->get('current_user')->setAccount($this->editorUser); - - $build = $node->body->view(['label' => 'inline']); - $this->setRawContent($renderer->renderRoot($build)); - $elements = $this->xpath('//div[@data-quickedit-field-id]'); - $this->assertEmpty($elements, 'data-quickedit-field-id attribute not added when rendering field using dynamic display options.'); - - $build = $node->body->view('default'); - $this->setRawContent($renderer->renderRoot($build)); - $elements = $this->xpath('//div[@data-quickedit-field-id="node/1/body/en/default"]'); - $this->assertNotEmpty($elements, 'Body with data-quickedit-field-id attribute found.'); - } - -} diff --git a/core/modules/quickedit/tests/src/Kernel/QuickEditTestBase.php b/core/modules/quickedit/tests/src/Kernel/QuickEditTestBase.php deleted file mode 100644 index 38a771f6d28fd3ce6e883eac87dc2dc9dab186fc..0000000000000000000000000000000000000000 --- a/core/modules/quickedit/tests/src/Kernel/QuickEditTestBase.php +++ /dev/null @@ -1,118 +0,0 @@ -<?php - -namespace Drupal\Tests\quickedit\Kernel; - -use Drupal\field\Entity\FieldConfig; -use Drupal\KernelTests\KernelTestBase; -use Drupal\field\Entity\FieldStorageConfig; - -/** - * Base class for testing Quick Edit functionality. - */ -abstract class QuickEditTestBase extends KernelTestBase { - - /** - * Modules to enable. - * - * @var array - */ - protected static $modules = [ - 'system', - 'entity_test', - 'field', - 'field_test', - 'filter', - 'user', - 'text', - 'quickedit', - ]; - - /** - * Bag of created fields. - * - * Allows easy access to test field names/IDs/objects via: - * - $this->fields->{$field_name}_field_storage - * - $this->fields->{$field_name}_instance - * - * @see \Drupal\quickedit\Tests\QuickEditTestBase::createFieldWithStorage() - * - * @var \ArrayObject - */ - protected $fields; - - /** - * Sets the default field storage backend for fields created during tests. - */ - protected function setUp(): void { - parent::setUp(); - - $this->fields = new \ArrayObject([], \ArrayObject::ARRAY_AS_PROPS); - - $this->installEntitySchema('user'); - $this->installEntitySchema('entity_test'); - $this->installConfig(['field', 'filter']); - } - - /** - * Creates a field. - * - * @param string $field_name - * The field name. - * @param string $type - * The field type. - * @param int $cardinality - * The field's cardinality. - * @param string $label - * The field's label (used everywhere: widget label, formatter label). - * @param array $field_settings - * The field's settings. - * @param string $widget_type - * The widget type. - * @param array $widget_settings - * The widget settings. - * @param string $formatter_type - * The formatter type. - * @param array $formatter_settings - * The formatter settings. - */ - protected function createFieldWithStorage($field_name, $type, $cardinality, $label, $field_settings, $widget_type, $widget_settings, $formatter_type, $formatter_settings) { - $field_storage = $field_name . '_field_storage'; - $this->fields->$field_storage = FieldStorageConfig::create([ - 'field_name' => $field_name, - 'entity_type' => 'entity_test', - 'type' => $type, - 'cardinality' => $cardinality, - ]); - $this->fields->$field_storage->save(); - - $field = $field_name . '_field'; - $this->fields->$field = FieldConfig::create([ - 'field_storage' => $this->fields->$field_storage, - 'bundle' => 'entity_test', - 'label' => $label, - 'description' => $label, - 'weight' => mt_rand(0, 127), - 'settings' => $field_settings, - ]); - $this->fields->$field->save(); - - /** @var \Drupal\Core\Entity\EntityDisplayRepositoryInterface $display_repository */ - $display_repository = \Drupal::service('entity_display.repository'); - - $display_repository->getFormDisplay('entity_test', 'entity_test') - ->setComponent($field_name, [ - 'type' => $widget_type, - 'settings' => $widget_settings, - ]) - ->save(); - - $display_repository->getViewDisplay('entity_test', 'entity_test') - ->setComponent($field_name, [ - 'label' => 'above', - 'type' => $formatter_type, - 'settings' => $formatter_settings, - ]) - ->save(); - } - -} diff --git a/core/modules/quickedit/tests/src/Unit/Access/QuickEditEntityFieldAccessCheckTest.php b/core/modules/quickedit/tests/src/Unit/Access/QuickEditEntityFieldAccessCheckTest.php deleted file mode 100644 index f5359d707a86abcc4fcb72ef35af40a858f9c4de..0000000000000000000000000000000000000000 --- a/core/modules/quickedit/tests/src/Unit/Access/QuickEditEntityFieldAccessCheckTest.php +++ /dev/null @@ -1,150 +0,0 @@ -<?php - -namespace Drupal\Tests\quickedit\Unit\Access; - -use Drupal\Core\Access\AccessResult; -use Drupal\Core\Cache\Context\CacheContextsManager; -use Drupal\Core\DependencyInjection\Container; -use Drupal\quickedit\Access\QuickEditEntityFieldAccessCheck; -use Drupal\Tests\UnitTestCase; -use Drupal\Core\Language\LanguageInterface; - -/** - * @coversDefaultClass \Drupal\quickedit\Access\QuickEditEntityFieldAccessCheck - * @group Access - * @group quickedit - * @group legacy - */ -class QuickEditEntityFieldAccessCheckTest extends UnitTestCase { - - /** - * The tested access checker. - * - * @var \Drupal\quickedit\Access\QuickEditEntityFieldAccessCheck - */ - protected $editAccessCheck; - - /** - * {@inheritdoc} - */ - protected function setUp(): void { - $this->editAccessCheck = new QuickEditEntityFieldAccessCheck(); - - $cache_contexts_manager = $this->prophesize(CacheContextsManager::class); - $cache_contexts_manager->assertValidTokens()->willReturn(TRUE); - $cache_contexts_manager->reveal(); - $container = new Container(); - $container->set('cache_contexts_manager', $cache_contexts_manager); - \Drupal::setContainer($container); - } - - /** - * Provides test data for testAccess(). - * - * @see \Drupal\Tests\edit\Unit\quickedit\Access\QuickEditEntityFieldAccessCheckTest::testAccess() - */ - public function providerTestAccess() { - $data = []; - $data[] = [TRUE, TRUE, AccessResult::allowed()]; - $data[] = [FALSE, TRUE, AccessResult::neutral()]; - $data[] = [TRUE, FALSE, AccessResult::neutral()]; - $data[] = [FALSE, FALSE, AccessResult::neutral()]; - - return $data; - } - - /** - * Tests the method for checking access to routes. - * - * @param bool $entity_is_editable - * Whether the subject entity is editable. - * @param bool $field_storage_is_accessible - * Whether the user has access to the field storage entity. - * @param \Drupal\Core\Access\AccessResult $expected_result - * The expected result of the access call. - * - * @dataProvider providerTestAccess - */ - public function testAccess($entity_is_editable, $field_storage_is_accessible, AccessResult $expected_result) { - $entity = $this->createMockEntity(); - $entity->expects($this->any()) - ->method('access') - ->willReturn(AccessResult::allowedIf($entity_is_editable)->cachePerPermissions()); - - $field_storage = $this->createMock('Drupal\field\FieldStorageConfigInterface'); - $field_storage->expects($this->any()) - ->method('access') - ->willReturn(AccessResult::allowedIf($field_storage_is_accessible)); - - $expected_result->cachePerPermissions(); - - $field_name = 'valid'; - $entity_with_field = clone $entity; - $entity_with_field->expects($this->any()) - ->method('get') - ->with($field_name) - ->will($this->returnValue($field_storage)); - $entity_with_field->expects($this->once()) - ->method('hasTranslation') - ->with(LanguageInterface::LANGCODE_NOT_SPECIFIED) - ->will($this->returnValue(TRUE)); - - $account = $this->createMock('Drupal\Core\Session\AccountInterface'); - $access = $this->editAccessCheck->access($entity_with_field, $field_name, LanguageInterface::LANGCODE_NOT_SPECIFIED, $account); - $this->assertEquals($expected_result, $access); - } - - /** - * Tests checking access to routes that result in AccessResult::isForbidden(). - * - * @dataProvider providerTestAccessForbidden - */ - public function testAccessForbidden($field_name, $langcode) { - $account = $this->createMock('Drupal\Core\Session\AccountInterface'); - $entity = $this->createMockEntity(); - $this->assertEquals(AccessResult::forbidden(), $this->editAccessCheck->access($entity, $field_name, $langcode, $account)); - } - - /** - * Provides test data for testAccessForbidden. - */ - public function providerTestAccessForbidden() { - $data = []; - // Tests the access method without a field_name. - $data[] = [NULL, LanguageInterface::LANGCODE_NOT_SPECIFIED]; - // Tests the access method with a non-existent field. - $data[] = ['not_valid', LanguageInterface::LANGCODE_NOT_SPECIFIED]; - // Tests the access method without a langcode. - $data[] = ['valid', NULL]; - // Tests the access method with an invalid langcode. - $data[] = ['valid', 'xx-lolspeak']; - return $data; - } - - /** - * Returns a mock entity. - * - * @return \Drupal\Core\Entity\EntityInterface|\PHPUnit\Framework\MockObject\MockObject - */ - protected function createMockEntity() { - $entity = $this->getMockBuilder('Drupal\entity_test\Entity\EntityTest') - ->disableOriginalConstructor() - ->getMock(); - - $entity->expects($this->any()) - ->method('hasTranslation') - ->willReturnMap([ - [LanguageInterface::LANGCODE_NOT_SPECIFIED, TRUE], - ['xx-lolspeak', FALSE], - ]); - $entity->expects($this->any()) - ->method('hasField') - ->willReturnMap([ - ['valid', TRUE], - ['not_valid', FALSE], - ]); - - return $entity; - } - -} diff --git a/core/modules/responsive_image/src/Plugin/Field/FieldFormatter/ResponsiveImageFormatter.php b/core/modules/responsive_image/src/Plugin/Field/FieldFormatter/ResponsiveImageFormatter.php index 331c278e0c0553f13e848df7b5a78cf3a405c7dd..ca3bb3940890b4ddd68ded5e78b5ffd29185a34c 100644 --- a/core/modules/responsive_image/src/Plugin/Field/FieldFormatter/ResponsiveImageFormatter.php +++ b/core/modules/responsive_image/src/Plugin/Field/FieldFormatter/ResponsiveImageFormatter.php @@ -23,9 +23,6 @@ * label = @Translation("Responsive image"), * field_types = { * "image", - * }, - * quickedit = { - * "editor" = "image" * } * ) */ diff --git a/core/modules/settings_tray/js/settings_tray.es6.js b/core/modules/settings_tray/js/settings_tray.es6.js index 7deaada89fa8583af95a25bb770344cfdfb8ab15..86910eaba19a7e666853711176549de83f4a1c05 100644 --- a/core/modules/settings_tray/js/settings_tray.es6.js +++ b/core/modules/settings_tray/js/settings_tray.es6.js @@ -12,7 +12,6 @@ '[data-off-canvas-main-canvas], #toolbar-bar, [data-drupal-settingstray="editable"] a, [data-drupal-settingstray="editable"] button'; const contextualItemsSelector = '[data-contextual-id] a, [data-contextual-id] button'; - const quickEditItemSelector = '[data-quickedit-entity-id]'; /** * Prevent default click events except contextual links. @@ -37,13 +36,6 @@ $(Drupal.toolbar.models.toolbarModel.get('activeTab')).trigger('click'); } - /** - * Disables the QuickEdit module editor if open. - */ - function disableQuickEdit() { - $('.quickedit-toolbar button.action-cancel').trigger('click'); - } - /** * Closes/removes off-canvas. */ @@ -106,29 +98,6 @@ return; } $(e.currentTarget).find(blockConfigureSelector).trigger('click'); - disableQuickEdit(); - }); - $(quickEditItemSelector) - .not(contextualItemsSelector) - .on('click.settingstray', (e) => { - /** - * For all non-contextual links or the contextual QuickEdit link - * close the off-canvas dialog. - */ - if ( - !$(e.target).parent().hasClass('contextual') || - $(e.target).parent().hasClass('quickedit') - ) { - closeOffCanvas(); - } - // Do not trigger if target is quick edit link to avoid loop. - if ( - $(e.target).parent().hasClass('contextual') || - $(e.target).parent().hasClass('quickedit') - ) { - return; - } - $(e.currentTarget).find('li.quickedit a').trigger('click'); }); } } @@ -142,13 +111,11 @@ .querySelector('[data-off-canvas-main-canvas]') .removeEventListener('click', preventClick, true); $editables.off('.settingstray'); - $(quickEditItemSelector).off('.settingstray'); } if (editButton) { editButton.textContent = Drupal.t('Edit'); } closeOffCanvas(); - disableQuickEdit(); } getItemsToToggle().toggleClass('js-settings-tray-edit-mode', editMode); $('.edit-mode-inactive').toggleClass('visually-hidden', editMode); @@ -241,11 +208,6 @@ if (!isInEditMode()) { $(toggleEditSelector).trigger('click').trigger('click.settings_tray'); } - /** - * Always disable QuickEdit regardless of whether "EditMode" was just - * enabled. - */ - disableQuickEdit(); }); }); diff --git a/core/modules/settings_tray/js/settings_tray.js b/core/modules/settings_tray/js/settings_tray.js index 773664e9bc263031b5edb12130ea7633c65fc927..de38668073a618af105d2b02293c50b7232c6866 100644 --- a/core/modules/settings_tray/js/settings_tray.js +++ b/core/modules/settings_tray/js/settings_tray.js @@ -10,7 +10,6 @@ const toggleEditSelector = '[data-drupal-settingstray="toggle"]'; const itemsToToggleSelector = '[data-off-canvas-main-canvas], #toolbar-bar, [data-drupal-settingstray="editable"] a, [data-drupal-settingstray="editable"] button'; const contextualItemsSelector = '[data-contextual-id] a, [data-contextual-id] button'; - const quickEditItemSelector = '[data-quickedit-entity-id]'; function preventClick(event) { if ($(event.target).closest('.contextual-links').length) { @@ -24,10 +23,6 @@ $(Drupal.toolbar.models.toolbarModel.get('activeTab')).trigger('click'); } - function disableQuickEdit() { - $('.quickedit-toolbar button.action-cancel').trigger('click'); - } - function closeOffCanvas() { $('.ui-dialog-off-canvas .ui-dialog-titlebar-close').trigger('click'); } @@ -61,18 +56,6 @@ } $(e.currentTarget).find(blockConfigureSelector).trigger('click'); - disableQuickEdit(); - }); - $(quickEditItemSelector).not(contextualItemsSelector).on('click.settingstray', e => { - if (!$(e.target).parent().hasClass('contextual') || $(e.target).parent().hasClass('quickedit')) { - closeOffCanvas(); - } - - if ($(e.target).parent().hasClass('contextual') || $(e.target).parent().hasClass('quickedit')) { - return; - } - - $(e.currentTarget).find('li.quickedit a').trigger('click'); }); } } else { @@ -81,7 +64,6 @@ if ($editables.length) { document.querySelector('[data-off-canvas-main-canvas]').removeEventListener('click', preventClick, true); $editables.off('.settingstray'); - $(quickEditItemSelector).off('.settingstray'); } if (editButton) { @@ -89,7 +71,6 @@ } closeOffCanvas(); - disableQuickEdit(); } getItemsToToggle().toggleClass('js-settings-tray-edit-mode', editMode); @@ -130,8 +111,6 @@ if (!isInEditMode()) { $(toggleEditSelector).trigger('click').trigger('click.settings_tray'); } - - disableQuickEdit(); }); }); $(document).on('keyup.settingstray', e => { diff --git a/core/modules/settings_tray/tests/src/FunctionalJavascript/SettingsTrayBlockFormTest.php b/core/modules/settings_tray/tests/src/FunctionalJavascript/SettingsTrayBlockFormTest.php index 3cbb80e96e5f88f86f31d559fb3cc1a7f7af3e65..fb56c046adbf3e21238bc43f36aecf4f61941b09 100644 --- a/core/modules/settings_tray/tests/src/FunctionalJavascript/SettingsTrayBlockFormTest.php +++ b/core/modules/settings_tray/tests/src/FunctionalJavascript/SettingsTrayBlockFormTest.php @@ -146,7 +146,6 @@ protected function doTestBlocks($theme, $block_plugin, $new_page_text, $element_ $this->getSession()->executeScript('jQuery("body").trigger(jQuery.Event("keyup", { keyCode: 27 }));'); $this->waitForOffCanvasToClose(); $this->getSession()->wait(100); - $this->getSession()->executeScript("jQuery('[data-quickedit-entity-id]').trigger('mouseleave')"); $this->getSession()->getPage()->find('css', static::TOOLBAR_EDIT_LINK_SELECTOR)->mouseOver(); $this->assertEditModeDisabled(); $this->assertNotEmpty($web_assert->waitForElement('css', '#drupal-live-announce:contains(Exited edit mode)')); diff --git a/core/modules/settings_tray/tests/src/FunctionalJavascript/SettingsTrayTestBase.php b/core/modules/settings_tray/tests/src/FunctionalJavascript/SettingsTrayTestBase.php index 3204dd0834d47641f5536c272d0eef4654981ed3..8f0803c2418d2774e0d16b93f08db1adf3396c2b 100644 --- a/core/modules/settings_tray/tests/src/FunctionalJavascript/SettingsTrayTestBase.php +++ b/core/modules/settings_tray/tests/src/FunctionalJavascript/SettingsTrayTestBase.php @@ -81,7 +81,6 @@ protected function pressToolbarEditButton() { $edit_button = $this->getSession() ->getPage() ->find('css', static::TOOLBAR_EDIT_LINK_SELECTOR); - $this->getSession()->executeScript("jQuery('[data-quickedit-entity-id]').trigger('mouseleave')"); $edit_button->mouseOver(); $edit_button->press(); } @@ -92,7 +91,6 @@ protected function pressToolbarEditButton() { protected function assertEditModeDisabled() { $web_assert = $this->assertSession(); $page = $this->getSession()->getPage(); - $this->getSession()->executeScript("jQuery('[data-quickedit-entity-id]').trigger('mouseleave')"); $page->find('css', static::TOOLBAR_EDIT_LINK_SELECTOR)->mouseOver(); $this->assertTrue($page->waitFor(10, function ($page) { return !$page->find('css', '.contextual .trigger:not(.visually-hidden)'); diff --git a/core/modules/system/tests/fixtures/update/drupal-9.4.0.bare.standard.php.gz b/core/modules/system/tests/fixtures/update/drupal-9.4.0.bare.standard.php.gz index 4432b4a0756408cf4cd87535b74438de8a23a3c0..2f7b0bb9413b2460586e8cdeafb2045fbb9c1697 100644 --- a/core/modules/system/tests/fixtures/update/drupal-9.4.0.bare.standard.php.gz +++ b/core/modules/system/tests/fixtures/update/drupal-9.4.0.bare.standard.php.gz @@ -1,4 +1,4 @@ -���bdrupal-9.4.0.bare.standard.php��]is���~~���U9gj��"o�yo�2!+�ԭrɲN�Ml����W��� K8s]3���nu?���X�����o��ƐP��������~��o�/̿-��|8dLB���Tڈ1��cy>b�ݭ3�������}�����]�����c�f +���cdrupal-9.4.0.bare.standard.php��]is���~~���U9gj��"o�yo�2!+�ԭrɲN�Ml����W��� K8s]3���nu?���X�����o��ƐP��������~��o�/̿-��|8dLB���Tڈ1��cy>b�ݭ3�������}�����]�����c�f ~���������`C�s�}� �n��Y�}����sLt�O!�f���۷!�u1 m�e~g7��:��w��8� .�A�'mq�*�pp�t��@&��M�B��n���o�icƳ����q��G�n�<���l��>����f��������ߙ�f/xu�~0}c���z�31�w��k���r�T<�g���A������qbcǤ�aԼg��7���յ~X��֫��JQ��ҟ�w�{9�'L���n��Db��{j��{$��~%��a�;��gQ]�=��?F�e�6����!�Ety�vý_�]/dܶ�D���*����':���i��,6�������쾫��Q�:�m����n=lĕe�7%�n�@���[=�;�=9������$v}\L�g���M���ܛ��QI�5q��`���3��ѩ_ +_p��-�iP���q����^tR0���c����Q����H��OG�"�.>Q�Q�Bt��A�W��<�uDq�2����`j�6�rZn���Z�����~��Ts�Yw�B&������3�Z�s���%�O��w0�=Z�u�3{�:��k:x %7Ll����q�u&vp��ܻ���@<7%�X�{���3�z��<���c\��KmACi! ��qwI=�r����ݤ|�Ya)3��4�#\�ϓR�-H�r}�(��a�@MA�.��L$.�;>4���-vq?E�nkH�W8p��ⶓ�(R,/��Uc��%�q�x���~B��i��в��5+0�`�:��3�S�s��f ����v�q1>n�[6l��c�%�=y����P�]�������2���+���>&F����|�:�&���bG6hX֙�PB��.Y��I1s�,�}���Iٛ�� na>��p�zǫo~d?�6>��Q^JL�J�m��/\XX������(i~J�$�z?ӝ4�PX6g��Ygs�ٜ�?c�zNMc/�U H����2�j���&��G�X@�w ����ov��c�e�x��nϔ&t�M��4Z�|��qN�A�Q���$��E��sܴ��(�4n�}V@l��H!��gL@���6�"%[�Ti�B'7�"npgDE @@ -27,408 +27,428 @@ af ��}�`���Ň?j2*�s��9\��F��U���/��v;�J�\�2�b�A^��Y�aF�L =e<������~Cv#��Zp�ݦ���E�2�%f�O2��= R����IwlN3�^�����wZmS����*3�(��ܷ ���$%�3 ��R\%�$V{yք(��i��v��JN� jq�b٣��#���G��2�E�u�~���̭�a�<GjJ��o�K}����� :�(�>�4�'��N��T�ה�pp���d��UB Q!9�F�DgT��O�bMrA)g��x�l�������S��oC��(=s�ǂ�d3m�Fh��b��fi K��.�P��C�&��Jex*�1��]�I� �?G���M�m���R�`�>�D2QZ�3��W�%�sZJ����H�b���'<8` ?`�R����1�T@�c��� ����h8\�UnAg\$�T�]#��0/���Ω�p�-�ߚQ,����%"p҈@�/v�n�Bۏ���n���/�C�*��,�W(VN'� 7>�Gf�|w��d|x~�["F�c�B�����d7�M���`�ɂ�������Q��@��2{$����ޑ$Y�y�����4����$�=w'0�o�E�L{^!l�U�d�r����@ګP������)��v?�U�l�q�-[�]�z��'��B�LchX 2�-�+��Ԙ"�+Ϩ@>�E�z���0'�Y�Ӂth}����r���4��@���(�3*�,#��No(��g��I�Fo�t�&����Hci�A�*����� ���#���C��*h�za�4�t�}W��'č��������JS0{��D�U]�0����c�S��j�]c� �oϱ�M�Y_�W�;��2 ��%5�(�8/,c⮎��%��F猗唠w�.a� �8�U������̽�699!�vƝ�pN�R�b�� pa,�B��k�D���珐 t�ؤ��N�<����`N -������A�^����]�X����Zs�&�0���dџ��Y���P��R�k�x�SU7ܘ���.�x��̋M�v���i�x�C��>�h���zq��t�|>�.���e+z%dY��� ov��9V��OҬ���{�ݝ����ƨ��E��7�-u4���No��zy��r��S|��hLf��z54��G3�V��/��K�����Bmcx���mj}�/�.�j�P�h��w�\��/�S�s�p���P7|o`�6�l��}���P��'��Z��n�^�*��n����߶� �8�mHT���;F�?��o�,����wR��t����;���Q�&�Uy� -mzߓ��v.[�vku����=}C1��Z�� mͫ���q�7�WwAs��^�;��� �X�>W�����S��۱��?Oܷ57���K\�����E������C�A�!`BB@!��}�7/��dO�!@q�fſ.B��v'�p;�;�o�>d��G�tm��tDL�m�TUo'�Z���.�3� -���ٵ��->��}������w;��'����va�[ -;5���+�s�����s�~��b�n -����)���� �P_X�B��ؽO�z���n -���u&P'�����߯w�sDZ�j߭B�Di���=��-4�c!��e݅�c]�Ƿ��g�WΉ��sO4�����E�dܱ�}���v]��s]��w���W�f^U*isRh�siE/3mc��~Q����_D��>L��P�y?�̘,�9P��͌K� g����"lR~B������ى��n����1��vfR�/8��m��d؏{�1�w��ö��5ocU(�DbcW�`e��o���̊�ɬ�Sp��j�����z��Ӊ=���y��9]�O4;�1��χ��&;�������ta��<�<���د�!.%�(`s@�(@�P ���9Rc�t�[U�Iq*��a�n�Nh��F5X�r\��|^������h�iz ����v:v)�uq�N�NJ_�K;��x��ة�>�[�rb8U�b(A�Z�� 39����@�D�5\#(q��U8�h��Ʃ�!�otL��a��$m��qh�]EA>�(=eT_��^5!�r���v�zc -�UfEe��5�e�+�T ��I]�N:���ƞ���M@<��˵��0p��x*3t(�.9�*� 7�b: �DJ�%�y�?L^S�{��\d?�uP�$��:@�.��Eß��2�Xw�SH.�[[4�G K�u�0�k)����;oT0z(��h���U��ת���%�C��W�فB�L4:|�j}�a��o�5���V�T���Ui�j�$!wPk|��qR�ʈ�"�Z;��� - H�H��L�0��$����Bŭ7�@9�ߞ��y�#���w�O�C���R��l>�G�z>��N���+�hmܚ�_����,��8��:�W�f�f���;��~W��Y�'G�]/�=x�����CG�B�S�*��\�*��G�F�<?8��� U����j��ښ��O���k�x���I�T�ead@y� -��������`h�$"F`&��\�emA���X��?!���n�?�͐�VD��8��x�`F�����Ǔ��F��������ڹ�Y��V_��Ԙ-�݅�T��r��?�}�r�oK�z5�A�,���K��W�O�\�?�=������b���.Gè�h�`�X[�R��+xwj1�g����k��=���>Mg��g����5\`̼��Q����?, 1*e7 � �c K 3�D��V��! SVA`�J������T_�\���F��/J�$Jo:aq�_i�����b��dhau�"��亜�JP����̬�8ά�}�,y�V�o˿�$��������e����Xl\��̨B����q�ו���Zmr;��lG p�?_����v�$ OJ���.I�Y�qoE�y�;�ԍo���G�{�!�T##�쮥����_���ҹb.8D��y�'{�����}�+��#.�hs����n�.�jS.���.'{H14W�ek�m����+�W��ZW�՞�+������ �H�vg���i��2w��H�_��Ƞ�$��do�=�W/B�����b�(b�8G�93�k<㒟$��N2��1�)8%bE��DZ��HA�xaU���<��-2�Y���v�J ��3,3�VR��8`�h~����%KzE</� ��AH�c|(l;ߍ%�J!��Ud�e��:f��:Ƒ�wչKGZF�Я�[7��H ��C5f�h�F1�:�v������ʛ���f1?��pK�zb8�K;u�K�b�P�1Vt||jTv��B��%(5�r+�S�3���Ø�( �Șf�ϵ��p{hw>Q��Kb���d�2ц�+x~����G�u���/r���eh���T4c�=.���T�ض�~��� m�_�jY����ז�-���O����(�m#�W��^U�*SC������$���/ލ7{w�*�#ƒ�%�{k��@�b� �(Ri���֦�%�D�ht�_�v�7�{6Ѳ�y�&�cˮ��o�p}��kł��4��bb@�/5sԗطK|E_Kb:�9{/'��'1��P@�a��%����9eF�Ahc�G�,#�'. �/@+�8!DdY,��°b�>}�Eq}��q���͏m��ޘ�n�r܄�mRh�3������Uy]��~���N\=IP,��������^0g -+F}���t^�9|ԫ�T�x���_��O9�$ ���9���W9s�oժ�>+�C��c�>��)����?��/�� -�]��W̯���CT$5>GIL��aw��r����F���r�a6���E��8f5|jD�*���U��)Ċ��e6�D؎�@_ʜқdgo6�z�^��vf�_��ҧ�0���.mAFj�9л�%O��Ъk��7�F�a[���mwѡ�mBZ�蜿�s�ε��8Ω���l�4Nj&.�?���iv�� A��� ck�{ҟn���)�g%R~[����XLP=��Q&,Q�9�?q��K�T����ċ��1�1����Ş:��DW��b���%46��j;[wW���g��0�������o��Nl�ae�IOCZ���~q�K����]�5��+���$��� -�8!n�ᩍȉ�r�^���!DP���;L��:C:�N�����c����N�gd�GO���1�g�'�.�v)�qK����F�n��zRO˛I���?��ͤ����+hc�6{���9�RO.ki0Zj��T�}R,��8*�lU\�ڶ������ (Q�'�z����28��D%�/������y�g.��2F#7�r��'Ͽ���;��Pݏ����&���/||en�e���7�Mfj���]%0;��+�#�_ةN;`����i������]�@ -'kw��Ʋ����;���S��O�a�z�0>�`<��"�3�������C������F�5�z�|Ip|��L��^�Y�R�5]c*� �,g$��'5� ��{FN��ls����8�M�s�Pyz!0CJB����S XY�')MR������zl~@���y�|�{��%|��4q��x.�i�f>�d�,�4��8Nw��a%��ӭ��ge �{��{6�� s:���� �mS&�����P]�N�@W~�?{t/Hr�iH,�q����}De�T�dHb? S/���W�U'���fEN�H� -t[��d���л�@pk�@��I�̊��Yț�����b�Z��� �β�W���|�/��(K�3�{��fi)��E�&+��U��{�.�j�udž��\x���""m���}���<�cM�qK�&�h<�D*�-2�;tۄ+J��<67u��㱢x��}��$W?�1��=k������4nrC�gN��S��[8_��@ u����Q�0�z�i=�_4��=��=�|lQ|�'�y���}inp��H�Ĉى��i�K��}Ёl�)��j̠����?��~���c�Û�\���Sf�8/ݫ�Uu]��o���0p�9��\v��Df�d(� <���DG���rɟt�K�n=�1y���h��u"�{uz�v�u���w������-��U���&V�w�s1/3<^V;K��6j�B��*���|�� -h4+�~�C4Rj�� -���.�;?K���8KT"��r �� �sZ:�w���x�A�f>hQ<��@�J�,#ɃFd�F�;e�{�#�'u��]낉�ݍ�[b�_[]�� �7�*��M��W�W�d�˪\J��������k@Eu\�����UE�V�Y^7o~2�p� -�ܬ�M�1�$ l��m��-��ۯ���~��$��_t�g��)ṕ�M;�}S -!���~0�Q�ڄ�����F����j�.I� S�A��&y@C��ږ6�ơ�"�I���K%�x���ω�����{��7l-�Ȍ�=t�����A���-�&>O��F��,�{H�O�}��p����-��qw7E6�-��)�Z���@d�@��!�Ϫޟ��-���������YA�V�+�I��AT�ݽ���E6��@�m UCk�ⴣ���_F���v���D*dl �]NY�%D�!o��?ifOڻ���%�W��Ufo�. -��7��%�@����g��ݔ��alC"1˅�<rE��.�C�&��2�H�����C��;G~�6��̟�B��dXhnv�wS��c���渧�����g�6��0�#`X ��K����;���qؓy쥏��4�b�L���j�O6R뭬jE����('PVgZ�hv�,S�0pu� ��,�4\���`�e]ۤ����c�ty�'MɁd6p�Nb��Im{�EMJ�M�� �b�Պ0dLeM���B1u�|�X�a����(si#@#�S��DFa��O�W�7����nZ��e-��Ep�Z[�RKQ�T��*i]��BL�j�02��M��A��UD��O�+�=����]�`��������b��On�J��bM�0��&z*- ;���W>�f�)Q-%�[��5Ϩ�Fͷ�q��/Q�s(�6����h�V�V)`#�r��*ɌϝQ�g�ՕړO�>o.[��#C�>11��\2 -Ź�H/tC)�$�h���n�N��fK�}�<9a6TVݑVp[@+!1��D�z�" "�ā���+�4v�㰉0/�x<��ٝ��ߘ%�q��(�(p���zW2�9t��N�훞�I��S1���(�E��|���>�NQ�� ����i�g]zt֣|y�K܃�iK�n+OB��]��8&���$�ԥ),A��"�<��b��OC>?ݐ��P�����}V^X�ܪ�I��^�g� �q���JQ ��{�%<cx�CA�f�Q�mbq�ڃZ�Ҕ9��A��|��G�������!f[�7K#�/wUq�&R�ٓJ��/����O�v����{^S�qȥ .�U��<�fY�)h�f8�q�i��1�ǧY�Fb`X=h}�Z'D]�P��o�i�^܃z��ŌPק�+Ơz(5s�3���� �ړ�5��C��E����ooc�C�eU��#�%��@����<P9 :Ƈ���\z)�2Pf�@^�;��!�����-�V���)�r�����i�(wm%'x�Q7 P���@jJ���a��OI�#,����h�y��цA�0g`�'b��!%q��@J�I�?����� ��(J���� ��{HE���Q�OB -���'qO����y��'�ӚS��Ams��Y�K+,d��x����G#�=�c�F����D �D��T�-bi&�<�ç%�QF�Q�.�m�=��S��L�IU�����^A�偗�`�� )#�Ÿ��D�,a]�1ƺH?J��K��%��;��~Fw/��y���RR��^ ᬦ�yet� -Tw���h��Y[�7�)�,N�;��� �L�ށ��[SrV��?t�9A �PJ�I���ݏ#�w}�K����ǿzk�=�G�Sk��o�P��_�_Jܽ�=���l���x� /"� (:�,p���A_�I���O@@#��ۀ��kU�OB�q�u)�7�8���>q�<�<!Y("7�j�dx2����2���a��[�sjz��A����J[��\vv����=�;�2 IJ@!P6��J<7`^$�$͞@64{���z�=A�.;Y�����q]�es�#A� -*�2�ڜL�uUk�����;z� *YO����u��N9�NnX�(����k\�:�dU�@@h/�<�߶� ����P��x��J�\ի�`-�0��T7䮋� -iׁ�+�w��vC!;�X�5z�]~#��毖�,�������mU��Ym1N��"�w�+�IXh����C��d&�0�!��iŬ}rzdr�!=��rV�.4{㏴�uŲ��7��Za�|�\�L$u}��՛�����r9]*&@ӳ}g2g�cR�S�W<}�4�ʧc�*���be��8S��+�{�qN��nQ����fͺ��*^������� �D!�F<Ľi�B�XLкC$ ��t9�+P�O���L�V�C�څ�9Nֵ9�Ja�~���NQ;�F�e��YÖ\9V##篰]��1N&@p�����y7e����A��ES ���/�Q����e��dnJ�ĥ����s�G�\� y��Nj���GJ�����v���Iŏ��OQ��1�m��zy/�s�2*�B~f� ~*\��F3t�\Of�K ���Ш�C���.ߨaӛj�h`�ڙ�y����mijY��}�ps���j(�`<�q����4��P?r �%�!19;#+��r�OX �oL.�5h�j -�%N0k�b-b�M��^Z�Mn&<�))uI����$.ð !dF���A��=�*�t1x)�a�캸���4�=�('�v=۵���dT+�S�x���dn�stUc7%^�zI�{@0 �H��W�w��3%=������$�G���&[�x��Q��Ee�O���~�i_���Khp�M+g���a7K;F:ֹύ��5A����B�*�������^,;(D#���S�o~�Z�V���������Շ��rqu{U䷠&���ڿ���-xy[������_����[1�����˯���h,'���� -\δ�ȯ��KhAB}��� �j|y�(� �r���_������~���?�|a>��y�B���:�Y���a�/.��/.uF���K�|{�|�V#����m�/�ѹ�Z�� ��ϱ�S.�b� �ZV��K�\W{�:��Ч���]1�_>,��`������]�{�%:y�,7}�U��P�qq�8��%Q���y�R/���l6ٔ��2��D� ���x9 �?,p�g�>k<� -��Z~���l�1k0d������EG��y�_h'Q��M6_��Nݠ�:�v����Dg-2�z1 �h�Z�4�����)��w�*[j�����}�7�v�fe�f;N~��l��Ҽ���|�5���B���ʺ�W#�N'�����5px�zx�[��o-�[�U3��p~��M�-D���}�3��p�}B7N��p:\�M:�q�-|i�� ��j^O�8-��jXX/�3t+~�0=�8�b�wE�4�3���$,eL".)9?�(��΄�(��V�����Pu�\/�k7ź�0zx\W�������:� �D�0����N8[+zѤ����O;�[��j�>p���u��M��G�ȓ������r�lY��(e�|У�zfl�g�[8c��דu1n�i����SW=EQ?�J�����_ใI�6(���zm���;+�A�Qxcn�NZ�T�q�������� `��>a�����mVUS�Ag]K3k^[���;c+cC;I�2z���i� -�:0��~�R\:X�Ӱt[�^.-�*օ���� -�����e�"!]?$ֆ���j�=�]E���[�S�k��!�^9�u<�d��t���YVʂV -{ �~�r0z�pm+�0G����Wzr9[(1����V*^��p3-��`*@Y��xUx-��L��3���ϛMgl������L�]�� �=�������Fy�H���1DQ�(va���!�=�Pdշڜ<�{tF�)���ϱ6�������#>+0��g���U�tEy�p2 0ZY��>dנ��n�K}J2<�d`�a:*���}mY"��Z�3��\�U�)��]� ���G'��?)�v�*��B{"�`5��e [��9�+�Y#�;�2�.�X�iB�Do^�`u;h�b(�c�f�9�ɥ��K�Y ��9?Uv߫�ʪ�va��^�n6m��T���^G'bV�7�3z�~���Tlf�Vk9��hЛ��6鰯�!��]���h��`5������N�^p]-�������������{������t�q$�Gd��Sp}�/uH��������Ȝ�Ȯ�R@�G'�"Ȉ�u�y�y���֏2O��v`����R�A�a�CUMUM��U���iC1��.O�Y}Q��L)p�����pBQ�)�x�*��+Z,,51��`n95 ���<g��Ak��� -C��>؉��������&�"}`T�2���`*0̅��-/�T�X��;0*O�y��������,������2�������<��+�~|��R$�� ���>6�����b&T����NK�%�Eyi������� Z��D7 �^lk��u�����.�k���駌�G��b��ֈ�s������� ��<��NP����`�"� $#�%B[�i����r��d��z�ّ@�6���7��"%?�2?{�o�+�f�b��@za���&҃.�vSVK�V�9�'?�i���Y�d�I���қ��bT�����0�O��4G~b�Q����/�ژT�h��=^}����UZs�`�� Hz�|B���Cr ����}ɗ)�VD�Gܺ,�@<-�E�� D��Є��1����� �Ƭ��h01X~B%� h(yi������ ��A�0z���� ��ӝ lJo|-���v<�r���0�dN�q��>r-���@Z�r�E���2ye�����<��w�=�vDҜ�@�'��#�tж����HK�n1��t��a4�2���������>~�۟ʬ!Qz���)� h'ˑ�����%��Α��,�Q�}B��Z��K>���Y����3�E� �R���G�T��Y���74��v��d�z:��ɐKp��h�BRE2�N���p��La�AO�EB������e�+4���/4p�8NqX�@&x��]�/�U�(Nf`Q7�P��5h���{�����r�g�˴��ߵ&��&�fņ����� "�ϛ�H����AV�.�^Bq<[K(8H@�������y��!L��W�S�C|:W��&Qt��D��H�*������ђ}�5L���jej[�&�f7+���A� D�x�>�f[�7�%�c�$�p���IA69]9�29�� -��3��'%��LJ����8����JcV`Kch����$٦D�^��~�ȥ]����%�dIFa;Z�4M�|�t*���.�^���J@�`�#��)�4մ~���v�&��~�Ut=u�|�U��Ҋ��c¸��#�8���}�?`Dly5cpOC��U֭4�)!�۾�&�z|V�)]MIDdUyPmUCTZ��_�vX��h���W��V��kV7:��ѱF�w�c������J�i0���Y:v��"�Y臡c�� �=\X�x[ -Ҷ�,�U�ۢΙ�я�����f�P�8>T���j��X�Z�H�H�N�~6uǎ���5�1��Y�e�I|ZP�N >nz�u���&�$� �-��;:�ΜŲa ���e|m�W-���N�M�n�j��Km��wB�KB]䄗L�y�.�Eg�x`��`N��`!4f|v��i��|��PsT��^(n�v��t�,mGu��ة�#n���I <Mqxs�O}����eYT���k�=���J�䄽����g�B��@#?�'F�51�G#�3b�C,8l}Bu蠡��]�"4��kv����Rm�$���Խ��sq�%I( ��qi�'�E�� -�?�����~�+��p�����rq�p_��j����(��u�GDG����@g��`I6�����@�h�mV)˯�AZ�h�:o��W�5�1X`< -IL�y\�>�j )|�#��'a%i�i&pv1� =SQv��I�ZƢ7��].^C\�?�#�,�e��]���SPD�~��K���n��o��W�Y�X��� . ����5��.��DB2�̣� �D&b����N��ȋ � \L�$ �.��� �Lh'8m:�<��.�ߓx�8��J��)\cNgZ&r�}��� �^&� -)�K��!�߽�]�c����7��x0�f?,v��x�����aW؏�]a?<v��=���3�8 o��"��������� ��?����Q+颿���������<C�ׇ��~|��{�TE��e{���w��l���|���p���_w�/�ʟ~����/�����`���w���/�eD��Ez��w�|��]�&��Ϸ?��ؘ>鯟a�>���_���V2^��J���gz��iJ��?}w�Vt�|���O���N�v�?�����R�*���|�B�߽�@W����B�-�������P}q�&����ٶ��1g� �<�a?���ҩ$�sg��*��!v6�=�Ş�2RE��)���Y�H���gESw捸#}B�Ԥ=�$y3�3��pK-��{����S5� sKP!R����<�/�&�����"ʼn���h��Ȓ�VH���1f;7S�O��* �`V�^�k4/���c�)�0Ss,����}�%�t�D��<������l��+Q@�0�4z�I��h/��{���2VW��JĀ9�S���/�?6/�AQ���7�?F�d�{��W"-I�3Q��wpo��q(Z ��|VȲ�ߌL㛑��u �y�e�� IWl��)e���%�t�l�\ W&2�O�!RڒvslkT�ŌA@}ԕ�t ����'�i���G��ITHv�Z�V��9����u��ǎ)�Ǒ`�G�˒�s?�h�p5.��x�����BG<�k[�O����V�kZ2T�#�IN��ħ'5��ܸ"ܤ��+��-��G���\ɩ�Rqe�.�+~�H�=�ҥ���2YkS<�k.֗\#��j���&���@Jt�ەI1�[ӭ�a�Mx����PJ!������Q��`���ny��z -@�7��5J�����&^B�"�x"�z�("%�/(��'�Y����O��uv^������<�x�B���`�bY�Y����k��J�Zt������~HA�����}u���'�}��G�Iw����Xf�ĠN�%�*Ȃ���f}|�f�,�gDta��û���[� �$�)|�<O%c��G�ز���Lꛔqnح�������T�C���<����T?�꾩�^T���V'�C -�����uJ�siC��g����ZR�c��sZz�j�p�_�墷wT�*�<�Mi�+�������_�����Ȅn��� -���'�&���$�*!�PekM�#@&t3W�f�x=�q��\Ч�"B���FE�ȡ���]L3�O,WS��d�a�^i�ҹ�5�b���K2�2�S/��kr�����6� �@$w,{�I?ߠa���s��1l�Qi���f,3 ���&_3�����B�<��ѩ�U��+1@�.Fe_���$�����L�6��#ZH`�0cr*��6čZ$���Fi.c�@v� �W����Tw�H�.#Q|" dC�q Bx�V꽔;�2���#�dz%�3S�m�eYBK&��f�.1�"'�&��;A�8�c�g��"�:�:ǘ�Q@�B9Ƴ$ ]���S�$���Z��=:R��QM� ER@���s�qy����Iq�9���sbj=0�^�ƥ� -�0.mD�~1��/%�A{�y�ݬ��Uu��~�6~�h� ��V$�D�l�D�Gܞ:I"ݪ$������#��"F�=b�:�sR*�L�>{p�b��Zx��k�1j0�����~����D ��G�Y���8;ө8{�8�mwjĮo�T-"�~���~7i/��@���]�]-H��h�O8�r.�RJ�C&F��9_�84xA |�ݢt@$���WJ��)G>�Ⱥ��=K!��J����}e\�����XYg��8��}��B�JY#�{\,'U�JD�s�U)4#�S���_���S~FO���B��e����*�B�ʴX�w��[����Ǚ��b��ˏ�C��$���<|1��T#�?��CPA7�����o+��GyH)S��Y�� �l�:]�sk��M/��(sL��X�)��b�[�|�찼�l��:�0Y�⤴*���b`.��55�Ңi��k8�|�&�P���X=����HN��[��U��qm���@�����LQ�n�@��� ؍ˏ��bI�`*4~&+$��{)�5+&� |a�7�J�z�Y�r� `�S^�Q"�R}ʒ2F"Wr��=�^S�B4� 3��CĘ�3����R��y6�C&���X �0�\=�'�I�o��R�M�Va0�V�Ņ��ls�e�o��oFLF��syQ �p�u��$��\��|6'�V��o��l����p� Ͱ��mo4!��IE�YBt *�6P,H�!��C7eM�[N��/lہux�\�T�I%@��<|�Q[���G�`�-���Sv�7l?��3l?����'d�[�_�Gx�>G.M���M؋4)=%XU�d�>�"��p������O�8��~a�[9`��{�a*��O��A��v�7�듣$R�ǽ�ͺp�Y�;�\��H�ut��ǿ�ĵ!�bH����_�� b"ǃ��_�xm��&��4��H�+ -�F�����g��JS�����bB��"�X�s��؈�>bx&��^��ZQT�~���o�2��� ����=�x�&|�K����jd���L�l7審+�T�'③J����إ��R��mw��ם���`o���gAb�"����>� ��Z�cʮ~���vi�{�j��D�W�MX"�+�ܤ���n�b�Rx��&&^9=�J�{z��m:o�fóH�3�3���_�!_���B���ޢ|Rm+���� ]�{�x)5s�"������j"�?���l��gx���*'�k�}`��)�-b~���ҖJ� )�G:�-�&WO8JW�49�R��V����$��Ty��%;� ��������JP�%>$�����Uk4���bI�.�Q�{)�������7]W��O�L��y�ۣ��)e�����2��BqE�ՈD5��,�)P~HO=KN���*e���%��\"�6��V��S��ҹ��RE�2'v �f�º"��X����P�@��}�>�^+��I��L#'��s�9R�.ņ�!U� ����mr$Fm�C��$�QQ�2��H�2�x<E{�رf�x:��q�O��o��aۧLy��X��J2ZV�Q��r��R^������d��ֺ��cm��>$�.���N��d�d�2��ǰ��j���*�ú���g㫝��Ս���t4=��#��Y8�E��o8\p����'���1����,�P��Q�D0���G�9l8{`�����3OLW���~�7K���[)�^z�Rb�&�^�Y����A$"y�}��ŲrVZL�fH4>.�����5{ �q�>#�=F��������ac6�A���u�C2q��3�0,$t��Ez��v�[m��T��[��2l2��r�M&�p�H����3c<�Ddk��+�����\�j-��![K��k�_�}�^��Rn��z��Uu`��o�s�=g0l��X���M JR�3���#�:����g�q��Ƹ�z�`*���#����."�?zk@�v�aGzq�Q����FRJ�t���Ө����餻�z�$������ {�u�A��AlLj�����~<��n>���;�s$!� 6{����� �,�~����{1�D�uSn�_�����5XÄ�<�lh��Z`C`��+>���Ȱ��gҜ:ɭ^��R����>Ȑ�}���]ƪ�7aY�D���r������<��e���>%��ѡ�"KC��I�Y]��kZ\�cC -���f�1���Ӏ7�/L�e3�!��j0O�+�tRH���-��],�s>`��Ha��r�/ ���l���o�I�V?zQ�@��C+5Y���{����{�xp�e� &^��(�������ʙ��_0;:T���bSj��4�R���Ke��2\b�H.ԡ��/����]l��|@[~9h��<�ׅ�*�!|��wt�Q`IL���B�z T 7T�_�K�+I�� -��s�z��[��S��JF��B� -X�k�a9�:�b�|�\o�8��s��}^H���{"$^<\!'J�o� _�1� &>j���T�)ҳ��(*�u@���_�Ҋ��M�0����tP��B�]� �?�k�x�%~�!�t�E0��%:M-��!:���l�q����C_��M0�#yB礽@�Vk��A/.��=%�����LԤP�+ @����F�z�AX�cD���ߕ�H-[D@`��Vt��9Z��_��~%}F�[aA��Z5rߔ)KUA�n �,�C�v�q&�_�ݒє�Ktձ Z�_��<�O�z> �����;`���Cx��{nL_K�}D�A y�}D��w�X��e����w@�6�a����w�UD��w�s�=g� �̀�; �;ΰ�;�; �����# ;Ҁ�; �ك�d݀�{��1h�UD���4��ƀI8`��&�I8`�f�$�$&���p&�I8`��&�-` -/A��P�xQ�y#�Z�[������{�cZ#�����B<? -� =DJ�0*6��c�0�pa��~���������P�>�l�������w�jN���F����ߡ�U�U�7�����l�&�,A��'a�ȓ��e������̦A��C��N����7�q:Fĥ8I�y�7ɒ�O@&���y�䒛Ƀ3�tG����F�|�:�M>��͏����Ҁ+�:�Cw��ZA:��*M�W�9Ix� ��q�MZ�>�Y9�4���\��*�:�� B�1.��$�"������zp ��� -�R;�%Tu�Y����i�yr=��F�4�Nc_�i� -��8���OT�ǫ�r$��2H�g!)a6yD�$���� -�|��m�o�����6dM� w�ɟ5R��'m�I��J1J0C�Zk.VMU�C�fӨ��k�V�����˚i(kk֔��T��|�%l�o���-��4[Z�֪h��ځx�ڴѳT�e�T�}�|eE��HVr� YI+�,�2��b�D� -��O��;�{�.���1rm -�*�fk��}��=Q�=��d��KU��O�&�%.��Ӭ>~)�#>���SY)$�*}���{�W�s�_���L����!�sƬS�K(RˋX��E�"�i�Q!&���YW���蘊�Q�WM}��jH0"�Q��T��b�X���3���@b|�.�ܭ�qI�V�blV�n�Ӝ�t��9��HvP�����x��L���{�s����n5+���prh���4��y�y��?�Hy��o����H����\*�3e8��4 �u,����8.6S70\sl��5v��73'�V6�BkfYAz��8�D.����o�S -�}+�(Gm� �D��5�9_�#$tF�x��nD����M�\h�ۖ�x�族�*�.N�|ơxF��S)�S~H�TԽF����u��]��n.]�Σ��졻���I^K��|U�e�A+��5d���nw���D��l��;����NuuR[���Z��/���Tۤ A3T��> -Cz8��q��nN7gps�p��v8ڽ�Z�����kj��S9��o����y�ڰ��K�|!+��Sm\���Q{،m �=q���y�U�_�j]ՠ��v�c���x�_d���OO���uz��� .�����;@��9΅7�� 6�`�pp�-"�f���&�K��22�� -;̣������?�s#�!_�c���?�m$_�BrS�������`���~�����]H�URV��b������vŎ��ϷB�������c�KVVDŽG����& -,�2�>r�$&& )��rHl�$.��$ �m�>�?� %�'�z���tģ�Bf!� �&��;yT]��X7�ƺ���C��qm<6�;zPɮ�q>�Dh�F��m�j�O��Ϊ����&������_q}�>愄��sNY_�<��N��PfE��L1����9)�(�_���-3[&ރ,��h��{��6��-�FO��ҁ�ϲ��5<A��A��5* ����J��Ŝ�!"�g~!��L?���Q -{;Jl�_�]hI�; ��5%��;I�Ƶȏ����@hh5�D09Z���ӻ(�gz�\{yB�p�����bPi{�ˀ�6� Z�M�5e�j=��O���"�5�1:d�k�kÖe���V���P�"a -�]��>I���MSK@�oS�m��Kh���j-��+�C_1Χrp��E8�P�G�P��y�i�O*�H�H$�0,K0�&+ֈP��J�5Y�f�i��%&����~rI\����V��.�8/]�v�\o��(�q�P��|�����t�C���N�*j����P�wW�ՒԽޞ�������Ep��E51,��7�а�-��l��o)<�W���OM66듍{��eQ��#Z-���S�lKƛ������p\ؗ m8_�&�p���������k����k�U�4Q���-^������1��#q%�Lb�VM.!j�gf�j3 �D�i�R�� ����p�a*lF�a5o��dS���&E�͖�1���u�H[؋M�*ް�5�����V��b#�G!5)�5����k���l;�?�wl%�l���7�}�{������m_<u�2�Jp�#A�ʭ`�U�kY���9��%�� -�K:�: -�3����E^k⬻�����&o4��9^,�� v7W8zȊ�"�ϊ�{��A4�<ߴ�^�T���AG�$����%t�J��ǟ�4 =�� �|�g ��ꢟ�c�֟F�$��|�M��T�*�[��7��A� n�p�G�y��H�ҕ�H3E�Y��uY�Ƌ�2���Y���R�&���6=�k_��x�uKdmQ��d5$��d�+���mr9C� ʻZr�R��F|�%�9�mr���\d�=K2�Uh���8�+�!yv\p���>������,Ov�2;N��AB�PG���?����?��柾���=�tm{�.@�A��)@�T�CS9�0�Rչ�H!�pJ�Gg?T��Ԏ�R�B%�Z�r�8:_ -���q�v���㢜�Q�ƹ���}Q�e��݁D�I��$�[�0�I���d�}Aƕ,g��m�L��@�����pI���6�%E!�=�dJ�vw�Lt�X��,��T�k�x�%~��tK:L��N�GX,� -,�CC���?yn�+5��!�S�$;F�]m�K'�@�&DV -}����:ϣb��7��ŭU?aʳ��-��S�ˌ���f��c�qg�00����f�ab�ባ������.y�����]/G"�V��V5���5 �"���6��h�.پ�zR�Fїg[� to����tN.Ư쭚�+m�����jN5�-u�wBǙ�qs�=���Z_!=f�ߡ�ۍ�J�^ 3��Ֆ�P����P�骃Pj���2����!��8c,���+9)��/����\�h��=h�`�^�~���v�@���^m���C��i�n� 5��I!RU'�݃� {��� �W��}e���$�mf�a�Ex���f��˱G�]�(G��;u��A� bo{/�.*��}r��q�EQ3tcɓ(����Hp[E��7��^�ͫ��j�� -_\�e=_����"x���M��:�p"���nqT!a5J#lk�Z�%C��ݫZCKo�k���� mi{����`D�8�6�H��VI�T�� -��SS���YrN�^tK�Ebo�[d�<)It�� Hu2�h���v��� -���}�&`��4��A�"�� Z�$/�|�����|�]�x�hl���xt�~�D�H�lD�L�rc"p#a�������2��Q��P<����u��pY��v�E��{� -�ˢ��#�?�2.}�YaQ�L\�wpo���9������C���fdߌ,����QA���Dm\��V�S -j�x�f>��Ҳ���0rE����>�tJ���n�������R��G� [���=�;9x��('���Wt�d��2� �9��aӌ=9�|�A�M�W����*\b��絏lBNXQ���ꐃ'�r�O^��)Gq�&h��JаI��4J���r#t��C���s�qѪF :Z���ԻhQ&{(�<�]HI��Um͟�����9��l.�,bU�Օg.�m���&�2��ҧd`_k�ݒ~~m�w����ܪ�W�탪._]�h5���J0�H�h��:?コ���Y�(Zg���P��>�_5�����L�ú"�N�QbM�c�YCP���z� -�Ѕ?��az-v�$�n�� N]��r�����ل�p���Y��F�ڈ�=e�� �TSԔ���}�J�/���zƶ��Br]��j���*et+���Е|Z�3b�g)��t �ӽ}�2���ޯ�i�!nxz��n(譮��s���rb�ӰY~ɦ�y�V ���]FDր�2ȭAn�ࡊk�H��^B)�]�� - P�S����H�mU��D�͈���D�@NէE�8-j�;4�A8 �iHz�'={��Ъ�4���Ҝ�!��:Ӝ��}�H�8��}��}�rg95q�N:B��v4��Y��d�$��A�1�x�~h�-��3i��Nt����,W��d���@b���nF���/���Lid��<�Hj���̓�Į@Б�`��w��Ж�OI��* ���g!-�Q�:�Z��j9L�^4Y.��,Ӡ�o����t���M��G�p��@b��x���[�ц0{� ���XH 0��ND+���Y���J�Od�b�LJYq����,FZ��ko\7C͈�G5W��k��$�R�R4.�����������Xw\T��.��"� ewJ�HǚO)uuGf�R(9�o%�P��Dh�5�����cV}�XMq)V�4鞮Xb��`*��'���\��> -sO��t�[���'�o�^It��hmЙ�m�6��9��m,��/ ����Ƿ��\1���6ržD�� 0U�*{V�9�m���4��N0�A`��7/���m:GWٳ�5�f|�R���Pms����~ ����%�5�7E�g�n|r�Ť<_C=?R���������#�,�+��SD+lb��FQ�G��j��f�h�m��&���������[�b�?�2%|5"N���59jf����䄎�HG �6{����� !q����s���{p��u�����.�a)����S�ڠwެ���զ�j=��6<��G8� Ά��'ų9W�&��V3r�c����!.F�,[�hr��1��3���o�g�159���'x|�h!�|��Au¥]U��ڗ��2e]��G�ؚ��I��*�V�.�K�J��yh���}D(?��_�y�<���!!{ J���71��Y�L�UAȽ��ט*8�PT-���]�E�� ��}����we4�.[�iVMf?��S����?�v�����������CppO���5������noh�=F @b=%����%,���!++�|M++u�����=����R�����Ȩ��X5x!B�v��h�B��5}"��]A�,����@-wU����Ƨ����=��l��\�@���q��t��j�������R�4A̱�p�x�QG���?����?��柾����=�m{�.��A�)���S`-U`��!"��@ ����QH��L|h�C!�f�o��2��s���P �Fo�|�?��h�>��;�!��5�I�z.F�!���v��p��,mL��ڧr�*��Z���8��w �Bs,o��o `�.m,�Ӡ�������˩��ߺ�����<�`�<���� *k!�>�?TY���ݕ�9�:'� j��A�N�V�z�%��&��""� �4_E�yl9�Y��3k�YV2v+�a��؞�bӜ���:r�h9`��PH���@������t4���$��p�o����7���h�m�����~�d�V��c0�ڜ��0��p8��r�;ն�"����3�� 9rC���$��S�[�-#�h��P��hlҫ5u wuu �kd;Ջ5�Km����a��� ��v�%cA.P��#�f���P��}Q��F���9w�l� ���fCp��`X4���w<x�A��K������~�ҬC��b�yn˞ڥf�S�XO�R6P�I��(ˈ&;���I<���6���F�l���>%���a�@j0τԠ������d$_?SAѭhw�^[}���&^0�)�YW�!�X�a�����!�kν���k٩��Q�w�r"��i%�������T�Rc�ժǯ55Z��G�WK��No��"g�H�VU��p�r�-I�]!Wtʗ�|�)����Ѹ-��s���\ ʐ+��߱t&ֳ命���m���V7 -���k��� -}y���;�v��%��[4�n���U�h(�?X!����s���2r=<��ЦN��Niy�N��U�!&��N��#f��Fw߶qU��#�܂�qpWh�G�5�o4}����?�[�]�d����٦_ʗRD&�~���F�;ts9�*�G���}��r���/A����B5.��r�Б8_���(@���������"p�����`�gF<��8;~��ԙ�}7��Fhfb��7�G���gׄ��2����y�O���D��>�F�%Z^���k��R�!��j� �mW�x�d��ϗ����!�^��*q��� 0D����4HXFK$,G�9�w�^kݺ�CY�m���N�Y��n��9y�ueU���/�;.cP��d�k��<��") ��J(ۡ�uUBi��n�����r��;E�S~���N�#g�L�'�{�=�Ⱥj+ �t��i��)Ʉ2��I��GL۬�s��!:g�ιDt���i���蜳�eP.��Em@Q�!5�8{�{kK�Y���9!PD�s����;W���m���������z��hW�%!�����Dg��N��R*�jO&�~0�7�M� -@5�v9ހ�W��'�A}�kt��f��H�W��+�8F�C5�.^��ox�!��d��s)��[���D.`l �ů�R}[F/x��͒�?�ә5v��3}+;n��V�����Xh��>0��]l�O�B�ip�~�7�(|��*�]\�r����H������ᗟF_����q�ی�A�k`A :�6�`��,��;���T���!;��K:��G�ꁎ��RJ��Y����*�?u�R0^��n/�ˀ�2�����;� � ��Я�� ��6H�g�ড়qY^�3����\�E_cj{x��� ��7��}�#� -l���1�>6U���<���5���*�-�A���͎Y�o�m�9��R|�����H5�@�TIS/ք1�lj}犙4h��)���� V�:�����O�$ot���-�kP�k�[h�,&ݤf6����F��͌fR� �x�R'�2��I�iUmCL�v��q��\�'|��9�g���yDIˁ��j"\��g�2����d��^u����w����}q�8����C�L���'�wj�0��P:K��@���[�qZ��+cR�ݟ����d� soE�Ҩ,$T�,�'�v4�r�/�/h������k:F_���V�&��*��A� ��� :��:�����7UCP�����jQ��@-)�"���*}��v��B�V$�6�/�*���x�!(E)n�\M� �7�g$��B�ݙ����*��y)�@���x��L�syy>HS� K=����;q��rJ�V�9�CZ�T����o#��6{����� U�₥%��ѿ�� k/�ȿ�b�喿�=%@����P�Y��E��B�C���Z�e�,�#���Er���M�-u���+@X����hֽ{�Sq�hqj��=ǧ90$���%8ğ�� C��$b��:)f�$�~�Gp��"�xlW�)� a��Ed7�q�����(����h�W�soQ���l %á�@T�L���}��F��(o$w�h����{Ǯ���g� -�~}B4��` -���}C"1f�[�}X��L)$3�a��(enqD�jI!Ƀ�6��$��N�d�2@���G���#���#|j�x -!�Yq��Bj�!�� ��SdS�J�n���D Փ'J��E�-O�F���V��h���f�Ҥ���P�J%��|�9L'�3��/d?��Qf����V��-�����E��'�6��%�����Ӂ�� �GӚ�Ԯ9��OO�����X�XwqW���H��h���K&�1��d�;��̓����WMH`�� 9���T��(�T6�8�ȗj��"���gY�vn�!F7�AtE+� F�8����k���q|�2����N�u���L������A�GM�W����>eU:j6z�f�'O<��Ϭ�ރ�(����+�lt��_J�J9�%Ko/���� ԗnVk�P�����> �%��`� -e<�?-U_������Xp�`�MV��"S�1����ѕ�Cl���H�Ujʴ�������: O�7� -��s��}ħ�qm�U��ϰCD�Y����F�UrB��~�,���69Bt����֛�`�R]xY��ߒ�@Ŝ6�E�٩�C��Ɠ��l�Qn�-��h"�G9��x@�7���o�� -@d�\6�]���/�Z�J�Ц�ٌ(/ ��Vgb�I$�v'��#Q۪�{� -�"ՠoi��!*s -%(QG������ rۧ��+���Xk -�v���#$g���ѓ?�Fz�PVʢ�̓��t�wR��W�r �����lkS�]3��K�#6�,$C1��6]���"��"|��^+��~�%�&��SK���Ng��$㩛:c�I�q��x����'����[lQ@�L�Ol�� ���l\HտH��s9dSC��{��%PP�`�@�'Ie���%߄�k^���� �Y�{��i�<U��}\8��,�<2~�ut��FߎT��Hx��r�%��9��m��9$ɇ�$�����sI@4N��hP'��i��g�F�V7�h�Xx9]�/���4�?�T����9#�K��/��ւ��ֹ�v-���2q$N��?H��� �9u3� ��ΝG}��\�An�p.�Q��}h��� �Qu*U(�j -P��[��kg�Pjr��>1T��� �n�q��~���͖�"-vRzJ����Q~ag{p�F<�+R��Zީ/�ˆ��I�D�����sJ�g���fg���L8�W����E�ܾ���G_�t��t �&u�� �ԵK2ii���l/-�AZ�.�1��x���*tEF��'*2*�S_u�Q����A?�����!����,���j�Q�Gi�`Seo&�:�7�����do�9�h�C��a��g���p�$�hd�� ��V ������Gu��� �o�f���bp����aY38LD=>U(f��F�~�&�T���|����+�WJ8p P�x�潟h��,��J�|�Q�C,�1i��i -�jv��I�� -���B�|k���t��3�S�9�/O�9�a�K?*�JG�^�_9X)[���/�W��tJ��% pS��&0���~fI����5�Ny<�h�s�˅�j�a�¹���r�Q*�9zz���~�jW�5�M�Kh��W�c�?U�C�*�J�Փ}��Zl{���?+88��e5��S\ Vc���nq�& -u��%pHJ��M@�H��!�ՐE9��6@j���너�jԪ:r�N�� ��3�}6�+H�n�R�wL[58�ҎlA١���Pڝơ$��q*U4q���5��~��F -�~��ʗz���7 ��at�X��z�r{L�PI�e^� -�����e���r'�Y"��Qx���1��scw�a2vb3��a�'��i�YlGd�#��?Et�-#«Ei����H�i�$���b�D��"�~�����Dw��!����c������wň�W��4��M$�<�A]���R��8F�����"��T��j��a�%2��m���e"�GDT�F�KD��Q%^��4��[g��['\Ih/�'��X�-Z!����}��@�JA������EYo�(3ѝ��~�FIj@���HN��c����[̶�>SmS��g�GЮ)�J웼E|IК�wFD����])`SC��x���0w|�Je�mXD��蜈��Dd�`��_$e"� �(��7������y�I*S$ōD"p$#������H�)ͷ-���G�~ ��"����C��4OA�H$��Dژ���<���%�;�����祾�/A�.��!�� ��E���莏#��<��J\k 3�$�]z�(V���Le�a��7DR�IT����\Vq:RBj>�ٛ'�o���H y�o�Y�珲�� �dG����|�(����F�"�,�����ՎJ|cyS��b�]����q��hC���£�C.���o4&��c�`կ�C�MW��/NQ�8����8�+/+�x������o1�Vw��[�%Fr�b�����2#)�@�'�|ח�4�yb�f�H���嚅n�6S����H:�Xԁ*i�f�Kd��>�*J��b�f���vx/��AE��ʩ�GYB�8�"~��0"z�՞�j�r������1=�����L����c��{�Q�8�XYu�X��XPݞw_���K$���7Ɔ��ǻ�����IGW:&.�/�ɇ�%��':COܵȬO��Z�2{B�:��餕�o�(�[�t��*�1i$�9F���H.��G�B'._~��@��Ki]B" O��L�w�T��mU�'ܑ|�}�B�qv� gwDO��-V��R�z�"3[>�Zל���ʏL�����H>���p���a��a)J8�I��H6�/5/(�7���n�(b�{��]������l��ܕyf^�H��#�wW�Hxޣ��]�����y.]$��Hq>GUg������2�ܗ�_F�3�L�(waF >�HrbF�^̈�1�.)�'#�Ī�:mX��*����$��z��Ξ:G��Ի��&7��9�e�o���>���+�AU���2�r�5$�����<��.��E-OOw�9�W�y������,HgV���طǎg��xf�cw���v�8�i����i4�, �D� n�����|�ء �^0O�b�a�q�珣W%A0����3Z�`����Ox�pL����>x�ox/�p���W�ǜ@��x�^oV��X�'q���IQ%�/��ڄ�R�hy�q�M����m�a��n�y�hT^���M�V���m��(�m6Dw2�BDw�{��l�HN'�F�=����l��<�A�қ�b8����9������Afl�#�2ҵ��I��#��,"�ӂ,<�%/��ʑ��:3���W -o�9>/��d)s } ���ҟ?��`�?�bd����]�B��*vT�r�c�-�����z�Ag�%� -yEN�SNNn����{rRU�=����HN��D�_if%��D~Fc5bΝ�ڽ!��Ƽ��J(�i8��p��uqd�2o�N�ⷻ@�/b�h:�z<���c��;�����F��ppF�.(��'̏_uP�?[����Oq�f�=Ts\�P����!ޖHf��� �(�����6���iZ�5K����?|�����K�����@�\Ŀ���I��GC��x�&�ht��oF��Hy|��/��i�� -��͡����;��v���9���_��w��o�R�Y��C��e������wp��؇��&y�7���6]!x��e� -~�~����Oª���=���؟���A�5�uK��m�#�T;��`\�|q�Tvv�2b��(b�V�T;�?�&Y��8�5\����Hi�l�Uؓ�q���j#8q�'О�����z�C"���Q+œ�e�TKxP';���z2!6�`�ftX�Uz��=�k��]++P~�F�i�&��U�aM�1�Q�f=��;���y"ȶ-%h�j�&��8�3�"ے��mg�b��d�o�c�-r�}l��1�~QCB>N�W��x�ڧR�����Iz�9�zqJM��FYVBN�i�B���D뫘T����(��W���yU������\}�������N��W��б���B���́x�~��b�;`X�._�9AɿT'��=u|��/�Aʓ؞S��&B�����&Ť����b��<�a�ݩu�F*Z^���5��s�~�:%���t����US�wjC���RX�e�l[�Ɖ�Qg��~L�i7B����&-�<;G�L�Dz�V�p��ۋ0{��V� }��Y�����GALf�q�m�q�a� #3��rƦc{c���xj�ؚ%f�$A������;o��c���+��U -��ߐ��$hd��B�>�r$V:M ϊǶ���N2�$'S+ɂ`6�,�q$~y$8 -4��I6���g�3�ٙ��c7�cǴ��t�� L2#t���w�akWd�Y-V��LcHk��x�#�r�,���-NJ=7�%�e4��5�k������/!��tTn����8s}s�8�?��dO�8K��j\��<*zʊ8e������<���37���9EI�q���D����M#m��]r�s>N�b�0S�EL�H͉�x�7�Rk�:vl�̤�0�z�u5�rgq���d�;��B��,�|+�5��2|��6�l��Z�� ���"�ˈ��6����b�sʬ�fh�q��H��V:��.���cf��M�p-S�iz1��Vl��llY�4��A�)ˋ�i���=la��� ��m�3���,ǡc�cf�a�~��6v���SAI�,t��B�a����==1��,E�o[��9�n�&����r7����3I�4�A���8ɦnl�Fb��Ȋ��4�g����K�&����G�� �Pb-G�N<����tӳ�(�'yg�Xh9ơ 2+�f�����R$Φ�!��9�{�"�k"edz�@��8v�F� �l6���K;��II$�N�^+�̩���8 ����+��4N�̝!+n���Q��C���to�ed ?�c�>d��u2�7+Mo>�HS��V���3�ӹ/d��꣸xE������9b�Ӧ�q�[��]���@�84�8��E���l�&xt� m��M��f���<Z#���Z�Sh��C��ىq5����ػ��A���*��g�K�5O�E$�}薱��f�S�����/=.S_�V��Z��ɜ,�J:Yf����؞�4�Þ/�Y������Ȇ���s��ЃfC��〣�,�Ghǔ#�:��hҠ�zڦ�X�4E�E�X���N�J,bD��1�}�1��o�9�y,�{�I# ��i��٨��]�Sv���Y�ӱa�H}1}<u��8��\#�gf��&jf���<���u�-b9��^j����c+ ��;�6��Y���떙MSp�&.Tn����a��a�S/��yK[��S���41}gA��0H�[q��z�i7��~z��;^�I��S�B&��f�e8c�sMd憆�6�z�ɓ�~:��,D�5Ѽ;���vQ�k�Nh&�,6��wʡ�����4ǡ����6@A2v}7�|� -���S��o'A�Z��Ǧ�"�bo<�M3�'$�i[SÏ�.���O�}���̎���X6�b]��mdS'q�q���,=��j4�S�7,g�8Kb$��q06Rߍߋ���Ig�&ljͩ錭$A���`�H:��a;���4��n�;�t�e�!���7����84m4���01�i�HO2th����-��ؖ3�&�=v���%f`%q� `[���R�̱g�h[3]DBN���Yf>"�� ���3�N����6��8 2�zjg�lϲ���õ�}ζ�)�q�H͛h/C�h2�m )M�ijC˝vQ���Է�Y��0��Sd�L_�v���Gh�ӓ �MB����O����L�]4'��}�����S %���u��p\��6ڠ�!F: l����^_s��C�m�t��"�mjͦ�盉e���{�C������)�nP�g.��m�M�1�c/��ԛZH�� -U��I{?M��Cff2C�c��8tcc�%�����!. -��������P�v7C�},��?53���I� ��ʌi+��=|�#��1vxS;��r���fc`f�f�0C�|÷fY"��ma�_�t��2���-�P�Y�sq]�t��fz&R�lsX�=a⢽ ��f{�$5��G��#�[���g�=2f<31�� ��c8h3�Ѽ5s �I/w��,�R����G�Gw=��>�$�����B��0��x[�6��f��Ϋ�X�st�A��3w��R���S���C��,Aƥ��3*��`�|�L� ���؝�w~R7�� L��Aړ�k�f��Mg�x'���h��a /K3#� ��wm�x ۓw?0-#v��eпe � ��ef���Č�}:h���aw�a���w� �ٿ�Yc���!ҢI�{m�z::7ę���鍍,�"Zʐ���ҩ7� ۋ�0nxD6�yF�xA;c����N`�Fv���y��"Vw�G�%�β!ijЎ���,;��������\g����f�|~� d���H��!@�O�q���6Cd��5˳�}�?�D4L�s�V�-g���x�Z�H+u@�Β u����>�Z?��7�1�4��,�ܱm�.�!�KS�b� �>ì2��a��E3E���W��2j��8NL���BmC�".# �Ĵ�}�i�~�~���'0�'��,}B*� 4�>j:��2g>�!�x�-���1�u�B������W @t� ��K!�4����س�rh[3�V�J���D���sΑyI��J$��������Y?���iO���܆�� �x�͓yv����Gbq��6b�)�\D��5L��ef�4���e��V�b8x.!1!IC�e�Y�/�vd��f�^`|���Y66,�;So7�8L�Ԟ9F�ƈ۴r�wK�S�q�� ~t�؉�t -��H3�q��'��hD�1p�V�A�kD�l�O9���q<��ff������©R�#p��X}�0��m�O*$�� ��4��t�Xә �7��NN]�12�5*#;5�#R�����k���l��t�S' �,�a��LY��yG8i� �?3=ȍ� -F63c'�-{fg]�8ed'���.�m��kLq�b?|��v��@r�p���i;�m�(~�f�3��d�3�)q��55-?tM��&��������q�N�,'H8"�s���\���������Ii�v��8��R#3��!gx��t�,�9VfO����e�)���#�а�,@���"vs��Kˀ@�,M<�L�]�����4�V���nf37��7;�k�����v0sCӊm����]v寑!���j�b�<��?6b�,��HzĮ����L[9Q�C��lcA#�R?�#-�������n�����6���`�����3?�%�xf!��I쐜�$v�خk�S��w��0�33N�̦Aj�ck������S� gR ���Z���_W���q����y�.�bo"���% ��#�J�Ї���0�����g�4C�K�L��� � �H��Y�y�{�\�j�Yǒ��̀<_�@Vl�I�m��oy~ܨ�N�X�2t�ᤱ�Z3�B��p��ff%w�L���Ms�l���3/p�ll%�p�n�Nf�d���[���(�8I��]��b�C:�5��4F*�� ��x�P�פV���������3 &�+�ƾ����3�: ���B�9l�E��lqZ�:O��Mv��$�3���ͦRpf�8N�y��̼�4B���7�P��9�ڤ����7�!Nq-�a� o+���3ݗ#!H1�z"�;�ʌ4D��LݱX��ɐR�n�F�ΐr���2l�m-b߆ls{�&Y���L#��ۖ���x:�kXZ�n�Ft��L��v?������-��~��,��p��ٺg0P��,c�`C�͒��������#Y��b/����7 �v,����u%�Fc���!2� @+��!�S�[�>pd̜}�'�5�NA`-�c9Nf�B�'��� ������i��u��A; ƆS�,Ͻ>V������W&K�1Ef��㻦${����p�l1$���3�mpB�i9c��|�7�m��$�Bo�o.-���5˼p���Ih�h���g"=�m�@�:���6��&N�@��������E�8 �,|����vz�i6CJ����:ٞ�С�O�|#3f��i6� lC�@���n -ȵ|�d�����!2g ͒�N���S���+�,��ϸ��@=��)VL�!p6b��o���O���# 5��4/�gqr؉ S��&Og�&��7��L.����� ��YzƅH�а̩��l���_�p15������O����8 �)Lp����Z�;���)�� �8tI`˚�l��Ea����7��7��P"�,w�5 �9�p̛,@��,��m����z��ۇ�b���̺� FZ�dO$u�ԇS��"�O��t��d03P;�_4$Iפ�$��"����NgH;7�1��_�N�[�.S�.��=)6x�.{�0��0#�hۙ"c<����x�4��}�-w'����@��q����4CZ(�i�M;�|�mT�LO�1佟�É�8�eM��də`L[F0F�5bF�pg��e���ռ8i�g�~� �=t�h�gfH�H3���l#�f�t����T��gZW�|����ӱg�@��q��Ɂo�nh���o��Id�Q���ݞ��� -����9OM3�R�cߎ�Q��mG���'�w��&�x ���֡e{��q@4�)D!�a^2M������,���o��o���GZHj�~�=%Fڭ�����C�dhN�֞�_�|��8�fI����a<u��8�c梵1�f$wP��!Ⱦ�s��wر<l�"���ț9���V܅~�����"�u3$�S� f.�t�q1ub+4]�H�}�+���o_8=�Z�p:�{6ugj�S��p�����e����͠�`�o5A������sg����b��dU�F�me��~��c�T�݇�d��E0�D�β��lf���2R�ܱ�eA`O��}���#h�z c��y����Yj���VN����"���n�[^�9{�<ط�ŷzc��jW�N٬v۬���=�1���pҊ�MX\��n]���G����x�_����eBꞁle/&`ޤ��a�t����2]&%3Vu&����`&t� -�E�,���1gq�8�D��G_�վ��lP�G���&5�1�2B��ԇ�h?�:t~�}��naz�Χ���t�gp�j i���,�2�$��!R痫��b��E�����z���cd��F��q�O��o����T�i�0s��d}�� E�Q -�d���g�M���<������/�I1!��O�o˶�0$-�I=b�01�tj�М���=?�|�.#�±Qo���;6���@��Ş?��C�`���<۬�۾���N�N�Ϭ�[ 4�)T�pܱ"��4]?k&iH�VH���l��Ԕ�Rc��4Ly�T�"�`�І���P�2�r�N{����{,NA%����z�g�_k��iZ[�)��j=?-��33�����F��MsmB$��Y'�t��jU�� ���,?�,F�=E[>�D��N����=[��t]9�?i�C3KS�JfA���b�*��YlBq'k�6)u��|UH�>i�c3u�v�ص0s��oe�,�f��Ke�<�4'v:� �9.9�������P�H D��a�����!]}:i�S�ˌ���H�F��� | -��f�ab��>O��������,�����3�Џ!�љ�hMI��L�L��T�t��Y�H[ǀ����2��:#�x]����>�� ��ǯ-�7xl���'_��ä�-� �׀L��]�k��v'xn�裏�� -㺡��m�ԍ1�C$�\ڡ����P�O;�%�V����l����BMMN�����@����Lg�'�q��g�X��\z�zX�,<�i�I�A��-�C>uR������h��S������F�/�m��J�C���茋�(i`?����6�u<��"i��R<��D�"|�B���J��?�"�'k���o�����Z�I'h*��� -ݚ�V����A�i�!�h>ж���~�u��w�ע2�攕�A����l���� %tP[������9&�+��w�.;�&0�o.�ͧ,��6^���n������t�G����\To��ӵ`c�a.�P�b<�o�m��y�{\�>�ݑ�*�����S�J3͟0��w<is����Hd2�u�&+*�Wo��Ѥ����B1u�9~���!$��I��|�$)-������l7��?�v(���9]�T�����אP�E^�����͈���,<}|�i/���Z��c�x��0B������'Wa��0���rҤ��Ԙ�� �ē���*�����U�B�v�=��9!6��������|��Xy�� G -��R�@:�E3V�c����� HV_&�C�&�1Yw�����������Oi���H���M�F�u��ڣ��/��|#H��D����Ʃ�\!�5�r]P]G.�%�TV�@�j���}$�6�\��(��U���% -"��i�ڭ���7���bf�o+_�0�Bi\��L2���G�#:DXJ�d���L�� �R9�dDZ\#Ad�v�-#4��1>��u��A��)F,���DxL�i"v���QA�MER�w{ v�|3!�(�u"�8L�I�L�p�Y}�S"6yt�D���|Γ�]Z">TjJ�-CZl�"`�O���*A������sM�N�!��iAB��9b�Pe��:�4�N$�P.}/͊d���2��X��.���|����'e��t�6�����J7$YE��Add��"R��$�dPَSٚ���)p�E��)j��?� a)<�m��և�F�@�ڦ��}�pe���5&���dB��tL� -�nBd8��*�R\;��@�?�����\��+u�E\���umT �/�[��X�D��Z��,���eZ � AJDT�g^U7�j����^z��ӫfW������u.��s�B��&�?��-��ef���Tn@�`��AO�I</by����Sҋ�Է�s9q<��W���6�g�h�ͳ-�V�S�������[O�w ��Kw�/� �"b����3:��� -��;| -� -��"^�N��;��镘�����6��[�6���U(��K�b�n����/�[�зO�-�j��rJ���ʞx[I��Y��$���-yYQ4 �ָ�l[d�K3��u��΄�3�/z��d�� ���0���|��/f�"߫�#m���O����m��h�'���D M�S~�)�4�̟;���|9[�W'u�aw%t/�� *�ijY���k�zf��"���b�����.�쬾�SQ��:��W��xKQ�ݒfȺG� m�I#.+��m�m����4�V�m��՜�1��J�{C��X<ؠ��L��S�i]���)j�Լ)�w���ŗ�ߧO[Y�#1[4 ��B.g8TkI �%O�� -�U������[���2@�B����+�UV%aW�1-��"vw��`%#%�����!�� �;*u��6^5pj�j��#�a�D�Je�[ER���Ґ^�ZL�r��{LDu��̋X�r>c���&t�>�A�c{��"����{U���ٻKā��csYL�'���Q�@Cc�"���R�.�]��W��F�Y�|;�� �fߔ-:y٫��^m�aO������d=Fw0�o뎸z�BI�� b?�y����ms}s�|�X*y4#&�+Y06n�*�e�Z�M�D�����K�d�����2��.1�, �a�}��$b���<-DA�2�|�-�)A�'�q�������K�~�����$��!��!3t�nhB�L���ZZ�x�J��T�R���p!���\� $q����kO���ŧ��MV�G���ww� �q�Q�>}O�p���x��?�A*�Iu��$Y��Xۄd���t� �c9M���`3��g�=�7��H��~�-?A]�1I@����#�|jX��9S:B��n�m�57� -7�%+�"^ �Iy�>�`�"�G (E��w����r�f-�¯�ֳ��a'x�g���K��T�6lb��7��"w14��P����M ,�O��l���L����e8�؎�N�8���y�X��P�1y JL��XG�a����?Hmihb�*������N�M�?�XG�Y�%|ղ _6�A�i��c��Rk^�m�lhcS��d�q���~��A�Aб|�b�s��}��L[aW�u[��������`_�`���K2�%��8H�4�ʮ�Ӹ�Qy�����7��&�f�ӣ�l����S���֯JV�NJ0PkbtN��/@����O���p�n.�3�c؟�p,��%ͷ��À�XaT�1F�[��b�~��F�AV:��ۖ���v�ۭ�F�s2��&n�2F��Zic��r�>�xӓ��rT}dR�LꤒWJJ�SM�%�&��p�Of�V�X�f]��0�҇���;���1柞�Ik��=���٭���������(7>���*���}x���q�}��fP���M�)O1ʗ�ϼ��j��|�����:�����U"��a�c�8���х����f��E���~ES�w|B��|���o ���闸@&j����-=�@=�Tr;�Z������j��˾v�9�6��/�+�8��"�}�],�%A�=�H��x��n]X�f��CAIP[���$�BS��lvP�Z�����Pڬ%�ᰇ��%^���Q��-S�Ǎb�qQ 6[���y��v�$�Y۪ѝ�*N��qo�����j����AL_���!�%٪ -J!�:x����!�Q)�Xg�����OH��� F������h����i�̓�# 0��T��8OZm:�n5�����:���1��h1��u�w�^Jb(�Ih�U����$�4v���C%�a�Jw�O���J��7)�[�h�\N��Q VE�$�ZC�P�ҷ��J(��'<g�:��$�AYb����ܲ,�w{�"�9A�Br,C�+�g���6����T�g��h]���|�N���lu�i<"AW(-�v����R�sƓ���T*]]�;�$���]��ދ�z�*�J#W!��m5�w?�Z�Aw~�����!�����i��T�e�K>_�SF�ց�k8�-�+�Q��a�L]6ٰq_C������W��^{l� %��m�=�8�b�z�!��r��.�]ğ%OU�z< rR>C�)v���q<o���6m��m�j�q>d��<��� � 8ԇ,f�r��\>�!�Þ竔Du�q�q�� ��N��h�2F���V�Q�P1x�� Q�/<��1��SH�� 51��ȉS�?� <����K3����@��Ն������b�\@�I(�Y{ 2���k�"b��@䀙����IG���M[���� �]�֝Fr�ГE+I���8zW��� -$�k��~�;��q�5j�V��V\�$2G���#�����lE��Th�*��Μ ���1w�b4N��| -�"��p�P���z.��i]��R��SE�vZ�衏3?<��U |�� -��k� �&JP�ZtȠewJ��_���`�v ��o�CT!�Jo2����C��n�2�Q�R�.(k@Y�����>@�W -%�uY��^O�i���QJZ|~�}�p��Q�M����`����\�q��:' �x':�sPHv��X������Zr�9���˒P4'�p_��%e���8�Ta���h�+a���H"�%$8���~�����U�^��BR��R+{��m��Uƹ���W���Qy[ek��+�u� -&��GE��r��߫�������&�p[�1��~kD�Š�-a�;ʷ*�U�Y�i2�7͍���|�7��HݻP���F�8��/��-ɡ=�8�ePj}�]ײ�~Q�n����Y�]Um���ܤ����.�^��(��=����F�����ۈ�F��6"�1�ӈ양8��$�j�Np#�7"'$�����m�vD�H��#����݈�8���o$�F�)oĎy#�7Rz#��7��z#�7��F���f�ʼnoݑo$�|#͡o$yG�c$��JӉ����eG����i�Ɋ!M/"�Ht'.�_Ջ�"9ǩ^'��uv����H K����W�w�ETD�ILD7���G��9�$�H@nD�܍S?�:��ℏ��턤j�) j_$�A#lC�ǷR��2-^%2����E2�xD!#��ʶ�OK0����3bnޒ�]����VX�8F�c$C�G�1��*Q =*R�Z�&��� <�xC��͕ -�ʖ0�u�\iz�#\�̢�,���d�:�V@g�.n��V�mYǂ5ݒB��[{����e�/[���Z���kSLe-)���Q�(�(��U*c9�?*���F�U�V��x�oCvJ�k�ؗ ���G�l=З�=r�'�z}�(�k�@�^�Z�V���,���K�Ii% -���__�䁈&%�hҀe�.���pA�� �9�� �*����[��/��6�nvw�2��N���u�Uf�&~����u��V�%���H��D�\%�fE��4b`瑔V.M�"�,Bt�M[p��7Rc��#�� lz�TH8��K|z8��أ�����w�&��� x_0���=�����8�u:q~iۖV��U�'�b�}����D��������,,(X>��i|�HE.~ɘm��ʕǹ�v��?h��eG�_Z�ﳨ��^��J����)��Dy�����}� -�U�s����]�`�1�D�g%�Hq��/ݾ�`�`�����kF��C�w�g���� |��bt�;�t)q:�T�t��"����-2�M�k��a[�/�I�nƽWڦ��t��5z9��=oP�c�u��{2��t��>;�K���{X-�5�^��)xC�����Xa����^'�qJ'�t��on���)mch��}ֱaXdž@�#x���X�cٱ�>��k����H�8���&��p�똒SiS�LI�=!/�;��"�����#a��J��Zb��,���kd�R�bu���M�3���o��h�`6ĉ����c?�u�AK�yx+5��E�d,A�RΔ_O��e�;�0��O�7x�o��oH��oHMjyñ��\,�d�Q���A=�E�=(xT�~� C l�O����8�q��+Ta�e0(9�D~k�����4�� �g�jJ�?�a����p�Yyb�g����E"�'�>Q{dJ��rnZ�$�ERvZ�b���5=�8U����@,�%����Uhe��Q���\}�$�<��ڻI�l� �t���I��j:�4���4K�E<���M�z�%U/�cQd��V��v<"����8�K\5RRG�7"�4"�WHMGXF�d0YV�[�w��:"�Za��� -�{�����&m�%s�s�#Q��7�Is$�WNJoqf>�LJ,߮ꢛ�[��N�`H-�_kë�j�%�_X�Tky0�O�D�o\2~JG�ɤ`���K%��N!;�sp�^�°�?�-=��Hl��;j>}r�WO<��j��A��� -�iz���v��k�$oC��M��,��Z����5��8�JS���Y�;�>���f��ټtu\z�.kP�<�5����~0]�[��������2D���Obh�P��yx���b��P�~�Ru R�[H �F��}�#�J��#��}TƧ�D5�H����z�Q}A����������u"�`����GR��H-l�b��{�z�E"-p� -������9Sk�|o�$F8�'��Ło��=U�Y�a�pD1��B���#�R������G�`T.w/&AW�^d,�J��^o��}ī�G�����E.|�%6t��������)q�v)hg��,R��(u��w�䲉 -����>�OU^�9��'iDy����Y�hjw'DQ{�UK,QT�� ya�ar�&:؞����P�ڒ%힗ꔴ{AvL=��^��$R�9͇o���(eHdOM_�H��j$��)����Y��N�`��kc����x#�����W�\�%J���=mY���P��+� ���P��7�c���,~�.B����7T�m,��6N����h�m�V�v[i��3�,��9�%�:�pq=�� p -Ŷ��~�hA|�)Ѫ~(���-�8�_PH�*�4ꨕ�J:������+�NS3�#��S�[��ViR�Kj��ub��Lҩ+���ĸ�+������1�jk9�휸֞+�l�������uV ���ݞF����-�S��qtki�n���U�ʾ��^I���U.���e]���K䝨�]�vx���)l?�o�tM�����n>����+fGzC�Q*f'��枚tJ3T��� -He��rm%�}��A#�ٰ]��l�<�����!�X�3˨��}Z���2S��%&y� -V��f8�!�r�DR��o�C����+Ks�r�I�:��G�JB��U�hV<� L�'��4?�Wz��ʕ�^ڷ^v�,J&���j�������셊b\-�:�+0�]`�ѝ���~���V�h&�v �J泦:]-�w��v;��L���F��l$��Zx�VK���)��Fsc��~��''�#a���j�:�x�W����b�%��Tt�|njlF�B����s��G�5�����Ze�V3>�\M3��*WӕG�#}9LL1M唩����V��ұ�w�_�;�O�QZ�V`�c�[�oK#3RG�F������K�� -�c�Rm���,�hMת���t�W�TL+�a/jV�Z?�/��z��un/U���sޒ%m��KD^a �=^?2�Y���+|G�c�ҩc��x�hd�����ط^LI�:$�_e4W+�yNR�X�Ѩ��˖Iq/���h�8M2ko3|�o����JRX��$?��������"!�@���!JZ�WO"B�xD3�����qA��di��q�^�C8/U�U��"��=��ۇ{�l���Ϣ�a�'�*T"��M�=;j4m_��y���䛯6�'@� -Hn���<b^"�'N�j�ٮ�_��w����2><�x �h�F�("�H�>������)�8@� ^�V'D~Mp��d���j�<�Y�h"�hD��Ⱦ��0�-3�8(�8�ޭ�8��f�)��4���b�ZU���pD��?h+ף�|D���{A���2h+}h+��$b��AK���\J -b�j+���-}�C�}I�ܞ���i=q�4!P���+������,��M�0�Ę�5)|s���ivm^;�5�nT���v<G!����}%�O5�Pr�I�L��i~~G�/|rO�F��4����@H#�%�jЬ�ЬlShVU�۷�U����# �g�$�fT�x�Y��Q�1ک��He�S�����1'�Ҥt�:/W���� �5n��gu���?Uݣ�QI���J[ٞ&�s�N�T���N��+g -�0ځ1��>n�'�eJm)��`k[���z��D��)�x v�hq8m�"m������T�A���#Ъ�@g���F;��GF��O���Q�Gs�h^�GS&���0���9x4�GXb�h��<�����GS~�Y�<��G�MNl�ͣ��y4%`{���֩8�5��km�}��^��k6�}�_�٫_Z�����d�k�����\]¯ D���d��D��db<����,3-�o�x-�s}��U[qv:%=����_{L�%@4pɧ�����5ť��+�w�R�RnH� -���2�:>2��F8�ƚ�-}�Δtr��A��y`��-�2/U)C]�3���B6(d=Wג�`�յ����`������0V��ʘ���X3�W��w؟NU��g��T���+�����$ޤ�q�}��a�,$SD���E��ɗ|�0Y�&3Z �j�-~�U-�ӂ���\%�)�iLT -���ݹ����Πm�{� -�?�`�v��U��T�ػ.4�b��|�*�|�pZV/BE��aqS��(q�t�.�Pu�IW�ut�eI!����R2�����X�Ĉ�1�<��{�� ��J�_��R۫�Q�� -����l��6�͋��� -�^�N�Y=�*uN}��у��5�{�� -�|(������]S -)W�ш,�����ã��g*vZ�\͚7�7�����.�MM�Du�/�?H�O����N�t*�|�XJ��������M��8ۻe�ZJ�(��"����^j�<��I&~'��.��%᳓^WP�-R�"C_Q�xz�X�� -�e� �{�^A�I'+�t����N\���=��~���b7+]?�6+b�F�w����>#Ov*g�����]0Z �����+�çxa>Ǜ�!���LdP�J�x�Hw�<�55���4ߕ��Oψ�m�e��udV�\[v/3�/,��/TL�=WZs�K�+;������N�-���`+Upm�=4%p�sD�:������վ�Ng��. �\��2�A�yuD�q>m�R�~T�-��Ro�a��c�����D��Ë�裿BA��M�b���<��[z��`�8���-�O�^#6D�>[A�c�T_솺}�Trn��>���4�gY;;��`s�l.���e�}"QF��h���b�Z���wV��A;�&��D��g7�Ű��MuJv]�����̃��ݞ��������$9/��,��(�$��V��&[����E���Y*kS.�u����&���6L:��p��Ⱦ��L|��c������>�G�v������Gj��~jJV�� -�ʱ;"e�#����ݱ��y���9�0��ҧb�/s��aՐq*烙Im�2)<����r4}�fG����r+����|�Əq�ʼ��~*_>���F+����=H�#�6�ǕЪ�Hߌ�h֫ R�F���>|��Q�L�N�"q������=�Zm�\�T�4Dȴ����ց�yd��۬���1�i6��K�B�?��u����Ԥ��$�1�(t�F�o%OK\�h�ݝ�4v8��ȥ���7:P�q�������KM��mA��؎h�b�ro����݉Bնن�>k:�RG��٘��0K�4�UY)���p[ }n�T�B��%3v��ǰ�����G���� b�l &�tư��}��@U��QE����z�7�izG�wC���W��{��F^��<�g^�@�xg�M.Aݩ��^�0/QԖ��J�t��z�|�hข�Z��ȍW4l������)D�T]K�8��W��!���J�J2fHp\{q�WI���Z��D���uy�;��}�/p���q��� ����]�ϖq�?d8q�J�:$������I�u����N�K�M����߫Q<��j����w�2�0�q��ʩ}���`���Z/7j�A�ރ�l+ -+��G�P�]����ems�h"~�{0&=� -�D�O��BVTa��&�Ճ=�vQ��@����J_�*�N�ŠJ�t�4��ג��]�6J��/ĶU �_�=%��%V"�"�*�ހ0|� �m��,,i��#��E�#j�R�KW������##�A���>���T��ѷ�"AVQ9I�'d���<{����������pG�S���]��hXM�uX~}���:\r���%1������`�=e#T�()K� |ND�.j���n����,�a��}���]�����s���s��O�����H��W,�~@h��0~�Ѿ�:�Pr�2e�%�����Y�����[Q -��O�J+��x�Z� QR\]�6��+�{����<�bn��4�J��ٶ5���R�c�&��xM+� ��"���;ш� (�V�{ҫ�kM���o^ԋ���v�$����3�7���8/��q`��߰�I慴��X�jˍ[��%�'��3 ��ĵ�v�~NJx�<;�s�v)��ųK��w� O��c-ڸE�ͳ�<�����fG�y̻�.G��2#R���F�K�����N#�5�'��k��E��&�]BtTХ�v>af�Z��xW���s[N*^ ��H�.�_U'�I�H�#�Ƃ�C�IY�� -�0}�ݝ�EN�C}ƞ�����!/�^9�|���h�AN��ݵ�R:�٨QOk���3�HM�c�P�=��AX, ���d���@(�a�sz#��tÜʰ[����Ө�S� ��@vs� �*@�C-��b �Y>a9�U��0Bc��%��Q�%]8��pƂT��<f[�Y춷:�=���x�Y��i8�ӟ���ᡰ������Tw�1|$��W�F>� -�0��@�'��f��c��&��%L�������{�uJ�G��Z@��b��T�v��|��%q��]�4��J�Ar�dϬ��</���z�Է5���i���V�S������˔���W�Ne�x{�^��2+?<�c%������`�A��<fj�*�?H��(�m\�H +���4�|xX}Y��<d����s���\�`�rwe2�(��'�A���%�f�O" B���� ��!�l�v��Ϥ�3�Sh�!UR=��z�`�ݏ���X��J������]�0����v��wśl��7[�"�_�g������a���{䎯���-rVՃC�z��Z�T���2�w�3^s�Q�|h��N�b� H�#�Vl�|���*���9�������oHg�g0>�*U��cE?����Nu� ���,X�2��,�Lu�9�Z��*�a��g�Y'oB���N?F�%���0��R즯��y�`5N����FI�~t�مke�z����3�T��,%��[,:\)F5s�c�I��DYA=C�M� z8K��x�*+V�Y���p?_>>�c3�>��L�{o�k�����։��9�i6k:� -ʌ����S�~/����h6�?�{Ms��6�b;�G�RO~���-��8���mW���A��������W�F�7G�0b����@�8�?tWNt�|��թ<8���}��}}����+���:��rd.^��F��j7O��)H.K/�Ye�?�����7Jb��P�}�`��$����?��T}�h�#B£x�B;%���Y���)R#��f�����8������!��Zd�~��n\���Xz(F���)$ ֫� �r�,�PQ�]��o�̟x:O�ʴG�2�dv���5�h��Fx������e�j�u��8��i�ඇS -p -r�J��}��lTds����H�\���|�n��7B��B%����D��������iA'ڃ'�w��6�>$Q$ÑRFN���5���v!S���� <P#[<�{�Q,�/%˅R#�F@�T�"\|�(1��(���5���U�vg���0=V���v4U���&<�y� �j�焯ue�52H»oq��^�AjKw�H��X����{��0�DR��X'D۪"=�J^�)|�`K#�q�����g:���^,t�8(t�ә0?c:��OH1��!�i�(gMT>q�M|jE�XoGd�$���_���h�}�欕�<��5=�c�ý�c����(ك���:�����yrUp�@��.�c�Q�ߊ�t������"���f��l�G閉����״x%�!{l����_�H!�4��I�Z.sn�ҳr��P�6/F9)8�V�l�9=�h�q�W�t��UA#�ï��m��{���^F�:|R�������ݺ���I�w�o�ej�9l˭� [�5��a�핀��}�J~��b�����7�o�Z��7�Џ�� ��)z=v�.��f`�\3c�!~�|�o�g�8�:@O������0����Rc�*���-pa} x�1��֡^V��:�>� ��z�����k��"故�3�8gce0h�V� :=�m�㗭�}��q�H���[���w��Kܹ��{��f��;�o��(��'LI���bO�U������{t�V��jj0�cy�����"�s{<�\��AyM��k�P���,w����7n>���[��zD�[f�a��gL�+x���L ٟޜT�[W�E��>זd�� 5��C%�wۇՆ� -�����p�x39 hz}Y��"-k�ӟ��㛭CC�Թ��_��9�#���*}\�^�z;�{{uzZ�?m�l6��L3"6�}1z\�F��l���p�eGz�S+sN����8���|1o��c��i�h���^���{��i�����1-����%�����ȫ)�#��>��t-�����vWT��D>4���R;Ւ>ʧ�$��,im��j�å4���x�j=K�Ё&���?{�Xa�K�����W_TJ̔�2z����� ��� �T�L�Z�}@ -��%{,�������>����j�s��z}ӴT�"1�#�1��]�uSC�����3��n�n-Jӱ����H���[�&�ף�V��6e��U��@�� �������uuġW�cRy�r] �i�Gy�� A^�����ik��L�J��ar��yzE��� -�P���;-��[����WF��tR_t��$��\��d�ѡ(|Q���:D0�R�7X���9C١k.;D��PM���{\&���%2��%e�L��"�-^s�բncԛ�TT֖�M��"����T "l�u/;�,�!�t�;tEu��$�֧/�ʁ[wI�j[�Af�MX�����P6h(t�e��.�.�����6P�0gӰ�<�B@�h��e -h��M��6�χnE�gѪJ�����I��Yj���Ծ�=��L����ґwӖ�M랶<���{H.W o9gFr�bC��r�%zn��Rw�|��.�ܹϥ�Cu�IŽ�[�� n��*��҉z�jz}ǎ���|��eO=�=�n/N�!p��<�����MSg3��1�Y:�>�ոqE0.����o��3�ʽ�ki�Ui�)�Ts���5���$��W��w��j �a���j>#LX��*Y-�,PB��[GC�t��a�Zg�x�bޛ�?��������_4q���MT�=�X �B�E芘�~�9)~k�jA����,�L�!a^���@:�hg�i�Ԧˋ5l��M���52���?�i�CJ�yY/8sJgب9ԗvu���et��]8�t[=�rDy��^�)(�:�o�4�3xT~�h�Л�;�n��t)�M(���:��.|ݕ��7�P9��b��4�%�#�9<M�k&T�*�l�gM��ɴ���-�Qp&�� �M~����&>�+�`��ne�O;39V{��ǁǯ��}�&y�&"��Z����3�q�<�����vf�T��$=/h�i��$�V�d0���������-�� �a��g�� �$����\9�EW��iK?*P6�a���ɜ��uhG�:�3�g�� ����g�Jm��f�<L�p�nY�5[踮U�m����L)F�R�3ηO��״�"ݸy�5���/��k|����3� �Z���2��m ���V$;�P�� -+q5�L�ko�I���R��2��b��ho��IJ��h.�=i�/c%���W �4]-�V>1�&_��ä�-1�3"<�X��y�X�HeY�wě��0�S.C��V�bɬ�߈��P������m�"�;���+��ńc�QC�N� ����(CQ{������� -�4�$��Ԛ��4O=�;3����od�l��!͠L_��ʁ�z�7�do�*Vg�"�$H\U��A�BDW �(㸈d��~��A|�w�+H�&ٻ�=D���얉Gz������[ +FHkv�c�%t����XD\_�8���4[��2�%��)#k,O���sH�2� �?���ŇG��/ج�{�b�J1���Lr��f�?ڙ��L^j����η�c]�g�Ʃ%�n]�I�I���q0����86-gl{�o��̵�x�W) dr��pT�@���z܂!o'<J}J�5������}��Z�=�hpY�@�a[��ކ�䮤�Ѷ���=�[c�QB�D)q�K�B�{4I�i��:T�f���cG�4�Kp���Z��^�H�|��A�Ր_;h����;���#Yh���-��g~'���5 @[R����c��ҐO(A�;Z� -5�F�da���-��f�0"tנ0U��y]-WԗLB��ʘ�m�M��jiHY�5˼p���l�xȆ -<dMe��YN�n���@��>i18�ڪ%�5.]{����U����~O�QE�9�:�0�n,�X*��Q���R���2/nO�_)hCSMŐ��W+D� ϔo;V�C�P�u��l)��+�: �#��Q�+쒿��S�|MbB�*�"ד�|�����ނn���3��M�kr���"C�jJ'��YQz+%�+�dj*��Y��Q���\��\B�k�]ə'�A�D�Zgq�>%��8�*!@�uP��L�����ѷ�+M��Q��IPS�� �O01�FS��\<��]*E�V�qܶL�k�4$!��ׁn7?��kS�D#KKEK؆��|�W�ï�.�K��M� -��"^���b p��� 쟭ېʝ�F�Vn�L�-�����S�D��jY�4VW�����z ���y__�㽾����U<�KV���� �����<2�IKz�W�V�z���[U�0�V�Pl�����d�_s�Jm\WjC���z~-����\jj����$��qq�چ&Sz���`�h��GI�b�=�Ot��XO�Iv��*X�/A���0�2m�FF?�+oxUMԯ� Է��[1PRe��U=��r������` [�Ju5Y�rm@W��VM.ۨ:v�k�.�چ�� �i�P��=ۮ"�m�J���(Җ�H�6�^���h��1�TW���d�zUd�b� -FB�AW���j�Eͦ��n7����� �Z}���T?/��\��}�j5ڴN��] -M���w]j�^/#���_~ !ܣ�ݯ�֔z��W��uS��A�q:�M�Bd� -6����)��4��-���lv���bu�;���n�٭+����c��|���W|�()oܐ9[���j�l�i��[��E�-��2�P�j -S�}�N!���+�>jdG5�9 4FD���X�C-�gQ�ѻ�Z��2�\��b��\��p����M�j�A�î{�EZ�,y1��8�{e�����2�3;%�F�j^w�:�>��D��� -���3��e2ߥ�D�'�����,K��t���_��(}�u��R�8��ƾt]>2�%���y�(}%iu� ��A$���I�Ͳ����|��NJ()���F�^�J8`Z�F�E� -��n�d#`��C��x�m�َ �h�Pc�����헊pG��@t2b�W��װ�x�)0l^���th�zMy�h�-�=>����!��vl��#�C��q�4ZWٕ�b�A�r �g���W�W�DT�����>��O�O@h˛%��]��d��fKq���C�F[�P/���ECn��N y���1R;��=����� -kq�2��_o�MeW��oi�W���_�|H��!�g����ܧ��ۤ��"^���5W�W��ӧ�<+�Q�7��:I����Ҋ��}�Hނ'�۔~$�(.���J���<{|�,��s��UM�?$��9���I�QԐ�3�� ��!^�?�d��|�^�����dc��b��Wx�a:�Q"�j쿍�����̼ �M>7/�|R���*6�@�X���2�K��I�r�<Te��(7�^�������Ȫ(9��+W�$��Hd�������Q�M�ؕ\c������wTX#)��6������HrS�_�=(%r�����7�(IM�e)���8G��I��bd=����ȯMv�$IDZ�6�:�[���0�/�N>�)�69i�m�tK�N8t;�~7��b� M~����)�#��#�H������H��F#A�} ��&�%6�;A�mo�Tx@�l���N�����L�̈́M+��k4w^�Y����W��Qv���F ��}�?Z �:����E��JX�-���F[<�j�a���ӿ�HJ�8�a5��N�.�b�(I�z����?�u��0���u6���l�L��j�'d�w+�GP�~�U�Y�d��r��v��J��S�=���$��ln�ǧ=j�N���T��~U_B*��D Iq�iW�ؼ�N����{K����~�w�N틄߱�K<�O�#>#Y���#+U=��Rܦ&=��0;7��/c�T�g�A�テr�P&�S?��}��eVSzYW�z@��}����oT� �������Q3`�>N��DzTsu���U.j�<���eE^�=�\7g/kږ��:W0��o��5CZj -�n��̩)7��_Q��9-u��^J�0�Ȥ��њ}�in�1�YCj>!5�:ZN�d�ued�%ߝ���qH��F&��z���m�����^X�����۲�.�����+�r�*����t �I��@�� ٞ�˲=M�<֧qQ��+��_x�F��+�<0���'.?�Q�$�K!���w�J4�a�(q��`�2r�b��v��QI6���;&��#e�ic6��[E���l,�'F 3�|�VOe���|���(�<�#jNGؿ㣯�����W�R�� �St -ִHt�Xb��n�KM�{��,��q`zց�:#k]�fH�~ª��ʮ�7j%�F)�YB�)�M���*��b����z�t�T�QP� -��PT�Ţ���K�w�x�׃�$�r�`p-��[mgƵ�pZ�R�ml/�������@��\�4�N`��`�ַi��q"�z���@��U��g@:�� T����H ��_�I�p��M�G�6O�m6r|/0��Qw]����<kΗ�i��)_֞��k(�7Q뚓�t���YW��7+Q���[�Ƃ���uJ� -����r������jLi���vo@����Y�v]pi�}+?XW�S���V�R���00o>>x� ��F9?�RfL���~Cx�q=קF�~�FO�%U�7�����!gjș�`�h�)go���Y�{n㯫�j�d%��Ν>�tO�"�*\A�&�E��d��4K��:�>�>_}�p��{�M�R1l�2Ts��iXU�Q{5Ιҟ�찒֯�8�Q��:�2����p�|/ ��;[~�B����ڎ>���#G`�1w����^���f-�������Qb�ߩ�F�݂'�Xa�W���C�#9���7���?��{xc��d:)��%�m(L�&�ˆ4,֯W@����Pg]�֛_l��aJ��LL��iY��L�WI<��x옝կ��f�_t=餋�r�`�VfI�D��OB8���j�S��@�V_V^�%�w�w��g�PF\X?ۂ|P]%|�>$��]�*��r���5��@�o��=V����c����l.�"e�h&̘:O>�NG� -�G�YZۆ=}�M��6ӧ�/�!�mHi���6��A=���1i��-y�C����Cam�p�u�Ր�6��bN������C{*��b"���؆$�s&��[���e��k�{M�4M�}��w_��Pp5T�,�_R�w3�|$��W��f}{њ�mbOz�f%����63d���{��.:��|j�8��� �}�)��^ -����{�;Zp��Iic�_b"��Q�,(ڤ���Ku���UΗ���*>4U��#�����@���ڷ�;�͚�1�l�o�p��^sWZ�j�t��y��vC�P�:�V�~W�)��w�"����z�va!_�a�+�,}(#4��_ѣ�}��!S����n���5SޥU� y 8ؔ_�6ٜ���F+�����w]kr�w��}��<0����>S�^���w�Y�y���,O��t�T�(�gL���������$ޤ��C����[9c£�x�JW�f�y{����v`��a;�Y�?�m�?��X�売�!�F4�K&�q�/��pVC��y\ ���>����N��R�v��}�<zC�ufq�1�gq��;Y�����`a��3�D���o~ۭk"G9���ʅ^��D��j���@l?��V"#���ӹǞ@ٛ�8Y��@�=x⠢���l@�\G�"-o<���H�V��,.��v�|5��^�(���걣ҪW��$x��q*a�z�� �=h��jd�����j��c8��u�j���f�_����$�]�Z�[{�f�G��ff��g��ŷ�����:@OdKk*ȹ�uʠ��H����䃠�A�����^A��t+H����e�J])]�F ���������Y��� -q�'� sq�~ߧJ|�-�_���.}�� 0��Dm����,w9Q�[h2��u C$�����:{��$�,��G'�w�^-�W���H�)���#e q��e����%Բk�iD��캬Z[�k���&�\Z!:(�_��>�6쯾T��Vg-��Ѣ��Y��#����㺭�g��^T�or��N�CA��Հ`x����H����Ch���ɳ���fEL3"2p�T1z\�F��l����r�ڀ5���X;N�9�1P��~R Wz�p��gi�9��)�e��&2�!�6�*��U5��2E��2�h3����q��������H2���oz������MM1�Mֈ�u�0A1¦x�xV��{_.�t�x��R���%mB�$��u ��H���؟��i*p�a�v�]��m2��ɰ�5T��VX����7*��4�*�f������ -C� �7����pmV_n�H���Ӗ��:�����1^�zC�� -�'`j�z��{���� -r���9W��̓����TH -L�����w�j�~k��X�;R�&ȇ���O���P'�XC�&�`gşx�5`�2�.j8������]�-[�&�9�[g�}����V��:S�����:Ҡ#��� �V�J�e�����32��B�0�)5���]s��^s����R`[��A�c��<�t��I/ 5E�A�ѯ�?{I�}�/�bD�"#(�KmSIq����"Dn�%������BP�����b��;e.h�x�g���>�ky�ѫ�|�I>�$Fy^*܄���R��[�{�'��,UM�o�B�5V?��?��1�5���~��-�)nY�Lq�c��ra%.%�����'�s�[��W�~-���φ�g�jV���p����z����Գދ����^5`����ۭ,��G�܀^�"�]��a݊���� - �\_q ���I�Y��xy{��Ĺ�r{�x� -Aw1W�@=�h�VĦ�� >�EkE<\+b�Za��%bGdϊD�V$=G,`+�"�"I���o�&mGd�xLi$҇#��)���䘮H�XTW��uEJ\W�vERdW����jlWD��j�Xx�ExE"�+��xER9�H���� /i:qC�tm>�,�+��;M:Y1$�"�5Dw�b�U�/ow�:I▯��2�@}FJXnp���DNF��#9�%�"?�c,�9��<�H��E� ����EU�")���0���?U[�Q=)��"l�ǪR���)^G�� )Gr=��B�G -�{�S5�����Oψ�Y���������>���#�bQı�#����<#5ʳ%7B;P����q��^�Q����1�#"ޔ�8�� -�%��J�`�|){��B���e��֒)�?�EP��òe�P+���LV������/f@��l�����:7�:�_�:v�C'Q�4�Z�;oW��<��Ҵ���o��,�ln�����2���b�013�[��_#���V��gL��34�D�F�sB륔��$!����\�3c!���e��K��w�h�o`��o�ɒ,�X�e�y1���� ��T�t�#��@�b9J��S2��,�9H�K��a��d���V�xA{��D ;G!��5���?(�B�.WH���ƻI�}��#�~�'��؍ػ��٣�:��Z[���I"�.��<�UI$-Y{��e+����w�7���=Yk]0?2/U��ˇ�䵫��� i�8 8��_1���s��Tf�._�Eѯ�-~Ymҁ�����Qn�e�.��]Z�Y�m�r;����?�����{т^w�_۬�8*ؕ�=�;�K)���`��ǥ0Um�_;`/�:/���v���(���ON�W�_���]q����-m��@���w����M ��Şd�N����I������Bm����Z���~�Ck��u+��`v�8Nk?�G�9���+�F�`�:��Q���O#�;0�V��U,�Z�ƦP���wp96E���O�����;DŽ��+T��Rd ���х�Ěr�Y�2?�fݣF�R�N�uJ4��/_��!>�:��f4���߲�@�`ʋzv�F���E�&�_f�Ìf3�����"��u�7{�p��R�͆��щ9G��<p*���OZ{&|��@���u�^#�CA��&��6�\&��h�2��������"�Z#ګ�/��������}�7�8� Q6'��p�z�������Y�ʏҩ����CxzV����B��B�u],d0bt�d�4qz��Q�<;��T�[fjp��3��e��u�����(k�ﻖ�ߏ�t��>�R�CZ(<-lJ��H�������7�����f5�z���Z�q�;���X �Hƹ��5���+T s����V�^R�C)�R����o����)�U��k����_p��'$� -�+֓>&�8Y:�;!�+ʢ�syⱉF�t�7��/��عC�I\�@Xcs�#�J��?�š��� ��$�����?7�5:��*SJ�" �:�lO�Ȝp[Zmw�[ߑ��# ����<P�c�C9�b2v�c�a��D�3B��D&M���~w��MG���)0>q,�/h�<6Mg�q��c�M���Rl?����S�H&u��L�R�O���'Um��I_�2�SV��[5��j;Ϫ���)VQ�ӯ>`,{֡�3L2�v���z?L�H?�h�St:�� �do�pS8'Й&�b�c}�nM��ۇ�rE�T��w�v�`h�F���L���4�$�ջ�D�v/v -G&�"OC�aݬ,�3#���xj��,��a`��c�wM#HL�ƶ0_���!ߤ�u�A�I����$Ym*1�x��ӍF��e��� �"�l�����${W�Ͼ��$K�$�d´�X�-�0)o����X��p�{?�_�|�$E�ޔ�="�#Ҁ{D -� %�5`�-�\�3�5 �Lau68�1�\!Z~�$����ŇG�CN��N!�5��=�8g����ǂ'� �Y!a՚� �@�7F�~�Q����kr�0����ȑENʈ@`�I�������1���~}%K�gT��0������%� w�%��)4�ԝ�Z����^a���4 W)���A�F�(�3~]�h�/7%=UnI��j{r���tw��_V�l����{�̳D� ."N�.-c�qZ~F�v�/|�E6:���aU44E��,�(�r�.$���'_�W}�W���π�&����u -���ƴV����JX'-�"F��� -��JG�c|��\dܟ��dzԗ����G����#�b�V5hU{�u`t��*�$MY3F�U�ʥp�W�R������A�PPm�X�DZ,��W�`����<a�|o��SU��.������Hiw"D�*Ӏ)���22U��V-�w�0ԥn�zdžJa�JO����������T�G2*]M�&���2���+�|M����ܓ�O�:���.uQR�x�:��2��~��ЅU��6ka^l-���UV�c!*�Q#/�܆�Y��K@ɞ)���ў��:���������Ӡ�I�㧪wL��w�6Ht�}{�\mGHS���:�)�T���.Dꐎb��#ҧ�v5��'$�`��2BZ�j����D~yȖ#���Y�V���H�m �-U� ��U�ʗ�w�G&H�4,(��fD�=j�%�(F�Ihhl0�DPȕ}"����9ĸHs��\�O�N?�*�T�X1��[P/��ߔJ��r|�S�{{�p�!�L��&f�v���.�=�s�j� ������!�����Q^�;߈��c>��i�$U�A��� ��w~RY�$Ё�OZF"G���b�X���G��P -H��҅�����І��?i�AG*�"�l.ȇ�5ً�����}�"�Mi�gW��٨Oh&Jy^�W�*�6�nWP����0���=l]��5l]��5l]�ںܦ�Kc�Y��.�h���h0i&y���B��͐{)Y1����2U���������w��e�; �L�y�>v�Nٱ,c�v��L -�U�0�e�<��lc��x�i���e;��j{�v�Z�3��;��O߽K�r��YV90��n�|�b�(�Kc�F���}�佻�"6l:�eW�b���X'��!��:��O��&�k��i��c�H�=�)��&��'U�v��nP��� \���t��]�OA�h��z�ZjI�Q�ș:y��Ң�=�G�~g��Kr�|��_IbI����w�9��'�l��{6+�P�6����������%W�;�%����Y#���}=������s�" -��%"�3Qz=���u�C\�eV��n�̘RH�8${���I�_#j��j},��'f:�����l����{u�Ļ�>��%N��Rm����tK�v�e���}�:�[ꂡm�f�[q�I8;��Cl�0q�g��}�.��(H�I�<}�k�4k�M�.�E�C�.ѹ�:�JK�cQ�����Π��O����#����<Ok�}�+O,Â���-&KH}�`v���J�閮�vy\q}sOIa3���/�H]�����鱫��=-�u9\g�jX�6N���DLu���N�����f�E�B�����̔�V~�1��dЗit��T5�2�*���k�4!]�cT�7�P� Ќ!�~��-g�2���6��7��y��Li'8A�fXj}��9Y?a⽺g.��69`T�Ǫ�+�3T'��uiV���v&��Ks�@�%�m��K��ZVubE�|"�Ϟ{ -[D�f�X�l�� �72�j��?"5.0�5{ҁtWv��i�յ�;Z�;_����2^K���j�V�l�^�m���͛ -�m��b�+9�)"mv��v�矢}i/�|���=d�n'��~a�RVot����棑��k �^9�������d�u�Z;�z��Zm��a�v- ����+j�σ3�dW�s���ȩj����iO�z��|v��&�V4�.&��a���cL��$6Z�D)q&��@�$�.@O �K�J��[e����H��+���D�W]�˄Aśv1D�7�LHц�m$ь��D�����k\F-w���4sl���&��t�i���[��\��y�;��+#��F��sV��"o���OM@�������5LP���y�0�vf�������d�=C�ff�u���qD�L�����ܷ1�ߴu�_45��g��]އ�sQK�6����ioe�s�7yOs�ɏ��]lL(���,�2�p���-_�K�{���� �k9�������=�� Mkx�FNQ_�B�5�m�1`��8]�������2p�R�&lm�̞ND��-Y����.Þ�����q�Z�3�M����uҥއ-���q�x�����j�=dΎ�m�Է�l�f ZÉ��=r�n,"��br۪�u,�m���O�g��V�j'}�K��\ _�ߥK���u�4�F̼����ڽb��v�C�_�J�xzXY;P��$���BK����Q�>p�!4tt�~�v�Hz�I��6���#�n��y�J�����vN�ZQ8�}�~\u������|�;2�1Я��c�@�^���I{7���& ���yc�'Kԇ�G��ݥ5IքH���n��o�H�#��0'�U����Q6�M4���t;5��z^�(�L���S%p7�m��t��$6�XW��0��4���G3��������i3s�x�n�:m� -i��¡�L�&K�"Y}nF����3�X�5}�k�2�*�W[ʠ���+g���\I�Ns֟O�̥ =8ca������ z8�����e��4YdEрp�s�P�]q�Nsש��A���>8��x��:�yc �v�j7X�҇6e3� -c3�˔=h�r��+WB��U��s�Sw�B+�8��z�H�^�o�jB����%�?=�� �vR���*� �k�J��րB�&�ٴ�=�!i�I5I�3��jƏu -��Mhw��e��K�e�>ֽ���[-���[!��a���睈#�-�����y^X�����l�8J�����j��f���5|!O~{d�� -�"?��8xw���-� ݐ�m���������u��Y �t�D_��t��C�z�;��W�ܗ�Ù�����}@o�F�v���> ��y����m��-X���kD&c@po��^�(��2b�����WA����0Ly�96�a�6�a�6�soT�n��X��٥�˹���|vݞL�&��y�ˤ���.k��o#9�n�~_SQ^b�Kx��v��l�3,Ċ��Π�Π��p� -���N"��p�B霾�k����|�} �%�Y��#c�Hb}32ѿ�|��=����fd��5�|� ���O��Z{�vN��:�F�¼Jr��� ���.2�"�.2�"�.����{���FQm����k�U+��������W�WP�Rm�j��"8B���Ơ�j֊\A��}'�" -"�����H����.6����#�IFt�q�&���J�H�m#<��o#u�卑-7�5ȈOu$�݈-cD6��.�[ouX�q*U2��;b��f�0dDRd��o *������r�^��p�rQ�2{\$)!5ÁN3M$��f$�^�ly�����"yO;}_�b�3��gķ����j�G3�͆�W��.����챮����[&�MD` ��HVQ�ݰ<� 6�,h^0�1S@����x���B���1$�,{�"�E���~�}�@;�|�;��M>�m3M�}Ax:�sM-�4l�4������t��8 �?��a9���%O�{M}�mJ�aFd���h���E/�A�������uҡ�$O���LK�RT�I.�+��0���2��N��R>�N]C2���u{�l$��� ��9Z�+R�pE2�t�7h5����"R7&!�s~���Z6N}F;I�6��˱���qP$ErP$ErP$ErP$ER�H�͊�F|3ǻ�a� �4��k�Ow�u�n�OE��'��g#���-<���p�>����q�A�逃#D�Z��b%ɟM�R�슽��!�$q_�}$�v�|��=2�&�n2�&�n��w�g�Kt�&s�@�}u$�`�w5:iOj�q��=ܚ�ưɟ��V�%9$r�*&Ԑ���u?�3�S#�v���^��%��v�3���[�c���O��� u���^{q��ٶ(�]��ƀ����|���Y�T��+��7#�|�!{w��e^S��|���!#wlg�D�.�nyߒ6����n�컋Y��5oTj��}���}�1��;��NP�S� ������P���D�����=��\�~]°���{'ι����Z���EO�8�m� �}a{�BV�6'�չ��n���Z`q��Ӷv���η䫻|�nc�����&�|��W�ȱe��t�РaI��~l��=�3�_���J^�e���2Ej&��^��'�H��e���\֟���?�k������x�0��y\�+y�A�ŋ\qo*=A���v�%&ڛH�$VmaѠ��o�x��$�^��v^S���Z�/�k��Oĝ ���E��r���C�'�p��ʥ�;ѝ��;����u���&���Sx���9��ԸJ�չW�Agn�T��αst[�ڎ����)V�ۚ�4P��B�T\E��ͣ��h�$�Nީs/U���Suc���f����%�X��^>�R�9nj��':i�T�p�Ը��9+Kq�N#u�.�:*V�m��v0��`�[��gmS�e�v��� Җ�C�V��}ʇ.\��/�A��|+����u�0G�����/j�u[����j���n�Nm�u[��2К�&_�v�p�n�6-�7Ov���� �e�����{�S�&3�p���G�jH���2�H?��B����0Y|ҁ�R!CdU��ХX� �MGx�aN��D7?��t�����L��;��� ����em� - m���z��q�����.�mK�c�Gʭ]o4�]e։���Cu�Om��a����º@�����j��&��_ހ���yi�:�_0�T����&;��FG� �h]-W���6�,���.;�V��k+˱<[�B����r��e��Nrb[��ɶ���r��wt3�����[�ag����ކ#�(o�spBG��h\B�%�ZX]�MV�g1`��Ik��8�tѮ4�^����IM�0=zzhC�V���wB]�8�h}�eܭ�����V38Xm�$s��V���V��'�%�Z)'������*'�?ڎto����o[B��e8m-�#�������[p��`U嶘 �>魸���-���VE����6��1+��F7'���E��ϗa�}(9��� -דv��ĸD���7u���x��A����z����uE��t�*���R��:�4��̊ D^h,G�h`��V(�#ij@��.����R�8g��K�M� -WY7k�%�T�#"p�;��ok�4�0�AY����:ͱ���z{���h؈��h؈^�F�� ���.be��ӳ������&J��5U�o=+{2�����OJj=W���]���O:��<�<�my�<��έ�8��d����d��S�@l��#W�J�zκ����g�g=�In���jf�a�Q"l�@���kou��^��W�w�l�k=�1O��z�B��e��������+�O}�.����g���w�oL�n��}۪�6.��o�?7@Wt����%��m��2?w:��y��i �椑�Ւ�f��JD����A`��@ep��ͅ�,ͧ�"Z|�)ަ_��;(�^Z�G%����u�e�`&IV�[`͚Y�<@���ԭ������R�-{��ճN[}(��F$}ݘ�O:Ҋ�����*�H�sj9} -H�Ե�Q�F77�_39�2��4!4מ�4�=:g�}Y)�m���$�����Vd�)_�D�h�ps�,�q>�I���Ak}��^�{��g�m[r���X�~�0; ��3���9ߤ���*f�iq[0�u���f�f���8]�˾��c�>џP���J�l��<mV��Lf��ǚ|C�.Cޥᙸ�!uG��pT�!�u�G�� -�>����3�*�t�����wZ ���7��zڐV�W,�N�z`���,NŪ�c���Y���h�C�>��ϼ�C���!���L�Am���m[קt7�"l�b)��;Vo�%���5��h��<��6��zDUX��H8�d�Q�ӨQ��ۺ�ȼDt�q�&]��J�H��#<��1"u����d7��=b[zD���.��zu\�q*M7��L����1Ð���F���� IW���oAՁz0��U~#��F���Hh9��h{m��ٯ Glk�����]�8��^Q�8�*�QE����l�Ք#�*GDG;�Jy�kG��K��r�J=��E�]���~%z������?f�NX�a����o.��f��6K$>#\�B��7�_�]�v���w@֛|��f�����tD�Z�#�FAe~�v_�aUޑ>��u=' ����4,�C��)~���M ?�h��@���ټ�>�T��8 -g_/��#O���L�K�`T��)��۸�5(D ��I7kjF�M�(-�U(]��|d˰|��UZ��O JG˲��4�ph�� -U��b��9�6pkH.M�-mʙi��Ųu�d�g�����Φ7D���5W����N��[���&�8�m�.O�"[�Hɀd��|�dn�Ƽ��/C��'Q��f����[D����6���#}�g_;�|���Q�6�՜����GDS&}쯻|�� �G��V6I���ȓIZ����oJ�B|k �Y�-�v�m:\ֻ@��"��S���7El/y�*�U~JΨ���=��Lm�K�u(�����!K��"[�\H�s �t�D�*4��FO�6�'D��s|���:�Н�:�0̀�NWO5�:��W��x�D�x�m�V��я���m�6���,Eɑ�-��o������h�B�!�;�� ��g�^�3�m�~�������w�U��I�>�ٗ�t��S��>&��z�O��'�:��1�"/Q����SH�F���2f��N>mb$&� j�9�т���S��$�r�D�-a6��+��W�v����+��+��_��2?O��4�R>�����#�"�t�cњݹ5��O��`� S�X��A~��Q��Ҕ)��Y<��Qu�Tj���܈�৴�: `Y��2����[>��)�"�� �U>D�{\� �,�9�n�XXv'iK����ꋔ�K5�_�Ŝ@���nX~�(�F#��_6���H���L4��!1��ď�I��4�����/�SQ��b��1P*���,�e:)P�����t=�mװ������2){�n����ܧ�j�����/8�����>�V�\�9塵�:I���^���A�D5�>��v�s���4l� 0Y-��pt��f̨����Z�\L����g��lhx� �¡}Y�y�s:<����-��~��_a���x.�C�������5t�(�6î7��9�a� �� R�?�I�.���st���[�D �q¶C �7���`9Ux�B�>�)���n�'����w��;�Հ�> �>��Rҥ�ՠ1b�J����>����� �U�2"L$����2��-�B� ;�4%h�`����)�.����k�/y6yfc:���kߖ� �N5f� +�{-�Tʶ��#�� ^ۣ��E.�^��.x$N*/]+v3�9�� �g�̒�xz�]M�������Nx;��3��&�cp�8���G):��l�I�di���f$]�=�Znˇ�1�� h2���q1/.>�0���ӚW]�Wٚ��f c��&� ��`�"���"C� ^n��z+�C-��k-�Y4>���`4x��%��Q&]8��pS���d���g�ٙv{�KҎ�X�� X-ԟ�%�a��������T��F.���.���)�xV��c��f��'�2O�~�#�s�$֩u��!Je��k����%>�����a�0����%�b=��i��l+K泭a��<M�e)&T�h����ej^�C*}��B�� L^,m�d��kg���F�����!;��E$��I�0�Br�.��W��|xX}Y������z5���eʯI6e�`�$��r�ЦJ!B� i��pm����w&E��I�@���@СMԍ{�~�f>ǒ�}ɷ"N�?2�}�K n�n�Z͋�?��Mex��Q;�.;?*�Iv^��;��oǻ��yN.*v0Ԃkmʾ�\��Me�e���wl ��o��N��Zu��k,_�(�H�w����I��֢B�>���oH�!/0>�*��Ӎ���W�Z�ސ%'�;M e|�9�*0LpbӐQ�Nބ���x��K�Ϣ�y��ȫh�|E��[�����W�,��������!��tR� 2�E?��p���l��UN$1r�\C=@L��{8�y�*%V���g�{ئy���4�:D����1����:�f3q}��٬�yj�{NE�=��)ڳy� �4M%�b�� 7;������b�� -���H<B��]!���[6z�nׯ_����ÈQ�7#��bF��] a������ձ�Z�DR�������vx�l���E�zG9����$���xX��)�ɑp�3sP��?c�� E{/+���|�a\4�#�x��BiS�y��xG��G�b�vDb�ӳ�a��[q!��ۇ��;q^� �o����Zd�~�Ѯ[���e*?#m����U�DŽL�eo�(ٮ��7�\�����2��.H �dXi�:��(5ׇv�Fk����p�1�^m��Ax�t\~����R��f�"��J;X���o�?O�y�ɖ���x�%~,Fo����O*N�9L�h�l�e�f4��� E2)e�<�A�\��q�k2� �O�H��r�}e�d�Pb���� "I��-I�汢Df�#$ �1&�x���1"��X C����>DL+���)i���&TO�5(�/���V;A/� �Հm'täߐ�j(0�? ���:!JU���AP��������7��l#\˸dd�qPd���H~�t6Z�w��F_�:e`KB�� n�P��z�8"C%�Tԛ�]�G��s6g�<���鑝"n�3�9^ �SzP�y[�q�Y��?O�r�ni��삾F}~+���RP>��JD���|Af�<.�#Hmg6wͦx�����<�TL�r1؟���qs�'���rm�tb-7�7F�)�_Zm����:�-P�b�q�V�-s8�ҥ���,���?<P$]���ʏ� -8JW58C�$��ph��w ��4Řgڱ<F��,1K�+�T�2e�Hr5����f�D �Џ��';k��~vR�x�sY�Ǚ/H���&�L1��3�ִ�@����Hq �_!J"�R2 �9�/?�5Ęᣄ#bq� �ymh��P����w� ��{�vB����]GI� �I�D��8���� $۰����'��;GG��k�B��k����~���ׁ�|��a�d5�2��kf�ti��H��D��SK�O�ur��6��\g�EܥP�y��'&�ю]l'�Qី�c���o�kSk��fh����P+�]Je�+q�5N�V�m�Ai�P�� mv�*og�6� -�f ���}Dm�Ec������Կ����@�C�N@&�n!������w��f\7�(�kB�f�Շ1j�Q�j3�~(6�%����6a��o�V���f��}��� -�����|�L����Wb -��m0�{^&XmG`��D�6?��x -���i�_�14����I'�1-�[M����5�-�7H��CqI�p���U�/ۂ�����㝎I���qf�qUN>p�N��:�G�U�8����cy_�႗� T���O�`��~�-�N�+.AaJ需:[d�z{�@o�3zcΘ��`��e�=�n���9/�e"p�pU�Ga�H�{h����m�%k��dJu%��7��m��>��0݂k���3��F�x�<-���^J�.�Ȥz��>�j�jκ]Bp��r�7��P�� ��.���v��HF��I��mi�z�!�{9�E c[-�J1����`��>�1�(����d�2��j�0ya0�m��&T�VR�w\GЮ�L�mK�a����f - ؆Ŋ�����P��+-����ۇJrZ"�P���Gi ��!���f$]�D�,XG��E��:�$���;K��x�}���葭D̀]q� 0_�v���������Bh,6���M6� m�ъϢ;��]�t/�B[�+��J�r �N/�g��|q:�<���uX��$auj���(�g�$�&�H5w��}�K�Mxh�������U��{H��w9V١.� -�pGdU�%���T���!��z�Ђ!�� -������,|��k�����%b���m~ۭk"&9���ʅ^��D����J�E,��c ��I�+Ɨ��V��=���ߌ(��� �$<q��uur�N."5�@-^��j�������z2]�HV1����R$+)%���p~d��4���Q�S%^1%Ӕ��j�)��k2M�$�� ɧ$I�6�4���g;t�>u�[T��?ż���R*[q��ַ]�iˑ`�o��4٧���OWI��OL&Y�j���� j�(S=�bW�H s�kړ�����7�9�`���SZ�e�:�.�1E��=]G��z�Z �����k^��Do���0���&.针Th��I���ݷ�v���|�%�&?'�˯�9y�)&�v<�q�S"�r���B��� ��˜�-�;HZM��'��/�;)��dY|�X����MṼ�V��to��� �E�a-��zm��9$� -Ձ�� ZV*�� {����N��ե1�Iʖ).�0���m��P�uݧh�>)���>g�-�~���)�l�g�I\mԷ��C����@��w#Q>V��ƠL�"��2R�y#�;N[w �{%���x�){}�-V���v�E�Ui���E��T��Ĭ�D>�y �|�oI��+��qy1k��^&yV�����V$1z5Aߙd�� -P�LVd�= -�Y5��ZĿ��TQ�LZB���_iV&|�À-��,YA�j@��ʫ���r�0z+�D����P>����ƺ,�;N��"*�����nn�$֘��~,��X�H��0AB[�d������-��,ʕ5�Q�����+=�'}���ӼL��I���@���J��/��N��KF�.�=ry4ϧ���h"��-�xN(v�z(���´���,ָNjx��n�/r���u]C�,�#C���'��A�u�yepe1�']�2�0�L�X�j��:�W��o����yE�O<��N,da�߰���P��O��r(�j�z\��tt��f�n=c��!�'�����Z�t]�e��f�� ��ׯ�RP��[����/� -��I{GSũ�-�8��!ݠ�J��M2������J��ϒ�i����K�PM�h6@b�U����\��qk`&f��6h��9�t����p��8$a�h�] ��1��f�0kWd���@���j�%���@>��#"�:��'����yǧ6����7�J0\b ����a,w�I�[�qݟҦ����*%M� �6���Ĥ�+�MէI�9� C-��]-K�2Ǻ�7�W�G�G��ah!��k�Ӽy��7��o`�?*-���-����[���~!�Uq�����R�NV�?�&���)��.���� j�ū`jf<�D_}����8Q�!x��0�Ae��Mʻ؋?����.%�7�i�|��U�CW_�"�pi��M-�&U�<�ӄ�n¡�{��L�2+xn�ڲ[�=d*Q{�����W��*�J�|*�(r������d�����n-^+�3k�NF���d�X0�rS"vߤd[5�7�E��c����M���˽ߢ�3P�W�[h�Y;'֡�����\�->�WHuE�Ɛ�zɡ=����0JR�0���s.�o�Y����3,N�8٠�&�d��g�^�{���o���Ȧ��[���N/���������"�O2�ɋ�3�q#�䕰����;��ڌ� ���th�j~�1��`�Ǯ��Q\ -DhIVhQ�ݾu/�6[�1�z��mj�U���3O�>D�M�����N�T�u���S�u��`' -�C�.5V+��q����2��Q=tj8��D��4�S��v�����4��}BC���A���l��{��A ��Lh�P�ѷ�aÞh�)4-d�� -W#��� �i�O&�k�_��B&�i<[+�Dd!wDJ&H�l�:G�|�0�H����q\���vW�);Û+G��ޣ[;��������^�NI?2Q!��-�Tz��ЅUEp���:�j��.ll���dw�� Ò���'N%��'��Eue����A�L��y���Xl������wwҎ@�~@�*������;��z���She�% -�C7;�S���&�Cy��v�"���`;�șG �7�NA���Xڱ��E�"�|7=��X�ޓ�ғ4�9�j���N?闘Z����4���t�<�c�W�EuY���}��L����=�Ñ؇��L3u�v�ljW=��t��I�:��;�7��Vw�hr>7c��&;M�S�ӊz�ɓ����� 3H���J���|~�'-���Ϻ �`M:�&b��QӅ�h��!~�E��r �G~��CN� |��}�⬈(1���Ȓ#BO�0+DϠNo�i��\�Ly��|�qTi|�����! j��F����#?�Y�;?Ӏ !�t�~X�� -+�f�(>|~D�@FQ�Ƀ�I���p��O� ?:�Z������ߖ�/K~�EV���Ŝ;����jEz�=>�X �P��A[�j�_gbz?������L��)~Y�ᗉ ~��`�|Lo��Ä�\Bc0�!.X���#�?]BG��&$?-B8�G(k��V�kv�`��^"L��� {0��c�2^[|��������g(x��b��8d�h����f��0l���vm�Ό��ɲ}:v@���|;[�*=��)��L��tANJ��x�gr���R���=��P�>�bl -Ls��%�`"k����t)ʿ�I�5`�z_�>�T�=������� A�y]�xH#�Jϔ:b�qv<P�\��!כ�/Lm*���.S1m��w ��r���=Ht�`X��x/�n����]:�A��H,�M_ޑ� ~;��p�lM��9��(�>��"L�x��ķ������m<�z�����T�j�6i�29�|�~���m�T�}����=�y@�Ye�7 Sl���7a�"�?�_x<�$~���������b��B���%��(���S,'��+�t�f�.�g�-i�LJĖ�>' �顰ž.����׳��Q^r��S�d��u�{����w����W���-T<!N��Q��3�������x���n�<��U� -y$_�V�0���n�x��7�DdGW#X�Uݳ��Ǡ`JK� � -�sJ�<d�u�W���I�x�v�������f����H�/9��V�(���a�G�����?8�/��M�p��M~�G��Z'�G$ 7���ɝ� �2q�gqG�=eYG�"叭=>�3��|���b*�����=C�#J�K�������a[�����G~����IYYG&Ո\�yd_� ۈ����z4�/����gXR�өƈϩ,q�2FYm�J3���v�[�GO�l� -�l���ɪy��χ��TG�/v��&�g#l�śD:��'D8) )N������eX�q���8��-�ǘ�a��&�\�d>�$�%�(�˾�&��KLWy��0!U"�=a���H+×�&� =V�Ǥ��`�!�c�����EӺ���H���OIm9rQ����Sݔ%`2I~�D�X�܊BgA�>�VL�N�yBi H=�W�?c6����#�I��I��o䣝�0��6����_��&_>���Kn��w���?�����_��g����������r7�D��9�B�����DQ'g��:}x�����v'3{k�KbU)֡"J�+~��7�$@ @�%qe�]�H���O��ֿ�x���?v��ϿL_?�W�7`��������˃���/��D&�Ѩ��{�����d��d�C��1)�4�ݹ����w��a�mD�����s�e'���������ӿ?�3ٽ�������ݻ�O�������o�û�����ϫ}t��o?�����_� 6�������߽��������/��ㅫ!�$�W����45�2����M�Y�r�0.�KH���̟�P��}�Ѓ�@K^�\9�|�G�/w/�>��8�GĞ0<������)^'��k}�N�l��~I�J�M�_�?����`t��!����v�����5�4�_*���&,tC}��4�8(�)�Z���Bz!5t������+,� ��v��BG�����#ݱi�K:&(�қ�!��X&=�XDw(��f^��Y��6x���R�%?�q��O�}�9h�{:r��_!}\���t��^)��Ǭi�2ѐz�G�s��;)vc���>���]*����R,��%Rm�y���&��mN/wD���t2)��C! i´���B�|�U.ފ��s -z�s�̝:�"I�D̟L������Te -;$��%F�%pjE��_qw��f�J!k�$�2<�L�<c_f� %������?�J���@vq@�� ������u��$z�Loj]�`��w�#������7����I{��Ƞ����w1p�]0��F�fG�щE��F�G<��w���q��H�y$�w��~���6I��^ ���,�%�ju!������Ǡ�����G��Q��ӧ����=`�����U��4�.g]@��ߙ*�������|��s�/����nD�5��c y�����Q�S\�0�֫���=x_[���o7������s�{칗Aǯ�>���s/�GQSgO�R1>�z��;�+�����sЎ$�a:p��̯x������A��7����f�;�����77��`p�>�������� Eݤ_���~��CɈ�8h�������ktѻ_�1���7��Iv9��!_���f���^�l@�����J"w{@�yG�n��E�\C�A?���(�#A������fUK�}O��$m�F���u��}�8�4Qd��'���?�Nk3T��ݰZ*�N`�Jh��=tU0�*.��^����@p>�q��L�X���Ѭ�>�4�h�%���dх�����f�p>���a~�-��+��������:��֠�}�G��� ۅ��u���J��`8���dh��G���D&��=7?�W~��N���*q��&UQГ�H���:,.�U{��d]���¹�} -)��s���pjǸ-�gE�i����u��|.j����`�D(�����-б�X�5 D2(��v���c�;ɖ ��k�P%�*H����ѷٗ�^���ѓ]=�JDtۧ3C���0�� �x��̶b��8Z)ԋ��ʃ�(�%ϴ"ƩD�"�����W@���/��k0|��������ij~NzDn̓��ӡ�|Ru`w�',qB�(�M����A+ � -Uz�}/�F��t�R�R��_�g�u˝Q�ܲ\�ݬO[>}VEAU�nd�c��g�j�M�n�,D��`/{R�^c�&߿�pܯ-������뮑YH �)]4]���3�I&� S�%`�e���"E<u���ֲ�`V^�*Q8��\��8���Q��z 8�t���Ȇ9I�O���r1�)h��V��a �9�Q3�5n�&�ִ��B�kʥEw�x�[� W�Y�;+7P 5W/0P��a��Z��f��`O}�oFqԑ�23*@���1�7� �����H�"�Fo��ę~ÉE�Jl�D�f������E|B��z�hҬ�:ȷ.�3S��ga:�����V(`s���l��E�Nd�хTT��&ؓck{П��T�C�X?����%A<|*��O��BdY�_����ߐ�;$��ȿc�����9��3�;�[�I�c(�u�+���y�"H��+6U -��2�@��#�Gd��J��*���+���/~�������>��� ���������7_h�S���b��Mg$�ӯ9%�p#�7~5ͭ��0 -�W�c��o�~�U���^�<�~��C���8�?N��S�c���'pA�e���U����M����|�ySg�����0��Ջ����?p�B���5\t+�]�f����`ɋ?���Y��/d}���I��0Xm�@���3��&�m'��۹�w���z�r���#���h��rN�ӑ�$�X5�M���ͩUu�Ց`�@0���p$g�l� ��U���?Z0x�s�����p��!Ra!�wpZ�o)"t�>���`D(���)M�S -�\56�̱�g� a� /H>��OO1XL�Es�f�}�*�"q���;xߜ��B0��˓�z��h�f��p0l�����#,�l,��ݯ�Xk���CvK�����L�ݹ?n�94Zä��#�Hm\Hs����f�!j0,�Z��y��'��ܤ�Vd�q --= ��|/W��]� -l����&�0�Rt�:�/p�5��?�@T\�=���[���m�<m)ȇ;qr5<݇�u ��� e��8�'�6�Y����k���*��d���Gx�sl�N�X�I/O@�S!����0{����9��Z�fX N�+�k����a�,��",���n�ĝ����cg����}�yw�<F�߸��<�hM�>��@�V�ڐ��N�8q�9�ͶK��C�j-`w�#�����4�/���'�V�J�^�� -�R�x�%������+�:"�~}��CJ�1;�qt߇�yMy�^�E�n���x���&�<�p�}�ԋ��1��t���q��܁����ظI���^��S���r�`��Mi���lPh��-�, �* �AS��k,�J�AP���o�Vq�B��劫��I14(@���?j�fr�A��ؘ�dk� 47� V�~�g$����z��;`v;�'X�[DwH`a6W�%�O�/�I a�������/��;n��^�x�&[�����X��������jyxD����ߨ�S��8�r�{x�c��!�֯[:�?�W����������n�4W>���-`�=��ghYAc�XJ���.J�=�)`�<"s����DZՄo��AeX��dt�����_��C���=�-����)�*tפ��ߢ�5�L�ŖI�} -Lwґ�*"�(:��m��N͒JU�J�Ie�� -]���w��5��5'��n�2<���N=�+��3G���6W��G4:�j0��K&�$���b�;xE6OBO`8jf�����T��$4�?Չ�I��Ǎe��n����鵺�az��p&2��5�p��<;x�|��+6��N�}�^��d�hTf;����VũS�+>����fB�Pr%��j*��<�`0Y�O}y��j�E=X6�0v�� �y-�ԫ��$�_�x���l�x ���;��N��V�N�"���w����C�r���U�f�+���@ !�=�Zm��[�k��I���#���;��3:v�� 6!Z-��4Ǖcu�6�ƕԬ��8 �oI��� ������=5�=�C���8d���q���}t|��N����#�R��-����F�%B��0��S�İ%���D[k��"��ZE������w�&��A(\`C�ߦ�q -�P�������Xg��i� �5I�ܡ�(ɯx�5��.PA���?v������c�'�U��L�Ct8��2[��.a���=��E��'~�V�oq���U0X�hg�pg�xgHv�-�gĜN�݁�3��}{�q���y��X3�f̃��|y� ��݁Od0#W -E�hq��Qq�1FHn<� Coh�\A���2��Zf�5�0%J�Q�a�@��������)��"��Kx�9�.<p���5psM��%ɺ��n��d�ش-6��nw�ȵK#�t�k���i:sѷ�n�BJX�f���ނ����������[�c�����3�ɳ���j�KK�_����MK;ȅ�=���l�ms7��ނCnD�v�p��xt���;l�g ��` ��1�-A���0�ؒ�p��(=ț_6�Wv����i�"AC�a��d9�Ǹ�����ƃ|�_c��"?�\(6^�8�,?rN�1��=�u�;�:��S� rAe��5r��.�e�^� �l���%h���+61� ��Xx`Y5��3�_e"�.G��D�`v�Ym9�OV��>�ʊq$5����2�!�7?<?���EJPF��VN�r�W]��;\� �&2J�W�\�T������ L�H�S(# � �J!�Em���zQdtݵ��{D���akЋ��i� �;�S��8�����quK�N��D \(�<:�Y����5G��@r������\�w�ؤ�*��!Z�a+Ȩ�T�T��r2'H���?��h�+e�R�(� �ͷ���� ����w�D�7^�a��,��a��|H} -ؘ�`�j�!o�������`�rv�q������oum��y��汱�`�����w�39���p�%$����Y�y: 4����t��R� ���5"D��������"�'�b�o���[ֵ�yV�S�J D�C�i��m��v���Ϯ�E��s@��6��Ɩ�#ﱹ�q�k(Be��,��<��\M*4����}ݷ�Ƙ�cV�(�,�ױq��M�\EJxQ�~����&�\���$\S��_�[�U�`f��@����fm;w(�!r�t�q��7LS����<&(gZ�I` �pN�1a!��x���y�pT����D��9��F�yë��0�0��5���m �772d�(���ПT��x1fO���w��!�ݳN�pv��O�^Mm� �M���Lҳ)M�� e��1�ڱN�ef�OBF��X�F���^�@`��oOZ -/̅��� V`w|�ȿ*n���2 -T���-P�&�=����=�������b�;�&�=���O���M^�w[�b@��/b�!�����^� ��"S��J�H�(��[m���9�G��U!�*���u\�c�t$M+�V����D��\���n�{���i��ZE-�Ġq����ӵҗ{��v�P�/3�_����f���?��>Fb��)�ϝ�((�aN��LE0oͷ;x���]ڃ���+��$xϧ6����|�n���C�k���"I�nu:������ -���):_��0��Tg��=��i -��|oW�,4�BI�P2�]9��(���!K�d�"��! �N$�(W|&$9��P� �X��%������q�6���o��^%��zx�#��i�m$0$Z�;xk���h8�@nw�Ŏr��9b��k�?K�͒z&.�0;X��_���wkZ��)�oVI������{!�I��� ���m�q�~������g��N��\��B��J0������5{�>>���m�����I�i����^��ʖ��20�|I�8�/o��4I���-gQ� �<*,�w�2E^N|��b��T�i�q}�P��9�?8��B2Gכ��Z[��1�e��[�H��S�3�aVB��� ��&AU�gM�gP�Ϲ���k:;������0�a�;;�x�(|��C<���%���aq<�h8� �f���>,!p�res�W�� |~K^d��-Mq�JR6ku�ܡ��1F��*��w�� ��糺�VI���<�]q�%��t�l��2�=�d�8G� -��њ<b�EQp�Dn�VT^����W�S"�R��q% �C�4Kur�<�`B���O������8�֫(�a�P�~����~1<���.��=�ۯ?w�"l2j�X� ������a?�pf#�-a#�&���?��?����x�]�x�7����|�@�#���~M�v2��u���/��[�(�w�}>?���*Z�9�����q�7�_�1�%Y�;�9S����6Y=lɞ����$�V$0���O�~�`�iW�|�P��Q�X�t�boR9!����x,y`����$��:�>,�r��'��7�W�h�ܡ�_tٕ���_�^(X�0y0�D��y��} -�*����xy}��#A��X= -8e�`LJ��E��<'�Z��G@�ЖG�=���]���~�������Yg����u\NJC8��:���},�5��nv ��|}�t���O�Z���m���T<�8��B�|���Q�����Ȓ �2�I���*9n 8V�L�{��p�&����ʾ�D�h@�s�����B-j)ԑLv"��ɤ����i�ߖZ"h��r.h�����ߡȗ�E�/ ��9Iw݂a�-Z������G��DZcav��l�yH-������P���Ւ\y2;;���$~��\��������Ʒ��!i鶥ۖn�+�PM`������^�]qJ<?jjvv_sg�G��]�x_���'顡/����ߛ���%��amstڵn��xyhpǧ%ػ��� O�EL6 �.�R �W�$�x��p�@-:&��_�':Zf��2f>���|C^�,P�B= �� ���`ظ��܍��� -\^#wk~��6 -��P5T�h(�� ��-d�M�5G��=4� 5����svӞ�������n��´��Z���M*S�P�yt�y�:�K�=����y뎟Boҽ�I�d�f+��`�>�k����Eq�`�/�p5�_�s�b�fI�9���S!F.��ι�����V0��h�6����%@+�H��[Y���x7/;�!�o�/��L���[�]�wh�7s�h���F�B=�bw���ߊb��7��k�H���F:2��N<2���#�~Z��j�>T�N"g4��.��j8����j���y���^��>%��V�����ƚW��F� }�� ��{�jQC���P���B%Ƌm��֞j�3������e�*Fr�����==ԒDKWz���;H�'�Z�l��=YԞ,jO]�r���Fy.nO�T�Rq{��r�������:P� �=����Cr���W`=}�VRq���Z9G"�����"�P�y����9�����+�qe���2 ��Ds~Uia_���Ƈ��2�4]�������3=k��� ���)'�<�c�p��$�,�C�i�M���s�]^6�������zZ��S��j9�g�-��R# ,ő!��J�H_���FE��Z���"���d�`ƶs0q��6>�X�W�nc�v��������)�E��>m��g�#����.�C n͕�ܜ��3� �8]���h�h�f�c�1K"�k����p�m�c�C�w�ݲ��mC3d�����_�x����m�g��6O�m�=�~������ū), �z�E5>^����W�����D�ΓW�W/Ⱥb�^����%A����$i ����~aꄄ��>�}F�Z�iC�\h9#�� 7����dd��n���Uw���; ��%^��]�����_oɃ���#Ή���m���n��hC`����X�A����w詧� ��|p~RɃ/_��o�G&O�$/��'o �2�2��=Ο����� �ς~���'�����v���L~8�b5���}�eg�y:�!ۤ�����p���pzx �N�J�A�e�����{� 0`���u -w���f`W,x"����M�o��s -��vK�\�� -Uq[���E6*�ݬ�-�.jfgv&� /u+��h/��˘}g��r/�����\o5t��������Bn��n�5j͋�%���w�vzxߊ��h���&��m���vO�{�1{�n�W)�����D�t����8�q]�]v?������K��.�/��,o�en�z�vy�\�'��,���·=,ӌ6�t7#��FJ�� ~�z�̾z��.��~�����` �����I�}�[z}�����@���f�$dW���FӲJ��$�P+Q�(����Յ�A��:�J�q��<:��"�C�|���7�%��������������� -����_~�GP(P�sLг����ի�/[�0�b�=��U�M+�.��3��(�=P��� ޝK:��|L���R�#W��bov�d/���n1J���/^Ky�%�-z�9qAL���'�m����������Ha���d�J+#���%D���p��ٟ�X"����pHJ���b(�-�/�X!�� -R�+���%WXO�(#B����h�J��ѳ`ct�Ǯ�9d�f��A����5���� ���:`r�3�������4���%^��a,G-�����@W�jp�M)���R&��$R&;�s��s�,�`��,]I�h���d �f�%�4ϒ�zu��9�tA]m�Ӹ�P=QL(7z;����5�-�"`��l�śu�(3 ���B6�C%d���t���vl�{��?�^D��a��G��.ER��pt� ��+�V�ܥ�e���R�A[ѯ~d�ȭ����Iw���X��G��<p����4F.�"�4;k@�2��&0P��JvZ�d����$�/@�\���b��~}�Tw�K)` CFΤ�>�6����Q��(ڶ����0j�����8�h�!>��=��Ҫ'z�C��4��#b�V�ͦ� �v�l#0�8��+� �>��y�� �� n���O���~���F�y�?��-Oz��ň��M�0z\��Y@4���N2�OC*���#˞ISXF�"J����%�Qo��/}�9zA%����$���볡��eM�����v�3M��V�ht��j�r��̫L�J��G���܅7'e�T��L��+����Lĝ{"�Bf��nE�5@��:�/�����I����´*k�&�Ɂ��ugJJz`��8�b:e�'��k�R�G-(�BH��N���?&�0�>��*+���P�:N Z��;��`���>1��( ����%�ϟ�w�U��o��~�Z�W'���s�N�B�"���,O9$&K�8I�'������.d� }�h�pD�i6�S�!��Oτ����M#ɕ٠&���]@>��foH{���}����L��O��'#��(��W�b\iR������;̣����ɘUJ���|��3;�:tj"V�}�2$r��Ih9����D�!)X����u�y(��C��� -~ M��M�X�>�?�t�W -8�����8�g,�7J����3��]�:k�ĖL��$�W,%��r�� u��� ��4��~�l�;r/3~���K5���^��&{�ا���G�C ~Df�y�a�'Mg�A|��%��Ms@K�%��q�g8���+̯5�`6�u�;H����o���:\-�l�J��i���ś}P�ӓSJ<��Yt�r��3� ֣�X�z"1�z4G�vAL����M�*{�� %�\�=�����D�FmEրa"���t�~!s�������#��N^\�"3�ȵ�T;><R$@���]~4�j�ڙ\����ed�M�IB�=���sT3��2�9����tWv�\~�k�}�dx�1X��SA��G�[�W0���@L��!��YKm����-�Be٢�sU��g�nFǡ)��"�K�����^���i��g `.�`��flV�5����7VUt{�z��o�-�Im8��G$�?�5�]�b -�[� �gT�t4�>5���v���K��s���I4�����5v�%��uh�#�J[OϹ��M\Mz����S���Gf�k�3�N~�����'l|xZ-��7n�%�_�����94|��� �~���K -y,a�0 �oq}�Z�_��+7g̐¨oNCdx�I#~���?�/< �K �{�^φ��� -�/�l($L$�yH!<�t�=f{�"4]��Խ G@x+Cb�B��0�s_e��'�|�r}��z�O�� p�Գ8��Un�{�i���WN�p� -x� .&kK�%���.�+��E/��n���{�\�]����i��d8�r���<o]�@�s�;�1e�C�,�?i�u�����Y��5 :xp�䧜����9~å?��P��T"(���K�|���v���=y�_W�k�f���B`���g.�Rw�Cvd�SȈ������pƤũ�R"�i)I�m���N���a� -R�8l�ఉ��H�j~Z��������J�0pw.�ʫ�2=-�dhL��{�A��X�ac��"�A%�d�f�9��%���K�Vz.�8�TjY��!����P��0��7�yc�H*�*�|�O����0_�>nhY����u�uSh�:C˛�p��dŊ��7�A�����c(����Rl�#,Fvd�,]�Va������]lm?�@���S��r�!��BˌG_�a�w��fѻ?��?�EϸQ]�0��8=�Z�]������+����d����� -�3�ۗ7���X�t�^���� -���-꣓���<F�[y��K�g�ޙ�V�?����?�b3͞{��F���s;����a�-I��2KRnN\ڒr�@�!k�T�a ����?�/��j�F����R%�֚�J���P%��Q��TV%�[B�<U��zU ��P����U� �U�� -���|f��2� k�T%`��Ջ5��*H�.����h����g?� -��A�F����B�(t��@&UXe�mE�¹�C�#��K�f�����ls:O@�=D��-��Zy�� �Y���Ⱥ#�7�tl���$���n��;����Jr_�˝���&�o`�q�Of��W�S������y��+Ybq�!r���1sI�H��[���z���D�"�����\P��O��z�梅��*N��k�����e\D�S��(>� OĔ���^�:_ĕV9�I"��Z!"���?)��6y�� -��k�x�c����y�0���殐���b���p�Y���4N,����?����E�����Y�9��^')�a���*�IV��+�I����[˻���,�e�]�2�oC�[����䮕�����^ ę���`N���6���3C�kFD��U�3��f��������H4c���f$-��Ż�S�+�:�~��'3�g,|�H��E���+��~��y�E�vO��_@/@RKґC�eF<��0f�f��XЛ��7#�ό�:d�f�f�f��6��ތ�ߌ�ƅ�[���> ���y�8�s� �,��<6�d�8��8��8c�qFr�C���Y��3�3���&��B�`�tV8��e�9C�9� s�b&�g�GE�4#���L7��lF7��l�2@:�!�A��QK7�2e)��8d�1�:K�uƂ�E�Y�3_g`gL��Yb P^DwF�i��H��W��]��_[������ڄWs#�C�1<"/�����q���;��B�.��;8e/��x�h��!0j�̕�m)8���f��ӕ)N��e���LǦ8�j��x� -�Е���yI>@�����3w�X2���[%0�uTy�cD��$���!>D�uR�=X����b�y%]���d0Ε�-U�뎴Nc�UX�{s�������H��Jr��ϩ��3�Y�N�*pv����0e�Qj ��[%ߞx�.�#���x\�+Vad* -���(B���b[y�>��XFMv�IN_�Wr��rc"@�\�;�<n�,���p� q)/���g���2�����cj���v@��`'���g�њo[�-c���̷p��fpO���U�������e��O6�$������]T -�����~��p�v�F&f�ᓠS��x\���}���gh����[%���0M�V�� ��L�n�M�f9����ȎE�����'�?��m�B��9������ꨬ�������Ա ,Vb&�����������|Oc�r�����~D�����o�Zdžf&�i��j�"����J3����=�- ����U�n����tZ�M���+Ԧ���g��C7�8�h���f����g��%���ַ�"�����d��c��'c)L��l,�7�*���z��}���W���B��$#�+��(N�'�|���3*�p�7�^�`��OI"�W�+ �����\Gan��#�*��Ж����W���&e�fa�Q�ڹ����C����k�R���`^M}�}���%�i�i�Ƕ��4��(���%nm�:�̠ve�͟~��@g�r�N�F�_��R���/u����P,�Y5рQ�C��Za\@e���/��PoEc��ߞ`j�H%ĆЇ_ѩ�zDG"<�7H!�^�b�������A�ȑ>������Ѝ2��g �f�i���c ���7���z�����6��<)�7P�|�E��t �� ���"o����; /Z����T�/���}1�x�]��o��;���q�:�)x��M�E�%����0I��5�k �_8˅��!�'�L��c'V(�ov���<p~�%�A�����`zHY��A�����6��}��$��lB�N����H� x�k�rW���f�udO���=���C [����J"��1��A�K�\��9�X%��Td�����m�w�����`S�5�F4� ~��HA���7��@ �鈔�x� -0HI,{,<�d�W���ޒO�鄗��ƹ���&V -*�^�V�16�C-/���T��2D�IL(J��RS���8�����A?����I��0-F�1��t|ZF��% �bU�y�;���~ VB��%�+�#�����D2����:H�^s�m��+<��( (>����rC�P��Ѫ�bë��(�n�V�pd��ģ�@|q�����j+�a}�.W*���v��� ��e�)�&&d%�s��*���(������,��sf��{����~�ƫ��,<[���~���4��3�;!�u��w`A���"�"=s���Ft�jw -f�%B�|��<�#0U\�,�v��{Cn7� -����5�27���r$D�b����3���v$v÷���\G��6S��O�����6�4���8z��J)H_%��5���#��N���h�i(J����L2J�C� Y/���� n��?�Do8q�������!��(��@�� 2���έͧ������|Z��_���i�*�J[&Y�r�V� e. ���V8���}=}H㙵x!�ؓFL���X��O�;W��*� -���g� ��D+�4�N6@��|%*�h��H W�i�b�����!�h�/#U�{I���T3��B�YN;9jn��'Cf��2$��T� -TpYs=��k�t�U�tX��e@�����T�Ҝ���~3�0�%�9 -+(x\��ьX�^�� k�e�Br��f�4�d�*�}/�.G�P����v�F���n�_C;q�Pok� 3� .Z�u(���ډ�3�{���V���t��U WPd��=���j~h[_֯z�[�<BE��'����Yw��5>�e���?�vY�êD�U�%7?|Q2V?���SY*�Βa���4�0z��X�-R�?����6˸���Yw��C{*��Ё���Iʠ�m�m��O�'[�l�����1z�c[Ά��cÑ�5��-"������ś8��$~�M�g*g�M/z�ȁ�ɌT�<X(\E|`�Ƹ\�Y��1�i"I��dw�D#8�]hh!ڜ+��a&�aΘ�{FD d�d�9d2�<�W�6/n:�O˔��<CC>���a>������2NW�Q,I����e -��e��᧡k ��?Vj2\<z�ʲkeyl�,��я���F}��\��L�P*��boa��BaHj��j�pi��7��_� -'� -P��G�J�e��^5�}���9�D�RX֗�� �B*��b���N -Y��JӠI�{�}Y���;`����� @ ��g�� I�M���$��VyH��L���@�P���;��"I8{����1$Q+-���*ש\u�H�A��x����4�r��X�zZ+�;��O�����C�&���g���r�f�\�@lF�W���~!3,7u�ם�9�����/��\kM-�^(�+~�.�NN�V�]i���p���Z����y��r|Q����ɦٕ$ӁP2�~� -r)��G��I�CV�$�z����le+��b��j��v+�tHJ �"��@;e�RӃ�t|��I>W>6�kOrT�]�ݡȅ��Pg|.��z���B�xkIӞ�Bڝ��l���)�<���r~���SoHHc��ܖex�٧ӡI^���$��;�o����a�v�@��-�z�Nt���uY��r7{8�8S�voY8dį�[�"�L#\���2$HJ2��d蹱:��9���VHR�W�t���2j��ӟ*�ߋ~Nr{���6����`m��袘�jX��.�@����;-�]�iX bvVa�2� ��r{p�.�j�0?������6Q�ժ+!����椷ʹXU%�d�41__C�W����Ɓ�%n���\�q@�|��mH�[��pd�>��3�1�l�}�(��ݖr��rF��|�VE �3'UyR y�eM֖�gj�������u��L���s:"�{Sgc�;�=�lj}NlO�7���|��ZU���J�>��L�����Z�e����KN��;�����qU8C�jFv&��ף+�3��+�L*�����p�7D��[��RO���N6�R-��� KU�;U�^� N�[�A�^�J�F'T��Ӏ��D�zN�@��s�,,����}fZsKm.�fm]�<�\������:�XSO2�.��j��V�U\��.��fP��E�4�w0�[%5�ީ\����E]�s.jA'^�'�8�����dV����J2Q��.j��[���N�Ʌbs��k2e����mCBu�����E��ܢ�=�>jNJvB@^�-]5I�Z�P[�9Љ�ÚGW�k�*;�U�@e�u�RO��|���tf+@^��F��:�5Zϵi�I��\��z7�R�BMo�����&�]!W��ª�����iru�?�9�0��}���C���P�8p2�� �w��������SE��Z�гG��x���`b�5Ѻo�9�6z�SU�zH�:�l���- ����+V���~�D�ev��V�'�r<��@������@Ko�A�J���S�V�-A��Zk���Qu����,ƕGH�%�7��v��$��k^�Ί�N�ߊ�C[z�&��b�e88���P̭�'�txJ7Q�IB�$�s��:�| ���bZet����-w���-�gG����u��x�{r�;�k���AT�0QPޤ啅4T�~�LW(5:rFq}K������~(��1�5!������%�y��P�T��X -����4��R�*a209_���u���M+38/� ��!]:��]l�K�챃���P��m(� �p�Q�q��W.�0#�5��-�9\*�LeZ�è���O'1~�y6��Ua������{?9�Mk^�5�k�� - ��ḗ�����Q��~��.n gqFq�.f��y�i�[��o=1�o���S�z�[�{�3O(_�0}1E��Y��4t���)1���L�-���~�����*����kH��`������u��^A̍��.5Ϣ����a�����-F=!Dh]pd�S��mE��V�bm���a��Լ:�� l -�i�}qݶ��z��q�U��vU���_k���VM7�>�(8TE����>�X���9���%�����4�K[.m�r�v�z�Bw4�����>���W�[��<Ed81%��=��������pae]:T愺�������AJ A`�>W�_ hOW^�rms�rlwʲ�����i��<�r��M`�d�R������(ٕ����d[�=#����Zw�m��r�����+��Z����պ�`b�Um���A&x��ǚk�.[���d�^�/��ݳ}0��v������G)�3��S��߉��ɛ�Đ���Co��DSg�%pV�1_D]�r)�RWF��� k�n����q�*[��R�RcK�MQ{�4�H�N��f�쪹z���+���Tܑ���O��n�>FU�45]rWJri3v����_�0�7�{Z]��u�R�$C���o����C�܊��l��)��d�)3'� -�������c߲�c* �M�y4��/�.�8\p�k��2��vV�fO�g�#h��Z���V�1c~:%����i�Nsכ����Y����-͟�y��[N?��rVrv�����JP"e����)�vI9=��̲�hSg�ǽa��SɃ���q ����P��HV�ՙ�<,$UW �\��$��{�>��d�P�!�������+�D@K�-��`��j��0Pxo���OYT)<������鴚��F���CU������`��f��с��JpJe�c�N��H�@'H?��sq-�z����n�]x���e�3�dFvCI��Cd�|0�JA��:�ª���K�ͩ1Ǩ�Y�!=y<�V��9���$o -�bwy�������X��T�S���������R'����T�����j͵em�Q��X ���t�����±]MJ��݀���;�Oe�ޕ��T�3����/O�Ӽ�2��R'���=���;ȼ�<���+,���|"�E��%�����/q]�~l -V�v���ﶱ+�S�[D$0A�2a_��j� �7XE�Jad�ʪVV�G���3�[�%���#v��h�{�kB�ʖ�.���S�l��FU�]���.=_�V{�V�`���X�.`�veࠞ��H&��IY�8�s�ot��+Vf�`�Ea����)kZ��뚊U�\�rq` �����ˁim���))�:ݜ����g�/���gE����&�Y\� ��t����ѵA����jz�?����2~t��E�ϊ�R� ���h!�Uvr8�(Z�p�c�']�<I�N��:c��]E,�p��T�j�a���2+\baɾUū�)��ZL��SS����Bz����Jǖ�L��;�=jC��![�<�r��j�t�;[���"}���D�6�!�g��}�tQ�Dj��c��'�}�*�q<T֨j�S�8O�9��65 �V5��_a�ǾN����<o���c��g��p�Gm�W��Ζ:�CA��� �j� 7��cd�ի ���h_�ѷ:NM�Q��&�0�ж=(�jkR����\�hT��T�T��*�8���v:�Z��N_�-�+5V<>��Ѩ����^Kx .�h��,����F^<�:��&纕�Zj.�-���b߾�eQvZ�I��_��-�Ԝȭ�)�8�����B/�����StTO�oV��$G�y�6P�+]:u>(N&�����'�T�R��TL�>�<�����˅�+(������L⠒XQ����m�#����j�༝ή�mi��Q��˫��H�v���ay5-% ������E�-�������4�^U����������C�c#%��j�R��$�ҙ�)��`�N5���g�T ���&OZ�P�`��rs/�g�j���KƧ�2���;�z��Ո���&����a���2⣠���)N���z�d���g���Y�3�;�k=���3D�+s��k_ϐm�����Y=��R�3ԕ|�*<�lF�'�Ot*<q��Vx�_�wr��g��<FfO�=�z����g�̋~M���jP=C���eU�P�����謞!�&��ݳ]���lw�l�W�P��j�g(��eq�]=C��Y����Q�6� �hs���PI�3;�*j���D�� {�b��ՒTS�ŋ/B���v֨�JHbƔ����G�Y<����SI�,����$g�s��Txw�q�A�u�%�-�*vh��V]�0��z.~�44�g���)U��KΥD�R*��>b�8S��3u(����N�ܹh��ȗLc�O:p��*��4���h���舘hF��R��'���'��{����^�z��X+�)�#�)��Z��Z��~X�p��̗J���:WS�һ��,GVu��R�8�a�è[��~�r���XrBo�2v;S$]�,}�y)ț�R��B1��Z�)6���}I �@��mF!{�ʎc�R�h )WeH *Rr���B˥���ԥ.]y� +������A�^����]�X����Zs�&�0���dџ��Y���P��R�k�x�SU7����.�x��̋M�v���i�x�C��>�h���zq��t�|>�.���e+z%dY��� ov��9V��OҬ���{�ݝ����ƨ��E��7�-u4���No��zy��r��S|��hLf��z54��G3�V��/��K�����Bmcx���mj}�/�.�j�P�h��w�\.�4�f��� |ڦ��;�/�Bu���r�@[ڭ��\�Pݭ��?��梊��F@C5lct����&�Bx^�v���� v�l��g��y�ƮJQT(�����s�X֢��[�����雇���"�H��h�h^u_�����������z��d��&h��:�b�7�v�Z���t�0�yB������[��`�<g�,.��|f�ܵ�*$�b +u���)�d&���xo���4+^u�÷;8p����V���=��T{�bbo����:Q�:V��vgט�V��_Ϯ��n�y����XW�=�x��Y�W�=�����RةA��_����^�K��OWkwS���M��m�O`���^���x��{�ѨwS����:��/ܥ��~�k9�mT{�nZ%�����o��l���-�.��j=�uw?��rD쯝+��Dh�~(����e���z>�Ξ���wn�#��� 8�R7�*I�B��K+.x�h3�����9��"�t�ab]��d�3� d�d�́*�U5hf\�79�%,-a����'���N\�t;�d̄ߍ�d�3�*V���n��M���~ܻ�g�-ݯy��>�&��z+{�@��dV�LfU��cMU�pv�oכşN�Y����cl��e~��qt�Y\|>�6�9�/������^���9������q)yF��Er�J��,8ϑ�~s� +M��S'}�bw�w*.@��3��R���@�d���Jj�\�_D�N��8�xܵ��K��u�9V��^�A�����N=�1��z��é�C �����ɱ�U�$p���A��Ǭ��F6��0N� qXk�;`�$�b$icpE�C�* +�D��(����e����8�}�G7����S��2+*C�����/�\q�rH��L���w�I�8?�T��n����|X^�_���'��SY�CwɑV��1ә�@H�$RJ,�̳�ar�:��c��"�Ѹ��&q|��w��(X/����AǺk�B"��ڢ�[8Y��k}Y]KQu��>�y����@ �G�v`���V%�ߍ(Y�^� +� j���٠�1X]*�j}�a��o�5�Z�V�T��f�U�j�$!wPk|�RoR�ʈ�"�Z;�� + H�H��L���$���Bŭ��@9�˞��9�#���w�O�C���R��l>�G�z>��N���+��l\��_����,��8����W�f�f���;��~W��Y�'G�]/�=x�����CG�B�+�*��\����G�F�<?8��zU����j������O���k�x���I�T�e\d@y� -������J�`h�$"F`&�тYIdm��+V��?!]��n�?�͐�VD��8��x�8F����Ǔ��F��������ڹ�E��V_��ʘ-�݅�T��r��?�}�rEnK�z5�A�,���K��W�O�\�?�=������b���.Gè�h�_�X�#U�`�y�N݅����V=,���t[ɧ��z�_��֡����W�8j�uR5���"F��&Yy As�a)a����*�B3b�*�Pi[��n}��K�����(��E�D�M''6�+-�� c��T�0��,��C�1�\�S�B �x"��Y��Y�ݡ��%�Jb�m��=��?�����]߿�������ǛU虽��2.��2��X�MnG�������B�}C��Ζ��II��%�["��!1�}כ�� �����{o 3Ĕjd��ݵ����f��T:W��'b�ht|"g�d���Q��q5���uĥm.Z����ѥ�Bm�ŕZ���a)���@��,��r2b��jqW늺�3p�5�7V� � ���,�yA5�1P&�.+W�"������S��a1��'��E�����X,�E��H;gwMf\�����I54F1�D�(��8V���#h/�j8��#��E&2��2Y)�B��y�ef���YT*�l͏�T��d����%$=T;ix`l��m�q��\ɂ"�����`B]w,UC'�8�:O�H{���5��w��w�t�ƌ �(fQ7Ю2�9�z@y\��,�GBNc�PO�qi�N~ P���6ƊO���pUh\`���Pne�}:t��U|S���ѬCX�z�l��'�4vI,�h��,\&�P|Ϗ�������4��E�r���5��fAQ������eۖ���_��!����[-ku���ڲ�E�B���~v��>1���w5Jn�H�Ux�W���Ԑ ��sy�8�n��w���]�J���$jIi��?�=н�u ��Fif���r�#�_7�@���&Z�:��Drl��v�� حOs�X�ra��sPL`�f���v���kIL�0g��d���$&s�� +}4�y���W5���`4�`l,���E`D�ĥ!���f�'��,�E���VlاO�(�op4�߽�� _��� ^��жM:����o�5#2:�4��B�*��ޯ4`á9�I�A ��Yy�дC<��LaŨ���9��zU��/V����)�������3��*g��Z5�g|�~��C�ǔ:��?4�G��%6Qa�K������SW�a�����(�� � ��O�Ԛ{��2�\N4�����~�(��ì�O�Q%T���8�X�����1���@�Sz����&\Ϝ�������]����{إ-�H-5z���)=ZuM��F�(1l�ؽ��.:ԹMH���wt�ӹ��##�}�9�� �?��Ks�h�"�C/��fH ���2�&�'��F+y<��|V"���.X0~�����-ie���c�G��M%,\?I��;3@�[��[�c]Lt���@.I�]�A�`c�O�����qw�;�z�,� ���!=q��)��v���vV6���4���\�g�ę�yޅPIPs�2J�!J��1̔�@��&�ڈ�x)'Q�E�Buh���D �A�3�����)>f��,�}F����K�C�|�z��h��R�~���ɾM�`d��}�'�����/�iY���Lj�;ο�6fns�����*��V���vo��O��'�Bۈ�Rq�Vŵ�m۽^/������~R�W +�,�SyKT�����KZ��a���y�R?�.c4rc/�!yx����ؼ� +����/i������W�]�9��8�q�v�L��Ub��3ؽ2?"����ִ�}л[��9��M�ٕT!n�v��_`,��/�'��X�:�h�t6�iF��A��,�aN80C�)|��p?���|�Ʌ�a�X� ��Η��'��>NȄ�=�E��+E_��e1�� +�rFB�~RÜpػg��6'��ڄ7 +����3�$�i <<Հ���y��$+��̰������Η�,�X���I7���Ҙ�n�O&�"NCϋ�tK��Y�M�7���wV�0��w�?�g�:�0��ZΌr�6e��� +�%� t�7���!?��$����"0`'�y�GT�.KU��$��0�R�%��_uRw[�hV��P�d����=aJ�/.Ѹ���A��@TI��0άx/�����9J-q* 6�e�1+2�,�zU�.lp�M�2:쁲�:Sm��h�F��A P�o���y�Z�h�g���v�!�XQwl�;�ȅ'����!"�F~ݗn�QЌ@A�S:��k���cM䱡��"�C�M豢��(�csS�=�9+��_�'0��Mr�cÏ ѳ�*��1I�&7D��k>uX����ū�Pg]��� #�ǚ���E30��c�������}��?]ܗ�wz�4I���h��F����6��z��ʿ��������8f?��������?�a���ҽZ]U�՟���>�w����e7.L`�O����c8�Lt��y,��IĘ���ss�=���Y'2�W�gn�aY��:|g�Z�I �[�i;ib%z7>�2��e���4Q;`m��($�b��7ɮ�F���g9TA3 �&˪PI{�r��Iz��D%�ќ-�Ћ�А>��C{G� �gi��3ma�4���2�<hD�n��Q���8rx��@oص.�(��(�%����e� �~���q��Ѥ�~�|�I���ʥ�Mp�z��^o�TTǵ�N��]U$m�a�u��'��gబ`��z�ߴpL�������8�r�-���\�:_��j���L"��E6����ߴ��7����E�M� p��8l�A�:[��꒴ 2U�:�a�44NQ�myaci*,r�Dq�z���Tr��`�p/I���),���/x��R����C�+ ^Y=�����o���m���R���T��ݗ�� ڻ�^�2�wwSd���o��A����D�������ڢQ�!=_]� ПnқDOd@��9�\d3� t�v��Q�0�v.N;J�I��``T:o�)�NI�B6���唅^B�"����#�f�䛽+u�aX2{�_e���⠀�~��\�Ծz�|&I�M9�6$�\x��#W�i��<�nB�)+���~H=�:1���s�m�َ��-4�J���f�{7U�:v��nj�{J́@��i�y6�kc�c;���K�$��K=���3�<��=��^��IKS+&���{`��d#��ʪV��(��reu�E�f��2�W7� ��BN���9� +F]�ѵMJ?�8�>O��yҤ�Hv`�脕ۚԶ�YԤ��ф��P�+�Y�C�T�$�!�,S�GQ�Ea �(�2�14b8U <NdFi�9�}�9L�P�u�^���^���U� �eN%��ş-Ĥ�6 #�.:�dia�YEdn1����N?i���[N����;�y�(���䦬D)����o������M}�Cjf��Rb��[�o�|�~��9ǀ"m� Y����o�k�6�? έ����e}V^]�=�����)92$�s�8�%C� ωKY����B7�2I���^z���v�t/l��ܷ͓fCe�i���M���)"�IH +����"Oc7�A1��b��CJ�����Y�W�a��bg��w%�A��G��?��ܾ�y��4H=�^O�"_�<�A�y�#��!%K�LЀ��ϟ�|֥Gw`=������=����$������c���MbN]��dxQ*b�]-�y�4��� ��Q e���]�g嵀%ϭ���j��}V^�P���1�� 8�G\�3�7�<�iV��&w�=��/M���( Ϸ[zTJ*m��_b�/p�4� �r�Q��a"e�=������mo�k7Y+/ܱ�5��\ +�^��ǣh�%<��vh&QaQ����A�&i�0||�5i$��#��7P�uBԥ�����v��=���Z�u}��`��R3�>�<��O��z�=�[�9d�[�k����6�84\V�<R^�,$������c|��Iʥ��(e� 䥹��R�nP�.ђnU:9��+����ߞ��r��Vr���uӀ�8�� ������Y���;�B8j��v����m$> s6|"�{bP�M�d�D1���+jN�2 ��T0h<.�@���TZ���$�`��0}�4�(�X��)�=�9���6�0�ߟ弴�"@&Ώ�{[|4�C8&)aD��KH�1K��H��"�f2Γ8|Ze����ܣ�=u ���T�ᙑ +�*�4Yx� �\�2rY��\L�˲�ec����$~л���_�8���g4p�����K/%��j*�WvA�@u��6)��u}3���o�C�/��������5%ge ��Cw�� �����~L��8�|���{`���x���&�ST=����I�e�ա�������\Ύ' ��"�܀�S!�7M��%�$yN��4�``X� ��V��$tW>YG�rÏC�J���s���"r�X�VI�'s�K(aQ(s�F���;��w�����������`g�>Ѿ^�S�s*Ӑ���eO1��ss�U@BO�� dC����'�T�M>�X�E]V0W;0r�`�����!��7��ɴ\W��O8�/葱� +������m\mQ�1����U�B{>�1I�Ƶ�SHV.������m��8)��]�w����U����� +S�H�qC�(��v����W�o7��O�U�[���7��i�j���k��]�V�.�����)�|�����v�n\�a00YOf� CbxP?��V��'�wA&wx!��QZ/g%�B�7�H;��[W,~���W���DRחo^�y{��//�ӥb4=�w&s�A9&59|�ӧNî|:�P����/VF_��3�8�{��1��o��?Oo֬�]��* +��J���MB�a��Aܛ�+����;D�M�����t����j�;d�]��d]������*��kAZf�5lɕc52r� +�%l3�d���G9��>��wS�x���X4¾��1�r���08�\� �I�4K\��=�{$�e� ���f�8x�d�h� +�T�X,�+����3��˨���?�,��y �g� +���Q��o4CG@��d桻��Az�9�j<t}o��60��v�Ʈ���g�_K�F<����7�yY��"q�SGa��a@�K�� �#��\R��3��O-W����������R_��� KP����)�"f�Q�y��E�u��f���R��Z�I�2�Bf4HH��ܓ�2O��ro�y����}L�ݓ�rk׳]�{@NF��>0ʼnG�OH�f<GW�0vS�%��Ĺd��>��P=p���>0�Qғ8�jN�L�z��\�a�5�'uJ\T��T�����%������D�r��v��c�c����^��z+TQ.��˺�q����Ų�B��0�m=���g�h5�H������?_}X�.W�WE~j��n���_�ۂ���M~�Ϯo�Uq�1(8��٭� oY���_/��r��l���L��z9��`!ԇj����Ɨ��B(G�+/��۟^����9������/T,�K������^��R���R�`T(J��˗�`5�)+k���������-�ܰ�Y@��;�B/f��e5zq���u���3ڊ�}�X +)��S����2�1���9L��ޅ��qP��W˂qӇ^u}u�C�]e�y��,�r�J�f a�M�ʐ,�L�:� ?���а��gy�����P�@ܯ�����&�C�-,�;k��\t�����v���d������ j�Chg���Lt�"����Kml��:�B +~q��������~�|3Pm����jVfl����F /͋�l��P#8_/�h^��|5��t���xX�7���A���ւ��_5����w���B����>Sp +��w t�t*��U�٤�G�vqK �����d�ӂ������:C����ӳ���,{W��K�8s�JK��P�$⒒���LHy�2^lřiY���EPw�����i�FqS��y����u5P +xY^����@H� �.?���My���c�U��F�7��]}��tz4�<����/�^/�n�y�������R&�=j�g��~f��c0V|=Y��f|az�>u�S�c���� ?���;�h�b�i�׆~��24�71��餅J%�7���a{*���������fU5�t�U�4����@�3�26���/�G�/�6����sH��7*ť��8 K�����B�b]�j�M�����;�hPv.����Abmh���F��U��qaϾ5�:�Q��֡����R�cZǣNJ�G���5a�,h��װ��g(�g +�V�"N s�m��y�'���rC�{o��5m@ 7��q+ F�2�U�Y�W�����z?�H1j���t�F�_�NϤy��h�ڳ��j;o��$�CU�b�9z"I�# EV}�����g@g��2`_��kq�N +kI?�r��zV��]Q�KW�7'��Uj��Cv Z:��N�ԧ$óNf��b����ז%�a��e<���UYu�B{��Q��.xq����mg��,�'V�zZ��5O��3�B��1r�S+��2�m�&4N�� V�� ��-16j��\ꎠ�,�4���ȫ��Se7�J��Zh^����a�f��A%K�Q�ut"fuz�:����� I�ffnj��3����`Ij����@+��o�F>V�,}Q; �������0�O��h[��x�ٚ���QK�>Ǩ��1M��g�O�G�<qpD��<�w�R�$=p��n��Ȭ�Ό�Ɉ�ڑ�,@wt�IAF�W������̷~�y�5�����厖�:��j�j�?�B1���%Jq˔���� I'��o�Ǟ��¢��R3)�0y�S����svN���;�0�j�胝��L�IH�nk�*r�F�(SZ}��\����2J���1���$��x +�* A�R�8�+_�8,c�I������X����w�E�ߟ���>�c�ʜ� +(fB��N���d�X2Y��̯HH�^ߠ��~At���f�\���na�"���K��gL8����Fh��|D/�ޭ�_�nv�������%��\�� �/�2M�t`���S��ף��Z���Ʌ)�����I}�^�4����+�6�t �+��Z���Q=�)Hk4�U̚'�L?�ޔ��2?��G��~4|�9�[�z ���Ƥ�Dk��y��8$v6_.Ӛ��VN@�3�����k�7t�K�H��"Ҹ=��e��i,J<h �&D�Y�M�,�h�5fulF��*�l@C)�Ks̅�oh�:�������Nȟ���`�Pz�h-����� ���͝�q< �p�e���Ӭ��[hԝG��.�_� �.�W���x�γ��kG� �� $�y�\=aKm˫������íN�HF#�/���o�Q�� .~����w��Tf ��ҫ�N!N@;Y�L$<�O�/��U�d8udq�R4@�z�"G_��M�j�&&��.�Q�R��x<��j���GiC�+0l�H�����I�NJ��K$U� ����w +��O��a@]$����^��hQƸB���bANJ��� d�wY��^E��du�|E_�V`*h������ '�x�L+�]k�@l��{0+ִ�E\n |�.FJ\���Ft�rt)w���ZB�A�WԦ0m���H/�4�a��V�z��'�8�ӹ�]6����&�m�D���Pa�0�w2�G��;�b����ԶXNͮ�IO�����}*�6ho,:K$��I$5�����*lr�,rrer���g4UOJ�ٙ�F���q4b�C�Ƭ�<����>���/H�M�,潢���4�K�&���K�Β��v��h�����T��q]�$+�M�����G��S�i�i�� I��M�����z�"��ī����,�<�q��Gq>�����Lj��j��8�����[i�SB4��})XM�� �: +>��S���������*ڪ������h��M�6w-�1�zg֬nt־�c�6�@�F5%�����`���t�x�E���Cǜ�A�{��&��m+Y�**�E�3�7�nV��1/��iqx6�4�����q�mY #u�"�;���;F��c���Gf��'�qA=p:%���9�-27��p'$,�� +��0:sˆU��O�ǚ��q�_�8�:m6 �9��_/-��_h�}�G, u�^2%�)���!���w�9�K��И��%�M<z#��C�Quj{��-�-����ՙ�c����9��c'5��4�u�ͩ?� ��c�eQ��7�!8� �S*ْ�:�G�� +!���������D�"̈����mա��2��w]��T���� ��sSH�-����R����u�Y�$�$<X�#�}�ɟ<t�2�*���L���S�U�(��YC���[���)ý++,<�պ���(���#"�#��Jr�3{�h�$�}� +EV s��m�)˯�AZ�h�:o�ڗ�5�1X`< +IL�yX�>�j )|�#��'a%i�i&pv1� =SQv��I��/bQ�S�6��!.�Α���2��6[c�)("N?���P�{���o��W�Y�X��� . ������r�LtF"! +t�IH�r�"�Q�R@��|�ņ�>N�$ �&���� �Lh'8m:�<��.�ߓx�4��J,�)\cNgZ&r�}��� �^&� +)�K��!�߽�W]�b������x0�f?,v��x�����aW؏�]a?<v��=���3�8 o��"��������� ��?���Q+颿���������<C�����}z���TE��e{���w��l���z�����p���_��/�ʟ~��ݿ��_Q�XOq0�������2��5N�"=��_����.����统H_lL���Ͽ�k��5���oa+?��J���gz��iJ�˟��Q+��?>~���t#J����H�J)l���W�`���?|���W�����ߏm|DL�@f���8E�n�p�l�C��3ÄZɰ�abx������Fw���;���bOx^����W�T��� +J$���Aa�dz��;�Vܑ>��Cj�@���ϙj� ����[����������%����r�X��Rėi�QE��o��Ŀ�C^�EwdIK+��q������'TR��R0+ +o/�5���W˱�i��9�sObž�T��\�P�t��x�A���r6���( �sy�=�������傽A�S�+�k%b���������ؠ�ʈ��O�?F�d�{��W"-I�3Q���po��q(Z ��|VȲ�ߌL㛑��u �y�e�� IWl��)e���%�t�l�\ W&2�O�!RڒvslkT�ŌA@}ԕ�t ����'�i�V�'��ITHvz'������f��Չ:�z�cǔ��H���eɃ�� ��S4z��h��RE�X��#��-��gBM�N��-���$�wuF��}^n\nR���_�W�'���\ɩ�Rqe�.�+~�H��ҥ���2YkS<�+.�\#��j���&���@Jt�ەI1�[ӭ�a�Mx����PJ!����w�Q��`���ny��z +@����5J����~/ GC<�m=C�r�xÓ�,^O���YѺ;�n}C�KR�p�W�VʍH0b���,A�T�5�J%n-��M��Íb� u?����}����:���3þ����ˤ;˿f||,�QbP'Œad���h3�>>z �@�i��3"�����M����w�܁�x���1I�#��lY{dz&�M�87�Vg�R������e*���r��l�L��cu�T� /*��f�����!z�` ��:�������3�F�s-��1�yFK�~�9-�}1B�ԯ�r��[�O�f榴��u���o?�ӯo��� kdB7Tt�U��سJ�U]� +�Q����&� ��+Y3������8ey.��!Yxu��� +��T����>N3�O,WS��d�a�^i�ҹ�5�b���M2�2�S/��kr�����6� �@$w,{�I?ߠa�o�s��1l�Qi���f,3 ���&_3�����B�<��ѩ�U��+1@�.Fe_���$�����L�6��#ZH`�0cr*���čZ$���Fi.c�@v� �W����Tw�H�.#Q|" dC�q Bx�V꽔;�"���#�dz%�3S�m�eYBK&��f�.1�"'�&��3;A�8�c�g��c�uLu�1=����r�gI����S�$���Z��-:R��QM� ER@�wĹL��<��r��������91�~����r��6�q������_��n�y���:�_?\?H�Q �O+U"K����#nO�$�n����T����OV#�1��8)�P�T�=�{1�n-<~���5��M��SK?GFdw��H˃���,��Y������=c�ٶ;5b�7z����?@�J����4��JJ ��ݶ�,I��h�O8�r.�RJ�C&F��9_�84��@�$R�E�H2ԓ!0���<"R�|� �um'D;�B9�.�f�ʸ�UU�5���"5q*?Ƈ��ԕ�F$��XN�`���琫RhF<�J��17�4!�!��$��|�� H�&//=UB���i��o���55q��3A'� +��+���IYy�aq�����R��k�� +A-\��o���U�L�!�L�Vlg�k$ܳ��tY̭�Z6���W��1 �c�����[le�9���B +�y\��I���'�UQo�{pє��)(�M��.X����s6a�����1� �D�p�g߲ŭ�%�{�h+/��*MT�X�E`�v��U��o�n\~��KS��3Y!��K�f�Y1�71���aTzգ���o0�K��B�YX��S��1����P�i��bE�YN��Ql"���������-ȳ�2i6���@�����A=�N��%���:>h�7 +����/.D�e���,���3b2���x�ˋj0����\$A������9ɵ�P�~#Mf����U��o�h��f�h�{� �M*���Qq��bAB�v��(kZ�r�|e����B�BL*2��������?j�nAPUe���a���a����G�8!ç��X��>�9�8�pi�?n�^�I�)����'��I7�������(���x�9X��3K����߫S��R��v����]�] �Z=�=nօ�ͺ��!�" ?G���������H\�/��KL��P "&r<�k��׆ޮ�K� Q�D���j�����|���45�I��(,&Q �^+�U9'�����g���R=�E%nGLQ\��-P�/��s�w?�_�ߝotT#[�waze�(M]��R>�U"��U5��.�bޯ?����|`${Ӡ�8�&�?��n��X�I�����Pv���G�Ks�sT��%�� +n�I�XY�& ��v��Ӈ��61���aUڼ��C�؍l�y�4�Eڗ�����L����"}��u��ːj��X��Dh������K��1�6�_V)��MVf�<s�����T9�_K���L9l�t5���SrmH�=��l�4�z�Q��� ��̴r��G',@��s e�(���>����+A9�����SK jvT�� hfS�%]�R��Ft凜��nV��t]5�>��Z0lK��oOR&���&�{�[��� +��W#լV�$G�@�!=�$9e�6K����&��Rr���\�kI,k�O�[�gJ羶K�7Ȝ�&�����cIc�2�B�}z�m���z���&�"3������r�LH�_�k���T&���Sx�ɑ��^ 5���FEY˔7#1�����9cǚ9��46ơ?��Ɔm3孊c]w(�hY�F={��Kym�[:�CW��F[�z���>L���Ļ��:�"�-`r���t;�Mê�y�b;�D ��^?���vNT7�r�C��t��tdA��E��p��N�~�p���t�/�{t��B}�F �H��d$���킖W��<30 \�G��%�,���nl��{��s�ݚ�{�g��?���<��!��&��Xi1��!����/W���5��>��x���ѫ���V�7��e�X]H&f�e��u�Ϭð�<�7��K�]�n��^<R��Gl �˰���q6�å"�����͌�$-���c�0�*�r���X���l-�.i)��rx!+K�ѫn8蝟�ԁ�8�a������CQ��g45(I��h���f�Fv�a�v���l�I��TڢĒj�:#����=jؑ��աGa�OI1(i�ҽ�BN����O���^�I����N���A� �/_��1�9R�:hл�g�����hx�x�t�X���#�'PF\�HZ�9���=`��0���mL�)��` �k*�� �y���� ������|�%$C=�a MϤ9u�[�T �����-�}�!���㻛2(�Uo²�&*����g����y��'�8�}J8� �C�E��Z������뗴�J�Άd HAͨcfԱ�o�^���fzC.��`�bW���Pͫ;XT?ֻXP�|�<}����4_�w+�#��NW�8�ڭ~���C�Vj������!!�/�.!�*�n��AL�&1Q?��=(=H?�3#� +�&`vt0�2OwŦ��%i6���ŗ�t�e��:��\�C?H�;\jU?�*M����z�Z�y�C!��U�C���� ģ&��������0�n�*���8�W��� �ߧ��!�J��c���K������r2�eb�^<�.<�Z�Kp.���)���x���HH�x�BN��.��c6�@L|��E�VS�g5IQT6뀨���_�##�>�a������o��-@���&��K�$"Cl��`��Kt�Z�+Ct���l��/*�3ڇ����`6)F�"�I{�8��<S�^ +\�3{J:g����I��W���K���j�$��Ljw��)5��Z����hǭ�F�s������F�����.A�j�)=2R�����YD��|�LB�&��) ���c���.*���X�|У��w��£�����Ԙ��L9 ����@�-> ����ﰱˠ��W���;l2�&3X/��`������{��1��w@�v�a�v��w@�}D�aGv��w@��Y7Ⱥ�wD_cР���&�q0 ��p�$0 L��p�$�̀IxNL�&� &L��p�$0 L�k�$^��$����F���� �1���.v�ǴF� -��x�Lz�&�`aTl�pa���<?�����?���?����}�^�O�������J�ߍ��G�C��0��o����o��M�Y��%O�'�;��p+Q���M������Էǡo�8t�Иq�L5�o�%G��LH��"�%7�g�H������u��|ʧ�k9(9�W�u\� +�(�-uC��t�U���s��8AO�"��P}��r�i��!*��?T*uB���c\l�I�ER[)���@&�b�v�K:��(�GY���!��rNc��i�1�ƾ��X*Uq������W%�<>H�!ne��/BR�l��I|��� +�|�ٮ�o�����6dM� w�ɟR��'m�I��J1J0C�[k.����V�bͦQ[����_i[�5�P�֬)k۩����Kؖ�:jU[fG%h6���U���}����i�gg�j�>��j�,��ʊC/���"A��V Y�e���d�n؇���wV%�.<^�ݑc���U&�ָ��M{��{��ɂ������(M�K\|6�Y},�B:G|3���RH�U�Ry��z-�$���l�L����!�sƬS�K(RˋX��E�"�i�Q!&���YW���蘊�Q�WM}��jH0"�Q��\��b�X���3���@b�}�.�ܭ�qI�V�blV�n���t��9��HvP�����x��L���{�s����n5+���prh���4��y�y��<�ķ���� +��^�h.ҙ2�D���:���ly���9���;�����}+�e�5�� =�qG"�����7Հ)оw���҆]"L���/�:��x��nD����M�\h���x�族�*�.N�|ơxF��S)�S~H�TԽF����u��]��n.]�Σ���;���Y^K��|U�e�A+��5d���nw���D�/l��;����NuuR[���Z��/���Tۤ A3T��> Cz8��q��nN7gps�p��v8ڽ�Z�����kj��s9��o����y�ڰ��K/|!+��Sm\���Q{،m �=q���y�U�_j]ՠ��f�e���x�_d���MO���u|�ȗ ������;@��9N�7�� 6�`�pp�-"�f���&�K��22�� +;̣��������s#�!_�c������H����`o����?�&���/��������2�6��<B����)ZO��͒7�9�o�V�-����'��� �� �vG7MXte4}�"?HLLRB��بI\$�H,&��}8@4JO<�N$���Gk��B8:NX�w���v�oM�n&�u#�!�����xl�����]U�|��8��8AZ��p���UY]:L�a#턿��D}� /;4�g?���byN�������B�b$��rR>R�2��[f�L�Y�m�Q�fvN�u��[$��ڏ���eGCk�x�M��EkT@'���$9SC�3Ev��L$>�~����v��R�һВ�w@y5jJ��w���K�Mq����j�`r�$)}�wQ"���������hi�E�٠�vH�'m�I����Ik�0*�z���V��E�k�ct�*��׆-�Z���qe��E�F��G}����"�����4�(�d���$���J8ګWʇ�b����r��pR���>>��:���~�O*�H�H$�0,K0�:+V�P��J�5Y�f�i��%&����~rI\����V��.�8/]�3v�\��%�(�q�P��|�����t�C���N�*j.���P�w�ՒԽܞ�������Ep��E51,��7�а�>>�맲5���� pj\Q�j�?5�جO6�5{�EŖ�hE�lG�O �-o�{�;���qa_&��|���+�W�����'�w.=��i�x-�hSܑ�����J쑸]&�t�&���3�H���i��4b)�� +@�tU t8а 6# ����Xo�)��c���f��T����B�-��&boXޚPG�yr�Bb���Σ����ךQ�`�S�lwCR��̟Y�;�g6v��Ǿ㎽�]�t�̶Ϟ���F]%�Ց �I�V0��赬��wݜ�L��r�5T����b�"�5q�]�[E@�W���/�{���+=dEY�gE��� ��oZv/Z*~L���E�W�l��G%B��Oc���mo���mtu���1[�O#J�Ms>�&�Us�{�-P��� � 7H��#�<�g$�}��}���wޮV�,S��f�BO�,�jr�U�\Zn��ᵯ�`��:�%����`�� �}4ĕK��6���Z��]-9P)�B#>���6��V].��$�"4��r�w��<�;.�]HwH��A��';^�G�� �Q�#��x��~}�O�O��^�6�=w � @� C*Ǿ��uQ��\J��O8�����*�hj�f)q� q�q��/�_Hܸy=q��aQ�F�(g�TQ�֮(��q��@"��rg��-�ɤ��|�ξ �J����&_$i���E[�L���rTm��뒏����U2%^��b&:�O�w@t��s�vŵI<�?��D[�%���_'�#� +,��š�DW���<7�����)�X� ��.7�V�r�"+��ڻB_��Q���j��֪�0�Y�����ɩ�eF�yc3���㸳q��J|3 �01���������d�<Th�?�̮�#�I���{�q����l��LHim4�L�l_x=�P��˳-b������Z:'�W�V�ܕ6�Y~zG5���:�;���� Ҹ9���J����� ��P���G�W/��J�j�Q����P�颃Pj���2����!��8c,���+9)��������6�D���~�^�������~����2�E���aӸ +jv5�B8��N��{�A�ꥉA֯j�G�� 8H��̼���~1�j[�c��;_Q�&�w�ꑃ��� �^S]Tt���rM�,���f�Ƃ'Q�+c��ඊ�ov��#{�n���t�j�����D� �|���>u��D>K���A���|(���ɇj!lϔ�K�v�j -�#� �v����������h$�(# �[%IkPI�-h�OIL�j��fu�e8���[�.{��c�Γ��Dw~-���aQG��*m����]�o�|����GhF�σD� B�0������H�Bʗ� +�k9�'H�%��v�;�G�O�9���Z����)7&7f�a.��',�E{�i��œ�^����o�4��\�7��硺,Z�:�`�s)��g���� ��D�%~�F�ވ�C�o� >=d=�oF����B���Ĉ�_A��e�m5=����Go��ј.-[�)3!W�����C��DM�p�F {�)�.�,�M�{���H(���S�����r��aIgH�8)��ӝ�6�ؓ�`���Tx�!Zё���%p�/��gy^�(��&䈅�9J��J�9xR/g^Q���˙rgo�F�ޱ ��Aм>A�D蘯7B��[=�� �<��*`�P���K�K��e�������_�WU���)펚?Y�s����"V��W]y����ݾ`r)�R!}J��V�-���MpG�*��̭��pq�ޫ���ՉV��.��T������ދ[~-����u�Z�/ +E��s�E}������:�+��T%֔:6_4U�*�'�p]�s���b�L�Q�V����U�-����-/�Mh �PLa��վjt����Q6��M5EM9*Q�Z�G�� +۪gl���+$ו���*�RF��j ]ɧE9#�x�28��H�@8�ۧ*c������1ↇ��!�튂�� +K;'�,.�!�9 ��l��Fl��j��eDd �.������h�VY�P��%���Ȩ�%�s�g��#ѷAT �jUW#�N�u9U��� ��4�!�I��d�HzB�f�l�Ks2�4��Ls�3c� #�㔒[��8�eʝ�T�� ;��ϛ�vVd�k�ѓz!�p������|B�D���;�Y۳�q�\ Γ}�#�����z����#�ķ"��2�����#�A��r4��AGr̃�j�-~C[>%��4�@n����Gi�j߫�0�z�d�4b�G,�0L�&�i".L��A��r6A�=���eJ��_x&[l�B��i��"Oc9 5���8�Lfd��* >���53)e�B���i!k��q�5#��\1���.�HJ!�KѸ@����G<*��.��b�qQ���$R�p7��)m"k>��Y��]jH����pB�Cv�y�Lv���Y��c5YĥXӤ{�bE�m��̓Y�d���#T +r��(�=M��anuH��L.�E{%��z�i�AgƷ��X~���U +��htʮ����[��"r�T"W������hT�T-��Y��8�a����;�,�a�c�0����\eϢ�0��Y~�Tٳ���r����1A�K�kޮ��ϸ���&�Iy��z~�,iS=?�ee3��G�Y�W���V����2�4����r����r�y�F���v�Z�O_V[�oq����rȔ�Ո8)���䨙m��0�#:j�5twX���#�'�X�s���ѿ�����ӹ�'�ۘ���w�DŽ�A�]��O�M�zBQmxi�p6v� QQ��gs�(J-LN��f��&�9|#�{�C\��Y����S��eH��߲�*cjr@��9N�h!�|��Au¥]U��ڗO�2e]��G�ؚ��Y��*�V�.�I�J��ih���]D(?��_�y�<���"!�%��U�Fɬc�ݪ �^���kL��Y(�ǀ�Js�.�"@]������㻛2�U���4��&��|��u`T�M�m���q��M�\~�!8��Z���`���b;��4�� ��~j�~惒� Z�|s���^�������ke�����T���1wc��/D��P��BX�@߸ "��OD�"���6P���*#������T�����p��9���?U8�t�n�[�㔖�Y�&h�9V�.O;������~��_�����r�!����c��ű=��>��t�� +,P9D�����!"�b"�5# +Ir�ć�?k��Y�*s�D� +�pn�·`�c/��K�c/����)�NB�s12Y��@5�[5��Ԑeic*��>�>��W��.�b��!q�ہ�.~�*4��v-�k�v��������b�8 JI���x����*���ۯ����G����}�Ae-ڇ�*K�R���X#'Y�=A���'(B� ѪZ���y^E��IDd?���eQ�맖�����;�ƙe%cǰ�q�؊��,6͙�X�#�֑&[��T �ydp�v��Q���[�-[9��f4}ͳ "��_sد������P���� G�[�r���XD�?�w��!Gnȑ��^ v +yk�e$m=� �Mz���ᶮ��!b�l�z�&u��TC}��<,׃X�� ֮�d,��Sx@��vQg���+J`����;?@<�v5��d� __�l�^�=�f����/� ���#�����7����4��~�v�۲�v�Y����S�� �cR�>�2"��N��`��@)���h�0��F�O ��d~���!5(.{��� ���TPtk�F=�ז_�c{��Lb��A�Ud�*�a����!�k��s/.8�R@vj"rT����`Z ������`U��c���k D��t���Ւ���ۇ����:�Uc��4�bK��p&uW����<_d +}i�f4n��\�kK W�2��6��w,����Fyd���w�0��Ս�+����B_�y�5�N���`���M��4�q�'����G�`?��\����\�=5�)������A�_^����s�b�Ie��o��F���ͷm\p�HA=7�c�Zw�A�A �M�(!�����eW2Y���b����C����æw����\�����x_)�ܯ*�)��P�#t$�|5� +P�@���o����8�^���Y0�3#��gf��?��q�LǾ�|#431���ǣ��Dók������[N}��i�'�|U"W���#��-�|K�sP��(�jv���2E��(%����h#b��W��J}+���(e0D��C4@�h� �� ˑDy��������]���PVf[(��z$��G�bN�M]Y�M����N����4��Z'E:O�H +�e��f��rY�PZ8�p -�ۨ���x���Nу�ԟ�>�����ș+S��^9D�E(��� +ȅ4��el~J2��@o�,�`�n��&+��!:g���s��c:-�s���<:�duY���r@QPԮE �Ξ����yV@�c3BN5��7�f������Gۡ�7�"a��0ڕlIȪC��:�2��e��ꮔ���ӧb����;i@�{�P��]�7 �� ��{P_��B)}�����F"��Q�PG����k��r� �*����dy?�[�l�l�Tߖ���d�d��tf��i�C�Jǎz�g�_����'�L)�@[�S�yD\����2 +� ��p��\�#Di#R|sD�0���n����K�y=-�� �v ,�Ag�Flu��eG�*����"� `�xI���o�Z=��=TQ��V +Ai�<����\��nP +�˟���e�x0^��v�}Gd=��!���!�8H�A� ��� �)g\���;�)Ww�ט���^���4��A� �� +E_��ۧ�py��M�E�2Of�`��i�L~�x����f�e���d�Ψ����<+&�&48R�2�>U��ԋ5aG�%�Z�©b& �9�oJ�8�>��A�b� +�*���S%�����xK�����Z��I7���Ťka���~�A3�ـ�?H�A*^�Tĉ�&z�/k��m���l�24������>��la��(i9p�YM�����^�x��|ѫ�����A��w���N��p�:z�IV#��u�$�N��!��Bg�hyb^y�2N�}�teL����rw����d��\��������Ў�X���c�G����1:{����E�m+E�~Kt� �A����bx��y���!(��|IY�(�D ��P��DD��MX;�~�f+�[��B��M<���7\�&g����3��Rv�����uK[ln�ܼ�T�x~k<�d&���W���<�)i`�Z杸{�Z9%@����!�`�����#���{���Lj� U�₥%��ѿ�� k'�ȿnc��߅� ˃`��F�e�,��"dyT��!F}D��2F�Y��U��"����:��:ag� ,�c�r4��=թ�I�8��ʞ�����a���H�!�j1Ef�3i���e��#��G�Rn<����)� a��Ed7�q����(����h�W�soQ���l %á�@T�L���C�����Q6�H����Տ��]!1G��v� +��h��)H8c�>L� �� �U�o3�a9O3����������Y�%�$���V�8//8� +�E~��Y��9Tf@#�(���1��z�Q��N �Y�Ȟ&�>2L�M�*��ɓ�˧%TO�(��g(�<YC�Y���E�K���Be*�&�u�0 �ϼ��� �X"F���.Zab�&J�[�R���,����J�R�Nz�HMkjzP���Z>?�c2�lc�c��]];#��:8��h�� ���xC�u�E��7���Ko_D4!�����̮jR�?��lRٴ��c�P�O�*{��nw��bt�d@W�r� +b�0��ލ���LJ�(�h|�D^W�+�4����x�$z����SP��f�Wlf|���hj����=����n���ZwЪ��$���X���Bh;��@}�z�� +�+�l��XB��捡P���~��´5�-gł�í�b���،A%�%��<b�Em�@*�RS��]T< ��Ixr�Ηp�<���� >}w�K���}�"�O�g%��:����#���e�ty���K�L�������*.��D*�Y-J�Nm��5�Ee{�r�h��CD�>ɱ��ڽ��/~+��lh"��a��$��0�BU�X�6 �f��GyM�:��L"�7�8y ��y��V�@�Mh�g�}�H�LQ�S(A�:�4X�5��N��>5�ߐ8�7�ZS@�� �}!9S�f����6�+��R}l�]ݥ#��"�*�q�d<��e[�Z� +�qM]�ɰ�d!�� ߌ��� ���o�����jX���/�&yH��-A�;������n�'5�ah;�;KC?H� N��zn�E2�/����A���ٸ4���n)��rȦ�ra��%K��:����$�A�7�|*�y�OZ8�/Wg�f��պ�5�T7�q���g�������ѵ�};R!�#�uf�������öY��|8$��|�&J�/%�8^�A�8_(>�U.���u[�t4��l��t����nȇD���pU�p2��$.U�(w[��[��۵���đ8YG�(�j�S������6T��N;wU���s��U�}8�F���I��XZ��D�u�T�Z�)@��n-�ʯ�HB��� +��Po�N�t�F�?Ĺ���O<�6���I�)�{ ��F�������k�H�fky��t*Ҧ'A��2�Ϗ��1E���>��E�A2 �`��~�A�b���}�����%�G�D�!:��S�",]�¤��JK���4iy +�@�$��ur������Ȩ(O}�5FRct��p�_2@�Z���j�B7�IFa��k�M�����t�Lr��7��qB��=���a�^�ws7�3�YT�����?4�:[%\g���������4�Nh�W��l\sȚ�a�#��B1k��6"�4������+�d^��TK�ʇ�5��D;�f�W��k���b��I�LSАV��O��UPe�b��k��V�����|q\�A�[\�IIU:��B��1�J�R�a��W��S +e,I�� +e4��'%8�K��Ʈ�p�ÁG���].�Vs� �9�p��X8���R������d�K�U��䨙l�_B���#����/T�T*�����b�3W&�Y���.c�ـ���J��Y�oo�D��=>Ii�� +��`�8��(G^H�t�1�ZUG҉�)�z�ӡ�&qE��M^��i���Qڒ�!(;��]J��8�� �N��&�C�_S���Y����B��/��Ro=c�Az8�N�A��9!@\n��j# �̫X���Y��b�Ⱦ��Yn8K��Y" +��8��yn쎽4L�Nl�04�q�Ķ9��8��,~�Z"⧈n�EDx5�(-���)8-��Q���_��/³1p���4D?��""�"b���yX�����7�����䝇4h���_�Q<g�h9!�ZD� +=4Z.�=��D���V4"�L�� +�H�v���<�����7x�l�p넫" �E�$�|+]�E+D�Y#�/QI"h[�`�!��_��h ��e&��/ ��#I ��ɩ7|��]�|��v�g�M` +��L��5�Z�}���/ Z��Έ�э�+ljh�O���o��A��¿ �H�s"��X�H���>�D�L$�q"�E<�&��?���<�bP"Ie����H�D8rD���!� )"�����X�(���"R��PXyHה�)�����H3��c���4߳䡕bG"<���W�%"Hԅ1$�DU�H"���q���'�\�k-"a&���K��ŒR7��,=,�����H�7�Jq���*NGJ�Cͧ]"{�D�m��!�ͷ���I�"�!���H�����Ucx�h�CD��Q5�!���Q)�o,o2Z,�KQ|= "b� ahX?Px�s�9���DP}L"���|������a���) +��!x�Gr�ee컿�[��-����.���x#��H�R����Pf$h�$���R��;�l���I՚#�\��Mq�fJU0s�A�:P% �l㻰D��}���Ⱦ+Vj��`0@Zo��[�Q��Y!��:�%��-�+�#��{Q�鞪(�{� +;����L=���K�\0?�z�����U��EX�G�����W�b�d����0��x7�q�>=��J��%Z�["��Dpu�Dg艻���4QB+UfOhY�R6���t���x˔�#U�";&��8Ǩtzɥ]"��Z�����T(�w)M�KH�� ���.� +~����;����Y�]3�λ#��艷���*�W*S�]$bf�G�B뚓1XV���Զt���ߑr��8�V5,E ;���3��z�������ޭEwO�k52���oטM��2��� �{���* �{Tr��r^��q�=ϥ���)����T�sT�^F��2b��Hr`F܃��.̨��IN̨ы17&�%e�dD�X�V� +P%qb�z���Z/S��S�hrY�z7���f�;#'|�, �ͷ�ه:��|�0��ז>@F[n�f��a��K�#p�W��|Y���|ӛC{��独�O�Ȃtf�؉}{�xF8�g�;v�A�x�kg�sv�6nL�F���BI䙑����Px��w��0��t?.#�1��i�⪄#�><��vF�-ls���� ����B^��>x�o�� ��n�;�����;�ѫ�r�K�(NqV8)�$�ErR�P\j-o3.� 5R����3�-?����>Ӷ��j�#��u6Bc%����NQ��~�U�M�鄕È���<��=��>�Pz3�C�7v9��6��z?����Mw�^F�vQ=�Pt�#�E�|Z�������A9��Yg��>�J�?�'�A�,e.���!S�B���(�!A����!F�8`�`�E/����iGu,G:�(�ґ?쮇tX_I��W�$>����zON��''U��c{���䔿H���fV�M�g4V#�ܹ ���Rko̻����g����?\G�)�&��.~��Tz�,V���ǣl�8F���[�l�<g�삒����Uu����j����j��C5�U�Il�M�d���{���ۃ��t���i��,A*��������/�6����1����H��>�����s4!E���}3�pD��4~_N���U8�lu8���(�Y,7#d����O���=�S����-�h�YZz����Y^c>���!^��.��t��!��M+���=v�x�o�> ���;w|��c~��G��,�-}n���R����q=揇Oe��a�(#���"l�)A����5�wǞ����<�FJ`{��S�+��TA��3?�v,���V��G�eOZ�(��.r�Z:�9�GՓ ��{(4��"�ҋ�y_���XY����7�O34����k�����7뉅ݩ�A��h)A;U�O`"��8s+� Y��f<N�L��l�En��� �0��-jH����*�oP�T�����;J/<�]/��)���(�J� =.Qh�ߛhc}���n�����7���tR7�{|��/���4��ɑ�ry:6�\@���9O���[`�����*'(���DW������|�E3By�s +���B����"]@פ�����C^l��6��=�.�HE��|}��rv�M�B�ij����s�8�j��Nm��X +�>��m��8r7�0я�|9�F��1Вڤ��g�@��HO��4�AB�`{f�Q�j��>=��oI<�-|�dv��&Gvg��ǖ36���O�Sð��,1c' ����7��y�͞�M�H�r�X���� �k�F6�)d��1Gb����xl;�l�$S@r�q0��,f3�2G�G��@�x�d� �}�q8ә�Yi8vө1vL�O�n8�$3BǛ�|�q�vEV���r��hI`M���|DZN���03���X��f�Ķ��1��v-����s���8nKH�G�8��;�\�;N��x%���0�7�W&(����"NYm��x8��x���2�F+cN�@�dx�96�'by�H�i������S��0��v� Rs� �Ԛ���33�6�']����Y�8c�_�,��C$�к <<�Jf��0�_ğ�� �7��#u��4��b�2b����j���2+���{o�1�����㩋��Fꘙ�~�(�@�q��M`�[�9[���4 �q�a���p����w�[�S��4H�,C۹�L��3�q��؟�n����n��]�(�TP']+�sؠ�$hOOc<K�ۖkdδ��� l�8��M='���A�6MaA�>��8N�����v7�br7��٩�=��I��"��uB4��Cˑ��O�d�&��,6��IޙeZ�qh��J��80�52�6�������xJ���H�H����,c6�#��t�,�M�fe�Ҏ�wRI�����J,sjg�3NBqGf"��Et5�$sg��w�xT���nq�0�{ȏ�X6�cv����R�ۀ�>������[�����t����(.�G�n)p��}���M\�V0lW�A�/�<�+-gQ}�!��zB��t��i��>NqS�Q}P��)�m�!V��ȋ���~t�h +�]G� }�O�IM�3�%t̚'�"��H�>t�X~I��uߩ]{���)�/g+ku��_�dNh���,���~�l�� ���KdB�}��2:���2���5�����j�%�8��9���1�H�N�1�4(쁞��4�=MQyQ7[��Ӱ�1���������7��<�=�$��`y�̴]�l�cv.�1;oz�,����0]����?�:�tLg��33mv53�Q{�f�:���s/5�SۉDZ�SÌ��{�,p��u�̦)�G*7N�S �0���0ө�ڻ���E�1b{V���3�� F�U��L��8�]D=�4��`�=f�/��$pƩg!��N���2���&2sC�H}����Q{?��q��hޝ�CZ���ȵ}'4{��q�;�P\jz~���AC�l � ���y>Z��w)ﻷ��� M-{�c�MK�7�Φ��������VN�����xqf���w,Y�.�~�6�����8K�t��CK5��1�����3{�%1�I^�8��Ɓ��ht�Ȥi�����t�V���g~0�M$�\۰�s�p��F���: +�2��S����Mw�6���a��4k��3:�� � +� +�xtl�O���H��3������-{�xS)r��3C���."!'M��,3X脻Nvh���th�o��C=�3w6�g��@��Z�.g[��㈍8M��M��!}4Ƕ�����i�١�N��y��cd���,�b�g�)�p���c;��q�щ#���Q��&!��BO���V|p��.�X�.�K_�1�������:Kc8��|m�� #��i{�t���� ~�!���6�q:RJ��6�f�����IJL��ƍ���v�~��Y7��3�SǶѦ��ӱ�f�M-�bx]L����q�!33�!߱�x��1�Y�b��lw���yf~Ox(yE��!�>�͟�q���$I��meƴ���}�>u����;���a9v�g�103l +�q��_��[�,����0���?B��k����i(x��o:�N3=)s�9,c���0q�^��v��o��m�#��H�-H���3����K�1���hޚ��㤈�;�~�e)�B~������o�S�Vq��Pd��B�z\�-K �f3ow�����):��uә;FZ�t���)�|�!�x� ���v���c��@>��F�b����;?���C ��pg�� ��͵s��Ϧ�x<��^�]���������ņ�̻�f���ѻ��;H�2��2���2���ib��.��}�;�0Bs�v�m��_Ȭ�l��iш��Y=����N����FL-eHMqp�ԛن�Ŏ�7<!�4#H� ��1��fc'0 d#;���<�J�;ޞ#��e'��Yh�fb� {��� +ql`{�Nf�3s�t��Ge�x>?Վ�2�JS$R��ۧ�8�`G�!2Bۚ�Y���z"��٩d+ؖ��SD<h-l��: [gI�:�FR�~��#�7N1�4��,�ܱm�.�!�KS�b� �.ì2��a��E3E���W��2j��8NL���BmC�".# �Ĵ�]�i�~�v���'0�G��,}B*� 4�>j:��2g>�!�x�-���1�u�B������W @t� ��K!�4����س�rh[3�V�J���D���sʑyI��J$��������Y?���iO���܆�� �x�ɓyv����Gbq��6b�)�\D��5Lo�efg�4���e��V�b8x.!1!IC�e�Y�+�vd��f��a|���Y66,�;So7�8L�Ԟ9F�ƈ۴r�wK�c��qY��Ʊ;�h�fx�0�/Ol#шdcอT��$Yg�9���q<��ff������©R�#p��X}�0��m��*$w� ��4��t�Xә �7��NN]�12�5*#; 5�#R�����k���l��t�S' �,�a��LY��iG8i� �?3=ȍ� +F63c'�-{fg]�8edG��v.�m��kLq�b?|��v��@r�p���i;�M�(~�f�3��d�3�)q��55-?tM��&��������q�N�,'H8"�s���\��������� +Ii�v�8��R#3��!gx��t�,�9VfO����e�1���#�а�,@���"vs��Kˀ@�,M<�L�]�����8�V���nf37��7;�k�����v0sCӊm����]v寑!��j�b�<��?6b�,��HzĮ����L[9Q�C��dcA#�R?�#-�������n���w�6���`�����3?�%�xf!��I쐜�$v�خk�S��u��0�3N�̦Aj�ck������S� gR ���Z���_�����)�%�8��i�(.F�$Ho�*5C��t����tP�0m/E2-����4(#5S�gY�y�~r��'K�:3�|M,�Y!�M�'������q�^d;uca��I���hhU�� +�%^���H��~0���7Y�l�� jμ������B�]@�8a�eV�!���o��6�H�$��wU�^z�a\���H���tV&H_0�]C��H���)��;]�O'L�V��}7���f.$u@ԍ�^s�.��<a���U�l���4CI,g'Hk�M-��̼q�"��,әy�i����o䡔-"�s��I=3�!�o6C��Z�6�V�!�g�+GB�b�D�s ��i�453��c'����!�:0��ʝ!�`��ke �08�Zľ ����M�4�F<6 '�-3����t�װ��#�I3M2�I�t<KS8>v�ƶ��qhڳ�r��.g��@����%� e6K�V�JF��d]ϋ�8���4�ڱ�K^�֕���^������L��OMl����M0svY�d�c�L;����8�9�ւ ��>�3Φ1�g�$Ni�<��XY�g�#\�,���Ǝ�F�쌋WtĽ��x�@D������ y��m��-d���� +����� +�,��q��{$���ö��Y��\�9\L ��+�ڌf�8�23��c�$p�8�.cO��el4�Uc�)��f�d{:`B�>5�̘!���L�� ��7\�) ������c<����,��4KR;�Z�kL����ܲ�>�Nv��؛�X1I`�L���9hf��� +?Q��C�$�T:�����1�a'f�L}�<�YF� S��v3�<do�H�f� "�C�2��� ��~������J�S?�v[�~〰�0��k�_csj��x�ΦȚG&p��1$�-k6��F�����o��o�ΡD�I:�&�k@�sh�7X�R�Y:���]1�r�7���"�O2�N�h�=��ASN����?������@�|1А$]�>����t?�:;�!���ƈF�~�:�o���L1������Q��M��2�t��S�mg��U��fS�A��wѶ�e��OS ?�[3��i ���i6u���m�Q�3=�ǐ�~�'�㘖5O�$g�1m�)ֈ-Ý�N�)�,���=�!�ł��Й�)�� �"u�@�.��Ԛ5�qX" +S�G�1h]m�O3d8NǞa�=<�!v&���fƮ�&'I�yF���w{�t*��.�z�l<5�llH �};FFec��۫���u:�<�+(��-�C����N! +�i2���o�g��}�~C؆��<�BR��)1�n�����&Cs:�vd�j�K��i�0Kϟ� �3��6���3���4#��Z%A��������Î�aQ� 8E�̉]@��.��������!y���N0s����[��:F��r]ɝWO|�2���� +���ܳ��8S{�B�����8��,ː�� o�|�8� �6�p��Ǟ;s���7���';�6�m+�\/��t;�z�>d�$� .��%"w����g3k�Ĉ�����,{�Fh�ʕfA��k'���$�n��R텴�p�'� �69����u3���ٙ���u+��l��Jv�z��d��o� ܸ�/�I+�6aqYR�u���_���m~֮_V� �{���xl��y��p�!ʟ�>�uR/���t���X֙�VN���Y +(�����Cǜ�A��1$&}�T��Λ�Amu>�4���ǀ�1�S���������:�����;�:�F�ӱ��1��lT��c�#�\ˈ���e�H�_,O��m/2�OO-�ֳ�,#3$�0z�ul�C:5|+��f�w�rLۄ�{T&뻜)2�R�~ K�p<�=h���v����.yXN� �]�~[��!�hA`M�u���S3h��,M5����#w��z;�&�� ��6�D/����Z۽���z������v�v2f%��J��O��㎽Ԧ��Y3IC�B��g�%Ǧl��� +���a�����FAS�6���0݄�ٗ�v�3�l�cq +*�4t���^�г�8C�Z�p��N��*�N�ʖ��qiş��4�d6M6Rm�k"�m̂8I���W��8�~`d�Ag1��)�r� $�nwjĮo��*�����Q;�Y���V2J�@~~CU�؞�b�;Y��I����eQ ���}��� d.�aLc��� ƾ�ͲКY;�/�m��Ӝ���7d�D�&&�GBi�#%w�i�o��ty�>����獑z��?ǝA�b��40��L�]�ry����qէY0�3#��g&0�CL�3�њ>� ���P�t�8�1�����Mo��E:guF�U�� +���X�6>���,�7xlo���'_��ä�>>b&,������p3��N������G �uC3-�6�cH�HP��C�y+��wxʭ���g�,:6�]-���$�����Y����+���ΚOB�&�b�r�/��u��Yx (�L�04�}�D�:[$�|ꨔ*Tի�l���!-Е����(_�=���B?��Q��~��߭��x�C���x�=~��E��#�⿓���D�OVh5�7�~�5v��%�^�$N�TL���5_.ۮ&h�`�BC��|�m�G���� +��w�2�攕�A����l���� %tP[����}I��A�[R��7��}�ҁ�w�C���"�tp&���-@�0$��d�t-��}�K:����A��s^��O77dx�ʤk���O�i��f���'m��Q�L���dE���-�9��x�nCR(�2�1�w-�~=��1��/�$�E��[�Z��z9�g��59�k���?����2j��l�Ae�l=�����%O�ܯ�x�Q�7t����F��q��*�6"�\��[N�Tv�S�D�xr9S��^���r܀�j��N�gQ:'��c�|�v�ߗo�+o��HaZc�T*H�6hƊyL��r���˄|��v &��۟p����7�|q����^���Y�+�^7w6��~���[A�d&�����r��W��uAEt����SY�}�E��J���Z�s�����]T�v��(�L��z�]��% o?49���W�U��a��Ҹ a�d. '��!Ft�����V��'���A +�r��<>"�� "[�l��V��H�Я�= ��0H1bɌ��1����q�fG�:6I)���-�̈́W�@�0i'3a��z�9O����QL�V�9O��iu�T�P�)ݷi�%���>�z��ٳ����:��5}�9��8F� ���B�݇�Dl� :��C���4+�u�"�H��a�ۜ���)�����e�^^��*ݐd�����f�HI���<�Ae;Lek�ߗ��}��������&d� x�� j[j��j�FV��Õ�?�ט�R�~� ���Q0�c*t� ��l`�,Kq�x*"�H�"��r�~0�ԡq�j�Q �:�o�"`�m�j�_���aô@D���"�xϼ�n�S��4���<���W�.Xc5{;�\nE粅��MF���)[ �1��t�ϩ܀��j�����x^��r�?���!�o �r�x���i]m���<�4�g<�� +�< +O���������� �L_A<E��!�gt&��� ��$���� ���x�:������7b�B��ۀ�o�� 0(���.����A���^����nqDC�>I�$��*�)���*{�u9$��fu �4.�w�eE�4�Z㪲�1��X�1凨���u&�Yѓ.&�y�_������{V��1�|�Ҏ���?���淵z�������4yO�!����3��C���l�[�ԩ�ݕLнĆ'�|�fY���C��v��C���C�K�C�Tt����kLE=C|���_ዏ�-EvK�!�7��&����������Ӭ[�SV�Y82VsJ�ts+�w� �sc�`�2pg[L��uy:����NP�P���_�:|�F<mdɏh�lр�[p +9�-�P�%���<!j(�Ti��2��o����� ��`,VY��]�ƴ�������d���ޖ�WODK�n�$�#Y�Q�C���S#V�l�3�%�W*���*�jOOD���Z�bҔ��c"��=e����R���U�6��� *�S�sg���'UޫrD��ޜ#D����b�=��wH�� �������w�_u��g���hN&��}S���e�vz��-<Pj@?,;������w����%%����'�J�Q�c���E���B�#�a1a\ɂ�q�T��.��~46eE�7�o/��m.Bʷ����lČ+�4��i�U^.���2Զ��Wȸ�M�(M �?I�����_��{x �%�&�@H��5���;�tC��`z��;i9��z(�zR�J`H-�����zr!��ĵb;��=Kz�:�7YaQ4�����"��}z�F���-%�u���b���'�I�Rؒd�ktcm�]��%7��4�2�͠��!�8^O�"�s��y�����9b��Y��'��Z�s�t�H/>_13�vkntndKVbE�0:�O��|`�Ex�P*�1�狓�h�Z��_�g'K�N�|�%���e��;l��.�o<�U�bh6�Z����Xn-���4~㽙Nq�p��-u���q������i�c��c��������2�������:ĮU�����6~�nұ�|<�,K.��e�l�K3��!O�lqÔ5�ּ��������M9��"rc?�-G������C��0�J��ϙ�®��V?���M�o�����b1��dNK����~i�]ϧq!��F���{oG�u���G���i����7 �_'*����`"�����1?^� +���o� ����_Hg���?y�P��K�o+ ��;2�2¨Tc�d�x���"�����t�{�-�����[��r�*dL{M�Re�n�����3���}�A=�'�wrT}dR�LꤒWJJ�SM�%�&�no�p�O�g�V�Xf]��0�҇������1��/Ԥ5�֞Y����|�KLD�A��c���vFrxT��]��><��q�4ʾ�j3�_X�&�����g^ps�qw��^�Eo��C@�쀪ok?�1kD/�����t�H���" �L���) �;>!�M����o���闸@&j����-��@ݏTrۛZ������r�ŋ�v�9�6��/�^*�8��"�}�],�%A�=�H��x��vUX�f��}AIP[���(�BS��l�W�Z�����Pڬ%�����%^���Q��/R�Ǎb�qQ 6[���y��f�$�Y��ѝ�*N��qo�����j����AL_��N!�%٪ +J!�:x����!�Q)�Xg�����{��c�#��C��{M��?`����^�����`*Tx�'�6������I�x��y��h�I캁�;/%1��$��*_䊃��W�J�_rԡ���L��O���J���)�[�h�\N��Q VE�$�ZC�P�ҷŒ�J(��'<g�:��$�AYb����ܲ,��;�"�9A�Br,C�+�g���6����T�g�oh]���|�NV��lu�i<"AW(-�f����R�sƓ���T*]]��$���}��>��z�*�J#W!��]5�w?�Z�Aw~�����c���L��4[A��"�%�/�)#p �@�5��ɋ�O�QP��{�.�lظ/!x�q��r���Ib�=�d +��Sr�6��R1W�x�zf1Bf�.�ϒ����=�9)���;c�b��8��W��J�6w��6X5��Hb|Ȼ�v��C�|��_q.�ɐ�a��EJ�:���N���Nx4�#�Xr@+��x�������(�WN����)�� j�����_��1�|��?�qirϥE�A�C���r�����A�i1S� �$�����f��5k��L r�Ld|y�ڤ�#} �ɦ-HS��G��.L�N#�9u�ɢ����X �-���}�5�Ab�R�� +̸��_�FN+.H��@�X�m��ƙE�"H�*�O�BAgN@^ɘ;^1�UE>[�`�W8k��r`=�zȴ.،N)U˩�u;�@���������>��]�е�B%(q-:dв;%��˯uxD0C���7�!�� +�7z����!Al�j�(� �^�5��� �q�\ ���,cz�'�G��$%-�<�>Z8�Ԩ�&�я�����K�o���8�`��{<��9($��Q,�}p��zuW-��wx�eA(��~�/���2�� �]��C[E4�����a�Y$���W?�GU�Ԫ{�KM!�XO���p�����\WWȫkD_[Ȩ<����5P�w��u�У�]F ��������Z�pW�pZ��}��o;�5"�lP��0��[�*۬�4�ū�����Bv��͛�K$���(�|c�j��������m��2(�~��kYK?+d�Fi���ப�_R]�R�o �}C/qm�T߈��Fl����H��mďn#vv�i��iDv�H��F�g5b'��t���H�o�nx�6i;"b$�a������nDT��BsF��7�y#��7bǼ�r�)��z�IG��r�U{#z�[3��ķ��7g����7���#��1�N}��� UqP�����H�B�4�dŐ��]$���Ex���T�tT�:;X� �g���ED�숉����"*"�$&�`D�#�÷��yx$ 7"~�Ʃ�I�aq�LJOX�vBR ����/���!��[��~�����E@�"�<�����Xe[ͧ%pq��17o�ݮ��|q+���# �1�!�#��In�����Q-Y�����K<�����J���eK��O�4=��vfQx�G�G�W�m+��]��g����c��nI!�������-_�e-E��)�����oꋋ�]q���2�������u#�|+�s�!�%�yV����Dģu��?�K��哲��:P��A a�@�s +��ivi����������/y�@D�B4i���S�콿��D�Ü��k��T魽U��bu�V7�;T�WY� +�J�ĺ�*3A?�m��WR�� ��ew]$�h"t��N�"�_1��HJ+�&K\!��-�@���uJ�x�6=R*$���%>ݟ�}�������;v�`�c��/�]����pa��:�8��mK+��*�^1ʍ>�r��GN�]��gp��VK, +�x�4�e�"?�d̶=�[���\��A�4�ݲ#�ϭ�C��IT�P/c~%���J���R�<�YH��.ewJ�艪�9ez��.���g"���P�8�问_{0^��`Y���_�!л�?0Nhg{>�]1�e��� 8X(C����1����-2�M�k��`[齯�I�nƽWڦ��t��5z9��=oP�c�u��{2��t��.ۛK����{X>f+��S����O����t�N��N��z���X��c����?��cð� ��G��QY��E��c�y) +g�@��ő�qzUM��L�1%��:�4Ꙓ�{D^,w��EhYe��G�7�h���b_Y���2p)H�:a��&����7NT4z�0�D_[��!���:����<�����"s2��_)gʈ����2�r�C����с7� �?�7�u�7�&���X;yC.x4�(�s� ����<�w��|�������+b��8�q��0�Ų �q�?�5�n|e~��v�3\5%�氂`Y�~8ݬ<�Ռ3 �Y�s�"��Q��=2��g97-R��");-R����t�����g ��m�`��*��y���`��n�c��\�݇� ~6�D:Z���f5v�Wq�%�c<���u�z�!U/�cQd��V��v<"����8�K\5RRG�7"�4"�WHM�FXF�d0YV��w��: �Za��� +�{�����&m�5s�s�#Q��7�Is$�WNJoqf>�LJ,�,뢛7��N`H-�_kë�j�%�_Y�Tky0�O�D�o�3~JG�gɤ`�͟�K%��N ;�s���^�°���-=_�Hl��;j>}r�WO<��r{����q�4=loo�����{�������x�u���\���a�q��M������[�~Wc�c�d^�:.=`�5�gњ��NIf?��֭�D�zB��U`����'14i(�a�<�k�e��uj(e?_����-�zFL�T�>R��G�R��T�>*��E��}$��GR=����}i�SJ�GRM�:d0N�e�#�RF��o�R�=N��"����h�{D���ɜ�5�g�7v#��a������7B˞*�а�I8��Q]��H��x�{�RI��# I0*����+x/2K%�e��\�>�U�J����"����c��-^��nlJ� ��E +�Y��;��?J+��]$�l�B�9{`�O�S��r%Ey�YQ^||B�b�#���Q�^}�K��faB^j�������%v=T��dI��:%�^P��S<,�ע"�TmN��k+Cb9J�S�W5���kk�z0dcV"D��&Xd����)�?ވ�44��� %�j����w�[��(:�#�D-(E2�"� �,-E"�����hj��8� �G��x��c}j-�m�բ�VZ4��:K�UNx���.\\͟�o�B�-%�%Z�~J���u4p˸(�Ҧ� �:j����*)�6��J�����H(���/�UA���Z~j��~�t� +}5:1� +��C'nhL��ZN};G��� +&{D�ϊ��m�:+���v�n��� +ArT��)R�8��4i�TV]�vKe�PX��NzT�*�Sղ.��J��%�T�n;<P����7Z�&����a;����v�#���(���VsGM:��E�]�2ew����Ѿ\۠�lخЈd6z�J�P�L����eTd�.- OșJ�)J֏��l�KI3�Őa9��#��÷/�@ؑB敥9K��$h�أF%���2�4+ +&�N_�}��+=Jy�B��].�[��~%�}�g5����Y]H�LE1.�t����.0��NS`b7|�I+@4�x� +]%�IS�.����C��D&{�`��� i6gQ�<p�����IT��1Uh��ޑܑ�O u|�t� <ثIXSh1k��x*:F>556# w��sTܹX���#���K�h���W��]���AZ����#⑾&���r���s�iu+�j�XE���/��'�(�q+��1��%�����v���z��PjֱI��\�N�D��kUx�x��+p,��ٰ5+Y��N�X}���:ח����9�Ȓ6���%"/��������,ntw��ձD��!TK�N42v���D�[��$X��/�2�+��<')R,�h�V��eˤ8���{0C'�5�7>C�7'���p!)��e�������U��H�!���@{����G���P/�Ќ>FHv⸠xs�4��8{��!��*�*Mu��������o�Ƀu�gQ�0�i*�V�&��5�����r��g��v��7��P��"�Bw���������+E�W���}�nj�Ϻ�A:Z��$ʆH�!���2����@�{ +�/-P/��� �_�����E��>�\�Le�#�,Qh=�/.�L�E���+�J�#�woW�e��K���V�Ek��w�_���zq8"������V>�}h�� �A[��>�x�� ��wƠ%lc�.%1W�UJ_��B�!ξ�gn/Jy�8x���S�c��`�g�M�0�Ę����y��4�4��wG�U��d�O�Q����c_��S�8�\qt�ĥF��ߑ����Q�6�*�3�Hf�A�4�>4+��UU���f�$}+�H���9�����}�i`~�vj8=P��Te�Qj��3iR��D ���PB�����L�:m�ӟ��P�$��k�W��lG�9k'H +*�G@ �Fꕎ3���w�7��2�6��IG������u�vm�wx�t� �[�8��^�����Y�\V*��b��hUl����k��~�#��\c����9x4/ɣ)��h���<�£ ,1x4u�MY��ã) ���t ���y +�&'����t�<����S�m�T����5�6˾GN��5���ϯ���կ -~���k�2�5E��~M.����"�~M��d�OZ�1���k���i�I��\�.��D�V��NIOwuu��;���.��U��Q\*���y�!e(�$��`��!c��#l��k����G�LI''�daڙ�Y�,�Z�2ԥ?s�:(d�B�su-Y�^]�,Ѩ~! �L�(�P c�Π���ʑ�1�pu}���T�zL�-Q��2,�O�N�u +7���Q�B2E/�k]�XT�|�7��r2��P.V��/Xղ8-�<���UҘ��D�@Iq:ܝ;�^��ڦ�רP��6�`��>[%L����bA�.�����͇ +�e�"T�7�xp`��Kw�RU��t�=PG�_2}0O�X �!3�Yiq�J�eK�8��3����OO�k��^����!E����u~(����/����F�o�ۼ��>����5�TJ�Փ�R�ԗ�[=H�^ӛA9�@͇"�/���5��r����R�lL��<��{�b�%��լy�y#�[�O��R��4I��Q�����4����e�t�CP���DžT��qkj/ؤm���]��B*EO��(�P�� O2�;�_��4/ ������n�*�����K(�Z�W /[��c� +:L:Y1�SDD�G7�b�U��a�t�V��Y��>�Y�4¿����y�S9K\�$�g���j�ݕ�_q�>��9^'��f"��T2�#E��������Tͧ��$_~~A�lۯ���#�b�ڲ;�qwa�]�x�b����ڛ+_�^ٱ<h��ouuJl���H-[��k��)�#�ա��Я^����w�8#uip��z5�� *E`ȫ#���h������nIV�zkK^��u%�O�_��F� + +5m����IF���ۓ�����t�xl�|���!2��� +����b7�탤�s{��e퍦����5�+f;p�T-��2Z,G���,W����qg������8N4x~v3_ �9�tQ�d���:*��]�<x��_��(: z +�J��2�p��r\�r�L��h�����&�íhR�:K�om�忮�_1�D�=�׆I�woC�?�W�/�3_��ح��1�G���7��?�����Zs�������B�r�HY�@��.�w�ac��=gf��TC��y�44�2N��2�mP&��u6_��O��`�U�~Wn%������!NT�W�O勧Wt�h��W]�� ~d$X�F�Z���j�FJ���~�����0�)ԉ~��B���/�~ϴV[8�&��, 2��;�*��'{bYg�&�9D@4z� ��Z����Byz8ŀyx'5�w��= jL" +}\!f�7��%.F�c��Ne۟�I�R�����0��ڃ�u���&��ﶠ�y\lF�w�@�7�X���H�j�lM�`�4S�#z�lLWz�%^�媬��b����>�F�Q!���;[�cX_�U�P�#UU�� +1�m��~:c��þ�J�*�Ĩ�H�e=ԛ�4�#û! +J�ƫ��=@w#/G��3/s�A��������DO�q��(jKby%h:�k�d>X4p\A�s-��F�����PW����{���g����Ɛ�zy�x%3$� �����R��$ z�l�ld"�������˾�q���i��� ����]�ϖq�?d8q�B�:$������I�u����N�K�M�=��߫Q<��j����w�2�0�q�o���ʩ}���`���Z/7j�gA�ށ�l+ ++��G�P�]����em��D��`Lz�N�l���������M�|�{6��� S �����A��0U����A�T��Ti>�w���]�6J��/ĶU �_�>%��5V"�"�*�ހ0|� �m��,,i������G������!�w/��GF��3(1}(1 �r�o�E���r��9N�Z�y�:5� H� =~95��,�d��j/�-а�����|y�:\r���91�����|o�=e#T�()K� |ND�.j���v����,�a�}��]�����s���s��Ov����H��W,�~@h��0~�Ѿ�:�Pr�2e�%�����Y�����[Q +�O�J+��x�\� QR\]�6���{����<�anr��4�J��ٶ5����R�c�&��xM+� ��"���;ш� (�V�{ҫ�kM���o�Ջ���n�$�#��g�o�q^jy�*��aW��i_��4�Ֆ+�:Z�?�.J +�O� +f,���k�a�,�����yvt���R@;�g���ohA6�y�Z�q�t�g�y"9'^�͎� �w9�]�xeF�xw%�]�v���+>15ԝF�k�OD����wM�����K��|���N��xS���s[N*^ ��H�.�_U'�I�H�#�Ƃ�C�IY�� +�0}�ݍ�EN�C}ƞ�����!/�^9�|���h�AN��ݴ�R:�٨QOk���3�HM�C�P�=��AX, ���d���@(�a�sz#��|Ŝʰ[��{W�i��)C���d�F �9T��ߡ�l���,���*�g����� ��.�a8cA��|���,v�[�מ���*�F{�3zB��'a{kx(��!B�G�"�p �ű�Ϲ��?��3Ї��>��7��z�� �g �(�lw?r:�u�R�������0�n!_�dI.rS�M9�Rl�\'�3�y�$��:e�^2�m �?�i�-n�U�T�h%�o�2%�����SY"��&�{��L��O�X f��2C>��[d��1��ڵ����$�i!RD���C#MlD�_�/�b����A�F�/� X���\��0�"��IdPefɠ����6@�{�j{EH�X����)���{H��Bm��<��nGo�s,A +R���X�����6y���f�\�?��u6Z�� C�/�2�R��t�@�0�N��=p�W��p�9������Zp-K�߮s��b�wv�.�Z*��|�D�_��D?��.�q����}��C���p�<�ҙ����J�h�X���|9�Q��6/&2ִ�j/,S�}N�/�J�A42�w։ë}���ӏ�uI�1���b���+*y�(�B�S�vp�Q��@v�Zم�Z�) 2��L-U=2K �m��W��Q��P�E#GQVP�c�x���(6ʊU{�&17��O/��̱�<8��^Ǜ��$�@?�u�x�t��͚N��2�����T��K`�z;���{p��i��f�\�b�aG�h�E�ɯ�����k�R�����7�߲��f��{�f�{s�#F�ߌ����Cw�D@�˷ +_���Q�K�.��2�.�}�2���S�)G�r�����aT<,��������U���O��~}E�$�+%a@�G&1�Lh�o��s�Mշ��<"$<��h�$V==k6=Ej��l�y�����}�:P���/9ڍ��K�H���<��jY�1!Sn��k*J6�U�������T��`W&���q�i�:��$��v�Bk����p!8�uuZ?���\�����*@�}?���`1R2��:�!���l�P>�P��_�b1��k����DZ��ĉ����]fk�̀�I�p����!s B&0/]�Tc0pzO����p��K�r���Pp���#J̗-J�桲DM�<��yU���«)2L=��-M��C�� O~�"ȱ��9ᝮl�FIx�-N��?Hm�����Ru�1fՂ`�`�H +W�h[UC�A��>�olid:.6W_�bC'<ҳ�N{�Nx:�gLg��|{��������rք@�G��7�Vd���ӈ�qQ��f�ͳ�ٜ��gk��'vL��w�q��z{�%{��y[�q�Y���L� +�uH��ew4��;є.X����_�"0�!������ �2Q�����d0d/�M\ûtC���)��F9�Z�en��ZzVN7j���('��j��<�'�=�����P�ٹ*hDCv�Ų�����p�ÑWB�˨Y�oaB�tA��1^��]5 Q�B;�����-��@�?�m�U��a˽~��l��0߽�#[i��[Lwأ_����mV��xy������dT5E�ǎB���l��kfl4��o��"�,G]� ��rTs@T�V�Sj�P���� �/��4a}��:���VP��'���\O��=R�}�R\ļ�0t��l���qD�'�5v�����S5��u�|+U����`Ƀ;w�v����,wq��-�@��! �S�i�H��:WxY<`u�N�� +_WMM�~(�Qb�P�]��z���b�GC�kP>h#��Xx�j5���p47��էxz~k��R�huˬ=�5���@~/")!�ӛ��t�*���g�ڒl�ݼ4���s�ă�v�\���R��[��5o&!M�/�~R�eM~���z|�uh�:WBC��k�;}5�VC��PoGro/N/B��u���O#�iF�>�/FO���!���c)��G�������ʜ� `/ ��,�v�{�%_�+䘁�@�/��j'GY�Fߴ��ik옖RdMڂC���i�Ք̑D\�ey����n�x�-*�� ��W��jI��h�_�6�x���BZ�z<a��%j�@������w���%Q`GWk��/*%f�U���u�w@�� +^D�U�|���> �Ւ=�Q}]_��Tąx�i��Th��iZ�W�����z�<�uSC�����3��n�n-Jӱ����H���[�&�ף�VЇ6e��U��@�� �� �����uuġW�cRy�r] �i�Gy�� A^.���ik��L�J��ar��y~C��w +�P���;-��[����WF��tR_t��$��\��d�ѡ(|Q���:D0�R�WX�h�9C١K.;D��PM���[\&�v�%2w�%e�L��"�)��jQ��1�UT**kKҦ[S�HVծ�����b��Y:����Ch��I�ӗ`���� O��� �wŅ&�b��Lzs(4� �ƲA��L�JA�\�\��m��i�{^@!����24����Mk�x_[��}�"�� �hU��J����$��,5Xf�zj�dO��!�-�t�ݴ�aӺ�-O>f�������[Ή�\��P-�\l��ۣ�ԝ-_+�K#w��s��І@�Rq�喾q���o�J����t��^߱#��:_�p�Q�o��ۋ�h\�6�a���e����oqLm���Ou5n\��kr��[z�L�rooD�e�D�tDJ/���ݡ�yG}E����� �nL��32��Ua0A�/���J(_q�hȁ�n�<L��lo��{������&�3�:��J��%DA��]�Տ2'�o ��Q#(�> _���IT $̋�@�H���>͞�ty1⡆�r�)��PܣFfT���G9 sH�<-�'N�5��®.7��.��o�=V�(��� E�V'�M�F��OM�z�|������� e�xZ��م��Ry#��*Gz\n<�K���O�ڟ ���1[/�Y�ot4-���lc� t'�f�ߦ˯�����6�n�[���L���<��i����qJ���ç/W���@��<n\.�{��Ħ�Y�.t0IOoڧ5I���L6�t����� 2@K�~j`��rC%�z8�zeW��_��UAd�ҏ +�M}���x2G�x��������aB/�$���R���.�S�ߡ[�q�:��D��hۮ��5S��������s��5-�H7n`����9�_8���2�A�{����p���j[C%��Ɏ9T��J\�*S��[;R�˔����ğbq���(��;�D��Eq�/�uKZ��X�!���6MWK��O��ɗ|�0)���1�3"<��L��D�.�&�@��)��a0�\��ӭ4ŒY&�G���D,��bIw +%�y[l���iF �: `P�XF�1:�E��v�C���-$���hV8�Rkjf�p<�l{��c�7�����Y�Ɔ4�2}Y@^,+��!_��U�F�X�i�� qU���M +]%���"�AZ�����ȯ )�d���A�&�U�+8/�$�!���O��dН�oaq}�� Sh��l���$�n�����<%�6�!9� &��,���PS��`�����A��$�[�av����]}��䥦�|N�|�?6ѵ{RI`[�֥�4���I��3+;~�c�rƶ��V��\ۊip��@&g.G5 +XJ��=2��ä�G�Oi�F2T��Y<�O�W��A�� .�ph6l+�����ܔ�7�}�| zkL2J(��(%.}�SȢ�@�&�7�[��Q�,`�(�fy �`7x^[ڋi���:��k'�����0q�v8c$�q<5��e;���Ğ9���$hK��B��s�!�R� %�CW�F�h�,,}��e�x��F����4�>o�����%���2f|�z�~�ZRVb�2/'�3;��YS��g�����C*t�KZ�/�j�e �K�^�x�=|ѵ�{(4���}P��}���?L����8�J=Du������b0�������W +��TS1$p����D�3��ߖ��P?�}]-��;&�J�N��;@�� +��w6y�!��HL�Oe_$�z���Wp�{��G=���-���|�59Qa�1C�jJ'��YQz+%�+�dj*��Y��Q���\��\B�k�]əg�A�D�Zgq�>%��8�*!@�uP��L�����ѷ�+M��Q��IPS�� �O01�FS��\<��]*E�V�qܶL�k�4$!��ׁn�?��iS�D#KKEK؆��|�7��o�.�M6�u���c�@��@�R]E�?[�!�;��B�܀�h["�W���2�ղ$�i��>ɇo��@>�(���}i���x���W��+���ųyd4Σ��|�,�=>���a�ܡ��M�9��Ɍ�q�Jm\WjC���z~-����Rjj����$��qq�چ&Sz/��`�h��GI�b�=�Ot��XO�Iv��*X�/A���0�2m�FF?�+oyUMԯ� Է��Y1PRe��U=��r������` [�Ju5Y�rm@W��VM.ۨ:v�k�.�چ�� �i�[P��=ۮ"�m�J��w(Җ�Ho��^���h��1�TW���d�zSd�b�FB�AW���j�Cͦ��n7����� �Z}���T?/��\��C�j5ڴN��] +M���wYj�N/#���_~ !ܣ�ݯ�֔z���W��qS��A.q:�M�Bd� +6����)��4��-���lv|��luw;�/�n�ɭ+����c��|���W|�()oܐ9Y���j�l�i��k��E�-��2�P�b +S�}�N!���+�>jdG5�9 4FD���X�C-�Q�ѻ�Z��2�\��l��\�q����M�b�A�î{�EZ�,y6��8�{e�����2�;&�F�j^w�گ>���^�N���= +� N�"�o�l"����~ +�A�ME�C���w��O���|)j�ZQc��.����g������4����ɿ"�M�$�fم]�>�*F""��J +o��ћ79��֯�`��b�]'��d�c0�b�7#H0�#�X�p�ox��"��}|*�������5,��y +���/A#��^S��dKk�O���p�6� ����9F�*��Q;�E� ��Bwv�� +��*"�^�V��Q�Q� my��s�-��L7�,`).s�b�w��c��E^Z��`�m}���!/��?Fj�P�'��6uWa��X�4�˭�������!M����r���������}�����8qq�t6y�W+��'���|����.ϊ#AF��c�NR�i澴"$g�%���I�6��� �s%�{�R�.)��4��joUS��I1:jN��~�e5����C�v�|b�����#�p�|�!_��|m>�w�l�=c[,� +O8Lg?J$]����������7��ɧ�!⥚���xZ�F(드�UFq�:<#�>�CU�?�r�[H�-�����#.��pEI"�>0�Di8����5ߔ�]�5v��)A�Hn|G�5��i#�H�Q�j �$7����уR"7y�i�xS��Ԥ\�s����-Fփ��i���d�{ �H"Һ�i��ܒv��|Yv�>M���Io�ݣ[�u¡��d�a�KMh�㽦F� �4 { D��V�ǠF�`$4 ����H�0��6Iw,�Q�� �n{e��Rd��f�vj���f�l&lZ�]��� ͺ�^G�X�@�����6j���#��9�р�-2�W�m�7��qU��/-��UFR2�� �Y(lu +t!/�EIj�;}����s���e�����N�5f�f/��<!�[A?���c�R��${Ö� ��T�g�B�{�'��es�>>�Psu¨ԥ����R��&JH�H����Yub44��#X�����sj_%���=X��]�0� �v��V�vYa���e��:5�fg�ٹ���Z>rȔx����2ٜ�)��J�/�z'\��˺�������W�~�B�h��%\����kvqR�|8������r�P�噕'7(�(�ڈ���9;YӶ4�Թ�i��x�7��RSu�eNM�I���P�i���n!���#�*:Gk�����ƌg �����h9Y��֕���|w���!���,l��:Ϸu�*�� `�f��n�.�X�=0\�|���q��K�S�U$�' {���Wd{���4��X��Y�O�,@���Ql�D��(~\.��(F��.��{����*�t�����ۃ)�<�-؋U�ۮ�F%٠�/�����㦍�p�o���k��|�������[=�E�S�!Ǣ��x��9a����:B<_;V�s:_NK�6hL�)X�"�Uc���/5��A�*�,��z�Ɓ�Y{�댬u��!�� �.j*�^ި���g ͧD46����{�IF �%��R�FAiV(��BQ��V:�.��QZ��G\�G{�$��m���Xo��ײ�ie0J ����>6B��u��~p���;�UZ{�UZ����Ɖ���F H�b���@�'P�@@k�"%X�~)&I��n�3M��<��������[�F�ue��>�g�9_6���|Y;R�.���D�KN�ҹ�;g]��߬DI~�6Rl��7��)a+hl�>g˭���Z���1�-_�s�ڽ1�[4Ϗ�:��K��;�������T���z�N��y���˰m�$�5�����2c��N���;�>5��[6z�,��9�Lu�/9SC��cE;'M9;�=?f/2�s].��HV�����SN��)��B�Tk�^�[H�YL�����������47�;mB���`�����Nê +�ګqΔ��g���~]š��<ԩ��?d�#�{�(4��B��%T}�v� �-�9�W��G��6k�Կ�$,��C�N�5b��<q� +�Z|G��9m���]��a������$�I��.��`�@a�6i]6�a�~�r|�w�:�����b�&S��eb��L� +%f��L�)L�S��~�%4����I']T�+{�2K�%�©�GT+E�� Ҵ���.��K��+�<�D�2������*��!!��RT�Ո���gP��f��n���z|��w#�,�fs�)���0c�4�l:�*�gim����6]�L�ƾl���!���R� ���6#Ǥ��6�I8 +�W������VCNې�v�9m,�s<����ފ��{gHb��N��Vo�+��P�1�5��41G���}yȓB}��P�� {|MH�����|<�^l����Yk���=e�����ԗp�̐- +���ʺ�<:P�!��"37,�姜*z)Pc#��L�h���&���Y,��T�Gݲ�h�F�*/��K�S9_H�߫��T�:L��6�ff��[Jk�6k��H�-,b��O_��oz�]i������[�V� EB)�|�Z�]I�hT�ߥ��nG��څu�|�_�y�'������� {�~E�N��-��L���v���~�Ly�V�'L�$�`S~1Zgs��-I��S��tM�ɩ~ܕweط����k|��B�{ 'W�ܥg9�|z:�<�7/�!Sᣬ�1�;�vk +�߲w�x�B��Țo�� ���1+]ٛ1�� l�N�{y[���f��2�U߳bi��&��є.�<��}����o��J.�� ��)�e�w"m����{�,�����/3�{���>�����"�μ�����%rh��x��vU9ʙ|��\U.��-&b��W{�}�=b���ŀ�1�>W��=���ގ(��*���#]GP'g����: +1hy�y��tF��Z-eqI���ו�!D�bE�o�� U��V���$���c [ԛ_hY@�^�W%0P#S�U5�uP�.�W�ԮKW���6S��D�',W%����:��i4�?*�63 <��� �]ğ%GU�z"[ZSq@�]�S�F�V6��'�%j��� +�P/�[A:\�І.s�P��H��%J��Dtg�(��������be0hޖ���<ٮᘋ���>U�=l��*4p��DM��'j�dp���f�ˉ��B��Q~.K�� !��}����u'�eр�<:ύ�jY� +�4Dʼ�H�tN)��/C���/���Y�M#ڴ�f�e�ڒ\�]�4��� +1�A�����a�f���t�:k��m&Ϣ�&`�&���m�x83�����}�CwJ +j,��ևPOGrO/NB���u���O4+b�������r;z�?g��8͎!7�� X#o���#�4�����G�w�� �(��l�2Y�w6��y��T)����)��E�!D��w�K.��Xxh�� ��@*��@u��~��������hj�Al��F�[� �6�k���ZxN���r �S�#u����=(iJ'����Gr]����=NS��p{�cl��v� tM������7���ܻQ�6�AWY4k��,'�V�h�a֖�怳o��r@���Āxx(4� 4��@?��:�� T�=S���H���ص��U���̹ܮOh|��ॺ@R`z,n�x�Ld����PS��X���e�%5amr�|� �TUu�5`" vV��wX�/�뢆�O�?�@��߲�Qn��C��q��W��o5�à3u��/����# :R/��Бm��Y�*IH9#�*$�R��8��5���5�N[��/�!f�5�4��:Ƒ�I�̝��PS�H�4����� �Tݧ��(F�(2��7��6�'�~��)B�V_R +�航.���z�<�u}����/���}��v-�6zu��3�g��H"�K����_ +}�a�`��~�R�$��/�^c�#_�+]�S^����;ܲ�▅�7=[-V���R�o��}�9a���y���8X +�lXzV�f��h +g�*[����JJ=�X��I�U&�����B��~@���ů�pܥ +֭�(:K�������;!Кԛը����zM��/ק���t�p���ӈFjEl�;��#]�V�õ"�6�X"vD��H�kE��s��")b+"Q �����m�vD�ЈǔF"}8��\ّ"�A�H��䠮�EuEJXW��uEj`W$EvE��(��vE4��f�E�W]�W$B�"M�W$���x�H +�7TM���ˢ�"��Ӥ�C,"[Ct#.�_Ջ�"�vW��$n�:�+� �g���'�_I�dD?��Z"*�#9���/��D +_�A�: X�P�*����� ���K�S�5ѓ"Qx(�Va�*��/��Qp����r$�#�(�{�`�W9U�i�*��������)j�Ю��|q+�̀�# >�+E>��Q)�3R�<[r#�%�XёY�/��ߋ<"�M�#Y�P\�@�����ײWz�x+TyKY� +Ii`-�?��\��=,[f�r���d���^)Q���bt���,��sլ���c��:t%KS���n���g_�@�V���|�������-�x��3bTF4�P�&ff0b����ش�wd>c�w����gB?0 �Z/���& �U%����l_/+|_��+F+}#D�u�d�g��@,�ϋQ�HG�Pe�hhק�����{��Q$��A�\�`1�A�Y�ht+T$椶����&J�9 + <��wv+�AI�t�Bb5�6�M���=����n���t_���a�����/L�tɖ息J"i��߬.[��6�6�������Z�����y��_ޏG%�]�����iH{�i�����iN&�����2�p�*.�~�h��r�|~R>r(�vFN������r���n����H���!�?܊����z��QA��d���~\Jy��.3�?.���h���;Y�y5'Xf�3,O�G�<]}r�����7���>�niS��-���˷�lJ؝_(�$�w6UghO:�4�m�xj�m����r�N�{Z3��[i~����qZ�>Q�(�iwG_!6�S� /� +/���߁�����b�00�"�76�§���˱)JD~*_<�� �9$E^����"�%��.�$֔C���i6�5�� +��pB�S��G����`�Q���-ף�|����{*S^Գ+7*|�'/b� 0��2�h�f4�m�%�CW��Ӈ[���l6<U�N�92.瞻P���'|��3��F�?���yz���/5�'�����2��Gs��oo�O��!��^����`�p�.|a*_�+�Gx��Ûes©aǫg��h KK �u�� ��<��<��gy�/�T��b!����&k�����H�����9G����0S�[���)���֯�}OpeGY�ߵ�~��k$���R�B�iaS�,Gb���v�����7ؖ��y֣f�ײ�[ߙ����J�D2νƯ�`]����Ƕ����J���L}��X�Nѭ��_KNw��K� 8!�|P ]���1����Q� a\Q����&q�I��_�P�b��:Lp�a�͝��+�F���Fd�7�ߓ[�1����4\�^��>�l���L)�4l�г%"s�mi��]n|G$$���sO]��E��x���U�Q� ���m�ML�45�"����7!F���ıԾ����4��ǽ�I?4��?�b� ���>�:�D2���d0-��~\E>�j��M�������B<ߨ��.P�yV��%O���~�cٳ���`����4/V���`�D���E{/���9/oh&{����9��49���+pk�%�<LKҥ�t��-6�G�v �i$�^������K�AI��Z��I�l�b�pd(!�4T���2?3<�����Ro�1��0v|�4��TQal�P`��u:Y�k��d�9L��s�W�1�hz�\���(���kh�L��Ň�J�O�o�@&L[���Q������,G��c���}&)Z���)���#Rl(i��3n��2�A����f +������ +�B�s%I�, 0/>>����r|s,�A��� �9��L }=<�a� +�c��\�b�1𫸌z'�G}]�+�9f D�D,rRF�L�l�g���+�XH>�ڀ���݄ŬT/i��( �N�����4�B�8���@��:H��6rCQ����(ES~�)�rK��Pۓc���������g���,�d�%�opqDtiӎ��´�|�K/��I ����)��diD��Kw!Y��w�|3\�I_��?Z������)���i��q�;X��NZ�E�JY1�%F�����,%7*�ȸ?7C!��/�+#�ws�4EOcGd��jЪv�����}+TNI��f�ګ�K��/J�Rk!����)��2���L�"�cYVѯ�����w +x���c�~�#OU&����:&G�"�݉i�L�T�7��Tm@l�-zXm�\ޝ�P��Y�*��*=-c�����ꆊZR�ɨt5ݛL�Z�D�W$���5�vC��rOZ<��D����EI����C�g����oCVm۬�y��أ"zWYA�u����.�'�� sVf/9�%{� vjwD{���6F�#h��w3 +#O�$�����0ud��E� �]2���b�!Mu.N�d�,S%�cл�C:��Z�'�H�F����C�<������i ��}� �&��-Fع�!�J�0������@���AT�,�/�nv�L�~iXPr��{�FK�Q� ,"����`h���+�D68���8ĸHs��\�O�N?�*�T�X1�7P/��%ߔJ��r|�S�;{�p�>�L���&f�v���.�-�s�j� ������!����)��jw����h��K��T5!B�o$\�a�IUd��@�﵌D�jI����=�]�R@�%�.t���6Tn�Y� :R�gsA>���^$������XAmJ�<��g�F}B3Q��ʽU���s����0^���,�a���a���a�:���6m]�Ϊ�hviGs�gG;�H3����]�.'m��Kɪ��8t=O�����>�엽=/��Qe�Λ���t̎�a�ߵfR�墨���,[��f��ƻ����m?Z��]�۱k���svlR?~��A��ٲgY��t̖���Q�\�.���3�~������ذ�t�]%������[`�K���vh�>^��@��l[@�������I"-���g�j�PT��Iڇ�A�+�*tpD��� +w}\?����k�%�#'��!;K�.�lC`��p:��!��}��Ē� 5ޏ��s$%�O��#��lVX�4m���%�3O��s�6./�KX5,aK�F�#���,z@S(t����EjKD�g��z2�몇�:�� ��1���pH�ޛ3,�6�F�:�����:X�_O̴�a [�^ [��급w�}��k��3�-�����d�T5ʶ��\u&?��C�V��C�&��W�pv������a��.�/)�z]�5�Q��@y�n�pi�L�]�`��[]�s�u +��FǢ����AwW�&_��Gn�X�iy�V���W�Y�}�}�, ���5��+9W�[����q9���==$�Q̰G^�<�h��#u�~V^&�Ǯ����l��p�Uܫa��8�nx�v1Ձ22:��� +�w쒝 E_�@l3S�[���l�G� @_�хrSՠ�`��*/1�҄t��Q��PB&@3�]|���%���A��*����|�C`�q3����a��!`G�d�����9�&��Q����_�*.��PQ�s�֥Y�s�q��s�.�1��L�;�.�kYՉ��?{�)lݻ�xe��3�7���L����8��8����I{�]� ����V���h=�| |���˸� �_�l=,�z���Bϳ6�*ȶi��M�䄧���q��n�~�v����3�v�5��`����JY��-?����F�v.�D{�`4�=��3.�yW=jm�d��k�A6���5�4L�v�o��>�h�]yϹH�#��};�=��uz���#��ZѴ=�h��~���1�{��hE�ę�V]�\h��U<%X�.��.(y�n�)�?|j +h �V�سY^u9�Fo��q�,�2!EҶ�D3:�# �{t�fV�q�� '��̱)W����I�m�c�n�{s ��,�c�����r�Y�g�y�m�~j�$����=��a�������x�3�����?&��R53����\�#�f:v����羍a�������� >�Dn�>���ZB�9V��N{+3�s��{��u~���bcB9efI��K���~h���]����vȼ�N�\�>5�T��mh��\[��5r��"��nS�K���*�5<~����5ak��pe�t"�m�:�w�t�\�怭]���8� +�H�h����X��.�>lAnj��Ż��ߙVs��>sv�h[���d�6k�Nt��8.�聋ue����V��c�n;̦�p,�;Q?ϴ�T;�[\r��B���.�k���b��5b�u^04>�����R��Wz����j���t A�OgZ�������������C��3��s��U�W�!�������p��H��uh_�?f����sb֊������ӜU4ƏO��1�A��~��=;����?Mڻ� 5iH/�T�3?Y�><>���.=�I�&�@: �fv�`0Х�xD�0ᕇ9���Tu����im�y�vW|�۩�����DYdꘕ|�*��1���&�ѓ:��@b]I�L�?�ϳ��|����7§�̭�5��봡+�ի +�j3Y�,͋d��)���πc)������쫤^l)�N����A/�s�% :�Y>��6�� ��� ���S7����t���~�E���1C-x�>t��:�]��{�>OW��P'��?��%�E�]aKڔ�+�� ��S����a@�\ y��W���ݏ��3�dc�pc$�%"�{ ��� %�.,���@Z��hU�#��b�f��;�MX-�i;�C���j��gԌ�4͛���ˋ���.}�{-�E�Z�O�B����w�;G�!Z`w�N��'�6���q���#�W���r�i +����<�퉁�*��d��x����"���tC궉k +�C3T�S6��ց�'%��IM|���bA2�]@�{_r_`�gg�Go�������3x���~\�u4�# �[��b�����>�Fd2�6�ՉR�/#�K�>ojw�4�_Ô石a�6�a�6�a�:�F��*�Vʌ�*��]ڿ��ٿNg��ȴl��L�z�F{�:�3�V���5�%F��GXk�{�v8�B�h8���Π�N G��*��$R��/���[h���(�ϗ_З�Z����@뛑��M�K���u=8��7#]_�w�o��Q��P"]���3�SZ��q4�U��[�N��Hv�av�av�ݻ�9�ݣm.'4�j���4_��*X1_w���|������j'T�dg��WT�V� +�O�H����P�t$�F�t��� t��� 5u�M2�S��6�GT:E�n�ɍ�~�.o�l���AF|�#��Fl#��F7�z�� +��c�����5c�!#�"�~Q�?��HWw�����@=��C�ˈj����"I �t�i"�PE4#���f˳[Ռ�v�{����j�(��<#��� T=�l6���hDuш�,ǟe�u�@Ŕt�2�l"K�DG��Z���n��y��eA�i���v0���5��v�!�6`��q.�7<���ڱ��E���v�i:��ӑ�kjiΠa��م��]ݷ������x]�I �!]7 �i��/y��k�mS��3� �/F��k6/z!�Ǡ�������$y�Ƚd�X2����M�HrI^���y݄�a~7Ep�=���t����$]��3d#�|w�P�M��2\�R�+�����A�qE���1 ���-�ղq��3�I���]��G��m]��"9(��"9(��"9(��"9(�zE�mV$5�9�U Ӯh�Πa�^�|�9��t��nl�&�m�� +�ZxF���8}8N�Ӈ�����G�����J���4���{m�C�I���}$�v��v�a7v�a7y�ɋ�%:|�9] ɮ��0����'��8'�n�Pc��Osj+Ò�9uUj�}Q���� +̱I�Q}}�z�sՒ�Y;ԙ|OЭ��1�p�'DSƄ:_`f��8q�l[�.lte�ۻff���eV,&���w��&̐����e^S��|���{!#wl'�D�.�yג6����n��۳Y��5oTj��}���}�1��;��NP�S� ������P���D�����=��\�~]°<��{'N�����Z��3�EO�8�m� �}a{�BV�6G�թ��n���Z`q��Ӷ����η䫻|�nc�� ���&�t��W��ȱe��t�РaI��nl�=��_���J��e���<Ej&��^��G�H��e���\֟O����k����֫x�0��y\�+y�A�ŋ\qo*=A���v�%&ڛH�$VmaѠ��o�x��$�^��v^S���Z�/�k���ĝ ���E����w�C�'�p��ʥ�;ѝ��;����u���&���Sx���9��ԸJg�թW�Agn�T��N�st[�ڎ]���)V�ۚ5P��B]U\E��̓��h�$��ީS/U���Sue���f����%��X��^>�R�8nj��G:i�T�p�Ը��9+Kq�N#u���:*��M��t0��`�[��emS�e�v��� Җ�C�V��}ʇ�\��/�^��|+���u�0G������j�u[����j���n��m�u[��2К�&_���p�n�6-�7O���� �e�����{�S�&3�p���G�jH���2�D?��B����0Y|ҁ%�R!CdU��Х�X� �MGx�aN��D7?��t�����L��;��� ����em� + m���z��q�����.�MK�c�Gʭ]n4�]e։���Cu��m��a����º@�=����j��&�ß߀���yn�:�_0�T����&;��FG��h].��O�M�~lgg�� Zyw��,��l� +�Z"�ʭO��R8ʉme&�j��F��)?����Zk�g �n��� ���{\@���^'�� �k�Xp �Lkau��Ye��ŀ%�&�A`��E��zuB�K&5)Z���� �Z���� u�x��u��q�ڒ�B|RZ[��`�aH,����[��[%ʞ���j�]w���K���h;ҽ�§�f�m �=�ḵdX�+s��^Fn����U��bZ�������۶�֏T[����;mP�cV�эnN&5��N]����Pr�5�38���G�R��q��/��4`a�'{�<ۃ*�G�9��`k ��G�hU�����U�n(`o����X����&+�P�G�Ԁv9�]h���~��q�������n��K��ZGD�wR}�֠i�aʃ��?�3hu�c����v .Ѱ Ѱ��EA.ﻇ���❧g%uG�{yM���K�:�zVvd$>+����z��!:�$O���� �i:y����yT��[�p:��&����1+ +( +اX��f�G.����u�eݓ�O��z��\3Pk�����X�.Dؖ�FQ����(�����<+'c!�����t�]˴�QScQYGW,�#���[5;M��'����ߘ��}�1��U�m�)p��n���:�%0��K����?7�e~�t~U���@v�I#��%��9���0���o�� �^���Y�O�E���S<�M��5~�W|�8�ҏJ6�� �xˬ�L��(j���5�jy���ɩ[+2a��G%�h[�̳�'���P��y��H��17�t�9�b Ub���r����k �ҍn�,��fr�E��iBh�==i�{t��\��R*�I���U�!��>_�D�h�ps�,��|ޓlG����bC���Ty�>(۶��Ig�&h}Oa�G�g���s�IY��U�&���`��fe�Ͳ�:K'q��/�V����DB�lsַ*ȳu��^γz�3�]�k� ٺ x��g��p�!�J�QM���!�J(@�hƷ��H��w�M� +t^�i�Xs��|�CH�qCZQ_�$:JD랉�g̲8J�~��;��'��j� ���<�?������SO3q�ŎZ�m]���P�����T�xX�ݖ��[�|6_�B����d�]WH�Fh�Ua��#�4��~D!N�FmVn�6"����m�t"*I#i#��GtLj�-�7F�#�܈�v$v�m��ӣ�����q�Ʊ4݈n2ۗj�CF�F&����`$]�=Z�U��<��FT����IlS3Ll�w"��hF���͖g�&��9����w���zqD㈫4qU�f(ۧ��SS�����+屮�7G,I��Q*����t��G�!��Y>gK{+8��9 ;a��1^¦������&[/�t��H��"ܿ�8���� +���7��^���&�����#:��R�7 +*�0��������9�=��a9:�%O�M��mJ�aFd��h���E/����J�|�Q8�z��y���d2]2��%��H�$���ŬA!j�=�HO�YS�0�lBEi��B�z��#[��-Ĉ���� �'xQ:Z�����C{�W��+��鶁[Cri�/�Ҧ�)�ֺ}\�n�,��v������U�b�����9�QBQ�+4W�d'�mW�}�[R2 Y.6�������1�&�ː�� G�}�ޮ�y��f�=��~���_���;�b�O����3�c��a5'lj �єI��6_g)C���>�/��&i�y2I@��b�u�V�o�@5+�����M��zH�_�p�#ہ����%�T�O���O�U�#�'ٝ� u��寶�y^<d)uSd�)sn�a����^�FX���:�G�?7�����y���k�����p�T��s��x>��`ITi����mU������.�&ic��R�9?h��[���^�����.$�r��z����F�?�g��'����ݎ�|�_%m����s�}�L��<%���c�Ͽ���Ğ}�CNN=�#J`8|x +�ר#�S\�l����:Fb2^��S^-���+08�|M/�d�fC����{Sl�[�=����=���+���&K� ��9��)>�)�I�9�ٝ[c�L�2����7a0�0�)M�".`�œ�ePW�J�������� ~Jۨ�����q,��k��#��-�!� �^�CԻǥ +R/�r��햎�ew���^<,�H����Q���]� T������'�5I����W��o8E�^`�����GL��*��Hsڢ�y�2�0��(6-���˲_����8J��J�W��p ��(�o *���n�y����ݯ���=�}�w'ǘ]��w��:�)���IB7����?��%����f��'�+�� �a�l���������Ռ��V�^K�� ���Ӡ��&�/ʶ��7� ",ڗ��8����y�߱(����H�� ��?�; �� JQ�^C7��n#1�j�����^� �� U�s�d����P9G�o�eH"Q'l;�p�zڌ!�S�')t?�s`�R��FB��}�_��Z �q�ꞌ��.U5�� �Wrd-p��5��j�a"٬��A�n�2n�ɤ)A�{hu�@�O�t���^Cɳ�3������|[�7�;Qh��8��NZ�.�m�'�G����G?�㏹,{�B�U���8��t����k�K7���2K"����w5��J��;���ψ�|����t�\̟��v�j�)&A�����j��t��j� t(J�TL��7����?�ż��|ŬjNk^u^ekVbT�%�!n�h��0�خ��6x�����믵<g���V���#��D�1�t�P�A L); ��b&^�fg��9�W8H,I;basG`!�P�����:&"$z6R��CI��.�����x���Y}����z��<�ݏ�ι�X��y�;�V�(�i&N��r�[��hh�����Üs2�^h�#��̋�<~������,�϶���4���P����rc��ye���� +��&0x��-��"����۵���!2Cv�$2*�<H�˓�a\��*�\�ׯF�#2����� �k���j�rI!ʔ_�l0ʢ��I4P�e �M�8@��A����ڌ��)l�D�8O�8�&R����C��������K�b�%�<�8E�����6y��ś�r9/n�0���a�1C��[FY�<����&�yq���*��"�9=����P��Y(�:Wp��6�A���_%�¾�Fo8���j�����|1��"��;�Kt$�^[� +]��3�!�����<�O7V�s:_Nk�{C����4�����$��0�=�MCF5��:qx������1�. >���a#����;ol��K�;\�O��/|"Tv���pR���:�IU�X�X�ĢÕ@T��:T9���Ar ��10=[����!쫔X���^��a��G^���x]�s�Dh*~b봜�� ��f�N�U���9���h���=�5h�J6��n%n�H ���F��8���x��e�D$� z�l��٬����ÈQ�7#��bF��] a������ա�Z�DR�������vx�l���E�zO9����$���xXn�)�ɑp�sP��?c��E{�+���|�a�5�#�x��BiS�y��xG��G����J�g�F�7�B��6�������R�������]��ŋT~(F���)$ V�� �f�,^SQ�Y��o���5;�Reڃ]�@28ɰҚu��Qj��~��2K��"$�c\��P=������9���w��FE6Ǖv�)�ߐ�<��t�-��*��K�T� 8^�o���U�H��8�ټ�l�h�o���d8P��yD���!��.d*!8"��������K�p���p1B�&�G��/[���CE���H�cL"�-WcD��6����}��V�/S��%M��HkP"_R��v�^�Aj��N� +�I�!f�P`l�G��+�uB����у*�d�e!U��<���F6��q��c��Og����l��o��F_�:e`KB�� n�P����iD�Jb��7e�\����l�Zyȳ5P�;E���gs��+�������>�F �\��{*��,w�}���N4����|�����)Y&����y\lF���l�M� ]1Q������b�?/�|���OPO�#�4����Znrn��!.R����f#o�u[�\��j=���[f��K�G;y�W+�N��@u�0tA>�+?�7(�(]�L�A�H��ái��5�~�c�i���γ�,��SMʔ�"���CPʃvX��%�C?J��Y���I���c�e�g� E�gf��z0�P��|[Ӓ��g&#Łt�(��J�p$H���T�c�O���qDx�P絡A(BqX�߉6$�L<�� ѳ��t%-�X'��㤦�.o7�l�V�S�'����wn���;���;�L��]�!��.,���Q�]t�,�.�")�b�h]rjI�Y���N��wbצ#���L���*c>/��̤4ڱ��4*��w����m�`mj�V���9���jc%�KI��p%���)� +��8(m�~��.U����W�,�>���O��hl����@^ӂ������h�c�ߩh��-�^����>Ԍ��tMh��l��0Fm�7�Pm����fݷ$�>�&��m`����;�l4�oX���9���B��5�i`�5��FLa� �t�����l5�H���eOa��:"���5�&�_u=�2��}�)2�Ƣ���iTt(#.�_�����J8�e��c[��4�`��1i�<��<��ɧ��iT���X� +'u���p,�k3`�]46\����� +�Q��,��O���)3`�%(L)�Pg�@o/�-|�@o,��Pl��L�ѭ1�šL����t�(lIu�SՖ���d�r�L���R��ʳ����g�ơ[p-;�|�Z�������>����L����#?�����%'�(|�l �� +���B8�l��d�!��r��!�іv��Ҹ�#[2��R/�ia<V��CC���hLV@1.ӎx�f�W��FoB�j%%z�u� +���ж֮�!m֠ ��mX�x���O����Ҳ\p�]�~�$�� �E)�|�����oG�En�AD��ʂu��_�y�I2x�����Ќ٧�i��J��� �`W�]�+`�q�[��,��b|1Zgs +Ҷ-I�,�S� ѕOw�-��о�.�+�p���}q����#�cy�Z�E�HVQ�vP?a�Ba�[�N�S�T�qG8��W��ބ������ݜ^Պ��Ԫ�q��^zj��R��w@V�N�ޝK�Ύ�.-�.0�j���!{��~ɂ�μ�O��]"&I������&b�3�q��\�[L��ѯz��^P�R�=b��dh��b|�_�oՉ�cO?��R�,`1K2�#]GP'g���>�W���%�1 �VKY\Ρm!�/'�U�d��J�k(E2���R�(9�G&��N����<U�S2M���f�R-�&Ӕ�A��ܐ|J��j�O�)}�C��S��E5�a��S�ۻ�,%��')�l}ۥ�� V�vM�}�)�1�T��{�����d���f�AzYݠ&�2�S*v�!��0W��=�i���NXpz���&�L0K<��\v���S�,��e�������Z�l;�lH�v��j <k�.�H��Z��i:!�}�l[`�;����lR�s��Z��g�b`���:%�.(� -���8�_��n��A�j����g���Lf�eu�1��n�� +�YgE�<xl�!�M�I���[$!����ȩ�&N��C2��PH�^�e�B`���7�1aIP^�m�^]3��l��2�x��&�eY�}���^y ��9[o���<�N`C�=��Hb�r���4�T��Ȥ��B��4e��|�(#�+�7��u�оW��NJ�W������������v��o�wmZ/��n�7U�)1+4�O<i�,ķ�Wɕb�4���de/�<+���V_+�������L��h(^$K2����M=ƿ��TQ�LZB���_iV&|�À-��,YA�j@��ʫ���r�0z+�D����P>����ƺ,�;N��"*�����nn�$֘��~*��X�H��0AB[�d������-��,ʕ5�Q�����+=�'}���ӼL��I���@���J��/��N��KF�.�=qy4ϧk���h"��-�xN(v�z(���´���<�p�� Z�y���8ŀ���e�PZX��>I\�G��+�+��<�ڗ���g�ƪ�W���ɿ��}��D�+��|�!Fvb!S��]�X��B�|R��C�V���r��àç4�_u�m�<��e���2��,À<5��qu�~������z\)k��r��J��w4U�*���� ��1!��{�$��o��t�0��,ٜ&+� aͰ4� �4�f$�Z5ma����e��`����a2`��l��?�@��a[��CF���G���6�1�l�`m�l]��q��X��d9���=zDDVG���3C��� ��ԦԼ���FW �K,���T�q ��v5I��9��S�Ԝ�BwT_���7��������OE���c��4�4�d����e)X�Xע�F�*�(�H�=,-dB��[v��q�7�2��S� ,�'�CŠeRÓ��R�^}S��/��*N1��W�AJ���'����>%_��e����A��xL͌���o��' +6OS�3��ԽIy{�'�s����d�F<�!P���t�@�.�г�eؤ +��u�0��M8]s��)[fϭW[���l@�#j~ޣ�����L���<�J����(;�m:Ypj�B&�[������گ��@��9yD,�c�)�oR�����"���čo��E�ۉ��oЈ�(�K�-4�,���P\��Lg����%R]Ѡ1$���^rh�+/�3��T2L0���K�[cV�3�b���<N�h�I1Yo癤W�^=#�[/')����l"���"�|��E��o7����f�b@��_\�y%��~*'�"��6#Df�D�)�.�����h+-����fx��Z�%ZT���E�o��w��^�q���;U;v0��S�Q}S(|��8p�U5�[>��e]-�؉��P��K�Պ��f).d�L(iT���=���" �T?���`�@�D�3��xc��n�zP��"��ۨ�^%yP�z�/�,�k�-cذ���D +M�C�o���H&�'&CD� ����-���o��R�Y��� 2���3_�)L.R���tK��C;���Fʎ���Ǒ�s����N+�h��'�e��W�SҏLTH)��p>���9taY���:ǻN���G���e�5�]�gðd=��ɆS�þ�ɀ!bQ]#�ܡ5ȓ���q^�49[}��|��~����#P�������a~�`}�`�}�Zg��Zd�������q?���P*��h�������`�̣����ǠO�Q,��a��"qW���],@o��I�� N���u��KL����oZA�E�\�1�+�cuY���}��L����=�؇��L3u�v�ljW=��t��I�:��;����Fw�h�r>7c��&;M�S�~I=��I�}gpń�C[z�`Gw>?����A��g݆|�&�r�Î����O���?���9�?�!��>T�>NqVD�~�1����@���XQ�d���N�/2 ��]p�=MA���l(8$�G~H~v~c'ts�zX�S +�&�(�z~�JF�O���I��p��O�5?U����������/~z�E����9?`n��>�d�������Ъ��" +�9�&��lL��zt0��lL|���4�LLk���ds�c҂_�)��r�ٴ�8�~�?������6��i2�w=B!X��$��0� �/Sv��Ǿ$���Y�W���B�s�|���>.��W���!�0�Q���_3ySx���f;l��Kg���d�>�?;�Sj�t��-Y��Hb�t`r|O<��,�O%�-Q�`h�JX�-���0�� v�oS�_�6�>(!�W�$�1ަK��OR{֣P��Y��(��x�W`Z�`!��J�ClWz���e����lz�� ���}aRA\;[�JdK~�x~H�Ѧ�1nAx���Z��[9JC���a��-u`�n���sK�څ���.tK��_���{3�w����|yϷ�����I��m<zz�����v�j�댴n�_>z��W8V����[��w��[�-�t@~YP�wS씷��6a �+�_x<�$T���o����8�QA+��"��(�����M���� +b�U�q�|������[���@������4f8��r(���ʃ�Dy�ѶN9H~Х+Gԋ[>N�I�ɢ =�J�<d�U�@��rIτ�vJ���?,כd������Tqq��B�[�0��r����e��Uʗ�~�g�&?x�ez��N��uY���$Śҡô4�4pY�O-��Kb�R�1� >;4��x���dA.-'��P�v��P�� ����^�����#?��k�����X��,�S7��G6�߰]D�,18�PbF����I�O�R�>/��M�g��O�4I��m��eq�A������O�� O}���Y��TY�-���:��@�`i�=��=l�� �4~E]��"��5�����+�byL̓ $Fj�\fi�M�b�2�f�7���*���ܢ�)�'��[]c��\��4ƢGI��1̲,����E���>��Tf���4R;^�SR[�\�oj�<�2U�l�>�I�%��'�V:�'�l��wK�چ��D^u���D��ԋ%�?_����L?������?z�z?M�|���������˿�����_��g�����ϟ�|?����/���÷O�|�3������O�6~�?��"������L���������w���}���S�x_wo�JEݜ��:}y�����v'3;��aI�*�u������}q%��(�''�D �~� ϓ����q�>$�&�;�������"�c���:�{nz��$��{�����~����Lv�>>��s}�~���y�?~�����?~����j�m�ۏo~�������w������w/��߿����������!�H�W����4�2����M�Y��0�KH���̟������yC�uqE��L�-��ܽP���#{�����o�x��+�� :��]F�%-��7IM��?3���Q����F�'^�� +�.8�H���[���� ��h㠤��j�\p +�ԸK�Fg>���P6��۵/����tǦ5.阠�Ko�?�c��dcݡ���ya(�e ��:���J����}�.��F�� ��t��V~��qI$Іf��?.{��K��Y�.B�,�)Q̅���qx�a �uTcw��[�K��H�EvB0%b��0E8��=a;8�i��� �4� Ӫb;���-V�xs[�(����2w�H�$1�2�f*2S�(`r��X��t��U�ݱ�����|���8��Xx{%�}����&�������j(�����=�ZT��R�&f��J��U3��u)�ŏ�9���o��o���H� +$�I�g"���BoS���et����{�}��N���53��CE��{}g�@��� �4�l���4�I\� ��fQ-aW�E���:{Z�����|$ވ{yʝ>�x�;nD����*�u8����Tᜰx��]v�{�l��y�߭�&�t#�LA~ɛ(��w?�G�Nq��<Z�"�3��}m��~;�^X�}���^�=��� �SϽ�E}L��/U����E$�t����w'G�=@������Gv,�r/>tR����A������Ic�;������7���d���W��h���d�'Q7��q3?��YE2b� 6�`�;t���]���_H��Z���`��BNF�_��_��:�0�"���t���{�DQ�z!�H� 5�h���2H�2��p2�cv$�?��!%��T�D����L2�n�>!]��Q ��G��YDv��~��Ѿ���6�@F/� ���}�S�v��V1��CW�n������O�'�An?���ul~�Ma�O���Z2���\\���� +[R�p�s~��'���\��_�ݿ�Ч�Ml ��w��qԾ���P�]xZ�?-�d� +��\_L�КzD[��Ld�+�s��~��){�D�a���H�E=ϊ$=|:�1��L���س\%�;��N��SHa$���K�τ�8�mA?8EoM��$0��M�#{��,Is$By@��m����r�I �A�.?�s�$���I�l�o\˄*AUA2����ɾ��O_�����T"��>�r�7���M���Dg�{���J�^��V<Gy�.y�1N%b���e �B�}��]����͜��$��s�#rc�Ծ��$7���>a� �S_�o��L��Z1U���K�{�4�O�c�R�z��B<̭�X��?�f}z���* +��v#�K�>;�S�mwf!��{ٓz��Ü��5��~m�l����v��BJ�M颹c�m�aO2�L��g�,,���)�)�s=��}#��bT��������x� 0��K�!���e�D6�I���]��OA3�5h��fk��a��9�q3�5i氦���R.-�����N�R��b�Y����z��� ��2Eo4S��{�33�;������QA�2e����@m���<DZ�I5z�M%��N,�Fbc&�7c`�dh�.���kF�f��A�uٝ�2\>8�,<�?��"x@ۈ�c��gK�.Bv"�.|���7���'��������:�Y���. ���S�}*,"�����߀�; ����!�wD��'�_��Y@E�1ޑ�2L�C�s�P��U0� ŊWl�e����Gp��2�J�������N���O�z��n�~φ���j������7_h�S���b��Mg$�ӯ9%�p#�7���VKa�+�1U��7D?y�-'�W"��C���8�?����������{�\��;vբ;�� +%���C���g���{�:�ϸ<��L4E��qA��� \t+�]Ħ���I���)5�C����֙/�'��� ��\�|s���M&�N� Ƿs���s����ڭGR~�%�r��� �H��j:�h=���꠫#�@�`����H���`A���F��0�`�'�~G^c����B���|��PD�@%|�[�'��P�$A�S�)�>Z�jl�cC��^�D�o��b�����L����E��w�9�`�+i'��*����\5��`���\z�X�|�X$����,�րY���a�A�֗���s�"sh���t�G��ڸ�&��-��\3B�`X��AZ�Vmo���� +Z�@0.��&^�"56��6[��5:L�a|���t���k��"܁���{N�Ak�Va'��ny�R�-v��jx���@8�U��ңq&O m���-P��}��I���R�d���Gx�sl�N�X�I/O@�S!����0{�o��sPQ�~Ͱ�W��$��.�Y��EX����.�;W��Ί64�O������y�>��qA0�7x�њ^} +����*�!�e�q�Xs��m�:U���Z���G|ס��i:D_��O�9,K���h�v���vK����-IW�uD����]�Դcvj��K���0�~���7w�j��M�y���cp�&�$���zٹ���U#�q���q����jO!��2��wO���Fc٠�rk[�Y@�U@胦���X$�%�3 �� f� ��$*�8�ձ�c/�b$hP�E-~�,����.�+��1�� �hn�,E�>���dv����6����`uLl�!���\�C��v|GH ���͔$]x��p�qS @��ē��:lt�u&��ʈ�$w�?W��#�nV�F-�G�������'�~������1���M��� n��w����I?on��i=C� +{���R +\?wQ���O+���}��<?��&|�W *��-&�+��`��BVڄ0m�l��FwOYT��& ��E���d�-�L��S`�8����PV�D�)$n��tj�Tr�BW�H*cV�"l��3E���e�9�w������\t*�X��9�&�����8���U����X2�&�{�����+��x�x�Q3S,|�E�e�$����N�L��<n,k�u�Ԭ�L��-�[���3ɐ)o��������t�X���v������$�D�2���0��*N��\�1�w�>7r���(Y-(�PSI�����b���#NV[,���9���L��{h��^'�$A��ē?�gs���y�@$0�Y�t�M�Zw�%X @�d�{���tH��=@�C&��&�]�ϧ0���Y��F�j{��\�@Mb��aܡ̞��LL`� �j��\�9��3��6��fUfp�I�M�}n��}��ȴ0爫���bG�<�) #,�����o���G���7{���$(�<�+��?ȺktjP"d@Ƞ ��~9J�QB���1H��N)b�U�Ȫ @9�q�o�Aa>��6h�m���U��>~���u�P��V��[���J�����]s�����c��o�I;Ʈy[�8�49D�c�-S�Ջ����<��]�� _q2�wh���^����P�X��v�w��w�d���@��$�;��0���7_%��S�$���Sǚq�5c,���Mȸ���x"���R(�D�v��˕�1Br�9�zC���֖�2��)�Pʎ��Zޯ�`��VOɜ���_���aw�6W���k�n.Iֽ�v�'�&.��m�A.�p�[�@�]��s�^�4GNә���vsRB�Z5��8 ����V>6��N�_ޢh� �_�-ߞ��H��L�W[_Z����&nZ��A.��1^?�f��h����r#ʶ�ր�ţ�}�as=8hH�k���th +=]����ŖԆ;EE�A�������]��=H� :S�&���8��T��7�;��F��i��B��ru��d��s����� ��h���1>�"�l�*C�� �c�%p!,+��*m�` �,A#W}~^���O�-v��˪�N�1�*���p9�4X$B���j˹|�j���YVV��#��$���0������)��-R�2:m�rJ��3��*����Blp6�Q� +��J����aJE*��B@IP9�P +!�(�h�u<"��u �#ڜ [�^�}L�(m0�,ر�7�y�x�^Ώ�[p:u&J�B��y8���ϲp]&�9��{��.��l�R�#�&�5P9��j [AFU�ڤ*����8A"�g�aD�^)��EA)m����K�fp=ż{$*���S]fqL�M�C:�S��T�U�� y�-l�6��������t�'���'� x�k+���s�4���#�%��(��@��9��-!�]�����I��/���ŗ"o� _�!�Wn�l�e��?��|��߰��̳�7t�U!��O��n�<��[Dw�u�v�/:]����� �7��=y��5���\C*c�MgP�a��jR��]ݯ�;�=5���ڀG`k�l��*R��s�4��4���, ���B���b��0�(l��4�h۹C������տa�"�w���1A9��RM:�k��s +� ����&�ۅ�J���$$��v�0���^Mm��)����nKh���!c��8G �������H�@����0{��#��H9��e�u���Ï|���jj{!Pn�O4�`��Mir�o(����Ԏu�,33|2z���*x4Rd�t����x{�Rxa.tf�&H���E�UqS�(p�Q�*]o�����i��d���en����4!��Xh�`��}��X4Pm�C��B�~#�����o������HTZF�E ���j�X���A=:�X� +T�}���j��#iZQ��M�$'�@�"V�w��í�N���*j� ���ԟ���ܫ���K��B>x���jt�w6@'��=�1�ȀO�~���@A�p�d*� �xk����o���,D�]1d� �sx>���������'���X��IBu���u���WN$O��*��ק:�?��HS����x��`���Jꄒa�ʡdD�/�Y�g�$�I��dpB G��3!�a���q�j�(�Ť���L݈s����|���*94������H3l#�� �z��[��@�r��.v��\�#��\C�YR�m��3q����:���Mg�[ӒVO�~�J���/>��1xhMr��nh�-ns�����/??�-u��m +�P����Xu�'8�����a��o���'4N�N�����RvV�d}���K*��~�x+��I*�o9�:h��Qa����)�r�;��V�b(N�7�냆�6�a���'��`8��L������(����DR�����P�y ��e|l�e4 Z��?k�>À�~�u=�\��ALܝ�F�����Af���C�@��� �)�D��-y����@��N(5ˠD��Y` y��8��+�3��Ll��;�"�oi��U��Y���]}0��1�ŴPq�����O�t��8��m�JJ���Q-!5�C`sՕ �q&��9 +V����)�/��c%r����ld�D����i�����(i�2�Y��C�i��� +D��<E��y�^E����s� 8|�����t1\G��_���a�Q#�ZI���t�N�i�3��h ��0�W_��w����ƛo��c����������+�������CϞ~ ��Da�����)u8�W��!�~w�l�k�������/���1͙�߰����aK�Tv��� ����"���|��;H������h?���j�3�x��� �+���䁭���\�h�����c�l�_,^m��s��C~�eW��cx�`y���8y�m>G�)x4�������������c�(����� ��Yh{��k=�s-�-B[ �8�O6w!��������v�g�-~w�.�q+�,&�߳����@"���%`��Y�}/�?�j�r<C���V0R����)�"G�j.�V�"K6�3�lw$�N��丁�X�3�Iz�����3�+��5�M��N�A�"����PG~0ى�&���Z��~["h��%˹����Ct8&~�"_� �����$�u�-�`h9̎*WxkQ��i���a?o���!�t���BE�WKr���d�p3��i�s�J���_W�����ۖn[�u�pC5�m�_Kg[x�t�)u\8����M��}͝}��w��� ��=I }y`=�7��\f/.yu�h{��Ӯu���C�;>-��m��0&7mx�.b�I�u)��J8��&���/�����j�1�=g��>��2ce�1���d�b�i���r�a�r7f����0F���"�m���j� +�&P@UH�[Ȋ��k�X�5zhAj�G+���==��SKOO��f��i?�a����{7�L}�B����=���H.A��o�Z���;~ +�I��'����`22���h��k@G�ŽR������`�[~��U�=�%�����M���j�:�"k��s��ۼ������"��od]��F��`�d�܇���ɾ�O3���odw�ܡ���-�łbU�X����"|+�i�b�B��#-���Ȩ+;��@r����i�V@�E@�P]@:���,��$���N�j�M���rH{=���P:X��{�v�k^�J�;&�;&��ﱫE 1ܺ�C�bR� +�/���Z{B� �h�3�B�qB����g���PK-I\�顳W� ٞ,j����dQ{��=Yt��I�幸=u�RqK�������D���@m����^z��ɭZO�^���UGXI9�igG�vh��Ls�B�楓��T��F��Ǖ����$PV������pc��]exi�b���IF4g"z��S-\�\��SNy(��`���-H�:jY�W�xӀ �&�?���4��lw�ݝ��?����ǧ�U�r���[FW�F(X8�#Ch]�R����J7��a��E,y�����m�`�֫m|ұܯ'��h�����qsV�S�9}�dC��[#F��K��]<��( +ܚ+��9s 4gAq�:L%�����J��?sc�$DH+�������~��e�ۆf<��_�x����m�g��6O�m�=�~��������), �~�E5>^����W�����D�Γד�/Ⱥb�_����%A�����$i ����~aꄄ��>�}F�Z�iC�\h9#�� 7����dd��n���uw���; ��%^�F�z݃��#��ޒ��F�3� ��ć��}І�����/����x��w��SO�n�+�����_���ߤ�L�vI^Z�O��e�e��{�?����'�X�����O����������|��j���o���@�0l�>^*_�á�s���5D;�+�}���/����&�t�%�v��)� Û�]�����{7����)�.�-��rq��*T�mY�E�?syب`v�^,�l����8ؙ�6�ԭԟ��4�/c��ݶʽ��o��Js����3�?�nF�VP���ϻM�֨5/\ヨ[4ߙ���V4mE�vW6iWn�vO�{�ݓ�ٓw�X�Jq�\6'������ḏ��z����Wo���_��p�|Q�dyC/s�|�s��C �=�&`�u>�a�f�AG��Yר0R���O��7�e����w�w��08X��4K��&NZ����;�����7�$!���5��U�n$�Zy� + D��ޯ.t r��>Й�W:��#t��ado�������?��/iw�������������k��~��U@9�@9��1A϶�~,,W��lq�������!6���,Z��d�j���@� +b�7xw.�`Г�A0Qb�KW�\12�e��i���:C���Q�`(�Fv�Z�Hx!,��`��I��I0��{����c#�����_#��k��+Y���zr��BOW�M7g�c�n��!)!V�a������b��+H�{�ܲb��L\]`=U���� +����*yZG�z�m��9p��� �͚ep�@<���3狂,�n���� +�jF�rд2.��xM&�����/W\ ��T4�L�G�K���H��� ��A����V�t%Y�e~ƒ%��I��<K�������it� N�<B�D1�����zZ�֨�<`���e�Ao�Ѣ�$�Bv�d����{�Q{�+۱M�AP�3��{���y;�I <�ѵ7�ڮ�Zr�ޖ��3KmE���q"�� +��#ݽazc!��'�� ���0!�ċ@����˸&��@�v*�i9� +��Bړ`���s����� +���;Pݩ/��%E9�*�tڤ#�'Ga�h�BW��è�H�N���������K��Pp��% +�BаK��<x[�7��7���g���<�J�E7P�����'X�'�}��>=�w���j��I���Zķh<�=�#B27�'��q��gU����~8�`? �(�[�x,{&Ma�( vК?�t3�G�n��ex���D�ҋ��t�φ2zv�Q4A�O��;�cr�m� 4M�[QXpxl�c��ѱP�U�-n3�2-*��}K�o|sޜ�S��2!xPC<�d(73w�4�E�����aW���P�� +C'���� +Ӫ���po$�j;�q�))�=LL��H��a���1K���l(!�;��*�����;��ȫ�p�C�|85h ���)J�Q�P�3��<\�4p����C<:ޭW�c�����9j�^�<�>Ω;q���;�H<吘,!�$u��;8l�����)'����U��DO�.���?=NNV�6�$Wf���^�[t�@%���;��1��[�n2?�䞌�R�kn�X�\�p�I�b�s��s�0�����$cV)Mt���E���D�Щ�X��RȐP�q�'�吖C.�C9��P`E&ZPS�<DBs�*�%4��7b�C�L����_)�z�K��F��:�(���f�8v͛��[2���_��@��5K�7� Ʋ����j�ɲ1@�Ƚ�l���/�\�OH0�z����9b�";�����a睇A�4���M*�`H7�-��oǹ��ܞ��0��L��=�t�A� ��[�z���O�p��QT*]ĆǦ�*�o�A5OLO2L)��g�%Sȉ��0�X���`�� �ĸ��9�1)b��7�� �}&�\�sE���O�9�Y��̾�Ӊ����5w�#J��~��Wr;yq��h#�ZS���H����v��x�kgr)�����6�' y�@�#�Q�H��$椻��K�]�}r�Y� �a��u�`k<Li<����o�_�H~�1uf�R:d-���'C�p� +�e���Ui��O�a��n�臋�.��Z�Vx�0ʧ������ԃy�Ϛ��Y��pb�Zx� XU���ꁃ����$��|�[�L���v��)oQ7ܟ P�������؉R�/U��MoO'�Tz�v���і��ס�l,+m=}<�:7q5��#NOO�Ǔ�n�ѯ�ό:��~�ڞ�M��i���ɗ�9�BW>d�����[���C|��.)䱄��;��� j�U��p�1C +��9 ��!���3���B���H/%���z=b&�(�����0}���!��������)��tŚP�&�i� +=R�|�}��&���)���N�9�>�B'�UR��4s�W�]�}�M��Z\9iá*�=̃���=,Q�L�r�T�@S����B4�]����xpEw�� 6���Ėn�]ta����_Ĕ5����e���'/ �ggM�c�$���풟rb��d� ���B3�R��hg,��=�w�տ���m�~]ٮ�a�V +���k̟�PKّ݅O!#v6���b����^K���$q��2p�; �K��*H)Ⰹ��&f� !��iMgL[0����.�c�(���ݹ�*�����dؒ�1R���BcA0�����(��8��~�O�$�/�Z��Z��R�e�g�tb�v�B�j��@��0�-# �|���>�ǟ�v��|���]�eU*�?��]��M���-o�ño�+�Cߤ�N@c0��@v[tkK� ��MLؑY��teZ�]�o�ӟw���� ��N`�[����& +-3}�� �� +ȚE�>`�����]/>�FUt������Pj�w�"h��:�l�Bw��B#��F*�O��Nl_�0vbbi�}z-G+`"�w��N��G,��o�.mf��zg�[���"w�0܋�4{�՚��F@��j.b���$1C�,Iu8d�9qiKʽ-���Si�5�2�k�.�����2��U��J�`[k�*���C���F�J�eSY��Cn ��T �f�U%�8CU"ۻ~T ��NT g(*h����)��T��S��E�W/��ޫ ��@��[��j����+tnVU{��O?����S!�Ta��wY͋6 +��a��.%��jo@j6���<��-�p'k��'7�f�/��#뎨�(ӱ]|x�4���U��v�+�}a.wf�V����sĕ?��g_�N���:Gc�y�du��e������%"9�o��[����"������+sAY�+>]$���7��nwڪ8����Fn>��qO�����<S&�#{��|WZ�&�@Sk��ܶ���ؗ��9��+`�� s�я���������Bx��=TW����f~ +�8�P�[F��,��2�|�.�ng���kx��D��r���&Y����&�:��o-�ֻ�[����v�Կ}�nI_{��V��)n��z�g�B�9���h�����Eg/T��𮛡�3��n�b��w�"ь�fD"�����wO�W(�cu��~�Ofd=�X���t3��`34�3VX�}�ӎ��?��7?�^����#�"ˌx(f/�a�(��8̛��7cQoFd�+�u�����(��X�m�ý�����F�/}3F�q��A�Ygyl���qF�qF�q����,��3��#g$g%gL���J�px9��s�s�A��L��~����iF�f�n�o�ٌn�ٺe�t&C������n�/d�R`�q�:c�u�b�����^g,�� �Θ";������za�N#�:�5�����k��5� ;��F��,)>bxD^���߭�h��v a�H]��wp�^�d�8�@gC`�<�+��RplMq�6� �+S�d�7�'ݙ�Mq��l�H��+���?�|����)=g�ұd +��J`���`Lj�I��}|�V뤀{���Ŷ�J� +ڣ��8`�+�+Z�(�i��|�0����'�-�Ցj���^-̟S%�g���8;T��Pgw`&����"��J�=�\]^F0���a��W���T�YyQ��m�Ŷ�b}&۱���$p)���r��g��D���nw�MyܖYn��7����R^���v;-Ze�Xo��x��v;��Nb��ώ�5߶�[�|;�oኙ�����ūƁWg�5˄��l�I��%����l��=H��A��j�L�<$�'A���:O��(I+��@p�J4Vձa�h�"�0ș��� ���rzIS����1xջ���j 1��K�+���Z +���J�n��Y�Y.w�*�]�s�4���B ��$e�Zq!�1\̀o�I|���AnD%%XrŸ$va���Z���K�;a���4,x"M1��*<G�aX2�N�6��p�Ы 4,Wk��a4���.�~�_��3w_��F�j�j�'���� +04���=�(�p�� &W적TBl}���Gt$���A +����%��Ld�S��E�|u��z��y]?]O�?K�87[N� U� ���A68t�A0����<�0g�@�3��ז�����Ch��E^K� +����o*ܗ��ݾC��.Zŷw�X�8��N�!vtGwm�t�>}��L�sͼ����N�������I,����؉ +ǿě݇���3=s��Q#"�6��G�t��4��c��60�}��������N����H���UnU�����b��4{zͼ���J�n�V������^2`�8������̑��u�-����6w��63�bP��O�O�� @ +�����i���2� YKG������IJ��N��x%�'}�˯?��cN>A��A�n�/q��5�RP��%���jyI�����!�Ob��Tu��:%�q�F=vK�%�~|yQ��ӂ`Z:��cRE����qK"���*�w�G�'�����?K�W��K1�Ù��u�ܽ�*��I�Wx MQ@�u[Y�H�!{�V�hՏs1��UkmK7P�|82�ep�Q�@� +��]D��v���5{�>s�+�|C^��y���_8(��N�61!+!���U�D��D�Fg�����3[��7��V?�37^e�g��Z/�4�37W��Pp�� )���ʭ�@i����0��W#�S0C.:Pf�$8�!+�������L����r��V ��G]����\^��!����)�y�g������f��8���x�v�A��uA��c\UJA��*�ĭPEXT95tz�@5D;OCQ��DL�`�.�@o�zi��Vop�7��%zÉ#�L4��<4 9@!4�>N���^�wnm>�ͧ������|��|�W�z9?��菤��w�Җ�p�~�暭f�\ls��(p&ŏ�z���3k�B(�'��$�����w8��U�Z��� ��H`��F���!a8v��4vw��+�4�G1��ۀh� +d4rAF��s�S��j�b���jwTO�,'��57�Γ!��m�d�m*����S�5^�֪J�,�ײy�TY�ѩ�95qr�f�a�K�s<VP�"����ta�,�4��事��} h��hU��^(�]����19�6��:���>�?�"��5C��}6�7��VUV�=�zT�j'�3�7���Z�V>��RW=9y@������c���m}Y��yn �}M�o��3�"�f� b����)Fh����eu#� ��V�����E�X���.Oe�ld;K�i��Ұ���b��H�7��ӓ��,�R�gM�y�F�=�Zr�@�K$eP�؊6��6]�ד�-����g��?=�-g��ű�H�S��~M�V��M��E?�&Ӂ3��Ц�s�@�dF�o,�~ >�\c\.�,v���4�$z�o��hq`�Gȇ6g�xQ��¬a� +cL�=#"��w2�2��K��kz�7�Чe��S��!W��0�a���j'���(����R��5���/E�ex���е���+5. �Zeٵ�<6U�s��Gc�d�>�J��~&(_z��0GT�0$5Ub�e8�4����X��\ (�`�#N%�2�Z��v��^xt��f"_),�� �H�r!]^3�nc'�,�N�i�$�=龂�C��0�ZSud���3RO�$�&Bq�to�������C�} i(�rc��p�$�=�@qY����\[p��T ��:I$���p�8=4f�����*o�V�����*��A�l��I#$�Y����Y3W(���ŕ�7�����M]�u's�C�����˰?�ZS��B��?�E%'�T+֮8j�~8��y�M���<EB��(��k�d��J��@(�R�u����z���!+O�D�vbiv��K[�T�c�X +W��P:$%�Z�Tx���2���AJ:>��$�+�̵'9*�.��P�B�y�3>�C���Hh�a���i�G!���g6oi��`��L9? ��㏅�7$����Kn�2<��S����$/av~�ܝ�7QS�ްW����B��ǿ��K�h':Lt����o��=T��)N��,2���-i�g��MK�A$%�PH2��X���s�u+$)�+Q:]~v +5W��O��E?� �=jpF��W�r�6vftQ�d5,K[�P aW���.�4�1;��r�Xc�=�d�y�A��vV���g����j��N�VOs�[�\���o�N�����v����wb�@ӎ�ƁRL��8�>X �6$��h82eK���z6ľP����nK9�L9�� �x>}�"�����<��<��&kK�3�j�� ���O�:�n&���9�彩����ў���ā>'�'a�_�Z�q >�z�*�PG�S�eu��m�ks���2�L��%�Z���w��SѸ*���G5#;��g��ѕ��T�&}�nu�qY� +��T�-�s�'�E�{'Q���^چ�*i��*S/s���-�� k�N%�} +��d�i@w~�j=�J���9U�M\��>3-���6u +��.j[.jtA^��E�o��'�Zuq��pQ+� .�t��rQ3(e����;魒��k�T.��r�.̹��/���H����ym2��E�m%�(�L�D��`�`'��B���Z��5�2L\� +ض!��]Ԋ�p��MnQ�c5'%;! �떀����k-j�-����aͣ�O�5u��*e���:G�'tXk>^�s:�� /A{��s����Z�4���z��_�Z�wM�\_��7���j�\Ю��CEaUru�f�4�:��k���ھ��@��]�M�q� +�P8����;Ng�ld����"l-d�٣Cy����]01��h݅7�V����[=�Pl6Fq疁`X��+��߿�w������+�L9�IV�Q�P�}t���۠�F%���)Q+p���]��5~�̨�{�OrT�ʣ ��ݛ +�L�_LI�5/ F�gEK'�oE�-�DEe� �2�ЁWw(�V�I:<��(�$!}� +�9�i�D���[1�2:�b����;�mc��[nll�:eb��=9����F� ��i�((oR���B�a�K�+�9���%��g�˿ +af?��ך������x��<�B(X�Y,`Snl�V`)�0��/W��:�UҦ��͆]ސ.�U�.6�l��A�lv�Z�6�q[�yZ��(�i�w������.r�2-�aTV�̧�?�<Fƪ�tcz���=����5�Ӛ�l��p�p�K�M�YŨ�z]?��[�\���8��`3��<ʴ��]��ַ����h=ݭ^����'�/^����`�,T:��Dsx&���[b?Sb�Xa��A^�5��~0����b~�: +zh���FSG��gQc�[\Tn ������"�.82~��)W�Ѷ"[E+B�6��r�0�sj^���6��4Ĉ��n[ D[��D���*nc�*n�V��5��H���Z�w�"R}M^�i��v� |�� +�GV�zV�y˥-�6�K9f�S�{�;�m��rv�`��+ŭQ_�"2������I}]Zy���.�?*sB]Z������ �� 0U���/��+/B��9e9�;e�|�� +�\���\�P���&0P�u)�R�V�� ����h�wK�-ɞ����w����Zw9�|�~�rb�[�r�j�[01ڪ6��� ���c�5X��- +~�z�sW���[����>�pl�i�O�sˍ磔ޙ�Zn��@���Ty���mb��i�7�s��3�8+ј�/�.m��O�+#^�W����J7V̌W_�-�J)n���Ʀ��yp��N�NH�Uv�\=p�ՕVFm*�Ȍ��Vpѧ�v�h��Q��.�+%����Etw\G��/]���=����y�j����W÷��_¡on��p6����h2����l�e���s�Fk��o��1�&�<@�t�J.�ѵam +�X;�e������i�z�ny\+Ә1?��� t��f���Mb��w�,Q�t�����w��-��Չo9+9;���H��h%(�2�R����a����GfYg�����ް�Y�)���{�wO�iw�bh(�n$+���M����q�q�R�A��S�l�L(�F�zm������ +� ����VZ0�l5�\(�����,����B�QW��tZ��y����*��pm��p��^����@wEe%8���1J'�i$P� ����D�����K���dp7�.<^pɲ��G2#���I��!2k>�]%���s�{aU�7�%��ԘcT�,䐞<j+i�� �y�7�y�����Y~�B��{���O����~��x�t��}}`��KKR�Fk�� +S��ڲ6娈�E���Hq:i���Rt�خ&���n@YJ���2e���S*�����ꗧ�i^R��a���D��ʞ�R�d^Yy�QZ�RW��R�y�J^B>�����O[�˗�.|?6+�;�{�w���)�-"� R��/}Y�U���`��02�yeU+��#�f��-�ϒ����BR��=�5�ne�v��v�K��l�*��eq��/B��[�`�S�U,]��_�2pP��u$��,G��9�7���+�a0���U[��5���uM�*{�W�8� Lm�Jo����6T]�d�nN_t��̳�����"�d���,�͆�[�n����ڠZ`^f5=��{brt?���"�gES���TvR���*;9V-j8�ı�ۊ�.�M�$o��c��J�"�H8�W*b�ŰN|T��.��dߪ�U��k-&�ש)UW�N!=�k�ZLb�c�f�������Ztː-C�S�HK5y:q���J�� +��U_e"ρ�א�3��>�C��y"�W��ٓ��F��8*kT��N����`��}�T Ճ���c_��Ӊ�`�7M�a ��ԇ�3t}�ʣ6ի�RgK�� ����R��H�U��Y̱� +����U���q�/��[�&���_vT�Jh�S�5�Z�v^�q4�Zy�q*�u�hL�k;�D�El��˖�+��J�hT��Em �%�a��N�Tx��i� +/�T�k�s��h-5ݖ[�_i�o_��2�(;�Ťq扯�ԖajN��ՔV�L��Zr���Vhi�):���7�gt�#�<Q(ԕx�N�.�:�'g�}NǓ[�n��r*&Z�Pza�sT�����I�~@YU&qPI���xr� +���}�E��~�Fp�NgWŶ4�������j�}�B^������������@�k��"�iq�W��J�X�*�|g��lq�����!ܱ���_M�N�ZXA�LהHx0���r��3D���z�i�'�g(}0g�����3�W���z�� ��{����}=��jD���avP~�z��g��QP�����z�m=C��|�3���,�ҝ赞a�w��"xΕ9J۵�g�6߈z�Z�묞a� ���J�e��}6���':�8�i+<����;���3dw#��ݞA=Cf���3d�E�&T�e5�����岪g��Gx�z��tVϐ�z��ٮY�[��T�ӫg��v��3sW���ˮ�!����U�A��(_��M�9��@�����D5OY +�t"Q��=g1HӁ�jI�)��Ł�!pro;k�[%$1cJGRS���, +�ie�$U�y�a�����^*�;Ӹ����x;4]wX��[�BM=?���JSؔ*M�%�R�d)i�Z� 1d��Bƙ:�q��t't�\��Xr�K����'��J|xk��E�^�E�ߨ�hF��R��G���G��;����^�~��Y+�)�#�)��Z��Z��~X�p��̗J���:WS�һ��,GVu��R�8�a�è[��~�r���XrBo�2v;S$]�,}�y)ț�R��B1��Z�)6���}I �@��mF!{�ʎc�R�h )WeH *Rr���B˥���ԥ.]y� U�Ԟ� t�7��l��Ǧvg#>Uu�-��\s�S�����Kz�U��֗㸼hx��� �<�RX���6k�a�҅����:*<&����&���R�X���Ҋ%�X�t�d:�)�\���%̽�ʄ������p�P�0w�T��+8B�B�����x1rd�8���JX��ꪢ�={7�����_<88��f0�j3h��@�j0�Y �N ?f��u%焪�;�D�B���U��C). �7�Ka��7�Z����'9gڌ����zu�[/����ij�7�K��ϓ�&�c�u"e��0~�s?R����m��)���x9E�p"�\��B"t.T�ඐ�imn^ڨ�0��+�/d�٩���4'5�H������¯?��o�0A�-c��?Ëua�պ��3Z�BuF ��d`��2)�N�IJw���+���^�^V����q��f��/�Y1ŏ(�7�*�2���h���p�����YD�B�s뛰D�j� ���K��uS�Gb\FB��G0₾Q��>H �k�����8Z9��3j�3z��+p.H����I J�BO_j�ɡ�f�܋`�oWp Ȅ)��}ᔞ���/8�p��n\͢��� ��ډ/����Z���'Z}�^�C�i��m��8�� ���6�a����h������q/���I���e��� ���rr8����V�e�h��N���^�0�c���;Z3��g��-g���%��e�8RQ$.by��D3�_�^P�=�E5TYq.���������y��T�"������5��YE��'y� r�#�$KT+��Q���V�������s.����9A51�$�� ��*n AQ�qi���������RZ����4�d�<�/�|��r����W���r\>���Q����bG�lڎ!|O�)�=��.@������Gݨ����En3�]���4|c�O�?�!B����<���g��Y���ͳ��e���Y�3#=��_�;q���yj���!�#0���2-��Y,G_#g��J�u����`�Z� M�iP����gCj#y��@WYG 2ِ����Hw�6閑�؈�R;�V��NKo�N���� �MvX;]t��C�gd��h�"�a���g����myN��:-v�u��;C���i�O�Y���S���� Se��@<ȃ�z�/���4x�� -ݼH��[MQ:,�H��^�A�N��=�������ߥŷ_�x�����l<(`XY�_o*���b�0��%v��ȥ�a9�(�j`P�4���*:�.W $�K��{��\S_����dXI�/��|Ȱ�+��#VÿT��Õ!xE�+��[.����5E�i��v2ȍJ6�c�'ܵg=99lgR|3����(hK����2^�֒v��m%��T�ųQ&j�_��d�2�)k�x�i��Czk��_�q�g�'y�(�0���q{�CMh?� }�}�\?Gw��� -Zjk�͞�FS{j��7P�T�"h��s �i���g�^�� 2� @ը��Aw&�D$�5ӟ��O�;�3�5��_Q1���ޡ��چ����|[�i�I���W�[f��Ț�2�-�,F}�����r�*@-�j����2*Ӟq���Y�1�E��C�K��7Q@I��,t�<�(T�yAj3IE��4M��,����1�M� �������][�T^��p�{��X4�GI�q�,bj�4A�e�3 *R�%G�x��������v����TKSͥ����l�Q�N�2HGa� ��S���~}L�I�='j�R=��F�hI@c���&9�z���垖{��=c'*�V����*Hv +ݼH��[MQ:,�H��^�A�N��=�������ާŷ_�x��w����l<(`XY�_o*���b�0��%v��ȥ�a9�(�j`P�4���*:�.W $�K��{��\S_����dXI�/��|Ȱ�+��#VÿT��Õ!xE�+�{�[.����5E�i��v2ȍJ6�c�'ܵg=99lgR|3����(hK����2^�֒v��m%��T�ųQ&j�_��d�2�)k�x�i��Czk��_�q�g�'y�(�0���q{�CMh?�}�}�\?Ew��� +Zjk�͞�FS{j��7P�T�"h��s �i���g�^�� 2� @ը��Aw&�D$�5ӟ��O�;�3�5��_Q1���ޡ��چ����|[�i�I���W�[f��Ț�2�-�,F}�����r�*@-�j����2*Ӟq���Y�1�E��C�K��7Q@I���,t�<�(T�yAj3IE��4M��,����1�M� �������][�T^��p�{��X4�GI�q�,bj�4A�e�3 *R�%G�x��������v����TKSͥ����l�Q�N�2HGa� ��S���~}L�I�='j�R=��F�hI@c���&9�~�#��垖{��=c'*�V����*Hv ��DAJ̏~ �x-�z�l���˥I���@�S��jG'�*x� -$~{�\v��j�QX���>�1��q��?��N`�0��s�ѵe��^���9�n+?Ά��8���(�/�0*��"X���ܨS٬��� �,��ꫠ�8�E<��!�F��~dcr@�?�K�V�A�w�5��2�����A�T�NaX 8�S�_�@��2���@eF�x=�����T2.��R�8D�yi/��) 5�����;5���n��^J�ő}qKiX?4S��\ߡ]�M��&��A604�1�4_�m�]���չ��*mҹ���s� -�I��$h^��GTaT�;�6�Z'!0}��Kb_��8�EC-�$��w� -��:^Y��K� e��t\*�JcT\����ċ�Z�r�0�93s�X���� N%!��q�2��KH�3�h�a��>Λ>c��b""�����''�^X`�`��p��E��mW���(au�7W�f�t!>Sj�%s��a(����b��a(0>ߒ[�*EH�5�ޒê���&X[��VC�1r��#��2�`�ꏣJ= �3Y�v%��Tـ{�JՀBސ�!!���U;F*)�����T��_���O�ȃ���J -��W�=���c�qa���̤5�LZ��F���Ι��=+j�ɭ�f�a �a����&�*@���O��� -P����v���6�s�3���т.+��w�/ؑX��#��#[c�!����?�.XO�` �f��� -����f��S**R�_z��%�H�`��T:X�s�D����-�fЄC?�������>�S���CdH�p��#��%���<��"�o -� QVeYb�M�n��+69;Zw�`\�QL�dT��c -���T�B!�����)�G��lkVd�����+�X�'6�r�`@������/H�� @��Ӻ,�ʪ��g��M|���\6�|��� �] -ڃ '��!���E�� ��P�ο��h�TSc�)Qt)�T�|rt���/B� ���݀���;���Qer�1+ɕل � -̿��qN�Զ��!�����I��f�rf+>���e���L�+:��(���iI�y����S�*��Q�h�ï�h���4�R\��A'Q8k�������zi��WɁ���ӝ�Q���A��d,Ys�S�3ؕN���K��j����cZ�Ĉ��9��[���x�߅�p(tr����!ˋUZjP�z�.fK/ ?�οi 0�pTq��r��"�KyeD��?�Ġ�H�/� ��O_���?� �n�,w�V^\�}g>�p@�_k�V.D������}x��q���cZ��Ҝ�V�O��P��C8h�{!�)�<�����/_�Y�&y��m�ƌ����)Y�\�n����L��|�r���M���>Qp�s�K���E`�<n� ���s��Q�v����R�Mui�%�D6�Q�^�6���t9Γ���^2�d!.}���5t;�*a�fh�owJ�7�H9���a$A�c�hk(�C?���0\���Q�{zu���2iw���;�s�<��͠`��@;7��Z�Xf��}J����=�RW1�P�pH��Ay��T�2<o�>-��� 3�l�4|�N��*c������h6�/�}����?�q� ��r3��V���"���+ۄ�^G�\��P[!A��T8`�@;��;��l���*7>�K��Q͇5*�++;��Zw�W��˟OYBM�"�����[��@fV�K�ۉ���q�G��e�$ -9'Ѣ�X�A�QD�r��]t�b��>��ro��$��RϴyJ��K�wBQ#?�����l�uu�aU�Nx�q��k�JO��nX���-[��o�J��d`\�S��! �db�"!��e9I��>���G�k&������ꖃ��^� 'y�o�R)��ϖUT9LK!�_K9@�����X�-LK�K������<�~�0o{��Q��Ƹl�� ��0ɼ����a3eP0�Gϙ�^W~�Pa�y���1�z�5�$,h��� ��g�<�_-!�������>�bE[�$v��<�l�Ьį�V�2Ф�A�&��F?���h��������oG��c��W�Ru_�@9㲠Ps9׳g �Jӄ�%<gL:1��]�R�F<���W�i4 -?�+[���'��S�ȳ�� -g�GŒ�Em��(�25�1�@�}�GG`�{���8�*YG��b�����"�J������k�:F��c�Zda�NBЧ���|��:E�����]���5ꪄ�h�7���x{�����2���}�M��Y;_*Ʌ���u}����j~E�aia�E��Ȁl tm!�Z9&_>��K#����F!���S#?�S'8>o�@1�\KR�נ�"��w���3iZ�A9j��,̦SSC�S�\��X�<����[���V�).<�%��-�¤��A��,5S�)-�Xp�X�)h��������|���G6�}��bsc̃Nл�&�?���E��w��V� �y�~���*$� -� |o|j��2s�ڳ�����S���UX�2��<0�LK_L���D��g�6Us�z0{ٸ8�C�%}��&T��$�hs��F���v�o�4ʣ��m6҃駱� -�ӡ�1h`I��,zn��� (t�P9?VҸ"!����(�LE6b[�BG� -t�e�������Y��Y�G!����G��R�&S��4�Z���'�{�������[R�$����p�s?��q��X2^�V��8e��弊�7��������A� vt��16f9�c���U�!flX�0�ҚP����.��F�g�=H������G�%��䦈�.T�\+�4-�����𘚣g�3Q��, ��ZV�e]�]�k�b��Z˯]1X�*V��m 4u�o��Z�B}Ss�cfPEO��T��@���h�-˵,w�,7�c9�Gfts���vz�xUo��x9\�D{���aq<�.��n�ZDk5��7�-x��hw��]�p�/����Ee{�����"�|0�F:�̻��:@�?V�#;d���l�}�=ZY�ʸ hl��3�S�-��p�lj��寑�DA���ܓiZ���j˗Hajk2 ��n�� f0�������� �$8�Ud7��C�P*� �2 -��2J�(F��КQN��A�Ep�J���H�L (�؈V�i���rZ%�UbZ%��hN4���C]�&פ��kԋf3��l���|Bc�^,m�� -�d�/?����D�Ec�G� j��u�������4#{���*T��[M��&5��I1��W��'�A;A�d趬�-m�@��,3���YP���dU�|_�O_�5�f0hR����f���`a�>���.���C�cr�mV���h�aRL�_�i��z@"�kҋ0ե����3:9����S�p��T:v3�uքs7��ӂO�=y�+«�^L����tφ{1���^鮰���l0�P���J�����} �Um���I_��Y��o��s�#�~m�F#;�s���s�Ļ����T��Kے���������!�5-IP�wF������f, �~g�/h�N��/%PxEJ������q-��"��C=�s>=�/��TA�ژ�0�C�i��m���MYC��"�-E괝�Etw\G��/z� 卾�9tX�w"� ��\V�`:=Z@;`Cޑ�r� -i�^��@����|}Ua�n)�>�i�kʌ1��ł�.�����/+�xn�&{Y6���} -�L�]���Tx,U�0�,�g�y�=���V��^MM�{:��RR������Â�1��?*�.�Ƃ^�,���̕��"������aV��$����7�=�,����vcs�������V�x���r�<��gr���C<�����6�E@��H0�8�Hmy����CH���mnd�H���P��f-�ѩ�j=�`��|=�� ^�~ޓ�������X��b�g����lԓܲy�. �]�7�=�w����c���T�H�8��/G�] A�]_����#RR8��مK�(��<dq��I!->��F�b�g(�]��9e\)��m�'$��:�J�*מ��4�w�G���N�t�lr��-��������̓�/!���8'Q���/�Bi��þ�7��3��@^�iP$�S�Q�#�;r��q�}&�]�!��A=O��/b��0���ܱ���e���hS}v��NJ�%B[f�a���(�����x��Ws�G��9��� ���n��J�*acL|�3z�*{�rc�b�P�0�9K_k�� ~�=r��xx֚'�,�2`1�����W$�$�*�h��H���i�3����g�:H�T���GZ;kG�Z>��pr8�J��z-c�|^\X~u�Wn�ۅ�C�Q@Zg�I���a�=-o�����* -&�BhH��bЇ�z�S�L��u�z�X��X�L�h�e(w��x����r0�&C�QJ(��/���� -��B%�X�|�&�������廩��u��g5���Ҕ�AVA�����P1�*�([��o��鏩ۛ]ea���+��PU=3�>e�2��zC� ѹh}�x(����&�a�l�z�s�P�QOSӆ�)O�t-��7�+n�x�G2�4����L�4����[�\{�l�~|Wu,wA�%#��>�8��4�h�����eu���]�!3@Wv>ԐA��1Lj���Z���cI�F��eR���p˘��iҖ [&T�<�̄�cy5x�!�6������(�w� ��%��}���_�a�w��/��ũ?�w�3�7���I��56$�Xr�:�sx(��ޛ�.zT�����9sG���(ai�9����������u`L�Ѓ�q� ��.��j��h�)q�6G�: ����Em�o��/1���#�������\�t>(� M������@Y�h�a�3eu����ҳ����F��,�Jik�sL5"q��^�tKy�J��=�+W�)�Z���Җ?]�oF�Y�w'�Kn5hG�L>��z`:��Mw(柴iN���'��x� -C�[6��e�B��ꌆ����Xp��Z.s�ez�)��!2hϻ�xS���)�=��.ش�#@M�����Fz�{�'N�b>!��k�����G�s��Er�'�.4�^�9�D��U�~-^��¯eK�Q���}�'���"�.������_��:���_r���� ƥV<��{�G P�H��|zl0Xf�ԩB|-{�_����7v�LRN�/��O_����FG�M��$q�Q��� -����J���K��a���4��!��%�'7i.Y��(��e���)�Hk20W��9�uV��B;�jvja���?�@�0�DgL���Ϭ!��3�d:F�>�A��nsp7Ip�i�V9�������D�(�30Eϲ�X�.W���`^g(��qG J9�i��d���x�93{L'�{��G�9��,iN�a����O�g�O�dƏ:Ҙ��7�Ŋ���=C�"5�/�A:B`���C�8h�+��:�J�� -D#�h�����Q�)�x -銕���,�������m�5��fC��D��;�h�~�����b�'dy!;?{�ܰ�]#��5�X6`��t����T��a�gӆ����e�iɐYi�Y��9��OA�#�ݲcs'�v�h�G�Z��u_�M�4{Ad-� ���NJݒ�ia5n��-�������gye@���ʭ��ǿ`�� -O��&>��4dB#�i��A��e�P��3��~�"�'�ر�5�/Ntm�������9�KS��at1�����6�����Q���W�� T�ZO�?N���Ipu��ű#J�� ����=3\8ά�9,�^u�0ƙ �s���<h4��y��~>�j�Lc�_�!�� ��� �曚���M�>���D�/Nz]%��0�?�ZFe��J`�"�xK���.�%s�yDWWs�^��-o\o����7q�������d��^�a�@������牠:�N�3�jg�` ݬ�����_����)^��W�a��Z~h2?�E~`w����P�'e�~(g%���wT��������|�[���܁BO�����tQ7��TL;/M�58�=���0�q����M��?��;�� -���r�6s*V�pJB<�sC-x� -I�9���d�.�D��HMKh���ʳ��ɀ[ŖF�tt�Kc%>���d3~��X�g`B�cP� И(�U� -dsh�+M�C�M�wܺi&��ˇ���A�(�T��vi/��e���ȏ��IQ���g^@�CW�Ҿ����;�'bd�c4c9CI5�E+��Rj5)u81�R���|ٔ��S��g�t�J�K�� �;�Ɂ��;z쀇a@��h�"�!��������g��o@��(���I�tL���b (�dυG������)�$cF2A)�t�<���"��3^������rP�K9(C�$t|Z����B��F|>�(��#:K�%�<��W������"�%�Vs�h_��]wv�uh*f�pKe�1-%z<� -ܡ }*2l��9����2��#���RSx+�f�7Vo�)�|����NQݖ���9ě���H����)��)����p�D�/�qv��V -������� -���L��*V -�k��� �b�� p�s�<g��b����$��ˈ��U�7���#-�汖�Z�j�Q�X9��*�����8�c e:��s ��3��u��_����9��_�1C!{��/��e��ud@�sZÚud@!�j`5�W�.�7�ݍM�4�Ϭ�w�A�L��2�ٮ`3� �j ����r66&����x������|�0��F�-��g���J��^lt<Cp��c�Q�g;=j��Q�3�� �E�E߰J��5�/���'x�($���C�i�/��nYh�=�Ѩ�b �Vj�k�.���V8������`H -|����ޥ�v�]�6S$̵�#�l��1X��x�·�#�m�r��~Y��#�߽��ۘ�,�$̏���n��xB�~�,E��yɨ�5P3]�v�i�k��l�;6��YL*"*�{��o�4�J�p:D�#0BTxC��-� -��f߈�횳@Tv��BT�4��KQu~�R�@��[�c����7�4&��1�d͇w��4AcE_/% g����Pz"r��~�.7\_��(?*����˥,'����/.M�J����9�yι��AF�l갪j�E���0�1��n8��VX�Ć��Ԥ���I�$y[�,����4���Y~;Ccz����m���v�&����^^��i:}Á�8�U��i]G���x��' -��8�j��6:,M�K�|v�ɹ�Ky�8�~>�B�'m.�`n\�-�,�nIӞ�V�VzaR�n�� 㥦)�z�`�\�@r-L���ZI�ۛ�H�nΌB��I��~)l����8M�k�{尫E���� -z�u���J�O4��g�#+oK�\� �I�'m�r:D�Ⱦe7�� Ǘ\~yӄ��Vʏ�u��E����2;Ϯx�۬�7�nΑ7�I��Mvj�x3�~N̛%�p���lA�ɪ�[��\�u��p"x;ڏ�\�_�q�Q"�J���&0�?�\K�*�0�3dž�7 �ۅ�������=_3-���"�R߅����;D�v���f�q�^��Bz���"�;�����������zY�l���E>ODb��$4��ɭ�N����`eJ�y��U -��� -�8'l�ݝ��bȰSqtx~;C�t�ҭ`c��]T[Q֪�lu5Р -�TPՋt�����#H����]��4����U�v��#�� -�k�PvN֙fG�5��h������)�� 9uz��p}J�y�'WűtkPFi�g�SS�H�U�玓܃w���7�{�X�WxI�����>~V��/��29+��C�yahv�˸��ŭ��>�c�|���t���t��մB -�4���b&�ˏU�3���XF��u~�A�4VO�/:p�����-Bىq�xR��&�<<x9���z#fd*���F�E��hˈ��2����M�T��ٮL`�=8ks�^� ̙V[�����۸�W�� '����; <F>*Jr��gWM�|Y�$���:� �{�qela��)G���7����d�d* �4�r=�sPvK��b��z� M�bA?�j��a&�`>�e#a�>�X�|�W�f���Vx��nE�'�VOBE�օ�u?s�L�Lo�nN��*�]퇐S;A�9�|å�@�("��PI�9�*��.`�1�k�4�G���_T/�E�ټ*�~2?���Z�d���T�TONwԒ�F�їϢ�:��.�ވ'�&:��G �?��kPks^�t��Ww�0<N�F���j��.y�,���y`�L�0·*�2���Y���@�����&Zm%�3��\Sή��`Y<;�� -�B�{c����3�]��_�U1e���h ���4�{���pv��S��&�i"°a@p=�L~!�_�[��<������_�PƟ�ڟp�AFU+�SӶps��Ux�,%s�0�>8�4U[]%<n]%Q�ijR�f8�w���qc�o��l�:#6�Wɥ]x)�jGK����>D��w�{aE�:� -0���q���b��`��A�c��F���#�l��;"ʗ�Ʌ4�-�Zt#H�z�t��B'>�t�:����2E��Ө7����BSP�]�(5��F�Һ��T�f�ߟ��FY���u+He�tu�Ȅ!����w`Q|�����X~ -��#$tYf�#z8��"�l�j�鴹�_yp��A��q�:�m|/P4����Fo��*�o���9�����/�@/5���E;�E��K���B�Xgu��A��^�y�ux��ǀDQs���_��?��e?`'��Awu� ��w>�n?�I�r¡2�-��IJܕ���y��� -o&�k���2�kq7�r��3��4$ܘ�ox0:�� -S�i���������F���`� �%5V��t�����X� �x8Tɑ�2^�sC���$GG�\6,L{x�5�iU=w��U Y9ո9�q��u1=��n�e�`�~� Cӝ*ci�gUd=�)�M���yR^/�8�þ������v�/�<~n���� -����<<��P�s�[���l��r{E�{RF�?��&�t�*�ǖ�[B��;����v��U�ݫ��~%z��~��r -ir�Su���:�j�sȭ/�yN��<�cMv� -M -�>Щ��p��`?:>�ɢ��~�!�g��6(H�%�����x�*5Q+/����Y66h��]tX���0�)�������]�%���Շ��j <g�R���3Feو>�yJn�"��l�ǽ�H�ki�y���E�V&�����{kN�<�I(A��B!�)}�֫E�=V�=ٓ�$"o��%#g�(T���A�(���ɹ3�YSH��җ�(8��b/��R$��>�/#�}�qR���d����0�4�{�#)������˻����Χ��a����ZШ�5���7㙾S�1~�@B2�س���3�C���[�ց�1?���� y�e��g��MY���uE����F���Q��[�R1]�p� �j4�L����|/��<�u�:ޢ��#� ]�p�,m��=8���grL��:�8�-i�ow��}Oߔx�x�=�B���-���U�{�!к8&�݆ь�#ݱ�zG�}q���e���h1����+����&6��v���a-� -�U�����R���y�6X��@�������c����]ܳ�9�i�$s��\f�7�Qb�=���%a�:WI�ek�QI���qvtJ]��1�b�*�J�����hX��79��ڱ1h`Az����h�a㺆���3���sA���x���#<�W��z)��Ɓz��Ay��*i�R4�R��>��n#��`��j q-�Cf�h3�;/S=�r��%�������VE�N�8i��:q_�Ph���Ѯu0�W**�5�8o����4�8����K0{X���3�%N�\�7k�B�,�TX���3��8�?���|T�}�8�L�@��rw\���楧�����$��pL��r�Xu�_�Xܳ�r,; �� -�M�M�I5�z�4�פ�י+uX���˷�ux��� �~�k pђBP �B�o�Y\�|�ۊn�@�W8%�/d������zhAX�E�/FG�j��,�"1*�T��g� K~ځY��n����@0��?� O��J�fߓ�������iB��&p扇u���o��&;����HU��&���U���QUI,P{m�?Ө^��Y��Gq�pn��E}�ˤ� z��ܙ�==jP��Il|��bf�x>i*���}�~�ش7�����Éɞ�8�My�װ$D��[�(l�w���O_M�Rn�p·'_�� K�ō�/{�i������Z������;��'����o˿-����k��H�����oF -u��am�5�H\�����xm%Z.�Ʉ�����!13�R��aD�G��^���a -9]wv���üȖ�[��4��c8&�/ݽƔ>��S:���@'$hd�=�fDPNx� 3�!t*<+�ϥ<ryb��'��F�_ɓ�e��B͔vқ���Z���(:q������LB.��m��bh��O��\y��˹Q^?Ɇs���h���c���x������*T)np��Q��N1VĴ������\�'�e���8�j��yZG��{ܖ"=�r%\Uv�X�'�T�$�!��� �>� -��Wu?3�A_�/z`D�(�2�;��@߃�)�j���-�^���Jt�L�h���=>-����g��f�W�K�4_q��䟫�!�=��u�)w־d�����Ɂ�K����-m}2�i�rs���J#YZ��r*-+���k�)�� ���x-�Ԛ��,A��g�l�cG�~�����������yI��c���s�c~��?��M�� Fy�"�Pc��R��d�?��� -��a���3�á>�b��>�hR+7^���3/JC���v�>�����r_���Kv��x��䊛e~;gB��s�DzI�K6Q9P�u~ɉ%��w�K�f*?��?�y�x3V�7� -��q����x9�oF!�� ��D�A����gr���D�y���/��A��� -:��c.�l�����8>e�T|y��@a���*��6#L�����)dtQ^T�X��&�p� t%�Lܬ�zTg��2i�ɵ� ->�*KN���T��"��Z/�c_0�� -B� t��P�� BR�2Q+y��r.�l�]�x�]]H-&x(ɜ��O��Y���/�O\"��!0 ����Z���(2�7LbbI��Z��,E�@(2�h��Vh�)4 �4ueb�|"j��^F��)���%J����}�<�$tg�3��`e��a�6?�� }�V1��5z�y��q-���~�r�C��'�e_�E�zq�� )�T�p��*�p;?esj>��)D #�&a�u�9�)>���?v�( �M��>�k��!^Xqx�4��̣�G|rR�ZE�s=�S�C�������]�Q�M<�N�dȽ�0�p�y�4�~��O8C����d0�<:�X��kS�;Q �\gZ�:��1e��Z�ޢoXA_�g�k�(��;0n�����()x�̜WI��B�P�I˂�jÅtqg�Cc��OR�G/�u�J�O��G�>*�}s�t��0���);AX�Kk��r1X����{L��j����"l�Z��vvf��y��-�6 -a�=�a�]�(��������v*/cR�ɝ���͙��Y�a�쳢���M���I��dB�~�g���9�_��;�o�Z�c.��mb�&�U�/���g�^��.��V����8�+8(H��ra1�<�����Bb ��%�����3H�o�q�zw+6�'+Z�)��J 'Lr��W�b�u-��FKon뀷8X&�W�&E�"[�<O���M�v:sa/��//�?y����HM3d� �i8f���3���pm:�L���\c��nX��������$�Gq��r-�.�����0��3����t���v�M�%Ϳ̵�$u�`}4ɛA�=�A���4d,��y��w\���RX�e�C��*�GAġ#y�?����L�b��OÎF����K=iC�0�^�!�O�E#-ܐ3ŎDQ^L����Efhsj%�����:Uha�4s���P��� ߔ۴��,��*R���[R�����<p�M�ig�5�)�C7LIju�a���8ϙ����H�BRA���'ͲMG����Q��j�ӌ8u&�e�/� -�t:�A�3���h�?bx5ń�^]��(�L�:�bY0�5O8NЀ5r�xt �ْ����(GH�r^��N�0������M��f�ЀăWieY���OSi����a2��:�(��3��tH�B`膗�kS�:�&]�h��@�G�|o��0"~���o�ޕ�|5���0�6��~� -��kr����2�����x����*��֝8;��~����x�N�i�E��@�J���T�N���t �2;�V�NUS�0(��t��Cuw}�q?'�xs��E�4����$�G������<��ʅ�C�M���?O�O�-f�%=�*@�߶�l�����R ��f�V���� �L�˙�Uݳ�r�����靳����7Kc G��b�A�A�1("xwX��,�����3���C�42>!#�CF�a=��a2�����vw����3�3B��63B����3>}���O�j��O����cA1�~�c����n�"ƹ"ƧO��ӧ�!ƧO�Y �^�Rw���#j���D�o�7\"��k��/�����n�^xl����l�>:�xm�4�i(C'�ZB)���y��g�yܬ��Y�'?��m4ׇ|��w-蠅4D�]��Sk��D���VP����ńk`���wC�]���o��̀�u��Wi��b�y���������i�d���~sa���L����܋�MPMB�`��\HaT�2hJ7(ʛ�6��P�%W��p�F��s�`+�X��2��-ΥЖ��=[a�Z�� -�Qv�aq�^C�K�:"�_sr�W虿�,����}�HN�c;l��9F��!nsR~������I1��,T+�R,��g`TnM���|��M)��.,���=����t�Px����A��v��6���,S;pSo��\���6�r��ؘ�=��.ԫA�5������E���U\��U�D���ɱ������{�V�V�2��o� �Ni���_P�����m�Xz�XZ���K��i��j�������r�րl�����݆���a��tYC��)���z)��� �Ʋb�vh&]���2�ά�PZ���rW��{C2��������������+���w,�1��y��1��4�] ��ה�sy-�ꯙ@3S��v��z���1��(��{��:�L�oU̵� �J267�$�o`�f�-�]�3sT�{��J���Nc�րxw�����G5��*C<��:�O�c3Q���t�-�]��Iקc�3[� �<�=����ځ��Zw���L�ڡ���2G0�?I��;�A���h�� -�c\�/���.Z�����[{��(��Q�BS�D��D�lp�-W��:z&���t<�s�&h�~����E���#AxL!�(�S�!�e�9�pR'w�R���?l���HP8�O��p��M��m+8T~�����x�B<[4pBxe6�I� �A��e'ݹ��q����&�@�֓����H��Y<���l�,��ӟ���c|w�5k���;-g��c��C)�"ٓ������՟�g�P���U�p���x���n��j�J���Ы�Izj�R<�asd|�`��J�$�C��3�� �X��&W2P��$1[�'�=.�T.�R�] -G�K=�R�$%뫙���ҥ�� $]�v�$\�(��Qwс����֕D��U��\�'7��.�2 ǟ`�,�)�H�p�q�&�1Ne'�d^�7����u���3��n�9�,�FdNK����i�3�m����q� ^��m�ŋK���^�������2�"��e*�����X� ,h�����><ͶncG�����{�� l�jhP���?�܇�~��S��8h%�t�� ���o�C:^�T�C��K����)��>|�O{��ú�pE$:��]����{2�f�/��k���A��*B���\��r@��8��m��o�=�// -�[CNӳ�0+�qvn-�% ���6[�BL�0����S�e�h�u�_E3�zr�q=��[#���=��w�.5����qn~+n����r˰~����#�,a�tl:(/sO�It�]7��&��[�.{�n�U3)⌜AN��c�bY��?3���C\�^ס��V0�x�h��Ӡ�8+,F���+�&�A��n�A�H�#����`������ۧǧ��ݓ��]��p������Tr�j{�S��ᜥ �����\d���~=g��9L���e�&��U����ҧ<7�y�K�����UE+r���AF�[���m�K3+�X���%�a$:vp�cz�k�2���vsWw?��C��)������x��Z�s�Q�ؼ� ���%�_'��q�>�zf+�u���ѐ_3�,�!bm���� �f�W̬��3��=H6�e��}��U��!�3��p��/�R�+;L�Eh��i�QD�>��)m>�j��:҆ -j�����T�v^��KڜHif&Сf�{��Yb�#��O_4�3�y(�dV��ٝx*���Z�a�q��EK����;b���?��~�!jI���bL+��l�b�ĨZ�[�K5`AW=��F�����`��uR6Ox=�6ʔ��uc�/Nr�?��/����]��-�A�n��|��� ����T�ךx���=��T@�pv� c��2?�#\s7���V���ۭ߯F��!w���^07O,�{E����/��w�e1ԁ1��:i�-�]<}ء�8������{�Ow_�������fM�cjvuɝU�����v��+�]_v?�F�8%��b�~��'-�]���5��Zt�u���D��lK?X���`$s�������l���W�^�_*����<��`0��[�(�"���{�+�5���4M擽5�xw��(6�ɗ�]v�r=y4�Ɔ�����u��׀�%B��\��.�������3h�!�� l�%m���0��@���:<vtt �7�IdC�D���`B�Tf�KN�J��������&W����ޠ�D̮�F8��~��.������w�8�6���o5=0JQ�{ܾP%�1��m`�3�FK�/��19t��N����e[.j�����Z� 8�V�/=)�,�ma��� -Hw��wW�B>�a�<3C���~)�u�}�zPa"D���cᐫ�K���K�p�挬;��h���h�����v�}��%�X��s�x(1S��>+J}=%��F[�X�eݷ�v�b�@͖��L�\ϧ�S���D��JS�K�7�Z%�����Z�c=$S -l� �{��"�UE�I������� �i�K?�Xm�,3<�`���])x�p���<��*qH\o�����o������RCu���O�7��L��'��dE\���Ǥ�^XVϥp���z�^]Glj*�e{�cc7���1n�����z�u�*��hE7*��x�y�(�Y���TE%�R�Mj�4k�3i�ȝ��_�h���|�A�Y⬉B4�<HE��@"��i'�,ΈP��I�7�m�z��.��j��<� -��_���\GC�nL�=<��wTO�f�j�ed���X�lv����t���h(�����&������Yzֽ$7��������#�.��d�JT�.&p1����ٚnO�]���(7���鸐 ��$m�[��HVFFn��f�iRDy��0�u_����t����4;c�r�t����$(�]��( ��4/���:Y����5��"�+] �sVzs7�]~�}/ݲ��� -,�.����x�^%�&�e����q���1�%�OpVŘ������yx��q -*�0�qƬF�.�o��E�A=a�q;�W�V��7zU��7�����L��Sm��l�D�c�^?���j�F�����l���;����Z�%�������g7��tvH Qk��B���0�=�)�2���a�6��&���P<��b�T,���%k\,�{�%���V'�v1[�3ve�e뿑"�|�z��M��y<P|�f���c�;+�&�=6�A�����̫�'�:�M6�H�%��{�����c��;�VE�>� Ff�zb��FӃs�\"qUK�6U����K�n�����<t1붐U�-����J�אF���6ʗ��ܩ��?/�?�(�?�BX��cWr�z�T5�\�ig'/l1�+,L[��\��d��A�LS�z�dS���'���p�LW����h�����+���q�W����F*�G\FN4�o�|�#�߁l�V�i&�W�=�u3�H��<��\}H#GW;��J�P0a]��'�3f=��3�QYR����'Ǩ�y"��J]�H���kne�ӓ�����S�H?:Wz�l���2$W� ��[Ҵ���oս���u&�5���@ܲ�}z�*�{u��}ԇ���Ci�U����U�Й'1T�&u �&9�x�I��W�h����g �{4>�5��g˸�=Ț=��Y�*�*�6�^�P�%(x,[��� K9��/�VT��<]�F���3;Q�!vԚ/ґ'F:2��p�����ʭ�\�+���AW��9 ԕ� �S�,��� ��.x(���A�#�+��B��B�؟�*ur�.8=̕�SO@����P"�� �w?Gww��� -�@}�~������J���y�zx<̓��'o�I_�w��S;1������$�J�$�bqh��k���13�tx�p=�� �H.�6��$p8H�!�% -�"���h����]!k��?�B�;;�������JF/���*��-���*w½����*�`�-T�y��i��b���/|D癹`Q��h���8.���]zA��c���qn�K2B;a��Z��9��_q����F�JL�����0�&[�������;��k�N� :yY=�����ɘaBl'.,KH��z����uy�[��&��PM�����#��1���X�]�cQat��<Ż�u��]#5w.�`���s��{C]�d��n4x�� -L5m�������/Rc ������xi;m��.�Q帇��PK�P���l�{zc�b3�Ü�vRƣ�>�^�r���N��&f�����p����ֻ�{�]������<\j��P#,>ׁ����ŭMW��[�MB��^�X�bJԢ���2y�p�Wgy�S��#8S8��7�כ�iUu��{S� -8'�S�����.�=WmѪn�G[��j,R9S�H���g�F�K ��x�?(&���ϥ�k��}����BZ�_���A��PA+�`��������n��o���Es�-t�i�}�*����)v=v �V6�*���(h�#]|�__n�~��-��s�8����`~v�lj ���&�O0>A^l^������/�uQ���o'9D��/�o/�5���^��G��]�,-U��#���IVI���=tp��\JW�e3��3c)� Np�ߣVi -�pU��2�'}e�V��53�-�u���qj��6N��g���D��`��e�)�h�c@Xx~J�@��1N����I�鷷l1$S{�9�3���G�_R�hI���2�f�$��,�or{��&��-0�`T�4����zW� ����/�x�����莄n���F@:�P1�!�Ւȅ������\�(=�,Lg�mG -���z��ڊI��IF��U���|�n*��J�ϰQ�>�;�m���=�m�W��,<L0��^���W�0z.*%Hq�t5k�Qp�ʘ�9�.�^DBزEf��$�`O�⤸�'7�V�����tQ`"�i������#��H�f�e�.T����Z�x�<�?a������ �"� Ye@2/O]+���L��$���,�k�.o�S`�$&�ɰb���'M��sX2w�jV�BO�,ҭ� `�{�� -��O��< I�L�ĮX�H߄G����4�@�u�2S<@�v�QX����j)���bԳ�9T�1�D��ax�6� L@�����P�Zr�A�cWO(s��!�GS�k�ON0��rr"u��/�����.��3�y! -_�q�B�*b���6���39S�^��3d-7�LE��|� ���_�ġ|T������gS�c��/�߅G!���FZ� -չ+TA*�X���9��8�,ؽ�������$b� ��q�_�*M��Ԧ� -p���~�P�Jڕ&v�5N�C�yw�w�1�H��8��5���g*}�vJ�`��^ �"�l_a�9w\�d�U 2{�.o�p���@-�\��,b)�*��B�¦��ej!ߣ#��m�QOsA '�D -Ln��I�6)/�h�B���>��k|��|�F�a�����Z~)�����(����9P ܕ�e����d�o?I�"�T9r� ��Ep����ɕ�Jf�`�����X`���X-���Q �|a��|a~eTn5{Mz�"�����0\.#�����$#���b�ԡ���?�� ʊ��G��WJ b��!-T:�qqA��~)��u�S�ߜ���ۂ�pJj�9��/�!Eű3���y��Awᡒp�4-���� 5� b�L�m����{�F�.?'3,�H@�������E�z�E\8f����p*m�u�1$'��Ʒ%��I� ��F����.�řDݺtx� -VW2/^T��q���� �xp��nܔ2.[�M*�$�{^k� X��r�J��e:x�ܑ�� ���@4a�OK�����ԙ�~�D���.�zbdB+��T+�����Z��o0�U}����������1�>��B��'��.��F'���6��yTBYѯ���:�?������(��%�?b�[Y�'�?����|���س�a���e �N�m��%Tr���>�oȭ����d�AV�^9�-��|��t��IM�A�|��bx�K��6_D��]�xO# �[C%-� Fo���T���.�}�U�e#8W�S a�ڠ%���D�o�=1<�UF�J�Q����Z��S�� }�h�p�c�o��l�B!��������9�ê�Wf���^�t�@��#4������c��� ��l����V2������,ĉ -+"�G���&��X�F�V�&大��zsRʫ��t�MZu��7x�Cl����#�1ڽ)�� �f/�'�L9�!kI�%��)O�ZR,:ة; -�9�uX��� �E"9n�����.�t���ژRrw��m���L��B����tK3-�\��"��'�j�B��~t ���%Ml3s{���BYĭU�g�u�X:������?�����ﳔ ؟���K3�R@χ����D� ��R}Ń��wM��!\.���I�%p�f@#iy��+_ -=����Y�iX)t}��t��{L����`��{_y���~� �?�k����Ob��" �F�ni�h&}����ΰ/�$�j��s�كh�� F*,9�O[M��Ql��2<�������}{�K���O��O�k���}�]83���c.�J� -��_�����f2;M����p�B?�f�+9U��s�J �?�.`K�����d8l8y��R9�}��k�uk�[�*��~��$��0�?�W����Ť5Vk-~K3�Ín���E#2�S��ڇ��n��<�A���M/����/V�9�K���N����y�<��w�2�����/�RDu�P�!pPq�@�+��M�#�%e�t�Of?�+�6���2�d�V<�I�!U���T�(@Z8�k����_��;�r�FP�T����h[)���d�����R�݂����5�����瓩\ -ѼI�9]����j �F7$��W�.@��0���������a��=������h���[���@p���`���c0v��Ĝ����c�XYIV��Cf�%�6n����"� -��L��A{Hn�F� -�~�r? �!�5�Y7v�Yj@�ߙ܀�_�X��=���(�u~5>��s��)g+�N�̯������A|L��խ< r�ȉ�D'��&��EI��n��!O�wK�@�P���'ix��������������\r��0�[���Ē�uۀȥ;˃'��|d -m��]���!�PoKo΄����L����9��e^�I~�'�0���ݛ�q��F�k�ǽy�*�#0��g��Es��%X������C*᠄KO̱ j�)}}�g��� ���~���93'�Jj�O�s)�%ײ��� p�#9�<�\�#\�=P9����x�ȴ��(�na&�e��H\���?����3����K58�{��>��T�$�*,_o��h�� ��L?�+z -C܇x�4�%���~��y�ۯV�h=O����T�a����)ǀ��3+''�� ��)M�%���g�����$~[�Zt��ra��?���U� ܘ�tg�\ٺll|�;0:�0���b�x*\�.θ��w̋ի'�3a����V��8x�RK�0���[+bbw���V�R� �>��"�D!"L�E�������|��5+����4��;�`K��3ى����m�����Қ��!�O�f|O��&�kU��A�}�D��%�´J��9��rjh�� -GH@�cݎ��L� ݒ[k�U�Zx�����I�?��Z�m���������l5�Z5oH�d���\�L��Q�w�;�2_Ƈh�NL��x� �ϕ�͵�U���r@���Ic�������n%�V�E���Q?܄�t��x��R�Vn���}+�ɻj^�Q^�?�~�H͜����(t��c53k>�AO���n{�zh}�-E�J�CJDt�@���>s������L�C>/�O�������Xg�й�1r(rx�2.�@�rq��Gr|,�F� -idZU�����*�$7�F�� ���|2h�'z�kw�+ԗR~��iE�VT�QeVUfd�I,(��ʭ��Yp�.<]�&�<�~�"��}�/��ƈ/Z�kp��N|�O8F|����䀤���"M+Ҵ"�@��;�i.U�A�i �p�]������Y��&��Y��8C����v���Rl����[Z�䂃8̈́�lW�a����>�t��HN��'UN�+z��L��߯��ؑ��|����B�~�:u��S�9e�z��O��VHh��K��V� -ft7�1�,w�Y�&S��y:���p6�W�c=��n���Ï�{C�uGܹvOL��O闸Q��f{0�%�&n�f�nl��H�<`��흸�|哸I{�j��eRR�_��z����(��f٥�L�����S㬭x(?�}s���Y�ߒx�Ym�|�mR��K��e��sF������p�|��{�W�j���M�Q�-�?�mj3M -s��k�x�y%�{�u^�<tS'^y��$�<�u���%�/]�����3}������b�^?D�E�[4���-ܧm��4�!Q� U�>I�5J�� -i�-鈆wrh�>���a��Ž�TGM�� -͖��s��nW_�Sl�������?ͷ_:���o �&�'8sJ�K�E����&�g���,�h�z���J��}}��~���o�|�7ߡ�}���w���;h����$�����2:D�篾�dxH�p���K�u�Z��B� �j{@�D_ow����^��`]���d�or���]g���?����d���������|�����2V�|�h?���j�3�u�}�x�$���Iڝ�Q�sRYw��)����ܭr����vjޛ���~���ϝ��p������V6�ɿ�s�j�رs�#�X �o�����L6�5�m�q�_�,��2��-�v[7l['@����H�R~z���ҷ�������t3���c.�ʬ�b�l��=l�������v�;n�Z#>^�&zz��A㍤J��M�z/)� G��ie�"z�A��@o�d����|2�g���1��MgI���$ޯX��B�v2R6���ڂ9��<+����%��d��ը�N�i��s�-���7eb��d3������Ȭ�2qj���C�y:�ؙ�>^)�ܭww�j��T�Qãr����'��c*h�H���gu�`�� ��F2�����A�7�z7������q���( � �54�é��e�z�o�B�k�] ��!�?��o�[7n�Sʡt )�<^q�٣����i�#}���~�Й5���i�[z��xz݄a�Dq8������i0� �oK��%��z���fp�7�]�L�����0��-��h9T�T��� -2��C�w!�4�V7� <�c��gt��E���_��� DZھ��_�y�^8vX�d���γ<�I�s�%j�=��s%"̛��&.A����}���ٗ�̔����9������ k',�J��55�`����h�? �������$��2�+�\��~yrX�����Ac�SXl��&���n�x��֯�[�6��\|Px�_��g��6��U����:��`�V�AZ2��5�i"��<U�`4îRѝ¯d��N*g���I@�8�O^�C�i��m���ۆ��CSW�!:����K�����c9��ʌtx�-Oe&��nd��Aϐ�7�D�de����U����Գ�Ѱa�b��~w�9`j^���� -2X��t������� -Z�O=�f�A��.JB�|��LJ]�����\��sۊ�Ms5V�.�_��p ��9���d̢����x�k�<���b@ZV��|��wi�<µ�����v%gO��y%�)��D��������B����Њ''���Ht�Ճ�2�*Y�W�L%߿Zq�&�}�Ox<)�wy���Y��Z�3�-��?��-�d�t�B�am�u�MtP��Ě����B9�3v���V1��^Ÿ�wB1&O��?��P���E7��C�r�DZR�]?n��%�gP��z��VZIf�ģ3�d��F�����"%�+����1��j��K$��y'����Y��� ��CNk�L�b�5������a���$z�ͳ�(i��� ���p�Am��� Ьuն���Uۺj%r�#�98�������u�������_[|m�U�N�^҄WG�N�Rt��k� -��%X��`����ܼ1w�"{���`^�W���A$��l�c�WB��ȶmU�j��y��a�������i��˵$ՒTKR�s�n�&��!E��˰`��g��I�~/U=\-ɥ'3�q�y�~(��q���3�;Pr�w����8k�}|*>H� ->E+�"����,�Ӕ�=��|Ό�a<�/�7w���&���Da�w�X���Ioٟ�b��ǜ��u6��(No&���&�GÛ�7�D��]1���;� :�4jǼ6���f�<���u�K6$UXyt���t���;Z�z�Ht�|k�{Q���J����x�E��/&���x9wֹBF���+#�b���G��k"Ij -y�D����BAv��~���)��/�`�G�O�����L���j[����CM�i������R�e^N���H2�U��(�GW�ū���w� �A�^�F ?�4��<�4�TA�Q+���D ������c�f:���f<�s(e�$����!����)d���i��Z���"��ĕ4�RV�� �tc��p,�7G��E�U?LǣA���S'��Y���(M�I�4�i�������</QQ��l�o���0 -�v�����������Z�~{��wo�ۻ$ -����ۛ�.�����Q�����i��˛?�����H����S�yZǷ���+�+���=��?��5]����W|�~X|�o��ߖ�Q�c���1:,������6��H��:1%6�X]��P�aVp�TNک�S�K��\�[XC�_m�����tb��k��~�.�yw�\m]�b;zq� -�P$@�ӟ*˻�n����9<Ɲ���������V���9��b�]����s|�M����J����g�!w1Ж��_�x��l�������/������� -�F� \ No newline at end of file +$~{�\v��j�QX���>�1��q��?��N`�0��s�ѵe��^���9�n+?Ά��8~3@%*Q�_*aT +�E����Q��Y-<�tA�Y��5�WACq`�x:�C�������䀎��6��:ktEe��1�q�:���°@p3����e�t��ʌV �z8��5# �ϩd\��rq����^*NZS&j$)��9vj�����a ���p�#��Ұ~h�4Rù,�C���tM$�̃l`h(c"i�p۞��ד�sW�UڤsW�����R?Iмp��¨wm� �NB`�D�ľ��q���Z.I@��J�=t��4:5�F�r 2�T&�ƨ�K�Ӊ��29�Xa�sf�j��L T�JBV��Je�����g�р�H-}�7}���7�DD�3$�AON�22��P�C3����h�ۮ���Q��o0�r�|�B|4���K�^��P�����2�P`|�%�U��+jڽ%�UCQ�M8�*����c�/�G�'�e���G�z@*g�� J\7�������<�!�CB��v�T8R"u� %�LAϟ��CC���+��s{6] ���%&�Ikę�3P�\-�3�{VԴ�[W�B����Ó�M�U�Z���Vj�V2!��n+�m���g�_��]V(�) ^�#� +�G��G�ƺC� +>�}d]"�4���N͚;(�+xaK/0T͖��TT��)���K������t���0%�:K�7�[�'�4� �~�A��-X7n}"t-�<VM�Ȑl�r�G6NKpKxL�E��(��ʲĠ���Wl"rv��2��죘�ɨ���"=z���B�a7��S��`�9�֬�t�́Wر^Ol�)���,?|��!�_�*��^��uY�7�U � }��&B�l��n��J��AN�E�1N�L&MY�*[A2� >�؝܁Ѵ����CS��<R�.���?��_�vA�%�gGKw��ã��VcV�+� ���I��t�m��+B"�9P��%�"5� +��V|l�G38����ә`/Vt2�Qb7u)8Ғ��\;��UbK���~�_}�.�'iꥸ.�ÃN�p֒�1(�-8��us�4Ҫ�?��ka��;�������X"��ʧ�g�+� +ە�N���#d9Ǵ ��Gs���P�+.�ʿS7�P��6'��C���Ԡ��"]̖^@~t��`*������+Eԗ�ʈ.}`�A�X_ ?t'��t?����jY����,���|��2�֘�\�0rE��{��4�"��Ǵ`��9;������z��p�l�B*\S�x[�?|_���M�vۜ�'`+W�S�J���"U�!�=��"��ۛ�)��}���3漗V-�gU���y�V���6��\�����Л���;JD�lX��(!l@?�r�'7�e �dn�B\���Kk�v�U�6,��n�=�66o�-�rޗ��H�*�d��PL�~�5��a��� ����Z��e��=IwL��y��A����vn�M����(����<�W){¥�bʡ�ᐐ�������e>x�8}Z4��SfXلi�ޝ�)�Uƀ��y���l_� �$W�a���\z��f +��3(gE��� ��̹�o��B�8M�p�D�v�)w��� |Un|������kTJWVvD��,V�z��?����� E6Kcϕ�L��̬j�*��<K��P����IrN�E��6�h�2�N�>��&��=}Q��� I&y��i�9��F~v'�#�l��ê�=���k�\��.����ݰ��[�~�����-���:�x�C� �ĒEB��r���}��1�L��1tw���-]u�B+N*��ĥRV�-��r��B�K��r�x{e{!��[��,��B+u��y.�pa��2I�zs�q'�&)4>�a�y���#�fʠ`�)� +�3������x1�cn�k�IX�>�q@�|xh�ZB:��Փ;H�S�}0Ŋ�$I�4�'fy����Y�_�&e�I��rM*�~�)4/�z%eEuI��$����.�Y�h��L�r�eA��r�g-�H�� YKxΘ$tbJ7/�^�`�xD�ѯ��h~PW�̍�O���*�gI�f��%�s��Q�ej�c�4:�ڏ����RkqlU�����^ � ��E�+�:����:��8u2$������ +3��&�OG����u6�F���ɻ�%̋k�U s��oT s����� 4e[�⛺��v�T�I;y���݁3������>� ��5"����B n�rL�|�<�F"=9ˍB`u�F~��Np|� +�bP���|�A+E����gҴ��r�(KY,�M���@���rk�0�ylヷ�j�#�TS\xKR�[ $��IV��v�)Yj��SZN�����S�F;F�F��$(;�l��7?��Ƙ��w�M�滵�~���A����!��U H2f�W���Ԟ�e�0�gq7-��h��1��HenUy`b/�����/�5(����pm��\�`��qq���K�8eM�<�$�I*��H����%��ߊi�G_��l��Ock�C3�c0���2qY�*��ّP耡"r~� �qEBZ%��Y�Q���lĶⅎ���*gk�Ǎ�F,|�F �B&�=����)��M:� +&�i�����O��xՓ'~�˯?��fIjA)���~��� +/�d<���(q��Y�y9o��y�'=S�����Οbl�r�ǐ���C�ذ�a��5�ro��] g�B+��{�L�?�s���BK��Mo]�Z�V�iZl#M���15G�Bg�*�Y�i��V˺�"��v�t��:�_�b��U�$>� b�h�&�T5�+�������̠��:y���~�$�ӎ[�kY�Ynl�r`����?*�����2�X��r���w���x�]D��v���jƃ9,nV[�H��"��ۻ��~�@>�����2�H����3����P���i?�I���he=*�F$��aFc��O�|f��M��ApR$��F�G�o|,sO�i ,*�-_B ����$�F���6���fT�&��'�{��W�I܄ +9B�'��(\lO�(-��2CkF9q0��A*f�7#!�1��4c#Z%�UbZ�i��V�i�3��9�dV[��u��\�NT�Q/���N�!�� ��z��}�+D�+�������2 �����e����&W�ӌ�I;WP��P�o5�j�Ԥ�&� �_�j�����۲���]~��`d��gAU��U��}=>}�P���IB�U6��}��F��S���a�Y��ƣ��I1 �-[�i�@�I/Z�T��J�����P��k�O �� �arfR���4�Y��hD �Or<e��䍯��{1����=��t��{��¾&6���C� +s�+�f�S�%|W� �#C$}Ƀg ���/_��<��%���8ωg?�A�>���Sΐ.mK�kBR���.��B��״$A-����KĢ�e����q���;}ξ�@�)m���Z�ǵ�����8��T�Կ$zR!kc��ѧ�v�y���7e�J����v>���q�7�7�RP��a�މ����sY�[���hh� -xO�˕*��z9�]�Y.;��YT1��>���Z�䧥�)3�lP"����;XR��T�q��eلn��)d3Aw��VR�TE��t����E�jP�Zeܧz55����KIUJ/�'?��^�0��Ժ�z��`h2WR�����g� |X��t8�ނ�IJ�c�ër؍ͩ>�{�w�~8Zx��-�"�U�e#8[�O�k�ڠy�#�l�#�a���j!E�*��=��"�*JC9���F�.��L��j��M���'x!��yO2o_pp?3O�#`A2�!�EJ��+�QOr��-��| w�ޒ�t� >��^l�R �" �؞�Q|v��+Jt}�'z�HI�f.�h����18��&���4�)�E䞡�w��q���M���:PP�*��\{J�����I�8 ���e�I/�T�.�~�Sj��3O������D}:Kh��5��Z�߸��j~Ό�y��A� �N1G�<�Ƚbją��pDv���2�<Y�C����ðS��r�L���Zvp�L���+n��Tm�A��f�V/ܯ��r~\���#���4����V+9���1���eܫ�ʍQ��BY�p�p,}=��G��w�E��Yk<���ʀ��3' \��� @��~���#�>��1<��s��� R��Fi��aSh�$K���*��뵌9�yqa��}^��n��G�i�a&�r����a���(�� +�!U�?�A�OU3��1��ec�jb�3 �ɖ�ܑ6����&����\�F=(e��j��?��+�� +��c��HJ�"�k����/���� +JSYEs:v�C�l��lr�G��g:�?�nov��zB���CU� ���t��ȿ� �D��9�a��C;,To��pp,�������ICeG=MM��<Uҵ�s�.�xԯl�q�Q�$���+�3��pڂ&n�r�Ѳ���-\aԱ�q���>�x��Ӵ3�m2Ӿ��E�w���]��PC�"�#zj�>�%ji$6�I.���-cB��I[&l�PY�2z�������ڠ'?[�����ߡ�І����iftH\��c�iߑ?�Т���ީ�T��;�'�>�ؐbɝ�@G��T�zo���QU�=�;���e>������ҋ__�7&ׁ1�B���'L�s�H��e���������4p��g��������Ҫ����C3���s����l74��j;�ffeU�u��Δ�9�S�K��"���{��*����1aԈ�aVs|xE�-�Q+��W�xK�h\=��jE�S�K[�te��g��}��.-�]ԠY2M�`���h`�6ݡ�Ҧ9M\�K\��O��a*o��o��� +Y��3�Vtc���j�� ����h�Ƞ=��Mynڧx����`���5��� +���-�Y�p8�9���ops��M"��C�u0�,���z9�'��V]jl��x� +��-�F�_�����k�g�h���b@�t?��~���T0��~�]��3l$�>X����5@�"�+���`��R� +��qilڮ��=3I9� �u?|�#�v)7�SS��Fђ��+���+�:j.]�6��ӧӔK�d�Ȟܤ�d9�������"I���\9����YQ�H��!��iJ����^+��1�� +>��|��:|���%v��_Y�����`$�]�1Z�(�o0��S��S�g�@��=ˎbi�\�f�˂y��hf��5(�0L.���C|���eF���1����q��8��9 ��Njz>�a>�?�Hcbn�X+�V���d�����+�o��a���,�+�[,�*����,��D����)�+V~&7��N�zr���#TpL� M^��{~��ȣ����^�A({�b�m������_r��v�Pj��sbe�3�}�Z6R�/�y�M�cz,���%Cd�ugU�0�>-��vˎ͝�ڑ���k �g�}P7%��At�A�$��K|�K+vKj��ո=��8��Jܪ��y.�+�n���m�Ӻz(k(< ֚�D��Ґ �t�����S�BQ*�`��9Ћ��`cǺ��.�8ѵI�W�OXן�8��j�/MUG\hhR��Ÿ��S��?G�'^Yv&P�j=y�8�>�'�a�)�ǎ(=k�6��NԎ��p�P8���T�Gxi��g~$P�� �G�-мG�杂����93��!��; +$�˞�H�oj*6~ +4��`����8�u�|VÜ�Dk��W+��<�-�SL�d��1�]]q� ox�ڶ�q}��n����eR�'(��j�zY���f*22H��JL�ޟ'�~�:�θ��}��t�B�/��c2A�ǻ�x��_-���Z~h�������EgCC����������QA*z{��������7��(������K�p[0I����Є_����X� CG��o��������@\/7i3�b��$ă97�r��������yi L���H��Դ���<�Z���UlidJ�@4V�CyXI6�̟!�U&?�������[e�@6�v��t=ݤǭ�&a�O�|Hi��r�N�j��B�PO_fK���xJ��*�z��8t��!�k �N��}"F�;F3�3�T�]�Rj+�V�R�c)�a�˗M��=%zz�K����*ܐ�Ә��}�C��x� �f�!�r�H���/\��F����BH����tLǤ<�-f���H�\x����_�bK2f$��A�q��#��+b��9�k}�1�<-�qи��2�IBǧ�jY�)���lķ���B=>��TXB�l{�,���_��-��ZRi5�����9o�ugg]��bv ��QF�R�`��#}���Ч"��6���|M_*3����;�)5���Ro�}c�����'����a��m>���C�yJ�1A� ��r�r�n|�N4A�2gכiu�И~�J�ꏯ�Y�����b�о�m�y 2(��<7p�s&o�.���O���QA����^Uz�wZAK=�Ȿkk9��&Ռ�#��"���:�P���;��~[�9���X���u��9��(��A��3���j�2�_���x�ZG�;�5�YGd�ѪV�~u�"x�����Hc��jzGD�d�.��� +6�ʑ��r���,gccb!K��g0� ݮ���W����Mh4��-}��nY�d��o��F�37�?�1u�z�ӣ&��<ZٰZ�;� �D�k����o��'lh�B����0;d����B�햅�����~*�@h��V��xjl���ۯ�����H����]�`��eo3E�\>�!O��8�8�'�|�?��&(�3�EJ8��{ ����L��(�=�vI܁7 t����Rt������X5��l�&��y��6�cc}Q�Ť"�"�� +Q�N��t�CT8#D�7���"��Q�j���ٮ9De7�/D�@�!����DU�w(�%K1]��{C�I3`r-�_H�|�p7�O4V��R�pV�z��'"���<�W�r��@��á"!���}�\�r�:i�� Є�=A�4�!�Ùg���@^d�Ϧ��_��Ks|s���l�5NlX�JM�:J�d�J��e�R�^OHS�n��34��N���ƞ�mwn�q�Xa��M���7!`�X�.���Iy�a�K!��z����{j���五��g��k��������#�*4{������B�b�4�h%l�&�f_�0^j�21�Gvε $��ԛz�ő��� �����(�0I��9��Va +ߏ�d���6��W�Z���Ϭ�G\l���A��z�<���4ɵ���4y�+�C��[v��r|�u�7M�1{k���^Z7?^t��.���7�͊y3��y��$;�d�F�7���ļY�'�ͭN�����Ł:�5Z'K'������%H�%�%��� +�mN�#ʵĬs]K����0slH㑐��]�/�Ἐ����5�\*/*�{!u�]X�� a�C�i��m�l�Gq��)-���-���:�?��>@Ȉ?ڑa���e�f���Y��D$�XNB����z����:8� V�TN���^�������s2�6��){/�;G��3$YAw)� +6��E��a�z�fQW ʡ�LU�H���P?ҁ��j���� K�I�_Ek��m�;@�@�F e�d�)�av4Ys(�V<�++�g���� ېS��lקԙ}rUKW�e��~V�15����Q�}�8�=x��0x���=X�x��t��Ͽ������\f#g%�zH=/�.y���p������� �.6����VH!��FUPl���v���}f�`Y����/0(���I�E�y`�S~�%B(;1NO +x���/0�PoČL�W��H���hmQx_�:�i�*r=ە 죷gm��+�9��j��:�vفyw� +�7�8�s{|����GEI.��� �/�Ĵ�P'=�|�9��M w�8�(���Ʋ{}�l�L��FQ��q�nI�|B�!�^��Q,�g]-�1���d,�g��l$��G�#�J����� +o��Cݭ���!B���I�h�ߺ��gnC�)��m��� �]e���rj'h6�x�o�t��`Ed��*�;tA���=&qM�&�HV����0��B}�O�gb]_K�l1s�����Z2�h=���YtU���e��դC�9�A����z�jM`��`������)ڨ�S_-�8�%����4�V�����A�P&ػ9 @h��c�~��D��D���k��U�,�g��X�W�x/`c,z�|f���s�*���� ��3��|�P����y���<MD6�;��/���Kqk���'��B�{�3������_�n2Ȩj�aj�n�ܿ +����d�`�����j���ǭ�$���xVj����>�`L���C|���s@g��B�*��/EW��h �=Xԇh�V��u/�!�hY�V&�1���#6�W,r�a���0����H��wD�-4{GD�R>�����\�n�PO�tP���.�P�^2W�5t�&�]�[h +J�˿���5��Y�[Zw�9� +��l������(���n�L���0䀑���,���2�:X�O�bx��.�LpD�y^d��X �1�6��+n��9�� 6�6@'������fQ�;#��M�\E]t�Mrx^3'�їs��襦����hG�Ȼx��}YH��8�{߫?����0�(j��������ℱ3�����g��m��>iYN8Tf��40Ii���1U:/��Z��d~ v;X&-��Yn;BRbƑ���3� Fǒ��Za +4M��Ҿ����h�YL�a�����p�NV^�:�<��*9�]�k�xn�7��訛��i/�F3���.���*!+g�7��2n��.�g�b��-C�}��;ah�Se,M�����:E���w�#O��e'y����p{x���E��ob��y"��TA�SS��'�*�b�sK���[n��pO�H���ĔP��zK藡r��zC��<=���{�{دD���o�c�AN� M�r�n�q�S�X�Ot���<�ɐ�g~l��NC�I!�:��x�t�G��:Y�{گ>D#c�6�%�I�d4����S�f!j�eQ}�8��-��C���:��4�w���w��]�d#2�^��P�P���\ +�W~ƨL"�G0Oɍ]d�] �����7i|`-�3�ý���d�=1bT��soͩ�=�'= %��R($;����z�(�����'{ҚD��d����?���S09wF9k +��\����S셖X��2V�G��e$�Ϡ2Nj���`����� �HJ�<�;����gt3��i}|Xm�t�4*9d��d��x��g��>���/�l�>����5B�ր�u�p̏��maC�|2�A��gSV}�x]�`(���"m��֤TL�"�zC���%�=i)�K��i����5�gC��F*\)K�#}N9G+��}��>NbK��0��f��7%4{���y~�m����~�����{�.��a�a4��Hw��_���%A_�n�"�Z�F`3� +��k%�� �]m�x#tXaCKy�)/,��~=q� ֧'�5�g�G}��Ę����a�lwwZ$ �\�"��-��o��hO���AI�ū�UvٚnTv��s���R����A̬� +����e'�(�e�M@��vlX��/���.Z����q]�[X���X�c����ci�z���k�y��D�@����<SZ�4�E��E�aW`���w���~�����!3�[��㝗�`9�t�~SXIKI��O�R��j�H��/M (�υ��h�:��+��tA�7r�qPd��I��ol�%�=,b�����i.ܛ5J�� z*,�O|əCG�Y���xTk>���s�v +&u ��g�;��KL���Z��iz�ot8&]rS�r��ϯr,�Y_9���F��즿�&ߦ`� �m�kR���̕:,[ōR��[͇:��t�t?|���hI!�y!�7��,.b>�mE�T �+���g2}ʂ�[Ub=����AE,�"��#g5�``��{�KƳ�%����d}7��Jw���V�'�` %M���I�}�~��x��y�4!�h8��úLF÷OU��NX��W���IUG��*�w訪$ ���6r���iT/��,�����8C87A�>�e��=IwL�̏�5(��$6��k1u�O3}<�4����>I�jlڛ�th����dOl���<�kX�G�-U�wzʧ�&_)7y8�Ó/���%��Fɗ���G�|A���wC��ϝ����k���ߖ���w�5�R$i����7#�:������C�.�~^Gۇ��-�d��Y|�Ȑ��g���0"^���g/AH�0 ���;��N�a^d��-_�1 +��^cJ���)]@G�4� �Y3"('<������:������R��<1Q�^�T#��������]x�fJ;�M~݀�n-chL�8y݈���d�v&�!�϶�F14��'Xs��~���(��d�9��%@b^<��O؍:'���"�p@=����������m��8Sn�BJW����I�����6��?v�(��&����lx���yHV�Edn/�w�*J��멞�z�3jJӃ^�.�84*�a���r)r��I�@4�]��E1s���<o�kS����>�̔�LZ����F���q���7ld>��Ϥ�bn�;0n���1�5T��`漊�(����]%u� ��P{L�<�2MG/�����"�)%�L$g. 8�s~OY�Œ]Z�8<��w����SO,�p�a�%����/¦���2s�"l���B�tO9CXf�6 +a9�����x�]Ɵ�OG�krg5�w��z�R1 �W<5f~R��j�;<�E����\�!}��@sfS�[{i��}�K,d�����\� ��������Dl,�ngu�R������:r�>^�Y�/o�8Á��.W�w�Ra����R���۱.��0ylȁb_�}3PԵ\j-}e���c�0��`R�j!�����i�4i�3��ɓ����q"35m��f�:0��p�l��-f63��t��x/6 +3)<�������8p%��b�p7+�+���"�һ�R����/Э��6=�4�2�b����6a�r�l%�# �%i�Cs�].�����J���Q�GAġ#y�?���{��>�l\s�w\�����K��=V�k�R\6��Ю�D���'㢑nșbG�(/����"3�9����H�˭�FfH�dd�UY���M9����]x�@@�c)����|�E��orM;�H�aL9�aJ2P�2�@�0��yΤ���9!���L��s{|ZF�8ˏ����Q�4m��b1���?��/� +�t:�A�3���h�?bx5ń�^]��(�L�:�bY0�5O8N��u&�xt �ْ����(GH�S���N�0������M��f�Ѐė�]+��UX�����_]Gư�|\�z���K:$e�3t����)�;� 9G8���|S�����ޡ�aD�Ё[�e�+��ĥ6��_�Fp���%���B�a����'�u'�y�s���N���m��@�J���T�N���t �2;�V�NUS�0(��t��Cuw}�q?'�xs��E�4����$�G������<��ʅ�p��d�1>��O�[�nKz�%T�t�n�#���տ���)̨�,Rh���/�V��܂>��Y��켳��yz�lq����R��c���zcP;b����:�x�j!�!c�2����O��jAFXd��CFX��'�����:���Ō�Ō�!f��Ì�#f|�$ŌO�t0�ӧZ0�ӧ�1�XPL�[�`>�x���[�8W����b|��4����b ��kW��u`3Mh�0T���7\"����������n���&|co���myы?h�gsZa ��O~���h�?2�2��,Z�eթ�]���)+�]�KZ�����ńk`���w�%���߷�sf��:I6U�χ|YP�<���k�r�0�����\���5�_���~*�"m��IW]�1�r!Q\�Q ʠ)ݠ(oj� Ca�\-0��y�����b�qAd�[�K�-e z8��ڕkA�e����5DѾ��#��5'�yՁ����:���'��9�Æ*�cY�Pq��̑-l]:lM�Q�d���}�/��g`TnM���|��M)��.,���=����t�Px����A��v�Um�"�1�������W�Ak��M�\Ejx�/)6�j)��jPw�3�vƣkQ���3Au�2�tK�j?}rl�>�������հU����<�c�S���f���!#�D�e�<���j��mZ4�Z�d2�&8�@�ܡ5 �$�� m�a�o�&)]�P�rJ�"<[4ZF�V@�<ˊء�t���;�$Cia�2,�]U�f� u�h�dž"�?�N6�ʮP4��߱hƬ��f�Ƭ��w%p�_S +f�嵈f��f�LM��"�5 +c����j�0�����2I�U1ז7+���ܓ���qv�q��v���Qi�-;�+� +�G:��Z�}���_�>�q�pU��7ԡ~���r���l�� +5O�>k�ٲo����I�X�����Dк;�e�����9���I����'B,P=F�eVP��|��w��7z\�����"*4�O��N���r�<��g��N�C<Gi���9��^�<�>����2=ur^��C'urG P.�(���f-�ѩ�������G>�DOٶ�C�g�i}|�O�g+ijE'�Wf�����[t�@�Qvҝ{�w��m�$k=��o�!��������Q�"9�) +!��<F��q��^�ƻ����rvL?vy:�2)�=YlN;l��_�y{V�/�^\��(��h>�g?����6��|�� +���f*�c6G�gFY��N�:ĝ=�NB����kr%eo�A2��|B`��H�\ �ߥp��� �IR��� I0�-a+!]:8��@ҥiOµ~z��lA?uHI�[h])@�]L�~r����)�p� ��B�b��7Wk��Tv2I�E}sX�^G���<sz�֙���oD�t�ɜ���?����q�������/Z���X� ��~�-~VfTDW��AE�4�s6+��E��-� �?�ه�ٖ�m����Y�]@|�; 4�-[ �p�����q�C��$���A���uHǫ��pH�{I�Cv\�P �1݇/�iO�}X7��D'����^4=sO&����az�V�0(�|P�A�]?�k8[��}G�-�M����E!�ak�izvf�9Ύí�䢡Az��f��T��������=z�b����.���bF�BO�0�';}k�ҷ��������_��1��oŭ{�Un6�oU�~Ě%���M�e�i>�.�����]|k�e��MU�j&E��3� CY~�@,k��g&W\�~�K���:�~� +F/ y~�g��hW��x�ׄ�#9V٭9�) rd��w���X�}}������{RZ��K}��317"}�*��A._m�wj�<��4��ۚ����~~ܯ�L�"��>����$`�P� +���]���f�"��b�w��3��hE��S]�8��u�q��MPb�bf�kyax��:"�D����u,@/r X�>�.b����C����??�_���x/�"��S+{�;j����}�������>N`�G_�l���C����f��3D쯭:{"��������B|������F���Q�O��:Dqf�����QJ~e�����@1M9��܇�=��V�WG��@Am�p�������tI�)m��:��Ϭz6~"�@�~Ԁ��F1b�5����*?2�O�0�A���>nh�rҒ|G��w�{گ>D-I�^#`^�i���-Q��Up�u��#����(Qr�Tc,~��N������F��Ѱn��I�������پ�y�A:�� ��o�����t��9�Z������� +h�nd��Z�w�k�F?r�j[v��o��ġ;oȝ� '��� ���^�Fb��l�=nYu`L�N�vva_vh-��b��;������ݗ~ o�{x��Y옚]]rg�*���������`���O�Q1F��C����Iv��v=e�?�c�p�7�$���m��#��0?�m�[h/�ճ�vŗ +��.�;�.��.J��t?�� +:bMx�>M���do�0�]�&��u�%e�]�\OM������7��q'�5 w�F.)����&'"=i����B?|~I[��!|:Р����]B�f�P,������P,���҄��Gme�&�'"��U~��7(?����N3�ߨA�/��/-C(�]>N���3��[M�R���/T `L�v���ђ�KgsL���o�kk��օ�Z�i/j�}���KO� o[�r�{��݀�o���@�Ѐk�D9���A�_ +��mߡT����X8�j�mc�����9#���Df�`'3ڰ~1�]mA_�u *�+���-J�D�ϊR_O u��օ�VįY�-�]�X'�F�eg'�)���ǔl7?Qi�����͵Vɭ>D�@>����Xɔh���9��vUQj��h'�i��Hh��ҏlV:��5�n0wW +�(����*O13��A��۬ail�[��6����P��,F;��_� �?��� irY�.@��1���s)��7�^�W��� +����� |��<`L�[�6��<�^qݹJ�'ZэJ�'�r� +t��9UQɡTc�9���L�r��*+i*�8a�s�8k��%R��0�Hqxډ&�3",s�� ��b��_�a��8�p3O��g�W��1��P��uO��Փ�Y`�Y��*9+�]�a3=��c9 +8`���� �#�stx��u/� ���?jg(��ȩE2:+Y�R��U�� \xd/p�����jmz����ͽ�`:.$@8I���1:�����������q�Q08�oݗ��04ݢ�=2��X�\;,g-� +}W�>JB!�K}-�N�k��|�}���JW����������� �G�߃Ew��D��G���K�n�y:ޭWɣ�qY���x\$#p�yI�#�U1�~~y���v���{\��J �b�1�ѱ�E���rQlPOx�΅�Մ�Up��^U#�>��'3Ӯ�T�@�:�������j����a%��9[.E����f���fI)��p���E",��ٍu�$���H���~�n�9�}k +�L����o��M+���G,���X8���@��K���?E�j�!�Չ�]D��]��ED��o��(߬aq�`���-c��D��J����k�MdFP10{ �ğ���*�E���z��=��q &���uw����U�:��/��Y������ ��F��H\�ҧM�ho�����*a�04]̺-d}�~����5$����v����~�w������:��ϲ���ؕܵ2U�3x���[L� +KӖ�8��*Y�o�.Ӕx��>ٔl���7u@k�� ����8����k=�J�3}\��p�������M�[0���ȼ�w ۸x� G�UhG�u�8�7�p4W�����N|"�ǃ�6LX�$���YO�D��̱@T� 0C!C���1��bj�H+�RW'�D����[�����!`+�T2ҏΕ���F���ɕdCAx��4-�Bf�[u/d+v� j Ĩ�$�li��J�^�5G����PZlU~s�lU?t�IU�IG]�I�B�"�yR���C|��Zt;��YC��g �j�Å��2�~�f�yV� +�J�ͩW2�C�D +�V� ;'�R���u����.�75OW��Ak7��N�tȅ���t䉑�f�{���l���r�+���d5zЕ9NuefC�9�r�0#2Ȁ,���l��y�������s��w�'�g�J�\�Ns���Э6��H#:�������>��B!P_��w��@t���2z^��$����tҗ��ԎF�#��h�d(ɱ$ɠX�Z6����cG�<<\7}�,�ǀK��69 �dH�w��½Ƞ�=Bk�?�BW���ꏯ��Ύ����7<������˾�#�� +�CkK�r~rƁʝpo%m2�J�%X�i��o^�db���jr��yf.XT�.��&ǻ�>��~0rA�^���%�l\�[�f䒌�N�g��}���W�����ѧ�0���19�6Ű��zD���x�t�����~�N@^VG�z~�b�x�B2f�ۉ��l��p:z�D^c�V*� s3TS"��h��H�uL��-�f�XT+(O��iws�H���=�9���\��P�'�*� &A�S A�C!����f������i�y<4^�N[h�Kl�C9�a.9Ԓ-T�-.;��tŞ���L�0g�]Ɵԇ��h����{��?�&��Y�7�� �������n��.V[K�gz.5Ev�������֏�p��֦+��-�&!Va/�C�l1%jQIta��T�ǫ��ة}��)v�+��mִ��Rֽ)L���)�T�P��hמ+��hU7ɣ-�u������[$}~�3I��� +��F<� �[x���R�õB�=ŋ��j!�x�/���ߠ�a��E���E7����?��������\�E�pZ�A_��dƹ���_�]�]��M�J��; +Z�H��ח[��xc ���N4��&��ݺ*��H磴 ��O�[��t?��~��Ki]��g��I����[�K0�DM(�������}W$KKUz�H>�t�UR��;n��:�ҕw�r��X + Hs���w�U���>\=�L��IA�fv͌9`Kh�,�u�Za�������5���=X�`Ye +D:���RE?�k:`���=1}�h��-[��_��{N��$��T ZR��3Ŧ�!��?����ܞ�� ���A� �@7 �+o��UhB~�����*����q�#�[7u���� T�`Hp�$r��rzF�/W�J/�Y`ۑ�mG�l��=��b���Q's��|(}:����#�R�lT�@����j[b,}�a��U2C|����7?��-��K�J R�!]��|\�2�lN�����l��%:�/�ӧ8)n!��M��r�x8<]�Hc��j����e���Yq���ુ*8�'^&O��D�@���%wx�FǴrB�G���S�J.��+nz�Ike���Z��;��#��o2������I�����������#�t�x𞤨������2H0�.�+5�7��:M:�sݪ̔Юl���C�C�A�Z +�0��,dz4�C*zƮ t�qp��<���a����ʜ�t�����Z���嵜�H��v��x3��d����`^��Wh����q�0��6��L�T����LY�M<S�n3�l��2q(U�,�"�������K�w�Q��~���Bu� +U� +3V�vN�(N&v��������>8$�Xe��|�헥J��)����_9�ư�v�������y���l.R�4η|��|�� +D߮�$X��W���ȇ"�W�b�W��qU�����2\�z7P�!׃!4˂B +�� ���'��i!|f��Z�w�~g��\P� ���lsһ�D�K6ګA��:�~����Qe�~�~>��_��7�h +��%�_Tw� F�<�kg?���OR�G!U���EC�z\w��"`r��Ҁ�Xb� �������bFG7VKz�B|T�(_X�-_��C�[�^�^��>#%'-׀K�Bu��<��:Ɉ����X)u����yA��⃡A��C|��R��ffH��e�G\�9��G�jy��T�7'��<���)���rAr���{�AQq�L-�j$a�]x�$�:M�=p;H +��?�n[@�p@�C��������,P��'d,�k��x��'�q=��C[q]z�Ɂh���mI%cf/��/e,��kq&Q�.��Օ��K�U�a�&�;�|�b�\|�7���Vv� +.����t���.{�^1wd�{Cg`5M����5��9u���(�:��E��F����J�%� +�+�o����q�_�F��������v�m�y!N��sm_{��Sz�{�<*����Y�K������A�m��y��1Ckƭ�ٍ����u{r_���r�����?����h'�m��6�� *9쏋�qw�M��7��rqJ�v�� �S��t e��q�W�&��>A�b���%Q�T�/���.Z�F# �[C%-� Fo���T���.�}�U�e#8W�S a�ڠ%���D�o�7bx��2�F��,�����.,��l����<�DO�.�B��O�#��'r��U ��5ɽ·���5�Ghtg����` o�G � y{�dlEA![#Y�3 +VD��F��M�ӱ�� ��M�IOǻ� +椔W1�c钛��o�`���)l��G8c�{7R���^�Oʙr�C֒NK:� R��Xt�Sw�sz���Dr�FOO��]&��ˣ�1�������eS��}�,3$,���fZ��b��DN3)N�i5:8���F.��2�5mK��f���Ӆ��[�Xϔ;28ꐱt�[�aG-��G���g)9@�?K�×f��,����=x=�tѥ��s���Y�� C�\hUǓ�K��#̀F��B�W4�z K��8ӰR�<�0\1L�0E���k���^������_��A(�=~��J'�u�I��ڣE@f������L�0��5��a_F;H�Y+�t=�`��< �T8Xr0�����!��4ex���oz�;��>��mi�$��6J�w��ԻpfH��\���H���%�;��dv�4Bفsᒅ~�͜Wr����*�8�]����=m��p�p���9�r��8����v��U`���'I:l�Ja��������Ik�2�"Z��f���:c=F�Fd�����ѧ�v�y��~72I�^ԅQ[M^��s�����������2xp/�et[R+�_�����!�`B�⊁W��c��GhK +�\����~�W�m���e��>xJ�(#B�0`3_�(Q��pp�LaW��\�w��6��ީ�5��� �R$�ʗ�����%Q���kty�'S�@Z�y��ws�@aq��6��nH$X1��]�paN,B=�����q�{���#��O;�rwy��=���r���\��`��%�9�;������q��xK +m�V#Ã9Dp���&�Ѓ���F��>���~C�*j��n�R�Ԁx�3�!x�=�� {�; +puQ<��j|���S�V���_}� ������̏�[y�,��Nd�M>R!��N���eC�`)�4$ʁ��3P�O��� �!$m�����5A����<a��tqى%%�9�Kw�O���a_�:>������C��ޖޜ 7}�����?rB�˼ܓ��N�a��7 �� ���6�{�U�G`��.��� +�K�����E�T�A ���c�^S������r[�3��K�sfN��Ԟ��/�R�K�ea��A� +Grr1xH+�G�Dz�r8�ݟ���i�QZ��L��$<�1v�=-��0���&${��g����K58�{��>��T�$�*,_o��h�� ��L?�kz +C܇x�4�%���~��y�ۯV�h=O����T�a����)ǀ��3+''�� ��)M�%���g�����$~[�Zt��ra��?�o�U�5ܘ�tg�\ٺll|�;0:�0���b�x*\�.θ��w̋ի'�3a����V��8x�RK�0���[+bbw���V�R� �>��"�D!"L�E�������|��5+����4��;�`K��3ى����m�����Қ��!�O�f|O��&�kU��A�}�D��%�´J��9��rjh�� +GH@�cݎ��L� ݒ[k�U�Zx�����I����Z�m���������l5�Z5oH�d���\�L��Q�w�;�2_Ƈh�NL��x� �ϕ�͵�U���r@���Ic����~��n%�V�E���Q?܄�t��x��R�Vn���}+�ɻj^�Q^�?�~�H͜����(t��c53k>�AO���n{�zh}�-E�J�CJDt�@���>s������L�C>/�O�������Xg�й�1r(rx�2.�@�rq��Gr|,�F� +idZU�����*�$7�F�� ���|2h�'z�kw�+ԗR~��iE�VT�QeVUfd�I,(��ʭ��Yp�.<]�&�<�~�"��}�/��ƈ/Z�kp��N|�O8F|����䀤���"M+Ҵ"�@��;�i.U�A�i �p�]������Y��&��Y��8C����v���Rl����[Z�䂃8̈́�lW�a����>�t��HN��'UN�+z��L��߯��ؑ��|����B�~�:u��S�9e�z�����VHh��K��V� +ft7�1�,w�Y�&S��y:���p6�W�c=��n���Ï�{C�uGܹvOL��O闸Q��f{0�%�&n�f�nl��H�<`��흸�|哸I{�j��eRR�_��z����(��f٥�L�����S㬭x(?�}s���Y�_�x�Ym�|�mR��K��e��sF������p�|��{�W�j���M�Q�-�?�mj3M +s��k�x�y%�{�u^�<tS'^y��$�<�u���%�/]�����3}������b�^?D�E�[4���-ܧm��4�!Q� U�>I�5J�� +i�鈆wrh�>���a��Ž�TGM�� +͖��s��nW_�Sl�������?ͷ_:���o �&�'8sJ�K�E����&�g���,�h�z���J��}}��~���o�|�7ߢ�}��ͷ���{h���UG���|"��o:+l>�|��������e�G��� ���ݡ�=���'XW1�%Y��ܰ�ej��=h������6Y=l�e����?����a�[���}�O��Q�X�t�������d������y9'�uߝ�;�A�^���!��>^m�����1��W�h���-~.��a�T���9��z_M��;vwD���c����³���>��K�Ec�\�=�E�n�m�d�X���z�^ʏo~zW�V47Z�ߘn&��c!�%S�5^l����M{��5�.v���Yk��K�DO�p3h��T��I��P�� ��?=�,PDO<(_譔C�l����OF~���:�[���,����K�U��NF�f�b�V[� vv�B�g���о�V�l�^�*�4H��z9G�bO�xS&vYJ6�ܮ� +�_���,�V�89D������㕢��zwgH���H5<*g,��B��>���/�|}�{Vg�����o$�M����ws�w�רJi�{n��+��:��@�ZC�9���\ƬG���*$����0����W���u�f?�J7��B���=:�?���<ҫ��-��άa,|N��r�o����&��&����x����M�An�x[:��t(���[�7��(� ���f2�������n�Fˡz(���V�����������a[h�<��U.���x��x��b�uo8���7�y���'�a�uN&���<�c�T8�Z�����>W"¼٫n�4�X{�n�~�}9�LY_Kz�C.Ͽ���ݰv�«�Y]S3��,͍����` +���NnO2_�-��̅��'����,����b㫛�� ����6Z��nA۰s�A��������^W�çO�B�(���Z1�i�`o0׀���*�@T9�-��JEw|����;���Z&��?yU�ѧ�v�y�wtn�2M]���pLjZ?/V�ߞ˹��Tf���my*3��w#��z��x��o%b'+ېw�|F�"�L���-�� ��C����#���S�2^��W�� +&��Ol��V��}�q�7�uQ:�{.�fR�j5 ��U��V�l����u��j<w�K�0@�����$cU��%���c]���n{�Ҳ���O�K���==?��+9{ +��+L�'�8L�|��|�V<98��G�k�����W�b�Bf*��ՊS7��3}��I��˫6��� +N��G��mY���^o�'����r�h��#�h��{���'��'t���q��k�Pݷ�ye�*ƭ��1y���i_�� /�����4�$��>������q�\P,�`>;���#�е�J2�&�q$[��5 +-�_8�)�\����ގ]U#�\"��`�;��OϚ��mX�G�pZ�e:;�� �}�w�M�$уo�5GI#T�l`=�[ jc�pN�f���uն���U+�+yo����L��7_�{����߭�������k���w��&�:J�p���z��|^�W�=.�"����������S�[<����^�R:��r�E�M�_ �^|V �b�UѫyE���n_1f�9��� +e�kI�%������RMP�C��/�a��τ����^�z��Z�KOf������Ppc�x�g�w��B�Z���q���6�T|�N|�V�E�k1Y" �)=�{�)2z��w�x<�_,o�F��Mx7����^�f��Gw�?ņ�;�9�7�l��Q4��Lz��M؏�7�]op3��b��wNt�iԎym�)��ny�)���lH����'I!0���v�f������(��t�q��,����6�l?^_L����r�s��.�WF8�|E��z�D���VkO]�����m�(u�SV�_����� R���ֻ�ն�'ZmW���y�A����˼�����d���Q(>��ҋWg��PA��ܽҍ@~�i#y<i��Vy�@(�}���o~�.�t����x�P�NIp�+�C�yS��[�X�\��E" ~�+iҥ�<3���H��X�7G��E����� ������,�tR��ߤp���4U�Q���z���(Un�_�ǻ��!�¿��u����_���?�_�������>�������v�K>=��s��?{�,���Ϸ���_i���?E��u|��m^ ^����)��)ޯ�2e�_�������K^d���J�m���a��=h�Ĩʹ��DR�ԉ)��X��j�����r�N힒�X:������j���h��@'V�VI�7@뒘wW���%0*������ +E�;0������v~�����c�y���l�m��nu����((��EI�<�W_w������W_w>��������Ż�w�(`�p���^������wG���� \ No newline at end of file diff --git a/core/modules/system/tests/fixtures/update/drupal-9.4.0.filled.standard.php.gz b/core/modules/system/tests/fixtures/update/drupal-9.4.0.filled.standard.php.gz index c6ab44f0f7b228180cd900090c11a8aaa30459cc..49915a1c817dafc67a3d9252b60903b52ecf50b5 100644 --- a/core/modules/system/tests/fixtures/update/drupal-9.4.0.filled.standard.php.gz +++ b/core/modules/system/tests/fixtures/update/drupal-9.4.0.filled.standard.php.gz @@ -1,4 +1,4 @@ -�t��bdrupal-9.4.0.filled.standard.php��]is�����_�u�*'S�a_��ܑ��o���^SE5�H�l�mj���lb�@�r/5U���9���Ӌ�����_�`��������}݀�����7�O-�@?�� +�W�cdrupal-9.4.0.filled.standard.php��]is�����_�u�*'S�a_��ܑ��o���^SE5�H�l�mj���lb�@�r/5U���9���Ӌ�����_�`��������}݀�����7�O-�@?�� | b�=�����C��4��|���>�]�����j�.��o������]�C�_1��]w����-Seܷm��B�`�����ˇC/y��$�_�� �_?|��b[T|ݶ�?��F�Ӈ�����O_]�,o�"5,$� �aϺ?���AWG�(�14��� C��F`��R\����U��A����]�>f���%�xu��O���m��ޣ�� ������L[�H�\��!t_?n����v.�?�L���� ��A_���Pe� 5/���7G-}>9�����U��rO:=����O77Л�ə��)h����H��P7e`I���������Z �����--Dź��P���oF����ܱl���8����������3�<�X��|���L�� �����]�"���?�*3DZC�~tc3#C�Ϧ��&p_��Zj��I�R�,�e�"A7� �%Z�JW�`,���SfP�O���Z�P_������,�ӏi''rF�~ � ���L�9z4�����zHCe�������_p����(�|�Z��c6��&b]`: j��u´vdÖ'4��=ꕵ$��z�"Wr����/�e&aհ� =����Hr���'�C:Is{Ϥ��>IS�xM=�P�]͑�Ph��V_A!��6k���3 -%�s%ĚE�"Y��IRJT @@ -38,36 +38,32 @@ l W5��h˨����22u�|�4�j��jZ��Q9т<1�$��,��؝y��z��ӵJ��"k�qC��K=�z���Cz�����S-#x�j�vT\$�����"��F����*r�D� �zUt�Yѕ�[�]1�)=���V ���k�?j��<j��i��L�]ិ���4��(���9�[ōa�W�G��^CjJQ��mR�Fڐ� `+q�Ոm�7G�xԊG�x�����I,;j�x ��F�Tfh7m,sB b��k�mY9�v����Q"�e��֭:2��U12+z���kד{�{�m�h��\M��8KǷ��_5�M{R�U�`N�f�-i<��`�{���}��0ι�[�?��D��� USk��҇�����|�X�;�u+�e�{�������l���f��^�8e`nU<HG��S�RX,3 �ü��W^���%ǩ����`�njv�V�͵�謨��h����>����b�pjo�� O,N/��$���z*@ULg}���p�5/9+�P�N�b�;����g�Xa��ݖH�Z��2]�;Ю��6���ؼƔXN��)SȽ�_6zV��)�5����M���������"W>�����Q^P�$���&.V����L.Ng�`9��`�b̿>Lb_��[ -���2�)��%������ς"�C}���9��/Z�р�.-(a��=N���6�/~��ӟ_W1/�*_���vpM+o����>I}��"c�-�NC{��G3��)�l�Ŭ���IW��W��v�����~�ڿ��+wy���'���*F� k�Pר�MK�֒_ӜHE*v܋�AE)��a@U@�X�Z�dq�����O��u:9��1�������7�ݵ��:,���D�w�!��!͝�4��z�4_��f&�DZa(4P&�.�ˋ)���p�PS�c������孏mĥ%�l}~�?O'ӳ���ro,���H�K��p;�Z-,u,U/���}����7��"��n�#�;½#ܻU�EgcUj�|̝M%����a�# =�=�i��Ebj4BS�� @(c�(�3a���-����V�;���N�=�le��q�tt�Q�uQ���v�4;L�q&ܮ1��T;��PCЂ) �k��B}��*$�4�$n��w��Ԥ���Q��;7�U��mQu���mq){�%���kKc[�_[�����n��V,�x�ƲJ�ڣ����w��4�h?�-�~��Q�$�h���]Y�㸑�+~6zqާ{�{vcz����.��J5:��7��ȒH�*�GvLOI�@"3�����8��9g"1�^�o���\�Ԥ߲:�:��9W�iZ+�j<��r��d�os��Gk�1+&��هP��C�pu|��[d�U]:�j�0�d�)זWP�+���~��R�?�Z�rn�S|�A0�S�.]���=z�t��mc���.�g��:ư��H�Qxg��2 -Rw]�ޥ -�UF�"o�*�BTA_U�%�����Wg��VL>��Cw&|jvo���3>14����b��bݙ�im@F�Q��59H9�Hg�5inxj��l��ڴ�p�t�댯ל�(o�L��aM�w/ɼ���T�&#��>�H��};���F���2�G�'8=��H[�M�G� �����4&�Q!&�X�7�Ԭ��5n�t�j�����&�H�M��g,��B�/�o��M5$J1����_��h�ަ������A�V���C�l5ƣ���3ܣ�jpc�!���"��%�@��XH]���Oa^�=�DXm�X�8�D`�@j&��� 4k��n�wJ�������ޕ���?��3ٯ���OU��yu�X&��=>�����A������#���2[ғd�ѾfwZ|wCU�0R ���Uըrz�N����~�7��T�aL��T0��L -�$Q� .�BV`>��O�vO�6�H��Rfʳ�t����������� -��ӰI��@w�����p��x�ቇ���*]D���֮����ӻk�:�Y� ��;SD���E�8��6��}�L���1��[^���]>_����l�\�W�'�W��t/�+��RK�_z?���(| �/�)�Y�=d�Be����ʌS+�e�e1*�B��.� h��[�s���T=pB�_L�`ȔKq��7�ȧ��@�� -C�6$���( ��gXg�1�"�m���^��t���]r�]w��b{9�Ljh�s@Y.����B���a�|����@L��Fx���{��RM4���k�]p]����� 13����h2��09t{F���K��s^H��d�� �q�/>�|�� �^�G� �#j��� rf����#HK(`3�9&T�4�A3>$��$�\�@�($<C@xDE:�J 0sB*����|H��H�e��;���:8fYp������x7��Uw�Pu������OS�f�����&�m6K��*H���^t��"�[��;� -� ІX���E�r�4�<j^?�[/ -I<��̝��g�w!� DY�m5��u�S�rE��s��i��X��.�8����"#���8� -�+������R��~L�����p�/v_q�.P?����8;��~�ɢ�f�t�h���b�Vw� �����ފLR�렵�tRL��7_j����Z�|+(�l��ޅ���w��o���>�4��>u��ե�=e��⟼y�� N,������c�T5U�+��Ľ�A(�qPbc.��Xd��6��k"Ȝؗ��ݙS��������X��w���*�ׂJ*_ٓ�� �j���X�{]}_^���y����'l(Q�y�P�l�I�b�`����9��"@4(��\�Z6eۊ�|�Qfl]ݖ��m��Sݦ:�]Q����7����oz�d������z��IX$7�\����.V��K� -^�����.Q�1��`����Zm?R��v���w&�Z���k\�k�@H����r�[c���V��[g�A����Ǹ6�C���c�'��X��,�mF8`H���"�ˈ���(���y���7��闻w�|���C4�DsJy��$�b)��$4H$08�=�1RҌR�gNV����A�\����xx$( �G/�w�����x��b�� vB�� �Fb����qݬ#�@������e�`d�2�P�`0�2A��S�����JWOt��E��b~dž#�b6���44%Aw�1^;*3��J��g� -��'�)6���L8.�w����F�����=�2w���u�#�"�#�y/����'�3ȉ�R�vT�%xx�����鑻GT�� ��b�)CT��D0롍�g(B��4Ř6+�9e�#���t�4r~=?�������Og��3����iS1��9h��@� -�F��P�����s���9�j��5y����6������Ag����b*��$x45#<���g���Vj�^��6��͕������u-�y#��47�I���a�i%����/�L����L���n���}LS�!d�S+���bL}u�*5T�$��P��Uƽӑ=�I���-����jTS�䔑�S&���t�t�M��$�)Z6r�lh�y[���Ó�F�G���z��^��b��Mp�9jy�V#G�n�4��#t=�\�xVp�n��-�4i��^+$�Ta�6�Nc�.Z���=��[���ث6� �P����`�}*���zU�Hq�oaG]������"i�`��#�X�'GH�?�r�+�h���$�،�8�F���#�Mo��b���k!����Ce Y�a�oV����X� *^z[��ku-��)�ZX9����q��7f1�_����YT�qי�7y�.�75�Iy���O!�����e����x���t.�W�uT]6�CC�X@-4@2�3Hkl(SϚnU�ȯ>���#��ȯ~��q�iX �9�������� -��]�V�UC���\�� �����C7�� :t� ��C7�� 9tC�V{_����|���u:p� \����u9p]]���`��s�Y���&��P*`0�����-��k�<�0���=����G�����O���4`~e��D��PqM� �A��z�9��'�n�$|��nSJ�w�N�vOG�/�Q��d�"~�C�Q�Ť�b���;���I�#�7���U~4��P?r�d�x�y:'[o�!�#��9j3�< �*@���FD�k�h&����FP}�/�'��Oh�� -���S2c]ykA��(h#�e���D�N�tF�Q�u$�@Ҩ���s���'�=8&��� ��ܺ�&����(,�ٰ#�5��j��D2!������Ed�fH.1�E��9W#=m�^��w���O D�i@>�.A�'�d��L[�$�,�`�q�ϩ �2tN��#�V��#�o4����v�av�K'��ULS;�#(RH�/θ7�3N�`��V�`pp|ࣁ�;+�Y��N[+��YX�b��ašP9C( #��l���@� �L���u+[��:���Ǿ����m�So��Ur�N�2a�`X%�� k!3Rkq}5U�I��=�u���>�Jo������9���A��$����!�gR -v}���J� �m���O���Z������}� 3ec,މ`�r��9�)S��|���A�ס�с4Q<��|�U�+���mC�h���lf�;��6lB3� d�e�[lx0\�lܨN���a�px��c���Ҽ��8�d�2�P���mc��+J�1�{lᬤOr'=Bq8�����|�)>�T5p�r�wq������g��-� -[��@��+��&��%�/6Wp�8{�a;����>�{�K�P�8����1�2�<�n潡��$�����p�I[�~� ~�6>s@dr0W^���9�2�������y����N����9X�����������O�j:v~��?����C����-�}M��]�/�%�+��F�nW:���!L��U���*�]q��lO�j=w��%X{��L�"��_&d����+���&���Wo�d�����_�oԁ}��>����(�H7�aH_�ɨ��M��pIyi�6���0a�/�n\%_+v��UINJ��q�X�rP��M7|U<�{^��Ro�o�}I�����`��k7.�ߓG{�o��˟��E*��J��0S^R�C���!1�������W˄`��Ha��v�>���3��ο$�n��z���ڷ�ʻ�zet�8��>���R����7�,q���Dm�Mآi�Z6q�8'O�$_f����5�2'ȫ�Wv��jl��_|�L`�s���ڕެS�Z�Ŭ��o�u!H���a��>��h�T��Y}�yM�G�|]��_]� ��b�e�V��2ӑ#��.?Y���ڛޔa��Q;��.����{Wm�"n�ڬ����I���OU�e`�a��ρP/�]�Г�Y��O忊�y�rjTAup7!�,��c�����0���%��+0�4����^2��������K5}`���xMk������a�/�Daٶ�0��M�jřq�dzkN�~~�v+t�Y7Y�0ʿ�6�qN������$콗�o�%߂�^�jպW��Z�v���,~b�� ��`��`�'�O|��j���O��O�#,�~w�D3���zW'��(��b������>,��j� �����ߑGV��\��,_��h�.�����v�5����PӅ*ڛ|sqw�M���()�q <�_�-y�E�T�o�����Q��� ��Y��t�=;G��J4���m"^*`���<���!��4ƍȹN�'��O� LV'�xT�ٔ ��L�qeR7����,�ߢ8}�MQ�Q�R�i���\=��Ê|�_��גD�OeEG*�b�j��F��K���,�f�껜3��Z4��= �C����a#�dku>?��?�M8�<OR�y�V^�\h�S`�f�q��1Sԧ4� -�)�X{1�%��C��n���`P�e_�}� -��}Xg�b��U0߶�˷g)��"�]8�{;� �����|���6�0|�C -L�2�G�̊�A��o��8���Ʒ���Q{�����b>���-�ي]냈�����{�w](�rZ�}�$�m���L����.��Wa�h���������ZYܹ��z������Þ;1�[T�W�-�a�fh�{mT�N�<���r��<a�6������2�S�$ �-���jc�Cd�Y6U��(tZ#7�0�Mv������/I����hWCv!�ۅ��<�KR}�d��IF��CW%���Ѥ���m������J��PGx���p��C�:��=���E+b>�ΎQr.^���z��q�/tk���WN#�0�x(Sh�2��XjԼlO�j�`Vs�~��ߧ�l��4�Hg���D�ȁ������*{iċ�k.������d�A���0@[$"�ya�ɲ�!�AU8�S}� -B����D4 -����2�B�������x��S�7Ki�q�,�%��Y���p��"��W=��niW~�ǫ�f�9EU���o ÌK꼝��"]��g�}l��)�8Z��oI�4ŵ���_���qiэ���,w�9�`�4�XQ=U@QƀdT��� -��uN[��qh�2���=;����;`���r�������xIS��e*�^��-�b�( +��]A ����rqZO4����֭}��ԝ)+;���4�dU���/eu\�l�-��.h�,�ү��__��m:��m.b�^A���y�/�U�ř�CAn��奷�XN>Q����1〆1�Ω {U���@�A�4��k��d"S��)�<���l��BՕ�Ks���������׳�����?[���/Jp�HϡD���GE��hh���R�m����/O_�����} ��/�HbN$�d ]����jߡgQ>��3 -��Ӆ%V -�Z����U1����` ��*)P�Z>�-��^�e�Ͳ�d��tP"si���I�5!�bVc ��P��`� -�i�FƐЋ�����; -(���)����^j�� -��*����ݿ��Y��'��hn���.�ȻhPB?x�{���!O���ɯ�����e�u��O��,����at|�ßW�'�������[0�� �F���Rm���)��, -z�Z�WkU��_�߷��.m}_j�����_łē ��/^�����o�E%;��� -豖�1(�(~��1�l06�������zy�}��[��&�%���������-3c";0�_[d2X˚�b���R�s����m��v����;]����+����[���i��$�Wh��R1bB�YѬ^!~/��N�c���m��A��.�K�^@A�Y�<�ރ<c�6j��T/�j�*4���r:���w5ˍ#G�U>y5S�?c�>ll��kdž/>1귛1��%���ch_l+H@*5�ji:���"PU�2+�*�K�d4�y �+vN/�����Gװ�v~F�G�%��L˞L��mP�E����|����;�s�KyG=.��o�Cz�F˭H�rD�!����0R���$�)S��<�Z_~���N�����?� 9� 9\��4Dـ#�Ԩ��� X�4X\�&^�.y�R���q3��V����K�C��K�\`�LY��:�E�j��:X�I\�`��+�ܖw[B�L>z�b���������X*�������:V{�����6؛�CU�|���7�V���]�ȿA�ݘ{�6�uB���.���"�3�*"6M�U�gB9)�� -;'5"�[<FΦ�,�<�q�lb R{ · 8������Ht�N����J���uq���Qa���G�����+�m�t����B[�/�e,M%����B�Fʔ�U��[Ujؚ��m��r����a�B-��=U#C�#��>�O��![L�R:�jƿ,��;��2��e"KgY��D�k�<u(��$��Kjݧb��0Yv�SsڑQ�~��s&rŭ�*���a|����4zdCEA �O<2���*_!��(�l(p�!�>2�#{�5��,Z��i6�V`oT+�wJ�i:�Ds�N�_��NPQ?��{Z����`��:�F>(�S7�`xi�q��Q2<�R�����`��Fc}�]>זw�Z�ej�Ϫ�M��7B�R�E�N8��z��g��B��F��d�f��k��bVZ�I��U*�uvÛ|�8�{��f�&�<LY�z���!CX*WՈ�j��ĩXRE�Wy�jѥ��ѐe�!g �������E���W��68�l!�6I�!��$T[�� ���WW��T�լ�Wo ��)��u)##F٤����i Y���iLK&�y}e��2��Y!����`*xX��x����$(�k%�y���!X�yof5�M�ͬ�6?�y/�����^z ��wN��]��2��;n��Iz��l^�뢓��� 4e�_�(����E/$�)o!��y�����cp� B��5���IE-��8g�u-<����Ӳ�5:k��oΥ��K�ʣ�TUƼ�K�xrT�ȑ�>�|�3�%H�4ʻD�k�Q2��Gˢ���K�f���XV3��6w��60+����_Mo����- !������L�Z�!x��s(r���� ���q�) N�]Y&f �e�At�� JߛL���zc/i$���h��'^!#5C<�,�Sr���QՕ%��*e�1t�����*qq˩T$���U -a���a6����3����x�-v��0Ώ]�g���{������RA ��H7X� ��l3y����M��s&@�"<�9����� �]]��/�a�Li�AA&�*Y�b.f�������$g{�b����(�������Ir�c2�dj��?�x7�B"Q������Uq�)2�;q� �-��H��T$�H*�R����p�za�4�IE%E� �y;�(�HIljb3)��� "����u|��������jN�7�q���4�)b��eY� 〉���&G�>���U/�^����"��E£���[��[u�n)�!3�Z%5��&`c�:,�,�`�̕g��f���%��`�4��S#�[��ע���x���%�՛�.-˘�נd�F4����>��>n�c����p�u�cb�5�QN9��sn������F� +���2�)��%������ς"�C}���9��/Z�р�.-(a��=N���6�/~��ӟ_W1/�*_���vpM+o����>I}��"c�-�NC{��G3��)�l�Ŭ���IW��W��v�����~�ڿ��+wy���'���*F� k�Pר�MK�֒_ӜHE*v܋�AE)��a@U@�X�Z�dq�����O��u:9��1�������7�ݵ��:,���D�w�!��!͝�4��z�4_��f&�DZa(4P&�.�ˋ)���p�PS�c������孏mĥ%�l}~�?O'ӳ���ro,���H�K��p;�Z-,u,U/���}����7��"��n�#�;½#ܻU�EgcUj�|̝M%����a�# =�=�i��Ebj4BS�� @(c�(�3a���-����V�;���N�=�le��q�tt�Q�uQ���v�4;L�q&ܮ1��T;��PCЂ) �k��B}��*$�4�$n��w��Ԥ���Q��;7�U��mQu���mq){�%���kKc[�_[�����n��V,�x�ƲJ�ڣ����w��4�h?�-�~��Q�$�h���]Y�#���+~6fqާ���u������\5����+���@��bU�Ud����hT�Hd&2�LJ��q��9g"1�^ųrҳ9W#5�YV��6�j<Mk�\���V�ԘLz6�i|4��2`Ҹ�}�?T�,Z�Su�"[����4Q���.� KMٸ����^�������Zk��=��N�}�\O��t�K��� �� +|��DGC]��u�7������΄�e��:�K|��E�:Uȅ���*��KD��F�;�δ�VL>��Cw&|jto���3>14��������ug"��F��c��CʑI:s�I�p�S�nf+�k�é�)�3�^s*��3�o�5�$�b<n�#CA3��0����"E&��@�*�R�>v�����"m�6i�&.�D��1��� +1��b�Y�f�h�Z�6N硩6 ����o���i����S^�����Ӵ���D)�>.��W�)��i &��i� WK�@w��!n6㑌q�d�G �h����|}���<bu�4�H9�R�j�|�S��k�LV��2(�%�� k(w�ڸ�G�R������5.E�w�����~Z���Wz��*q��<X,�\�Cbi={ �e��vDP�UaCz��#G���ߝ&��P������wU5������q-���M��8�m�<(= �;�(I`����ϡ����nek3�Ļ*e����CO�?oK��o��w2P�a�����~�K=�p$�x�a�Cu�D�."yc@k��v����5GUy}�z��t��[x�"S�ptN��l�wH����x��[����]>_����l�\�W�'�g��t/�+��RK�_z?���H| �/�)�Y�=d�Be����ʌS+�e�e1*�D��.� h��[�s���T�pB�_�`ȔKq��7�ȧ��@�� +C�6$���( ��gXg�1�"�m���^��t���]�� ������r ����瀲\֕�ˑÜ� �+��v���K#���7��h����຺����Abf+�dPO3`r���Hˉ���$漐���҃At�<_||��Cs�{��9N�Q�͈�3F>�@ZBØA�1�?�?��!�w&��B2D!��# +(���CT��R� ~@�D�C:�F:/Ug���9 ��1˂����ׇPų�if��ۇ�+��5���}��p��6��� �h�[��f�|���pыn�P$�w˲u�Xa<��k�0?�Z��fG��Gw�E!�'W�܉{{~��@��V�P�A 95@0A)W�88G�}�&J�u��D�S����/2�����������*��*�1�Wa�Ը_='���������O+���g��O=Y���,�����cS���γa�ӗ�T�[I*z�v�N�)��K���ϭ�˷�R�z�]��~W1�J��k���H��S�\]�`ܓ�.�ɛW���ďQA�[��;6OAUSuи����nO�;��G�%6�B��I��`kC�&�̉}Y�ܝ95��0�{�)O��E�xgo˩r�}-���=�������ZpZ����������ʝ�۾xq��e�7� ����F�D�*�����Ө-����]˦l[��O8ʌ���R����w��TG�+�^P���[��M��������9�7�`��Erc̥�X.>�X��/e3(xy���6_;E���K���j��2U��}�3��:�X��^����@���c���������<��/ķvpp��g:t�G�9c���$�K��E���P��Zd2c������ +�G�x*x��~�{����h�<D�O4���O�,��Lr@�D�㹇0FJ�Q����j��3�˔{��#�A��e@�Np�>����~/�݄#��~#g����qݬ#�@������e�`d�2�P�`0�2A��S�����JWOt��E��b~dž#�b6���44%@w�1^�Tf +ޝ�Ds��OSlTg�p\ ����ݍP-�ǻ{��܅��V�A���p0#�����2t�� '.SHI|ۧ2-���O�S��{���D�\4e���x �f=��EH4c��s�f�@;'�s$~���F��O�gৱ3����i��4y~�:?m*�8M6hS���j��5v�?@M��&��PS��&���3@�� h�4YC\LP���f�Gu���J-�k��&`�����'!=0b�A��aވcR�EE�!�bBXY�d����e��նU�$�w�6�Qm��4uB&;5��)�$�W�\%� +��dA�}T6v�q�td�t��"�尶US�jʓ�22r��W�����iߙ�4E�F�� �:o+�]<9m�|��ШW���h-F�Z��ȑ��71j5r��F�������s�c������[i<� +��VH~<��R�q�`;�ٻh�fs���o��cc��l&XC�ۿ3�S���ի�E�;���v��M��H������>9B�ex��a�ȣ����b3���Z�S��7�k��s��X�'� D�dنe�Y-֯�rc�7�x�m���յX6�Sȵ�`���#�M��bܘŐ~ip�F�fU�:�39n"�]F5n2j���>��9)�B<2�o��5,�Bo��g�S]��x먼l8��8 �&�Zh�dg���P��5�:*1�_}�W��G|�_�*��ӰsNOU;%���%���h�D�����3��?>��~ C?С��|�1��A�V{_�}�QQ��|{�:�����b�������O�ϬC�{�o(0 � E���K���}ks�h����PS +`���$* �_�?Q> T\Sj�hP(�hN2��%�[/ ��=�۔:䝦����Q��x�"�����Pup1IǸ�b��>)�A����Mmt�k�Mh?ԏ�8 �)^|��֛k��Ȓ7Gm�DXh,�1YlD���f +�@P�m�w��~N�� ��RA���tJd�+o�P>7 +�{�~�:��s�рjlI5�4�=�1�\"i��j�����;h�r8�.s�I���< +Kp6��|M�R��W�H&$�x1��̀ь�%�<�HS3�j���eh�qz �W�)��9 �g�%(�D�L�iK�$�;#�����!�95�:@��I�~������M�1p��G���҉�o�ǎ�����3��S�>8��4�o�h���J�m����V�JfyV@����{Xq��T�J�H%?[��)+�ÿ�zw|��ր텫��r��w�W]��u�m�JN��Y�"l��r<a-�aFj-���*1);�������ϷC�����/���rb�?xA����2��:D���LJ��O�_I:��-�s��S��M-��o{���u��2�1�D�RaD9������)Bc<��� ��P��@ +��(nxz>�*�����!m4���63���Q� ��2�2�-6<��6nT�m��0}8���1��yi� @�l�r�y(���1Y�%��=�pV�'���8�Ձv +w}_���z��� +�̻8��z�j�3o��V�-ZY�\�?���^����w6W����b���ϣN�@�1�\ꠀ8'�Jǁ6P�Y�i�u3� =4W%ɇ����������P���7n�=D&s����-b��)N����/z���n�_⩋n�U������ʓ���ã�����m��o�esSl��w˼ԣ��By~W����Օ�n�_�+��O�����>��{�������X�Ӄ�Z�݅�~I�{�1���8��/�T���+���&��ٯޒ�</���&ߨ�a# ��R�C��FX �|4�!}�'��W�_69k�%奅�������q�|��u�W%+*��}bQ�A�؛n���i��Ы��&�z��|+U��~&?�ݾ�o-�Yh�S�C����m��e��o-n��������[��Z&ā�� +�����_�m�v�%yw��.�ґV;�N�[I��z�2:e��z��L`� H����7�,g���DͽMX�i�Z6l��$�$�]F�����Z����+��`�!�{�/������W�Jo�)���bVW +(ʷͺ�·�Ԧqz��u��f�U%VH^��-_�%�W�e����nY��C��j�߈c�SMֻ:���7�`S/Ԏc�3�_��ܽ�6=�CmV�U���$�Uۧ*�20�0����@���Y���,���_�n�{9�Aup-!�,��c���� S��9�k�J{*�������lze����l��kZ�L�����T_4�Baٶ�0�f�Mvjřq�dzk*�?�l�ٸ߬�w��vA��8�x���a`��K���o7/w�j]���|-v�� �� ?��m�?^�M��|0~��'��+X�������ߝ�7�$�q�����6�9��ا��i����w0���?�o�w䧨QE��_��u����[�֚���[��B�M������&Hpn��A۸�ޖ<�� *�V�*-.�`@�&kàaV?/]���l���Qbm���1�D��W� +��"4~�e�k'�q#�S� ��z��I,�j^2�2�Ӕ�8�L�&T�w��u�[���7�):��*���+j�A��V�;�����$�}*+:RY�US�6�E_���f�[4{V��9�֢���i�R���&[���y�s��m�Y�y���3���B����6��c@��Q��>��P(N�ڋ9u(�]ڝ�tˌ�E@��}E�+T��a�݊u?T�|�V/ߞ�\���v�X�����=N'��'3m 4�^����� dR3�$��v�܊z�8�:�Ʋ��wyS����R���/nh���lŮu�a�����<�.�N9��$�o���J_j&����}`Q���WG��%є���������X��ia�*hO�C�S��u�ym�i^V�����ڿ��+:��t����2��m_5K!Rye���H@�[4Pq���p�2�<b� +l2sQ�An��+a��Z����/Iz���hg>v���I����K�}�d��IF��!����W�hR��ً6X��vPc��Y�#<OC`8��!L��sC����ub>��e�(9��`b=X�8˗� +��Xf�+�ek��)4aP�Y, 5j^�']�~0��Y?Q��St6�o?��~��{"P��^�v[�D�}3���5�Er1<y��a;�pAlL$��I��d^Xo�l~A�g��*Ω������&G3��"�䃖HP�DO���`�W�{z�v���4�8p��|�,g^O8ڋp��3�f��+?��U�W3����*�������a�%u��j��.[�3i<����s��뷤D���u� ���ո���\�� +�;牜n�cA,���*�(c@2*p�n��:h�-N�8�c�}�V���5y,�6T.����]��/i���Le��0�e�8d�S�+(���K�W�uGA�oKIh��o^��3eg5�&���JQ=�Rf��b�u@ce��~]�����o�1�ms�� +�t�3�|��,����Z����c�q�l=��4�QtNmث�fE�b���^K�'�*�M�������/T]in��0���-}��a��=�8����%=��������#Z5�h?*��GCSV�X�Mo����~y��̞���K���Fc"�p��o}��E��k��Q�W��+1S���8Ъ�lU�<T��&�K�,UI�R?���m�g�*M3<h�}$ԧ���K�toNb� ��K����2�KT�O�4�0��^����;V�(�8�#���C���/h+ ҫ��;�w��{.dA����}d���_w��"�<�A ���S�G�)&�<�_�&��z���m���?>������?�����^��|X8�ǧ�}^�o�,ok4��vP�4��H�S��, +z�ڽWkU��_�߷��.ms_j����<��_łĪ�����/҅{]~أ����B�x�z���@e�J4���8Ɯ Ɔ��~���BY/�G���+j�\���qN�No�s����e@A&���)�,����+�<8�h�f)o�A���]��!�%��)^y����݊���HcȬ�@ �B+������Z�f� +�{�:�@�8�>ۡ-�?����e}�����g�Cx�<c�6j���T/�j�*4���r:�B�W�����Yn9ү���{����;|�ac#�^;6|�Q��D-)u���@�b[ � @R� �TK�1�D��Y�U�_z ,+vN/�����GͰ�q~F�G�%��L˞L��mP�E����|����;�s�KyG=���o�Cz�F˭H�rD�!�x��0R���$�)S��<�Z_~���N������ 9� 9\��4Dـ#��4���� X�4X\�&^�.o�R���g3��V����K�C��K�\`�LY��:�E�j��:X�I\�`��+�ܖw[.�L>z�b���������X*b������:V{�����6lכ�C�|���7�V���]VȿA�ݘ{�6�u.���"�3�*�5M�U�gB9)�� +;'� �[<FΦ�,�<�q�lb R{ · 8������Ht�N����ʶ��uq���Qa���G�����+�m�t����B[�/�e,Mբ���B�Fʔ�U��[Ujؚ��m��r����a�B���=U#C�#��>�O��![L�R:�jƿ,��;��2��e"KgY��D�k�<u葇$��Kjݧb��Vv�SsڑQ�~��s&rŭ�����a|����4zdCEA �O<2���*_!��(�l(p�!�>2�#{�5��,Z��i6�V`oT+�wʛi:�Ds�N�_��NPQ?��{Z����`��:�F>(�S7�`xi�q��Q2<�R�����`��Fc}�]>זw�Z�ej�Ϫ�M��7B�R�E�N8��z��g��B��F��d�f��k��bVZ�I��U*�uvÛ|�8�{��f�&�<LY�z���!CX*WՃ�ʐ�ĩXRE�Wy�jѥ��ѐe�!g �������E���W��68�l!�6I�!��$T[�� ���WW��T�լ�Wo ��)��u)##F٤���eh Y���iLK&�y}e��2��Y!����`*xX��x����$(�k%�y���!X�yof5�M�ͬ�6?�y/�����^z ��wN��]��2��1n��Iz��l^�뢓��� 4e�_�(����E/$�)o!��y�����cp� B��5���IE-��8g�u-<����Ӳ�5:k��oΥ��K�ʣ�TU���K�xrT�ȑ�>�|�3�%H�4ʻD�k�Q2��Gˢ���K�f���XV3��6w��60+����_Mo����- !������L�Z�!x��s(r���� ���q�) N�]Y&f �e�At�� JߛL���zc/i$���h��'^!#5C<�,�Sr���QՕ%��*e�1t�����*qq˩T$���U +a���a6��b��3����x�-v��0Ώ]�g���{������RA ��H7X� ��l3y����M��s&@�"<�9����� �]]��/�a�Li�AA&�*Y�b.f�������$g{�b����(�������Ir�c2�dj��?�x7�B"Q������Uq�)2�;q� �-��H��T$�H*�R����p�za�4�IE%E� �y;�(�HIljb3)��� "����u|��������jN�7�q���4�)b��eY� 〉���&G�>���U/�^����"��E£���[��[u�n)�!3�Z%5��&`c�:,�,�`�̕g��f���%��`�4��S#�[��ע���x���%�՛�.-˘�נd�F4����>��>n�c����p�u�cb�5�QN9��sn������F� �k�dY��sS6N+;�p��� �GO6{�]y4�}t����gf8���g� Q�����bg��P�ttj�k���HRĞ"k�D�'��aF�5!1��X��0q,!��9]�����N��(,N���jD4do�:�\����l������BW-P��E�·f��ѕ�\d�: ^�+���-�p'�gX�,yg�#��G��i��V�b�U�Ƞ�uG���Ϟ;����njÓVg�[����;�2������v�e�}|��E�>.6�EӍ�~܂w#]r7�`�Ë���8�`n��oZ��K?�%��{ٻ�3P@�<ħ���t��^����?�q��u��[sk� yJ#��dVH�DK�H;��>������w����>j��,�7��`�0f�l�v��z�>ܣ/'�n��ޮsw�]��V�*��[��4�C���ܣ�������3�*�Ow� �9ښ���&�+�F%ǘڈLb�1��"��Hi���K���[7i�9������y��s�����6?0Va,���qyw;���pa*D��!8DG(dl�����a�Q��i�:iQ#aoT���Rж̀�'>�^�S�P�~�C��x�#t]���@h[;��Lc"%�=~�)2gTzF��.i��d�����3m˳�S|,��0j��B$I�����A��Ʌ�I�����"Z?���F4uV�S@�W�bL��6��:��`����W�����T��*Q�F,���⬽�@� 4�aJ�s0�����`������a�4*'�4���������H`�05�PI��'f@!���n��qH�U��~k�Ө����$�6��dW�������O���٩i?��ڮ�;�9���Ó[���.��ӓ��<L+;.L;�0��0���nMʀ�����r���'�fC5�� �$��,R������ǟ�e��!��+�m�M����}*b����l���U]4�l����,�;����D�d0��@$'@�N�Q7i ��}�ZzJ����#\�y�2vl�j���;��6�o�j�0�������0u!��fŨT�dR�� �=T̀�K�"fг��۰�Dg�zR�l��p,f.RE(�|A&�Yb�w�K)�u��O���tu��������\ �J��HX��>�iY.�2C���+��C���Ϥ�k���Wʓ`h�|��HRmQVvL�$�Ĥ! p�j/?���U0VJ_ ]4L����W�(�E��@<�cq#Zm�b)]P�Qh���..w�����D�w��JI���[��Y�e&tU+W ,��V õ��2M���t�H���1R��ϻ�|��e�u�u��hi�{E�ҵ��`��.}�<��-vܧez����ҁs�v�ߍt�R�x."�����b�8��è1���OW��#��zP�:�y�?�>��*�>�҄}�U�����(�xHi*12Ҋȱ���D�tuB�n<�U�U���5�;��q��JMXv�55�(,��7bONW����N}� �q�5naVWY�v�W���U9�c� ���H����IwpA9&)�,�D���d�2>��F_�A��8��F�hS^fDV[��`�L��[uy&,��uyNj����#>O�*y����wx��iOe��k������i՚ �f���%}� ^���s��Tk�bĩ�H'H� FR�mHR݆�1a���:o�ˑ�h��jW�,#����{ګc�Ԛ�f,��^�� ��%, I��ު�=��MW{�8�/~�' (>H��R�e&� �yD�JHR�R�I�y#8��bA_m������������:k2߫��m]�彃�sޥ�����K"�Q2d�c���������������~�='A~�?��J� ��!�py� i.��I'%n#�w2r���ِ�,�C���T�A���b,� b�p����`D'���g$5��k��d����3���7~�*=��9u;)��P�P�Rk8��y;4���A��?sİ>ʼnt��t��W���� |�}����URPz��$!4Y�4V(���L�83ǹ�$9y���g��`2>����%*���d�NCLY�FLjxT @@ -77,1882 +73,1827 @@ f �P��5��E~_�ĕ�,^��`(�Uu�ŧf��4��4:����E���':T�o��y,�������=v�f�4��U��$ۘ_BuS�k���M�6���0����g����]�t��ǝ�5.��<�坽�O �D�yi�{ȏ.u�#Y?����?9�[���ǻ����!�q����8��� t�y�_饍�i/�5�Lհ�SZc|�Qԟa4����_�r��sg[���`���6r�F�֓s��Q���{���qP�� ����͗Uh�-� ���"x,Мv����8�v�9KL�����]~�=n7�_~��/��6�qѼ�&�xZ/�����z���}���^嗰��Gx ��3_�����)�p�-�������O���/�*]��qQi��ee�����J��t��ڹ\~��n5��g�����h���^�T-��<���<,5��F�}�� �e��9�ѣ���?s�j��E_����z��9=4�=�?۬#k�9лі��lH��]#{}S����I�ƛun��^��ܷ�����^�b �y��B^xE��V��<��3g������X������''ڟ��˩}S*�C`oT`��_�=Z&�!���a(%OZ#g�d��!9L)q�l����=�w�颓]ٷ����#�dm�����v�0�p��Mn������퐝x��9��c��{�NR��'�����yuV����� �6Bz�l��2i�N,G�Y��5iYEl'�F\�ri�����qQ�K� ��O���n�Oy�� �v2�)BoC�ܬ�0��6�+����2d���WfK�CA`��)Ƴ&21&����熁1-����dSO�3�Ee�'~u������_֓+��+8���c���2w�ޭ:����v������IO�A!M���s�(U �_��v�����e�%�y����A`�K�R��rڭIm}M&�L'կ�VՔW�YY�ǯc��g�y�X��.����ɋy�Yy�p��P�G��m��cI�&�i{M*�5ÿl�uO��S6�7�s��*�x��UY�_V�����NڪO~�ٻ�u�����_��k�[汮�X��]��a���o��-����r�����x.��=�+wh 紧�SC�w���_D����c�6$�H�ȵ��� 6_O��*wc�) �"��`�{����o~��&b*����z*(fm�� �?Z��.$ꈤ:��z�'{X%�=��Z�#h�:�Ӷ�p8�_����?�߿��5����40���PM�!(�!f!3������<�dz�7Qu�yR�Z}��=� ��9$�XB��OS �튑e��d���!��"!�� �[�!�r��.�e� Α�CYT��pk���")c�:2�d�ack�v�;�'*��j�h���!Z=���FX� P�p��o l� �k���E�=r��o7�M5ޓ��cxTd-���$�\ \��um�6�B�B[{6wӺJ��2zI,��^N��A -��\VpN�86���v�����/q{�����+���ڛ�e���$����g�J�����P���7��P����ь${�ڕeɖ�`�*��I]EΡ�<�>о�"�]�M6��QX�d82��L|��E1O��F^T@�� -e<���{�W��A�Rsh1F'��SzM�R�g%�z��BO�T��>G8"���抩���8?�V������O�7�@�� �4�" �K��x�XPӐx����sܳ'���9Ɉ��/(6W� ߲l}��L=�=���B��OQ��1�4IIB�e���% ɪ~��$(��Wg�������s�N��l�0@ށ��" </�&��q�^p'�/���wR ֡�C�+��+k��vf�!�$�<DJ�������Xx -R.N��_.Mw>͖�-���7���8�8�����^�bu(��wa��w&������V���Į�������^5�]멩h�``�7!���d{m/���6kǶ�8�A�"���#f��Z� N���Ǿ�i�U�a��Q����'}c�[��l��o�� -�رB���q3����it��Po�aUL|���0a+h�>��S��ۯ����?ɀ^��Jg)D ƈG<D���E�Z��:��N[��bfaC�Z�RM�e�Ŋ�+CP���|���~����w?n����������˯3A��{�Ï��r�Н#��ɻ���ݞb��m|D ����{��pO7�0�};��"�Tk�8ı6���F4��Ĝ3vM1FZQ�7M����D�� "q����q,�p�!'ߺo��t���E��"�JЈi5��߂ƈ1s�<�A����O��X��U+i�f�3V��rN�����q���S��J���4�r -��"q�H��(�vyH��l�fyW�M3M�/��uf7�:����Ũ=ԋ����GN�ғ$�V�_@j �)�*���kLa92�ޱ�iS�_s -�Z9���J^6��v�"���*�a�{Qr�$�9l��+U����~V���L��#�/7�?��\F�$"�tB ]���X�! R���+̥��`.��K�ۭ3a��ѓI�2�ݗ;�$ D4��I�]�fg[�!w{7�����ǟVn ��B+������o��n��l���|���Cb;Յr9�R���_��gh���>3;�Ĺr���̺�z��/��Ɏ�>sg�WA��Q�B�a�Ʈh�[ ��������A-G݇���!߰l{�S6y�Gk%� -�F�{4��.()S��6�_'���q@2�"e��jݥ��4�J�� -�53���'`q�����ЖÝ�x��N�>���V��p�V���p�Ž�Q�x�b�d~�Ti���E����{cE��&�q�j��f�7��Ӝ����ʼ�7��c2��Wؠ�ayN o��*,�� -�6�Uw0Bқ ��&�6 �ǝ���/gg)�p6q�VX$��J�"���5��6�Ѥ�x��2�`2{@k��Z&�,̸�Iv��c����j���V�L�,�uuD�����n}�RF�ۛ�k���+�n��&�[�����-�Wy����ϟ��ݍ,;��ɋ�I{P>ou�|��AkUm>?�q��\_|W��esVd?5�5�_�\����=���<�v�j�XH��l�d��mf�m��s7�ATey�`�X�f����H�Q �Ȥ߄�Ȭ�<�i�-��}�hx���ni������:]{�,��^�w��VZ:�Sd]���5���a��=�����~enD�ݬ��,}ќYܗ�$���Ƚ�ަ�9�h�wX�������p�/CN)bc��!��J��q�M®������0ok.���~h��P*�ww�����{fP|��gN����[5۪w��f�9+4�3����3|�/g��ܗ7�3�^��0"���v�qB70�M+K"H�*�Py��l�?��k�����H��D�$e1� �hʠ�B��@Ɓ�L&"���4�ׯ�?/���������0�9@n7י}f�%�|;�ӎVLS���![�8[e�`�Xi�}=۲���,���0�6%4a8b�0c�_C����]S�oy"Cd���1M�� -���9�J�8d �Wpif��#��s�lj�zi�Dڼ²���)5�h*�4e�>t����$��L�fr��`X5=x����0��q��Yz4Z0`DI�,p�N�$U���5#�-'�5]���-n�w�a��sCع;3���K��㹡m�����1o���E��j+���Z���I���.Qm�����1M���7/y~���o̓7u�@깥����Y5�6��-z�;��(>��=����4?��G� -�X1p�D����\�� -!̉�^�ih4�#����r���Ac^�ղ�̀ë:�ڭ�p�� ��Z�q?��$Vd(q���@�+���n�D%I�� -S�ߡ���wj���|��i���!���������˟ʀ���&G���x[���o~|/*Oe���vJ<�&Vmgn��V��S��UMJܠ��,��|z����Tk{7�UR���-�n�N����*d~W��}��9���(��˜)d+���.��q������mQ\�i9��uK�\�h�[u�ˡ����6��й�_|m(z����iuNQ#*��ǝ��!N�?���OZq }�B=a�*�wU]G9Q�+暛:�T[�6Z2�N�4�cߏ���>��^ -���ٸP8����Z]�+8~�N��h -p�8�R&�LP�Ni���z�~���*Z�ڷ=�w�"�_��WՓ�8�@D�Cm��V���0��6�������W6�A/L(�8����ZCU��<��I������>^��U�y.?�H)��ѝ?eǍ�ԏ��~e�@؎�u]�<�k��_D^�gҫ1&,R��Kc@��b-'��Z��a��`uU�������'���m�Ȅ�hA^����}�e���"q:�Kn��x�4Ń�\D*�� -���3�p`{W�S���'E~8�)����A���w�(�;��y����� g�^��|����������Y���t����]ש��%n�o�i�<�Z� K<�=l�g�� ���KkfFBEFi(D1Q(�H�B�c�B'���!(s=_�钾�����N��m_ظ��j���^ӂ>�U��s �+���"��qĿ;!q,���D� "�B���,`4���/m�]�t;E&� �QЩҐڜ3Ǩ�U�۪��J�_%ᯒ���#%ݎh� ��$�U�D��!��\1z]���c��W�q�ָ+���1d�������#<�\�x���kr}�+_�Z�H�Τ�x|�D)�� V�O^�?��:�;i�<���"N=D�#�ya��)�\�;�Dd�1��~<�v4�:�3M�����ؤ߯2�w柍�c;E�PҐ#.��)|��`2���c<�ѕkr���4ޡ�U�����}�O�]�[U�wY����reU�˷e�V-ZkJs��o$�~"��$���1"SDH� �NB��r%v�_&r���"Yd��̝H������~XV�g�[m,6-�Z$ -p�:��.��bY�ݳ^�.Km�³��l<���I]*@�{ǘ{�Ñ��*L �@Q -��R�(V�ֱ �� =�����ǜZ�;4�c��|U�tp�]���H���2�N4am��̱ɫv���~�T�IcJyij: ��e�c���0�!����%�.�b_�ՒÃ@�.�z����̹��/��qo�"/�ĴQ=��R{F��lji�<��fP�6�� -�������mP�ɶ��Y����Y�l���r�l���U���w)t�7lZ��7Rg�o�|��[P�?���713�"u�Z(�>g��U�����pӺ����E�4��y(y�H2$�X��88�SOos��-����@�I�Do��".,�E�������$;�1���MEJ���@T@�a��^��0�)Ix��ءa�p\q:c:��Y�3Qޛ����8l���j�T�4���_�R�$�����^����H�Hx7�6X�$e"���_P#����l��ϟA䃞��N�*�ϟe�S��q�-�Pd�Ja?������L��g���z?��^mn���3-�Z+���cʪ�U�I������P�I���%�{��O��J�kA0���r�67�Z��ntK��l�8�jd���N�һ�(�L�ru�� �?��H�x�%(aҋ%WiOC�V�;����o� `R��ʓP�doO[}"�>I= -�u��(�a�LU1����OB>+���N?�g��!+/� �z��P��}���X���ʏ��ԛ��w�B��Z���Ӭ<�B[o�Y{�-?T��ND��D����4v�6��'�/�5�ZQ��4��R��Vg���'0�cg����-���1mk�{^;{��ɵa�����퇓h��U&�~�hʵ�W 3��(!a������� '�5 �����x{��Ի��G��a���1!�c�bOj��4�3�@�,�C��� ��'�7�A�o�G����ߝ�= wEn�L�B=."�s�pH��!�M9��*&�O}���WzC�M����� �gi�?O�?�����r�Vp*� HaE �`�e�:Uȉ�D���� �I{]8e<�fw�a �<L��(Ki��$N���b�H}�`��IX�d�2 N���LZ�}�T�*NB� -�P��hB�#m�'�Gi�d��'��*�yP}�A���&oe��2qs�`���G#��#�$��d���<��>,`�zZ�dĝ���i��֞9�=�n�}���#�h�Q�<�E�4�M��6�CMGD𝣽�ܚ~h�y�MĶTd�],�}~ߊ�r�����#�������k��:+�R�:��I�(�u��oL�����ű5Y�H�"(��Ť��@ Z�GTk!⪰� .0����J�������2�K衽�r�_�����3x(�p�ʆ7;��}����:��;t/#M����\��L}T��J�!8�cN���i�̸�o'���F��������Q ���/�!i[��Ľ����gӞ`[�֧�^�0Lg1��F�q�B�D�����ɂ�a �#�啹kHB-��)� ����ǡea��s�9��УZa -Bg�&*�c1UQ��+1����ȑ復�sH�<OHu�K?\��Ɏ}2���}�pW1�G�6�<�eC�b��#��$fi��z -�^��#���To~�����+��6+�"SSH�~�9��º�EiqMg��\�0���U�R"}�q��ڀ���;Vl3���#{��s�*���N`/1��.~*;+�� -DKM�O@<ڎ��C���Z���N�Ղ6�����m�O������RH�ʗ�J?�B�l��*� �z���~U�D`V�Z�gOL���Y#W��}+J�Kg[U.֊IG�x�^�"-[�W�� d�@/��+Cحs&��Э:Ѳ��j����gm`�2C� {o�����!Q0(�����}��o����R>�P�7K9��W��f���X�����u�x�U8�����m�`_e�P��h5�*Ax'������bcJ�~�Dg�:�D��SM�?O�=��? ��,+g��!�����7�b�j�f�W��Zθ�x�"�nf߯���B6�!��<w��W�ÍS�'�� ʘ)�VZE@�2FI�F��$�S?%W���>���Z��4�����moM.e�N��mk���%�tf�������帇n� -9L�9p����7�K�q��1�DK3�����Mlx�l���<��m)ϐ�z����zs���~,�ll��$�(N���L�0�$I&�Q .������ -!kpuadr�os��WZ��$� ���؊���قaq���u��&I�*H3���8 -�6V�% -�+��m����7��V��I��'����vig슜�r���oICId!�cXH�y&�E��?{��$�q� >�~EnϮ��!����ڤ�j � �%@�d�ciUIde�F�,3��}��5�<�퓤7���9~��fdUfT:v5`W��/���|'�����+��cX���V��k(ٳu���(e���6O}�V�I�B-�r��C'�YIJ4��_�����+}g~o���TR$���7������-��4�w�~��|���߈���ށ���Ui�5 ��cW��� `�=�����Hw���nR�+V^t���]f����^Q��4�}eL���������7���[_��z����������?�~��e����]��|�ß���7����V?�?�������KcE���A�(�_������$��Rɗ�����F����5@+��_?��������g��'���c�_Jh�O`�3���+�\�_�V?���E�v�u��˻O�^��,@ ��o����{iW����l ��x�L��+Tmo�~��^�^�Z�t����;��85+!�,,�V������ ���f&Xw��.Df� ��xs�g�K����C�A�ќp�T��a�a��u\N����ĩML$�;_�q�W�|\����w�����ޭ$8�ag`r�E[Uv��\f.�^y'b�a���k�בZ�:�s�ӽ^�@zS������VEbG__�^��!Y��a����tŷ�f�\���,ù�^m��n�ha�{��n���xK��K�_��ήn��v����+�L�V�]7 ��P����8�ş���`��*!�q[�笐?Y���p�Xr���Sz��-d��bo�q�E�j�+��#���ŝlVv��6�u��7����Z �� �b�GI�xA̝$�#'���p0�"B�O+�@wr�i����� -Ԣ�� -���S�j[�H�y��ŧ�L� _�N�r�V�1�l� IE�����¶�\V+�M�5�/܂����nZ��얷K��꙳{��"�e�檥��̋��M����?a���9Y�d�y�p����LxI��_���uV��r/���|�qgZY���h@�#��V�~X��5����������J��tb�$��ω}KIS�252���$�E� �M�m[�r�jn¥/�K֛�ak��a_����E�X��+��e���e��~yg�[����C���Pf��V�����-�/�F�5&����^���&�!��;�A����Kwg��Ld���3U��%��-z��֦���AI��U�X��U�Ha�zǰ��6�0�l�9mZ�6 ������v��`��[�g���:�/�� -ڙ%��~�V���'pMd�K�-W+zh@��\˷�[f�%���\^Y����p/��Z�L/�jHS�C�{}�������Z{]�9-k�zװ��21\>ҿ欺�K͚���C�:k�;�;�m��5g��a4�9��7�sf����[��~��� O�w�=�ץ��ބ����=��۵{�ܧ�֙�����*�W�{y�&�7��l*+�WC+U~�n,3���Ǔ�a��f-d�;�P�Sk�U�*MY���i�8� ->VR�k�D�!u���������dU��de��� -��V��(W6������*m�Г��ϰ�x��|�ޫ7�o���^�֥7���I4�Y9��p0x�� �yA��o)��A����4���7����[� �,{�e�ԅ��jW�B�z.6��Dص��-�[�D���c��Zcp�3M���u�@��u��Q������gq,w������R��R|)�A�M����g��3����%E�/T�UB�,x����k�X�e��\J��j��Buƽ�}f�d��$'�ԇ��ϙݩ�`�I�2�+�Je)I4�Yj�f����� $ ���B+�1��Z ��*)t�$u��X��͝�T���Nl��pp���Aх��RS�xF��]5N(��ͻr-T[�}�����U������8�ü��a��/W�O~�g7[��ݫ��+��]����}�Z���[q ��W��t_��VnJ*��k��/_����������X��K-ԧ����*������t��0�B�s2&S�C��!ߏ�8�!�R�4&G��:P=�b�J�fe('��������w�� ����Q���|[�7�H�-muH�`������_hI(vK[j��E6Vt'-�(�����n���2���Å���8"�����{�,�jT�i�0�4�O�l�Qd��Z�1Zj0�W���yu� -%�+0 �������Am����TE�VT\nxYm�նH)u�J��s/�!��[�<����R�jP��(!�/�[����%�s�#��ZdN�Y�[NI����\"�fXQ�=Ad�{ bK�;�%W��R�m�~7�.�^}�0^|k�^ʾ��)����]r/M��sB?J/��$r�G}��AΉ�D��YT�jK/4��eD����pX<� !�ghe -}R��ށ��g=��g�@1&� -�OW]�5�TH����])��3,)�.����n;K����5JmE�e���UW����h�QZ�-]�TT��{!���4���X�/��;��]�#g�+����V𭛕Gq�]�+���Sv}'��b��˕b��"�~��V�k4?__c?Xx�.`rX���\7 Vcf�b%�wjwm)6�d�x������&��t�>��X-_��mR�v����:t -͠����<p���ì�t��h�V�U�Ɲ�`g�\��[���^������ګ��U�R�]�2Uܣ���n�ݷ��8�~�q3��bP�!�Q��V��t6�fW��p��q�m7��V���s�Ԭ�lj��5e��3R�z���FmRި�zU�Os�@͵5ų KC�9Q&|�"w�EI -�����抴�5WZ��ڶ�V��&5��RsK��kg^Ѧ�w5��Ѧ��X+א�抒���_Y��x��J���R�歺��R��ڬ0/�*8�L���i.�'�>�'~�H�ͭ�TL��F5Ju���$��QjY���r�V�e�6u��.5��K�#��X(S��c1鲰��0�[�C������/��}���u��8:�G~|o�KuXoA|�di���;���F�1t>���_}R���P�6��T0��ٗ�-�Jy�v�|U)�Z�պ�mu��=k���PZ�P��ZE�I[�+��b_��cnD�\�9�5Enn��S� �W���S�������5iV�4qq�>_�u|sw'R��ak $ԝ@}ڱ -�j��81�=� "��-�h|W�z�b�v{t7W+�Ll��Vq�)�v��կ䓺��k���wq &���-�@������$���V�o�B�ѤX�����b_��f�j��H��<���YːQ����',��� �$}Hn���$mn;�[�����+�&�"�m��m���n8̟�|� R)n?Q�����O�>q���U��y���k�q�)�[̯����� ��+�3��6����t�3��T�Ag[n�W`I����fh�-��L5�ۏ��=&�'�D[��gc�7_�m�n�C�~߱ W���;GF�1��O�!�����eֹ�7�D�x���j��F���0�\� �X�yc�[kh�_�ja�S!��?}�*�^(3W0���cґt��Wj=������B�P�8&~�8mn��5�*֍'�|�G[�m7��n0ߓ�^-�]�̍�^� -e۾��v5M���uj��L��(�Mj|��X^�����}Vqy7�R0���'���nP��?�GQߓA������8x���������eƁT��_=� {��r���܋� q�4�/�r����'��2e4�#x�9��a�4�� r�}�ė��;[ ���7�f�i�9������n�{8n{�4U2/����-�|�Z��h��{N6'~���礷��C�1;�s{�o��)���ѳߵ˥�[O���3�l�|S1���$-�����+�(����[�;��K'���>�|0^� �2�fo��7�v��SK� 33�Xk��è/0VYA+3�0��a��F���N��/j%���~s77wk���dh���ڒ�O�J�!^yf�yH�ߨ��V�;lSD�-���}���]z�j���-���d��:H�oR=3� -�͝rat(h-�˱�:'xW<v��-���c��[��vo�ź+Ѕn]�y��*�ג�g�������K��}B�ɸ�}.O��{@�M��*U�|@�b�� &w��z���oד@�I0��j����į� -/�P���JS���G@+�2U���線����t��Ƈ�c5�� -�0X���L����f�a��עth�'��{U�Ξ'NrH�ӹح&����s�n�_U�3O#<�2)Hsb�wz�?�3������a��s���mA @3]��]<|[��u�d�o<��SF�v�hj�!T�Q�d&۪�������D����h��|2�T5������z��}V�Y��|���Tn��U-����B����Y�{� �����ܺOǟ9i˼r�lV~��ez�>��A�~�t�R�7�c�|o��*���Z~��K�;����w��� �O{�V �3����(�^�#)|*6M�mIПam�#�l{P��C�;�������o��Q�;��I�K����^� ����pH(���쥃��5�&�� �ۊ"��y[�<e��p����m�������Ef:�z�8�Կ��yz�c��w�n��sn��X�*f˖۪��n���������a - ÍH�/�Zb�HX��,�B�S%)��YP�C�U�̋}zSdR7q����#:�~g�PA�n*��55����B�(���XE�U([�a nD��W�Mց[�����Yl�|Wn��zR�����]яYe�Ix��n��|y�c�J�<Zp4_�E��H���.����p������K���C��A��.��p@op|�S���N�Y����K��z���z�~[�O��Ky����0�!��Z���Az�� Yo���\8�d����n(ǔ/a���d������*�%#&�>ق)3�/���o:��������H�Ae�L9��N�&J�N���w�XďwK82x���W�eϓn��Zc�oY����U�3��j���RM`r;�.�#b�M��� ->�����6 l$�� !����q�Ȩ"5.���)r9G�G�����$u��Y�JI�$w����r���&��RhLX�W�/�����A4��`��.t��E�]hL't����e �y��U��g�1�.���[y�P����ZT�R}�������O�4� -I�КB��U\�>�dU��Y�r�Ɯ����\Br�8S\�7�џ��w����=Bm�Mm��BFdQ#Ѹ�=D�����U��9���8R�ٌO�B��L����ɷ� �b�I)$'���g�����G~ޤ1���(���A�T���P���Ũ�x�f_벂Bj�K��H�R&��T�M�Dҩ%�y�)��v��&��x�:������O�:�oQFK�`����r=��B�rG��#,���-�sÕ-L~8"W���lo�</h���u�q��ƌ�\ -V�b=1��T�5]% -�����P�~kQ�r�n��j4��y�h�˹)���GƼ�mv���3/���}R����l2�x����n"ϧ���;^H�(�yD��㉷��j����Ш�C��� ^ꏓ7����v��t��5���v�Y���v�����n;�%��Q��&�ǂ��!�d��F��o���'t�� -��v�}� -}Z�`c�����C�O�g�`��u�? �M�y��,�ڼ��`�EnmNa.ά�`6a�$�v����l����fz;3�`qI� -V����W$\�;,��s���]5O�|:�U.�e< CT��e�B��Vۣ)���4 �� ԉ��aKᘲ<�4��e�N� �-�G���(2��>lޓ�:�.ʖ�^��Zɷ� �$N�x�(���!q=ŝ�� �����6�}廾���}��3 -]ۄܱl�4Tw<��t�Z�>`�:/�-�e -t%2�{�ͪ�����e՚��毷;V=�ŕ������TU=,��SW� -�i���X�~�o��76>x�]g#���L5��{��_>�?�5�Z�M��e����5���u[X��(�\�T_�<[��>�������o0QM���^��P��q&<=�c������Z��kn��]E�������'EX������b+�qI<��/[�����Ճ���j�@��"��|o,[G�F�;��H����yo�o��zh<oi���V ���l�\�ۤh8�>�W����A�zmz��xLW��_�_\Z��g�[Q�-3���dm�Ό�tO� -�f�t�/�QW`��)�����_i�qC�?���� 5���0��Ǎg~1����/�7��E����o���V"����������6�X!N��_��`�6�ʭ�z��������_�������O�����V�E����~���E����˿>����_|��A���������������ȌT朘�~����ּh|+����~��o?��[��w�??�Z��I�������V������$��3;��7����'&j���g� -��`N�Ƿ����~mDƭ����Oe��6��_˵R��o���A�����w����G >Ŧd�<��IiIs�m�@̋�8;2C����N��vv����^�V�ӛ]3�x+�T���h�r��#@#�;����Z��U#�ڦ��$|�*u-I��RA*���I�^�v�2j���B���\����f/y*`F�c��ʲO�bK�_������b6�.{�tB�6��N����y���-{��;J�fWO��c�8)^�c:�[nt��[��ɞo�R+�_��^���r�W�m� U;N������*�+�l��R�Z le[���F�ᄛ���A��)Ĥ������� �YkD���˿���uA�UFy����+QU��Q�}B�W���6�k�;�l�Y{�X����3�~<��=;Y��5F�Zg�G��S7;P����F �Z�$|�=�4�vIs�}y0T���·����-[��:#���פ?)�\�㋪�/��o�U��RG�e�be�2�0yotYu��o��-�廴|z�v�9"�:2��x�3�w�+jR6]��@벹FEs7}�͠���6�����ܬwK��|���Wα\+��\a�pܲ�*.*�q�W��s4V{��2o�w[_�lV���K�`��2\� �:iqe-x!,hq�cX��Y�U0IP��������O�A)Y��}��a��Z��{[��� �)�vF\o���Ȟ�J�� ϊJ���Ph��X"�ŋ��oR���h'�n�������RV!�L�%V�sn�º��~��1w&���-��B<�Q�~�*����4+���9�����,Ƨo�I7_�(����+�5��Mw*�5�����go��y�"`�X���$�8U��x��8�j�@�S���1y�>���m�����i7�5�N��ʳ�����u*yk��� ��ku�Tٍ�o��93�%s�5HܛW�� g~W٫����h�r�n_����:ϑu��ٗ&�:.������ ����]5��������Q~������o��������t�*\ӵ��o��҄vk��u�J���(�ZM���ضr������.ʉ9��Z�E�j㫂J�W*b��5?ݢg��) .>敷-0rbɪ6w~ˏJ��/RQ��\����bI͂p�!V����=��87�=ͪV�иد�עeŤ駹qq��4c�Q��(�Y�)�lz�*���<l�ۦ26;r�R�tȔ�]��+�ͻE���d֬|�º^���Nra�ɤ�V�Un���JN�ư���ކ6@PF^�`�U�g� -QA�R��oHT^_��r�e9���{imv&A���� -q�e֙M���Ɣ5���lsh��܌�OƿX�E����DD��@g?W2��\���s8:\�����_jq�ݛ��)E\QW����'��RS����B�iZ��߽Q�e� �H�}�`�0���i���:<0@>�`��_����B��/�&�I{��;�����t�����X���Q�� -G����ډ�����I�K�����`��H�0��F�6r:8)��>W}����CGlQo5h�^��B�'O-� )� �������s�:!M̖N��#I�8M��^��Q�Aꯌ�?�r{�)�n1#�ɶ� ]ƅ|M��=f5�j��d�B�J���j"��F�м���h���)#D��E��lE&�4]���yW��ʱ��u�c�1��p_XC�kD���-A�Z9��t* ���R3�J+�40n>��B��'E$LG��bd�ߋ��[w>^ڳ<�mV���b� -���Z]���EX9Vo\�|'�+���]�.�݀j$+bWr -�0��S;w8��P(e��v�������W�.�M���%�e'l��d�R�9�3Iߥ([��[�l�[Yd\���EmW�k�!=��dw�,���v�aDl��X����p���3Zҫʤ)��|����|T^�D�x8���xE�ͪLLBVb.� �o�4��R� -�&aThy��YF�{U��f "^_(�A�����n�_}�:r�DcY��B�&���S��1���T�+����^�X�h6�f*6�bc���������%� �2�X�y��P�����@��]��[���\�X��ۻ}倡���\�Hw��Y����<3<R�~��7�5 -�|c�p��C�K�?��$oU�:䍵���k�����$h&A�Mlho�`~�d@�b��!J>�&}���i]��?�����|.+�d%A�\|���ʟ���� x�wr+���$~&���OU�� -��^����H�� �@e���~E�Iz���ʣ����>^��{-PJ�I�(�jD�vC-��i,�`�ǟ��6la�\c�]���Չ�N�vb�/F�W�`��p�e�.�֪��N����?g�UH7��/�6+��/���X|��*@L*<x��j���ߙ��W*Q��Xj5��Uu;�YQi:���b�PX�R ����;��5�����B�����-{�\͌���^��,sBiX7�W���X���}�D5r����^9l�_���}�����d��_�e�,�弿�`�i����q=`d'{��,L�"TnPO�:������~t*{��g�h����Y�씬�&��)$i��Ru������JO�r���W��Mn��Fa��MW��l�*�s�Y�i�/��_��]�����D�2��<���v�i��W�^j�y�,�6����f!�� ��R�G� -�����T�>�5�=k�����Xz5���O˵ae�X��Z4���r�Rh��2��9��^����Y�-��tAʵ#���uՕP �[�P�Sk j�tT��$te�Q�-]���Up�(�2�K�k���z� -� m�e��{�Ӫ@���Ve�q�x��u��jU+��+Q~*O��,h��U��%��Z"�YK�R -�z�S���L+��|�H�s�"j�k�+��:��hU��m���/�W�tk% <��i*� -��]� �R��z+�F2���K��ң�Bbڦ�`��<�o�� -y�dq�P��G8u8IB��<.��]��K��51�;�-m+�0�Oh�Z][��6�C���M��T�è������|��4��d�4��Vߗa���:�k�U"(�u]��g�Wז�5��˧��)��'�t��d��(&N ���\����</�s��t�_���LC}��'H�@2�q/ -D�enn8���j��)�7`�3QK�}���l��{���b�I���NH���|jb�K��@��Ŷr�VWT3?���N�-��\x��)�}N2��P�Ҫ�I�L�e���bbC]d*&�°P~�6�}�p�~N���P��N~E��d�LBf�^.#db � -��FE}23&�<@��w���Ra�Ul�\��b�^~�h���9ɗ������DV�U��|��a����7ɜI�L��d�<%���@I�y|�A1� i�8�ę$N�q�d�I��TQ�Ē�I�zB���[z�$�&����GI�CO�*1�i�ֵ�B���w�6X����T��g�4L���M�쟾��lc�R��NР���ժ��bx��#���������Y�'RߙLZ���/�1a�0���קi�&��k�$��q�0-j��lH&`�V`C<�_m�5��ہkhzD��Yn�Z7�խ�)o�� �����~�� -C��ML�ߢ -eb�� rF����aŷ:�,�``�3u��` zZ,�2�x�u�!�[y�9mne`O�D'��~�1r -����74/�Z�F�����`�JW�d a���Ѽ�������O��$��s�,����h.S��O��vW?���A�� �����Y�?��~��B��� ��ć�&j�'E{M�?+1#� �V����� <�+6�<'ͦ6�:��@��b2l�\0�/��=�k5?wv�U[� m��Ak��+�z��Y5:�O~���Dy+AXb]��AUυ��_���W������� z!�<M�c���� -[�<���'V���;�� :��B����xɄ�{!$^9ݒOԂo��$06�@L"j����USԱ�t�k�H�����Gk��̒�v��d���r����]�7`�Qq�_���w�}�¬K&�Ig.�e����9*wf�������1���}���Dc$/4�%�hu�=�x��1wYq��"4+5).�� se+����.�1��ݮ^�^�µX�!ю�M%ϑ�C�Z��k�3t8������uˬ�U D��`�ev�〝_�!� _����T�)i�����nݠχ��}N"Z�0}'L�)=zJ��0}����0��;!�Nyb�S����;!�N���`�ˤ�O�W���; �I�L�˄�;�*���;ɜI�L�ɰ�}'D�I�Lg�8���;!�N���D�$҄�;!�N���M�nB�}��;i�MD� ��2���I8aN��&�I8aN�f�$|JL¯&LML��&�I8aN��/����* �b�^T�)�Z�����`c�#�1�`����_= -�=�&�`a��$\2��s�����������햿����f��������Gp#������:������b+R�_u'���Ӹ�p���K̩�{���0w�0˜(w]~�$L�؋�~,�d��WB&d��y�.-7S�1�져�3{c_�R�g�ra-$� -FNm� }]���+¶�Q���(>h�������D&��XP}�{�JӴ��4_(X���:`Pmm8A0����^���@շ����np b�DK�ҹ�5��(�����h�y�|��n3�N��;[�J�8���O4�Ǜ�rJ�8唷2qʟ���,2��zә���a���xR�^Zm`M�n�v��;P��;�}��N�%�!��5�6�-] � ͚���tv�=_k[���-�hk{R[��na[�]m���*�uW[���Ňj���M;(G�]m��[��ޗ�|cGJC�A Y��J�d�mñ,.�K�v�|���{G�w��R�.�#7�Aoe�X����i��w��X�X`�+y����������Lt�¯�8�Oc�tV�����K��͕�Z�7�+�M5T�X�9���Uۋ���"� ��4+Ԥ�I+�;+ֵ\�tvL����WG��fJ0�ìK��uC!Ǻ��v )�YwI�@b=8�n=|Z��8[��4c7�2��S���`�U���:<�����=t9�}���zVxy�'rH����y��C��՞��%����g��������j�f�$�I�\a99́�(�i���I��D�ù�:YQ��K��q�|#����SK����R ��v�0Q4�j��f�tf�| [7��85�֮\����/1���m�E/�l�9�rE*=:��h�S��*T���4�[���vt��Os�.��}���)_��^��-v���5�J@�d �~z�����E�?��:_,�xO�i[���m������P�6DB���fߕ��ƙ�8��7�7�Nps�p��0���Z��Oq���8�e�����p�k�T��y]�=�m��O|#��lCkbԁ63D]��E�W�B��ݺ�W5�߽�1}S���/"��)��S-��d��<~�O�7< �^;d;2�˩0^�7�(��2���_����UG�W{B�o�@�<�Ӵ����_��8��vXnʰ��˿���$�������Y�'�D���?g��іRF;S��3M���`�:9��n��r�/�z�����Q����1��ة�. OQf7-*���,y_�hy�21uJ����r�|��/�B�]jx������Fx�����ċt:��ڀY�1�ˤ�Ϫ��֗�Ft��Z;խ��V�&�,8�@�����##�H{:����t��'��m�81�A�GJ�(�U�Ot眨�����<��\�<c{�ώPFErBY�H~t \�� -�+���`����{䅅�<� ـ�K�2��*���c- ���h|>�1��-���*1Ί��8�S�I��Y=I�F�?c��J{{۪~��L�Z� q䃁P�$`I�x.��/��y 4Fz�-��N0y4'�}���^� p��c*GK;�Z�*�w�p�&��Iky�8i}F�^O��Hz ���yƝi˶�f�]���L� �4�+t �~�j�X�[����� )�n�JG{�zз��}=��:D�TT�O{~�Au�������#Y,QEaLVyh�bw�����{�ֺMu����C%��_E"�K��c�� -�x�&ϫm����.7���Ț�����.j5��QzJ����UV����������u��H��๎S�E�.�nb�#,������p{˷��ֈ�V��I� %�C����b�V�z��̖=���������?��7�ya������%�j~[�Zç�k-ғ�o|��e�r/h�{����7���ā�+i�$�.u����1ik%��^q�2b+��F����p�rL4����W��M� -��C4j�X����K{����7l�&��N~�I�17ru�l0!��ĵc�����5ۧ!)�T�(�3���;^'NB��Q�T��'/ݖDS�]#�ճ R�]��*�����F��k��J��r�C -T= -�3���n˼nɳ>�wPf�4�B˸����ؽ���SU�Tq��)��X���M��EZŏ�:y5b#O�{42���nI�8�M�m�� �6������n�F�8[K|vHkKT�Y����'7q����t8\����`?u�s���3o��VﻪL���GR�2m�Ҏ����uox�����a��z6ӳ�B\aC\y.�~ ��5XP�͖��/:��X��E�]�����Yh�g�q>�����y��R�ρ�ߟ����d��멲�"�*5 -���_���{�����&�n�m��361�s2���㡥ϰ��չVHaG8�@�������.4�!�k^�3�ηR��I�8y9y��qY�� Y��XY��X�s���F:�?�ݙ�u˖;��b���b+ށqe�Y��_�ӽ5Qt�H� W���U;$��8G���U�J���Y9���zGJgApA�~�ۂ����eB"�.Y�������TP�������25T�x���� }]M}�<SK%�$*�fo�t�T�eRd��Wv,���it�"GS�?��:O�r�5}`vr$ܧ�눘���&�IB�u�8����n�x�N���g'��]�ǯ���Ld����{�̸��?5!���,�;��l�-�=�~Rq��o�v��iٚ+�Z�����֖�� �|9�����v��/OB��-H�d�=���+��"Ez�&d �ay��sT{���ڸ��(x�W�v�����P:�Δ�2�j��!�yƒ�)bi��T����8i�y�l-4�\}��0�>7ya�5T^�}��Gf��i���8 ��[w�A�Ю6\�d�;�R�����A��sc�f\'����G&8q�����;ɱ�ٯ#�ѡ}9�0��k����.�=rb{ۛ�އ��|��lu�EST�E�2�B%�58�}�4�[}����갆2_ٺ�n������O,xb�~���C�cD^d���� W�Z�mG=��f�D�Pǘ��]��M���&n;qۉ�N����냁Te6s�H��R�Ӻ��v�̧Ʀ��:���.�2Y�}{Z�.����Vl�i�I��AiQc����_�ȕ.��r�^��O3X�����B':��Gd0�(��rg���r��oKSO��O��v����?.�O�9��f[����U.,J�H\12����{�����f�F6OjV`'`t���}�����yB3�"U�d+�G6���U\�T�>���zeQ�%��������c�o�by�~�ψ������户?�V�^F��8������[k�")�L�/�����M��DM d�D��`S�U<�6E��Vk�T���S����<�w���^!�hRԜ�`�b�N�%zl_�UOiEn��?����ƈ�����͂\�1���S���N�l�3P���3�,γ1�{�b4f�'F��1�J��p3t�q����s\�5L%U��ܥ������bO��'<�'�����j*�-Zұ�O��\���s������=s-���=�ar���B�����e���?�a�;��kbn�b�g7�u]~v}���wϮ��m5[/��n�[�ٙQ�F���B��r.|�@���'gEbB֕zmR�;Z��4��.��u8�!���9k�c��4w���:�ZƖk���-?�c�{8��v�YûFǭ1G�F�[��Դ@%�+�b��?��M�6�>� �;�P�ઠ�F��f]˧�O�|�:8��S�ڞ��E��m��纉�7<%�MIo/(魫�%9Mgq�q�Ӱ�٦�8l�T[�.S,kBv���ķ^�a ����u8��<�xT����K�g]��g��&V5���U�V5zM��TwYT,ˢfŀ&�41��9MEO�EO'�5����Y��ʜ�g��]�^0R��ܲ@����� -g�f5<5��Ǽ��(1L��S�#!:a�pK X����|�b"��/��&����vR��>�&J!ǀ����?�iVl�UY�L�53}�^w�j+��rc��+*���y�~˳��A��(IRt�� �{e� �->j��T� -Ym�)t�&�댑"c��a���%�(�s77�X=�S0� -$��[|�^�������b�q;!5���Tp"�<ٜ$k�\5i�^�.�E�*NR������� -�^S���b�Yf~T��%îe�"�~���<�e]��.��V�+ �t7��)C2;>U��2{�)��3���V<d/"5�9'�]��#��hw�XGq-W�-�+VD)����d���'}���c,ͽ��ʀ���܊�,�w����p�iZ���_�7���}�3�{-ц��c 1��o����+���B;3W�St��¬�P ��Y��)sR���h�D�u��i�4'"{t�=��aX�|y]�ǰ��f+����I,@�ٳ�j��+�z��������SmI���!,�Y���k��~�ѕc�bi��4̓!����E6�of�1�ߔ��������[��^a=e��ՔyRE9^��&?�V`$t�x�t�h�ݙ����OL��;������s�sG.�\��,�Ŀ�$� <���n�~B�����H4�M�AzF8�g�Tԋ�ٌ�E� -�S�9�c -9�D����Y"�z���f���� 5n�kYUf��Hˣ�,�^��B��d���je�;�ej��؏���o˽-��V�.?J��T�qh�6�cDhߎR��*� ��f��@AoP���M�&�Q��h�Uu�f��kL ��PT'��UK��E�C���>���O_��hW��Ѭ-�����u��Y�H������ ��mH�O��^j;쏷�)���Êou�D �����4�,D%U,-h!�Ň���s�YkX�g�������5:��yE�c� �ځR���&���ԁsゔ 5�D!� ��OX��B ��6���_�OC�={���Z�s�8 ڟZ:�� �l�ډKZ{����ڸZ��cu(����@��o��˷_��wo���^}��Ar����M����x�Z��R��"r���!��na��È%'yc�G�(V֬��dU���)BWP O��pr�=�Eu��{I �v�~�F�$�S� D��`.u'�A����;E�k`)wX�bhu��6�-$NO8;�HP���<�<��������:jrqz���a7�?%�ʧ�~�-��<�`�E�)�/���%�G�*/=�;����$:&� ���"� �(�j�N[����E�'u�z��������7����#X�;^N\'�n��Y@� �x���3����쀄Bz��y�dpuˑ -�G��W�Q��֥���U��ϒ�����L���`%�Ϫ���А����y���閳=��=��ߙg���Fn��{1�H���u$��~2Z'��06�ю�������akJ���5kHC�L��a��Nlmbk[{�-c�/h��G4��%�D}��e <�o6|�K��<�Mm�'8���m6&wov��f�^��ǃ�������ڿ��Mi�Oښu�a�����H�R������6���꣬#R�j�I�����`#p5�Qd}Z��a��@FBj����.�d,_�QA����W-�)>�yW:��[��������L���Ă08S�ה�5%M�_Sr�K�}. ;9U�V/��`Z��u��}�:������v@Դ���'>Z����c�T�jԪ���>4E�-N�N�vW�����r-*�� -7�ⶸ�)��:(ȕ��rX>�wl��άFJ��w�0�[�EJW��?>�F_����͝�OL��-��=,���Zr�w��z[�؝!#����Λzj��ᩧnk���d8��`ɗ����\�b�"���:�ٟg�~1�U�1G �G��huW<J5�@}��5����myٍJ믮�m����F�"�h�$��m&���ˣ�rx6y-���(���Yʪ.�y�gh���u�� -P�D��M|��7��-8|o`�{&<�q�(f�Gi��P�Dy27`~�_�7��~ �H����^����w��jd�� ��f�J�|�[�^;^�����n��ئh���Y*��_�g{�S}5�>j��B�{��l�)`�� Ђ��D��,V����S�a�[��PVd(������#Q'ᆱ��~���/��1�i�?k�+�|�&)Ȗ+�P�S'��� e��J&�*���������n�Q�"�`Dg�S1W��+ýD_���m�V�/d٢ڦ�Q��>�Bh2 -�A���b7e�L�9SvΔ���9���3L/�sF��:�\N(��ڄ���PԐ���[[�gE��4#��2�F��n�YUu��x���P�����fm�jI���p��-ڌ�:�Y}Wj�L�����Ei?��7jB��P��.oB��:��lt�|�����R�������EFу�����_۹�)�T -U�_%���{ ��L�b�����YY��܋#'x�xM�أ��a��8�H�?:k���=�_1��|�����v -�?0�g@j3�}ӄ����/��^X�c4z�qw�"�a�}i�9@�n����{2u}���ì�.���~Ԍ'�����L��3�:|�UO8,��k�!Ĝ9�"�Y��4���+�V�6`�m��D3�(+Ð�h�[�]��&h� Z�E@+�M�����*L���Q�ޢ��h�<����U+���j�Z�S�Ժ?��k߳�ԥ��]����՞/� -� n�F��[�b�s?0Wds��jl7t�/,^Y���� ��xf\�J"�n����㣗>3��q4�����E� �l��C?�l�nps�ܣ����.�n��v������!Y-w7��p��1}S�yߨ篑�9�?G�脧~'�9��7<����<���1T/��v- ���9���ti���_W�N6�d�L6ʋ�Q�����;�������Q�VM�ժ�"��Y{=��˿���$�������Y�'�D|grb�DžK��گ��V_�5"l��x��h���*6R/:"EG�#������K�0�a���a9/]�6�%Q«���Qu�O�&�5|�)փ���+�U�"GpTۺ��&|����ny��y�ɪl�+Nt���F:��Y��(l*��͐�ep!��x�O@�;[~-yL~m�H~t�m\����"鶕�}~I�d`�-���V��l�ѥx��2/���V�'��{��hya��b�;e�R-�V�\LL-0�_Ck��r�8VW5O�F�ى}�`��Y�M�b[կ��iUS�ɲ�),K)>@]�o�- i]ߌ���;=�0���L�y-D'��e� ��9���D����H��Gs��w��Jj0T/���K���f�� -���T0��~�����Q�'3��a[�r|�f1-�;;��-���|85��z�S�W�l:�O~���Dy+Q^y��`�W���.w�w�-w �[��fjM|���^���_��dp�-`�o�S$���'X�l��+��_�A�r��-%����+[V����z] O�b�S�1X�݊���ak��t4 ���ҁ�r�1Zn�g<D���6D� ��w�m��rVX�W�2?�E��Ü>JO��Q��j�5�C��=�ָ��iU<�q��B�:���x1�o(y���IwK�ZE/9V�9�!Jp��(g�i�� 0ⱻ�L�x��~g�x����m��O|]�'+���j��'R�|Bq� ��ކ��D��G-�D3��w]��-v�l�v�<���Sxe�%����&袎�2j��l0!��ĵc�����E+�e��bwb�� -�P0 w"���G�ĉ�u�0��, ���Ī�nC�u�=���o�����n�Iվۤj���$P]_��-�7����v�I�Z��Q��Z�}x�5�ԯG���Q�tG�d�[Z1���-75�亶�t7���lH��T�uRe������pg�����)={J�~�ٵ���H��gdg�y�������&�6q�Ux2���;���.����]�Nxb}�X߇T����&��X�;�F�{��n4+�[Xh!u*�t�]5^��X�>S����0V]��g��R�g~����V'���*�$�z����h0�u��-s��i����a �����F����!�BW�����%W�-�Mf̂_o:r0���?lm�X���a�x[����[* 14ڄh��ڃ����d����x ������щ�N�w��œR��� B�v0`|��S�����y'��uF��,;1Z>��M<w�"���̔]��p�ou���ͣ�)�~[�K�h��� ���O�ѹ?yly����#! ��:�Ɣu�� -�Ї�P������i����J��3Oh)Ud4?)xf Y ���,OY�J)��/����L�րמ(�Tѝ���(��/��1e��83�a�� -��3{�Z�����%Ū_*F_�TA�\��Y��1�> ި��@`�J�Ш��(��XQ�L] `�l��F]�iJt��#�C�y -�^�.����o?}Պt��aj$Up���m���"���^�F��f����d�Vg�ol��8�T����}2�/��G"�ǯ���m�3�6����z���9 -��S��2��l��`��IN�q��^rZl��04X�X�v(SL�;����%��v����>(ރv�Z�Ev�[�M�UV���nc*�N�'���b%ZO^T*ş��0{ Zx N���=���}��ܤ��S���/�A�Y��[H���y���Q'����ɷ�� -u��c�Ztb{ �Qs�Aun��tv���g���8t�4!�s�R3xf-s&m��J��Ŗ�kw�ͷ�~ل0���VlU̮iR��W7���?Ԩke��-��z<�l�t�wbZ`O<�4���1�������N����{At�N<��_O�k�T�pu�h��U)\�W���mo�f/?mA����]����s��~�(��܆�^L{5O�e �Wi^&h���v��_ -����p�$�����c@�u���K�ছ�[�Jd��f�m���j��`�l����to�S�AO��M��< /Ow��x��r��Zx�!��$����6 pR�3�����_���w��T\2 �:1�Ѓ��. [k�ؑ�.х+�ASm�,�*�L����72g� ��Ù�O����� �<gWIJlG�t}�<4X�*�ﵲ�uw~�_rV��^3n���#���6�,o����4]?��b�qs�EK1G�<����>��6�A�a<K8s2�e�'�؉#/tX@ݜ��sj6H��\��oA���y�@���u�~n�l�P.J�ߊ6#�݂�Jlxs�7Q�5�������3�U�7��^�&�9�7��g��>�����Z�s;R��#-:����V�����VY���p*><K�!z�4��T -�� �ډ�N�C�z/�wͬۦ�ia�#e��Z?����O_|6�CO,i~xQ�d1�B.5��T�fL����ۥx��ı8[G���ħ&>5����8�z٭��5}�#.�÷j�O�Q�+��',��UM��e�T�FʵT�˃�S���8T����>1uƛ��ĝ^"��\�ԗ��ެ�nvR��<{Ȇ��ϋ��a�Ly�[�H��`~W}h,��HТ:`��7�K�>Re}��"_OC8��r����]�_��O�w�lv��#."H���sa�~�̸%�rK2�[��[�h�|�D��kk2�DG�P�Ѳ=���1���~8釓~�SH�6!m��S���f���_l���T��͛�����4O������S�$&���nGvF8�fC�hd�zp�i �9@��oGu��� �o�f> -����0���96��i�3��iB1�|���t1J��S��/���W�J:p P��h�G?1�������K��;;IJ�S��.A��������գ��4��d�i�H��Ӂ9�\_s0T�n.��R��Ћ�W.Vj��A�d�|�H:�T�xQ�����>2'����[�A-������ϝ�/�vs� �S`���X8ԗ�T|���~�4��ê���T+٪��e��扱����/���T��ٯ�Չmo\��?88��8�j�g���[��"[n_U�N�S�������g���A��RS�z�1������ј�?g��������t�& -�aU���Q:(��J�SJ��8��$�#N��&ކ<T|��` r�o�T0B�P�������l=y� =�N�����G.�ԉ[3 ����g�f��,v��xWgyU���%:�\ó�_���������:q�z������@x���������S�_��\�չFi�[U]� -N��j�k�ya~���\��܀��_����bnsŞ���-�������\�|��j�l��Q/d��7�w����a��g`��A#�B�6kyM"-����aG�J�̍1��una�̵�|����-/o7�&߮N��B{�?Y��bCb�[/(VM���5C��8B�ې4c�[�/�:kP�*ef���p�*A?�Ԁ�T��v�M1G�~�����g���l������^�r�x����5KvΕz1U^�6[h��wt��-����۸�:9g^f��U.μ�u�o2�7/e�e>μT��E���r�̫(��M��R��V�ȼL��̑��2�D���z3�T>j�#�z�)R�)n������0cdn���[sF�嶖�Q{j�ܑy�<2W�ym���2���e��J"�7�H�e���U1�X�B��r��U���Rۭg���FS7���=�� *�an��ky�o:N�+����]���6�j�C��ۻ��{�w�� s����=5s���쇹vΛ�s˫=�e@���N�V2�ZD��17�s��г��a�ȋ;��tN���,B��_LJ�B��N�QR|EQ��Ok@��y�"@�*_�oy�"�>Ԧ���ߗC2$�)��o?-$��̹�@�*�H!��,�����%����<��5���lج� -gR�������:�r�B��o�YT.?�*j/y��^��0���S�BZ��i��R;*[Ȕm^W��sܛwF��jA%�7���V� Z�������^��cm�G�c��|��u�Xč�պ}1P�#���c�d�w�����b�y�1ݷ�U�!��ZѸen�k��N���*U�����J+�WjY��l�h5�V�_)�[V� �V~4aҹ��8�E��vk�y5T]�����:P��R[@_�H�D�i��b)��vU�,#�s;����>��&�=/��s�D�r�Hc�[7I��vh�ԺVj��oYX���s;�=���B��ꪆUQ��N2�x���ݼ�x�b|�H�V�"&�g��[52� ���lj�W��x���}n��U"*=�����m=@7��\�Q�������W����rn�/��9���in-\����rb�{��s��,��ퟜk�T���&쒸 �^��z������r4���n&��f��͐��Zg�������^�]iPuﭾAͶ�� ����^o����]�?-j��u6��f�Z��p�v�q����S?r<!<�'���<�D���������h2�Y�(I�3+O����p��Z:�q�w��}�����8ܫ�3.����0��Y�3[P��s�]�'��pI��O���>y�'o�Y��ĝ����.O�v�K}���Ke�_�)n'��}s���T\:n���-\��#ș�����ͦz�C�mk���-�݈���\f�a�U���"-�� -��T��r�F0���d��s���ҁ��h�8���N�)q|�'w�@N�!�]{DTt��"�bY��k���/������f����JIѿ�����Ȍ��50�����3��@���솃%�XF3����hW�F;�s�PأFK -~�S�zL_���G�"�� S���FN���IS��2s��o^���V��-�{Z�FyrW%�5��X[{N1Li%�?{?~N��8��ƛئw�O1�j>���2��ǣn�xn�����-\7z���&����_?~�A�}o����g|��;T��JPM�����k$��\_���\_=:��6�7�f�y%v���\�+�_��"��K���d�����I�A?+�ٛW��QQ��2��� +��\VpN�86���v�����/q{�����+���ڛ�e���$�����]��vQ���+]r�6үB͆���� +@]��cG3���jW�%[v0���Ț&Yt9�B��@�b�PwU7�$�Ga͏�u��D"3�e&��e�2��dj�=۫�g� U�9����)�&^)ѳ�r�ch��L*�}�#�u{Rs�T_�{v��T+�E�O��'� m��sXb� �ĈF<B,(�iH<N �I�9��gp���dDl���ÆoY�>N^��Vz��I�(N�a���$��2����dU?�r��頋��� ���W��k'�T6g ����A����E���g/���y��;)�Pա�܇� QՕ��k;3�a��"��JB�k���h,��)�'Z�/��;�fˎۖxu����p}{�z`x�u�:�hԻ�O��;��V~��u���ȋAbW`��\���l����T4[00��kp��m�����Y@��c�o� �P +�z��3�G�p�'R��c_�4�*ΰ���(���֓�1�ݭ\l6���_e�\�X��`踙z�]���J����*&>��{��4vv��)s���Wp����d@/��e���c�#"兂HƉ"W�\d�@U�-�h1��!O-n�&�2�b�ʕ!(��Wo�z��w?m�����{Â����o�wd��י ܽ����w�a�Α�����G�nO��� >"��L��=�U��g����E��e��?m�X�DY#�KAb����#��ћ����|��l�8��}�8r8ΐ��oݷ_F�]�?��cy�K%hĴ��oAcĘ9 �}� ��U��'ya,D𪌕�B�����F9�}����8�ǩ܉L%Q�BQi9��D�8@$Ra�h�<$�B6Z����ۦ��ۗ��:��X��xG��b���|]p +�#�P�I�X+���/ 5������^o�5����?����)��9�z�i� A%/�J`�TJ�c� +�0��(�@ +��6 +FǕ���|?+wJdi�� s��闛˟?n.#Ih:��.p�xl����C���R�o0���%��֙�b���$W�̍��a�" ��Ʈr��������n��g��O+�Z��V�Sۿ�\�7WV�SW6��Jh���~�!���B�^�^W�/]�3�U�|���y�\9�BYf�xN�����d�����w�� N�(�C!�icW4�\_Z�r���������G{��oX�=�)�<�Ks��=�f����z������8 �t�2QG���R_u�U%�L�ꚙ��U��8Nui�zh���Z<�`'Fpdi�zU8i���t8{��^˨f<}1t2�y���D���"W]Ľ���X�8i�hy�F3����iN_�rae^����1Q�+l�Ȱ<���G�rM�I�;!��br�m���N��y�3���r8���D+,�`b�\�FC��|J�rΎh�V�ao��?0�=�5�e-�zf\�$;@�f�ch��u�l��?�oº:��s��wE�F��>)#����|��S�zZ�-� a{��������w������F�[���Ҥ=(���^>�ܠ��6�Ѹ�b�/�+`�9+������l�o�}� +{�A�w�f5W,$�P�N�`�63����� *�2�< `�w����FmG$Ш\dR�o�zd��{�ٴɖp�p4�c�MB�4���xpa�.�=[��B��;ga+-��)��_��t��[؞������27��nV�x��h�,��\��f��boSϜg 4�;��gb���c��З!�1�1Dy�S`�z��8�&aW����vs�7�5IVt?4�~(��Ȼ;�xy�=3(�����3�]��٭�mջ�w3ʜ�˙�@f��Η�]^����{�Uc�~x�Q��8!�馕%$w�n�<�M�ߟo�5��y~{$qy�T��y4ePu!E~ �@R&�^�K��Wޟ�F�kl�r�B_�� ����>3�z���i�+���f����Z��2U�B��ž�m��li��X G���0�?h���/�!j��宩<�!�Rb��&IB|��Q%]��+�43��rT��Q�5C�4r"m^a���Ȕ�A4g�2z�:�����]i�a3��E0��<kx`n�`�`�, =�-0� �$P� 8d�S����s���暮s�s��7�;�0o���!�ܝ��]�%������ж�R_�Ø��k~�"�c���U�����$��z������ʃX͘&�v���<?�g��7�ɛ�a ���z�l��X�������[�I����|��G��xW�q� +8@��T�A.AD���O� ��44�d�ZQ9���֠1/�j��f��U[��I ��b�J-�jx+2�8p�k ˕���z7}��$_k�����\c��; ��_����4|��E��DG���Oe���~���~Y�-���7?���2��s;%�o��37�p+��)���&�n�n�nJg���z�Y������*�OՇ��e7x��r�i2����{���V��}�e��|�`x����Mֶ(����亥_.j�yTӭ:��P||WdV|���/�6=��[ȴ:������N�����@\�'���>�M��0�� �̻*��������s�M�t�-�e-V'�_���G�v�Z_��w/Vl�l\(��MًW�.��q�Gu4��\) z&�s�����_�� +ҏv�I�۞�;^ׯ��ʫ�Iw�a ���6�~��h��kv��h��k��+à���?�yz�_l�����X�ߤ��or�U���*�<�N���X��Ο��FM���a�2y lGܺ�wF�õ��/"/��3����b�1 + IU���D-p̰Vz��*R���nk�����TضGdBF� �}�z�>���Q�8�%7�U<|����K."�H���}�k8����)[�ɉ��"?�n�k���ȠW���G��ټ��e�FÆ��K��t��madwscj`��,��]:G��[ɮ�����7÷�4IL-ֆ%�6�����~¥5 +� +#����4��(�x$E!�1a��|U����/�tI_U�i�Y'���/l\�G5�^��iA�*����Կz}I�8�ߝ�8�J�����̈́ +K!RZb0��w]嗶�B��"���(�TiHmΙcT*�m��_%ᯒ�WI� K�nG4J u�SLj�D"F�{�s���G���kuƫԸ�Fkܕw �����le�� +O��Y.^�jj�5��̕�j-xT�VgRV<>P����O��'�ğ`Lǝ4RS�C����<�0�p��pD�ʝt"�Ҙ��M?D;�W�Ù���rzSol��W��;���wDQ���"q(i���>AB0��Q�1���5�G����P��[�|R�>�'ͮ��*ʻ�`�|F9������2{���5�9�?�7�`?�i�XE��^��)"$�x'�U���/9����,�{v�N�{�A�q|?,��3십6�A-8�k��v�k f�,���Y�Q���J��KT6����.�ӌ�c̽����`h&��L�(�`h�R+M�X��g�\zW^�cN-��۱�Dv���_:��Q�O�X��a�m'����������U���t��*�$�1��45�l�2��1���R����u����� �V�/��j��A s�Z�R�P�\��vɸ�r�Mbڨ�Gg����l�j6�4�Ph3�~�MR��~�v�� (�d�ls�,��\جo6B�V9]��f�*fo���6-������7j�Q�-���AΛ�M��Y-[��V���D^��\�i��Z��"��Y���� + ��q$s��n�ĩ��9HԖzJ�z��$A�7B���izr���q���W�Ʀ"%��| *��0N�}/D^��$<����O�а� 8��8�1��,��(���mrk� ��t5F�]x��/\)dzg��R����P�r$m$��k,��2��~q�/�� ��@����� �A��f�?j����2��P�8��r(2��0��?����g�&��3�Li���u�67�T��R�����p�1e��*�$JP�`OL(F��ZY��=AߧWF��õ �st\c�^�f-TV7����j6GW5�_t�x�K�w��r�z��v�:�|�s��B����z$A<��0�Œ�4��!_+�~�˷��0� �m�I(X����>J������cǰi�*��da��'!���Q h��3{���քk��I�v�>d�y,N�q��Zp�M��;\��}-T��iVm�����=���{N'"�k"�[zTJ;��_ʓЗ ��S��łC�Xy)�T���O���|�����~�����=������ڰ[p�d���I4��*�`�G4�ڈ�+��i��0�|����i���N��o�]u����X����#��}�������D�'5�b����D�b�ġJT��ړ�� ��ߣ_u� �������"�y&N���9C8��Əæ�N�ħ>yy�+�! �o���ф�峴П'G�wGs�D��h+8�A +��"�Z0F�2g�*���I"�SR�.�2w�;�0�Z�Pw��4�r���JK1O��H0 +�$�|�G�'Q����K&��>@*R'!MJ(�i4 ���ţ4Q2R��i���?�>� ��wj��2wh��9]0���� +� �Lh�A�Zy +�TH0O=-O2�NZv��hkϜ�d�žOx�N4ը`��"Ss������s �"����\nM?4h�<�&b[*2�.��>�o�T�E]�O�������w�Rw��L�KsxȤ\��Z�7&�RV�u���ؚ,i��C��bR@d -�����qUXqGw�wC�G�l����y�%��^J9ۯ��e����Q�ReÛZǾ�Q�Mk{�����&�}J.�@�>���?e�ǐ +�1'zo��hf����TRL#r���������F�~�pӐ��-��X�����ųiO��P�� �/L���\l +�ĸI!Z"�Z +�� �d�Ȱ�����5$����R����в0��Gq�Q�0!���@rر��(L����b�y��r���9�V�'��ѥ.��d�>�~�>P���#_NӲ!d1���c�4TT=�p����q �{�7?[����ł|��y��)$G� +�˜Zea]凢�����H��^�R�u��*}��>�8dzm@���+��EL��� +�ݹIEnc'���I?����� ��&�' �mGH����D-S|h'�jA�lzx���6�|��Y�N)�Y�������u���]�}�x���T��^"0�u�dz'&KӉ���+���ɥ��*kŤ#v<h/h����+�w�O�A 땡?��9�u z�V�hYXx�]�`Y���60�] ��!Ԇ�7�D����ِ(��KOO�>�YUb)�]�ś��Jū�y�S��?�B[E��ͺU<�*W������F��2y (�f��m� ��j~d�C���n�1�f?^�3�sB�N��&韃������l��3���o�av�l1k5r3����a-g\���o��7��Wl{i!���z d +���ī���)���e̔ +�T+�"�p�$��RJũ��+@U]G�w-cb��u~��ʶ�&�2D'WN��5r��o:�j�qs�\�r�C 7G���8I�K���ѥ�8p��T���WJ���&6<j���f�����gHo�g�my�9N�|?J66�~�q�HxZw�AX��$�X�(gd���j` +��5��02�Է9��+-K@�ka SlE���l������:nr�$H$����awL+ �����P�6�����{+���$Gӓr�ng��3vENo9�O�ͷ��$2���1,��<ߏ"Aℇ���������wk����M�"�g�@����qmRX���[��d�ɱ4���$�2�yA�I��~Ǿ��l��I��O�K��Dx\3�*3� +��+����~���k/����a�J�l]�*�J�n ��S��8a�PK���� s�,��,��r�-�Jߙ������E*��8���vw5�vs�* ��_�1_n��7b+.B�w��!jU�| H"���U�w6jOe=�k0.�ݮ�<!T��]�qyW���`$z�WT;5Mq_;��z~�������������^�%����3|�Ͽ��y�n��{��9_����z��Í�?g�՟ŏ��|w������X���tu�-J������k��*���T���|���Q����e ��/��Ͼ���������/���������;�� +4�엯Տ�|�nAl��|b�����:P�~��/g��^�U�w|7[��9�>���� +Uۛ�_�������1]����N�JȆ<�=��b1p�3p����� ���;���Ym��<ޜ�������)�{�y4'4*webw�����<'!5qjӆ�I���k\�U)W&p��/~�w+ l���f��A���<�����Wމ�n�����ZG�u�V������t��:)��T�n惦�U����W�ףwH�rw�z5�8]���Y=W��>�p��W�����6Z�㞦���0�R����?����e���6��J=S���{W� ��0���(�Ny�"�#�J�z��9+��C���;\ ������Y���۾F�y����J����nq'��]�M�@�a� 8�a�V��4����Q�9^s' �ȉ�$!������%Н\v�4~�l�����Bh:��Ǭ�־p�-iG�i5�8a���\��p�l�!HR��`6������m���)����iS}����9&0f��j*���f�z��������k��j��?�czS�����D��"fNF �i9\`A�ǽ4^D���-bi�U�����6��FܙVV��?����x���Vb}��|��q>��氽��1�fAI���sb��R�T�L�̧$#I�Br�,�j�f�֬\���p�K����c�Zss�W��,p!ymQ4�,�J��@٢hnY�B���_�Y�V��(�P9/�=�Y�����ò���}���˲�h���/,xF�.j��zH���dPk'=��ݙ}<�r��LՇ}<�`Im�f�^����j��AoPҥeU@23�w+RAد�1l��C��08[uN�V�MB��-�5��l�5���V��Y�����,��vf�a�߬��x� \���w�� +����-��-��j�y���)�W�x;�0�k�V9�K�����^_�!8&%��^WoN�Z��5l��L����9����R��h�吢�Z��N��d[~=C��w n���M�Y$a�V��߭�?�S�j�u���7a��B{@uO��v��-�)�u&s1v���� +�U�^�����;+������J�ߵˌ��p��qu�Y���,����kU�JSVa�h�,������5��@H��;|��~�4�:Y6C/YYF� ��?�p ��M����-�J[4�$m�3� �&5_��� �[7y�װu��f���E�k��jVNt9^�7�c^�j�[ʫ~P��g�$M�7��e*��g7˞v0u�c��ڕ�C�Ф���c4v�-6BF���A?��s0;�Xr���L��Ʀw�8�}c�+b���&~u�Y�����<:š���_�gPrS�C�o�s���#rIQ����n�P7^g>���&|� �RA����P�q�f��!Y{/�I%���-�sfw�:�mҥ��J>�RYJ�i�ڿY}��(d�ECkq�w���ߊd�|�V��J +=I��$��ds�%ջ-���1� �r}Gt����T`�Qg�AWA��J3�j�\��v_kbf�u��c�r33N�0o~yX}����_���V���ኽ9lW���t_�V���V\����k3�ר}����J~������F�m�����9ֳ�R��k�q�Jm�?���:�@|�<̳������9q�B��#?�xȢ�>��Ѧ��E�c�����Y��F���4zn=��]�:��i�x��54�V�'kK[Xo�~n8�Z��Җ�(c���I�#������on��)�pa�� ��?�Ɓ�'�<K�UtZ/�(M�S�![|Y��~�V���է�y^]�B��� +���cfE?��{P�����*U���^V[w�-RJ]����Kv���V+Of�4��b�J�K�!���A����|��Sr���S�-�zn=�ȪV�wOY�^����~��"��y۱�� ��W��#��ڦ����br +)a`w��KS?��ЏNj�D>��Q��y�s�>��b����vpQŢ#�2��vC���Z�B��w��Y�n�Y4P�I����UW�r�)�⫧hW���K��K��{�� ����6��C�R��G�k���d@�0�����5��{��`K.6��^�;4�@" d�(��Ke�l��ș��v��,�|�f�Q\�cW�����o��]��I+�h�r������m��M����X��i���`�/�M���X����][�M(��.s�x��Ik4���Om7V��:w�����6?���B3h93}7�m+�0�?��"����e��q'9ؙ"�v�V���W���o+����m�ƼTW�L�hw���l�-/�����a��0B��|e=�U��;�M�ٕb9�p�jۍ6�գe��{.5��q�$:A�BYb�̃Ԭk��Q��7j�^��\*Ps�A�_�,�Ґ{N� ��ȝ�a�E����.u��"�y�D͕5�b��m����I�+���ҥ�ZřW�)�]�~n���+=��5$�����f>�W�*�(��x��T�y�.5����6+�� +�)S`�F}�K�I�OF�_<R�Cs�(��Q�R��:Isy�Z��⭲\��cY�M��y�K���R��:�T5�XL�,l)?�V��g�G�"Gib�K�f_��q]��A8���у�[�R�[_3Y��<�No�x�Qd��?��W��C9c<�� �8L�`r�ek��R^��*_U +��m�n<i[�*e��6��7���h�Vj��� +h���2�q�yM���&A��T3��Uh��5�;��>hM��'M\\���{��݉�g�Z u'�G�v���Z�$F-N�~�4ȁ@nK5�յ^�X�������A;ۣ�U�v�j�5�+��.}�Z9�q�]��Ĩ�n�%Ѕ��&�3:IcA���Pr4)��me����<���Z��fR�1O��m��2d��1®� ���2�:I����8I��N��o��`��ɤHl�%o�-��[��':_c�ԆC��Oa��5�ӤO�b3C�.f^�x�u�y�2��k�xA��G�E���ʥ��k�Mr~x&;���(U|��V���X@����Z}K��.S����|���I;і"��X�͗a۶��-����wl����Αc��v�S`�0�q�u�G��'Q-^�G���v��6�5�"�Bj9q�e��Z�W�Z��THy��F_@�ʶ�����>�t$�$���Z�2�{e����-�:��_;&�C�cl��ʟu�I<�QŖjۍ������W�m;#s#�Bٶ��]Mlpv��q;��8Jw�_�2�����{0�`�U\�Ͷ�'�z��{-~D�T>��Q��d�kvu�g|�2���~��G�~�q U���W�7�d��l�y$��0H�<M#�˽��1��� v�L �H~A�qX6M��#�6�\r4�3��V�-;�����G�Yz�q�o*��8f�����6M��K��j�'ߧV�+4ڹE㞓͉��5�9�-1�Ѓ�CF����[�<��D +��t��w�r��֓�#�L?[$�T��>;��ko�4E��{���9����~oD�V�+�҉�뫏1�b���ī�[���̈́�ݷ��3��?�Z��0��UV���6�'�A�㹁ѯp����_��ZI�����͍��Ze��#ڼ,�����擤RlȅW@�Yq��7������Qm˥�|ߠ(i�^�ڬay˨:fE9*�:��@�T�L��ls�\ +Z˪�rl�� ���mv�b����lD��[*C�� +t�[�k�x����Y�}&"�~�R�AG�F�s2�f�˓��Pi��JU+��&Ab��f�������$Ps���}��?�+���/���ߔ�b�Њ�LU���)����>�}=���a�XMA<|��*D�d?����$ak�Y~X��(����^����牓���t.v�I1r:C(��x��W����O�L +Ҝ5��^��o�"}���\=�k[P�L��yG�־v�.��O:mA锑��%��m�sFԇ%�ɶ��82F��rs��%��A-Zk(��$U ,.2}p��.s�Un���<x�7��%U�/���P���mV�^;Hjkn�6����gN�2��2��3q�ޯ�aoP�_+�@��M�X#��F�JF�2��x����`���,?�EC���U��m�n7 +�W�H +��M�|[��CX�G=�@����-�nc$1��s���=r��R��=�7H/�#=���,{� @:d��ɯrﶢ�x�m���;OY$4��=i�/nc}�o��ή4N?�oEl}�������=��ǜ�=V��Y���*�o?�h�p���c���p#��K��X6��8��TI��`TmƐ�wU%�b����M���|��ι��.T���J�qM��z��� J�j��%Vs�V~X��<"&/Q���f�u�E0�e�@!m�� ߕ�绪�~{;�yW�cV�����+_��X�R9��W�q��9��F��K.-= F.��C�{��:���i�E���jP!���7���j夓,�<�Ҵ���x�����E^�e���D���V?r�o��f0H֛w�/�!�C'�.E��e��1�KX*�-�#��{o�� +�H�I�O�`����j.��&�ǯ����7�uPY5SNgF�����)��]1���^��B��Ur�F�������[/D��|���쥚���T��C����w�A�,���O*�g� ��tB��c� �j�%2�F�Ky�w�:l��\Α�Q�~��h<I��t֧RA�C�/�]D�梲\y�� ��V����}A <G5t�|4�Dd�]�`n� 8"�a�|ޮg(��~L��j��V%/`��"�կT_%i���::��$ �B�$��P�n��%YU�k��1g���)���*����}��k�7���g�P[lS�z��Y�H4.}�y�%�2�GU�d��6�TEe6㓤Pe69=/r�mr¨|���nR +�ɤ4��~�bG3�7iL��=�ƶ2�Dk�*�}m+%�x1*=�������꒰�p+R��I�*8,s7�tjI}�` +�v<���I@*%^�N/����������[�ђ'�E?�n�\O�+�оܑ��ˬypK�\�pe�����32��2�Z(�mݪE�*�1�=��էXO��D�'{MW������T���BT���[��M�w3Z�rnʰ:��1�m�}���K{��p�TG{�a5��&e)q����i�$��7 +iQ��x�-����(o�74���9�3�����ͫ;��]�v��q ���]o��o7�ݰu�&����uI�xn�8<��� �yH9'���Ѣ�전� ��Cq�]b߭�B�V9%�ظz�D/�B���癯�ثy��OB�lS`�o2�6��5��b�[�S��3�=��F� ��$|3|��+v������?X\ҽ��|pe� ����g�~W͓)ߟ�j�K9k�O��omن�������A���$iD8 ���/����ub�z�R8�,�9 �Ei٫�h�w���d�?�������������%ó�V�}C;���$=��1|aH\Oqg�=��==��n_���!!v�/�̅B�6!wl[? �G;3ݱ��ؽ��b�}�]���^w�*��e��}Y�潩����Unq�8p�ia?UU*��ԕ�h�������~�i�����&S�l�^��Əj���eS�d�=d�lM�lu�V�* +<� �w�ְ��k�!C�=$�LT�����d#T�Ea� O�B��(cx�?�����ttWQ�ai#�c�IVh�&�j��Jv\R�~����þd�y�`mb���,����(-������N0$���`������[p��U��)*�6)Ψ��;�~�@��DA������U�~��������Vh�&�"Y۲�3�9���������ػ;n������W�u����j�qC�/�7��b�q�_�?n|���M`~��@y���-d��H!q���o?����>V�����ߩ+تM�r�����/>��s�,����������+�U�e�}���_|�y�ga�����>���_~k8�����b~��/������~2#�9'f�_��w�5o��.%j��}��Ͽ�Vo�����O�Vca�>�����������Ƿ�5;�o��N���7�����Z����Y�m7S���w����_�q����o�S�����rm�Կ��[�{����������Q�O�)�/��6pRZ�h��"7�����.`�岝��Ź��E��f�Lv�ފ+��(Z�\a���N����V�c�Ȥ��i�|, _�J]�C�*�T���7�w���]���1��n��7Wz����ًD� +������쓡��W�F��~庘M��˞#����6����6:r�Fr�^�������Sg�;N����������c���� +�W��W�����Uo�mABՎ��l0<�� +� +/��ԯ�E[�V��Qd8���7{��w +1ii��2����@��>������f]P@i�Q^�7�?C�JT���eTe���EŰ������N#[!A֞(VEm����(����|ώG2sG �Ѿ�*�֙�p����|A������7�xO!ͥ]��x_�s���鬬r�*��-,�5�OJ�4���������o����3B��X��L8L�]V�(�[h�rK��_�.-_��]j����L����L�����M�q:кl�Q��M_m3(�� ��/�07���m'ż���s,���&W#��Ư���sᕾ�͇�^�̛�]��ׅF"��,,�?���b��CZ\Y^Z\�Vl�}E{L�(��q�?��S}PJ�az_5�eX(�����?�z�k +���[��f"�g��(Bó���>�21��~���ۅ�-;�u�ɻ����-�/��U�>S{���ۺ��d�_%~LŝɆ,�~K��POa�_��Cl}��?͊��j�pvo�9����m�͗?�b~���u@Mlӝ�fGM�2@��[mm��X(֥:0I?N��,ޢ;Ω"P�T9|aLޫ��<[{4z��xڍ{ͥ�)������x��BD�ڬ72Hj�Z�'Uvc�c��n�x ��k:ș�U���4���ܳ�<����sdj��I���'�i��gÄk�oW )���6�}ԇc����ۯ~������@]h� +�t�����4���5v]��jq1��V�)�>��\{�(����r�EN����G������X�t�O����dJ���y�m��X��͝��R��ˇT�>(W:��XR� \t��E觭x�"(��mO��)4.����hY1i�in\0&�Xc@T./�w{F�9����h-�綩�͎��T22�{���JE�v�n�����5+߶����d��\c2)�o��>����1�Ei��� ����}��Y��BTз�?���E`��rY�@G��^Z��IЧ�0�B��ufӫz�1e�0�/��2�-7����/d����70'��ϕ�(=��GG���id�j�Zz����rJW�/:0��?���Am*�b��Cz����wo�sY��}C%Rw_q�5��sAZ=0ŵ��?�hG���/iq��n���Iw��_��N�<F���]�6�(֦9@T|��Q-�4�vb%�r{�q�R#��}�5�v>R4o�z�����DJ���U�=�{���[�[ Z1�f����S�yBFJ:iCd`�( ,朧NH���Ů�F�(NS?��hqT~��+�����l +�[���f�e�-{B�q!_Sz�b�YM�Z�3��|���R뽻Z��2��!4�*#>"��|�}i�#[Q��<M���cae^ŕ��rlam��z�X~��:��P��=�zK�V�jD*� +��$����J= ��O��P��I ӑ/=���b����]����,Ov�աb��ª/�V�;�oV��)߉����n���w7��NJؕ��5e�����ae2�JY���!o���.�U��zE��mza�}� �p0���l�L�w)�V+�Ö;+�[�V��qQە���fH.,ٝ6˭�e��w�� ���~ܪ���ֆ��2i +�7�b奆%��$�6��74^Ѽc�*����˺mC�(��ԿB�IZ�#v�Q��^�e�Y���Jb�?,�(����@߫�\���X��P�I���-eLe�,U�lh���*V�"��B���ͣ�X�gp;��47u k�l�L&V{^�,�i"�s3P�~W5���-0W$�=��n_9`�*63��/|�������T���-�Mu��%��&\,F�P�R�ϣ9�[�yc-�0y�yc9�&A3 �IмlA�[4�-YP��bc���I-|*{Z9�~`b�A6��J6YI�1.|�oy��:��"������&�3��I��$�S�8��g��59R$=�8P��u�_n�^�E����7������^�xR2 +���P��ux�8X��'澍�[X<טfE���rub�������U�Xj3�{٪����j."��Y{����˿��ߦ⋩��9_�%� +� +����dc�w���JT�+�ZM�mU�Ǝ}VT��g/��4���+�N�Ch���}'��#}��Fh��%W3�(n���˜P�M�j��(���G�8Q��g�W[��ת;y_�'*2E+n��j��k9�/3X|�?�+~\���:)�/���ԓ�Ng��j� �DZ��^���3ڭ5?sV;;%�� nb +IZq��E��-�&�t��ӧ��!9��a��|��Cئl���2����\lG��f��s��c��/f�/��L�6b+bm�{�Շ���k�!�������YH�wC�2�T���o:�g+���k�}@�Z)'-�"�^M����rmX�=Vx�MnF8j�ܷ�Z/�̴z�o�-@�(�DVuK�:E�r��x��z]u%T��9T����+Uw0 ]�`bK�{�C�f�>J�����l��چ�>���)H[z�~�ުĴ*�l�'�UY{�!�`|,�Z�Jj|�J���SG�)Z��j�)Cj�h���u���²��T6�>ӊ�2_+����8����Z�꿎�1Zcq�=y���U'�ZI�z@e�����d�{ä<�ފ��{c�+�����h�����>j>O�feCK�|�'Y�8����NN���=��sק�%oM��N�C�G�J6���ڹV�V}� ��o�l�o;�0*>6�0}���*��f0��/+�"�ͪ$���e�:����C��`]���������uͯ��)�hJ:��'�?��#���_*<�mׁ'��<ϋ�\�0]�)<:"�P�j� R2�n܋dY����C�Z�n�{� ���L�R�e_�E�;[-��z���nGҽ5���-��X�Ē�<Пjq�������L�Ə��b��}��1"g�g���)G5T����d,�`�t����P����0,��� ���@�(\����t��5T���_��5Y/�������X¥���QQ�̌ ,�n��"c�T�l[���m�X��"Z�oxN�>�F�$,�FoU��3�lv�3v9��M2g�9�a36�EIj�h:P��h�iP�fF�$�$q&��a�<z�d*�D�#��z���D�x�ք5I�I"}p�Q��Г�Jj�u������ã V����$Uv��" S {�uS ���}#�Xt��Ĩ4��x��a�ꀣ���H<B- �;��_�uV����w&��9��L�G1�B����iZ��1�> �a\�5L���3� ذ��W�b�-$�v ���5u�[�� �Cu�{�[��`C"|���������.xS���B���o��Qp"|}X�(�*��L��!�����d]{��VN�[ؓ!� )�u���:v?� ��ֲ�`�e{6�����HX��{4/h~��l������l�\&˵"|��=�����#��Տ>)s��hC+%&m}Vx���!�_<;��� �m;�&6�!���I��CӃ��J���C���0;m0�6��M��I�� �ξ,P���XƟ��[8�Kk|��Z�ϝ�mՖ|B[�p�Z��ʇ�/yV��_}�'Q�J��Xן)lЃA�s���W�*���zE�ﱀe�^�-OS�%�X-���BƖ��u��b�����w�λ�r��eg���?-$^2!�^�WN������/ � z�H�0�(k�u�&���:R�.�=���15�佝���Y�'�\��r�� �zT�-��_f�0��`ҙKz��+cv�ʝ��yz#7�8gz�B`v_4�3���8gɂ2Z�rOz)��o�]V����JM��k5�\�Jo������q�ts��W���p-Vf@H��AtS�s�搿��������A���}b�2�lUz0�s��8`�~Ht���64�rJ�n�:&��[7��!�v��H��'L� �wJ��ң'L߱1}�L9!�N��C��T->!�N����$X&�2i��Մ�;!�NBf2��2!�N�ʄ�;!�N2g�9��l2l&D� �w�8�ę$΄�;!�N����$�&�4!�N��S {�u��}���Nt�w�$�&�;aN��&�I8aN����0 ��� �pb&�I8aN��&�K�$,1�J��b�U8oʩ��b��6�*ؘ��p�`�iE�y���W���Ci���-X�*6I�L�0������������|"���g|����7��G�f���G���d���⪪�����2��؊�W݉+��4�0���D�s���4�/�2'�]ׁ�( /����K!Ys��� ��Cb^�K��`�!;(.�����W��Y��EXɡ��S�pC_�}��J���aT��6���j4s��8� '|'T��^��4-�!� +�g�TDNL�7|��&A+2P�-5p ��8ђ�t�|M�:���(;9;e�<�h�یƺS4�Î�V�R+������&����'N9�L��'�)q5�����tf��u~��v�7����VXS��]2��T`�Nfߩ��hF�f���fͻ�mKWzB�f�vv�%�]}����7��ikK:�ڞ���[�֟�hW[cG�� +{�Ֆ6�s��A��s�ʑ=AW[���=�ؑ��HV�,A��A Ym�p,���]0�o���F�]|�Ի�� i�[Y4��.?Gjڽ�ݫ�/�&X�J^�����r�=:�1ݹ�k+���X�#��b�����>8ks%�V�ͫ��hS �2Vz�c��D�C��"���H}B�0� +5)b� +�Ίu-�+��p:���џ龙�0�Ҁ�k�Pȱn(�H +r�]R*�X�[���C�$����!�� �L���~�دAU5<.ŵ�;��?�v]w_�䴞�A���b|��F�gǧ�ǐ��F���i} �v7��?"���ht�����2��h8WXNs`8.Js��<vDs�#Q�p�N�A�y�Rv�p\�Dn�Hg�j��h?-�TBm5�]#L��Z��0��-_����7N���+���K���p[c��([hN�\�J��5Z��o� +���)M���u������\��ˣ{��{J���fw�]���D ��=YC���v�g��Ol���)�ӆp��'u�n۪�h~�#4T�M��F��w�!=�q�0��0�͵���1m2G���c�S�����5�j��}��<��>��z^�j�F~[<���F�{#�-�Кu`�͌�Q�t�q��ծP����U��w�CLߔw6��`p���TK.:��.��S� O���N���r*��7��M6�d�Lpp�2���jՑ�՞��2�q��4mEꟳ���7N`���2�����o3�7�$�;��_�uV��6/B����_�CgF����Δ��C�k�;$�N��Ƅ~�\�K�黼A/wT�}a{+v�K��C��M� +,�2K�,ZިLL�R���ܨߥ��p��&�c����Q�q�t:$�"�Ny�6`bL�2iu�ųꆥ�������Nu��� :Pi~���Ȉ8Ҟ�8�my3ݧy�ɪl�+Nt���F: +U��9'*��y=�);W.����#���@���PV1�]��|����>?�22��yaa+�vC6��R��z|����X~c;��{L�hya��b0*�J��bj5����Ԁp�{VO�A�����������Ŷ�_9;Ӳ�wB�` �* �E0�����x��a#�L�Ij�9;+�Wz\�����Ҏ��'�J;�]&�� 'm�Z^4NZ_�Q�ד���g-/�^�"GG�rG�qgڲ���W��6SkE�,����EB��n��r�V��9Eb/z�Eʶ��������-�y_O.�#��ӞnP��jy���'+�HKTQ��Uڭ���,��^��nS���_Eae��P���W�H�ҿ�-��3���j���C�;�� �(8�f��e~��ZM�9}��?�.l��<?j(��:�{�C�q��;Ҫ4x��Tf�A�˲�����{;h�;������5"�U9�xRyC��P���Ƥ����ջ&+��-�eO4��i�5�-0p��� d^ػ�~�r�} �{������i�Z����_��e�����ި���Mpb)q��J�*��K���o�E�ZI�W�����:C�Q 6��:��lf-��պ�n��.��+�xb2;���; ��^�� �� ۢ j���dk̍\�<L�(q�e���6F��iH�94 +��a!厗Ɖ�Ѐ:q��!����K�%�Tf�Hn�,����rW0� +�&르��Z������U�����s��2�[�O��<M��2n�x���v/�q�T1UE��*B��&�x�zӺ{�V�cꁎE^���S�����[�4�pbo{����M�.��sy�ۣ5���R���}�-��75Ɖ�Mn�p?`=�:�Oݹ�e���ۻ����*S���2őT�L�ť�����n�����i�qxX!뀞 ��l�W��W��G��e�n �w��@�����-�5�Cj�iW-2�G)F~��j��5�8�x�x^��s ��'!?�:�)�z��He�J��������o��������E=�ɭr����M�d*�xh)�3��htu�R�N+P���F�,�Cj��l�皗������g�7N^N�8y\��{B��;V�3=��\�?��*��jwfyݲ�g���a�؊w`\�|���toM� Rl�U�g�ɸ��(Αr}f����}�bV�!�ޑ�Y�\P�_���w�}��ȬKV0�7�q5>T0�xj=4��L U�"ޤ�,jC_WS�nϔ�RI4�����?]���Y+��K}�~���T�n�Γ��/AM��� ���:"�� s��u�4=/��'ޅ��q���ɾ�i���+�{=Y��=�63���OMH��3���39o�Ffϼ�Tܢ�۫]� GZ��J������+��e�j�5_��.��]��˓��eeG�8�r�'��J��H��� Y�wX^=��}6��6��' +�����?=�$��3%�L�����lȸj��dk�X�;9U@??�.N�}�.[M*W$/̣�M^�q �p�o���~j8e.NB��֝hP3�� (��N�Tu�Au�Al�<��ؠ� j����Np�/��Nr,u��ith_�#���r���Kw������&��!�E�+��'7[�g��U��uQD����P�m �k_<��V�|6��:���W�n�[mx63���X�Ă_����>����p��F��z�f�Q5��>Q1�1f{zWk|ӧ걉�N�v��} ���` U����:���T㴮洇�.�䲼�L�|ߞV�lo}��eZg�p�w;`�EZ���#��G��1r���\����`v?�Љ�N,�L2��F��Y�r��!����d��k��]��������r��ٖ�c�p��7W���)�_�^�@��n���с͓�� �)s�o�0�yg��̿H�5���� ��k��լ��a�^YTp���k3�63���[{�X����3�~<��lF�9������Ѿ�*�!���j5s�֚�H�4�K���k}��%QS�ǻ/�='�sϬ�M�2z��Z*�,�����)�F9�]�j�W��8��5�G2��س�`ɇ���x�SZх���O&ᢽ1��u=GcD� l�h��Ԃ��갓'����<���L=��l���ޥ�Y��|x����C>�sܺ��Fh��hMSIz4w��쬥��Sk� � �*ſ����v˟�tl�Ӥ9���o�\�4��j�\�m�o�\��~��>5��v٭���m��*�욘[��� �A]��]��j�ݳk��B:E[�x����svf��z��P����5�>���Y��Ѕu�^���ĎV��' A5�K�h�q���a����p<��v6�������a0v�O���q��v���qkF̑��2�45-P����X���`��M�v��N=Դ�*h��m|��B��i��1���_��D����jc�>p����nb:� OIoS��Jz�jDlIN�Y��C��4��_��2۪�֫�˚�]&�5�xXE��u��rΡ*�=a����Y���Y9��UM�jbU/�U�^u>�]˲�Y1��9M�ibNS�S{ѓ{�� v��j�gV�D�2��Y�dWƴ���)5���_ *�/��Y�Y OM�#�1�g9J�d��T�H��A�9�R~h�-_���%�'�Ib�o���;���}��R�1`,0���O�[|U�?Sb�L_�����J��X/�J:�s�����{y2J�]1t��^+�u����,պBV�i +ݬ��:c��X0i��.|kɸ J����M��V���E��_�W"vw!���Xf�NH�$�,�H+O6'ɚ/WM�W�˼fQ��S��l-�f+��B7�ה��j��~��U&eɰkٸH�_}�9OykY��,;,v���U��JC)� uwʐLǎOU�,��̞kJ��)�ًH�{��di����1ڝ<�QE\�U!D��Q����"�Esv;�Iߢ�`���Ks�%��2���4�b1�]��ƺ?�l�֤3��M��a���^K��:;�XḄ�[�"�e@� +�d�������0+<T��q&~ʜ����<�9w]G�a��$͉��e�jkV<_^W��1춹ي+-�q�.B�,���vŊ��;����|=��T[Ҿ~~�jV���+�Z��_�At嘰X�(3M�`�on7{������F��7��|j���F�����/��_XO�*}5e�TQ�����U�5�#5Z:lw�����S,��8�����9�ܑ���i)�7�/. kϼ��[��Pm�68�jSd��Ά���(��x6ceQ���ԟ�G��B�)Q!�n�n������{��2H����ZV�59��h%<�%�P5>�ucu�-�ZY�·Gu���5��on��ro�Ƣղˏ�e%�xZ� �ڷ�T�'�J7�����7P�Tr�{��h��:6�m�@]�`�S��<�$Չc`F�E�z��r��>���Wu4�U�n4�EKe���}��m�?6�����x��}��~�S8�����-�a������[�@/Q��g�< F?QI�KZ�}�!;k=��v�V�Y����y�w��o^��Dn/�v�������a�!&u�ܸ eB�9A�)� �������@���d������G�^失���9N������6H7ۭv�֞~6��6����X +��<�0���ۿ���W����_��W�5y��v:;f;>';���.��Ԁ����-5�G$�[��0b�I������5+}�&Y�8���T�S�7�k{Q�.%�^R���߽Q8 ����:�u@5�K� Dj"�-��E�X�V�Z]���m�����;Ԯ%,�:�z�}hb��t����\���~��|��O�*��o��:�$Xs�p@��/��E��Q���K���N=c�'�� z��恠=H'J��Ӗ��"�Fa��I�^mv;�}?0s���,�a������;q�8H"�����wp��1; ����i^!\�r��Dž��a�UhA���u��?e���dz��l%�@(S��%�_��j���)4$"2�x!8r��ljh�E��w晩Fn���j�^L/����~ ����� v=��z���ᡫ��cؚ��l��P�}{��l�[�����^n�X���M��e <Q��cY� ���9wS��N<��k�����]����c�����&��{{F���o�SZ���f�r؟(���m9һ�4<e��)�� lǤ��(��D��`��@),Au1�\�G�FY��1~�G 5���*.�B��$��oTP�t@m�U�z��mޕ�����w�p(v76n"C4� Ô�5%M�_S�ה���s��NGFN{���+�V���gw_��N�e�5ï5�((��lj��<�'=�4�Z��jb��MQAl�����vG��z�\� +}��ʹ�-��}� +r%�C���[1�3�Q��}E��>����F������Ϩ�W���zs����p��~K!���ܸ�=��7vg�H?}��r}x��Z"89Nu2X��v2�.W�����v��m��٫_qU`�Q�z���8�+Z��R :P�t�F i�x*w[^v�����+g[i����,Z�1 �g� �i��h��M^���2�æ2�F�����f^��9�@�r]�ƶ<��y�����zs���� Oh@/���Q�9<&�!Q��� �����+�����:��1��W�lg{�<a�r��+p�w������-_�V��~��൛�5�)�of|� +�������ĔG_ͣ�y��G+�)`���g� a���<��/A���@X���=9� +eutAGA�z�HT�ɻ�j��_>`�����e��CZ���'Ŋ'��I +��J'��� �yuBఒ�� +n���?ă�i�7�uԿ�>�Y��T��(��poїe*r[��Y���i`E�d������Ev�!���M�9SvΔ�3e�<Ev����Ë����N(��儢6��� 5d��z�����Y��.�� �̨Q�[jVUݹ5�}�0����Gb��AF{�Z���0��w�6�NuVߕZ���#8y�aQ���ƍ���_�To�˛��&$�$<[�+_�>mn���Fn��mǃQ�`��'��vnx�)�BU�W �@�^/?S���e�`�B��<��ȉ�9^D'�h�xa$$�"��Z0)y���W̫��wpmf��Ç�����Lu�4!����Kk����{E�]�HrX}_D�k�����{j}�ĞL]����0+�e�5�q�*=�.���̠_�F����d1gN��l�x3M|���,��ʵշ �m[{x.ь*��0d%Z�}W�{&h� Zi�Vz�Jh���e��JS5�Fq���h�:Z2�b�m�J�lc���V�T1��������ui�yW��fb�狢�D�Ɵ����V��������x��[� ]��WV�k���?���nio�[+�%�������k ��j43|`=�m��O|#���\%�(0�rF��K���"�]���n}wHV�ݍ(2ܪw�CLߔw�7��k�tN�ϑ :��Ip���� �0D=0��#@���l�]KBh��aN��Cce��6]Z)��ו���2�(���bl�i%��d5���ak`ԯUSy�j�H�s�^O�D���o3�7�$�;��_�uV��6ߙ����/�q�R�����}���k��[k�$^�5�a2���ԋ�HG�Q��Hi*8����C-�r�@Ei�kX�K׳ aI�𪾾r�B�S� d _m���?�� +sU��ն.� �+�#�[�`k�q�*���D����&o�D7 +�Jyzl3�E\Ȣ|.��P�Ζ_K�_[1��e����H�me}�_�-�t�����g�!pt)^F.�� m��U�� ��s8Z^���N��T���8�SL���ڠ�\�$��U���ivb!�wVfӣ�V�+ggZՔ�s�,v +�R�P��[cHZ�7#-�D���N�A/�$`f^�I||Yx��u���#��n2;��ќ������Ջ�%���qx�Ye��;1�Le�_>G��yu�����D�֭ߣYL����fjK>i-N�$�^�������_}�'Q�J��W^6��Up}��yƝi�H�'��Z��b�W��F�W�0j�X�[����� )�n�JG{�zз��}K��5D��@�ʖU*|��^WÓ���DaLVyh�bw���A�Z��u Hd!�t�\r��[���y� �}�!�w�����V�ս��uQ��0���S�gԅ����G ��P�w�x�5��|GZ��u�:����/-=^���Jޠ"a���V�K�hl���!�Y{��$�x�n@%�/^����0^g��w�����_�� +溷�4��!�P@iB{������05�Q�1��f�]�ƫu��&[��!�m��^Yy ?�� ������?:L�(q�e���v��m�i��ߝA>��;��AH����8q��u�4c�(K� �@7�*��P�C];`Ϩ%����B�p���hR��6�Z}a&�T�׳w�����氝w��twT���t^`M7����v�%ݑ1��VL�z�u�M�0��m5��'Gu3�k+o�T�����8;�d�)={JϞҳ_Fzv�/�?R���ٙj��~�C&r;q���M��E���C��0��K��c}���X���&��!U��k�a�I�?V����^�%��ǀ�J�Z�D��-�vW�k/�¤��l��7�U�����c����'�:�Չ��@��9����F�4m�6@��y��jfuX�a��{���|�|���'�8q�g�eKd���כN�̦=�[����e�^���n�JCE�6a��� �|�9��3^�)����|t��8��y�|uv���/������-xe� xe����N��Opfϝx�g�23e�6��[�_�at��s +�ߖ�)���$���&F��ct�O[ކ����HH�Eg���1e>��4�!A�?3<�c�oZ��7{��?��ZJ�O +�YC��>�SV�RJ7|��6�k3S��5�'�%Ut�<#��3 +���bzL�o�L!A�������ޮV3G3q�}IA��J����&U����-n�o�_Lx�O�7*A;5���R/4���/�4:VT�d�SW�����B�m@�]�`����Cp������?���O_�"��~��E����}[����H#}����,���l��6Y�ՙ��h.;�'F���G�����тȃ��+~+f��L��7���x����/�(hDŽ�����*��ho��<�?{��j秗�ք�l/ 5V�����|:�x &�ݬ&�����ݢ�m��Vrv�,��ۘJ���I��X�֓�J�'a(�^�^�S���F�f)m�<;7in��T&��w��i�0=����h1wyTlj�}>~�m&�B�3������^B�a��zP��o;��u���p�������MH�ܼ���Y˜Ij���oh�������yE6!i}�[�k�T����M*��5�Z�|r���:�=��]���8�(��Dkq���Ǯ��������^ݽϬ��S��1խ�\ݶZ�U +W�U,���Ga�[���O[��=0oGf?)����5�x+<�!��^�Sx�D�� �~�������o>�7�= 7��@��x]t�F�R ����V�Yy��r�C[���Zl�;�"[��:�[���p���eS�O���ݮ!�#���ߣ^|Hi"�{;�� ��o����v��m�W�����*�L��N�6� ���0v��Kt�j�T�+���*�x����Y.���p���B,�pxrÇ4��U����]_�: ֹ��{����@�Ý_ꗜC�e@�W��[����,��$��ߛ�z��x&M�Xtܜ�e��_�Q>��;�Oo���@�sF�Μ�g�� /v��P7'���_����MA��6�f��A���f^-���d]����)�-�����"�͟�f��{�R���MTq�kcj�3���aU� ��ש n�n���F�(�Ϭ�88��z�T��H��l�~������áU�d*>���R|��&M�?�D�r��v��������]3�)tZX�H�q��O6?�����M��K��^T�Y���P�K��/���S����v)���+q,��ѿ�F5�OM|���64�^v��rM��K�����jT��J�� KkbU�z*U��r�U��`�Tl$U-���OL��&�4q����'�B?�e�s�7������*���?��bb{�S�+Ҿ8��Uˆd:������My咬�TY3�������k�h�������2���?����+��\��<3nI�ܒ�d�c��C��.�o�ښ�6�Q/�d�lO��{�z���N����R�MH��� (��,��y����j{3թk�f�+�x3�#"�(�y�0ɇI>���Ǒ�Y�<���\gZ�u����Q��������B308����a��kd��L{|�P�-_0���]���g�v��dƳ�զ�\T~<Z��O�l.��j������l����K�@�9�ij��*�r�(p<�/-@�.R}��t`.ח�մہK���*=����K����x��p_ �N-���^T*#�������� �'3�vPK�|<�h�sg��ݜxÄ��X8t0�e(�9����? ���(9�J��_�fY��yb�?�����d*���F��ub�Wf��N9�:N���a���ƭȖ��W�B��G�8$5��" j,���!�u�E=��e��T�'D̳F��"+b4&�ϙ�t��)oh �ɇ��CX��x�J<Du���T���2%+ �S����!_p4X����3�P*��f��:F�C^4HO�S�z��uF�Q���1u��H-�A����Yn6��b-���Y^��,s��2��,�W�`���<w�0�N��㥾'�(�s����e���Wb=Wgu�QZ�VU��2��Z�Ce^�_*�7��57�,�Wz�1����\���2v���t��h73�+ߨ�Z2��-y�������n�g�l�m����F�Ȫ�C��Z^�HKj-�i�ѹ�2s�G�5s�[�.s�.�7�kw���ͮɷ�S5��^�O<�X�ƐX���US�/s��5���6$ ���˼��~�J���*?ܾ�J��-5`.���]zS�Ѻ�_?`�}��+$�2���f�W��,�(*i͒�s�^�_�W���Z���ĵ+pˤ�G��6n�NΙ��9s��3/Af]����D�y��3/U�y�3��?�jJ�~��2�T���72/G�2s������y%C���̺,����Ⱥ^f��n�7����.��[)#�֜��{(i���{ԞZ-wd^&�̕z^+��� �nD�C2��H�,�y��>U�#�ļ��\ks�f2��v��c��ԍdjsj$�Jn�[�&�Zބ�曎��J�Cǧ}�{�i�M�ü��P<���n���ev�ܲ��-y�;d�EA�܇bh:�a����f����j�k�`y�S����Q��A�M"�\�0��*<�kX0��96���1�P����е�S�E�_FQ�<����xnw^���ʗ�[�����)e�r����i����OI�(sn%��$RH}+��e8�F|��1��5��vͥn*6k�9s;�`n�����l���F�����K�c��47'�����ֆz)�E��Ο�2�@�����\��ѽ�ZP��ͫ��6C���/�?f魗<��X��غ9�4v];q#n�n_T����X#��ġ���Fe^zL�mt�v�k�V4n��A��u��6C��Jժ/��*����Z�c)[/Z���Wʁ�U�cB��M�tn�9�k����e^ U�:q��{������W$�s�d�z�X�"�]�;���q?d�����w�Kg�\G�-��\<�X��MRf��.������[ֻ����+p��`���aU�p��)ޫ!l7�:���һա���Y��V��/���oo1�Z|�u6^�y�v��{��J����z��y[�ƍ�<�~T��y��<oz8�U��潜[�˹�_�-��`�[�LJ9����^/�ܸ1)i�'��A)U��I�$.H������ej:{�M�ya�������d3�$������p��`��oWT�{�oP����c��fd��}F���i��O�Z��_�͡�Y��k1ܧy��8q�ԏO���:��!�/���>m�2{~-��t(JR����p��;.=�軖m\���t�n� l%�������D(�}�G����s��}�� ?�'\����7|�O���~o8q'w�3w�˓���RF�m7�RY�q���I�Fa��.j+��[�b�76a�~�r�)"��m�����h��jex�w7b+f0�Yz�n���*�HK�B50Մs�����{>������t �2�)1�!��xJ���ߝ=��q�?��A��5#����X���,y|�K0(g�6���a(�RR�/eD|,h+2��} Lq�������(�4?��`�#���.<�%Z�թю�\.���҅�����^S�Wc*����r�9y��z4r�T�#�L���.���5���<G���Q��UI|M�7�֞SSZ ���O��?�.��&��]��S�ڃOb������;��a���r��)p��.���Ə�tPw���n�_"�Ǝ�<�TS$����ɬ6�נ�,�W���M�Í��o^�]=�&��J���v�H������6ٵ��5u�u��Jw@����kTTv����CƱ���֠�^�t���O6Y��"����*߰�68|��_����-H��� \j�7bu���ÿ��R_bp�����Lᅒ��3'���;4L8B,������d��ư_�϶�-�^���_�F܀:���L�d���`�T`)T)�[T�f��LC��W��]�?��h��J +ƛ�v����6[��>��(��fߠDڃ���k�&����u�i����ƠP�И�؝�Ʉ�� +��Vy4��63�K� h��q�![�k��ϡ��v�mI;��7�+�u��g�V\� S��������������K�(=���? 3�LKuy6�ha��/m�RE0���H��f��I��s[I�%�U�W��w����"��^r�l7��(|��uA�/M�ŭ<A*�O�W�a5�uE�#߭����3cర����/?DI���n����~{���������w���n!���� ����;y��I>r��[%{��${?����w��!���. ����\~|%"��(�)���2]�簫��t*��u"���ө��ذ��o]�3,�% ����?Ğ_l����\�J��5� +sx>t��Y��f��}�F7��|��]n\R�};(�t���2��b�uh��Vs��o`3�~��I������|uu��`�ѕV��V|��iykjw�Ѷ�ƶ[�g��Z��ԉ��ie_��W�v��n���9��7� ��*�_mf` +�t�/S�m^���?�8dDT��ˈ�į;�`n��[�����WY�(X���k�K��3�n�T��X"��C�v�e����է���i1~��X�n����au��W��Oټ�!/�E�c������֮�q�S;铿����b<�Hv�o�%spT��0���3{N��H�3x0B7Ω.���a��+��2� ��Vdb���5?�ڼ�����w*��!Y-w7��@��7�Pʷ�/������ #���5le6���בI_�v��������H��.O*�$����s�s\�1���6�wⶇ��_dp�S�=��������������?0^t���n���@��7�٭$���j��v#���݊��N9n��b����zD�U�jw���_Xt˯�<Q�>\ɤ�!��؞L�����Ѩt��t)p�tX��������P��|�7���Ĉ6��n���_|MR�ٜz(H�=��js����i�A����X�W?l@��H���^üڹ��vy�Pz�NU���N�=��W�?榁vx���r��byW26�r0����V� 4�Q0�H�Ń<����5o�����4�x��Bˁ#�$]㪬�� �6�_F��Wd�gFe���c��c�!��!�����Z�3KMB�Jy��H>�i��&[!���-g_8��!�y�w[�R-�*��U�~����F��z����P����*o53j�"����P5��~���Z�G�;���3A��n�[�}��#3���[$�ŝ��8�2��G��:)� +���j��b��7�� +�S~{���U<%[�vv8O��&��]�j�l5�Z�UoÅ�g D��=��lA� �-�іuv��^_�82�� ��� Mj�yup�����z[ߋF�^��t�m_�v�Ѡ-���.��J��f �;����x�N�-S4jX�OQ��yF��B�Љr�N=�)s�M���d��UGf�&;�G���$A �e�lԾ&I �Zm���U[9�#��_�l��"�JR���y�_.A�m��?%O�vE���<������C�~v��켪��z�Z�u\��������݃L;ݤ].�����-f�Y��K;��VCZ鱺ϑ�T�ϔl4��&�z?�VC���ݦ<��Vz�Od���)F�Y1����� +�}���p�Э��;.W&[m-z��[�������[���<��%� .��1�.��{���Y�v�� +�mH�r5�� p���~i}�zG��s�ޑ��lV�w��j3���+��8��z����J�H]�!��x3�F�����1��F��|�J�n�3�\�~��}vB��?��^X@�_�q���k���\�W'�[�R'�r�)�aS�PS�E$�P֒��Y�n���M:�_���nA �&�����_�`e��?ڄ�_=������?�*.]���Z�t�}�u�AĐ�2F?��Z�=��)=.٪co�r�m��� ����Z#�~�-b�hf��N��Z,\���g+���L6�kG���9֘[�=FP`UA!(���BL\���y�jG����)jIj��<i(&=�?�m�Wv�>B"���H��<�-Xa�T;��]�X�����)ȿ�q�JA/��]X��:����K�_�u��t�ي�-�7�%�?�s��#��nJd�ׄ=ӓ2��59M��iI�It�}� ~�V����V"�-�֞�'��#�}WX�w;ԱdUF�G�m&G�vdo�B����F>\o�s��ѿow ?ГQ{��n��D�]�n'�zV��;b:�O���C� +F�����!Z��eƳ�I��� ��3���|�⺆+��,0Vg�P�F��2�S�ŏ��.�bE��K�3���0Ɣ��D�Rw +� ��/�h>;w�p5��G�\�֯�ȞO��z���������t\_x̽M�^ĝy�E�.������r�,��tdžW|�����?~��f�?��,kQ<��CbR������N����?���t�_���R)��R)_���eb +�Nl�e�V��.�~ '�R����*�����7� SrX}_%�zN�ۊ,�����~T�W�>vz�)�*� b����.�.=�x[�g�.�V�o��"����ծƥp�;�z��lT��s�P�4殹�{Ř����ÀJ0��AI w��t� �Z;���&"��u $�i�b#�W�^���G����� +8�ܦG���g +���f�Lw0���3�h��d�tJi���^���ί��`��T�m�>�Iڝ��AJ�Y�ޤ�[�+��x7��=��&����[��ԭ� ��dl���m'2U"<R���3#qj��x�kC�V���G���g?����o��4�Ov鍸�?�����!����X1_�d}<+�J�B� ���Y�7��mb������z�����~���}^\��������֠��EV{���>�νc��|�{�\�J���7�aB����3�G��f��f���1�o���ߞa�M�rȜ�Ğ.���|��G|�s]��y�.o����΄�ϼ���z�~*M���8����}m�ڤ�$��R^��N��%������������V�X�yXc�:���;Wgy�Ll��¼e +��5F�\g�ݏ���$U������O��ϟ7I�����'���\�~V�Sa쵭U�Rݾ��Px�y���G{] �ϣ�ē��S��5H�}M&�LU��g�p�u��F�RB�n~.��Y/|ɇ��$ʿ��,���X�vM��揈58���)%�����O$�1"�<��rI���#�w���">B� +��6��-�c�����|�-*�����p���� +��H"��\,�kVY4{�63��x,i������9��������z��:`�c�uR�|Ga���k��(W{��\����ҡq�Z�4�������]8V_�أ���^�����N�b?�3�L�C��|�V�v�$��O!L�2�u�/^�z�����"gY��4�/�\��q�0���첔�`��MX�8�\;�`��58f�&"]���K� c'�n�aD�'A��g���$���A���Q��7��W�o7�auA��w�' ��PS���]d�7l�4�;���5L+�,Q�~����X�E��q�_toF1�eS��]�W�X��Ý��5�3��q�+�����0kQ�l�m�W�zk�.S���s�U�*�0��_���ں0gj�r�܌br�����pY~�ϝ*�V���p���+~G��HĴÃ{L��������b_~�[���S �TW�L�t�e��,�TP@�[��Ź;l��d��h�1]�X�?��Kk�QHf�{���?�q??:�j���2m���֓� �ce��㔤ݪG��՟o���R�C�+�-�~�,��)�%E���A����y��n�L�昑�:jO>*huٵ��ʢ?�s�W�X��>�3�D��-C�ʎ�<`���\B��~1a��5�f/X5��3�m 8%c��W8晒�M�Se5��Z��N��ےƽ͓!?��w���7X�v\�����}����9�q]�['��y����l�a-��u���j��">�y?4������(Ǒ�6�i�X���6kc��9��(i�UR�>^~Z����V�t��6}���&���[ N�����#�`����:�� a.aq�������7.fxb�i�O���)���b��$�D�����u�$�AHLY��!�ϡ�Eӥ'�l;!�\��G�8�r��q亮��5�Jצς��g)L ����2���v�0fA��I�;����n��b����摺A̩�$<�� � IV����z�e��C�J�� j�P%�c�JY�2'�)q�<����!^��r���4���1���D^�:��Uyy����|b��y,�P���vs��lD�'x��N���&�l$.�N�y�Q/d$�E�JS�:b<��I�$� �H� N�hd>���L��iRc̭�i�reN�"AE^�$.���"�q�X�s���h�#2�$�׃��,��0y"r���OZ� +�� X��硺�Ɏm +�ᒳJ������S��N��E��I�Jc-�!/<���C��=G��*��N���~�z�`�}s�֝�Y�dے���=>�864w<�9M�.2��KE��،�'"ByA@���z�A[t]�$b���4mQ��a=6 u�NLb .��pT�,��(KD��i����녧�G���O����U|8��Ύ�R��M�6�L�g�I�V?�rT�ĉP�us��~�I�h�a8�����cۥ���'`��I�D/���s|�$�s���;�PNM�U�҂~̩���D�{ ���r0t=�~R�&��{��G�MM6�~��%Y� 2���8��Y@�X�!�m{�̒�����Y�R��������,rB���� �{�F��,�C�hIw#nśtŷ���F/ ��Y��J>����4'ؽ�b(��@O���r�r��W���{�b�u��;��Z�4�T����;|������V?�� +4'o�X�',߄xS�v���&nVK ��m$�mh���,�-����5Wl]��~�YA�u��{�;�4ŷީ�\aY���z��ڮ�=��$�����ޯ�e*�D�=fQ���!-��a%���;|"Һ̱'�-3�����T�J"���^�0I۩4��� 7Ҟ�mމ-���}L[0��Z�r�l9���Z��i]��n�ʀ�B|��~�V`���Π�>�zga+��7��Ǿ 50}�E�#�;���4���a�L>�hL�����і�Sw�H��04u�E7^���T��Ҷ{�tӰ����r]pΰ�ʎG-V�fq�95���ι�N��ܴ]�&�<2����̑!��P�^�6���:-A��['0ha�zM,&}�à���%I����0O��ZtW�1�˙۫,]��>�=Ƅ��f�36��ea�\�F>�kD�}�y�fE M�8���@ �c�) �1W�`|щ�i�;�M��K��I(�ѧ�D��}B��{�E�N�,KrX~_�K����M�B#6�l�4��N����b�� rb��0/tB��|Jb�נ�x,HȂ�I�0@��!=R�O��$}��B�C�)K�4p�0��L� p�8��������O��}ɩP��.�e ����Y�9Y���q�g���c��cϣ�R��jw/LS'�q2,��S0��c1ׁ�%���σ�����eq�ei�I��1'�1����SA0Z!\�@�����I�4<�!�[������9�ˀ����2�'BoR��8��j�^t"�)�0N�������8���Ȓ�_7��.9r�͂�p(��x�$y8! "8�ċ���=������ʐ���Ԡ�5(q��y������X�~�8�c��"�Mʙ�qDC�4�CÜ)�Eb,����4P��I|�:A(\P�XN44@�&����4���s� DřS'&��CGY� +v +��xK/:�4β8��q�\I��(���pp����<\�=��.|�^��P�`� s�, �yu<b���cѸ���� O= +j��0 /�|L���7�!^�3�ш'`a +�.�=�à�x��>p�4��,��$C����@H@] �LS�RX�<uH��,���'��`\t��0'����.1 +H�@�T!v��Pu�]r�`_%"s7�A +Vc.�rG�KD9�`GX�q_�%��� +��"�D�:��p�.�0>����v/:n`,��q{a�a1��9�`�mFG�Vâ���AZq`0$��e���o8ػi��`����<��K��' z���B��4t��K)I����M���A 3�|��Ԓ�E'w��m���?���/:��GI$2�� 0t�8P'L|AY�2��Nq9���O"N�2 �ק����6���r��$�so����)� sR*�pC�e�.��gy�c�4WI[l����'q����V�I�L^��0�#����Q3j|�ѧa�"?�WD) +/�L�I��=s!?�Q5�Q/��.�\���D�M<LXKy���H�QT�,Nr�W0;T~��uB� �1��P�bk�� +�ƞ�� w��0r�cQ.��2���y~z�q$�-�H�1��C�-�Ϙp��y��;H�sv.9r�rD`��<��-�X�1^��,��ӵ|�lpё"<�1C��j�������ӃZ:K���7Lr��qH��3P2�Ni��L�Y螤账$�i�o-JT�:�Ϲ�1E4eT`��$,�� �,�0g���~ +,��9�Q` tM�L*��!q�c�K�D2́PT�}�Ž���cMD ]�1��I��R��X��GZ`�2�G~B����1q[�Lu�?;�4I�{�8��:��37v�8e���������jۃ�L�=����K���O��$c1����8̀�y�!�q�;�7l�SvR���?�;�8�A~�bu�J��d�D�Pa�'~П��]���� `�����(�~�>ؠ[� .<P�N��n�9di�e��Hİ����k�rN)��q�N%��:;�$� nd�����"A��6*�n�"`��sE�X�E��o���+Xwߏ2� �@��'q����ZJ�xzq�_���nзe�l_���,D#�d�^N�\>.��k�P~����^ȗ�}�hf$9I`:p�c�;Q�XB�!ؓI���B�CW7���";�;����@�f}B���f�����C��{���� I}B��၇�4��N� ���G�8�2h����(���@��� ɀ�� I�c�Bc�"[F9�K]���C�Xs�`.s� ^�E)hKޱRc�9_���J�N�t����7i(�\D%\gNpr�8'�M`�9O,���)ͣ�E��G1��cp�yf"������;�+�ۍƋ((1z�r�a\���-��Q���8���y�� 1 +%�y���룳�30�l�QJ����ScR�Y?�1��Oџ��y��2�f(I��,H�$��z۷�D��S��\�pՈe��fn�� ��4tI��g�5�.�<�lHH�He"0�& +H��r���0�r�ӘE�qKF�@之6'���<T�i�x��0u�MJ[����l�r`�;09���d���r��H�� <P.�cT�^������}���3����������� +��C���c +�1�Wu����p顃C&ׄ��+!8�!�gQ�d�Hm�U��V��\���u/��ȥ^ ��s�0�)q�}��.��tP�z��:���x3À}"H��^�m堄g +�.c�0��� 虙��tt�i�=Ɍs�y<Kr I���;Q� �)gq/��c{YL��#�b��G����b�(pb�Z��� ��=��ӳ��j��)��ƞ�A�#�19H�%q}�i�#)$�bf�s�p�x��!�ǥ,�)p"��I�of�0��O2G�2�9O�d��$J.�4��$�^��Pg#��3 S�::M}��gNB����0M�����>����Yon߃2��KD�b�U=���$�c�2�N=�e�����<� +�� ���>`A>�j�B'�X��!p��#�/���3�����3mއ9����X����2��,L�<��֕� ��'ۿ<@���K�?T�oY��e4���K器���2]]���n:��@%�JRG�500�[�.[,�4��n���kjZk��i�I��%��D�8H�8NB���)���h�5&%��V\/wgJ�_�a �G����9zOQ8�l��Y����b�� p��@�sf�H&.ə�r���,��#�~�yA�%Y?Ho�lUfv�u|ri�x���aB���s��K�0��0B"����vI����2/�3_8,D��|��~6Pp��sCq�|��ѐ 7�S'�D �w�TBR� ʼ��"�*3K��enGR��.('ҴK�4���<|��^�ݸl��` m�B��˹�++���1��+l +���7��|�,ȉ +�>$<sb"��r����uۧ�Hǰ}��}�iF���!2 8����?;�n�Tf:��st�X+��1 �{�������)I�$�Y�8:�����4 +=�̀N����Y"�XZ��0�AS'�5���3�/u��B�������G0Ib�Q0�������Fg9�k9*Ӈ�4A��AGN�ʻ6� ���!Xnwb�G�ߌ���!ϼ8�Q�秸�k<t|���g�O��uR���(�D��Ƅ�8e.�}�i������2X���`)�%�!2�Mt]Wp��1PcElw�1'�{,N2�8���Ed)� ��qBA2�Y?��7tb��ܧ��v�&ys�r���,J&���O /�i�OA�y�]8i���%q�_n�i@2��S����ㄗ�����f w<Nd'�]��$�NAD���l�{T|�6;�7)!r�~�L���c�e4�O��'!GJ��I]���9�ID�pD��,���q�]D���)�^�阓5��0�(�H�����(L����9�K�A�0��3�\��MEɰ��I*���D�<�?������&�,���Z���b��2�5#,� ��#jq�4�l�9ڜ�(n���O���GZ f"I!h��ۨ�:&�Ey�`}�#����*�2˲�z~�������1%R��q�Q�� ki@g�:�4 ��Ń2/�'u�s6i2'��>���M �Ͳ�����(8���3���r=�֤Y����9y�%BX� �jC<?�8%b�O�zy�T���,��C�s��[LNj�%`H��{�R�����v�s�S��G!�hJ�ӈe��S��Gԧ��j�w�31�� �' <� :�,+�"�80�8�����g^)��~���`�W��@7�� �A�0r�y�Q�EH�{$M�<�~7A�a�<�f� v���L��8���SоC� �i:Qt�����4u�1D��Ĕ����G'C=�*�"�J�����(�_�3O��pe�ɔa>kc�?G���S��s@���0�8��g�ljﻜ���`�y�o݇#�&)*v�M���8a*�~��Fs�]�jH�:>AL��q� �@7�=y�h��{�c&ƀ�K6��q�dQV�}|�Tp�����H�:�hs �7�<��\��&)���ĉ��"�����O��r:������]���I@�مH��1��N�Q����6�E��K Z����n�YiA�&�d `4�=����9p�0�0�CeE������{3х1� �ǻ\�����h���=��Q�8����8s|L>�"ˑ0�0��,� ��s[#ML`n���x��En�$Tf|% uY?2���2�(����>`�z;����an:��(<3[g�L,q����laD@T�G�ɱ���-U�NFM��.��<E�1?���k©��� �G�:L���@(hD�w��s/��ӁMII����>�9�@�x��8#��".@c�1���`��`kD 0���}�w�V3/kt"}! �,u\�=8?2H��,�I�Ipf�in�1=�t������^JC��^Brߣ,tOօd��h[�����;��9���<L +P_)�08������3b�����(����!Z3P��T�2�n�FJ⧸�t1vQ)�L'2�%q�ez��D�t#�r��i�[��y�d�7K#Ǘ��~�c�4V7%��s +:�w�ܢ���t��8����"�lZܤ��DE(�wC~]���41?N3PDY���/�і>����'X�&g�ib<�cq,�!��t��0 G,�N�XkJ����Z���<>1F�}f�� �/p��xJ�ӄ`�g���f� I�e�w��s�e��M"�����[mbBJ����[���vGd*<7���"� /$;��čr���N��W9����Q&���¾�N���/���I�>y�zY�����Т�M��C��tB���L(�V��"g�<�0�h���~,�@8>���1P��q +7O�(��0v��� �����$��0v��I<t %1�� ����iGOnS�FX2GCeԦ~�� e,��n�8�(2?eN"��"�c�L��0��A�g>a�(�v1!Tt�01��ǜ ��.I�~��P�'���V �iYN=vϰ���"����G��{A:Ls��t4wȜD"hH�g%"���#�^�d^O���fN�n��Y5`B�qW�A*r������ X�)�(�7!:�Pv}�X0�������A���p�#w(wB�K|l��fX#�=��v�NI���nm��yU���AA�1u�S��1��T��0����N�AS�i��}R�[`��Z�"�@�y��F&�h�w>�E0 `�Y�9+�t��뻱�d^?^ǀ��:!F]��Z��8��J.�ݘy %���/%�U�U.��2db��8MNB�*[,t�$�ib��(o\��J�c�9uQy����〦��n����Q'�9�(v����"(���؞0"^v$�1��� �P���.w��CO�LP��YFR�'��?�7��N(u9O#��"��t����r�i�ƴ�ШS �'��:a�=�"Hq�ߘF�$'I��� w>��S�Qư�/|5���3aYx����Kj���K��I)�D)��:� a9#����٩%፭��4J�AQ��(����eNI��,�0�G2�q5�8L\/�j+{@i0��>�LPf� �5�4d6��� x�a;;_[�<v�$ +��y7@���J�s.Rt����k 9 �,����8�0�v�IF=�&NFc�Fj��E���[��͝6��(���N�%� ����Y{��<���G�p� ���1����,ö��?�1���и"5M�5�\Ŵ�L8�@�=��]���M��� 6�|�8�#;!��x�E8��P�S�=;�A㲄��,��8�@嬦��4N}��i�u��ܹ(C�ē����2��ړ+�vNArӈ�����47�7!K��S�1A���0���q!�4���#�*yB��h��Ս�)�,���ҏ�9��<�D'� +h�bVC���*�@%��F긊����Ȝ0����b��4˱{��dU'Ԓ�r�ԓ!sKh.��8���V.Q��4���~���l֙3L'�9���ئ�#X2&�*�D�e�X�5y>!O<�u|W Ri(a��C��.%�#]�g�����{;��$�nַ���c�*�C0RS7�<���x��re�Ɲ���� �Od�;N0N�ȉ)w�ۉ�ORƩ=�-,����8�(����.(j)V"4 :�Ҁ�D���G�W��y��A�'��2 (� �m�<�`� �s,{���t| &E�����0Î�vHD�'.�埶w+�r"瘁d������~ߠW +�1&����j<��� �A�s����7��7��7�.���� ��E-��1A�"���Z�3$�H��yM�^G�,�>��^�2�d"D��#ًs�e~c�GA�G�M�?_�c#�C]�}�\?��9"�b];�2P���X� +��n�5_��5���Ej�N������8/d�d1&� (F��$�H{��(c���-�exu��7�Zr���O2L2�z!�[6t�l>�%/�@��6 v����I�'�����>p35�c��(K��EI⃙ƏA�vO���K���&��X���'��QH�(tr_y�'XN:����8�����ɶ�č?��eY��̉AO=��ↁZGc����V}�7��½sL^v����]7m=*|�L�g��Aߎ�#�(�v�w{q+�qų����#�S?F���)�@s�Y�,bY�p�N�~�Y�.:b0��(�r'u����A+�xF�4�SvL��#�7�3u��r���y�����l9�1[-�X� +П��!�5�H���<���1Q���q��Ɂ&��G�2��X�4�GH!Au̷��yA�20�݄" uu�%&$AL�IpLW�P2p�u�Q/��\���j��ě�3c���I���aVG�3�h�j��KWY�P�9����4��yD����|�|%�P?��<��1���i�X^��Zl���:�d�1�: �2��ƾ-�'YJ]�oEv���uLF��ȩ摰<�"���$�����_�3�zy�<*�����8q"�Q&aY��LL5wS?͏~���p';[��#l)����н��MrVL��$#G�Zg��j�Z��c$ d�r�!H~�<'��qh� L�r���uE2��X�w{�NG`^$"�.�� ���2��#�<��w��C����e��!�H<l!,�(����&`�f�r�'3)n�d��C��2J�0�C<��*�I�牗�c&P�t6�Bc�j|�f��a@A1�dVo��8�0Q�%�����) լ����|@G&�ǙG�ȡ,B<��� |�X��$9�y��Z:w.v���"A�`,1M�� <D%p�N�4|�t��d�>����#L��H�p��0�k�,t3�F�$q�c�g�)������(6fɱ�;��,$�X�� DN=L���o?o�nV#H�:�X������ j2q�~�< +����9�DS��}��q����,�M�c?�4�IZ�I�C5�1�0d\d�wh ��a +q�"�`�<L��m���$�8���9�"pt�2�/����p�����W��k�����k����$c��p0ʼ@���.��1�F~�>���'��#������E�c�I]�}�V?1y�!�b��1�� �M@II]�gn�x���K��F5ǐaN'��m��<+q}Nb�Xs���2w���x{,�#�c"��{��������~L�����U�]�|0��c�M�N�>q&"����^���V!G�Z +�p��f)0��wx*��H�KA���#l�叾a��z7d���A�H����HP�G�:�~��cq�E$r2J0y0 +L<�����=bY�~=ܥ��~�r%uI�:Q�n1����=E�'�r����tv{�?�����Ŕ�>�w +��{�b%H�Y����I�8�0���#S��b�耺<�9�� nu�"T=��A�����ĸ<�F���Z�,1�1t���j�G8�x����= �fG�J45D||_<�hܮΗ�qt8�G%L8����a��qO������W��)\��lG�$Az>��-Ob^`�t�a�pP1Iҟ���������&���.���`Q�P�DYF��vLĹ��W��DB7��G��+?��G��u�v� +���MDh��9��G���=wI�N�DJ��l(?�~�c��A*K%_h�yd灠��E���x��<M"�g��{���/��ؑL�I +�ES��A���W;��IR���V���#��PFA:�/�)��<6B?y艇9�d��x>r#��Q�0�F��3J��!�0�O�#(y��!��|E4`q3'I��- ��Ah,�$��#��`�+����}D>c�e�P�*��4gyJ�,�����t;F�D:���y>;&�����YLD�?b�<��rP�]��S��2��*RF�����w��b=���U=t�8C�!E|wL4�`�"�e���n�J�̍Dzb�űK�C8(^�)��,2l�á9�t,��l���ӈR��;1��@�K�U�<��ry�v�U+�Q�bXz�� +�ʌ���V3y�����g���[ ��;"i��X��2s���ʢ,r�eI=ȉ������!u���l��{mD->��DP���Xr�@��vV��)���a��=����L-���v4��>G�^��^T0u�H��<��E�{ڗ���x�̮Ř���,HY��.�Ƞ6W��i�%iG���#��U���$ǙɃƂ��T��̍}��0�){Xf���V\s�"b���(�F"4X�)"�w +�0gY(��b+�#L# �i�t�y9(g����@�G~��${l<ll���"�@p0^0�Ǔu�ĥw�1D��ܪ��#��ĥ9A���#.PG#sC�0�7�0�=+K��c̄��| V�l�I2�ƙ�����9��d��@0ΐ&�`X�b��Df ê.�U�풦��2�!���؈]��x9�P�0�=�9��:~P��H\+��ERB���&�c_�L���I�@����ڍ(�/ �vG� �s��@f�9Mrl������IL2?�"�4]�,S�x��8�0g���qc�x�2�0|+�)���q�|�E��si������No�z�d �&^���A�>����O��Tt��JiLF �yy��lG�u��DJLh�ڒ�Zі�,rI���rR�8�en�E�м�%Ӗ}Z]�)"�?��`l�1 (ỷN��z�&���M3����,��5����$q2��q���#�0O�f�}��RAɿ����4w�+"=���5�s9�.�9}���Nl�j?�E���� ށ��ay��}J)��� :+©�]82�[rs�sG���Tf��L��K��rGYv�1ҿRΒ��pI2���G1��Q��Q*�ӋpF����=� ҏ�c�?Y!��~Fi�����t�����`�B�ܖ�T��%qLCq�x03�I��I����nu�4K#��(d�>(��&CG�K��;"���#)N$;�$4���Md���8"�y�9�o���T4�[ g����1���o?Ɠ���y�����X�����7�=�nq��g�d#� R� ->[�:z���_�?�d���L@o�#��|�2���a�w�pR�� i�w��p��߈��G�~�K}��mV���&3�Jf�Ϝ@�6��0}��$�[�;3�{�͖��~�>�.��{��� q�Ŀ�b0��� xS��P��oQ ��_�3 �3_��w��h1b*)o���f7��l��s�覣�Q|�i��zR�a�t~>���y��O�W�BA�Cc�cw*'�+xF:X���o���[.1B$���E�͆l���F?����ٷ%���fܠ���͊�m�[qU&P,LM��z�I6��[P�,9��|�w���P2q,���8��U;ܾ��J}�`D"=���Q�&���m%��DW9_��ɦ+��#�{����p��\�Uv�վp4�����>�c\���I�|����H�����RR ��%5nw�!�ͫ�~���G�pj�J�b�]tP�B��0�O��x���F'�ȕ�o��e~���0F#��]bX��k��84���p��-��xn����o��t%�îV�ө�6T�KL� -��c����u=ΰЗ4`T �>�/�p{~���:�s�*u���h*���йVg����������vv�qIU����w�t؊֡� -Z�q��=����f&�z��r�?����&��FWZ��[��Z��u����.D��G�n����ky�KR'����}��^����]j�a*��`~���ݬ.4��:�~���)$�e�Ly�y�/4�?���Q9".#���,��]^o�~�R�O\e��`�J6��.��o�9lSQ�*c�$�����M�{W��C�ϧ���sc}������չ�_9�>Qd����m�����[��ǁL��O��?v��,#� �Mo���Q-��T�O��9�#e���D�x8�� [L����N�tR�f�[��=����|k�~��W\�]�Tw�d���,��]"��C)�Z���r�'���װ��x<�O^G&}%��2JOSl"���<�����N[��1�q-�|��߉���~���rLYX�H�Zw$��˖Vb�����x�-�C�]od�i���f��6���7ۍ�Bv+n7;帽ފ��j��-W!��ava�-�:�D��p%���,��c{2��4+G�ҥ�2Х�e�a��c^��c@-F����3|�#�lV�����5I�gsj� ��(���5_��2�]��2c�_��]#��z �j��s��mC��:U5�s;����_�������rs�MË�]�ؼ��X��[m�мF��"�,k�#@ּ����3��l����-�d��t���>r6���~y��?_�-{�������s���h��\���e�k��,5 �+��"�P��~�l�4����}A�t������myvH���,�BV�����w�?�UZ��B�C������̨=w����o��C����-�*j}�8�@�W��3��n��ퟎ�|��l��w�����.�G��0+L��eƋ/ߠ;+txO���fW�V�l��u��<�#hK�0w������dku�V� 2�5���\ڲU�t���G[���6z}����6�~��74����1���~���m}/�{ᾷ�5�}�ۡ7F��`PǷG��"+�z� 4��tó3t�;U�LѨae/<UD���Y�� -1B'�:���16e�n���W]������f*�5���ϲQ��$��k���Tm1䈎<~��B��+ID�~�������L<���{�?�l����=�����J��k��q���_�m�>v2�dt�v�@��R���f��/�<VZ i���>G�Rm?Sv��tV�����Z ��w����Z� �>�u ަ �g���� -+�?�5ޒ�-B�o�\�l���i�o���ZWDoq���:����d'�0��#��?dd�g��U�[(,�!9��P��ɣ; -�����M��}{G���Y�1k���솿����6�e��+�#uIL�H��͐�kGg�Ǡ -i��%*ջ�Ϥr����� �C����W{a�Z |%��Ϯ�.�v�ra_�@n�K� �Y�(�M�0CM���CuXK{g�úA�v�7��W,f��`�����_�}�_�����h�~��;ľ���ܫ�t�ck��A�1���C���.k��db�3��b���d����˙��߫'���/km������2��m�;M.k�\pu����Ђ�2�p�]�/J�Xcn�A�U��(�� -1q�?T浫=R�O��%����<t�$��^������K#'[���`��S�4Cw�bmKdZ� ����m*��w=`���l�o�/}~��!"��f+f�0�������d��O�phл)}�m^�LO����4yZ�I$u&ѩ�&�eZ�K�_��[�ෘ[{���#�8��]a���PǒU����qcؑ�� -l -�[�p���E+G���%�@OF��ֻi?Av���L�Y�3���p>�S+�*�3�h��ώ{$���&�gz��W -��j����X�C�����N�?�B�Z��,�ό?��S�z�J�)�7T�������5�m�\���r�[�"{>1���f����Osg�q}�1�6Izw�%������ˍ�����^����72���{���`�ҳ8�E�(V{�IQ\��+C�:������cX���~�g�K��?J�|��R��)|�;��� Z)���5��J=��ӫ�/\�+��ި&L�a�}���9o+�xv�w��Q�_u���ͧx��~$��b\�̺���m�����wZ��Y -��ÖKW�����4�v�Q��C-Ҙ����cr�ڟ*�t�%%���-7 Dk�\kD���l#�%�D�} ����^�x������z*�Pr�A�o�)�����)3����"�r����R�!�(�-~N{�ZX|`;�.�V�E�R ���x&iw&�)ig�{�Rtna����� �����|P -rW0�omZS��.����/��0�T��H�*Όĩ���ɮ [u_�Ez؋����o^+�p>٥7�����'J���*?CH`�| �}��$+�I�(~�?g���W����R��+��~�FTB���o�yqw�c{k?sX�"�Y홟���[8�����-��r9d(+���ߨ� �>�~Ϥ]�O��R'�4��_~{�56��!s4{������.��um~�u��}�^�2;�>�&�����4���������j�⒴[|JyI�;���>B��o�Ͼ�[9by�a�5�xc�\��2��B -�)H��r�w?��T�C���?IL�?�$]��N�����+s��Y�N��VmKu�;C�)��^b�u5�>�nOJ�_�MUD.� ��5��2U���Q��UJ ����`��g��%*��D(����8P�b��5A#�?"��p�맔Ğ�#?s<��NĈp�+�V�%����ޡ��x�A+@۬�v�菹�[_�d�7�_k�����*<�#�d��r�<�ADXe��A���#�8�q���ZV.������z��s�N@��x<�U�]�I)�i�A,���-"�\� �bs=�K���k��ضv�i�?v�X}�b�@��{9,\B3��;��<�X31Q���ZQ�Y�P�?�0�ˈ�x1p���S���e���<r��s�ĉ��Ox,h���R�]�6aq�s��˂k������0t���.u<7������Q �Y�C��{t���K-�C,��NfF=��|��w\q��d��M?�-�0���BM%*>w�QްQ\����[��1��D���#�2�R0c-�Jl�5~||ѽ�x�M�:[t�_9�b��w�����Dά�+�ѯ�[_/�ìE1�a:�5_9���L�~[�)WY��ô�s|m�*v�k��-�is3��韋�c�e�Y?w��[m6�Ýjή�Aa�# �"|�1� -��B�wO L�}��n��O5�S=\]2 t�ͻ�I(ʳDRA�o�FT�n�5֢�G�tch~��/��>D!�a��y�k��u� �0� H�Y�7w˴e�k[O�7���9��S�v�eFXLW�]�kJ��_�|���A�T.�\�|U�Nj�����2��2����cFVp�=����e��+��$�A_1cy�F��μΚK-�_���+;��>��s �v�ńջ�,��`�V��k�5T�����_�gJ�6�O��h�ju�{:!�oK�6O���CD��r��`��qqwx�nH�� -�'��u�2l]��~�վ��i��c�i -������������+ǣG��$�b��3�ڬ��W�L����VIQ�x�i�6C3[�������Ï"�W��n5p8ao\�g�����9^�FN,\�P.�����)��R�.߸��)��.<��F�@�?d<�}���9^3�3�u��!1eQ�;��>��M��H"`�a��sa"u����Ƒ뺞OL�c"~�D*]�.<���0�����`cx -�!�K'a�,�V���ߋ��OF�G�1�����:^$`7$Y�"�"�^��6Y+�b'��B��1(e�˜�����J� -�xiFh�}�ӨJ���g�Qxy��^T��r�E��B�?l���f�����;Q�̚�����:�G����wA+M���H�'i���;4�b )7t8����4<c�3ig�I�1���Y�I�9��y�����拈�Q b���!�fS�}�Ȩ�0 -\ζ�d�<J�Lx�0��JԻ>i%*l$��X`E�����&;�)8�K�* 2�r�oNqV�:Q�b$q�3�&�f(��t���27]/�����;�s��Iꁂ�����Zw�gٓmK�#�������I���4�3��h�/��c3ޞ��A�r�m�u�C��E<�'�ӴE�'���LX$ �}_81���\�Q��$s�,���ɒ����F�?qh:��rW��܋8;�Ki�7 ��2�r��'q@2X�(�QEL'BU��A�� �'y�a������z�w�^�[�m�&��6���n�&�C"P��gN2��i̓��y�z��cX���A95�V�J�1�F��% Nb������aHy�D��=65�@� f�d$��# �RPfqc����q3K6��bfyJ�t2�;�ܳ� i�rߏ�<�uNxd9��3LE@�%ݍ�o��nZ���*g��+��B6�Ӝ`���}�p��JH�=;Ph�}� �_���務�i���7ky���R�Gn�����֗&[0RX�D�*М�yc���|�MA�M����Y-�|ڶ�D��iP?��C�X���\�u��^��f�֙���8��z��s�Yd��ײ���j���|��T�B(z�Ζ�����E]oG��,����n7���H�2Ǟx�����VlR�*�T0��{-�$m���W�&�H{^x�y'��7�1m��Nj �A��j�ky��u���y*n�7�=[����;���� ����C�j��&���=���������=2�Ģ1��;k�G[O�Y#���ԍ�x-�nR��J��1,"�MÚw�6��u�9ö[*;�0X}�E�q��l -v;�f:ɚs�:tٚ����{J23G��/C]�z��X�[��n�����5���� -���$4�<�#�k�]Ƅ,gn��tt�/;� �N����Q��4F� ��+r��8�]v�q�.��4a��>5 ��4$�\���E'B����07�/�c'�4G�"1�� q��ax:M�,�a�}�.i�4qxD\/]���N�h.:?/�N�ȉEN¼� �3�)��^��W\t� !b'u���p��Hq`>1ϓ��S����,I�����w<�05��q�$�O�KJB>��%�B=��%4L�j|�g��d��G��i��:ΏI���=�J=��ݽ0M�(�mȰ��O��Ϗ�\Z����>2w��&F`|��a��q�'1�ǜ�Ǵ�ˎ?N�h�p�Crx�s'I�L���,<ld_t:�b��.�r����Iq@C�㘣�z�y�8� �8՞3���s&"�#K�~ݨׂ���=7"W�1�0^/����I��4��,/>�����.:n -*C�D#P�ԠĥN��Q����`Y\v�Y�R��n�!:��6)gN�9 ��P s�\t1���gN&r�@�'�Y��pAb9���]�0�OB�O�؋2� �gN���>� eA*�)���-����8��0v��Ar%B�������R�k4z��pq�����z�C�>��'̉�4t(����^ƏE�{�.:�<�(��N��4�<�1ULzNܜ�xI��xF#���)ػ��`���%N���A�<���_���^r!uY$@20L�Ka���!IJ��Fܟdv$�qѡ{<�C$"�N��( �mwP��)ZB�Uwɑ�}���ݘ)X��@��/�̃Ia9�}ٗ~�g�*d��T=X�����<���z��۽踁�$�� ����k��$���e\qZ �N\t -"iŁ���;���N���`�Y����lb.9x��O����"L -�?�Ѝ#/�$IB�V4���5,�(�!�SKb�T�I����/�^���R%��P���Ѕ�@�0�eA�@�;��<��?�8I|ʀ\�^���/P�h��ʍ��\ν���N����I�L� ]З)����9���\%m��lp�d��c/[&�S0y}��H0�0�BFͨ�%G��1��(r\�(�03]&A�̅HX�G�h -sF��28�`s��0��:4�0a-�a�"FQٲ8��^��`P�a�I����@:"@!|��5R*�{�2�7��C,��A�E���<;�����ƑT�,#��`U��>c���KD�� ��ٹ�ȅ�i�m�>�H4�Db��TxIβ(OO��M��EG.��p��#������.,w��Nj�,�K<�0�9*�!EJ�@�t38��G3�g�{��Ӛ�p� ��(Q��?�.�єQ��;��8/����@�Ü��SW�)L�\��F�%�50�<���!<�/M��4BQ}�]���c�5�5t��(�'aJ��c�(;iI���X� MR���me�2����(�$A�}��<�F���q�ן����m2�<S��[,�_��?�~���p`�@P0"tx恇���X�\�MN�QH��?�8�$�,�fL�՝(EN���B�q��A�>v�OB�G���Qf4�ƣ���`�nჸ�@A:y�q琥��1?t"�>�S�y�9�`b�1;����L���ћv�s�<�r�8���������y�c��L����ή`�}?��� #��E/\�3�k(�"�I��QYZc��A�j��s�}iDN���`�[��{9 �Fp��\�F��B��sL#�{!_������T�$q��� ���DbI�`O&���]��oW��L3�Xp���q� �ʗ��~��/�=l�ߎ2�$� �S�fn����:�'<�F���a3@Ƞ1f�pΣ/(�B�Z$$��'$q� -�܊ly�/u}�#M��a�Q���a�x���-y�BH���|�:+=:��{ߤy�r�p�Q8�aȽ㜴6���<��c��4�"QXn����1vH�i����w�2�����n7/��,����}pa��4`FY���H�C�I~'�(��1(Cί�� -��T�P�F)M|��G#L�H�f�0�D?EV��!���m�$� ��,>�elߊ[�7cL!s9#�U#��f��9"v�lN��%9�#��0�d�X�!!y�{ �����(x %b�A���0 -�1_Lc��},!��.ڜ,z -�Pv�1�i����7u(m���f�=�i�e�����Hs7�� -�"�QB#��'�H@��Q�z���:βs���s�2�f.�c�XR�R�+�Z��9(���_� H��O¥�fa�\bN���d���EI��#��^Tz~X��7r��JԽ�;�#�z H4P#�����!$�y�4�A��-����.����� ��{A����)�,���H�{8��gfƖ�ѝ���$3Ή��,qhȁ$Ҋ�~�D�'���Ž|����e1M�|�i�"_`�����ej��4�b�(�O��*?��ߧ�_t{��̏�?�� ������㎤�x��e^̑;��S��2����Ч����{$���U� R<��d��<����(���4��z��B��8�S�4L9���4��"b�9 A��4��K��g�{��f��}��.1�{�IFT��"8`��C�M��:����.�>���0*̓'�Z��<�=��b�% -�8b����b���� ��� �����y�F.fc�� ���0���ZW�7\B,�l��<�-�G�G,��PA�e1�:`�ь�F/���o��tu1�r�����(I!`���L�n��l�<�Ҩ_»-3ï�i�Ż��&S��[�� �8 A�?�<��/�a8�֘�<f[q�ܝ)mD�%,T�np�C��I<E� ��08fA*"�S8��A���I��z̙�"��$g��z6r���������d� ���U�م���ɥ�V ��^ω"/u����,�Ȓo�%m��3˼4�|�Y"�z�=�@�E"� �� fFC&��O����k܉R H}7(�Bz�H��l,�v|�I� I9"w���H�.!����c��YvX�{�w�M�}�����#,�&���X��$)p������� 'N(���̉��30˙�c�m�V"��9>S��q0'�_��,$t� T���쌺�S��H���Ib�8�#�4�I�:"���$ɓ�g���T:"Ƨ�(�\7:���g��[`iy��,sMy���@���,N��e�: -a>n��?��$��Gi��S\�C�Pf"X������L�U&-8�*���'�Z��`�e܉=a~3bJ�<�� GI��ⶮ������g�?qC�I�nǣ jN���H�q��B�Σ3�\7bI����`8���6�u]�Y��@����ƜX�8�D�0�^��8'���� ɘg��^�Љ��Bs�ƾڙ������z��( ��"�?%�Чi?Q�wᤁj�H�ą����h�7�Oq�W�7�^~��{��%��8��D8vy�~�`;��#�u�Q���0^;ޤ����3ً*����L? B -��)U�&uIK�t�'�1��,�C�avQ�����{�æcN֨��@�"ٿ�ǣ,0��~��.�%´�θsIc4EU$�JrP&�D�D ?�����S8_��F�����k!6z�A�,�8p�<�� �Ž��PL��hs -�\�aB<��i%��$ ���?l�j���q�� �̎���4�,�B��1���#�Oo�V�ƔH���AFe�7�����xT��$�vʼl��et��٤ȜD���Ö7�,7��.O���S�l���x[�fa^��9�a&h� �0L�$�<���>���S�r��8b���n19 ����!E�aBHY�gb�ځz�OQ�2De����)�sN#��~~L�Q��r[�q�߉?��h"��O�4�`�8�ಬ��(�������'Ol�y�`���C� _���T*s�i��y�EG�!I�4u���a�5�_��&�6:3!z�L�S�OA� &<�Q�D1�%B<�.���%�)S����� �����+�C���;�@Y�<Õ�'S������e:�O�Kb�D����PF�='��r*�{��q慾u�P�����6qd�K�\��H�J��we�!��>��1mS��!&�{��(�䡢�3�(��6.�d�ǙO�E9X� ���"P�0.��#mL�L��54�d�FBx p�����'""�(�+��>����8��O|/C`w��'Eg"�{��hx�^:]F��/BWP�,!3�.%he`Oc��gYt�I�����ш.���#������P��.�sأ3��8Dư7X�r��F���A� -�WF��̋�����1�Ћ\,G¼������ -�my�41��]������P��x$d�e�Ȝ�oX8ʼ�0�R�D��� l� ln�������l��3�X�I�*K��UP�Id$�"��Nت�T�;5}4^����Q��{H8� ������09ƛ��q��3�Ͻ8"�O6%M|$5/G�4�`���"�� -�������j��%���^���AZͼ�щ�4̳�q},���� Y��8'�$��m�q���Lӥ.��`x) { �}���=Y�9��mMB3X���< -,j�|0)@}�����H��svΈw|"�K+�h�@�S���Ia(���n���L�E���3�8���Ŗ�q�c Ӎ��] -�Etn�g�]�!�,�_b��� �Xݔ��)�<ޱr�N������lRJ@z���iq�rlI��F� �t�lR8���8�@eY"S��F[���`A��ybl���XD�Uı<�p����O�$D�(;eb�)����k�>O����Xy���a�7�����)%"LN���YĎ�I�$en�9�߹ -�!�qg7�\�37�o�� )�^d���n���q�����O2�7�p&p����7�]�s/8ٻ_�|�[PF�L�r -��:Y�¾d�&y�`��e�ڪ�B�j�b4u(c$y� m"3��Z�N,����G����q&�����[��@�2�)�<��4���=/'d��G^�8���mDb'��5��,��;��a=I�a� LYa� �Q��q'�1��λa���XH��9�̎����3A{T��������L,G�ńP�A����s��r�$I��@�g��[���Id9��U<��,�����er��0�]����!s��!����H����Cxi�yAd<f��9)��2fՀ �]���Wb�2' `ѧ<̣�{܄���B!��Qb�p�����*���ܡh� E.�q��a���G��;e$�^;t��eB�U�̃pP()��]N���nSPiF�4s3��:�Mɧ6�InM�Yh��}��Q~$��5o��p���Eg�D2��;���.B�y�x�N0�uy��h���0z+��/tc�%�D���4WMW�Drʐ���G�49!P�@l�� �,LX���e���q�6K(�s�i��E1�a�#L��F<ˇ��;�CF���0��u�R���L��c{xّtDŽ.��7`BA"b����=a2A�CdI�����H���;���<����H��e -~0G�ݧY�8,ӶC�N%��b�!��� �ec���$��1�s�x��d�O]�G����U����H�e����3.�as{/�B'��N�Ds�,'��GP�g���7���( 8E������9%y�� ������|�0q�;���������3AY���R�&t��Ґ����็��|m�����(ȃ~���i:�+!ιH�MrėNx�����Æ���¸�'���8�)����#`oa4w�|.�28:Y�'H��3jd c���,f4���Q'���<w'�۾'NDw���@�n���ZB��4�3PԄr��3�D"��'�hvy��7:~�ظ���<�D��Q��$v�/@�N��|���28B �8�����2/��8�'��G֕�s��O�n�\�jO���9u�M#��{���ܸބ, NA��nRO�TtDž��0"��l� eL`k0|�9V7"�����b�J?:�C4�2��+���Y ��#N�������*>��"s��@�Ë�R��,��94>�U�PK�%RO��-��`^��.�R|<X�D��Ә$��z�۳Yg�l0�< ���kb�>�`ɘܪ����c��p���<�|��]�H����&\x�����t1�)��J���&���1X�>�������HM�4�X���ʕ�w�/�'$>���8�8�#' -���Ctl'�?H�����[�D6�4�(s�����XX��4�pK.H�~���^}�mt|q�xSʀ��'���R�9�`?�1{$8α�\�O��y���3'��;D�m Y��X��Nܭ@~ȉ�c�yÿ߯:�}�^)X����s��� ZN$Xm�uZ��߸��P����7'�\�F4�i���.Xk1ϐ�2 9�5^xq����W|{=��C��K�d/ -�u������6m�|�㎍�u)�s�[戸�u�X��@��c�9+dss�M�|y�d�W�=;��/�༐1�Ř���li��#�)�� v4��h�]�����,�j���?�0�Dꅠn����8��8a�$��Dz��'Y�Ӟ`b"�r�����=G�,�R%�f?��=���/y���'`�ǟl�F!����1|��`9!��'F�LxG��'۞7�,3�eY2'A<���j��C�^Z�I�,;��1Qx١��7w��9l����3Y�7};�أ�ڽ��ŭ���n��ˎ8O��"����Uf}���ei±;e���f�����0ʝ��6 -~�k�0�M��O�1ij�8�l��Y�s�a"���)�{b�.����l�,cQ*@�����"M7���;�D��gN��&��Bu��scAӬ!��1��Sr��� w����ᖘ�01'�1]�B��9��YF���ry[{�!�3o��x�� -�'����!Xyμ�ͫ��/]e�B��|~�#�c -H��&"��XB�4s����@�Z��by�rk�?,w���ID�xꀌ������d)u���O��19#�F�G�� ��.�b�k�~�̘�y�a�X�#�ηK�� ��G��e��20��M�4?V��:�Ý�l=ގ��| -��B�B��7�Y1i,���MLj� 2��j��~�I�4��ʑ� � �vơQ@�0�3��c>��I�|�c����:�y��x"�s�xN���f�讎h���;8�I_\mL���M3�D#̣�"�b����sȵ�̤�=��~lQ�(y���#�D>� �&q�'^"��@�s�� ����G�"���$�Y�1F��DDy���kw��T��n�'����Lg #���$�R07�c����a/h�ܹ��ߋtq���4�c'��@�!Rp8�+�8�A�I������B�*�0 ?L#��9����ͲP��h��������8��?o�ؘ%Ǣ�+���b�69�|0e�C���m�Y� i��c�_�"�Uv7���!����(dGs�[�0M1/�} -�ݏ2�V��41�� �8'!h$a�(���X�q� ߡ��z�)��?�Ml@�0����;�( -�h3'������п 2��^v��~\m��a&#L��������ǒ��;��(�!�۫�P���a�Y�� B����`0�Î6>�q��'ui�Z����p����(2�T6 �%%uE��i���A{0�/dB�C�9�LV�!����9��c͍;�$��E�w������0tH���n�a�c�+�19�NVE�ctU���LL8r��4A4;��ę�</�Gz9�|[�aj)��;~����2���"%.U�c��]��?���n�E<pܐ��/�"�/>K3 A������y�i���(���(0�@�3�3��eI��p�n7�Dȕ�%��D9��|�'�����P,(Oȱb�������0��3S*"��)�R� fy�Rd��&̋�(ꃎL��e���,��;�����P�x�-`�"C���}ʲj��T�T���m;<�� ��~� Jc'�$XD�9�*E����}�0�q�:_���97�@P A�0� v(�1�=9�{v�_eçp�z�A�q����<�y���1��A�A�$I���OOO#�l䛀�ﺘ���E�Be #�1y�2�^��� Rbr���S�{���!*��C7}�Y��H��w��%:�3)�+�����I����,�|��E��:>O0�z*�!�4�����A� -;<��cG2�&)M1�Qb_�H -g$Iy�C[Y�ߏp�CAy���l��r��x �L�'����� �ȍX�G��\���(u3�0��|? ����~�<��р�y̜$�{h�$ĿG������Ӄq���#��I��9"�]B���Ҝ�)I�88���w�����~DRG�1�X���?d1��������@���Aew_PO%o�dLWPL�H=�N.�� ̋ڋ�8'T�Ѝ�Y����1�(�͊`�I�һ�+Y27ˊ=�.eM�x ��b>�Ȱ�_��4ұ��O#JC�d�|,'/�W�G�����9{�QW���F���a�Ib+(*32#2zX��l��k����n%d -�<bwX�|̡��+��<�i�%A� '�>�g�{l\��Ş�����a����AE*�c��]���Yq�`� -�y�#�<BZKhS0�DF$���c�za�zQ��u"s���Ci�=h_�:���2�c�� ey�p"��\� -�y��ie�F���W���g2$Zr�S�27�]��8��a�a��[q�a�\��/�G@�(v��` |질8�)�Üe�xXR���0�$$���CЩ�堜%��.��I"���m��4]� �x�x�O���z��=hkdr��Z����a&��@a�0� I�@����H<��,A��1� -�z�Y�X��Y'�g~ -f�\��4.��G��8C�8�a���_]�%�"�8BT]�K�~�O�x�XBD�c#v���,�B���$����AiS#q���I],�gG���}E3�2'�}_�[��k7��O�8$ �'�΅�����4ɱ���ǎo'1��8�0Z�t ��L=� ��8H�Ü�2+čI����DJ�W���!�=h�^x�y�q�BJ>:��ꍓ%�xY��)�8��?u3d3S]�Qx*�1I%���g���) \? -0��hKRjE[�K`��%����I1�L<���9C�`L[�iuQ �������U�4� �1': ��]L���7�\�g^>H�X:{�>���fx�y��0�<�C�1�a:Kx$�^�~��� r������p�场���1��;����8t��G��x>��N��"�)���Kă���t��l@o����18���S��3A/m��e�-�H�J9Kr -�%�Pڣz�XK�F�cpD��N/�aV��b�T�H?^�M�d�l�����3(G��9wLGl�]er["R�n��1}ō���x�&y�&���j0��u�,������̶�e.y�S�r���H8�섒�pH� -7y��/c���C�1怾�#P��n5��^�&ǰ���O��I�Nc�*�ӯ�(��řןex���0� Hy*(�?�D�fN��h<��aJ� �?��U����@pX�"��qAa�d)1V~� \�<~Lf��F~ΰ5� .e�HT�7�=�9�~ ���������%x@R,��O���&�<�#q��}�yYx��J8�C�����q)��>V�D�[&ޢ$q��6���%��8�2<!C�ʋ)1���Xq)��c$ ��H��3K��Dz�kn��D�,yD��m&�c2��mO� H$�,.�Wb� -�s7&<A�r~�JA�a�P�)z�agw�/�0ZL�K��4���2����o�l�����<r(G� -��AK���<&��;��A�+y��I,D�Ø�4��8���+����2�1�˹�?�,�F�;~�"VI�a�z||?�6a$?V�Q��"X��,_��;������K����v�!��/� w�M�q��Qo{9�h��"�� -�4�4o՞�rlCO�#�ͤ:�#�"�c��B�r��N�`����ʮD*ti�>�!;f��Ah���ӱY�"e����D���Ny�I��.$�6�������G��}��;䁲�hP�010������q]@�����;���,��sN\�l���v��*�2�� -�De��%��w��� �� R�()yfڥ�H�w��F1,���RkL�j����6^�tib����i�Y:��0v��p�!�V��VM~�����I�\�%��in:y��V`/,}�j�6�=mֻ��tRU�yC���ӄ�����@�p����u��:B�G7h�u��T}L�:� �51_����q�H -]��U} �3+�cV��)���� й,��̳t�CaqmI4\�ԙ>�kim����~z �C}�{����i��"�4�(���jz?u˃,�X�A���C+����L~�NA����b�@Ƥ�&�����Ay�e+O�-�k��OC�O���B\R"���H���Yr:K�� ���Ϻ˞�EEk�WB'a���� ��L�MM}�O�{ߍ�8�b��WjIð}��d> p�$.L��6&�|D���=HBP}�{��t����O}�9����?w�����H�9l��e:��h��U�PƏ#�e���%�ق����w�����"���7�tW5u����âש���D�٬J�ր�u�ْ:bw�m��-qo�v�knK�&�w5az�{ө?�nC?B� ��� �O�7O�sfDȊDͽ8D���t��)x8s�i�=>�L]��A2�rpz .��{H�:�,I�!����/�����t>���f.���^�(��G~<KB7���Bַ7�MC���R���r[�S���A�}P�(Q��=�=��[dp��k������"UV�CC�H�� ���b�Xzt��ǡ0�b��\!���yI�y�T�cn��#��.i2;��)�;��:�����5�`�!L�� -븻�4��f�i�i���L�j�q8C8�Mqy2oH� �H�8����.�x΄�Q�����v-�,�s��9��{��I��W�d pg�X�_��9�3��}��]�}�����+����[7���$��5��C��>�6��9�n�$�]��))�I#�>��� �:�IsV����|$��o��'���M�=7���)�G|���G���y|�)�S���mj��q�āw��+�'���n�Y/�nq�K7�C�8[ ΐ�D�����_�+Q�w��t�}'�S��$�9����a(4��FQ�z ��o|�~�v��,�����4�U<\i��D��M������o1��g2O�$I��(%. �n�8u�����C��&Z��)�<-��|4��Y�Dz��<Mi�, -��S�&+����Z��æ�$����{Ҷ<=o'���Ze�,�i�*�7����6p�o�4��# -+:��8�@y�����s�1)�Ņ���; �Tq�$�����ދ���X�1��6�v �9La��[7�A�SD������N�y�EQUBU� fΦ<K�舁�����3��J��/�(�I�^"��c#o�$Mm��4��Z�IQ����dwX����{��������0�5Ie�s����N_���j���yD��c��� �Ԟ5_�Q��_���<Ǧ/�b�*�|�hB�*EG�}M�a��IF�n��?���� ��3��3����9v�::��P�� #����АT���QP�GDI@�ge�`R"�>��-�]��]4����5���55n6��!uai���Ely���&�*Ro����_r7N�#��)yˆA���L�� �Z�-�`�h [x���j�d�@)m��c}�c�G��Z;�����r�t�ǡQ�/ӧ�ͺ�M�����6�悵�TW�$N��sA+��<�9�g0-����n����:uk���=��1�����х�����t�ب�Q��gk^�A�݃���anL�ף}����=ߤ���)��� ̾u��{�kx���b�7����N�5~��z���1��rݾ#�3���� -#��5P<:�m,��3�w^Xn\]uH?�Q�E�#��f���m���QJU���G������,ǯ6��-�ߒ��_�w�_zYg�����/j�<!`����7,� �B*�M'�d����^�a����ͯ��ɯ�'�,,��a�����6�=3x0S'�Dt��%�;�L��%�~)���K���<<,��O��X\➖ƣ9虫t���؋�;/��Y��uf��*9���觧t�C��3}w���C���U�����I�?/�Cs�a�GQ&}��SRð�'^]�=��^쌺It1���N -7>�e�]�EO��� .���)+���w��"���tGX β�!ɰH���\��g��,�L�a�������ۢ�-���C��ڮ;���]�#n�툾+�-��Ƴ�'�d�C���\A�h��&�^�+����F�Y.��+�͗��3�S�3����\!J�-��F ��d�N�8D�=2�S�a{l"�Φ*~��#�o���v���{�������{X����(a9�|��([��/$�d� K�wl\t�X���m��놚��s�F����t%��Á����r(ȟ����> -�-Q���;�X��w_���-U����2�a]dP��"� �\����F����I+������+��d�x-)%�0A��+�`(�B������]�r.dV+-q�E�E`ρ�F!z7a��ty�Q�n9V��t�_R�1�WS��qa������%͈��@�?�gN)s��l�h1��$0S"|�n�/f�m��Z�i%���������0�)�i�%D��F�!�I7w�>�n�+����f]�ҹf7�+A�btZP��k�u���:T'�u(��7Kw���n��e�U���mJ�2V��eĨ�kd�1�(��W�Wa�=+ -��Sߏ���(���צ����S����F2"�)�ԶAmkCmí��ڦ�m�py�;�4��0��?�@/�t��6�R��ϝR����e��kߧ�"�HSıi�nJ�xL�,U��d#A*������!]<<��0�A�*���,(�f!S�0�_,�,�G5����`8xc����t.7��d�����&eso#:�?,��o�X7���U_g T�ߣ��=���B�h7�[������]�nX�R|��r��s�&�P1 �ɴe������G1"�s�<�b���xA��b��Ѥ_�����E�`� p�����.��입�����`�v;h��%�L�%��m�$��檬@rQ}Ud�e$�� -u��H^ћE�!j���U�O7��UG�Lיp?���@�r�Mi��{���{\����sb�+�# z�����2�Ҩ':M���JO��3N�L�����ሑ��Z�ԩ���L�{e/C�$������\��y:�#��D�S�'Y�9á�H4��������� �����S��mv���9͐O��6D�F�Wl��U9`N��i�V��m�;GԜ�a�|��7��L�&��� -�뀕cq�ۣ -d���wf�;�]�����g�"{���H�B ����Ǵ�)�;��R�+�Li���"�o�Ԟ0��PrT�x���Y��R�p� ����l+�X���A�:K��'�-~u@kE�w��P-m�x�1�ղ3��VW)���x*�C�7+�OL�(��y�E�;O�^�P��+>W� �]�Br����$Em2��G�bx7}ā��8sA���ex�������"����L]ĺN�/�qM/km;τc���N����N�6^� �"��i�]�l��Q�ct��o�X7"�3PmT:�?��U"�BE��j�dn�0�k.�`\2"S>���a�1v����\�^�n��,��^�vHG�pE���p�~���䒡�Ec+Wg��x}o�N\Z�~�'�>0ϰ�K�~�oCɫI�)�8�<�F�0�'��IňD2z�Ki;�sJX/*ى�B�����Ȃ���v����gI�P_%d`GV,G���77� Jq���T����p�&���z�����N2q�\ؒt"����!�s��Kq�>�Ҥ�yd�g�W5K��d7],����a�H�v0b/�N��OT�H��8 �ٗ�/�]ך}����H��E&=M�K��]���d֣)V*v)"�=�DG�Ú����b&'�!'|}�%ۗ��T�6�s���}�R����f �͔��ٕ-��nܘ����;0�i�� ��u�X�Y�X�И�9"#�h�{��;��{i, �q�ZA���0��n���L�In�{l���@�ץuݲ3|�X��O?.f�t}Õ5n��ܬ���`�G��|$�|���~��A�#�X�U��ې�� ��B߷V?/���)8T(8�;���iN�t��)H��Ņ��N����o�\�z���>m�kqwSB�&V�d��g��2B��`+˷�Q����g^{/�3B�МH>�cȟ�p,����r\)�2�2�Q�9�DTZ��b�>��F�@��yW�~jN��)�s��C)߹c��C���6\�m�X�j�zģ��f�rT�dR�LL\)(0%�3%�HM�A�o�3������f'�B�Ѥ[,OԆ�-�ܑ�_�Wz���eB���#"�9� �����3�ã���=�}|%����(��D%z�����)���F�5�s���R���jJC��AՂ�H�Ռp��@t��64�H�\�D��;~��4��B -{\�:�S�����QwH똡��P�с -��`k�aH��ڐ(��T(����ӵ������9r��J�i�� -�����'C`Z��%Acm��N�������Ѽ��]��c, k�DGr8l�X�<�ku�!�������B�=� V��l��2hݐγ�7��n�)b_�"ꃨ`$�k*и{m��m�� �/j����M���N��%ު2ʌ�հ�c��7N�\���,a��|�< m��7>|xL}o����?&�Yq�F���0���Px�%͘�p�Y��L�Q�x��y�j,Z�&v!�� �YC�LrG��\00�ߕ�������r��7�6��2�gqty�<L�3�oA��r��,X͒j%B��й�74�w��B=}"r6���)F*8�\<��-�y]��� :�$�2ze�8�<�؛���)��M�m:�m8���]$3i-���֦ /��b;�<%[���5gBn#�[�<���S���Z�R����v}#߂��4}�{��jo2i���}�"Wq��+)Ui�Že;�{$����d�r�a6ʻD2���ǯH)�[pd�&{�Y��S��ӅZT��TAC]�8%��ً,vo?�A��D�8���A��C����=��=����%W��ܓs<{U�h�p�M��k�#t<�?���E��"]r����@�B${�,�@�r������VLPn�֜%;��*��Mm��*akn��˾:�o�tv��dBW <�ݰ�n�pḶ�ȵ��Z�Ftu�;�����h�gv���aRc5�BM`oa�%���O����Y���D!�a����ڲs�`}��*=�=�Z�p�=���g{�E`������DN��ML'm17Հ���3S�ע�w����E;>ƒ��Î����πc���\9v�U`N���B�VL�4��D��w9�e����Y��H;e�'()Ӝ�Py!����5�U�>�#�Q^����ˑ}_̥���p�r)]^���gUl=��� -־U*RX�^�P�m�!r%ǵU$#���*I�O�����!��0��2W�^V�0��^_�m����.K�����j�=�J��ً���\iv�Ǵ�wȳ���NJn�� -xs{�����q����/=~��MMt��OVp�+������X͎&���zu]-���9���Ú"�'{p[��s�x(��"�R'6*�$�W���7�Gq+!��Zz�[q���B�}uzIM}r�T�EwA٭�Z��C�i}"�p99�O���czPݢ�oZT����1_~�����샱������������*�kXLo%��(u�z5p�1��l�n�t/��7)4���+мy_E�1跛���lL�����:���ƅ-��� 1]�Zz���5J��g3�*j�9��"�|��7 �%�2ƪ�ym�|�(�1o��s;��1�ݎ�2�y!�1����;�,�c��K.�1����:o�1�K�S62a��~瘸w�T���c���Nޱ��s7�X��G�X��%W�X������1���8���\����;�8}�R���pK^_i9�@�z�by��w,�L���tǐ�7�Rd|�}�|T��7R?N�{ZEU��;Vu/r(n1fj������oƌ�eO̘ �1-2).�0���4�X���9��<|��)ɱIH*�v�T�gy�cr�l�n��%Z�KJi5�R���X.>f��J��"�j-�Ͼ�|E���[R��R���i�B�c���X.%>�ǒYe��25V�LY�&�/��0G���x�T��)Y�~j�*A�MDh��I_+"�DzW\m��6��ղ�:4LK -�W�ߗG�A-Z��J�ZD�dKi�2������\4�כ��|��8�{��H�x�J�U���赙\�5ch9�d�M���pq��_r'���~:���mCB%C�a��#j�,= 7�܀YR��A�E�������#e �Kd�!�<��8u!O��ED�:s��|T\�H�6V�˩�z��X%^e� -D+%놏�Ą��^S�׃�Z��R�(_6��5c^]}K��K��1/�>��ʥ� \��O߈�-6��1�urm�贼�X�Ѐ�stڜ�Cb� n��蝘I����|���������(��jQ~NlK;f*'^8�;m��4� -����� CK��5H��0p��P��$���n �[���L��A�4�j��}��8��$*��1���w���r�?�(�u�0_���I)=�bvNo&�[-��ـ��$8�XI��9��ഫ$Dz��x�#%�?�FP��K�;x�`��RC�]%�e{t�_2eC�{�� [����B�>�E�AN���{�ר���oŀz��H��d��f�t�����T�ή���q�J����%J!rw�8�x�}��|�Z����l��oA������&2�Md��=�7wJ�9*:�w�kQ8�Ɠ\E��{r��,Ҫ�I�R��D���(��b~r5i����^�J�o,a���C\y��˗��jK��0��e�Q�٠�P:(��|.���)�C�(^�WҐz��&�\!WF�r��.H/�c\3�kZ˴!h�8����hCڇ�hCRK�� �E`g���g����,m�<X)����[B S'W-֟���1�#�P�p � ����}�c���<�ؙ��P�Xʏ��P��D}$w,����1M鲱H g�<cV�gl_f2#g9�l�d���T��Z��-��Q�Q����e�rkҬ���G�} g��m ��8�ٳu��&`P1�A:zZ&Ӓ(��2Y>=&�t�X%K��M�,������D�S2*�(1|1©��a.�#&N#����҈&L!^s�iDXI��Y�b���PG�C+��\{��w��n�HNlϖ�������3���I��%a����J����)"y��9س#RK��IJ&$�s_��?��&k�B�t!�mҁ��$'��w�����IA�#X�v ����} �;��RrGّ���=F>7�ec|sxx� q�q6;N�ۊ��<�L�' f��P���0��e��{ MF��ִ�|Up��ujӚ�J�ղ�ǝ�Ǭ�|�S�[!|�����<>=�C'�.��e�Hv�G/�z�<�!�3n:�ܨ*���q tM��R����|�k:?��Ώ���Y��q�x~,u��[�礜�|~,u�7� �Si@?�zU���;%l�̤���V�c~|�q`���s���K ��w�6u��Cw���� -�!��UI�Zҏ�J�cє^�UR[��T�o�oL�-��5}�3�kN/�����cџ~\hP?�w����߈�%�I���M�X�S?�&+��ƚ�dc�N�8߬~,u��B��իT�e��}��Ht���M�Ϟ}����VaBo��t�oDW���N#���������RO��"�� ���"u��<��Z�@Oi"�n���:�����B��y�8-+a�uc3E���^� dI^0�ۉ`<���m�\�ϡwHݪ����!Cې��c�چ���!�z�j���.!�]78+�0�g������+�l�O��F�t_4}Z���k���Ѣ��z�U3�MTL�e�JG�|�Io��s����vP���b��L�p��}�.�7�+��i�]����� -SGǍ���ًm�@��>��bEU�����xN�����15�,��Km�͠��S��H���jP^嵕�w���j�G�m�ܢ�P=}����>�t���^��}2�=TNm�B�[-ַ2c:ڦ��ӂ����˧�'���*��U� �p�fj����M��Ȥ##��ze��J����r�s��� #+���k}����Y{O��捼d�#�H]k�#/��d��`���[2�^���y��=���������M�8��w�x�1�f��Ss-�)R�b&Z�̵�W]�v�x���9�NL��wpVղ:��s�c���5[6��#��ؤ��@�a�kw����\ʝ��:)�ٰi�:)Kj+�h��ô��U@�;Q�+8w��Gl?ӈd2�N�h�+[�z���ҒȂ��GWQ�~����:�t���c�I��7���khO�QV��5�4��jGy�{����s3]�"gD��ҊRqE�hn}���t)#�3iU{�؇ϻ{+�I���ح��Z�=�d;[�z��7�no�q�ioVݼ����!n��.g>i6��<p��d�;bac}7JRny5s��ϴl�۬i��Ŏ�k�M�Ssi6|5���nSا��q���`?=-CM�iy��@U" -N���u��G�dzEd|�Ra�qN�0Q{*;}������ ĪYb]�.i�`�eʗ8J�*��R�@/��&� ��@;p���D� :F���_��|�)��Md��ll9���L���)��K�M�2��fM7O�NWT�|��f�(���9�薖���;/³!�(ap���ѯ{����M�I�Zjub���u^q�MCZS�Ɵ92J��⠜��h�Z$��Y%Y�O&�#h!��Bz�,٧-�� -���Sd.U���d��]uX<��a(U�D[>��N�t����^�L9'+3e��5�M��Ib��n}��^�ŷq�8�I�ĮwA�¡���(6���B8�d�:}�)�t�M�'L,zs&e��͔ �T����S���]C��ѹC8�#�W1�Y���Z��1��;+�d�5�&DRإYUe��o�ɚ��iS��7���4U<+��;�,� -i m%2��r������ۉ$ ��@s��ё�J�J�#ϱ}H�?�XZ\$��HbeCrѐ\�F�,��Xy`�-��6��e2Q��|C�+Iy�^`�<���u*��D�Q�6�rq��-�~"�R������r����lE��^嬵Xi�k꯰���]��7mf����h+�}�w�Vm� m_�R�)[l; fgc���%30��K_��B�!I(gQW��ZK��T�if���j0�1+"�i}9�o�6��y\�f�Y킗��p�s�ۉ�B����L��b�d���qKMjt�����M��Q=7�*�i$�ĠY �U+eA�Y�o�E�������H$�0V-���Ӥ����lR��He*P���4�1�О4)�?Q�#T�����^غ�Dg&m����V�r������UI�U��YkU�a}���u7ɝ��4d�% �F���#����m6��؍����`���Ո�����m�7�#!x�b*v+Չ"���qֺ~����?p�_�rMj� ���yNM��Ң��K����Y41I�A�:�ES�}X4%�w�J�`�,���h -�]�E�3Y4%��Qӷ5*v����yۣ��v���5ɘ��5�]��X욃�ݵ]Sp�>���hפ�M��]�gw߆@�m�y)U��v^~SU[1vz9=�y����:�:/-��� -��,|�U��+Yw�C�J�AbU�d^1C��G_d8#�6R��6rgr:9��B7��x��C��sU�Д��uP���冁2l�a`��1�BblL�(.P Sk�TS�J��8^C��zE����i�"��)eqB6�T�K�a�,�K�jp �����k[��3V����J�T����4&�F�dI=֜;�^���2�k�S��6�`�{�aNS�c�XT��),� -U��д9�^Ċz��͝i,8x��W�;����L��h��kV2=p1��GW������J��L.S��뉫'�vu�+h����"E�q��&;��"�#��F�wc���v��itP�S)}�O�J�R_�fEt!���n���aj9�u����'הbFUd���;�B|�� ���7�ػP��%�F![.O��ի��#\�{�n�� XA�|��C\/��T ��&s4t�q�آ��a�[<���:��������W�[�jـܳ�퐎��%U馳.T���/O�������K�;���V�Y�,5���)Ɣяo�/���������w�y��&ݦ��6� ��Z�镵��N�ejlZ���]�2B�=���S�1���1يns�� -��ɛ"�}�IԮ7P���B*�_�"zv���0ۓI�v��Jb�n�]E�=�Ƕ�Jؘ*������͎�K���{�6�.��ve��4��Ov����ϫUe�Q��2����܁���Q���uĴq��j�N�%��ԟ*H��/ -.�͚���6k����ieBr!x�Wr8��^C2������'��|�.fBO'�hz{%��D ���[Q�o����"v��z����_�A�Ȕ5�'��f�������f��y��ya*��v��e�On�ِ�W�>��sl�:�5P�4�/�����r�CW�~��-���i���L��h�m��f���.R2.�Ob*�e����f,����"[ޣ��jq!r��4���c�E<�6�#��Cx�÷���j(���e�+W�c$"�Y���{��{x>�G};/�5��s�!S����H]�)�LQg����}z���>�.�RAƺ�H����2M֭�JeZU B�Z�?=#�"<�.�*�%�t�YO2��%�1���|>Q�����>@���2 -�a�bU&�/F�m�6[�����W߿��O�d=� �W >!�����_��Z��ِ&��\��O� -i5$OB#�4���[��l�c����s�B?8� -�}h�Y���4��en%��zBĔ�%KK���5�Ny�5G? Pj�b��ǡ?<J�����!���-пLv���Q$��M=�|�QD�>ݲ^�'ͺTڅv�t�K��J�o�ʪ�~@�����m�j������-�16�\�ě*/U��K��|&~j��3Wws�xT�����͕��\����B�l����j��q�7C��Nt3��sò�*ک��A�k�ѻ���J������Y|�R·���/Xt����(���sq/��H/�C&��uܕx̐�:䱶RKė�X%N�zkA�e��ћ���{./�b�"���O���5��C��g]�>�/���!%��gR�CRJ/�Z> [G��^N��t)�� �����Ϡ�.ca)�]{�\6���/�ǜʩ��;|a����F�n.�X{)(]Q2�UV�:#��v+&;l2�5�k�+�����-��P8%�~~!6�� -� ���R_��i:���:ɰz�A�>3U�uF�*=�����b�_J�uE���+&/2�e��Cn�<%��L� CDӟT����'нz��8���؝s�:��*m�>G��QT>��m�{CE�sR^����!#���V����L+��B��9j�2�H�U�q�+�/*:Q&.O�A�:<��jŦ �Z*xh�p�v�{#l��Iֺ�'����hྜ�����Wt��E����ZNZ;�c-�� -'㓌� k]�����\&�{rM��E{��E{�vf�l�|��/�Xq��x������nǫ�볌�I�A�,�V��GNY�� �$k[G BK�t�Gd�H�����X|uY\s���(5�� ��oK�?�N*+�Y�Ea��}��`C�W&��L:��x�}!$���'�n�1Z����E�M�e��.�V.��z�^L����z�⇾���/�]X��/�K���m>��)+9ymG�|���&2/S˩��p�M3Q��^y�Qq��֢rOgU������^=���_G[:��*R��q�ji�"�S{a�T���\3�4�j˅�:�KZ�!�H���h2BX4%M��'R�x� �KFj -0�)����=��'��ݰ��� �%#21�+d�H�9v��������쾬s��ۧ����}Rb_�&�����>��e}���,�O��'�V���L>�` z�)�p�oL'�;X.*� ��H��|T��Y�@��� �㉃�Wa ���+���77:���1���p��h���e�r��W�dC���YM�;���(5�qI?�ժّ�X2�Ξm� �,���=��#��f���Gy:,<N*HͿ�|����O[���2_yZC���T�H.:-J�f���Z�Ȃ���~���`HI�SUFg��t��%��(���8��Hv&� OCc.�&��u�=�/����I��h7�����쭡��DC�P�j8��2{�ّQ(��@?�,� �7�I>1h�|��|���I8y�����saQ�)u�|���/�I=�Y�ڑkR���c�o��6�e�����4S�i�|���:�s�t�w5������͗ʚ*�V���\��~���H�7��!�WF��*���]i}��<C�|4ftj�b�N���G9?�\�,XJ\�(��U֡�&.����͇���c�=nާxV#��� ���ݜ�p�,��2�2Ӝ3hֹ��s/Pm/0����A�Hq��~���c����=v�z���ݍ�Z. ��R����p�|q�菻��q��F7��f����(٦��d��� wYJ1D]-DL*�ɸGJ|�ގ7hQ_U-����Z^@�]�-M -g0�(�ζ@K��/���i���#�b[�9>��T��䡯�" �,�#������[��W��~���Q��.f^�e���r��au�d���g��0ht��ib���Ⱑя�:��xm$Bb�V�\���/J[�1�}��%���qC�]ބ���^@t3�T��+��-����s�J��F:QV��a�x�|i�pSe}iq���O��6�܆�3i�u��������G�O��2[���2�W�'T4��EzY�E�W��2y����D��h�I��`G�h~@��/?�K4o�{P-%!:�o��@��������/^��F�9�H�b䠿x�̟�+'Y��t��UW���X���=� ṓo�'_M�5��69�F=��a�{��3l�� ��z��<���qy}A�$�3%���8��D���E�]�P !ՐG£d�A���꙯!;ӳ���Y������_9��hD>���;� �A�(A���*� �6;�N�(�N�-c%��S}A���Y2U�=ڔ�!sX�kF�G0���G1=��<��Lg��p!8�8������38i9U���z>ڥK��C�H����D<.��m��"S>SI��O���N��Y���Nى�!�؉���)�=#ǀ��$ -g8��ȉ\�9&�sg2 �Nـ��°�����%wpa`Ě�7!�D܄����$��XV��qve��2I�e1� -4m��0��d5�g5��^�� �_����@7/WҸ�"�+J��C��� -P<)p�o1!WͣZU��т.��owA��̌������Q]m���{}�H8�B$�Q�'�������4�c�@̼ޯ��.v -PٳH�����i�iD_�k13�~�4Z���%�q�n1�>qwds+������)O�lA?c5�>`�ϯ��k��*ב��F�~� ��`t��e=�2"��p��~7ˣ�ȩ:���hں$Á���w��;�bu� -��^N��R���+�3A�����Ly�☥4�|�c��:S5�c$W��А~�$��� <-V -!���X�EX�e�T���C����T�]�g6I��/Ӣ����"%K�j��[��6��s�� :��m�Bz7��$�[��̫*GQ/f��Ϗ��~��jP�����DqpE�j��@�����P;�bO~�%��Q������刪,��)wԩP��٢����ϡ���|�u���V%MϏq�i=Q��H��9r�,����s�6�&�ˠu� J�Q��Ö~�^ݵ��X��4o�J�B�m�s��ȃ9��{M����u̹��(W�>?f�H̄ΔX�ϒ�x���gD�c��X�i��K�D,��g.���@�ţ$�5�;��mr�;;��!�3?Q�M���S9����U�n���Z VL.ط�b��1� -���I���eo� -��w�u%�&�ynL�g��x� &���f��jK�5�Z8��Qlkzm�>�GVQY��~�ZO�CCp��Bh�Xm�b����p�*��q�z��H����Eh��.���ӈ>�>�l���w�O���1y��V�N�"�Qn�yp�<��Jڡ����~��{�o���dL)�q�?\φ��Y�?�#���:n:���/��9�krY�7Cs��k��N)8:� �Z���`m���0EވC�t�G��s�}� �Zmf�e�h7��'<���O{���Җ} ��)�0��S����J����O��@E�A����eMgiz�Ig�6��U�?;�v�?p�5�j�S[���=�G�E�|X�fq���>�k�լձ������r���� ��7e�t��`X�Q�y�o�75�B?o':�I�S����aHYNn�� t��k�Jܛ\H:��v��i���yh&R���d�>�`=�WK��0��G������3/ �d\�^|�����Zՠa�+�% ����|�OY��u -�;��sz�o��φ~�xV�e/�}�7*��r�hC�O�_nַ�L��YI��3���3bk��b��О?��i|U� -c�&r9@�3E��"��F���R�u %�W�2�ը�%?QYyccD������yϾ��9�A�g#�ivp�ׄ�����<=)�#�&Ӈa�߽��x� �"Z'�%I��g��vQM� �ND/fu��C -����!�E�Djγ�;���kz�m�(�����T�1&Kw}�>���ǐW�'4S�ua)Ք7+,#nld�t&�"�Ki� �����m���ME��J�8�چ>���;}@gޚ�Fu�Uc�ڗ�%�algN体b��D9Z�$��x��9��;ێ6л��s�g�js��K�BWJ��u���JZ�^o�=?���r�����;�sn�Ʒ�`�g����T4�8ֶb2�.�R�8W�I��i�f�I�Ig��O��z~�D��� �g�iBw7%, �K�\=������%Z�W4����׳ޚ�.� �������nVO< By�o�%�~�8�<��d��V�W?�y���7osIHh���3Z�i���'YVD+L7�ݪ�r������Yt!/��"Z��h��ԓ���.b.8bs���a���n$BK�]Y�c.���X���BCшw -O[4".U�%J�*�V? ���xP�4���X1�C�k�o��Ћ�Q'桁�� F���=��� ��v�R�����C�uQ^Z���A��~��}.!������E����o7�O�&Q�3u�����[� -Nf���o>K+�u�~��L�i���b�링�σ�C�"i�-iвy�-�;�;�K�A{4.�im7�pG�Ӷ��i��Ş��\dT>f�Z�4�ˇ`��l�ɦDr0'"ץ�B����zf�(�����^�����R,��ټb]g�+Sp��:C���!��?�wE���X�F\6+��ܠ��q����+a" �Ő2߰�$���_�}��vܙ�$H=j'\e�C��so�0�1��6�5Ð����������6 -��^�g��\e���Y��v��Q�~�3ɣx` �+�@#"NɃ�ک��Mlc!�G���Z�L5w� -�!h�a����UBQ����I�%V�"D��n$�.$F�0-��q��fE`6�_���Q*;�zrtn� -��Sr���f5���A��F88Q<��(/�Z��(�w�IG\B�yC��|�[g�^���8r��x�i��ϣ�#���/����i�R=.���S�E�X\iV�c��Ua��[�(�u�����!}I(���sP���|����� �`y���=g��[Vhy�-�"e��D~҄:�'ب�Y�MFy�h��~�!������[pdM���� W5\O�aN*WI��(&M)i�S�)Y|Φ�ؽ����j9�2Y�Z��>�2�M1��)���ԛ�� 7t�P{��Mt㞔c8]sݾ�q�`�$�4���4Jo��ܽ�}�ANa��Y��q�\C��`��J�r��x���G�P��j� ���f#����<�Ӱ����m���5-�<��i�l,v������ M9a��L���N�c���u� ߇�ka�Ȫ�q�4K�(�� _�֞-�햪�$ �c��=���w;wR���c�6�;�ց�4��}��%2JWR�(UQR�xĂ��b�i��������j♹g�?��:���g�V�Zx����f�Y���R��"/��L=L�Yv&�o6�n=0����8:�!U,��M����\�.�衊���q��a�c��3��[�38���fnWv�3�k��9��عu�)/���Ƒ������"���p>���y��%�L`Ղ҂7��0����fq���Er��]��33zn���a�No=8n�� -3u�`6�������<SF�t�S�oЂ��6��b -�o��<Ӷ\��^��u��[�v�I:!@���o��d~������s�ә7��Kd��*��� _��|����g��x���m�����l���~t��l`��<���� ;qmىۀ�H�1t�$�����r���3����ىk�N���;�-t��"��6J�6�=8s8����N.��(Ds?��'�-?�9��U�X����1 -�0p��v�����G<Z���)�G�pp?�C�� W�m��߀+x����WS�?=W���3�p��Hq�ߺ�<���ԿE<��E��]�=/��o��q��t�#[4q�8���|�IL� �ۤ��g�&���C:���Oh��`#�'(�LIDc2?�ծ��ϗ�Θ���p]�h:�M�i�6�I�9�ȝ �匑��k -�aM�-k -�& -�h��q��ZI��Tdn��c��c���Ir9!��<��7����{�} -���&s]C��:<#�gD�<#:���L+�z-$��S����[�I�[/ ��{�[�&��&��U�M&q7�#��q3� O�Ѱ��Sd^���]�NuRIj��s��������ކ�|�����P�m4 �f �����Хk6r��%Srՠ0�Ÿ�ܸ%q��+/-�Q�F=�;�"��K��,�O�IzMcp����� Fx�F^��7� �!����@G�X3F0$����;���y�Ʒ�t -p:@x' ��~:��ԝ��h`6�7�Q���@k�ѢD+H?�R#��I�I.�6�q)ן�&����3/�Yr?��+�t��Kq;b)�5Kq#u�,�F��~�;Mn��HSI��(ĉ� qc���I����9 -�;�!�5i�glZP�}�j�_?��ܧ��;slQ������F��S����~����:��X�g�:��S��6Q#u ��}�$�m��� G �ؚ��� ���<Pϰ<o�f���F`�5�� - �z,�)����0U����yF w�2�)q�ir��3*?�n� ȿu|'v�Џ�hH�|�a�9NvīBk^6���K=�p_�*�8Y����� ����Bj�'��7�ݧ��}o�88�Ϲ�{ �&��G<�: �D��#j�y�H%��g0� �0M]��6 -C�֛����m$~�91L�d`��;b�5�h2pCl}�kV7��I��. -�?Osm�H�i�%3����٭ƈ��7��#OA�I8o���v��Ca��_�z���w���k����EEw9�i ��� �g�?���{����j�����b�6M�H �q`. jIbǻ��y�ڃ����X\h�ϝ���*iP� -��@O[4p���n�M�%�n�~U��u�!����֛C�փS�6�#�2���F�l�Ky��NG���:��fYN�24ϭ��q�-m.n�x���t�9��m��m�"ߛ&�<�ŷ�#g�(dZ��B��jQr��P-"��}�xXgt'u�'}�Dqyl�V�l$wB3p�M��6��;& #����3`#��2����HK��6��v� Oy�v�����.%��I����hfq�"6_B �8[9�H���a��^ �-�>:ǖg)y�}��>&[nF%k�Z�/ 0sX�vHG�����$\'O|��z?�J��?��+}��>]I�����%{ǁH�~�oC�H�9Q�l�q����q����f�bх=襼 h�<�~�l6f��L��%�<�2��8P�r���t�x����ܻǔ]4�ͷ�����b�8B�c7��7���F�m� �p��a�`(/����ֳ���=9w�<���>�n�/fT�%�Іگ�K�*B��c����{4q<�7d�������x��5�9�4]"�oT!�_�yV���d�Z�d�Ф��9�� �nAxh-~���ϳГ����Z1��2g�ғ1�W#6�Z��4�sE$���m���i:C�lF����4kF�DD���+��6!c��O?+p1�Yo| -����/�x�%����C����tC��\��h��N�l��J� !l�b�U���8j0/3��ʹZ�1��o(9�8}6\��lu�!��w�L��+M�h�{| ��{��.yϙp�$���M;,��jb�Η%l�0����F�/?�qj=[���9�`�۟�����O�q�_���d�M>��?F�? ��L�G���������2���kt�GW�� �<ez-~�֝4Ezy� -���FnΡ}+�7/=Z���m�ϓ�-��G��9�}`1��S�l� �� �ℳl�<I-��J?>m�{|q(>�a���<�Ʌ:�=\Oj����~��IF���>�� �~[1�\��x���~��y�Uij�X�ۇt�O�Y9_o��z��`�Cf������b�����@�&id5L���̃X�- ��;v��f����;�,��:`��f����DNs�R���n�l+t�<�mV?O��D1x��6v����+r6�l7�?�!x � ����\�L$���;r9�3�-�6����f7"�"�b|���r/�9��%�+.�?�{t���e��d��-ѿ�7}�Lf��z�@�Z�8��[��1n�#��F��������e�%�Q-/�����t�o�|��m/ȃ_ )v����y�U�F�o���ٙ/l6FTc���aA�qh��4]���8Q"�^.��όoP��B�M&Rٕ�yN�0��~f��&�<�q��oؔ 7�� IV�w6g��ӣ�w��r# ��=\��j�7SC7�D�b��Z=u}��6yB�3�e��_IPm����*�`�T��z:F���/���<li���S�?���WfTEW�a�A��,*D���P�eM:Y`�,p�5V���Z�ˣ?)o"{6b�HYPrv�+�B���2��O��2Ƴc�w2����]�f�<�����K�>&��C����B]���Q�0T'ǔ -B�Pe���s �U��1��H��N6w ����)�?N��"�U(���$C8l��u�����r�U�O_�tӒs����FX���F�(>�=1SqE���S�h����{�f*rd�n@�&YWW��4O�8���<����K�_2�5L�UeZ\v��O蛯�EM4dLKR��㉁�fW����_neSTْ�ߊ�U=��R�Ǥc.M>����7t��pJ�4d�!������D�&�Ϩ:r��2���W��'�cd��=�ځF7"�6� -�rF��/ҟ�@&U^J��+i�(҇�rD��55��#9���+Z/v)�|��oAI(͘��`Ǧ���݄/}���F}�l�L?ύ�T�~�U���Ԧu쥡vM� 5Qx���ݕVF��/??ʘp�*w�v[ �4m<W��vK�;���rjOC.s�ȇ+,���䊑�8�p�8ca-7��|�x�e��V({m�������NWD�%�}�짏%g*�"����O��7q� �;����w,�� S}�*K��c������t�]m:��C��T<��VB_tQԳ��'�]8���߅��z�o����E�s4�5z�aCW��9Wx� �5/*� �@�MIV�G�#�����v����٣v�PF[�����m��n7��'SK�w�W��As�(ޯ�<��Y�"��Үj�8�pm"A#���5��(b���[x�kٗ�/������}������P�.y��(�r������K��*�C�[�(B�\�2��{���g��7AkL����r3�)��q�M�h���H�K�j@PY0���w!;�f�{�a�/o��6c �rN�Y�Ӑ�u5��H�ڥ�$̞���2\pC����b=]f�D��l����8Ȇ�- 8S>N���uHˑ45���2B�� -��V�;\8k�Yc�֤0��*�ш�8(Z�ڬ���G��i?'C���D �W��Z�C�Qf��à���7~�b�P�Jw;���=d@%� ��1!�1�}�ݏp��(��v�wM�����G����d�ݑg:� �x����= �'n��d���v�iX< �(F��}�ӡX��Z�����E%���O�+�5���J� +�ac����Z��c�- r�$��T��/�@V�ʪ(o�.Qц#�S9�g�Z��?��]n",�V������9K�!"�h�!u����3dΞo�l�-7�I4n��k��;����V%f�]��P�lYY�쌋���������97����f_�)��&�n;�OV���ÓV��W����"�%�R��l.͚��v�V�)�݉������%v}��V�]��O<��j'��b"��N3�ߴ����!m煿��kf+���o������l�V��Ŋ��xc����f���t��� ��\�0���ئ�'t��}:Y�H���Ӳ��G~��CU��]�Z[�+�r}!���&�t����PTh���L��?j����5��-~r�P�d��I���X���<�:�c�t�hQ�6&�a 0;<-�2m���g��<\)7@y8zBf4*^5f3B�a�K�>�N�x�d�gk9"k�V���+������=y�M�L��Ջ���3�6�a;x� O�Gz-=��"��<��t���J�ݼ��4��@|����T�)����_��A�25H�I��$Z����D�d??�hT�SzsP��<����r8��g���GH�Q��U�IͼDٗ:tz�vޘ�s@*��~��*�k>Zd3gu�����V�-�C�C0S��U������cF-E�ԎL� ����nV?r���U��]��������۷�Ğ���h�ӽ1(p �D��"T�J��Aot�̛�3�҂kHz8yy�'��u�iZM#�rR-C�MP�B�E�D�)�jYA�s�?�z&]�͊(�?�?��C-A��R�Y�&:��-��'4|Y��B I�<N��8��Je:� ���4��LS�^����-�P�Ӌȝnŝ�ّ?w��aa)�hٛ���ں�����Tw^�����I�Xx���d����i���o0��vJ��[)�ʏ돘BS�4(t���Yt�(����c�`-�ΐ�G�P�U�Lbe��`�T���";=쇊�v���/+n����ѓ�i�n���ϤZ��e�����F�e,By���y�b���r)��Um:.�@�p�W�@>�b����P`�7&�ߚ��zj~���O!j���Q-N����4Yo)�~���q�[���ߎx���?M -=�d�h<I��7���� -5Wnj�(����vU_ -1m���H�~]����W��=�[w�Zq�U�+��YVU�YP�L�U�0y��*��EEQ�%��0��Jq���P}��~�Y�"��tVz �%j^3��G{\،��a���j��k0�ݜk�<�)��2�)Wk�k�ȧT�/錎�+�WQR��p,I�@LBhKu�+�Y�$���fq�<�����LϷC�$Mj�I;%A�����"*�[$Tk���[K�@,X�� ���i����Z2��K&�2��䋇�7~x�@-�P����dM�����=�ק���8TX<G"���ީ,Z�$�|#U�7>m[r�iP<�i��*ywkU��a5��ٓЀH3�����Ξ�=����������"�M�B�)�^0JV������bM -f.;Izs�R�Ĕh�fGQj�m�(�-��岐��vQ�$;���k·�C��q�`v��KE�0? �w�#�3�<I��y���X��"Y�Ώ#b����n!�7�+�x�����X���Ύ�UԜ -�����f��[E'.[/�p����a�+�S�3ra�j�R�$�(%?Ie�s�q���L����R�i���D�FA)W(4 I -���JN�\7���" ,�'U�� ���Z�D'n@T��|� �qY�.a i�&ſ��0��^^�*��J�� ��/i�� z*�v�H����9�w�j�R]X��kV�պb4��4j.&IC�~TY��L�☥�J�����uW�<��>c��Is�\���S�`E��P{�Ȥ+�y�v֕g�u�M�Rl���V+a+*ʜ��Juq-�XŘR��/�;p����N]Spi�%_���J|@���V�RO����������6HR�Ip��BY1]`gp��%���\�冖�v�%U��C�T��P�{qșr�z���4�U{�M�2�s�|ܬ7+�+��;u��W?}��j��vLk�~)�0ݦ �2}Ok����W��i�Ԛ -.�2s��Ѱ�£�ƙܟ�찜֯k _S��5���KJe���0P��>!���T}>��[N;�f#�ܤ���ߊ�YK@����?�8�{���>w'W`l~��v��e �y�!� -8���~��N7��Nʳt fG�"�I�rq����V�i��"zs�%�<^Ҋ��Q�2-+����f�����T3;�]e ���t3����rŰ�VV)#����p��Q�Ja��Z�Y�M�t��K���<{�^e$���-��]"��!!�K)��j��/S=���H�;��@�a��R\���2�5~�:M>�NGa -�;NYڳ ����6u� d�/�!�mHi;��6��=2f����Q {zU�$����촩kH�;X 9mCN�%��OBA���h�<�͎��ygHb��N��f>�w��V���5��,1'��h�}x\L)�0U/v#�o����!��l����cO�����zA��z���YpZM���<���QC��Yfn@��SN�����+�;,��դ�q�ϳ�l!��Q?�(l�H��R���$���ZZ�V�Ga7�e#XC+3Yn�9 ���Ӑ6F�m�&&�f���k���Bm����ܲ�Ziw���Qj^�or<E�Z8�]�R�۰!��v��/�x����>�Jx��.��1��YА)eyo��)�͔�ˍ5 -`ʏp9ʯG�t��]7� M�A���n�&�,�~\�~�2��,xY�-�^�q��s��Mz�=��t��ʚ�*SW�O���B;�4v -���{��v���X#�[�' �'bV�7'�#����� ��X�$00H���aS_���Ge��Кl(]2y�����c�ό���h��S��9ͪN������s��}�4C�yfqW����q�o�� �Kk<���i20F��"�hf� e�w�s�{�]�b�s率N>#�J�������D>Ed%E��|٧*�<%�E�n��f�,�'}L>,��������C�Vo1�����;��<�����"�尓l;8��E/�d����Y��n��n�8�o���̧��4��a,-���#�����=.�� ұ������m���~�V�r�\,s*2�^�T���z��[�bL�7�b%u��sn˾e�8D��E�%�I�؝pNDb� 7�Q�%Z��_~H>~��*Jm�L���� �#�����iBz�}��ؽ����&�{j�FCMG� mt<8��+�+p��p��Ia�#�� X�?��\�����JDv`Q. ��f��W�D�ۭg���N�K�! Cˀ -::B�c��zs��h䠗�qF�����D|���L<Ll�F�\��u��p���}::<͚Q��~8%=W�1��?\q|�`B61D�7!������tk̥��7Wj �a��ٚ,j�iD/��ƚ3��@�c-J��f�|��k��~��NX�g7]1�2~p� ��� m���J�9������U>ʜ�ӌeBd�����~Y/>��v�d��E>�u^���RbW��8/����9R�@���Q�C����d��j{�LxU�ouZ���`^%�@�;����'Z�=��3MJ�;[�)n�=.a�)j�7�B��AM��Ӂ���d�T*l���;��#�77��c�}iLKn�*v��|��!��\���g�P�bj��W�`���5���l�<���,$�jxJV��X�nP�V}wP��Xqs\�T��XM�E�(��M1ae�>I'"��� =u/���]�^:f�}� �l��*�3��NE@��7[�~�90�x8a�1���|ڪ��y1m<e�ʶDe����_S֝�F־���b�E��Z� �� ��8$]���6U�րjzp�U.�;�� ����5�w�H���Yfn��3 ����<k��S�2I�X�}Ixn����T�iH���i;�ש֕����14��z� J�'�p���>�O��>G�6 *��(��,�q��N[��)d*�D[�ZE~"� �����Ch�#y�g��u�z�H��O���}JYIr܍>m���}:Z%���Q#Ɯyj�����RM�S6�$ME�"��6����)���-^�qA�H�a�x�R��H�8K��|yj��~vF�.@��~�����ʳ��ȱ=5mw���r�]3ΰ�fs/NWӋ�)�������z��=�Nv���Zm+Tޜk�������?�Beu�O�{��H�ym� 'w�'�Y��2�&��8L��m�u��}+5����uCյ����8l��a��� -�`�»ed���ci��zM�շ�0��m;P}���)h��=�Թ������ޠCo�B#���z�j�J�-B]c��bA�ꢳ9lOx<x��8�Es&���x����;�a"k��NL��wf�5=-H������C��?��:"��A|�O�z��z��0X[��aM�L�x����if}�7��a�q�8A�z�>�fЙ��r�P�q>�H���J�� ӑ��V���rR�P�ø� -����� �:utP�?�i���y;d������%H]��V⒗��^k�gt�����S�<\�ĝ�)k�(2@����ӧ�8��sOM�p�x��,�U�3F��g=�WK��q��~�7�$��\evͯ6�u�X���t� ���5Y'�{)~�+r ������1s��]?��J;���Y����%j���V�e�,�'�k�&�隠�wy��������u�E,o�kX�r^�oEvm��6�͢�d�Чt�L��������-r�0�L2��vǭ�V����Y6��P4�&�eE���)��_#�~'� �f�j�y�h�ą�ry��u7�Kc��{���1�����Ă�t�Zc�5��ZcJFc��=�2k��k�%��l����1�K���1�K�S:1��,}xL���T"�Y�X�t�嘮��5�Q]c%�k��u������5VLG�blטw�8�2Ex����&�k,����Vc)�KZN2P1][,/��K��Z�Nw1�1 �����%��Z����$n�{W�{ѐC�� �_h���Xk3�?�c,�~E�8K�������0�j,ŵ�����/�O��[S=i�5 �Sa{�*��.���QJȊ��Ed�r��1k�8V�0)U�h��x���+�g�Sܒ�}������7qK]�rw���8���\��X��F<n^B��L���x�Ĩ �5F䍨5�=���*�GR%lL��EV�h+ViK٦}Ii`�DA��^nXl&���v9�D��pA+9�7�1��n��l2��E�N�I�m�t�"J'�l��/�6��e���H�.�9~�\n>�����VvyD�=T�Yla�j���HN��`)��ޒ�+�g<�g -��90��2��!�s���P�O��T�7�0�x�v�'��#���6�����V"��r7Jֳ6��jH�3S���9@C�=e@j)�E3���1g��0V8�$[�D�����G���'l;���AI�r���ȴ�zܨ�yqHg�h���1#�~L3ޣ�:�-y����q"^K��x��H�2��7]����i|����7B&kO���,���r3��v�9��ܐ�Nj��}����f����M��)���U2��6��@�'���(3��i=R�F�������v�g���D���\D�Ow�z݉<m�ٓ� L�t�����2;�J�1�=*�K��!�=T���l<X��+P�1۞�69���}+,7ő�FZ����?�� -���/ ��gV{�����+�Ē��4��Y_����g,M�k���Кɂ��m�@m;��Y��1��QowM[!9�gDeb^c^��4����`_xv]�@ �"h76��Om]�˱)JD�j���Px��fa(���8)�"����=�f���8�![E�FMJ4���E}i�Ct�L1�m��{��R�EH}jT�!-��e�%�l�c���3!9�9*�Kއ�zs��z% Y~�Tktʑ�r6�Byx5> hm�b���%k�}h!���_R����̵�-Fs���X7��S�QE̴F��p�������tT�Pw���&@�p��f�XfচJDBm�jq�N���4D�g�X$t�$��"!���M�i���������S���#��x���ES�c�7�ھ�ueGi�}߇�}?�Ͷ��cZ���V�%��HO-��v��f�xFG���f���ّ���MjD���c�νƮ���QAf����ݶ����TJ�� -��<��`-/:�����(P�'6\�l �D�A1t��d�I�[��Nd�+F�/3� -��&vS���~f4���v�kb`�?�-�t0���c�kj�i�i8 1��cnC�i�ֿ@C}��x,ޙR* R"���*ZD.(�͊�V�e�/r!��T ���4�L$ڔ�!�ORu�R{$!tN��=��,5�U���Ž���A��xs�gȿ�f2�ݛ�cҿ�N�_�r������w�t��P��g״ L*��>�Ӣ6��d�K�o)$˽� -��_�ů?,fDEyÞ�Hj�����ddq9[잖�'Ze,?�~b����l�� �;suS%���^1�0�na�&���zC���9���fūd�i8m#����W#�փA���z] b.���.��HCu�U ̠�:��3�[o6�o�ǹE�G���W�Bؐ�u�6�\lg��d�B����d��bn�Ρ5f�F���2,�� -H^�b��^� ��i�z�&����`F��Y"��`��+V�D�8(g��D�DŽT�'D���=���.Q�A<���_=��J�~�����* cM��R놁� W�[O2"�� VC4�#� M^g7cB�Ү��>K/�ؽ��Bbh�� VHG)����!Q�2U7߅�e/�40r�� -p�҆v��f�B��f������jar�ׂ[��}���X�d��kj�N7�� -3'U�dӔ��0�氟��1Ѻ�����#Qd!!��"rFc�`<��b��3��>�fG0 -������,�5�ji����V��:~;�z]���p��M�aF�Gqm4�z�� ��*���HZa�kM�pr?(�����rf#���:��sk�l���4�`F�i��:L^��p���j'U��>0�@T����f}��lw�5p�G�#c�ahxd?kf��ȮI�%UBd�f��*���_�#��z]��Q�B���c|��i{�½В�nx�<��A2L��Iq��H��E�C�D.am/����t1�Q���s�#54�͡��o�d�zS?�M"'� ��<�:������J4�蠱u�|���; }:i�zҠ���(i��b���ޓ��;�=�$Ḳ�>��g�Zv�Ѩ^|07������{��ȑ���p@���������N�~s{����6�w˚h*m�˻�Rw"���(Ҵy��\��$�Pt6�ۺ����� L��ۥ�̆ -�CIW�G�4>��3鲱���~磟7�jA�����:�Y�t�":l*7#X��fD���wG�����ڟS�)�C\ E@@��L -�~�2��%�� �\�I�ўe�&pf��Ia ^�b$�?λ�:tm-�#���f�%i:� ({�^hhI�s3tP�J}�o�GJ��B*Ft��jЪ*�����m+T^��2f(�^Ԩ|և��T*�����e^�"��&�;�+z9�e�*s(�(�f��%l�X%�O�1�*�T���̒�Q��Hw��4|�� u'�r��d��b��A �0?��?47������~"������YA�n��%���R��fz�I^K�H���$�<M��P�4?��6O{;�����()x�L~C/�3SV?ү� .�q�6{z��]� -���X���f�I�/��ƅU�����yfG�qh������1"s��~7g�Y���t��b�$~�1hڇܳ�f�ُ����<x�Q���w�н�]O'JN�H&��p������|!-a�~�}A�@�>1n��&�Q8���R��.�㞩j8�}�a`7�o�A?�Zz���i���)����ˤ��c��S��'��YXBa�y�l��V���ۍ����ۍJ9�����P�`�� -o�fVθ1�]6�b�u���9�6p�b�&�K��ij}X�#���EVSe��qqK�ӈs -�c&B�ڤ��b��#S�%J�:��AKH�UKG�VX��0.//Mǥ-�u�Vc�����Y+=�s�D��>���,ʶ^�K�4�QI��o��Y�OhJ�^�͠*�1+ŕ���������D� ��5���D�_&�4�:X�hnN�y�#�z8���s`�)��I�PX)��R���&�t��V?ohy��"���nS��a�ZvWâ0�QQ�a�Y�]$K���&���ɲdۚa�8�R [sj���>'���O���盖y���c�ѭT(T�r��4�%�Pە+�Ϯ�M,:�yW���68��Ͱ:�RF�鄚C��i���mz��X ��̉�$ё[PS���OX&�q����t�\���Q���U���GP;�V0K-�9J��h��H�)�|�8��w���B���v9 �� ގ���5��˓���"n�Xci�t�k�wH<�,��m��Ќ$��$\i�h~������T����~�U��%��3Qf=��Ba����z�� �j�0���30H�>��I�_�㹌�Z[�k���: d����3Q���}��s\�p�SmLr�&ni�NQ�����2���C�а�xZ���I8�d�ql�u�8��&E_7E_�< -:}(��.͇���%�n�=�Nt���Z�����(g�wu�3��ի�S��р�����:=eӗ��gX��ׇ�d�SH�r��sE�����/�������0f+����/�ISd����kq������8�+f ���n���bV��_�èk;F�0O윍%�^ސ@�f@�[���l�O� �nfх�PŠ�h��*�1��t��Q�_0�`"@+~X�ǹ��l9��7�!�%��x�!0���LIt��Fr*"'���g��/!Zf�Q�h���Ogjg((N�q�h�,��g���P}�]�cjo�|V�qv1.,�Ņ��)?��Kh���xa���5�i����A��xKk�I q�7�4������z���ʂ��\�K���U���f�>��[[+t=�l˖h�oNd��5��ιq�%�J{��vV�d�.'�ּ1�d�l ����x��(%k� �*�7o@��s���Ԣ��=[�X_3�4��%��,���_h�6glȺ��%�Q�j�`�~�T����Є5�F�t�5��q��AbL��$��#��,;�D�!��q��{Z�է�w��Ya���%�2��L��v�F����� �,�eB�6�l#��� :z��������e�{6ȣ�a3\1l�?�t�*æ�o�$��}�6ޕ�ۈ�S��2]-J�F�K�+�h��m���*=<�^�Gdz]���V��GgHV��QTke.�eX��#��|n�0�ڑ*��'M`�I�hC���$ḏ����VǠS��v���o�s�:gL�NAYY:e9�W�]�v������-n?g;t�<Lp��&=f -���W�u4c��-�颿���L�������]���0����hW;DJ���&Y��+��ٯR����s����i���C'�+��d;��&�b�ag8�2�v��_O�YUH�ɚWFԖ�/#��f�ˉ6ٌn���Yi���l��>��mǝ)�tE'�gO�˴��٥Pz΄.۟R_���)A[iͼ��ޏ�{�~얇��l�dyx[Ͷ�4 ���Ӗ���z��pu��:t��������,_m����5���r�M�gwj��.'u<g��������q�h�;��'�+B�r�藟_s?�/��)��/*�ICg��jY������#��]g�$k -:�7�o*���zKD b���y�&�V���_Z��ޘhs�J~��5s=3�L�Mf�Y�Ʃ���/]��Դ� Vb=1SrMY<O#�m������Y��d�~hu��7tԋ -��Y�m:[즛��r�����C_��պ�AS%�l[�Z��v�����4��f��DN�ڠ�#��� ���� Z�[\p��Z���<LV�nWR ��q�Q��q�ZkW��A#���Zkd��������]���A��Цt��8Q����f��U��y��U����]O���, .�d=�J�A�m�lB����!]<<�n���R���*v�����ָvsM@�l�uE�uL�C8)&I�q���ZA�b�4O^��Ξ����X��%���k$�n ]��ыX#����_��|�(J*�%"�����f�j����鯟xQX��"}�"8�tŦd"?A�A�6 =�������hx}R�t�I4������KWrDZ��B�kR���3�Wo����C��s����������됍�;�VD�n�jDc��nS���P������CUwA/�3'a���� �A5�AP ��Ԃʯj��ˌ�����w9��t纊L�2��iJ�IO�)]Vz��L�N��}eMy�!\�Gh<���p^��ᄃ�3h8��3h8�ԡ5+_e�H1����]h���(Y.7Г�^�� ~9rF��8�#���.7x2�U�х�O�b���'D���h�2{��j����D ��Hx�W�l!9����<H�A�Rd�"���"}w;.'?��ae<Ź���T�A�hp��� � 8��p��t����tX��%�W��4ȕA�re�+�\�O��hX��&�9�gɾ�KД�E����^�X}�ߩ���~�6��4mi7���g�W����r�'�Wcq��^�u������^�7�ҟQ��N�VM�GwݖK��V!ٰW��G�o���c��]=�K(�e-jL^�A_�Y���Ɣߌ���[�1�"ƒn<&�;f�k��.1�^c��7K=Δ�1��1U��7c�(_+�ctu�3k�u2�;�WF���>cP�?0��T��V�_� �:s���8�E�ґ��:x���0��7�����S}0s�t,��O��)���8��Q��G��_���8f'�1=[t���ڑ�H:q8o�+k�5����i��M#��{�����4'Q�`B6�lj>��WKRyy��q�FRr�Q�ʅ����0"����>�L<̀�����sXvfnuqjc��!��5�2��4qZo���z�s���������b�����i�1]�Z�c���#Iﮚ��&I��x��K&�q�V� -��į������p���8��e*�X -zVt ɐ!}o��1#�k5�:Z�]Ǻ���v�c�gV�3X��1�:N�:Lj�&�u ��n��M�����#!n[w��H��H��H��H��^���I ��2U�t�7h���0?ߜ�@�OvF3��w�][�x�����Q���!�e~�_�d�$�=3�U��lu3Yk��I��zI���˚�A��d�&�4�zirU%S�2�$٧��OJQ�D�.�AVg%2� ��6ȷA�5˱�%��\��A<�u����SK%7���疁��}��g�$�>$b}�p���q.�]_�����`C�G4� qD�G� -_9cY�I�xQ�Dqq�/(��8�3�'�Na�Ch����xIfi.��*x��9G��� Q�L!�v*���R��A���A���A���A�|���R�<y�:��.�\~LY`e��s7x����ks語;0��_X����6_g� l-P���� \�2�g%\�+��%��O\ -�w��m�� �Y7ȺAֵ"��p��V�AK���`�A��e.�p�z�r���2����[� �u�rY7ȺA� ��Y��n��k)�ܺ)���� \�2�A�\�p��TS���Aʫw���:HyEY�n�u��d�EQ�X奞�*��~̓z��Ń�*�%�~wXa���\e>�����d߬�*�}}���,�[X1]-��E6g:��3� �97ȹA� r��r�ZK�6�/�z�K���?�R�;��A�"v�6��-?S�]���>0�����b��P���DP� �u�Y3ȚA���Y�eM(���ue�{%+��g���$tq�� �0H�ˑW�9Vh�s� �e¶�2aQXE���� �aU_X�� -���:, ���+��m��Z�pa��A� h@����R�/��9�E�dQ[�h���<�� [��Q˱�N~�!E����l�_T�Xuq,�� �14��A=��Y}����,�w8��:��Ch� �8H�V�b�IE��-s�Śd���y�9Eq�����~`���`v?d{�0�g�4g���L���1��D� z�ӊ�D`�î�7�薿3�O7��L�c�t�,���qhC�4�.�9��D��@�N�<�?n�_����/F}�yB$B�}�a���'s��"�^��&,;єwerh�2�A�Be*ù��s�S�I���4��� �)7H�V���Y�`�̟OyIL��5Λr���y3��Ab`�(���Bm�����;���'`�J�T�� �Z�J�4��=(�.�7T�<m�)�?�/*@v��*b�wY9�oz -����~?��K���/����w܀m7�� ~�3��v�4��[͗�d?��)g�M�#���F~��|8 }@p�ܶ� W�2ȕA��"W\�}�8sG%����v�,��D9�oz�8����?p����Ñ��#�[+��m)�}�>���� }J�H�>y�y:����C��:�-XV{Ź���f�.�Hbw;Hb$� A 2H�� וr�`��D��:y-���A� �l�g�<kC�y ��yϾޖ��Qe`�kX���/��^�c�~�3����/ -�x4��� h,M�r�.�n����ϯG�9zZ����Zf1/���*H=�P�,7�yl_�F��X��z�^�� y�N`���ߦ�E�D�f6"���m�~�������� �����+k�i�%���Uv��J�z��T����T�� ��<H�A*_���Ma���=�urZ:���x�a��0T��T�'Au�IP#�1���8ȀA2`��(�9&��h��T�:��-�J�A" i�H�DjC"� W�g�vp�X����>���a�CL�g���"j� �f4��M#A�"h��>�>�{�����z�Xs�h�w�*/I���[�.�8�D`�2ȕA�r����Uy^�7����Z���*����ピ�� �ڐr����Rn�X��ȸB�v<�-vO˄Ⱥ�0���w��3��f��n�*E� �7�F���s����&b|+z�+�I��TfLQ�^�U��bbְ_��/�}Є������+�Iw�U� ��lS��x=v���G+�O-�˗�d��Ϙ1c7�@��ݨzs��T�KU����A�ԋA�ԋA�ԋ�ԋk�X\��q:[ -�=���5�р�f���or��m��� o�iyW�{щ��57�ʑ��G��(�e�&�%�t���Ժ��&��ɗ�tp_/f͑�!�W��il5��F�yV�b��t��uB��{�i��O��j�O���Z -��@���u�cW��iu�i�C�'LA��y�:d�S���^��,7�� -�V��[I;�օ8��/VH LVO��K$��Y�h�p��X�m��-<�$���3�Y;� ��h�=5�w'�\[zЪYfP��~�- -�1�ޮ�Ɖ<�LZ|��g~��,�>�.�3�A��'kq8��1��a��c��ק��$N��鯟Z�<\�{��$N�D����z��4A��2<�%wCi��W�j��P�j�C5�C�D�'C�@�n��%�<!�W)�:�@����c13��A�b�ى��r·(}Nx�µ��9��R*-�)���~�FؠG��������ga4o�^I�Z�^�xkL�)�6��Cո�c��Y�����B��z�vӀF7��g��ۀ@݀�d-.eO���O���#<�:��9�F\��<�H��y1����-x=��?2(�}wa%NÈ�����$�SM���_^P�S��$�E��c� �F1��ٍJ(r��h f�#�8�ƛL2����[z��t�n�?� �+�'�s� -��E�uv�%�zP����zk�G��O��-MX���+K�Q.�]��e;�;�i�!�� ��sl�w�U���n>"�K�9"��Ro�:�n��̶[Šv -�Qo����Q+�ޞu�_{�.*l�t���Go��h���:�ԩ��: ��R]XX��*� (����<��߷���)�N���|���Q _����@���(���l�F���k:�=n���a_���^�ߥp���6�,�WgV�s�h�����H���`.U���$�@i��R�>~D�'v�=Eb�ϪLּD��lYF���Ľ���m�E��J6��f�]]����E���f���s)�_��<���ҀϢ���x��.���ι�6��m����]�_.���.�[2hN�G;�h�H�y�e�]�~�Q憥bKuZd��*�vU�<egH;�������������= �o萵�^�� ��5��t��;g����[yV�cy���� DA~���Z\�I��ma&�b��>���������fcg���~a�5� ��� Gn`.v��N��8��xp ������Y۴�����������)���Э���eҐ��6X����7B�"<dB Ӳ��:{�����û�_�G�y�y+��_*I�4���oӄ&ᜀ����sy�*�b.���_���<��է�,�j!-�$�#�O;�6�>�3ٻ�a?�b�"�r�ǵW��==�$�d�w��v���с~ ���3���ۧ��lyIʈ���YEW��gXI�6�ę�(L�Du{��T=�tX���B'�1��KO�Q|��\���(Ƞ=�%�qI�O̽��Wo�je�96^���7�@���7gOW�*"�D�&�|2�i��IV�`f�,���Dn�u'�;�z��r)��1�Cݔ�n�P7e��Ҭn - Ge~b�> ԗӗق�:!��b�����Y������UL���W�ɂ� U-���=��64�t:����>&���tQ��U�&W�k!A Ud���2c��eV3���=��<%[4VY��P�NɦC ���[���[7ҭ�h�%N��[�nYӪe7i/`je�2I�~W���ה_ -��+���>�§�"� �A4�A=CAtU�Лʰ^NYb���aѬ���D)NtIѹ����_��/�d�V油�M�����4 -�4�<�ly�*S��Νp9�$���a�Jw;4\�lW~�=�["[�Y���M��O������l�۸am3�0Pp�.���>��=��@���zB������ ���G�%�ڦ}���Y�\�h���V�N3��@?��z�~i)���gX�ą��SY���_Rط���Zu�_)$�H_�K�}���.$A�ؕ��i��t[W�+��ek��;���Y3,j�"w��ӵ��q�U-�eO�[$�ШH���Z�t�Z+"@G�R�m��c�t��vFh�3h�:^-���eb@֏q�ll�2Ͽ=鲙����e�1�s��"M�� -y�X����V�rKb�X4c%�FKv�u%���꺵e�8�+;��{TE�T�j���@�Ci ӎ6<�,�����9\�e���Kg��ϸ�Z�š���+�Z�w��}����&�Ó9sc��!�o�;�@?�+����SZ���=�6��#O߄����(��ū���f�r�#1%˰� ���˴��Aj�+�k��=-b< -� -���L0��v�T��Lr��9 �t��ؐ�k�_�0C`:��5��)�r*c�R=XU,���j�M�_��/������� Z�����.�2���)���u�$s:E{[�^�nU�'�Kʮ�Xho&�d��U7��jm?2��+�Ӡ�ž%���XXh�!K����U�� -V�wa���Vlڑ��b�.����� �J˖N����hm���Ĝ3L�ʮj��IWѐ�ސ�5��˨�.�S�۵�(x��JT7��6���m:�$��bݶyk��G\�!;{���Q��Z�N蘒�IpS���P�z��'2��]:���`t�/C͕p�NT�2�e�0�qv����ʼV�m��X����wĞZZ W�F��u�����&&��yc�z[d��9�ڛvk�O����-@�&���L��/ˮԱ��Ǭ��T��Ǻ�u��&c�c�Iǒ �E3�1VE��R�XVp�b�ǙDs�>�2}|3fR��^�+Mw̘̄�%�;�WFP��>cd�?0c�S�~[!��/�u8F�3�w� ޱD6��!`c�3δ͛hg����ք�\4�e����Z<�A/3�x,T��(�)�G��ըԔ�LUS��� -�ԎԛǼ�㣌�e��X֠�����]�Q�1k@%an� �²�������t�F��=�� -�!�S~�։}������0�����>��<̠�����S�����U�ǻ��_n�9�8~�܁�������&��b� ����i�1]�Z��I���#I���%�w�ꎧ�y�t�N��DZHL�.~�X ?*ܓ kv$KgBEi�N���&�#��Z���3^z!���83hW<�)�c�3��Xq��`�q������4��ݜL. ;�O,�b�#�e?]'���'��0�O�����Jׇ�r���/���%�1��]�I��7��S��B�K~F��x��w�ڗ������_�PV�>��9�K�3�����b��xq���Q.tLl�XL'S�� M�?�6�SL~zªَ�a�?{�g��|vytt$Q!��b'���>�s��H��|��Q�?���$�3������k?ݣ��Iט/̸q�6� -@�0��FWm�����%q<�a2��c�'��z҇�jD���5o[��)�y�݅�D����0�����lH6�[q���F��#}E�zE���Lߖm$�&��j���'|���?�;2�'�w����|Cn�c�+~7�?,�3:o���.��_�Y���"Z-v��������z�&B(���Ʈ�<l�&�-���B��n�/��у��z�F�[Jl��y/v�큈���/����߅���"�-�����9[�#���t���hn��������Ė�K̿)�AJ`�on�v��9�r3g���2��� =�C���Й8��*'<����K�YA%�'� �:^�A̺'� -R/��e��-{�>C�R���q�A����5__,żHE�[tnX?���r���o�'��H"{� �5�: 6�"����viN��^_e�D��]�w`(�]��2Nvh����}����aK����)�h�eE������=l7�'M��/�u���ǽ�WcMEr�������V�ǰ��ug��T3;,&�*��{�aH�t�Z!\��lr`�1G�Z�\L���F�k���.6����2��e��)Y�uչ���I�o�-.c����J��|�t�T�Ӣ�FYÄDN�H��ݼ_0 cV&��'H~����g��a|��o�w�H��P���vp`z�8V�"���XF�w����h�ɧo��7B���'s�`�@ߗA��L�����Q���Ia8q��* ��[s�0�����7�dҒ���2��~X��a���5� �%��(TÉNw�2t%�!�R�"���C��M|'�j�~��W���/�����Z����wԋ�{�����D,���o��J�����)�O������a2�ݬ����;zu�� L�����H���Zq:���TD��Pv��'�|���&U�xִ�+���,G�.����m� �[���d�)�6�rK�A����/F��,>��UFh���K��Q&}q,�� �����t1W)�kOA�BAٖ���뀄�F}��D5D���B�2R��Rf�;;:����J�'�m���^Q3M�y�����sa$֩u,��q��}�y��rGFX��kc�N؇��\P2.c�1�`�d��˗峲t|v5�����u.&TA�T�o����j^�B*=��Cb� ^VB32}WD����a�������٘�(l��9Ώs@�9�8~�|�~1������Ú�=nާxV#����u�ݜop�����ҜhS%�`1����z�6c�:ف�Hih�1S:J��T�X���F_-��S�F��,NQ\2���0}�q�7��f����(٦����7�qdqt��Q�&��d�#%�JoǛ��?�wYP��Cٷ���$��_~~ͷ@0{KA�xї���4�/F�YĀ�<��Y���ߍ���WoI��w����~�V��{W��~��7v�yr����X}Y��2� Ǧ�C5�N;�� �x�9��7���-W��؋R�i�t�s�9�r���P�(����2t�2�T5�����O {])�D=��c������3�zn0���T)���ʮR�ph���^G��;�ČZ��>m�������Z�*4��Ez�I���� ci*�h�I��0q���!����h�GzIg��H2B��� }���5=��O/_����sđ���A�?�WB�bۜ>�:ւ@��!�4�繁LσL����4ȓ��&��Q�N���Rپr4\���G��.0./(��y^�n ��p��p�Hc5�;æ^x��j�# -�Q�� �HO����ѓ}��,}�?ލ^g��/��e�G4"��I�~P���%H���\���fG� ��i�e�d�y�/pYQ��,�*�m�Đ!I����цGi�6��'���lP�y�٫ ED@����I__ -=��|�K��q.a#��7�?�>.��m��"S>SI��O��N��Y���Nى�!�؉�a�)�=cY��:7�p$���&sLƋ.�ɐ�|"}q,_��W>��.�X3��ލ�唈�ppݜ��Jd�?^_��e%l��!l��Xչ�N���,%V���pJ{��rt���X%E�2eC)V�n�(�8}7�h�3�N��T<X� �4�#�)O�ȷ�_x<�Ն0� �3��i��?�����$э�����`I*{��_`} ]=�?��Ҡ)f6�o�F��}��<.�-F�'�.l~��s��-:���o���Q0���IU^S���u�`�ѓ_eC�&����|@��e�ۏp;?\��QJ�T�fs�����p�<r�ޚU��Ǖ8(�F{9oXKM~$N��Ҋ��߬8f)m��y}��&��#�l�"2�I�my��*yz"�ď����ېw�����(��4+(����L|�:,?���o�K,R�x¢4y���&���<2xȸd�#GEt��R�D�G��ɝʒ��]b���[��77�(:>?�I�We�,Ě -��?s�y���7I�r�\w��w��G(_UVS��;�`CĀ.,PTa���dcH�Hxޠ��XO儥uZ�4�$Z�N@M_���E|6�z�2>}�a��`�x�@�x�@x�2�x�2��w�2�Y���.��˚�H E߸9���<#D?geK�$�ɫLj3�ȋv��9�~e51��܍�9�F{��`����='�\~�nU�}�q�ެ�M��;�Sov?Td��Ȇ���6�+��6R� -�uS�M*����F����ڕ��b%6���|��;4ve�5�-�1+���6�7+��r��<G��fL���L���a�pí�tCh봹~�bR� ߑ��2�P�`�=K*s#^��(���k�B����\��/��^`8�����φ�h��V~�l �E��V�L��QD /���f���u�T��Z�E��b�M7�Z�ĴޢSɨ�� -o^�Ir�˪��ث�'��o��.�Ԗ��AL��0�;��IǹUu�8�^��"%��B�N�`:�;N�jp�dϣ��"pg[.z�E�p�)DFf��:Z+�\e[8'O��`v��ug���ەVt����Oe&$T��[%U�n��"n�8�����M@�"u(����H�Д����H*�/<ا�A5�C��Zrb�,������ -�˵d�b�L�nn�ȏ��W���)�9ʝ�Y�];*�u!6�����<�5�oɸ��]IJ]Hc%EZ2�j�gZ�ia�([�!��F}SRQLV@I��x��b%Ϭ���^V�ɊK�^�kWh&��%ÀUܣc�рm�Yɾ���e���2��Y�{�5�<kF�)�|��`W�I_���(h�,�#�y"^S5$���ksF�!�d1�e"�X�P���A�A���n� -�ܤǭ�=�ƒ#�z�M���f�����]�Ru鴲��-����t�V���3�Ź�����eWV�����&a�Lj��Q��)���&��T#qG$Hϼ�M1uɻ<�ʊ��Ԫ�����=�ʍu�UD��UU ��\*�s�Gu�uϢ!���5����'h=�H(X�X���Y@�����NJ~zE��78>��j�8�s��+<B͈��O7�|@~��R�-V��aɉ|��J -�3�,�MU&�9^�Zn��f��,0�Lp���zCCSw��W��y�È2�s[\���~[b�Oq�I����p�G�{�,Ng�a��^�Ʒq -�[���|���0��U�*�H�^&�~���l������E��m���~�V�r�\o������G�Q[̍|Z�i�z�[��d�=��[i�C#_IѓY]�_�^� �6�'�T4F磼K�xC���|��!U�צ���-g�N�YO�A�ӄ� -/���y�{� ݏM��Զ���<�L⢓�氝�3+���;���2��8N�e�X� zQ捞o7+y�E�4 V���4�7��G�,�g���A�% Cs� -::B�c��zs������ޙg�\�^Nz�HėAJO��cĦk��ej^��l�{�t�#*t���+���v���8�s0G��T�C�w�.T�����4\�5$���fk��1��(�k��:n�a��(�k~h�.��%Z/f���:a��H'̦��gB��L�j�l�����%� lj��V����^+"wD�U�q,s���#�n�OVO���e��)%v؏��r�ʠk_ti�:�v��dZ�j���ɐ�,��દ��������l���:c��h-|��t�,�����LqKJ�q���\�d��uߠ&�m���R�lo�d*��LDȜ���퍛��Zǽ4�%7��fU�x�-�nV���R�O�v�y+"�Y�k��yN���`S�����*����1���A�~�#�~V̹)�T��ǮJ��km���)�rG�q��E�U��*5��y���) -���z�R�;W�j�ഫsg�& ����4u����S���B���vZ� -ʹ�]5�YY�R(�2y�H�j�I���a۴�N�j�>��3-ub��@�r+()�G�3˹�\���<n��Z)>b!B2LbD�BA�k�%�f��0�E/�<����䀻�������O���t��m -� �����^=~����oO��ng驪|��u������� �]_5o�xn��4}`����S��q���z�NE6<{F\Lei�����O�o��_���ǧ��s��٧_%�>Z�����������}���G�������l�䯏����엯����o_���]�]���[��?����_{���{����z�����jw�e���iw����o�}������?<}���_�W�/�z}���g��� 7'اL������6����|�����/o~�������9���7��L�������w�������->��?�����&Oo��la�7��7�H3hF 7��n��%7�Hy���k�#�9���ii�#�q�Y��R���{\��ȫ�����܆�����Ͽ����Û�����~���������������'����ϋ���_��|����?�_���Ƿ���M��������oӿ�����X-1JM��Y:��$?�6Y4���^h��G%}-r���c��>���|�����z�����=x�݇����/��w������?�����ݱ���L�ez���B_x9�j����i�^�(c��oD�tڰ����J�zJ��f�����<u@���/o�;�������� ~0R��Y|*����u|��GX_&�i��W��fmSh�L*B�����`�M]a �,�+������&���R���b���ȳ����O����#4�#�T����8��}��Ɗ�A���4�W$�p$.Ty���#� ��>mYy���o�i�W���������/V+�dRjQ���V6�O�$n��u�r�@�/�[��ʨ��S/`�d��j=���<�� -�/��x���J|3���%k����$�F(��l�7||��G������,)>[Z���C�e˛�A����|}�6�O�_^�:�!�c%.I��N����I"�1]>��f�gx��.y9�?g��+F����U]�6���J�����#�#<���5�,옱YE((�ܾF���.���LW��x�&{Ο~���D�~�H����ߢ�_}���?����_�����o�G9)���c�F��q�5�)|_�j���p��+�QV([�p�+����$�E"ſ��7h�Ol����n��Mٴ�;,(+�W�A��8�v6g�~��;�m�{Bo�x�N8��?��G(�|ϭR?������=���A��<�Kq�'���s�]�]���=��/�}�==�H�O�Ͻ���O�m��s�A����/N����K�V���iLj�-��~٧���G.U �������h!��w��j��w�#VJ7��}���/|���?�cC�!@ۼ�ۄ%�{\��]�=��nq��B��y�K�� VC -����#^p]04�!Ifd`ʀ�"b����B��A��nG�H���q0v�� j��Ef�Y�~��{���|�tG)�n�}x����$\v/�7���f�n�7�������i��_,jY��N�>����#�������7lC���Ds�� ��-�v�����ơܑ�f�����#�.s�������m���������<z���1��:%#��s� ��������x�|�q�N���?g�],�B�A��^r��A�j�#�D�_�V2�?�Z��:�P�2�ǭЃ����R��T�c��V��vf/�5��;�EJ�3�ߡ��z+��ً�ڢ܆FC�ݣ�O���tvx��I� -�z��gV|M�j�YM�"�f��\�Q�o�,�3|x� ����h�˅�Mr�k�Y��nߦ� -�M���b��K����%�N5�g���ZI�s�QFĢr+�f����5��|�a/[�m��%���X�4I�s��d=%�u������d�G�\cN��S��t���[f������.6*R�N�+�O�՝���Ö�Ry���B�D���E `n��a>�;��� ��F)$f�l����8t���,������o9���+G�- �1ti�%��5lP�=��6�e�������]J�tGȲШ6���nB�hQd�k?G<!�tIBrv�If��rvF�Ō�cB�q'F��0"�"���3o�ea&�\�8��&����t��R��_.$��e=K�war#k�z���h�/�@�&�(n��n�X-y�>�ta��pD�捠dGKx!��'�����!���f��)+�lE�'���n?�Y�k��͏xLv�H�I����y���?�K@���i���9��k��g�!�B3a ~�,���$�F���9>���%E����K*�:�= !�ܐ��L6;�Ն�����E%�elX�/d�T_� ��c���<�p2>�h1a�]����j�"�Lu��%�O'�0��?xid%��}��$H�";����B�c��ŇLa�'�� ɳ���Z�̥�P�.�fAwG��4��iu4���㱨�=��l����%51M/��X�&���[IӜ���e�x+�&�-[Ҋ����\�����;�Ц8��!2N5���nj��n%E�����lB����_�t�S&�����O�J�`��E�л ��Ż��y�&jT!��5N�!����'W�C���|o�L��� H��?�}lc�:��2&����h��AOX�Q`�G2~Fr��e�+�[c�po�"�p� C���L�V_�MC�4[ղ�Nw���kg+�4], ����T-(�L!R�r�*[�*���L����~���g��+�B�2i��Y ���q������� -O�_�`N�YK�-��#� �m&�� �c-. -qk���acYO -",�7ⲧh�٦������q���283B~�{�F�9>Hlдл�S� �P���c��!�Ѯ�/�tȚ��|v�(�!��ˣU#������&�y -7mS��2w�%���|C�a�s�6�<'���H��t���&��2��(2����v��~�t�����ɚ -�(6��=$+O2ʐI,��ݸ�h�`&ƺ���� Ig�Szf�K@�%0ս�v����c��z�0ڒ���:W���n�l�db��.����R����53"���08 #|*#�k�i��q�fK�t�����{A��+�YR��`l_+���^���Ot��)�F}��ֵ��#�C8�}b�cTFE���.Bz�&:��Qh�м�Ө�́f9��aM[��v��ʕ�6�ɐrDa���뤙<�&s�r���!Mr��?P�6p|������b��6"�<���w���ss�V��gJ��7�.���"�)�!�? 3��e�q ;��,(2�{���Od��Qmg� FTRk���f�_gS���~� �p�Yb#�������*��c"ǁ�.]��`G�q��� R�y�4�|ICQ��b����}����t:���K�<���|��|tń�|��.'�v��17ҭ�T���J�v1ŁFg�C$��rf�mWKB}dw+�o/?7 -{D�J�(��eO����sg/�;��'�|G��B�� �+ysDu�$~��'�_5A*ӌ�-���Ū�1�1��!}�=�9,rR.5��}B��t�u��`���<���:��| -7����|�� -������_=����i�ٯ|����.����λ��f���$ �� da!��˄]��h��\��/|n� &�0.:ʤ�=��:�e���c[}$+�1�2�J9ď�|\�uׇ��^�?z�ɴ�A��V�4��>��ȇ�Wf�����,G�UgAވR���w�8zowxzBz�M��|E�G$����$���ѵr~Y.� ��Ƿ'~(Z���z��ϧ}*�A���o�}{���� d{G����f���J]sI`����Ín���aC]�P�� �4@�E� M -$�9�0�H|��<r(2��1p4�&Ŷf� `�x��L)F���lZ0{��PC4��p�P)��y�и-;��,�|�L�t³dI����*���wz��|���x��wY�@�%������)m����'�p��Mř��I� >��������Ѕ����ry��z�a-�2��\�8(b����Z -�~���ѱ����WHe��Q��a" -u���O�0@r����:\�hl��������%�ŞW��/�G��?���':�(,�G�"�ZH��?���O��wR�a$xk�ހ��)��G�" -�P���fj�"�!~%�"� �-��#�O��dۉ�l6�5��dK����u������|Fn��� �+�_7��9|�<����"�z���mYGH���AKa�F��6��d�T�Y��1�;�1t��)a�w�\"�}�W�0E�t8�ߩNq��bJY�Wv%fdbL�9��W2{3�6`ďy��{϶"�����[��3E��w�����\����2#'����{�B~�T������ �2��@Y:")`P�(��) ��_��E -$��~6�QgŒ�T0�k�/�� -i2)y�ŕ��-�ؚ{�X}w,b��q�D>�Q�+�3�X�W*x��n'DN�`�R��l��~.�"�; &�~�D�)t�I��T�o8XX�1��?�n�x�MH�9�g��oY�] ���%�"��<��9��w� ��+2T�E̾|G�K��j*~k����=�vy� �j��]VT�� ��@�f��A�N���af#��=3�jC�Ѡ�^���" �g���,�c9��+\�ǐn���3 -�/�+�;ٝO��0ud?'{�G�A�2���Y�S��v��2���nv���[�I���z M�d�]ة���aM��i�<�〥*��^�]�{��L�$QX�58pM�����k|G3N����S~�v8��Â)�$ -'ȝ���|�H&�kOD,�_�(���)��5�;�����b3<"�e�Gb����ޑ�A�����, ��!���=-E-Nw�H��pӀi��w�fG5��=�/�|�/��o0��/��������9���~���*���Yd �^���foK#�~v/%y�h���I��1���v�����E��i��5�,b^����+�y�e����~�M�,���e��Uw��������O�9�,@�/]�^"�l"#qX�"I� )�A�ks�BI�KM����Q�d�������q�I�r�NrK�QF|9ؔJ7{��Gm|���0������XX6~���L�Q�ww"h��F��r�{�1㸘��� ����ᠹ�dk���Y1ih�J�s#r�$���C�@���DB0�����44�(��� �w)ω4W�c��Ld�dʱSF��.���5�IBWG�=��IK�X�����Ǿc�;�Յ:���ҽ����[��+_5`�87��Y0��=��E,���&��b��)0�z+r�r���+�S�T� އ��ܨ��ehFYl�p�[y*,�o�竰��3{�@�e������CY�{F������g�A�t��3��_�H�K�2��%�� -��*@�E.R'Z{&s_����>�M&)�8O�� v����������r�~����/��ެ·3ן������W�����G���_~��0���/���o?��ÛO���_������Ss�{�U���_� MH��5˄�#��������t����T'��$~�0o��������x��뿮^���o�������������;���������o���?ֳ�����:̾���?����m�������nښ�Xd��Ig%İ~5KW��a��H1�� -x�ؽ�~�>��#�ݧ�RY/x��(?����܋�k\e�9�^.�ɏS�N�2zD� �gɖx���W�!�b҄�/�g�{4���<�t��6V�FH;�z��[�1^�1<��W�OWP����_�cR��$XM���L����Be�X^�n�O.l�f5/��і��K=��9����(�Q}��aj:�l4<S�R�������E�~�id��*�U_a|]�۱��ͯ+_��R�Yq�b��*Fr�.�}g������l�rޡ\��Vz̑�slg�JezƱQi�@�įG�mtb����P�m�D5K���˴r�?��z ����23iP;��L�� -�i vgz�2����fvU:/����W�Ú��f|�F��ɿ�����/�BK�\�C���x����4T�P�n!7$�P/���!��T�U���7I�n�m�ZzZ�ɋ�,q��J���5ȓ�&��)�fEjh3r�:�q�3����>�>��<����`z�?�m��$u� -�{����K���9<)��P.�{H���5��_$_ɴ���Ї�������@���� -�?kY��2m�|H(��~k����v�Xi�s����l�-����G�`���@�}t����[{��-⸋n����h�����~z����f)�`D�ۯ�h�=+n�Y�zu�k���(Zeì�v������9�#l� �Fx�o��9�D�c�����? W1�����}[l�ev�Jy��_��v�B�}��`��ΟbJ�����=������J�V -s��^L¶��{ t���:�>��v��C�O����>DnЕ=D������#�[�oMQ���I����?�?�`����/:��t�_�����?�+���Q6AZ)�<F|Y������`3�26�N��tA�M.Xo���a�$����o�/�t���K�fF�-����}�'�O�B�N#��<{����f%Ξ����1�o��5N�_�/�"7�By&�?`�F8��"�>e7�����-�rx�gAN��� �V{�R�Q�~��=B_��J�$�v�A?� �z=�fD)�!�(�gG����d����dǽ�U]�n��1��1�!��Ƭ�ǘ���X�1��1�)G�=?��^Ƭ�ݘ���^�c���N6�(ET]���f�n�|����9w_�w.�����ߍ�+}��3�݃����-�� 2�7D�7>|�;��6�+��H�+:6�ИF��o�ʎq������&˧�$ ��N���T���F�p(ژ7�3W}q\\Ud��Ė]���tuȾ�w��e -�ez���E��dN<OKܗ�vb�رg�*C������bo1�3H�F�D�� $c�(�+/݂�g�2#[V�a+���a����X|ӛ��h���aK~�I�qy���}gLC_�����!N��0+���t6���z����#V��y�i���6�u��!̯F��'����W"�!�c���YA���kV�W��;x����γ��W ;�O�y��Ϋ�bk~��g;�.�\;عհs������*�yq���v�.��`5�`�����V�·��:�3��;`;P ;�'�@w���s=��v�,0��S��ᳲ�i��2������Q����#>����l�a]l�!�O��]'ny������*�������i�\L?������F�>0���@%_����}�.�-�R8F8}`�iN5\����e�!:b�y�۩YR9����(��"��kS� �"l�*@#��a��EQ�8��.j���-�bj�7*�Z�����_�l�;��T����#� �����s�{�g>�Pd�ȶ,�t��s���G!�AR��/���c�A��b,j����&���PF�ę����3�F�t$Ҡ���S7��P+;tkF́M{ES��M�fq�������ͬ����d��;���HcW1���+�SST�MP%�j�Σ�x�cZ8~�(����.��Hˑ������$�6�� ����� A93�^�t�����E�����@�ր������@X�n8q�)l86J�������3���^𨎱p}'�18���(q�Q▣�5���%n(���!p��0h Xh���xT[|/�����a"�%�%���J@(qUq�-j�c"�5<�rx8fx8������ <���+�X�^h�.��B�M^h�k��9��?�E/4�a�n�\�t����#*�Gd�G�>���U���xׅ��a)>B#>�>����J�������|�[`������F�>0��k� �~)>|#>�>�᷏�Jө�9�ap%�ó�W -��`x�ë���\9���õ�[ -��`���:uN�uIh�X�h���}|T�x��ը�����0@����@�#�`8��pJ������}`TZE�����N=*/íP�VԻ��n_�n7��]@��~�A�yԻ,ܵ��/7ԫi��NP�>�ŀz1p5�B$�"�|��M���m����C� -i�i �8x�H��l����C� -iղ3����$��Lr�����$!��$!��$!�:I��}��ȿ����$�e���V#~.�Ո�NV#��bX �&! �B�B�+:րp�����@86�!��5k�;ۢĥ(�% �% n% ���v��)�W� �SOay�)4���^ROa���&��� n)��|�Hh���%�%a/( ;@Ih�9Np-L$��GP����x�#� �"\�Q◣�7���%~(�m�{C�+C�g��%�%^/(�:@IuHV��0���n9<\3<�^��v��*�7�����Q�Q�(���v�h�=/�&bmJ�T`6��^L��S�E+����d(�о -����ܾ -��UЋ}t`_��c����yW�m�Xai+4��>�Xa�y��:�� A���R%�o_d����Q����GT���Ap ��6��&�Bc+�#���� -�X]��W"Q[`������F�>0* �.!��T˷ϷŇ_�߈�|����t�:��0�����+�g��0���Qi-�QF��8\[|���p��p����>>*ͥ0��0��J�,4��>0*-�0�"�FW�q�[|�R|�#>@�����D -� �`\ �pl���1��N�����"��aK���7���c��y��4���� -��c�vy��u"'j�r1y��^+��c�Uy���<V�U+��c�:�D�-���c�6y��*���� -��c��y�hA���5�hn �x�� -CP���� -��?��`X-X����:�L�j�+��� -��\ae�+�1�v�� -��\�c�i�ܒ\�u�8(��q�K�8� FXĈ㘛 ����������z ���py�{�sMѿ�:F�Ljs�8�%Ft#,bı7:וh�c�Ay�80Lj�^b�A1��"F��N�(�2��k��r��3J@/(�X��"/�2�8�(q�Q�Q����T;E ��Uxˀm�8( �Pq�G�8h?TT��#=������f���4TC�A���PqP*Z+��?�m��#4#�a����!���b�->�R|F|}�#h�� c��+a�-0�R`�F`�}��o�T�EA�;��ó�W -��`x���v -�9�����}sm���5��n���4�����R5�->`)>��|���Qi(u�8�<'��tV`#Jcā1F�#ڏ�1��-q\�J$�c��N�p�F�9� bׅ�w�1 9�v1��Ŧq��b����Ic���#Ά����0<7_n+����:(��(��(�}�v�"h�"��cfm>�|@%|@)|@_����Z�A,�-�����6�X@��n`� ���AAݠ��n`��xA�?��E�fP7� -��AݠǠn�YP7��F���߳�\�XG�:�Q��9j��%j�� jױ���A~x-Ab]k���(q�(q{A��J\�P�ȿ��u��S���u�^�u��u�p]��>�2&�Q�Q�(��t�`�� -�+\ױ�u��us���K���A��c���}�:�g�p]�4\�1��:}��:��:�����~xM�p�6\�) �u��N�N��Nu�.6"�Dׅ��a)>B#>�>����ʨ]t�q��:�� ��A)0#0�>����p]ǁ����o���~����GUԮ� C7�����+�g��0����U�}�$�ʱ��uJ�vcԮ�GԮ�~ԮS���Ax~x-��,4��>0`%0<�������0@������C�Kul����1���N��p*� A�����v�:sNe��S0��0�t0�X�����㫊�dAhN��͎M�f��~��_�f���͎e�f?��(l����ov��ovl�7;U�����7;]�ov,�7���ǡ�,��6Pl�l� -l�?����V)$#/t='8��Q��:<�څ�*��vsWi�vsW�4l7���v��+Q�^�x�� ��o<� 8`8P 8�#�@g��fc�����+N<���UX��R�%��˒~:aX����²�V՝�=Th_m���W�- @\ -�>���b�BΞ{E1��#k�D�(��(�zAI�J"�B�����$�FIX��Ќ�����$�)��л2��( �Q�Q�6�j��W��%~9J|3J�^P�w��&U-�#� -R��{����������xx6�j�ѕ1�%n9J\3J�^P�v�������P�Q�Q�(���v���a�8�` P`���x��LF�i]_��UPnQf�*�Ţ -:��Z$�n��rE!����]�������|�_�� C�����G���g��-��->�R|DF|D}�#j�����0���$���-0�R`�F`�}�#lv���^ 0[`������F�>0�]��%Q|[|�����������>>�]#��W�8<[`x����������>0�]� W�n)0\#0�>���DW������0`���Kt��k�(0��>0�]#����A[|8��p��p����>>l]��]�J�&���]�+��'LtU�Z���&�5v�HMl/�.�u -�z�!W,Q!W,� s��n-WL�:6�7��W -l�@�Ҡ �`�`H�]!�"6 -\��4Pi�i� -i�?����V�8�C��㜿��hBd#��HE���������&F -G9D�U%�D֡RQy�Td��z ��:��lB�p�C��+C�c��%�%N/(q:@�c��lG�m�TT1#��>"���#��ʈ)�ApF��6T** ����RQ�RQ��RQe�5:��s]�#��GX��Ј��|���#�1:��^ �l��#0#�A���M{q�^�o�����/Ňoć�>�������:W�8<[`x����������>0���q>:��+;����pK�������}|�6��B'���q@[`�R`@#0`��������qy�������h��0b?���(�->�R|8F|8}��i��S�����+���NE��SQi�T�W�T�M�Td8z^��$z^�SQ� ��&� � -2��2�� -2�l�B����Y~�.�}5����jȅ� -ՐW��r�٭UC�G��p}�Byϭrh]E,,�"�����T;�"VW#v�(�k�W�����U�Bs���*baU���*b�:]I)��:4.,�͡qa/�qa�qauh��^�WZ� �F (G 0���J���G�c��%�%N/(q:@I��� �0���tCh��ąƘ����������:&.t��u��J��#*FdF�0���Q:��y�w%�m��#4#�a����B?v�Ո��A)0#0�>����`���H�\ 0|[`�����������>0*�ం�D��m����`����V�B߿Ե�[ -��`����@��!v4�+�,4��>0*M�~���D��������h��P?t]���T �N)>#>�>�ᴏ�J;(:���q\@-�����:Qpae\X�v�E�!,9n[�]ϊ��V.^�=�ȅ�*>�6�ª�Oa�®*>���|/���C�θOn�A=���*�����BZ5�s�mǏ�0f���]0�r�13w�&3w�I�1s�n13�o� �E�����xPp� -p�p�G����W��`�@��E�w ��aW��m���`��I�m�S[��c>�`�u�5<�rx�fx���#���t'��z�X�#(�G`�G�<��</��A�%~9J|3J�^P�w�����.h�5�=��� J<k�x�(��(�zA��J<�P��ge��5<�rx�fx��������uc?�L�@k��r�@3J`/(�������b�5<@9<��x��aa7��5�ñ��S��x8�����1���t�& � H�1)�#)h?)�N@���Fm��;�+�M@ -J�cR�GR�~RP����^\0B[`�������F�>0*��^D\ 0[`������F�>0`���u��->�R|�F|�}��o�6S/��л���6)(M@ -� HA HA� HAu��9��ئ�����-�k��0���Qi �@���J�����4)0& }$ �' � Hn��u�oU�������h�FQ�\��j�(�-0�R`8F`8}��iN50@x��zTRP')�L@ -J�����n��$����W�;��c��U9FA9FAW9F�m����8r�Snu�A=���*�����B�@Z�xmg�s6�^'�#�J�*S>�S>��R>���K��nʇo�뗇���p\��p\��p\�������~y8�o��{ ��;��m�q;���%�5J�r��f�������%n?�=m���~y8�o��{ ��;����q��������<@����[�.ck�8�(q�(qzA��J�~b�N�D|�u��~i8�o��������-�q;���}��l���#2�#�Q����q|����a)>B#>�>�����ƿ:W���m�s���\��������W�.nq]3�mp�_���s�>�s���s���\� �(���8<[`x����������>0*��0rA�_I�o������\���\���\�:8zA�N�@[|�R|@#>`����V����ׅ`�P�`���}|TZJ!���]�pl����1���N�����B�����Cu�:��~e��_�����w��ۅ��^���&V3 -�"��:QHm�����+}��J�*���/���*�ҷ���}Nq�Plz��J�*�ү���{���;�����+A�"�� -jSɳu7y��&��n��p7y����jw�5��=[w�W�n��&�w��ɫv7]�߳�:y�^'��u���:y�{��j��5��=[��W�u�^'����ɫ�:�z0;�p����:�<��������|�O�wС�JJy��'�����O^�'�}�W�|0p��J������+�:yF��ׇ��k���U{��8qt5�����h�~�ݫ��-0�R`8F`8}��i�~&'^�=���Lq�@;?Sv���$_Q�3ɿ���$?�E?�J~��]@;�V\I�^�:�����}t�j�兮�x��5���Qz6>J��G������Qz�>J�1� ��Qz5}����ҫ�Qz=�(��|�����a���Q��)�niʤkL�t�H�t�O�t�S&��������R�k�a�}����}خ�ۉ"���Y��.Pڢ&,EMhDM�j��QZhB����5y�\[϶[��v��m�϶۾gۭ�l; ���Nd}�][��[��v�.m���۾Kۭti{��z���ó�W -��`x�ëF���KOum����5���n��p+��>���m�K����}��X 7r=�J\ڮ�K�-ui�F��ۇK�mߥ�V����^p]űŇS�Lj�|8��é���6�v϶[dz�Vz��R϶ۗg��Ƴ�Zy��(��G��)�5�,P ,P -,��@7���aQ��x <�M϶[ϳ��x��*϶۟g��ʳ�Zz��(�^k׳���l�V�m�ҳ����v;�l���m/��y�}n�mh비��Kh�\�><��}�%��\��]��k�AA[%,�QB���ᣄ��(a��+�N��5�������(��G ��Q��}���G�eP�{Wb8��>JX꣄F%��G ��Q�je��0��vE��^)0<#0�>���Je�\KZ%�uN�R�$4:'a�IؾsV;'��s��RE�->`)>��|���Qi#���H`P -`��}`T�A��D�u��0[`8��p��p����>0*���N�0��9 �8'a�s�:'a_�I؍s�9'C\�ѳrN�:�IX霄��Iؗsv㜄v��Ѕ��D��rNB�Ss휓��F�z��9�^pR�����b�J�A�H">示�Ҡ �`�`H�]!�ZT�8�%h]� �C�A�B�i�+�U�N���߷�4��X�J归��W2�W2�W2���0����l��Ai�?0���>��A����2�+�a���H���3�4|�g@�3���P>�%��]��7`���K�����}`T��Q��mً�$n��̀Ҹ`��}�̀��f@u�LA�W���q3�4n�f@q3���P7�Q�W�^)0<#0�>����U��k��n�p�F�e7��8����q3�7�����̀긙�C��{5������h�����p��-0�R`8F`8}��i���������"�:� �2���7���@7� �.����0h�Es���W�s:�3�r:���Π+�3�u:�QǑ�?��u:�zNg`�tUNgП�t�t�Ng?�C?l;���F������������o�u���H(:�i2]�����R�c4�:}����N����9y-��l���3��^����z ��*@ű�;�6`�hv��;�ۀ�j��yQ�z����,4��>0��E�8��l�J����}����c�;Ap=��c��N�p�F���c�eI`�o�u�=ҳ3�f����Ec���I���[4�a����h���H�խ�(n)Pܾ��v�Ju�ׅ- �~���V��� P*�Stp ��|������T����� |��XC�\|Xu[�;$�����ƪ���4UusW���n��-V��F�Ĕ"��9炩vk5�u�k�ʷB�_�*�GT����Ҳ�g?}���ǫ�� -?^%~���u��ʣ������Qw��&~\+����q{ď�~�j��ػ&�����V�����=�v��ʃ��h���9��������?�3�T��\������S?�~�J�8=���?�^ t��I����cl�)_n��T/��k��4^S}t��b�*���q|=� �!'�ANX���?�]!������w�9A=�6� ��+�T�!�Љ�q�9^=�x6������+�T�y@AFW��r\�U�q�C��r*-<��н��zȁ6ȁUȁ�!v��J�p��8���n`�� -�� -T� -�+��*M>���x�3$Wl"m�j��B'��� zt��𣿤!��z4B��p��fbCW��7`��ZjZ[�K�.�<;y�0������*�j't=�a�D -{c[�Z��,ǔ�trL��rLyt�r�\ �A�ë��hX�t`WЩԬ�c�-�Pa�#@�z�6�U�� -t�*�ڍ#����x�S:� t�*�8�A�� -:N%t|��.:���fj�A���Z1���Ma�r�)l���40r�i������NQ-8Ep�*����#8E�pr���%4!�da-�� +@���#�U���(t�8|� j�,��YP��7��,��|�m[0���N�X��|(�P�{�����J(y���3P̽Z��,@�U��� 4^G��*A��Ց̭V���(��[d��� -����ή�qd9���+A��;�w7�@�$W�JN�Z�m�)R!)���翇���jۢ�r��d/�-�ϰ����� -fdb!#�h�[+�N���W#㓌��ad�#����/dd�C#�vJ�p�c��[�>o��s��ի�0��k�=Z�?���2������~`/Z�u�����Ͽ<����0��L2��CJ�7�$�!%R2���{7�^b���� ��O�Ƹ��`�_�����[c^�b|����}c�k$؍1����A7�����8� ���o��WP�3�E�Ȁ^" ���gy ��Ok@b�z �!<�X��s=�"y�6���2���A��:1�|�A�g�������^�M1 ���w ��0 �����c�3�?�%S(�Ѐ�w ( a@�2tf��y����'5 �r����uߦ{ǀ�����6���m?�@�Z��Ok@v�� Ⱦk@6��eȞg@���ҹ���)d>4 ��d�1 s�)�5�t��g4 =ŀ���5 �2��3 #�5�������ЀԻ�B�Zƀ�[=V�B��o��k7v%���p�廃.C�\f��y�.D"��IT�.���p�Ż�.B�Xf��[�U��.]�l���A�:w�y�A���y���qͥ�<�AgS�}8���Ag!�-3�筬J#;�.��jГ)��|8�ɻ����d�A?o5t��dO����i�7Y��;r���Z$��������_~�ʾ��:���_���iƴ�ƈ��?��ۧ�dߺ�o�_�˧�Te�=�>��l�]��o����ݿ&�kz]d�^�&-�u��~���������Y�m�?���ݷO�6�~������zs��������O/�Fy(��E������?)��;�2W��W��Mz(�����ߎ������T�l9��#�]?��!Y�q�<����:���|�u^p��"/�7��_����o��(�z�o0$�.���͵�}� �1|�&k�K��_��7'�x6=�����b�X����N����ݵ�_>��2y�du�ڭ�^��N~}�//����<����{���������/��>��!����q��џ~�5#�gS{5ˮ^6ax�{����x�:�2ܘ�x�_�B�YY����}�ҋ�};�4iuoO�7,�if4��b�_��~�h�J�sE�Hzp�P��$ʪ̦����_����꩝6m����7Ʒ9���?� �ڋ���jO���8�(W>��wTO3�=���u_��m��u�7���>��O/���ý_�>�u�߯�ͦ:��z�������|ȕ�s�;���ԇ�u3�O���s����U�a����I2����:˞��Fh]�=��.+����KΟEu����K6�l��%f�ZJ7{�v�M��f�O�.�����I�l6�����Qm�^t瓍�A���hmU�ǓA5���* � G>�$0 t�G4��e -�x�\��4ҵ�`��yT�K{��U�K�\m��|4�$�H�Ƃ���6 6�n�����H7�X6,FRM�*�.Z�t���&˶���~>�X���Uկ!uIֺ_F��m�*��þ���}]��pw>�X��|���׳b���j�8�q�Bȋ)�,q�y�!U��9u�l���z�,�6�ǚ���Q��f�|ʱ|h��l��������Q�;[��*b�,����MV?X��M��:����G)�!N}�E�Q� -��Te}���h�5(;��P 2E���:뗏7m��!���u�ONe>�6X�ɒ(�^����T $�yJڦߪ��=��Mz}(��q&I����rh��M�����U'��v��y�Ҷ��n.Ǯ�)>=���ȼ}\?����n�;no��'\� ڪ9������riܼ�v8\�Y �}���6�T/��^W�=,��ݐ��zG��Sf�A��� A��艺POz��;w �A�<:b����v��j�(L�is�ylzW���/���ஏߞ�I�.�K��M�������C�~����]�r��H�2�"��fsR�}�o#�ٷ�nXy�b���=���� 梁s��$, �c x�Ι�K͖[?�<vi\slsDĠ ����LJ�Fz�-N%ʧL��9?A�t�_����h97�OC�ҹw��/=V.&��q#h���p���4?ߊ��h"�y,p�&%|ڂͰm�j��"[ud��7C�./f�e�`a��lqu1T{w�]�i>?&5dcbz�WXz�c�}��Dv���Dcu(�4����߾}�OE�Iq�Z�d�Ɛ�V�����hz� -�x&t=>�'�(���Yӗ{�>�<�>���;�m_�;?.�d\M<��z9�g[o�"ka+.�#�w�}�n�|s����"�pJ0)�l.�)=�1�C�ٌ�%6K�A�2s�����B�<�衦�#$�<؎D>��]U��CۉL�z�(�]]B�Wى'��/�X?rI�rF��䒥�eب�=��?w��1Σ$&8�xX\_P>У.*@�������v~啣�!Y<tT+$�a��&R���J%%��k���XH�����,�tT/���� -�� �"k����ʆtbR�P3ţ��[�� Ţ����fJh9�%!��U5Sˆ@F�B�8���7�(��oFh�2-7��A��'_��D�����v�U�"�"gp��P��k���㇇2d��\��Յy��UTn��)/�z�������mh��W~�DB��A�~�C�p_'�}��AĶ'�������z�>�+\�ۼ��QN��(07�n�n��D���J%h�i���8��� -��A���S��r.福� -0(U������2��o���@4I�x� -���ĻU�0�p�`�<�$Â�Ш��`0ԫ��n#��P�lT(I=� �=�&���T�`XRl�y`I=� �%��6����`�S�l/�����]u�����b+/�:�w}j�I[�զ�tY�X��m^.u`���G����Y�_^AP7�pk�p�e2qqqBRǜL��'�v���䎉��� ��l�I��ó��Z�d�ٶ� Dz����� �iOn�(��ٲ�!�^�,�yBʕgq�R��ƥ�ړ>D�I��Гg ���q�7�TŅ8@�LX�tKD�0<R�� -q|l��� q|b��(� q�j�x� q|f�h�g� q�n�Xh=\6*@�H$�㣛ol[�n\���)l��I[z��Ď9/�_�� -`�i�c��!342�@���0��h4d��f&h4�@�h{��03C�i`R�f3�|�F!��1&���e6��҂l䞤DƂF�%��y�0U@��,A^�$�.�m�u���y҄�萉���1��Tm\4p��sѤ %�\\��n����]Lr24���N�fU&��,kGi\��B2�,�dq�9 -��rOp�8 -��pf�(&̺QL��S���nqh������hQ�>��><�S"��ݥ��ׅ�oO�����8mv|�<k2�-�T��Bk��^�����L��i�������I�0���ja���v�h8����au�� 9ΩC8-#VIp�pm'�Ll�C�><u���n��2�'Wq�J�� ����A�(���Ly\|3��MV�<d�6,�+��'f\ˡ��6q!v94*�,4rƆ�X� -��Q%�x��rhT -��m -��i*LG�Fn��;����X��C :�&<����*���lx*�Ǐ�YQgϓ�T��s���xS��S�;Z����\���x�PQ���� ��e��خ�MZ �ƞ]�˵�D�:ס�-M -����&4)�b���Ǜ��L_z�ђY%��Lԏ���DWg�D�Lmc����"���&�J��Lԋ� ��brԏ�� -L���ew�m��lu��w��S�5��T�<��8���!�wq���ʙ���I5`�Q��8�cO�n&+��Z�:��оM�TF������<+&J%db����;�G��2�K���O%f�J��p��#h�_5�Y��rӍ�`��:{�D�A��*i��ǿ ��b$bt�D�Q�Ʒ>����;H�T�T�څᘩ&)�(�9\��m�AKq;F�m!���S��i!�U)�U6bX*]J�p!�/h�a��l��d�w���j�/�=���8P\,@ˀ�B�i�(��E�BL��O�#Y���v��9�T�4@YA��2V���NC�f5�qRI����������oo3�w���%�N&h�d��9U"�!��D:N)�%�! ���C>L*D DǕ[$'�" Т�I5��*�I0p�"/�Ϗʐa D�(S�1��)�-�;R�1\_�ݓ�� ��@��u��Z�#�e��(0l��-�����h8k��$k���2ˊx�T{�Qb�sڬY��t�g��PK���mП&K���z�8U'<�ܖ��FI%�$��w�"k��Lо�����y�$+�%Х���&xjĭ�p��n��OM+�a��\�SEn ��K���T���Q�;���T�[��\���h/k�g7�o�)��J�s������"��6�q�>���*�"'`�u�p�T���!69"#�ԯ;���鷪�v�@��Գ; $���@Ie� �C�I�E��bST�@�� Z�;$���x���� ��jx����v���rrgQ��ȃ���D���G�hżN$�{�V��D��A[������XH�&���h�t��uZ�)`���{����� 27چ['���Z��Y��2�@H��1�>ߴ�:�;RZï_��N�^1G9U*VL.� -t��f����JFo�L�HO��YG���,Ì�u���,4�U7�@E�:�q�qu�mT�8J�p��������3��uI6�����b -�iQ�r b�ˢ�"h��� �E�J�\�A����n#�x�;ϫ~w|u:��Fe��^=R��x\T�� O����pT�q��m7���Z����\�0�������8���J��[�$�����"�gE�z�N��Z\oU�õ@FAIry���P �%��@0��Sq\�R��08&�`pP -��4.��A\S��u1�A�6S���T���qf�S�X=<�K"<��v�Q����}����%��{�D`�@�g"!�x��G��"��L��H+�o괍wx�I�ܥ -�DV^��(�rEG�Yy��Y�rʒ�]�}T�:�`��6�б��jt����p���k 84_ -��I��N�Fplc9���S��j�A���G�\],h�$|�V�͓\�@��� �=H�Yر1p��5���E��\����R��ɥa���� $��H.�1�X�{��$ Arq�$����!�$n ���;iH. �KCr�j��D�<�a�by -��ųq���2K�<K��T ��Ũ@(�Q�T��.@RY`| -�r���e`t -�b��@,<����K@&�y 9d�"hRx�yܾR���r玽LMz�h����"7o�lȽ[4n�MܹE�!7n�l�}[4��h6�^�l¢�0���^�:��@ -g�v��q`A!�M�V7�hN��Ȣ�����u7��.����I���./����n���Z)c���w >�����)Rz{y���K�q`����K�I���x -�K���V/�g���K�!���Cn&,�ǐ� -K�����H�/�I:HpT��G%l�&��<):���+^��+����PD�O*RG,]L~�3S:�hi��iv�*�9U�K�IQ )=��S�"dic��f/�Gj�r|d��D�1Ջ���wպY��W��眪��yPɅ<����UERϪ"���U�\�ӪH,�,�r�Dr�%&�(J��w�K� -y��U �����>��v�00�燑�? ��ad��&�F*4� -Z�H&�����^�e~������h�� 5-�l�C�>��9��vP&<��N��T����t����N�SQ�?Q����"O�s*Z� �[��y�� s�OAO����"TԵk���v^=m�ux��0�8�k?= �Mx�� ��2�@6�e�Э��N��%WA�xb r��������Ru�X�H2����L�fS��vL����ˮ������϶y[�_�l���m^6_��a����>}o�'���"��fSw�=�T�1��OM�(����6�/���n���������/m��M1���K��~��/�)�i lT,l�ѱ��e"cba�(��������Pl4��'�B���²X�h�AO5�b�����y*�m,��.�Xt�S�lc�Gu�Ƣ�ꂍE<��m,���(�b�O���E��.8�.]� �'ca���T,lT�����3��Q]p66����Ft�$I,l���X�,e㱰9��.�r�-] ��[,�@��$]�]�M�.��-] ��[,���.�Xt�Q]`���[6,]�5ˆŢ�����&��c���x8)�U�D����*UJ,ǮX�˖}*O.���M4 �����c]f5m���p�$�Ȟ� �^��b.�,���~,)K.d�)K.d�)K.d�)K.d�)K.��#Kƒ�Bƒ�Bƒ�]ɒ��zd�XrM�d,��c.d,��c.d,��c.d,��c.d,��c.�,��c.�,��fYr�\�1r�\@�,9K.�^��%��%g���d�Yr�6Yr�\�c.�,�0�\����saΒs̅9K. e�9K.�e�9K. f�9K.�f�9K. g�9K.�g�9K.�j�9K.�m��%P8K��蜥`���R���g)Xr��Y -�\@�,K.��K. ���%�DK����d���γ;�U�BɒH��d��R���i)Yr�,� �%K.����%�SKɒ�� ,� ��� ,����,蝅�;�蝅�;�蝅�;�蝅�;�蝅�;�蝅�;�蝅�;�蝅�;�蝅�;�蝅�;�蝅�;�蝅�;�蝅�;�蝅�;�蝅�;�蝅�;�蝅�;�蝅�;�蝅�;�蝅�;zga��YX���w�,蝅�;zga��YX���wV�,蝕�;zge��YY���wV�,蝕�;zge��YY���wV�,蝕�;zge��YY���wV�,蝕�;zge��YY���wV�,蝕�;zge��YY���wV�,蝕�;zge��YY���wV�,蝕�;zge��YY���wV�,蝕�;zge��YY���wV�,蝕�;zge��YY���wV�,蝕�;zge��YY���wV�,蝕�;zge��YY���wV�,蝕�;zge��YY���wV�,蝕�;zge��YY���wV�,蝕�;zge��YY���wV�,蝕�;zge��YY���wV�,蝕�;zge��YY���wV�,蝕�;zge��YY���wV�,蝕�;zge��YY���wV�,蝕�;zge��YY���wV�,蝕�;zge��YY���wV�,蝕�;zge��YY���wV�,蝕�;zge��YY���wV�,蝕�;zge��YY���wV�,蝕�;+zge�Ί�YY���wV�蝕�;+zge�Ί�YY���w6�蝍�;+zgc�Ί��X���w6�蝍�;+zgc�Ί��X���w6�蝍�;+zgc�Ί��X���w6�蝍�;+zgc�Ί��X���w6�蝍�;+zgc�Ί��X���w6�蝍�;+zgc�Ί��X���w6�蝍�;+zgc�Ί��X���w6�蝍�;+zgc�Ί��X���w6�蝍�;+zgc�Ί��X���w6�蝍�;+zgc�Ί��X���w6�蝍�;+zgc�Ί��X���w6�蝍�;+zgc�Ί��X���w6�蝍�;+zgc�Ί��X���w6�蝍�;+zgc�Ί��X���w6�蝍�;+zgc�Ί��X���w6�蝍�;+zgc�Ί��X���w6�蝍�;+zgc�Ί��X���w6�蝍�;+zgc�Ί��X���w6�蝍�;+zgc�Ί��X���w6�蝍�;+zgc�Ί��X���w6�蝍�;+zgc�Ί��X���w6�蝍�;+zgc�Ί��X���w6�蝍�;+zgc�Ί��X���w6�蝍�;zgc�Ά��X���w6�l蝍�;zgc�Ά��X���w��w6��Cm)Km��e,��ƒ����Xr��PK.�wjc���Cm,���y��%�;���B����-�\`�Ζb.�xgK1X��e�,��2��l��w�s��;[����-�\`�Ζa.�xg�0X��e�,��2��l9��w�s��;[����-�\`�Ζc.�xg�1X���,��r��l9��w�s��;�s��;�s��;�s��;�s��;�s��;�s��;�s��;�s��;�s��;�s��;[���❭�\`��V`.�xg+0X���,�� -��l��w�s��;[���❭�\`��Vb.�xg+1X����,��J��l%��w�s��;[���❭�\`��Vb.�xg+1X�� ��w6�\`��&�,��s��;�`.�xg��l����M0X�� ��w6�\`�Φ�,��s��;�b.�xgS��l����M1X��)��w6�\`�Φ�,��s��;�a.�xg3��l�����0X����w6�\`��f�,��s��;�a.�xg3���f,�9��0X�s:�a4���t6�l`1��l�������ӁE=�3d�){Ng�S���>�,�9��|Ng4 ��9��$��tF����MB�~Ng4 ��9��$��tF��Ӕ&!P@�)MB �NS��@��4 �:Mit:]A�ի��֯���v�$�X%F�t}��z��!j�����̄��9B9�ӵs�r��O���N?�4G({�t������r�r+�ӱr�r�cg���֜�g,�rvƮ��8��ؕ����2��4?cWFQ��g�ʈ����]�p���+#N�3ve��i~Ʈ� 8��ؕ�����2��4?cWF��g�ʈ{��wѵ}���W�'ۺ]��a_�.z�nY?�x��Hz��7zqس�����!�M�����a?��z���}:�^���7zq�������aL��ы�T�N{�� Q�$��IԽiqτP:�?|������6w8̺l����q�����uլ�j�z-�I�`+G��@�`�Fy�@�`�Fh�@�`SFW�@�`FF�@�`�E5�@�`{E$�0���M��>P)�h��>P)�m�3u[�iy�n��5-��m���噺-j�T��m��r�n5u��~�n��b�l��u,�m�d��O�jUmv�㟽[{<<�T|��,�i�8�5�����թZX����j�I���%�Z�s�2�Z�s�R`-��j)����j��8W-x�+g�_���yD�Ղ�3�s��H8S9d��\m��s��J������~~�O[��f\BV��]8S�T�MS��=y:>�~��c�۾�2���YՇ��ؚ�q��XR�u��j;�n���x]���-�noϋ"�:����?f�)ι���^�G�Bq6�)�nR�<�+7��^ힼ8������-4�W1�����o��S����VZ��Z欵:Wf -�Z�K7%k�w�����mN���L�e�/(�Ԕ��>� �7�A�����C�ٌ��9��)����D!>�}|o�w�jS?]���c��4���+�}u����nӵ���ز�L��^����,�)+�w�w}�w��?=����,�1���{7/�W�b����o���7��b�u���[\���/�>��b[W}�b|��ɪ[T�����iQ���m��M�Z�K���;�����ی�Ц:�y����v�Z���w?<{�7�濷�M�m�o��O����mI���Ū���m#�ݥn�����4�EM3e�U�^�M��,�����گ��}r��w��8��N�vm�n1���d�m���u�K������M�v=�]���O'_�����]��۟�oK��M���>�x�z�����}��iW�n྿�����9�۟��p4�����i?O�O�����������y�&�qcx�~�������o���?�������_t�z�\�k�0��I3���e�����F��苦_EY�����-_�X�ĥ�\WWur�aw���~��1��vؖ�;���W7u��i�ߜ���^�}з'u���}��w1���i�<'$U��/���#��n����n��<�W�_����8���m}ټ -���'��_�^�i��=6�g8}��f��n���N����{n��4���N��fS;R��q�4��+�}�圮����>l3̜&���o]d��N�b�zN�x6~��j�Ύ��!��9��W�fk/q:ȿ��~�8WO�t�o�O�"�l��=����ne5�s|WoVM��;�Xu�ze�����ʝ��U�����Ì�����(�9-���]&��c��{��)��;���:���"Z(�N�X6����2�7����l�A��1�vQ��֓�:�y-�i_U�~8�\NJ���K��5��g��\��6�����Q�s:Ƿ��U������T�d�m� Ν�1}�{�tN�x֎=#�N���ؚ�.㴌g�6��=� -%�6ٍg_��'W�fY��6�G��:���}ߴWaWs��m�,"]���|�Xũ�3�rN9����s}:}���:�x�^z�'�QI�4�瑚Y鴙�v��+��&�QP��:���eى��fY�����)��٪�{c*��8��_]��/��(�����Xu�_�~�=����4���q���L�����]���^�I�~z"Z�w=�� f1^fq�W����Ao�9=�?q���@����6���q6o��~�D:��_/����]��N:� -z$)Ng�l�L��*h���V�Q��k8�"BP�w�e�=�7G���fh�M{9���^���nxݜ�����3�-Tx�7�5�e�m�q�o�znoX�ծN��ް�A���l�D�d��M�*�-Z�n�N���z�M�K�H4o��g����^G��b,�{�G�zt��i�W^��N���:�2�w��=T1q�k'�Y�(���W�6��u��m杅\7��:��'���6\'@�r��a�fN�xQ����8M�����ކ]�����.���[�����d}\vxo�2^Z��ya�n���.�lkq�A���[C��r����$��l�x�C�پ�a����꺏�Y�_nyo������z�<���6� ����z��?V�&��ԛ=��������a�9�j�U���7Ro��z�I��#�SW*�����ě9�����ak؏�7o�|��M�\�#�_��6�Ո�6�v]�v�͜~[m#�0�������*�jn�V�����d��zxy��f��^'/�;���x��t���8N��7r���浚�l���������r���j����[�>��7��y�s� �~i�7�fUǯ������\X��4�u㝧Ͷ�i��.�5��Z�]���"���Z�~{��r��h�m�ys�uq����g��oSy��d2~�R���ߝ�K�4�v:�$��7��u���/?��Rz�O��K����Z���Nr]W�8�E�?�zvh7���n����nU���8��s�Ǚ�nS��qm�M�<z��'�ބ�x6g3��@��U�A��}��Лw��Z�"��zYp|�B��2υ��8�Y�s����aQ��e�mP����j�E������}��z��ϻ��x�hÿ|�.�.��+y��/����y�#�&�2^K���6�B�tYX�zs�_4W�a�L�2���ЃW�z�NB�Bz��OW�u�U���z�_.?�Û2���ON�1�M�kNޠ��|�8��M�.�P{*��8k�g1�Q|u|�W�=Q�'QUqT�Y�/�V�¸7oz�,�u�~�͛���WQ^:uo�D��qj�4�1Ro��0:�Q��Ѓ��7��c��.��j����#e��K�]��?̓��M]��X���ܷe��G�����V�d����.�S���]��"O��'o���q�d�'m�R���o�7GV���:������m�����w�U�=��#�]z��>]5��xxӧO��uXN����i�]��͐~�〦>Dl��d��(�j��L_�pag9�v�q�'eްi[߄�ٞys�?��8�w�����Cf�]�t�!ׁ�x�eTWW�����z�����Vq^�S�������_������4�7�{YO�'��CO\�~\�y���J�o�O](;�l�GY�3�a>獕��rv}���yӜ>��(�V���s�ӏqS0K˓o����/���}�GAM�N������w�4N�z#�㓋�]�,�oY�;�sw\7���I���3�#5��il�;��w�c��OK?��qB�q�Z����/m�� ���}�k�����PoԴ}R�ݬ�;����I^�i�>Γw�LOm^Ҭ�jʲ�yH���N�~*e捙���|w3�fK�^�)Y�ݾ�uz����3�����`�O8��h�/ڴ��N�ˉ�{^�C�z�Qyq^@���9R��J�U�`�+}��>���I���{���ij��8O μ�Ҷ��T�}/��0��8ܙ����㰇q�t��8��x3���8�����������z�l�Ч=�t��U����<�:b �̿Գ;>����;��=�NU�|l���[��a�f��xx��>=~`�.3�v�M��~-�_�t�/��j��e��ȼ���7�>����H�H����z!�g����YҴ��Lzٴ˰���7��2e����]�ҙ7�zD�I�ב6.?�f���28��JW��1<����\�N�~q`�����`V�nt�4(˓�W"<w-+�ԗ$��n�t��\S����������,~�/�IU.7�����m[qb'r출NM�A$$�M��"_�k�>�<�����=LKU{�RR�����?�op�-��Vc�7����=��dh��-:��a��ȞX�|ȸy����h��JِݯG�����t!���0�Ì�l�� X�*Į�%&�3�d�G���TAzoȆը2D�;�ϣ�-���?�0�c1C�9G��u�¬��+b��|�A�8�֪�;�o?y����l�!R�,���^���@�c�]���Hy2�a�wM�{��J�/��Q�p�;C��� ݊�ڙ^in�b�kgx6�<BL�Wjk��\�������]�(y��A�\j�W�w��p�qb�~�.e뛒�t6t�#L�P�F���6 �Y.ô��j1bi������3�Jg^�nՃ�T�Dt�hzQd����#��ct����\;um�־�\��_6�D�m�#~�����&�+8 -�6�6/5j;��a�+"ko{lV*=c��P�L1"lgr�E�͔ܽ����ބ3��X��^�x�놽�#�����\/�����fN�ڿ��Q�˾�h�/6E�;h1Bd4Wѱ����a:1�S]�FQ<����V/>V0�a�?"<Vo��z�p��Ӿ�t�C������U�]%!��^��b��:5��Û�Oʛ#�����Sc���kb���`s�k�E�r�1l}]�� -4Mİ�֪��kkjŇ�ڙ.���j;��mdȅHch�j�GN�_����z��f;����3zmSgji�I�ݧ>Et��S���.�����}S{;N��i#��zE�V"����j�H�豏,�t������e��&q:��d��@����9u�sl��ȏi���$� �~���9r�Ë��V�`��p������a�>��?0��z.MsO��!��+f� �%D�:��~�A���Fv���[_� �`Ɇ�ط-b��~��B�A�c�վ���?�՛te�W!�_U����!�v�/4��C�ԾӲ����F\AT���ۂ �%?����s��W8�§i�:>3�����L������C=7h��1B��/$_=��;=���*g��/�o7Cs��?�"���(�(���n����ٛJ��*��*�*�H�9Y<�a�����Pba��ab�}�0"g� �|��AW��z��@v���nV7r��s���]��X��)^yV�{L���62�pG4yEUO���m���:V -E\� U���p� �M ��4�c{D�ם˼!O0Z[r����߸B#x`�6e�f. �j��k�g%�}����ޡHk��wqatl���&��G�ws��J!TÕ@�����������~Ue�� "n�|%�0rg�b�^�5�����<ą����:T\���>�NG{#K�nL�eD������F�����®_�@v� �h����)T� ���+� -,�� Us_Z������2=܀��Y��6rý���R���A+�]��&Ad�;�&�'����%nh�V��"� b_��1�0�$>Õ�È��(�h�}�{�l�"���T��5�D��n�r���!l��6GO�NJ�xq{ϕc����9���p��n�'�&P��འ��6��5�n��U�Z�"�d�sl�F�ٸ:ȮZ����"���Ȯ��i����݆�x���X��\xVk�$�tDk��� V���RԂ��@SXݬ�O���~A!��5�O��k��I0P���[/=A��GaW���dHgC~uf:S��-( ��ws�dLׯ�s�J��� ��D��҇�<J�Π�3Y���v�� -Q�7�� Fz���a�+9�F��C�s5@xoWݕ���?�}�:A��Gg�B^@#��\�<� ��J�y�1�e �;o�!��{�'F��M�=xA��,1�����d�è�x� 5o���G�(��Z���4�3_�f�f� B4/D�2Θ�U� C'�tg�!�P��V��� F�B���@�Sv�!>�|��6; Eu Vs� -\|��qۆn���&A��y��8���X�_��!��H��%2��[�$A ���agƈ��wHK�qw/&C�U�ݲL�9ӫ�{<��t%�0_�Q������n����h V��WR�i��(�" ���}�k�z)>�kN-�}j�f���S }i���nEqW�)�1�t��z���,S�]^~���~��3)�;=���T�6�VM��I��]��A밥4�<|�S�,�U{��E6����c�:ٸ%�諌�J�u-d��������M�P [w���}�"7�%����<TsF.E_w'��q ]�]G�D���\81Et��j٬�r��[�4�Qœ3� ��Y��NǪr�b;��W�B(�?�[�0F��V��O�|�"E���ĹJ�jZ�|`�W��T䡁l|�� ).m���/�����?�RN�:�y��a��N���R�̬E���3ە7E��巍&�q�y� ��"��<D����yB�c��C�1�A��'��4�����+� C8�-�&b�Nw����\s�`��烈�{q⫅��{;c���N��(D'W��uc�������0����@����{���q}�����j�)B=�D�vM�:g����kE�0�s�oW)�F�[D�[ե�%�"y��Щq�������3r_��|{(E������ E�贖�D= E���Wm��G/�&o�7o��A��h�me�?0���z�P�R����3�;��/a�cSD��; �9�Qɠ��"�k<n�WsQ��ۯ}M���"�����1���h��~0yH� -#�{��{�m�6�N���'w,�,��K��A:�*��" ��/�.47q�G�.�]�DwT�me�X]�8��p� �9�F����sܘ�:ݍܾ��n��f)"Z_�jѬz��V�kr��L����U%�6� k� �za�W���67e�Ù��)D��Z��`.Sj�_�:+iV�&�dP�W5[եk:�*����R�Z)e#�O�/�Y�%Ys��m�W W ���N&�� -��|!6E0�y�v����*�Jl ��Y�9�O �^���+�ju{�a�vf�E)[.s1���}H�&�����d_�:+��[���|� -�'o�+r���zQ��5W���]�'En -��S�����y�+�D��2��^�� -����'�E�-�n{�h��7RqeP��� �L"R/z�h�C�^��+v�z�>quб�X/t�� -I���`�ԩ}�ȡ1�S���/�p��3ĆN�nm��k˝ -#:�+q���Η���^n\ ق+<F�+\���V쐎p�ieT���e�`�Q]�5م)C��T���.�2�N�~2�G��uۉ螜]g���6��,�E�ϲ�¼��T6ka�:h�7��}ǝ*�N;p�<!�"(�"F���m�f�: T\��\�O|-d ������[z�H�C��Q�a� ���� �ѡ�]��-b�{a��1!��'`D��?���2�佑� �v��FD���t�kdK��S,�)�D?�R A��6+��*�X���Zج��X��FJ��4�2�P�D�I������=��"C���n�"�ӊtr-jrϡ��_3 �s/���mE�UCq�߱B8��"/��y%�)��C{S�s72� + �v^�� �pq�7+��]����B���:��#�9���/R�ym�߹"�� �pP��N�䡆l�)�E��$��c��2�j~�͎<�@(���ZrxE<�~+��}3�c~ڙ�����9�]JDa�D�>�D��L.DCN�j9���*��"-gj��۲z�ˢ�d�v�|�˙ꪞ f�����za��z�:Cl�M\V�-�yB+o�J� u��t2;�:a���R=q�B2UZ!r�A��#�Y����]'����ۅ�T���5F����7���S���i��Nw�b��)o�7Upg&Tި�H#Qy��R?�up]��ʬt��W�l�����*"*o����Pd��nK��P��F��S�� �,#G0�g�L���D���?hE���kI�q����e�>�f�Y��D\�)��r�Uzv�!�q�}osDS~�f����<Q��J+�U�'M>��X鵤i��q6"��/G���rkb䈱�]s�;r�WމG����-��g9�+��8X�����^D.��O�rW�I��˫W�V��m�B�TWe��9B+�zi:�`=���gA>��Ry���0GH�}߶l䅵��,��'��UsXd]짥�<ؠ�f_��܈�!!�p�Hr��q�s�+*I_,ǰġK -����T9b(�M�� -A�N�}a5G���:LG���F���.'toW���\�lH��~yL����� %�VU�FeC�u�#�rnT4�#�sQ,��g�y�%�h/����ʹ����a���3;In -([WC��C"�r��%�A(�lU��ߚ�j�`�co( ��A�-{��"��7 iL�/^�L_�"�������s���gS?Jv��@��T)���A/�m��r�(v:��KW��Y~��y�b����T�� 2�#�w?��!�ˊ��!��ˣ3��N�����(gg�r��r�� ���vy����ў��ʝ ��;~㐩��W=yO1�_�2�܅H�_\M��n!���{�SՑ�ċ_l���K.Z�#&�k������oȊ�ES���N�f�J�D�#0�W�^�Ŗ�y]:.��C`�.�R�����Ntb!Z�����5�+nD�n��.G��]�߾[B��� -�b��㊌QшU_�o��4�J���,#��ED��7Uzd�]�]y�H5{��@�gr����2$�&���BP���ޜZ��� �@�R��[ ��!ަ�K�p&'o~�e(�#,t^[z�&9ƽ?G,�e#�}/MT��t�}%��A$���_ִ�����~o-�>o�U��tj��������Pcm���Z��#]Q��%�L��u�h��R�Hӹ+az�K�O��S_[��8d���2�hVv�_��tȨ�۬_�S�s�On�`�B�GaeK~(X8���c����{?F��)�I��6j��9�c|�����ƕ2����q�@�p"�ԝ�*!?��[���z������#��̗�|q�w�ɚ�ZG�&����� -Mp�1_��u�:�$�D�������E63|R�J��������FV�ߏ���e���?�ޗ���n�q�)]�j��W� -�%��l���V��A�M���N�ݛ���k%0Fp�����M�J��h��V����ՖԪ�&.j]<r�@0��m���#��W����+]��S�Õ�KF]��녍+Km�H���S��2"���Ys�� 3�a*�)���nr�Tu�j��tA^C�Q����i7G���q�PҴ/�w��Ǖ�O-�ǕGwsj���_C��Q����v�8�[0�w� S�T�n�Zҗ��K��Z�t���,�Uk[���R;;ls��k^;Ս�6�/Cṍ*�2��q���pUX&P5��}��{2����܉���%�N#�������,ũo�x`���S'Cᐿ�X���;\9T3v�I�#�áWr4T�����FS�l~�@ܙ}������Ԛ�37Fa�~UR�*�\6,�}�j9<{纃��;Ӆ�O�)8u�LW��?��^�,ժ79z���V"*����xɽ����ڎ���Y�;N/KM������+?s3��~$��"h��\p5�#wSq����'{��@'�}��@Ed{*�2F8�\n� 6��+��=O\ ��Jn��H�+��+�W=��n��ڹ����������#=�Bh�;Ť��Y��x����w�%o``?Tn��8P: ���k�jܶW)�Ѻn#�Zy���>(�jEUO\F".�^4�^�gnp�f-�;�#pUxX<LN�ڪ��?��� BX߫o�j���K������ �y����zC�9�z��N�ng�ݵ6 s�� � t9�ȑ�a�� ��$�!TW��=���d�P�����BįNņ�?�����#ϋ����*�}b�M����s�y���n����DOJn�����hd���K�sv�3�������G�am������� -�5Pm�o�<6�������3A���F6n7���o�]m�M����� u��Q%�z���X�� -n�r#4FW�h�p%��"W"CKQc� �.m�|�*�LE.;��3�>W� ��Dk��q��#ҭ���]� ,a����(�%����7�B(��h������Ίn>�j;�>�v'4���B��M��^��ڵk$��=� >�N�M���ֻ�������Ɗ^�?�o�0v�t������r}�%#;�����8`�� �r��ְ�l�;Ģ�a���F�tQ�^�hIkG��R�RI)�R���*���u�zi���D��!���fe.f�����or�d���0�@�Y���f�ӕ��A3w8��Ϳ�3$e�e�c��î�Z7t��ppܨ��r�9�h�T��� �Q�>��Q,�GsH�O@9����!&(���J��J� � �o�ʱ��Y�%Aep�#��<簪��D��8���G�p��9O5�:i��è�-�>�ѰcX�"}���8�y�A����u�9�k�$̇�K���ǵ �i�~��e�� -{���#��E��ßɑ�~4�k�pc��tI>uေ�$��r��C�~�����ˏʭpN��`_�y�h�p8؋*�߈!ލM�N ѯI6!�[v^��u)ȋ�wDžB�|<���!&�U��%wbp³#�L��W�^�=����Z6ЌY�K!?Z�s@�S�1{�/�~�= -_s�;q ����I��-��I.sk{���l�C��}��Y��ľ�RK?A.����l��dҁI �X���ad_TY,��L���ı6s3��BxIp�Y�7��г/`/(��ՠs�d�p�M�8�bqd���B�~��D��Q�\�'���+ٮWsb��T��]��پ�~�d�pz(~| �q��`��l/�Hg��ʒ�6�A+k����I��霃���TA$lk�e땊U"ll�%�H�����G��Q��p�p6���Q�`ۄ�G�J�Ĝs����P�b�]�u��u�s�_�;�9cE�J}`��á�+y����s��?�~.l�KE����t�y|��?gf�O���8�q�q�}��ӑ�+7Ů��U_J*�<�9��}�*�`��� #���9�ޕg��>d;��E�� D�sBY�L=�j��dz.l�;�\\x��'liح�(�xmH悋���t�%':f� -��P -�h�e�}��F���U��bad��4�-�^�9w�T��ƅ5�k���"���b���u�9Z���~���2&��q��\��� �;�v��]�bM�n�^d�T���� �"<�M -��*7�$�#���+��G�CU��%/��*�'H��x��#{�B�����M��9ذ����Q�^�:j���+��4��(mq�w+E@���z��~߈0N�8���R���E��]'�s��91~�'�"�^S�$���{0=c�nVe�����4��*TQ,�8�:��ӎ�;����$+�[�eG �[c��� -��ĺ�AN���?z��c�`�֘�v"kbȋC�`�8m�xܙ�`��(yp����֘�_�9�ܨS�OG8G:���1��υ�/��[��@Җ�T�L'09���<-Q*[�Ԍ{��9�i�,�/ -.�n�XY77цC �t)l�W�-����q@��e���.����4f���IOYm��-�<(1:JG|x�$PW�m1�姪̪ң���!r]�����Gu�4N�X�0P�,�{���<�Ͻ�x.A`fzehj��ɸ�@闕���Q2i�zmj��-�ˠrU>��֤�������9.E������␉�z��*Y��G�lϺm��ve��{�t%�w��c�VՒ�"���l�+�8��� 6���L�~>}x��ar��F=@xX#N�6�e��ؒF7iX���l�1���� �v�֧��]���<�ly �V�����Y��7�l�$k��!��(-����y��T�{���ހY��=�'��L���.�%=^��6��q1�q���wcp��T��Q��U���v�t�����)�9�ơ#k3�ߝ�ci擶�2�3G;�r���#�F�^���/.��L�L4 iC�κy�J�t����{}l�-��k�(�� (e,��F',�0���x�C,[��k�����S��*.\�����TϪ/lh�ݾ*LiS��U@C<��eBa{��r^���ek����)�"n�#9"mz�����h���e���:D&w�3�vz�`���/����X�g��p�Oi T�[���j���&^�Vpyr�s3A� -`Ǵ:x�8�2�]<�9_���0� U |���pߘ�m�� yg�mT�1)}^ �7�y��XC��(���A!I�g��8-�o(̣�u`���&J���O%�Q��:M�&^�_E+zl���n̟���Q H���& ����j�:P ��g�m*tnz���B�n!��O�~����j����Ք��}����t� 9d��v�h��G��e9���Ez���:�����9�Ӎ�E�ܞ{@T#=���`�>�� �|��|�~��N�1�)�6;�|D��Mr�_m6��>�&a��t�c�6�q�%�v��}�>Ż�i�Î����.���h����0�UkU��m5�a/�x�ǐ�%�R��Gxj�t�jLJ�����+}|Ջ�|��2?�$�aא|U!j� �}�1݈Ե�4�� ���n�e�:�^�9�i�,;.>�>�3(�B�Mu[˴�c/iZ�D���>!� ߍ�'��O�P���������Pvy!��&H!-��6���p�+���o����K�f��?_���[�_T� ��(�� ��iN3E/�Xyi� ].���~��#H������+O�8����y���+U�6h�Y���^4*���I/��|Ż�FO���uq_��l�tE�Z��U�+>�9��*�u���Aҏ���;0�w���T��3|fLG��) �����6�����%Px�Q�9#ާ��8Z4.�܈7�֖��TQ�n�]g@v�c�wh����Txp�n,xO�u���0�GP�ҏ=��h��:*�;�r~��E8>��j���r��>�j3>O���a�f�q���:��G�F[:T����F���*:D2?���s��g5��DGihG���7V�� �c�"�DY [��/��ܽ0�C]�TL��[�ܪ����5��Kv��;��g?�k��N/�,G������g��:!�qo�9l?�!�� ;ĎϠ��FĤ�!���ԕrJ������;'������F̚O��;iG5p�6�D��tqh���<������g���s%<�S���B����4�Ƨ��8�?�p�T]%����1�Bne��P9����N���!�5G��w��=����ӣü>��} -�?�j<g�mo��1B�2@c��2K��*���yOv5��8@+�E}��0*�+R���K�A��p1�c� �]*\������N�l���^�G������(G��,O�~�hh��x���{�b@�G�U�g�w`w}̴�_'wu�?U�;�sV��ݎ4��ɚ��2g^���}�X� -���m���Xi�K,�����}U������Ӣ,��q��K�����SQ���H��6י��Jj�� �9��G̖ь�0Y�S�IW�#���C?��� X-RR �=�ҟ���s$���I��,�H���)�ߔ��!w�g�؝,�����@zd�;u[��\[�(�߬�z��ެ���:����:.��*΄Mq2�U��vn�,�Ё�hjˎ�����%��7��[l�� ���6Ŷ� m-A�XsH�1�6�Ę���uL�s��gB �c���_Gg�@����A���H8Z :��jq@��c�*��W_t$��nԙO-X����.��?��tS�������+?�A��ܑ}&A/�:`�DU��d�߲6ڝ����vE�n��a��*��Py��m�`�J��*[Kӱ�v1q�����P�گ��T�蠛~ +�;���`7��y��(��OFg�AUs��c�,��9���@\P�#YJ���1�0��2���3l�-�K��-���s�c�����w{t=�i���'��c� �O�H���rf^����;�xpb\��偏�-� ���(I܇f���)��ex �0N��C�D��b�D�2�0V\ +�� Hy�2d������,�ڄ�4!KQ�n���L!l�s� l�����B�܍ O���R�i�8Tw�aؙ�]��3���&>��8�L���z���>[g��Aǁ��)��ѿ�9-r��e'2O�I��N<{��J^�s�0f7�$>�v��C�,Ŋgq?�Lu��r.��9�������U�g����OA�MɏUd�c��6����8o;zD@s��R'��}��]�Ab�.B��cS�o\�o��^�1���#l��0����[�����t3�NA�ȹ����P�\d�&Xi�c��+� +]�iȎ�>��k�gj�tl�HY���9C�+g��S�i�$����'�gq�� ��a*B�:9�y�, T��F�(�������٘���ޟ69n�k�|�_�ȸ�=��"��<s��e�t�v�ݮrw� �U0%*Sm-�ZjqG����� � E���g�]J�A�y�k��S�m������}���`�tGa�$��,�C�֙���< #ϙ����K���>��<t�� $0�,�^X�Մm�{ڬw�餪Z�,� �ͱ� �����ᆁѽ�:.�Pu��?�n�!���H���8�4u�A�;jb�4��ℑ�����gVzǬ��SL? ��sY8��g�����(.�h� �̩3}�����7���@���h���w�����E�Ii�Q�1B��~�Y ���k�V 9,�'��ܝ����Ÿ��IMa"�9���<R�V�|[��88����8�ֽ����D\)I����t�z�AT�ϟu�=���ֶ��N�H+MAL�؛&4��>������qZ�^��Ԓ�a���|��I\�mL�+�����{���4�*�H�����a���vs@{���ȇ ��%��s�&��t"���(��G�)�~��K��mR�i��p����Ep�:o^�j����w��E�S?�)�$�Y�>��뤳%u����d�[�0�L�0�ܖ�Mn�j��<��S�݆~�4�8@�'�A�� =n���̈���{q�+��WS�p�.VӒ{|f��0��d:��>�\&��� upY.��C0�3�_��ó��|�g!:K�\ܽ3ĽpQ.ߏ�x��n4��E��oo0����#.�H�����%��x��BQ�R_{�{)��8�����!�90D�$�臆H���h������'�C`��8pB����8������G<\�dv��'S0w��-t�R � �)6j���C�$��qwi�����j�N�%̙����p�(p~���d���Aܑ"�qp%]h� ۣ��a���Z:Y�]/r������E����(��t��Js�g�Ň��)�8�>A:�� W.c텷n��9�I0/j�-��d?}�m:�s��8I� �2�SR��F�}#q@Xub��/t;q�H|��B�OpC!x��{$n</IS���Э��= �)���ES��8�%M=�� u�0��>�W�O2>7��d�^.����n��8$<�q��!��T;��C� \��W�4����'�N�HI�s,�q�P"h|/�� �Xe�*,�:�����Yx�O��i��x��: ���9Hg5&=�"bl��d�4�H�$�QJ\�1i��q�"M%(O��*5L���S�yZv;�h:�����x �� �Y�ΧNMV�=�������M�I������myz�:N|_��� Y,�nU�n����m� �iL�GVt0q��279TS�cRD��9Zew��RI��;��K�{�}��(cv�m:� s��(�g�n���� ' ����ԋ����"�̜My������?�g""{�<�_@Q"��ܽD2�F�|M�ڒ�i4�쓢Z����Zeu�}O��÷�a�k������/�� ����: �|�;���\�=�j.�:������=�y�M_��,�U4����ф�U�� &����:���x�"���/V���gb�g���:~s��ut�ۡ�AF8���!���H�������������D&}Q�[|���h~%<8�'�k^� >kj�l|�C���l�,0z���6%�)MU��˥�92��n�pG�Q�S�,(� �^�m�&k��[������`����ɞ�R� +�����Ǣ���]wO �v�cѯ��&�p�C�\_�O��u��I�-L!6l8�k�I�,���>V<7xsp�`Z^�5��~�+ +�u���{fic�i ����C��%��Q��Tk��2�����C-��ܘl5�G���o;{�I{��S�u�>�}�=�\���m�u��M�Lo<gs����k�v t�� �cD!�}Glg֝��FNak�8xt��X��*�$��ܸ��~���G@W��E�3����$-�O$�����)Y�_m�)�6Z��'7�������<��h1������9yB +�����oYV��T<�N���-Ž��B?-7��O����|YX&2Z��G��O?=m�{f�`�N�����K@wt�ܧK�7�Zڍ�K�B�iyxX��������=-�Gs�3W��!��v^���x9���poU�r����OO�v�84&x�g��l/���x-٫H��Q?��^�o��t�(��L�.�w����a�O��,�{b��u��b��ѝn|��f�@��,_-\P�-SV�/� ��6�E�ۧ鎰�e/C�a��� �m�~�Y����h [�˷E�;~���܇�]-v|����Gܤ�}W2[��g�O����ѹ�&� �L���WH�Ż���\�'�W�ۯ4g� ��?f�ٕ��B��[������.��q�.{d8�`���D��MU�.�DG,�A������"}��'���"�3���GQ�r�#���Q�X7_�D�����(h�ٸ�ֱ����� �� 5������7��J$ۇqI��P�?1$��3�}�[�Ne�w�-���;b][�p�_=e�úȠ�EAt����Ӎ����E�.V?�U�5Vɚ:�ZRJa��W��PL��a1!('���\ȬVZ��`�$����B�n��'���L��5�r���銿��c���l���G�-�5pK�i����ϜR�J�m�>�b��I`�D���|X�(��gr�� �J>,���Y��a\S�:�fK��KݍzC��n��C�ݢWj[��ͺ�s�n:W��贠�m��B�#t".4�N$�P>�o�������ˀ� �:,�)yn�Xe����v�M�m�?Č��$^�^�q��(�N}?v�T��T�2�^��vPԮOQ��-Ȉ�x��xP��� � � +bj��W�������8��P'_�$���yx�۴K��>wJy8�|�e.�}�d,�#MǦ��L(u8d�1��T #�]L���ڦL�cZ��t���Z �D%�*ֳ����L5Ì�~�$���,Ыfg����E���:�_й܌ߓ!������-̽q�����X2�c�CW}�]$\P�7����n� �o +Ţ�0n]��Gw��amt�K�U����E��/ݛC�$H&ӖE�:3��[ň������1���y�U�F�~�o�חق�7�ٺb\X�j����{�.�ҷ�U���ݶb�3���m��s�����E�U���e��S *�M\Wc"yEoVM��5���V�>!܌+?Tu3]g����/���6�y����j��q�^�ωE��0�$���1���k���4�c+=CS�T893��F���#F�juR��W2�� ��d>G8f�gs���p��c:QNɞd���.#�,g���j��z�x��%��Bﲻ��i�|z�ݰ!�4�b����sz�N��'�h��9�������wd:7a.VXg\����U kߧ��^d�3S�����?'�x>K�˜�v�@�!��<��Lq݉Ŕ�]X`J����r���y�����B�S�=Ȫ$�j����m�f[q|��]���Y�]=m��X+���܄ji�������yh��J����SZ�Y��xb�Et��,��y +��<��v^M����@��x\/')Zh�)�E>�û�#D�PřrŞ.�+�G=` ���e�"�u�~��k"xYk��x&�ܔOt�vz��OxyL��H��e��O��s�|'ƺ9���j���!���/*ZVk%s��a�\s����qX�k��{��-~���w3\f�����_�t�Wtk�g�'y�H.zY4�ru� +������ĥ%A�'�q����+�����6��������s��ni��|��T�H� �����Cq�0������X-d���H>���,)�nw���}���UBqd�rD�l^w������1Mի��i2�ݬ���K*�$ȅ-I'r�n�B:��%��c)M:��Afx�pU�d;Iv�ł�~�����m#�B���L���� +���}�傉�u���W��oY�]^d��$����ŎoJf=�b�b�"�ݓJtt;�I���fr�r�LP�}�)I�a�;W� �g)��j���j�`�L�In�]�2�i�ƍ�N1Kpl�3�6�8�@�]'�Ş5�� +��[�#2�&��y������`Ǯ�����F��ğ�֑��Y� 4{]Z�-;���j���b6K�7\Y�Vj��:Q�� f|���G2A�7��o>���:���[%ݼ 9 +�-�+�}k�� �К�C���Ͱ�/���K��~ ���Y\�(/�4��=���v���G�������w7%�obJV��Kp�+#t�� ���|����_���>#t�Y���=��� ǒ��Ί-'��2�!�(#���HD����0 ���m�d9�w��w������8��?���1��8Ty�nõ������G<�o�Y})G��K&E��ĕ�Sr8S�����O�9��n�9�ʏjv�-��M���Dmh�R�����q�p�GZ[[f!�Hk��9"�n���<�0*�;#9<��}ߣ��W"8n?��OHT�'��/�n�X�?;q\-�� ϫ�警4���T-��X�D���aC����uN�Q���7J{/����0��=ź|<����u����۬���pkL�v-�T�� ��YN%��_�?_+�x�!�Hk�#Ȭ������~�l;<+Ъ�Դ( k3�w2-��?���em�jwcIXK$:��a���9^��ф^�g�eR�M�J|fK��A�t��h�Av�N��QD#y]S���k�lˏmxQ��Wl��tt +6-�V�Qfܭ�e[���p�ug�[����i����!��c��{K���1�ϊc6ҏ4�Y� ����,i�t�#�j�g�Or��\Γ'Pc�b4�qTn8͒�f�;:��䂁A��$��N?g0���a����>���+�Y�`���|M���et�`��h��P�(�8���m����;%��������&N�0R����almy��늭�EN�a'�q�+�g�瑗��t�N!Lo�h +n�� o���w� �Ik���`ް6mx����)٢�-�9�G��r�ߢ��.���d��"�J ����ė����[�T{�I�=g��[��CM_IѨJ�.�-� �#���'S���Q�'Z��_�$��y �n�����-g�N�ZOjQYNRM u���T�d/�ؽ���j1㘲�A^^0������8�:cL�\QRrO���U��a�U"T4^��Y�����K>H��/�t�I�תS�� +��q��W��ʝ6Ƿ�Z1A� [s��<ؚ��v7�5g�|���]v.�n��F�]��q"� ]5�vÖ�1�11�r> ��h9�[��!W��J0J���y�Ӈ]H��85��Y�E��?P�?rn|�g�Gx��$���f��j��]��ik�����jñ�x�?k�����gZJ9]��6 HD0E�|���TT"o���LM^�&މ�N���K"�;���>��;C@�s��V�95��� |Z1A�:-J���mkOtzf� +#�i���+Ns�B�̺��xV�����Fy����/G�}1�V�S��˥tyŪޞU�=�p^�/+PX�V�Ha�{�B�>�-T��ȕ�V��,���$y�=;,z� +���� Z�\AzY���;~x}iD̶�F�c�,�n +����Tr(�>�f/6rr��e�z�!Ͼ��{)���*�����z;�:z�5�����-�^�45�i">Y���8:VH��d5;��G���u��Z�d�k�h����mZ�)�X�6��K�xب��_�f:�`Iĭ��^j��ĥ�b +M���=$5�ɍRY�e��j����A�=�����t�? �{��Au���mQ��W�|��ߋ�����Ⲫ��z|�,�a1�����q���U�Ю�ͻQ�U��ޤ�t�;�@��}�Ơ�n�j�B�15N&�>�xK|�B��ַ�t-k齖��( B�ͨ����T��T�Kx�$x������c�Ƽ�:��X�n��w;��8�P�TZ�3��X����w,�p��C2�꼍o��.{L��X� ����c��Sg�Jx���w,;yDz�w�ݼc��;V�c��;�\�c��;.:{���kX���kr��3��X��K�Ǫ�q,y}��$륊��߱T2�֢�C�ޘJ��M�e�I��H�8��iU�{�XսhȡD�Ř��cήF��30�=1c&�ǴȤ��N�X$����c�w��\G<8���ק$�&!���A�P�o�华��=��Fl�h�.)���K��jc�P���j+��d�y�T.<���7/ nIݾJ�bs��=��J�c���X�zKf�q���X-3eI�x\#��&�M���mS����d����M�A6��&Q|����:\q�a�V��/V�V,�H�0-)�_��B|_-�h�*-ka�k�-���of��s�XTS\of����|��"���9�V d�cp|��fr���$��6}Z~��a~ɝX�F��HVg� a`�!�}2�����$� �sfI����>>.���%p.�����l��ԅ<y7gY��i�O�Qq}�#Uz�X�.�n�띻c�x�}*��H�>*�GyL=_rj��J!�|�\7��yAt�-�7k,�KǼ(�XJ+��p�>a|#���j�p�ɵQ����c��B���is��E���ۣwb&!���aF�:2�Z�+�|߫E�9�-����,x�P�y(��|' Z�$-I8Cp� AG����CEn�0�k�5 o�*�3����yG���������J���J���\�<�Yh�|��B&�d��9y�-�klA8�`�g^���<c%B��J�Ӯ��-�o9���\��a\�B�2.%��N���J �v�,���-~ɔ ��I��l!Ro�����9i,���^�~㿾��o"-2�Q2�m�ݮ��S�:��f���*}�F��(��������|��-�k���sL���n�a�G`<��3|��06�!����))��Xr���E�Or]�:��5NC�H�*'%J�RQ:f���vH���դEЛS{E�+����>q�1�/_�s,�E,-�ð���F}f�C�$��P�{T��-(�x^IC�I��s�\��[� �<��qͰ�i-ӆt���h���� iڢ iH-mx��6����G~� ��s8��]�`��Z7o�n %L�\�X~F�F���C<7����?��Oٞ��lbg~��+B�cM(?^�B9J��ܱ����4���"�l�%�Y=��}�Ɍ��D���i6�R��jᲶl�G�F�o�ג��˭I���q$�5�=��5���g�� B��e@�8��i�LK���n�d������b�,q �6E��ӎ��+�Nɨ�Gv2�����^.v�����8�t�#�J#�0�x���aE$�KfI�=�.�B��gs�As��Ӻ]�#9�=[�w��S�;�L";'�w��%s�S*%��7�����`ώ H-6˚��/Y|U�������~m�q� �3�I�^���#x���RR�r$!�`�5h,�O$�5H�ؿJ�IdG�;*���D�]�U����Q'�Is���8n+�K�@2��`4��NB�>t��lG��Ŏ�%43[�N�U��kԩMk&*=BT˂w���Nin��;̏������l��#20�)"������l��θ��r����v�%�5�2J-��J;�q���X�:?�W�g}��Y����y~ln=��rJ����}�ĂNi��X�U1V[�[씰i3�n���ZяY/�� <ǁIz���[/����q��� bx�iF�:+��cV%qljI?�+��ESz�VIm��R-�q�1}����Y�`�9�l���ӏE�q�A�8ߡ~\ڢ~|#җ�&�ZX�6�c�O�8W�l�T&kJ���:}�|���ԭ~|#I�W�R�B�}bT�Ez#ѭ^�n7V<{�F`ֺSZ� �a�7�E�]�֖;��沺��"v�K=E�nP�{@_$X�Ϣ{��N��Kk=�e�l�i�s�g�⻚� +1o�!㴬������O�z%��%y��Zl'��X~o�-Dr�?��!u�Fg�چmCZ+K�,k"����h���5�K��\v��UN�N\�u�P�E>����}��i���g�C��F��f�Vu̴7Q1��9*U=�}&�QR�]Z&[��Aq4��!g3��V��=�Pߜ#��3�uw��:��+L7��~sf/��a�/��~�U �h��9գ����(��r�.�ٷ�[O�B#�(s�Ay��Vz��a���s��Ba��� +�,�R{��Rh�ɔ�P9�Y��n�X��,��h�NOJ_���/����ߞ�\V�6��������*7q##����_�땵�+5�F���%��W6���ʊ��M��[f�=�ƛ7�ُ�"u����d�]6�]#o�`z�z�q:n��gD�B��"jPv�7��4�A���\�1�N͵T�H-��h)3�2^u��-�}CW�:0*��YU��tb�)� �3w�l�$�T;c����>����V���a��;9WuR��a��uR��VP�Y�i�����w��Wp�1����~��dt�J��oW���o:�]�%�驏��d�����:�t���c�I��7���khO�QV��5�4��jGy�{����s3]�"gD��ҊRqE�hn}���t)#�3iU{�؇ϻ{+�I���ح��Z�=�d;[�z��7�no�q�ioVݼ����!n��.g>i6��<p��d�;bac}7JRny5s��ϴl�۬i��Ŏ�k�M�Ssi6|5���nSا��q���`?=-CM�iy��@U" -N���u��G�dzEd|�Ra�qN�0Q{*;}������ ĪYb]�.i�`�eʗ8J�*��R�@/��&���؊���z}["�#u�w�/���n>�N�&2�u6��d�Ek�V����o>�%�&Z�[Q����ϧ+*t��Z��Y�� ���WtK�Je���� l��0���O��P��TǦʤ�A-�:����:/�8�Ϧ!��X�/��yqPΌ�R�U-�h쬒,�'����Go!=f����E�I�)2�*��\2���:, ��0��*\�-EU'W�vbzH/e��������Ŧ\�$��{�>��[/���8q��$tb� r�Pl�y��lp!�B2U���~:�&�&�=�2S�fʆx*Q���)���!w���!�������,�f���j� uL���J�̚g")�Ҭ������d��ﴩU�WQI������R�G������ +��\t�[�P_P��D��/��|���q�D�b���؏>�ҟS,-.�vh$��!�hH.j#d�Hp�<�T��r�r���2���X�!ޕ�<m/0Wˉ��:�ـj"xӨBP���r�m?�R�X�\���i�If}i����J�r�Z���5�WX�_Ϯ���6�|m�|���H��π;h+��҆��/a�Д-�� ��1}�����ڊʥ/K_�̐$��(��R^�%_M*�4��qy@5���ش����xI���<.f��ܬv�K�`���9��DV�����{&�O1�Z2�IՈ8��&5:��}��&�eШ��F錁4�IbЬͪ��� Ӭ�ܷâ�EV\d~Wg$�V����i��XEE6�� z�2���J�OhO��Ο(u�*T�@ޠ�.�(љI��齪��d�~�{UeC(~�ZUvCa$t�MGrgf5 �n���Qx2�H-��(�`�����vc�{Ā�1��h�o5��m=#m�M�H^9���Ju�H�bc���_;v�����S�Iͻ��9X4�ɢ)��YZ4q}���9X43�&&���9�['�h�ܷ�����Y�,��E�M�k�hz&��d�7j��F���ٞ]c3o{x=ҮY>v3�&�U�&q�k��]+ �]sP���k +nԇ]���t��B��#"<����0��m:/��B���o�j+�N/���"�R��_\祥��W!�_��/^�J{B}%��A)?H� +��+f�����g���F���F�LN'��Z���\`aH�y�J���� +٠���0Pf��7�s4�_H�͠�)�*aj-��*c�P�Xǫc�9�O���0_3-X�51�,NȆ��| 5L���t�X .�ua�җ�:cmK|yƪXPi��ʕӘ"�Ƥ�ȓ,�ǚs����]�{�v�=~���x�3��`*l]�Jt1�e^�J��6�ՋXQ/\��3��U�t�:��u�I]�Mt�q�Jơ.f�|��J�VZ���]��)"�e*�{=q��֮�u���N\�(8nP��d��|[�wD�s�h�nl6�}�.�6�Jt*�o��T�S�Kܬ�.�����sנ<�@-���W����R̨�B#��<8{�W���=Q��{jֲ��(d���U�z5y�+v��m_���+�����th���a���a�R�d��n2.[Ԙ?�w����\_�[����_�qK^-�{�:�#�yIU����!�˓���w|�����,�zV�K�E�;�t�1e������e@:A`�i���a���I�iD � -�n�sze�����b��Vd�fhW����c�l̇d;}L���}�Bof�Hw�~�� ��y��J��_���]�y6��dR��-���[eWQcO����6���"+k6<n�����+��� �}�]�<4M��S�]g�*���jUD�w+��8�E&'w�*�mThkEo1m\,��Z��G�iI�,�� +��<⋂�h�&�j��~䯸EZ��\���א�3=B�q3��:9�����Ӊ;ڂ�^ �.��V�t�[lE�������^z:��o�%2e�p��h�=%���f��Ycs�1�u^�J#��]�Gqـ��x6��ճ�x��ۯNi �=����uE�\,��U�.u�e��tA�.7�d9�lG�t�٧�ˆ��˹擘��.~%�+p#�Ȗ�(��Z\�\�; >s��s��M�H"��7��|?�^@�����]v˱q�8F"�Q����.������qԷ�"[�~<R�9��Ij��u���uv��ާG����R+d��q��z��,�dݺ�T�U"����3r)£�Rޡ]BN���$�<^���=���U��i>���|�!h ��V)VeB�j���i�EJ��?|����4J�3��~�������{���� iR�Wi@ȵ����VC�$4�M��E��=�>A }>*�c�Pއ�x^IC��+\&�V���'DL�^��$��XS��Xs������/��ãd��m�_R�~���d���E���#�/7E���-�u}ҬK�]h�I��t1ϯ�櫬��GDp�{����F;��/]�ޒcs�U9A���R�?.�����`"�v�:su7W�GE������\Y_�����!�;�����p7z�w��D7Ma;7,{p�������f�kiȮT�N�Z+ �Ň+��|(ʮQ��E����ډ�p +��2p���B�1d��_�]��y�Ck+�D|)�U��'�Y�Z!���.���,+� ���LO]Ӎ<�{}�5���ɈR��y&%9$��K��哰u������L�"O���k��~�A���2��۵7�e�i*��{̩��;��+�^n���R�����%�]Ea%�3"�h�b��6 �[㼶�B�H^����S��b#���pț��5���S�`����GT�3S�_gt1�҃*ݞ*-V���@ZW����b�"[� +0��S�y�ʄ�0D4�IUj�}~ݫ�J!�Sjˁ���9ת�_���F��sT�E��ߖ�7T�;'�o(�2��d��̠ʴR�.�������!��TY��Ǽ���eb��t���sl�Vl�થ��� �iG�'0�Vz�d��}F+��A�������\_-�7���3h9mh9�D���7�Vh�*��O26'��uu�k/Ss�`��5�S�����ۙ1��1k��G`!�e���/7h»�"k���2�&�ݲl\BX��9e S�X��l5-�����#��s^c��eqa�� +�o��'�w�Z��)tRY����/ +s%��G���2q�؏d� %�3�!���<��ws����}��(Jo�.K$w��r?M֛�bJ�_�s?�v����|y�]��l�4NY��k;���W�6�y�ZN=ą�ho������;Ո�(��{:��m�@x=���E���8ڊ����P�z�H}��VKQ��K��t����aV[.��a]�� FB���$G�¢)i�>���3�nx_2RS�IN��'%���=)u���% n��.��y^� +D@�̙��%�E~���'g�e�Ӥ�>%�O��� +615��e�i�/��3$�e�|�t>�H��l'e��KM���|c:Q��rQ�N -E�����j��b��h=�O,� +K@�^�`����љ�wD����_�3F���.��#F�%Z��j��ر�\w@�بQO��H��V͎�ǒ�t�l��f)U���i�,5�x�<��a�qRAj���T^~ڂT�����:�U���Gr�iQ�H6s���zGt�F��� $CJr��2:#E�ۧ. �Gї�űF�3�ys�5�]��� (|Y�fOBdE�� �O�fgo �&�퀊Ts�1t��Cώ�BAE��e���N�A�����L���wo΅E]���:�W��'��g�jGFX�Ia."���:,��.[�L����O�䳼.��)�륣��!���l��o�V�TA�R����J^��+=��Eb� ^ѿ�02}W�<�J�#5���1ˠS�3uj��8��q�:g�R�G�/�� 7q�=n>�G���q�!ų�!,����x��g�%�����A�Ν0�� @�{�j{�I\����D�;��ۅ�3%��KՓ��n��rI8Ȏ���\e���KF����d7��o6��͟F�6=%�=��(n���R�!�j!r`RIM�=R��v�A���Z0hq����B��BniR8�9/E�u�BX*��}���O��|�A�:��}�� }�I�d�����ǀߏ�ʔh���������jv1��,sLJ�����/ Ed=� �A�C8�N;��� �~�9��k#���� +�|Q��b�Q�G�8�(I̎� +���&�� ��Ø騥�G W\�Fo��u�8���UZ$6҉��f�����Kcu��*+��K����X�V���6t�Ik��M����@?�}��ٚ�4��y��<����(��,��͗�6��e^ �MG�L�e;JF�RO~��G\�y�߃j)���~� ���t���?�|�b�G0��#��F�������r��inJ� +]ue� M�p �� ��;�y��Ѥ^3��a�iԣ�F���a9�v�r��ʣ�x��J�<�P�8>I0��k0I����]��� �R yD!<JV$)驞��3=�JM���O�ǻ������ ��F��~\ i��½���}T�B�i�#r�4�2V��<��ܞ؝%S%ڣM�2�սf4x�S��|�#����t6� ���������{)��0���SE蹯�]�$�8���돸M��b9ۦ�2�0�d�1����d+��\�HҌ�hO��2�3rh�I�p�#����50�s`28w&S���� �a-�/�N,�^rF�a��pRJ�M8 �nNr�e%jgW��,��X��@��� C�NV�A{V��ir��z�Xpt�rE!�;-����Y���0�ڍ��œ��r�<�U-�J�v���舸�_x�ՆHx��g���(D"�U~&8=-H0� +�����;�b���=�d���������G�Ui�3��7O�e�!]�Q���3wG6�p�9^?����s1V3���:���&.�r�i��W�P��F��]��.#��� +��q��<J����lߍ��K2XπL|ǿ�+Vg��p��dj-���8�2�8$��؍��ǔ7+�YJsz�7<��3U:Fr� Y�gK®����b�r����\�e\�N5L�o��o������Ir��~�]� D�)YrV�V��b]�A��� Dn��һl%��괸��`^U9�z1���x~�&��#� V��P�T�'��+*T3|J�f�߆�{��.� ��`���G/GTe��L��N�*����f}u�x`��ˬc=��*iz~�O[�ҴGʴϑ�g��<ܜۭ�q6Q^��Q�B�������M��ĒM�y+UZ2nÜ�E̹U|�kʇ�U�c� -�@����1Gb&t���|�<�u��<{ �[�� +_]MMS��X�� b`%=�pt-�J,%ɬQ��Fo�k��������m�����Gv��hu۬u��br���h�U�g?N�ܭ.{�V�?��+�61�scj>�%��h09�7[�W[*P������� �b#X�k��?��ʚ<���zB`��7BC��k�k}D��VIG�3�lG�l�N/B���v�Η�G�)�)e�e�}�F�ɇt�J�p�yG�r#̃c�9U�^<�Mm���l�[�^g?%cJ��{��z65���i܌��q��>�Ԃ�خ�e�S������.;��t��7t�k���:�q����O�y#��!gϝ�)&�j���i���(*k���K�?���_.J[��Hv�,�¼OVO��?T+u�k�?m�?��-�Z�ޗ5�q���'����XW�!��d���%�ī�Om��+�T�a�q͚ű��0��W�V��:��~x��[���N�06ޔu��5��a�F��]�MtP�������P&5OU����] e9����)ޮm(qor!��������>v桙H!�n�1�̃��_-uK���|����/�4�q{�#�F�bhU��]�x�$,�ӿ�m>e���u(�����ſ����Yɗ���1ߨk(ʥ� !>�c~�Y�>.0}|�f%�z�vΈ����B{���Uu+�)S����-���P���RK�5P�_y�D�W�F�D�De卍�"J�_`G��=��>��������-��f\�֪OO��������L�y�~�R0,��'ԋh��ז$�k8�ɪ�E5E$'�:}���-^)0C#�3k���9���?��U���d�.���S�Ƙ,�9�1�^bC^���L�օ�TSެ��l��i�=WЙ����.�Q�$j�f��%�>4E��+��j��#:c���yk�ՉW�Yj_ʖ����9��^��+y�hݒȓ�k��Pr�l;�@�Jι���͙b�.� +])qVם+#�+i�{�=���� +�[���%Ϲm߶�Y�u[�R.R���Xۊ1hȤ�4K��\Y&���9��7$�'���?����Yvi������ �ݔ�4s,Mr�О���˗hy^�̣_��_�zkrL_���74<FL\d4�f�Y=��)� C�t���d�n���[i^����7�߾�%!����h�����dY�0�,v�&˕���"gх0��ʋh�~�Q~�RO৫������U_߇���,�we��-�XJtJ0cM��=E#N�)0<mш�T0�(媀Z��І��A��Nvc�T�-�u[0C/�G���N{'���Pܻ74��^�ۍKiZW]�Eyi�� +���6��b���`�7���E3\�k���>�D��Խ�V��Kl`+8A���v��d,�`� +���2A��Ά��o�?��wD�A�� �p��4�/��ѸD��Iܔ�9IOۖ8�=�{�Fr�Q���kQӬ.�ڲ�g��u���\� +�σ'�y�<�;#OT{�_�&�J�<s�f�u�Q��L��N��Ά�� +��ڲbqq٬\[s�n^�:����$HlC�|Ò�4��;|�����qgڒ ��yh�p!�]nνq���� +���C��f_Զ�^���(0z}�a��r�ɾ�gE���fF���$�⁁V�L-��8%n�k��2 +t4�����RkM3���*�������q�;�V -DDi>��'�X���9+��lg���´�k��v���L��G����ѹ�7�T�N�M>����D#cap ��D�0�����k��Ǣ,�a' p ^� a�D�]n�Y�z�o�ȉo���w?�����2� �ϧ�K����&O��bq�Y��)bW���oѢP֕+�����%�@?/�Am�7�-��N��8��m&g��=�oYA\�啶ȋ���IR�h�`��16�}����M���ً���Ț(�-g��j��.$ÜT���]QL�R҂�S���M�{� ��r�e�r�"e}�e�!�bDS�Z�/�7�An�"?���(.���=)�p���}����I�io�i��zӹ{������ԇ� �\㲹�{�8(�2��L/\�^!�q���T��A +O��FУŭy&"��a!>O��5��كkZ$xyz���X�FQ�-Ճ�r�J1șT�W3�f�J?2��[�E��|�U��i��Q�A$��=[�W�-U�I�g�(�{8O]��v�έ���m<w��i��?0�Kd���^Q�����):f�5���R�G3M_A-��3sϮ"+ul+2���ȵ��ɧ�z�BsI�r�E^t{�z�~��8L�;�l��z` +�qtdC�X�'��B7�����\��CWq��Z�ê��g>���gp6;�ܮ�|g�+;��s�s��!R^Ϲ�#�]ߝE����|`-���KB����o �kadw�����2e�f�gf�� uo�ĝ�zp���#f�z�lO}7�y�*���ڧߠ &T�m6�����D)x�m�ʩ�T��$�շ<�̓t +B�X���z���6 �i'�f��ܧ3o`��*@�U�����m�V=1h�<\������[/��-:���,�w�N���<��yF%g�v�ڲ�;�jc��I�g#Cq��3g���ճמ�L��3w�[�!�Ef�m��m{p�8p�{Ӂ�\4;Q��~�u�O<[~�5s���d�-海c0�a�z����1v��x:����'S8����~������r�W�pK��o��z�L��g +�����0�u�yr����x�s��� �{^0�m/��I ��!�G�<"h�PqX���r���"�I�- ��M����tF3'���̝;�2F�OP�:�d~X�][��/5�1��=����K�t~����m��s��;��#c�vÚB[�6`M8����f��������^ ��9�<��Γ�6rBx�y�o��o!������M�8�J%uxF� ψlyFtv�!�Vx�ZHT���ɽ�;�����^����� MR/M�����L�n�Gl�?�f&�v�a"#��2�|I�L����Ԡ��Bq t���)� ��q!q��h�0��;p�K�l��K��AaN�q��qK��W^Z��܍zHw<E&@3�F�Yx�̓�6���֛��� @��ލ�$Nco:<XCc�-��#�f�`H8fS#�w:���(�o���t��6N@|�t��;wg��l�oF�+������E�V�~l�F�����\�m��R�?�M<��M�g^��~`+WV�B��v�R\k��F�YJ����Bw��� ���x�Q�A���I���,�9X�s�w�C|k�$��ش��0�Կ~�Q#�/�Oc�w�آr�9��<�&�30���,*ϑux�Ϛuxϧ(o?l�F�@�� I���F b�&�5����ӹ;x��ay�<�q���k (��Xh=R-�{4�`��0���6�e�S���1�fT~�ݢ���N�$�{ѐ�LÆs�"�W�ּ*l���z: ��U�i�L��h�ρ�Ԉ#Nf3o6�Oo���zqp̟s;�@2Mf��!�x�u@�����G�4���J,+��`T#@xa����m�ޭ7�����8H��sb�:��,fw�,bkf�$d8����6Xn0/v�d7],*�������Kfν;�g�[/��nr�G0��� �p8�<Cs-�(�Z���&���������1צ��㋊�r�@R����v�g�x�����%X#07N����m�̑���\ԒĎw� ���FUG���:6,�;K��UҠd]���h��"h ݼ�&K�|���~��C8���7�έ��m4G,e6�8���<��U��bm�u�-�Ͳ��eh�[;��[�\���!� ��s�������D�7M�y4�o?G��Q�,���n3բ��c�ZD���n���N�O�n����H��� H �f�֛z�m�w:LF��;��g�F 6��e������>�m�)� +�� +�"�%�o�]J>}�������BEl��:q�r"�+�����j��z[b}t�-�R�އd;}L�܌J� 3�H_`���!��~��p�<��"��+Q��RB��U�t%�Z2��="��5� �%/ 5�D����"�~�f�o�U�E^����&�����aؘ��2�O���π2�@��=Kw��≛��r�SvшOb4�nV���������HB��c�M�i�8�]>�]`������~X�2�o���)�t����G������Qq��PCj�N. ����Y.������dޒ�c>�ps��zس�iS��8�t�8�Q�0�}��Y��G��kM��B����H��6h�ᡵ��o�f>�~@O�i>��kM�X��D�aJO��ߌ�tGh����p�L�E"^��}�ݧ��Ӭ1uj2���ڄ�5>����@�gA��)����^���;�Y�Hp�^�d�������B�]т0�.�>p���ABب�«���iq.�`^f��s�:cL��Qrq�l�����DC���|�<y/V���,�6�į���]�3�/H�!��k������� ;_��m�h�'K����Eǩ�l��;�d��o��W��O����A��L������h��S�)��a��c����������U34�O�^�F�u'M�^D�C�B�*z�ц�s�_ߋC��K�֩cg[���i�f�3q��|aXL'�*,��c��8�,[>OR���OO��_ʇ�Di�B'�<�yr�NhדZ>�?=��u�q����Ͼ�_��V�+��'^Gjw�_-�D^cU�Z1V��!���sV��[|��f����Y{�b���X����x?�D��E��Y �Dp)� VoK¤�������?��p��{�����Y0�42���%�ԫe��1� +]��Oy��Oā��i�#Q�#����E�� ��\�M2����t^Bl�+���*�D)I��G��\N�Lg��ͥdu�ٍ��H�_$���\F@���@���b������]�mvY(�*��oK���M_<��j�� ��;�"���{����#��d+2;&�i���a�l�mT�K�.�{*d�n1]��9_xt���H����6}A��b����_�[ �Kv������E�yXPd��%4�D�/d&ND������d��3��'��Ph��Tv�f��-�������4�{�DŽ�[6e�xC�U���Y�.��������klW�Z��Ԑ�MƂ'�e�VO�A���M��Lzz�WT��,��� +"'Uv~����/��K�?-[������4��UD�U{�n���6� +Q4�8�z�E�N�%�{j��t����OʛȞ��+C��G�ń����`���j�&*�Lh��s������L%�bD���'9�>�+�R�� �A���D$�P��e|vF�<���1��=#T�?c�\H~�*z���:�n���H��D�}J���d�HvJ-v<���uE�%�>�\n����$ݴ�����Q����i����9e�A�T\Q���6e�+�����٨P�I��a,�S6�%�9}��E9��Cf iU����a�3��1BQ Ӓ.�xb�wٕx{���[�U���w�zU���@�1)ØK����k%� ],)��2 �zH$}�}�7Ѫ��3�����Log��p�I�����~E�E�v�_Ѝ������ܟѵ���g1�I���Rt� +E*��a���nM��x�HNu���J�]�=�/�a�@J3&>��/ر����e7�K_�;��Q_/�*��s�|)հ�j��5�i{i�]S�dCM~�jw�����/?�2&ܢ�ݮ�H3M�U���ݒ�� 縜�Ӑ�\!�� +��/�b�,.\/�XX��_D�&;�~]� +�^��j��8�>���d�|_%��cə��H�����%�Md�ο�eF���{�T���&����f��=�eW��p�a2Ow��P�]�u/�����IwN~�9��w!d����5:�sѤ�Mz��p��.mG�hBt͋Jv)�jS�U�I��d~���a.g�(�:������g~�&���z���R���nb�9��+.O�c�F�#ñ��Z+�&\�HЈ��bM�!���"�'�Z��&o7��o_�o�e9�6T9�K��r�ʪ�B�h2���7�J��*�,���=W��A�}~��<�M�S~���8�܌s +%u�~S3Z%*4ҏҴT�%/�]�·�ك��x��˛��l�����\�~��4�a]�n#��v)> �g}d��Ъ-��XO��Y:�3�����<�abKΔ�k�|@�r$Mͭ㴌P��#�ո�Κ<c�X�:B�5)�� +g4"C6�8�6��e��fo�����dg?�U��V�~��)��0(����_�X0���ݎ0�vP��D2zLHb�n�l�#�:<JFh���]����������C8qw�م�c1������dO�� ��%� <��hO9���:n��t(��V%0w�sQ ,D�`�� +`M{s��7�Jq�X�D�'èV����y�A�����+� ��3���*ʛ�KT���TN���o�l��tF����) 2�y�8m�)�qH�=g�����9w�����p�)�N�����D��n�%3T8[V�+;�"�`(p�E�"� �A�M�4q����hʹ������U�������>��b��ȹ�AI��b�;�K�fu��|�yw�$�/9���Į����*�뜲��g:C]�D~XL�o���i���v�q5����C:x�le���#�C6�� �J6�X�ol=<�,���8��� ]�p þ��m�{B,>��ŊDY�?/[/x䗩9DQE�u��U�� ��?��jɁ@��Z +E�&��4���ƿ�/^���'� +�Hfq��xi!�[��s��:FMGP��icr6������!����r��Õr���'dF��Uc6#46��!��d�GJ�x��#��m����KA�O�^�ߓ�$n�$n ]����pi#�!�� +�4y���sJ*By��3xIz����,�qHc{��O��N5�Bjj�����(�QÁd8��q q��@��m�M$�JA��F0�7EM��YO(��hjp��N@{���Z����K�}��@�' Ok�I9��O�w���E6sVG���Nm�۲;�93�^�����=f���R�K�Ȕ�! �#���f�3!���OP��չj�9z�_��^��hz��q1:�[�'�L!(+B�Ԯ�V�ͼ�8�+-��T������^��F��42+'�2D��.�XTO�"���?�#�gҕެ��R�3���=���(5��j��ߑ~F×U�,�����T�3+�T�� B��K3��4���@�mߣ%�0����V�y��K�:�����Y�Y��[kX>Hu�%���a�^�$�e�gϋN6*���������n����"������!4eO��A��EgP�2zj^,`0�������m�Z�01�$V&( �NE�^�Q�)���~��oW�__q� L���F��=i�V��z�L��G�[6��0j�l��;���!���a�G,�^�\-����\զ�� Tg��,f�m����|c�q���و���w�Z��)D-�>8��� �u�ܜ&��z1���/�? �|+��������T��I�ǝ��'�����s�R���Q��s�߮�K�"�M���ܯ��^ub�j��Gx�X+n��z��>˪�0 +�i�J&o\]E����(긄����W).S����/�2�\�<��J�D���F��h��q�3�U�P͓z�湛s ��2�WR�ܽ�2�jmq ����%��Qye�*J*�%)�Im�}�<k����]�,n�gQ�����v蕤�B 5i�$�P��T4^D�rk��j�7�~k��+;���U?-3��\K�0vɤXFٚ|��������j�t���)�U���'���Y� +��Hd���;u�E뒁d�o�J����mK.�"" �g3-�T%�n�j�9��]]� {�i�t�t�����9}:��>�<A7�]D�iX6%�F�j�~�c7Z�)C��e'Io�Yj��M��(J �-E�ق�\rv�.J�d��@~y��0~H^9.̎}���a��=b�yf�� i�%ϒ=Ã<��]$K��qD�{��ح#D��wE�\�;k\��� +��SA��BA��~�q��d�e�%@��9�u��b�zFn"̗AmQ��D��g��z4.�◛)��Rj��<m�9����((� +��!IaY {Yɉ��FR�^��e@���3����Z���� � +�����6.�e#$�Y�������B���]��Ti��A� �u#���AO��N 4��=��NQ-[��y�*�ZW��\��F��$i(ۏ*듢���|V���[��TZ���g��gl<iΗK��}��H�jo�t�3/�κR�ݒ��w�^�-TcA���j%lE�C�s��b@�.�E�Sjy���ew�q<�u^�өk +.M�����T��CR��JT� B8=�]Q�_x�I�\# �_^(+����$���S���r�.���rsH���s/9SC�T��������`�w�U�{�O��f�x%�w�N���O�]�iM�/���4aYB��i� ��r�0���~;mB�ZS��V�b�6Ux4��8��S����u��k��xI���Q�����'��xB������Gc�iG^�l����Ww�;q�6k �oV��G��4����D� +��O�}�.Ҹ�6O?DUq1�����f��Iy�.��蓁B�6i].N���z����� +:M�[Do.��D��KZq3=�U�e�1}�L�{��kfg��,���n&�tQ]����*e$Q���N�>�Z)�T@�C�7+���0u�w��g�٫�����}��Kĕ>$�q)ŔX {��e�'��UI@{G�"�8�P_����R&�f�S��g��(L��)K{��W_�٦NB�,�e?�� )mg�҆#|�Gƌ�s8*aO������z�y��6u u�!�m�i�Ĝ6�I(_� �'��7�IlC�)��̧��r� +���&p�%�ds�7�����#E���n�4c"� !����Ñt<��m�<q�i\?��W/ hVP�5ജ �N�����^�>j�8=�� �_ʩ��b4��zez�����6N�y��-��=���M�U^�_7��R9_K��*�(��lkche&ˍ5'�Uߣc��h�-��d�L_ �oz�]Y��ҷW�[X+�¡�}>J���]��hT���K_�s6�6�.���<�C����܇B �q�e=:f�62�,��r3�ú��x���CL�N�!G��h�.Y��f��):���M�Ěӏ��oU���E�/k�%��+5�x���Iz����]Y�"]e*�����~WQh���N!�;~�4��p�k�y+�$ab"��D�J]��yyc2���$��� |�b5l�+�V��lrZ� �K&���~�B�yL����c�-�b�34�Yթ��U ����ϖ&�`��>�,�â}��`"n����"!q�b�'�<M&���X��L�����ε`�s��+<B�z��t��gDT�0�b����ȧ����<��"�T%��䱨�������Ő㤏����q���ݝbH��-F��0��1��|���5��ߖX$�v�m������^0���m{����m����t6�&�9��eU��`�r7^���v6A:�����B�M�=�o�JQN��eNEF��jU�Q�ROp~Z�i�z�[����{�mٷ,������H��5��n��Hl���#>��D�7�˛��7���6��do9K�p>�z�P ��&��Pxїlݻ��~l����0l4�t���Fǃ���"��o7��<�8� +��c�ͅ�{�ݬDd�ҀXif�}��@���z��^+��tp���0����#�<fJ��7���&Az�9g]�^NjpJėAJO���Ħk��ej^��.ݧ��ӬU��S�s%�CѮ~��LJ&d��@tz2�hމ���J��\:}�q�����ɢƜF���n�9���9֢d���mf�˗�觏��zv��)���P?���І9;��0���(�oZ�QZ���8�X&D6.�^��q,/�����n�OVOX��Z���)%v؏��r�ʠk�!�� t�:9��o��o�'C��P�d«�~��⇆�* �*�iu�l?�4��՞iRb����Lq+��q �MQC��A\� jr�F�,5��&K�Ra�D�����l�u�KcZr�P���% ���*|�<���5#P���tŮ�l~a���$`!�W�S���t��v�껃�vƊ�c�2�����j�,�D)�un�a+\�I:�-�m�{�'?��1��YeCMwP�ΘI�t*j��٢����ρQ�� ��u���V�Wϋi�)�P�%*S>G����t7Z���<��,�eкm`O����!邧ߵ�7�T�Ѓ���r1�i����w�9�;F�H���2sk��i0�e �Y�֟Җ��H�Ţ�CH�s+T�G��NCL�Mہ�N�����ύ��,�OP�?9�#mM���4��8��Q�FIpdI���v�ؚ�@M) S� �z�*�NX%�F�XB3�3=;}�ӷ�E:_~fL�S�2H��n�ys=&��*��]��1��Sc�7�Ŗj����&i*�q��/]L���n��ZG:��K����E��Y"$��S�=�Ӱ3�w*o���P�8�V�%�E���i��U����q�e7�{q��^�N�P�����5����!�p��~��j[�x���\C�w��m�E��7*�C"�c�oGr�kM8��=�Ͳ��h7�$�a�?lӬ�[�Aݗ����&h<h�7�a�� �4V���-#�m<0K��k:��5(��q�nہꛄ MAkt�=���4�z�����T�UZo����_U��a{����&�(�3a_����ߑY�uZ`�5�3Ӭ�iAʖ�焀?��W�i��!T��|B��?׃�^H��ڊ?�kgʭ������?�M3�+��G~3���� ��+���ը���TO��*��AGt�V�����նR]����EUHf��awԩ������Oۍ<��!��^��/�@�����̵��X�@<�#<��W�����R'��MY�pE���*�0v�֘>%�Iܟ3xj��ś�f������1�,>�q�Z��Έ����gq�*�k~�ѭ��2�l��q�e��:���K�C_�K�=�Ď��pN����Vک<��Jר��>(QS���,(fY<�]K6YO����������3.by+_���ҿx+�k�ܵ�n�� 3�>���eZ���e��0�l�[Հ�f��/�8n�xD����ϲ�7���7ѭ(+ꥥwLi��yg�;�mp�5�TϋG�&.ԗ��ĭ�y�$X�n�c���Y�֘/%'|����p�1��S2�D�1�Y�,\k,���<`k,El�i�X��߈�]:���б�)g��c�5�i�2��"�k,�t�堮1��+a]c%�k�v��Ȯ�b:c��,�˰�Y��)�k��x�51^c���X��KA^�r�����byy��Xr�Zt�c����h�d_&��/���]��&q���2�J�oP�J#'nj��rX˘���cy'�+�@�Y +�X=߰E ,�)Tc)�M�4%4�xI*��ߚ�I�I��� +�#Ui�v�l�RBV�-";�{��YƱ҇�H��GKij��\=����-6�@ͼ��X��8����EDZd��<�j��%5�qp��R�dR$��[%F���1"oD�)�Q$W�=�*ac�|.�2�G[�J[�6�KJ�$ +r�r�b3y@W&��q&�d��Z�!�!�����t�Mg��t.�t��L:n��Q:if{E~y�Y=-�O�E�v����r�1������#"��r�b�U#`�Frb$K�X�����h_!<��P`�ȁ��i�)_�8DP����$����W���+��=�!����4]|��2�,��Q����A�UCR�q��|����)RK��X.���0p��9�F����Y%�� ��/��p? + <=a��]FJ��X�+��F����FU��C:{FK��?���cz����m��ϯ��ZҖǃP�DҖ����N��w�?|�2Y{��v0dQ�ؗ�Ѩd�3�_ȹ&�lvRӧ��_ �d�4;���hB�O�n��G����:?)�GG��M��5R���<=-��>�v�& +ŏ����"���F��N�i�͞Dar���||ͨ���T��1�Q)^�� ��9��D�g���|X�J���Ե�id%��{1`�)�<�4��e�X|��+��[�$��_X�I�[d��PK:.���f}j���4��u~oCk&^W��a�����gmx�HbG��5m��P���y�yq���f�}��u�%`܋���V>�u .Ǧ(����3 +B��c����;T��ȋ�R �/~��T��;��|^?j�l @4)�xF���c�Q2�Lg�َ�i��J!��Q����H��Il��A�!FPB�τ�\��/y��́>��4d��S��I(G���P +����4��e��A�|x������ |iH=��r��2�BZ�͑_c�O�G1�I�Á.��/�C�Q�B݉6� oB��1����c� ��j* �u��Q:U�5��Y���b=�й�Pϋ�NB7e��2 +B�#�?Z�ON92�0����ELq؏Y�j��֕���}*��d6�"��iiFBZXyZ,�p�#=����-��Y�m!���eڢfG�2_��6���[���:��&g��F�a�^ v���K3�R)՟*����ۃ���0g�ע�@��p����������]&A�n�;����̈+�.�h�M-~������;$����M�X����H�2�ɮ�iD�������ڏ����Z� ��F��xgJ��H�X�3�h���6+�[e�!�ȅ��R%����P0�hS����>-H�aJ푄�9�&�h`��xV���foH*e^`�q̍�a �n��0woV�I�j:������"�����aN$C��i\ӂ0��N@��O�� ��.e$�e��,�j*�O�~������-{�#�e��:�2�#����l�{Z&�iM��T�$���^�5�4����M��V�z��� ��ܚ|\�'� ��.��?����v���ᴍ�3��\�\ZI^��u%����^8���" �%V%0������`o��<���}Es/�O\� +aCBיڀ��q��M��-"M2��f[��%;�֘ �ʰ b+ @x�)#{�6$"������#J�M�g�@&�-DR�X u㠜���R�g�M�K�2��D����$��yH%���(+U@ƚ2 c�� ��.��.dD����hxGA���nƄh�]��}�^p�{�=���0 +%A���R�m�9l�C��e�n�{�^�i`��-5d�2� 9�XC/̒���� +�a��#���.��p� +�ñ��t����ndq5fN>�$ɦ)��a��a?k?|c8�uO�sG4��BB��E��^�xL��:Mg� �}::<͎`"f�aA�MY�k���Ba�('6zu�(v�7��FCo�(/�rÌƏ4��h8��j�0@�=ZU~%ّ�,�<ך(��~P'7��%���F���u����.�X9�i�����.~�u� �+t�T5�� +N��7�}`6��+9��������k:�,�BGƬ��0��~����-�]��J���$��'�UA#���F"���@�E�F?�XM/������h!�{�%���y�كd�TC/��L):�T_�·�\��^;�S��b\9�{�LFj8h8�Cϝ���,���~p�DNpL�y<u��L͕:h��Ac��r�U�w�t҆��A �Q�\��N�U�'yw�{2zI2�qe/�}��:��ΣQ��`nH��)y��#���[9��:�TiG'|�1�����P�K�)�m>�5�T�Ηw'�-?��D +���Q�i����NA/Hd��l.0 �u��1r#�A�0��Ko� 懒�ʏ�i|kg�ec��#h��G�l��:�A��u���Et�TnF$�|E͈p��s�^K���?�S�����������e Kҹ� �3�=˘M��TY���d�H +�w�u��Z,�GHY1�K�t�P��+��В��f�~����8|�����T�� ZՠUU�Y'my�V��7e�P���Q���Y�Tj�ݿ�y}��0�W��儗��̡p�ܛ�/����b�l?cǠ�S)�2K�FG�"e�I���2��A��a�� �%$��J���4s�����䮖��g������GKa���M&y-e"�+R���4�vC���L��<��T�c\����q3� ���LY�H��6�������m/��u�+��'cw���g ��kV_�3�J�=ǡqGlf�*�2ƈ�a��c�ݜ��eq4��'��n�:�y����Ơir��f?B��2���FY�J�!B�bw=�(9�"�8�s6R>�v�q�����a�-A��ĸIz��F�c�J���{���@0����T�Y��k荫�1(F8x���W�/�Rr���Oy�g�|�RD�fa ��k���gZ�b&Ol7J�{�^�o7B(�V��BeR����S(� �Y9��`v�ċ�w�����\��T�u����.E:���au��W��WYM�z��-�N#�)�j���j� +J� �LE�( �@�-!QW-uwXa��¸��4��(� [��&"?�������.2�0���(�z�/��XF $1ϿՓg�>�Y(�z�7�� ƬW>�pZ�k����k]��D� ��]~��Ҝ�`A��9��]�D���J��U�' Ca��K��z�̣�����{X��u��m� �D\[x�M]N��m\�j�] ��lGE��g�v�, bLZ��/�'˒mk�%��J%lͩ����Xs�w?�>���oZ�U^��F�R�P1��Ҥǖ�CmW�t>�6�D���]������6��tJMU�j������a�c-4�G0'�DGnAMqz[v<a�|�Ej�n���p:xD��VE�>.A�h��Z�,�$�(9r�I#Y,���∣� ��O +Yn��$PZ74x;6�~�H�.O�sҊ��c��e�=�-n|�!�T��s�qC3���p�U��fdSU���� V!�"��.�D��d" +��������4t�eB��� ��lz�&m~ ��2�jm<��%bj�04��� +?�DMb:�!��qiz�-N�1Ʌ���Y;E��6���T��R�B���iM2��&ᬓ�DZ��a�Pd��}�}��(��i�<��n�4�&F��"�q��:ѹ�j�JKoǣ������XwW��O�Gn�xZ�����M_z��a��_V�5N} ]����J���n�n��<j����p@o�?�X��'M�=V�&�ũ���[2��\����d.û]��Y S|Q����w�<�s6Z�l{yC.�=��n�J�<M6���E�C�*�!�r�<ǠJ��kFU~ŀ�����a���oг�Z�hl�w����Շ��n3%I�A�f�}����4/Xv�难�h�FU{��Ɵ?U�����8)�!�I���_,Ύ�B�qv)���e�Y���Ÿ�6_,���S/�Eto�s���ϚWH��`��J�wъ�=,�A&5�]�����BKC�i�++��r9/���W�Z��U��nnm���|̋ +�-[�ݾU8�%�c�\";��门*���V�eXm�=��`Z�Ƭ�Ų5ܢ����֣���s�h����Y�S�Z�l=c}�d�j��R����!�t��!�Ҟw��G��m���i;P�N�C��Yӡ7�d�~���1�[��;��$J#���L�ǥ��i-V����1x�ff�%�|j�@���{0���O�ocC$l��� m�0��$��7���Ggh���a�n�� ���lpŰɿ�r�e�0���5��s���/�xW�n#ZN�*�t�(9�/MD�ģ5c��Z�J���X{��ve0��[J�c�N�!eX�JGQ���C�a9*�����ð^hG��Ξ4��']�â -�ד�1� +�[�N���EKk�]���1q;ee����_�v9��r��;7��������0��Z��@�)��R_�ь]��@����8DZ3ݲPwGwb���2p�V�!\�)i�>�dч�t:f�J�2��b�W���;�����h���0f����ن���8�*��{~=�fU!�&kv\Q[���d+�=�.'�d3�-&z�f]XD��f��U���?�w�x���h�=�.�N�f�B�9�lJ}�ק�il�5�joz?>���[���U<���m5۪�t$�;�SO[VR¯��}���M0t��Еv�'w$�/�|� �+��$��� 7��M�)⻜���r<fVG?7��E�9�hL.�Ȯ�ȡn�_y��@�����L{w���' �Z�ei�'O�Ǘ�p�v���)���̾������Fd��[Y��~}h��{c�y̥+������̴2Q6�f%� +ln\�t�&SӒ:@l�X]���L�5e�<�d4��7��7��f垒-���eC��Q/*�f���l��n>�Wʭo�s�[�}�W�6M�ԳmePku����:��Ҡ֚�g9qk����66h��S77h�oq� j��r�0Y��]I%���1Gmx�tƍj�]���L��k}p��������v�j��C�ҹ�Dq�O���#�V��Q*V�s�w=��v�4p�4��+�%��� %.n��t��غ-��ZK�rj����z3KkD[��!�5-�i��1ᤘ$�A��b4��jM�!��@<y]|�:{��.��K`]��@��S����Y4t��SvD/b���;̋��|!'�-�(�����~�nV�}�i,@G#_,��}�Ea������#��������iڀ��N+�_+���u��I�'��W�k�Cn�/]U��� +��I�gR�\_�=����ϱz��.�>T^��:z�*�C6��Z5� �]����M��B)��+�KR_U�e��/���/>���� �A5�S*���[.3䗛�_��ȯӝ�*2-�,'�)]&=ݦtY�y�2�3M;E���5奇p������y-Ă�Π�Π�Xh8R�֬|��#��g8gw��ڦ�d��|DOB{If@7����_ı���t����#�:�.\~��W#���<!� ߾��E����#]�P��'j؍F�ür'd��E���A�Rd�"��H���ۙp9����+��(����bZ��@��� ��H���t����s<,E��R�,��G�A�re�+�\��p|���D���4��a?K��]��l,����������N5�~�s�9l�iK��W�>��JGͷ��<��4��7�C`��W��"ȿ�����'vʶjr=��\r���� +Ɇ��� =��p~�����\Bi,kQc����z( u7��f̖� ز��1�t�1Y�1c]c�w��(��罱X�q�$��6���<�3E��Z���ߘ)Xc����2�]g��J��aE�Z��B�*�h��ᘣ���Ǚ.:��������qvpм�v�.ߞ�ᘫ�cY��~�^�N��8f�ıPŏ�v^<�\�*��1;9��٢�U�Ԏ<F҉C�yeXY;��|�,NlYu�ܣ��Ȉ��%�9����eS��ԾY���{l�#7��{_�wT.��^����]���f�a<�|�Ŝò3s��S��ї���妉�z�L8г���Ō�W6w�e� s`��_�GO�O�r� +8���Izw�$=6Izudz�X2i�s�rU�,$~�� ��g\�[���d,S��Rг�kH��{�̐��_�9H�Ѫ�:�m|���=�ʞ����i�q���`R�7A����t��l��8�8�,�W qۺErP$ErP$ErP$ErP$���_�Hj�7w���[�0�A�<������}�3��E�����ij���e�2��/C����8�%c%7���)��j,e���Z�E�H���H�$�^�4��d�&�4���K��*�r��9u �>��'�xR�r'%rui�:+�q�6ȷA� �Y�u$�(a&�d ���+ ,4�Z*����>��}��g8�%q�!���cF�s�����pth��∆8�!�h�#:�8"W���:�H��0ŋ�%��+|A�D�ٟa<t +�B�O8T�K2Ks��U�CU�92|�|xM�zd +Q�S)}�v���^��^��^��^���X�z���ɜ@uY`��c�+ ���s7x��]��CW�܁!���������:Sm`k�R�6� \�2�A�<+�r]1�-ɜ~�R`��l� Y7ȺA� ��Y��T�B Z +5X� �8H �e.�p�����>H5�9���z)����;ȺA� �n�u��:w8Hu+�\K���=H�]��2�A�����U��ʜ~R^�����A�+ʺx�u��d� �,�r�*/��U9���S�����/�U9H-���� +���*���]%�f�U���v^g���j�.�9�y]��97ȹA� rn�s��s�Zʷ����x��;^�m/���:��A�b���)v���o�����L50����}`��܇��G$�z����D0ȚA��f�5�Ț�,kB��vv�+��+Y��>�56'����� �0H�A:\�t�*�ȱB���LX�(�u� ��*�� �a5���*lUX��aI�@�\y,\h֊��8- h@��� ��G�Z}��ρ,�w ��:�E�<�� y؊<�Z� w��)J��_d#��ZDz��c� �14��A b�9��K�~gq��Y���,B;�8H�A*�"�L*zum���,�$+����3�)��8 �~`������!���Æ�=S�9k�wg�G��� z�3��VD� �ve�)F����}�Y��f�ۦ�d��|D�CJ�Aw����_Ļ���t��3��6M�����j���'D"���h�2W�-��՟h²MyW&�сf*�P�� T�2���?79��4�i�I�A� Rn�r��kE�9�������a��ĔQ�]c�)g� �7��� 1p�b���-Ԗ�N@�� h�p�4H�A* R��JC +Ѓ��bzC��6���#�¡d7M0ˡ"�y�����������~����d~?�B�>n�z� ��qc���g?��iG�@���|�I�C{�r���10��|`�g�ȇ�����m��re�+�\�J+r�5ۧ�3wT"�KlW�r8I�s��'�����ǿl�?9�=r����ݖ���3H�A�ҧ���>���>=$���قe�W����0�hv���$v��$�A�d� ��> r]i!G �^ND^���҉��� �y6ȳ6�װ�����myU�>������bX��U9���:C�-�!����A3�A���B����'����1�P�ٿ��z���ǡ5Y��e�"mϭ���'%�r����a�{�ՙ���W��?ِ���]�]$K�kf#"p� +�[���W}�_n�}���� P��֙&X���\ewk�į�^�!�@������7H�A*Ry�ʃT��ջ��ֽ�܃Z'����{0��a�� qpA�NxT�5"�Ή�d� p�2��ck��^N%a�SI�ҩ$$� ��4H�6$R�0p%x�1�a�����}`�k��>�${��j�!���� hA3�A�44*�&���C��!���`�z������57��y�����2�L��f�+�\�� W�]�\��q���)�uz��"-OO�;>H�A� R� )[J� /��eڎ�+�nǓ�b��L��3 +њ��L0c�n���f�R$���qs@l�>�!9���H?b"Ʒ��0�����_Le&����_U~-&f ��H�R�Mh:����<�r0�t�X������6E���c�n���z���~I��|�NV��3v# �ZۍJ�7�JM�!�T�hx�ԋA�ԋA�ԋA�hM��f���i�������Q8�[3 �nfZ �&���z������w%��8�q_3qsZ��p�y�鋢�Q�h"?ZP�J�_�H���m�k�|yO��b��zE*����Q��JmԛgU*�kNI�^'T�'���p��ݬ6��h����+d<]�>v5ܟVg�v;�~�D;�w�CF8??���r��ʪ@iUИ���cm]�3Y��b���d��ʺDҺ��u�f +�;�u�&��2�#O��=#����`,/��1m�S~w�������e�kA�ޢ�����h��s�Τ�w*?�z�GhϢ���;���x��ӟ<��v�:ֿ�p}*0�O�{�����Ž����-M��Lt�|ڬ7���+#�@�\r7�fx�1.���`��5��?T3?�J~2� ���Z��R~%���St�!Z��>�a3���� f����.'|����+\���.~+��r��x�k� z�l����N}F�6��5��ŋ����i��>T�{�1&���E����-�鐨�h�1 htCzL� � (1`K��R������+�X1��A�۞�l����z������-/Y�b�G1ѓ.�#��>tV�4��pnAN8�$(���=%��I�\$�;v���lS�p�ݨ�"�N)�ގ�`f:R���l��$�}A�|���G�l@7P���c��x�8���M^�_gzZbO�%��_��V~$�\�D�����P�I�������[���s�FO�`�<Ƕ�kpY5����#����#R�.�6�S�V��l�Uj���v�8��R��Y�q��7���K7�x���vN���I�z���k/Յ�ۭR��X�O�Y�}��_�"��[Y�g����۪K�+2kQq+��h�n\�����f���5��e�] +�:m3��{ufe�007����?�y��,|�R%;Or +��AX,���G�|�a��S$����D�a�KDq�ϖe���Y��@��)��]�)�d���hv�����]��lo��0���%+�n�N��, �,zj)�7�N�RzI뜋~a�'���0���u��P�y�ҽ%Ӂ�d.y��Fp��:�g^�ڥ��enX*�T�E�)��2x�aW%�Sv��#���a�}��1]<<��"��YK�uj��:X#!�O�+�s���ʽ�ge9�g�ۏ�@�G���U��:��a�/.��Yy��k��h6v��fX�ؠ>���p��b����88a�#�1ځ��y�X����M/�!{a���h80 Q��[�:���[& ��@���`�Uh\?{#T/� �C&2-[���GJ{�y9����x$���������L�Kp>�6Mh� xpQX!��~0���*��?l��K�����X}Z�R�����@R:���oS�9�����.6/�/\{Uo���M�L�z�9l�i��א>�=cj�}ʙ�ɖ���XiߚUt��x���4j3H�)��4NT�g�K��M��K/�p�������.�\����c]��4��ܛ�~�Fz�VF�c�վ�\1y� +d��ws�t��"�Jtk21�'3����A�d� f��b�nMD�^w�����j�*�2���9�M�uS��)���RqT�'f��@}9}�-�M�R+6�pj1�����50���L`�W���(zՙ,��Rբ���C�oCO�S* ��cB��M+]lre�r��QE6K�-3v��Qf5c.��߳/�S�Ec��;ϙX� ���l:Ԡ[���[�u#���F[�{�e���5�Zv����Q8!�T�w5�>}M�����"���S-|*+��hD� �3DWU����%&o��k[M��D��k[���U9��M�ke.�[�$y��MM��N3�c̖'�2u\�� ��O2Yn&�t�Cõ�Vp��Cθ%����� �4x�t́� ���.�ֻ��6# SW�r�+���#��3��Y�'_��,��א0;�x^B1��mڷ������f�1O�o��43k�̯藖�,/q�M\h=�5�Z�%�}�.~�U���B2�����>�+�qQ�Bdz�]yI��jI�uu�b�XA�Q��߱��Y�5âf.rgn=]�Z�Z�B\���EB�����1��L�Q��"tt/��6k:�L��ng��=�F���2�Y&�d���Ɩ-��ۓ.���I�]F��;�*/�d.��G��)���hu.�$F�E3V�h�d^W�κ�l-��[[��3X���_=�wAU$�@��i�$=��0�h3�����1k.qn����Zv_�Ͱt����uaX��>ݱr�e~����(-A�k��0<�37V1�/��@�s����H��P0�?�? n��A?�Q��MX:���Y��,�mF(g>S����|�L� �F�¼f���2!ƣ�0�����3)��l7K���$w��bI�� ɹևE�3��_�Ș�/�2&`(ՃU���ʯ&��4��H�R�M��U){I�"(�ؙ�[q)YH2�S��������V�}r��� +���f�J� � Qeq�<���#8ιb~: j�^�[R)=���6�4�����YU�`E?q�z�pQiŦ�<,�-��� ��d�l�t�����O�9��쪦ߝt 9� �Y������ +8�<%�]{��G��DuӪl�y�ݦ�I2[-�m�W��kz����j�ɫu�넎)����7E���e�Wn"٥��i0: F��2T�\ '�$A�a-cp]��g��~?��kա�f���e�~�JG쩥��q�lĚZ��O�.i�aab�1�7&��E�i�s��i��f������o2m}�TX���J�l��9�K�Yy��1]�1[l26`0f�t, �1Y�1�cUd��(u�ew,V{�I�1�c*��7c&Ջ��1��t�LȌ�\2�3~e5���3F��3F:��"���^�ct�1S~Ǚ�Kdcx6F;�L�Ѽ�v�.ߞjMx�E�X���O�����1S��B�9����|4A�![�JMy�T�1�Ѻߩ�O�H�y�k^1>ʸ^���e �8�y�ݵ��T�f��-,�����f�O�k�> ��b?�Wl��w�!����z��?�S���z:��@�:�1%*�/��]5�+���妙ӎ���8Ы1�����l�ˀA.�ؠ;�X�����|�4�I>����Yr~G��x���K�q�$�J��Ĵ���������=��fG±t&T��T(}o>��0���<�2��Xq��3�v�S�?���1� +���n��M�����ᒰc��r�)�8X��u�Yzx� ��d���)���t}�,��x��]8^S��Х��$�}�=<%��+�����g���G�z��}�A^�����!e�����48�a +���uXl�/���]��b@��V��t2�Z�����os?��'���H���G~f��g�w@GG">`/v���3?7y�T�O���G���#�lO�9S,l�����~��=�x�t��7�kө��[#|lt�f�x@�_�Z��[f C�<&x�۬'}��F�����Q��_K�?<ﲻ��B���c�:~���}��d��7KIo�`;�7�W4����m�F�>j��h/.y���c~ c�yRyG�د9�w�V:����w���b9��6�1��o��o��_�P�)"��b�A� �|�i +��h"�R|Nl����6Al2٢�Q^a-���r��=x��7kt��Ćn{A��b���xz����/�]X�//��b������%>b(jI�k�����o�Jx��1OAli���������Lax��+7sF���-�Zo���?$;,�y���@��q���mo�o�T�~����Ĭ{�� ��\�\ܲw��3t,���7�J?IP���R̋T��C����,-g,}��6yB@��$���Y�bS+�~i7��t@��e��PfJtp��%{�!�e�/�d�f�)J�ݗ~Z��j���2��YVd�a��Ꮾ��vsxє�\�_']�.z�+�q5�T$'��iX.^��%{{)^w�O5��bB���g�T�N7�����&�s��Q��e�ń=]�i��f�<��g m�;(���\�h��[Q����+�����2�Z�d�͇NgJ%:-:l�5LH䤍D�O�͇�0fe���T��i�zV\����~�� E�=��a�7 a��`*I�����e�����6�|�N�|#��2��P�}t���4hM��������]�b�}�5g@c��[�{cI&- Z?,C�����.п_���_�j�B5���q�/CW��/ŘQ ����^J�a?���w"����=|��y/�"�$}�8�E��a.G�X�W y<,?IĂ=����$��ˬ�B��ىOj&���z�Y�N��W�/1 �A-�8����%�g�c�P:L�A� �eG�q��g_~�`R�gM��B�|�r����/��&� �Ŏ�Jvp�bq�Kic+�TԎ����j�9��s8Ye��oꀼ$<E`�ǒ �J�i�L3q����*�m� �HmԷ�ITCD���(D; #�p|!e&����:��o��~�6��=��5�D�� ,���#�N�c�����T���cM�;2�bM\s�w�>L 悒qK�y�%�_�,�((���㳫!���l��s1� +��J~���>W��R�9��M�b�����"��/��]�|9�g����XFa��q~�:�Yp���9�����Q��7�4p�q�!ų�� �����x��g �%�����@�*q#�مt��õ�����D��H��@���Q�إ�Ɗ_w7�f�$�b7���?fq���w��#�[��o6��͟F�6�]E̐��#����Ə0��%�)�Uz;�DE�9-���cȂj]ʾ]��'q�6���k���[ +zNj�V8��|1��"\�9��t$�nl-��zG2�#�����c���?ݻ����ͽ�O̓�/e5����*U��o86 �9u���E�� hh���1>ȼy���h�BE�^�2�Hc���;W�I��͔x��F� ���Õ�褪A<d��~��J ���Hl�(��f����[p��<��J ��Uv���@C����:D��&f���R���i3�g?�'�4���W���(��HR��lKSIG�LZe��nH ���G�=�+H:�F����A�+t�o��q�z����`�G�_����S}%�+���S��c-� bIS|���<�ԍϝL�<��hR�����0�> ��� G�EOLAy�������=�����P>� �pz ��4V��3l�g��;�%� �����|�=�g_�ҧ����u�/�J�[v�D#�q?.����%�|Q����U�A<mv���l�&[�J����w�5�����&H�dX mx��kC�B{����,8�眽�P�AԻ�M~�����s_�G�tI�6�;~�����b9ۦ�2�0�d�1���8�d+��\HҌ�hF��2�3��ۮsC�Gr9�h`2��d�����g ����}��K�����5#��]N�� '��In���D&����,a�XV�;��6x�U���d)Qh�Rb�- �A��w�-�@7�(�UR�.S6�b%��>�≀�w��?�jOŃE2_I>Ҝ�|����3]m��>C�F!����3���iyx@��{� +�����������* �bf���i�L?�K>��"�b4}����zN1��ۢ�i������}�T�55PJ�\G +�=�U6�.h��.P���`��Gt�^&����õA(�N�i6wi�Y�s ���Y�X|\���i�����G��i*�Ȋ�͊c�����'P�or<=��f*"Ӝd�V������'�N�����j�� y�oy��`�Eٮ�YA!��e��a��ߕ�x�\b�R�����,0I���C�� C9*�sx<� b<rN�T��~�S�u܊,���G����MR=�b(�g!ִP�T�����AH����#���=B����B��KC�("ta逢r+�G�.C*EB���]�z*',ըcТ��$ Ѻtj�"�v/�ೡ����#�;O��K����K�a�������q�� +�<v�w ]�D)���a}�!�%+[�&�M^eR� F^���K�+���\�n�¹4�ػ�kTd&~�9����v���O��f�8n�]��z���"�]E6,p4e��X�M��jV���rlRy�|56"M%lԮ�+��L}�c�ߣ�+ˮ�n�Y�5m�1��Y)4����9�{L��0c���e� 6?u�����n�B[������l��|M6��R��YR��eE����_������}�����ſt~1TF���_dK�/҆���fZ��"jx!Ř6�����%��-*��o���*'�-��JF-mWx��O�;8\V�7�/�^e$8�x�Tw���u߸b��A�a�H:έ��ā���)�4�t�9�s�(V��&{5��8�;�"p�s,��M!22{����Z!�*��9y,������;�ݮ��[|��x*3!�:E�*���t�q�űD�MlB�CQ�X$58tO�D҅�������@Ri�x����>��a� ג#+fqF�x�,-P�H^�%s�dRts�G~�_�O��Q����w��Q)����$�!��|K�E��JR��C+)�"��VK=�bLCc7Eٺa�5 +�ے�b�J +0U�c�+yf�m���OV\���X�B+0� g-����P�l��J���?-[�Uŕ������˯��Y3"�(�H�磴�B�����H�R�pDAse�G��:��!9%4_��0B(/�&��,i�j�"�� "��T�u�T��&=n��84��ףm�d��6� �E�욗��K��Ul)����3�ʕ8���-�^�8,����ȜP4 kgR;����N!�;~�4��p��;"���|Ez�MDh���K���UV�=�V�G]��Un�K�"�JhW�Rٝc�<��{ yTg�GU}���=eG�>A�aEB��Ś����x��R��+r�����V��a�{�]�jFL�~����T� +n���KN�SDVR�X��gm�2��x�r3�-3�f��8�`���M���S�Z���;F<8�Y�����`�����|��N����N^��>R�fq:� c/���4��S��B0����d>����2T!F*�2��{\lg\����,"�nSnO�[�R��bx��=��N>2��bn�[�bL���%%��9�e߲HK�J���z�J�ҝ��MH��<���1:�}����M�雇TQ^��.����O8f=]�UN�{(��K6����gt?61�S�6�$2��Nv��v:8�Ϭ��O�.Jrl �p2�8ї�b�&�E�7z�ݬD��ҀX9�n�dߤ�����e��J{� +��4�m+��1���n��a���BzgB��sqz9�#_)==���Q7��y����MH�Y���yRz�$�c(��~�����Tld�szS19�Q�P �j&k3�p������rƜC���>�9���9֢d���m��˗h���⧏�E�#�0�2~p� ��2���5k0[W�@����:[�"Cpz�L�l�-W��Ʊ̡_O��>Y=�:x��)倫�U`?Γ˭*��}ѥ����ur�i1��o�'Cn�P�d���~��⇆�2��T���1�~��P�у�e���b�f�3�-)��%Rp��s!o����}�����K ��ɒ�T3!sF�G�7nn��j�Ҙ��</T,8��U��I�,�Y)KKYG<,W؍歈�f,��S�9��r4�M� +Gc[Ԫp�#o� +�|�:�1�,h��Y}0禘R���*���IУ����e�r�W�˪�,s�GT˧4(tGT��9K��8\����ӮΝ�$x���ԹtPZ�N� +�B#�i��*4��w�Xfe�J����U"9��'�ÇmӂO8ɫ����/�ԉ����eHt���4Q�,�Hsͪ�u�k�����0�! +ѯ�"�|�����xl��L��N��κz¯�/o>?����6�R�]�|ܽ�����?��������v�~z���[g��zH�^��z��U���V�H�v��^>u }��7�T�aóg��T�6��O?�yz|����}��?>��g�}�M�����������߾��������9�0����ܾ������=������w�<~���W����ޟ?����{�So7`�tX�n�����>9���4||�����?ӿ?���������~�����������}t��~���ps�}��d�_����o�����~�������?}����0���v�_�ɏoN0�9x���1����⳿���!~��m���v�����z��~���4��f�p� +��<]r����G�,��>r����a����>�g�� �*�j~��e����~���m��������w��}������_�������?��Ϸ߹�ޜ`����,�O]�������}�������o�ͧ�o�?���%���_m��j�Qj�<�� .%�y�ɢ�0wX,�B�PL=*�k�C�\������������z��Wo�����~������e��n�o�_����߿[|�;v���i�L�С����� �W�3���S:mӋe,��H@��C�͔Y�_O�����^�0=����Y��M|��9�:��c��2�F�?:�O���� bA�/ô��+~I��)�h&���O"**��A�7u�5h$D�<�o���W�[�?��O�&�J��~�)��#�~����?���_��0�<Sa�F����C��[�+f��:��^��Ñ�P�}߲�d&H���Yd���U�����pL��������Or�X�ؓI�E�W�$oX��W<]���$�岁�_����Qo{�^��7�t/�zd�y +bQ2?"^VE����f�#-nK����I��P�+�ho��X����7YR|��X/y��1ʖ7ǃ~������l��F���u�B���>J\����#'�D�c�|b��>b��G]�r>��Bw/V����,�,l&,�����G�Gx��kpY�1c��PP�ܾF���.���LW��x�&{Ο�da"g?N$v䉋F߉o���>���?����?�Yq�죜�L��)�#�ĸҚ���Y����8z���(+��x���H��?N��"��_G�4ɧ6a��f�ئlڈ�lgs���~�ަ�'4�Ňt"����~$`������������������;˵�]�c9�����������l�]|I�K��yD�|z�\��'~¿��='�������_�P�o�ݟw������}��~a��� +�(�L���A�~/��gx�>b�s�Y�'�����wl��{�1$��Ϸ|��\���پϾG_Ӱ,�_�_2ǖ"E��;�HH�t��o�s�˩vE~"�LL�ˡ("���~.����v��d)��Z�� �L=d6����O��/^��Ow���6ۇ���^H�c���a_�/6�������/���69�Ģ�=� �߄�C^[K?a0���:��aV�2��L�1'� "Y��nǍL�5����l6���M;���Z�|��.�6[�k�/;�'AJɣ��3;�S2�=��X8:�q�_����&��\��sf܁B�_�K�%O�Īv<�I45��w�^$���Ok_P�p���Rx� +=�w�e�QNe;�P�;h� +jE�"Y?ɿ3Z�t=#�:(���/�ٖ��)%�mh4��=z�O�Mg�'�_��}����/f���D�N�U�� B,Ҟ�ue�V�b��1�G3� /<�P����\��$�&Z�x���mJ�@�t�_-�ʽ`���]��TS{&�<���EeD,*��ov��K\QZN��g����vX"��O�t>�`�J�S:�n��<y�\95��侈�?չJ7�e�H�Y��b"��$���.Q�Ո�8lٱ���*9�L0Z�^�d/�J��q���2� J��@b$�V�O9�Aw�l���Pll���C�ys�r��C��O�]�%ߣ�_[&J�)�QAܥ4�@w�,njjc�=��&4���<���S�p�}R>�$�f�[�`��.'�`\4X̸�a0&wb���Q!�0)�����&\f���C�o��ݽ��Mw/.t�Y����~K +\֑D{&7�&L�G�{,sFs}��'Dq{�u��jA����F���D�"�60o%;Z��w> ��n܌7cUOYɈ�"j��4����3�e�������d��D�ĺ����7+K�ÿd���.�����ϛÞ�{}�r+4��r��Mbk�;�q���k~_/T|_ϼ�"jS����V��d�c=k�>�P��0YT2XƆ��B�N��UI���00=���ɓ���~�����Y��v,"�T�n^��Dq� p��w��!T�1�w0M��%+�CZ�i/+���1� �]|�V|R�q�;�lq#��\��D�Ztw�OטVGö�=�9��sX��v �.�]R/�T�r���i2;<-� 4��j?`=Ċ�2h��%��� N�՟�_h�ػ�� my#J١"�T�\0O�~����V�P��i���m�&���I�1e���A���� V�Y\ +�2�^���Z��n����]���)yr5?���w̤O�ߋ��4+�SZ�.��6�����+�a���Jݝ�vI��f\p$�g$�\d@�"�5f +G�V�!� ��0t�i��l�e�4L�U��t��v�B�@�Œ�POY�Ԃ��"�Q.���5��.�Y�T�<LM�!|ֶ�B�!�*�v�հlQ�G��8(�����d� �Ĝ�t�݂*o;���f�;A��9�⢰0��x6F����a��x#.{���mJx=�Pgȝ.�1#�g�Go����M�{:Ś�� ���<�K���"�K��e(�g����a�A�<Z5ҬK꾉n✧p�6%�+sP���7d�9gmS�s�9�/�d�Ng��n�=,SIь"3 �n7��7O����}�j��� �b���Cr�$���DʺQٍ�̀Fof�a�)��tF8�gF�d�X�Sݛ�a'�8vͯ��n `�-�l?�s������vO&����r��?*u]ȏ_s1#��)��〓0§2�?7���7�l��J��P�O1?��?��%� ���Z{.�8���D���n���a]��=>�31�&6.:Fe1P�i��"��l�s�Q!���=��h���uѴ�l7�#\�i#�)G�jٺNZ�c�h2.7�/�$����o�gK[�*H�,�i�Aʓ)�Np/A�z?7'j�+Q0xQ:�p���_-b���2^f��S���"�.��O~�L�^�v6߉�>TA%�6;�!o��u6����" ��%6�ڻhȡ;�=&r(��O vd�<J����GH�Ǘ4��q�*�0�����M���4��>�<���GWL��'���rRhg�is#��Iu�x�ToSFt;D�)g&�v�$�Gv���D��sӡ�wA$졄�r/]�D�Z)<w�ҹ�|2a�w��,���P���0GT�O�'�}��M��2�H�BKOY���sn��w�#���"�B�L>$4�G�X'�O/oh� +�n~��㿶��O���_>���&��?�����7��w~Zm�����룅�f��u�b�Y�v= �xyYX&��2a�h�< W� �_Z� .{��2)fO��c��&�;��V� +n�3�H�R,��c2�q�G���A����s2m|P���'M;��d?����Õ���,4.��e��Y7������@"��������r�._�����ɂ��;h쬜=��e �~��݉����o��i��#L�����ߟ��2b����v���@�B�'. ��Zy��-�<l�k*��"���?��!�IC�� f��ov<�G4f�8<�����YЌ��#`xxn�{)�ȸ�[���Cf/�jȂF��I�+��W�"�W��q�N'<ݕn�V,�������ʼn��!*��bG����oK�������q�Θ����8B?#��G�Q���1.|�1].o[o>�EA�Yh�����>����E-��ft��#��Ҏvwຬ���/::�S��� &V ���g��-v&Y�t T���#�k�d�O�>�F>�@�ѡ��{R��E��S��m�`x�=�,|o@A�?�F��KQ�?B��Hz3�k��D��'�,���F6�8`�W:�TrAv����� �.����\��� �۹!e7����|q<����ҒY���6��{� #��#�^�g)��HU����t�����8���;�t��)�w�2"�z�W��D� t8�ߩNq��bJ��Wv%f�bL����W2�2�6`ď���;ʶ"����[��3EN�w��\��\���2{&��&�{�B~�T������� ۰2 �@Y:"`P�(�����Z�XD�#���G~�Q�Ē�F0Y�k�ۂƦ +�2�x�%���-�Ú{�X}w,M��!�D&�Q�*�3N�W*c�W��n�I�X�J ��EB������G�w7 ��RQ�Ē�i�h�p\��Y�m=~��~Ps&�0��߲��@��;�J�?d�y�-�i�p���O��B$�y�;GJ|QS!��[+?oX̴�K�T������r4�m�t�$2 3�w�x�:n��f�?=s��$6�8"� %�\�B�ʅtS��Q�|a�v��Rw�==^rC��nZ�t�@1��=U�j�!.�W3N���Os���������;���9@�d)_�"�J���T�ן>��( ��������k��A�b�p��T�j�m!���,�1����R︗��)� ߡ�!N�B,}�e��9�Uey����sy�C�E�L��!"��w�[�"(����g�_��߉�������L��zE��4�ٽ���RP�GM2��đƘ����t-o$����PDT����y���2��nw��oS�f��pB�g.�@��'��=C��.�N���8x�NN$Ѕ5Ŀ �9�Es����P��K:C�B6lz�$�%�_�$�4]�#������P�9��$?�8�+�����E�C�E���q���X"g�)�N8�i�I��ߐ�e@�qG�@r���>��+H�!���r@����WIcqnD`DĊ�TY��$�sH��LIdC~����) �sH�B� +u��D���-#D����+Ժ�PpR1����I���X߈A�xa�;�6���-*�U�������7���� -���M�k�/��T� 3p���+������Յ3�!�L�"2�ʷ +UHV�.^/R1Y}g��� +��[���{�XR���'��.�z���g�A�9J�g���̑���?z7K>g :M��E.��=��j�Wmt���4X{��g�����ο���?�|���r���w��_~۽]��f�?���ן��������O�ϋ����3���/�����>����������������sc�{�u��䟻 ;��l5˄K��������t����T��$~�0o��ǟ�����x��ۿ�^�������������������՛��������w��������?�?f�o��ן���6|u���77mMyCl�Ȥ��bXX������JV$��cy�/�������;\[���j)�a��ox�����U��F�5.���p� �|���)^��J="���Y�%nW�0$�U|ȿ�4���Y��UB�=ϵ\����v���^��V}�Wx��uB`œ������%���64�wUs0�<��n��P� ����۹Y��8'r�e7���D�i.�;JT�-m���A��ϔ��~�����䐮p<Yp���m�W_�%2�xWq���Wj�TyV�=���"V��ܤu�y��1�y4���w(�꿕s���\�YdN��ql=�C(�l���Xsy�t"f��;Q��c�-�2���Ob=�~��t��l�@�*�|�mZ˅�i�ueGa驙A��K*Y%� ��fޢ���"�{��q��f)AE��8 +:��.�#0���e"�A0T�[A�-H�ԋ��b��T���MҪ��Z����Vn�b�J'E��<��c �@��-yʡ)�ڌ��v\���a�ϺO:�_��9�^�p�|'Iݣ���f�����5'�}����)���:���`͢�����y����Cr3��vH"�}1^���`-�[~SF�m�ɗ�=�o�5x��n�+MzN��tA����Sv�E��h���!�5����#`k�ॐ��@p��~�\�3����P�N�[}\�,�UG�v��z$�g��=b�v��:E�l�Շ��5�:�]?G��>�����M:��v6������?m�ۢw&��[(E�:~������?�9�:�)�G���R����#��[�� �z��z +�h���k�9�����C]?���v���}W�$v��|��'U��� �j;�O)���������ǚ>��?�����Lt���������W�l��^y���8o�'�#NDg3�26�N��tA�M.Xo���a�$������/�t���>��F�-�����}�'�O�B�N#��<{������f�͞����1�Dn��5N�^�/�"7�By&�?`e�F8.�"�>e7�H���-�rx�gA�n���V{Z؟Q�~��=B_�O�pa��^�~LA�z:͈R"C�Q�ώ�y���b��S�Ɏ���:��$/cZ�a|C���Y��1k5>�AcVmbL����|L���Y��1�2&����;�T�Q"<�������n̜����9w_�w.�����ߍ��{���2�=l����,��-%�7D�+?~�����*�+��H�+:6�И���o�ʎq����l��m�|zL�+�f7�KE^�>h��Lj�y��1��ŵ-Ƹi�%xKJW��{��X���]�|^N��3���}ipm���{ƭ2��>��=�.�#>�$��(���dLu�}�D�B�B_f�`˪�8l�=<�p�|��oz�~͑�;l�/�,�5.����i�<�_0ĉ�f�S;��F��Y��u�jD���1����f�.�|;�����D����J�y!�q춂07+�2�y�J� +�a�v^]�yv��a�� ;�;�y��Cl���a�օ�k;�vn��s���[;/��0|��օ�����v�;��J����\�ưua�`�a���v�v�����u +#<;|V62-2W�~a5�0*X�_bć�1�=Ԁ ?�� 2d�������b"�u����|^�w����=m���g�����@����y���a��ŀS�Lj�8�c��ƀ�p���,5DG�7�v;5K� �vq%��T�m���!ZăMZh�<l��(����E ����[L��F�V�˫� ygA�J�R��`���0:z��v�C�̇�l�V�E�Ntq�ӽ�(D<H +��嚃Pq��1HwAS�EM1�=ڄ2�����8sc7��;��c�蝎D�^~�qje�nͨ9�i�h���)�,N�^3����U;x>v���{"#�\i��"Ɣ�Tp�~j�*� ��SM�yTOxLǯ�!��#�إ� a9B3�^�v������X#!(GB`FB���X��(t�v�`8|u�~9 |3 �^��w��� '���?� �F�=�5<�rxxfxx������1��0'4֜%�5J�r��f�������%�!>��1�&���������v��j����ߒ�q>LX����QzA ��%�"�*ݶEMLı��S��x8�ñ���t�v�aek����v^hz���-z��/'�B��FCV#��� ��.|�"[|D��������G�>>�j|x^����#,�Gh�G�>���Qi��q�8�p���[`���A��FPq��ػ6�����/Ňoć�>���Qi:�<� ��qx���J������}`x�1�#ǿ`���pK������}`T���� � �.�m�K����}�����/�� �U�����h��w���N)0#0�>���J��;>�ap�ѩG�e�u��ʀz�4���+���&��w�؏=�=��z�Ł�v���ƀz�"M@�z�I��G�P/��Y��Y�O@���Ҡ �`�`H�]! V# ā�i�Ҁ �@�@H]!�Zv�8��ܒ�ܚIB�U��[�$���$�v�$�Z' �����V������bW��j��Ű��I�j�S[��c�$�^�_hB�zE�N9 3 �^��t��&�;�п�`Mxb[���% 6��}������߮ �*�5�u�),O=���S�K�)� �ڤ�:^�-��� �Q��$4�$�%a( mBz#� ������������x6��Q�+c"�5J�r��f�������%�Mxo�pe(�Q╣�3���%^(�� +0�Q�Z��-��k���<���Z�����z�5J`9J�%���Pm~��E��D�M��ܔ +̦TЋ)t`J�H`����{���W��}��W�پ +z�����y�8���=�*B��m+,�c��<V�G+l?�V籺!���Z�$��l���#2�#�Q����}�q� �"�&���VhL`�}$���Xau��"q��J$J`���A��F��!���j������K�������}|T�N]�w��W�8<[`x����������>0*��0 +c����k���n�p��G���q�^ 〶�����F`�>��F��Q���4`�P�`���}|T�H���+a�-0�R`8F`8}��i�VQ�4�0l������:y��2���¾�Xa7y��.��N�D-�C.&���c�6y��*���� +��c��y�B'��e�zy��&�V����XaWy��6�-���BܼFͭ�/�^a����T��C��+�� ��^'��ZMr�5�\�U�+�Lr�=&��Β\�u�+t`�3��[�+���1��#z�Ĉ�qs�u�����<8���A/�᠃�p`�#o|�w�)�XLj��q`��Ĉ�bāE�8��C�M�u�8(��q�K�8� FXĈ�iW�`�P�`F �%���+?Y��W��%N9J3J�^P�t��j�D й +o� ����*�퇊��Pq���8=�����6T���c�8�#T�*�CšAk%6�g�-0�R`�F`�}�#l��� v ~p]�#��GP������|��2b�a�{^p%�÷�_ +��`���҂ +�(�}ǽ`x���J������}`T�Nt#'���x�o�-0�R`�F`�}��m��R�08�]���,�4����>>* �NG��W�� +lc�Ai�80ƈ�>b�A�1�:F���%��]�Dql���1��N���4�:A����<F�0g�.F<��#._Q��=i����c�ٰ�Pr�����m% \�XXE�E�E�/�nP-P���|̬��ԁ��(��>��T+:���%����f�� l��AUP7�/�t� l��/a�y�gֹ��VAݠ2��� :��A��`��{v���]�<j�1G�:�D�:D�:Q�8��%B�k��%�%n/(q;@�k +�W�c±�u��us���K���A��c��"��W�D�5J@9J�%���P�|Y�u��:��Ny��c�uz �u:�u,�u�Ё��^G��c�딆�:�p]��p]��p]�:\[������؆�:�Ẏ1\��#\�i?\ש�ņ@������#,�Gh�G�>���Q���0��]Ƿ7��#(F`F�0���Q��80�#�^��m����7���~�������a��W�8<[`x����������>0�j``�ϕ�X9�Q�NiԮc��u���uڏ�u*�v�8��EՀ������F`�>������ѕ������h��a�u頎->�R|8F|8}��iN%>�� ���xTԮS'`Ω�sJ朾�n���9?v@�a|U�,ͩW�ٱ���T�ov����tU�ٱ���G��m�[����N��͎M�f��~��_�f���͎e�f?��8t�E`�@���� T� �6��*�d䅮�gS4�ݰ]��B��]�zc�n�*M�n����b�n6r%�\�}>a���5��*z�p�lx^��yʼnGw�� +�W�ò���aY�O'˒��ZXӪ�s��� +���8=�� ��Kb# @� @�> @lU��s�(旼wd���%�%Q/(�:@IdS��8�2���( �Q�Q������6��]zW���%A9J3J�^Pt���&U-r���P�[��/G�oF��J�P�ۤ�q�^A�ya�^9<<3<�^��u��&U � �2&�Z��-G�kF��J�PbUv�^J�5J`9J�%���PbS|1'�Q���������t�`���:�����ڢ +�-��lQ�XTAU�D�� @�(���U�+�P�����~9a�_���B�Ȑ6�����E}�#��GT��Ȉ��|D��:���cא���7�FX +����`���.��w�+F`���A���U�k���$�o���~���LJU�k�J�g��^����U�k��J����-�k��0���a���;��������lv��qp-��������F`�>���U�k��q]:�c���N�p�LJM���^u�+Y �DW�b}��zE>�U������[Kt��$��N|������űN�U/7��/*��/8a�X�ѭ�IW���^����J���C�A�B�i�+�Y��F�a�\��! � T! �4�Ҫ�|�S~��W�ZB�@��c�����#�#u#��H�(�(����:T**��̡RQ/�RQ�R�M��u`te(q�Q┣�1���%N(q�����]��(����J#�"c�T�G�T�~�TT1E��!���نJE��R�1T*�#T*j?T*���F��w��q���K������}|�6Fg7r�+a�-0�R`F`}�#hA�i/����@��8|[|�����������>>|��]�J�g��^����W]?�G�ZxeG�n)>\#>�>�ᶏצ\��ޕ0hX +h��}`T�x?�"/�`�[`�R`�#0@�����#A쇑]űŇS�Lj�|8��2p*�=��"p�SQ����2p** ��� +��� ����B� �D�+p*�d�DUAQAQWA�m�A�B?����6�o�������P �pU�r�VC.<��j��ȕx��T(�UC�����U�Bs���*baU���*b�.�M� +�u����Xh�"�RE,젊XX]E�Z��+)EZ�ƅ�q�94.�%4.� 4.���6b�k�J��(�(f��^P:@�3���t�Q┣�1���%N(����A��u�nmc��Ҙ����V�ą��n^ 0"[`D��������F�>0*c�B��</��-0�R`�F`�}�#l��pA��.�Q�#(F`F�0���Q�ɒ��o��~���FeV0��\ӡm0\X���>��������`��B��W�����pK������}`TH�8Ďfp%��������F`�>��F�iԏ4�(�`�[`�R`�#0@�����ꇮ��]������)Ňcć�>���QiE�W1���sT\X' +.���K��¾���n��B�(8�%�m��Y�����K����^ŧЦ�SXU�)��S�Uŧж����z�����m:��4`�4P�4��@WH�fwn�������y� ��T�7c��c�8i0f��-cf#W� 8���ߖ�1�jXT�8���=����Dv�6�JS����l#~:i��xj��6x�gl#�.��GX����x���ځ�~^<kx����z�G�<��e�;�[��/G�oF��J�P�W[�|�m�ƴt:A�g��%�%^/(�:@�gc�ܶ����C��õ��[��x���ڿ�:q�Gޕ�h�X�hF �%��@��1�/>Xl��(�0���<,�&>�&x8��p�������xT{ܝ atU�����4)0& }$ �' � H^���b2}�r� HAiR`L@ +�H@ +�O@ +������Fh���a��F������F`���A��F`��W�.U÷Ň_�߈�|����f�^zW���& � H�1)�#)h?)�N@�<���?0\[`���p��p����>0* �\I|`���& ���������:ɍ#�����j�[|�R|�#>@�����(ꢓ�^�ű�S +��`8�é���Z�J@ +�$ � HAiR�WR�MR`���z����p�r����*�(�/�(�*�(��1r]G�s*ín:��4`�4P�4��@WHH����s�f�b��|V)Ae�G�c�G�Y�G`���B��{ =Q�M���q��p\������w��?�p\�:�/����~/�~ḾM8n'ĵF�[�������'��m�:�/����~/�~ḾU8n���X�����z�����x��e�c��%�%N/(q:@��O�ə�϶�2�/ ����~�~�ḾE8n'1T}��}�->�R|DF|D}�#jQ?�����#,�Gh�G�>�����7C�J߾mp�_���s�>�s���s���\�ŭ#�+bƷ ��K�s}cp��Gp��~p�_��:�E�Z�g��^���F��F.��+���m�s���\��������W�B/��Ih�X�h���}|�j| ����l�J����}����JK)�0p�k��->�R|8F|8}��i�6R�x~^}��_'Tׯ��KCu��Bu�nBu}�P]C�Z����jF�T�[' +��8^�^t�o]�WEW��EW�]EW��ѕ ����)��M�]�[EW��ѕ~�ѕ~gѕ�ut%\$B�SAm�"y��&�����M^�&�}w�W�n��3�g�n�J�M������n��w7y��k<�{�^'�����N^^'�}��W�u��3�g�u�J�N������u���:y�^�Vfg���:��R�gt>y}8����O^�� �:4]I� ����:�<��������|�O��^�Wҳ�:y�^'��u���:y�{��j��� ���c�[`�R`�#0@���T��{5ñ�S +��`8��������]���#�h�g�.6���+�~&�ד�����gb�VBɏ�h܊+I�kPX�X�X�/`�n�U-���u�}^���z>J��G�U�(��|�^W>J��G��8��da�>J���ҳ�Qz�>J�G�י�ҳ�Q: ���{v>J�6e�-M�t�)�n)�n�)�nu��5�\[�[��v�>l��۾۵�a;Q�T5���jB[Ԅ�� �� �@M�>jBM�q���&ϔk��vK=ۮѳ����v��l�՞mQ�։�os�k��vK]ڮѥ����v�wi��.m�B/�`x���J������}`x�����u�u驮->�R|�F|�}��mn%>܇�W�8�-0`)0��`���+��F��_�K۵ui��.m���v�pi�����J�������K�8��pJ������}|8���:�F���v�x��J϶[��v��l��x�]+϶�p��8 �u�*�J���X�2,��v/�G���v�y�]϶[��v��l�]y�]K϶� ��K``�z�ݚ�m�ʳ�Vz��=�ng�m�ֳ�E>9ϻ�ͳ m=���s ��K؇��﹄��Kz��|xM>(h룄�>Jh�Q�>|��}%��Qb�܉7���?��Q�R%4�(a>Jؾ�V�(� +}�J���G K}��裄}�(a�>JX���\�qۮ�ހ���+�g��0���Q飌�p�kI����IX꜄F�$��9 �wN�j�d�zn|]�(��,�4����>>*��a����l�J����}���J;H���8z�c��N�p�F�s2�� Z��:'a�$�tN�R�$��9 �qNB;�d��K?zV�IX�9 +����9 �rN�n����9�0�(~^�I�|j��sR���T/�8'�N�TݢsR\�3��I���T7�C�A�B�i�+�U�J'�����zH6HUH�! t��j��@�2����F��^ɠ�W20�J��J�Jս��vF�u��m�?(�����G�?h?�T��c%=\p w�6|����c��#|�>��g�r�������a)0B#0�>���ʸ� �|�-{љ���۸P7�q3����~���� "�A�J|�6n����c��#n�7��f�0���j����+�g��0����Y��=�J��pm���5��n��������'�q3�4n�f@q3���P7xH�p��q�[`�R`�#0@�����|@7����ñ�S +��`8�����"_{[dP'�T�7����Wx�&�7�q��hζ\=�ʁzNg`�tUNgП�t�t�Ng? +�8���Y�NgP��l�Π���s:��������q�mG�1Ҩ����R�c4�:}����N�� E�9M�K��[�Sj�u��_��Ӿ�ש6�"ނ3'��-0�R`xF`x}��k^50\��U�8�6`���m�N6`�}�Sm�=/�[/�〶�����F`�>��F���W#Q�-0@)0��`���Qy��b'�G�pl���1��N���4�za쁶,)�������Gzv���b�1W��h̕=�1W~p��\6l54<����黺u��V�-��P�n�R��zAະ%��/P`��J��R�����J�z�.A���:|@��J��R������O��ch�+��n�p�D`WUW��XU7w���nV��=�Ū��ȕ�rC$�<�\0�n�f�~MT�V��+Q���*�3TUZ���쇠չ#�x5��Y�ǫď�#~���Sy�r#?v�>4����ďk��?n��q;Ï[�{ׄX?� +?�?�G����SyPs��m�8����V���=�t��ʓ�C?�"p5�qj�DZS��G�8���+�N�8i����}���5�ˍ��E�xM����k��n1^S\��8��9a=�6� ������+�T�p�^��� '����9Ar���t��J"�:q9ε ǫ��9^r����u��J;�"���j���C�k�� +9n�q�BN���a�׃X9�9� +9�?����Si��{ �g\� �@=XX�*X��`��U��@\Ͻ`��M� Y�>S�䱓ݠA�n�~��4DY�F�n�Cl�J���z@QKMk{�Յ�g#�F^�0�Q�^턮�]6��Haol�XK���r�N�)�V�)�nS��+���8`x5Ё��m������ +:���`��*,u(PP�P� +P�?@���U�S�q�^/r�ADZ��S�?�8]Aǩ��]���CǑw��A 5�18P#�p���)l�#`S�=��QW�FN�8-�w��|��)���NQ����u��N�����&d��,���da���@v�*���n��dA-� *@���#�� ��m�38�)�ׂ�o%�J~oP�;��_ %/t��W4�h� +�x����4^%h�ö:��Պ��e sk�̵��[2�7������톑� !>W��Z � � ���v2X 2���.������v�~��r�4�k�=Z�ϧ�KnR��%�/�F0p����}�x|������mY���|�E��������, �S���g��86ה��������䱭ñM�p�3�`���7��:U�]]�V|�R6ʐ�wR��!eQ)�ɐ���ëq�}n�����tkLX�7��٭1�_<|k��W��jw��_}c�K$ڍ1���=�����q�u'��6��π�� HO��"z�D4��۾�k!~XRc<�z��W=����<H��I���k��rّc]�9���A�1]�3�}!s?��cH�i@�U1H�c@��z�s��׀�1��i@٫��0�lzg�#ef���5 ��7��/��}��:����k3�a@���m$��������Ӏ���c��ǀ����?V���z 7ƀܛ�^5 À�<��e@Ƈ��=�� Ȏ1 ���W ��0 ;����Sֻ�\ 3cȼi@�U21��c@�[=6�J��o���n�B�t���W]�t=Ϡ�� �R�v�gI �3���AW���1�j�A�*��Rv�rb�.��|s�嫃.c��g�߷J���R/�t1f�ś�.^tc��<����U�t��UPI z6fг7={uг���3��[ ��w���)�*o�姢]�9�}k�2/��?��᧟����宸��_���JX!��Ω�_?��ˇ��(�v��?����^��m��;���fu[l���ծ��˯��竪^�U���կ�.����OeQ��Ç|�a��Ӱ����M�L�L����6�-�fU�W�>���}U^�����������ǿ,�y�+��S����vu��/�oWU��Y��b>!�G�?�~~��d��q�s0���Йu�gЖ����W)�m��������'�����ol��&��Ð�]vӷ�k��b��𥛬�&�=�tW<|w"�Ϧ���yh��Z���:g�l��'��O~s���/�L�m�]�ҭ�^��N~~�/�?��?ͧß �������4ԧ7x��O��s^틡�<�#��s����Ɠ���eWϛ0<�={�K{��j9�\��_���IY����S{ۥW��v� h���?i�c��3�)/�c>���͢ &{�+��� +���Ķ��|Qo�O�,�����N�vWno�����O�D@ 8�g3kЫ=�K��<�\ ��aG�8#��ӛ�ܗG?{���:�O��~w�����u�{�8}�wmy��W�z�m��b�۩�(����r*�u��֫�~s�L�S�|Ψ�|����䪦�����Y6��S]w�=͜�u��T�ۢ���eϸ���P�7�v2�ñS�6y���R�t�gi�4�M1}���)��@S���/}�=�Mdgpa�6E/���Υ���� hm]W��SP5�)>[�$�&�X� 4���(~W��=rq���L�v$�y61� +Xڣu-����զ\MG��ڹ �`�M�U��|�:�az��!�O�K�@��X۶ˇ��dz�(����n: +(=kw��~ �K���2��\�m�}��&��~Wo�pw:�"�#=�-�__ΊÄX\����ʠ�����Ͼ/9���4C��&�� =�s�0�CG���!���Q��f�t�s��� ��7��W��Q��;[��2UԹ�H�.f�7�����\�۩�1��29H��8�IVmG�+t~R��m���� �A� h��UE"3H&��~�x�kɸ��0Y��ɩL'�lCd��<D����t�.�� DL �MS�6�Zo����s�ʯ�U�{XP�Icb12�M"�8�:8�]�Iy�ޔ۲� y[O_7��^9>���Ȳ}X~.�/��!�7=�O��~��M��s�m���Bf�,�e��K�tR;k�{]�w��W�&<�c8�+;e�$�%H�zb.ԓ�j��]�@6*Ѐ�8�y=�]P�9Waø9�<4�����-����.�?�� [>d�&�\�qCZ�~�~��[._9��H�mN�E��SR����Fn���ݰP��K��t���;"$f������K��vΜ�^Z1ߢ�q�K�Vr�#"M��_>>�4���LƠ|�T���T��W�r�ot}Eˑ�9~;$-�{'����#��\�)n$ 6��q��D�Za�&"R��0)��l�V��}��EGFXxs��H}1ӦX�s��%��P��~s����1��-���Q_a��Ɏy\�m:숇���9�~;�Ġ���FM{T��u:�����C�����ְ�w ��az!�x&ty(|�N:��L�+���c��s]�#OM�B��e���"��f��Ǘ�=�r]TEK[q��1q��˦-Ww4N�W�s�%�ⶸSIO�9�s%'3r��<l��22+=�JM�o�C�ڣ4��<�"��s��}ۉL�x�(�\]�����/�X>rɫ�rF6` +r�R�<l(*�Nc���,�L�P�܀xx\_P>p@9BR����������ʫ���E:t�Z�8���V���W��&�})�;��6�С\h�\<��@�z�]:t(ړ誢i8�&2� �D�0ţ��70� #��C�0%��.�@��Yh��LԲCD C�0: 2�����m�ͷ+�Àz�ї�<R���t� +U�������?{M@���,}���H�����o��U�zy�s��7���>6��+?�#�����߄�P�ی��tv���)$�y{�X/�G�c�KqS6�9*1���R�����+�8Au�0YƢ$�7fvʎáR�X�r�_�b��(VO�\�[EE��f*�~;�#U�)#��v�a� +�����0aPEFޭP� ��e�`P���Q���`Ы; ]���`�=;F�v�<�@����J�]4���hX���<�F�y`��G��U���;���aS� ��F_���X���OMVy˸�J�����5Eۖ[¥b�ry��>ak���W��pk���c�l�6��Pǜ���f'<��A�ŧᎉ���%@y��C��ó�B�A6�l���!���� ᴧ�iM(c�"�G��^�5O�\YH��<���0-E��Cb�*�db�yc��z�[1���JeR\���<�0GTHÃ�eNP���Ą<@9KH��S�D�<@=O@�4�ă<@;K8��s�D�<>?O0��Ă4@?����D�<>ܤyc�܀�q�r2P���x��Ȏ9��_��J`�4$�Tؘ���|��xy�,S63�`� 6���l4͋=�h�����,1)c�9b>�fCEH��b��e�P�,�_�� �I�t*h�$(K�l _���S6d ��$�tAm��+�@��3Q����L��A�j��x�QB�J�����}*+�R���tl&E��,&�fUg��-kgY^��Br�,���y�9)�r��x�8I�p�$f�,&E̺YLx)��L�[[�%&�,&,jѧݹ���`�7���� ��{��7��L��G��5��U�"��`-�ثf`��ݜ�]� ::���>ʄE�l��M{�A�pt]��as�� 紱 ˈM���}��#[&��~�8|y�Z�[�^�<�I��!�M��#�K�, �O����4f��M6#�ȊuIX�7��Gf\�����; +�H ���ʀ��*���l�CC)&�9���fQ�M n��:��s�*ćR8�.>���*\�>>Հ�O�Y���Y|*��RħB/et*�A<���Y�0̗:>��4� +}��/�P�+�p�]ի�b0�{v�.�f�uic39,M��4��]l&(�����7���|y�Y�%�Fe��Џ�����3J�f�C2c����^\�V;l�k��̈́^\��L̥S@?�b+0��5#��nʛ������*���6Kڅ�2�vO�|����%À�Tβ-6NԀ�G���$�=�<V2�z(�"СJ�lB�}��2��u�~X~*��a�(!#�g�|x�騨,#����5c�QbF�T�7y6�5#��R���>��rW|.F��]�vL��g@Q�4A�N�h>!h|�S˨u��W���dt�C�03j��2/����Ŋa�XF��92����1�L�,�MK鬪�����aQ����R�_a�acr�v�ɲ�,qS���{cy��X�ˀ�a�i� )�Vآ�0�ҳό'9 Y�]w���9�R���$����$��P�Ŏ�8Q��d�;v>6V�1�_��MA�N(JV3� �d +{$k8p�G(Q���P��8��(C� C�~�|�(D� DǕ[&'j�%hQߤ��� +�2ܲ*�w��2� �8ʨ=��=�z����8Nq���K�=�8M�< ��~Wo��H���8C�피%4�SXnm�����;B��헍s\V�E�q�D��αY�q����!&b-��n{��4E�[�.����@)�4F�Q�y�5��*ڢa&��x�"���]Q�dE]�]j�j�@��7ζ�,W;��c�i�-���KT�{�d�5%J��4�rCq���>p!�7��.�emBF���M7� ��DA�07y��,r ԦIC�/v��*jQP4�]�p�(AA���� ԯ�����z[o�B9P�,����%�PpD���*��W9c�͠����2P����%��f�+3��jx��h� $r:�Ϊ� ����L���G��b�f�M�= ���634d�V+��w��I���j����L�]�̫2'Lz,��A�� #s�6�6��`e����8*!*�$��r��wݑb �rf�;E���r�(VBρJt�x3����X%����,��.{��]V�y������I�Ρ��0*s֡�I���j�lC��,��� +UMT��gt��l"�$���b +�i��I=1�e�V*6�a�U VZ>(�]y�62�����w����`(S�����όDž�$}|*C�ţЙ���v�<���)�Ѡ�b�)��xT����%�ͭxT��ފG�� �xT�K��������z^oUT�@fAi����I���n)P���T���h�I��!0<*�`xP��Ô�y]LyP�fJ +� +���.>���p/A��T��9�G}�����O�%@Ž�0tP� D�*/u�ѕ�ѡ�2^h��ު���m���N(s�&>����Qv*�:�j`�%�g�x� <(�������bŁ�mXeS��jt����q��'�k <4E_ +�i����Fxl�r�ә����A����{�!4( ���AgH.o ���(�=h=���S���5*����k.��`rb��䲴��I�x���&W��D,���r|��%�H�\�x��ɥx�hL,��Gcb�N���Ҙ\��Z��(_&1�ģ7D���f}�l���a\�J��L�Km����A*K�bT"�ᅨD*K�P�X���<1>%bbx��r1:%b � g"�$q&b)��%"�< +Y� +o�La��۷D*��/w�����@�V��y��-���w�f�mݲɈ;�l4��-���o�F�������+��CX6[ Ʊd6�En��P8+mHM +�l����FӼp���>���.N��P.���q/>�r��כr��/�{Az��V��<1ꝃ/�*6�xJo/~���x<I���S�@x<����v�������9�q�z>��|�̈́�sWa>������ +eJ��I�>,NJؠ&�˔<�+���� +�A牕�s� �P$�O�#�!%��B��N,-v)��2�R%>HJJ8��Xi�RLE�ڧDG�͞j�r|�N咊 +��1Ջ��/���Yn�/��s�..�AU&�*��wT�IE<���bVerO�2��Y�����%&��(�W�q�۪�Th���d���> ���ihl�O�{~�������F�yknd2\02��a+hk�f@T"hxx)�������7s���� 3.�l��nq�r��m_���q��.:��S�I��7��B�����S���GsP �"��s*�]��}�y�U��9��@����,T�ڭ�O���Ɨ��6�6��0� 8��4$v�ep��ŗ�� +d_n��w�]�]|�>�#K��|{��+ �-U���*�v��3��7�]yߞ��]�qS��U�|\�벭w�l>�W��r�|\���yUn:���2��)D�L�e�wTh�V!K��������/����9���ߧ��>��|�T���|�����#c� �v&������2�s�� (�O� S +��7&x2,�^�I�j�ņ��W�� T>�Tt!�.�Tta��٧�u���u�����}*�0�Q8����!]�!]�!]��BЩ��.� +�B����.� +�B𩰡.�� +�˲T���T�<��T����P�ܱ��P�ܱ��ؿ�e��v1vY*��%�[*����[*� PD*� PD*��u�N��X��D*� QD*��ݏ�HE$�HE$�HE$�HE$�HE�?����D]���D]����Jv2]�zd'S��Iv2]P�2]P�2]P�2]P������涍d ���+pqRI��6_�}�j�������Tb�T�R I�A�@��_�R�l�M�gľٍ�D� �����J_H�/$V�B�}!���,Sb�/$�+}�2%V��eJ����dJ����dJ����dJ���Bb�/��R+}!ž�Z�)���J_@�L������R+}13�V�jfJ���̔Z��)��P5Sj�/�m��J_@�L����Ι2+}�3eV��gʬ��fʬ��ϔY�9���J_@M����$�2+}a4�V��he��S�}!���JSn�/ ���J_@6M����x�r+}��/�V�Jjʭ��Ԕ[��}���¾@V�a_ +}���J_@�LV�s�ޙ�x��3Y��9zg��s��d�;��Ɋw��;�w&+�9G�LV�s�ޙ�x��3Y��9zg��s��d�;��Ɋw��;�w&+�9G�LV�s�ޙ�x��3Y��9zg�� �3Y�΄ޙ�xgB�LV�3�w&+ޙ�;��L�Ɋw&��l�;zg�� �3[�΄ޙ�xgB��V�3�wf+ޙ�;��L�يw&��l�;zg�� �3[�΄ޙ�xgB��V�3�wf+ޙ�;��L�يw&��l�;zg�� �3[�΄ޙ�xgB��V�3�wf+ޙ�;��L�يw&��l�;zg�� �3[�΄ޙ�xgB��V�3�wf+ޙ�;��L�يw&��l�;zg�� �3[�΄ޙ�xgB��V�3�wf+ޙ�;��L�يw&��l�;zg�� �3[�΄ޙ�xgB��V�3�wf+ޙ�;��L�يw&��l�;zg�� �3[�΄ޙ�xgB��V�3�wf+ޙ�;��L�يw&��l�;zg�� �3[�΄ޙ�xgB��V�3�wf+ޙ�;��L�يw&��l�;zg�� �3[�΄ޙ�xgB��V�3�wf+ޙ�;��L�يw&��l�;zg�� �3[�΄ޙ�xgB��V�3�wf+ޙ�;��L�يw&��l�;zg�� �3[�΄ޙ�xgB��V�3�wf+ޙ�;��L�يw&��l�;zg�� �3[�΄ޙ�xgB��V�3�wf+ޙ�;����يwf��l�;3zg���3[�Όޙ�xgF�,V�3�w+ޙ�;����Ŋwf��b�;3zg����X�Ό�Y�xgF�,V�3�w+ޙ�;����Ŋwf��b�;3zg����X�Ό�Y�xgF�,V�3�w+ޙ�;����Ŋwf��b�;3zg����X�Ό�Y�xgF�,V�3�w+ޙ�;����Ŋwf��b�;3zg����X�Ό�Y�xgF�,V�3�w+ޙ�;����Ŋwf��b�;3zg����X�Ό�Y�xgF�,V�3�w+ޙ�;����Ŋwf��b�;3zg����X�Ό�Y�xgF�,V�3�w+ޙ�;����Ŋwf��b�;3zg����X�Ό�Y�xgF�,V�3�w+ޙ�;����Ŋwf��b�;3zg����X�Ό�Y�xgF�,V�3�w+ޙ�;����Ŋwf��b�;3zg����X�Ό�Y�xgF�,V�3�w+ޙ�;����Ŋwf��b�;3zg����X�Ό�Y�xgF�,V�3�w+ޙ�;����Ŋwf��b�;3zg����X�Ό�Y�xgF�,V�3�w+ޙ�;����Ŋwf��b�;3zg����X��Y�xgA�,V���w+�Y�;��,�Ŋw�μ����cn���s���;��Y����ܬ���cnV�x�17+}����y��J_p��xgq��xgq��xgq��xg��/X��c_��%ƾ`�;K�}��w����,1�+�Yb�V�����xg��/X��c_��%��`�;K�}��w����, �+�Y�V��$��xgI�/X�Β`_��%��`�;K�}��w����,)�+�YR�V�����xgI�/X�Βb_��%ž`�;K�}��w����,)�+�Y2�V��d��xgɰ/X�Βa_��%þ`�;K�}��w����,�+�Y2�V��d��xgɱ/X�Βc_��%Ǿ`�;K�}��w����,9�+�Yr�V�����xgɱ/X�Βc_�❅�/X��B��xg!�V���+�Y���,�}��w¾`�;a_�❅�/X��B��xga�V��0�+�Y���,�}��wƾ`�;c_�❅�/X�����xga�V��0�+�Y���,�}��w��`�;�`_��E�/X��"��xg�V���+�Y���,�}��wv�6+��-���g�X`k�B��b����yv�6+��-���g�@�쬰g�@�쬸g�@���g�@��f:�g�0�!�>������-�t��na�C v3��[����3�!P@;g�C �v�L�@휙��93������u۴�'C٭����V1�C�ϲ\U����C�w��r�����9@:��k���`ݟ����~�i�����9@:X���e�� Vv�r�t�b�� ����'L�r|ª����'��h�]|ª���%'��(�]rª���%'���]rª�T�%'�ʨ�]rª� �%'��h�]rª���%'��(}]rª����ǽ˶��ö��te�*; a]�/z�vU>�p��Hz�|�<9���Mo������7xrX�����au��z�'��~�� �V���7xr������aW�O{�'�"3�!���L�@��#;��,��,}�,��g��g��m�̺�.��������j5�1�G��zV*Xʑ�>P*X�Q�>P*X��>P*X���>P*X���>P*XpQ�>P*X^�>L*hb��J-�J�m~�j����'���Y]~�j�|��'���U���"Nut�j�)��?��_v�f��Dz��'�_>Y�u]l�����V������B����9�g���S�Q�>�K23��ȩr�!��z�\�ŝ*�s�O�K��$��%�\�S�B�Kv�\p�K';_�^�l��@� �tt�s ��S��@6�NUvAh*7}�.�v���}��������,#c�/љ2��A)^W���ٸ|���c�_��<������|lN�˸,�Lih���������f�� ޯ�I�9[Bŧ��!3t 8S��?<ÏL�Ar�0���N�婇Wn�QY�O���l���&����c�/��yz��pgBV3��U���*wf2��*�nr���o@Y������8m?�2 ���>-��d '��C�����o��f +1�j���������_��녂>|m,�e�)�V�����7�4�?��P��eW������c�Rz +H������ �����5���r=�d�z|���bF��S�w^����v(?��_����76�r�u���/��u�������b(�O��g�������~�M���Fw�_Te��w!����z�g�ƘhU����M�Q�����>����7�W���o��[��o>��ߧ�)�/�yݞ{�t[���WE��xU՜�u�\W�E��*z������h������5L&��4mS����>�tպ�n���z"���U�O=<]����_�w�p�����'�]ʟ������o�?�ߧ�Xe�{_��v���y������~8�f<k�4L�������z�a����t�_��E�}=�������<y�c���M�c|ۮ�y!f�c�_Ш{wQ,gF;n�.Šϫ�+�X_����r�ݺ�,�] �xb���)���`���x,^Op���e��S?�\�qU�����qJq�e(�m�sJ��r�N���)_E��#*��v����R<�����k�Z�ԕ�k�Q�:����w�D<}t�6�|f(u�l���k���R*�:�Cu�AiEc{����W)?n�}E +�1��������S���0t���o1��"���o{ ��˘�EX�WO�O��qT�V��q�3$�>g�e�n֡���|ӵۍ�u.��5�R7�Of^�D�g���DS*��妮�.�m�Q�}� +rPJٸ)�|��x|_�A>P���8�c�� N)���**�9f�J�Xqv̽\UJ��2XSN���������竗.��Quk�a�5F�,K��Bk�h={�y��P|_��x���T���{Գ�X��i��\n�k� ��������^O�N�b����1U���G�tJ�x�L5��eJ��j_���QJ��כ�hv�BQ�E�t��O�8��V����+�,>����a��K�є�r� �2������da�e���0�:�{�;.����wdT��\��PY�g�u�]� �*ɔ�,P1˕23=�euQ�]����.ȑ��ͪ<�RS~sT��`���(�)_y �T���e�OS�Ԋ/�v�2�?��yXJ�x~U�E�E4�8��.���j_5���~�"�v?�v�/3)�����rl�^�)5�0� H) ?�A"%� G�pA��K��ϛ@W����g�"�vѱ��ו$)���3]����BJY�F��P�E�F��s����>��7��W��4f���3�z�$N����p�/�ݞL�e����t�j��#n�͌�ֆ�,�2��~�+��� +rˊ���E�G��=��=s�jˊ�y�%�6�QN3}A���Q����������>J����|�9J�]7Õ�0���k�.U�����n�'�i��ݨM]���&�U�U�G��?Z�t��|��jV�o�;��P����Q����y�� �T�ge�Z��Q�wN��n/��>��&^�d����m�&��v�0ǚ�E�3qg(� +�(�jK�(��v}9����V��˫!�a�~���ҿV���4yz^�Mԏ���{�j���]��q��fO��P�X=�M<����)��s!��M�-�M4���)�G��Vm��۪�e�ߏ�6o�l[���I�����m����aӮmÔ+m����4�ഁӟ�m{��貺Ka=�Fc��[���.��d7ѫ]ᎊf5ݠn���c?�m��\l��0ѴR3^-_��;�6�z�ZM-j(��si��V ���FU�.�<avڐ���6�:}�e�wL�p~�Rx�i�'O�����m���ӆVoc�J^�������K��Ѧ�<�y���0>m|��k�ǔ~6M߮���S}ю��=N������XhWe��WA^Jm����/߱єZ��v�����S*�UY��L9}����ЮKuf7��۱G���3L0u~?��n�fZ]����^�k���d���9DU�]�w�0o�6��uQ���9���\/�\�z��!L<�����E���(�&�e���b�M��ǢՐm�*�^j���Z�a�Q��_�G�[���$mR��ն�H��*�a��P��{ u�̯�p�\���� �i_���k�����u��RM=�Ϸk�QX���j��-=��M�N��<�';m��y螓6h:��f;m��l����w@����2L0�P|�����H�NTE���6k��X*|���M��ժ�[/�y�?�c��K�'�NC�ᴩ��H��lz߃�NA��]�ۺ�<o}�X)�m/�7N��gߧ�G���b��mU���H�<��lʮ��U�/�}�{�/>��d���y�͟~=E����rj�~@�Yф���N./����&��ӟ�K�g��+���=� �֕�;���Y���� �{fNÜr��������B��l�A�j��L�Op�N{��"��X6m�k��cm���1��أ��f�,W�!מ�x�d��]yY��w��[��k��:�y`��b[�7�����G�e�_����=Oz즁�wx_��`�i������C�f��z������6V:���b� �)u�?A-;t+g7��`��o�q�x�J�_�����7�،���Hڍ�0}VA�v.���Z�y�b�����f��� �o�v7�:Q�b�Oc��1��N�&O��a"Iӄ�c��hOa��M���'U7{-�W�6�FM�'���ʵ�|]�!i�Z�0;��1:��Z{~����$L�ЦN�yޕ2��L�(/<?��ҳ�2%NT�;�N�~��S9ȹ� ����I����j<�N�Ё�=/��OD>�U^�P�{�aV +�P��J-���ҧ]��2V&�qn����^BE��cm��iÄʴ�E����;�Ov;�]�iӥ�o���fJ��a�������BzZ#ҕ�jS���ѦK_�6����ov��B��o�������s����T��m��˶ޮ�>Q���iy�i�M��?0~äک�)���"��Z�}�,����i�#�:@mz}�:��ߕ�6��k9���;��3����,���w&�������X�O e��\߶�hV~�t�M���rT e��K�٫�^y�|q�ʘ�3�G��tV�Mt�Ł��E�ά���n����w-��ЗD]���c<�ܘ|��[T�Tc���og�a��0Wh�<�r��8�X����X1ڸy��Y���F����u�M��V~/7��i��3=�Y��� �Wi�+���y�K2��k�-���z��a��U���&c����n�m\���"<���db�O�����N"�n����DB��I+��y���9O2�$���,������r�/�7~��מϣ�-���ca�b���A�%>����+b��|���q�U�w�_~�>��?��.C��Y��zQw?�#�R�^�폁�'��{�4�G������������+DY�~��X[;ӕ�+F�v�g�#��z��֕���X{�u�Vl�z Dɳ0Hjɹ"��}c\<ޙ~ýlj\�Y�#[ߔ\����0�C����;$Ԑf�3�H�{T�K{gE*#�?ϸR�8��t{��%�koDӋ� +Y<rG;FI��0@��کS����Zx����q%�F����}�w�d��h(ۃ�y��Qۉ�3]Y{���Y��@��[Cy3ň���e�����������&�A�`aq�z1�i?4�;����/�cr�l��Z�91Bh����*��G#\��k�b��>h��c���01�K]�EQ<����v/>V0���O�7�K�@�X��i�v:H4F���4U�긻$���@�_�XZ��~bXy���)`�9���i�>�1�j�^�!f��l-Bp���7F���ޮ-1�U5�#��1vm�C��_;�E���1Bm��g{ +2�F�1�m��#�_����z��f;����3zm��fji�I�ݧ~����S���5.��Ɲ/����v����F �1�(�D�D ��?Ԛ���c�,�t���͇��`�&q:��d�ρ��9u�s����.��I���P�?Us�����4�K��i/���#�n�q���!��si"�{b� �p��T�]T6��=�0~�q9~��]���&K6$Ů��Z{U녨�$�c�վ������7x�a^9��~Ue%;�W�x����"������D8�6� +��8mT��Y,��X�M$�s�=>p�S(|�֩�3�����2�Ǜ��6Wo�ܤ ���o!��$F�����Ǫ� Ҿd��x͝:�����[���� +�}F<H;�/�z�UtŪ�U��>�s +�y��%��B}��i������'T�+�J��휫��>q%�UV7r��<a�jAǗX��#�+��{�)�ln##��q���+�z:��������X5�q�6H�B(�?��`���q�N�<�i�h�s'o�E��֖�s[���o\�LX�K��K��ڇ�h���w%�}�����P$��}����:�bz��Cȣ��������R��p%PvY_�i_�!,A��WU��K� ���w#w�-��\���]�C�'�=�����Wv;A�,{0�a&_�c�N;{W��ى'����bE>B%����z�U��>;�j�K�����1W�'��6��Fn�e�(���\��ص�LlDƾ�k�={����{_�䆆m�Z+2� �u��L�3�>��h��� +����(.O�J�H +�vې��}�a� �9z�=Vċ�{����Oe8�Ϲ��?9�$��@>��� +�)���Lx �V�jx�Eα� 6d�� �je��Fn� �Fv+�]v�zY�6����Z(�Ձ�Z#$y�����:��_��� �������U���,2B(�k@�ו"��z'��zn��a��ݹ�o'C:�0әZ��cA��7'H�t}E^�U:W6lȭ%D�>��Qr'u͟�(;r�e؉;+D��p�[�>�� ���W�!����B�{���VNp�g����AX��� +y����ra�B0kA�� ��|c��wސC&�9?�\O�Q���xA��,1�����d�è�x� 5o���Q�絪��4�3_R�t3�!��x��3�s�;�� B4]�;��<#�T%��! b4/D� +� +4:e?6�g�o6ҞNCQ�՜�_�gܱ� +4��a�m�w�Q�����Jp�`��*�D�ݲ �Nb~����������b2T���2E�LW7=��t%�70_�Q�����n����h V��WR�i��h�" ���}�k�z)��5���>��f0Eީ��5H��UQ��i�h�9�(&������q���:���y&�~���jOUa3hմ�]D��e��[Jc�3��?��b]�Q�'^�]d�v1r�P'��|}�Q��}]F-�����ؿ�&zX [w���}�"7�%��߅�rP��}ݝlt����:r$B���)�;�oT˦b�!Co���FO��Z4�Vf)�;�ʝr��<?�_� +�s�����c䜎`<���%)=�4� �UB�i!t�.\��R����Ѻ4-@���C��/$<Q�����.7t ��-dî�N���R�̬E���3ە7E��巍&�q�y� u�"��<Dí��yB�c��C�1y@��o��i��ۡ�WF!�p�[v%b�NWC�F_>p��A�צ�v{q⫅��{�b���N��(D'+��:��o�@O_��� +s�G�oe �isŞ� v|�����Hn����w�s�&\�3\C}x��^�nL�����*%�h�6������d�� ���/��K��;#�=i��C)E�����)�E��&*�PČʽ�:� +�>zC7y�y{�:ψ��;P�����-��w|��M E�?{y�A�%�}l�H�w'�7�*��T�u-�i��{5�߱�����z��F�a��SD���Sr<���;���[n�k����:y���߃<R�^I�B�S����Ӆ���р��b��o[YkV�"N�%�Nę �hĮ���0����n���Wv��6K���ԪES��V�{r���b[ϗ�J�kVA�B���J �����l��Aə��)D��Z���Y����ruV�T�&�dP�W5[��k:�+��e|)Y�����/�Y�%Ys��m�W W ���.&�� +��\�"���o;�z�p��%� +��,����'|_����+�ju��a�ve�E)[.s1�����JM~v 0\�Z����!|��TdC��6�4\T'oOW䰝!,�bՓ�\bR/t��y8( ��. ~Ỗ�YV���$eE��]�l!H�O��>����Ѩ�o��ʠ�ו �L"R/z�h�C�^��+v�z{|�꠴�X/t�~z1�Fs�BP��M"�>ĈN�FF�H�u��:��=��_[�R�ѩ݉�=et�������-��cd��u�̠��.:]�vvs"�BdT�zMva�5:�km��A�S��L�ls�v"�'��3D�Nw�~��gY�¼��T6ka�:��7��}�]*�N;p�<!�"(�"F������pu@��������Z�����ʮ[W�j$��C��Q�a� �����ѡ��J� [Ċ��h$�cB��/��}B���2�彑� �v����=���z�Ȗ<7�էX�������B��6[D��}.��p��T� n,G蕑��*��?6 �*�Ϥ���뺬u����j������"�\����PD��ɹ���ն�窡���!��B�7�༖�]����)��2�N��){#�B \\�ME������������ ���VE�7)��`��\���rP��N�䩆l�)ɉ"j~��q��2�j~�͎<�@(���ZrxE<�~+����1?�L�{�AȜ �-%�0g�c'&w9�ѐF���Vw+nv��3�`�mY��e��d�v��uG��Lu�� f�����za���:Cl�=�T�-��>�V�؝���Y�dv�}�zץz���d��B��݃���2�ܮ\9a�]=��.L��;�=C_�ި� O��R�D�Ƈ��ͤ3�S��o��L��Q� p�@D卮K�D��}�ɥP��5��e��f+�_�nWQy��.��E�쮤�A��md�^=�!��p�2rS~�����N����V����d�����Z��`�0�Ϫط$�*�H�l��#�ҫ��2W��6G4�gm��~�刪�r�*������^K�&�qg#B��rYZ�-�'F���5��#G|�x���g�mY��]�����`M�z�~Blz�0����������W_�Zm6v@�wu0S]!� ������鴃�4W��9ߝ#��^�ه�!��}۲e�������`�ɺ�/K y�A�;Tѹ�����e#�}s�Q��XI�f9�-ݡ0�I�mA�#�r^ۣ�#��B�b�戠�;�\���ۨW�Dž���Nv_��ˆ����\?������ܪb� ���!W�����D�H~�(���r��v�6ڋ57� �rn���A-n�|���N�LJ���Pf�!f9�ʒ= H��{�_�p�P0ٱ/j� Ԗ=�QU� +phL�/^�L��"��a%��wU�65̡Ϧ~���6-l�S�؇��챡��}����\�~���>�����)N�=��A�za>��pe@��R��v����3�K0"-�4�ٙ�3Wt�VF�{���<�~RMu�g��rg�r�?8d�i��'ߩ"���BX�����i�q�-Db�":_8U���x�=�?�������*�Z�c�����"rєk����ҋ�rf�����rc!B3?��<��y�K�Ta|�si��X�Vz�l����7�m��p�������_�-���� +�f��㊌Qӈ����䷍�{s%�U�z��^�&��Λ�=2�n�]{�H5{��@�gr����6$�&���BP���ޜZ��� �@�V��W ��!ަ�K�q&O'o~�e(�#,t�:� ��Mr�{�X��F,j�^��T����~��܋�&���^~[��.����{�y����e����Sk��_5�݄�{�bv�ֺ��T�"�[��.��\����s���4���-�N}oI�����K/\d��Tvӿ +���!��2\,��G� ��4���-y��`�2��#�4L��1bP}O�N�5wP#�����1bN?�7�����͌�q��$W ��������U����ѧg�U�ÿ�����u�b��1>���\� �5�;��Tg�d+цk-6F|�?��_�=>�@-�LjMm������#;��g���ֲ�?���o)�Ƿ���O��T�mu�2�U��-��d�XV�dӟJ�d�KT߄�;(������Vc��.-�ބ�4��!ڑ�a����T����F5���E��G�&�<�]q�>�p��/�q�ϝ.[�S�Ý�KF�����ƕ�6a$AH��Sk�A��V��r�,|��uJ�m�["�D�J�vc� �l���QFڭQ�.w\-th�7�;t���ŧ6��ʣڜZ����ch�=ʝ�?q{�cxc��0�Jeh㶩E!}��;�1��B�c��� �c����艼1Bjg�k�0���Nu� �ː@xn� +��hx@\�x`<\�� T �m�8������Ev�F~����%�N#�������,ũo�x����S'C��X���7\9�3v�p)�CҎ+9�����F ��#wf0��3���̍�{ccغ_G+��Y.��i_�Zs�\w�1bpg���7�N������&�G�2�ۑ��z�@��o)N%�r������k��\���k��"\:�<l5���]_�%�{R@��GrA��傫Ѹ����=ߐ5@<�ؓ��a�k�j"�Si�1�q�r������X9��<q5w+��D�^۟�"x7�s-�ƈ��K�˹��=\>ҏ[�}pYL:�:�a��8�����L{�[��C�ƚ1�e�ll6_��q�v\��G���4k�n��@�����>U=q���{єz����i� ��XH�:��U�a�0�p�X�.�U l@��� "����F��F�꽴���*O� b%ȫ/DV��ʁ@��ov�u7K����0���^L��Y����?�=��KBu+�a�3ٶ��-b�����S�a��O`7��������3]E��B̾ `X_}�=������ww��I��o=^Q��T��g�8�������3��52�p@a?�-���Ǟl&o�c +x&������f�{���[�-wh �+aDaC�-��GT ���h�J˒G��Wn���*W]a��P�Jdh+jl�a�����\EtR�ˎ+�j��y� "P=N���W���nm���O`�?R���E\ɳ�0n �P���N�Q�~� +�*��p��v�}>�v���~ Ts�,��a�v��'g�E��&�O��zS)���~�~��~��j���/�-���n��5�qG��\�D��N ��jbL��������+��(r�2��d&oekÔ�O��i�^��Y�3r��K�j��"N����h�j�>��_\ɑj*�J���CT������{�����������]K�Q��!�;�{��6����"{bKZ'"$��J�JJ)�R���B��է��'�@�'B�u.�fe.f���]�7�'73w��0Pd��v���t�JI���;�����ٜê>O�z�C��%��w�<��褩�s� +/�$��FÎa���iO�����UP����Q�pT_B���0�/ٞ{��&����I�s���*��+�����9�G&G���x��у�%�ԅ�^l�0 +���s�c�^:�O.?*��95��}�散E��`/�L#�x76�;%D�$ل�o�yeb�� /�� +q��{�����T9Ɨ܉� ώ,2��_-�Wx!����>?k�@3fA.��h��}�-N%�������(|�9d,��%pN���&����g{$�@l�9p�!���w�y5?��aGgi��Jq,���&�V��'�I&%Hc�s��}Qe�|�2������9�,b8 +�%�gI�L��CϾ��<��VvT��铵�]7����ő�b� +I+�Mz�[�D�saC�|�d�^�9���"P |��v�sg�2�5�5����%��ES�9���#���%*K�|9���~W'�֧s~K#|S���a��W*V���Q� #u��֮�T�G�( �ٸk����&\?k��P�'�C����k�B�� 7�ל���ܩ�+:U����_�ȃ��윃���sa3](�����7�9+0/|�,���K�#���L�X��(v5���RR9���9�s8WyE��Gv�L'N�9��<���!��.ʅO �X���f�U�4%�sa�������<aK�n��f�@I�kC�0\Ե� ,9y��1kUxh��R�@,S���7���z�#�o)w�ϹK��L7.�q�\cM~9��G�^��������ud��0�w숻<X��%Emh�!�k���k�t���"���� �Hx���oR8��V� �!���_i8�@� ,y!�Vq=9@Z=��Cup٣���l�������&���b�2�Q�$_��ؠ)��Ei��o�[)Z��w��5��F�qZšG� +��/�h���:�^�#��9��[?9xG��&_�-ރ�;w�*�tt ԧ��WA��bY����%�vd�qD�'Y�*.�8��X�{T��`$օ r/~���������ĴYC^ +���i�ݘ���t@Ƀc����Ġ��b���F�:~:�9��1��@�yu~.�8x��rP]��\���g:�ɡ�?�i�R�¦f�;���i�K[f1}Qp�uco��r/}�A��6���� ^��{��������F��_�ҘmX�J'=e��(�����(1���@a\���ė�U�U�G[GC�)h���[��pi.�2��a(�VY��(O�y��{��\��������Z�7�qg+��/+G��1~�d�B��Ԑ�[��A�|�!��I����7,�=as\4�6�7�}S��!i� +�U�*ٞu�.1��2����Jz���ԭ�%!TE"� ��dW8q���l�����-&�|��������O�z��F�Rm;ʖ9��%�nҰ���7��S�']8���O;;�\�Qy���@�68����9o��I��C��QZA[��"ꥩ��$[-��Na':z��O>��)�5] 9Jz8���)l x��b��.��������D==�t��(C��8����Sr�1�CG�fl�;����'m�e�g�v2��W?� 9z]8��'���29t3р� ;��y*�9h�W��9��4f�m���6���8�R��L������l�үu��'��@� T\� ¡��穞U_�М�} T�&Ҧ8��/���xޅʄ����-����6:�&]�SBE�tGrD��p�)��������bu��L��gz;�����_�5۱��2��`���p��� ��8)M�\�����f�:��it�4q�"d(�x&s�BC�aH�@������1����ζ���cR��@�n^�>����PUQB3�B�r�ByqZ��Q�G�7���k�M�DE��J����u��M�Ŀ�V���&�ݘ?a_���l��M:":38ݯ��u����:�T�����i���B��d��?ܫ��2Sm�)�3���q��-���Ar��g��5� =6�r8�g��J u��S�s������=���Fz� ��&'|��J������8�c�Smv���>ZG�䲿<�l��m}2�M�����ǎm��B/J����}�wC��I3a]U��D7�0aV �֪\��j '�^0�!aJ��H�����H�bԎ ;9a1NW������!e~�I4�î!��B�*d����b��k�id�A���9���8u��s�qӬYv\|�C�gPZ�N��8��i��^Ҵ��V-}B�A�WOw�~�N�?qhe��i���B6�M�BZ��m�����^. ;��o���u�>X�V���H���A�Q�-�4iӜf�^����A�\z8���;asG�d�����W��q�La�����W�$m��� �hT&%�^�=��wo��,����⾰�ٞ�6`��۫"DW|�sNC+T��Ã�Gɥ�}a��`���d�g��(���'*�R�����m��N��k����vsF�O��q�h&\��o�-M���:+$ ���8�М56 �����X�f��%:a�{��B��uT�w~�����p|�����)�`�}��f$|�䅹�����p�u*��:�t����;��2q�Ut(�d~>:���p��j4����Ў>��o�f)��ǾE���@�(�^���{af��+��|/���U���k����21� wj-��~:��l�K�^xY��%��Շ��(��uBT� �:*�s�~JC�v��A]э�I�C���+���-��g�wN8�� ��%��5�� v�ӎj�}�'l���?�������Kyށo]� �*�X�Jx&�l��xmi���O=��q��ԩ�J���cD����Y�r���ɝt3��C8p?j��I{���a�G�y}����A�*x�*���Dc�Be��0]e���U2 ���j��q�V��n�aTNW�@#^�����b��>&�A`�T���9.A_�����1���1���K�Q�:�]Y������V�l%��ŀx!�J��@�����i�3�N��$�1�W�;�sV��ݎ4��ɚ��2g^���}�X� +���m���Xi�K,�����}U�����Ң,��q��K�����SQ���H��6י��Jj�� �9��'̖ь�0Y�S�IW�#���C?��� X-RR �=�ҟ���s$���I��,�H���)�ߔ��!w�g�؝,�����@zd�;u[��\[�(�߬�z��ެ���:����:.��*΄Mq2�U��vn�,�Ё�hjˎ�����5��7��[l�� ���6Ŷ� m-A�XsH�1�6�Ę���uL�s��gB �c���_Gg�@����A���H8Z :��jq@��c�*��W_u$��nԙO-X����.��?��tS�������+?�A��ܑ}&A/�:`�DU��d�߲6ڝ����vE�n��a��*��Py��m�`�J��*[Kӱ�v1q�����P�گ��T�蠛~ �^;�8��~�Ӯ��v�̑��L��8�>(~J� -�$�A9`%��e�t���9l*=���˩��*[#��0*����`������p�rh[��G>�c_(bu@S��%'=ԮH��x[�� -����u���ɧ$��.J�9�q#V}P�5WG`�Q�����"{�1��Wޫ��k�L�EP��uT:%�Z�9����O��r�rx�_�*�')�6i�<#�G����2���ǔ���#����^��IC�a�I��iW��pƜfB�DM�n���λi�z�c�1a�un��_�x�6��k����?�.K���5,��9��~ǜ��٦��/|���?��팻��N/�����җ�2O -�(pv��(�.l�;�n�� s�hJ�_;O��8���[��R�ï?3w��n�&,l�1�nwQ�X��e��Y���6ʩ?���h�K+a 8����鞞PaS�O�{���UrN/[�i�g���!������bY[,����&�f{�,۱u�6k��=Ȑ�z:���� J�А�}n��[�'�Y8�r�w�ԥ5 -v�pL��bk{�H�h0�t`l[�[��tӸ�H_;LY���Ill��p�np��O��Y<�r���X��C�[d�O˥�I7���F8�3d�}�&�az��.��[��"U�v�D�À_�+h| �m̦�*�Җ8=��T�63��IT�� �/�Rz8��e�8K~Q�e�a��u� l����"W��v8��*q�r ��(D[��i,��8PR�������*ħn�*���)l�c�^�P� 9���*��74�ꃲ�U�#s�!������%1���4���%���!+��q#�25�OY��J� ?�(}��Ɣ��/]���b�2�#C���U���<�`�!�?�%����Q(l��U%J���y�5U��.��4y�%���ާE��^��������Hm&�4��㿓(�Y��s�1qea_�u��|gF�JAU�"������\����7�xö!։��CN!�����bD�uW�t�U�N���<C`�!���96�ׁ�̫��~l�(�v�x1���w����τW63c�k�H����M�e�mr��g�V�H�K��y�����N�Ze��6���So�Z� -r3T��bU�A����[�J.8^uG����Ju�����o��ʲ4�K�\a+ea�\1H�K��� -~H���v�e&�ܫ�2��%t�M��@����ڶ}��X��csC,SVw�ȁ�i����~�9���P?�g�z焈�oF�N! �>H���ȫ̏u��z*A4v��ߡ?A=�T~�E�IS�j��zD�O�V�����c�o����k�zq���cw��:r�>�@<Y��u�?��t�����aG�i�C���_����Gaz�{ӧU���?G���7�����wg0u��/xz��W�b6"��7.�S�XV �w�H�MJ���O�H!��g9�� 9�� ȏ}o���{O�a6�{r+Z?~�?��§���>O�4����Ό��e��blD~x�-N�Y�u.�(�C_��M<n�Ѡd�-���`�dZ��z�m^!V��x`◰���OĘ?b�_�+N��+�ކOa�ïL3���O6�j�`����p��pў�Wiұc�PR�z��<ƌ���-��K��~�m��*b���wm�;����W%��`�ː�'d���� u��e����+��KM����l�� ��K[��9 ��h�l��+�*�;�ʑR⢵eI��;�|Y�㣠��|��m�9����o_��A�Ԅ�h��i��!G;�P~��%�������0z�Y��\\F\Rm|���#룮��Ц����.\ݝt��"�G�֤��G�����!GD��GT�6�E�J�'F��Xq�]���ۛ@-"n�O������D`��w��� �k)־����̄/�X�V����l/�?~b:��16]@�8��a4�V�Px�8��s+5�`O��14P7�C�� 8�(<t�j���;�e-��Q�.I��i(�Z@8r<�����'5�\�6;���@Ʊ����y�Lm617�=�7&a��ny:��4ύBL�'��(8�Nc�mx4��a��!G�i��ǵ:6��6�m�+.��8��K?��@r��p -̇�퍻tW����.JP�b�NS#���1k����FJC�a�n@����_l�u��$�c�"���bR�^��u��{ �~!l�ӦJt��SD7:�C���rtf�H9���t5���t��p��ޘ{x�;{\�i�V�f����T�<-lo֭�_�1��)Y�G����Ma+�iU�&/X���7Z��.:˫�D��^�A�)�+�x��"��Y���4靈`Y�xYa��|~�� -�G1˃9�"�AB��Wo9!�G��OܤF#�~�1]��yİ�z� ��2-͈�K������U���Lm��>�l+��jBvQ��#��D�@�RO2����[������D� ��tԩk�oa{���Մ�qZ�p���#��D8"���~Q� -�bB�|a;Lʖ���"lf�wO�"�q���~�-\q����G���栨G{���h.Hy�S�^N���6{NK!~����K�21�vf݁��a8fX���S�uα�.�<��l!<�*�~�i�Nr�x����(a�-t���ޓW��!5�i�*-�Ҡ��~�O���ڌl/��|?����8���u�����ˍ��-lz��्���k�L��֘qd�OIV-@���X�#x�� ��* - -dF�S��>t��aBaSs�k�mWp���*Yl��[�Zl%���{j8���<�ͷ�d�y -���a��2��8"ϳ�L��û�l���a�؏AJ�=��j��xѲ��۶,@ �����ۨ#�T:zz=����b��<M�uF�MT�+y)�G��P%�dBJȄ��y<f���T�;����,��ҍF�#P��BG�����>�p�e�=���[x�j՚�ˣ��K��˦hd�|����M���U[�G1�0' ,���jpdjʗJe^���`u��2])�[��4^B��n���Ig�I��F�,�j� W��$��iW~qx5(�;R�q��O��芎80�;u� -��=�G��n�' zG��!�4T��.8��K��>Zq�{cZ�DMv���B�k�+o�㎮�����9�.Vn�Δ+$�K�鵴����o6���V8�q����QG��8����O��w��q8|k�K��x0~�U��}˦������ѬlF,�VL��}�@�̅9�x2x�� ����|ᶖ#m�,�D�>'���bօ�����G2�y��r`FӎӜ�]�ò�N -���כ�]�>6���-Gp���.���*[X���*��M@P�/r��T�Թ«�o�@�����#<}Î�]����Y0|�?l�c��a�JOण�WG�>�w3��E�'4�cχ�uF�*�=�z��>�D����������.ʝ�}�������c������\�H lg�I�V��~�A�/�!LI3Fؽ(���:4�}*O�q��6�=������ ut����˟m�T����_�![����ZEz�|@��P�'+�-���=����h(˚�-��t�PA-v� �tX��}q�P=�C�R���hO�3�mɿ@�Nb�p����8��i��,����o�� �sr�&��Q��~�U�b��Uo��C�!OciP�G������a������l[Q���� ���nj�9���!�GmQ�sa�Ḻ- �-qwq6s�A9F�ޤ�z"�?dUb��&�}uS?�ݕ���@��@��5Ɓ�,_�(;��/ԢZ�����>[GZ�\8�s�������h!l� Y�E k�99�zt����v����)�Ez�ӎ*���̘|�i"�:���"������ϫ�ԧr'�:������xB�]�@ׇ��TG�͎8��'��1��6��A*�H<��7ztS�� �d<�EJ���;�I2���*O��w�d��C�vkO�9������ہ��%�G�蝄1���C��U=�xO�:%LU�P�%*�;=Y���E�Z �� �B��ި�9Dwݠ�F�:�/> -p���']s��i���MM�q�~qx�EU��ar8��f?�b}.8��������4�#O�G��#�gÉ��f�u��DNۄ<�w����3�x��x��w��r�wE������1�~�KJ�I�{���>R9�B��{��R��K��/T��|a;L��G�F����H���KqS������� -;�~��D����*YK[�t�S���~!�Js8�� ��B��\4vs�_�I.����y�YD�G]�.�mp��ώ�n�U?upa0̽Z0��V�#�9����:���ui8�p!w�'�~�Q���ݟ��+����!���w������q�2��p-��{����;�[?���>�"M�Y^Abi�%A��O*��� �NK�v���ԍ���x��m���汅���3d��$�N<��H����?H�H��aӉ��g��Wޡ�a�g��n��p�Cbg��W�-�~hP���e�G�S�UԤ��{���� A��'$�#z�ř���N�{V��:2ݝ@���Қ��9��N�O���}�#�z]�_ -R��t���JK��?I;�!�L��!���#b�T"h��3��kw7v%�����m���}���w���w�>��-�`������ ` ��s��0�d��:� -�:U�QB�ؓ�_�ݝ�n�A�#lt��_ -���,)i���-E쀬!~O�����M 9>v`ph��8���4��v��>�����nT�n��m��T0�v�U<C�,B�ɮ;&��IWF[Z���������G�V�"��� -�v��U��o�����<l椷�*F.�-� -��o�qyk#QR /(i�!�6��2��9��#�aa�@�f�a��F+*~��<,�>��s ��ˠ/pE11��m3GHz3��l�( �So��� -����*��.�bY:;����{~�~���I���ZE��p�A����(��0r~�H -R��(��PkqX��GL!We�q(~�uA?s8���&��ިBzK�����=���u���Rӧ�|��#`Ŝe i+�qv�Uo�a����$S��p�B-�'8P�4�C��w�K/�#��t�9]T:�Ͽ����YTR���]'���q�v�*�+q�ׄ�ۿ�c���:�坘��G{��lυ=�r�(+��p� ����P-�\��k���$=.w_VP�;\>��`;����~���ñ/r�5��F� -&4_��H��9���U��W�r��Q����o��w@�V�A��+eL��N�0�x��'�n���ۤ��=��{��w�4�ۥ��_��!��rۉ��H�%^E�Izήʓ~AhKz!:I���.�s����9gm����d�"�\Vn'���@���J�x���v���s������Y��OL/$X]������0-���7�$`vH�=Gςm~���£㒪uz�=�caK��$�$r���K(��0 -��%N��op]��k��:܄��_���[����������>O��o�:��$���f[����.������~��$�� ��:�Ù)�&<����J ��N8,�M0����V�@�k5d��`�&l��Zw��Saj鄃�[�E���z�I#'x�Y�Eg �#�K��V2���qZ�F��Z�@[{�YK��)��s�����5߃�*<�]�������|G\@�$%��*T�@��$�QU\��? �9dwS� ��~�s��}>��K/&.�{��龰5&:�����c�6@M�Oo�Hnʷ�C�¦f�G +�$�A9`%��e�t���9l*=���˩��*[#��0*����`������p�rh[��G>�c_(bu@S��%'=ԮH��x[�� +����u�����$��.J�9�q#V}P�5WG`�Q�����"{�1��WޫO�>h�L�EP��uT:%�Z�9����O��r�rx�_�*�')�6i�<#�G����2���ǔ���#����^��IC�a�I��iW��pƜfB�DM�n���λi�z�c�1a�un��_�x�6��k����?�.K���5,��9��~ǜ��٦��/|������wWQ�^� �R�/Gd�^Q��RmQ�]�(wB�B���єοu���p0�w5��ť�_f�$MXb���ܱ.=���&�Yxm�S~���"�V�p8�ge��==�¦:������ ��^�Tӄ ��;F�C0)]oŲ�X,��5M���hY�c�m�{�!#��t�!��B���!���*?��O��p�0�}�Z�Kk��(ᘎ;(���ƑH�`:��ض����� +�q���v��($�>�ؼB��:��ߟ���xD�`߯�Bꇄ�����˥�I7���F8�3d�}�&�az��.��[��"U�v�D�À�X�+h| �m̦�*�Җ8=��T�63��IT�� �/�Rz8��e�8K~Q�e�a��u� l����"W��v8��*q�r ��(D[��i,��8PR�������*ħn�*���)l�c�^�P� 9���*��74�ꃲ�U�#s�!������%1���4���%���!+��q#�25��Y��J� ?�(}��Ɣ��/]���b�2�#C���U���<�`�!�?�%����Q(l��M%J���y�5U��.��4y�%���>�E��^��������Hm&�4��㿓(�Y��s�1qea_�u��|gF�JAU�"������\����7�xö!։��CN!�����bD�uW�t�U�N���<C`�!���96�ׁ�̫��~l�(�v�x1���w����τW63c�k�H����M�e�mr��g�V�H�K��y�����N�Ze��6���>��P�r@�*�@�*� ��@Ѕ-�y%��#ll��Z\�:�I[���IQeY�ås�����Q���%�BB ?����n;�2r��r�����&�q��E�Fm۾@X��౹!�)��?�����4K�^q���s��_���sB��7#� �b�NH_�U��:KK=� ;_��П�y*��"�)c5_�m="��x+��q�����7 �r�V�5I�8M���;az����\�V +����:sџ�Q:WD� �ʰ#S��ɏ!Yj��/���`���0=�=���Ӫ��៣B�;N����3�:��'<�IG1�~���)g,��;|$˦?%���^��Q㳈��ʆ���Ǿ���������=��?�tGl�SGe������R�M�mv Qg�p���yQ16"?��'�,�:��ꡯ��&��hP�ؖk|S�Q2� �a=�>���o<0�K�`��'b�1�/�'x��Uoç���7������'�?p5C0�a�@�c8bi�h�ѫ4�رu��b=�McF����DȂ%CX?����G�O��6��g�ګ�w�_�I��eH�2Ykc���{��l�rԕw��&m����f�m��rc��-r���zw4D��镊���Y�H)q�ڲ� N�R�,��QP}�>�����HGͷ���$kj�c4sD��\(?��ZC�n��wt=�,��L..�.�6����ܑ�QWG�h��n���N��z��#lk���#�Cax�#���#*L��"Z%�#SC�8�.�M��M��[���@�T�M"�V�;\���۵k_gbzafq,��N^CA�՟?1d|��.�i��0�E�y(<GW湕�v��p����!ǎyN��T:J5�`������(g��]�4�- 9��YEp`�.O�vve �X^��w�<_�6��W��u\����� �<rd��F!&��KqG�1�6<_����쐣�4���Z +��p��6�^E��HK 9Z�]8�����]��^��}%�M�e���p��5�V�]#�!˰I7��S��/��:�R�˱sJz]�)�V/J��:ؽ�_���iS%:��)���!��y^9:�q��~Q�ۈ[�z:u +x����o�=�ԝ=���H+i3\\��t*����7��ѯɘ�씬J�̓��|����}���*���\��-�F����UB"zz�ɠ��P��j|����,�P͍�E�w�Y�,T���0Wx> +�~�ƣ���@�� !J����� �#�u�Q�'nR�G?������<bXH=s��w��f��%Pz�ތ�^� +��Z�� Q@U�ڈc5!�(�}a���d�U l� �'���ǭU}�XOs����U~�O:�Ե����iw��j��8�R���]���r"�� +�xK���yM�m1��B��&e��J}63仧}�ڏ8��s?�� ��8~O ���J�^�KsPԣ=�CK4� +����)a/'��n�=���ST��RڥN�a;���W��03��Q���:�XAi�ou����c�D��Q�9r�Rh�F���:��[��+x搚�4r��ziPza?�'�� +� r�mmF��V[���NF���:M�[z~�����6=� +]��F�qw�X�ҵm&[Ik̏8���$� �`K�n�<��i{2��)]J :d�����9�x���+8��pO�,6�υ-r-����=5�~Wi���C��<��E�C��0�� �d��YU�g��]Q��Uϰb�� %j��{t���q�h�n�m�?�ac +����mԑ~*=���U��r�M�u�&�:#�?�&*ו��͈#}\�X2!%d���<3��M*��q� D�Qp�F#t�(�E�#cl`�i�s��2�i��-�k��jMύ�QwzCХL�eS4�{��XQI�&hd���ň�\���t�y�tA5825�K�2/XCK���Y�����\/��K��p�����$Pe�M[�D�+��nI�+�8����a�8����ntEG���Fq��#���k7���������I*Gw��%]�H�8�=�1-w�&;o�i��5̕�7�qG�fy��5�.Vn�Δ+$�K�鵴����o6���V8�q����QG��8����O��w��q8|k�K��x0~�U��}˦������ѬlF,�VL��}�@�̅9�x2x�� ����|ᶖ#m�,�D�>'���bօ�����G2�y��r`FӎӜ�]�ò�N +���כ�]�>6���-Gp���.���*[X���*��M@P�/r��T�Թ«Oo�@�����#<}Î�]����Y0|�?l�c��a�JOण�WG�>�w3��E�'4�cχ�uF�*�=�z��>�D����������.ʝ�}�������c������\�H lg�I�V��~�A�/�!LI3Fؽ(���:4�}*O�q���6�=������ ut����˟m�T����_�![1gUC�d����g4���RSTt�O8b��=s�_v�-�3���8wS<��ŚF=Jgȅ~��As�$Y u&�^8U�wO��4Fv��s���7���99H'C�(ߠF?�*� +�V�*���u�!J���4Ў�#�IV�d��Kh�eG��C�է~�ۍ���zE��8���]�룶Pm&��6��1��Ġ�"lo�ٛ<�R���-��Z���Y��"�J�Lǽ}��@[�5��� +�T�4yu��_�E�ZIC��}���V:�6�1�r�~�2!l� Y�U ��9T7�_t�S������=(�Ez�ӎ���̘a�i"�:��x "������ϫ��'e'�:z����rB�]�@�և��@�͎8H�'��1��6R�A*�<���7�f��� d<��C��k;�I2���*O��w����C�v�A�9������ہ��e�G�蝄1}�C���6�xO�#LUdM�5*�;=Y���ExW }� PB���r�9�u�4�F�ڡ�> +p��]']�s���i���MMoq�~q�EU��ar8��f?�b}.8������[�Բ#O�G��#ggÉ��f�uѮDNۄ<�v�A��LJ��x��w��r�tE����`�1�~�KJ�I�{G���!R9p5��{��R��Kˁ�/T��|a;L��G�F����H���K;S������� +;�~��D����*YK[��S���~!�Js�㏕ ��B��\4[s��_��x.����y�YD�G]y�.�mp���ώ�n�U?upapŽZ���V�#�9���:E��uix�p!w�} I}����ݟ�+��Ԋ���w������p�Z +��p-��{����;�[?���>���MCX^Abi�%A��O*��� ��G�v�������x�����톮�R��3d��$�N<���&�6d�N�Ƴæ��;�����C��n����uyሇd�zE���1�� �p��.=��ʣ`���H��B[�0�&�z�O��G��3�w�����:=ud:.���R���5]��s�s�&���?K�88�G�;������I���G��>���v�CƘ�mCl��ǐ�ח�����L����_�6@���>�Q�;�����rW�ݖ_�`���][�C�9misPF�F�v��*�(�S�I�/��NxR�����6:��/���x撴"�x�ޖ"v@������`KǦ�.�"84�]�R�C:�;jJ�OoPP�(�H7���/�q�G;˪���n!�d��ޤ+��,}t���rRE���C��Q[��? ;�Ī���7�V��<6X�[r#?�S������и���(���~��^��XG��� �0�w�3���o���D����9��eЫ���Q���#$���B��ũ��fkH\Xs�cp�,��q���<?AS]�֤[�x���Z8�����uJC9X=�)�F�p`(��8��C�#������8�x�uA s8�O�&��ިBzK�D����=���u���Rӧ�|��#`Ŝe�h+�qv�UT�a����$S�Dm�B-�'U6P�4T@�w�K/�#�~q��\3S:�Ͽ����YTR���]'���q�v�*�+q�ׄ�ۿ�c���:�坘��G{��lυ=�r�(+��p� ����P-�\��k���$=.w_VP�;\���`;����~���ñ/r�5��FNJ4D��H��9��T��W*o��I����o��w@�V�A���WL��N�0�x��'�n���ۤ��=��{��w��[��(^��!��r���H�%^E�Izήʓ~AhK:I���.�s����afm����d�"�\Vn'�4�@��J�x��Tv��s������Y��OL"X]�����{0m���7�$`vH�=GςmH���£㒪uz�=�caK��$�$r���K(��0 +��%N*�op]�����:܄��_���[����������>O��o�:�n!���f[����.������~��$���:�Ù)�&<���J �N8,�M0����V�@�k�b��`�&l��rZwo�Saj鄃�[�E�����I#'x�Y�Eee �#�K��V����qZ�F<�ڕ@�y�YK��)��s����5ă~*<�������{|G\@�$��*T�@��d�Q�[��? �9dwS� �G�~���}>J�K/&.�{��龰5&:�����c�6@M��o�Hnʷ�C�¦f�G q��d4��\� -&���'�s�QUg&!4(tʄbO>\:�L���@�O��z�I��&��>v�qD�{-� -YpםE�H6��2��8gL8j���op��9qv��.�E�6�'��.�', Mc�������N4O������ɵ��I����x�3}��;ڱ�4 �&*K�`�����}/�)#|��މو����#4b�sT��&��Ë���ϲ�'Ǿbx�4�y��ў&��V��;ᛶ��������ў�*���Z/5�L���:�Gᄐ� � ���n�M7j�P�?.���4�^�YxNdz��U�n�L'���e6�$1�Qw0o�Ẵ�D$�-��j�-P�S���P�N��&��%���Rx�ԚQ����`ks���~�:���w��/9M��;��n�&L�oMs�5!�ߒ6�R�]�As����m@ 5��EMٯ�U{��0���]#�����0ּ�k��^�Ms��H�'E�m���Z7���d�+g�M���;�0�$^m���h�����+�L���7���� �W� L��\��>p� �H���8<TδM�+�zq�Z��3��<���[Jx.�|��I7� ��V�O�K�����zߢ��v� \]�q���ߠ��d>�ä�� X���)����V����.����E�'b�����E�`�~UN~/�r���~���e�=�Ӈ}�V�S"��Z�̰B��U��{ -���Q�Ni�v���\�Xd�k{*�È�ί>�ܨ/��F��ȹ����W@��&����^����O�+����*���4�@N9����-h�h���W6������B�k (]�����Z�(�D=�p��A��*�1�KD���ڏ�@�,30� -�'�B*��7H?�y��;����Nj�;N��#��S���s�=M� Ԟ�n�/ޙw�(�Ơ� �k�V^��H��b�Yzg�8}o�ψ�*�Y��3J�q�e�r���'|^�⧷/Ҡ"L~�����* -�V���Q�i~��J��(�ږ�JtO9���( #a3��B�ц@ �Ug�X�c8�Pxԡ�餦2��#|P�&�l�H�{P��}$I��Z��C2.r���yRhǍQ�im��Ǝ {��HC��l����J~��X��%�si�� -}TFp��)&�T�iY�B�a���ՕR� -�>�Lv�.l���m8X���w�� `�QZ7m�q���Fgʶ�6<&BNG�9�OJ����(�l�p�5&�`~�82��u����H���x�_�j1� -^薳^~�![b3];�f�C�g9 t2�QZVe�1@Y@g��66�e#Xb���[}���W��OR lr�mR�Ҹ��`T �$�ȇ���6�r�=���Nn�V��>qFPϖ?brX�g�U§�ފ��C(n5���s�ǽ'Pd$�>@¾ :H�(�`�>��.-��fD��pl�� �:�QyO��6�"ƻN9���#�H����ÃM:���R���~� acLxz�Յ�p�y�����CmN�q`qZ�0��,ئQ*|ǽ"�(Pe_�H;z���WL:� �V��]2�q��ᔋ��OL��T�C"-�,s��@���;e������/��ox�yT�~�M�+��-l��K�]��$��;-Ua�'��N�3qz-��&�<�X�jz����H�&S��`K�+q�)G�Џ�R?�u�V��#�s6A^%x���&�V�6|�Y�wY��m� ��1[ﺎrV`�A;���+G4�)�x���>:��X�d��q�7t:�tb�Q�;�,��pw �92�]�}|��4[v:�9'��r;�&��X@����ơ�_':�(��z��A�e2mo�Ig�Z���f�kȮj�w-J���Xa�����Ҟ��0mF� - �P�'!�$!V� �j�K�3(iǘ@�}�^����tjfZdt+8�� �}�Zn����\�Sٞ���W��˅��>�u���5�fKR���ײ�6��UXu�C�[xe�d������7�&EiԘ�Kb<��q��AC<�́���고 -.�d�NQ�N&p���!j�_*�B�)=4�u��t��(@���S�� -��%�c��iqͰ)�hҔ8�D���/!7�ak�cd�@G~a[S��ҵ[���u�cwB��[��5l L=�q\��v�x���* {�+^��=��p0ڎޓ�� ���/�m������.�'B�m��Ce.Ho>��8��F�2�>(�W(�߮%)z.�E�������\1��e��x���μ�2�;�8���xU��ֳ�$�íg%A\�,�n�3�a>�����6��J��t"flG��-Y�����\J'n3��zI����J�� -�f�TSo���V��2�TO6z���k÷���M�C��kν�x�y�_w��8�j �=��VH��k�[��Y�*k�K�9����"�l�q4.lwХ5[�yA�My�u���a��{Xo��/l��y�_{�m����+�W^5�f���_:?�� -�8R�G���W�wO=����K���i�}�G%-�U(wnp02�f�[u�C0g�r�B�2��F�t�7pD�UD<�,�����הa�7��kL��.�D,��h�%���ԣ��a7�uZ���+T�?RJ���]B��̪����:Z����`���"���w�YJ��/��r9�g$l�?��e!�G�q����� -��E�>VA��Q��u灠��Ԏ�N����*9�[[��R����w�n\M�����{^�g,b_�<�36"�w��A�s2A�����T�e×�#4�yQ��hJ�%�9���Q]�- �-Q��/j�a����P�z��^u�Κ� �@9�ҁ*���3�<^i���v�����,��~�<8� b®�SaCL���r��glW �d����0+�8��^����������۳/�W��}����4((y��l�纩�yO�*[��(\�b���ƻ7a냯�&�.C�~z�ey�a��>O�-���"=_C� A�Oތc�<~��֘���2��6�;x���1������6�Ĵ��&�P����68��iL�y"lb�./�*\+�{���pch��Δ�6�C�cL@xIa�LB(������t�[�()0����q�@�;���78�#�I�l�cu��|��� 2VQ"= &b�D|ڸ�Sk_� -6Ƴ �IsE��:ʄM3a�/a#L����9Ɔ�U��Q��3r&7z���L]5�@�:��d����^y��)��[N�}��C ���C}���o��M�y~���M_�Og��|~�����C�J6�m6`�8n>ez� -}2��u�P���s@(���~g�U����(��-�U��J?� -�#�%��,��#aw�ek�����ޑ~�#����I�<b&\��z�z��-r���xI��D�nAN��]HO��C�E\naƑ7�ϕ�8za[1i"uG�F,<o ��T���ʄ'��t���b����H�5�� D��z�5�}$�xY\��s��A��Z��|�������'~�-"��8>(�(���|����a�LO#�#eʶ�V8�v��� �붳�FY�}�rw��9������n�pA�3v{�?X�r6f] ТWD��/a�ͻ���OȎ�#k�D ;��`�%l�Ͽ�M�1�/Ҫ4ŗ��ȿz����i$�}e*��?м�[��E����5f��e�@!�6���u�������V��<�\:Q*�՛�G7�z��QZm�^�����$Ҽ@�[�e�H'��I�aS�VJ ��[�L#�� �|m�2Y -�bΦ�"b���y �C��fxt�q������w�$���I8b�[�7���~L��lf���QZ+N �1�v��~g5�� �U�'Z㢓�p�0¹6�D�b�����z�^���;]������6�� %؉��l�B�J��a��Q��>9�M�h�V��b�ͺ!HuO"D��38%��O����nl�'�����+B���m�Q�:���`,zyR�4ˑ�-z����Ge�i�<X5����C��x7�:K>\\�?J{4讯xyz]������Qڃa������P65��`��H|��Y.�5@�'{L�2������#ӯ8b�Lg�^�d�D�{k9%:��OsT ���+IT8�I��eΌ�,�����A7�X��;�3�X���c��7���p�=��_W�WHR��Wy=9�ZQ� ���=�5Ms�~��cҦ�<��(Ba[�NvY�l���xǼ���:S�#� Lh�n.Zf�đ����:��]�Vp/��t��A�)�J� ���0�Xq��g h��ڇ��H o��>SCf�]��2x�QG�=*:�y��`��C��']z�!�O��ցڷ���t����e�]�l���o�Q���_��Y�x��V�u -�~���8i��m�I8�������:�cڡ�h���$�G��Y�m<�s�;���KW�_��K�f_Y��a�"3���1!O���������#:|��7|��cwi����3n�~�쨫q��z7���&�vL���`ǃ���|���YS����0�+ -o�c+��{n������~��s�H�={j��4@-[�f����gp�5�(�h��v���u;�$��<�r�P��b��f�����5���Ge���`�j�C��2�Ú#�\���x�(X8��W�S�,ʍo�hgZvǙ�:s;*�&�894!�#6GH2��=ud�#�6J -zl�*#�`��] 9��'�|/T�0>��_���մ.琄�'�ՄL��h�T�#�ӎƟ�M��G�<y��� &�ܭ��i@�����xR_����[E�|��N5���n{'��C��{KG�2f�H��<@J�}`�o�q���3��-������&��[wdu�m��`��fC�����R���N;w�o��f��;�:��p� ̚u��8>�5�nUMG�� Ze���V@��(G!{i��b=H:2��W��h*a�w������'Oc�兩"����x���m�2��`�Q|-���]��<XSI�kDv* [�D;�l�OH~�H�D��G�nSh���!GF;��%n���Iej���,��ut�]����Č����#����Z����w8@�h�i��u,�|�2�#�~@� aSx+K��p�0�,��1Nw���&�Ԅss��#�P]�Н;�Ν��բ�K,:��������5Ft��ԻJr���I���]ޘƢH��rB������S{�����ʱ�ݔ��-v@���Pc�DG|�ޚ� K�.|���S�=�*�)�s6��q�t�E��]E5x7Fg��:�W���h��� ����FKD�c���EFd1Lir`�o1�)��uRC�N�5�=�XF�U��}8��Й�M�*���/SWn;���_P �n�0稄;�t�R��S��~�{#v��;eo�<<�}��O��·ʂmm�}�\$� -�s8ڋYLJv`�qԦr>�������������A7�q<�w���ϑ -� W-0?#����1��{Cmr��`�F�&��*���Q��PPz'蘓^�L`c��dU�+%l���t�\��� �!,s4�hc�bDŖ�M��Y�E�Gۄ�U&X��Xh�t���C�����}���=�-�] �;,�����S?���^t_U�mX���e�6w�������ght�H�P�۞{/o� m��������y�=bl{�����ߤz5�����]��u��*�O�IT�4��/��nt}�J�8�@�o�����k~;�$���/�-r� �kCh��)LZ�w�V8�'#}���9룞���3"�*��υ��ț#����A+�U�#˄w���K��b�n��Fp�"����/R�P��a�8�Lku�\���cd٥�u��B���yG����8tb��=K�=��n=���Q>���(E�\NT�G��Qp7�Z̢�Cg�ק���.�� lm� -�"����Z��8�CUHz�L��{)�����w�i, ��S���5�D�9�izi�RX����:ښ��cP�{3���2��b��R ����g{�["�USG���}��T��1LN��SCg%�q�ŏ�l"�9ۧ$73$�)���lJ�Wܯ'B�(�����Gαʰ#e�-G0��v�������T�@.tA��'��x�ފ x0~�8��;ȨI�I���JjBt�&l��⥒_�6���������_E�9q��h6�~JZ���.��͉�>��9�z.��K� [�w -0�5-��m�I -�p�H�̀M~�g~����㾾��eƍI~Ċ�G�Vƌ�}�-q���U�:��z�u�n2�X?��}�E��;��OY�f�z�Y .�m�\���uk�fݞ݀��{S Vڝ�¬�?�K؍ў~�V��[LǨ�t������@X[c���]_�o����j�fG�Qz���������vh���(��o����,f#�'lw�!�H�oww�S�!���F�� :����թ�6�����S3��/����vt�}J���6��po��I��ˋ�%nW���Ef�)V�Mަ�0�a��jb��@*-~\`'fj5p�h^��� 7��{8D����mM�gh��\5u�?���Ù8����6C�cJ�(_��e�(����>�!���F@�/E�P��F=�}��GJ;p�c�L���{TLzH���57Q)�d:��}v�f�"-�a���}���ͦ�G�b����l���z�ݐ�`_Kڍ�(H J(���S����u,k�����������t�ћ,��+S�e���#�X�-s����&�jK����N��� -0� =��5_����.-ۧ"�R��dU���_O��[opq���;��lEn���:���a{eΪ�91�B���#n-e��#�M���U^�Ef��zwþǀ;. p��׆�0'��u��1����CF^>��n�*�&O^T:'����U'&b57Yl3�ү w߇�r��8v�x�M��.��9��N�/%����1ۭ�t�BΗ(G�`�dk^�g��ۅ���p]6��(`}�� ڿ��lA��lVƑ��W���Qs*��1�;~��@։�(�ڢ̙wݜK�.����l�����?�!� -c4l��B�3��QS�b��jsj��w�o0˸���w�!a&�E�TpH�i���@̂�#�p���وzO����-���B�q%A5e$2!p!�����@�U(^ĞLw̸ۧM��J��Ү�rmM -���n�$��|���^�3���H8:O�*�����>�X]/[�>�W�s҆�]����i�C\Tgqv���o�;�0P���Tk�"��vQ��$<�Q�Bѱv@dYZRஏҾ���^k(��F�f���pJ���1��f�jD -f����#jJ���Fg��ݎ�� -�Ca:nrI�V[i�(u�E��@�H��Ì��@�aC,Nj�zq0��pdlx��Kv����l0mI�F���G�{�Q�H��W@,ǎ��sӮE���cJK!li�ݰi��"��X���漲Yb�щ���-��jgN���X�X,,�����ך~�2�bb��w�nT#�a~�0r}��>+��q�Z��DZq��� A���L0���$]��|7 ���/�F�����3�\��p��<��6���n�[A*�Xm�,�������������i{pd�B�ZǏ -�f�Y{b��Ґ�3�#��tsY�B�P�t�w4.8ػ�?����Gf���Lk�F����(G��jc��ݼ�W��� �AѥYҊ�t�h+����wb�����$\�����$l9c��|"��S�u,���{�QEy�,��Ю"Cḕ��ݕ)B���?��0�=ZX�M�ȅ*�A9(j��;�R�����K$ ���,�SO��+D���b9~��(�l8ĚZ��RXP��-�����<�2�� -�<,ν7wX�>]����OI;?�OyJ�3�8QD����5?����:657i��~i��rؽ�U���\I&�%��� ]KU@p�>�:�����j]�{?�����/�Kd�9���_\8�I������Bݹ.*��|)=�=�tzYH;�"�8N�ϱ-�ߔ��M#�Ğ�7Y��)lu�6̴wX%&�Q-qk�oP�mG���tS��sL��!Q.z��.��v�fR�q�Mt�d�KI{��:�۞������v����O��}aǘ���0�=�\��������,��`�8���E�P�l�Z�K��l�1.�!J�W�������fyD Fj�>�ѯ!~ ~1LOM}��(&���Z�r�>�i8B�t�j�i���L9=chF�?n�U~i��Y�Է�������*�n�~�m0ha��K������L������'[J�h��n~=�4�ӱ�s��`&�P�<"��1hMG�*�v��1Aܹ�>�y$����fqI��XXRE�r JH$�Ȉ|�8g�����}���J��J��.��.̔'� �O Ǔ�З�EJ�+�>G�=��w����s؟�"�aMx���MSt�ua�C�{j�=����U�f�^QG�Bŵ�s��+8bA����*ի2�T�~�O��v�C�_�M�i�m��������폵?ܥ�3�+��=ܭį�w�-j�V 07� _(��Z����<��$E��W��3���5R��CE%�4���\˟�~9 58w�8��{R�ݵҦ�{������f���C�7:Zu�K�3�݈i���Q�Դ���p��v�E�� ��Z���~�L���Cy?����j64�V}���]��M'�E }��J8������LG��ɹ�I�N@�2�i_G|�>DU�MTʯA���އְ�eB���A���Zr�Jyo�U�7�{�+\yu�lPW؝ Y�^��L�D��r��R��<�Y�U���N�Ȟ�U]O���Z�M��ȧ�H*�~(xے3���B-���N��'xQB -���*l���/PN�T[,�i ��Z�|-69����h̒����&}�8��R;��A$ -�r��/1�3���j���L���4D/�mvdm;� �$}@#qt�uH<��i.�>�]����� -ۛvη� u�1�j��:�|�ܼ�\K'}Xn�ղ����?a#V p��La��N���;Ϭ"k��3��!2����mF�p�|#p�6��^���'!��ߴ}���֙���%�_�'h�*=�r�}��� }��c}o�-��R�vT��8aw�x���������q��ꩈc�*�k�x띘l�3���K��a�п�;�^�Q���_�v�^��#:�� G!�����6p���I�Uf+.�4��Ja�}����D7�Q�qT�Ɵ����_Ź���� {G��Ç�ޫ�� ����;<�|+��E��5�ٝ�sGd����6�D�7�P���67�e\Lc7�9K!��G�XRNw��D�Y/��75/�p���{�~�����QD�y�=Б���� + ��k=���w_�NvaL�9f��i٤AxN��_�fN�=�s�R�#�����7����P[�wcQ]�pG)�~�O�?յ}KA����\W���ס�ra#�p�G� }Bد����M=+X���D��,��K���;�p|��V��o��|_��HQsl�i�͊�xn�= /��$�h5����'��8N����88`{�`��K<ل^XQ<@�SC[��'��̣Kߗ~58�׳�>�E��!Z���~��/���8Y߫�ϫ"�����U��#�>J b SP�ќ��Dz��ka3�\�� =���?*%l�+<�*OU!m���#�Gĝ_��,�}ǢG��Q�����`�Ïկ����-q��|�,r�T�� -�:YS�v�D|�s�U��ħ�c����Ϳ~�8��_�$�C_�"�R�x��� o��J�qp\?�W~��4e��*t�9q��V��F�Ԝ�3'�4G x�u-`9������ҡ�� �S�t>9�����ZA��O/7�����3�n��yq)l� ?AT�/D��T%�����Č�i^V+�+�ԣ?�ҏn������[$ms�.��'ޅ��X�%k� qЈ8�r�� Y��w`����!&�\\��H:@� z��W9��W�~�����|�I�>��9XqLx���������T��c��~�7S�`���6Y�<ka��=F?��[��2���~�$���8�:��'��#S�FƎ<��z~�KA��TtS��ܹ*�3�\���� -��e(D?��u���=�����n��B����� �eo@�Num����\xܓQb�=��e�V@;�ǩ vaCiT�1��p���m��l��븂Jqv���՟�עp\�����sF}��6�aT�1�gVO$ -�G �V|y�����ߚ�(���ڤ1!4y�,�g�u���rg�us�.��3~�˙�0s�}����/��8w,+�R��{���|C�v~�[��]����R�h��²���",��Ƴ��;A����/�f�ϸ�BR -F��Ԡ������ٍ|���}7���x��T����*;�>�x :���Hoǹ��>����jYT.��� �˷��X%�� Σ�Z�j�4=#\�Qq��.]��ETzY�(�kک���:1B״����s���@x�*�����v0 3@O�|h�P��N4'y�kPI.�h��֖�nMB>y'���,D��Dd]�<<��n�'~��(��H�o��iђ᧶+3�H�K�8Q�S^�t��m� -���+��&]m�`��6:"�8��� -d�S�@!��]�n�quHn�\)���8�����aAH�2�x�ܝ�ڳ�Uf'�k����#�����~#��N922��ħ��2{�2��^V�� l�#�f��O������\4�w�S�K>�obb����ѻ��Dx�L;��N�t+T2���g!��@N�B=�6o�٭;��1�^Q��Ui�K;>�S�+Yʟ~~i@��6��#�B��Q^b �1yA@�h�ÿ�#��`���^@GX|.�s��hiz���jյ�E��pU������<�}��^b�(HHA1��n{��a��v�c��0v�� �3Ji�8��-�ެ~P ��(��>\�m[��$����E���>IOՄ�`v �rD��-�/{��[ݰ]p�T -�(�͢Z�9���/)�N1�t��q���$m�*�dHK��K�u� -E@u6;%��ޛ����W*��<� �Tԑ��ב1NO��y�r��d�5�Z����N6�,MB#��1e������ͺ���J������3U��)tv�mGZ����C{�⧤�xWQ-"$�ZAT��1`>�2�V8#�{ -͉N&�U:u�������v�N"�S��Y��/f� ~��nf�h�2qT�a����ؑכ}K{3T�iLkc��XO���YjYd��N3Z�v~a�)`)�EB;��tR_��Km"�٬{w�<&7�c���i]��3�Z>;�S��HDzx�>���;c�1�>��ĵ�Q���t8�����(�6L%i�Z���I��n�d�u�i�ݚ^� �� ���-�+�mv�O��7���+ {��w�P�;�(x� �8~5���R�F^*f�Q���XZ7�=S���<� -���d)���3�e{;;����m�G�][^����.��VuW�a���uW�y1������6A;�K����� -��A����ά[��`�ή�#D�I�\v��;dyz����zx���$:���8]��m�K��1��rA�۴$�»t�/��0D��L���Qq��-��)�@�;T ����ȸkFX'`B��&� �o�튦-�WllXj�2��VRK�Mb{�zy����t�ꅡN���c_0�h��W4���Np��gI�����)�w����˺�#06Z\{��/qj���(�N�"m�\I��>\҆{�D�Q~*T]���a���Ra6�P��B�" v�tP;?}��T� ���_�k��Y$N�1�ד��^�{��A� ��D�Յ�ǧ�?��!���0(<�\]�ep`����I3�¶{�/4�Y�~��y�¾��1�aq�����>{�u*m�����Cq�Gƞ!G�a�� ���Ɖ��\M�+U�elx��.NP��Y�~�� v#��{��vh�ᐬ�>+W��aB�����K���^T������9&�<.�� �|�����2G������a.�00ȅ�A2�汿X�T��c����8�=���?~�y"�ʔszSm7֛��\��7�%��~�{���3��Mک�}��T���`��_ю�&�C�����Q�Z��Z��X�'�%G�����L���������V�wt� u�R?�9a�X-�܍-.���$�)��Dx��_d�'b�tiV)�.�M�ys�ã���c�].l{�������=�Ƒx��O�{>��2,��r�^Z�����Y��f���+_~x,������t�T�.)lo���R�����>sѕ��F{��ak,�w�p�Q|����6���)o�GU -��kg����@S�=��#=9J� ��tX�5��!)4mr�\��s��&��Eʱ���97ʺV�:�ﹳ>�3�kM� -�'��bk�-�.����(%A\!�ƿY�>���EJ��Vt6�����?r�,e�:���U~�n2�ݖQV8��1��걞DP�ד��bb4%"»���F�4 ]yT}#�r�³�����u����q���-g�ll�>�g�Fڽ��4"�Be����tcI;�6N�h`RQP�:�d�*Eڧy�O+F��1�J������z��_Bl��A[rē(�w/O��Sz��c��B�ϛ�˂ �L��R��/qEY�������A������>�b - <t�I�[�>~"b9Q�M�6����'n� 2O���X�I:Ӓvb܁�D���SyK���\s6�ޚ�_"Ue��,���/% -Xa�ů�Q�`Sϳѧ��j��hWa[�&�� v��o`�57�����t�Hס����t��d0���r���w�s����,`u�vʯ�h�E�к���3���-��@0�i�4Y˺;�9F�E#�e-&Yxjf]-�6����|C ɱ�G�����l�ũ�¥M���s��N�H�� w[5��ʒC���inw���I���qx{�:��)��h���+���?��]�������� ��-*�##�M��]B�"�U��H?�a���S6l�*�����=���Qײ-����|g� -M�m�P��{����;T,����YKq��\D϶����:qa�Rڃ 9߱j�8C~0�2&�ԬG���J��l)h�L���t3Y��Ҿ���0d�u�aC�+SJ�4�����ӎcZZ�b�*t1|�}�]����1��a�u�ߠ�]kW�8d_p���R�y��о1¶G�� džǝd�z��lZQY>*�y�W�]��괣�G:���`w�[j����}�^M�y�5�p:;>�|8�ь�. �q��^by�� -S��3�4R*R����,`7��hZ�H�N��Xu��-�+8��G�ǧ����q�t�y�aR�(�oJw���+P��LF7�!�\�!�J2.<��1օ�.�2�&_'�� -~����ӗ��-�<-K��C�1��d0����?�����;9�\=r7��*�6J��|��97֣�ޑ36�.�.�>9!e������Q)�N^-����1��nPr?���� ���d?��5S��p^���Q�|�[��ɳ Xp���R��x���S({H�ťk�\_?��V��?�E�S��*�C��/k�W!@��2�y�< � ���3�Q��/i]���R%zvrPq�<����R�����X�&�J�K�÷3H�@��~�PD�re -i��$FIQ�4��{�����r �j�����ҏg��n�p���Ƹ;�4��7[��R�hٶ �־!�h� -����|�k:�WI�D�PʲG�����6�n:9E6�_A�e�i�������#��>�*@����M�Uz �W�f�v�W�:��jz5MDq�����C{�xԓ�4d�6|ꏄ5�:���Hik��C;���+�ɩ7��^�>(��^h`�������) -��G#���N?7���"t��l�ih���ƶ���W���P�x�7<����M�ݥE��ն*g���0���BvxA%`�A 8�GF��:�kg�N���5be� �w��0�!�D�)w���H�6z����Y���[�@zҘ ����Dž�Ͻ ���=?�D��U�����'��絣Ku4<š����Իv�D���*$֕'�� -\���P,ԭ���ZE����M;@#���]�$�A�0X�(q�bE��,�"M튕���0�'a���u��8R��P���Z0��o.�Z�Jڙ>��E��O�?w!ЪϥV^b -3xtEG����a�c$Zܩ�0�{;�3�I�Qփ�>FZȉuj��N �룫���P�<��AIOQ�i| ��8����%>������!��V�;I?������y��eq���~d�k#� -�c�.��iʧ��Cxu��q�v� �<`{㣋N�Y#�B����},*�J\�r�q ��ko�G��p�wOF����d�5J���F�J}��G��'���l�}6?!�Vz��Rlr���܁_1��d$�b -��!m �B�%�@�J��$1�N���1 ���,�i̾���ZE��9w��Ea5�6(ЕĘ��ն�cA�?�B�C�p#���vj��ښ��.=�2T��$���W���3�FGi��*�~c�zk+�k/��a�����:B���u�EWx�IR�ڱ|��IؽIW�<V�7�<]3���&2],��e�9��=oΕ��<z���h����?��A�w�u�+�?��|Ϧ���KK������@Ԉc�~T�u1k�,�z��@<M�X���(����Jct�U_c�{TZ{�Y.�_��5����b��5b�j��o>]��*fO�pqa��e?,��7�<�I^����ޏ -.��te�`�/Ҫ�A��u0ɰ'�BXҡ^Z��n -7�G=�{��^R��T,<Gs���S�QZ�4�2����p�M�N�j��։�4�c�bRR+����F[dhB@zxl���j��$���¼|�`$�>Ɋ���Μ[>����>R�FĖu2�4�J`8u>�0�zh�)�����hL7G���V���i�5a�������{4T*U��"Ǚ��hSoE[�4� -hj�y��Z�E�u\��F�jgh:#J����L�UlT�K�8��0��<�3�� .#p���M(�Vs��0'��N�D���3N��uZ�3F2�p:��Ro��ғ5� ���~�Z�ڛ(=�N�_�#m}��|��V ��V��kjq�.�R|a�j t^n�<*l�=�٦��wwy"��n�]�_���p՛㰾d�Z��(ӥ���KB��=�q�4]�$zf?�{b_+D"Aa��tQ@ �U2�($r��R}��1W�6jd�_,t���z�s�>��~@>Qk<�`��h�n�!>�44/Q���]���{�p� -U�n�7؍oF �� -����-=������&��e(�`�������m�xًԠh������S�^���J>az��-��,שt~�1Qo��GW:3�&���?�D�Q������s7ka���ȷ�Ѕ�q7)�X�w��n{O�zO���x����4�i_}���"ǯ�/qɓ�l� [e6�W� -��F���1�$|���!��c�~P�@d,[��0�i�f�� ��n:v�M~ 5���\7Z�KG����������I�QyH?��Q�v��J�ޭ��x~4{�H��c�`��:�sө�Ӵ[V����d�}�1�V}{�T�N��;ܕUKG�8���~�u��r������s0㤠/�Â������yx:��{*��A���W��a��k8�����>[�@ �GމU�6ʡ��2��*#lq��"݆ -u��Jg�#� -� ��ێ�;���M6+�T��Lj_��G H찄�Gs}��ǹe��͙�� 4��65�/��z�K�ƭO�kw��/��N{��g��6(�X�q�T��!���-riS�e�8�5V�q�W�8F�[i=uF�7/��y�\9|�V��k&<D X�b�]�������z*)蒼���7,{ۜ̀[y�0x6�7l�ђv�����6�-<��Q�pԆק��\�W8:s����}��$(/��3��K�yG%O� -�|>�����F5��AsSd�����0G�!ͩ��ܰ��:��3����ki��_s��A��>��PY"��3��8Co���&�#D.������&�[^��#��]��a����H}\�l���e;M�QrC����]�c�c�L�)d�Y/'j���sa��qh+lj�_�EasGk�'liq -�� -��cv˳�F�� �o�*(�ō9��K�A�!�D\�l��A�@�JG ��Xd��}��4.�x^�,�5�biylR�Q~e"��d:c�Z��[!EQx����iB%\����8ͅmr���)oȬq�A���<],�-��V��� �x��H���Y a�;��;0��ʔ���x��*���F<��Jق�� �-r/�q�R�Dֹ --��)�=��ܧL�D�_cP�Ѹ�6 �s�����ϥmN��۠ -s~�'����m��~��]�v2�mD6�>�T�|l%��x�z{QncGz@�+�S�����$��_ ��ƃ���a|6 -�-�� -Ř�ɾ�]��̞��[�N�P�M�����|�h"']ߺ�8����+��.�]Y�wY|��"�i%�?��������8��7W;T�6z��Ӭ���v�Ty�������^Mzp� ���]���7eI�p�'�S5���e\n��Vu�5&���Q�J%�V��<����|LX!a����#{���U���{�V@y�(�9�jFe���6�����f�!��Y&�d���+��r�g-"���X [�~�j�c��롚���ȨK������8�������� -�^%�ry��͘M|T.|���\��H�:whx�,l��2ߧ%�/���#��5 -�JO��=\�00F�m�g�(l< �^0��˱}H���s6��; �>lk����3Nl�W1.#�F�Mry��%M���p������\��H�1GfyV�k�<�O%�`�f��8%O���3f��ޤ����s��3� -�YYSX�g��9�Hc��DD�%��w���h�"�,�ΐ����BI����o0����@`A�����G 9i��bJ��6�B `���3 ����w��������5�-�� � -<�¯:�ѸG�dy�(��_ m�kǣߴU�V��)���N�N90c���))�U"]��8��g&_����C/� �f]�gG鈘{T���j�n.W�f��5u���������@���7})��f���L�`a;�@b��֗5;R%�d1��z�z���N����� ��0�Y����H��_��Q#��=�X�z�g��v�չ�1�4�F���4,A�Թ�`���ˡ��Ob�ա4˧�D��v�p$I�3�o�����/s��W+����K�������ïG�j.��G���,��đ>���ar�v�M�Z�KsހH��gw`h�T8��(hi�Bacӎ�1��J/E��S��C -�����5���ʏ�e&�� I�p� ri\�� �����1��;�xy��!�Ӭ(�����^�^��a����a�Gw� IB��Ǘg3���6�B`K�����������~���Nx�*W}��Q�֢O�:�/υ}�_�Wx{�hy̺;9�� �C��W��o*�(�{�}d��?R�����2m睼J��Qp�2�@�H�Z��N�c�z��SD���6�6��pe� �/����،���)����IWB��X��ukO��V`Q���t� ��oJ�����Vf@z����ƅ��Uj_�����@:@���?&*���@��O�J"l-��{:���H�րʱ����p�KWw���iUf5c��z�B�)_?M�F����Fx>������� Ґ��"OAz�0��v��jz�Y�}����O4�5� ��juj�'G�Wۂ�$*=�yG�\Ѹ0�4���$G�b-� -G��}���"����q�|�$q���'=�&��yjYE��=�8�P��3�J�^C�E���6�a<���s���ƫ�C����>�v��-�n<@i�����v騅@�y���H�K�]?/ac,;t��3�8�v/�(lk��.�M8���Z�ʪ��_xC�%#�Q�c�� w -�d�5�|�J�H��l,^�_n.�&)�-U��l��;�,��T��� �o���� GyOe�[rL:�κ:������M�9���m������l�+A��0�`��̰�(���㓼�`�.���р���xU+l�Q8���+U_�Q�4�ӯA���"���3�X�9 -%-����'���.��D:NCo����Lp{�����8c�qN�Q����'lӶ��g���Cx0:�+��ƙ�� -��҉��=�Ea{\�)n۳K��*^���|a�� GBy�*�"�Pz6��6m�3�� ����գ69䇧�I��w�k��a�_��J�bܩ@�5�;���]E�L�ׄ�3��Bf��)�e�j,za�ŘU�Gs������ӭ"��^N�㨣�H�P�*V��d�5>���w �Km�H�)����I�6�]���>��Su��������U6_�S�Q�-(�4��X7�.�=O�b]��@�!Ng�)��[q -SaZ����2�43]����)�N���j�n�]�R�-�#���p�1!�u����:���VmmB=�m3J��C�U#�����M��M����R-���E -��N��J�>�;�ҋ���m`U�~�P��e)�۲������+=}\�b'�$Ͻj��6*�X�G��z� �] ��0=T��<<�V7�r�N��:�`Y.��d߰_AAmgV| -x7�?D{ �0@�����H�Q�0u����IN�=%\��皨����Ŀ��*��K?4:���TzZF��b#>���e��8�� ��%�&y�g[s���uC2�Qj����[�^�n���& -`X�W�/ʂ�� "�z���ܻ�����ڠ�%;]i���곉o9��B!I)�W+��,2s~_vǜ��Ӂ���aM� -<��M`&U^�`B���fy���r��ʵ�P� -Z6p�I��.�p$5����F ۥ�L\vg������+��¦����v�m�f��:��-�]�V�5����������a��W7�+�<��4�$��� 9-t��Q��r�i�(g:Ml��Ӈ�Jx������f5���9��s����DŽ���z?�$���nX��F��@a[ý�6i./->�������|�wF3�?��x.�M�� �a��kP����b3?c���1��jpV������/�5��pܢtvY��U��ڰ��o��E B*�d� �.�)S�i�}7�؍�m^��1pdUY���9+E�^z�_�(�UI�O�P�3t[�6�Q�{��>�6�������$D� -*{���(����f!��/*�ʺ3}�A�\C�a��<�};w: -lV�"�5�vW����a��H�y�dO9�ִeaK#��t{�wTL�E!{�1}��� ���WSz�;Jl�� !�7>֛r B��'ѕ��Ly�끼���a.��� �u=/P�G�(ep��-���O�`��ݮ��_�^"��_ �7S���c�:|99*�x1I:��+��/āM��.���N���.1ܺ.��#���aQ:[ ���LC+�դ��2�%�MM�,�Y�=�o�����>��\��ӕ���i�v�w�]-�ݴ�^+;��!��T�fH'Չ�Hős�`����2�:ܸ�@z��OY;헤�r��O�QV\J�wi�,�|�!��]�.&a�Mg���evPio��}Hq[ ��{^/ W33;p��`o��� i����#sL��}K������ZA�T%���a�>}����|G,����A��bM�Aՠ��87)x:J��^��}�])�M��#�hw^L���ڝW���v#���3^���Y.4��vP�=�����Mèh*{������#S�zKnɑ�C������W�#c�1��oL|�_����W?��M�E���7�⎝Hw �+��rL� -�z�m�h��?\8�ț�)�e"��"����^�*��w�S���1�1�7�_��cN9��G��R���!�j2�����S�����B6෭0P���L�\��C]'�O#�lmw�epʱe^���D[! �x6��a�XK��|;��:67���\����B� L���лT[����vj~�S�@R�=���7`� e!�`9����]Mi;�%� ���F�������kV;��V�����-���{'aa�tl�~j�v���_��Y�g4#L��x�5;�Z��Q�xܩqĖ�4Ϸ�8Rl�Q؎*�78����G{8�2a�(/搜�ݣ�f%����N�I�L���>mı~b�5pd�.��6R�F`5����i��O��{F��>�s�Y����(�X�hMT]Ź�#|Xz�F�N㙉���I�8���n��n��h��W�T��kP�h f&����{ ӓ�,�w��xV(�ʣr��QqI�֭����o�#��L��S�5���|=��u���=��"M/?Wy�{�&1(��|��"=�cVif��eehr���G�Ă;L�|�h��S6�QW���7oT��A���u-��Š'Z�c�p�|���u0��{�QL��-��������K�iGI�d�V4 ����iKPU+�)7B��;��J��0� ��p�����ϴ��MZ;���"�ʆ�d+�ݦ�%C���3�i�r�N��dafh{f:���B��6�R� O�r e���?]|ĝTzF\O#�1�m�T/��*�(}���a�m��0��ѧ~y����w?>��'E�tAK�$ȷ��_�]��ݚ�<j�a��xY�P��y;P�eV�����>�%(�b�s������t��b������^�|�Vk�V��������G�z���KЇqn�%wa�ٶ-.�5��!� ���/a �)���d�ªa+%�˱��` ��E`H� ���:�� ���ZGNi8�l�� R�=�mU-�L]�/��^��1`ʶ枵>���3��'������<��p�l�nJ������-�Cw�s�=&9:����T�)���F����N2�(�~�}{�Kgn�pi//?W��O�� -?�(Dy��O���38�7jELV ����kz_�����p���e��l���s���6�G':Օ��+�%~P16�Z=_OK(��g�w���O�&��핾>���.��.(���,=|�;���t�P�F�}�|�˛4�SK]<�~V�ղ����'s��3˓�"���|�Z�X�����A.a�L�~BF�m��3��q��Y�����������F�>g%�=�}B��>%I������.�CG���2�,��㴐�p�{&u���MW��44X���u��:�a���ԣ��9�D�d��/P��v8p4+�}���[��*��(�t��8z�sʘx��A�W퉴\�q����V �t�dz��a嵥Q�I�����vm�ݜ�Y�g�}45o�[�)\i�ȻCvc��,D�x���+e=�.����s�צ4���*i�釩��*kn��4϶��X^-oiM�O� ���ٟ��;�С����w����d~��&�ʣz�u���9��ms|ĝ�)7��5-�P��Vz&����iδS�e\�;�ʬ�k=���#mlص}��_?�K�n��H�Lg����[���*����(d��H[�����Mj�JJ���,�C���Y1&�9H��f����m��ҡi�i�ь#�Ӥ��w'�㩋Aq�|�R��+l�.��{TN�-`�u�=�wzfv��@|�NG�����{\�OXK���}C���#^�`�D��rv��;I�#G�W�i�T��3�W=��R����4a;�������c�,h��Uh�~�)��vN���T�"4��D���������P������zGx^kJ[- ��~�vb�w_u��L;�j������_�yNlN����֟�_Ķ�5ʀ2�_a��֦�%�fi�0D�����֫���[S��-l�5����p�1�������U�V�4|d�C�S� ?�j9zMY���V_|�n��� TB��c���˚o�9�:�6.<*�n�Թ�{l�/>�~��٩;�` �a����ۥ�>_3�W�{aVn�~O1~Pi��w��c��g���7�z]��c�Ǟ]��&9#:�:r���1���P��h�K��L��7x�G}W���K�֫Jg�)�d��[gE�_�@2�0�\/�6�������H��= -�$�n@�Cc?I���8�?G���ac67��~�w�RT�����ە|/N\�`�����~�4P8���N�.�y���-*�EG�m�f�7|��N�6�"N�K��θma�&����&���PŽ��;����k�Ű9Χy��Ϲ��E��%'0�_!�9�)�����ν��Gt�H�P�a�ڙ#��#�� |J'Ԡ�S{J��k�p�G�q����0^����,M������j�OY�v���H+qZ�l��2����}��Rm�dd��T=vp��BY�A0��n�Z�|��fR��P�Dmߥ�j�?8��i��9"�0�.���8��{���֬�o��ލ����p�����-�HG2�!�?Ԁ��2)F����4����e��PJ��Z�%�vq�QŮh�]Z�a�x|��m�.S�x O�.�6��(]k'i3�À���&��6�'�V��|�Q�$� >[;K���gϧ����#�e'�0�u��lP��K}�Ni~��NJ�@3e�ޱ���D[3�%Pݾ�����W�����u��`kԥ���������9��ޜ h���k�9���/��1�� -uo���kwF���Z�zaP�i�.&�;�ν�~�ف큪O�k�_I�d8��3��Gu���R�q�����F��lQ�>N:hxFH�4�~�7�?��1c��������u�YTF'�d�����N���h P)V:���"���إ��j,��*��oH��x�Oz�g�L������*I����`�/��nkDo��H�>��!p��|��xf�����2.�Ω��Q�GoM1ڰF:Y�-^�,��K*4�N�����8x.4�<Ӿ���+�=w���8te� �d�C��<�l'�i�9l0���H~���7�$��H��{ʶȹT IY�KƴkIGD�ٔ�m�Q7�ܣ� \��obZ[�|�<77,�@�m�6ɪ�����8��l5vR͋�ٍi��B��^o�=��\��ݷ�z(�p�8v�r�=�.[��S7��g��4ŵ'(=�!��;T#��TxpH;���hJ��u����P8C��c|̬�rb�J�ա�W��R�[5Gk��Qa�FV�'�AV-�; -o�a���I�3�6ʏ�FGO&�[�X�s�=y�*�k=�͏�;��{O��3�5�ׁ��͏�ح7\��\�fPN�ڼC��x�Z��f5GPO����h[�[�$b���ɹ���]��B'O��N�}��O��-����a�y�*I�1�)Gy�V�<=`����Ip�~̦�<�7��k������3/9�G�GIe�B���4��m <�Ar�)��'���S��A��>Z�?6�>3�y��uO��t����&'_ɕ�:dP6an��Q��1[?��-ϮA��툰�{�A�����W�39���N���g�Aq������� ��E�j.���һ�ߑ]�s��w�a�����)�p*�����6�ì�Z�L�4K(�ԙ,>T���j� S�f�(pD�܃��y�k��ì�j>ݥ��p�mO� ���0�b�̄EM��V�7=�(�ʣN+�MQ�&['���N�~B��Fδ�6�����Wa�lOG�BO�"�rޜ���M��a�VK�����I�N�z% -��~W{�����a�}�~�^}|���`�������>t���w�h�/�)�Q��V� ��O�q����?�d[S�]4N����SH��G�G�ţF: -T���G���W����a�F��0�h���HB*�M���;�`i��vvz���Ϣv�̡t -�� -ʴ�����}Cbo�뛴k��5,F/�/��Egڥ�9x(�f�6&K#�:8g@��S4B1?�*�G=l�Թ�F�y�'�XsLR�5�N���Y��k��2�*��&��p9�-U#j�_JL����yw!v��7U��w�]n,�:�.L� -�3А���q���oB^M�Df���@����w�ˢ��;���l�%Y%|H䛞F?[x�R����:�P�8 -�hF~������x�Q�mo����,���h�G�*�9�s�}(�4bΑ�o� l�C��\�~�.53�g��y)L�fdS�e���"!��wn -�s�J� -�ZN&����5�k�kf�R��V]��&녷U���L�K@�0�7�Qޢ���ޫ88w4V-T�j�����NhN��k��Ǭg;2����m2����}��K��v6�#1kN$'��Y_�9i`7�H���eG~��4��;�d�-7Ȱ]P"�wb*�M�Dm��O�l,��.����@��!�ߴ땼F$�)#PY�n�vE;/g{DK�a{�����mI��`��S��b&Q��!d9���GW��¶Dg=��|s������F��'���Q;Q�5��t5~��#�?"nH&utdw�5�O��gu|�q"��5:�;�zw���fBY *�{�%9�0}�W�~��M� �D�D5gJ�L��t��U��P2�uD��Qj���O�vW��^ -�*֚���{���s7f��)Oϸ[��A�f�O�#i�'��D{�`~x�ϣ+�vb�GD0�E�J��>cDFTE��\�I��� � ShVn��m���؇��n�FxB���iJ_T�F^���6��ibA�g}6�}̌� �qb]'P��{����r%���4}ΰ�{Vߏ� ,'��7�����-��*���=���=��e������C�-�`�V��A���}�T1e7Z,кz��jYz�<������!�j�������E]�CDL�7�Ӡ/�g�'���%MVO������tU��k���Fr��^1�j���6����B����$�dkֺy�ҫ��ӻ�����x�a�{��m�x���.!�%�r��@=ǜ�q�AjhFjꭸ�a�>��[˞V����.�T�4�o��%ԯ�4V��8ŀ�~�H��S�K=�al�)�!�F[d�x��Q�N����q�?���_��u.G�z�o�K���!�S���q��� �f�}\(:���*M��V���r��e2����> �W�sLĨ�;#TL�M�t\�۬��8Z��V�Ѵ���]�y*��+lb�S�=?����ӝ�~���m���3EZgIz�Nk�q�����O�;h�^�B�k���G��#6߱G���)��@[�p"�'��i{"lp�o��*U{&,2���������c&l�F��r�PX rζ�mM�� X���5l�8�N�.y�����5�Σ;q�0�������C�t�u�q�[�K8#`)�P�!Yg/��nOwM�Y�KR�5P��'���9��e҇������1s���/ᇟ>�ћ���%�xi��]�������H3:A����I2*��ӧ�^@�re�Ƹ��W��B�v�#��0�f:��5]h�a�R������.��Aqj ��B�����K���)V��WL�c~b4u0@�����`e�8-��S���?��� Nr��_�<�69Xk1Q��5���nߠ�>�Ce[Q[���4IET�L9�(�o=,a�3@�����/ZH�ý�:mi���[\~���mU~������gY�G���q|��/k�m+l�H��kz��S����f��&�D����D@|Rz�izp�紟�}X(�x]߷��PW���TG���RN����_�N�l�7���]��>���*�G�R?Z�he�kl��Ź���KRj��C��� �c�u}Edk*���{�9����ބ��3y�J��A�j�>�ן5z>�oP^m�Z�����z=Xa=��+pIj����~fY)f�,�]j���IK�� !����ښ0�i�6O[ۨP��e��nQ�u��{�.7�Y���o"p��{� N��οZ>7�#�)��U��+�L�a+`�)����.L1`��E� ��n�r2ǎ�J*Ԙm��M����>�c��%��r6��Õ|�Ħ!��Q߅Nah�f�^;�:*A�G���&u���*�j�M��w��8��B&�=�Q��������������c?���c���.�Mݸ��~m? s��Hx=�Y �VJJy��B��I}K�N��XZ��u��? -/�.����������,e�PNJHZ��N˞���a�S̙�=?զ�[�Ij�V���~�i���)0����rR�gTxb6;�" �p��h���9߿���ݻ!OiE������>v��Av���-��\����\�4���4�H���� #��z.!����Sf�)�.-0�D|�m���� ��t���F�._���4����p_�m�!a��.@�|�4E�I��vO�zC;�~��Q��6 -�߳�B�m,��>��Q+�m/^�đ�k@��2���d���ĩ�$�x�gU:����������_yRhiES�v��*����BH{9��CG�9���)�"w��Yv�c��<X�Ն�dc|�'�.���'�ͺ!FL��K���}����Nc�r8l����XiW�{�����B���xV�'��ReA��#�XP��oRx<5]��� �6��hXX��p�m3;�k��-�-*�o�-v�A?@�Da��.b�S�ڼ{�5���_�~��>)(�p}]TxW'�-m"%���t��8E��Ľ�g�w����'b����{䂃��jʩ�+��#l�m�][v2ӓn�jl�s�ٷwY��؉���ڈX��u�m-��S,����l���w�����������gz�0��=��@�P�Z��dJz v��ڌ����C�&��ݸm81�C���ir�(��J��S;ZD����M���a���������65��79��˞�����'���ڕB�!@�冷��Ҏt��3HX�邦c� �I�U^�a�4���E���K84��"tC07;��R�P�=����u�}FKl���f��%�?���5����!�?�'=�����bجZϕΧ�Y��*�5F�Ԅ���L����_�ҫT�j�w�!F��&�k�����ҫW�J�X�\a����J`b�rxܕv��P�Pr���,s�p��".+a��N��4�� {�� ��j�ɍ�l���"@����~��hc���r���W�f8)Q�rl����b�W�u�{��� _�����.?n�,��ރ�mky�?6J�>o�� ����dǏ�t1K�ǔ�im>aC�� �b�Nc��k��\����f���~�0���=�f��bû�B��n6���k����t�j�H�(.�e�$�fIOXx����_�\�=��eс�4�=ʼ���&=nN� -m�<�@*��j# ��Z^F <��@J�i�Di��]5�B�2j-%��2M�K���W��'����{'=$�<N�aGw_�cN��T��M��s���0���z��Op���<vy6q�_��Q�+�_��cUll�&�ڿ [��Y>�"K�Je��ҿ��o�ZH'@�3�����i\I�h˳�l�gq��M������rf|�q�P���kշ�5/WeD: d&l�k�F(P �Yʼn=|�"��f��TkH�r���DZ�Hi'�U�+��k7a�L���uFv�mu�=��A��]�+���x�]ga����⃛��[���9�Bt�%��ً���-GҐ���ۉ:�G-ubV+I���-�5RO���J� ����D=�����u!lx�y釲�P��g'?sqR?1S2�4�� -�D��@陚�7w!*�n��b'��gMWz-ڍ�ۙ���N<��<g���>ےiAWo�R��*��l%����~��1J�ũ�Q���Ԧ�w�QԢ�{�l�},ʵ�ѓ�� :�G�b��pV���(�\]�ԡ˕���h�wq��=W�h#�M��Yh��������W�Ϫ��{�q�۾b~@Ӯ��.���V���*z�ԽB;שp����߷�?}xc�pm �輠�4����7�CǃB�8pD�4GK�:K����x�mf�l��ډ�VY߈:�Ue�o����S���w�m&�"����L��`���Մ��.��у�Cu���?���c�zp լqx�?"@�Msp�,��BK��g�ײ-<+�h��cg�O��_OVx#V�����zI�L|6��j�T��S�l�W�^�S��6m��pg���Q�nk�d��nOv��n�:�;s�:GN���y�;����$'����f����T|��7@���Y�Ы��.��"wo�c��߭U�f��Q������eD�5:�ƎG�!1�U�j�˙e�o��T��uk��Z?�÷s�,������P�70<ڣ�E(���\�V~C�ܨ�r�>plٷڜmf -*j�Rֲu'� ��H����5?�T.2�X���������ei����B�n���PgX���� 3Z.�"����=,��rr)���r���C�����Pd��q�ײJ7n!�}�l�9I��a����`����2RH���k���ޮ?N��h��]��pg��h���Y���OL0��V��V)7e���ߚP:�w}�l��[`7g�.VB�½�Y�����E8?EI����}п����[7���qG���녰��ގ�.,N��G�"]����/���������p�C�9.鳺��`��{6�vU��#Y�~5��Y+�۳�"kF7��a��uS��.v�Y�O��D�"�|����4r/��w�=S�u�a�q�T~��1�@P����+?��ћDZ/�GwŻ�#_���e��F����&̕�i�h�}m;Ԛ�A�j��g!�9��[��D�=g��9��Eg�NQ-6&p��;{hScݛEr�"�rM��+��U;}�VgPU�q���� 4s��O�v���bSk�6N��%�k�k�� ����I'�,!3^Ա�:kY�����`�8tvB=a6�:��g -\<�l�#t��E؏�$�ߓ�� ����%��-�9<O�mlOؔp����ed��SF����,��woT�9���K� �W�[a��C�C9΅���9�xI�a�������?P}*H�J���Jaw���)%�+<�㶛̒c~~л=]F���b3cGֹJwz��F�ima��(�k��KT��>]I��'��:��������/�P㏸;b��i����H;p;����R�m���ݒ�<7�9HR?�&�*v�-,�(.��<8��~�3�8�=�@h���cQ>����M�cA6�F�s6��W�r7���Q�&�I�C��^n���� �*+p�i�Λ -HD�3Ƹ!�n��zvt��A���� �v�:����ioqT�縉pj�O�9b�퍃���<F-��2/6����Q���O;��4��P�gV�Hű����F�ݞ��)7��S�6�G�G`���KD��{����|��8�T��?JE<��`��N�z�������<���e�Xw�g����č睊r-�\3JX�`�:!Qv�ig���t�RL9�d�E+X�F�pKB�-T=B�^� ,1~ zʰ�B��h���MuZ����,��^0���{����{�W��Ft�O��r�V�;Rs�����#�����]��Yr�6�Q�f������Aǰ�%�׃� ��9�bE�����]�u!��GX�9uTe�����8j�=�q��M9��iៅG�)���v̳}�5���k؊/��:��{�� }��qk��5��{Aǂ��䎶L����_@��+#-�띮Pg?�:�Ro�3�<:�{��_nq�U�l���ׂ�~�6�/�=O7�?y��=� ���Y?���U��1(JT{#"��?ؒW+���;�Q'���q,��ط��K��1Lyéi��9�E�~ ��M�4�T{sj�ԧ�Y��vx��_V�,����l]��M�3�G�� ���،�L�YB�L\��K! -j�T��cUk���J CI_uWG�J�k�hq�=�w��T���i�>Ƙ�W�&�sl��ͬ��j ����i���6 s�b�p���/Hr}���K��A�J��h�%h�x1�6��!J�[��{�|u��1J�U�V~���}�Ӄ,Jhڢ�[�����(#�V��Qz�̖�7�ݮ0�a�2ȕc}�f:��o��~�_���w����Ef+l�M�_'<pN���ƃ9��������ܴ`�M��5NlMx[~x�'w�0:�Ĝ�VWKUAUFHY�1��?dR�:2�_i�[\�꽀i;Ѯ}ƽ�:Ξ{3-�Q�\�WȼvZ��� �g��LF�j���ڡ���p3";\��yB]ʋ�x N�#h�爛�� Z8p�N�9u<#aw���g�YD�ƄmuШv�K�䨰��42h�q���t�?��5��W�ᤦ#�������f�[�}m� ���6�K~�m&����Ga�re�O������^�+����#��s��O������l��:�p5r�J �Ri�������N�2;�@�~��N֬�(9Rh�P����-?"�$� #]}i\G:��G����B狫���5�,c3�z�����u���}(���׀�T>[�F� zy��" ��P?1�u����1mS�P��z����h��"��-��5"��~�/�2x�~H��CB��A��*GĆ��%#l��*.�S#� -_���*�!�d�w'�)�/�1�o��uS�V:��t`��������{�t� C���%�D��5�8R�65��O�X�\O�儛~ z1��yZ+��L��iaǗ��g��H����d����n�P�o�4"(���� SS���>�zURF1Rm�)x^�����7cܥ���J�%_ӌ>U��� ��aGU�⾞� -Vhr�i��8��,A�+����~K������mI�I�[P��iC��]��%ʞEV^��6�f*���eQN���@9�f�G��D�Oj,���*�l�٪�� .�̒g�������N�Rz6f��F�Vqh�4�O2�9�i�;G����87��opN�h����e��&<(�B�}k?����qw[�,ͪ�ϝ�3�=���"�pap����z��:F8�q�ڟi�t����.G�}��V�3�}z���O�7QR}�]�x?]x�.��x�o� O�tYz��MU���N��m��6#$�Q�)��W��z��;�c��'o~���><~����b[��d�Q�[a�3���#>l�Z���� -N=�,)����N�I���R�PO,Ȯ�հ$��Y%� ��k�����y��o� -Y�l-�;fwc�����m�7���"{�E9еp<� W*љ0���>��G�x#�S\����E���qa� �.͍:/�z/�f{X:��f�k��@��Rӣ@�AzE���p�l�&�$�)ny��~|NҒ�^�'���bM �>U"}N�(��clU���jN��d�W����V�'?���]R� \D�f�q���8s�A8d� ��둜��_��TPZ�MӾ\���ssJ'��k���S�7h�b^�e���z���*����ꣿ�n,bp~�CL�pZ4�aF��0��� ��ƅ�|��'�1��"<ec�G������m7&�@�t�ҿ���>t�� ��y��v!�0��z`'ñ������=.2_?��/�?�0<�!�8Y��DI���2��2����Oj)�����t��X�&-���"�2?��i�>�Ϣ��W�sQMK|����� �8�Ĭ�鳣j�Z�'a_�Nz�VB�&���M0�!6�qhz'ж�H���{�{�;5)F*`�g2��Rr�-��Փ��߱��ۭ�,A��b�GӠ�X��J���c����{��Z����SL�S��(�z��E_�s�J�Ǎ4I�I�Vs6~��Y~ -$Z��K7�vtբr��N<8�3��s���k���q����*�N�������w��F���d��_w��b1^�^�����2�r\�� -���d���ZW���;�Pr�9�uH � ������uk����~o�-��G��ˢ��%4� M��z5� ޤ��0/�{�^��p,?�����RZ���MŜCڽb˵m��c4�q�umG���d�A�O-��*BZ?4�SE���� ��]F��$�I.�<�s�xKT��.�R��M�c��q��/���'8c"_�����6�F�;ʑ/]Z���?�3~<�`�6̉���F n&к;�� -۟�}����w�Tg�=�;봫�4[����^NBq�G�}����FMH�H�{J��O�F.6�g(�T ~�-�i���E9�*l�+�6�*7�����3��Nw���!���zrnP��#)c���M�������H��d�N�PݭEC8����*p�Q�in#�)p���z������ł�M�1�;� !\��vv YV]_n�Wq���� U\�9�T{K7�r^.��Qko�`�ǔ�J�0����[�Z -�=n)J ��� �ݢ�e��Ĵ*M���i��p�*G<�h�w �a�S��i�]�t߭��{���0'[�¨ڸ�t�7h���g���J�|�cm��p9�'�b� -}��h9�����g�o��J���L.@��62s,��p_��e�-��X��Xa�{:уͅ_D�P�&.�����nfy� ������~�'�y�פI�emr��OFLP�T�p4����0��u�y�* ��U�����K[uZkj�P�ͯ��c���*Nx9V��%ཡ[wi78����>���ٌ�$�K�k���VL�u�ki�9��C�<yq�J����#;���������l~�\�nd@]x���(K ������\��A��1X߇��7@[�kP��D�rd�z�� �,��1::{�i�@ji�����-�m�h�)�(��k��=|S�J{L�9\�I�ϰ;�2��V5*ǀ��=����FlR&��?���4p��MX�!|T����°?CSd)�yZ��Q.�"�1RM���#o��$���͵�I������0��Y��Oar��T*NjN��@�ۛ�n�P�?�vz�����en m�c���ok�4���Q�� ���0�#����S�?�x"1�Io���#��ķ͠��~aH��6Ϊ3����/*�O�?��K�u�������=�.�c=����"�����5�3�9�M����JW�:6.��=�-t̽,No -ǚ���_�|OUl���#e��Q��(�#\��*�ԐT��B�m� -�A��L�y����P�����A����*�ϰ9���d;q_�8�6DAL�m���{�G[��\�����.�qd�탹��kRQI*{:������RXQA��l3���\�rďU���Lu����QZ����:��Ka�na�j -ȭaQm��T�U +�Q ��>Y�(��LL���fX��J�N7aܱ��*W]׆'�6�Hmc�kP����~R��<�3�ٹ�8Z�l5��>/�<0)�Ǒ?��mQ�;� �;�b�୫�t�N���;ؠSn���'5eG�e����f*���i#�]���gB���}($�[��+w����1�U�����9 �T�ԩ�+�ݽS@�d���v=�#=e�ߜ& -w���v�L����[� zk�z?�^���0�ؔ'Y�B%�4b�ٿ��8�� 9�$��[�a����3��V>htB��a�l�\g�(M�1��h�^T��W�}���zDG��>��ސ"����)Շ��FQ}�K�����Gf��{���쒢�2��1�ڛp���D����4��NQ4+����H�UTk�^�����=���+P9r(����t�o�~-�&+[-�]ڃ���R�;l��"�ם�0�5�h�kE�9��\�@l�h��'�ZkW�p�MCP�fm��Q�D%. �� -I帤����fhQiGNm�������.>>{�漄��� ��]V�LE��z�9��r��w�w���@E��fj9 -���' �Yv�¿ �ލ7_u>�¥�A�B�K���-�*���(�OS�j����ĕޖko��Gz�� A�K��*wW�Eu���Ԭ�}�e^EeO'DP�1ͼ��#|�Y��G�;�������O���V2Wi���7��I;x�Y�#%��T�OB��:�ޞ�y��+�ZI����<B��Gw�G(Y�/��I�p�ֵ����\0Y��X�~k4�����hZ��B�(=���C�:�� U����2��Z3��t}�[e���.|��D�P�������:FjV�D����^�Ld�j����w���b�p]�c$c�YXM�6=�q��vf~r��>W.�\�>�&2&�����5e\e���P��#\z�?A&��Ƙڲ�� ��7��Kx��=�zP 'r��� � � -@`ȍ}�@��v�wZ=�$۬��×v�:���@�'��^���-;�*r��tH���N8`rD��94>%�Gc��G"k~�w�Ph�U��N�2fs2�:�P������ko�u�3���4�H���Tx�wC�@yT����vsEޮkO��DP&��p�+8�������Z��tc�k](�/�2��_)�ZO��<d���w�\�C�������.���+��щ�w�E+��>^��c�T[����p�'�Ō-ٱ��-s�|�����gi���dvU`���υ��3�`�H�18��8��a�pI��વܐ�"7/��Υ1{�c���$h�]��*�p,�?5l�L�����q�w����q������K���c�sJq}{S>��Ytw[�Wq+(��-E.�!��}���;G��wa��i��&��~�SRW��� ��u�d�]cx��)¨�(G�~ae�Hx�Iţ��]���g�/��]g%�Y7� l:&��<�l�3�b�G���o�����T���v�g����+E�Z����w������C��h�p��{���=Jr��z�M��$+�i�����t �����S�B-S���B�m�`ګ�@o��'�G�v�冫v�z���c;Gz�1����o>������*$l���-��#�D?a��u��f[�4��Z�` ]7\��9 -���͈�_|�Ή� -��J�q�p�W4��^��+�L����|�Do3i���ގ�*�H]Y�E�)�-�^O�ތ8^��_ � �Q I�Btl�����ì�cݣQ�>Wr�b��5aIK���s��fv�}�ߨ��]��2�9�ɭ�(�[�E�����cJ��p�����6����5j���F�vF�i�nJ���_b���¦�_Q�=)����Lj�k��Ҹ.��G}}�2� ��W�gBb0�mď�m���}�@���ڿ��#�[k�v;@�ZE�{�\�N�ƘV���¯7ǖݹ`1|w��%���*�u$-Ծ�����g��>R� �/#lzow��O�;�8G���E�q�7=�ڐ�i�����!w�p4-�m/�t�[b��(Kv���AIz ��n�>r��*��(�5�o�njun�Q�ӍB�����t�����a���*�%��ꌄ�zOn=�ZO܅�ը?u�8�̥2��g7��k'?'���]4;[���EY7��r�̼�����#c� a{��������S�6?<Y��ˬ4D����K���e�<���d*l��m�](�a�X�ƍ��n�����n��mS�`GRHϳ�EZ��9p�j (�M�am��0�RG��k�Xz�G�@�=6K%P "l��Y�俲x�W�I��QV�RRn!lt��d@w.��C�2yz�nbF��H��SG���̓���6�h؏���ytFm� V��5��:촤��w��ͭ�� -�4�ʉ\5J���89*���3" -Y3�.f�cS�h)� �F\��_T��O}��M����� |��ǵ3��O�!��I훉�y��.m����p��*�8V�3��z�W���jm�w2:Y�Pq��]��xWOW��g(��+��D�%���B�\�3u�E��j�W��@�V<0N�{����m������&d��a�Qr�f�m +#+=@&�>Ξ|4=l���B`�:"�F�{�K��uhs{������dO�W>�gU7��9B��53f�y�� fk��᫄�?���:(��gW!���+n��2�kX �'O��>Z�uV+lPi�sx��he�=�z���d�戜7�#�щq7in����]� `�C;S!��s�ί�Ӛ��>i��{U�Mz����ťW묣�j�ڳ,�l�H�7:��N�����64������0TF���[x9oi�O�?�l�6�,�:���U*��|�8�3���'��u�I���������o:H?.Ho�E��Ѹ�Α����nl ����I�ĸX�81 �n3�}��%at���l���S�\�H�4���%@I���;5�h�h�6�'��S�x��1��ߺ�F�l���1�-#���6��x���Nު��6R���NC����]N���_h�ÆwK��E���n����&�֏�7�pt3?�7����*���@%���g�\��t�TF�zyDiX�z�m�W.�Nd)\S꿙� -��)��ꎈ��^�y�=��V��a��[��6���}�0�Ҵ��t\3y�-��.X�����=�9@J���W#�6��M�/�i#���(=͓�����O�ފ�]�t�,�+���u�+���&݁��4�{u���Q�1����F�?�B���Z\� ԕ�T� 8 --��Co#H����,�&�G�yj����7�ڹ�t/�F���[������ʿtdmƢ�sG֘���)�`��P�>j�*DKջ-��>��:�j�(�S8�W��n�x�n:i�)�7sT�iu55�'R��!l� �o�r���9����8s�ic4�C�B��1��K�:Qhu��`��7�ơ�h��(�/�4%U�<�~ܜ�XRN��G#��6��,�m�j��Y";��<-� ��3X�!��}z���戰��m�ֱ�%l� H?�\qY�@�R�6���\&L�@W�=H~�={�%�[�`�?�Ӈ�3�=lk$���)�է�a���,�\�c��7�X�h/�Q\���9>*폊�m��mι�1�J7��1G 1����~ �d*��zH{Ѳ�J�I��{�v�\��>K��S{PX��`�I�����fBa'�����MT6.�8��f��6����P��p:�>�T�U�W��j�N��Y64�#����|���q2t&��D�}�IN5~8��{?��._ʺ#��+�ܑ+s�bB���I�r�y**^����c���,4I����wzR�6�.��V��^:�k�1�\�U�Vt�u/�㠢��}�$���vlؙ��� ��7M���[o�����Yz�� ��Q�fGڧ�n��^a�P�zi�G�^�s� �~���*i�ed>��*��֗S0��·�#}���� T��R��ؖ8D"�^ �����&��^G�(��˄6��m���}�vZ��N!t����~�%���7�('Q�m1�״`Q�P�J�UG���&���fֽ�_Jg�c�����iZ8�㨑�1h�1�'w��z�J�Tҁ�c3]�ʗ�-luȝ�kjf��]�a�e3�ԭ�=pۡ������ �H�����tn�$� ����C��- �Uq)�.L;�"B7�a{���#�5Ar���{� �� -M��|s�����=��I���Ța30��:X���3ڵ�fԃ.��O˥���Gv�L��3ȩ�!�y� �e�yO�����!aO�{�靰G^s��DL��6����V�|�Gp��9& ���>��N����Q��UQ�����&|z�O�c�]0�6�W��'7akL���*i)�z��R������!��#���c���>k��L��^�L��������R�I�"#�z�B��~l}�㰽Rq�zw�9>�"��Ho:1���az��.�aX"RO��=�̌�Ke����{7�e?�o�˅��g�a -����>�X`M�y�(`&8S�����W�+��z�HO�"��%�|}������1����{L��'�7Y�B�X66kZJ ���<*.?0��)~n@TT�i!��L�Vq�{��GF6� Sy��x�"���u�������A��!E?�\�[�i~io<�'苟H�j�}c�(lpj*u(�Dĩ�"p",H�7��sg�:>`���W��l~�]�y6��_��U!6�!�J�ѩ��L��TI����2aEF�\Ez�n�)q�"��V4�,�B�ҁ�e����~�����w���]��@d�w(l����C^kp�,<8+�]"�T (����F����Tm=�ɺ<�@I��{�Go����4NW��G;{���`���7���c�f k��*K��_��fv�D9���4���+�q�m_�D��7�h���^�� -���PYZ�cC��a2Y�Id��9�1˪jX�e;O���vl̑��BJ\O<(ɪ@>>��T��;�D"�ѭ��~� -�<@�C!���� Ͱ�c��ա+���*h<$�*��IGq{����W��[�F��u8�.����Iu(��&l�C2���`2�yrOw*���g��A�H�Τ+ć�:��QI��Q[�,��B��y�%h1�:�!���(F�d�-�%�8 -����B)�H�jƕ�0̈́�m���]i�=�0��lO�a�/<��� &�ޤf,�-M��M����^��F'/@���]w�]�SU�YÆ�P��;u^�/�={��O\�������R���qzk:��[5!��3(Z����ZK,w�Ɯ��`@4�����M�x�v��<0�M$M�>z�����'�o;v~�����s���O�l��bh�����aV�7*�?B�V�m7V;nP7�U�Q���2>H������l�৶�$���G*.%4��)�~��V�ͩ=E���h���F���E�|6�o�PH) �������f���#BG�ǹ{�2m����\ �f��AmR��¿�p����K�#��C]3�-��H�P�I�qk�*!]~C[��ކ����{ŭ��V�!��曱��{B�������}/�?��c�p�0��Z�@#H��A�*��e�G��C+����/~j�6���`������I��Q-r��#�ն�n��{�|a��ب�>�t��� ��y�!.����'�6C__8�������t�`�����fw��O�w��ĞO�Q�'�����i���#)gՍ0�&�G��e��=s��Ax���[mB�υE��$��b�����nd4�8�P}�EW:J�b彅ZWWzo]�٣zҳ��Z#7k�� jt�p?_��Ņ�����;��b-���#�ф�Q^�Y�א��}��́oơ�-6߅QB#��ϛ��f�K����ڒG�L8泲ԋ���ӳ���^��R���cT�TP+�MN�6�0��8ٶǕ�l2q�/�|��M��~|���"�����$�p�H���EA06�R� �F�1�60�j*� -��i|�Ml�ZT�I�tI�"|떐"��|a�6P -ܹ�j���H�T��,�;>�z0A~`������.Z�p� ���|��e�V!�)Ǵ� �N'as\����Z��/m^U�#zn������2w����`y�����|�`hO�mo�Ǐ��?�����P��͗u;�s�Ӱ���������D_P���ƽ[_�����1��V)����S�VB��dU����C-�W��z��V[���{o}�����q^��W�Ӈ��/�|^~�_}����@?��T� ��Uޚ_p���[����g��MYt�ƺ�WͿs���������隯y��������Hn,6�?9 ��N���O��fvx�Y�f -�q�4 �<U��8ڭ9e� <>w��3}����&�Q?���ܻw?�ߓ���$�J�˃��(�P=7��CW? �����M�7;<G���M�Zn�VGVa_8xC�'�ik`P�:�U!l�+��������ā��8ʢ$��m��:��~��/|ਰ��*�#�G~}�K��q'HK�E����K�EtC@ ]��gν���z�����s�2��������,}±_��J�D�Q_���2�����J�u"P��a��z�j�õ��"mo��5�N���K��78��3��=6Q�C���h�/uB����[��j#l�k��u�,�پ�(���Y[��)ee�XrR�����3��C��9�)���*gE][��45ǫ�b�F�f$5e���ދ�����}$"c2�,��r����]�H)���I�0b��C���#�"lѪv9S�'�"�?*58�`Ϣg���V4�h7�������#�;hs����u�y����Q���^��X'{��E�,�Fa�S�@"���{KT��g_��3}1�/�X�<�J�%>EGjDE�.ڟ+��#�~J���$T@�VI�6������{�������|�� ��EteאuL�q�����S?��*U��"(l��VjRZ�E�s�P�]PX�}µ�{��T���ӵ�C�z(���"�v��3��Ou*�� ��cSק%V�w�_x�G���38�+���'�7�e�A?��xޡ�t"��q.?�ʅp�"]��/u@Y��/��9���@�Ȱ�J��x3��E_� -��� ��VT���H�o�^��j�m��ƙ~���ʣ��/�ir�ۣ�<�Q�~�(F�ǥIM)�L7XA�Eg{�3С�j�~5�2oo�F$�����M����� -N'�:�Ki�"����C�rz�g�Q���@�̚�^\+T=��*ux��_A[i��"��i���aq��)w9R)���_5 -��6 ���D�e�監���e��ܺ��vg�U�QY���T��gQ�Ƚ�,\�I�����L����~��7�H���DF ���� -�|(~���H�(�-T�Hv7`7�ډ�(S<�E����/Uß�U�����S� -qf>k�l��e���9k���3����m��9��~L8���E"*�-κ-����y'E����X2����?vUsTN$��jv>ᘕ�&v�N@"h1&\ ����w$��jS�(_OH��F�[p�:�@�T�����V�%ʓ['g��*�4���ՙu�:e$��j& }���߄c���R�V��3���?��YN惽FGV;�3���qE��������n�+�7���B�{��ľ�pB&��irݜ@i˻�� -���;ټ���@xvk�A�E-кO\l�`�uv?��S��JFM- Qё6�0��4�f3q$���@�h�b ���;(���3�ha/�o��5�8Ֆ�s��,/�]�Plj��}e���M�K�7�.dr�k;}7b��E��6��W��Y�Wlr��9�>��{�Q�d,J��6�u��\z�l��؈=�I���\�.�3������+���@���$�܁����*~�8���6�@�_heB�����|�E�n|�$�Ū2��Me��,P���&����;p:�أ�݊c���=�W�l>����S�����J��:Pi"�:�w���mʱ�j�<�B����Je��;[�}�6զ���G����=�>ԗ�-XJ��I� ���^(~%P����$O�>d���mۙO'�������&+e�ttBR�K+6��S� ��m����\<(���3���l0% �׃W�>5��b}�-O���(�{��������{_Vvv�1?�� -����0�{�Q-����m$γ�b����EZY�`��3Ϫ�b���M��2�6^�������c�調�����~�k�/!m��"���Q<�8�s��$���;����!3�q�t8���WZ��.�&m M�樫����tImBRp���7/�V5�1&D�� ö�����9�@�$�-q\�ƛ�y�ƅ� X��3"l������<}�=�o;t�Sԩzy�5��&��L�c�,ek %!�Y�i��Tn�I�Xx7�gS���Үd�ݢyy�=�o����;{�����C��m���J��?��A ��>>�͖��d�pRĶ���܂����O0�r+�ܧ,0��z�H��gf�K�T��5�Y���'_k!�]#�G�/����}������M��zԨE�`� qZn�@>{��x�mt|�䊇�YW#����{�����=�&��U��������2��A -���;G��.�p��N -G�{�'�k��]%�'GG��S�1�A���3)@)�.�S�8%zύA[��^i]��n<�~- �Q��]q���y���~s8�(��M������9����¦���A8bW�8*��;CV�(�wO�����{�W�:אE%S�ۨ\������G�Zj$�4�hy�W�)����-N9��*-:6��� �dԟ�'� b�&ԊM�(e���YN�-��rQ�?X F#�D�`�=�9L�Iص1["����q�T�>� �I��dG7��B*ߓx)�Q{&�~�a�U�P�� ݫ��D�%��P\���a���d;�j,N��a�9��X��r��~����ͫ��j�¦�\e.�LɅ5>ckrֆ�NaJlF]'ǧ���V��=Gy1�qk��v�3T�t�O?l5���U� ;���p�M�֕�iG�m.�O-��Qm��e�%uH\�PcEj����b\�&�wk�t0�I� y��㩗��}���ѣ��(�r�W�����i��� ��f�gU��6�dY%�-�^��7]��pβ��S��b�-�U�3��a�����7Ʌ ܑ� бi��#0���p:�v�ϽMU4bf� Rڵ��v '�k���fk��{=?�k8H�!�h���ƂG -�aa9�۳���H�y<�hm���Ԇ��J�_���B����c��L{�)-:7� -GW{�/T\3�����r��>�n�2����c�g6�����-����/'����V�/���𣚦 �v`��� -���- E�hb��?����������b7ƪ�i��h�`��F���\O�Ixl#��џU@�{�=Y�.x�lrfA�k���?k6U��1��쨰�&�]h��P�/�⒝@�3Pvɰ�ٖ'�/��Q��'�19u5��������{V\vt���> -�Q���&n��f70Ҁc�a�/�R������⍋;���+*Ve���A��F_c�i�6��i�+�'��ȉM9�!�?�A�S�ڼ��SR��u�:,�6�L�f �a��Ȉx��L����N�YA�m��-F�����[�<�և��N��я��n����i�����sm�S���v`��7��{2�N!�U�R� #v���oq���ˮ�;��{w��<�ݻ=?�O��P�GLT�V�5^Z荮�2�I�V�U�N��T���K�;�#����̎oo�ν{�?z��gN����;�|��e��v#�O}-o��):�`1��O�\�49iA:�q�ċ��9�.|��}�N�O�3���+qDT�Ad"x��V^O�5��ai�u�d�CZ*�r]$� �^Z��[�>*��d�p#c���1Ҷ9X��l${�B_5<4�3&�������n�f\o<s��>��7۞w\o��� �C��m�r�jb-�� ��j�s!�;�c�� ��'��b�;��>��+���,�ĜQ�P�j�Nw �,_���;�)ܩ6�Ʀ��Q�Y�2Ԓف�Lܲp��?�Ow�JL��ҟi�T�Mw�O���4ó�ቯmn7iU�a������v���;�Л����d��V�mf���Ե���Eu1�r�Ϧ����^�OӀ��;�}l��^"�KxhC6iA!'�6�9�I������ꃔ=c����S���Qz�L��]T�xw�R�����)��݃^��a���&z�ޚ�G�a�Ӄ(���Eb��� -���7�Jn���l���:[U���{b���_�� �U��/�� ��3m�V�Iz�L�=0}��l4z�R�2l�PD�)�g3����n��[��C����c���Yp$Y�S�&�d�h�Q�81��F)���n$$O�$�l"'j�'J�Ȍ�'ػ'�7��{��v�.�����R�����oOv�}������ͿR�pه���Z}���_xƶU -A_wn�m��� -�X^�Gp���s�R!�6�����#�i=����v�M���J]�zC���\x��]3��S�����!����}�=C��C���S�|0�Y|0��⟇�g�[�Y2N�4�3��t�]��E��� |�uGI�O�~�O�}��w��$��ėj��� ��t�q�-� -�PL�=�~�Z��d4T 9>���Y��Rm�'�3���,c�Ѓ���L��h�Ԇr���{x��\f"c�S00�b��t����L��#��3��VA2#V�p�J}��������Y��`��1��T�9�dd�`�����J(�ȶ��eW�iL�/�D���3�=����N�oo�E]�j��^�Ļ�;��+-�8����G}��HJ�|1��MX6��Q�;%Y%��:Q��:��+�P��YN����:#4Xca_9��z�Z -I8��1�7�b�& -U���#OY�%^Z��Zř�h�g��9���!��������3��Z����*�{O����g#��ŊAe~^n -o������.i?:�>[([��@v���A�W0��t�{#�,��5����d.QQ�|�u��g�����Y����IQR)Of���0[F:n6�i�֊9�ba�����Ct&����|Ĕ"�|E������� �\�x���(��d��V�N Ǿ�[�B5ɂE֯���̘I��!����,���=}��f��P X��A��v7��¾�"ȣE�5�_��s��3� -gGϡ��=`7��7� �u�L�x��)�UW��k����A-�l���#v����dW�*�iX��� �����U�{�5vk��/t{T�p��~|�NF��4��r��x���B�������E��2���?3� BƑ�.nb6PXMz����?� ak\�Z�oTw���ͺ(qm2���Z��1�O�_�F5���G�������[��M�f֬mE�&�/\&|G������Ө/H���M��t�j���:�0p�|d,�a��&�,�� aKn�>�`�/K��U��}�ە��������_�+��L��%�8��m8�[���a�/�&��x���]ڜip��n�0��JDa��Sܲ��`s:�G4����G����[\~��۪�?-r�#��ϰNg�.3�W�"��Hz��Np���5�q�_/�`�t��x�0���_�����#��Wǹ��]��+l��ˣ> -� ;�ȌV���f���a@�2ؗk�7S4�~ -\R��.���^�~q��wǼl�D���������O|�mO��*<��~�s�!l��>�k�`�e�\� -ۤ�u�Ǜ�'�_`�b�@(�,�nLjy�ZDp�^y����j���u_��*W+�<�vƍ��l��"@����;�ʉ.��(xR����(#_�XD�R3mz]����~�P�>�}�s�^�Za��vDrP/{s���[e -x �lN�z%V�I�,��aX﹣���٨ò���*'��(���Gp�MöT�0�B�Y���53۟��'����֗ u��K���o���S�y���?�+����Tg�e��!b2T�z_APg�K#�Q<�f�O���9����&�@�#~G����?�A�K�?��s��N�YX���~��0^�D��)�/i�n��a�����~W#�������i�!hH��GJ�;��2 ��Q�ʩ���#`O4}f윣GM�E�����4ӄ\�h��,C�ZC�ܕw3����/���Gw9�%��VVȚ�� �HA鼩�EvY�FN�Ї����ׄ�#N���<�2㦨�9�&ڨPS�ę�|��C.�e1��W�Z�������Hp.�o���=?�^~|_��`�b7rȍ�ڗ[��j�9!%��z)ͤ'M��:&����$�Ъq�K�U�}|��Zإ�^ �v1KyWi�/�<�5.�6J�W�Б��q�d�B�� -��pR��ͥ�� *��5�A�G΄����t¬�s���"# -�~x��Z -�vYЫ���*��ū���i��T�i�y0��p� �\�-�X���mt�\���Z���=����ɶ��dk�CvYbCT؝�4��@Q��7����1�I��ԡH��x��9414w%~�d�U�#�[�|`��b�3�էߒ��QG%k�F$�/���Fկ���4�i)��Gr���B�?SH{<j�J���E��;���\5�O�&�!(�=غ1�ԗ[�蝲���=�p[K�%��-Oٰl,�cc��=M�.��F?�kZ��f;�<BEOJtp&U:�T��C�g�E]Ռ�2�T��ȠB���(Ŵ CQ���D"�c�6:�U�U�n2ڣޏ�ɒڔ��8j>Ӣ�l|ᦛsN���i����Nk�/7����+���F��RY �vJ/�Gϰl_`�rt����KT~ KO�Q�J��x���}��ծ�2{����v?��m@�g��g��FD���6��������B�,��ȸK��ݺ�s�{�\c�`� ��|T76Y�=5wƸ���Ԅ��JB�A�c?m}aI��D�R���0UX(#Wۓ}Z�� aet��o朶�s#sD�P��2���b�*��3��l4�;\��2 -.�F���4r -..��/�*���\+c���k�BcLasC���N y�ӱ�5Ja�LD�`�]��V��yz�U)=>&����eru����sT�����#���>�9�oe�Pġc���[YC{Gac�،u�S�����̭v�����O -s-$l�+(Hh(I���9z�[�k�ԑ�B����X�Єk��JU5Gݢ�x�ΰ9J����d,�ڿ�R7���{U��.^E�L:�p�R���ס�q�c�����ϕ/�|Ǭ�-7� �����Rfy�-=��`2�ē�@Em��m���C%�\�X3�x�z�H����Y��S�_[|��N���b��4)�6�c�y�������O�{Ą���P̒�b���� ȀkU=1������^�]2�����?�o�m}W�����+s)H���W�߫����o?�}?4?�12M�UH�������닛+�~��)ǜ#E�7%*y=�9dž����LE!�����/l�C�Zv�w^�>�Z��8'={P>�sJ!��j�@��;3�^ -v:�M1�dU{�!ņ��B�p��L�L���8�w�& �*�V��d�L������)�A�\�-��"ϵ%74@����22ؖ5� -)X08DG����@���V���m�Ef�p@�Uxc�X��j�ބ�<N"9��3��c�]@}K{b[��>��W��ސ�ZP,d��2FGlne�w�xM=eIym��=��ϖ�'�������w��O�C�?��y���}��8������3����ýƆ�ae��w��nX�;�^+�^G j�*���-�fNH�ܾ�U�7�J�����5�9�|e���[�S6f&�V_0��^�������`���l=?�iQ���a ���w+w��M��~�f*{j�;��k47i#���>�4���X�(��������5Ch�MM�W���� -�5K�m4�����==\��%Q��b�cᱸ��/��6��%����u���(���m��=�S�`�ET�A� ��(�����NWy�U��XG��rMި�͊�}Z�+Tq�Z|��o*��� q1��Q!.�7�ئ��l�/T�r�∤����S�qA�/�܂e�'������H�tA��^$�9lQgH��TY**%e%��עTٵ�{i� �@*" ��{��17���5g�Ź;o�o�����G����Lsfu͞�I ������̾�[ijY���/�(�E�5d�{��x�1��r��-�l���,e�t�tu� l`�Õ�/�͠��# -/4�ȏ� ���K(���H����9�#3�R�ԗŧ,e�#� ���|8�x���"Ҷ-U�A[�3G��YN�r��`#l�)"����5���yFS�1�]__��ڊ�;�x���m7��%i��6a�q���G��h,�0k��R�.j<L��l���M?Z��7�*���J�Nt��C|�[�C;�ә���X�""�ʼX��kl݆�$���[@)�Ǚ�NgV���P�4�����G>�8L⟁�Ti��2'�%x��~Sj -AkOY��1 ����6m��E����[b�kx�봺+��JĚev%~D<E����?;e�����2Nل$#AdB�a�^�?ZJ"3Z'�.vwig��e� �u -U� P��SN���`(|� �3N������ -�%x�� ~IB+.���K��B�*��9,nHΙ� -�+qiӄ�%��r}ރ� ��8�x�Q��V�M�i7B-��֝W�ʣ,A��ums�����Ў^C� -��l/`���B�6D�����^���n��YigN�^]��8�k� ����YD�b�A4��r̬�3�x8�g���B�5�Ƙe��'�C���ޡ�[�ʋ,+ۑ��c_�p����!�ڊ$ nE���9�������F� j�t�I�lE������k78<�3�r|/������֓Ł� �M�o��Ekn�D��v��3eR�*���] |���� �iqb���(Ŧ쥰�i�Dd��8P��Q�6�E�̲���Y����ڽӮM:�bpa#i�Q��,J�_�n{���: ��m���\�|����v�*�¯��� ��4������$���a�\K6�%��<�c�4�ѥ��� ��/0"�"�R��=�d\Z���b[e�"��5��T��M����7�MZ0���z����m7H{���(��e'%��(����il$�ۋ �[�Ѳn@�2�ڎt�dA($ࠊ���wa�+��m]V]�,^��FM�G)��9"��bRX'���Ώɦ�e�d)H��ls�`s����"U=ye�C �X�"����5�I�(C�}�� -�J�ҡkQ�ѽ��X�������>������tw���dZX�l�콠.�6� �k���t����[�fYX�҇��� ���:�d��G��0��ɶ� �D�Ј�k� ��0�/��I�i�P���j=1K�"r�r��Şڱ,4 S�|A�����!�a�np�>x��E_�t�;���H��g� �>��id!�0�J�N�n��|+L�&H�d���S��+�ܟK˥�����"�7��@d��Qn$t,��7P��X��+�.V�[?�[��)i���9Sf� C!��gu�=q�, -�<rn6M(����'G%P۟�r�ޝ�P��/���՞0(b�k�;Z��#����v���A��z1a� Q��8i`�K#�`l�?)�#n�ŠüDȓ�dw%�N����6V�`�W�s���@65˽Ji�z �9m��p�ø���|#x�� ��f���V&f�4�����Un7Fw�����`��ԩ+�5�V��'>��ʳ���᥎b��V�]f3����|�n���=_76�A�.@�Dz��?�"0i����#@�Ők|&�1�V%������Ͻ���'6=k�$��B�(�ȿѻ�ժ�4M�ख़`V}�b���T��YH�(��Ҷ�D��-7= _��� -�<������*��c������OKuo7n�j��-+��s,�qA<���G_Ug�ȄZ�*ƦA��WN5�����-#0� -�F� J�0��u"s���ܽ}������OMk4��:��K���<S.�H@5��Q��劾�:�1��ںNƘD���� =� !�Ulz<e�>��Q��������A|��vM -36%��N���������fYBb0�j��fS}�0�i��ko���-�z���I(�?3�S-�@���H�<��C��R:?2�)�n.P8A/e��('�+�~6)*����;���)k���(9�3O����Ä~Ǵ��{�wKD�a�RpX)�Z����P 22�k� �2�:��V�,�@���*,����v���ڪ>�%�ۻ������}��q�)匇3 -�]57H��������:-����I�&���~����z��<��H0 �W'��.��~� ���l)ۖj���]W�hp�w�x��6z�%w�Pv�w�0X����j07����z�I��y�Ry���q0���Q5f�1<���f��Tfϵ�m�Ǹ��=e�F�:GaR@c����ף[:\Mnj�����L'�=�ce���&,#X��b��n�T�]|���l+; ��G;ʎ��'�~G��C�C�%j�{��_lL���J��V� ���y�Oe���'25M0�.���a,�M*�3,�eu0�D�ij����WQ�B�������K���(N�-��Q`�hR�v#v�YU�xc�o,���f� \{2� �=s���|vH�e�tL�I�Z(�32h�|^���/�'����=��# *�������������we��;���u@�T:�1�#m[BS:sn6(���Mп��C٨���q'���^�)��+��EXwi��� �#J������h -�ʆ���s��+�2 -m�O[�8"�4�j�VR�P��i��Z�M���vw��/b�����,W7Ӕ�P���%8�� ��`H���Ka�-��_���v$o������$�3�-C��W��k�"��zT�0v�M��K<#~����5�1co�O���v������n_����vM��:R�-A�Qe�X�E~��㖲�Q��_M���Њx@�ю�E`�^N~&��!��/휿 |�����-a�Q���x�^��F ��b>ϣ9W��t ��d�1S����r�f�(���H�@���-���8�6�o��(�3l���V��luG�{e���XO -sXc{j�`rd(�|#�x�C �ܵ��x��!O�����ۏ��d��Wf�x���_y*0�S2<x��%�:{vu��߀�吾�Q����)�V1��9�C�h�ksl��?D�d��PW�f�"X7� �3ˆ�44�P�fh�uOh��1�� Ɣٺ0Ӥ`���A#5a]���,�dyq�A��ܠT�M�pX�Qa�-�5ӒV�zB]����}��k� -�$x͌��x�i���Ŷ�ױʳtxz�s���H��jt �j0Vsj�Qn��P;b�@�n���D�5��������S��}�����,+I�Ѭ\�ގ}���;��_�n��A�W"_�Q�d�r��=VlF��� �U}�[P��b�ŽD���m ���No����mjcУ����L�:=B��(ě���f�\d��a�8<��F�b<� �!B�,R7J�1�'�O/>�;��g(`VTc%^�B��t�Ǯ�{uʼn�&&�Z!��" �C��}l���,�*��%s��*Y�M4�,x|F?>>�pX�p!8�� FJ-]����^����9�@̨mrԨՊ|/��3��e�2���;�I`E�w`��3����ٳ��6��Q��`=�/@�/D��:�l_^���ք���� )�1�7���zt���0�.�H\�g%�"O���\�NaF*Kkѳ�0u��-��D�nW�1��h�-����aX#cU�*J?�Z�=Ӷ:��0���Z��h -'4���ӚU�|O��όI�>�&�t�D�/�M,﴾��d�X�4���ͻ�3㦚�5�Ǯ�k��z�DDq���*ͮ��(�������}g�V:|ӳG�s�T��`vd��d�w�}Ϣ�[�^��]�YOVb������qS�01�W���z٤��i5��;]�#VʜC�2U_,!���Y����<*} ���I�7���;����4C�n��ж7UC3�� =�|�M�p��1�#��r<�t�f��┪5�AZ�x��a}���7f��+Oֻ�g�Zz:.�L"��p��5:�=FǓ��KAA����5��5�l���kOq2��Αu�Y�9y��D�그�a|+�����א�v�4����(�����|���~o��'W�{�R<�#LMt�P垜��33]�Tb -;��zG}�/��������e���,���/���&�<���B�6��UP=�^ �*qz�:S����>M :N��d|�b�2��EN�z�+0&�;ժ<�8}P��#�R�Dy:�`�ܢ�S�B�q'� -��&��o_��v��e8����*���(;?�ߛH.p"�S���`�eD��E����(�����P�=C����\C���n��^|��)ü�Ο6��d]87�n��S �\OA��)��Py��3��s�>-�DK{����Z�Wנ�)s̘�����x���tDe�(�/_EKb��h����O�=5��*N�u�u�9��r����K �Y���){)lm�������l���/TY�C괷���f��s�T ��UX�#�%����"4%z�E��.פ��d�9b�s3��5��=%��8_�_|:��.yL����� y�W(�1��I�r�\!��S��@����C��k�/�{�:DN����16PԯLM����� v��n�)/��: s ��f7�*0�ȉJHz �'�h�Q䚍�t/=�K �4RSlR�u�C�zG��2�t�([����t��}�����Qz���(GXziͤ��ɺT�+v$��Y�Qt�+[�������t��BCa�N[/+�� ��<�Lu=���aۄ9gs�$���ḣ��P�Odd�p�;+�� �͂Y�^� w�}�<�Nt�#�{� C{�q(>˃{$B�5�;U������H0� �3�6l�1BR7�%D�}f�3Y�*�Ɨ��E=F���m)5�d�N{��l-6np���,�C�%��{ZU�@�t}B�%1�Hl���� ҰI������e�ϣtz�,������O|y,��F�&X6i�2~+5��,���0��i! ��r����� 3eKR�����T�X/�:/b3%߆&���� �?����~Z4;��Ӌ���Lm��B�o�H7+�x��vב��u j��7>�00�G��;R7��RQmA�`o���\a�&7���+�hF���@�S�jР��a�wL˜-��m;���(���� -�J��9]����8�ꫪw$x'�C��0/��>h�&}��4�"���m$pWG�v$p�m:���m����Y��yǙ�~HGB=~dR��S����el��8]�ߛ�u=��)��0��7n���� ��H��c�>� � �7WƢt$ "�y��0OB��1C?���,�� � \3��œ�T;���ͮHI�4�O)�,��`9�u`G}��n����c7e��A�jK�V@��;-����:�e��7SS�<K\S���k,W\�砄��s�{Q<D�����DM�ʳ~��)�nWt�3e�n�qA�T,��)B�)�̸�0�����9-35>�U�Jo6�qp?XT�V<���v�i?��,������a�������(�sCØq�+w6�ݡ�����{�#!)տ���oT�0�;K�c ����9��YD��(*Յq7�6��#�0���G�H�@��鱎�X�t�X��cY �CN�H���sa�!p������r��������e1,e�"+x�q�B��ȸoq���J�ȒB/��s ����f�G�ue�R�l����&=piw� �0 ʙ%�����<ZQ��y�ˡ3Yw��@��ߕ��;5ɝ��=d��]�\���n�n�����xv/�����u� Nq�`f-�s����bp�8����t�Jx��vO,�(�H�� ��=�Pw��zj�@�e����d��-��X�����Sl(1C�Mh���] v�g,���vO���@ȑ^���%��'��lu�'�u��wD�YW�4 (�#��y��E]��u�Z����Vlg}�4|��V6t��<��_�%�p���v7eX�1'B8�(��+���*H`YA�4�F_����I����ɻ�Rx3!Fq3kbN"������(��w�$��9&J�F�i���d��m^6OW}͔�.si �~+��k�{�CS�J�}����Ȋp[�9���0ᶳ�*�T�g��edz)?#�Ek�(��)��f&��4�YحY<5.� -R��Zes��t��6�8��Y|g���M&̧���4��oMD?��C��l�69���4�Kפ�i�pT#�py2ް�`ٱ�dS.����Z d� �y��K��R�ʴ'���|�zN{$�g��)��u��1���=]=W�LJl����T�rd�B -1�bFR��D�i�VY���:l�ƿfƱ�s���<�ƈ��C.��>z��?�ʔ-K�� b`�tH?��vs_���|W�}�c� B9��\g�����3*[��K���v�-=�7��$�Q`4T.uv%���V&(�p/���8 -0��r�O�TRG*��"0�2hs{��,7Qu�X����ӧ��d�X��Q�t��0y�O-7� 2��� vL�]������s��#�e���PS�7b����=���"�@���,��Z|I����t+��#�qQ� ���=b����*[��B�>-�L�y�J� -�di�$����i����m�d<��S��`R�ۤ0ϐ� �mB~�m/�R����@|�|�Џ���3W��CH���m@I �8C#lcyk`+�l�oW�G2��9�ie�1���J��R�@�h��v%��ũ���8̄��g̭͕GOg ���J��{:�H6��7�2�p݅(U���e��5¶Fu�)�u��_96��L�۹pZϨ�A��ˉ�����<��0h?�*)�%2��.��-��SYk�fuW6�i��5� �����*0��O����y�އ�mo'z �"�hΕ�I8�l��)w%��g��+VaJNh!��1�_��<N��ÄM����軧���t�g_`]��4˕=�"�a��mI��fPF�r��kX�� ������iӢ�ncw����ri�\i'���G��xL���ʖ� -�fba� 2c���G�A<|���5�[����l$L����|�s'��oB�L1k �d������ѩRmd -m�8��U�.W���r�W�$�Ć���j�p-���� ��):T��U�d�A��E��dߴGXd�7s �V�UO��!R�^�5��˗��۷�<���&Nr�/7|91�� _.��s�����펧^���t?W^�bW�mo���s姟ؕ~כ+1�=�i�$�%X�$�� 5��q���-� �<�ܕp�fG�Ld��]D:t��<��]�_��`r���S�?K1Ņ�NJ kEA<�o̲��y$!I]��ļ�:RQ�]�3�3��nz�Qz��'�f�;��������=�պ �{KG�LAؕ��u�_��B{�������t�^�Pl����b�`��r枚$�" � -mX�G3RA��o�������<�Pn*��uKz�=~�6�;$��l��2��z�|�L�ů;l� .����C�o�:�6����?m._��3*�)����y<��'�"=����J4]�itlw�H��pܘr �S_2 -]Q���'l�X��%�#�R���)3���7��w����h�(�rR^<xJ�t����u���u�G��p��/�yM(JW��@v�j0�&9l;ڮHŹJ\��:*�$�Z��S�����e�A��c|}��y���:�0���Ŏ���$�dg���������]�2$�k���Y�M�D�|Q���Tl��J>)�#��K�O��[����z����tX�V��H����7o��� Ӯ";��3/v%X��HqR[T��VH�<�%$�9w��P{Z���+A �]�z�f��fq��ghl�C��<��1\��lT��t����x#?@#R������B��������lZnͩ`�kO ��A'f�ͦ�ic�ƍ�2�%��,�%�'�}��е�ɨ!��Ҧg�JE����J��'_@: ���>b��i���T�(ۼ���^��1�����/h��ܚ��M�m뗶�sm���m�Ʉ�eݧ~�l��h}�F��7ը({�o�d��>j~8�wOOGb����2y|����1ņ�6r2e(yO@)�������_y{Z#��6��q�= �h���V�s_�Oh��M�Ҥ�N����tϕ�H�� �{��]怃6Y�=�R[,%7�Q�U��O���\��_�a$Ħ�N�P՝���9�D�K1+����&2�Uq��hd\�q���-�i*ȯ�z�@��U�Y�~�)��Npn& ��WT�Q����I�=37¿AOQa���S���s�<�4F��0}�Dߦ��ςG��K �jp ��R�!��~o��xt�հ��p�������}��=��l�#�gj��"�gD�N��}��a|��_c��{��>ЏrZ��[�/V��ca��Dp��O`���<������ЭЄ��_8�.�auqO�-�f8��b_�<J�+(����� ��UA�ש�pn��V$�a�����~�Nim�}�.`~���x(���I�`�8�av��K���s��Ln�\��,.��o������ϰ����1�~�D�~FM�ca��c3o�q_ �A�F�Ed�r�!7Ѧ��o�QN���Jҿ�K��,��o�QS�.��[y�mV�I+���(�/~+�����7$a[��X��E���D�n`��jϚ�]K �P���ྶ˒�2�����~�\1/�z�SB�!%�m���5�8�Ƈ����"�8e��8�͜<MXJ^U�$��<��w�<x�k�T4f�d�r������;ja�%�<�?�Ih>sl�֬�Љ�ē'5�3�3Z�_Zy�02 Э����};�-�(@Xy�i}0 k[gT����s�ٰƴ���J�,`��u�-��Gٕ��ZX��Q�poÐ�R6���زl%-l�.��ޛ��F�T 2��rX���A��X��/�{bv�i5������ށk������-j�li$YJ�Md���c!������s@V=��)����ț] �$���1 [�S�,�7�9�M�ֳe��xC��T�YD�z��Q���&����m�%�Cvl��6��P���g�H�1���A��]x*��D(g�\e94~M��H�+��4,��2��H_��6�Ӻ��-1�T�H���<�$&��cŲ�R9B9�%�2�<�_���R��[~����� �������A�67�a�H�y�|8���(3K=պ����l�dI@��M$}��Ye[��Q,MMP�F���!F̜O�yA$<+֓�0���Ya����P5�]`b�$"沬X�R�Q�����C�Ϝ��7���kXŃ�ln�D>N5IO����{o�����q����}h<���sǒD��*J�h�� M��g��.LyG���˭<�%l�q`[t`?{J��ֳce����9f���d��v��S �+�#���f�%�Z������U�ڍ�� �A� -X[��2ebϞ���0�[bY:�� �|�EΠe��4�u��yUT�6��3��T�0霘L3Bj1�=]�����!@��Qo�vi��px�SB>�Lڒ_�$��l��Hh˳ -����I(>N�*N�Ꮂ.�`��~����Q/sW����eQ6�iL�W)?�M0��T���z0�� ����F����#�a��p������B9�4�u\��jkf���A"T��� -��9R_9�7�>�ȥJ�Wб��6��h��K�ƅ���^�7��ll�tۤ/�.<���$T�,(,��) ��K���d��{�l�����{p����vo�#* X��a�{�(�/�mo��2��G���OL��,��˖%�^��귊g�\lh���k�E6���*���@X&?��"�S��po�Rd]�9�hB�+� �H>���z,,1S�|���a$���#ۓ�x/m$@�}� �6?j6_^g�n;'�5h�bM쥯qK�� bu��"�#���̓1v��IL�(�pF��Z�ꉲ'��H�Ρ=��T �[|�Q{έI���P�����{�{�gq��b�*�v�R�C-1w9��Z��D�Q.��̈́��r%Nq��p���} h#�ǐ�}L����c)"��.��Z�. dpTQ�-�4Ķ�nϽA�W�������x��f9�G��Q�0,N����YB(���ԗ��V�kS�����������W����� -��umI���K��I*�n�&a[����v�}p6;�� �'} -�� -�x��S���D�߉�q`�vC�3y�� -�t��2\-��y~��Aa�Z�fw��@-��pJ�[��~��Ԡ ���3�Y�O��c�i*N�X�&.s^r��% >��2�:/�B} Z�������/a*ќ>K����<O� �5��FLKL�i�����cd\���)�l��p���+��z$�s��(�QZ Ҟic�,����T3Nb��ӱ��q���P�+Ű@�����ٲ�W D�Ц@�cK$R3��jU�A���DS o��Tj\R|:`�Q�Ȧ`L���P~>X�P��G�)e�mq�K�ةbóIm�9�������Q�IkviR�՜���ak3���\��(1s>��:��ƙ,�nC�KHI@�E� V;I�,1v퀐Rq�����e����823pb<>&~@be�U�~Gnw6��d��e�n���e�Z^R} �2["%#!)�U��a�\��3��d�k�a%"�����N�hOf�C;d�R���r�7i�mU�9b{"+_�<6M�Cs���04!'��p�85ych{Ԗ�W)0-b%P�>Q6�-��_LGf��k����W��''�h�Sq|�����u�?c�~m�#q��h��'��7�{��8��cھ�~3�2��s�BY�t��tG�M6��C� m?�u%��m�o��5:1j>7D�I6��ޯ�~�K亀s��2�V�?GG�{d�4f0���R=Џh�������'����RK�����3u�u�ⳳ�[����>s�3of�?6�ߵW�)6���4�d9 ���$8(9�.�)pNNٺ%�6�m�c@�m�-e�� Z0Rv��G&�j=/!�6�Tٗp�g3�:�(m�5��� 5{ -2��פ� �0o�U��aJ�_�2G�Z���@� -�n�I�]}����e�cv�������&U��G�u!h|��6�� *ef�p�: -�dJ�c�@kf� !� -,_���A��I#�D����`�z� �1��� v�)\���[�1i���ϩi�vz!�o&����JD:��a��[�>^B��21(���c{�b=q��(��E�~�Aس�)V�/>�G@j�]O��i� O�.�$;�vG?�̞܇��W=� -���V�}a��|�ENB�p�Xol��l\P�I49�����ѿ����3&%�َE -%tˏ}Q��~�o�����=���3'IJh=�:v�Ʊk��&}V�q��:l���v�mǍ~z�ގW��f<��}5�8��ތ�����p�w�?���ÝCȥ5p����>�8�v���.�>�w,�;�2Ngѷ�n�;�q�w�G��7h�I�n+~q[N��e\�Ugйkg������I�=y�=g����F��7ڼ} @�}�%Q�Ҿ�'l4d�*").x2?�X"����]%� -�J�{��mxԠr��fDz�#&H�إ��ip|�=9�Ǥ�E��LN�$a�2<�.��,JI��.��e\bb����9RF{k���ԷTEVn�i�(�%D��/��������!����C� ���S丁�K�2B���uмg�,��it{�˚�8~�nߊ��تѶ�qʖ3�>C��si�T��O t�a���2�lȫ�u�x�j�����RY>#ɥ R�o6�̇c�#gK�VA*���5���o߱�V��yD� W��F�����>i6���;���k����:O���(3h��J [��g -�|�-� -T�6m�$T�|�Gs@��v�G�B�fSa�H�y@7��Rc$I@��y��<7��-�a�p�J�ĝ�C@R���ǻ�z�9��+eF�ͯ$?�ɳ�OAt��g_ɨ���`�m: /����9B��(_߇n��7V9̊v����Q�����ۅ���}�lUXD7�6�^�Lĥ'@� -,('����B�B���8&��7C$f��*�IP���*(��fe��K[.DRDY��C}i¾��67��w=p?T>��(;��`�S���''�Mbtx���͞�<�w��u˂f3��-�Q~�I@ ����+�� $ -�?W8 -j7�l�&�z�m�x!|S0���(�u�ha��-� |=�S��:ԁ� �m��Ip`ޯ��:��J]��/���yH����M@쌪�e[�FTzͤ'������6"�p�qc}gf�.�h�dy����C������ѵ���O��W�<hʄ���l E��Q��q�<�15����5�%�f�F��<߹�s�8�LtfѰ�/�hw�H8�f�b<�ΰ�I�m~,�Tlvf��>���ĝ�߶�N� -͚m�o��\�>8mN�۞� -ؿ�X��jD���7!?t%�p��v�w��|����������{�BH�EQ�HmP�,̵!���/�&x��$��uܨ���_�#3������@��ލ��n�Nn��U:�k n͞�ڋ�@q���0��� -Jp��/cb�Q�n�#�0�P�/�q�^|�����t�z�]�6�W�kɔTmm'�%�� -��Pv������E�i�&J�����d�XO��VM:��jnlA<������@�4�c���4��@Ahf�ae�o�M74�V�x�lP�M�YG٬H0���$$�7"�]��!5C����@��� -eK݆�2��JNd����@��>��?�Ҍڼ���Z��K�f�-���x-tR�c��$C"_��w<s$H���Ã�a\��x�<;3��K�>���,]�&�$G����,� |�PYc �n-k����4ɾ�J$Hl�u����f7(���+��1�3eg�leU'�\� ��1:�ʺ����l��Y���]űў r[@Q�W#N�q�Mo(V��a� -�z�vP�70 \���`�aQ�� wp���=�����&� j -�j��E�'j�0�"���D�ς3�����mOh�����z��X��-� -";����嘆lx�Ga��'���ML�D8�4�{�;xz�� -�1Fn�`�\�d0eQ���u<���S J��������͇�o����E"Xxء�?�o$��W� ��A -ZV+}�*0'���m�Àwȼ���ς����5�X�(�J=(�p�˯}��p4�,)�α�\��z�^|xI��tsH�A:'$�*���jz�_Nۣ�0�C���)��5l[-V'qo�����.���-Ի�Y٣��#����o�_�. ����ٱ�U�w��1G�uR�i�������¿�Р��7ɠ,jP�$��9#�4p̉��c�9l_�Ɠ�~�R�+�����֮]]�L����/�tI��5ˁnM�0��\O�({��|˨����I��҄��TL]��0�zag9���M��֣��YǗ�*+��Z�v�� o����t���O��3����������/��E�̀X�n��\�\J� j� -��a>NK"H��g�4:��εΦ��J�7�0���~:�H�ҰAٔ�]+L�e�%%h�dj�g�n �����k�Ë�7�#1�jA��9%p�����͎�lala��%�14}{��5�4B[�1����3Q�3���(��Dk��Y�Ee�]��0����q2L��@z�0+���%�����R_^�B�\�쇐�&��c)�I�N٫$��Fi��Se� X3$C?p2�!?n��#f��_kϘ�� -�^:��q�=�[�������jH�g�+'���EJB:�F���8d�_��J.�g���7 Y�?� -�P����~�����\�X)�q�&��:%,u`�)D�^���EEX�z]^�Ȏ��pa`�5�n*� ��=���@IU�EY��=}z}}}b�2��d���yUҭ����Ȃr��G��g81�M�6���1|�x^w�~���Ip�:��G�D��)������덥��[�K�LIa<f��C������ �8�q�3T�3mL5 -��wf�|z�cn��~3���oQ��Ki��JKtr�ms(+�Y���P���{��)(贞[�r~�b�_QDr���$NL�x�l��*��(m���'-|g[?/��*['H$�|�#1pLl�nw�m9!2��f��_�u��pb��h�R�톲�s������1�{%����-#�Ƙ�*Pf�>�#֥���Vv����mG�N�*ͮ�ƒ�wy!��{�s�0sn -���VT����4��O��5�BQI�T�%����e�Vb�H��s����P?����f3j��9~��������"K�<�`��~X���.���Q�)k�Ў[����I�,m(�v�W�S}Z� ���\Ն��S�O*�l%���^� �u�.��!)[oX�y�-e����" eM�A�R7;�d;"G�^�Ȗ��Jۣ�zO~�$I&��*e�}9b&h"~A٤D��g�@H�R+��i����G{�1�B���&�o&�f��7�E�?��u|�t���n�]�t�C �M3֍���z'��j�3�ÐC����kVe����#��� `�}Ĥ�����O�ޓ[{���5���j�(���3A챗��(�m��u�Bm�������O���{�?!�DDE���P�����!u�P@��n� �0��ډ���u)X���Ŕ*���P����������՝)A��ѯ;�y�� Oǿ�+/������aVG9����c;<�J�p�����R�J�}*��-eo�$|T��Q6�o #�:f��Bͳ2}%��M��g(�0�H���2�`�1�ļ�T:�5�������)4�� -��6�NZ�ڔ�'��ߛ+�����cr�*-�ܐ��f�0��E�4��T�G�ŋ�aM��7C\�姩<�$<�ę�!���q�J��d={ȉ�kv�a�7;`G�{/��ަ����gqa��?~z��'�a��e�hVW�����Zh����QJ��w��O�������n�@��9��C^��)?c �~�/���nAP�_%&�F����h֟���FW�� ���YX�Ϊ5��Y���~��4q�|��瘀i�:�~(2Kc ���t��ʜ�C \.>���T�@$�$��?���6��nW�����7�j��0�/����C �����/���6�Rwo�IyL���k'���VT<@/��A������*^�jPF���M4`Ä� P~���}ݞ��P�m�+U��iF�X> -�;��s�F�iR��%��� �ɛ���9�#m���A7�+!y_I>Cr�k��M\�b��NW����_ o�z�~�R��za�.��B>l�k;X��٦�,�W�l�OM)u��DpЈ�ha��]4�]�C���q�[~��)v{c����/�@y����*���A�R��H4��_�3� �����2���[�$�߶�����J����;TXD_([EM�K��x�nJH��A��ȪW#�q!�Y�B�vL �z���f��ZOL����x�T:�0�Q@wx���"eR4�]����(,�FI�'���V������H�_"��_�C"��m��� ��v�j��D�S��ۗ?^\���]���d���W=�tVX��lա�t�:�P�����>�М#;��J�D�?�N�tX���썓ar���:0(�S� #�g��y��(exa�9�f �d_���@D.��!Z>?�A�������W=á?{��]���Zu�\��פ�`Pi��$ތY�M����(���1 I[�-e_;��ۄ�:�+�s��K�Ԩ�F��sXO�&+���en�|�:�5e����:�m� �s�t�6>��#����: -�o������Y�pz�z�|:{�#�Q�$����W��op,�V/����*�V�J�՚E�Y�m���`���7 G�]a��h�)H��ώ����<�&�$��{>|�틉�r -H�)(�>�Sb�m��D�u0���1�!#i��)|�$%E�|lIJ(�8>9�W�F�R�G�e�'�4L�Ԟ|���g��Z@d�����NA=�R�B�I��0��t�0��y��ʌ���[�|�*�w���1◫_ n�JlH-�I �9��K��(�����`��)���q�M�2��c�hÔ<�M��kf�-�vB�S@cT+��3��.�!.}Z�B��3J῍ψ���(�AV2�){I��@��h�����6 7o�4�x��c��#˹��8���2���TDb:���o��<���+sk'A/���EnY��pflq��Bs�3�.(:����%��B�����ɂNU|/�pz�^i����E-U�u�6{��b`nP�*�ۏN�'�0���'U\����2H,�Et�u�1��L"��E����Vu�1���T��0��F���z��Ш�c���9ԇU ��f�GZ�Y���B������M�+����®f�����F�����1�����%�,c Ґ������$L��F�F���u2�dI�c���O�qMYA*��,.��L 9*IP��:5P -�F1Ƃ�E�a_�nQS·���r���ڈ�q�'�2��Q9�8�?���Y��_ RL�UY7����q�n��?!k�q�M{�u���Ԫ�#&:s$��>�]Q�Y:����NF��S��;��X�A��6[P��j�"����?�@��#��Yj�Ҍ�zu\f�h�|`�yd�P��N��k=��keX��j��T ���/��ſ��9{�L�ɈZ����@_ퟴ=��bOX�Ӝq�Q�k��W�~ͮ"Y�Cz����l�2 ��� �%�� -] � ��g���,�IL$��+<z`���G��_3��ߵW�Q�g��F��mu��Uvb��4i������ �b6l���X�V��r���>�P�� �Ä�F����_�4�����Pn|<��6 1�Tv�ߐg��\�X��E���V���/���uN��hR�ȮSbD8WFw��>�'�O�,�����cU~0w� ��?��z�ĭ́ރ�ҕ}atJ%�� -��#_���t������}FC��9 ��Fƿ3�=dx\���|r?���G��5��GmG;<����� ���Ɓ$bI�1=S?ӌ$L�� x�ٵ�G�e����v��Se����v=��c��l�w�U6(I�B ƜP�+T��uw[��2��)u�<Q�`���zB� m�RعN� �D�P��]�VI8�Y2S��IXڷQ�^�5Je�e+m7ņ2ꪧvi����EM�v|a-,�qs���l��'�;<1'��E∅0�+�S�j�ڏ�/��Qwì�k�(���Tf륺��;�EcL.o\���a�z�%�q#�?`�U�Cۍ�h��}Zz�0I(ؗ�b�Q�f�p�!a� ���E��2Y��'�����J_h�������<B&�Jz���#lÅ�َ\���g�ږ�"xyq�H Jcr��f3���eif^�Ҝ -t��# KU����QP�~�O{j#�����2�^�����05Q�g�p�8e��;�����;��d^��2�4�@S� i��Q�-a��@�?FIFڛ�,�@m��,�Ow�pgDE_n0�2��d�ЙjV�/~�G6��O�>XS� �s�ආ�;�q ���kH��͊��=������a~q����Ѡ��|�ң�A�#İ��qU�;�m��}X�����wg���m�(@5�����E+�lw�.�g�*s�#�f�=&�,|얶W�Z�9=m_D�ceS������S##T���Kf���� M��וg� B��t��K۱��`�1����p�$���tab�/��}�`N�|�o���RC�>4p_�}b�q�@�{�Y�zk�As��r�D��,�L�$����q�������X:[q�&)2�&.�66��x �zաIw�9��d��rΞG�{v;�D8&AF08j=�K�6A�`͝��z<���K]���I��(�=�ѠZM������Sᴀ\�yQ�<'��〆�����L�e{� -�N:0��h(��0��i���3�J�?�����������i�R�y����z��8�O<MB�0p�d����K8-�،Dq�6&tJ��L�´}��ÉRl���:�˯�ɾ�<:������{k p��+��f>`D# �����@G0�^�s� -��J��x���4�kY�:����0�N���0&x��{��j��N���K�QBm%^4 F`�!�x �sl��*h�X!F�0��⇳`F��t���F�O��0���3�JV$[#��.��|%-Z��e�J��Ѣ�C����+�̭�f]Gr�\�=j@������������3U�a|]���Q)��ŹcH���c�*��F��Y^����M��y�"X��6`�['�[�"U� -˚T��)��D��@��Lj�G����G��) ��Z;�:G�� ��S@�l\>k�NsqIJn������gui���N��ˑ9*$qz�'䕴*�A8*�f�Ѝ/�;b�0�yr�-i��5��L81�yF�QH��hF�w�53�A�͕�u�8㼈��ƽ���(!�X� -�E����(��x8s�<��ʚ����-�21��"+ʈIlc��}Ӯ ƹH�����?����h��|+�њC�GNW77 Ʊ!$���D�Q]��LϹB�G;�'_�ӣ[����X"_?�yQp�y'��ez�%��?AY��v��Y8�����+�Tl�m���ßx��v� -�Ի��������lv����}��W�א���ν�������b�%���%$@��RB�hhB4�eZ;������o"�I �U�d���W��X��aZ�:���:��"�I㙃�\�^*���}�`��6h��#�RA�=P\������4_; �t^�|c-�̮Q��7�m�9� "��c��y� ��Fas�s��%e0eAM�_��'1�C��^9��.���s=SN�!$vo�m9�' NqJ�%�J�� -�z���|XuIm� �{���e[��K8��ې�'��p�3�<rJ�A�S���R�`�8���\���ꘕnB��AC j���W�8L��+�oV�M$�`}V\ٴ�f� ��kr{��2i�Z�p6n���1�[����)1�9�[+6�r�lD�@��)w�$��H�{����A���@D@�3����q�IX;������mx�p*�WQ�\= �XDAd䐴�z��o�4J-��eN�Y<�~ ��|�m������0)�m �D �k��AcP����e�3$̟ܿ��D�X���'GF;�x&�|�J���~�+��EQO��<�e�y�m�)�P�7���aR\�0G]�kM�~yOu��n-���&�J�KG�i.�?���\�N_�L��^��[�i�"���j)7t����X��ޑ8BM Y�k, -������ͱ�,��(ʅ��e\$r躸o]8���}M��p�� ��l�E���YQ�R3hϳ��v�KV�#!»�c���� I<{�� -�'t��D�y���Uר�ajYB|jk#QT̗~x@��{;�؍�4�b�3��>����I��w���wI���ظ;w�u -T����|�Um}��_��|�Oب�S�X_^�S$��5s?s"�F�2�#|��2I���������^d� ��:�g�����ͧf��@s/�q<�E��},ɳ6��)�����ntem�(ے8Fy�-�k��M:]�Y��[Ĵ�\��4�v6mC_��˅~ �7��D�aK�a]������a�Y�X�����G��e�w�?*�o d�d�^n����$�:���c����P�$�r�>�O��#��Y��?�g*�\C��DM� -K���)��b��u����|䏰+}�@ME�AH�[^�6��.�B7"6_�����: @r������1����.,��l��4qP�[�iq,ar/ܒ���(����p�:�Qt7�]�.g�g���K��W�Z>�=0���=�1�3�z��c������%8o��H����>hjm�S7)b��%��NF�wc���[8�|[m�@ę����'H�����ù�c�i'��6vl)�n)�0�˞�$0s"_� -�����s����A�@@��^��C~CGl�E���GW�4 -R�fYG�)���e��+!Id��-�#�f���%<'�5n��)E�SZ~��f�_AB�)�4͖�/��_�_�ٿ��i�Ҟ�lc�&%;b�ޘ��y�$��+u�����=Ŗ�~Wx��s�j��.ް��`�cı �f�Nn�ې/�9pM=ai$���zȹ�y���;�%��+�f��(0�}��E�tG�Y���ᒦ��H���ʏO�'�{�`�x�ϲ�@�o���u��O�i*3��Q���$�c�o��|+^a$\�9�b���! (��&��t��+�1������M,�~v��U�$�Tl|��,/Y-d�22��e1P7LoزY2VQ^�p���Ȅ�W��#�`���%�9C�)Y+���o0[Y��)�����3.���U��; >�Ԉ|M�ڜ�Pc_a}��@gV{��9MQ;�̞U�&�B�L�3kݚ]�(���~�9�z3��:$�O��!��n���C�g�6�l[�ޣΟmOZgSЩi���p�Ui�]_�Ac��SM�����9\=�TR��X��.���cI�cfĒ�)���Y}��Ω��ʅ9����R�g��k*�N�������=Z��d$�2��<��5�����`���H+�[T��9`�(E.�s���̇g��s�3�v0�Zʨ�� X��p���Hd-��ⲯlo(s��)�k�r�╲�J��S3<�{8I0�A=��o�{�{��$��#�<�k�-6���M:=>�����Dۗ�G���b=���}Ixcr��&�O?�V�����/�\h���<�M����s:�!?���6�У]�s<�B1,_��Ze&��������;����)���+"0������R+�c�3n��[�,�= g_��6��n % -��P�N���#�$�<�P��:G�ecª�& ������c�4<����/P�JXY��X�4���0�%~`�#d@ٖ�`���@��O�Vw�}���,e����!�אJ�r��xї�}���Wdn�J��x�b�!�O��CY�T�ʨ�A�������!�G�ƴ�)4�#g=,�f��-�[M���{��&�ERZ�b���)f[���cbk3�a��D3j9NY�����sFMj����'ʷ�mf���Ib�v����+��߹��l�l�6�4@+-�=���Y���p�&��h-�K����� �w����oԯ���=�a�07�y<)�r���8#�U�F�Q������w�^�ysb~PW�7C:���e�x�9��3���/xPӔĚS� I; -�a�S�Y�SLa-�k�Q�!����Y�K]�pL��.�/ر�����A�Ƀ����9��A9�Oj��m��"�7}x��}����'`F|T|//ad�}�gD�9-oՍ�KHmf�i����5�Y����\F�ڎJ5��vs�7����1�w$� 0��t�dژ\�.��fT���w����x� Q�܇�i���>����G�(�|r�9{�e�V����� �6s�N�еA�Y.Fܘb�\{8��|6ޞ��>�l��;�\�1>��=W��o71$<5k"핲��p�ٹ�f!�}��0���Ö��tʡ��H��`�-'~��"��I�����9�ih��"�SM@ǙC�n�D@ mb�S��:���������PG��7��Z[W���j�ݏ�jo��l�~, -��OW������Ǖ3kO~w�g�'D�2�b>ϣ9�,zkc%��%m�)�~�P�ӧfa��j���\E�x�������m�'.��|0ݟV�넄��dN���p��<g�t�#W�2���(8�z!��//6@ hS*�/��Z�2L������dk^ .�b.c�vD����//%&�2�{��p:�Z��z1}>���!f՟ -.\���x��W�A���~o�בhX������hXV�L��|���h���8�q|N�oU-ϗo�].�����7t8�����E�-�]P���Z/�7&�L���VŔ�vw��H�H���ׄ�gc �qD�=�p?���R$��M�ʖ���hGe��m��䌅���N���G���)J�ח���VI�8Z�`�mW٬D�@-�� P�J1G��H��4oA:��%����aa���6�n4�w��l��p�6��_y�0�=����~C�����)d��z��g`7h/�Uŗ�a�TYP�{E�A�(Y�si U������֩���D�TR��c��1<��d��%!F7'�[N��y��g ��w��˻�'yG&ҍ�Nٮ����3�fG{s��,+�>cj���k��4�W�`U��܌�|a�����w�]�,Q5? -� )�9����������~�ҭ�qZH\j+�'$&��=��ul���V��v%h;��P~���=��/�{5r������(��b!�Y�m�$�B���8�Z�@��j9ޖR��+߲�=6�}�e;��I�QL�h*�!��=�� !˒I���W����b�.K����}1%��ae{��]E�5�\5�F��,I���Y��չ�X�^ e ��������.���(���u���o�`�g+H��t���?^6���~@�"!)�fцs� ~�?Q��\�R�-�'����'�_Fә�`٧R-�]�������"xyqA}k-�7nh�tcdG�]E!0l�x+��1U��<nh�v���!��ڎJ�@e�i��H�����7�Q�3�%��3l�^�71i�v��U<9�ov�����ԧ �KvO����~��Jf9���7�����Z?���˗�A��-�A�w�̓����84��!"8��G�����d٢�3�֍�����O����͍VW>I�,�I���}��\���䟘Q'� ��<Y��38LV�pM�%�y��K�x6_��L�A�ÂDŽ��L>��_w`vDZ��]��蠍�_Fs�����{}�3M<U� -~�Q,�e��=������̽hD �g�ب»<��9�D�á�A@2��<fB�������ii�� >v��'/�\�#�m"�:�?��� &����B���k�#���ܬ���R��н�kt]�r7s�j����c�s���e�y��iY`SsK�dCѳ.�2�q�̄B&O`�����o+�+��d'(����i{տ�+����ج�r8���x�F��vNX�������kdPT6)eQ�u����6����P�T2nH]y�d�;/��$KaG�}��C�g�����<Z�O���t����i�7kv�xI�Жd��P�1�����`���Aip�}�Ku��f5��IA����_kϭ��PX�� -�9���m �iS�)�S#?�U��K<^�B�T��\E�V��}Q� �`n�M����*X��J]����6����:.,�wv|0'>PY� ��z���j;:���8E|�o觰��x���[]3���=7e��{=e�I ���3 ޠ��$Q�.!1�x�01 -sx:I�A8��"s�؆����[���h�L���ƘV�>Bm� [�,O3.1t��!���a9�p��ٜ�m*[lZ�� &�i�$T�[s���W��ӿD����t�7Oɦ{�Ī���ݤ��qfN���-��:�`�ռx�mMX$�oքU�H�����Y<�ܿޖ s����^C/U�xa�y�Ĝ̬���+�|[�O"OM�����>��~�P�"Opp��O��-������|�Ȯ!�\�0���۳B�O�� -Բv�"����Xc%ڜ2��Ο�-i����F1�4�o+ʵy �DT�+Z��K�U6=�E8N�h�%@�]>��F����)p���:�:�VZxAe,\[��)�J&�v���'�����g�-�-�U-)c� -U��m�`-����C��>Q�'a�k�N7G���n>����Dm���gwg&� ��sBb��2�f�g��X%��8 �e%�OAƎ����vT�#VQ����p����� u���,�X�í}�=Q(�I8�*�b�FelBj��!dF�l��̎ -����u�@� �,��4��Ƀ�� �5�Ln$�e����Zijo���2�8?jd�x녲��x��#�"�#�<Db��IWP�,�\�,z�6H��pzs��^:�f�W��Y�&�E0k�5��p�+���9�c +�M<J��b���6�Αږ����$^BKG�ᒃ,�i�JP@-���Y��c�}T/�1^c����|��������^l7�6�� �M�ͭv2lF�䁰��pq(p�LY��b�TӲ��RC���X�"�/��acU7�H�%e�ėw�}�����:���O a�G�H=Y'V6ƣ�P?�⎰�©�*�VU����� �u��=�V�?3����� �EU/�u����=�j�?�Nj�f��Q�O�WY �y�S���[���]k4�N�g�v�>l�Gq�>.8��eVG�u��:���gB2,*9�z�k����2�sX�+�/#*���I���|�B���o�z ��K+���61��pm�Egbs�������j.���[ef���i�����ט2qNj�<����7�Xy��2n��E�_t��=�u�Yf�x��oS���m� -�<��v�� 0��zr���V|�$��� -M?�������Amw: o�'�4(6�Wq1]31�'��F��x�Ќ28�?~�_|�`20�ͽ^��gL�e�<J�25�(�������T������0^��`��U��w���q�²�cs��@��s� -� -|#�Z��5l=��tT�4�����E���֨�g��E�����N���P���"N��҇'��5DH^X^������g-$�m��tm��>�ߗ�,͖7�Ws"���0�7��ɅU�a��Z�7��@.�F���-���ϑ���VkJPR�u���ą�4��m����߶E�T.��h�:�".���So��X��W1J�#�F��O��f��G�EW�wuJ$kOԆ�U��u��v����KB��k�c,�<�\�����}<sn���+� -R��G�Wվ��IͿj�tI VO����'��2��#����vG�D&��0�.n���x���'I6A���H��(�%*����b�P��T5ؑ�H;�����S6ھGC��}�#�^_R�sSq�����"�C�l�#[ߙ}��z��j��WNA��n\X�ϗh�?��&'p �;5$)��~ς�uk�0�ʓ��砵�Dx|�2��D��ↅ��r�]D{fsԩ�fl��<�I��+��ҺC"V�!ir������(߭���`�óUd~��O��v�^�b�B�\����{��l�K��]a������̺V��})�s� -��;�k,��|$�+5�P]SAՙy��&[ ZD��b, LK�G��*��ə^�M�Oz���9.:�Z��r?s� +qG����#H�b7$�j�ǬI&u���[L: e{w�Sa�/���t���W��6^ �ۚ��?`���4m'��O�)�<���3��{ؙ�_��x��aZ���C1�0���Ï���s�L��4�<�}��z���� �Ä�S[�r�"��)�� -��=U��юx�㽏��=n<X(� ���;Wq ?��m~)]V����ć'�q�Z�_e�;�i�Q���{b�m�.�U=��欭�f��b?BD��J�e�k��w$`7H�n���f�ԁ��`�Ѳܮ����� d�Sl(�W�t��5��!��� ��$ -��p�x�i�%� -��y�T�k�XF.Ԛd���ڿm�L����p���K�\pɛ���d0.H���8_k��S�`�i�k���3&D<<�Kj'�$��[`��a�x�l���i�r�w��:#�9�`�'����S��)����*�o��i~ ����a�����6N�-T��h�8�� ��P;�ї�F�%�ظ�c����q��[]�.�#եI�kU��7����U¾�!L������Nc�=Z��E%�j��rtZ��Ճ:��u$ ����%̆�$}<(f�����wo�v��G�(� >���W�Y�c�M%�D��7g�l�"[w�C�*���L��iZ;.����s�y�'�K{{Qp.n�����u�_������Ŷ#�ީ�}s��,�Tm�ڋ��㾩���3v� ���3�:ߚzH�f1R��==�W�"e���]��t��w�R:�����`V�ʍX�)�X).�y��z]E+����h�P){ �]?M} mIJ��Z3vۙ��]Y�+�N�V���*u���|���ޱ�Ҋ�h'��}[���ڗ����������C:�f�f�������g9K��q�d�2J�Ե(��!K��'Z�\[2W q�J�^.�\9 ���o�1�� -A�E��;�$�{ĕ�"�_5%��Qa����4��J�}r ��!� ��<@�y��ȧ�\GÿG��r^'���KO.��w>�ж!���"�Y��Ӻ�fѴtxH�� �ؑ 쯗��&�A�>�Id�ؓ gg$*-`U�`���� !�y�1zG��{�l��W{����x�J��-wvZ��ҷ�f\מW$�ߊ2�%�F7����* �� ���*����rm(��"0j��I;��Q���HΧU��6K"K�W��%S�#��9CT�ph��!�5�7�Ӫ��B��k��D�0|<���C��'9����7�[�o���MJ�s�RB�g��7nH�v{�폛k����n�6Lm�ݦ���JS�]�%5ѕ[��pxG�No���3=�V�p�E�;�z�I�.Y �QO�I�C&;���Pvƣ����#��M��Y������[�.���S̗��n�x��J���<�z��Ŕ䟝^����ގ�k�Ng QF�?���Hu����ㅲm�^/�B#�4��DJ���|J������&qH��<�^�YX�'��!���z<�4c��9'*A"�0/ ��"�:u�Z����>���?�2_] ���'�BG��%һ�rAX,?��D�.Wk�eG����^�1��I�i�"[b_16��J����ez!�1�c#b��뢴1���dNa�����Bw��;3����i�`�mp�����k��[BCBg��� -�2�lYԷ�0�).d�Q晙'�2�'�1��Z�I{ ��U]Q?�^s�>�ux;�J���(b��70�������m��lb���.4���^*�9�,�VJNP����1��hOGֶϳ�֝�x S �v�tttP�.i/�H��b�)�ߕ1���w��r����7�zN����%�+Ƹd0��fW��0�=���F��iqS��:�OV}qZ} ����&]�ۭ��(�E�-N��xFE�܌�-����-�[���$�ρ"��s�tZ����y��/o|������� s��b��C��I���:K��s����4NP��ȼ������֤8rs�5�+�_i`����1-lc�}�����YbDP��n93��/H��]ޠ�g��C��¶�g�г��t��ѕ��/�<2([��a��罳E{� ��g?ӗ},s�ʬ�\��@�W���F�h�[��.aZ_YnN����sߡh�Ff��j� -�Mî{����/� �>�P�)�6���G@�l��mV��<.����B����2�b��*6Z�V��5 �Xw��ś����QB��ucf�fl���a �UfYr�~��&z$��Ie�ª�l�~��8�u1 ��<��,���p7%Y>�ay$�Z�Z.��#f� �"Nv�LdЦssj*A^:6�~��a1{�Ο�{�;��"��M��:I��7ʓUQm�@�������#���67�c�6��aLJ�$uH['�$����o`�6:ӒDz�OOvc��ͼx0/���2Η N�ɜc�Ϟͣ��$�O�{���vNe��{�� -��h��p?�� ����~�6k�Ǎ�N7^�w ��P���Z^'n�gܥ��}�!�L^���Ah�����P�H0��yOg�~Cr�6�´0���qA�� -T����RÎ�aN���ۈZ��P�1Q�j;*Fx�Q��f -Ks_ny�Ҁ��/渡�uM:.����a �X3��h��C��%��'s���ڦ9 *>%l���5�R6�m�SA��9 ���}���u��T�+�5>鞜�e�/�Tg���M ���X�d`����r����-"i� -�v� C������X�/�sW��9J��R���}�c��pkN�R�)a��>�"�fW�#�t#�X�ܖ�]�����l����H�!��OU 4o�]m��7�|$�$��K���K(������Hs��K��~�5] ���6�X�� -���*���C>���.7|薬ֲ�V��n��Ċ#��C�����ø-k�,8�.��^�t�,ë�PN3��*�^A�`M��xZ��)��qT듫=�B�:ݦr��_#PN��LԦ�0@���X�i�=#��W��X�,5��jg~ +��$x����g��?� -�P���j�T4�"�Q�<���8�Y2��� �߭��y -+o�:�XLL�y��?���1��wOW���_&�� �,��� -��Iöؙ�j���UX�Y>�K)�[gԞ�5lɆ�!R���gJ0�_��}�-b�3�wT�=���!J�tb ?3,:��gt4�Yn[���(�hM �)���̳�F �>�~�����h�f~�����2p ���)�)A~V����}�d��XQ�t���Lʴ}�4���Cz��a��^���S�<Q��m��>)HW�&��=��t��]q�"�.o���s���5��}ߗ_���e�96b���-�bS#��c]0;x��W&L�Jɕso��qC�7lE5Rf*�q�wz��c���G&lb�٘W�rhOF���#=���M�H? #�ޙ��e��f1���^�5�c���@[�;�[S�1}x!r�f+:&yzфu�U\�yǍ�H�3燯7^���,���s��Ƀq�P��6��p��>���9������� U���L�����<�&@f�]E�SrkT��DG�%�m�K�����%�Vc'1��7Ԩ���]�0$���{-T���v�Nn<�?Di�lW�Y��ls?���l��Pz��*0߇�D�����}\|7���rżP푡��t������~�R���n��O�MJR6�Wg�����%�<lJ�QtB٬������C,��54w�� �t*��������r��f֬2��"�ޚ���8�L��ߓp����q�)R5b�3�e89�m�=���}-''��|��]�[�Y�syQ�A���"��L�U��(6]dYAky:�Y>SN��$t�y�9[������b����8t5[��#����q���Â��=�!F H�^LM\��I�ro�eX����7�;���,8SW��I�����(\�A X�$�v��R�I�ޓ5�������ۓ�s�r�zT��94ǥo�r��mtf��.We�$yh+A�N���Cp��������d��h���vP)a�^�H]m6�@n���#��*ù�[E���� �AxI-+�Ҭjsm�;8O��B��d �=@E���])�@�f��f�tH1�҂M�,8e��8�r��U"����vU�Id�BŸ���^ ��w�$����#ʚ<W_�$�ݛзQi�����a��`#)ۯ�r\.����}�q!��ڽ���3����Z�فO,�Հ^Wdj�sDLˤ��,!�>�EY�.�N w��\دѶ��HZkl+����LNNN #R�I�['7DP<�����}zt������m&\�ea ����w����,x�$����ߘu`�e�LUC<�����t��2.�G������D1��s�l!m�,|&��8���˸����F �(%�;LcT����,?��M`��vE�#���˖֕�������ب#�I����sH�"Z��� �"��!3���-�6#l�9�����T��T�D�#Gٜ��!�@�ѓ����\�M�丱g -ʗ�r��܌�y`���.����6�w�-�ﰈ���l��`���ﵻӞ�;�5�mμ�%|�/��������&7?SRٚ�9F�2Z嵲?jd��p{c�Go7��t`����I������<��7��u�s�Leӕ~�l���{��q�:MU&��B�`�����X<�� ��N/d�sN܍i�d���օ5�_ϰ�iY�{p��u�,�Փp��� ����X�z�q���?*{#���ߐ��1s�8�u��X�eg �� aV�&ϒ�(�a�z��FR��{����xb"����Yd%%���%���m55n]�f�NU�%�z��m���)����j��ϐ��8��>Ji{�o��}P���^CfG�O���{����&R�=��wp�0= -~�?��I��2N���<̂r*[�N�믡r|-��^��y4����2�>���;k$��+wR�a'�,�Nj�����`�����K;��@^/������(����c=�����'8�e�E�+/GBꢼAV�<[Ͳk�9=�����bo$x���L���ӳ��oz���8��!��%� a�����e���:�������& �t��e6��G2�>D� -��u��Gg8N�ܚ����K�'�R��f/)�G�Ï��V��L�X:�Ɍ��"Q���mU!o���7ʶ 2�����M�þVX�~ -��b��Y�U��J��/>a˞r�Y��Q�Ǽ=5��Z�GN���E,u����wԃ�S_B }.���pWza�8L⟕�A���٢Gu����lq�?��c�i���%�PHN�H��e��Q�QV�C�;)��cE_BY�?�+?6%�ekAJ?ksJ��}�S�z���q -'K�Ah�w1>����� _c�@�W���<��J2�g澄� ���Â:�ly�8P�+6}14�a�7�+x�l�Y)D[�9�$��y���@w[��A %���p|�j�A��ô��J�F_|�^����y+Gh�梎�@���� -� �4N�G��6W�)�` ����|�ԧ��Jٴ�002��05�� v�����K��K�ޜ�N�e�:����sT�-IUF��җ -?������� ��t :���ʁ7�6;��U_G%DpPgN�R�އ.A�#��.���Q�64��Qn̅�Ho���~������_���ѹ�sq��B��%����Վ� p�aϕg�M�c*������,aQ�a��QC*���x2��w�Mo��rr��kӬ�������=8/|�+��D������a������ï&��~_%������f�_���u�5�sm��(H��.|��0uMJ���ѺI,�L�$Q~���G�0����x�1x��Sm��-�ƽ�#t��M�.�<����&h�we�2-E��6�} � ��,�cR�R6<��� la�f��^�E������S����ߔ���i�R^$��瓋��ݰ��+:��Rc�[7���J����s>� ��V� � ��ҙ�Ɵg_CO��r{�jUj7�u4Aj�M�<zO�%�f-���,���s����%ܔE�b(��o0�����c�Ҩq�`my6�X�{U2䈚�HX�2��X�%�=hR}vI�),� }�81�)\V�f�@c��C� �eN�+0�����oy+��)�.�|a�8��0E#�)���!a�aH������L;�%>�����3��>I��uxsdoq�- $���~�V�IX�f,>�#�'�Ds�n;K�uksRHHS��*��(n���RN3��$+��(��,�d�} ��,(Ģhi�*���T8�o2w�O�C1�K��-��Q z���h�|㿮���r|@�N�@����$xkC��"<�p[x) -}]�V����@���:ae�?�Oۼ��Q˼/�k�(txI ��4��+���+�s���9#��C���Qx�l����\O2�v�� Z�)�x����6��>X�ܗ�aa�� ����5c�� -�+��&B����r�$`�?��L����]ޜ�A�5h�_X��p�B�u�s�M�/��kǗ���#�������ْ���kJ̄GjH����9W�L�4lX�-�0??Pz�&ߢlSJSg�9�q�]j��fU����K� ��0��_o�q �b�A~�GL�0E�/�c���94��&�����r?�9 ^����O��d\��i�Y�'�[r������h�����f��N�8�k�dCMp��Ֆ%b@�(��r8�{�rS«�j�9�Ь�qe ��x�]�>^�Z��1�e������2��FI��U����WC��٢��-�o�D�s���͒r63G��?OJX,DW�/�UV$8��;TD14�+���<������e^1����"�n�$�e�.ɷs?���N����*����~+�#]�+��l8�?�X�%����cL����@����"k�B�q�����J3 s�����q�n -5J�iqԵ*a�.̒�wg��E��zQ+��QrTjI; -j��}���4��[�.%��l����NC�E�cItYRWGĶض�"�ۂ��V�����2��/!��i�0�S�+倩�h�������m�z"�Yr -{����5���k=:T�d��̺ጲi��R������Es�q�u�b���܄��5{�ӆ� -�b\Z�.x�����*�\9�`���C8WnO@�T�M�q�b�0���s���;t%w�R�����+����߫/q���Q��P�Ha��TGH;G��Ɋ��LH�������I��|ʍw��37���X�q������W�h��D�94�Y���4������ʬlOx����b���ʬ�!ѕ6����\�����0��)�A��Zp���`n3�/m��x��%�Y8Ǵ֪g�%�&zY���٪�I�t[$��gO��3�ƛ��QMp��V���Q;?&�1_���9Ў{�4����V��l�b`�S}���� -�Iݫ/!4߆)J���qԙ�\�IL�Ohx�m_:|��H�?s��_�qCbǏ���ބ�K�bgC��X��<���/ip�k[Z=X�4��P�Z�mޕqFap�(J�u�u��Q`1�=h�տ��9RK���,։��IQ���£ն��þ[�����0�q��.3����H��&��~!j�s�@��BᎣzLS?��(������e��ٓJ�{$�����o�<^l�����c �L�� wX} ��Y�c��-ځ�@�tË��@����N>���8-���$8*���B�b#w��a����y�v�'>�Ё���$v�����܀�R�/�ƈJ��<�߅�¼�h�����Jw@q����s��%,�H���=,���'ʆ����x6�\K�L��h�W9-�4��j�y��^?1�@B�� X!X���1���J��p ^��)��j�J�( ~�C��Q��I�C6��ŏ����ix�����C��@���A�f�6�F�D'���mDݶ8�(�M��<\-�0n"*�(S4����xfT|�����$��ü�}�$R�Tz�X�o���������u����bP�Z�붱c�9�c*��������zE"��$M�C푔 #����/N�ҀOZى�]Np!����ڣ0h\�V�K���[���cf;{��S4{��W�&��Y@���h[mHcP���fEe�M�F QS�N}��ӝG{�@���{������[iu�!��?K��y]��-Y���)���ډͿ��4L�9���=*?���e�XV�BŪ)���C|+�?|�� �*��)�9Gd�sڄI���d�q���A��L!c7L���K���ۤ��9;���o�k��QL�p"5�{|S3B��:�F�E��Z��2��V�ޔ�d��0=<mBd�w�Gl#�U\��_���E_�s *�U�!�q[]��Nwa>]XBL�!iR$��������*(���pЬZ\�v��̬�07��0l�4�����!Ȩ3��9��Ө��~�2?�jsS���*4; -��֓$�� -���L�m*Ztse����V��(P/��%�쫶%n��*�|�-�������SܞX�:�4�N��֟y�Z��Ƕ���>nh�k8K�wp��uV;$v1�x�� �AO�M1N���4� 9�������z�� ��̜z�쒰��N6.X>;��-�W�$K]?�4QW*ȞR�}�Ys0�m�xq�X+ Y���?�q��k�]7Y����ٱ�9�RP o��y��: ����K�B�x��������{r����*�M��dc6qN�c)�p�*ĺ01�ta?��P�ܴQ�o��Ubxa���˒�u�_j���m����̽�I,����e>Z�q�=mO�L��M��O�>@��2.��aPg���ݻL�xd6ȢLn�o�r�P�!���/Ȼ�r&������Gx�SN�K m���([�ʾ�54�j������H`����d�E'02�Js �������Sz$��\���?C'!Ͽ�g�l��5a��\�������/ -͡k�%�e���0]Sg3�=A%`n8�����#x�i��#JWG:�E�e)%��?P*�~�Y �ynV;:�1��Iű�4DN`�<���́K��I�q��CǾ+�m�ਜ਼U6�����Ҽ&��a�Yt\Ե�C`�Q?�Hhr�D ���q�ő)6Z�*�z;RI|E:rű�����M9�$ -����=S�W�T_[1u������V�f�)uw�K$00/� ]��+� C��&[��N�YV�iV�ww`6\��:��沉=WPCz��=>���<�݈)[���lz��<j�����a�\*��-��!G��ܬ�tàG��P�"j��}���?�v���-�1��O��+��1)���B钛f�B�~� �T�8�c��"��_"M�[���5)�n�M -��ʏ��b��,�틣TB���z�D���������I)�)�gHX��@���ّ�������9���<j����G���P�n��in$��� \�p�������F�"�g�Ч�1�M�BK���o\���{� _zo�/rĮE���Q���DS,`�0�X�3�2�|�������}O����'���/��D?2:���D�B�v�r������~?�F1��«�4u�]V�-E% a��D�\<r��tﮤ^�e��G#�,.�]�S�[o��/�����s�(e�u����\�ת6�˺K[��sm������JUy���Y�/�h�ћ�S�4ˡl�duﴇC.�z��Q��9 -<�����b�Teإ`�3"M�` %u��F��ԛ�������|a��$�X�,8XƩ�L����!E_�oھg%7yx{$ª��d��<�q��_�qmQ" �#�:�ۉ�N/h�>l��#6�B�I��@�.�6! _LI ��M��B-Tٓ�j��aj�j��a�~��3���%�x��21x�((�?��9�#��r�勸E��m\��%5�Y6]/]��B�*'���PIoְI8ۼ��;�Cskv�_��U}>U�� -\C f�B���E�ڏL�P�Wo��/ȏ��5o�* -���6f��fO�0��4��F� l{�t<�i�"�ȍ�����[�!4��²wS˽4��iXF�,�Q���.���J�[�� �IBُ���:g;f���* -sV!�^S��?��̆�M혺�o %H5=4j'�B�9��ԛ�.��)��fu}h7�PѴ�� -�b�H�5*��oQh����,� �zz�1v?]��Qo�Q�a�~�����/ 鲕�P�����r�Q�a�:7s|�_m�� ��I��qE�k\iGs��(�H����e�E{�E�<�_� ��u�З��ܯ���uaX*�*�G�Э��W}�b��B���"�G�^��C��}� @�$��� �L0�e��k�&1Va"����W]�}��m<�@`ޙ���9<u��dr�<�D�5zw��'~Z�����A��n�1�q�T���uz8F38�]Oq�y���#�� -��zβ�~Z�O+�x�����M3�éyg�\R���n�D*B�{mPc���f��rL�;&ģ*�͕3ˡk�]E,ܷjP%�s� ��zp�2h����� �0Ӑ��`������QA�u�Y�o�!,���-����0���.�h?��qƜ�SnL�1ƠhB[�0�iv��ӝ%z��[<Y��e��F[v��R�0#Zu�bBB���^�wn7�2O�z�f;��NC�}&�a� -�7v��L˭{L�GI_~��9"Kd>�9�v�<��o"`ip�װ4�h1{~��n��\d������^~��q�{b�V�x�Pcî�5�D��|����������یWK/8D�!�d�'M���q�]�@nENǗbË��:�4��iՅ^��'�%���v��i����=L��,8��~�%zo��-�#�/!τ[��FKb���h;��W ��#���I+�n�<1����1P�T9��|���jd���E_ϩ�@0`m��>� {Z��ʃL��`����kPz�Z�\+�0�|�7�X|t���4lf�]��)� ���IS��;a{S�I�_y2<��0�]f�Z�<��S8�*�Y��NI� -��o����&|�gZ������C���Г���_����G���B�X�Q�����s}o�2� -�ք�����`cZ+% lߺ��OQ������&�\�AL�>W����q��i��t����BF=��_���\RA�� �F���M:5�$j�"�6blL{Oo`�`c5#m�[��H��LXÙ2�n��DaŦA�%� �i}���C���EH�'��v��Dm�1���u��B���=����7�-�#�����������_C2��e�[5�<9ՐU�))��цV|n���B�)�� ��I˗� �n8-�8h�<����MU��0���Y�re�����g����?a�}�j�!BDQ��# �/?:2�#�� -�G�uq��{��m�;u:��M��<�v.4�^YT���La� -��%*:t��1 �,���R4w�Xp6ɲ+�����Z&�d�y�? -����F��\!�Vf���|x��j��;�H�����Nl�?ar ����%n����c�s`e�aсGq���*{��6��u���[���̾�H���I�չjoL�{]^��Di������Y���,&�%���sI��n6c�,�ˢ� �����l��z,C�,��q�qE5�~lV�+@�~�࣫���C�ӓ�x��c#Ra�#�QJ�hl��e��F��'�$��ܞ�\�CI��nH�Vyl%Z��)��B��woY5�l�� D��:;)����^*[���%[��h�i=��f�����Ŋ*���·?�x�_<\�!����h� �@�n�������fq��p�>��v��E�! sx��&�{���?<'�V�ˀN�^!���M~ɣ��31�њ1,��e.�u)���`��q�^��)좢ȋȻ��� -��\�S��Z+B�4�����s�]ҍ���'Nn$�vdРPhQ\�E�o ƞTe'|�������r�������1¹hwA�eHxn��AIuCs|��9���코�۠�R�'�,�#��~��CY -�=!��q��<�K,ۦP+ =�.!���9�� ��� ?�i�H�%�ӛ�sUL����֔�P�0�aX�y<�|(\�m7��c����8`&m5���m��q%9�B��)�%�V�i'h�-�-�P��@�_X���bKzX���A?��ҷ���%r�5�����5� i��'���/�,,��5�B�x�<ʵ-JdmIR^�,�)�I�����X���n��|�7 -���o�NHL���à�v�t���ѣ�2����u���D6͟u�PT� d/��-囱` -s�HI����w��y�Fyq�x6�,.8w�ac�Sc�t�e�����J�!ξL�?ռ���س�?�`B�J�d�:4Ay��:��������7�ޣ T�0�L�/��9j��U�VR �л�F�aay�)��mY�'��(jn�Ҕj�S�jyf�������c��p�6Zڏ�Y��37k�x���@�є���A��L>���Yc6=L"�O�S�(g��: ^�ӌ@"Ȓ��>��#�b̗�I�<M]��:�]�ˡ��ӽB����%'��j��#j,̪��,�}i�#�y�e�����<�u%��}�R���&-t>nd ���2��Քq�wi�.9f�����v�i�~� -�F���>Z ���>�z~�Sc����GHw������'�:&��˺�B�p��L�8��Ol���&LS���s�9ZO���V��?o��� ���w�"�(Ҍ�Ͽ0���O�Hh}���� �$wp�TF��Y�rQ�%~�� �m�췳O�1�]�0ST*�53�b*�a�F{b?*���;ޮ��� t�E�p�E����l~s�~nW�?Z-V ���M��-�#}�zF���'� -]��ḡ�NYf�mD�a\@;eM�7��~�ƍ�� �Y��%a����`+8 >�3ld%�d�Eu{��4S�&�z5�Q�K�>F� ���e�:W���o[R��� ��3����m��G�u��eźq?�{V�G��}�z7=��2yZ������t�jϢ���''Y%��G�iK1��-vU4fLm��-�������k�4Yx��i��V9�jQ ���d��8�[���J�Sm�~�0�xn�R��s�����[~��&�G7�+�y�{��~�w�D̓�%�!�2.�U"aSh�H�Ө#�i���蚑�u�̳�?ke� �!t%Q�K��L �<�����պ�͢��gf����Zj�g�^K���i�D@Ҕg�����X>��)��+ˇ�;X���{���":�8��u���`<Pݚ�D��x���!*��?�� -�R;�;HX% �ʸ�)۔�&��hٛ�a�s,�]f�?�;�{3<K�����vD�nƙ�A�4��WKQy�ޑ��P�2!V�ٛ���g?�M2e��B��V���v7�H&�cϳ]a������De��&ʡ��u�#F[Bof�lh�B1#M�S�&����[���=��$�7u� �B�ݟD���v���Ĺ�z�d�{�X���5I�����}�D� I�r���7�O����"�<"*����x��Su��3O��ͣ�nKX�>����p��)JVP=ߜJ!S6*2��c������@8��l�#�-��'���j�ZL%��� l��`i&P�V�*3�����9`�P:�K�a�%#�M�����=*cQL����,�U�h�����B�clT���_�٬�lQ��I.-��TӨD�O�y��B����&�sN�#��@�>%~��@ɋ���Fp�c\��挻�ΰ"���{ܯȸ��X�[�Ea����\K���=�-���MK�߸(��e�x�݆|�Y/0�{����.���a�)����{��-�(����[eA���ĕk���8�C���<�2m�yѱ��{�W�g���{d �c6ʕ� v0�Z�R��e�/b�ۗ&j�9F�k����ϟEa9Ck��H£L��]e�pg�_fMp?��!|�v�������#4|@� lF�q�=��Ut��K��*�#��X�3����H�k�u���jn_ۍ�Λ�ϔ�1�d6�~�l�v��k����N,k��]�Y��9�]�Ͷ��qe?j�-�-��|<u:�6��d(�����'9ɐ�>X$�)�ek3��+�qmG����Q�����2[�KA�8̿WOZۻ����kO�uE"������{j�#K���Gᄶ��w������/l�_���Z�=1L���u}f��v���3�5���l����P�}� x��Y�\'e�7E�h���"�ۦ�[�)ڹ��?x���ǧ3��CT�+���r��_�w�#�Y&�v��D/��V��[�_[�6@,Zv�~��tDd�1�����{�^��cP�K��,7��V{w6�����#��`n�~�[s$,��I$��\�)�o�������� K�[�]�8؉Zg���G��w��-���Q{BJ�L'6����-z8@a"&��� �A��PҘDw�F|�|�J�ﱞ��^��Z��t�쭄���EO�ܸ��6��q��������Ճ�Qg�R��醰d�`�i�7Nx����0��=v�{� �M�hļ��eGޝ� }4l�PP��Ĩ�ċ2�h4گ��� 0J�S5���@��k$!���ϡ?Q��nz>n���s���pMO���"4�L�Ю�l���xl{�u,��ɢ���5��� 5��!�b/;�= �]�e}0�Ӫ��3d�Snv�Ж� ���g|��Ji���8��5�?Q6$����W��4�&aQ��es�Njx6�����G��/v4�|���\ٿN��ja������C��X�1:�ꈡ����! 5�*�ZcLD�|�:���PQ~H�yfe?$B$j���{ ��,���̳t���?������C-p`_�����V�2�h�E�F�\uM�m��O�E�-�dCm������BV��8��G�5�k�z���p�3�ȃ�������J�nh+3ނʙ�4�.4�H*�I`y�.c1�>9Lzy���:��/� B�dy�d���1���n�_�����Oe�V�^H�EIk{Vȣ�gs�/V�(̑��o`�(�E�1��X��E�@��� Y���G��*��^�F���k��̓QBHlŦ����t����-|���NԦ�_6����_R G)Cύ��[��5k&���J��G�(����)���4s_� �)d���������������$h=����c4�\�[n'��������s9�_b�2��EM�s �5gs��s�4�~��)�X�Y�p�Z���Ҕ�$U�����t%�^�Q�ۦv"G�_eikK�cB#�\zwj�l���qJ#n�����4��h�4� P;���d],�J�Vx:BV"@X���N3v8�V���2jx���Gb � -�d���Ջ�-�Ub�w V����ϓ�1�H��%(�Z�=w�d�I��L8�-}`fy��m\yԛTݹ~s#C�� �p��_���Qs�r��%o�: J���Ĥ�u -Sn��"RS�;=h���4#Ҝ�@�c�(Poi��G# :|�ո>V6ۓQ�wD�l����%������X��B˅%�Yf_�X%оy�[`iެ����*hǸ�#��X�i�6�[��j ������se��U�j$�@��w�t�8�ͤӍ@�k�����o�eu\�!�n��uDs���`�&�Gu�C�4KO?=�0Z1;��9)�dJt�-"��8�L:j��-ҍ�z��D��Qp�tI3����K`c{�9r@Fx��8�ɐ]����0 D�x�8�g1�ҡ%��sሹ.�R✱���>�?W>l�Nի�>aA�n����v"/k���~Y3�K -y,@�[���>3��n5Dž��X9��\O?/���1�3<�m�(��� := �/���H�Z��E?�$@��[�5X��x/�cPd���X���,1GY���.�b:> � ) �˨�`Ҋ+��K.������3�WYa�k��q�%|9Px�n�3u��X��[}gV���|>(R���N�����u�4��Nn��1Aʳ@���d~BTvĖK�f�ruI�����V��E-͆�<[hʩJ�+�^F�|��4'ˮ����N��*� ��\o��_��#B=ޤ�>���=���R��u��l|�;��7ٶ�s�<3���7��u��u��H�|��_1&yB�P�!����7A��Hn�穼;���zHxIH��Ci@?;RO�*I��4���;��8'g<�_z �L��R������*�ֽ�Uk��c���'U��=o��k�V.��R��%^��*��z��k?��zgGۂgx�!1�m7�N���f��.|V��=q/. -�N��-��+U�jh���I`�;�E�lO�V>��%�0����tP���v㸞��~CDΜ%���;�}t�\��)������N���wգ/S��U���W J�E�X;�S��4\I$'�Y9��o7%���:yќ�*�k@Qh���fUO�QBt.���d_;�����Pn�*�0E�5U:�͂G4s��n{ �Ե9z�G?E\*/zt -�۱|.�1��Zk?��N�izuX����*���k�V�����%���<��$��o3HV�Gu'5OT4����,�n�<�.��ü�F�m҄p�h'F[��!���G��&s��d ��h{�����'�{=�N�E�XY�'�(����5�z�4�B�,�(�m�9���)�"���o��x�.�Kk��a����T�Vn^��I/iXl�(�]^��`���yݏfL�IV�|.֖6���Ĩ�����+�ס�q�Ϛk7YN\r ->�995�̈́��p�u&v穙!���VQ�n�G��=��]�?����b<XC�ʯ�����s�ua��)G�E滫�Vy�ɲք���$Q�T�[Cg貟���Z�ȍ��~��xj�b���_x�"�Mw⧵�X�c�D��4��̑�� ��ĩ�1�{�<�VO�n���E yd��������ʴsZ'w�j -ҩM�*��N%ʒ 79c��^���Z�4OOo��a���r�!o���r��ȃ.3PgsJuO�������L��=5}���u��J�D����P��ᆍޓّ�_=�J'��y�@�;���G�D��x�ҁr����ko�P���n��5cP�则��p�Z���h��{Ê,�.��֮����*�a}ƴ�5�� ۍ��4�q;������y�0-�E��_�i8Y'Й`� ������z10���"^Q.iB�cf��Q�����,c5[`\ ���Il'��w��-Q�lZ�_�;ּ"J�d�O��(R^S�^��"my���� �g����lc��<�{�'7�Z!I�$��G���l�(�~5,��1מ�p��Aˏۣ]���6���f�H��-< רa��� H::���5Q�Xr� ��E��O|9ӹ�E��ht��;v�;�>��������`�v�/�R�2z*��6�w��1d��X��ۏDX���B��D�*\F���6�E�-oWGZ�&�ڎ���<�s���@�:|h��@X\��!]������; �yD�Lc;����,��� �����o]��������ֶPu���Dղo�����_�*^��y��p[����]���NC��nn@u�/�wե�pQ�#iۃȠY�OVw����7CWm���e� -��M��IT��T���9����Ս��X�W~*� ��n5Re����+{��cq�*�-�9��HO�̥�#|O�cO� -�l��uAAz��㏞?A9�>�ǡr�pU`���X���%"�o�������`)����7�г�KGX��ƶ����P��w,^x�c�Ͽ��V3�/�%$��E<�/�0-!���ٍ�`�,�4�J� ̓���Hً�eU��CfYK "a�?�X�|H�����LGʼ�{0��7 -�؈�a����y0�O����x���TP����*@c�t�L�$�;������D)�>�}W��W�N�Q��O���Ҿ�A�VD\���a�I����B�e��&�5�4� -��#|-�����<yt��}G:��X ޡ�+;S'Y �{��������g���� �0{��Ħj��� �|�F(�S��&�&Q�������tt�7B�IEl��!ʱ5��<��&I��s��;ΒH,��n��(?]��`3R�9�l��L��x���L{�)k����0s�e��4�����ZduţO�D��P�:k;3��ʥLf64��y�I#�A�`K���h\���3���ݐ,4�<�>"V����=2?P�%.-}Fisa ً9v�`} -����-M�M:]�Y -�e�f-Nx�d)���PQ yhߘqi8U9:rj��@�alw��u�֗�*gG@0�9;�Q���d��xsK@p���#�s��ִj�kL4�^.��v�i�����G��x�@"�>.Mx��5h�x���mx?��� 2��v�J���#�[����B\���2�綰ͼ��5wRb�?Rj��-��kւKu���5�$��h d���W��_��V����&L^��?O�!k��1�ܗ�U���U��#�ӵm���K��P뚒�k�)l`������G�:��)<���<5P�؉�k:�J47�Ze���v��fd�Y�u��?GyV�d��)`;` ����*v*��4����S.Q�F�ׁ�Xp�a+^.�YL)�g ���wxd��$�cs����l�r��]�y��բ��^m3���k����JZ���Q���]�7�V1utͼ��V��v+4*tƓ��=�f\iX�g�ehV� _�E���< ��q ��@Dx�:Z���L��}|�aD�ze?$��x��M�n��w�D����i��B��sXy��@���>����b������a�[S1U�@O3QKncSb� �3]/�ض������ro�O%s�,��C�k�Kى�} �M��ʽ�W��)a3} 32��Oi�����lZ��1����$J��B�rO� Հ���7��c�"b7�k�maP�x�ء�����2(2KLk���է�'���R��xM�����e�U����p��K��6�sM�q���#^��Xn�ҝ�b\�l+E�.s�d��m��dm�����m'c��M���q`|����g�='-�bxz�r�-,�A3�����A�b���q,��.$�U���B_����m|�n��4��&�a�ӥk=�e6��d -�jU��>BΫѝ��UWX�f�n��-m4@-r6,��D���Vo߾!��¼˓,�ګyй�!����\���Bۺ���=�p����p8��}Xu ~��ZWc�K"��-��> ^�<g���E6�7�d������V-�)���T�z�g�]{�07���Q�Г�GA�3�锖S��ZT�?�� m��L�8�,� k�yL' Z� �!wL�\�{d5&��'U���9���/�����I!^�mׯ�<�rs������⭷gݽ�Y��q�b9��qYl���D�RF�r�����Ӿ�(Xz�*�22K��,����j�M=�(��x&�E���'`X�36��{�5����2�@Ėb���l���<B��%U듽`kxG���/f_��?�a^�>x��曝K���r��_�P�8Y~i+���o|Ft�Vq"�c��yg����s�W��hs���D�A�I�O�M�HyIM+�"�a<�:�@�����b^T�@�f�c�Kq���n�Q| -�#����c����y��b.�Qi�x��]�xqq|||��1��_������p��Y��=��YA5��h�l]�/b�xV���O=�ܐg���$��œ�)�'|�5-���?�60���G�$��V -FJs�0��?����-n��&V W�4�w�з���U_"���^ D�A���Z�Q���R�,�ڗ��<d�I��Џ��I��x�D��P<�0�[V���M˺�!�N�E��@���/�qz�����1PH����q3c��p6;½��HA��N^�>QR��e�Uշp\`����&�2%�"�$L��u5k��E���'����=_�y��Ʊ�a~�^�������o�k�K��<��l(�¼��|�Z&��l��L�b�� Z� *� -ε� -����@-`��h��ͣZOKL�׳�v;t���E�� ��_�]�Qx�w�b]~Y7nF{NH:��������A�d�H�cf�u<�l�%�m�/���|�yuV9�R6p��c�Z� -��Afd�h�+�m�4�c5O��ީ )`����>�<R���'�&&�������$��]�����3�-��2Ja��E|YVz���×��wX�"�3�7�z�1��a��[�$7�R�(��0o?��0��;M����o�9]��EA�Gli���D�o�������Q��vm��:���R���7A�6��3�֓����̏���T��/��]�XWj5��1�L�j�rja�61_�Q���"ym��q��|P6+�2�f~��(ľ�������S����#G�F�h�`c�:�貸)����o�����|qH}�셷+���Z����ӧQzr_�+xΠ��~z� -�������4_�¿����k"�8�� -��I�9�P�k�(h��������(�GUS�:�N��ƛMP��1'�̌�R�ݿ��+��0P �>*��$���p��m>������;:b!*���qmNo<�ֵuNy���3@�ѧ|d���~���]Xժ8 q�}��E�-�Ը��>o ���b��X���5Xj�=�΄���o�D�3r�wa�s +&���'�X�QUg&!�:eB�'.�O ��S� + �p�q�V����{}����8"���J��,��D$�p�e� �|��3&����?9X�`:�EۢTG����KB�������} ���IuN'��E�VOxK�$�?�$L�H�@<yؙ�>���؈��u�%va�Qo��� +>�g��l��s�a���!9*��sl���Ko�g����c_�ɰ�����L��4�,��G� �H�DM^��mv�<V��_x��x��d�u�$lg֩ +'���Hox�t� t��8l�Q��b�p��p�}lpa�����s� ��L�:�p#g:�v�w,��&� ���ySץm&"a�?�WUKo� +���'��w*�4�v�.q�g�³Х��ꘇn~[�s�v��s?�ɟ}��~�9h�N�!�ts4�`�kn� ������ɕ��������O�5�,O14J�����° +�w���LCDj�DX��z�6 ��#��mX��FX8k��K� ��T�6! +���XԒx� <�->�G®�2A�[��3�F'�_�'0�n=��J�����#�v���P9�6:�{�x���j�@<�8����f�'Ṙ�U&'�'���[aL<� m�k���C�/lo�Y&pu-�A�?|����x��;6L8`�O_��[��& +[�ҧ�F����9�p���z���� �>|�M98��d�a��Y��8�aGWO��ۃN9��E�ka3�na��#�)�MzrG�:�-4�I��sa:b��y��# +��� r��f��#�R�:_!c��^Nxa/�K?�h�*��*��D9��� +h ��x$��ף���V��Ke�5�t��Kd��jY�|�Y¹���~�@�/��j?Jv� +����*��@� ���]��l��;���8�S��!O��έ�4�6P{z��zg� ����N7��{y1�*" �k�!�g靍����>#Z��gi�c�(1���Y��?H���y���o_�AE�4�6;e��U�^$����N�D%�%P�-?ƕ(�r�WQF�f���H� ������p�E��C3��IMe?G,��VM>�4�:��d�H�^7�i�8d\� 2t�Ў�\#�j#<�7�6}�����`���W���ͱ��K��Ҕ�����*aSL8z�TӲ��*Ô�<�+��69|ؙ�"�]�Z��p����:��ң�nڔ� + X�ɍΔmPmxL�.���s���&=� ��Q���`kL����Qqd���T�/��.�,"����b���-g���C��f�> v��h9��_A�$���'iY�)��e� oX���t`� K?n���^�^>H���Q�IaK��g��Q%l���#�>�W����\X�.�;���rX����A=[���a���W �r�z+&o����У/U��@�����-�6� ɢ`��/��ǻ�ث�u��±A����F�Q <L�ڤ�H�:��O�8#�χ�24�<JKK�N��u'��1��!�W6É�!�ݣ6^GT$�9�Ɓ�i��D8�O:�`� +D����t�@�}E"���B�^1�H�,ZY�w������S.VF>0a�Rm���س̩����k��; +�.��y�Q���7�P��X����v�ג�V�0|h�T�m���;�����Қt���c}���yж[�O }l�L�ʃ-yĮ�ͧ�B?�K���yZ�֎���y�ཧ��Z=��mrd��e5?�Cr�Q&\�Y�l��:2�AX�)�b/��<���_�����R�c�M����U���t�Y�=F%�h����݁���,w�����l��眄Wr��X����b�t�����������xh����&�1jA�/�9د!��u�U�(�?TDb�E�s�@cK{2�´�+$�B���<t��X!�6ԫ�/��Π�cݏyz���oө�i�-lwҭ�$_�d��=k ��w��s�Ne{��gߴN\.�����m�K����-I��^ˢ�lVa=��o�Q�U�'j��d����QcF,��d.�s �C2��q�ς*��S��W:E�8��!�]����H�������:^��S��%�C@L�*>8���qJ��5æC�IS�hI/ �����N��q2��-��mM�K�nl��"֕�� ��oY2�� �I�0�`�q>�e�ԯ����@�xv��K ��h;zO6& +���� +�j�?��h������� �10h��|"A�����^��?|�����(�vpޟ_\s�,������v�;��\��<�(���U �Z������a�q��h8�I������fbz�L�K*�~���7�d��/x�Z�sU(���8��%e.Jg+-D�+ěMSM��Z�kXU>�HS=��۾� ���6��:�9�^�$�=���z�X��%0��@4[} ����o�gg��.��X�R[�H�=�Ѹ��A��l��69���}�������ai���a���-���~��o�_y�\ěY�~��X�*0�H ����_��=<u��{�"/Iz��u��x�VI�ܹ�Q� ���fl�1��� +��i�ʌc\EWН��9�V�<���^S���4Ү1���d����S����S��{��H�iU@�;�P��H)��;t ]�3��&����h%kp�����Wl7�4�vl�߱f)}g��F��l���EN��&��<}Ƒ&���͋B}���ң����A�ϩ����'Tr$���ͥ�[�g?�ݸ���C�i!8ι����Xľ�y�glD��@�O� +��d�p��#"=��ˆ/�Gh��kє�J:Hs���j� �[v[�*�_�R���Y!��� �����5K�r��Up#�g�y��^uu��u���Y�&��yp�?6Ą]3��P�W������]%����Z�#n|�ìP���{�㚎R������o�^��^�z�����x� ���1׳ў�V�=i�l��p��m,v�ބ��}������/�m�U��v�<m�h<����| �&��>y3�����#[c����ڜ��i�G$�4�;��7B���`B��?���'O�m0!牰�����p����g�Í�Q�;S:ؘun�1�m$m��2 ��/lh�6��n�����F��zƱ>�9��R���&������[X�&l�XE���i�N�}i+,�ςt&� ��(6̈́ ���0!#T�V���V��G��8ș��u�TT2ua�pe��#��\nz�u���o9���������S{d�a��7��=�I�o6}�>������~�+?�*�������=�*�� +� �B�c������v���W��kʣd�3��^T5�+��+h�L�����v�],�s�"zG�َ��p�'}���=�p�{����ȡ�,{�%���9EBw!=��Eq��G��1W�%��mu�X���1-��5��FS![+�p���sj�)z:b"���7' ���������eq����9��+j��f��ݣf����CG����0���nr��3=���3�)�Z�(ۍ�&'����:e�][���f:�Dw;<�����_�ۓ��Z��1�j���"Z%~ �@�h�ſ������9��N����Q��W¶���]Є��"�J#�|j��������)^�&@���W�r,��ۻſX�_O�\c\\F��i�h�Zg�:�/�`���#̥��Z��xt��l�UѶ�E��J�I"�4��_&�trp�O6me���ڿ���Ǥ11�� ��-���,��l�."�N�׀<�)m�G���<��`��|W]ARH�!��#�%zӞ��4��f�+i%����`#iW��gqfP# .��_Ez�5.: ���#�kJ@�>(�o�q;i����X�Y���\�*H]a3(�P��h��l!$���VY�8����ԍ6o%O.�۬�T�$B<�S��H�����&}��h;�_�"d��ٖe�?��Ƣ�'O� Т�AQ��~�QV�ȃU��8�?t���w��ӱ������G�������ʾ��Op�=v� +�9X �`S�o �*�ħy|��R^t�p��4!�M #1�?�?H;2��#ց�t�+��HFH4����#l8Q�����11�g���Q���D����7���R�O<t3��˾s�9�U�9f�pJ!��'߃*�u|�$%�y�ד���%�X��X��[�4/���qL���gb��E(lk� �.k��Q�����\g�y�;� �9��E�l�8�;�?\gv���� +����4(9E�A����� NB�-X�5�����gj�lB���#W; +ᨺGE�4�V�}Sv�K�:D�I�:P�V?X�.u��������-�s�=<� ���K{~0�O�� +�nCA��/��'-xC�m�5 �[��!��w4�QG�C;tm��;^�D���6˼�Gq�vgr\`p���ہ�v<p���KW8�RdF|2&� v���ӕs�!yDG�������o�.-�Զrƭ�/�u5n�Y�F���Dݎ�=p�:�xp�0����6k*��@ڼ�uE�ul���yύ�C�}������r�ɹgOM��(�ek`�l`?����� ��.����nG�dA��'R��>@l��?���������,����Q��`7Z�pXsd��]�~�E�g3��q��E����L���8�QG`nG��D'�&�q��I����"���v��FIAO�mRb�,־�$�8������ +����[s���v���������I������pdw���Ӽ �����#�\�����UУ4 �3�@v\�O��qut+�(#�orԩFX��m�q8c(~�xo�hVƬ���Hi����"����#w]�¡����6��ڑ��~뎬������l�o�t�V�ґ�i��=V�l�uGV��V�#�Y��V��Fݭ������D�l��� +�Q�(d/m�#P��AG��`� +�M%̑�n�wr�B3���i}��0UĖ�����:^��Qf#�L:��E�K��k*�{�ȎA�a˟h瓍� ɏ��Hp���m +-U?��hGq�D�ͱ���7�Lʹ�לe3��.���Y0�>����Ѽpĵ�PX��7��m��"mӲ���R�|��h��$l +oe��ۀ�]9��.�_�$݀�pnn�}D*�K�sgܹ�ѾZTq�E����I�٣�(�����zWi�/�O�V�>i<���XiQ�BU\x!Ҡrj�#ws�q�Q9��������tj��o�[@�a�Ѕ�ߚj��YE:%s�9;n���踽���������P��*T\ �#�������h�Hyl\B7<�Ȉ,�)M�-�6�:�NjH۩W�_�ǁ���"W�G ��:��irA���e�ʍaGU�� +$ҭ��p�b��V +�}��Нs�zo�.Tt�l�m������� ���PY���M�O�ԁ�D�Aa��vG{1����L�!��T�g��XT�Q�q�8��1�g�.u��9R!2�J��gĔ��3�xo�Mn�!l��;�8S%64� +J���s�� ll���*��-r�X�.��K�V�=�e��m�Y��������8�H�h��������Hw�<�x_��H�����ڕ��ÂO�ߙ8�C+�,�E�Ue�І5��_ksZ�������y�F��Tu�����Ҷ�OnN^o�WQ�#ƶ����?��M�W������{�[��j���$�DAH�m�ҝ�F�W���c� +����9��ױ�M�>���"��`�6��?�¤u�~i�cy2�ѧʘ��>�ɡ��<�!��r~�\�!�؍�9� +����[<�Lx7�L��~i�.���l(��x�"�)��S˴V��� +�:F�]z9pP�<� �[�wD�:\��C'�9�ڳD�#���c��s�C�R��D�}$n�q3��, +8t�|}��,��`��ֆ��+"ߜ��َs=T��G�D������9�o{���Ұ�a9}�^_.IԛS����,�uY؊����(8y�7SNΡ(�H/6*)!�P�q��)l|�Ǹ%bX5ud� +��I%)����?5tVb'[�H�&r�{a�c�}Nr3C��Rm�Ϧ$0�{��z"��2��-�;x��;RV�rc�NKa�)�펏�A5�B��{�~qL�W�"�C᷏#�����ě��1Q��IM�nԄ�uQ�T���������42�z:���1'N���F<�OI�R����9��� G\����~�>ak�NƲ�eᑴ-=I�����ɏ�����C�Ұs��7Q�̸�#���X��H�ʘ�#��%.Z�a7�JR�=Y/�N#�M�����(�v���)k��[<����M���|�n�٬۳�9�so��J�3?B���~ �1��O��x|�������c�~t�bhkkL��ɶ�K� ���R���; +B�?ؒT������_��������c��l$���N:d�����T�6�p�r"�����H�DG�[?xѹ:��fQ??j���E����ގν� 6ئ�]��@�3 ���ayÞ�����4�����C8�ʾ����6L�Y�C��H���¯���L@�n�뷞���:�FU�`���)�-c8����N�'��?z8��?�fhvLi�+㴴LCEQ����7�������("j�ݨG�o��Hi�̖iw�s��I�b3ջ�&*��L�ұ��N���Z�%�4LTp�Opt3��4�[�T0]��S�WO��#�kI��/U��A ���W��e�^����3�����>z�e~e���P��p$#\�eN��ڤWmiֶ\�)v�^濡'���4�<�ޥe�TV +؟��0��� �#z� ..���a������m���Q�Qs� l���Y7'�@�`#uĭ���0z��`���+���>V�n��pG¥�>��0]�{b�Nu6��`�St���1�-S���ɋJ��^�v���D��&�mF�S�����pTN�����ҡ�����3��ى���1�~�;f��NV����Hl���a����Ty����9�����F�O�� A��z�-(Q���8�߇��}>jNE�3:fc�~�O��:q�zB[�9�s��%�^ӑ��>�ٝ}�7D\a���C�C�z��:j�Tl�WmN����|�� f��r�N���!$���(� +I;m`<��Y�@tD�S�=Q�Y�=X����]�B�;�$���D&n Dx0>��� +ŋؓ��n����/�AT��Zڵ�A��I�܂0�-���ﯲ<��Krf}� G��^��z�6����e��g��"pN����A?mrȂ��,��B�?��v��j�>C�j�_�ق�.jV����1�Z(:Vb��,KK +��Qڗ�7�k ��cۈ���N :�1&b��lTm�Haì2�yDm@�~�茿��1��^�r(�@�M.��j+ ��"�HpHc��r���h~"l�ũ@mWo &�c�}��� ��Î�upء� �-i�H�:����wo�<J��W� +�����ubnڵ�ݙ�uLi�/�-ͻ6m�Xd���ژ��ÜW6K�5:��7��E�Y�̩=��k���7s���Z�/�[��@L�?�.ҍj6���C�O�p4�g�S<nP��86�S���A"���&�9��KR4��&�u2��E�h�>]���`&��nu��t�f�c���{+H��͓e�>X�����?�?m�lXHR���Q��!>kO��Z�u|$��n.�S���n���{7�g�c��]������im�h��s��\mLc_����j�ݜ3A5(�4KZ��.m��v��NL�X|�8�d�ZC��=��-g���oBd�v����U�}�?�(�����U�a(��5��2E(Qs������G����P�5(Em�pGQ*õb�]�|x��7s���q�)�s��P[,ǯ<e�� �X�BK�[ + +3����x�x��UfxYA��Ź���ا�pX��)i�]�)O�tf'������B�5XǦ�&�!��/ͣ߀\�w�J6u��+Ʉ���"P1�k�*�����Rg5�36Z��s�*�{���Yz����j���}����Pw��J}(_J}O!�^�ΠH.���sl����r��v�i���S�&�2����������D4�%nM� ��}�v�n��}���<$�E@���ݥ�ܮ���LJ�#N����q�"i��Q�r�3ӳ�9@���ٿ��ݾ/���]�ƺ��K��z�~�"��Qlg�>��j�MT�si��-��e�"D b��j�?Ԙ� �, ���H�O�g=�5�/�/�驩/�ń9�\KY��'1 Gh!�.[�4Mrӂ)�g���� ��/�77����ÖԿ^7Vٍ����-�r �Uֵ�ښ�T��:�Y�dK)M���o����w:��c�5�*�GD�9��h�p�C���7� �;w҇�"�$4�9�,.�uK�hcS�A ����猽z5����Y^�՟C�ѥ<܅���aD�)�x�����H)}����g�3�����}��ר�tXށ�.��]��힚oO�*��p�D���W��Eq��ܹ� +�X����J��L(U������]���hSm�$Fk!�k���t�c�w)��L�J�ww+��>ǝ}����U��$�� +l�ք��Ag�Oo,I����>nj}�s�Tg�PQ / !w�.���CNC���݄%�*����Cwm��������~�Y&<��΅V�6��LeD7b�.lt�)5����6���]~�hx��'?n�<��=��Pޏ)��/}�ڄ ͺU��s��o�IqQ�A���� ��-0��}r.t�����b��߫Q�b��k���~�5�|����~T�o���:�R�����9� +WF)T�vgC�a��/�*�j���t?u�t�x��=��~@Uד(l�Vx�,=�i���.�� +���P��GࣴS�� ^����� +[�{����3�V�#G�&��:_�M��-� ��$~�/�I�8N���h��f�ܶF�KL1�L�t����&S�:= �a�Y��z�,I�HnO�y���l����������yBjL���:_&7//��I��[{�,�z>�O؈U\ 4S�`�Ӡ�#?��3�����{�%���r�L`��u�"�&�\��-�8��IH �7m_���u��s�h��� ګJO�\�D�n|�7H��9�X�[lK����"Us8N�<^7p.� ��.�w�l���z*�X@���)�z'������R�`X:���N�Wi(���W�]��|�N�z�Q�~~1� k6~e�ي�4�/�R�~�:Å&�*эT~�$���?���Wq�}�s8B�������%��:������;� +k`�`�`v'=�� G�(@���1Q� ���4f�͍x�X�Mz�R��*Ǒ9��������B�l�M Dŋ<g��^���>���n@Qhst� �m� +���@��+�ݗ��]���a��cZ6i�S������aO�\��ȹ6<�0��<���*�V��XT6�Q +�_���Oum�RP�=�89�e3�u(�\�Hz#��wB����-3yS� +Vĥ�;Qo2����c�*�'�U�|��1�W0�5R����\���@��b8���C�D@�8 9ZMz��� /+�G�p�*�$X$���O6�V���Ж�5F� �-�����_ ���l��zQ l�������+C�9N֏*��{9rՏ�Ȭ�RX�T�G4粹"���G��E��Z�<ׇ1bBϏ~�J �� +���SUH[�A�H�q�� -�g_�±h�h~��k � ���s�+��#aK�8�(��+�:��N�Gb�:_�9�g��+����&��/�_)�!�?I��6Ą��Ty($8v����D��_l�-MY�� +lN��F����65����*��G��B|]X�8�c�#�t(�x�T&�O8���4�V��������&G�L��&i^\ +�d��� �J��ї��W!�ܘ��!��j�E�z�g_����[�1���m���X�Ļ�7��a�/�d�㣰!�W��!KBZ�,q�#}��7���kIHD�W��*g�*�/���c�/=i��2�#+� ��Px�8��_#Ub�X᭟��%a/�M#�Z��`��O��&�a�L�@"�_* ������@0ĉA.�����#��$����R�D�7��(w���L-����/�����F +я}o���{O�<�=�n������C�{�4y��Bj�P��_]ۭ2��9��C�@O�BeY%���q�FB��]�PZd�|9ܾ�~y[? [g�:��R��9|���(W7��}���Q��oMb�@������Q�_��?����&0J��6iLM���Y|i]~��������2����_r��̜i�f����+�� +��$ힰ�>�P������ l��lk��8Z侰��#�<��e�K�?�l��N�����˳��3�������)�5�{涸��k�@@v#k?~� �|0w5�#}���N��/^��3@(��q�=��llw�ZE����u����&Vɇ(�(H���V�Z5M�H~T�z��K��`�^��1 +�v*kj���N��5m�y:B��<�i'�ʄ�r�r��L��':�� D^�T��"Z%����[��Oމ�/>(��7Y�'�[�lj�g�:��9R���[��xZ�d����-��6N��2�|D��a�� +/�IW�D4X?����(��~����0P��Cv��p\��%B� ':�1<��ybXҮ��!^8w'��,m�� ��#+����3���a�S���}2�);���^�̯���#[툻Y��Ӯ�ƭf!0��������y�k��b$^$ӎ �3� +��|�Y�>(��PO���pv뎼饴CL|�W�:zED��Ҏ����J��_��Mx#������Æ�XGkL�'1���H�@"�z�����b/Z�`zh��bu�i�+0\�-}��}�'��O��K� )(�4��mo�3L��N�a;�����B=A{F)��4³�ћ�*!�EB�~݇��m�����ȳp�'驚�̮�;@�h��%�e�[b��N�J���YT�3'q��%��)�.�:�մc��m]%�i��z�U���S���fG�IJ�{�p>�w��J%P������:2���:2��S7�[nܜ�Ý��]k:;`s� ��f��Ihd@1?��ݸw��YwѴ\i<�\�z���9��λ�Hk28��`hP���|�**�E��P+�J�=��'P��*�G�sDvO�9���J�nu�Rپ���Î�ID�t�4;����LXҼ�¯2�͌�]&��?lc�v�;�z�oio�*3͂i ã����)��?K-����if�SK���/�?,e�Hh�ܘn@�k�{=rI�M$}"�u����}L;=��|&V�ggy���H�{����tgl�#��'��V<3��؝�C8�3��%�&��$�Vk 7i�����2��[Ӌ��0��^�E���ͮ@�I���6�}%a��� +��/��ǯ���v_� ��K�8� +cW�K�Ʋg�t:�U�_�,Eװ~&�log'�����M�Ȼk��P�^���]ت���/������J?/���A�&h�w)�8�8��Y��:�����ٙu���5t�h;)����|�,Oo��Q/�o�A�DG�4������a �>��^.({��$Zx�����{���Ù��»7z8*�;��`��4%~(�r�*��w��L��݄0a�M��]Ѵ��m� K�Z���JjI�IlOQ/Oc]��N]�0� [�u����������� ���, ְ�=e��`#uvY�r�F���b�"W�%N ��{�ŢѩW�͓+I�ׇK��b����3�υ�k�9l��\*��*��[�W��j���J1���r휞#�$�)2��zrr��yz >��ȵ�p������=��瘫˂���"�<i&Z��`���6����2�W��!�;�8,.�6|8�g��N�����yz(����3�H�?m2}�����8�r��I�a�ʱ� /X�� *^:��Or��n�y?��;�5�g�by;L�z]"�X|�p�ҋ +�}T�7�D��E�=A���Y����1;̅��p5H&�<����0�=���'�����#O�]�r�@o���z�i�+u������zO>�y�=��I;5���*�LX�w���䐣�~j�B����8�ʼn�A�Q��(�3�()����8��U�]�BC]���jN�5V�7wc�a�8�w���8�$���I��)]�Uʫ�h�~����??G���F����=���r�Ǡq$����O�������!x'lk�e����y�ʗ��%c���2{�]%��K +�챷��(ln��\t%=��sE�U�K�]y/ur�_����ͤ'r�[�Y�x��Zř!=����zbO��GO��l� �eMq�`H +M�\?�E��`���n�r��7@ƍ������{�Č��Z�@����ؚ{K��c�=(�EIW��oְϽgq�ҿC�� #�mi���5K�N�t�q����j�e���u�"��z�'���$,��MD���=6�Q,MCWU�����9c��q]�*�xb\��h�,[���Y��vo*0���PYm�'p�&�X�N��B����T��!��J��i��Ŋ8g�v�co>'����[�eЖ�$J���Ӵ��!�씞��؇0�P���*Ų`���Sp�9��K\Q�����l��vz��4=u7����B�n������XNT{��M,��bĉ�%����}3��'E��δ��w )�������T���;�לM��&�HU٬D=�?C��k�VX�z��:��l�y�"��>^m[�m� l�dZ��!A�n�� ��fp[x�n�:��Y���}R��[{X�s��z7�����N�����Z�ߗ~�{���us��=�3��&kYwG9 Ǩ�h�ܱ���$Oͬ�e=�&��;�o$96���^^��M�85=2B��Is�a���I ��n�f�_YrȐ��>C:��.��s2�wu1o�]��>����3�pE����}�k���� <��Q��Exd䶩ܼK(U��J3�?��^|ʆ�W1>�ݢ�ǒ�<�Z�%�u��w��lZ��M +�|ow ��3y��%�ճ�4k)�Ә����r]�6�B'.L`XJ{0� �;V�g��W�Ĝ��HR��Bi��-�?��QyC�n&��Xڗ�~U�l�;lHxeJi����×�v��]�uc�qLCBKk>PlX�.���/���Kx6��?����t��k�J����<z]*?�#��7F����1���,Q�4��M+*��G"O�� +�w�S�vt���H����uKm��ٽOګ�>�\��Ng�gg0�1��� �]�K,/�Ua��pƒFJEJ78Z��f\M���#֩��n��%v�X��������?�9n��=o2L���Mi�n�0u�݀C��膢0䘋?�QIƅ'�;ƺ�֥\����ۄ�\���X|=s}��P}����e)܁~�5�{WW�Q���X���W�{'G��G�z�Q��F ���<4��z���;r��֥�e�'�`#������3*%ى«��6t6=fsU� J�'��#t1��������f*y?����?*�ow�W5y.��C�o���o +e���tM��뇚��{���yJ�XZ�yȵ��e��*hY4���$����~�=��%͡�v�^�D�N*Δ�B��uZ�z���>���d]�r |�v&I}�O��Y�L!͛��()J�Ɲ{/R���_.�\M8u�V��:� �|=�w'�fv�f��]*��-۶!��7�< [��v��"uMG�*)�!JY�T8���F�-C'��F��!#h��6�y\����Yb�q�?�YhUc[� ���J�A�jی�����PG�^M����!.Vz:X^u�o��z���lֆO���F\籢4)mm�{h���t%�49�F��ˢ��e�y� a���:Q�=�u�w�;E�p�h�Q������\��Q�m2 @t��6��ƴ�*���'��q�鿻�����V�tX�P�]��o"���̳ ` (���p@�@�q���s�F�$���.#�F9��0��Z]4���F� R1V>+r|{�HOD�|ӻ������~Q��燛(9�"}��=1x��>���vTb����8t����ׁz����X�ĺ�Dw��B�KR8��������^�T�#<�ih$�4��d��/(K%P�(ё�R���]����B��$�ۺ�~G�juС�[FY���XkQI;�g����|�)��.Z��j��@La���h[�R8Lp�D�;��woGv�>�0�z0���ȻW��9��A��� $�c}t�_��'�6(�i�"�4�/#��:�Y���G��>=~�*�"~p�!�g���U��6�P�/�,����ӏ,qm�Q�� 1M���xo�Η7�Đlo|t�I9k�Q�c�_��E��oY�+P�8.�ss��-�H~C����(�����Fi?���(_�O���"8���U�~���/�'�J��]�Mn���;�+�/�#�샄�^L��8d�-�WH�����^��� ����<��d�2�V��<��W�5^RR�C�(W6��(�����3��ڶr,���Q�s�n$���NM�^[�y:�¥�W���p�DW�/�*�cR{&�� 1�W��o�YomE��?�6�‒?�~YG�~6����H� +O4IjW;�o�6 �7���C��J�&���kfН;�D��%>#�,=g���r�G�u>�m����[:��N ��ya�����/��4�2��ai��tB���ql�OJ�.f�]�"��Q�B/��i����{��\i��8��k�p�Jk�6����أ�����^,��F�ZM��~�ͧWS��/.�����%���7 ����~��Y�ŕ�𲂮l��EZ�;ȢԶ&�TK:��@���M�b4��g}���@�]����h�r�rj0J+�fR�4��.�)���S W��:q�q�Q�BJj�8=��h�M���H��[;_mW�dB��eC��/��D�'Yq]S�ޙs˧��?a\�G�ՈزNF����C �Χ��fC 8ڟ����ϽW:�j��1 �&z:@���>�t��J� +SS�8�~`m� �h�U�B �/�U��(=���+߈V�Mgd@���ݝ����*qIg����pF��e�^�� ��jan6�d5�i��>�u�I�"�Nt�HFN�_��Mu_z��$��OZ��z����t�}��O�ܔ/X�*��5�ʵt�B-.C�E^W�/�^-�N�˭�G�����:۴����.O��~���k��pv�zs֗L[�S=�e��|I��A�0���7�D��'zO�k�H$(���. +�!�J��$@N�ӂPj�/¶9�*�F�l�ૃ�a�}^��v���{��'j���L: � 1ć���%��+C�z�\�J�������(a�Z���0��g;��{���DҺl%l[C�~۾\��/{�-B���#�c���P�'L���כ�:���9&� _��Jgf������h� J���r��v�f-,�������4�&��A����m�)�B�I�;�t�p�F:��o�|X��U�%.yr��3a��F� +P�zި�_\3ƛ���v:$��r�Տ +c��ek_�A1M�,�8!��M���/{0�`[��F�u���qSA��Z�X=�6*��2<J��Wi�/��<�ϏfOI2u�L���Wxq�Zg~n:��c�vˊ�P_��̶��1�#�Ҫo�#���i�v���j���><z�O���Z.@vb���Zxf��e�wXP��5��:��O�yO��1���*�5�1\w 'P76�g�(��;�jP�F9ST@FUWe�-�X��Pa��N�\�,s�P���w���s����f�#|��q��C��������p\�h���ك�8��ಿ9�����Zݦ��%�^�w)Ҹ���u���es��i�������e�>���"��8�r�[�E.m����gݱ�j1N����}K#��Έ��E�>�;�+G�ت�}t�Ä�K[��k��ԝ{�RO%]�������`o�S�p+�F��f��-8Z�N�U�W�F�����=j����P�+"��Gg����/����ESr�Vui4�d� @!��G����h�Q����0�anc��pUÃ�>�9uct��^vt��v�yz-���[n�?Q�G ��*K��vf� g�1W�����%s�=��_�$`��_>r�බKQ4�}?@a�������=|�l��5Jn۞w��rly̱�I3��=2��Dm�vp.l��! c�M �+�(l��h ��--N!�R!]z��ny6�躾!���V���1�~ 7 䐈K��9�0h[��T�����������K��\,-�M�=ʯL�B���Lg�Q��@w+�( +��>@#M���s����M.��9� �5�0Y�}�|������>�j�\����i"�>�!,x'�wa���Y�z@�/^[%��߈G�])[�E�e��!.P*4��:�A�%�>E����������k�[81�٦�~��t�����I}Ta���$�;bT�M��ᄚ�N������� +�������Qo/�m�Hh<``�u��d ��+a��x����5��F��tU�s<�ˀ��s�~K�i +�)����M���[W�]veq�e�+��.�Y�8�d�'W�]�wW]���b���F�p��}���*��X�C�����0`«I�;!B���r���,�.��u�����1ݪ��Ę�6*_�$�ʚ☇py�� +$l��a�wdo��2����c� +(��1GYͨ�L��ƶY£}�,4d�6˄���ah(��o(G�{�"�_������7���:��9��Y;*����<,���9�c��9��89��_A��ëacV.��ݲ���ʅ����y��_�����o��m1Q�Ǵ�s{�[�Fa���IԴ�k0�(������'!�k���v9���~����|�c��m :{; zƉ�a�*�eو�I.��I��z��w�Uq���Xi;��,Ϫr �G���b,�l���)��}���ޛ@�s�Sr�Y�:+k +��L�0GiC���䂴���� >B�����0v�X(iô�� F~B�� \�,h<\|�$'M�Wl@IR~҆Y(���x���8��C��݁�w19�ƽe��]���P�U�8����,����-s�x�����*6�6q\� �)f��1>'E�J�+������˸��G��ڬ���(s��8�C�Y ����Ќt��N0�W�u]�H�P�/���lrv��,lH�@ @Q���fG���,��p�A��C�0�Щ��3�!f] +�Rz���@�9j�w�� ��So��l����O�9�5��&�ȖC���%h�:,�أ9T��I̾9�f��B��5Ҏ�$ivF�=����eb�j��0�y �W���=��(�C�eC]��H��5�w�ݜ�8��Ǵ?L��n��)^˛ci����la��M� +�\e�--�B(ll�Q8U���~�s tH�\]�ܼ�Fu�P���̄��!�C�Nvt�5A.�#�˛���ݹ�s1�{�/�68�z�e�>1����+�<�P~��<������!Ih|���l&�8��Ql��C��\8��aC���u��/<�8��� �\������u@�D�������sa��W���;Z��N�{�C䐭����ÄC��#��^qٹ��T��@�=�L�y'�b�q\���G�*ҿV����"��������� ���(\�c��K?r6:6#+�Am��#��qҕЃ�t1�G�e��ӶŢXT �$ݟz�!�?�R���(j���ޤ�@>:�qaxU��l�e�d9(�P��A���J�:�>P���F��[�*����*<��5�r�e���5\�R�՝���rZ�YE�X�ô�8C�D��O��Q��)m��O&~����Ȇ4d"��S��?L"������Vn&���3Mf�xC�Z�Z��Q�ն��ɇJ�p�Q?�A4.�(�h7zɑ�X���$v_oj�H5#x`5 �@\�v�I�� G�x�C�Z�DQ�f�('Ti�̶ҧ���@����`�u"�~���������Ф�f�ϩ�'t˯Pڵ����]:j!Pf�n~&���e��K���h�L8���� +ۚ�y���i����1��ސ�j��{����7ȝ�&Y��` '_�<6�������� G +iKb3��;Kk()lm��,��0zaA>PG����~���i��3up�c�j!y�F��F#�:���!�JP~!L<q23,��x���$/#�,�d4�k�9^� +�b�?��J��a�0M��k����}����'�y�BIKh�q��� '��K74џ�����'�<ܞj�+��'NŘp���`��㨰� ۴-������N�ʭ�q&⽂zE�tbn�GOQ�W�n���쒶��W��@@._XhrP^��d��&�^��2�M���:u�{5GD�h��M��ik҃��]E�ڻ!X�W����3�w*� |��G��A&EWQ.S�5!��宐�mn +@�,��EXe1f���{m0b�9��t냈����S�8��.үԨJ�49Yc���j���R[*x�-�'*qR� `�`?�a�T� �m��?*e����eT�i�5M�3�ͼ|ϓ�X��.�F��i���V��T�V�4��&�Lfc�v +���Z��u�Tx���D?�<<gLqd�1B�:xA�U[��P~یR���z�H���)|��{�qG���T%�~QC�书�.�Ү����b��h{XU��"��aY +{Ķ,jwmc��JO��� 0�s��(�͂�4����rCzW�cL���4O�� ����l��2X��?�7�W@�CPۙ��� ��H�#Px���&G;8�q,L��e��%l�SqO W`�&j"� �����p����hn<���Q'�؈)�}��k��tB#Dqɬ C�����/�vDݐ�i��%m{�֠W�����%��V���y�H��4�;��}.@+�6h��D�NW�0�Fg��l�[Ns�PHR��Պ� ��ߜߗ�1'{��tkX���~c�I��"���=�Y^c?�\z�r-6T������r�����,I͡���Q�v��,��c"2@���`aSL`��v�m�f��:��-�]�V�5��ه������a��W7�+�<��+4�$��� 9-t��Q��r�i�(g:Ml��Ӈ�Jx������f5���9��s��� �DŽ���z?�$���nX��F��@a[ý�6i./->�������|�wF3�?��x.�M�� �a��kP����b3?c���1��jpV������/�5��pܢ�tvY��U�ڰ��o��E B*�d� �.z��ܴ�>�s�F�6/I�82��,S����"J/��/� u��$ҧK����N +����P�Y�YU��B�"L����u��v��G��R�keݙ>� Q���0�jЌ��;6�a֚R�+� qd��C^�żr���� kڲ��_[�=Ļ*��֘>�h��R��)=�%�f섐��M�!C�և��J|b�����@^�}�0�zl��(�#F�28� 舖�j�'g0��n���/��/���o��)C[�1V������� +�w��P����&�eP_V'r��~�n]��U��~���(����?�W�����j��M�¦�{����ҷ�@�LN�HG�Y���O��4O��;����nZi���Ðxn*s3����I���9o��\vpK��m n\{ =�ၧ���Kҏ���p����(+.�͏�4`g>���OŮ}�0�Ʀ�3p{�2;��7��>��-�Z�=�������Fw�7�N���whؑ9�V߾���]��+� a��n�k��S��}�vj�#���_� �\��Î�jP�h��<� +%`i��Ǿˮ�����o�;/���{�Ϋ��x�~K������,�ay;�l�~kb�Ӧa�?4��=�\�K���)�%��ȉ�!������ۑ1 +ט�e�7&>؋o�Eq����Ҋ�̢up�Mq�������Np9&�G��= ¶X4��.������2�Q|�X�K/k{ٻ�)GT����/N�1�a����@�E�C5�B�SQ�)G]�[Z!��V(@xD&P�����١�Ч��������28��2�K�{"���k<�i�0�}��� \����l� ��q�pt.�hrs���&�}Q�]�-�od� +;5?ʩZ )�`���0H���^�����&���r���Hb��|S��5�XF� +�ZOCܖD��0��S:6L?�t;���>�,t�3���x���J-�酨q���8b�E���S)��(lG� +DIE�=i�0��sH���Q{���Bow'�$�@���Y�6�X?1�82V�E�e#�T����'��=��n�̹���B�Ku,Y�&�����>,=k#^����{��$�r� �W7�j7~H�NX +��M�Z�5(c�3 +��n���IsH�`��Ju<+�^�Q���$v���UR���y���)��[q���:W�?��Cc���_�<�=I�f�?>~�?���1�4����249zO�#mb�aG&\>j4�� �먫�@g��7�y삠e����~�b���1t�k��_fu�:�h�=�(�����{E`�� ��㴣�c�J�HW]��%�������փ�O[�a�k�A�bL�g���&���O�VeC�C��n�֒���{B���4_9X'S^�03�=3�FY��]�V���'���\xZއ��p'������fv[>�˳��6JB,pa�)A�k)���r��_�}|���Ϗ��I�8]�R. �mf��z�%n��!�ZvXA�9^#T�|��e�g���=y�Ob J@�X�\��=��9���-�h$h�$ߠ�ڤ lr�rv����.���a�[g�]�y�m��pMg|�%�����@XBw�1�0��j�J ��r��<X���@�e@B�@�4���pzd2�֑SN8u5��vO�_[��E,S�E���5�!~����g��c��L��I��*<�1<�4�$۴[�R������a�<��Н����I�Nv��5DUAu����+q|���'���h���ҙ!\ڋ��/U����/! +Q/=��}�����G�U��+����#���6�tm6��b������щNu����zF�T� �V���J����]�%��S� �z{��O����r� +��$K�N��C�(��~8_��& ��R��Ͻ���j��|�ғ9�癎���_�N>g-l,lq�m�� ��q&M?!��6��T�8W�,���������j#\�����>��T���G�D�?kcݡ#XK^�r��_�qZHC8��=�:�`妫��,i�ܺyi����s�Q���r�s2�h���l;8����C�n�-�xK]�X:�g=�9eL�O�����D� ����xy +��j:P2���0����(Ť�u�Ue�6�n�Ƭ��>����-����4y�ݡ?�1�["m���������e +�z���ɉk���Ag�4����I@�57Kx�g�\L,����& +���g�������z��JD��û��χ�2?�h��Q��:P�t�����9>��Ѝ��G�Ě T��x+=}V��4gک��2.�`e�˵�~}ڑ66�ڏ>�ﯟ�������f�E��mel筿J[gp�p�W2�_�-O��p�u�&5l%%T`~��!������h�]������k��4��h��i�{�������Š��J�C�n���k��=*'����:Ҟ�;=3;PT >�D���rPN�=���g�%���o�����Lj+�*/{�\����NR�@7�ȑ�t�*���Č�UFO�l�����;M�Nnz2��:1�X(�;{Z���k�E���S,�0����0���"����0�z{����ךҖ�� +���|ᄝ�|��W����'��EE�Z��%*����Wl��S�g4��'��-f�2�Lz�W����)y��G�����n����j�p�֔6=D�_�h�7�/�=\{L�0x{��j���/ �q��b@B��Z�^S�#=E��W���>����?���1���wF��ΰ������un�۩ċO(���`v�Φ�XB1Gط~7�v����^��[��S�T��C��b�e��{�� �'�^����g��Iƈ���\�uz�kz�<Z7�&� a�F���Cj�R����Yl�)�x��G�W=���!�ˣ $!-����.��f�B1I�P���X�O�Gx�8�_#u��氱 +�pz���;E)*���x��� �'�Y0 �T��ho?}(�t�?\w'|��<�c���"�#�q3�ۉ�>�J'Zo����xgܶ�ITRRd{g����S�{_؇��b���<f���\�sȢ�b��˯��U�\�b�ޏ�#:�\�_���U�̑Ŋ���>�jPǩ=%D͵Z8�#�8���ZW/`T^Z���Tw��ie5��,��}`G��8�i6�k�Tpv�>�x��q22�kf�;�w�p�,� �X��u-��X>�L3)[^ +�� ������s5� +�δk_���w�M�gm����KkVzķ�n��z�NK��f���ϖy�#�ΐ�j�tc� #~��o_�wᲂ�T(��o-�v;�8ۨbW4�.�۰@<����M���b��'KOP�X�.�������a�K�r ��{�a+�W>�(�������r��3����CWБ�2���_��:�~��B��>u�4�n�cEj���2Z�Xo +�A�����n_DX�I����R��:�MW�5�R���X����q�霍Ejo΄?4�H�h�ÁÎܘY���:���Y�;� ��J�H�0 ��4V����{��s?����@�'��a2��^أ�K�B�`�8���|C#l�j�(i'�<#�q�K?䎛ޟ_蘱�}CrDj}a��:�,*���n2D��~x��~���+���rIP�_��X���P5CGl@��7�US���'=�c��B�@�~S����_i����o�5�7�HE$UC�8��N>uG`<3J��Q` �?��`�(ƣ�&�mX#�,��h���%j�Lwހk{H� <n�i_�n`���;OFzD����d��!H[v[��4��6�\eq$����i�Az$~�=e[�\�����%cڵ��#��l��6ͨG��J.M�71��c�e����J +� ��~�d�{M� YS_��;�����ƴ�P!���7�A���[b�����N=�j8x��� ��n������p������3��J^��ڎ��Ր����Gt*<8��mw4���: +C� �m(�!]�1>f�\91a%���ր��Q��ڭ��5l���q#+�F� ���7�0@���$�G�GqT��'���-X,ȹ���I��鵞����\�'�O����@x���y�����i�Q3('Om�!\g�f-WI��#�'XDi�Y����s�Y����Î���.�Y���Jf��վ��̧V��j~����0N��e�$[������_+}����0|}���$8� ?f�y�͎��I~v�ә��B��w���2y���t|��]���� �w��˓���)�� �z�,�yI��漂Y Ⱥ�PO:\C�`��o��d2(�07��(k昭�[�gנB�vD����᠊�]�� +ԫߙ���z����3Ԡ�g�V��}R���m5��yZ~�݁?��Ȯ�9LJ��w�a���ûST�T +���)m��Y����Ni�P�3Y|�ҳ��>(A����P��~���z�VG�Ym�|�K��� �+ڞ@��a��#�:�� ��%��_oz8<Q�G�V֛��M�N��%����w��iIm�=};���ٞ�$��0E��9GY}�&Щ�H��(lu/5�H��-�J^���|�}acÎ� +������ �{��/�*.yO��}�`)���� ^�S ��0�ŭbAh;L���]�� �ɶ���h�6��~�H�<ЋG�t����%!�^8�� +��t�a��`u��T<���6�w���d%���@g��E���C����i9"�n� ����6��'�7i����kX�^F_��δKvs�P��8%lL�Fup�gG%�٧h�b~FU^�z��s�B9��O.�昤�k������N��H;=d�U +hcM���r�+Z�F�����~w����B��o������Xu�]��bg�!���*߄���9%��ܻ��@����-�ޗE��9v�E���""J�J���7=�~��HA�u"�fq@ь�:57��5 +�@�d��j#gY,࿑Ѯ��=;T`s��z5�P�iĜ#�vA�&�������]jfj�-�8�S�R��5�ȦZ� +�EB���B���T��L +Gq�kh7�����g����4$�M�o�J#9��"0"�Q��>a.�oJ��EU�!�Wqp��h�Z��8�+m��М��Bך�5�Y�vd�y7~?�d�Z_�F���%%��lnGb֜&HN���s��nΑp?#ˎ�Oi�w�)K��[n�a���D�#��T*�=�t�ڢ����X�W],9A�6-Cڿi�+y�H^SF������~^�����3��:�k[MڒH��&��đ�L���C�r���:�t�m��zH���~����M?.�O,�Ń�v�^k:HI;8�j���FlDܐL����k��_�����2Dj�kt�w + ��H?� '̄�$@T2�:�Kr.F`���D�����T��jΔ$�pm�>��B�d�����bk�����B��DU�5-!E���n�nCS��q�Z�=���~'��G�&Ol߉��������GW�����`"�h�DK} +ƈ���T;���2�+���Ьܼ!�6�����ݚ���81gӔ����l�m|��Ăf��lz��{A0�( �*ĺN�B��(s�'��J�ki ��a/���%XN�{o�����[lKU�?��0{���G���(N��_�ɇ�[��F�|�vA�0�4b�n�X�u+���ղ� yni����C �ծ�1�ëw���68��o��A_p϶O (�c�K�������W���n��䊳�b�����m�ӛۅ2��I��֬u��Wg�!�w�#=���@���#����]*BVK����z�9�J��Ќ��[q���o-|Z���=���E/=]�ih�$лK�_�i���q�:2��J�&&����z���"S�C�#���|�̙����l�#[�|M�8��\�� �^�����7C��N�m��|;����Ptl5U::�z92��R��Q����d���O}@���1昈Q�wF���0���YE�q������io >���r�T��W��J�"�{~kQo�;�F�#<��|��g��Β�����b�4rw�i-�&wЬ�<�\�5?� +sG*l�c��� R���.��DJO/7��D��l���U��LXd�91��c�y���L��J!�ڡ�@�m�ۚxA��i�k��q�0]�'�#?�k��Gw�a0|��1�����������pF�R��0C�(�^�)+Bݞ��ė��k�/Nt���is��ˤnɡ�3b�=�_�?|�7��K�3�Ҙ��8�UUs�f$t��=vK��dT4-�O�����8�q_��H;�(��G��a��4t��k��>4�8��z�#�?�]Z�5��.��:��o�L��S�Fӯ�����h�`�\�?1��4:�BqZ��恿��A��ٿ�y�mr�6�b��Wk8K�ݾA�' +|�%�ʶ�� +7�i�2����r`Q8��zXg,����=�:�_��Ї{�9t��P=����a��۪����\��ϲ֏���y���"4K_�0�V�(�`���0]��@��M؉~'%�����������i?��&�P&�"��o5�3���1x�#��&��3�����(?��. +��o ��3��}��Q�U�!�:�~���"ʤ�؈ϋs�����D��be��Ǭ�����Tn� ��,zs��0�� )^�g �.�>-���& +}��?k�|��2�>��T��!#n��(z��z��W���4!��̲R�.Y���` k��fsB83B�5a��Zm���Q������ݢ�����t]n�"S�D�f��������|n�GdS,��4�V���V�$St�]�b�x͋ +0A�����d��h�T�1���xAgu}��gK@��lH?)�+�z�M)B(+������)6�&4$�v�uT��>A2M�3F�U��������pqzk�L�{���)�� �g#�5�+���K�~F/����]���qe���~���z�������G�4��o�����NDZ�L��r[^t]��&�Y��:��sYʰ����ro��=i��2�.�3=7z~�MG7���Ԓ���m +�Ӹ �(�S`>����� �8��� lv�E@��H�� +��s�ScϻwC�Ҋܷ�?<�5}��)�� +ޱ�9[b��4_}���i�1�1hN�"��FNk�\B<k?D5���S�]Z`���T�7�z�[ѥ?@Ɖ�<?�;�8 \ �8 �7ipiEa���۲C���]�� ��<Nh��X����v�|ϣ��m0�g���XZ�}:E�V7�^�B�#!/ր6�e|[����ɉS�I��VϪt�5I/���m���Ҋ��휧UVs�酐�r��q���rj6H�S@E�&�D�&}y��� ���PO�)]J�?�%N�u3B��J�3�f#��������H�p�'?.�Ү��4[�����;�OX�� +��G�����ߤ�xj�V8=�m�51Ѱ�P_� +�fv��(�[�[T2�H[�܃~����Fg]� +���y�k�%��K���y}RP6������N�[$�DJ�}�hQq� +-�{Ϙ�� ��;N�8 i�#��A?@ՔS�W8F�8�軶�d�'ݠ��6��o�ls�1!�� /��.V�Z�çX,�����\����3ԙŹ�|mM��xal�{� *�����l)�2����5�1����.M�q�pb��.���]���Q���mקv2��p!?5���O�^�%���'aW�ljuor���=���% +O���5�+�5B��� o#ұ���?g����M�r�'����f��i&�]�l��phDqE�`nvv����{f�3:������Z}5�<�{��K�� �k����C��Oz�����"�Y��+�OC�x;U�k�t)� bᩙ�#o7�$�W�h�J�`C�h�M��@����=�W��!���O�������+�4�7�����%d-Y�(����E\V�f��f7i-#@�80;`$F�Պ��R�|eE�zgi�*��ƀ��-,�@����pR����1��:��� +�*:B��R�[�� \~�YD�9�����/~l��}���A&O��Ɏ��b�z�)s��|j�AP��������7����5�8{ �>a��U{"�J�ņwɅ�g��6l ?I���?*��f��Q\��fI�͒�������ֹ�{<�gˢ�iL{"�y�mLzܜAZ�yƁ&T[�Fd ���x���0���� +N�Ҏϻjf9�De�0ZJH'e�Ɨ����~�O2_��N6zH�y�ǜ́������p��a|������:���y>��<l�¿�ף�W"ȿ��Ǫ>���]������|rD���4M���ߨ��&N�0�=$ft#{Ӹ�Жg{������Y���5�)*c�����*�� 4תok^�2ʈt@�Lغ� �P�@��4�{�1E��)�P����*����ȑ�N��>�W5�n�F����� +��{f;�� �W +-ڷ���`1��7��� s4�;:2��K*��x��Z��![)1�up�Z�0����V�GO[Dk��"lC)j��(AQ%.�zZ�7Vi-�B����e�����N~��~b�dbi>E���m���35co�BT� ��Q�Y�NT%�Κ��Z���3/��-�x�Oy�<i�}�%ӂ���U]�J���*)c���SY����M���E����,��X�k�'m5�t^���# +�(*EQ4��ΩC�+m==���X��4�{�1�F���'ӳ�S���}���U����:�}�&���]��]���-r U� �{�>v�SἝ��h]~���H���:?�yA%~i�1�AoT���"�p(6���i���7t��� z#���̎� +TI�%�8��u����'�I9 �w���LzE�����h;�,�T� eo]�٣��\������P���Y��pF�0����Yz=����]��^�e[xV�'���������_OVx#V�����zI�L|6��j�T��S�l�W�^�S��>m��pg���Q�nk�d��nOv��n�:�;s�:GN���y�;����$'����f����T|��7@���Y�Ы��.��"wo�c��߭U�f��Q������eD�5:�ƎG�!1�U�j�˙e�o��T��uk��Z���۹]�]{��I^��;�Q�"�P}f.I+�!vnTR9J8��[m�63��_)kو�M�$ +�p�����z�*�N,m}t���hxJc�4�q�|!L7XGq�3����ф-P����uW�u��IR9�~D���t`Շ�f�N�y(��?��kY��?��>G�윤\°VY�yA0PY�v)�gk����qo�'M{�GîzZ����S��~�vZ�'&�[�r��V����q�nt�oM���>u���f������3{�+�h�����?�÷��"����Kkz�>�_�~���^��_ +ԏ��B��do�w�{�#h�.��A�v`�I\��fy8١���Y]Zq0��=A���ۑ�V�uN欇�����M�5��V���A���jr��,l�x�'Tp"e�V�j��r���� �;p������~�8�F*?A�z (ދL�������������ԑ/����2\a#wep�y���S�ɾ�jM� � +5�˳�����@|��?���Ԣ�r���8Yӝ=�����"9`P�&��V�����y@�3�*��RCSv�9��gl��W�V���u��ؒ�õ��s�c�T�Ȥ�U���/�؇}����,��{{q�S:;��0z��|�3.�{��:L�"�Gu��I{Ȅ�f���y���'�>�'lJ�IQQs�22R�)��WT�E���7��a��%��+�˭����֡���j��� }���ְ�{JJ�އ +��>�s%]@���;`f��� +���q�Mf�1??�ݞ.#SH~���#�\�;�TI�i���0�M���w�%��B��$ Uѓ^S�����S��p��Gܝ1��z�4�R�d|��c{��i)߶�]��nɂ�C���$��d�J��U��|��B���~��|�?���A�ϱ(����ɦͱ �T#�9 ���c��`Ϩsڡ��N/7��WP��]���4`�M$"�cܐ}�v�l=;:�� �R���;J�[j괷8��s�D8��'a�����A�z@��TK��CSE��(�M��F��R(�3+]��؇���]��nO����A�)}�#�0��S�%��~��>^\�z�ΉD���"��z��]l'�=uQ�rcx�]���^�;�3}y�~m��w�T�v�%�[�s��(��3LJWz:I���n2���m#z�%!���V/ ��?=e�_�~L����ۦ:-{~Uzf{/\n �=M�~�HĽ�+�P#:��@9|�b����E�SőB� +���]��Yr�6�Q�f������Aǰ�%�׃� ��9�bE�����]�u!��GX�9uTe�����8j�=�q��M9��iៅG�)���v̳}�5���k؊/��:��{�� }��qk��5��{Aǂ��䎶L����_@��+#-�띮Pg?�:�Ro�3�<:�{��_nq�U�l���ׂ�~�6�/�=O7�?y��=� ���Y?���U��1(�'�����lɫ�A�O�⨓п����8�K~�[��%������4����"�J����&Z�@��9�M +�S +嬎Fq;��^�/+m���� J����&�Տ#x�W�dlƍE���,![& .v����~��ぱ��5g�f�������#[�ݵM��߸Ş���u����4Xc���+W��96��f��{5�����JC +N��9M�Q8W��?%�>�Q�%o��z%lt��4\�t����@�=u�:�����*W+�L��>��A%4m��- ���m��u�V�i�(=jfK��nW��a�ʱ>�S3�p۷ MG�կ���;����"��ڦٯ8�c�� +�n��BvN|�G{_nZ0�&�|�'�&�-?����;\�vb�|������*#�,���j�2)e��4�-�[�^���h��i�gϽ������V.��+d^;�� +���3�[�?�v5��h����s��.G�<�.�Ek�'l�4c�wR���-8n'��:���;������3�,"hc¶:hT;˥frT��@4�GNZ:�G����pRӑ\N`��x�{3q��Ͼ5߅��qF�%?�>��QH����n�2�'�}M�|/y����̑�ܹ~�'��CG�?6�G�~�9[��f����S�?؉�~'\��v��]?�e'kVx�)�D(��|ܖW�����4�#��݀�r�|q���UZFҚ����l��_J[�PT �>�J��k�Q*�-K�a���JN��HA���:�`������y�V��o4�CT��ԖI�vk?���@��?����!�[נ�O�#bC����6WE�ũ]��n�v�P����Ɣ��|�����~��or:�~Z�i�އW�k�Ԇ!���Q"����@��v��F�}�'�r�M��P�<�Pi&M۴�����CB�AN�G2�s�B7g(�7a�WHCF����TZDN�*)����</��}��ś1�Ri��W%���iF���� +�r�*cq_�c+4���4����EU����z|�L����diPNж��$ꭉ?�i��!��Ů��e�"+/PS�H3�|A�(� +E�_�K��#RP"�'5���k\6�lU~E�Ff�3_���~�[�E)=�Cg#H�8�J�'���4ٝ�@�������78'q��G�g���nG!Ӿ��Q���Z縻��E�fU��NP +����D�ma\�08��`�d�#�8F�_i�t����.G�}��V�3�}~��?N�7QR}�]�x�/��vc�ߍ�Q��E�,�_���wOa�\'���S����(�����+��v�Uĝ�1��7����⧏��_�cG����8Y�AG�V���#'鈄�ۡ�+v��S��K�.c��Ca�!���Ԇ)���z5,I��~x�lIk�'�ڰ�b�y���z�B�;[����X���{��C���m����lQt�O�"ȕJt&L��;��F��у+�H�צ�ik�o�u\g�Ks��ދ���N)���Z��P+<���(�x�^���<�7��I,�-D�[^z�������Ik��XS��O�H�S8��[�%i��S;;Y��էG�$��U��/���sW�T2ѩ�~�&�;�\m�t�.�z$gm�Wp!��xӴ/�gm�ܜ�ɹ����d{b��� ����Ezf�m�����x��J{0���o�����'� y��!LpƮ6"�qa8Ů� �z̃��O�X��Qo���nlۍI;�!ݶ����%����8CBĹ@x0�]�6�����p��u<5��{����O#���=Og�%NV�'Q���� ������Z�����}a�'*-֮Iox�ȫ̏�;A��/������Ն�\T��bf��m�+�.1kk������I���������p�}��Mw�� ���<�������^�EM�� +���Ԃ\w�s�d��w���v�1KP4���4�6�⧒�a��D�;��(�/b?A����m) +��amї�����q#MRsҵ՜�_"d���C������(�]���m�_���e��;�%mqܩ(j� +���=��aE����8�Q����B����ݴ�X��m�)���������cd6��C�֕mg��N;��h�l�Raì�ft�}|�Z����[|�2D�㲨ne |C�u�^Mv�7�$E;��^��j!��52��:���E���kS1�v��rm���Mw�By]ۑg�=q��SK}����M7�TQ�e;w�o�,=�n�� ���\;��4|��˾T�)G��s�o���0�~gL���0�ЈtG9�K����{Ə�^�L�W918��B��(��Zw'�@a�S��\ ?��Ё��G�vg�v��f�������I(�s�h��p=�zߨ I�s�B����)�H���Řj ���Ep"m9�x�H 'W��u��FR�f�P{4�b�S��Nz8><ZO� +|�u$e���|����6�>�z ۜ�!^6�)� +���h�|ac�=|Ce��: +<�md4.��{B�ԼZ��=�Xp�)<�y�4!�+��ή!˪�����*N�z���;ǒjo�&B�An��%P9j�ml�RWi|;�{�<RK�'�-E D0غ!�[�����V����2 t.[�∧-�.�Y3~ +�:�������S����dTU7#���-����^ ���p��:.���S�Y�ϐ�-G���_S�,���V�2��[c٦Cf����C������t+lpO'z����(���ą�����,����u�Qv0ۯq��1���4���M�C���� *�*�&�~�����2�RD��t> =�ý5zik�NkM����V|l=�X� /Ǫ���7t�.�ؽ68�g�=r8�љ��{�s����cZ~Ɗ����q-�=uȑ'/.^ �2rd��t���] ��/}�k�Ӎ��S�_X�e �}����=�b4��0��hKy �5��P�,U�t�A��E�>FGg�5��H-m�_SԹ�M�:%��\�`�W!��o +X�a��4�+:��vg]�تC�p��'~@"Q�ՈM��u��[�q�.Y`��:������^�gh�,�:O��9��e_�5F����}� Бd�a=���=i�X_<Ƶ4Y�)L�p�J�x�i�µ~�x{�ݍ����NO�ZC��� ��@x�4�m-��0�5J�@�� L��>�ǩ���x"1�����nP������ �m�T�C�u`�YpV��װԬQa|z� ��_�cmN�oܿJ��v���Lw_ a���ݮ�刘)p�17l�pF�����P�x��ױq��p�im�c�eqzS8ִ�t��:�{�b�)�t؎��FY��PA����,*mSW�Re��[����p�J��P<XVq|��yM'ۉ�J�i�! +b�l�u��s>�2��=�t��#��h��_X��JR��ym�,7�8�����td�)�����#~�rh�Ng�s�~�U�(I�/=�������ZՆ�I��Qհ��;O듅�2���lzn������t��ɪr�um�qBk��6f�eI�n�'�Q��c=c�����u�Vs�����2�:zp�� ���� �C+���A��TZ!�� :�vM/zRSv4\V�l��~�6�����O�]M>��;�C!�ފ�T�]��������Jָ프0����NU]�3���&�8����i�)���4Qณ�o��wdz��EނO�[[�����mG�!Ǧ<��*Q�{����� �l�q$��B�[���l��Ͷ�A�j4�d�O�:�Fi�O��GS��b���k ��#:2}� o���-6�L�>�4��_j�x�g<2��ޓ��Xe����q�_���ބ�4�$�NOv�9�v��YA��E2��ZC�^��J4L�l� �G\�zȑC�UEU�|;�k�6Y�j�X���d]�"�a��ѯ�^@\+���jb[DC�Lj8Y�Z�R��m��4h[ �m�r$*)�pi��VH*�%�(��o6C�J;rj��`��~w��ٛ7�%t��o���"e*:��k�A���K�+�(,@*Rm6S�Q��=����[�MX��n���c�!.M�_�$�l�UifG��~�Ҟp0Pk����&����[{c�>�#�o�]�V����-������fu�{/�**{:!�B�i�e���{�2��=����O��'�|zȵ�z��J�D���O�����"Y(Y���"}��ՙ��,����X�J����)*}<��?Bɲ�~Y���LR���h��e^�7���Jv�Z�[�q�gO��F���D��*uб-�h�z�/���i�Ԛqϧ�+�*��p᳭'�̀�w'�|���1R�z� R�.���`"cWd������$Å��#����j⌰�qg�����3��e���r����9�0�1A�ج��)�*��,���M������(2�&7�DЖE�����\�k�A��Ѓj8��fՐ�%�n l��T�Cn�s�p�;����&�fe���C�t��<����B�ؽ�l ؑTِ#�C +>x\w��#�~ȡ�)�<�-=Y��C�B˯��'lt�1�����i�B�5��|\{;���s��g�ٴ@��7פ�{Ը��;��D,���+�v]{*}} �2 Ą�(_�X��~�����N��r���\�BA�xɔ)��H��zʵ�!�����;�R�.G��waO����?w�Nd��OZ�����k��Z�fφ�?i/flɎ5-l�k������>K;η&c���w~.��ƾ�I{'Dڍ��O��T;|�K +�W���yA�-w.��{ӵ'@$)@[�*�^Q�c1��a�eJT���폛���7�����o��_r<��S��ۛ:�l���'��[A�n)ri�����/�9��{�M�6��{���,mn�v��%�����HF%�@9�+GN*T�ʏ�=�})6<�:+�̺��`�1�u��eC��~�= +6��~��=���:$�д{e8+��f�( +���ܽ?� �ZdE����KԎ��Q�cu��{`l��&Y��H;0��Wu�!F�&�j����n���^e�x��<�> +�,7\�Co����=ҳ��ԏ��P|�wW-�~�U!a�L�m�y'�����7�*���mԒk����Q�w�hF,��#�uNP�Uҍۆ�i���\Ie�Em��%z�I�~��v,�U�G�ʲ/�M�ny�z��f�����jXOH�JHR�c#��n/�f���������{� KZʧԜ�t0�#��p�F���j�po���QNn-Ga7؊/"M��$GS�n�C����9e�e�Q�|6ʵ3�L�tS�w���6=����IQ-�m�8Fl]Cܕ�u�m�8�뻔)o�xԼJ����o#~<m�<`��"��P%��]>q�Z��2�*��ߛ�:u��4ƴ�.��>~�9�����kw-y�t�V�� i��� �n���?����jlЀ|aӫx�K^0�x�ݑ��9j��(:���������H��|���C��i�l{!����-EY��M� J�!FPt���s�HW9m�@9��xCw�PӨsۍr�nʖ�w~�����L���W9-�|Tg$,�{r��z�.��F��{��g.=��?���^;��8������2��/ʺᰍx�3d�u�NvN��m��w� �5�v@������ɲ-_f�� �\E�^ڠGu,K����$S)`ÏmS�B;���4nD�v�_��t;�@l�2;�Bz��p�/"к�ρ�WK@َ0hk�%�a�:BF^���3>�%�j�Y*�2�a�̦��:5 ������O¶���"��ra�SN&���sA�:'����+Аwt3��Ͽ@:e�:�n������E�~4�t�ȣ3j���įg�a�%eԼ3gXnn��U�Ơ�TN�ҨQ�0}�d��Q��ԜQȚIw1���EK�o4�Z���b�}�S�mB�($nw_��=G8���}�ٗN��h�L�ͻn_ti��h����V�pDZZ�}G�c�r��p�Uk�����҅������ Żz��_?Ca�8]%J.�n.�2䪝�,��VK������9�q��{]�o�����0!T�S��s�4�ok(XY�2��q���a��� ���5� �S_3��C���#.�/�$x� {���9<��y��J䭙1[�+VN0[��_%<����A�}P>� +��XqsŅ�q\�i?yZ��њ���[a��HS���]D+K?�ᷓ$�p'�6G�i��N�s�Is�_%_��OH�ڙ +ᬝ�v~˝��x'��I�4ݫ"l�;��-.�Zg�UkԞeQd�F��Ծxp�57�6���q�wh�m��2�-p����y�H#}�����`s�I��`��aޮR�~�{�Y��M�=��MZg��/ ��~�A�qAz�.ڿ����w���N�vc��?y��H�( � ���ljI��p�!�����( ��(D�g�/��r�ZFʥu��(J��.ީqGSF����=���Ǔ=�A=��7�fs�9o�xG��ƻ�nv�V�ƨ�����X�wj�]��r�}��Bke6�[�F�,��uk�M69�~��렛���q�utU�^*y<��b~�Cv�2R,��#J���[o3�r�v"K�R��\U�fN`pWwDu�"���)�u@$�2n�cDߊF��7���ᗦMM��ɻn�Dv�X�����y�R���ɶnl:|���O�-EG�i�t�<��x��V,�����d�\ٟ��#\�v'E�7��n���ݫc���m�6:6�qڷ�E��L���R�H~�QhA�v�zAZ����7_e�w1?��S�WFǼ������{�5:���z\.w�7\@T��#k3��;�Ƅ�M��߸<�r�Q�V!Z��m/�O� �T���Ci�±�"�O��p��+u�IC@�H ����O����>�rUa�L��ϐ_��qm����N������ٴ0\*�ԉ�B���+�����(0eG�G�}�)������ƒp¯_8!'0�hdQncWKl����i�i,��rٟ��ӻ��6G����n����/a�L@z�sA�e�uJm�P�Wzr�0�]��H �����#��o�yЃ]������g�?z��H��Q�S"�O�?�FY�Y�q�0���� nʱ.�^�-��/Ms|T��۸9ۜs�cV�n@�c�@ +b@�����TLL����es�T�LM��}�~� � ��.��������U����N�9G��l\ qd��"*�9mP~%��#�tb}��J�R��S� 0�̅-��lh�Gd;0��p��d�L,|��r�����j�p��3�6~~�] +��uG:?W��#W�\ńڅ�����TT�Zk�)���Yh�0�w������m�]�e��b��t$הc�m�V�\����^��AE'��0Ite+�ذ3� �A��o�~�.���L1I1�������5�n͎�O����4�0���Ҳ�N��A��� +1�U�"�6�|�U�٭/�`2�o�G�|�YA8���<�-q�D&�@��s�=�&��^G�(��˄6��m���}�vZ��N!t����~�%���7�('Q�m1�״`Q�P�J�UG���&���fֽ�_Jg�c�����iZ8�㨑0h�1�'w��z�J�Tҁ�c3]�ʗ�-luȝ�kjf��]�a�e3�ԭ�=pۡ������ �H�����tn�$� ����C��- �Uq)�.L;�"B7�a{���#�5Ar���{� �� +M��|s�����=��I���Ța30��:X���3ڵ�fԃ.����R�asL�#;N&w�_W�����<��2ʼ����L������=��Nأ ���z"�{� +�b�_�N�`�ף?�{��J�f���^'�k�Ѩσ[��(� ��[d>��'ұ��.KaB�+��5&L�����~�{O)q���|�E��C�1��X�5�M�ώpK/S���v��~g��}��$p�{�c��i?���q�^�8N�;�e�JJ�7� +��CC�0�g^c��0�����zf�ѥ2�z�����s̲����r�.��;`E�(>:B��9�'S��% +X@� �T�>�}��Jo)��%�S�H�tI0_1=x.,yDA���/?�����M���2��͚�R���F�-�����oc��mZH':�U������́ÔD�4��'*cfi~><x��A�qH���2���u�_�O� ����iPm��c�� NM����8US��N����<s�,[g��=���2��ﰫ9���+U�*¦9�UI2:����a��*I�6��\&��¨��H/� 6%S$�؊��Q�]:��4R���_B��_�N���q��W��-��uz�k n��g��Kd���:c��H#Qw��� +���=Y�g(I|�~���m�����]���J�=�hgo��c���Q��F���q��,am]YeI���`7���n�(ǽz��Us%<N����h������`\!�!� K�ul�`�q4L&�>1���t#?fYU �l牐����9�SH��%Y�����ʶ|'�H$7���;���RA��}(D��q�t�6p�bl�v�:t�>��A���Qe��?�(n������J�xK��4�'�R�p9i�ŀzބ�uHF�`��lC�1O����N����3H�ٙt���C�A��>*i�<�ak�E�uZ(#��3o~a�-fA<`b�(��E��G!�VzAP(���Q����͠R���+Msc���FR��I9���G6߷a�dZ�Ԍ��iѶ ���߫t��d����`����x +�j;k����|a��+���g��㉋���^PQ�P>;NoM@�0~�&d?{E�ޓ�!Qk��Ҙ�q��������o�ny�F��䣩�G/;b���D�m��q�Z�{���� ���Pm�����A=̊�FE�G�� +���j� ��J?��^T���ް������Զ���Hť��V0%�/z^Ӫ�9�����#M_U�!���(�Ϧ�m +)�a�ܝaW��ٌw��ӝwD��Ț�8w/P���9��S��+��:�M��Z�WN�BuRx�q�<�t�k氥�5 �0 5nm]%��o`h�����y������4d��|3�{O���?ֵs����G�s��blN�F�bW�h� �8Se���L��5�`h%r������ah�H� ���뜔��"��8"^m��/��f�{��F���4$и�hp��q��?�=�������Ȝ��p�ͤ#�����D0�{����}~�F�{>�Fݞ��HB0B��zpg0���U7 �H���:�̱�j�If��n� 1>] +�v�)r�'J��ј�LB��_i\�(����j\A\�uYf�<�I�>wk�ܬ������|����L���(����j���NxD�FyHdU^C.L�����4.��J"\��|F ��2?o�f��/=f|kK�3����R/"���N��&G{M�K���Q�RA�8p$~4y8��v���d�Wҳ����l���7a;L�������:|x���dh��"�"�Y���J�6p�����Ԫ�*Xz��d4�EkQaj$mz�%a��[B�@3�a���@)p�.��2 +"�S(�@$�������)C�F��V�hyÝ7���>v�y�WZ����r[�;�0��qd�ok���yUA��ɷ���ܕ�G�T�}�=�'����c��=���U?~���~�O~�C67_��,��O��/���7�s}m@�;�n}�ζo~����[��c�2LIZ �ÓUq��[��_�3�O腲Zlv���}F�K�S�yi~�_��_3��y��_|����#�NR ���TQxk~���/n}�ڛ�}V7e� _D�V^]#6��N>K:^ۧk��^b�o�g�+ ���@�\X�$�g�:�6<5K����9f��y(��1�4D(�T���h�攍������3��y��tVD ��^�s�� ��~O֏�X�(5/J��L<B��غO���]�$lG�F�v�7����e�f7Yj�]�VZY�}�� �����A�� \V��i�����Ɨk_�Ɗ�(��T���_���Y��� ����E��������/=s\ǝ -�]Gxjt + .!� �tL�Q`8��cc�"G�6��Ve����z���QY$��c�6(ߕ��������et)l�ϑ�V�D����&��" +�k7mE�ސ�k�z�� q!np�=@g6�{l�$�����P_�B9#�>��F� +����Y8�}'Qd��8"�S�ʄ 1�����Y��g(�r�n�-s:S^�UΊ��lij�W�W��l�Hjʲ�ϽQa?H��;�H +D�:d~Y8���'T)2���R�K;W�va�v����GxEآU�r�zO�EPT�jp2���E-�`� �h��n�[�*"�1`W<Fbw��r�������S�c��F{;�@�N�bՋtY^#0�2�Ƨ,��D�����F��-Ͼm���Š�@\c}��*��������u�hj�����9�:Kx�Pe[%�V�l������1�ccv��7�7ѕ]C�1Yǹ��z[<XN�`C��TQڊ��5NZ�IiU88q\K��B�wAa�� ע�^R���O��u�M�����`���/�K?թxR��o�M]��X�߁�E�a�;��د�.����L�9��'�y��Љ��ǹ�T+�tm��[��e�����8��i#��{Z*����t�}m("(|��'��SXQQb�#]��{����M�g�e�6*��V��Ӧ�!�o��fx�G�Z�M�I�&4��3�`�W��I�@������˼����f;C7�LXC�rD�+8�\�Ļ>.�y���Z��Hi��9��Fi�^�52kN{q�P��|�� sml����ڧ}2^H��9�G��Y�H�x�z���(�b�t$�C�}��o�Z�Ǘr�s��UڝWEFe��gSa�C�E�"�ڳp�#$=vV���3�>��}*�@�G@ �K�5X��֯+����&G#}�Xs�P1"�݀�8Vh'V�C��,��qj�R�1�[���_ �?��g����:�]ֿ��������;Û���Q�3�'���sX +[$�K��ۢa +�wRT�)k�%s����cW5G�Dҏ�f��Y�hb��$�c�"���|G��6��2�����kT���������HU[8�kEX�<�u�q�~��K3��^�YǫS6@�f��ώ��M8�W*��s|&s������]3��|��h��jG����<�#�(}��#�^�9x��-x��F�~\�tO8�؏~��NȤ=M��(my�6~R|Rx'�w��n-3H��Z�郋-����:} +�Tɨ��!*:��F R���l&����Ƚ�X���{ݶ�c�-��a�]�����u�חe�⥴��MM��o,P�i=ri�݅L�zm���Bl�x���&@�*R�"+��MN�8_��0|�>j�Ԃ�E���ƻ��K���m���4I��K�^b&S�ְ�s���<s��;��<\�O�ѓ�Fh��L�?П�ϽHՍO�D��XU��,�JW6������W�~N�{��[q�������0|~���~��_i]*MD]G�nV:`�M9V_M�ZH[�R�L�|g��Ѧڴ@�7��7�������2�K �4�=����ů� ���)Ӈl�m;��$[�2����d����NH*�jiŦ>zJ��w���S�����]�zf�@�Ձ ����z�ا�=Y�Ͻ�� �_ezϽ�^���w����N9��'��C�?��qO9��e��/���y^l�=}�H+˵̶{�Y� Sl?���Y��ƋU��z��y,]��qb�;�ow��%���@_�2�;�G��{�d�87s>da&�#����?�F��eФ-�i�u���#�u�n!��@H +nV\ң��E�*�W"Ƅ�d��3���#���%���@�x�5�ѸP���zF��1�5Z�����a��q�:U/�f:��p�Iq�Ô�l��$�� k8����� �5��F�lʱ�^ڕ�[�""/ϼ�� ���goߞ�x�{(~�7�M 40R�=���:�!����ْQ��N��V�Z�[W��t� �Vn�����RO�t��Ls�ԃ�ֶf0k�V���k-d�+`D�(���唿�O�!"�?�6���\Z��h��/!N����g/U��⡍���\�P7���qDy�`c��z<���'�$V��P���=�~qS��64HAqB6y�Hp������I��po��`�P��d���H�q�1�~!��z&(%��x��D�1h��+��:؍�Я%�2�Z�+n�5��oG�e��=�q7#'���\ؔc�]�;G�jG��yg����� �`q�yo��*\���d +q����p��a@K��/��-��j?���|��)G��H�Edž�`�Ğ����3A�ڄZ�)?�L?6�i��T^.*�+�hD�(l��3��? �6f�C$3U�<�� +�G�7�U���CH�{/��/jτ����#��*�U5�{����d���³19l6�lG]���"�2�:���Qy���Ϣ���y�9b\mX�T����)�����clM��ڐ�)L��H����tW��Ԋ�C��(/�8nM79�nw�*���i⇭��x��<ag3� N�)Ժ�>�ȼͥ��"Ӣ8���Ѿ̸��+j̢H�^�C�����nm��9�>!�p<��4�O��:z��[���?W7M�"S�p�<a���L=���&�,����{1�����KB���Y��#|�@cas\l��;��}X2Lc�7���&��;��1:"��pfu:�N'�.8㹷��F�Ì��BJ�6�ݮ��~kR��l�q���x �4�-��x]�X�H3,� G|{V�U 3�����ڐ�<W���8�_�t��s���I`/>�E�fS��jo���k����w^N�ԇލU&�~�sl���&�?V�řY>���Q�B֪�7�e��~TӴ��l�4Y�փ2���M��Z@�'����"�ݼ�_��X6m-�~��H���ia��= �m �� +�~�'K���M��,��~����o�{צ�=�ۙ�D[���j��[\�h�s�.V:"�����7�/��d:&��&u�O5��?�{ϊˎ.R7�Gas ����m�~��FpL�/��Sʶ���2W�qqG7�~CBŪL��?�u�( �k7�զ�:����9�)G1����1({ +[�w�~J괽n@^wA�Ţ]�Ɯ��,9,<O�_H:�վ� >�#(��#�Ũ�>8�z�G��p�uÉw7��A�ݍ�}9 �{�t��~���~ +w�?�L8�ᵗ�f�=z`oA��)���PJ�a���0��-��]>�xٵw��v�N�'�{����)4��h���J�j��K��U�5B�1��*�*�i~����U�p�yGy� C��<v�����۹w��G��̩��}��o�O����n������<1EG,f}�i��&'-H'"<3��x��o�lg_�S����mUh���ö��w iG��eX�j0Y�J�\�,�_B��Ve�V&�����;�=���ء�`��mV�)�^��W ����)��7�p����[����u�����4��¶�כ710Hᐾm��\��X��*a��o�\���8��k}�&� �����:A�%� +}�>�z�1gT6T���H��ȗ'g��x +w�M��i��D�g���dv ��,ܨ�����]����g�)�u���=1���nx�k��MZg�w�-������u8c��&�&�@w�;Yw��G�G'�0u-��adQE]���ko������4`��Eu�sij�����ڐMZP�I��q��7{�q<2z�B}��g�?�zj�2B=J�� _R����.[ +���{�z�=�%��i�o����ف�&>�9=��"�pi[$i��0��|é�v���V���U��'����PZ�m����/�� :ӶhU���τ���'�/F�/U@+Ö�E��{6�ъ��6�߱5�?t|��9Vj.�G�85`�qKv��e��l��y�F@��O����/&r���T��8}��{S�����o��K�jk*Վʎ������d���(���|��+��}*[������gl[�$�u�&ۆ�.)I诠��e~�~ѹ:�Q,�j#h�-�>����?�o�ޔ�|���74?��Q�υgx�5��8�K��2�h���ݗ9�3��>��<<��c��#��)�y������!�DN�?3���E�]�y����^�q������g�����~�N��O|�v�!� ��H���ń�s�'��xpMFC�3�CO-��\.����:Î�Pm�2� =���ɔ��6?Am(wٹ������e&1�p9�N!�]M�)�*�Τ?�>�8��m$3be +�����N�`^`N�ŜF��A�J�H�ӝAFv �.����l�iXv5�`����2O���;��C��K����V*Qԥ���UN�˺s����#a�Y��:�q�Y�����#ۯфe3{�պQ�U��~x�E��C-�"���D^�1ͭ3B�5���;�X���p����cys� fmr�Pe��=�5Y���U�َ6x�˛�_��R�� ����<�A�E�^~�����M^>p6b�]�T����VM����x���cﳅ�e�d�i~�n�ZpsOg��7��2X\~���y�L��g�gZpx/���^��� +��%�r�d�,�e��f� �vi���/��O�A�>Dgb��^��GL)2�W�9����;�@��+������J��i�~��p�ۿ5/T�,XDa��ٺ�̌)�t *�9�`˲���Gjj&oՀժk$0ow��)�{�*�<Z4Zs� �=G*�;��pv��K�&q�/?q��Z�����q���O��Q%p���F���R�v�8bW�`�JJvŪr������Xj��]E�GZc�6?��G�GUG���7�d���<@�P-�~�z�/� �q?N�_n.�8N�33� d���&f�դ=�n������u����Gu';�ڬ���&�h}��5`c��eiT#�_q$�_H���9���*�Ti���a��V�hR��e�w$����Xc����;��\mB�5UP'�����6�Q���"y $li�m��g,�e������/x�C9`�~x����C�鴾D��S�� �q+��#5����c/sP�K�3 n�-��C�(�r{ +��[�~lN����Ж�o�������[�?x�E������w�e����_�6I�|�)N����8�����|��f�����0���|����8���y��qry�G���a���*�Ӭq���5��U�r-�f���O�K*���U?��/�>���߃�U�u��q������ ^�4�/�`.?���ׇp-�l�욋Ba�T���x�d�lWB,��eÍI-/]�H��+��@|Aw�V�ry���k�Z�j嗀'�θ�R�M;XD�h���z�R9ѥC3O��V?e���Xj�M�+���ׯj�ǁ��v��kY+L���Hʠ�eo��x�L��IY���`9����2~#�=w�tt6uX6��Y���E���.[�i��� +�\C�2�Bsb��Fbf������UW���2�.b~ u��M;�#~.\5o�q��gt�b������̴l DL��T�+�lwi�b<������\�iW�6gS����PÄ��ď�ñ�����<p���r�}n�6��?�Aw4���{ƫß��a��;��5M��;,8x4;��jd����v|;�1}�!�;d� �H��bg?W�A�:�\9ձ1�p쉦ό�s��i��p��w�0�f��� 7��eHTkh����n��T�����d�. ������� +Yq��)�#�7V��.K����pp�����pv�)0���Uf��6��Dj��83����`�%�,�� +\k�ٚ~r�B ΅��»��kÏ���Q�F��[�rk�"S 7�#�d�Y/�����sV��d�az��4��Z5|�� +���_�4ګ��.f)�* ��G��Å�F�� +:ғ5�,R�1P@a�N�����:Ae2��?��ș��<�0+�$�3�ߥȈBĬ^A��B�]��dq���CbG���m��U}Zm��7�~=Bg?�}��W=�+����|��9��pA�-���Z�]��v�6�� P��� ���f�rR�,u(Rោ��M�]��0��D���VG"�~��l�c�鷤'�QI����#��Q�kA�� �oZJ<y�\&4��������R�yz���N�v:W���Ig�i�nL<�5Ö)z�,��z�E:�֒~ �a�S6,��ؘyOS�����5-ka�A�"��'%:8�*@*\�!x�3���j�}�^���dP!��#]�bZ���wR�j"��1L�rҪ̪r7�Q�G�dImJzl��iQm6�p��9'B��4Qϋ`P��Ηj�|��ޕ�_��������;���ңgX�/�_9:��Px���*����רY%O<���>��j�e�=z��\���恅� �|�|�#"��\��{A�g�yl�t���yd�%V�n]���=���a0��Cn� ���ܞ�;c�mkfj�nY%�� 뱟�����vk������W�*,�����>� ����2:H�N�7sN�㹑9�[(Gv�}���1z�m��ie6�́���E�[���f9��^��j�J�y��1XS�5N�1���!��B'�����X���y&��F�Įia�L�<=�q��L�2�������9��s}x�y�}q�~��7���z(��1�X�s�������1NlƊ��)M�e�H�V�[o�e�'��6̕ +$4�$����=�-Եu�H_!i�mW~,mh�5�[�����nQG<g g���]ZW2j�_E���Vs�����O�"�&]�V)T^ +��PǸڱI]Z�\���~�cVҖ����_R Jx)�<����B0x��U��6���p���l.N��s<A��U$CWwч,��)���>us��� �`N��F���<y�������~���7�1�� ��$��9縅;i2���EUO��fG��s~����׃m���=eb�{�M��ኁ�����|e.��I^�{@���{�����'��:F���*�U7?t���{}qs�A��o��4�s���D%��=�ؐX�@��(�S\�U�<�s7BK������gS�3礧c*��pN)D�\m��agF�K��C��#F^��j���0�Xh4�ɞ�wS���֤��#X��J�����QV?�:�ºÀ+�rTD���C��7�CF��`]!�訛_Q��ު�չ�����Ⱦ +o+�]��ӛp���I$Gw|a�Pv���oiOlK��gw��j���S��,�U��ͭ,��ﯩ�,)�m��GY���R����o��6���~��>�������g�^ܗ^��o�_��:#I�ڈ:�+al(V�+|wO��s��2�UqԠf�b.� _��h愤��kXzs��wA����_����7樬a�=eC`f2i�cZ���p� i���AKx����s����ր*}�r[�t���o�������Fs�6����L���u�2{�+�Ll��_3����${ej��@\���F��?m���eN^e�,F:f�����kÍ_�Iz�]�,��zi�mу9� +�XD����o�B�i���t��Xe-�u��-��*�ެ��>�E�B'���g +���o�N�zs�m�,���B�.7*�Hj���.0E��Z��-X�~�(Ur�_�*� S����x�c�;�rӖP5�Eu�#�������A`��L�3h�wJ��+E^ \�8"j�p��U�<օc�33����̔+I.˜�� �8���x?P&�~�V�?��n��$ID/�EB��u���@���RRV�[-J�]���V��D�"���g��ss��Zs�\����&�I�ۏ{@�4gV���J��,<<�����>m�R5����<qԩ�� g� 6���"�������Xs�J��g4sK����I���1����v#A9_�<j�)Wᜮ�|�ى���(����˴k͆x;������8�kq���,a ?y�t��Dg+8ė��?���:�i+�E,"��̋ux���mHL��`��R~��tfl�JC�_�>~䳍�$�X�@���/sX��)�Wa0��������8���~�m�&.\�ϫ=�%�.���p�N��R�ީA�Y�gW�G�S$�>?���S6ߑۿ�1(�MH2D&t�����$2�u��bwǑv_^F�Y�P���U8�:儈� ��g0��0<�$x��(�Z�wN��$��R�Ͼ�/䩲�����䜩����6M�Y": ��=���H������5>�l�D���q#�т�pl�yź�<�t��p�Q�6W(�n� +��5t� 9Q���H{,��as@�X�hM᥋�����n��v����e}�c���yZ��E�,V�D�+��J>�3~�w /d�PCj�YƉ{b<D���ʾ5���"�I�>����k�������H�V�?,��]mO�l�ݠfa�Ig��o�V�a��ξv��3:�+����y��k=Y�ڔ��Z_$��vL��mw_>S�` �Q�B�mݕ`��0h=m���'֎@I�Rl�^ +˞�@HDH��.��lSX��,[�9��Y�˩�;��Ѥ�+�6�5MT���w{�l�Ӱ��f�/H�uȷi�l���* �Za�J�pOL�nLOL��fʵdc\����9FK3]j� r+�#�.2/�y�ړLƥ�->� �U�+��\�k\@����ؔ���qcܤ-,��M�O��q��G����y�PvR���B=���F����лe-�t/c���H��M�"A����Q�ƻ���e�5��ImԔ}�b=��#/&�u������ljX�@���X�6 6WQ��*RՓW6>�0���)��Aڌ�Qc���^y�2$�g~���,�%��_�%���J���C���qߞLw��mO��U�����ro�}�`�fx�Lǽ-�eo���*}8�1� |����OV�x��\3=�lK�OT ������� �R�0���&{��`�����/"�+g;X��B�0E��Lq����&��i[���N��|ʈĊ~v��~�#�F���D���&ȷ�$�`��M(~?e�{�"����\�:�q�]/2�q�q� D���FB����x�!,�@�r��aտ���5���m��3e��0xV���,7��#�fӄ�_�yrT��)*7��ya@�[��r��\� �"F�F`�� +9B��o�:���^��ۉ�f�4��Ɔ���<�[:�K�<YHvWB!��Q�y��n�a5�a~}0�ۻ dS�ܫ��q�������<�K;��7�'(���n\��`�abƛA�jx��^]��qct+�����O���[�hU.�~��<>��^�(Ə<a��e6#�?ˇ馺�X��uc���r� ~,K��#)���N���>�Z��g��nU�H{��w���>�M}baӳ�I��,$�B��� �Q� +L�� ^� f�w-�^. OA�����TK��</m+,��AD��r���u���ʓI�����B>=��k/���T�v���֪ڲ��<ǂ��1~�eQufЎL��L�bl��hz�T����_��2��n�����['27�����w)�n�/i��ԴF�ݬ3����3�"�T�>�5~��P��K���k0���d�Id�x���#��]�&��S&�C�u�{8k�,�Wkפ0cS�9�$�h��[x�na�%$&s��xo�0�'C�V-��&��>�"��'�/��r�3s:ղ $�ʏ���:��,5���#ß���b��T�R6:�@�r���g���ߟ�C@?q-p����8���:���<L�wLK��7�|�DDVQ(ǀ�����A�H8!� C�0�B(è�?iE��D�;�r�B��Znǻح��C[������.o�ǎW�R�x8����Ps�t]���������r��9�d�Ph�\N�����]�#8��pzu�|�R~��B�?�f��m�\��uE�GyW���n�[rg� ezw�վ��!.�s��H������7-���g��z�UC`�Ã+��hnOe�\{܆{��=�S�nԬs&4v���`z=������䦦+JAK�qR��9V�x +jr�2�5:.���O��ŗ[�ɶ���(yq��쨾�qR�wt/;4;��P�v�w���D�o��hn����_�ב�T+,Qp"�Q�cX�2�LƢܤ2?��gXV�I������ +{-T�:0��>[��T�ʋ���2i����!e|`7b'�Ue�7���R �PqkV���'�B�37) +�g�Zf1L���������>#�&��=�Oy�n8\��C�=��>���Z�QP������nk.�Wvl��1�]$L�cS?Ҷ%4�3�f����1�4��+X>�� +�w2)��5�r;���]�u��f�۞�<��:� +*��� �lHX��p>�*��1a�)���F��%�#2.A�-a%!% e;�&;�!�UڴJ�nw��"VH)*�ru3M� u�O[�#�Q��z���OO�v�,�5��Y�nGr�9�?�lO":�J�2D�~e{��.���Guc��ԙ��3��Ͼ@�^�3�F������i����>��e�X��iw�� +�#��U抅Y�k<n)�5���= ��.�_�V��D�g���0����K����,=�Y��~8A~���e�~l���/��<�s�]=@�p�A�3�ϰ��*'�i�ᾊ�ZڏT��{��o��n3 �ƺ���;�&��g�j���VwT\�W����0'�5��V&G�r�7��g`9Ԑ�]{�w �{ 9��X�*N��>~ef�?� +����=u!Ã�\RP��gW7 +� �X��E��N��bk8�Cy0d�F q�6���C�Mvu�K`�*�uSٰ�<�l�MC��m���Q�ԁF�~ +bL��3M +F�([4R֥����L�G�� z@e�D �U����RHQ3-i�'�e�Q>������N���H�W��/\]l���<K��w>�����F�c5��Q����#�4�VAю�N4�Qì��,�H���0�\��*�^ٮ���$�������l����z%��@�*���c�fD���2�P��5��*]�K4���ݖ��?������y�ڦ6=� ++A8��˔��#���B� ��kV�E�hF���#>l��-��:�r"�"u���c|�����wz�fE5V��*4�p�LG{캻WW�(���:lbr�b�?!��>t +����<��g��rp]27o����Dð��g���#.�����ïa�`���u��8����(���Č�&G�Z�h����Q_�:C{�Y6/C��h�C���V�y�1c:�;[�=��oc\%� �����BDh�S@9���她oxaM�Z؞��#~�\Q��G��� Ca�ᲈą��~6P�*�@�͡�u��a���=kS�)�2�zA��veH�*|��ے*���52V媢�c���3m��C��,��>��pB�=�YŞ��-��̘Da���l�NgIT�2���N�-m@F��K��}{;3n��Z�~�J���Z�gOD��-����<��Y��W==� �wFi��G0={D8GO%k fG��aOv{w��,J��%`�5��du ��08p7u)��z:����MZ��V�ʾӅ9b��9�.3P��� ����:�ͣ�����̐�{��i�#���OH�1d�f�m{S54��#�g�t �/S<�:*�O��n&�J*N�Z��ō���A�xc֝��d��|�������$���� _���ct<��߱D^��]�+�[����PiZ���t'�ܼ�YW�řc��LD��~��Ʒ����z 9i�ISLЍR H9����|���n0/yre��+�8"���1A',U��ay?3��L%����w$�٧�a�r|�Hȱ�m��]��n����x+�m���Pa��pj�] t�ns�`Y�����)����3��8�����S��,M�(�,�+(Q���cκ�W��S��u;H0��*%�O���@�-;�l ��q�@�ly{��5a�m�@+^������y뉲�A����'1 ��0U���YF�kX$��I�)Z����3��Z��5��^:�&>p�����2�K��is�Hfхs3�f�8���ľ��� ��9s;�!���O����X�.�%{u J�2nj Љz?���NGT��R��U�$fп���߽���S�ߪ��Pg_����-gH�ܾ���%ܙ������X~I=���z �B呥;�N{���+hf�=�J�PO_�E9B.Pr1{�q�+BS�G\D��rM�HI6�#&87�:Y�ڳP��!����ŧ�w/?)��Ǵ:�ܐǭq��C o��)7�><�-D�!X��<�������g�C�$���cE��Ԥ�J����`g�J��2���0�lvc�S����d��P{��v�E���N��úԠ>A#5�&^�=��w$��+I@���%��/L�kا/M<�G��ɉr�%��F�L�<��Ke�bGB��e�AǸ�����/�L�+*4&�*അ��}��Y��T���M�s6�0GJb +~�A�;�~U�DF� 7��Z݀�,���U�pw���C�D�;R���0�ב7��<�G"d_s�S���Z� ����b>Sj3�V�#$u�[B�g�<�EP��i|��^�cD�PؖR3Jv�G�+��b��a9]̲9t_"���U� �Y@�'$X��&*Йߛ �4�|�^F�<J�7Ȃ?_Al�ė�2+j`�e#|�f+ �Rq̲���oq����/�y�_��0S�$u�����NՏ���"6S�mh�Hۚ����9_�j�E�#a:9���X��V�,$��t�⍇�mw �Y�0�6~�s;�����qTh�#u�Y(�� �v߿p��kr�>}������`�N�P8ձ���� �X���pDŽ0���R�ٶ#A?9�R8A�� �����^��ӫ��zG�w��;�h�>lҗ�N+�/{�FwuTlGGڦs +�߆)�j*��Ja�w�i�t$��'@&ũ9�xHkJP��i��ӵ�� �Pד�������}�v |� b�4 �9` yse,JG"r��� �$�3�3�Ϣ�1ް��5S��qX< H�S�l��슔dI�Q��"������<Pv$L٧��;�0vS�;l@Ԩv�dh�=�Ӓ|^!�[6�z35�γ��15�X�Qy��r�EyJ�/;��C�,a����JI�į<�G����vE'9S��fI�/��"��2̌���뿙�1S�3\5��6@`c���E�j�Sѽk�������X������!9�b<74�I��rg������'!<�R�;yh�F� +�D;0�Pp/� ��O�%A�돢R]'AqSh�K;� 3��~���=��x��O��EI:�ՠ:d�T��^�z[L_1�gX��!)/��0/p��>^P�R-����,d������� �d�,�� �R?>��po�[nf�x�[W�)��f(A��n��vgܰ���Y2Q �+�����q���g��:�u��Y�]i(�S�ܙk�C��u�59�F�.���g��j�mQX_'a +����a��B;8nh�,� +�#�qI�N������a��∲1�T� ;��Cu����� �^����.QM��(�bOl��?���>ņ3���ߕ`gƢ�>oj������Aa�l]b�}��V7xR\��yG$�uEM�Ѐ�8R���0X���Zg���<���k�v��wO���oeC�Q�ȳ ��[�Wj/lwcQ��s"�3.�(�2\����H#i�U��q���8Iꝼ�,�7b�1��'�$٫k߸�����x7IB*�q�c��TiD��(Lv����e�t��Li���2�����/�v�G:4e�DۧO 黀����~n;��bK5x�m�XF���3�mQ���|�Bmfr�NS���ݚ�S��� ���U6�K�ij3�ә��w�p�K�d�|�о�N���D���J�9���fk�� nM�tMڞ G512��'� ;�O6� �z�ͮՐ�A&�`�'��t��!��L{r +[�w��G�y��^� +� (q����seϤ�v���_I�.Gv*�C)f$5�It�m�Ř����i�kf�!Q�=7���#na�H@�=�����II�#�Lٲ��q "�?A���o7��xH�w%���7��Z1V� �Cn �u� �=��Ş��{h���Czs��K2FC�RgW�]!�oe�R +�rZ*���`.Gn�dK%u4��/�.�1����rU�EY��=}�.NV��I�O�a���Q��r�@ o�`����Z_0�m=�{9�Y6-��55{#��8 ����:.����I]��K�ŗ�8�N�I�Ҏ>�����:�#6ڏ�������+t��b�$��W�$���@�L�l <�&H����O�� 0%�,&e�MZ��s�� �� ���B�� �;�m�� �ȷ�H�>>se ;�ty^�����34�6���������vEz$s).��V6�ӻ�q�TjH� eč�kW��Y�*0h`Z��L��y���\y�t&��l/̡l��3��d�.|c,� +�]�RŪ�Z& _�!lkTy�r^�;��cs��Խ�k����j��<���h>X��^`�̓y ����"JQ"���!���2_�1����oVweÝ�^3�P����<�����a{{ѽ��}���v��@(���\٘���晾�rWm�qv��b�$��2�����[��Z9L� X��{ +�~Ng|��NL�\�ѣ+��&Zٖ��Qn�1e>(������+[�6-���6v���+.��ϕqR�?y�*���D�l���"n&v� 3|��qt�Ç9�\���{ `���6A�$ȹ!��W>wb�P�&$ ����KF�J� +y�*�F�ж�3 /��[e�r�.�Q�(�yUN�Ol�YQ��&N �r�� ꚢ�Au�[�Z�K���Z��I�M{�EV{3�l�P^�$,"%�EY��|����}��L�+a�$7��p×������x? O��q��x��N�s��+v����J{?W~��]�w�������FKrY�K2kN�Pӭ��aiزr�ʓ�] giv�D�-0�E�C�o�#y�u�e�&��n0E��S\��Q��V��=��,�ڝGR��uI�[�#��A�9�a00���7šG�8`qbkf�#_�z�-!_/�q�3^�+��td��] �X�E�)$�7�k�)I,L�� +�Ɵ){*�6aL.�a�YA.b�`І�~D1#(����\��� ��_������os��@"���A)s�X�����Y���f��)�9d�V�Cj��a������.?9���ia}}���z2,���I�D�E�F��q���Ǎ) �p9�%����,~�uoX<�.+��ٝ23�yz�x�����f��*'�Ń��TJ�k�[�Q�_Gyd�gn��Қׄ�tH�d���h�ö��T���U=���G�u�=e�;x�Y�Ժ�=��W{�������ZL_��-L�Jv��Xۻ��i�+C�֮���ġI�[��-���K�v��䓲;� +���4 8�0���>���'jy� +lA��nEl���$_�}~�ƊZ�0�*����>�bW�%���'�E5,n�$�YB�s'��������ܵ��jv[�Am��q��6>�Q��� +�E��F5�O�^A�<��7�4�!5i)ߝ�.dm��?��o�1�kͦ%�֜ +�Q��t�����tb��lڙ6�h���+3_|�_�|���g,]{���i+mz殄Q�xa`o_��ɠz ��� +)�#�흶�kJ����ۋh��?��s�����Y�2��>�ͭ�����ж~i�:g�ז�O�F�Lx\�} +���{��W@o�aS���'�&O&����C��t$��jQ.�g�Ljj�`Sl�l�!'S����"��9n?,����5�h�m�I�ܓ������k�=��^�������(MZp�T��K��O��\ي�!� n���'��e8h��c)��Rr���Y� ���1�;���FBl*/��Q0U�Y���@���r`:��i� �_G�A0��F�5� +h�R������1�{X������|����f���xE��}�����3s�!��vO{8�Ll<g��Kc� + �'�@�m���,x)��Я�*��'�V(�G��] K[oW�qP����Wj��ʦ;2~�6�/{Fĉ�,�G*��i�5f��'X��(��k���bu�;f� +@wi���,��s(���Y � +M�X����P�D��bk�S;/��ͣ���Y @��Ѡ�_z�z�v�lE"f^Z��� +�������v�G��mm����z�����fW��D�M-0W����e����v��]��ک�S�wO��g�TZ1f�86����$h\D�-W�qmJ��65��.�Ϡ$�[��n�r]�V5��o��G�fŞ���ak����r�i[��A��p�E�.^d�O�f�����ڵ���x�k�,�/s���I�����"�g8%$R��f;:\�k|�z ��^.��S�X�����ӄ��U�M2�˳�|7Ƀ�ϱ�KEc�M֡*7�ȩ�;����Q�c�#���3�Fkͺ +�H<yR�9�8����U��#���Z�Z�۷C�"�B���g������uF5��h=w� kL{@: �t���MPW>�R+@�]�ޭ�\�u ��0 (e�;��-�V��v�"�9�lTI"S�*��*��O�up �B�'f�ОV���m ����&���Mߢ�̖fA��t�D����;���.(�?dճ��O�y*��ٵ���I�,\���:E�Bx3����4.k=[fm�7��AJ5�Eį��/E��m���&\"1d���`� ��x6��ӸI�م�"zO�rF�U�C@��t[�����O��,[.����lS?����sLe@[��t��z�SLBaB�?�Q,�*�#�c:Q�/CɃ��?�/e[��g��~��{����ߟdos��$��ʇ i�2��S�kl * +���A���D�W��U�%a���D�lTXq^Yb���4�k��@³b=���+�nq�!Uq��&6H""pa.����5+��K��)��;���)�|Sٜ��U<X��FM��T���Kغ�折]0Q*w`�އ���H�;w,yAĘ��4�f-���t0�~����B��wD�����s\���E�����k=;V��m�l��c��PLzjY<���:Bj�h]"-���O�/_�q��(!� �$�����*S&��I���%��S����ǡlP�ZFH�IZ��WE�h�8C�aN��Ή�4#������)��)����f��h��L �<%���Ȥ-�%Orm�ƻ���<�`������a����(�26ON�� +��2w%�ߜ^eC���|��3a��;N�N��'��Z�P�!hl��K�>���MP��{hQ�,�sN�]'lȥϨ��6`f�X$B%�ў��n�#���{#��#�\�tz{q`c +���o\X�A �EzJp��FM�M�r���)\OB�m���I���@ٺ��;H6m�w�v��yܾ�.ы|����`����9�����V�7������;(3q`H{Ը��Ĥ�ςOQ�lY��U��~�x��ņ��<��^d��L���/�e�sJ+2<��� �6,!Ef�u���&�" ���S�_�W��c1���8 F��i�:�= ���F����po�f��uV��sRY��.���^����"V��)"n�p];R�K�<Hcj��!�D�2 +gT��5��({"ɌD��c/I� N������ܚT,�9���i��{�-f���a�/��1�s��Ȯ��N�墯Y��LhH+W��1������ڗ@�6z���� >���"RL�r�����@G��HS`@lk�����}�^�L뎇�i�C}4��E ���H�ښ�%�R�,N} h%�6�Q� @+Z�i;븏}�aQ�g\�@�\ז<��I�����6l��U0I�(lw�g�1J +�xҧyJ���'�;u�ɐO���X�o7�:��x�@H�o/������(&�Ehv�x +��0���� ^�;M ڐi�a�<c���?ƞƠ��E�j�2�%�YY��/�Ψ���-ԗ���l/^����鳱�� ���$� ^�ё�nĴ�ԟ��Xn>F��e˛���7����@��G�9�:\���"�6��"�M5�$V�>�_��տ�R�Kڙ��-{z�@� +m +�8�D"53��V�0�(IQ��8 +K4�v�J��%�'�O��l +��ˋ��#�%��%J�pt�R����4��*6<�Ԗ\���A�@O�ՙ�fW��!eY�Y����6���� �3�퀪�il��r�6�����Z� b�#�$�c�)u7`���[&�Y#3'��c�4!V�]�w�vg3N�9A�8^��f��]֨�%5З��/�%R2���Z�6�e�:cL}A���VB �xin���!�d�9�C�)�8�(�~�� N�V�^�#�'����c�<4�O��a@r�7�S�G0��Gm)z���!6P��e�M�B<��tdɽ��*��{�}rv,0�0'�h銜\��3���V<���x}��~#`��Iዣѫ:��l�0�.��:G-�EL')LW�q�4�a�),�=D����.YWR�f���Q����wqS@T�ds���D�8W,�oE�stĸG�Jc3�+����ѱ �y�K����?@1 ����x�_;S�]'*>;[�e��;�1G8S�f�cc��]{���`�:L�K���O:@���#�BH��䔭KPP�n���<����R��*<٠#e�|dB����n�0N�q�} y6#��Q�Ҧ�Z� ��P�ס cl�wMjК�N�YU�y����/s�%j�T�P覙d�����^��>Ơa��/)kREɱ�{��X�1�Ɨ� +a���p�Rf�W���O�t=��aF��ҫ��U���4�@� 0�f�7� 3���`םµH�z�����o���6i�B�fq�~��D�3<F;�e��%�))��ȫ<�1��)���KX����=��b�����Ky����(�&�����L�clw�s���}XKxճ�����h���Xm�W_�� ���0����F���e��D���!8+m��K]?cRr���X�PB����(�� ���0 +PP;��3IQ9sB,��C�c�i�F�l���`u��6�Mmw�v������x5P*�o�����W���*@��x�Y8�9wzW���99�9�\Z7�l��h�8��b�~�r�s,�t}��qp�swzG�:x�杄��������\v���Xu��v��~�. ���tؓ�s����g$�|�͋ї���gY�)�~��ACf�"��2�'��%��L}��PR� �� �N�ކG *�>ov,:b�d�]�{��'ݓ�}LJ0_4I��4J�-���"�͢�t��h�^�%&&H-` �#e����K}�@Ud妜����YB;�rZk\i8���*?TޠI<E�8��*#�Yp��Y�{̂L�F����I������.���m��l9��3$�+:��Iu���@6�Z.#Ȇ��X���&�H�,���3�\� %�f���|8��;r��n����^s��a��oՋ�G�rE/�i4�������f��i���!^Z�6�O���D����2�f@�+���e�i�|�@`��Ϋ@Uk�vOB���y4�;l�yT,�m6f �ԞDq��.5F��+Иw:�s�`��������DI� 0� U�m��>���\�Rvat��Jr��s�<{�D�n|�����?&����Ӡ�R�=`y�#���}�6+xc�ìh7� �_�^Hẹ]����V�EtCi��dp@\z�����r|O��)t *�x���aB1~3Db�������LhV�8���B$Ed���:ԗ&�K�kss>�p�#��C�����)6?��M�xrb�$F������I���}�_@_�,h��1����2��W��` �:��"hB@�����q����pPϦan���6��7���/K�2]�F�����?ul�C�Hр߆����JK��A?���z�xܝw�A� ��Ψ�;Q�%kdA���Lz��h0�k#� g7ѷpff��6I��X^<4�I��@ ];J��d�xe˃�L8�-͖P��U�y���Ssj��P~XS[Q�njTH�3!�k1��3�Dg �����vG����h&�*�SQ�K�����H��fg�� �}A܉�m��ЬY�F�&�ϵ������������U���@D_ox�3@W�7m'zw:a�7)���^l{;п�(��^e�����\�18��j���J�h^Ǎj�8�%>2�<���N Ԫ��h_�&Q��V��X�à.�6������X�����N���~��2&�%���>� %�^}��A�ŗν|��H��W�uj�q}E��LI��vBX����e'�w�0�<<]DːV`��aM�L���zk����Ѥ���������*����$H�9vX�IN�PH�:�ffVv�F�t�@Qk5����5��u�͊C@�8IB"#�u�R3$�i? ��q`�P��m(+�����DVj�$�.`��(�C+ͨ��k��Eٸ�)�ii�ܒ�N����B'e?��@2$�E��p�3G����=<��ƕ͍w̳3� ����5l�Jr�jʲ��w� +�%0�ֲf�� �O�웯��@��6:Qǚ*��kv�"9���OLc=SvF�VfPu��E9�`��c��;�?����Y9�U� "�5y5�Da|��b������gm%~c�����k��Q�k +r� ��ۣ�.j*��>�m�����xX�z���+B;NpLd9���,8��+����Ư�[������������@� ����o��z;���y&P}}r�I���H��K��x!L����;���c��� v�KS��h\��C��?�����z��~�|����[$!�P�����������GR�:�qU�మ���Тe���a>�sbI�j�8x���~��,8�i�YS����ԃ2 W�����n +G˒q����E����Ň�$�K7����p�A�;�2z��'��=�?���o!X���bu��fQ�|?�.a��Hn��B����=*>��?�~�������{��]Uz�s�\'e�Fٺ�o+?� /��� �K}�ʢ�O≙�1rQHǜ[<����i<��7(�~�B�1�/j���u������O�0��n_�����0��+�E�䉲'ͷ���j� ,Mh +LE���o 3�v��kx���l=�}�u|�����aw�G���k?J�A7JA����8�N�1ZOI���R{X���%���H�E˥�ܠ�}�0����$��}�N����\�l�\��}�<�����w��- �MI1۵�T[6�XR"��&M�6{����^�Z��?�8�=c��dL�S�iX kn���v����[>Cӷ�o_�J#��SO1=�<%9�����OM���I쑥YT�ە��3+�y'��P�����Y�^r���.���*d�%�~)]`�N�9�����@j@�?�`��X?U6ڀ5C2�'C�����(?b�;�������1�3y07������i����/���xF�r�?�_�$��k�.�)�C��Y����~�>Zq{{ӐE�ӫ� E�ؚ����Z�!�ȅ\�����o�>遮S�R6�B��e���YT�����奉��XfZc릲�,���Q��8��T�X����ӧ���'�/��I���W%��m�,(w`�{$����l��Ç��uG�+�ѭ�|.Ad��"Zߞ���X +�u�̔�c��:dꟁ�k������g�9C�?��T�@��{g&���<����7��*�%ڱ��fi���D''�6����5@� +�>��wݝ��N��+��.&;�E$�O��D�'��H��YЊ�����|��w�����̡�u�Dʷ9��F!�vg�ٖ"c-l���_g�'����� ��n(�:�ܿ��W���A�2B��l� �e��#8�a]��Mle'�{�v��T����j,i{ב��[��8� +3����nE��(a�M�P/�$�k\���+��L�]y�^�n%���Lj$k='1����ɪo6���A�㷟q�?+a�)�D��# +&���z�L�|�����툰U}@د�D��҆�ia�z�-�1էՑؐ/L�Um_11���r�VB��镮�X�������u���RVX��0(��P֤4)u��@�#rॎl�����=jja����H�d��n�R�ٗ�@!f��!��MJtyv �!����f+a_?Oy��S,Do�o��f�aV:lq�ZD���m_��O�L�f��UM7�:���4c��x��w�٫�;C:9$@�,n�fU6l�ّ9���GL +�YM�`��$�=��'��P�����6����k�1�{i_�r���]w+�F��h�J�D{�w�bKDT�O��Ο�R�!y����h��Z��e(��_L�R+` +��������~:�Xݙ����(���s�����t���R�J8�[fu��w��X�;��3�ۡ� ��/u��ߧ�j�R�FJ�GE)Le��2B�c�.��<+��W�a(���4Fq��C���O�~+�&�L�{K��]S��pX-����A������i����M)�yl����_A�?=&���� (^��`f�K[$Ks�I�yDZ���4�[z�0�uY~���H_�A����r����80Mֳ��8�f'Ɓ~�&pd��h�mZXO��q���㧷oxO�X�́fu��j�K���|}š?�8��m����~�6 D{�1�Ex��3����i�/�kK���Ubbh$�_��f�I�w�nte �������ZS���Yi���Oʇ@ p� (�ƞ���М+c�4���N�I��9?�����.*�OeDrK��� @.P�ac0�a�v�yM}�����a马?�`������9��i�.q�V���|��v��iE����Ъ��-�~*��ժe$h���A6L�� "��(!�ߧ�� i5���RE?�f���#� ��l>'i�&�>��P:�Q������+n�X��8�v[[t���5��3$w���*��)���qe�/������(�f(�r,��6���U��m���z5���Ԕ2Q�N��8��F~�E��U<d�'����Йb�7� ���"����;�rm�$-�?�q�D���!8C B��k`�/C\<`�E/H@�m˚����z_���C�E�U�t�4ۍ�ơ�T�t,L�0��z5��� ��iǔ@�g�<�j6�/���������I����t�G؊!R�A Eþؕ�P�����ҹ`�$zP�k������N���%r�_;$r��Hٶ�{���hg0�f���@�9��}����Z��Q�O��}]�qe�3|@g�U��VJ��5������! ��7��+ߨTH���0����H��]���8&��Ma{�3��:u��0�.q��N�G،R�W���h�A�5�kD�@������]{h�Jp�3��Y�%��U'Q�ezM������&p�.K�͘Eߴo���m���U�R�e�C�M�P�c!1�b;�y��M�j�(?�9��d a��)AN_�f��ש\S�)L?�S�V +R�1wNl�CN=r��[����&��(Y���'�gn���1�%Q�@Bk�|տ��n�yj�y�Bm����[�Y�um�݆�z� +�L}�p��+�v���~������3l"M� +��×�ݾ��1/����B�8%���H^g0�i\Ӂ�2�����JRR��F,�"��#{%Pj�+�.qYV�{�Mä�G��'��������D& ��ԣ�-�*t��C�J��zA�\��Xl�U˧��q�YZ#~���F��6��2���I@�D,�� +�����b���TO h>�6L����J�F!a6߲h'��14F��:#k���ѧ.)Ŀ?�����8^܍rd�!�њ����T�!�����O�ir��K��wI:���?��H�#h�.��: AE$����&�1�CY�;�2�v$�b8�L Y䦑�<g��OP.4�>#삢3�x_�y*�1���~�,�T��2 �W�v A?_�R��Q�m�'�(�6��u�b���d~�y�o{x�Q�5H۫�(�ĢXD�]��$2� ^Tۙ���`U���Ou_ �kTܟ�w���:f�0ʚC}X��8mF{��. ��O?j 4[n�P�M�D���.��(�j�� Z�mt����J�Yr���2� ~ �x��I��j�m���P'�J��?F0 +.n�Д�������T�������S��l�`,hX��u�5%|�� -W�Z��h7Q{�(���8������ +_jN��)���"�4@[��uC��~;���z-����Z�Q��L��<b�3GL��e����x�Hn�d��=�?��~��!`�:n����.�_Z�� 0�Y>����(�W�ev�F����Gf���@^!�d���s��V�庨�O�p 8��_����g�����u�_� ���Iۓ�/���8�e� ~����*�<�g�9��f/��(�0XB۟��B����|�����D�£6`�o�����1#H�]{55x��j$�k��VW�]e'��N@���������.f���˰���m5[/'���# �{��`>L�nĻO� ���U��A��1{(z ��g�#N���p`���@e'� yV�Ε�5�Z�(hnU��Q�����W�Dُ&E��:%F�set]��y2n�˲�I{?V�s����>�'M���=�/]�F�T���p�<��LoOg`.?�;����g�14ޞ�`?_`d�;3��C������'���Tq�_C���~��p���*������oH"���3�3�H��^��gA�]�y��Q�۾�n��=U6ڹ�h׃��>F�?�v{w>Ye���)�`�i��B徟Qgp���0]/�<�R��e��xP�'� +Ҷ.�����pKD^5�a��l���h�%3��푄�}���Y��T [���v�Ql(��zj��?ZK�Z���j����7�_�V*{ҽ�s�~0_$�X(��:E��FY��8�~u7�J���2a��Ke�^�k���]41������([6�^B7B�6^e>��I�FHۧ������}i+��i�yɫ����i8]D_.�u�8|�Yhz�����V�/�� ���#$ab_���*J�?�6\(����zy�mi+����p�4&��l6�ތ�[�f�*ͩ@7>��TQ�μ}%��6��,.���+s땹H|S��gp��ǐ�S�<������N���K�߁�/�N��M� 4Eݐ6������c�d��9K���&��b�t7�wFT���C,oH��Y���f��⇞y$aC���e0� :7�nk�����ʻ��ݬ�+ۓ��^��]���~��� +��˗/=4>B��We���v�QۇU�M/�yw�Q�����TS� )]D�r��q�B��2��;�j��c�N���ni{%�u�����E�:V6�)�^k�=52Be��dFx���D�z]y� ��Ag�������y�~J"��Y�O&F�R}@�Wa �t�[��X.5��C�5�'v,'π�������&4'�,I4 8�r��N�0���.�q�:Z[�>����o�"Ch��ic�a*���W��tg!Q�#�O��(���yĺg��H�cd#������{�4o�����ܙ��'�#>��ѵ��쑄�|��"ޓ �5��(�-�I<�Nȅ���sB�=h8��@�QP��Lp��Z�����# ��!���!q/ �+�f���<���Cj_ l,��O���6)e��g_�Ϳq��z�C���$� �K�kl����HgncB�Dm�$-L+�W�Q;�(��j�! �c�8������k�ʣcۭ9� �Gp�&��g��\l�F4�0�?��t���<Ǫ@���͎�1;�J3p���#n��� +���� c�'�����n��/�+*�?%�V�E�`$�>�@r�א�1�0��v�b� +�x*~8fD�I��h4��@xsIH>�d@��1�Z�۱�WҢe�_�� �-�?��A�����ZYa�u$����ѣ�[��|���JH�?S���5����Y�;�� �<F�2��h$��E��*��Ф,��)���o���Uq�e\ RAN���Y@�J�B�N�M��1�ʤvy��jqTk��`[��#�s���Pl=���U���4G,���H*��V�&I��!���B�W~B^I���c�2h��� +��B�#&����'�ڒ��Y�xɄ#�g����@�fD|�X3��\ _w�3��h�kjQX���p�QXd�y��ro��3�C���YKyh�B�!��,�����6f>�7��`�����}���ü�=��η�9{�qu#�qbB�)��@d�� 1�е˰ɤ�+�~��}�;=��A��/��%����7�w�O^��X����,��l���k���J�V�f�[;���[i7૰�A��o,�^�AO:�f7N^�j�'�~u yj ��ܫ�]��[/�X�߽_QB$�,%4��&�AZ���[H��Z+[�&B��r^�O��|u��%��ծ��ٯs �,"��4�9�5��륒���*���o�f>�*�����y�H�2h@wq����7��Ip��5Jy۶��W� ��86*���0|�a6�?W�7^RcQ����/{0���,�?�3���Bb��ޖ�Pp2��t���X"`�D�{���@��9χU����A���x�Q���q�t��� y|�x +�8��#�T�8�:O-5�߁S�I�e����Y��&��4���ˉye��D�B�f��D�G`ŕM;jv��@��&�G�!���g�& �3��=o�#�39��b3A.��F�`����rw.Ar��������I���DԱ9c ?���y�lQXn߆WQP� ���~��ՓЋETDFI��*��L��bZ���S���p��ڦ8.��B�֠I����F�4��<_F?Cr�����i��Nd�%���yrd���g��篔M��G��k]���ͳkP�����REyH{&ŕs�5�ք���T����"�_l�Q����p�О�����|�Ε��E\����%���y �*A�*@��rC�9����#�Ԑup�Ƣ���9�A)���"P���\�^�E!����օ��x�הjG�ѐ��f[t�/+�e�� 5��<�iΰd�<"�<�}_۱���ij������zB'NQ����_u�j��%ħ�F�1E�|�g��$ʸ����XI�)V~1���nl��t��N����ϋ��sY�@������^e��'I��Ϸ���Z8U���e<E�?�[3�3'�\ad+c?�W�(���P/��++���;��Aذ(��|v_{Po��|jFPy4��3\=��ǒ<k#�o�b�_p����F�Q���-�c��Ѹ�Zܤ�E����EL����kACng�6��Z�\����xsOԽ�d.����*�6�e���m��l~�h�[~�����B�M&��&k�����H��C��=V�)�����K�*���$:9�/�h~��x�2��5tQ,M���dj>��(,�OX�A-�_�G���w �Tt���Eis<0�!)t#b�i:��9����$x��c�I�����PN�ջ՛�&��-y[���i�0 ���Ew��e�r��꾱��}�Q ����#p8����<���~=&���.��X��V��Ի�|�f8�q�"f\R��d�~7�M ������A�__|��8�/>�+;&�Q�v�1i�a� ��B떲c��yL��3'���)�~��q9����� 4�`����eI=�7tT�v@�QDN�~t�J� �m�u䱞��h\���D� �~�21�9�k���9\��sY�f�RD=����,�j��$4�BJ�l)O�O�~�%��; �.�y��6&oRB�#f�I-�H2ܼRW������Pl_�w���8���KP�� ��L�]Q0F�P�`��䦈� �Ҝ�ԃ��A�;�����gqA���X�i��j<�� +��X�Mw��uj�.iʛ��ѾO����{r��! ��,� T���M�1X�����2�����{�O�>��v�/���F�E�,v����(j��OG���o��pK��b�gGxQXe0H�L���)���B&.#��Qu��-�%c�� w�,�L|�i:rVn�]�3Ğ���)�����ۙR���>��(�Y!���sJ���t��9 +5��ב �tf���������Y��0lR,ĩ��Q8�ѭ�E1��Hx�w�c�7�l�#�A��T[r<�6��9kp�mʶ�}�=������u6���(�Z�����%4� +Z0�T��j,������K%�����9l>���1fF,��ݎ��W���� �A�\���|q�/�y&���&�B��9��NA.�ݣU�OF�)s_�#MQ#����)k�����E@��R��R9W! +���|xFj8�8hS���J�� +G�?��D�,.����2W��������� w/^);!���851��#���Գ���������OB��9�c�f�b��Mݤ��j���O�}�q� /ֳP�AK`ڗ��7&Wkj����ke��}����ͅ���o����$�>?���c��o�=��:�*��5�?�U�`�n,m0()/�cY�y��8��"3�Y�,�R�>&8�&����"��p�5.l���R�@H��$^!�>O��c ���s�(P6&��o�p*�K;&H�C^�~���������]�5L�zc\���1B�m �?�A +���muw<�7���R�ڻ��R;q ��*g�}���8�|E�ƪ�}��)��d��8�%H������x@)"��ztiLK�B�9r���r�(�h�Kݒ��դ�衽�XkR^$��)f���b��{?�!�6��*aI4���E�l��:gԤ�j��|[�f6z��$�po' ~Qݿ����KlͶϖm�K�����:ܝ��7lr��¼���x��2{'��Z+���A��_��VsӜǓ�)7���32YujD5@=�K��l=?w��ś7'�u%z3��{=^[�wQ�c�83����5MI�95=����p6A=U �%;��"�F��X[������Ԟ�����{[�}>���<(��yxP�ӽ����f��6a�/�Ӈ�i����zp�}f�G@���FFۇ���xFԚ��Vݘ���fv�&Y8�\�q.��+��e����P�n7�s���yW0A ��LMơ��u���hF�~�1�z�z���g��}(���f0����oy�R~�'���Y�AjEJi� � ��a3��t]D��bč)�ɵ�cx�g�������Ɖ���ʥ����s�ɱ�vC�S��&�^)�j��W����gf�w)A��#X)9l�J�zɊ�f�@�r�'�(b�͐�]o+j�s��F�/�1�t�t�9��I��&֡|0�k�ә�'0{��oO_�udN~S诵Epe�M��������6;��F�Ǣ���t\Lᘋ~\�1���wwF}B4,�/��<�Cqɢ�6VҊZ��}�����8}jV����?��U4�'yXp|�]݆}�2�����i�NHh�O�k�(���s6K�:rE(��/��S����?���`��6�n�2/��/�d�N�/j�M����*�2�nG�����Rb�,ù'k ��������iJ"aV�����ɉ���{��]���x��U��,̋�e�t� ����Ʊ[pۍ#����4�V��|���ő�2�?�}C����JZ�y�R�%���ryc��t^.lUL�jw�K�䎄j�XqM8�lp6�0GD�3 �3�K+E¼�t�l��A��vT���M�X�����[zt�;ڑ�|}Y9h�T��%�+���v��J� +Ԓ +��U�sj��xO���k^B��o��m��F�|�~�v�Wk���� c��������7D�����g��Bf����|v���ZU|6K��5�W��d���U`>��P��K�K +j�گ�H��@%Z9�yLC�smOƍPZbt�wR���%�om��@ ~�p !x�/��k{ґ�pd"�X�� +k+�/1C�`v�7��̲� !��3�� ��_I}� V�19��Xر�'���)N~w��U����#|���o\^�K�I�/�z�5�ĥ���qBb�A���^�f���nu9mW���K5���78h���o��R��Q#�Q��1Y��� �+��%��vL,D�(���5 $J���m9�� U{���-K��`c�G^�c?1������R1��C/��,����~U8��-&�T/�I��SRi�V�7!�H�UT\��Q3k�o˒D,>H���^�ۋU�R"):*؞_���lL���Z8:�� +fy��T�I@�(��5`s�~/��/��Y`m8W��'��L�,eݢ}�/�~��e4�9 +�}*Ւ����� +�=.��Է�R}p�vM7Fv$�Uö;����S+���6lw��:�h���� T�v�p}��I�zCE?�[�:�6���a�~�aG]^œ�fP��[A}zА�!�d��_9�w�Щd�C�O�qC ip�ڮ���z�|���>�2��{��<Y�oˏC�"�s?~�OO�j�K�-�?#hݸ_���������hu�瓴�B��D�~��ڗ��,h�� AO��u��ȓ՞<��d�g�4^���ʼD��a����T�<,xL���4��! �uf7A����e���8�e4GX�{ +qYp���;��S������_����s�oK(��܋F�|V!N��*��Cl��N�=J$3[��c&�̏X�1>j`������c{�B�U<��&«C��:O�`2)(*�H��!=2)A����)+?: ��Fׅ.w�1'���h| ?�8�8�=Q�ڑW.��65�tM6=�"�+s�g}�L(�`������{��N��b��r Ov�2� ��W�����.^����*����gk� +m�E�_�0+���Y�FEe�R�[�Ϩ�hS���OUN%�ԕN&��B�!H�vd���<D�q&�yIN����D۹�N��.��6x�fNJ�$mIv � ����\�a ���d��Wn�ѷ�T7�nVs���|�N�������5��`��X��ЖP�6՞B:1��#]Eۼ��E�-��Ae��Ut�iui����P�Fٔ�O)�����Q�Ե0�<�n?q��{g'�s��5���']��������S���~ +�O?��5�=��sS���P6.��p��>�� �] H���S����0瀧#�t�Ӛ,2��m���y���p�v_���*�a�ie`��#�� +�e��1�C�-2q���� gh��ߦ�Ŧ��b���MB�5�^<}�<�Kj�J7x�lz�'I�+O�M*�7`�����<��X͋��քE���fMX�T� +��3���m 2��*�)�5�RU�V���K���j��Z�rͷ��$��Tl�Q���c��7-�'�T�"�<�(���2���i�=+��4.�@-k�,b����5V��)+��yܒ&y]n4sJ#���\���LD����X�dNXeӣ]��$��lQ��En����mD���wZ�o��3x��`�u�T�µ%h�[��d��m'H;�p\��8����ZՒ�1v�P��F +�j��L?4���{V��V�tsd�������0[I����}vwva���ڱ<'$Ƹ.�iF�q&��ρU2K���]Vr�d�z�@q:lG�=b���;i����PPG���.��5.;�ڷ��������*vmTv�&��y��Gf$�V_�������]� $۰��L��<<��`Y#��F�XVJ�/_�e���v))x!Ì�F��^({0��^N:"(8r�C$��te����nˢ�l�����7����smz5��ujBX��_��pw��lP�P�`��?�аR�ģ4�-�,0 jc��m z�9M�%�t�.9���.��"0ڞ5�;6�G5�"�5�NN�!X� ���z_��vl�>�r�݄��j'�fTO�Z��ɔu�`/6O5-_.5��~�x�.��r�F1Vu��D`[RFO|y7ܧ�����l ���6Ad�ԓubec<J��(��.�z��hU��� ��X�lݓmaE�3sA+;j� _T�2]�ٞ�Ө����xk��U�Dy�� ��<�Ь-�����}FC��{&l�i��æ|��ん)8Pfu$1Y���+{&!$â��'�6�'�8�/�9�Ep�2�2 ?�+J����̇�!D��)�F{�b�a��b��^�as)_t&6��op>�o<��J����Uf��X��Nnh}�)w����J[�!z#?���<,�����^��EWQ~��_w�e�����6����模���KhW؞�[�'����iŇL��Kخ��3kp�9h>��v������H��AaCy�5�{��k�����(������!C���lxf��^̣4�!S3���k����J�/�:�Ϭ/��u����\E����q ,�<6gy_�:'�����7R���]��s�JG�I�Y��[��:l��pQ<_��˸��.�/���-�d�,}x�\C���- 0[/xq��q�B��*H׆Y�#�}~��ly|5'��: �x��\X�����ey�!l�^��l(آ{�ޑ� �-le���%5\��K\8!L���&9�g]�m[TN�ێf�S,�-11)?��z�u y��<�i�����n�{�[t�yW7�D��DmHX՟(�Yg�!m�w;�ϸ$tJ��v;�Rͳ�u�(��@��3��ʉ�¯ �H��P�˯����vO�b�t���{+#Y+0B�؏oaw�M$a| ��"��v)�w��}�d���� +�"Z�B ~Q�.� ���KU� !��3Poa؉=e��{44y�g;��%�>7G���-�?��:����w9��J��Ia�~�T�ƅ��| ���91hr�b�SC�2����,8[籶#�<i�|Z{K�LJ+cIJ�. nX�q��!��Eıg6G� +l�& ��$ھr��/�;$`U�&�k���h����JxY�<<[E�iy�D�lg��(j!�%�?��w��ƼTi�6��+�ɱ��k%*;їB�0���@ټ�3�Ƃ���G��2Q��e15T���i��E$o�)ƒ��x\��ݞ�����u������L��#��J/�3�ذw���!:��.vCr�Vy̚dR��~�Ť�P�wGn9�F��k+Jw�A�|��n��.���x���N�v������ͣ�8�<콻����%��W����q��;Ch*0?����_=W�4��O�ʣ��;�� ��>LX-a�1ձ�*�.��¨�`��S�{�g=������ƃ���\�s����\����e�(��H|�qRǩ��U��㘆��o�'���bp[Ճ*i���m��/�#D�n�$_ƹvO|Gv�d�ƾ�^aJ���v�-���*��^�. B��0ņ"}E�Nw�X� �|���A� ����6��Q���Z�GHա�ƌe�B�IZ_��۶���;� �_�$�����o�Iゴ����%�F)?% ��f����-a!>cB��3��v�N©�֑�^�gʦ���F�(0~��!�3B�SFzr�q85�������P����z{�qv��O�aC�T�B�M��0���������}�l��[B���:��/QG�����R;P]���V%�z���oP%���Q����4>Уu PT"�p�v[.G���[\=h�#�YGR��[��M[�l�JrP�ǃb6�kq_�{�VNa-���� p��9v��T�LD��|s��)�u�?T�2>���J���#��?�+?.��������q�{_7��ﹿ����>Zl;���7��(��bH�v��X;�ʘ>=c����L?c�tk#%/0��CPQxe.R���uL�(xw+���.��]fũ܈�Ι∕�⟷����U���+H���w�����#�ԗ�F,;A��M���5c��i�ޕ��2��~h(o�RGH�`�w[��K1.��v"Yڷ��ۭ})�i��J�ʎ��?�sl�lv����^�|���}7H&.�t�`A]����hz��͵%s�7����2̕ ���S����^4�AN�3l@��G\�/B�US���� �L�{���7 ����R��t�g)��|J�u$0�;�pd�(��p�N����H~�� m�X1,��:��hMK��,��� ��z�*o���3�D&��= rvF��Ve +F�X�Ҙ��w������~�w�~�����rg��(/};�mv�u�yu@R��(�^2htc�.�����<���*I,׆��.)������UJ��4�|Z�h�$��}�_2%>bq�3D� ���\s�}�0� +�($��&�M� +��Ê?���~��{ܟy��E��Mݤ>G*%a�y㆔m�w����fj[���js�Զ�m +��4u�EZ�Q]YQ��)�w$��&I�?�iugXT���'�d���|�t�4}1d�s� eg<�a�H(;"��.)ؔޞu`��i�:�E�¹�=�|)憐w.Ȯ�m�h�3��'�ݽXLI����n���Q��x�&�t�e���g0�T���i�>^(ۖ���,d12O�.QL�Įn�̧D�+KH=@a�T��#�ex�<�z���3Oc1� +�s�$����,�sP��%L1 ��S����s�-�Օ����p�P.t$�\"�{(���chN��r�V^v$\�������f+�%�c�����a \���P:6"!�z�.J�@�yH�V1y���,4qG��3�)�h�=���Y�,���w�=���V^�%40$tV0i�+�p*CʖE}� ���B�e��y+s|r[�U����JY��sa�5�j��Z�7�����}�"��z�����K�f��&&�!H�BcXNᥲ1�s(��o�����ɍ��tdm�<Klݙ���0��m�~@GG���B�Z-��2�]S|~w�/G��8]#>���4x�_b�b�K��mv�Y S(�C��iTN�7����d������O�Pn�u�����X@PD��4��gT���8�b:8 ���L��(�I>�N�E�����������oN�{��0�0ם/��>俟?�﮳�8�opN�y���j�l� `M�#7XPs����~����6���k�����%F��3#������ j�=<��+l��=�O�>�] ��"��#����f>�;[���^|�3}��2'a��Z�E���pŚ�1j$�����{�����洚��G?��&id����4��J[��"�`�@�%la��icY�X~��f8��fE��q����z�)����,�*&ɭb�%h忡[�p�u�^��x�<%�m]7f�j��(�0_e�%Wq���m�G�z��T�(��?�f�G߱+�c_�Z������ɢ��w�P���G�51���>�av� )�dW�D6m:7���E�cO�������)�ӝ.�K�D���D�~�<YՆ $n��Z}�:"��j�p�;�nc>v|8JR��uR]A�+a]�a���k�3-I�����d7���̋�//�| ����9����<*��k��ON��4��Y��a�T�h��G�����������"��~���h�&~��t�|���O��u��{�]j{��g2���~�!���[1�����������p��t��7$�is�� L㉯[�@U�]�*5��洏ȸ����;����p��b��5 �aơ�4��7. \@a��b�:\����)����5Î�f{<��_�~2�� �m�����S��~^�+ec݆�Y0��J;��`z���JXw�O�b\����^f�RNuv���Ԡ��N6hO)gik?�n�"�FѬ`i� 1���p +�e�B=w%<�S��/e����<�G��)�����K ¸av;"N7���mI����N���[���Y�TB�FHЕ�v��y��G�M�߽���ڼ�R� , +.�0w1(��i���_ӕ�y�n������po�����^�>�;��rçaa�nɺ`-+o��YL�8�{:T;-P 0�۲fς��"�A��5I��2���4�����TV�4����J��pG�>��.T��m� �5u�Y�Dm:��z� ��&�C1�~�.�����R=�vv@��� +��IA�'��|x�����0 �x��[�FJE�,��ux��=����%�(?K ����9����f�s���$�Ǭ� �s�|�t��|�e/!��1�b˒��Ъ;�4lK����vX�[�Eq��3���uv�@�Y]Öl8"��A~f���5`^����"!&?�8qGE�c_.H���z@'�3â3�yFG�嶕���є��r˛�<[��g������W����=�fi�Ǫ.�/� ^)/�:���`E�ۘط�A�]?�%J�ЯOȤLۇN�i(8��}��+H9��e���냐�t%h�h�)H�I��!��P�6���1�z�]����}�5��_& �c#�/@���,F05r:���ǩye�Į�\9��7�|ÆQT#e��z��;:����z��k�&���Yap)���d�� +�y0ң������0蝙�xQ�JjC{���\�:6������5��}�5Ӈ"�h��c��MX_Ņ�wܘ��a0s~�z�E���*h�1��<7�os�����z xh�P���D iX1]ϓld��U8%�F�NtdZ��f��D�J�H[�me1vCh�@�|�u�@"�1��B�A��nw����C���v%�Z�6�3�K��� ��:��}�MZj�!����ps�**W���-OלA�n�!��(��]\��a�D٤$eyu6� �(+\B�æ$aE'�� +��9� 8�"�y[Cs�9N������~�(7�nf�*3��q(��Y����̔�= �xN���"U#��1�Z��#�Vأ��w��pr��7l~�u�՟���0�5��-�~��YEي�`�E����#��3�HOBG��P����( )v�L��:�CW�ň;2K(�����1,��)�a������%�M��-�vY��ܟ�~ӹ��?ς3u���8�b�E���Kbl��-e��=�=�Q�H?���= :�)�G�y�Cs\�/�K�FgƩ�rUvI�ǁ����K:��(|�kX�~^_Av9O����j���E���fc� D���a?R� ��2�;�U��l�����Բ/ͪ6�v�#�S�I-Tq:M���TT�kk;Е� +�i�okH��+-ؤ͂SV����A-�yZ%�x?�lW�D�+T�[�����©~�WOB����;���s��IBٽ }�V��K��V6�"��*^)����ѷ����;�.:�x�ˮ՛�Ģ] �uE��9GĴL*/�B�P�e��봐pw�̅�mK�I����f��]a���4��0"��$��@�urC�ų :�?ڧGA��_��_�f��\���^||w��OςWqNX�.���Y�@~ZFa�T5ăM=lM�nȰ� �b~�}�h��L�<G��&Ҷ��g�ˊC ������I�`�0�R���4F%�q���C���+�iW�<� ,a�li]�lO�,�\q����0���|��8��/�e�ZQ��(�i2#?>��j3�����a��KU�IuI�9r��I�R���= ,h���۔M�{��|�)�p����H���{}�"^X�lS�qG�b���!�g@�qʶ; �Y~J�^�;����^���K>[��a���x��M�<=ar�3U!����c�*�U^+��F��7�{�vsh�A��임�{�Ξ�σ�|�_w;��T6]��Ͷ�?����Te��(�ZV˪�3�@> +���@F?��ݘf.Jƙ�n]X��;��ſg]G�\= �*�P��M�����L�����7�J�� y@937��#l�_�(��]�pf2��ful�,ɊR�A 6/ۡ�ln$�i��P)�'&غ�EVR�O}Q����VS��ֵ+a��T�Y�l������_��m=Q+����K��#_���fl��)?�5d&qd�4�H��w�n"�ܓ(| +ӣ����Cٞ�A.��(����,(W��E�T��*�����|�Gs�.#�ޛ�F{�r'�v"Ȓ|��8 +^@}�鏯~@��# ���ʊ�믈슭M0V���Ө����]\���r$!�.�de˳�,�V��#����<Q �F2�WN����==KI��&���|�#�J��^�v��!��^F�;��;O�^h�_Hya�pM8���:��Xf�q$��Cԯ��^��9}t��ȭ��Zپy�*5Oa���zD>��!�+l����9�ԏ���H�k!eڸ�V�?|�l{� ���0Qoܤ9�k`��藺�.f�ܑePE٬�a�����)7��Oe~��S� +�~�D�~[�R�[ +xG=�:�%���.X> w�6��$�Y��/!��-JpT�i��W��M=ƚ��n_!]���t���^v���X�ua��1$���2�}0V�%D�5�s��cSNZ�����6�w����:լ7���p�T�v{�zj��i���5� $E�ȃ�$�f�K���8�>,��Ȗ7�e�b�GC��y���v|A��B�塙�/Ar�y,�$p�E�-TRB��w�!��{o�1L���?`�5����ˬ�W�r�&�j.� pX�0��L�d�~*�ls՜r������GN}����M�1#�x S�X�`����a�@���Q9�d��ّ�T�Q���� �8G@5ڒTe��/} ���_.��˟Pp�Aנ�O�xSj���^5�uTBu��/��}��;b.���oC����(���\!����v <h.����wX:j ���l��K8��;/toZ��|�x�Q����g�!��\y�Д<�r�O�*����p���5ġ�A�_8�'Щ���f:+''�]�1͊�_�)����߃�a�"1�Lt�OqZ�P+[6[�>�9�j���UR +���_i���?�_�_�8(��$�����HSפ�x�ː�B�4J�)�;~43�'������8�6���o��;"A�ބ�2̃�~m��W6(�R�ko#ڗ@P "���Y�<&�)e������~j�\�^D���;>e�����M�����7��+�A |>�8 � ���ҡ��!5�ucJ۪�)��A:�C�m��P���(�9�a�y�5��ԏ+��V�v\G��d{���4[Bi�R�>��r�Z=���Z^�MY�(f���1��<���=�.� ֖g3�E�W%C���q���/3J��Y�&��g���������e�kf4vH8�p\愾�H�M<����(�"�2x�Ə#Z �Q4��b���p�T��*<8��̴c^2�c`�ѿ�K8�����]�7G��w^ђ@b +N��h%��El���7�yq�H47�ֱ��]�6'��4%ܭ]��V��,�4�=N���2�ʢMߗ`*ȂB,����j�O���v s7��=�4M�ڢ��ՠG�Ⱦ�v1�7��y�(���� �KX�N��V1$Y-�c����p���U�n���]�ή�V������+����"�A��B���gZO��"�jα��;�/�H�3"k=��?�'ʖ; ����!Cmg��ڠ�������ns���%�})�ڟ�Ѝ�Y3���0�rl T�)�,�Mv�ch�d�1�j���9TX#����5�pǮ*d\�=��4�b��v|Yޜn0�ۈ�X�-)��Ak���Lx��d^�,��s��DHÆ��r ����k�-�6�4u6��7��5�&l�aV5xa�����а�� ���F�װ,v��$ SD�Q��!���1&�-�CSn����-'�1��� +�t�J� +J��!��x�`���%�ap����?a9�VPHIq��^`���T��K6�4�'�]mY"�����j*�C`ι�*7%���FߘC�ZWQ搠������̡5J3Zf<`�,�OY-�o�tz^%Y8�x5�-��-���2�fN�?Gπ��,)g3s�N���Bt���[eE�cqaX�CEC���*Y�cO�p���[�c���,B�vQNR[Q�|;��ë ����o��߽_뷲?��B)ʆs����>�e_�ya��1�$�{�������,�v *�w?(��4�0w`�?*[7�P�ĚG]����, �qw�Z�]��R%!G�����6�ڇ��N�ȸe�R2��f��y����4[�=�D�%u�p@lk�0�m��!� �-��@!,a%� }�,#��)�����. �9�R�����i�p*���'���!�-��G{��w\úaJ�֣CeO�Ϭ�(��^!��9�pz�X�01�1GNP��!Fj98P�MX�\�W;mX:� (ƥ��'�+�k߬�͕c v/+:D��s��d��OՑ�7+f +��o?Ǚx{�CWr�,_/�,�" �J �'�������U� ����HNu��sD(������t�گߨ��4�/����xmqA?s#� ωX����h���zՎ��I�z�C��E��MCK�[�������/�),&��:]�a�)Hk��%A:�n 9�9�B�Ȭ�i��6Q�Ҷ��g_Ҝ�CqLk�zFZ�ob�g�%������M�ER�D�93a�i���WYl� +���c�Uݞ����K��h��F.&>��Xoخ0�Խ�B�m��4=G��ͅ�������w������m�d�3gX�U7$v��H�M��(v6؏Տ� ����w���Ճ�N�ů���]7a'=���_��_��Sۃ�\����#����b�(ߝ��?8!<Zm��=�EK�x�n�i����2cj{��+�Djn� ��R�V>' $)�8��4�#���ٻ��JPF� �=�ڱGB��������Ŗ�ί�=Ȕ��r�����,�U<f�ߢ�$|�N7��$�����������I�@��n+�-�1r�f��}��go�z���[�O�=h7�x�|� �'%^��i���OPQ�c�],�[����:OZϫt�{>מ^�T��!I�Â��x�lXXi�g��5�ϔ-���}��ӂJØ������3$d����0?��������O��*�f�����` �W?�����<d��_���:�������?� 4:�;$lƁn�iTOtb��>��@�m�ӈxЄ8��Ղ�&��2eA�h�͡�gF��H��O���?���H"�L�G����]��J@Y�ڟ]/%J�E�n;1���8�r���o�Qy��W$�:IBД�;�I 2B���I�"� . ��������� �= +�F�hU�4O�U`{]n8f��W>E��i{5lj��[�ш�Ն4�j`VT6�$k5�Q��7�=�y��dZ���/^�ᾕV�R���dϛ�E�ޒe�ܟ�hm����;�LLÔ�����ܣ���ޙ\V�e%h�'DP����_<ķ^���7;�0���=��sDf_0�M��X�NVw�T^�2v��,P�T�(�M*�#�3\?��m�Q��(�� 'R�Ǘ15#�)��CQ a4Pp[�_+�E��,cll��M�M6� ����&D�z}�6��Q�|��J,_��8��]���ՕY�t�Ӆ%���&E�:���)*X��b���ͪŕk���� sc�� ����Os(˯���z0Î��,�{8�J��,�C�67Y�B��P��j=I�)��[�A�tئ�%@w0W�[�� H�auʌ�"�_�Ⱦj[���6N����W���[�)^�:�퉕��K��4j��'��Jyl�M :������~ +Yg��Cb��w� B�d��9�N�/��c~/0{�X�'�L����̩G�. [��$`��c�Q��x�M���s�Au���)E!a�7�5���A����Y����w��y�6�u�Eͮ���/�C.U!�fo1�������z�y�h�D,D�gi���>�O�'���*��ٔL`N6f��9�� +�B�c�I��K���M;��vzZ%�& +����,yZ����m!݆Y�����N�IJh��Z�e'0�����+�DKބ����h+���u�=]ܽ�d�Gf�,����.� �"������.g��}<|�'?唼��q� ��E��\C�Ь���j�x���~ �|NV[t#4���N���=�GRkϕ�Z��3t��k}Ɓ����^��ʅ�������)������Y�^��`� �5p6S�T��JΝ��:�g���aaQ{0�tu�3\[ƑR"N��"�ǜ�0��f������T+LC����3����������*@<t컲�f ��Ye�]1{��,�kb����E'�E];=��#��&�O�~G_�b�ժ⨷#��W�#W�_�ߎ۔�M�0���٣1�zUH��S7��:�^a�i��RwW�D����j�b�0�9m�0��ؑeU�fq&`�%Z��)j.��s5����� (�ڍ����/��ơ��ʣ�|��ʥ2\܂�r���J7z��� �)��i݇�}.��l�n��ï��t˿��� �!�.�i`f/t���뗟�y@��<f�.���%Ҕ���,N+]��fAޤ`����*6��Rؾ8J%4y��'Id��Ax��O�$���r���~�,�=�ޟ���,�Oؚ�9JQ��6�\Y~���������F\���e�oL�_a�k+�y� }Z��+����W��E������v�"G�Z�P�5�M4�R�v c�e;�,#�g���^_+����X�~Hk���I��!��{�O�-n�-��k���n�k(��L�Qg�e��R�Q��M���#��M��J�Y��~�0�|���U8���V���ޏ�>�X�R�^7Y[�~�|�j��λ����;�6nj�/�?��T��X�������;UL����HV�N{8$�B�'���鞣����:n�!�JU�] +:#�$ �PR�1��a��L��n*[� p���K�)��ς�e�jτ�]��R�%���ˠqVr���G"����A�̓w[�u��%�?b����8����v=b#-��Dj ��Ro��Ŕ�p���+(�B�=i�����������j><��Q��9*��g�����-��s9R�,�Z��[�z�ƅ�XR��e����-4�rR� e��f ���ͫY�C;4�f����Z�G�Sx��5�`�(��Y���Ȥ%x������Z��ƨ�P��nc��l&�$�O��kht�����O��#�ۑ�,R��x[���uBS{A,,{7��۱A����e4���� i�B���ѫ4�����$��h��ٻ�s�c�?\��0g��5���z�l��Ԏ�?��P�T�C�v/�C O���Ҍ;Y��hVׇv�M�k��!v��]�����f��>��2�@��gc��5���{�Q�Ψ��.[y +�zX�+G5y&`�sS1�7����AR�A��W��ƕVq4�Y|�������P6X��_����p�_�}����:˯\��R�"p��J�x�7.�o.dX8�-�4A��K0��ه�P��I�o���S_���nc&��]oz����Y��� +$�Y����S�L&W�ͳ�A�_c�w���e?h[-!�K�qC7H��]��c4��@����G���=�ڭ�O��,���Q���������(n��4�;���p�%����O�"��w��1��~n�(Ǥ�cB<�2_�\9�����U��}�U��17a �o����� ��+�1O�!ؠ c1 ��v8?���ĎZ��eA��²zoݒ�[�� +�iಉ�S�g�<�Ƥc��!�� C�fg�9�YP�� �œ;\f�n�e7�,� 3rQ�U�*&t 4Z���}�v)��D��h�3_�4a�GaB���yc��δܺ�tAx���g��#�D據�@�a�Γ;�&�7| K�����V��E�۟����u�}G�'h�̀G�5�1�J_sKt� ���� ��1���x���@�2AN�xBД��7�u +�V�t|� 6�Xo��HC��V]��x�_bxxi�M��~����_ς3���Q��vO>"��L�^0j�$�I:����z���=BZ���2�����ʯ�uJ� ���8O�F��n��\���: ���>�ð۰�U�!�<��D��m�:��w��p˵��˷~��G�oM�fV�u*���@Hy�4ս�v�7�����'ã;C�e���ʓ��>��������,��D��1(��i��|Qo�w{�%����!��1$k + +=Y��{��u�M�}�|`�1*��U.�Y?y<��v,�Э�lMXX/�l]�1��R��¶�����: +�.j2<����Cp�1�KGj�V�I���Y- d�#̰�Ž�=�%�d�: +�o�_��ߤS�K��)2a#�ƴ���6V3�ֹu�D9���5�I 3��v;MVl��P.����רK=��^D�dy2*kg@��@�6��_w/,�?���� �z3ۂ?"+�Mh�q������(=�5$�^6�U�ʓS Yu����m(a����j-��JR}��|������V�s�mO�4Q| �ʚ�-G�P��8L�|�+L��V���f�"D{:�P��#3=�謀x4[�鮻���S��L,\�t��so�ACn�E嚭a��Ь@�\��Cr���y�*Es���g�,���h~��`bL��7�㡐9��oD��rheFm`p +���٭fN���T,���*Q���F�&�0>�̏�]�6KJ�>=�Q�xG�y�p���G�A�a�_�y��p���k��~[����d1������ �A�L�o�{!Q��HZ���b�}P�� 1�����a�0�͂�,���������6a���2$͢���WTc��f����>��q۫;�>=ɍ7�>6"�;�š���&�j/Q69j�|NBxL����u:���Q�m��V�x���.TQN~��UsϦ��At`(������j륲5a��^�E�|����oV@���^���q���|��7O���e�r�^����0$`��&8*,���h������)l�?nZ$�1�w��h�'�� ���s�ne�����B���<JZ�1C���^�X�"�������.*����k�l����u:�A?�%�"�O����;��%���y�t�F2mG +���e_��F�`�IUv����)�oHh)7�����#��v[&���vk�T�14���?�c{��K�� :� �q�̒>��q�yn8��������ӺIJm +��г���_�s��Z� �Z��#��v��_�i0��=W����^mMy����e���ʇ��uP�v�<6�ܸ����f�V��A�@���W��,t���Y�o��v�V�Ѳߢ�Y T���o��.���%��3�-}[��_"w��P�9�k?�^#���,���0y�l��l�2��R�^3+�!��̣\ۢD֖�!�u�♲������X~l�%���V�,��~z�@�+����DP9Q��; +l7N�� =j(s_pn��^�0:LAOd��Y E��@��R��0�����?^�����o�'��`���s�6�aa85�J�zQ��i��-�$��˄�S�K�9�=+�C &d��@M�C�'��J�/ +���|#�=�@e��T�rJ��v +Zei%�p��i���RP�ٖ�x�)���k!M��K0���g6ށ�!*jY��<6;�k���(���9s����gɸpMy��x�l���sO��56a��$��?�"p�����u:�$�,����C>�+�|)�ʃ���/���%�* +9�+���[�p�١�\8��¬^�Bڗ�:�G]��|}��CZW���,�`o;!o�B��F2�I-� �^My���cFHJ��o'��� ���i����Rj�n��;5�0� ~$p��p��)0�Z�^p�|�ci��+/D g���n��ֈ�h�4���17��5���i����@|���B��}�)"�H�����0�t������h����pMr'�[@e�u\!�^�I@R���~;���ٕ 3E���]([3�.v��fx a�'���?����?H�@GX����^~�`���7W��vE���b�)٤�;�Ǭg�_�MpR��e�� +��e��FD���S֔zC ��k��"��n\�h�IN ����0�FV��@�ZT��J3�.a¬W���t�ct�P?�[�qu���%卟�p�>��]@�݆�z�Xw(_V��Sa�g�xt�٧�w�#�< #�����M�qM��A���,j��r�Ubi�q�������bWEc�ԦKقK�ޮ�J�VK#��'ۙ�Zn���b�xH��>�s��/��1����G#��)%_='y���@+/����mr~$q�W+�'yGM�<xZ(�1_%6���D;�:��vA[���Z�<�V6ذBQ�d ~��`˳�iY���,��|f��8Ậ��{��hK�N$My��A.�.��M�"K��|����9n����:.�#ہ��Z[g +��խ)O4��Ǫ^0��Aa���9��`,�Ӽ#���U�0��K��M xa"j���6?����e��3?�ü7�c�T1O ���jG=�f���N q���7���!b嚽��z���$S6(,Tj�Y?lw#�d�8�<�V-���N�i=NT�;l� +1I_W8b�%�fȆQ+4@3�D;0�h"Xޱ�H�e���C��O/qSgܠ-d��I�hkWyZH���Mֺg����_�d����_�߇O���Ĺ� Nj~��T�ϡ+.���c ��9a��)��?U�Q�)8�d��<�궄��Ï( Gk�����a����y�D2e�"�x�1K`�.PO�h�&�0B��{~�(����T��ɑ���]f1�f�m��2c�:�� �f +���fZ2�o�t}��ޣ2Ť�*��Y�����)�9�F�������z������bHH5�J��4���.�?�n�?�:��`��S�G�������=po�>�nθ[�+¯������;�ێ��UXƻ��̵ļP��C��r +(ߴ����Q���mȗ��S��Q [�r��Y1f�?ˮZϿ��"�r�j��U���K\��k���<�i�q�c,Ӷ��{���������G���9f�\��`���+��-Q��"&��}i�V�c��1��+0j���Yv�3���$<�d���UV`wp��e�� +��@l���j��P~<A�ԟ�f4�7�3>\E7La������;��=@��K�$��]7)ϯ��������L���AfS�W̦m��ͱ&-<n�IJ6z�5_�ş�3��5��l�NW���V�¹Ѳ.���SP�cjsmO�b?�y���0��@��R�]�6cI���q�k�UM<��.������{������Y��]W$ �0o��^���=�D��Nh;�nxGi]|�9?����������5P��n�[�t���\�7`�zm�z�?C_s����{Z5� ���(>��uR��~ST�z�A,��mj�%i�ҡ�Ia���i�y|:3j<DU���ɱL/g�uzG9���a�i�8J�Mn�����`���i��uaW��MGD���H�1.��G����[?��X�r�0�l�waa���),�?r��6�W�5G��ȑ1@���u�"��{i0M]����쑰����%�����uϾ���~� �� �'�T�tb;̐�r ��&�!b"�o�a�pq�4k%�It�ld���篴��� �Uh�eXN��J�x�[���ˍ;��mC;w9n,�N�]=�u�o9 u:�nK�&�Fx���M���^���c�Rބ�F��Qv$��Y��G����u�L��N�(��F��`�����#��?U��z(�ټF2��Q�Z��e���G��;�=w����$!��/�!@#�d ���v{��Ƕ^Ǣ/�,��X[���RCq�+��S�2��^��<�ڎ=CV:�f m����x�w<����h,�#_C�eC�Z���w�*L�i�Z6'y��g�(m=?|D_�bG��wO�ϕ��4���V*�� +�<t�E����K@��R��5�t@$����H�E��*�gV�C"D�V����px,�Ҿ+�<K��+�C�l@�����=0�G��A��� �~n�y!3<��]�i�U�d��v��t]��(A6Ԗ Њ<+dũ�/����y�^P�F��A�Y �;�<H�o=����ᆶ2�-���Lc�Bs����R��7�2&s�ä���K�S�Q�� ��I�WHv?�c �&�{��� +aj<O�A��Q6k%���OQ���g�<�x�1��b���I�����2]dY� �E9\����5�h}����~�Em��[���<�%��Vl�yN�A�NG�͑���g[ϡ�Dm��e3�M,��%�p�2�ܸJ��H]�fb- M�D����O�*�B9��O3�� �BF����~�z���!�͋Y�(N���>&@��v����oZ;���%V-sN\�;�@ZP#p6m=�K��G����W���\ M�IR�./-OW�J����mj'rt�U����9&4rʥw�f�FN*�*�4↑�~Zz{�LC��&�@�����L��Bߑ��l��#d%�U +��4c瀣lK��/��'��}$� �0O&JY]�8ڢ\%F'�b��-a�����<�ËD�X�¾����q�I�D�hʄ�����`�g+�ƕG�I՝�7�0A02��_�p gQ�u�,�85�-�P��s��t��MLzA_X�0�*"%0�/�Ӄ&��O3�� ���:fA���� {�q�1�C�7Y��ce�=apG���w�_�!,����%|.�\X��e���U�����*���v�>B�����is�E��0�/1z)9:Wva�\��F�D{,aq7OW�S�L�0�h�D��Il�7���_V�u`B��[ZG4�Z� �n�MH|T0TJ��$���! ���3ژ��M�DW�""*��Ȥ�Ư�"���HL��H�4s8ym��6��y��#d�G؉��� *��B��.9�G�#{�.Z�1���,%�;�=���s��&�T���4�v��i'�VI��5s����t��9M`�3��q�Vs\�ͱ���j�U����Y:c:�3�6�B��jޠӓ����y�����|^��KT,�%]�u�߹����=E�;�%�����p�u���� ��� ���P���&�)��rX�������Y<��f�&�.�X��v>S���%���wf(���"e�m�d�����!P7Ksٝ��f�#�<��;�N�'DeGl��n6?+W�{��a�{\��l8ʳ��������2�e��nɇyPKs����iﴉ�ҜP���6/�en�:"���Mj�����ӫ/�z�Zg+��'��}�y�m{8��3>^#�^�^N��D��wL�Eac�'�U�?�}��`��f����Sn�����T�^;���#�D����K��jh�#̎sr����א��Q�/�*����ѫ�mY�6x>&moRU�Q��ƽ��j���-��X�xa�2魷���s�wv�-x����vqC��jv �·`U����2�@���r��RU�&���K�fO�_���h峽]2c�,.�O�n�0�� �7D��Y������G��e�@x!�~L�� y�}W=��1՟.X�Z�}ՠ$^���:��HÕDr⟕�Y�vSyˬ���Ҽ���6�,lV�%�@��kO���Y�H��n�rS���aQS�#�,xD3��Q��pJ]���y�Sĥ�G�P���O��[���s��d��W�u�l���Z)�AܱVn�[Y�Z���ϣj�O��6�duyTw��Z�DE��-Nς������9̋?A`O�&MW�vb���R��y�^�m27�I����W�n�n^{��Ù�P��AZ���zbވ�J[��wN�*�B !���ƜC����-�m~���������Y����n��1AU�o���>Q�����&^��q��E�*։Mn���xqa�d�d���bmi��8/H�� +J� �"|�G���v��t�%��C��S��L(� �^g�`w��� �an%��p{���,A�����9*�@.(ƃ5��� ��� q�I8�\�q]>��pT\d��j�`��,kM8~�O�Iu���1t�.���J�%?��xQ���G�߈��-<>���/���t'~Z{��:6QMD�N�h���ɐ�P_N��,S���cn`�t�hI^��G�Z)� �a�,�L;�urW�� ��T���~�T�,�p�3F�U����K��� �} �6�y 'z�<��2u6�T��d���/�$ +[�S�'�Z��IT�E +>n��=��,���t2j���t�CI�~N�ʏg,('�8�M0��� ��l~��[3EY��I���'��� +��)��7��r�Nn� +�����gLZ��1۰ݘ�N�'��oY�-op�� +#��[DY�5���u� f�p?q��X�8l,�咦!�=f�����2V����`�Oo��v�~��J��ɦe�5oػc�+�I���|�"�5��~)n(Җ��q���z�8O>`�6&��ȳ�'xr�A���Ar�z��?Q�6�b�W��*s�9 +w/����=�5z1n�_<nv�9���p�v������sO�]E�%���!8\�Ъ�ė3�;[<�F�Y��g����Co Q|���pog�R*5.�0����l�~7 C��ʁ5���H�%0���.� }M����eT�8h#[��vu��uh"�툪��p�1�� t�ÇV�{�ť�ҕ��yώ��ҞG��4��*�H0�Ri�\ B+ +A)� ��U +��\�OnlmUg0���KT-�V�Щ;���'��%������վ�̀���`��{�4�z��TG��o�q�P]��0��=����du��ϝ~3t�� M`^6��P��Dn��A�KJ}��c(�o[�(9��}�"Q�p��V#U��>����7�=���r�Ȑ3,�����\�?��?���O�`a�a��*Z��9��I����cN{* Wv8�����P"��� +�zN^n�����Hpo�yC=˸t���ZnlK��n u�{��W:�����j�a5���^BrݮQ����2 +ӂR��ݘ���!L3�$��<9 ?�$��X\V�:d��� ��Sȇ�nP�QI:��t��;���}�0������0����T�9 +���M��|��4I���H���?���J�B�SܗqU=�贩����+;!�K��)a�A��N?��/�/,Z�hBZsH3��+<��"�1q��ʓGw�0�w�#����*��3u���[�':Y�8��_�a� 와`��xMl�vX����i��8u��k!h����[iKG�@x#D�T�&��[�!���h��.�:�Z��,��"�f?��ӕ�6#5�c�F��ty��9��Ʉ��ט���� 3��Q�n �A>P ��EVW<�DI�Z�e���3�ݬ\�4`�`CS@8��ќ4��t���m��a(<ӏN� �B�ϣ�#b�X>�#�UZ���g�6���c'�֧ [\�?��Tܤ�E���Z�i�℧I�r0 +���6���S��#�f)��v�9]gn}��rv�3u��J6Q�7��;�=0�+jM����D���"�^a�;��[�!��}�xd/�7$2��҄']�Va����ކW����� ���mg�t��>+1⼱� + +� +�ŹZ)C{n���(]s'%v�#�Fp��"[��f-��Q�Q��q_3M���@���|E���u�h5-`m��E�����Ic�}�_���]u>b8]۶���4_0��)��ƙ�vJ�˙��q�;�sL��#` + �S5��H����9�Ds�UF١�k�piF6��[�}�s�g�+�wA�n����*=P�p�b��+A�� �1��n�|芀����2���R~��;y�G��Mb�96w���Φ.g��ڕ���[-j���6�=ܽ)*譤��[�Aە~oSG��+nh��m��A�Bg<��/Zjƕ�%]�f��[���˓�{�� �AD�ǫ�%���tm���FԭW�C�蹀w��T���L��}^-��p<��G�4,�c�H�M.6m/z;�v!ݱ5SU �4�4�16%���<��r�m�x��/��o�T27ϲ�?����������{����6ӗ0#c����F;lo��ʦE���J!XN�t^.t-���P 8�Oc::F*"vÐ���e�G����_�@�/�"�����!�]}JyRI�-5��[�7Ф|��_�Q��Z�K��Hj�<�d�O9�Z��(�i*�m��RD�2��O���AN֖(�o�v2f��x(�w� h O}��s҂.��O!���B4#�o�وT+f�����⸌��A_E�/�)��==�?~����xN�KiR�N&�<]���_fSj<@���V�]�#d���KYu�Umf�V���F�"gÒ�I��n����-̻<ɲ�������ޮ�E|n,���ݳ g,��- �3(��G��P��7��u5�^�$��b���5�sV���QdssI6 �.��m�"��YJ�W|�o��s3�l =�{�9sZ�Ni)? +�:��E����� Ѧl��s�� +�v��t�%ܠr�ʵ�GVc�l~R��ڪ�^����︺����v���c-77�H�>k*�z{�ݻ��7��|!�������^M+e�)�J�k�o=�ˉ����l�R+#�TXZ���l�v��3�R[�g_$�> ~&��%��;c�*��YC�A-�!3Dl)v��.��i-�#���QR�>����w�پ�b�*��������h�ٹ�z�.Wk��Qe��嗶�!z���gD�k'�9�؛'q��A=7{���6��oJ�$�t���ٔ��ܘ��4�r/BƳ����A*Q�蠡+�E�d!`f�16�7�������:���?櫋��W.����G�Տ�G��W?����yo��JG!�N��)��i�Tc��&���օ�"�ȀgEp������ yF��O�l^< �b�Xp�_�2X�l��~�Krhk�`�4� �Y����_����v�lb�puL#|G}�xX�%R����E�@���Jo����j-e.��}���#A�͑�����ᚴ:�'!LDK ų� �eE��;��_T ��|1k����I��?��� ��(:;73f�g�#�ێ���l��E�e� �]�QZ��P}���yOjr�(S"�+bN���QW���hP���p2� o��3���g�Xo{�W�U`;�Z��x�Ƹf����s͆)�y�g�e/̖.�ɴn!��a�%1ޠ���\[����x�0�����F��<����{=;ni�Cטk_4X��<Q�ؕQ���|7.��u�f�焤�L�@^Q︭L��<ff\�3��]����8�g�Wg�c*eW�=&0��5�`<�dF��V��ۖM�=6P���Ꝛp��Ɵk��3�#E�-1xb�ab���+�H�_O����]<l8s�")��)�Xėe�G �1|)��}���*r9�}îWK����Or-5�R���#Оi������z��c��5H^T{ĖF| @��P��mP=�}�|j�v̮s`|L-e)�!0}�as�K<�o=im>O�����@U��rq���u�V���*�fPk�5`(��f�W��e��,�h�৽�B������A�k<����>r�nԌ� +f0v�c�.��@m�*�� ��������^x���o�EY��=}�'��U�����O᧧��[_�x�ML�-�[�9]��'2������TN���a1�����I�^���i���~T55���P��kk���sR��(�.���+]�n�հ �r9J"�z+ +W@������1�Q��Z�C#�2H����Ӂi][�ǡݬ=�}��GL��엙�܅U���0���?[��2L�� ���:1,[���%��Y��vݓ�L� ���VX@�;#�yf9'����%FE���� C������D� ��i}^�@�{4�D�T�<�Ob8�Ғ����m�Jt��U �~��D�����,*���yޖF�t��)���8^�~[�>��\Φ���R�A!�h�*�̎l�h�A~�v�~�JN`�k�!��yH�"��)O,�^��\VOU�n�Q��t5ۦn�X������F�=85}'fu�dnG�8��n}c��`�E%v� a~�AW��p���&��yǦ`�����B��喌�a���i���$�*_cH��a���yaB�lc��i�l4�%�Gt�/$�� ��#��!6b��,�|ep�R�`'ѿ� �>*�f�;tG�~[��gs;�H�'b?���TҔ���G���Q��&������I�T�P�J�4Ys����g�'��ц���r�zR]�,��@f���`L.�o�ۆk�c����q�J$µ���iW%~�x��]�`����|�7Ϸ��'� ��-�ѥ���V�+x�d��"���U����Gͺ`��2_�0����H��K}&��tn�|�b��t9�Z�/Q9�D7͘ 8.$��#��X��$"��jQ%0��2�MvE? �"��e��ӽ���a��M�<���c���NB���:�&r�c~'�w�[Y:~��`�T��lvJ ��>s��껧�m�>�Tr��II"u{�" ��N���r����#0�k�Ev۳�����4�f�i����:E)���0��a�Q����K)q\���9w��G�+H;̨2�d�i���+��tMY;�b���(ni>�����@�!�A����5�#�b�٨��8��H�A�/lNi�����ZoYm0�Z����ش{-��qt�0�i�����$ <��K��؉3�m�p�ܕ9 .�� +x���u������pfߐt�ӆk����k0Lʷ-Q&�K���>q$��x#�b�b������k,���4V�^��:�N���?K�x`�����#�ǣ|3���ۃY�봨RH��R�e � P��ͧ,K +�5N� ��;GK�v�R��V���Y�)��>���;#?�}��Jǭ�t �ow��[�1�����hU�~4�BJ)m�6�X��Ȏ��0�*�OEo]ohOrO˫m�U���饙u���Cq�����м�� �ݥqa���%n�|B��Tp9��ª�E�DI�54\��(&E���&��@=��@�6g-n������پM^KG�?�1� +���u3����q���3���;���{�1�v�# *g��YZU������9�|<������-�'� +�L�S�Q��/7���P���I�Ir"��ͯ��!�$|B{P� ���O�FR�����,Δ���&L|&����� ��G��(w��i�m�6����i��%xa +���G�;��� �U�ly[�B*'�K�i�]s|��ۺ���7�[��a�x�:������l��QLJk���z��7���@��~`�ݕ��cy��4�&��v<���m'��ol'�V�'�eQ������6���z[�p�� +lY��Ա��z�v���[V����l]���Wz����� 2�YV��۔|�cx� +q����%������.��kiShQ��ᣇ�|��3�;_��DˌH�(`4a +a��ƛ��O!�T�ӫK�jBN�M�2�˞���D�.X"xN�M��Hե�u��U�4�}����h ��g�VM �m�����NV�v+6�]���n�OL�>m 4y�%�]l"�9Q��0z:̣����<��O�˗|�~p������9�� �a��D�ϓ�Թ@�)�A,�o�%<ZX�ڹ�n>5ӥ��>k���i_�ɢ���mgE��)��F �#G�II�y veXNn�;y +�l��Bp�`|5�'\j�8�����"���#8��u����%��m���2��ĭ�����{�xl�5��.�S9�gqI��F�`S�{9���ScIv���z���e��%G%�3�3���b�p3������w��k0��KXGg�4�o������\/`�e�ʪ���k +#�S���v� jxҖ����Q�? +���'���#�[����PB�ن?�k�ˀ����ڜ���P +�7�e� +<�Ѧ�"��S����SD<�����obN�W$ϸNq�1As�ļ`� +�|���?���-�u�����m�׆KR�!ACn��[�)��#c�,�:%l���[�ES�cAw��&�b��Ѡ�%�8m��=��g1�Pru߭k��@Ţdc�*��g�R�,Wy��^��<�s�*JI�o*|�Q��b3_("�5!� Hj"��B�����S2[���%bR�T����q��%��y��Ê�T{�;�n�T�9��O��(�n�/`�������ZQA +kgD�}W +�]�\C�k�` ��+Ny\V�3J3d�(���o��r�^�[w����5�dF��ILx�Ng�_e7���"�h�m5�R�EM���m� ����?||�����M~~���/H\����������W�l�Њc&b���5�4��a���yA��X���)_zm�!u|?������V�r��1)���ɩ�@'�� ��K�&,��2^q2X�\U]#J���&��V��T'wظMxw�k| �6��Ѫ��u4!�����Ǐ���{l��X���ҝ8 �Q�����S�K���p�uD1�#���G�oa hå<�;yބ�0)��%X�Y� {��#��H]9VLW�<;��r�ZE��O��p�f�0�3�i���\���+� +{����=r'Tñ�I��kd����{�~!��G32��8j^����&����m�x���� �.U׀�y��ͱ}ix�����V��uU�����:~��+�|�q"�o���ƃ/�<��U�ݘyx�; �J.o&Ai +"@�,��$�.�#fV���J�o| G�;$���*+�$/(!S��=*�6�O��ݝ�ੳ+YXׁ��%��[�别�N��[a���-N�.�{s�x\T�����}�ok��AC�S<��,!*�P���I�5R�x5+�ٟ�YfiW̆��|W�#y�M,�b#kM%�0��)�"�\� 4k#Ҟ8B\�EIb���u����a�����Ԅð#���KN���ȼ(�%�-���µ%b�m�/���^���q� #^Y](I��t,uC���s��������ڃ!��T�u��9Qh���|�"Jg�]�@e2�qHK�f\z�0ħ�o�O����^,QϿ5�#J��鎊Ho�9��k�<:�����r�a�|x�ەR�ō�R�Pk���;Uv_Xտϲ�[��0|�$#�� Y�N��(c�g�:t;Z�CJ="R%���c�-_�ra��[�T�ɮ�D{��H�/�b(�{ImK��eH`����R1�@"�y�w��M (�֩Փ�<ϴ��� +�Rs#�����^��KH�����9w@&. ߾\/��`t�C$l)�~��OCj�M�c;0���t���[ U���,���w�a���qsi�Uƕ-�P��Ѕ z�{�A����e%Q�d�E�mS�w�~7&���l�4�m-��Rf�k+ˢ�yG�����2\g+3bT�<��]�0U [���,�I��7V��3І�⾡�vC��#2�a��ev%m�eJFZ��������s��U�������7q?e8�?�T]�^��TSýyH;I��sA�[ál�ߤK�ގ� Q�5���,��_�$`��Ks��jy)��$�<�����U��צN��xt^�ƭ����pە��і�2��<�:EH�^[�S�<nhN����S�Q�� ���!'�e�T"����uP�\[��-s|m]�M�jGb�LY���mvE��2����q<�l�ypPR�7s ����: 7�-�M��B}"��u�zf6�Eڎ���� [��@�(Kf_����� <���wȇ�ͳ~ױ�lNh��G�:>nu �K��rjA���ΧM�jzG;74��&ܦ��gP��C�?VL�w� +����1�8O��fcɄ4N����[��B�ZʾHu�ۡ.=k�V`S~j��]5 �c��WH ��H�=i7 +��Cܚ\��a��[�|O}DC�%�x�?<�ij�x��3���ςG�e��f�MI����G�r�qi�O ���LP��������5�ޡ�J͉�a�z���~��+����rqt �w�(�ʰ�֊����SXG�C%�(v`rF�R`����Aئ�$�̗�������Eid1VW��mn�$K�E����+�nl���=V�r��~�� bF�u�4�p��=��{EqǙm�xc�ʬ���3��Xz������鞀~e����!��ťQ�b�2�{ v�W������F +� �̮����n��F��\fm�=�/%6�I¬T���J���<�ӡ�*FfAjl�\� �_�9Ű��/���M�ś@�;�J��F����Nn��LeȍĴ�}�M�2���n({ lj8A-"?����O m����i�"�dR�JUi���'�P�}km$T���,��f_9e��&�?G�Me9W �;ZH#��k���t/�Un�]�� ��T�_ֿc�0 �Q�s���^�r��!$'�;��8 m���e��>ın��fq_ư~V|�K���-A���?İ���)j�k���bB5,�&-��Bl��X"�h��$��Ngز�5W[p�� �� -wy��Ws��o2.����s�41��f�gy��R�G@�8�E�zE�rj�n/�������tqSoIB?�g��p�u���c]�-�Y�,�#�+M���әeɯD&�cV����"�ʦ(=�����& ��;q�T�+�)�o�\���QE[���Q���S��T �nk�\ޘ��G��lgI��^8����L��M�Տ�%�6<�͒��()����3zR����yk��'��`�'鸁c][ <�(���l�d�+>���&:?�K$L�E|٨���fk��vϰ�I�g�۫�aC�;�&.��ɬ�l��L���q�*V.̏#B0v��B-z�%�ՑX�{_�.�(߯�&�Bh`�����l]�>$QX0���KQ��P�L��"+�͍ι,f%Ή���!�IK����Ս +0#VȄ<���i��F�Q��a�ڻX�5.Q��߲ʀ|�LdY�0�V� vv-)�c�5�����b�R�v��餩~ +s�<sZ��v��ָ�袮�7��!�63��"��A�Xy$�wu[2P�7�ݰ�àު��&I���D��ؖ�Ƴ��Zڅ�L�.�}C����5O�[�v�aa�6����m[��C�քy�M��������t�I�%f�(PO�w$��T��Sl�ulx��g��]ٍ�Hn�_�`�<��H(��������<�V�z�"6:�çpb���ڍc<��i^�b�9-��ք5�f8*�-e��� ��3Ɠ��o:��/j������pgd�P�}���ei��d�vGw�)���٣j�m=����]��Q�̆��mj��2��E�:�3���$)왲brWv�!���m�\J�����R^`^�0)�^�R�(8_{&UNu�:���J-3�Q7�L�bO�DM���.�-�R�~g t��=��$��48�m!�@x7�����:��m60'c���n�+6 _���� +r���m��z��,#�H��) �,�^ۺ���O�i��%���6,`�7 ?.6z�.3����H���,�9h�A�T���C�Է���HM�ʵ�|���������<����0��\Ƴ:�`Lm�fH2�v�N��HG��l�9�a� 24�)�6ߠ���ڪ�}z1�v�/3-�-|_�2Ԟ +��`�IV"s���c�BO�f��q~pBP�a��)B�I��T�<,:#�,C���h����ksN��s�p�@�<�8D�Vf-�O�����lv$��KH��Z=���&��ڤl��9L8&�UX.�=iX�(zXWB�f��IC�����\<�+æ�r�О�fJ���=7�ٯQ���@�a<�'M�pp~PG��ۑ�Ɔ�t�}SvdW �l�F�l���ݺi���K���w�J�l�[&o ��; k�*��� V� �C� i{2�#�O��7�����&��A�͜�N�,� ����!�ő�Z�*�2~J�醅�����q��:֜eG�=j��$f�?N�1��3<�f����1�p�w�y7�8k\�Yfk"G־�F�Srm� �0��²>V��z*&B���(.'*�큟}櫆 ���n�/���ǿ���L���<��grk��� �I�sa)v�Ri��SP�M��jG$�z�Gb�BO��2#F����=+����=�n�cإ�fp諰�u���v����}�b�e��қ�GO"n����;����c��.�9u�h��`�*�u��^�ˠ,��^�H���_�St������[Fs�FW�>%�KkM�r�#`�� `��A�Bz�&�HB����g6s`n��R6�@������_@k����]���*!�?�KqHܸ�/q���O۶�3�)�&��ᖰ��b���p��F�B�ԑɯ�G�!mΕ��<6�^f�z�ݚ�3^"@�Ǝ��=����jD �_���*�ŏ�d��! �X8=0�)��?�3��if�km�#�������<pﲲ����%8_nH5�m��Y¥���A{�F�*���ж���K�W�Ie����<�k�-C���}�ŬZ�캦��h���l�'ih������GF����%����[8�~���� ���z���|n�4N���9�o>m2��O��rW��}����=D�a�[��Ox,��Y��o.^k�%jHmCe�T�m_X>\/ͫ� �����İ��m�^�+�Q�" +rۏ�ͺ��Œ�m+[��ax4�s�G��aȾ��F�m����r��,J(��bq����tW~ +�f���z>��^��, KY&��E��v��+��uLi�`��p�� �+��k�&j\£�mbc��`�(��}��נ�[1�T��:��cP�3�e�j��ca��^�fۙ���HD;�V,�Im� +7���J��t�j7���� S�ǚ%!��:����@�o��đ�X���^��kl^>d����iv@��&R� �Jȭ���l���L|(�[�]/9|c��i��nC�V}�Q�����$M7�El�,) �*������̧nB���T�]�����(�_@�[�)�4?'|����xJ���/R��ҭ[��y����� &1!��i��$r�HHC�TO��P�5I����w�;�Pε�S9�y��,�?+c��M�0�VK/j�iG��q�����*�8���1� r����ﺍ��f^�?�ގ�������/���`�`z�O��� -R�p1�����^�����k%�nW����(���V��k2A�ġv��kX�����coWd���mÒe���f4��:O�8ѓU��W&4S�N$5���kh�ֶذ�}ͦ�d���X����p�}m� +��v�ԟ��(nek�-g,-$�P�U�N6��Q髪f�����~Lm({#I_R%��J���)0΄~$ � +�չ�����B�.����~^�R���'�-�d���������!�xo|������M�Q�Ø�b":l@��X�t������o����oOX�?fk��;mF���"[�<\j��C�o?\*��M���tGڷ(���ȣ́x.�O.��F�f���AQ q����| �T�H�+��>FT$�����7D��7� ����E1���$��8 |=��N��rq�lo��4�ٵ��Q�G?~��!�>,̎�83NYޖ>�+;4n�l@זF"�k�0�"�;l֦bZn(�������,��eNXľ_���>X��6��mN�Z�9!_�7�*$ݡ�n�P%f�mƈ��PKoGN�b2P̓RI��4��n'��]���!l��j��o^X����W*[��rѪ\(��5�S'H�J�*s +r_�&�7� r�|��@8��=��w� Lꃼ� +m���2y]�nN��SJʭQBYW��;>mv��A�+P��-�Y{f�^�r�Q��K�(�K�2���y�¢��:I�a{���G�f���ܧ�f�tҡP67l4���Q��\����2���F��;�ᆐ�-}�*��M�$p�s!Tl��u��֞<Wٓv��E�K�����Q�=,�8�ڃR�U{�����5��)�5I]!J�f�E�AKZX�#5ʪ�U�$��+k���'AC�I��r����'P�� ��dZX'�d��I�lT��X9�^�U��3Ow*!CX��k]C�O�F%�[ė̃���ݣ��mhY���8���cl�xv�����6rT��I�x��} �@�95#��5�u�e�C � +�� ]٬�!�mö�u[Bu��/̶�D�j6=I����<�k7�m'�V���+� �����;t��|���b�ȟ��@�?w�G��p^Pn���ؿ���֠Q��O�ֆb�,b7+�m^ݠkd��V�\;J��ݡ+�䄵�= q��8���������ˢ4N�e�,J�bG�f��T5�}��[�A�k&�������1&x��X��uG?z�`���p;���-������Fw��*]��Hl�D����^��a`��GBO��a����f'�%��[�)^g�����xZ��V@�t3;��|���ȯ�~����'����&�$��#f<17�lU�k#�]�`.��Ek/efYQ�R6%3Z���`][�^�$J��� += ��C���[M�m�7H�}ŷ�U��m��2[���^�MՠmR$R6�o2��R6*�=?��~-�;� W&3�2(�x��r\�^�V�mk}�0=�*����Tb����\������!�Г�?�r�����ͥ5�3��FU=ú��p��.�4^��H�hW:%h^r}hnO��������I@�VLC�֘��n(��`_�����ق��;*������ER��EĀ5�xh�m�؊|�稉a��6G��!A��3l�J��f� +�,�%���>l.�Zg� v���̜��YzE�)�-q��7h۔� +֏�ge����I�5.%�����Q�[F�"�i����+�/������>UO�f�;��5Y���q�2���Iy�Ug`Վ�g�%� ve��\���N�w(}=q nP�^��Ya {o�t��b8�ǡ�`�ƵG���s�rc ��kk;<�� ��gl��|���������Q��v�\#���c$pB�<��ȔO�c�}�xZ��_兏�K�"��k-�@?bkM,�y�㥑�oі�S�ד��Cs���$qd cs�Y �����%1w.Q�!E�=�0A�:��H�Q_��'!^.L�F +����*�C���"��2+k,;� |d�R"��ꖌp����2��??���B|>�'�Fܫ�s�CX���)������,*����s��80���Q}D͆�_ɯ�a���8JkG��m͑�M����KH��d�`�3�rG���8�n��$�Sf�e��E]��uF_�n=��h�Z�n�4|�;�4��?��%�6�p�?ag_Q��K�Q�f��d.�ͪ�D�g�k$��n�䆰v�S�7�ܗ /��*�dߢ�i��8�K������ҧ٥�4�1����X�X�f�_�b-�X�ч>,J([�H�4�7.�+>���t�N���Ip�_�i�m�-[�u�����ן8��˨��}x�۪��}x��叞�J���o^z�ٮ�x�W��#%���\�,n�)[5�4>����qS�6s]�+Vb�7@�3��=�^ٺ\�K?&;��?H] �f����8�E�0�D���p_B*��2��5הGD*��{���G�@�ĩ�#X���Bx����4����B�"��E��<���s�s?�� �^̉`���\��\ߏ�N���s]��ڏ��lm��Z_���6��e��mËɆe%Z�1װ��~� ��?���&��t�����n��3�����K�!^����df���; ���)x7�sA���< pQ��s0����I|��;��r�- ^NB}1^&^w�(�*[���-~���K �,�ɔQ��)^FٺD�����gO [���~|�����K���Dپt&��cb���B+�le3e�;�Gyn�)/��bˤ���y��<@}c`���.��BO��el5���v.`m�do�'�� 㨲S}q�G֗�_^\�S�54�z{�v�D��`]e�21�*��M)����Ӟ���z��I��������0���l��r�~���8*�zp��c�� gQ.�����ï�B���Z����4�f��v��5��&+���ac+z�oj����)[֮���\H2H����N��H*�ԸoO/�����X�a�u���I6��ԗ��-m�R+��1��R�?(aR���������/5�s�Z 9]���!�>�U߲4[zn�:������Qy[�Io4�qǨ~D�(�kx|�ð�b��a���Q�ԃ�G_j��d^���E�o|[_j���4�_z; +i��v$&}�u�S/��3 +��@��v}df���piF!^%@p]<y ���\�7!tO�a<�Z��+0D�vw)���?f���)�����P����A9��K�<eMs��a�@l�G6��`A����60�Atz��Ԛ��'�% �U��A��<qЂ6�z�δ�ġ���%�hi�u�}�vjn ��ذ��A3�v�4�t��Ӫ}rC���(�P;�����s2y���r +?��X˜Z,��e�����C����`��������l@��mH}�Mؗ��M`���ԏuR����J�S�X�6�C���� ��� ��,�WJ��M����.!�K�Dp��!�45�QxMH�M�F���I��:@"k{� �f���"�v�<\��:��wj���͎Ng��A�([�"�t�[L�^��*ʗqQ��ܡ:���v�V��� �'�2ʦ�8�*[V��E�F>3s�RG�]Epˈ͝`&����3��rtx��97���q�#"u�cj�(Z�����Qs\�g�<�w�ꆺ�L�y' L���࠷`_�����iA�����&�8����(�����1Rc�f�Z'�3I�N��$��J���o+0K�r�&uӣ���:���g���߭����lQ*i�k/|�]Gj��|���Da��TO6����\�Hf������5��������<�M]� �9�H55W69�s�^m +� +�<�ԗ(����K�F��9,h����T��k8>��R���d ������g�SE�ɓy7.8�.������i�>�+�s��z>H8W&N� ,A�\��D���%���E�N㿮�ľB�yRe�0�r0 +��TkÎ��������N7�Eڳ�;'^.�U5c�9�����o^��&A�m���>?�&����N�z�����TF~\����������|��GwW"d��Ą<�` S0"U]'(�`�������샴���<gk����LF�y�N��X�����R{DG��)�j�Gz @�;0I>�/R�dJ�jU"�6t�٬��P��8�K�_۽��$�fGK����_���n��O�U����K��p'�O[�v u��eI���+����>�GR+��;��h��H��������Q�$B�fk���$����v�>����7!�T�'ŝ+2�����_�V~%������� ���*���i{"�H}�67a�����Q��m������t�|�+L��ړ��������Q��W�:�o��Y�H�w7��tO$�Hga>{��bd�gˇ0.!�� ��`��E���0�a�ȣ�Q��N�d�L=��u�����h����������e�l��d͇1)�l�&L��Q�֓j`y_�Y�R��?|���D;����5_���� �E>�6��J�縈'1��Y +*&�a�Pj?���Zm��Z2�t*�x��~C���~_�<��_��]�4�(�6��C�|��(u\����oZ��?���R�L�eV�xK��q��ڛ��y�|7RK;�� +s, �e''JMKj9������o���|w U�����vW�E桂q�mp���Ԯ������7����m�r�+ 'QR��f�/����z�a�3|B4@�l�Ss�����q2K�P]�_�-�of^��y�Q�Uw(uݿHI�����SR�BHN���5�G��:�z�6q(���nq��"@������N���+�#��> P@+u�ϳ6N+���f��1r�,�d�(_�w��Yla�& �s �.�b.OZ�##��G���f7�dYE{v�"��K�CQ��L�ZZ��J�"U�"U�k�P��pf��?�(\\�����8��4�pQ��X��;h`�M��\7s��H�-��rc5��]K�i������Y(A�_���uF����"|)W�s�����G� +�^�n%�=X�PΛ�V�'���8�D�\�id�y1_e���,��;��,���7��|�k���Q���E���{� \�6-�q�_�ŀ!?�p����2�O/����x�](v����nE�� ������3��|��@�j|l +m�w/86�hF1�zK��}r���H$���E����W[�O�f!�Ы�#H%�q�&GkF̥ol$w�a�b��2Ua~����#!T��/�/(��?�_�n�7�� ՟�����ʶ"k��k��P�(~LRMN2�4���kf���HL�X�9���X�^�{=^Il2X�z�赧oj|�6�<i��0r]&.��ɵ�� +ȷr?����n߾�M��� ��&��k�������ϲ� ���=~[�5)Y{"m6>��ey��a�����q%`�tB#A�Li��4����nzG���U'L-�3XH�T;�R�j�����d�X�Rg���P�a� S�T-��J��쿋Y��X�Xob ���+�5�����Ц@� +�7�H��'�����>�[/ml�]j8�Y��83_`tA�rs{�O�<��)�g�v�2�#5u' �T�/s�����j�g6���C��̜���5eƼ3lf�״���d�n����ooI�G�����<[vߓ��8� ��g���k�w+�=���V|� +������-��������N.����lv;Rӎ�9 N�O���x @�0,Y�k�R]�0��.J +��Na��tI���:��;��r����+H%7���WB�����Y +�B���m�$7o>C�t���Ax�)h=�t�=.�����{-�L5b����5��)P����1� +��^7��&���G8�EE5����z�a�C��Rx����V��R���&xXi�Fa�[���z�(���|��6+��Ek:y~mC� �����^���$��,^���*��|�Y�f�S@D-V3���5e� +��O�1���k+��5���m���-��7`��c%+ur���V���-���kP3�j�N�6�H�k��<�y��;p������c��c��Hz���)W�"���:�]�|(G6�������i���X�)CM�����cez�0��]8A@���u�/�$P�j�7�l�_߫�Y �u�(X[�5��P&I���M�$mU�ḧw.�4�� /�����[�j�|�j7X]�Pٽ��+N?�N?v�e�������x|�=S�&.��So�K]UnO,%j��[���\�5��k2e��u �^�{��O��-/���*��;�*0��v�{�N?� </�v�q�p�ʛu���,�ܰ���+k�O��ɍYP�l�P�ؘ�L�aڼ��h��\0L9 Em]��ߛ�OW�Q��ں4{����?5���rqR�?X�}���D����1X��������3������+>ݸ���8��ѱ߽T�B�Y#Ӎ�}�m�u��cⲪ�R��q$Ȝ��P�3V����u�p�u1�O���z�u��&�ڟt�o5�6�ij0ig{�P�1_� �>2�54D9���$��B hW+��}����{�K}M��R��@�*��j�b������ܺn3e����W���qO�P�w�c�g�>E��Sm.��B�Qc�B�G���rۙ��B?�� �����W�}�E��SH|'rQ��ٛ���}�-JH)-,��"�MUdR���0L�S)�*�����g���A�F+�G�6vO������y!Y��y�Э�7?�����=h$��LP�\,�5��0�������`P��N��⸕�(]|�;2Z�aa��#�7��|�oEO�g앦o�\�<�N�Z7}��u�X�q`��d�X�6 ��)T�u��,I��So4E�z�̽�E8 ��?����e�%�yYh����Q������T%A-k&��aRE2��+T�i,�X�-���흚{ �h�.��Wqt�:�{\�FR_����k��b �����F��ѭ7X�DM�֚���:G�+˅�k�+� �96�(��r�������M��-��y3�W��� 35���kh��&p��Y'4�h�����A$�х��Z$���&��MOƶ�����;��+�icH?̮ڝ���<m���wl�:{��)T��f]]w�t��+��������I������4�gζ�8�#r�Vk���w�)���nc �{�N6v�,���@ӛ��9��a +gUy/;�YLUs\�ߤ^��� ��]�� �]}3��t��v�생H'�g����,u��xb��9p�Yq�+����Dq�O�d- e�=��k�����}u��1��J5����tb����}Bq��O�w�;3wg��~sz�-۳wQ���Exd'��L��L����6�h�-m��h�����~�❇����%B��7p�~�l�����f��qn���+����|�g+M׆~0���� �b�:�.%Y9�����oŴ�����3�S_܆i����խL3����Ur+�����[1��:�oŴ#�}��b�٫��VL;�W�[1�"�n]\�<����uv�N�g~�.!�J��ui���) �ٮ�b���_��߮+v��߮K)��y�ZF�f]Z���"�7���7��Ϲ�N]� ǂ߬#P{=�L]� G[�$� �G���ڤ~ヺN���ڲ���#`��S�P;X����e��V?\G�O�Cmq�ы�͖A��p����:!ᙾ)�IYח¨ +W�t��K��YZT�4�W$i��1�έnb�����-�L]�'/�N q5��1�<�Sw��$���'�Wo�p�]�C��<$���Zi�/ +ڮd��UhƧP�m�6�"�(��Tĉ�a$:Bmֱ�H��OY���>?8<~�EM�)�}��y������K��Or�a.�n�h�l���$�r(��Ԅ�_���dw]=�p*�Y^�T�:���%��J�����A�$($P��\�K�A��P-����A�c�RHy��u%x�C�������L���|p�� ���JD�R�ӱEܭօ��xK�����:���Y5��g�G�eݗ�S��#��G�u�����pC��_�����"�07rOHA4��3�{�Ұ�"k�V���Y+i�\w��'�"�5O���V�8�w��S��ߧ۶�E-�^ۀ�/�7V���.JB�K9�~��l��qaY����^�gצ�W�j��P�J��J�T�.R#0�����T�*���~�火F"��Џb%�uó�_�.��� l� �^�7b~��ҏ�;��}���[��'�A߯ʼn2 i�\�ix��PG=5�: ��T��)�p +5&��N��_�RYw�ZI-�$��6a>�&�FSŴV�^:o�g�_h�?�G�|���b[;e��0j;��e���~P*� +��z/�1K�Pe�R�6j�<R��G�&���LjM���W��4s��c��J=���J7�q�[�� 88M���f�@`���z���?�o��}�����0�F�L�zb�'A�F����i�6���7��S������J��f:m̖M(?<{�P@"S�=*�`H���q������g�t3�d�%�����Ņ�E3���ͻ9U_xo.0r�y �A��e���-*��<}W;��@�.��E]<[��̿��7"%]U+׀#O������vm��ͺ���j���YFM]�W-j]R�mݦ.q��iM)a!pO] +�i��5���)����=�)�➅�E��@C�Rt�/�H�B1���l�kH�L��`x/.t./r @��nq#��I�r�����?b����pD�A�!BB�?l1��%�ED����S̳j���R<�{WkAHH�j@k��\>r)<3�b[��{(��ٲ#�������3����2�������g�d�̳9G�}�)<?�Qp֛�ڠK:�I�F��e�-�=¿yv�wCX��zN[-[�d(�����=*�=�W⛺���^����� &{�6r�l��o@�ZS�}XB���w� ��7 <Mc�]��M��X�"��ɐ�~�g�.����c�V���<(-â��<]�.���k��GJu��7����qG�VU������Q�d�\��HX��F�IWd�ܴXx]��`S��B����H ����{�2YF�-:�y����oR�6E(�� ���*C]�H�#�6��+�z!�g@��;�zM\�-���z�����d�!�B��X��gV1Bw��6��(h�-�HTJՒ����Ւ�#}�C.L���܌�֥[}�b���ju.�:cӊ��;�� +�T#�Cwu<}�h�.zG�R�w;�}{ѧ����px���2t�ba��.<�f_jio��F��/���f���酎*���zi����Tà�'��' |h-3kY�G���ܠz��UVi1U��]s�dC�T�����/�25�n�+%�����6dn�H�W�O�o���Zk4,d�VX��FD5m5J����r���X�H�m�C~V/�6BdcD!�@�o��ⶉ���~���:��h�����������=u6�7\�֓z6:�b@�Z3��H����`�}�(ҕ�+�(��ғg� l���_��d�L���M�4V9�碴�����c��+����H�͆6(��ngs�%��,P?�F�f����հ� �b�V��T��)�C��� �#�>����g���S�D>�2���LN�j��jo]|�8�����X�>VX�gU�����I�z��.��+�bZ����NV#"_mQI�N"as�]�L?�V��ͼ��0}��z���þ 1V�(ڽ�d����ն�± �D��h�bQ�h k�"�Q�[Jy��.Z�������`��8��ذ`n�>�8�y#�I=l�f�\��&xZ���,B�6�.��s[��s���77��Hr�����j�z":j�Mn�~�*nJ����%�M�F�[���A���{��=��{��5:t�j��_�~�F���~xxΕ\�!��難�-�/t���K�=�G></�K ���\:'��w<P��Z��і�b�MR�~N�^� +<�d��f��z��+��#M���k��(�[��f����!<�ոPԦ�Snu�-ع��w��H����&���!.nC��j-5��]S��S�����o�K���F��ƭ�n�o^|�����O�y�f����*��o��L#���?Į:��X��;~S$D-!l��[m�2�FW��`��r8���8b���Q- +*�ye%־��: ��T?+�|��c��9���.����1!�׆�1�s?B����h�qݪ�j����;�In}4O _�js퇨��kQ:f8�Svsm�z��ۛ3!@dYnN_{�l�sKT_h�3(�����oj[-��0�\��Y�_�l1HM�l� +�w�.���qw)q<w�5�owN��:�d�����Z��3�9��;��)[@C��k5u�ZOR ߍ5�,��g}VׅPϾ�.����BU���c�F�>��'�f��Z���w��V���:����߳f��Y�v�vR6�� ����������C�c�����g2��#��S%�� A��qӨه}?�#8?W� �����tæ�9�iLJ��H͉��W�̥`�$K�U�fM�]\��%ңk��{����^��G������?�?�����o�݁;8�����±�ϽO� �w�8ө�~w�r@��xg�!;;���"��ޙ�Pq�=�Z�)�håuv�R�)�4�+�|�KZTA�#��*}/��{!� Һ]���c�$PP~��1)����0�֨���|���Pk���5�E���w�L�3���^��u��T���>�3 ��7S��u���ʼn���C�q���qZ���m���9�nͫ���o�䚋����8����ȥn�i���_Iu[S֥ �0�����||�`_���l��uD#�D��ϯ�j��/Ey��?�^%�#��a=�}��y�lL���RF�M9b�W�����KY��ob��o�MQ�p�v+��K�#���`�����g��.������ʳ�~�e��?+o�~��67���<B�Q#v���n3\�/��nz��D4�l@���yV�i���r���*��HB�q��)2s�`��$Z�Gc� +���yV�O3}����K���ؚ)�(�����b�����7x\��&����2�i��e;��η�N����.[��<�f�z��jLO�(՜�Bn��v`m3�4�w�-kH���b0���2������u�u���B[K�$>T��s���ِ²�dZ��;�w�'�c��h��L7p]�ה oz��=��4�+yH��~l$�p���9���$�.�$�%*J����r��m�u��6+��Z�ئ[���c+����l�t�*�]�u ;���wR�2��g07ޅ��f�p�����3��]#���A}���~��#i��!5�*�jJ �:+�fT�D*Ո�&Ưy�3���Am���(��Q�lu)+���*�}b��O ��� dUj�����V�gxY7?mki]��2���c�@6*��� +����S�����d"sR��x9�>��_s����5���;4N��4���Kn�r@�Ym~�|�y� ܞ���$N�WB��T�Sf���!����h۱�<�-��O:�}��vIH<V���}1�3g. ��y��r����r���B6���٠K����n͈ �l�k�mc��H"�3�F(�_]���N���T���g��̥������1q�g�� �:��n-+l��M*��qa�k�!��o�qܚݮ��jR��gu5����湌�x��<�4p�CQ�HW�Ծ�_]�O�<-�ewA�r�����B�{W����O���g.:jJ�%֮��O녯sg��0%��1l��T�3�|!�:��P碚�L��ƙ��w�(��o�V��m��Yä���w�։b�Ơm����\<X݊���,v^�-�a��ۛѯ�N��h*g'�9d���vh��-ķ7�_� h���f��g�ʻn��Ų���J�z���v��맳��x�ݣ�o��E��i� �Q�E�|�EYw-Ӂ�L^h� +�����p]"��ӏ�^ϳ�� �P�o8�>���;�e��t�ۖώ9����ӷW��pr�n�zC����#;λ�Pnx��Ξ�p�:Q~<;2��x�v?9�0̌��f��pV����tF9��L�P�QSXe�is��nw�Y#-^�)*�yw����hF�뗄7�ޏǓ}-�(��iBÙ�l�GHh@}�ͳ�����OZ��{�Jy�wk7�X��:�pE(6tC���$|F� o��k&6>N�9)6n��B�O��(���$��?RS�DQG#ු��e�v��6�]m]Yv���m"ۦw�u]yEhT➽X�yx���Fj��'6~Z�~e�W:��eX���q�u������c�k�� �����T�5j�D��C{�3�WF��-H�`{���� ��?�bk�NQ=��k�CM�-�"p��u�h> ����j�K�-?`\����!�(R&����u+Oe_���� +@���O�����l���/�n��ط���uȽ��6�������D�[�fr{oS����h��0�t�����pi���\��o�Zt�����۵:�����Ƙ��?n,+��R���|�N��m �t�f�\��!+��X�iV+�z�ڙoi+�7�PZ���2���dvb���A���Q��ل��:>@U���cW��<C��D��;��g�.���Q�.�NP��{�����·@�2�H��[���$R��j��gi�KxbT��yhG�r'�V?�HK�+��ˬ�=���}pQ�lU`�3}��[�MU��l���ű�r���X��؆`�P�H� \ �x��T%>+��~�=�8�U�]妓*���6�C��#�FCbӾk,���"�0�0pe����]t�7ji�m7^�Z<F(�jK�o��=����V�:�枍�\"@�*AK>���{S�}n0��$�귯��<N�B�P��_R�G\�hZ�v�nu]h�'/d.����&-4����Lݒ���r�G��!��6b��Z���������V���8���OY'�^�սx7���|�*��� �U�%�^��T�u�hR�MS����t�ֵ���p�(tk���#�Ѿ�q�� )%ߓ���0Z��8=͌��g��VV,��"���&����n�k<�k��wM�(������c�d������c9�� V@���x��<��Od��.67�g��p�vM�ai:J�/a�+p1 R�����ƿ�t�@w���̄�T�X�ٖc#,jB���w�j8<۞9+�x5��Ir��㽎,��ɾ��l��An�}�%Oz���퇦{�y���h.��8�m2�}x������3���y�9�͌ON���� �G�&L��{���ڥF������_A�4�Y�Cl6�$[��zǼ�L�n] �o��2ܔK�m{ +�����p�7YB�����?�ʝ�/_�xG��t�;|e�� �i��ZhRD(��������q�`{HX>��������ާMf��R�wʍ�M��i-�ze���Ϊo��?��y���{�a��h���<�.��2s���x�o5�7��A�B5&�Z�6���}�U"W�~{�*9�+�����<�z�PZ��B(��,;���,���#C�q1�_Ʌ�ը:{���Q�"�?���4����P;e�� X � ]Euu�@ޑi�������r��L�}=���7�L^,)د��\����X��3<��F�f��~�qGR|b�b�6'�M�bӎ-d��''�� y��=��Ϻ�ټ�#��!g��w��r:��uKf߆���O;y~jy�E��Rn�e1��A*թ������w��8�|_5rvf�C6�u��xP�X��o���ǝϽ$��ۺ��O�Y~Jvf�7h���P�H|���BOz��ؙ8��n�5��͈�V�6ϥ���+���t�����=O]�kS$�\4��LS��E�F���Q�8���07��u��A�t���0ti+e�e���^���b�S��U.�=�}����B0O���R�Y�S�Z�Uvn�m0"�HZ���� ��7�j�,��� C}�����3(l�%�̐b=[�m� ���̢�EX�E=�a�Խ�=�6�$�W<[�s]�~ՙ���n�\nq�{��>]oƷ����I�w�.F66oJL}��2{L@+L���� +k-_��"X`�.���4��K[cXJqï%����3P:����R��~��҆���B�B�]x^�.z���(a`����ͻoe����ӚX\i9�C0�D70�����u�?ԡ +�hU���g��(|��`D�����G�op���n�V7*��B�X�c��0^�GfB �^�����:j����G�2i�6�HJ��k�J��!E��1"48Fͭl�k}�Zħ%���"��0�Z's��;�9��]�RKWiP�J����������Z���O.��4� ;�C ����QǍ2Kk�'�Y �!�S)4�Ts +�)�� �����ֿ:���R�vz��S�V}\�B�f��Q�T�o;�{��q��%��� O�X�[E7��h��ٙ�;��\��<GZڗ�@GĖ6a�,G���F�\@8��GPa��N�����! JɳaB�z��� + +J��4�į;��Ο����/���1��,��"���E�ǏUV�f��{E\��� r��U�(��<�h������[����7��$~x�F�"��{_�Y$�����x��<�ßw���w:��Y�w������aQ���������fv��7��?��m�(��~�&���_�+����^��}[3��7��L������~y_�����gn�Lϋ��\���֣���V��6�fk��R,������(PIE��T�\�������o���=��Ry%L ��1S���.:�:�P0l@���馯W����/���#����%��Ө˥�7���AQ~�6����(ل�:�]/�J��֊ +�>j�4�(^�j��X�����,��v��>ˏ������j5��P`�0 ��p�V����o����s�.�A�q���-��}��i�R=������T�=;է���ԁ���q����l���+8,+뚾�s�;�'�c�x�Z�pK����SX�k��Uķ+�+r����u����Nӗe�~p��z��Key%Ru��j������<�Gy��uea��-&�l��d�kt]�{�uV�v'�B�ny�P�y.�³�)u�Ra�*��3����@��2����ߕ�fаO���\������Z_�jn_��GE�;�3+0��G���s���,�<K��\�7�����pӭ�5ؤ�8�E�w��k���,z�Ֆ�/d^�A�ޘ�E/̴���j���iR�v]WS 5� ꌕg�ʽ(/��>t3�P�4�>i�]��] ,V'h�@P�r]������>�� �am�iZ�(_��x��> �fP����b$�pe��j�z��ӡ�5�5O�� &y����8�D�k.�"�5_� +\�RQ��6L@[s�U��M�KG؋0������Z�.�w��\�k����&7tH{��:qid�W)�L�^��EY�}���&�W)��l6���?�S@��G������Ȟg�Ʒ�c5��t�k �!Ì��-�ԛ�R;�K���9��;v����X�T��~�)�B��h�=���ao���s=�?��R� Bxi���>�4���7!-������Ԟ�Ǟ?3?߫ߚ���Rx�����Ek�*Vt<�#`b������b�@w����.�A��Q�w��=�%*�c}.Z���f30������r�E���,�Y����N��h�VkP���`�7�9���`�Q�\4�z��>\��^H"�x�y+�S���V)�qv@\�o�L���O��v�����?��ip҅2yM�7�qF�*(�]r���ځ�$4p�Ƹ�չhU�k��/�=<9f�J���Bg@W��|����\���[����%��ݸ���P�y�L ?�z���=�y=�r�bh�x�y�����K���-��gO��=�Io@�u�V<2k������V��8��ԯ���;;�v7L�w�~vhes̸x�E.����5ϳš�����k�������A�n�n��F�ٛ1!) �=�n�˃�6�Hp;2�:Z���W�݊�#�K�R�{�g 4-��f3�@�yɺ��7vϰX��u��#���A������}s�ŵr���յ:Eŧ�w^���}�7�@w�ʍ^f�U4(GQ�qxv��荈�=jIP�aC�`���\���l�l�ŵ����\3+��~Ĺ�v|)���r& Qo�L৵ ��+�`V�R��H��������A�R�5������ �? �Eh�3��7+�J�ƣJ�j ȡ\��ik/?�%K��S���yl$�EQ�� �\d�L�$[@��|�i�u���d�9�;R�M�8����.�f��w�f�<�����}Ŵ!�s90���zY�JM�.w\�����q�U�����(��zt���yz��[q��}�z�H���N��|�1Ч�6,�s8o�t<��lP2▆b���g/&7�k�b nFi��mC���rʓ#��0�ע&���Q.bo�'��U&�g���^�*C��6�y�'grQ�_ee|z�=��!�H��fR��7!�ڡ�@�\�����S���[l��A�ЮgGd%.����U@�7!�*P�C��Q>�\v]��2z��#D?jk�Yx/Ӥ��|�d�Y���C�C��~y�VB7�J�O�:)d�4q�Nk��=����91Ǣg�2��������#]k,��PhU?�RIs%uy[���{I}Op�ڀvB?�Ͼ���r1���nΕNݵC�l��l���� ��٢[fh-P��ѩn���Gv;�l}����� �ŗx����l�RLI��_e�E`~�業����g�,$X&�Xd��#�i35&���*��Z��p)�����3���E�S�;ۧD�:�%,�=��]�q��=Q� +�E$ØTy��K��F7V&W1T��,��&A���v�T�wb�*<?B�Η��7����͈Zu"�E�����^�[Ө3�6j� ��Cg/`�5�}a����2�F\<�c�3�w�K5�ֈ|]W��搏\Ɩ*-����z6�g>�-_��Q11��K�Mc������<q�Z��� ��F*a���)�Rv�����Ѿ<S�Q_|��ݫ�ϯO}������QО������^��u��B�F}?���OO^\���^~��$�+�{�x��_���/��C���D5��5�G��@z^Z�͘@�H��*tqY����2�P�N�Ӵ�{G� ��%J�A�*�� +�;���J%��2ȋ�0����9��qh�)�]�_�����[{F�o�x�@s���ЇѴM���`_=O�D�n7<�C߆G�����Xb�7kc�Z��`mB2h�X��l�M_����L^x67s2���pD*P�Ss�^s�R�Ph��ᢕ��n�}���Y�c�=w��B�.�2��[x�����O�u�2I���&���yn)�Y菗�<�� �L�ǟՒ2�|���lӶe��H52�ײ?QԜ�/֒?��� Z����݅b� �Pd�p�A�e�EUX+�a\��v�P��UR�� +�kD�����7�A�V%K�#�rT�S. �F ���Hq_����dA*��q��<�L�f�ˈ��{_xe�ے!��������Pl��'G��`Q)�?���������ѡm�����wv�NWjTb�����Х��2wՄ�=��4��G�5)lz�v�i���]P��u��y��ᔴl��"�f0[���_�R�%L�F$;��4Ɑ5=?�cS}���?Ҏz�7q)���֛�"��5���.|�-�¯s�h���o�=����q�.����n���^>e9���Y��M9�!(����,�~��eM��M��MD�ۤ�B䇯�����e9�A�^�"2M3��v�]+``ߙ=�y�3]���Fޱ�i�7"ղe�k�n���<旛St\ʍ_��{�w�u�� 5�;���Fb]�4�X�$*��%���ź�V�LYwYi8����4l��������Y��C, ; ���Z�]SqMxG�{��x-�X���>������y���^��MG���iS^��9�����������mpu;��@�}?��O�����v�?����]�gM��� �W���o@��IP��T��LG+�t����l����;��Z�D����k�����U�L$�H @���O��j�:���7���K�3�P��^U���� �1�_�6�X;$ewMY��6svE����f��P::��}����}'�ze��Бi�Y���;e�%g1�������]R9�*^I�K���eϩ������mi��M91�_}K���Ͼ�0��� 6�28�e��xE$�(���Х�E������Luv�c��Z�����T���q^���r��'u��^�8�c��֩G'��zAm��Q���~kd<���gƮg�c��m5@[�5 ��|W�;=�sv]t_�(�G��f[��5�"f�9M����J�����\5�r/8�Q�N����E��� >B�=��^������yA�a�g��؇�2����0``7cR�FW�J����u�H(2��Z����d� Y�`K$�xV��\_�l��}�lV�вlc/�emN~#Z�c�����wȾ�l},E��e�����:hD����p b(y�ⳮ���CP�I�wpSO3 :j�r�C�l�T�O�����j�V����ɤ��sVJ��r��g�DN(���B?�P��j����ƭX5�bu ͣ��l�6f�� �v���M���˃�kH\���9���š� +d�:b�2���E���if�m� ��[R���dQ������[ {B��7*��=�z��#"����i�Xس�|曮�w1�����6ѷ{Rf>Y5��'�#P^���@��-96v(�Ù�5XL~L���J�c� �ӭU�sy����(yT +8A�]<.���g,x��.�k�¨ �#�����*T� +�d�����Jb5ݒ<�k�vm�������C�;�vv��=��;�O��?w|�<$$?��}����wq���:�3f�E>ЪMZ�NӀ![�]�&�O��5X�\�l +��<�P 8�jw�������G��������EX��{��=�@ܟ�<4��)����������M~��W��Զ%�=�0��`�w5s�].�7��9���Hں˨q�w�����d�O�V�&ۮ6ʦ�=�mW,Ŋg���M�76��/Ou#_,գH%��,����,5KP�LevW�2]�1�7�߁t��_�?��.!��i��F�,̒$f�Bٟ�e����!�`u���;���DXφ������fut����>}��F2��5%HM�n8�Z.?>m�<��"�O�;Q��4k���_����j֬��S�a�L|�!��=sw�yp�[z��E���!�3���=2$��t�ŭ�9"�<�Z'�:�{���!��@_/�x����O�UY��?z^�SJ+G嘺���$A�}�=���N��y���B;z*�F���d�/�6����(ܝA�}��ۃ>_x�麰��C��@;��u������>Ħ�|��������!��1>�Z5�.E�5�9`jr[���� $��ck1��;b�1�1�&׳1G���Z�k�?�����{��m��d��y_�Y�FY�,�V�g�N�{�¶���� @FK�Щ[͠���^���p�k�4,�T�}g��vB�Ұ�'@�yI߶ǴTh�OA�Ձf��M;�)��̄b�&w�zZ{�ٝ)QqҨz�e1#d=�������f�A +�7i����4�0���6����,�������m��BKl��Gpd������ݸx���]q˨,`-�vm��x=���=�ztU·�DA����h���9jI��!���E�{�'��L^I���}�N��e������*����{���ԅ<0j�`z�6��0�<�Z�ߔy��jD��w ��,'�A�R}�+���2+�ָs���d���e�F�IM�6/��,�����n�%Y�. ����g��N|&��nP���R'���o�U�EZ�9B���*� +]Y�w��</�u���^��E ;��IV +�F�46�U$��"����5_G��6�P}�$5��i�}����;�����`�E܁�j����r�U����OB� 1>��w�en����1���ؔ�/N�r�ۙ�[]�k�{��iv�3,a����¢.����m� +z6�#�pb�T��j"�|C�#�g�_}���+sݽ��J��`��;|�0WiV��3Ķ��y�)X=�˛�Xsu�:�S~�?<e�䤅��íXE�����"�m"b8��n�@ƸE��S{�;�cO�j0'ۊݭ��o/��NO�rk�������&wk�C���+ � +�y��*E��c�v�נ�B/Xo�ܟЖZ8��$2��Yˍ{p��yx����u��V�J��6r��wh�h��T(�~�v�����h��a4VZ_a�z��Ĩ�`�s�=�Qk��3FU���w{4_�"�\��(8���jyU:�\�������YY����q�f{��2��\L��vՎ��6; �y��rS +����"�Q��80���z��2 ���e�k|��k=;4q*⅄��n�<۞���P$�@���L?�]�]��''�Ոgg�Q���iq@��zYQA� ��4�!_T(�������H������6��7#Y<�����n�^�^�+Yn����Ӿ���_��IG.N�i"��!NW%m�M�S<m�]]~nQǘ*;�1)#nwp�Q�j�Bp?x����|�y��mس�)�u��5t;X`;��v�AY�,-�J� ����R�-���qpp����6o)K�7}.~���Bk��L�@��A�Z2�}�Y��X:vB.�,A-�+�M\�m`��G�uD+x�N(p����u�t��X�␑B#���r:k�����g��:t��r�ޚ�r�� \����&�����W ��W�t\2�7�r�J�:�?�z���G`w5ڷ�'���㪹����3�.ڧ8��v0�+��C볾�}�4���I��������uJ;V�[�;��T�~f�b����Q���8ū��~�v}�[\����x>�-�7!�w�~�[�1�47>�:����}PrQ�n�7�o��|�yF���?}�{͏ɯ�v��5&�m0$���mD��nDt�u%��|�y?mL6����/�<(��㮆�=���<t������lOE������\2@��ѮS�H�t�w%�ei)�x�?����`�3(jt.���}�_���h�T��1�l\dϗ��{�x.QLݐ�WU�%�>�:����F�ځ�3� �t^)��a��9\E#&X��k�w��C_��Z�]�F��n���k�Y��E�0}���[�ڍ l�y���Z �I���kt#O�EQ�U�w�P�\�������]��7��sj��V����O� JV�*�Q����D�>��H֟��9t������G���)�EY��m����,��`�_kfׁY��4eJ�,P̹%��n��Gnܲ�����1r��P:��J�sPޛ˥8���) +96��Yvf�����25Of���*Ws.4yJ��V��u[���P˦��8��KS�Ss��r�p*�$j�'� +�r�&(��Y'rC'��+���D�Z�,j��L��k��oh^�`���D� �Pk��m��,o�N�Z��w`@�(�!���j�{��1�&l�L7�A����e������s�^�h�� �6.���ܷ���Z���i��Q��7���7��R!ǵ��y��Q�4�3q��`{���A�6 �� �~��ɧ���6��EҾ�S��bn���V�4��������{4$����u$=�|����^�w76o�)���z���HRr!u�;�-�u. +x�'����x[T�U\� ���^h���T���̺ � �Nѽ�TRV����E+?6d�cp1ó���}�v�J���M�<v�����d�"�cO���_��?tqǟg����\=T�6Y�X&�ס�8�䪨�L�!��(�1�R&�CB�њ��o��I�Q+J����O���'9�!�m4ܠ8Xe�� T��9���\�L4~��� ���q�O���<��Z �n��2�v���P��2�t�UI�i�I$���{�3�"����0���6_�)l���P.�/6MO�38��/�� 4��e��[h��e���tǴ����z��ɰy +����M�Ŕe�1��9�M��s��b����{�K�@���D�;��r��D�&����ʐԺ]d��aj��+In�Lu�����:�Ӓ���]��ŜO69vg�X-ѓՔL�U���T��q�ir���� �� +�s���b���Q�w��1!¤Q�a�:%{�� ��'�u�b<�y�O�T�}��$E?t��0��6g:s����m �ɠK���.�i�i6�h����,��<żJ���]D�Cл�����E��&ˮ�s2�������i�.��{�j5O� +�no_YW��>&��'`2?���R����duJZUi��e�X&�]���6)a�Җ3�U�bgo�RV�=gUs����uL����ŕ~m�M�������Z�����2���!pi�������{�������l�����67�.���a�ʟLO�|��[n灧�S��������������?Rv�<O���'�����{���]�^|÷��C��$%Sq�����ޟ����y`*~}���vů�y�i��&P5�آ���{[1��˵'g�v���.�n�<����O�ػvV���8�x����϶#��v��lƈ�ZPê�z�Z7�LE�Ѹ�a�[� lhC�q�\M�"4vZ�rt +�e��B�q�4��K�ڰ�FVJ0drl���{�U���UM�@@��9���Ah��[��D|��l�w������}ct��,:�V���N�.r�c�[.l ��-�J_.����J�;a�3N������z������x��s�����L d��g8^���5qy%��V�kZ�|(߃�h +�1_���W�<�7�cy�l ��zu�5� �����#C9�Fd�*d���=<X�Ϣm�S����Wߞ<{ HА6�2 +��>�#D���E~X#�+�]�"�������#�A�š�V\!�2����C���X�ܝ�(�F as�F�$h̓+/�i.N?q.j��E���j}]���n��S��xj^�C���8�'`3�Bl9���.�u3$����h 'RC��E`4B�ߣ��Pha3{�˲���9u�i���7K���u"B���8���w��&�c�bV#���W�Ù���@�0����މ�#�Ҫ]o�\�SZ�e�Z�v�klg����I��X?hϑ?��������u=� �2c��q;3��}�o*�Xqj������������0"�-qR�>�z�y��OuӦV�h���f�����L���P'%�G�=ErJ�b��� ���p�-u�� ޙ.�zF�^��Z�Z�y8gou~�~������F�2��&�'#|�8���{MX��i�A�l��߷�aG +��!�Z�T�����4��b�����}-��ŵ�f�8���=��|�q�:|�ϙ�!���X�n���}���\C�J�6��0�u�y*���SRd��������cd�0w��q��O�N:�V�3S�%p�j�Q�� xl�H�߾>:d�<.&��8�mtV"�^fU����n�f}�=3��H�M'Q�=�W�D/�P�38~��n#�q���qQ���\�����%�͛m�I�]�:�TN͇pp���`�V��������tҀ� �#y�U�'ok3w6�ȩ.Lv���6jA�?�mG��7�dq�e�kA��ziq���KVb���x>nԷ�[�<N�=��ށx�"F���뭐4�}y�P}��7��-�8s�Y��ǔV�1�V� +��i�J�o����?���9�O�Y�-Y�:��H�G��Pf�ɕQ��ہc|�W�m�����;����@�?��;��*K��� � ڪ+/D}�2N���Z呅,�r�\6�ެ�XQ3p]��V�##5¶��mL ��e��nR�dv���nZM0\����Aَ��[-vT,��NK +���k����_&�����/~y_���O�����U����},��N��>��~=�~g��T�j�A�J�}p��պ���L��&ӽ_tQ������A�y�ʻ*W��e���{=ٰq2fkF�M�����#X���F9.t!��:jIE5gR�A�J��ۋ.�>��ƺ�g�.�yV-�p�R�Rb�_�A��dډ��A� 0 +��t������QOW�қ ֨��Jc�� ��F��%���&A����r�|=�}�2c:-m*�^���*�.���;��Q�voNG� v婆gtv�7�G�%P?۹��B_m�1=Һ��ފj Jx�/P1�,��ɂ�N���i����w�9���7�a�[�ɍ�0���D{Ԅ<;���{�}/�ۭ(����6`� �J67�� +'�);ӓL�O��U�>F��{D:a��F������B۫�z�&(�O�O������SuW�Aq��� �BⒼЯ�Β�hW����[z�C_5PhR��,�d��5���[�e�>�-�m�5ӱQ�)�wT���ZG���,��e�S�49T�C��Gx�O���FVlr6E�8�7/kc�6&��8��nZ����k�"��<=U��si�ˍ�R����c;k�m�����4��Sx/�� +ۭg�C8�n���mKs_*Q+}���2�C���V�=vj�W (�h`��� .lL[�,�(e�)��w$�GY�^�F�:_��k��Q���v���٭����U#�j��lQsW A����]O�n/�"�x׀ X�^�ԺԚ��� �ĵ�4afd��1��Q`��-� +ç>��zbi%��DV�u��Sȋ����ֵ�8g��7d�Wҝ�T���=��h�U���������aG����<����l�a3]l��k�f3a����Uw���v��k:��ɂ�9O.Z�\�WpG�[����������� S��"�Fg6���f8��R\*F游� �;)֯�˧)%W�!�v�@v`@��2N[E{�I���� +�:uX�b阞f�F�śxL;T�v��q�({W��j( 8 +���\~m<����R@,��la.dY�7��fq¦�X�f�����q1���^�G�s�v:X��:Zh�B�Fy,�ޛ0�!6����m0�u�bZ��C��udjv��ՆÉ�-�oG�I U��b!Jm�I�JU�c]�t��ze��w�$�����6��#i3{��ZF��:��Fͺ��q���5����ܽ��=p�N��"n����Y����q:��۟٘b�ѵ��9��ސ��u +E<F��)n������$�d�zAP���J\����1�څ�ϋ+�ɵhhNr��O�:��,�Ic�c7�.#۫�Y��m6������^�����y���n,�=�[k8&����u_������Ʉ+~;��y�V86��6KL�j��F���)�%Y�r�U1���+s�p/�%cV��rL����Gih>�7�[���cC�\�g��c�dw���q�z�td����d��י�wEI��e2=�n�.���\����F�t���n�ZQ���֝��x�nÛ����2�-ní� ���Q���Ty�mcq;�f|�n������`��[|�2�n_�\�sS�-m��C���{�mx���~GPP� �[����6�ܝ�q���j��UO�G[����wg�X����2��p�;�mx�hU���j�b,4=d����-v�&���6�0�fWD����>a��j6��ҟ�u��ϭ�OuС�����Θ�Όo�v2avf�m���*�nsG�6<銔j��f�Y�v�Ls���%�0��v_nÍ�Z��^Ct�m��V��$,��V\��5 -�~nÕ�s~��6�q�����m��d{|ntE�x�̲�,��e3��͏�@.�-x3ۿ�ʁz������O���g]v-s<����~�bAu�6|茭qy;�UK����o�4`���M�;|�\�٬+����7'+�Y�k.Of�� �o�����lL"�Ey9�x�+�Vk�q߆�m�I�25\�d�9 +Z �����������=�xt�n��?��ԙ[��������7��������]A��߄��l�}{q�z�����a啹�C��͓u���-��^��N�v�� n��mř���\��h���7�u6�jߔosMn�ԭ���=���=�4�nsv��F�<�&�{7���G�+P#�r�v-6�w����yq��?��K������u[˺?��nuQ�ē�p�K&�.��$���]�XAk�=&�3K_�K.���f������M������/����9�#����E�G�0�c1�m��� rј��n����Ɂq��4�eZ�.Z��\ak;t�� >��˧�#�}�"D�fqm�v�iaڕ���)E�O2 �g��nRc/�$+ +��2Y�oߴ xV�!�xs �Moi�2�&U��\n�@~-3��An)���e�li3���� �Սv^L���)��e�=�����y�E�u�]]9���� +d[�델�k�ЦQƓ���zY�ĩԤ���"J��R��*��>+JlA��-��X�[�.�Y�Ni��CK�ӍO1�?���0�7Tđ̑[�#���@g)b����м�D���C3����Ct��7���]D��������!�q�̣�[qf��(ֲ�`[P(��-G���Z��/�t������u%��� +�ڨ���V1�k�]�O]7*j�6�fc}�.\���{P�<Q�u�;���,�Ԃ��bo�E�"�β�Wi�� G[�ߊ�M=^}�։�Y�A�uX�ZXф��?�x�L@{F2IA�]\.���l�)q뵆tm�yQ�m���yB$�0�0)�����ژ��6��<[ߋ@��h���_��ئA��mLO}}��1�f�Ǭ�}v���p֙��xc�Z����5�TC���]�a}U���2y��o��(���I��~gl�V-�fd�P~�я���fQ^����xM�TvW@n&���ꪪ�ۑzyZ���ڸ��Qo��s؞ń*�� +��:����k}V+]$L)X=a�Nԛ�q#R� �c�u췠G������xev 3߭��`v�Ìék��ro8K�:���(o����5NC�Ï���8F�B����~/���z!�h= �D���;��s3��S��V`���N�����4�=�P���skOK�7s�I��S�m�|^�^Ʒ��]B@��" �3��y^���p�� `�����~�L��O`�E��Tv���{KF��J.M���K�n�VqWCT���ɸۺ��e�3ٞ�ߏ�������z�J�<�)@�2��XI]J��"�`�QĦsz����O3�����ߜ���%E\Dxo���U�j���]1�u�$�~�m���?uv�,�P��i�3�E����ӤÚ���%6骯t�uWKn�&%N��K= ��^�X�qw�"7��+��]��~��&�}���1�ED<����/�Ap�ONs�����`*,�(��n�L���Jh���o�Ŝɶ�8hm'�������v���j+И},V�,c2;�0�"|�dv�e�]�0��f���1mV���E��gt�z����y�p�3:b=��U�yŶ���D�9�J���wX-�\��P0��C�Y�\V鈥�Dq�m���!�89��a��<�Ep,!VL�����]<Wܘ�0��f�zb&�t�z�"�R&�t�z�KYf��A�+1��,�ӓ�^�l'�2KǬ���HSY�b�d�]_WL ��Gǭo�!�m-�����R�eV1����"a +Y�q�ٴX�͘�0��"+����0�C��+ś��u�1��&}:^V"��^n��av��YQ,�&t��a�P)�Y:^�`5gʣ�����2;�0[ȼb2K�#��p��}:Ve�Œ뉧�Sh��5��h� +��s��;�֫�Xɔ�t�z+�L��^�#�Y��ʒ�4������Y�Ș����[�3�e�{��3Ů��E����:z���:�J�t�:�Ҙ)�Б�Oq-3y�d��V����Ui����U�s]5M\|����R)-S�t�j�e���:���D̵O�8Q��\i�P��iV1�������Q��ȹj��vQ'�<ʸ +.R�u���UL;���t́C���w\�0��G2���L.��o���+hu�v��n�DZH�*����H��+���hpS+�`t�@yR�Պmn#ߪӛ�:G�:#$[�t��* �H�QW8,���mw��b�����[��E�\0��q��~>W�8.���1����:�����qG@dBx�X��u5�e�3|\;�x�ez��ٝtٍ�������<��]jQ3��Y���J�r(<�'�]�Ӑ�*y�벛��+|N�]�/d�UT�: �%E��0�d���`*�MF��U��L:"ؓLNu8�:#O:�ؓ\%1�cU̅E�L�XK�i�M;b�S��D~V,�9�pO{]��\�y��f7Pӌ��:�bOe������n�g1ӭɴ#�=̀��H�A�Y��lS�#�=��*�L�|�iG{����\�o��XG {��H$W5m�ʾJDȘ�:��WYT.Ŝ�p��0�=sG�l;8�r�:vٖ����:"�W��d�U\�z6�]��o6�4}!~�������ຳ�u�"�O�����.��\<��a/d�ʊ8I2&�a�e�������`�ߤ�{n�~$Tp[p���v^Kз`�MO���}8�I<��&&�]�N�.������,\�`�݅?ũX��ǁ�~��y|�d�#��Q�"�i��_�q�:M{!�kuFa",N{����Uxvq�0��]>�n��ǡd��z�\�Ԃ{�5�;Bݡ^��Lv;b�a���a��G�Br5k�������y�:���e�#���q�4���.���B�M��n��@����"c�B��N�e��?VL��?�]�U�g\�=�2�Q� ӝд�Ďd +eM�5.�y�T����쪡>��f����8����0��0tű, K6��N���K��m1}G�i���m�StIJW�M=d:�d��������;�����j�d��]ԃW\l�i��0�L���t����8�J��U�X291��O$�&'�7t&����M��߾�Uf�5:�kE&��N��4��*e*+v� ^��1�x��3x��d3���@�'�{���d��m�C��"f +�]��K��d��һ��+ �ߨ���xG�{���B���L��oDz���4�L)Tu� �s��I���n��x#�,�J�'�k�Xz���k�w��EZ��e!�2a���b=�J��`9�¡N��`9��f~�e>^���>��!8�\�J#&���8.��Y�],��2x,T�d�@�@��:[2i�O����7qY2Y�"(ˇU�Dƚv���e�\��4�﹙R�..�������kL�;Bډ\�ɚ�w��e�u��E)Pf��džW�vq +N�w���SpU&ũi��N@\��.R�w�VlǏ.F���q)�Y�D��v� +��i��L��.F���*�J�]���4��,e;t9i���E溡p� +�O�9F�I+hY�����m��q��D�c%���l�u6���I0h���<b��N�Ac��HV\!��1hL�ɠ��N�$4��/��\����O�,a�/̺��wYQfL�qN�ڽ���)����Z^��VĠ@�frJ�LV�L�d���y�$��TD9��e�ǒ�.{�d��\2PF��B̙����1�f��2��iu�s��̜��m��k*MH���)�����X�y�5����8.�gL<�Y� +J��3���u:L6���,���� +�=*0=ɒl�t�=�Qq�X�"d���zT`z��0�����4N�&0��Vs�esJ�,�"��W{TX�J0��g}*&����`9�S1�E�����r���.�o2&@ά? �3�-}**��Ϫ�`���TP�:Iqm8�1i�B������Th�Z�U�������3u���g��U�\W���>i7!S��٠GZ-���1��*>}����b�5�Tx�&K�תP�\iv!r�(5���7Ё-8�V*h0����l����{��� �0u$B�z�`F�\����1�'����i. {��4f�� �uT!W�gH�Wq�1ףR +:��USɖG G��x���!��]����ӷ�`Jg�Tlz�L�U�Zr�@�T�z �{�25�����n:��3�b�?���).���O/�,g��FT�z��7�:M��(�&��4Q��X�-E�U�I� �)�p����e�u�Q!�X�K�� +P�*;댩�lL��\F�<˒� hL���*��>i.!����1�N�q\K��̹��1�N��j�ԏq6�b�Ivv�t1����D�t.���1�����G��DŨ�Ey�:g6�B�w���)4N���]"��� 3�P1 +Q�\�xB����(e�l�|�ɐ���s�H����@�>f\-�fN��5�X櫊+Yv�ӭ�'� �_0�v^��;�G\Ky�a���3&�N���{$"sM'B�Z~#/�� .�Ù�nmgU���Y��* 9q��2x!�f�3'T��-҄ ->s�ԫ��չэ���֗�^�~��[�����>x3�hgN�zm�]1׃Ϻ,?�{�z��^[~V�\Up'>�6�"�����愧ז�4�l�Z'<����Q�"{�4˜����L��\k{��^˼d*��:��E�r�q>�Y�gky�`U�4<L�L�ZN�,�JU\Huk�\J�t�V7f�d���R�uΙ���l�6��2.q.�L:LWE!�w<� W�R@�/&ˣˑ:�w.�t!����,ce�|��q��O�|�L���՜m)����U<ϡ�v�d��]_U2O����0��qNͮ���0�^�y�#������Y� v����k��l/��]�����^9�H٦��7�<g2J��Cufθ��ߩ���I�b�ߧ#�a��L���a�� Wp�Y0��ב��i:�f����;��\���#�Q��\�(�t�:�R��L��N:�a���,��-�g�c�k5��:N�E�3��Q��P�:���P:��ԛx���t�z�$����1 +�L\�:�0�S�%4w���;y�e��S���T�?eL쀎U�g���䢣�qv3ͭ!���,<[fɊ�2�ND�Rv��~H���8g�kRf����RmS:7���w"�>2YuX���K,��pN���IWL�Ɛ�U�e�"�;��p�'��)�����"�s&���k�x?./�Lj�W�\�dr�d��to������'���]yc��R,2������fՁ�dҙU�Ǵ�,d{�I�U��dvJ��F�꜒p�]Pyc�H,��'_M��\2�^H�6�BGɶ-���勬,���Zod��\EBX���S����rwZ��Z�g �FYӖg�B�)����>�����\ +�#�:��*�R�<o�>S+��=_�=\����͂��ʙn�\�yk��8�)Ӗ��׆�wL������J�iUrY�]_�D����ɸ��j�-����U%"��S�`*jM��ƙ�#r���,�&dǴ#va{��+�v��obȺV�kYM;��7Y���=�_�D"��-ӎv$�U\����n���E���#���{��;N;�+u��Z���U�u�5�]���4K����~��j%�N����Zm��k��]�t��t ��uD��q�8g +Z����Z�NLvex�e8/�#�0��zG�z#�L��\�ų��u,�5�}Ĭ#x��e̕ �f]vs�ӕ`���^'�zK���Lw�?�3�d��e5I�`&=0���&c�x�mݰ�� �D��a��+Y.��N�<x���N���2j~�}�$�\U��UA��:UR�2 2��0H�=��14�V� �ӳ"P����{LO���<I +|�rA�T�3��`�)ճd\�8��I.�"�ބ�6��S4����= o���-J�Z�7�ly�^��UV�A.�u^r�\F\c��od���">��:��YX���Z��8�l�e�D�Lj��� N\;A*Vr7�+'��"��A�d�����k��.z-�\�H�{��]�5����e���C����<�W^B3�jQ�Ɖ +\��*x�����.Ě�R�s��@Fq��NǘS��?~���R�&Wk:K�"/��zX�fr$R�#�m�Zs�tj�E�^C Qڼ��rlH���-�l]%" +)�p���(�&(�;���ޘڻpPp��#�-ԧԋM�֢\�����>X�0 ���b�U�� +�K�W\u\���b>+�2���ܩ_������Fs��&��|=���H&�(�`��� +&�~��"�֘�����>�ȡr|y�����X����Ӟ�aFF��sX|�q ��u����Eаc!����1@�����=B�LTV~{c4�Dƙ�g��0�X�R[U�=�*�0K^E�ҍ�q�ԑ]�Q+.�ƮD�<.���ڃ��)��� C� ��c|��,�Φ�t(6�S�/KCCݼZ��)��+��z���W�-UAl��ug\�8��c��3� H^E�&��x0��T�#�2'X.ˆ�Lf��+Y�',+u��xz8���@m�#�r^ T��NQ��a뎨�e�s93��:2�|�d�́�^,��D�L貞�.�pHK�rc�1��zH�H���������"�|��E�g{�I� +����ԏ�TGt\q�w�"�*���r��G�-�G8U'�4TO����i,��XL�8"�I���f�]^e �:yZwp!��?����3�q|NrUa�3Yt���R��y/��Z�₇I�ֱ�vb�a)T&�*���Ϫ T��H������"0����R�-�����陵J&3��z,�)8����d/x��tG��l#�l�\\/��A�ty����dZi����qy6p{f�7�}��)�Û:1��(a{Kđ���"�{ aNja��?ܵ�n�����ȡ֓�6M���1�7��hƔ����<$8M��_lN�ab�%.N�Ĭg�)OLt]�r�%��w�d�,���������u � ���l��*��]���& (�T�G,�Y�Dp���Sf�P�f�oF��;m��&S1O���:ŗqI�\����ɫB�Y>j)mƄuR-�t\��� +�E��4��(��2[�<Wi���e,s(s�U��D��n�dϱ�؝4k\�x�Pw�Վ�0��g~���Η��'_�8[� ��Y��\?V����&H������W�U�9��"x��X:�RO�(�B��\ԴM_�c�q��"�EX;m��B����Y�X�� /(S�c���`���*��qq��/�N����IL�Ԍ�:D�Ef�Z�K�_ΥZ�+��2���|�߰��Sy%.�9�����_Q�y�ӿ�� u��)h���^U�/�a�֢�=%.a�������=< X�Ϥm�S����Wߞ<{��S�R�e�+e~�đV����E~X�9��ԯ�2���O�w�z�S;�R��j`���_� ��{���P���X���u�~/B����ڵ��g����aWqL�+o�sO��rV��`�NjF�A(����$[�{�9 ������8�'c3� �girQCl2�n𰣝[8�)"��3�5BsT�a������,��*N�,u�)���4c�u5B�B(�� ����MY]�c�"tCD+�Ab�)6=�Y��Kp�6���f}���u����T?Co7~���jAh�ٶ��al���@U�L��v�`����Sk�rc�罃LN���P�F�F.q��[WC���2�SO�>��G*���w������z��a�[�@;��R�.����L��|�/n��G�=Y�� ;�� ��F�8��ޣ�=�m��������]��̋��-�� �W͓�n=����#���h��!�+�a� TpǍ��cx?�<�};+ul�zR�e|Y����������?N(��[�6��,�鯜��1��\����0��X�9�z��y��y�v���^�W����e��ԓ�(���>>�����������yK�B�*{շ_ɀ�3ᘮ�Z��r��@��;G]�$����xL���[X�\��Tq�3�}{5r^�_;����b'x$���}4Ƅ].{����0���8�y��pfI��i��[w\�}�ʢ*����elq�f(n�fV?TS8d*��>(���U����=�6�Y~�aUʻ_�����_L51���"\����/�=�5��\w?��#�J�/d��:Z��1;����5mZ���`�ڛ�@$�� �*I�G'o�>�R��/�p�K��1�+��}��_�������Be����5g)�����T�?�"��Md�(��� ����_�Do����m��?�����Ep&/�O ;Z��Ti~��}�7�P�w7��.��`��� ��1G;Z����|�����͙� ?/�MuX,z�_��h�+q���ockx�]�F���j䁭[�����yM��|�� �� �/�8�3���1d~T�� +r<�g�C�����e���6"�=�d��mlL=�X���k��cH=�����E��g{S���˟q*|��a�+5C#��Md{�0���ﱵT�k�e�����Q��YQ�����Qq��8�J�ڍ��J�#� +{�=��ґڪ��D�sy��n� +E��5*=��\f�s�V�лi*�����j�B�3��IŢg�y��Z��=��W������ȩx���B�S�@k$x�Gř�D�y�T�y����˳�T�y�N�!�`<d�}*=���x�xO��T�*�����i�5�ƨ�s{�5�bρZ���ɀ�:��+�9�L|����(7��Nq��oST�9��џ1*�U�=vƝ��-��\B�iCE���e�P&R���?�p�N8N�|�=��֒����n�:�B������*S�`�ŝ!�ׇy��8����2����p7���_��p3��͡�y����w�R��ni|���~G&�c�,�|@��Nó ��\�vBY�CL2=���{�:�wEں~v;�����琡<����om�Q��o��N5�#�� ����Ua�V��l�ۛ�D�#��qLE�4�!0�'иבn��8�~g�"��N��eڎ��:�dŹn���y������SY�XI�g������V�c���kL���������L�$+l���}o2&kB�C�f�˟}O��>Y��B�{~M��t�v2��Zߖ��B�`<�ɰ���ti�mw'�G[G��c�;L�� ���'L&�`�/�4&TX:g(�M��S��ާ씎8E����}O�i��� ��>.�,���Nɛ1s�-۸o{TzSi��U߫s:"/UuM���������]T�d�B���N���,�K�iJ��2\z�H�n�o4�>y }��'*=�`3�m�OFZܚ���*]+�ڌ +<�rM-YlRA�H��`�c�7���z_�.�H��ޣ�l�-�C +RҒ��0�u�����IB +2������|�2ν#���IL[%�»9*2���e%���U�5$�I���v,����Y5�b������N�� +Z�\���;���z�Q_��E]3}/0Q+����,�]�\x�F��e���ȭNMaunBu��~����&����&A������w��Τͻ9�������'���4��)F���EyL$��fޭQ��k�����_Y����_�2^3,2�'1����**�*�~��p �"��Ǔ�O�knB���"�1Ⱥʢ��) �<�)�� T��~uj[.ep����3x��$�u��Vi��»M2p�R=oΰ�HH��ʤ��6���w�k�e������^?�����tBݽ����z�[�uZ�N�����Z T��������8�)�Ӿj�`�:�H���4�dx�4�{��TM"��}`z<�({��|��>�\��=��D�� �#>�j�t�rXI\�˧�WH3��~�@{�FE�����G�-�P��G��-_��H<�wp�U��ؿ�Q7�ۻ�1Y"�{�@�c���2��R��I��8E�7����H��w�Q�c��Ex�֣�呄�i*a�F�n��w{�J �XI��^����:ex���7H�e�7���HzI�[�#�G"g8��h�X%�a��7I�����9���?˜��x��˟��Dh���%L�{dtI����X��o��h��xd��Tt��OɼZy77�E0� �~��r�eUH:>���d��^�ȼsz$��ޣلN_B��Xvm^�w{#:��n� +/�Y����{��DX?Ǿ�_[^`���;��G����J�? ��~��л�^���V�v��S(eZ�P.�d�&ŜGIJGb��.�U ��qwa���n�<;ū5��\��Rx$��O�Z��P!z��[/h�CL"�뵛�إ���VҶ�ۯܐ�k 2�x��k�L��3l-Y�f$�� ,, �~���ͺ��`�d���(�#�^���Z�V��}D��ۗO��4�4ޭ �E5��2�Bz�F^�˕��BL�������Il4 +��_��RNU�> �>��%�V�D"C1��"с�v�w��DJ[�CN�'�Ҷ�T��w�$Q$b�Cw�D��s�����Jz��h�c��XJ��xϰ��"�Ƴ{7{�Gb:R�f�1���$�Z��5�(Ln�u�K�K=���P4Z�7����Ѹ �2��]���?*�z/��I8�c=j��w�T,{ �����@��.&'br�(p��8�4����B�A�"K��C��Ϣwb�}n�ޏ��"QD�\m�*I(T3�L$j�'q��Ac��� ���~g;����+����� �}�W�[�sQ`]>��v\��G�0��\2O����9���n��6`���߭�I�U���ID5^vpu� ����aFK��npбLD�?-!Q����$���E�y�Q���q�=�$��b���<4c�.~=�8ǐ�W�KQ9��\��hK�=����D�ܒ�kB��C$�Yl��k#��}�������?���l�D�!+}���ݼ[�5��P�p�!��/�0�b��H�{z���{�hzE!�A2����0��N�,%7ۋ�{�**2qU��}��[�{�H(gB��?y�OKl��K�]�����!=�5��m� +��8n��7>�iO��B�������7��ZȻm*��S��N��y S}nТ�.�f;[�[]����z�*?�[|��~�̽��{$b\�K���[z�N*��vC���I��l3��.�ol�}՜2ȹ�I4��}f+�MhƊJ��[�nmc���n��C,�~}`~��s\�냒� |�D�?I�����ػ�~�ֽw{�n�Z,�s���B���E��%^�p��I���J�^��U��ã0������� i���Z�?��=%mG�?���m�n&V`�,�ߔ� t+W�|�8�V�,j�E���s�C���H��a����x��_�ꟃ�r��8��$W�1��,I����W���p`�I�z�"�������M*n=�+��u�4UF��Ev@�� �˻=2�z�ڻ�������Ut�Ѐ���ΊR�����лɭ5( Uu�>L:��y679�J���w�M�3%�i��$��-O��'�hJ1���:Kc@��7��)�݃~��Akв|Z�~ʳm������9-�xހ�����A���*�9���ˑ�j�����-�D�$q*9�쌞åz@�V��~�&�D�W*]g�Y� v}����ʻ���5����'��%��̐��u�_ e�Yw���.�T^�y�d�킚�-L�߂l9q�@/J/fdg��P�g/&��H�����pà�7�%�6�g�Ӫ��ۢ����`@7�b"� [X�gy|�!ӹ�D���R�5�,/��`�� �[���8��7����q��������dy�$�����/�<�ϟ�w_1;��H��Q����0��y�� @�V����Ol� K�.j����L?��"H8�$0� nGu�a�YP7<�//7n�u���6��NBsڎ8ã�G�8����/s��βԂ�-�&�� T���ܒr�3��A��i~��.�-Ò��> �]��7�c8.�xx��dQ����`U�J����+$����">ˡ�w�T��*��O��[S*dh4����Y�n8,�l.�$ȽnZ���3��uuz�n�D��ya���#�^�ދ�Z����&�Z\@�?�����k��fA���x�#ڸ6�= +�wx^q����m�9�N;�I|�<�8���E�� �ػ��6T}��f�;z�rH: h�;�a�,N��$��X��Ƌ8���gr�.H��ñ�D�D�2/e�O�I$� 7S����߀D����Ի-R&��ە#�8p�U��sP��B3֍k/@��{�beQJ~�� _7B�n�\�^����[�t/�\�C���on�>Ֆ���F��:v`�#��wHb��nh��`�NZCY0�_�$���c�w�T��Q$��ݫ���+. T���d��㳄��p�h@K��������g9\,s,�!��?��x.�����K�pZ�_�3�Ɇw������5$�O�x��^�G�5cK�!�x?�&����.m�"�LH��C�cHBۏ*�}�I�H�1���nI@;��PA>�.c�a��u�py�W���t��Y�d*K�$��{��C��D���}I�=���,��0�4�J��9��z�ι+��7�j���|ӭ�?�� !S�J�J�CΠ���\�����X�� +�L�����H�yMk ����?%�%��&�:�p�! Do����=�U�@����o�[�noTSJm���� +;���h�*��F�q.~�H�:�pH��[�B��ц$��+���C��4�ems�?ⰻ���YZZ�k�G +��J���� :Y�B��0$^3���{-��X�����2���tH�O�t��Y(���H0��\���BK�/c�u�Ѱ�Ҭl\x7H����Jġ��7&��*y#�;C #�௳$K�Х,/������~�*��+�G�}R�?V���$��)�1�˕��/��������#�G��Z$��(�_�$��_{�rI��w�[T(9��ɷx�g?�V�m�Ҙ���C��\�s{z�}�om�ъ��f3�cȅ�G#�K«���O��S3Z��N�o����,ٺ��L�q@�H,��e��bH⧵8�����Me�T������'*[ϱsA��/�L�[�&<� +;��MzHB�_�T��9�O�ߧ��郵�c|���O�}s�U�Prͻ�m����! �>(�x� �?$��o�_��X�FP�>�j2 ~-�U\��� Y�]���~�C��T�N<��!�s~��ꅂ傥�؈�;�e5���vţ�+�kh�'��� +SZ���e⽏�DGk4[�����و�@����»�і��{3>���B߿�IW#h����~'�л�}����D�Wqj���> o~������I"��T�w�l�8U9T�G5���n�2g���H@�".�mv���VA����v�U�iX{��<ß����Jo\��������0ձ�������~B�M�.��`�M���ҨԿF܈DR?�J���DQ��+cJ�JqYE� +���G��d�p$~�+�M���̜!��{� �H��w��a1Uk�?ic���/�Kɐ�;Ћf��osL,�N�,��@F�ػ�)ٔV}�(�p@�g��,-G4���<����"�iđ��Hk�us��@�^��� ZP�݁!�=>K���C��]s�G$���(��$��&s�����Z��p�ɻ�?I��y�o���w�=���D�HH�K{�S�ͷ��p�?�`��KĻu;�H�������8Uiv)��G��Đf����!�#=�:+b��K���t��g]��~��֎#A�Z�9à��c�А@�jJ��/Ce�e�"(���oz���7밬�ד<�?8�?�y��X#�m���0gK�ђ�e'�:'d9���l�+�*Ix�8s�7G�E.��Htvȡx;"���.f�W�G$@��As,[��D���/�z�E�̘�f#���k����Ӱ�%!�� }�{'+���$���(�\�<���a"yS����ҭk � ͂u�Eջvx���+T���oKZ�H���̈D��]����;�pD�����D"���p�m�B�rX �M����Gĉ3&��؉��A"�{c�����$e6���ؼ����4�3�x��$���t!�D�)<"��ɜ#.N;���qӿ=*B�U&�H�1%z�KV�R�H��푠�t�%�͍isU�`���jU�e��@+q�%t.��"�W�gk$-��FѠ�\�f�W%�(?����G$����kG��C���"�=2�|��\�; %,�b��&�D�+{���?߄��.�b��$�\Q����Fb��2Q�TUx��c5����¿�Ø��?���ϩws�T�JU�nQx7H��C�8&�ߏ�$>g�/d�� +�5�m���?�Ev�c�w��J0�e�<ΪsYz�I���Je��t�d��ZpL�W� i��=�$�[�� һ=���j�]�TZFV��.�wz]����O��L]1ς�dI�&�����x��{t����/s(�O$h�S���a?Yz��9���� ��x���8��w7���,�V�e��2֫,�����k�V��̻I2eE)�7�+��V�u�{@$� +���9I1k�&W"g�HŜ���}{&1�Z����x�֫����=r�,�nR�$��Y����D!�dI�� +C��1 ����?�d<�і�ch�L�q�_o<�tn&�e�y��H��Y��$���2v��.����,��ђ�ji1�iR�Z��_�Ix�W�#�#��_�,_0أ�WK�M��P�s����I�W�����S�\&�� ��*|��#�D���������n�O�.3���Ns��v���8. +Qy�:�ު����~qy��ws���)�(��§@��^� !�/�4��$ +�E�.r�r�U���$�%�5�Ke�Py�H�wrὰC��_���$��eɀF��毳<b�y�I\�7�x�d���o$�R��Z�����o��j��n�G?ߢ�y�$��PxG>�I��d)i�p��˟�»�Ԙ�'�"+������NwB�ؐᲔiQ���IH�a\V��D!V�j^��o�D!���B��c0 B>R��{,%1�`�!���z�I��Oiqk�^x7F+�'����"?y����;�?VK��~|$�<.9��t�e2�.�0��w4[(�+�I����_?�W���8�y�M$��(K"��ϛ�m �� +�1%�ML���x��YG��+�O�I��Q�n~��/F�G��6�|u�J��_�NH��kq�s!��x��%NH�10V,�ePϐ��o{��q�Hd�p���h�WjO���-R�����"g��*^0�&$��U�=LH�q�����,9�n�&w�R�V���=����e��HE��@���V��&���-�uBb�_�3��դG�NM�W�&�&��6+�� H~-֗��@w��� K~ �r��:t�u���1I����2q�}ƒ��ו��P��w���PńD"��V"��7!��o�s���b����d$�{�F�������$�幘�"8�"{7K���T��<!���"\�$�5Ѝ�����;�bB#��$;?V�W$ >��A7��X$��?�pB⎏������W��OHF�n���lp�:C?�@^E��}.�?y�hBή���7�#@�<Ez����5{��$,Y�<`�x�G���_�k���]H��'V|�Y�I�|\1�Z'$(���?��F<3TcHH��s�� i�"f:Ci���#�=ׄ�$�A�Y$(�$�~�?!��'ٙL�cg'$$�$K��$��'����/����hN��t�X� M�������v���� T>��������&� s��C⒟����^�'u�E�C�u2�I��d��z�I�PT��QI��R&.�ۣb�ۏsɴs����DZ����$q�O� +�<���S��4NH�wR��Jz'�LH�D��r�We忂A"���6NޭQ!�9�����j.���I$�Kh�� �1!q�GF���%�̯��<�W:�$"���5�M&Î~Ź�|�o�V�mv�[�#�4����h}���ܔ��� �\.*��'�0�����c�x�%C� ��~�b���K��ʌ�}6!�Ө�������p��ϙ�Ԡ��b�UޛMHP��a�0��aG_/ݫ���&���� �/�<��HGl���y���J�da��B�n@+i�{`z�%�Q]k�M[�c��Pn���o��e���g�~1\b���QS��c�����d���H��ws$�)��s.��,M�G�.E���4h����o��K����K|1��rH��.x7G�c�Er�W�Y��F���NB�����R/�~�O���,��N������o�G�)��6��uO�Ox�AfJB�_�d:����ѡw���}.�������%@�O��5�Y(�=��v�i�m��ؿ��a���xaS��2OI$�=(c�r�Vg7��;��)�2��|nJ���_��JLUD��NI0x/*l����zs�*�1/������4N������?�z�w2��˿��CB*� ��7HL�����"YS��\�G�s��q������1ݎ/��dAy�sY%��* ,?�RtU�h�6%��߶����iV�a�W#������bF��7�������k�d�I�Sz��� �UÔ��㖙l��b7eB�L3�ſ) J*�����$.�(��y� c����/��)�Ge��orڵ?_4���N�����̚�Mz(���Q�X����<:%���T�/���(�[v�l7R��m.��oK_ +{�f��������S%�:˃Sq��j"���dQ�2v"��C�Xҿ�utx;/S���f��ݒs)U$>��N�hc��������Y+�˔) �oﳜD�?�R��^��$ l������-:�ϻ�!�B�e&G��)��?�acT�@�r�"s]h��ID���»��N�є�қ�4K��ӛ(�d�՛g��^���Ӧ9��,'x�$���S$���<.X����u;��T��{0&a�I��z����4��Gtc�p�iwұ�U����$���zr���^]x��݊t.5n��Tw�N��B�e�rѸ� �pY&cUu�^-��%Sf*�^@��̹Lm��?��d��Nt����~\"���R�3$�{s�h�N���0�o� +^_W�C�����~)Jb��s�$0�X���"3���n��n<�nk@v1������fM"���yE���J�m:�����X'rHR4���>�t5e�>��tJ�B�/��fu������Ng0�S���x���p{���᭒�����br1����~�D�~���z�$X�B�0y�.n��T�BB�wkd9���7%���{�D�tb��uF_ʝ˼�NW����Wj��o��>�Ȼ���������I���������X/�k^�/�t�_dy�P/��e�d�<l��}̳� W��ܻA ����x�G|@�/ +�Q���:䗿�d� �ҽ��4��j�Vk'��"V�R��f�T�uז �7���bF7w��J��� w�A��H�� ]����x/=��Ļy*��H}Xʜa��x��{0#�뇕wS��λ)�{�wS�����7�*Z:ػ)f��*�pO`�B%f����b�G�-NI�G�@����pe��`�E��x��6#����8��t��"�=z�x���g�%���қ�J�c�����b%��ݽA��wcC���:Kc����1k��� �;��栕�Ej)��,�LS��l+hr��`����������Jhv�� �3,���_Qv�����WY�JR��`��B���P'c� +H\�υ�݇ƛc� ��b0 +i�l�Żcd�y��r�_�xFB̟�I�� +�v�!�đX~d��⩸��Ҥ3����_0�* )�:D 4����8��u��Z�!e��H��cH`��R<^�T���r��Z�>����`�+Vi��u�I�9��-�w꿐M��L�^�ҭ*���O�ں� �g�w���~b]_�(�����uk��v���qG?��J���!�� -z���φt�yΰ<f�4q�x$`�y��p$<��Z���gx���˨��1.4B+���w�T��,��QY|V2�E�������:H�z��7�� S����ȫ�3�"��=@��n]"�]EcFb؏y�FLi���8�O�I̺�g�B01���)��b&����T\���������H�k��lL��ٔ�-�ɖ%R=FAx'��H���<�>�Ǵ +�J��N���eM���'Y�v6�Ռİ?��,J3�^#ʸ�ʳ1]W�Ӧ��%����`�S��E�ϜMn�5#q��l�Q�t� &1���JG��w�S�_'$�%H�Yڻ�IWG��"d���������lK��ĥ�?�4�m�D�C��'9b�" .�W�Z��3�ڬL�,g$D^=��l�п4����k�/d"��H|������*�Z{��Ʋ`xϣ�y��:�b�%���!"�>�iwG��.�2��jhT���M'7� "�ݰ����p��bY�o@:#�_U2O�[�bF"꿖9���M��x�|����ァCB�*���(K�9�H���g$�=�ꑗ2�o{��v¢32�ЊWǴ�>Kd����4I��^ޭQqJ�o����������T�zT^�僖�4�д�V��"�9>�o~�]ұ˸��fS�R���ؠ��B"@�a{�eۿ�1Y��<^�y �!��͡ۓ���8˃� #�lO�َXв�rt��ro�e��&��od"�F��f�Ӧ��G��7o|�9$��%Ze��vA�m%5!���<̂To/28<��r��L����FMC��a����5����Z��3K�.�nee��@�f� &�i[���Yɔk�̺���|ӻ�����xxh�`���ߋޖn*�0!tI9п�n�*��5Pc�P�4�D/R�m�γu,#�_%$��+:��7�iDX��r۶�+* �fp�l�o����S c���R@0x3�E�[e�Լ��2b��ou� b\�z"�AB9A��$`0������[�B��Hf���x-����V0.�ًdhnI��V��]�W6SVi��z���="WS����=���d <���?ÔUM�L=��{��NAV����hq3.0�*Z��مw{í�l��:i�o��3<�o�����_�g�ޭ��`8�����,k��9�{���I�a��}�]e�uAK��vD�PXesJ�����]�M�1$�#���:˽����i��<ϐ�XT��ܦ��jqmVٹl�?�1)H&��&o�"��&A#u�J�i�r��vM�@�����j�t�Sw2��II +�?��~�T.�^�5�H�G+Ҋ��{1�)}��J08A��C�p��Yu-�*�-�vY�jN��ȯNf���6�o,B��:^ ��*�a*��}�ҿ1*�=Zɢ��-�����3EZ���otv��$��n�5��oUڨ +yj�c!����E�v��8i�<�R�ǎ^� �Cz7J�N�c���Q6���vn�]��d��1a����}�'��D_�� +�ei$��������Nҡ�B_�1>�h���h�6�c��n�dmq�9���H��+����iP�\}�#]����!Б�� /Wa��z"I '"�����B��7:�v�g�+ �^�J��E�~�ڿ�Ѷ&z�_�T��̿�qGZ��^ٜl%~44]8�6���H���?á�����L�gl�m�F�/�K&HK�D(�,ep�d_�����!��K��IE8HJ�����uwN��b��u�,�4yS:�c���E�˓��/���)w_������|7�鉵�NChS�"��c�b�z5=��3.�#�LF�P~!� �����2;%)Q���wj�u��Z��/���������#�v4�"Fo�ש*l�32S�m� �ҧ�O\�R��7�G�t�2�d��=<M�?�Ψ��&�r{�%�RB�{��E*��T�1ͽ��8�4�4Ź\\Uep{��jq��b�k)�����V�ڞt+Wiۼ���U�L����p�#.Wf7ۆb�ZMRlmo8���?z���t\rl���r��&�6��M~�����Dj�f��!y�b����َ!�t����oeoH��S�E�h%>�7:���o������忉(�!������O���Y:�+��-^�ڴ˳�{V�E����OZ愥���K�������I���Z�����`�bC&�e~�T�g PWBY`%@l��q�Uj�Q�����I�F��2�K�c�G���Y�����ŕ������\_��-_bŬE�����8� �a�2���Y�B�?����~�a�'[[�����7LB�L����H������n������qa�f�Bd�g��Z� ��y�Y=�D�R,d�X�B�!~N��q&Յ��0oc$`���4<m��̄�?U��O�~�+���"M�$��E��6�b��+���D7>=�y�v�溫%�HE ��t���5���G����U�����S�Ό�¿ʠu�7�ty��ծڋ�!ly{��z�Fl���� T�>o�h�0�&7�₻纃�i����nL��p�MzӸUī5��K����D��Z�d��pQ�E��ϕ��6ҋ,�2��"�QbR�7��[E�P���!É�$�<��X�mȹ��� z$�هP�y/z����C���^��ӊ��HSo����TD[i�l�h���e�Y�����K�{��5l�Z���z�����(H�Z}�<��n�>�_��e��(Lrx�@�#nu��o�qU�k~�s���������$�+�J��p�q?c������V�ɒ!���[i�5�¿q*�f�7��C�;�0?���HB �4��6�'�G3v(o?Wg��j$翋��Obm��#��7�u�?�zئt�_�� +$��:�s-xua.�L�˟�{�х�L"�Ԉ��������Q㊧�L�(7�c��� ���LV[�e���8�߅���&ۡE��Φ7�#)J_%ٜ�dE��,)��Rf99uД8�э�����e���$��"��@�=�p��j|Y* $��H�h-;�e�n�8�lz$�Ȏ�i������g�Br�N��n5�j����_;�"�AG��GI����N��������'���@TGe���4E�x +�D��xw� +}/�ys� +��f�����<���ro�^����uC�z�gK�:0��5�t�7O��76�FV�7���i��'�NƲNld��?�O��YV�"'Qk��q�����t�U6�t�Q�InB��Nu/�i�jz*��8�j���%�LOD�o��G��u�FF���V�L� \B�F,�͌Vg�f��]���abr�H�3�(6NӅQ�5 �=c6�4_d�1:3���f`�z$K���5��5���T��5ZƷ�>�D"���Y2h���7��s�r��{�ѿ�=REȽw�c�$-�D���a��������ݒW٤ �k��� v +m3���$3�Jo�+S��獨�����i�#���2̺i�5���8l�)�t�������d�_��O�}�@�EԽ4�?5��Qi�:v����cP��L�q�� ��h�*����nc<֬0��������UH�o��E�����ۜvt�ZiA��CE���ލ�;T�F1���3ބ�*^2lI�^7 �J��%ɴ:����w�@�RT�~�ep;�7|Qgh@I@�s�S�{�:Y��(U��ށCP�oI��*\)In�>����t[������m�$�D&�=�R�S�$�X���W�d�`;-hߔ-���C6ArU�~��߂QZ�A���u��r/x++�`�b5��oH7�S��Υ��a�d��ʓ��U�� +������݇����z��j�L:[��>I1[.VZ��7��P���ys$B$�ÛBkkk �C$S�~):)K��T=K�{B2��bû��a0�t9{9���)�G��E�جg]{��i��!oo���:�1�6::�K�~w�G2b�eH�c���h��c]I�G�[�2V�*���^���� �26y�f�����F�+*E2<ʈ��Z��@5�*��ܨ� �i�~�lx��ij��^����a"���ރ��S�v���m(�5w#��m;5�1 �KnP��A�� �?2��jg��}�ɮy^s�k��m� +��x�C[!��M�t^�� %�]�W�k���t�����`{�`��zdž���|�Nl6bB�G�mZ�H�H��DC�2�yM� 8Yw����f�U���$���9�<h��{�7�L��>�x9�НO��:G�;t�4������`�>$��͓��y.���WO�[%wԛ� ��##�OrW^]�)M�X3����k�@mD�� ����8x7K�U�k)?B�4[�I�߅�����% ا -�U�77 ���$��p����M�Y���R�g�K��180�w���L��@�-@>�iR�7K��8O��.�ڃӳ�7��a�l�P�d���t��������|�;$>�U�;)�Ɏ��|xe�|���2�v��d�a�}��3����,L�Y�m��b���X%���-M'}n~t_����c����C7I7y�)+�I���l6I�\1/�e&�&_�\��7$��T;0�=*���%eY�$_�e�Fπ'Y!���`X�$�M�d{�Vw�_�l@r>�Iv�0���L%9̑��*�07��k������k��Y��1���� ����b]-�cwHFFs�*�x�_c@�1t۟X���:���ɀ$f��!��k�"��b��b��/$�����ȁ�i$���4*�)���� ؠG�#P6 ]�J��A�w#��l�q�H����0�(2GG#����� ��l:�@�`F(�] �"�_E �;S��e����z}*��M�+���H������U�%Ĭj�.�^{[��4�C�<k>�ڴ�����05�*#����O��S��А�}�����2m���s�E�@��^wgFh�d���~6��1B�ö�v��y"C��f����/`n�;*�����NP�ڿ9RM���#oi C�A {�ݧ�-�������<�V�<���c�աV?�͚$Ɯd�-#�k�e� ���}!�,^�ME�+C��Ţ�.�ߗᖪ�GÚ�ǿOT���O�`3����&9�?=9�D�L�T���jGq��2�yJ׃�t�F���{¶�G��I���ho��ښ��5$��;��\sgsei�۬ �����p?��.i_U�\�-�����J���E�:�����ݿs�f����V�k���TG�z&�>ͫ�:$��g�����>�����:.��4>� ��S}��M�WJ��d�����,�c�#AO�N�[�#$���V8@ ��DȼY����z����~���t�e�9��8�i�3B֩Nđ^=��ΩR#R���"Ȯ��h� +���1(�#W��Q fL��0�>i*�'Ժ��������zkH�Z���eN����Be����+`ICg������x����<�oA�*s�`0��~���<���#q�Q��~�֠T�<��/Ć��<SZ �.r��8$b�mw6�X[l(U�n���U|��L�R�TEo����%���TI�BDbn.�:h��.b>m�A��/�4��R�"����������h���H���o����>~������{�:��vc����ѯ�՛R�L�,�y%��06�2��]��Q9h*���Σ.ɾ��~6��oz|�L N;����e`�fF�0%`�Z"3Y�%k�b��k��6�w�ٲ�`�fu���7?�Z���H��(�W�sX=4��bvuw����d�A�y��!D|y�y3ᶽ�y +��G��ۭe�0�r���B�Lc�-'`�C� +�_W7#���1�l��_)���+`�b�m6��l�y"���<K����1-":�/��.�1X'U��ԠS�ۜv�)"U�A�~@���gp���w�$�M��䪨8��H.�� +65��Il����t~_ t�%���U2��1M����b�%ZD��w�3��#p1��"۷9��k��1��t���Aq���l1��G�F�S0R�*�K@Ū�����R̡I}b�w��Sȱ c�6��l*�"!�:��'�*;�禪������L;g�jQ�Un`N�G����&7�=��"d@R��!ı$iZc��*P��I#n@Rq�mH5���� +��!ϥ����94�dhU> i��T��{P���t�l���7q(��*����$D��4k<H�� �xL;*`H\,�,�0�F�g��Y4H����s�2'���= i�-��Ν�7ٲ���sd����P��nDv�z|�K��}9�8�H� +Ĭ�U|�X.*S�kJ�H�ѽ��6A�'M'p���I �A��"�Ê���{�t�nc|�0��STT���X�$��S�2�h�>�qcI�0U^T2��I�k��ٰ��H�S�����v��S�fxdR�,�ZϿ�IG�*H���s�6h��juĶ�� ��t�N�!{h)��\�w�f6j(@��`�;T^��?V"��ӖT��u^����e�s����;_�k��*�5��"#���٣��q�� 0 A��4����4�1U��}g�TT}s�?��{[�Gp���.���ծ�FLڭ���.c�T�� +3ot��*x���'�3����THƥ5�v��G��8��S�V������1���uS��� +�"�t�꺯A��O^��[#�V���ҿq*����ʼ�%���& +��ܿU���ҎvH�Cs�����b��������|"�H�ܧa������F�X��{��?�����b5�����/��ʳ�1� )��[���s,��4&�����-�n� N�۶!I�4��4>�\H*�a���+�f�W�]g�Z�Rݰw�Av�����EQ�WO�������DE�˿A���������z��X�R{6ʃ��R��iy��s� +3`�s�~d8�I��%$6��xiQ@�)�=�TcI�����FSo7���j�X)e��L:���|��ޏ��ԡm���iW�/3D<r�C�z/8ּy\���k I.��(�L鄭:$��ZgF���R.���cK ����&?�I j�}g� +4��o{@.Y�mGT�k/*�r�o~�)� P�m��˿��I�N�PzJ�`�E�Z��aհ ��/n�"��m�ހ��f�4&3̳p���N��tY1�� Ib]ݟC�*k����3��H���������!�G +0�(/t;-�xH���*F2�^��O�C���N5�"�?�4�c(�A�� �2��I�:�ئ -�<;���Y�3�v�幦�%C�#�Xx���u���-b��Ll���ND@�K���jK5����R@�h�����$���ɾE��t] ���(-lغ��$],�`�aR��{$Y���##d}H2��%�<Ӫ$U��>�>�I�&9ʿ3TDfacI�s�����C�ot���%��4u����8G��\7P,�1"5�����ou|���m�7M2���H�轔g��Ro��E�/���F�m�lxƗ���"�����" G�^�4��H���]wB7w�(����g'�H_��3B,AQKm��"������vG[�2f8P�i!�PB���v$��_�j�C��4�t�<xġb6$I?odȂvv�ٿ�ޖ⏖�o�l{]�ւ~�V�M�B�[���ִp�Q����������Lg�"xqrt�/S�?w� xT +�M��$�*u�/y�z��\nHި�Ő呼{�����R��*SI��~Y�E��U�v0Zދ�P2���Z%ʾ�|���]���ș�C�9r�Ԟ�S�- �k��L�g<�d�������ۺ��TȒ����L�\դ�` ���Ba^YǴ#���x�>�HAj�P>b�!��ox�Y��f���%�6�L��?�������oh-�m��]v��*��-��V�.L�m ����g�V���i;*���k����7Ld�P���gQyΪ%,�� �-0�g�0?��o9�*9T����=��)��;�B���;�}��:R��/B��o~J+��)�u�A�~��`y��F��[��xD�iB�UX1��w�;e���:�&��7=��"ђ�������ɐ���vZ�-�}o�s��N��R��N����璡������p�<.LS��9����:$�4��{ +<" -O��\� 2�=�f�����#���B�2O9�Q�5����9"9.�˟?Hq��o�����#���S��ʿ�?r<�dk�%byf*<-Uxb07�D`"�������b=X����(j��|�֯>����0 �QYnC� ��oxap�KR��\~������������ �5������Ⱦy]�IŹ\�~�x���h]'��s#�[��"Ϫ����X&��T���kA��$䉸h��Ɵ +�Ϡ���z$���|����a�G ��?@#a���~"�*��d.�8J�K��؍�*���I��f���[#�mb�C��ʠ�T�J� ���9�J���hH!���R����Q�q�a 7gu���)�k�S�� +�cD������I9�9��m�x�}�^�5�����&� GZv�����c��e�C+��xQɄ�U�<�c����d�H���<�o��k�dEv��.I�]�x_�<�R_���Yӫ���ةH���%A�������g� +Cm�yưTf��2����֝���e^��F|��<fP�����y#�q�UOF�ͬt��U<'���9b���w����X���<��w�{��^����O�yKPqx�C�3�wW��Z*cw�+�UY��˿&�ky�s*��jԍ�_�Y$~f�~y������>�,�2�]�\7��ޡ��p��?i��u���z(E-��?V�<��C\�{�k�{�Z�9�p���dԳ=N��d��������i�� �5�6����Ls���s�g>&�'�������ZWR�e�(��e����A}B� |�gJqO$I�^F>���}5!��x��^9�Z¡Ɵ��j�d�Q/����]���P����7-�I=��P���:���:�n�c +��~ F�+���UQl)� ��%j�V}ӝ�����MB��㕞=Űͭ��ϋw�f��ɶ�����-Zx|��3�'1�W1<TG�p�?��r{@�����U�מ����P�j�ws������ĩis5�(̥��n��U��������@RO��/e�|���!jQ;�=�*:VS�̿� +���#�Կݎb3�2숤���e���|��lR��*�d�G$��������"��\m�h:�����lx����.K $Y_t���]�/�����6���'IB���0�4��M�[)�sjt���9*(�o���6�����&o�/�*97:�F����D�,�C�V�i�P!)C����gzsM�7�w`��[�ĥ�G��e�� +�G��⥃ZdOk��Uot6'�����o�Y*����RW��Q��+���/d�n�N��^�B+C�:ucS���,�^��o�L7P��H�V�Hz��KF�if��fդ@u+�V�D��lF�A�#�>y�J��`a�,pF�V�8�mU�Z���"��)[�1?$%�8K�N�Vŏ�r�$Y� ����:fH�HRh��*c�8�xL^!�KɁv$D����Y��[� k1�9j��j�b��7�lt��H���,K$���x��YdI��@�e�)�����o5�N�DpGmz���R���3��x��U�w����}�zB�U9�N��/��$V��_2<����Da�Mc����u�f���[�t��tJ�<T��aF�:T�E +WF�m�d� �aOI�^����Ɓؿ��� +�0`e8�I�R�Yf��I����w0&iK��ol)Q\��\tU��(�*���B��g�qg��/En�<�����*�<��/��w�b�@����0��D\{.��c�����?��B5�c��!L�D(�{7 +�����V�С��a��fTX!3���L�N,�iI�6����dL��� ^��l�$3 +R�ֶ��)Y��d�2��$� �Ш�R�y�&YMǕUoN�Y�K��ȰD����*�����7��H�ҿ��/���ȩU5}�S:.��0�>�tR���a�]�1�]z[o��R�ow��hXƥѸ�G���l�j��T�1�^z�j��r�@8Sk����U�iu����t�Z��l��ߏY�E�$)��(�h�+���6M/�g�v)�/��rF$�%d���I�zm�]m,R�����$M�,�����*\C�~Ey��L� +lƂ�Y���_R�W�e+�Ŏ��zǒ����^�_��JE������h����2<��#b,�79�SvI����{����H:�3�%6*$���[��d��p-��7���UV�����Qߵ �p^�I3W8��(��:X��v"Ed��i1�!��~�E��d�;�\�_�ӝ��G/���79"���$6tsC�o�d��5�����x��w)���Ǵ& Nx5%�.z�C� +� +�eN�(�(�I���o?�<h7�S�3����RA-O�*�(�^p��j�N�W�E�T���:���Kd���#��PF���"x��������/rL�q�.'g��1ɦ92ܵ�Wd����'[(B1y��m�ow� �o��\WsZ���2�cq����.��<�_1#1'����(��HZLOwD���,�nǓ.���v�TI�܌�ea��$���(P!�kw�hk��xS����&>X��Ze�ŕ��J<��� ��wcڭ�b{�܀�Řd�����^��m��g�ӛ@�O�d��Li��]�q���%mp��.WɲV�w�P�U¬�O@d�R��� �� �������1�F�����K��2���y��������UHߗ��C��t��i���Crq^�m��K�=,���N�(����"��D�=B���npGw�bxId�Zã��֡���ǿ;�2g:�ل&�����q�G���hM�� ���I�-��Q́!i8G�mQ��5�-2�m�S��/^�7<���/�u/ɸ��oXI�MK*�7( $s����Z&I8�>����8a�����a�M��O�*4����h�`"���NHR��֊[Pc��|��*��V�6l�D�9�V���"��Ӣ'$����� :z,å9�\��������Ű���xQKiR)�v���ș�w=��A��V��Z�-N���{�w�L� +G��sXP�$���m��F���� y��Be>H��4kt$��0����Ѓ���#�l}m�v����t�\�L�j������"5����Qr�ζ0�:�48��f��q~.듓EsS��\C��8�>��&��f�ǻ��~��ɡ)�߇�իHK~�� ��J��ć�^p&��7��w; �ݠ[��Ҁ,D�E!m +��?����.��Zǿ0��������� �4z�"���M��ۣ��P�����]���ý΄s]��ݥQ61K�J�p�EpZ��� ì����8�b��:�ImyC�BC"�T�Qt�ud�!P�)ʚ֧>Qd �AR�E)Vk�#Fr���d���{�Py����`������6Z� >h�ٚ�`�dđc}�����Մd.W�KF�~��XX�|}���jI��|�o9[�MH:����oqB�.����ouz����r"��.�78D������z�t��n��+�9>,�j�� :���$�#9L�Z������wL�� IgB�k�rn8����э������S�dm�5!IK�0=�5�>�'K�0a? ���@,�]P�cX[T1�C���t���z`8vB����E��OT�����.5�R��U�̢E1!�F�@��(�]�^�#<L�*9�%_&$E������fo�n3�j�����H8�+�L,�$� ����&4[���X�7��&���`�ױ���Ȯ/��h�|П�<�y��s���_����u��I@�Z��l)�m0>���h\�.��3H)LH:���o�q�� M�\2�#�:�n�1�'}�O-�o������on�Y1B�96���s��d�����-� +�6PW���u�e��B�Jd_&a�p4���5�&$��H����[��(s ��汆嵻LkD��w��#�C��v[j����@��Ӑ�]�$���ӣ�]wgu���/Ʂ:�|ī�� {���5m�L����j��Ԣ�7��j�)n�Z���]D���V`�1��N�������2�7�Q�hS{Ŀ$ ^�K�Z<�WRg�.�q��T3$g�CI����M����<q$s�������6s���(��1f�^lơ!?�Р'� �P�'$I�d�V�����d���~��W�[��J�k<p�1l&$Ѩ�2�)�����C��g�����ǻe�[t0��K���$�Lh��A:��X��Ľ��H!�"�ڬ&�bϮH�OK�; P�J��Y��r�͡g*�f焤=A�\�4Y�9��T�� �6:�^�����AR�N�� ��(��\�)���Y]T4}���<����"���h�Wx�����t�+�,�h���NG�Gql5�(�T�e��9����=�R������6��L6��Wf�ۙ_�T�I��!��zG�W��@�;Hnu$^��u[u$�̉O���.�Љ\�����6�R�� t�R��J�{"��t급��fD�G.�̈́���˩��0��ۭ�_��['�7]��owL��9��d��|F��� ��u. H}��#k��y���l�۸�$ԒA^��MI��I3놃����}bh:% P�t�0���$��Tm���ȥ1��Z3M��!��C����3�ս��G�(obJh��&�5�=h��~��en�p9�x��l� �Фq��(�Q�����j_�52?Aq߾���X͟�o� +�O�l@�>������h�4���ܜq&U����a�ƝcUT<C5�MCU��˿�?V$�U��˫+�Pߔl��t������o��8W@4�����GԐVi� +Ci���d�fp��֤8��8�TJ��-(�Ӵ1�"��\��ږvἠ�ZgQ~���}C!�j(m�5Z����4k��KQk��@Ϛ�ل�x��ր����y�>:ˋHC��&�7s5��_�w��*_�:i��4���G7Y��p1I��c�Z��V9I��8�� 8�֡�܅���q'�;A�)M���`:4i�"���)�S������شw�h���4:�_.�??����MU����)�����Qz�b������~ӑ���^'~��9x�*��5J�3���i���<Dq�8�g,;����j�jdI���V>���̜����~^�3}}��(#�nw��e�q�����f �M��k����-9���l�4q&���]���6�������ק�����R�=�2y�.�T��p̘d����6`:��� �+���UVw�y�$����2�..��G�i�� �ջդ���B�z2KEԡd^Ju�؝�{�RɄ�#iĐ��8k��/I��!�U�Za�^�@(�lU̼s��v����"[Wp�#��Q��\u�6�L-��̬��j;�ԅ��o�� ������%M��7�ۥ��[�.��7v�U0�)�1�ԏ���O��;>>8^�xpt���8(2lhs*�/� �o�o���e��$�J7�Zɢօ5g��)ɿ�8��ۦ_�\��F��-izF�� ��˟�v@7���?%9|_>�o������Y�W�C��)I�C� S��iG�/���X��ST���{��)��{�`� +k��ɡ{fX���&-S��dn����bw�BY,�īcTP��\��-$�{��f�iQпI��m�wH�v��loۣ�\���'�7��&W�X~dm*:�V��IL�l��*i���x�t�"�$|�"�o��P��6��6�oH�LVbf[����C����͑��E��yP����>�x���~Y�#��;�e�?�no���߲��V�0_C/P��l6�'@��*����X�Q)V�WVn����Z2gN��\�� QZ�U� +y�:���P C:� f5�*�@�u���ێ��txl����;�}d�%C�U�R�|�W5�d���#��ߙ��)7�j��\G +��1�|�����i�-R�f唆I�����C�U�L'6�MUN +��7%#,�5R����ͽ4�[j�Ԍ����;�A��*?�c�2H/��C�V� +��H�� +WR(�q��zH��5A�2������~�m��W������ȿ<�t:���Ç���3\}�Ȱ^�^�k�iٚ�j���nz/ƥ\��i�E�PC"\�\��Q�{/���F�:D&bHS���6y��?�Go�茵!���RM`.�/w�p��x���3l-���yu��] lҭ�:�"�][+�.��Z�;�g{�A�v�8I2W\��&�g�)��BEԙ'���T��*��+�[Y���T��T�/A�(]<|�\d�� X�y+<ިה�ĴZ�P*�XJe���~$u��/�/�� +�!�3��Lls:����z,�x�K�*<���)����d��> �l4���5����i�@�S�G���u{"�p��n/��̬6X7�*+FwuD����W�n]jQ[��R�Y\B\K ���4J����P<�&���l�u4�(�hկ�����M�C9}��+���k���\���+*������'�m��b��p�"��L��q��ζʓDr�8J�$s��goD�E�۲�AHR� d�*ԋS�Թ����+��9Pue�s��t�S��3#Y�I_��8� �7�T���\-%V�[��d]�cz���'�g(R# Wj�l���38���.�� ��-h2:�C�N9y�ь�W�%=F�E�W@j3���>��M�o�����f��$L+j� ~A�����j0,�l6��� ���MP�����2$�Y��@��Y�����M�w�50( ��1���u��1j�0��w���Nu �EB��2+x}����H:v�`������Hpx��K��s���ѣD�K�Ɛ�M�XW�^�YP;���;��{��X��a[�T�gtk<���-C���Y�ۀ��;�#�I����h:b��h��H���l��(��PǥKy�sY%/n�d�A��C�/���e�����GĮ ��v���u�n��5X�W�uG.u�+�4�nqz�!�R�a93�G +�ka�su�����@�·��^,x�F�N�+�^/�˿}���f��������:����v�A�:�Y�}�#�_�O�!��J�)�C�OZ��W'�u�����r�@:�z������� �+���PV����F��6&I�l�ڜ�Վo�e���˽�����A�F�Z@I{k9[4L�ڠO�%�@��0<ŠKN@�5x/��A�p[�=E�Ƥ�2d��<��+/�c;du�Z���Ln2u�j�ow���f=������P�E�3��܆}���aF�8���F��<�h-!����1$]��0L��'F��>���!C���������l����0�w�g�ekh�*�u�e�94��a�Wl�FR0�QW[��j���<�§�1҉u��Vi�~I[I=�~���)���v^�0�T�C+YН��2l��_�����e�Z(�2�0b��o�� ����\r�\��@�p�APQ�#��=��n_�&Y���&|�w���rA��B���Se��C7Ii=0��u/����|�����X� 0��ǤH�J���']/'ص� ���n�q��gݳ��:Ɍ�3��|o��cv���6 ��=ϒsi�u�H�I��=<!%����m�j��]��1M�o~DW�7��w�B= W 1��. ���5���.Y.�3F� +ߦN��m��&�����T�J���l��8���@�f#'���g�����p�lU ��2�I > �ky�&�:Ŕ��Ff�h��X�u�P�#�+�M�2��nt���ݶ���������qH�V16�h�5�tT�W�^p���c��N�$1�iچA����_E�č2��Ď�c؏H�.��˿~N_p��C�f+�$@�1�" Z�V�F[vK�]s�͝�����y��S�|(��/��J�9��'�c����?�<�@c���B]�0O�4g']�L�]]�֠`�Of?�l�,�Bl\憤����~��^f�Ѯ��ci��]�Z�_�_����u�B�w���ԞM�9�+���㧐����0�s �Z����7�Sh���5������8�,]� �\�@; H /��EII�&%�Hjw��6�g�#PdDV<PmO����3 �V�A���@=h3����ᑙ+2�rgu���v�@$җ������{�J{��U5��N_�$r�J��Y��A7�.�v8v#t]$�-�:E9�C�%�������T�t�"'n"�U���gkD'�g�ۧ� o��#��X h֊Vf�D��d�,���}M[ "���[c��t`����}I�^�)o���8>��W)[� �If��>"�j�c]$"���T��1W������"F��u4?ѕZM��7i�C����-{��L�X��'�M������)(�䑏k�����H��)�R�O�D(�P� j�d����"��#ғ)�R��M����1���3���mo:"��a�Ə�HM>n2��A��LUN�."����j�..�|B�y�X]��W���YV���S� +a��T�W��|U��t�������������j��w*W;-�̳���d�� ܢ����<B���#�p�c�kZ�2=� Zkz�6�&z�8� �{�h��w��.�vx��Ӡ{d�f���e���vܧU6����N��k w�JI�כ�*�MC2�������x:^H!|���`T�_�`2�Y'2%�w�e�Q:�Vi�U��Qӏٳ�k0Kwc˘P�)�A�А1���n�v\j�4z��hϴ��LA�/1t�E,�<m�ļ�u]���M:E8�<�����p����&������ޮ���+|�2Kh�i�(Ɔa/e�w"��*17���n'q�O_��,{���Dc,_���u�����ݐ�a�H8Bu���T�$F�x��2� +9�+��Ud� :�p�_Ub,5���1��y�[��α ���4�H�e�Ь�M���ބ_tG}Q��w�k�4}�˟{����l���??k��'|�b��w5�����l|���rd�jq8��?P%-~���b��8y����6��<S1r��cRC&���ȇ����D3m�?��c����p�eʙ��3�����H/w�ڹ��F�2�i#��/q��sx�i���F�-1�X�a@��d����Q]�� ���f�bN�u� +�U���"�ԯ�z�LJ�����Ѩ��s{b��*�"�P�7J÷v�;���:�)2p���#���u����DŽo�t���_֮�4g �&k���}�_!�wpp��;F�l�\}�x�k�qYe��=߰��#N�GT���drxӆw?r��� ��p��U����F��h��q�v=Z�j5�s� o�H�A�}��*TGNoc-���c�9���~� �Gaނ�>ehk�O4m��n:)� �ϰpCSuDF�K�<�W,+;!���b0�_���~��q�)W�N��P��1kƸ��چ�Kȁ������ưz�l�?�N�~�H@���n����2�N[��~!�Q�� +Twj+�"f������4Us��v J�nN�,�0�3U���������{�x���|]z���:���% +k�_�l߱`�k3�ɶ��X�����s|�U���\��ss �OU�sw�f\`�$%M�I�Q��w<m���������zX�4����e�r'���x���:[Û \�;p�b�L��`ܚ��*�U=bh���'+?��d��Y�۵I�bPs�GE��t�xo6�Jr�;�7p㢺�~gV4V�S�����Yat�H�'������V� y�a���<2A�9Z8�*nG���p� ��՚b0 ��5VM�Rt���m]��71�Gl�x��#�7�>�}W� H���U�jL�<��̻��䛝��#zn"J���s,L�J�c�&f�Vz�����K���M�G�FE�?���=���XS�M�:)���s[hc��P���2����]��6�P���AVO�y+�ҥ��p�b48S��"t7H7V�W�2�obX#�;�X�>�f�'*�4-��>��'(_�z� ���/�}��g�f?��!��_P�}�[����c����/>^�]N��Ⱥou:}�/��� �e���y���̟y$͈fjbdt�.�(N�� +�Vu��,[|���.�a5�ౕC9��'dv1 +�Ys$Ϭ�$�ۋ��l��L/���U�|X +N� �������dWQ��������{5�9�������=\���P��~�ŭ��:aѶ�,�},b��D��%�S�����7�%/��nsG+ +ߺt;��[��]�qV�!�`��VB��0D��/����'k��K"os��TИ�Ý�k���p�r��~`p���wq(v�D��0�k Dx�͒�Wlw�����z��@�Z[�j�S�����C��D��?^&��t��oө�$�-�#E���6��%��X�Jq9�ޢ����e�s|;T���~�U�7�^-F��Y_����oR.�+g*3wd����E|��"3�k�v۪����1���l,�A����_X5���3�B��e«H��ghgJ��O7B��"�g��"b���5싙7���GI��7�օ7D�j��5�<w�ip0�C6��'�ͅ&�!��y��.ͺ�hi�8�� yH<`� �F�7�B)�"|,A ���s +串� �N�(}�͓8��)�Os��ʋ�0聃B���}�z��fھг�Eqg�J���}q����>K�2��}?��I��G4�I/����I0KL�$��{�s�|7*���1{��l�LDۥ�lgw��&�6�h��9�R@�����F^"�(G��H���>�J��0ӕdK��T�ɇ`Ow#�.�BV��� �sRmն�c���0�|ޅ7�lsM¬���Z&E�Xv�W ^��[>��Cf�pe�O��(�}�6�ꌣ�Jgs �J6��2#����J;�},���>���^���Q�WЉڸH�@�6L�F�䄨�5��^���l6B���W�m}P�7�뜏&_��Hr7D��BR�h1��>v���F��2}�6�>&,hA���;��H(�4W ^6�;D�M@�� +?��q��Q ��� _�6� J�j��b,��6���^���q_�����#+0�^f���T���/���ML��(�ȇ2[B1*5yG)E�z���v�a��}��H�������c���Z T@�Q�X�>��2�L�7�$-<Kљ��A�218�÷�æ���E5/ᣋ�"}�C���Ȝld0��PH<��%@����Im��{T��%�7���KW��)_��?���A��sQ_�l���v\Cp��@����}�@���h��E���C �g�-�g6.�f����\�b6��I.��|8���?�2ά� +�}�Jp� }�?��������a)!l� y'�^UU�Q�mtw�Vjj��O�aQ� ++�n��Y\юr�K�>Ð==���H��)y����)d?��)�u��ӹy�U<(7��!�b����Z�ߘ?� b�W�����|\��kf��Al>c�Ej���xm�e��L�/@LWX��8=�7�E�?E���m������ B�Wz� kdIl���(���@�#�����h�5�4��#�HD����+,����^� po·yԋIK��3�aؚ��F��?��7���GQnYg,�]��*Ġs(ч����ڜ��5�zW���߇��O͋qn��t�X�{s��B�`5;�aѰ#ɥ�ᛖ�$�:7w�ugы��n6 |�g�/M�e)�&�Ρ�y�ڢ�FE�i���*�'�Msk��.F��yNݴ�t�u:��I9�����M�$�u!��DJ�jV�=Q��C��@Nw(�X<*Sd9�8�XǠ;9��An�S�τ@�i���c����H�Om�(g�j���q��6�zҮ�ۗ�Ї��t����h���-�^ͣS �B+ΖpX�ӘƖrB��KU�ʥ_@Rx�b |�������"��w��PVz)',���T�,����~�� tz�B�wR���Ua�S��Gx8�d�uu�r,�p���҆��b7�`��<"��L�����OP�:֙�t����<��{`p3�d1U䎠�ȟx�FpD��G+�>f��A'*�-�w�(Kor��5�9b�H��.��hI$/Qd���S4���j�#̆H��`7+"���]!�O�I��=��9���wU����e�����^�lگe����i�d��a�dwV���\?>�ߕ�7�7{.Kbq�J�SZĖ{��l�A�;�FXD�8/�X�^�E�e�n{�/�^�rU[��\r������;6z� Q��\�Tw?�N+Z���8���f�*�L��l�#��"�+��C�0���7�E����֖t�~! ���k�<ޝ��^���4nT��3�7߱��|Z_FXW}��ݑ%���"[d�������l41y_�+"����㖘�<�7Y�v�fNu��E�#?FP�|"!3�.[L�y��k�����O�:H�3b�&*9�{� y�v=f8����Re�h>p���H���&1�6"6�1&&^9a�ƥk橫`t���.�!G�hx+��+���zmɸ�V��Q�Ú2&� �"��>}p䨃���E�﯀�ѯ������u���������̿����in�0��/��ïpL�U�,yr��d����f�ډ�j�ѶFD�A�P*6o�<�X�sx�S�S<�E��v~W�o:Zt~��9��!t8�T�2)�%��E�d%X8�F1�1���N���:G��-/Ի���!;�6%è����v�m]�(��� +s���?��Q����2k���ؖQw2�����h:5�z�=�?��ґ���)KcW/�4%V�gt�����0b����t<�(�?� ߦ��.?��8�.�t�b���|�`Y�M�챈�� t���E�G��&�(��E������կ̀��·w�r��A�Z��~Х +ߠ(���"ʐ�)\���a���rnz{��q@�����D^���FXJ�b��J�"|�bql9�Qv�t�<�`�ĘF�B�E��J�4�p����T��U��b{�# +ߞt�cSN"tO:u��:B����M��R�o�Tlq�'QnJ�d:�n����oR�sϧ�Ր�Dx�s㖫�dpG"8�i9�qЈȤo�<��|$���)JL����a���D��ᆆ��ɋ��!|â���CcL�t��h�+5�1��"�|Y7S��ݣ����>AA~���z��"�bpL��d��s����|�uY�6Ňn�h �˲�ZGX�"��a6����]�"\�"b�e���,�sA��2�6� ,bo^鬉��q5�T�u""k^�ͿDy+�`��� ޚ���>�5P�D��d���4/��*��3��?�"���uJ�f�ۖN �P�q��ՎD̋eۈ��qOd�i����)�� ��5����KQ�:0�6��E��w�O�2mER[Z����\���w;�2۹���F���ً�_|qG����r�#��wL�c>����N�HcUN-g��O&X���Pqcd:d���(�q�4f�YtX�F�S�N+-���v|��7�(�BM�OƗ�4O�W�i��4ǢT��fi�'Ÿ�y�sad{�b̲3���5���:ڰab��g���=�/9��u=�����8��fL+,��<�ES��S��(��HF��7��n���p$�FYZ��j��Z�����Ŵ��yY�\�l�K_���ϟ%�@�����",�a��tKj��}��V+&����ui�M���ފ`�q_ �"��e�ͦ�-j\�/���I�<4�$��$��**��1�[[��w�:�i���]Js@��2��TH�a<��lV�+p:6��kn$0����hoeh����Q�V��$��k���q��+A��U�*�U:�?90����gC��G�J����n�複�{�g�V;1AசLn�/�lB�0����YёF*X���jK�pb�����Q���H�ں~Tv"z��f�ȫs�0����� 1������C�@�v�$�@����pзT�1�ڎ�1{Ӯ9}`X3��w��Μ�n:��\��x��"X!]`��N��n5�#a�9����k>�Z��#)�V'�Ǝ�~���������3�v�;��HpMk�?E����eׅ9����\$��'R��Z��~z�cH�V&9�A��i3���b<^c׀!R����棽�0Uw�\�W���0��D��W�j�Y� f�!��*.��}P�-Q^�nI��O^���� +������=��Q�Z�����XE%{o��2$_�4{���/����9g�!�K��\�߸��w3&�^��j�29��^��h��'�[�T��n=!����FXV��\�u�4��PD0Z�~}��J�G�@�R�v��[kO�߇7��{�i�ȾI�k�@Է����UV�ƬOO̺��r���.��<�O7�7���溨�;Y�K�lk��"c��`>�u�*�]�4�r�Yî���&V-��,�1~kO��J��6�,�ۘ�"���Wͪ��y�\�s:.���N�-t^ KE�b��� yⴛ*�~�~��H��\��m���Au8IA�0ͧ��s6��a9 + +TĨ}�iӯ�*���G��x?��� +�6�������ij�^�4U�M�-��!���7�'¸*w���5�1��E:�A�#��ﳺ��eM���]{�j�}'~[M>�9��ܸ��4G7m�5� -��f��D��K�g���}�k"`S��*��">yH�� +Y��K +:�nX�x �;�����۱��<�����`��'tƭ�ښ�ϼVRɆč�]���^�f(�H����o��EQ~l 7�������g���Ϊ���,�N3=+�fiY����V�k�F �Gp��Q��ɪ��neL�s�oˑ�L���mv�( � �t'Lޞ�^��`G�Z��mL�qY$/�KT�1"�2�ۊ�.��L��&�I�d��&(�ZL�q]�D�����yLpCDD�� +����MUX�3��Zk��y�W:�}�=��I���X�U����%��+b�_��FA0�C7��.�D�j'�]�Mc�Ѧdoxw!]*���!Scs��̍K;)"��Gֲ50L��$F��4�]�n�ӡ��(|�u�-#�(]߰�\��N�� g��#^N��2lOU������;��{ +.U>��M���7�)�N�B��D����%0�M����[E$t�B��PC풻�o�%�B��BP�+il|[�{�j��k㼽^�[dr��%�4/P����L� +�sL�$��}ݔ�y {Rjz�����+�/�Kr���1���.`��2��D��6�������w�G���1*�;�+����v:�{���"����rq�v��%A����#|�K�5�,��75;)b�V��l̶����<���)Q�@�x��;۰Y]�$¡�!/~��S,��1t�i�fq�~weU�I$H�@� �FO�����@�)��:B�"�s,*|����E���c�_܁��f���Ek�X���tz]��t�}�F�Z�H��v��)f��������w���[t*Zr�73kԫ�R���t]��!���꙱�~�`�t@��r<i�r��^�D�"������(����Έ�>R�b�u�)J=Q���6^�X'��տ���ֿ����P|�ZrO�=��9N1�myp��e�S�6�ڤX-�N�DW�LU�5f�籍MrF�!�8���Jgi�J������l�a�&د�t���������'��?����A ��?ij����F&H�=��ms1 +�2��vk���z�t;|���Z�n�����"ۄq�8��4���� �U�|�E�i>���ps˕N#�v�����bC*�aD ��$@�v���Q���`�G�4��ܶYܭ�4��.�Y<�Nj�5�{��f��'�e�-s�f*��n�� X.~)��6��Ǵ]��D��|"���/~�0*]*L��y�4�1+�2��/�7�gMj���v9H^A��}���]��P�n1M9<4�Jy1�h(Q��ȲRO�8��,ru��-�bPv�4ǀ\ ��q�TMA��� $�2�8ΣH���uPR�q]"l�N?��`mz0BH]���� +vV_����H���(<�9�B�nZ�q=��z�p�1��r�2e����Ge���"�=�U-�SOO0��ˍy�� !8Jz�Q�&٣��R��n��[�mѤ� �� +d�D�_����{�ݣ��6b�b�}�[��W���Z���ő�B�Q1����������7��-o�u�CilD���<Z�:$��Vu�Ϳ�7��t�7��`�q���(��^V�����o�����_Bd�E,�p$_AX�m�������ѕ���=��?�Xco�8����h���8,�Ͳ�ƞ�ۑ�.��T��%_Zw���� +Fe.Ekd���jY�Zkέ��d�������,z�z��XU��,�y+�Rقkz���E��������#�z�#�����+�$g`a�M9ۂ3�Մ��dצY���ܾ�-�E2m�K#u�� (6c��:����f��#�'pì&�E'u �J[��֘-J��Yv�lr� ����f�W��.}O%~Q�N}�z�mn.�&���ړ��a�x�DX@����_����To�t�b�I:�oGW����ڃ�7|�Cm[95�e���uOa���0�T ���߰9��xM��)��{4n|�K�1�Y/�Բ<"!�u�v'�����e�Z�=����E~,Í��/I�@���V����#��$!�*�Z쬍0��EX%9���"�9.�Vޡ��s��v>���Ɲ����cq���ǰ��[7Lp�������q�XX����Ȣa��W.��&� �"����pX��v7���C"��mV�|��Q*��R�N�� ����OeP�� +(w���(��);tUd{ �6�j͢�,8�[�4ptC5�{�++��'r6|�f��BC�7+b�R +�ݸ���C�E����q$�� �.�&Ÿ"Ͱ����T��=��Q�� +�[0n��� Ofz�*b��3"�;b��6�b�x~Gj�x��ٓޛ"-��ϥ��0{Xf�Tt�M� ���D�����p> +y��75��`$�j����E�7�碎ѹ�H�Ӵn���C���s�25b�s�_�v���v�9���楂�3X`%<�ﰵ�14pL�َ1z���L� "K;$�/�H�)g�j[�xC�� \M3uS��"���MF������ ��s#��e��m��ӦZ��� +i���m �����AL��w&�����-ȬQjNI�̀��L^�f�G,\;Ukc��\�y�P >��2�4��%��u�슨�L�U��@��p���-5�O��"8(ƫ4W�� R�m��8H�1^�<ި^��D���V�nŅ7@D��J'|�<�e9c�_��'N�O��gwY�|c��C 18�"ウjbA��ج�R0#�qgrR�fg���\�(�5��pn�}�FA�z(���r�|$fjx�nϘ1�L1�M�i��ݙֱ��C����l^�P��şaKFR�����n����{�[�n��M�?����Шt2/�wV���~�����H�?�TY1��q�S��q���������$Nⅷ���Z��\��J:��� ]xQ�r��<�9<����^q3��ŷ o��~"g�'1�p���K� &��MF���u<;�~���Td�ϗ�^X��}�!ZUU�[�$� p.���5��-��=`���'{����&�m��eZ¢ႃ.\��G�.��4���Fd�ٜcZȶ��a\�����4TrU�9��P��ez�giU�w��}�@����|����֝�$Ҫtڐs���9�a��ג��BC����*,��f[�0qe���m��>��Ӿr�rF�[۵(q�ᡜ��'z���� U��1������� z���~���>�\&�\���qy��qԗ�������Ҽ� �H�%��3Χ|�`���ω.��"+��2u���#�?Kn���s3%{K�v�O���F��]�:\��>j| �kEr�ϱ�9�匔�W���u�ͷ���-|�H���I�7��c��$��F�.�]���ETCd��<3I��QjmFm�0�g�=��7.㯘�ߪY��#bۿe$�4+Ff���s��������.�t���/��Y=��I��n��d��m�Rr(B�Wly�\��%1lK� k�����<G6�Y�} +y�����*���P��������Y�f{j (�̒$��������C����d탷�U��8B9/��9���S��=}�t4��(@�>���;�l���)u�'.�5�])D1$�ƹ��t�Aj5g-4f�K]�I�d�-M����1�gu@�m�{�35* S�k�1�b3R(��u��&����� +R��a�e�7����@��QJ:���tTYSc�8l]�� �Ŏ9b�,ko[�Ff�{��S.��t�YJ*�7�����V�J�����+�Y������Ӳdg4;ɤ)��)#Xz�|��Te~~�D>���9�n_���)�l�[/���D�T��̲�� .Zu�2+�c%D��/��T�y����X�=#�r��Đ~��F�:�U +�{�s5�=nbDKEV���]��˗�[���/��2N���U��l�B|Ƥ�AE���0�ڜ�|/.H�& �s��������r�N�țp�0�{ +5�u�(��{�$�a=��0�o<�ڙ�55�%_ѱ�?ٍ���d��4iz�%��?�^1vI�rE+x�e|�vo��5լ?�Z@$�7o�%�5�7�P��-X�r��� ��a쏶�{�vm�oӑ�߲�N7V�"s�\�|qH���hʾ�'��|}<��g�˖���:M�g#�Jb +\������{�`��x���R�x�[����{oUx"�c�\�?[e�?�Iu?��$V�� ���9�g�����k�:��n���i�;�����0��hqzD��Fsn�}������t�϶o� p�*�G̲�֚}Y�陨+Ob, (^5^�5�nE�㾺�q���S�3*+�?����ɇ�j���0ߛ�=�#t�D~v�k��ijʮB\wN��C��`�'�{����9���TW�"�n"�ni'��3����i؊�) �x�*�D�����~r���� ؠ�Vݲb'U�V/���/�Q0*�v��cgܒwpP>E@o(2I`H2w��tOL���`C�2�����Ј��<(M�4�;��EJaeO�<δ���`��=��l7 �n�s$��ڐ�&�e��qc0���� P���5)ux�bE]��>��]����s���~��A8�9��3��t�x�������9�Y̭�fM؛-�c$������&B&3�J��ﵓ�_ib�^�#�SX(���~�W3˄7�T�c�f��\��!g�*ʹ�/ �XuT\W���Ju�Q�#���U�i��b����ϣ�e��G:�������`~9���&��C����b�o������&��h�9��HP��52[/ ��=�啰��WՉ$�4��α�����G�#ٙ5���sz����'o�a��|<�R;����b�F���,1��v��W���Xoƽ� �s��w-e����>���y"��6B�,�݊��=�-��|`%[;��;٢��#o@_&�Cq袮���5�7�+(��f��eX��8�a�y?�Sle1����s��g����4�X��͚!n �M<%��{�.֎M"��DΉ�m��"��j�C�V�F�l�Jl+�� +#�P�����]劌(�o,�)�PZ��s\o�x��q�YS,3]��~����-;��,��+�6p)����]�Q��AT(�_��KM���c;v���g�*h(�լ`"�}fV��� +���gs�3�P��1T�2mT��髄���@��O�۾͑�g��Z�.�K��S.}�~�`�p��$$}G� +�;����=��u6����y����%k�'��(��ٌ8{� +�,R�2Z�F�VH�c�KG���EX��Z�M��)��J�6���c�J�t�l=��%�f���,I3�[eZj&�h)�c�WϏ�`��l�pX���*�1AxZ1�:/Rz�}�ېn�Af��5��b����H%��Xģi�s9}$����Γ��������8�G��ݙz�ST@�v�] qc��6��Ӌ��ݐNA=3w�l�3Y�� +{� +�YUޢ�^��Olα�7�������5/ �/9�G�گ,��mm��.��(�� +wx7;EJ��a���9�;�-c��b�T��a�%#����Dr���tȫ�<K#��sd���P�K��8�3]N-r�hƍ��G�\��\SVEI��ƍvy""'�0��}��%1�o���Ҝ|�;���͋�1RW�/��f�d$/�)�·x�Iq�=����|_ՌR.���C��[�t��6�P���HG���A� ��%�|���%e9���)�BR� � +�pȰ�l��,�[DZ�� =��0<�ߦ�p�{P�oa +���U��E���P���G���"�~�C�嶦Q3(0�fIS�0��[�-�%�阡0�(B��X��x���P}����"�Ɠ�N�.���~� +�[=�1$�-x㢧���D9ڣ�==t��n�e�"��S�*ߢt����LGX`"����?�!|�'�->���io�_Eh��WZ<�m�E�E�j�I�{[��Z<�m�_"�(fs0�����p�n�r�L�F�Ū�Ƕ���e����[?�!x��:B�O��0P�#����ʼ�U���E�ixgB�K_X��ŀ�?�и��v!�E���(�:-!��}n� ��.~<nպ-�`���ъɍŇ +�\|�{x#N�ɤ�Z�:F�@D�?��|�v��p�mԄ�2�c�EP9$���E^�p|w��M����m�f�8"| ��m�5y��>��_��"�B�1z+"�C&F����}Xb�t��͊����ժt�� +@���JڐRCJն:�-��d:R���׃� �5�;�">ӊ�]�a<�� &����P���9�k#�k��0�W�ա�ma�Ň� rA1S���M��a�t����6b=�AxĠ�E�������R�A�"H�vҥ�u+��o7D��-B�H�Q��l:� ��p�W�Ll��f��M}�;�]\9X�\�k94ѤD�$�p<*Ur��� �E�a�{sj[��|B��=��Ȝd{��H���"�m���"��w#� �{�XP�5���"Ш�"�#*��֝�M���(��k�#"` �Hf"|���y٭ y�����V���+_I�&�E~�d44K|Z7N��%�C� �q�wd�3QD���'�?LV3��i;�f˪;Y�N#��ȑ��@�W�?M�*�r��d�n�;)����?�?y�N6?l��e��)Wˮ�^x�+�j�O��O��?B�N�y�>E���9ѱ��<����AmG����f�l���(K� +�l�4\�)L�5u +�|�����<ϰ��� +���Y�<�n*�ɓ;�~�����3"f�=^��vNW՞���"��[Tqڗ%F��_���sZFp�D|��$DI���� QFj�@��<��*4��FK7� +�����_|#N7$&��>��I0|�X�C�` +����%-Lx"℞1�t�{*���5��i$�ك�6�E��`�������Y���o|�w�X� w��$������_�c������W_�>o�tBZB��<R�#Bђ� +di� K&�3�z"�Cԛ73>-��z�h/�%-ur��4�l�u>8"�����͒�Y���D�� @�7yxw���5z������8��a��x��"�GȟG���D����)�&�o�oWy���Y��TYVDlW:p�/�k���̳��r�p�����d64R�P�����B�Uϵ����!h����D��̋�9�:tB�xA�6�X�D� <��`���dS1��)5і�)H0���=�YMT���|����IN��B��gJ��g�.��.W'�H���&~q�P�U��g��V�� +�l�k��I��O�u�0�{����=i#eg[C"U�@�3|���f��lEf&�$jV��2O^��^���Ťh��'��0쁂���I�kwdր���q���!�M������f}��L"�>���f��qN�;\l��D~\S8C�AV�1�֥��[!�Н��bv�=U��C +U��fkQs���Ђ'���#����A+�~�����F����k��7������]�(o��x�Y��4�n�~����]^�<�`'�ǸnE�Zc�@����*��(6��|��Bp�;|���(�2�o���C%N��,�����R"��QK����BĖI4^�s������"�dp�1�d�0^F��o|з�#f���{h%*�r0��7Eoev��Oz��@'�a�d��L�~d����4�Y1#iƳf����|�5&~�^�|T#��yD��P�8]��1<�\[~�f`'"���E��}���_��};��0�ɞ��������k������?�'ơHH�����$�(�����T�ɌS�*c���� H8 K1}Bɼ�����I�h=��.M�/>DX�b�|[Lj�;7��1z��߬�:�X ���$@�����D}G��R�5��w�q��8)k�Cb�� K�l^�oF�*��{�=�e�����AO_u>��Ӟ�'��0?&�榘.��7��Atk��{�(yX5�ۖ;Z�&W6��b-�=�n�r:��I3'� +�d�:��3��b�`�?�n��2�V3�n����-�@k���ѯ�#z^�����gqhm���4Ī�y����|� �x2+��K=V ¿)�1犛������[�l9c�����V��͊��h��}V1H[�ȼŝ�9�L�,�`=?9�/����u�q]�@�`���2}Ǐ{RV��Qp�Kw��U�h*X�W�³�@}��yk�mq�Nd��⯞s����|+��NE-]����c��f��\��^�.�+-���q� \�9,�4�H�A� �f;ȕ���"x�����q��f��p�U�u@��f&����fm�o��`��;�jn��7B�G�U>Y�i�@l�L�w�ȗ�J�H��?���}n��0\�XYr��$|�b���]�o,���oԉ�rU�L`o�]$I3��A��kszR�<_u��<�$tG()�~����t����ϨA��+��T| +��l���>H�^W�d�cIGl}ͅ�\:�(��*���a�֠�+w�z9-� ~dS�jv� ECuD4����{{)�Z�ؐl�Ĝ���Ai{r�s�>�?ਢ��y̌Y*u���m��nbu����`����@��ǟ���g�[�y�ڧyօ�q�K��TXQb�_<�3 +\�����Ɇ�"D��{��s��i1�������m��KD'?R�X� 4�˅oX:��|�Y ���"\�"�9�7��۪�7C�%#-#e��7*�\͑�p�F�ɯ�p�x�6���;ʝu��÷.��c������ߣ�joEl�dc����wBM{����Y���Q�"��+���(,�'"���?B�N�%bG��� �{"bE�{^F*�Q����i�F*��q�-gD%��?I�j[ E�� B��������a[�ǂ)��p�oř�{A��/85`K�,���3�����=��\1te+�]�?������'��H���0��������nn)(/�ԒADd���M�yX��Ɔ�mJ�s&�=I}�҈�q,�R"'�4���j�I��ut�&�kN���4cK�{�İ5��<�a�RVٽkTx#ζ�|`�'S�w��#���d���vr��䢹8f��|�Dj��#o��ɦ�^�T�P��NE��;u&�/��Q�p�qR���6&}PE�f�I�$0�L����b���`��CkZrY�D0O:�����+|���_aMގ�Y`c���u6�j6R�KT��9�3�����qzx�w���([{E��h;ߺ(k5�:L"B�Ŋ_ߪ0�����=5Z�8�k�۾x��C�֊��yz����'H)����͎�5� +���k&603�g=�`���o�"l|�z�)~i �(z��q�&��8Ȅӣ�m�����vRls=����℔��E5��>���eK#Y��O6�[DG>�-=��_qح!��%����#�-{�@A��Q��Ss�E0�xۃC��6�|t1n��v�kN�Oi��v���H/�l�6̧��y�L~qx�X���v#�_d���ۇ��`�(�9�bˮy |:[J�S�9����1�iֱ0�Y��P2�W��&��(�U��كq����h�OE6��BF�i�F�6�>}�gi���tx��@�2�)"< �U4����í�����eQ���DXI\��N�}�;&|��ۼL�q:_�x*BY�)lb���a����$A����G����9swzV5Egm�!�̝������"�,C���1�:���T��f�.a����r�Y�'�4δ�Y��瀡-J�f���4��g����ŏ���� v���g�5��.:�@�J04�T� +ګ3��"\�"��Z|`&�4Yҩ��d�z����4�Vȏ��&n��=ЁToB��x�`��P.Ҝ�N��Z�K�o�H��]d�/�~�IG "_�nH9��t��;� �j�ds�O�rs�OI�/���9�Gh��4��Luz��أ[�z-��L�y0y�tǺ�h�wT/ؙ&��{�O��}˭F�@J���+3�tR�i2��1S��2���J���1��E��MZ�`�`c���K�ɥq����p���V��p��b�.�7ހDb�WX�e�x�0'+��8�}�Rɺ�b�2�Ք>CT�9r{n�?S���YAp+Z�/��U���<0ݚ���7M���7S��24�#7�w��-�������%V"��6�|B��8������~�8F~z^kxz2-nPhŞ��-R_��`5��A\���V\w�{���˨]G�qŦp[rC�-������\���˧=�P -�h�r'j3�~ڣke]i�u�;t;���Rݨu<���I� +�a �ֶ��1 /1�t��^,2�K<�rxJ�[F��w�3>Ѭ�8�t�r�ׅ9��Ʃ̾�T{嬰�˲�᭔܌Lj)}���W��n��T!o?�{v:���h$tf��~`^'ie�(���m�=��D�W(�3N;�������?��Փo=}x/q�s�6ĭ��rQ �aH�Ѹ���".$( f��%+h%������yu;K�v�T�C�ڂH���Q�����sm��I%�Q/pϙ1�_�-��h�t� ߺLv`�{���j)�ў��x�z0R��Q� ��Kd�VI>ژ�m�9��fU�W��~�!�������7f�#gB�'��@0�H,��8z��C������j_�i��ϳ�R�6�Q4�X�q#(srA#�ڟ���Zi���QTà9�b�Γ��-���]ˏ���x��+�{�^pP�������w=�>j�f@�s���Z!I ���c�B]�{�P�ݹ�/�hΓ$�qsF�����[Vכ&7��X7yc�o��݊`���{�o/&����t�ȋqʒ2D0�h5@�싳Mq�T���IO/�1��i;��3Vd +{0nJdP���Ox[��n9H6�l�U!���I����� >m9.)�g��ZU?X9��-~�Ч����&�m� Aم��K��U��G��U�2��:=I��������o<�"Fx���t6&�5����ntq�fH7�K�'Pe]d�y�o�t����*�e��g����$F�Gu�^�+����������D��D(�^Udj�8����LD���X��%�G5?Y��Ň\�xT���P�~��]:�H� +���tw=,��j:�7o���z��?{F�I|t@�@�Dž�Y}���=�x�Zxe�z +Q��xO4%H��i�A��9;냭�!5��eƑI)��K>���a��慀z�k�u�2oQ�+�Y����u6�RR��y�ӔÛsU�����I��NCH?C5�HU)g"��%�Is����:)X>����`��2>F:ŭ� +!fݙ�Q7���3��:W-�,��1��Ѥ�ECVA��o�3�Ѕb�5K�RCG5��*�F��μ��ԙ�f�6E�(\' �� �ހ�,eh|�J� ��cx#�E#���Bӑ�?�7@<��c� ����{`��x8-5d��Q�g��}|��` �5�T�i +��i�� �qY�;�)��͆_B爫|����,��g���nl��L� 2�sw����)�����O�IsD0���P�5���v�/�5���(�K�Ac#������`�7۷/�?#��+�b�k�/-����9s?� s{&b�a�J=+X�߸�(�9E�*Y@T2i��x��̔���r�R�����v������1or����G���[ل�ڀ��D�m���`��:��μLM��K�_\v���/o�,�1�=���U�ˉV~���y7�q;@�^�P�����X%xd���[87�V�n���9�祆ӑ^�T݊��'�&�A��C����v;�R߽��4]�n5⡤�i�:J��&�%�0��o4���1�ů�ތ������-!��l5�*3Gs�̩��/���4Σ�5eUCy���1��W��� c@JL~��8G�+�הct���bza��"��p���R�ax�:y�;�2�n'c��p*}Ӱ��G�o�H2g"����L�>p������&���"Q��y16�#¡Nq�V7w���0s����ܽ�2�X�>�bv�e3� +2�m2�(\Y�� �{�i��"�\cHo�5uf�.�0��M�O1�F�v�*���<����Lg3cA���] N����uYumf�Y���Q�\�{3��^���m���;�����{�Ʀ;>�y�Me�hI!W r$��[�dĪe��$f�)s�E�3Ԓ������\���(+���*� +�qXa �D��j���h�٪�����§�E����i�@_d�����ޞ����������y��Хh!����af�,�+� ��_Pj+���<|2�Ȩ������g��d0̕�v�0����v�P��xv�6����Vv�"��`C17�Tĭ�9 Z����t ʢ1���OR�!K�w�9p|�-^ +�ݢ��4�l�7E(KF[��/���lq,}�q<�����%����أ���r&2<<��K��AK0Ұ����Ҳ� +�B ��=���4+���&�D�E갼�Z���2$��i����FG� +r.R�t�� iK{��MN���S�#��K�y����h\��᪁�?�]Y���[D���1g3���gا�)P��B��Α���fZ6\Keߴ0��9�n��k�wWM^�(u\F�z?Hf'��}�OD��{�����@8�^Rݧ6�:�1�ڭ�o��a���D���w&W�6�gl��i��(P!� �:������1��������$i�*�>��y���4;��)�M�e�t��ၛ��v����x�`����� +��3�AQN0�̪���с��_f�fH +�9H^���. �S��Vp8�͙H����,ɏح�,/w�;D*>E��`�I/�_��]� nzv���:2SZ��p_=���_j�͂3�y�-~"(0�4��8y��W��`��N�k�킲G�Rs��ՆcoZ�J� ���#0�8M�,Ɗ:��!���C�;T��ؐM�GD0��FN�N����;�p��8�jou�Z5Sؐ3�q��B�/c����|+��&7��A�^�T/��1�Z$,rފK1e�-��" X���"��wI+�0W������w�l�eܓ�xG:-H���}g�"��H��DC���&��E�Bf9g���>�sI�����H8�D�ZSac�_E��za��%��Vr Y `�Ǣ�9;=�80�84:e�G�(|�Q$m��=�n��ܒKDS�;�H�s`��0� ��u��G@�lx�ajx��8Y���A��(*צQy����)�C�՜���֑�<&Q��W��v�PѢg؎ ���0��mL͋eK��i�ŏ�� +����b�c���e��1�T?�a�'�M�7��Ƹ���G�J�6�� RUyn�m떻��V���փu�i�h�E���%���މP V:�>���.Q��h��S$pj�|)�U��r����3к��#��)|����5M${���Ig;�o�p+�]�4�)��6�L;�_�):�k�����Sh�ґy ��t����!�)(�"����g����'`���[�&�V7��ny��1��Ck(@�M��x���_Q�Qq�~���Or��/1��/[�a���>3���G̒������� ���4V\��B#��n�f�qu2#t:zu���*��������ƫZ��1��=ej\3+Ճ��B�Yxh��6����t�Qc[��h>��S1C��%v�F#Z=�,^W�q��%9֥��Rx�;���89�� �+I��M�ݲ��]c��NZd3� '�>��9�1��3c����{�YՌ�������?|�-������'ʃ�\d�xa�p�()�I����?8�0h�~�k�M-�⼷��Qm�V��ܯ� +��S�㉌p���N�)f�����&�>!�օ�ݓgM���(��[k&��q�)�EƋ�z�0~=�o���C9З�$�#�f��\��x�D�68����Ѯ�����M�<[@�u+|�b +�50X����V%2B��Y�K�j��:��[5G G*�-2f!���`�G����߳���I�Sz�;��i숮��{�#x57�<*��p�8D����r�� z9�4~��P�?Ѯ>���T��{q�m/,g���3�֠v5���W<�1l��P������ZX=�miOw�D��<��T��l�va'�U�E��uv�3�ۗ�h�Y%Y�?�t �r�]>H���-��$�� lr�ƋE�����nV��=9��:'���.BO��s�1Ȯaۤ��w�(�`�w�v�����J>7'�������m��.đ�{���w����^B��u�L�̫� ��qb�,N�t#�8����˪������V�*��r*(�bwS#�� +?A�}���[������q"!U�k��6��GD3�Ѧɶ ��/(fv%˩H��| �$=��Wٱ��}�N��{�av���7.�Ћ����4��v��7C�������*ӞnM��U�)Uж��.��q�I��OF4_�Q�0�B%Z����v*t��o�X��X�P��#�������w���_���s/S�MA��(�Qp��"��,�q�[A҅9�a�4�^�:�����j�[�zׂ$�ɇ�Y���E���%{�1�����q�x4;뼳����[(�~g� ��y�(ٯ�0�" +�֝Z���g�����HGx݉�_"�.9��H�Ϋ�M�,����tU�"�xғ�����pŞ�=�aHv�y;���f��09��f��/����|&�E� ��t��:|����%�C�B{��K�ny^lb:J#�Aχ�Aa+��7�P��m����#��KUXgƑn�v�v�|x�)&CF�oX�r�j��o�t<}�����mB�cf ?}��si�I.�;�$u<d�h��/� C�mxkz�T������m��Ƃ�Uꏯ X� PA�/+��>�"�C˷OF��%�:<u�m:�;���*�i��CE,_qJ|x[�sM$y̲m��-��BlE$!�s���e��1��xT�|k*�i�R$�A% �fꚗ(�בg�P:�_t�`״T�w��Y�����Pq��X�m�M�@32v� 0n����7��Q�ME��#�T��� ��ت̉����3g��Gލ�-Lwʱ��J��3�¢I����pr"�v�AJ�]x5��${��ZW�������?����iV�?&��s�יy�gWZ6RS1��Y��ZPn���@�>� 鏪�2!�°B� `ĸM���?��0|�U˒�O�?A�_���E����g��H����T�����V��n}_>����\��Ǜ�m�d�R� w��"[�BO���ֺHǗ�hHv��߭�~/�ȓ�Ϡ�m�.s��)kK{���mV���v�N�`���qZ�B��m�����2p o�-e�kU-�{'+=]�76��8kRV�lr+th��8�c)5��9 �b���f�P���p#�G +�\��u��yp^�k�sPoZ�q�4��y��E&^Z=�2�#��D&�gtl�S˕���[C����P�+�����`��_pX:���Ý�������+N�����,��;\m�\�"^G�d�.���T���j9F[r��ʻy\���_(�0e�V?�M���́���V���)�\<�,2W�BT��Es=C�zb�E9���T��H�E�e�N7�e^�Zނ�-����.��3��/ɯdC��-��b�N,3k����t��H��EZ�go��6��Yim�1#����N�� ��QO��T~�wt[��Y��/�:�7�e�>�]ҽ����oZ��t�N��T��2�G�fe��ۃ�E�T����|��������|�b��Ĭ��w.Ƃ�*�s���yV)$HE�\k \�>�[�ib.�+n�M��; �LU�Ŀ� +0y�B���'4��;dȹTS�)��/S�V��T�5�-;��۞��h�G���>�k��Tվ����ٞ� ��˃�廀 -.�Q��aQ��O��0D��Q�hOD�bO���% 4�G�LDNU��>�$�-- �ݿ�ƚ�D���Q�0�jKt]?`y����玸�mi$LY���8;`0�����È�%�lJ�+�¡������&�6�h7�W��&�F" :���+B}����Ē��j�5a�T����JW�m��fN�%�� ��9�nDۃS�7qbVGH�q�S8��76��[Tb���t5/�� ���h���pl -V�1 .�KZn�F��+��ٚH���5��&),�&�ɦ1櫜��F��\R{DW�B� [;Ҹb#f ��2�Ww�!�>v����꣢l��Cw�귅!�|6�s��~"�c�;��L%M� -Jxd۸�mR�zϞ�@Q����N�5G�.x|pr �!m(,0+�^�'u���ۅ�R�dF��������m�V/1�� ���D"\� -�v�P��{�'��P��ͷ~�|�8{�b�p�"]:�n mվ���M�(��yX� ,�pԬ�;/�u�Lq�ވ��q��g�N���p*&��J���Ŋ���aOtӌ����A�+=�J�%ZN"��U��+�DaW���-�q� �XvAK<���y�H�d�Cq� �<�H��$��n���m"�<�p|g������K �O՞�f�b�1�(��{��֞�]A%�p*��$R��*���y�T� --GXZ+�=��]d��=;�,���Mc��a&��)���S�r�j�P��Q��`�깔ǵ -�:�s'��q$���Ì*sNf����2<Oה��)��:.HЌ��#K�;��:�\MPs?r-晍��#���T����{�Qب����6�sϠe @�M��b:GWC�����j�N��Ck��舝8Sۖ 7�]9���B-� �XG�._j g� IgQ^;m��Z`�ä|�e�^�$��G�|��0r,�/qy;Z[/M���:.Lc������4}�����歜��>�z<�7����=�u�N�*��!eX�����q��|ʲ��_��Pɺs��o�+�`�N�e��BH��y�:�3�S���˪t�zN�p��vg ��cP���O�*�V�G�+���@�fjÊu��(,���Q������$�D���vZ�_�^�Y' {�='�A+��z�;`��`�]\�[�v�'�iK�S�^!�z[��@��\C��فbRD�;�o���sL�ams�▻Aj�;�����t��3q���A�_7�j�Lg�=SHj�syܼ'SQl7@�8�rVꙥU��� Z�ꙣ��c*���_a�����"�qrL����<u�E��r��� ��ѝ$�� '� �� -2N�'�e��pP��`$�al�1�y��L� ->n��D��aa�l}������*�q�~�r7o�����iC�;�6��QY�g���pzD�s��X �Z%ȖW���.�r�����5g�7\��{�|y���8�g�cPJ�(�A��u|�6���*�G�p3:� -�����'��]��?�g8NsiBho�s]�q�h��v��a�}�_����|k㨿��%W<����:I��ѭGkw� �e��X8��%/[||����� "㞙e�ܼM���8�NJ���)m}^Ro^}�;M�bQ�鰖6�U�>z��g>ý�5��M�̈$�F�F�i����Me<���d�&����+���I��1��L��%���t�4ȌT]�Z'�p^�I��gѹ����*{Vl����6_\�ai(�dek`�b��e[��6�����B��\2��&b�C%�����<����s��ĺ|�g�':1ZzIz�\����G��<ɾA�Ԟ�tq��/��FY£�%�����S�1]z�7\��P(o����,j.��vV����m�<r����װaW���V�����f9( �Wc{¥�o�s9�*R([;��kZ� -*8^R�k�fh�.�ZI� -i?)����[����>��|�4kmD 6с����`8<5�d�Y�g��]&YXrT?#8#�m.�~ 7SKal~��y����@�[��utMc��;�.�aJ����\欬Z�o̱�01r=u�9mw���'mi�m����{�R9�nk�)n;�!�u�,%�`h�m�S��:�~1�͉9� -��|sY��Sm�(�<��h�?E�cp;{ �&�$yE���4gK�+�v���w�`���P��X7/J��Izޖ�pm�$5�4��L���ro82f��S�������[4>t�mR(�; :\b���yس�{%W�ݺV�T,J6���_~�? U�r�G���J��9q���$��·���,6�"B[r��&��,�<_@���>%�U�;Z"&Iex+�K��Z�K@�];��N���#��A����d����`����\<�!���vF��wա`���5��"�h���eu>�4C��b+�����8/��źuW>ޝ^SOf�N1�Ą��TqF�UvC�x/��&�V3(%_Ԅl����p�ioH���ǗQ�=| �����_�������i�� �y�yE��v �8f"&��YISM�v ڞ���l����Q���i�[�m�*�|���:/Ꙝ�tPO -B��k"��y�,�'�e<�U�5�Թ�k�h��Kur��ۄw�Gߨ; -Bncy��+^G�k�{�x�|���Z��-݉�@�A��<��/!�wYG�:���p���6\ʓ����MH ��zY2�5�e���:2��ԕ�c�t���S+7�U��dwo6a1>s��h����l�����<�#w�A5����F6��۱g��4#s�ˍ��Nll��-Q�ؖ����� "ɀ�2�Qu ���o�ۗ�W��ޡ��k�z]W�| ����8����'����{l<��Γ;^e�ۍ����:���f�� ����(H2�>bf�9�˫$���p��C��ޭ�BN�2�ݣ�^`C��.9���y�:���uh/YB����\��Z���A�������ҿ7��E�9<����<44;E�#>z}���` �}̯ё\#��W��9�e�v�lh>�we<��G���/6��TB -+ʅ�@�6"�#�U^�$�P� ˪��ߝ�KM8;Ҙ*���D��̋�A[���rۋ*\["�����ʜ�5�X� 2r��Յ��ʮI�R7T�M?:�=�>O��=�*LU|P�[��vX,�ɷ.�tf�U -T&�~���$nƥǀ C| -�v��i�+����[c�<�$���4���ɣC� ,Ƞ,�&·])U^ܘ(u �v�Se��U��,��E��N2�M��U�z�j�2V}V9�C��eP:��#"U"ˠ<���)Vp���HE��L������)�bO�7�ԶD�~Q����+S$Bm��}�}ܔ��i�Z=� ��L; -���-57��̡H9��5Q����Qx�sd�������R{Fw9D�?�7�4t����p9F��0��I���Pe[��b@��zW��97��Ze\����eq ��]���W���]V�L�\��6�}��wc���Ɖ=H����*e�����,ڞwDY:�/�Up�2� F��3��� -Sհu�?!��� |cE�=m�/��n7$�>"�VL�QfW҆�?P��d�e�/ -n�.�M0�a^]����� ��y��S���sL�e��e�H55ܛ���Dzn9W�5���M����x� �5Xsx�̒{a�e�-A�Ϻ4��`����:O��3�Q�y_�}m괞_�G��o�ʫ���N�]��mI(3���S�T��8e���4K�p�>��i��bx��zr2[�M�!�8���Z�͵ei�2���ޔ�v$ΔUO-�J�fW�>/�n��3Ȗ��%5y3�@ �}��p� ��"�4�.�'B�^G�gfs_Q4��H�� -{�ܰe�����d�� -������~M}�|��<��w+�y��Ƭ���V�D/���=�|����w��sCC�(`�m��xu|?�c�T{�0����H��4�n6�LH�$�L >�5j-t���TG���ҳfk6�6<�U� N9�ޡy��P_��Tۓv�P -8ĭ���(�u���G4[�����sJ<+����8S�i�,x�Q6��aVٔT��Ix)��a����0N�������_C�J�Ԝ8���������pOo���ߝ�,7G� {��B��m���z;�u4�0TR�bG &g�,���-��m��@"�|I�y���_)[��Acu������gLr�TXT����rQ��f���c%,����� f�]�K������Ww�ن��7���0�a�=��!��g���Q��`�� �Wv�)b�]\5,�o �bב�@q;x�I��o������:�����k�־ld-��e���C�Rb�{�$�J؊�D�9�=��bd��V���`��1P��1P�[!��`h��X� 俣��n�8����f��4Q��HLk�g@�d-��¦��"�c*��Q?�$�Ж��Νv+L&5�T�a��(` pb5����v@B�[��l�m��S�?hR�s��T�s� ����1�1n��Q�,O��]�V�~ "M��J��e�;�"08��_��E/��Br"�s9�����;^6��C붉`m�e�g�籡��>��������Cki����f`�Fl�-&TÂ`���)�v��%��fON���t����-]cp����Z���r���`5�(�&���oI\a;7H�p~l��x�g�-%zD�d�#^$�W�*�����[����O7��$�Cy���Z�[O�>�u�q�R��ϒ?��T���;�Y��Jd�?f��M?+b�l�B�#/��>o�p���)�AվB�B�� �%��U�U�+�9��@���6�E����{���v�T����ḯ����qQQ��[�mÓ��,Y8?��2 �ͱ�1�'E[�ܞ��(z2MFy��8�ѵ��x��{��VM���#�-o�#�D�tlQė�/��n��_po���|ƽ��6t�Si�Ν̚N��Ȥj�'�b���8"c��.��'^2Z�%��������Ji�+�&JQ].��օ��C�3Y� -o��m��4��.�R�ܨA���bV�x/��4k�p�[�H��3b�Lȣ������1ne�j���ˀU]�u��-��w�D�E #_jś`gג28vY��ޜ�a,./5i篑 ��J��0��3����`)m���.�z�Zl3P*�d��G�}Ww�%U~�� �<�ګk��Q��H��mY�k<k=�5�]8δ���0�k=�lQ�Կ�i�n#�����&��8jMؑ�0�8)�! -�zKך$\b?���~Gb��M%�>�6Xdž�̱x��ߕ����� F�#�=P����Oz܌N̳�`���.b�#;| -'��l�݈1����-v���Ђ�lMX?`����R���[�`k>c<�:������v!.p���H�w&@���P -��X��9 J�mwtG��۾��=���ֳ�����%���u�lhOئ�/(>Pd�P��:s=�N�)+&we�2 -�چʥ���Ț.-��A���E-E���gR�T7��9�Z��2�)us�4�!��K���Ϲ�r߂(��w�@7��C�I�xA����)�wC�j��j�I�fs26�i+�v�b��e;)Ъ ��0`��6/��o�2r��᠊�2̂뵭����d��^rxm��~���b���2s��������ɲP����d�@��X}0H}띫�Q�a��4�\{��N�!iH��p>ϣ9�?����e<����&iv�$So����t�N����"C�rm� �`{��:ާso�2�"���%)C��0����d%2���8=�>!�dn�m��'��˟"d��MU�â3��R0,l@����Xڻ�1�Լ? �͓8��A�me��B��(a�?`K���fG�o���^���xM�k��/�Mʶ(�Äc"Z��Bۓ�Վ �u�! 4oV���44�^����ú2l�)��ɨa���ړqӜ���ˠ�@ƃz��m��u�!���ml�O'�7eGv�`�fi��6q>��ޭ�����z}W�T���e��`h�Ӱ���x b���:�ؐ�'C9�$�|à��=�lBY$���������_��b^)ߡŬ�*㧴�nXX�*�'�S`�YvT٣&P��@b���d�?c��h�(��g}מw���ƥ�e�&rd��h�;%wpaжٰ3�.,�cU��b":yi��p�����g�jذp���B�y�[+��$���Þ|&�&il��>�b�(���:д��vDҨ�q�$�/�.3b��ܳ�������9�]��l�� -;\w�n�ު{�*���/6^6h(�y�p�$�&�:��iY/<� �p�r�Sg��hv��X{�e� ��R�襎�H����?E7�������e4mt��S�!����)7:������i �W�k���$D���LQyf3�F=.*e� ��!Q�Ip�����N�?�e�ݭr���č��G�����m;ß�l�n ; .a�0�_W�hD/�O ���{���\�H�cc�e���ڭ9M0�%�Tm�8��c:l�̠F�%9���^�hLk�0�������A ��S<��&`毱֖:�9A�P|]���.+{���[���T�ߦ��1�%\�[*k�h�<m�}��$x%�T�8�Y�ûv�2Ը�a��[̪E̮k�~��<L�f|��{����pd��>� Z����^����'��{ڐxX�'I\@�w�&nH��@{�����v�!�������O w%�ا��_�C4v��X���2���x��_���f0T�Oe�������Ҽzb}p��oN������ռ���%+� ���ެK�Y,)��5 �GS>��z��웏m���M�1/w/�B��A�Bm,Ǐ��Mw姠m�� ���cl�՟Β���e�*\i����.p�P�4����gп�r��ɱm���%<��6A 6� -&Y�2K�7a�{ ���I��C���158C\f��;���l���?���A��h�b����ȪpS9����KvC�N�0e|�Yª꠳�� �� �!0���kO �e�륙��&��C�:!��fG$Xo"eڀ��ܪ{�Ά[*���������76�f��6�k%���_�A�O�t��\��̒�`���k�����|�&��Iۥ����������u�Ҿ�A�s -n��DJ��"U�*ݺ%~���i{)Ab�ʚf�O"���4dL�d� �_ÑDn�}g���\�>%����7��2��2v�ۄCk�����v��� �������C� G�;�����Xk��3��(��[kXo�bv���4ܽ �"�@ -�z�͐��q��!��ю���P�v%����_�l����}�6!��IjGj��u�1+z�9�vqeA����6,Y\LaF��ď=Y��g �8|eB3��DR���Fnm� ���lN�I衍�����W��6ްb�n�K��0n��V���r��Bb� -�Ye�$`Ӌ���jP�8h����Ԇ�7��%U���\`���L�G�+�a_���L�+4���r@�X|��%,��xB��"Kf�Oh)���0��������h{����1��)&���J�OA���/�v��}_�����c�6^��f��J`,��!�å�K8��å����tq+��M�q�}�<����2J��b�l�m�I-<�k:�!�7�`O������cDErؽ>|�A�+��x� -B�{�]�j��HrX������4�/���;�!AC�]+5љq4��O�����Ȁ�3��m�c��C�&��tmI`$b�� �>(��fm*�冂��I-���ϲ+_�E��uY�郵;ms��攭���Ey��B���v Ub��f�@���fqԌ�/&�<9 ���O�A�<�v������v[����*@:�Mp����)�ʅ��^�9u�Ԯ�1�27� ��lr�|�� -"��Ǎ����ڃMa�z����>ȫ�Ц{�J �w�5��ԭ?���%�u� ����aG������"�Ep�g��-w�ؽ�����!3����,,Z?��$ ������m���}Zm&H' -es�Fs���5k�E�>�!�z�l�x���n����b��gO�|0B�6[�N n���s�=i7��[d�DJL�}���فs�=(�]�w�m���\�����^��E���thXD����?R��z[uOB���V��z4ę�y� G��� �p� ݀�+O��u�M6���f@�M�%�S�5^%Y8�t�2�%����5���oT�~�E|�<Xl���=�ކ��@���(��<�F��a���(�n#Gu� -�w����$�S3�Y^�]�?P�?�0��Mlҕ�J��6l{]�%T��l�I�fӓ�n.@8Γ�v��v�j��+�b2�����C�ȧ�>!��������s�~ -����<������0n 1 ��km(6�"v���� �f@0��ai�ε�4 �p����HNX;�ד����� ��N qNLQ�,�A�4^�Ȣ�-v$�n�oL�~8�Q3��y�%��f�>H�>�/�c�'Q <��^Zw��G 6��� -�s�-@��)n�|�kt�M���e��ĦL�H͏���k�1]$����)<lvX�O �O ��u��� �m�a��ů}a�N7��?���8��Z�7X��Q{RK�a�LBh:b�s��V��6����z0]d��R&a&�Ua%+eS2����ֵ%�5I�t�ܬГ`?d���Ք߆~�4�W|�Qe�ݦ;,�U<-���5ٴQ �&E"e��&��)e�������b���pe2s(����7�(�e��j�ض�7�S��H���|L%�il\��%�[iN= 0�c\ �x�kmp�\Z=S�oT�3��9 -G��2L��ڱ�d�v�S�P�%ׇ��$\[�J�^��$ k�4dj�i�)h -���i���-���r�lo�o�_$���]DXS��F���.����}�����icq��d`�?�v�T�onX���"Z�<,���ªuF�`�i��̉}��1�W����g�1{��MyA�`�xV��߁*�$�_�R��ڛ�EлeT.���m��(���r���� �S��lv��!�PX��9H�)��Y�� xPuV�x~F_��`gQ��5.\��t�p�������UQ!+�����J�9(��~��n\{���\0Wy 7R,����Sٞ��}�&m̧>Έ_�p!)�5�?h��%0<�<F'��#ʉL��9��w��uN�%Q^�X�$,���" ��#���2��>^ ��mYn8e{=� 84'��MG2X�:6��%����N[s��R�ك��C����I{R���i��N:oP����?�^o,R�/��Ʋc��Gf�'%BO�n���ޯ �[~��/a*��z�nĽ���i<7?���.0�r*�/a�ˢr���o8ǁ�-���Gt�l�����6�ϡ����q$<91jx���ݤ�I���d�K��>��!�p��MP�ӊ�&*O�?e�[�0X���Zg��/�������Y�%1��wO��8�3��@�H���QA_BO`c�!'>�v�%��5of;Mf��ެ -K�{f�F��f0Onk�?E~��} B�rM��I�-*���,S��pث+���,}�]�H�y�~��^�Uh6�5.�r��}�S������N�TI������O��$�)�Q�5�F�V۲U_7)�oz��ݾ� -�ۇ��� -�ه�^��٬�h}����מ�J��zi?Rr��}�Kȅ��&����Q�K�ڬ�7uk3���b%6qT?3I��u���պ�c��\����mV��̿��Y� sO�|�� -�%�0-C�]sMyD��WO� -�I�Z:�e��K �Wp���AC�j (4*r+[����y�h�17j0��cn�`��Ŝ(���z~̵�����4��1וͭ�X���&~��ek�k�ZQ��6��lXV��s �J�ǚ����:�o��H�~���v��>#N_j�����U���Mf�9��9PۚR�wc>q��͓���i?�~�Q�ėȻ�l�/�oВ��$��e`�ux���U�Z����������"�L,���e��K��X����oh��g�`=�߹$P`(H��Kg2j=&���0O�(�2�V6S6�x��f��b�+�!�L -h[�7)��7Ʈ��.���_�V#8K`���K��y�P2�*;��a}�����<u\Cө�wo�X@��U6*s��(�ٔ2J@z�;�y[��ߙ����+��x@ -�˺�f_�*�臝}��b��;��p�Ry��1�^ ��^`����@�Msj�^��`�+\��o�rh=6����Fؚ~��Ea���)@ȅ$�t͍N������J�����,P��������Q�I�k�d_�@}����f: ��I�cO,����'e����^Z��R��;ǭ��,��#1Y�-K���6�SڋKk�����F�w��@��R���ǧ;{�+���&Y��I=�~����O��Y-�X��Ʒ���ʾM��u�����^.a��@bҗZ�?��r 0#��x�p_j�GfV� �f�U4��œri��%|B�dƣѮ�ߺC�lw�2�|m�c����rX<��I���N�S��t�S�1����V{d����M��P�l�D��Q @�y`@q�P�PA:Qe?���-h�g�L��K�Y_���VaQ\g9�7h��R;�� {�4c�lWJ�M��:�:�'7���2�����+:'c�WAX ,���Ọ��̩��h<Q�h|/�>D�_ vK��{�=!�$�ٶ��7�ل}Y��f�OK�Xw u͟�Ы4�:卥ks<T��H��qA�a��`,�_{���^���N0h��$�O��rIQC��ׄ$*�4al�M��Ty��$2��7P�@jv�+�mG�3�%˯C�}�F-Aa����t��䉲u)�K'���5+���|�����0��+`�i�� 2��N(s�lz+�ө�5aŻXdk�33��)�p��U�����aҙ��<�.�A���sS�\��?"R�=���E�X{�5Džz���}7�n�;�Ĝ�q��$�( zv�UOI�M����I�Al�m�m�����M�J�s 5��`��u�=�$�tXJ���D�ڨ��d+�iR7=���?/���Oy�^����z �����������u����ʇ)a!�K�>L�dS8��5�dx{K0�lPXC��x -ݝ��C���ER��`�TSse�#9W�զ����s�M}��A_��_���n��Â��KM�����C} u�H����o=�z�_0U$�<9�w�c�)���Ⱥ����r=Gj�烄se�tڰ�D���@d�]_�:�_�4��O�+��'UF3~(ӠpZ|A�6�X��9.�/�n��t�X�=�1�3q1��"^U3Ϛ���I���u�k��V�M���Cj�o|��4}�7Y��� Jet��e�-����ʇ�~tw%B�kLL���2#�W��u�"�)!,��I����>H��?��s��K0h8h�dd�7�D8��-��8q-�Gt�˘��Fx���d����b ��@�t�V%k3Ag��J�ei�����k�Jov�*������-�1���_�يY��� w��ekR'��Y�Da�;�����Q�#$�⟿㚉v�������0��eK"Th�6��lMZʡ�hG��!����Q|RI�z�Wܹ"������k�WRj���;B�,�R���ֱ'2���gos��Q��5����0P[�N��w��䈮=���-�Y��1J��y�`��������z���yw��M�DR�t泇0/-F�z�|�b�Pm�IX�M�f�<�5��4K��ԓ��]w���Pj��� -}��i��Z�^f��:M�|�����m��ek=���`(����çh�J�C���X�5J}��P\�so�)�4��x��!x���b�f��sɬ�����%�H����~�7��m��5��P9�5l�EJCK���n;9�ɗQQ8�R���(������l�Gqz!��t�A<Qf�/��D��k����'�w#���,��0ǒ Z�qr�Ѵ��S8=l�H�����w�Pe+�� -mw%�[d*����بx@�Yp`��}��xs��=�vo �p%U�m��Rh;!,�V<�'D�fȁ15g �9�'�t5х���2�f�e��'�Xu�R����t�o��?%,���<^S{�n�����f7�dYE{v�"��K�CQ��L�ZZ��J�"U�"U�k�P��pf��?�(\\�����8��4�pQ��X��;h`�M��\7s��H�-��rc5��]K�i��������A��P$M��b7(�p`�����ڭ��E�_ _���h����Y�����j�(�1j�,e�u�s�.ea^�i6�xU������X��ގבq���P��~)p댬��=�E�R�D�p#���}���6@����J�{����7���Ob5��qT�$����R�b6���mY>3w�?4X��o&����R��<[ߋ������`mZ(�,п��C~+�H×�e�^�M1^���:ƻP�j#6g�݊<���#�#(�g�� ��聚�����^pl�ьb��� ��5���H6I ��r�B=����^�B|�W�G�J�3�,hM��K5��H�âż�e(����'��GB�,�_�_P,�l���zo�6A�?]�;�mE�����Q���*��d�iSw��F �s��� �`s���ڽ��z���d:� -���kO����m.y�:)a�L\\��k�'��o�~������};��Y�`=�M -���e7�s-|�e�AJ)�{��$>kR��D�l|��xên���J���F�^ �Ұ�i"ɕ����߷�N �Z8g��Z�v��*�Ρ�7h��6�(�0��}��&�x���Z�ŕ���5�ʱ�����@\��WNj��;�M��8ȏL)#<N�!R� |`�^�،��p���qf�����������y��S���fe�Gj�N���_��{--� -�lf��7��ݙ9��kʌyg��¯i���V݂i���ޒ�̙�dy��'9Rq$�G�fqמ�V*�{�9$U�0�B�AW 5�=[��CS�K�\4ۡ���v���1r@���t��@�6`aX�*������a��]�6?���E�NCs-t��w����7 -QW�Jn)��J�;���*۸In�| -���bm=��S�z��r{\<{3%��ZF�j�.�"`!kmS���qW�H�cf1�6n�9f�U'MhWm�p拊j~O��T�*����)����Cy�1�&����NM��6n��n�T{���wQ��W;@�;mV"��t��چ�.mIG%���/3S 0I��Y��ߑU|��B��1�2�2(��Z�f3�k���'ӟ�cdOU�V�=kj���T�[N�o����JV��X��e+[�mנf���fm��Fצ�y4�,81tw�����Ǭ������QS8�E��{u@��5�P�lp/��%jW����TS<����������@aN=�p���%�o�0_�I��-Ԇo\�|��W��@�:Q�� -kB��L�$�ӛ�Iڪ��qO�\iP^��ͷ��D1���n����{�9 W�~��~8�6˴-�;��'<����{�|M\�˧(�<���ܞ6XJ�������k6��dʦ��� �B�N�'[^�}U�w.U`Ч�����~�x^����ᤕ7�8�y�Y4�aq�SW�h�����>�*���1��L;´y�q�"���`�r�ں���7���\�ѵui��� ^.j��i��^�^����`#3%Hc�>��u�;�g\�JM-?�W|�q��;�p|=?�c�{���<��F�%���*����{9��eU����H�9�ۡ&g�r��Z���`�b����J�R M��?��j>�9aq�m -�ga����rc��.}d2�kh�rrW_I4��ЮVB�?���9�̗��$RߥR��Up9��x�`o��Q=�3�u�f��A?��T��Y㞚�����d� -}�l�4�\>��:.���ޅ�0���3)ׅ~���%j5��2�2�l���<N���71ׁ=�@[��RZXP�9D���Ȥ2O�a�t�R�Uε�;�;�����s�VƏ�m잊������B$�h��n�[�o~/Y��{�H�ۙ��X�k��`�!P�sɕ�4�����6�q+�yQ���w -d������G�oP��Bߊ6����+M߾�ty���ܵn�|�1ꨱj�6�z��v��m�S�<�(�� X�����h�@���{C�p@(#6����ZK*�,��.eU��J �m=4^a��J�Z�L��¤�dP�W4 ���X4�3�[����;5����]ï��.�t���(���^�����jS�-���T�[o�Љ�(�5���u�nW��'פWX�sl�Q8�^� m���P�[���f�!2�h�1��7gj^E]�Ц�M�t��Nh��2| %a�Hr)�]k/�H|��M2����m%��7�5�/`�w��W���<�~�]�;�/Tcy�h��+�ؠu���S�ͺ�6�����W�!F멽%6U��f)����i^Ϝmsq&@G�J/�ֈ����S��&������l��Y@����7i�s��Ϊ�^vz/���渨�I��UPC��'bA|��f���@��&��;�NZ�d!_��y#X�J����s�4����W�S���ҟ8�Z@��{����w�3�#����c�=<�jtKke��/1�/���ԍ����wf��Z����[�g'�ٍ�$��N>����<Okmт[ڬ�ю�ݍ�o�P�;5e��K�B�o���:�;��������W6$I/�-�~?�V�� �`>�]Q��.�u�]J�r~+�'���ߊiMa};�g���� �.M���[�f.�����VL�]���bډu^ߊiG�6,oŴ�W����vޯ��b�E~ݺ��Ky�����N�B��v]B��d�����Sܳ]��f�o����1�]W�%�]�R�-�ȵ��ͺ.�n�i'�E�o�y��o�%��s���4A��YG�:�z^��A��<X/H�I0�� �I��u�j?��e�� G��ӧ��v��7;2�1�*��~�������~���-�N/���7�1uB�3}5R���/�Q ���S�lɳ��rih�H&�1c��[��]��[���dO^��j�tcJyp���p�H���O����!�/��IyH�U��X_�]�T�ЌO�&�jm� E�Q�5ש���Ht�ڬc�n7���:S�}~px�싚&#R��8y���<w�S�˟�\�\�ݮ�bٸ�I\�P�W�� S������z8�%�TN����ud��K8�|�o��7&<��HPH��P1�X �� -�Z�����ԥ��R.�J�n#���������{������#���^���c��[�5q�@Ǐ/<ul2�jϚq��˺/ߧ:p�Gv)���8}%\_����G}W}Ehan䞐�h��g0�*�a�E6�j�0���VҤ��>L�O�E*2k<��5�ͭ�q -�έ���g�O�mm�Zp��9_Zo�x�!\�2�<�r�K�5=��Q�²�w�[�pϮM_�s�4�~��r�Ve����]�F`XC����U�jC�|�W�D�����CK�g'ƿ�]�'��$���?o��9�Mw��tӝ��O|��_�9d"��&!���͡�zj@u*��hS��jL�%(b��������ZBIx5m�*|�+LL���i� -�t�����ޏ�}w�/�B�,Ŷv0�d�)`�vT��`mk��TF-��^& b����~�,m�y�y��qMl�����"D5���J�Si�~��y�z��)�n��~���8pp�D-?�n�� -~��^yE������۵�aR����ĂO�R�Z��9��m�ѵo�5� �\'��29�t ژ-�P~x�桀D�v{T>��������㫡��f5�jKx������f^��?�ws����\`�4�<@��z=�,j�1X["T2�y��v8E�2]��GG�(�x�6����koDJ��<V�G������%!��ڈ�1�u ���Z�4����5�ZԺ��ۺM]�-ӚR�B���*j�62�ok4u S��{6�wSx�=��j́�&r�.�y3s�_���b8| پא��<����^\�\^�@�J#��F��-�X�*;o�5��$O��:�0:C��:3~�b �K���Z#B�58���g�b��x��<8�ւ���Հ�2�|�R2xfŶ��P6ųeG������gP{��ep�/��;�-(�#�.��gs��HSx~���.�7�A�t����V!(�H[{���@��w���Z�x�P�U �ש;L{T�{<��7u)����|��98�AL�lm��bU߀���Z���{��/@l[ox�ƾ�*�?��ϱ�EN�#�!�+�DϦ]�oW��2��}�yPZ�Es�y��N]��g���a���D�;S�oR}[�����TC38Ћ3N��b�����2�0����� �i��*u��Vυ�WM/�@,��A�ld��|[t��<u1ֿߤ�m4�P>'@�U�����F�4l��V��B*4π� �w�=��6�[3��p�/@����C����I��/άb���m8!�Qм[D����%10kI�%�G�*��\�`硹��K����|o���\�uƦ��wh���F����x�~ю]�~�f�v*<���Oy��������e<���J9h]x��.�:��ހ��&�?^`[W-���U�Q���;l� ��A�O� -O��Zf ֲ��=M��Gh�A�4���b�ګ��~���E�w�7�_ej�� -�WJ<�F��;l�������b=ނ!}��0hX�R������j�j��QW張�=�J� ۀ�"��^�m��ƈB������m7q����uZMѦ���+"��= nGU{�lDo���'�lt�ŀ�fO������:��Q�+�W�Q��'+��A��%/>��;��\�<���Ti�rb�Ei)���QǴ�W���V� mP����zK�Y�~*���.�����a��Ų�أ��kS<�Hu��F -}��7���%٧�|*e<#f���x�"O����WqfS���J}��j�<�~S�����<!]��WvŴ`SM���FD$�*ڢ�4�D�栻(�~0���k#V�y}oa�\G�\��T�}b��Q�{��z?j��mG�cԯ�pq�jŢ�@�hD:�h����]��W�C�a��&�q�Q�a���}q��F��z�����M0��?�Y�m�]6��Y����:;��on.Ց�/�������Dt�N�ܠ�zU�<��g�K,@��B�t�����u���{��/��a�kt�.�m�$���SE���+��C֣�SQ7[�_�E���{��|x^81�@�ItN �4�x�V絺#��-��ꛤ�����x��|?̈́���� V��G�n}A��Q����̈́Ƿ�3BxL�q��M��8�6�B[�s��E�^u� Lt�_C\܆���ZjNy���8=_�/8�����'��{��[��\�v�������* ��Ur�}�.��FX;��]u �?�>��3v��H�ZB�zU��ze -���8C�֥�pPX[q��i��ZTH��4J�}CWu�~V��<?���s��s]շ�cB� -�c��~���+ӟ��a�46�U�ՀgG'7v���h�:����Q=עt6�pj���ڄ5�Y����79f4B�Ȳܜ����,�;斨��TgPvk�֛�ԶZ4�a"��5��<�� 0,�b��@�"2�D]��W5���R�x�j���p�u�ɲp�--Ƶ��g�sp�w�CS���<`w�j�r����k4Y�d������}%�]8Z�=�9�����x��}`�O@�\յd���t1��u�'���#�g����8����l.�F��Fg��7i�|�^��])�d��GD��J� 'óA���Q��~ZGp~��+�=�#��M�s�Ә.�^��+����K��I���R͚j��T�K�G������g{��`��������������wp,aK �c��{�����+q�SG����,M��"Cvv�U�D|��3���n{��>S;ІK5��0��SfhW��|�� -���G��yU�^H3�BB%�u#����tI��� -�cR -'���a�/2�Q_�����ѡ�~��kh�������g��'��!� ���k}�g��o���%�P9������7�l�4���,W��<��1rDݚW�5F��<F�59ɥq�y�K݄�\�7��궦�KA=`۟�i��Z������|?�"F��pş_'�"N�_��"��v�JG���z��`���٘xϥ�<�r�ԯ:�1�ۗ2�Z0������ě�����V��G¯��~�=(�a�K�F{]F?3�����g��.�j�V��mn4���#x�h�F�ܛ.�f��_J�����h�ـ�1��� -�Z�a�1�)��U����X�)Rd�@#��I�����"-��:0�f�ZA�����5S�Ph)�3lC � -��ťo�J#M���ElOe.����v�םoӝ�c!O]�NOy�������iQ�9m���s����f�i���[F-=Z�`���e��#������<����fI|�����~���!�eYɴ��w��O���i����n� �)���6D�'5z0xsi��W�'X��H���%s�P=6IP!0\�I�KT�:�?��X_ۘ1.��mVLյȱM� -d��VFmIk�Z�U���v8��{/��Xe F��`n�a�*�?���/�g�ǻFb~��R}��^�G�d�CjxU�����uV�ͨ�T��M�_�f.E��(�h'��=P�*��RV4͕U���^�<.];Ȫ�2��������n~��ҺH�e���ǚ�lT:앯�=�1_�D� b�r�}p ���!��k -��wh���i+���#���+�@���"x��4�=[w�I� �.쯄������.��CL1,W�Ѷc�y�[��t&�ԕ풐x�r��b�g�\26o�l�U�8=e1����E�l��'A�� 0��ݚ���*�8����D�g��P�9��4j�w��"����Kg���3c��TAu�3� 5�ZV�P��T���&V�:�C&Y��7�5�]�Yդ���j�Gq{�s����y�i��~���}�'��$�\yZ&��*e�sɅ,��B�!Ӆ��G��\<tԔbK�]-ݟ�_��L�aJ.c�h-�6&/fn�B<u��E5��Z�3W��Qح�ʭx��>9��I�v[7��A�l��9��x��5>2�ɡY��,[2�`߷7�_� �N��T�N�7s��w����W;[�oo���Т�����Ϟ�w����ey㥕��R���R��Og���ʻG��0����$�����<��Z���* -X���=��<Dm����g?F7Ρ�p(8}���w��8�����-�s:�U��o��}�����`������Gv�w����<�=�3�.u:��xvd������~r@a�����Y1��`�ڷ�rj�������t�����FZ��STd5��p-��ь8��/ ol��'�.Z�SQ -�ӄ�3��f��Ѐ�ěg�'�ǭџ -���������n��RiuJ�Pl�-I���� #��Ll|�sRl�6� -l�ʟ �i%FQ3�/HPg~���G���F$�o)W ��X�m»ں��"��D�M�b��Ш��={�����+�Ԩ�Ol�����v�t2~m˰n}a�V�rE�s�A%`W�h�J�l�y���kԨ7�d����g0���E�'Z����)J��4@tM�ִ)��z���ꇚ�[�9D�$S��|�sM��1��[~���c=t�;C P�,L^����V��(�+!���i?��?0 --����_|�p��o�� ;�{��m:N#����1�������ަF'6vc�*�aR�F5�H����ޥٹ��߾��f�%��kuXuO٫�1���XV�ťƽ�����+#��<��̌���CV�+:�3ҬV�� �3��V~od��r��e�C���<��+f1�F{���y� i�u|���ӡ5Ʈ��y�L]�8Xwj�k�F]jqJ��]^��~����'��6�o�Re֑Nշ���G9H�Z�����8Ҩ��Ĩ���Ў�NZ�~���Wƿ�Y �{�_=��>�6���g�.����\A7��g�c�8[#�Hc� �>T�n�����">��J|V2��0<{8q����M'Um�}�:G��Ħ}�Xw�E�aZ-`�����/|���o��(�.n�.�x�P$���ߚ�3z|E�U�2u�=�D��U��|��S�����`��I��o_��y�ȅ��BͿ �����Ѵ��<|��МO^�\6�MZh��M��%K��,��+C�m�P�X+F�Q}�鳭�-�q�Bߟ�N.��^�{�n��=���U�� -��K����^�Ѥr���ǫ����k-:�7w� Q��:���Gƣ}���RJ�'}߅a��Mqz��?�f;���X�Ez;�wMU����"xd�H���Q@�e)�����;����u�r$����u����y0G�ȸ�\l0n,�A�R����t��_�6�W�b������鐁��A�|/� u���ҳ-�F�XԄ��!����px�=sVb�j>�����j]�{)X��}��"ֱ��<�pK��\G�M�@�l���0\��q�d���8ts{7L�=f`���sr���`5߹�'%@��"M����r��K����ſ�i~�.���l�I���y�?��ݺ�ߴe�)����4_���ro4����+̇(?�;_�:>98<�S�2V8�zw��|��.��Ф�P�ͳ�� l�������|dms��m���O���n�����.��Z�����`�Uߨ����b������V9�y�](�e�tQ_�4�j�o�9�/�&�jLB��mJ��-��e�D�^���UrFWڽ��C�yz���t��(P��Yv�&�Y -"��G�`�b����]�Qu�lՉ�NE4��i����v�(�A�2*�@����P��#�0��[�5��g��~�z^�o���XR�_���{����gx88��8�����㎤��&ŞmN("�^Ŧ=$Z��ON*>k/�*{@��u�yG�iC�f7�j%��t��̾ �;��v����$m�ܠ�b�A�T�S�G��=$D_�*�q���j��̢�l��2��(�<����}�;�{7H2�u�� �l�>����no��������-P����w�3q.�\*j�ݛU1��m�K6 V���<k��%�{���צH�hr��r��v��}��qx�anu#������5�`��V�j�"�;�?��*)��B��-F�\�{��$��%<�`��=&*G���l�(�0V���4?�`D6��v��An!No���Yd��+@��vDZ!��gP��K�!�z�8&��a$���E��4(��z�â�{u{vmBI25�x�H纺�0�3��s�0�8�(����}�ތo]�{)t+����]�llޔ��4h�e�,��V� -w��Z�0�aE��f]���i����ư��<�_K $5��g�t�!�c���>p� *Y/�z�z���]��#�Q���[+���w��6�]ߧ5���r*��`��n`2�ۉ���A-~�C2Ѫf��VQ�N��5c���������X�nT�˅ȱ2rDŽ�`�|�̄0h�"x7zc�-�t�QoM�@e�Vmp�"�Է�D���S{C"�"cDhp��[�4�����OK~��}E��a�N���swJs�u������Ҡl�\5�K�!p��/�fI�J�\��i(vڇ�'�壎e�� -Oj�(C�Rhک�PS��&1`���tMU����<��D�����<�,ã4����v�|;� -�K����ر<��n*��"۳3cwr�4��x���/|���-m��Y�ڣ��n��p4+��&���:0���%B��gÄ����fi��_w�?���_�~o b*%6�Y�E2S��D���4@�"3�����i��(���Q�p/x�ђŃ/��lUI�o��I����^E��>��H>�I���jy��?��y�t���I�o��â��/��/|y_}���h�ofI����Q��)��M,����W|)5�o�n%���f$ nX�{�$m�%�����z�;~���ܚ��G߹V2�G�3��7jl���8�X�;h/*��%Q���([�ܹ|����8?��{6=t��J:�@�b�N��](t.u8�`��?<�M_�~O�_��qG<���K�Q�K�)n$��cӃ��4m�O-CQ� ut�^�Q�"�?�6>�}�i�Q�0��G1���+]IY=�2�<�}���ݳ�3��j,-N/���`v��ƭ U �6K���]x���j/2&=[t��p�Ӑ�z9!۹��<{v�O_9k�͙�� -;��?�r�W(pXV�5}u��v|O -��6�<�8}ǧ�������oW�W��=@-N���7��u��/�r�����r�����J��Dw�Դ5ރ/�S?�y����� �� -��[L��~�ɚ����묞�N\�f���%�\&�g�S�h��\U� ^f�5-e*�[!B߿+W͠a�K�/��1=�������6(�dW��@wVgV`����?(��"}Y�y�.�ɹZo���O�[sk�I�q��+�@���TY���-3_�4���v�1E�^�i{ �=���3Ӥ����@ -j$�+��9�{Q^D}�fd�:h|��G}��'.�X�N�0��(��M�w��W�}j�,���Ҵ�Q�g�z � U}@>͠4��3L�H���" Ն����CWk�k�^�.L�<��+6�p>���.\�E"k���ॢV�m��<�撫R��0���a6��Տ��>=\F����4�#�Mn����u���L�:R -\�x9�M��R��\�M(�Rį� l~�d�����S�O�=?�̍ok�jd��*'�@�C�e[�7�v:��}�sp�w����+б��4-�S΅�,��N{�����b���z�8ͥ�A���>��}"#:h�w�oBZh?�����=�=?8<~f~�W�5�ĥ�%���� -���U��x�G�ĚD�5�P*�ҁ�����]��zX���\�{�K,TR��\��7y�f`<�s)[�6�.bC�Y��ݳ�)�.2Z��V��"&�e����'nLs<� h���J��h��d�}��/���D�+�.�V��\�?�R��쀸�� �4�/>?F���.0�j e (��_���d�8nh���UP<��*��CIh���q�sѪ6��&�_F{xr�R��ϥ��b}��wvV��+71�W?�K�g�q�Q+���@�~����U�{��z&�Z�К���4w1������/ZP!Ϟ��{0�ހr�n3�xd�rW'b{���q8�?�_A_7wv��n��������q��\$�,h�k�g�Cg?X- �V\�)��O����̍���7cBR�z8����mؑ�vd�u(�:���%G��Υ��6��@hZ#�fP���u��o�a+�����/G|y��yo�-n}��� $�k�j�ëku��OO%���}�2�o���"̪�h"P�"�(�����Y{Ԓ� \Æ�Y��8�'�٘�X�k�'C5��fV!&��s��R&P9�L@����Ok�#W4����ё&q��OkY��T��k\��B���@�&�BgB}oVȕ��G�<�g��C� -�E��^~PK,�p��Ye��H�������p�fI��? -\���.|��EF'�,�s�w�� �q6bI],p�<��N��/xx =���iC|�r`vCv��(���d\���ϭ#�l�����sQ����=ZY��Z���l���5̝2���c�O9mX��p2�t�x�;��(�d�- ���-b�^Ln20׆�,܌� [ۆ&�G�#�'Gإa2��E9L<�\��:�O�� ��Md��9���U��3�m� �O��^�����B'z$�CCr�(� ̤:coB��C��>�8ћ������80<�j�]ώ�J\�mKs=����hoB(RT���[-�| -����e���G�~��*��^�I3����ɾ�\�퇠1�,-��.���n~�@� -uR� -Hi�D�� -�{���sb�Eόe(;`?9���G��X���Ъ~����J�.��������#��~��}�y�b\c�;ܜ+!��k?��ٲ��l��aA�ɳE���Z�<ףS�fU�� -�v����5�1 J1/F3�/�,q��*���0G�ʞ�����K[;�����YH�L��n� G�=4�fjL<sU�1���#L� -Rny�=��gA%����cw�O��7ubKX�{z'�4 ��{�4D�H�1��ɗ���n�L�8b"�8Y��M��Ӌ?�\���<�*�Ux~�ԝ/��o���ћ��D��R����%�귦Qg l��At'��^�Jk��� -�-r4e:��x���g�)�f�j*�������!��-UZ\E �l��|R[��� ��b<b�Z��LY���y�ֵB��ܷ�T�l5�S�잋���}y� ���^ӻW�_��.�'j���S��=��u�=l7x-��]� �����~�O/�����//�����IpW�-���p����_��I�0j�)�k��f������1���$T�Ⲿ�ɱe��0�"R�iG�>�AK��� Uh v-�w<�k �JT�e��+`�g���s��#��pS�|�� -m����`��7�����wl���i������z�z�x3<�nx��� �(������o�Ɣ�^��ڄdЎ�L�ٜ���������ln�d��9��T����ν接4���u�E+}�7�x����#�&���{�>��6]�e����Z�.�7����� -e�hq�M~����R -г�/�yV-�A���?�%e��fc٦m���jd<�e��95�_�%����ٝ[��Z֡�f�:!��<���V�ø,����:�m��(@�*��5�on���J�bG�䨨�\�+.�����⾊��ɂT��u��5(x��T�<�������,.�%C�XI�ï;�:4�^#/N�G��R�B�ɍ�����C�0a�_+��$�J�:�Ԩ�*ԩϳաKsEe*� �{ -�if�� kR����V�*����.����<;�)i��{�%D�e�`�(*���B�4K���Hv��h�c[kz~Ǧ�����lo�RNj�7�Ehs%jh��]�$[�_�њ���@{P+�9���=\}���86i-�|�r��;)����rjBP<�c#��5Y,��ԧ˚ҫ�"�/0؛���I���_����?�3�rƃj��Ed�fc�>��V���3{ ���g��sO���c)�zoD�e��+������y�/7�踔��]���"�>�j�u�wʅ�1�ĺRib�4�!HT�K\�i]��u���U����pp�Eiج����=U��2y�X,@v�E�������L���g�ZF��S��}���7E�����1��ݛ�����Ӧ���s�C1�uO�����v~�J�~�ӟڇ�ӟ�<��O���(Ϛb�1<�4�w��߀�1�������V��$}���#љw.��ʉt; ���1ͱ�B�H(���營8e��u Non��ng��hܽ�����c� �� m0�vH��6��\�m�슠��5��H��tt.u���N.��4A�#��w�,K�b(���U�커r�U����|��˞S��+U[{���7�rb8^�� -��ׯ�}�;ar��l�ep�����H�Q��Y��K���183�9���~�\)�>��� ����CiM�<-[��;�O��㽪;p��� ��S�N�!��ڪ磨�����x(��ό]�f�TE�j��tk@.Ƴ�� -$wz6����Q 䏞�Ͷ��k�E�s6���[�*-� [}�0j�^p��~�JO�ދ/M|��7z6���ɛ����nÀ���le*9E�a��nƤ<������_��9�Pd�e��=��\�,���H���Cx���� x���'ج��e��^��ڜ,�F���X�����}��X�\e�5��uЈ<M��P�J�g]��V�ঞf"t�l徇���4:���9���1Մ�0FqWS�I3�笔N�l���q�:�P���~6��Ծ��I�[�j�"���Gi�f�m̔�$�P_#�:>��S���א���'�s�㉋C�=�,u�Fe<Ù�����̦��V���8U�)Ȣ��+��@����%nT�1{��<�GD�m���<��$�g.��7]��b`k�l�o�:��|�j�'O2G�>��I����[rl� -P��3�k����t�!�����&�[=0�N��6� RQ�p��x\<cm�X�]<��P�QA/F<9�U��.�5�ʷɁ+��.j�%y�����������=��w���;{�vp������yHH~����?����?t�g̊�|�U�����C���M�k�6���uyj�p�����/4(���������߿ߋ�����{��?�yh*S��Y�q�+� ������d�����mK�{vaJ���7�j��.\Ro6�s��1>.��u�Q��bi��Z�:<F�~;L�]m�Mw{vۮX����ۛBnl�H_��F�X�G�J8QY&���Yj��.x��쮊e��c�n���>�������-\BȻ�����Y�%I�Ѕ�?!�˦#PS C -�����7v�9�&�� O)%T�/~��:��W��}���d��kJ����p��\~|�yBB DT)�.w��iִ<��{9�OլYC3%���ԙ�C)�{��������+ʋ;C�g�/Q{d8HJ��`�[5sD6�y���N*u����C:5���^>���m�ګ����Ч�V�.�1u��OI���8R{����v��l�<��v�Tn7��k�� -V_�m�o�ޟQ�;��'�4�}��l�uaU7����v<e��C-���} -�M &�L�<����B�c|L�jl]��k(s��(���AH"4���6b�<wļc$c�M�gc���u�Z��!aI�.��u�pM�d��ʳj���YR�R��*\�0�m����]�����S��A��6j���7��I��i"X4J�������ޥa�O4���8��m�i��\����.}�v�S/�� ŮM�4L���γ;S��Q��bF,�z�<?��j)͠��o2Ҡ�ia�A��m緝Y�E�{���%?���y���V7����q������QY�Z`�� -���z6"=s{$>\���o��"\���7�x�S)rԒ��C<�။��6O�m噼0�fk��.r��BW��1/T>�����{�y`�t��Fm�!�a�y�:�)��Ո7�� jYN2�>���W�%��eV�?�q�L���)ˠ����m^��Y���J/�"K��]8E{�Ϟ���L��ݠJ )�N" U�H����0s�ʅ�UV�����y^�5������@v,��"�a��il �H28�E �A �k��\5mڡ��Ij�7b�t�4 #���w��=��-��:����z] ��4�R��O�,��1b8|�7��0������c��۱)�_�67�R�3����מ�"��fX�<V���E \3+�ے�l�Gh%�����D���F����\��W�{���"����w2�Da�Ҭ�g�mS��� R"�z-�7ձ��,u����x���I��[��б��E"�D�p4�P�>��q �b���w$rƞ�>`N��[�S�^�����'8��2�㝕hkM�� ->���}W@�6�U�4������A�^.����?�-�p֕Id0��+㳖�����%� ���D/� �D���m��k�м�j�P,����#�1*���%)u��h���������Q=h����{�m5��4p#g��'C��h��E2���Qp�g���t���k�Eݫ�ͳ�T�����eP!��rW��+�mv@*�4 �,O��E\��q`t���le����������zvh�T� e9ݤx�=u "e�H�4�=ԙ~$0��9��g/NN^���|�j.�Z�‾������>�/.>�?iC��P�ų�����pA��mj�oF�*xTC)v�;z��Y��=�JW���m��ç}����\���D��/B��J�ޛ&�x�����ܢ�1UvFcRF����,���~�(;=����`9�۰g�S2p�+k�v��vL#-�䃲�YZx�N�ݗ��:[�������˗m�R�&�o�\��'�������:L����N�"d��ʳ���t�\Y�ZW�)=��z������V,�l�(P��=,���������!#�F�y�t�pO�G�nu�0��^�5]�"16��8aM,iUU#������dvo��^�nu`7��͏��j�o�O�ٍ�Us�ogT]�Oq.��`�#V���g};���ip��+����)0�o+.� -�v����w������ž1F��joq�WC+����n��w�|�[<oB�����Fcbin|�u0����������=n>�M��?l�j� ������_7*��kL��`H��ۈL݈��J�����~ژl~�]c��_�yP��] {��y���%(ٞ�P=1���d�"-�]���:���J��,�R���=ҕ���gP��\� Q#����%���H���c�ٸȞ/S��$�\���!W���Kh}0u����'�g2��R`��B�s��FL�+֨�p-��F�� -�����i�T]E�@�x��Ra�B -�{��X!��,�x���@�w��F�0�������V��q� -,��4oF���l�z �ßj@��@U���(R]7���| ��?{�s�����s-x�.7�S>��k�����Y -���ƿ�̮���hʔ�Y��sK��x���e1���=c�|;8�tt��$�砼7�Kqg9SrlƏ���T�ի�ej�(̨��U��\h�� E%��*�}��3��M��q�ᗦ�����T -H�O -��ZMPhw�N�NjaWjljµ�Y��i�T3�6V���*��X��+���/�ۦ�Y����������QC/���=*��!NcTM���n��T���Q���+�G�!瞽2��6�m\<��; �o��!�*t�}Ӯ�1��+o�u 6Tgo�B�k���z���i�g������}���m�A|��ۓO .:�k�/l$XI��}�;�����>�WU�t�h����� �#t��hH�٩��Hz`�>/�v�nl��S�o����e;���B�~w�[�/�\��O@9š�櫸lAX���Bk!�Lm��u�h��{+��:� -����V~l����b�g�'�g�����nѧ�85.x6���� v�3��E�>�V%@�,k��?�28�3��z��m�~�L��Cq��UQ1�;B�cQ�c&�LF���5���j���V��+��=&���Or�'B8(��h�Aq��PA�m-r����>��h� 8X;'*�=��0���y7�y������e��0y?�&te�� ���Ӥ�H�;v���g�E(W!7aMm��S�x%�\*�_l���gp -{_@;Ah���D��Ѐ���ii9��;���Ǔa�ׯ��)˨c��s��T������}�ȗb���*��w���"^ʼn�M6I�!�u�����>�MW��0+��C��u�%����l� �9�lr�Θ�Z�'�)�̫8)�4a����{���K��Xm��Z�����l3cB�I���duJ�2����O6���4xL�"0���44�I�~�b�`P=m�t�Hg1��9�A�v)"�=]�� -�lt����Y(�y�y�pu=��臠w�N�/����L�]��d����+��?\���$�j��������e}LF�O�d~�� ٥*N#���ꔴ��.E�x�L�9���+��wwmR�B�-gL�����0^���{Ϊ�*+[��(��|���+��4�f��'5d��H?e�'ed}+C���� V������b���/^�D�͟�mn�]������?����������O;�L=#��'�U?(�������.y��E�UO~;��'����E�h���o灇��IJ�⠋����?��O���T��^%5L�_��ӎ�M�j�Em��b���kO����]$�d7x�� ns�v�w���!�q��b��%*�mGD��$�ٌ����U��V�n���q�R��A�Іp � -��Eh촒��� �4z����rizs��a�S���`���l�����(�g�� ��0�s��σ���.2����� -���+Ɠ�������1Yt�Vk2��]���x�\�;�@L�[0��\�' �\w�6>g����m�����/`��4���������@���p�.ڽ�k��J�P��ִ��=�P�E��c:� KͯTyro����/�����kZ�Y�-G�r��ȘUȜ��{x���Eۼ���/����=y� @�"��!-lxe$A},G�*>�I���F�W���E��'�;QG���C����B@e�Wݻ��JE��;uQ��@���dIКW^*�\�~�\Ԓ�%�P����W�M�2���=�Լ�����qZO�f��r0A�]D�fH�����N�.�����h�H�G�I����f,���e=G5s�F����o�:A�D��q���2MLp�4ŬF����8�334�=�a&���{���G'�U����V��40˺�v� 6���� -P�6��G�'��~О#N��0č��.z�Aze����vfz�L�T����87c�����s���aD�[��}�����7���M���4&U3�J߫���?Z�NJ�d{��2�P�)JOb���[�f��3]���ڽ>A�ڵ�:�.p�������ܭ���ae:M�OF�q&nW3���l7\�L�:�>��ogÎD�CP�D�lO)q�i����;VO�Z���k��>qf�%�+3{�u�o�$�u��6�3 �C��� �.����[�ؕm��a���T*J�%�-���d۵�7T�7����a2�-z �/�2�t>��g&��K8��ՠ�:���r�ʿ}}t�8y\L��q���D��̪��12sݚ��T{f�=�f�N4�:{\�^�gp�l#1��FNㄍ��h?����#vAK�7��d����u������bK?��-�V��`e����:G.���LO�� -f2�lH�S�m]����KmԂ�;~&ێ��3o����=�*ׂ8u���N�� ����!���|ܨoA��y�`{*-���E�[Q�[!i�������*�oT}(Z6Jq�r���M�)��c���,|�8�(��������s�,�[��cujU��?�Ze���Γ+������,��4��H;7�Cw��݁��7w�yU����,�@�UW>6^��>�!"d(�v孵�#Y��Z�2l&�Y��f��v���GFj��m-�ۘn��2N+ݤ����91^A���`�4w5������Z�Xh�� -�M�|Y%�L����_����\y��j5����Xp����C}���z�=��4�k����b�����۫u�>��3L�{�2�Z+.diow���ޕwU0��^=��z�a�d���Z���G�ʍ��r\�B��uԒ�jΤ\��� -a�\}|_�u�gϺ].�Z,ᮥ��Ě���Z�ɴ}��R`�g�xU{�+앣����7�Qӫ��"]AF+��IK�KgM:���7g��z��ze�tZ�T�n��U]`+>kw&ۣ��:ޜ�(`��S =����;o��xK�~�sm?���:�cz�u�����_�b@Y�Փ% �0$���z+ׯ��/s���o�� �R��a6x����� xv�-�l�^Է[Q��ۅm��#@.3�lnֹN�Sv�'���D$P��}�����t�j�Y�]���Wo� -MP"����hIa��;��:���į���,�%y�_��%��*�$U���(��j����� Y -(�^ k0g����}�[`۾k�c��9R��h' ���շY�����ir�:�po����R�����8�l�Pq8o^��XmL�cq~Eݴ>k���nE<{yz�62ƙ��9���(l?<&:�v�h��59�i3�h`ϧ�^,(��[ϴ�pnݰ9�Y�ۖ�T�V�6E�e�8�'��g{���P���n[�\ؘ��Y�Q��S���Hh��(>����3t��o�27���������[;� ,_�F�+��<*�2�����u��-���^@E�+�����u�56U �k�7h���"c̯1����[��O |f�{���Jڭ#���w'�Q���1�ա�kAqκ�o���;ݩ��{��ю�b=��][s�Î��1=n#y�;���f��HW�D�f�b3�� -�v�9��<�w�t����s�\�ι��*��@�t]�5ƫՁ_�����A�E��l2��p0]��T��qqchwR�_�OSJ�C��b���$�>7Te�>���Г�2x/�u갊��1=��y�R?�7�v�$�|_�Q4 -��*m�P@p����x�3<��� ��:X�y�.�\Ȳ^o����Mϱ>�B�c�� �b&1��!�&��%�t�^+7t��~�0��X0�7`"Cl�� ���`��8Ŵ8�9�29����$ӫ =�U[������&v#�B��4�j��$8Ǻ�� -��85���I�ﱙ�mQG�f�ƥ��p�u���u\��H%Mk"a?�{�'{�����E�O�����a{�t�+<+�?�1�4%�k�s|!�!)U/��*x���S��a7���I����������*<J� kc���W��k�М�V��u>�YH��4?�n�9\F�W�����l�����G���P����C�4��X{���pL����(�����Ǔ W�v$4O�j�pl�Om�:��մˍP �?�S�K���4�br��W�r�^�KƬvE�������|@o��2"�;Ɔ���'@ǚ��h��[y�'�<�%�Ȩ=�Ƀ�V��3���dz��t]����0ڿ�?�� *�6]�������<ڭ;�݆7�{�e(([܆[����G�N�i��2���v&��&݂]�w��d�+��4�ne,fݾ��P�$[,ژF���[���������x����s��m<��;�� ���հӫ�+���ؽ����j��}{aeܙ�bw���+Ъ�/n��t�Xhz�4/'�[�j1L&�m�oa�']a3�"��0l��}�t��l:�=�?_���[��C���M��1�����d���d�D��U2����mx�)�\�͔�42� -���oKna0����܆]1�������p�+�b_IX�ŭ�ҕkZ -��܆+���<Km�Z3�m������,�6�芨� -H�e�Y|;�f�՛+�\�[�f����&:3S7�)�\o+�Ϻ"�Z�xl�����+Ă��m��[��v�+��V��6��h,��g��8Pw���r�YWP��oNV?���\��>���x��%ؘD���6r��~W���X� 7��2� -ej��ɠs�@έ�ٍ���ݹ�{����>�R��?��3�Xk�w�߷o�����5���n�� ���6�����3��o���+sχ^o�'�8D�[\ǽ�M�����سۊ3�᧹t�Ѧ7��o\�l�վ)����ԩ[���{vk�{�i.����o��y�uM<��n����@W�Fb��Zl������6Px3�n{a�G7�붖u�)��v�'��2>�L]��Ibqۻ�=����{L�g.����\��������_���?&{=��_��1�sG&�ͱ��W�paB�.b��t]��1�@[?:���i�˴R]���2��v<�N�A|�͗O�F���E����n�Z� -´+R3�S.�ԟdB�`50�ݤ�.^�WIVje��߾i%�\C���қ��"eM�6o7�ܺ�8�Zf у�R 3b��r��4f��8A(�����uSj�O�{��;<&�x �$B���r�@'ȶ�qE��1�M��'���:�4�S�I<��E�����UD�9|V�;�a[0��b�]*�R��j5�����bz.RՁa�#n��#�#�GT���R��S�r�y�P �fh�ɹ�:�Vo���:�4� ��l�C\�0��G���̨+hP�e�7���P�[�d4K��_��bU���J��3.N>�Q�32ӭb��ʟ�nTԪml�2�.��A]�B�����y -�.�Jw.D�YT �˽��.��ZD�e/8Я�ʫA��R���z�������B��� �-��b����d����\85Z=�يS.��k �ڰ�.�8+�j�u�Ha�kaR<�}�1��m�7Dy�����U5�4T߱M5�l�5ژ���αc��L�Y=�����3�+@�� ��M�(dk4��'�F������e6����m�Q� -ԓvC���D9�Z���&��$8�A�����*ya5�5�� -���L��UU��#��JC��qy���2v�=� U����wu�smu���V�H�R�z����7�5�F��Nƈ��oA�Z��� '���@f�[5,=����S �H-���p��u:3gQ�euk�����q��n_?�^���B&��z@L����w���*f�ϧzG3��q ���Y1/�'�:vc��i�%zҡ>[��֞�"o��z!�v�.���ҽ�oaQ�8�8��3�E$g ��b�8v� �� �J5\�g��|q��L��+���9����{�\�/���ݠ�⮆0�L��q�uQ��,g�=q�mSϓ���� -���y�%R�e-�������wE�1�ܣ�M��4K�ٟfl��?l�9{1J�<����ަ�4�2��Z7c�:b���EI�5����1�A��Y��t2�Hg*ʋ�� ܧI�5]uIKl�U_��6뮖ܦMJ��z�?ؽ���� �E(,n��WK�*�\oM*��#�c���x�q�_L��B���*��?���;�TXpQ��0̙rK��ZU��"8��9�mq��N1۵��/h�+�5�.V�1�X��Y�dv�aVE������*a2;���E!*&�cڬJ�ˋ�)d��h�8?��8��9gt�z\��V�m)�Q뉈s��4���Z��zѡ`2M��'�*���K%�� �2٧C�Sq&r&���y ��X$B���Ӂ��x��1�a:t=�*��Lf���, D\�L���<����s���Wb��Y��'=:n�P�N�e��Y_gK���P;Ă�8�����I��[ߨC>�Z�ё뛥�ˬb -Z=:h}/D��z��i�T�1�a:h�EV0Y�#�a<��1W�7��1�0c*�M�t�:�D1��~���\���X2M�~��t�R&�t�:R�jΔG��f�U�ev�a��y�d�VGP[����t�:�"��%�O;,���k>����L�w@�W�;��)���*Vv��g:\�RG��p��%�i:d}[ 5��j�1���^g*˺�*;g�]:v�,8aۋt�:��uƕ� ��uR�1S�5�#ן�4Zf�ɰ+r����&�.�Tm5U�8�j���R��E�RZ����MՖ�xQqtV#]��k�pq����L�h+Ӭb.1����tݏ'�+�s�R]��Ndy�q -\���.|]���vp'���"xg�av�de�\���5�W���?��ďc�pU�G��9�_WL����>V\ ��F�� -��0�(F�U�7�u�uFH���+*Ur�:&��pX�g������Œ� ���� �4��`Zg�^��|��q\�;"�c�31�t��?2��㎀Ȅ�ޱ�'\�j��g"�..�v����"c�;�\�#�=�yM�Ԣf�'dzN�k�@�Px�O����!�U��e7!W����_Ȕ��<tfK�&a��R�w�Tx��: �$l�U/�tD�'� -��p�uF�tD�'�,J�c�Ǫ��:�t� -�2��vĮ�"]���X�s������/�^��n��W�u�Ş�T}7��a��2�b�[�iG{�i�+�L;�سD٦XG{�U*�4�&ӎ�,�:�pͱ�@�<�K�H�jڬ#�}���1��uı���\�9��~�a&�{�(��vpR�Lt6�-S�ҙuD��*�$����l�i��+6��l�i�B�X� ��i���ug5�d/D��,����]�Ϲx���^�|�q�dL�;���4��C���;��ɋ�v/�I3��>�n�H���z �����o�����p"�$x�L.L���<\�70�!Y���l��S�!���.�����nG|���E�Ҵ���V��u>��:B����DX��:��72-�����aV��|��� Cɶ��:"�7�:.���k�w��C���vĸ�x�5�;��!��҅�j�2��w/��uQ��|Gd;RG�iv��]vS��v��݆+��v���Eƴ��G���8���i�e��,ϸ�{�e��(�;�i�#��ʚ�k�g]���1�w�UC}��d�+��q�1� ]a��a:�cY�l�����10�\�=�b�<�$ӆ5w�.�s�>�e��z�t��^����Sw��;x��n�4������,�.��+`�/��g�@.��Sq�����drbpC'�H/LNo�L�c�țvQ�}�̘k*t���:Lv'�vi��U�TV���9�=b&��g�z��4f*(w��0xOT�����~��>���E��8ȗ��ɒ�w� ^W��Q)+���F�����2�v�ވ�,N��i"�R�.�����.�.fݴ�9�FYR�\O�ր��8)������B�e�d���zΕ4t��r̅C�v��r ������|�W}��Cpf�,�E�FL�;��q\2)�L�X�e�X�D�*L�.6�2�u�d��v ��o�d��E"P�����5��(�'�l%���iZ�s3� -]\����i<�=֘�w���P�{!�5�+�j'ˊ�µ�R��� �8�����*6`U���>L�S�.R� ���j�]��� -�؎]��?-�R.���7�b�)N�x-��]����YUr���(�h��Y�v�r� - �K#��uC�4���s.���Vв\���ۜ6��4.���J�1����l����`�2Uy�˝���k���B��cИ~�A����I2hl_d�,;-��Y�T_�u��ﲢ̘���{�0KR��ɵ�\���A����2�����,@�+.��I*@���.r&�=��%�]���$06��d2:��˅�3%_3'c��>�e$"&�#��2�͙9����T��&��S��S!鱌�k&Q!�q\,Ϙxг�=6f2J�'�t(�l�I�Y<I��{T`z�%ي��{֣��S�E�������t�%a>�Qa�i�pM`*,=���攴Y,Eʵ������`"���TLz!�9��r֧bҋ,Pa)8��%��>i9]�dL��Y@�=g�[�TTz��Ue�������5t���p�c��Xs�E������̫� L7�S��1g��7��H��p)��fg�}�n.B�!�A��Z.թ5b��T|�Fm;�łk����M�� �U;�"�7�(��B�\Qj@E�o�[pX�T�`2=&M��̵�&������;Pa�H�\������c�OZ="�\�H�i�t�9R!�*B��ϐ -P��0+b�G�t9�>��-��:L�<f��C*@}�b3IE�os������z�f���:������"ej>2Q!���t��gDŨRyS\Q!�.>^$Y�����(�F o�u�QQ�M|!"�i<��ӱ8[���,>�fA�S0�Rg#*Bˌ��5�BԱ:,�\����Uv*�S��٘ -Pǹ�Ry�%lИ -R'"^sU��}�(\B01gc*H���$.�� -R'r�s��c*H�,�՚��lLŨ���� -bLŧ���\���c*J�ͫՏ\���Qo���+.t�lB���b��Sh�P��DD�9@f6�b�,��� -Q��3Q�<N��f�!i;��\�� P-�"|̸Z�͜uk���WW��ħ[�O�A(�`2<�4���w2������s�gLv�uk�HD2� -�N����F^��\�3'B��>Ϊr|%�|�U@r��k�e�B&\͊gN�zc[� Z|�ĩWE��s!�s�/'R���8���3'V�e;SI}�"f��Μ8��<��b��uY~*��\��'D���� -���N|zm�E69��� O�-�i$�`�Nxzc;ˣ�E��i�9��#�������3���y�Th�u��(� -�.|��*������Pix$�� .����FYΕ�����n��<$���n�>��"<��2��0�3q��>m6e\$�\0�t���B&\�xH�¥�&_L�G�#u�a3<�0\��Br�/:p=Y��2�@�����t)���]O�9�R�ѡ�x�C��2���d�2qa�a:z�㜚]g1�a:v�, �bG��=;l��$�P�����{�^2����M�r�M��oby�d�]��̜q�+:l�Sq��J�t�OG��L%�Lܧ��a�A���`2M�#�1�t�:�&%��vX�c�+�7LG��8�2QV�u���G�N��t�-��=�Y:Z}[$\�JǪ�jJ1t�z�E�,gꕣ,ӡ�u.ӡt@��7��Y� ��I[�c��u�a6 <�LKh0�0��w��0���թTʘ2���ϲ�;��EG���4f�[C:Z�Yx�̒�e:Z��D��L���W'q�tפ����ǥ�2�tnH��DT}d�:� -21\o�X���:�'f�4����!��˒E�w����O"/S"9���?�E.�Lf{f�j�~\^0����R��ɬ#^�ޚ�A�)�O̵�������XdL�Ʌ��ͪCɤ3�,�i�Y���������4����9%�*������X2-`N�6�D�dz�.�|mX���m[r!�k�YYr 5���*����.��kƧ�]s��.�|m� -�&v��<�-?Ϊ��S6}Oe}B[W�C�LGt�1\UL�Bxޚ}& -�VT�}z��{*��<_� �y�3�"�����sq&�S�-��� ��.('a�y��Ӫ�����X�%y�q���<f[Na�JD"Q�b�TԚL;�3�IG�z��YR%LȎiG���%W.0�_�Đu�ײ�vįo�"L!{���y/މDrZ�1�H���1�Q���G��\��iG;����iw�v�W�@���;B��Vk��^e�i�0e{��.��J2�&fq�ڎ��Lͻ��~���7�Z��2q��fA�ڝ�(����p^G�a�����F�ړ��g��X�k���YG�:˘+�ͺ�悧+�����N���b]1��`g��j��j�0�Lz.`�ۓ'L�����ae�A"�E%2�d)�R V�\fQ�fy���a��,��e����8I���B��(�?u*���/e,d*�a�.�{�ch��JA�gE����q)����4�y�,���2.�b��gX��:S�gɸ�qDѓ\�E�� AmF��:hp���{@ަ�4[�b��o�M���zͫ�(�\B��"(Ĺ����~��b��E|.uS��(/ɵLq� �H�f�4j��'.���*�v�T��n W"NE* (v�"�"ݭ�)t����]�Z�Z����� �hj�O�E��`�������y<� ��f|բ<�, �(gU�PGo��]�5壘=&�ǁ��R=|��1�"���?}��O��M��t��E^|������H�0G�ۜ�.�B3�Լ �j��$��y \�ؐ���{Z�ٺJDR��2X/sQ�MPbw nS%�1�w��FaG&x[�O����E������*|&�a;��<����௸긞ɱ�|V�e"��S��֫�����H&�7L]�z��Ǒ,L�Qf�ZL����E��1IQ˓�}8v�C���H;�Cy��?$\]ŧ=����������n1����a�B�� P�c�R���3Bz�"������h�5��3�� Qa|�ȥ:���{*U"a��(�,����r�#�J�V\�]��y\������S<d1�A ��AH����Y" -�M��Plx��_�.0���y����Sp \W@�\S��[���\�θ�q���`/�g;���@M*5�.`��G=dN�\,� O��:��W��YOXV�Կ��p Y����G�)�"�@������u���Q��,�rf@0ud���ɴ+�w�X�Ӊ(��e=�OK ]^ᐖf���c� ���� X[k�'[��E��T�2�.���L�)R�ߛ��E���<�B��E(U8N\����p[V�p�N�i����X&�� �|qDv�.(Wq.�\�2��@ -u���Bm�k39g^�"���"��8g���ǥ���^��`����c���V�R�L0,UB�|�UA��g��9���E`85E�[����K3�Lf�)�X�Sp��?T��^���.h��F��T��^ -������iS-Xɴ�������l���o�y���S.'�7ub^�Q����#��E�$���]$�k����/�C�'/m�P��c�or}ь)����yHp����&��ĆK*\�V�Y�S ��躆�0Kv���`Y����w{��@�쫿���U�N�NI�MPک��X,�*��2,WG�"�Ρn��ߌ|w�^�M�b��>N�u,�/�(�\�����W�H�|�Rڌ �Z��.�&WkN�2�i�QB�]e�y���-�X�P,披.ىTI݄ɞc��;i(ָ����~��a$Jq���;'ʙ�/��O��Uq��0���bW�~�25��M��ہ��E;��.s��E�H�tf���QąN﹨i��4�@��E���v�t���5��j�T�^P�r/������/0T4['����_v���9=P1���x��u��0�*���j��K�\W -�e�/pE���a���J\�s�{����r�{�<���w&��S�X����Z_�?�(�E�{J\�.��o���{x���Iۼ���/����=y��1��ڥbˆW�&�r�#�)>�I����s���_Me����,�>�v��X�����1����U����R'I�ڹ��V/�^�jU�ߵk7ϸ1��5î�W����N�T����Ԍ(ރP.<į��I����s�9rb�=��qZO�f>A���䢆�d���aG;�pR%RD`EgXk����~zaGc/xY��U��Y�FS���i�:�j�r�PA5$"�S�w���hǔE膈V*���0\Slz��4�%���m&����|�?�$�1�ɩ~��n�|Ղ� �m۵��8�������Q���L�?������-�{��L'K�^�̍\.�[�,����5e���2}zs�T:'��L�Y���:��&��b%�v�m��sk]`����u/�f_���d{���@>vF����@qҍ�G�{��Vϭ��SU���יs�[��Aܯ�'��zLa#�G�� 4���w�3BFWf�^���W9��~�y��vV�����������S��+��7p��P>�DmLcY��_9��c����թ�=a8;�ʱ6�s�d��P���펵���k�?�`;R�'UQf+b}|��~3f{����'.��\�45T*��o��qg:6�1]�G��C�܍�7w���I2���\U%����3���g*<��j�.�v����N�H ���h� �\�[�@a&�{�q��8��*:̒ju�>:7�� �l�EU"������\�Pܢ�&�~��*p�T6�}Pf7 -�����?d {�7l^�� ê�w������P��jb⽇E�TG��_�{�kb'0��~�F?�"_��su���bv -4Q�ckڴ�M�+���7��H�?��U���N}V���?�_H���4�c(W����߿���y�-���$�� k�R>:m�����E�71��tQ.�/���'���.������>Wr%��L^\�v�v����&��� o:���n_]?&?�`��A�?�c�v�*O����?�o�3?V~^^��X����5V�Ƴ�����ڻ�������[+��O������?�A@�_�qg�� Hc�$��S�*xNϖ���˟�*�mmDX{R�|��ؘz4���x� ǐz6=!LNj -��K�����ח?-�T�^3��Wj�F���a|�7�ck���$^���}ۣbϳ���Iۣ���q�A� -��s���G��|{B�#�U3<8�^��4~����+kT,z���,�j�ġw�T,:P����B��gL���E���ػ�>{���R�=�S�̱��ا"Ё�H�n��3߉$���(�*[�sɗg��x�T�xC�'�x��T(z*��,�����U^�����.k��Q��$�nk@Ş�&}��u@�*W�s���H�a�Qn@E���gߦ��s�!�?cT�9(��{��;w�[g*��<ӆ�.!��?�L��5��{��>�p����{R5$3�%���uH����+)�U�V �H9�;Cz��x�q<R�eg+��n8&+����fH��C)�`u����0���� ��^���L��"Y����=��gA9�:턲���dz~���Tu�u��v�#*J����!C-x���{��F�� ���j�=GQAj� w��¾�N��l�7�� -XG��㘊ViVC`�O�q�#��?q���LE��#˴nwu�Ɋsٟ-*�@1������2�������I�-"h�������ט.7�5���s�IV�:_���dLքć,�V�?��\�}�X������PQ��{�d�'뵾- :Jy���x -�a��-���0^��N�����9��w��� Vy�=O�L:��"_x?hL��t�P�P�ޭ�O�)q�jUK�������A�S}\0Y�}_��7c<�[�q���8���@3��W�tD^��*�yS5���-�1���$���&�?R1�Y��Ҕ -H�e��>�f��+�h�}�(���OTz\�f��Z����5�78 /�U�,V�x�� -�Z�ؤ�ΑL����&nbe!��.&]ȑLc�G��t[4� -(��%Ka6�����d"�u%#��e�{G���J΅wsTdzu��Jz?�ݫ�kH���� ��:X�Pq�j��@Q�I���;V� -��7�/vt�5����R���f�^`�Vpϻ� Y�����n�O������[����܄�(� k��MH��YM����M_-$�{�I�ws$����#��O$ ��i= R��Ջ�*��H5ͼ[�b�� ��c忲�#��G��$e�fXd�4Obl%��=TT�U����@fE"ʽ�'��>T�܄jD"Hc�u�Ey�Sdy$S(;@�` ��Զ\��B���g��I ��<;��(V�w�d��zޜa�����IE�m'#� � �>x"���~.��W9鄺{7G�-��,η8��E���9�6�ț���%��WXq�S�}�z��u���+h ���i������Dp?���x$Q���*N1},�.�{$���P�lG|h� ��尒��O��f�����n��R���x� -$�[���ˏ��[���x���Z�����n��w{c�D��p���2��d�l����4�q�No�fQ+����$T�J�$��94��n�Gs�# �T��?>���( ��:���}�� ��H���u���g�o�$˪oJ�����?��G"��D�p���ڱJ4�,�o�m]�ss=r�9�$��Ǘ?���~u�K�H�����-$D��x�� �V�-��>�+�F��r���y��nnJ3�`�=x�R���˪�t|l���� �~�y�,�H�57�G� ���W�$�ڼ@��Ft���^�t���b3��~�} ��<*�����w�q�DYga��@a��͡w[��wc�� -<<�����Pʴ��\���M�9��e��V]�-������i-���2yv�Wk#�����HB���9���B��ݷ^0�އ�DZ�k7�K(c���m�"v�_�!A�@d�� �*���f$�Z���H��A&XXf��Zݛu����po�'Q�G2��Ż�ޭm�$����/�z76 i�i(�[n�j�e���n��:�+��I��B������h&W������}2}(��K��։D�b�'D�Q �(���>���p5���O��m��4P �I�H�<�8����/ŏ��~?�'���2Q3�����a�iE�g�n�d��t����c���I���9k�Q���ꠗ<�z^�סh�Vo�?��ߣqA�e���t�/.T��^��p��6z�lo囹X��#q߁�=]LN4��\P�D-q�it��m�^�DE�f!��7��E��b�$�:�y�E����ڤU�P�&fșH�5ըO����<Fg7 $�AF����v -�͑�W�&�'�OAz��� �����|$J�r�$��-��`��i�d���qs8N+��*�m�B�&��[��> �>��铈j����$A"���9CÌ��P���c���ZB����I,�+��� �@���;r%��{�I��Ŕ��7�yhƦ]�z�q�!��R��r �;��5Ж�{6��+P�D�%uׄ�;N�H��$�,��FT��,m+�[1��%��6��CV�$:;�y�Fk*�����CB�_�aR����<�&4�.�{�� -$ ���B�d5��aR_�Y�Jn���UTd�r�;� ���H� �P΄ғ�n���6��������Cz6kf�����q�$�o|�Ӟ$m�� op� -�w�T<�� -˝���@��$2ܠE�]H�v�̷��=���U~z���{7��.�{���Hĸ������:ҝT��톎������fҡ]���h��9e�s�hr{��V2�Ќ�4{�6��Ơ%p��:�X���$��8��(���%K�>�8�@����w��n�{���8�X ���1���� -SK�����h�7/� -J�@�2��GaV�����6���2˅��o{Jڎ.�mß�۞�L��(Y��)'A�V����q֭\Y�b�C�j�d�ő8��l���`;��?��ܻqRI�DcڻY�\I�5�^����V����E>�= a?fy�T�z�W�[��i��:������w{dV��w[�[�9ا��,� _��:m�ӡw�[kP64���}�t -�lnr��H+ ���y�gJ����I�g[�>7O�єb�ۿu�ƀƳoP ZSλ�.���֠e��� ��g��u9��1$sZ&� s?%�e���U,s��-�#�3�F$��5g[��b?H�Tr��=�K��,��$�� �M0<*�f?�T�� �< A���i!�w���k�; ��O,�K`�!#1�V�@�(8`�>�`X \����s���d�5�[�v��r�`�^�^���0y�� �^L�ۑ('�����A�o@K�#l6ϼ�U�A�E �5���n�DZ������5B�s3�t]�*kY^.)�P��c{�H��q�o> �����S� k;W���Il��_ 4dy�?5 1� �bv�'n�,7,z���s�; a��l�A�0�$����d��]�@#c�~4�E�p�H`�8�ZÎ��nx�_^n0���Gom0�����$�q�G/��q�w7_�4ݝe�]'Z\M.���y��%�:g4}�����d�]�w�[�%��}@�"�o ��p\"���ɢ82 A�o��b����)W6H���9D|�C+T�F�x�U.�%�Q����T��h0oC߳X� -pX$�\0T9H�{�:�@A+g0=������ho�*� mGB�L��'�v1>#�MR���B�����^͂xw��G�qm�{&����y'یs�v����y�q���D���w{�m��ҿ�� v�,�t�0w���Y���ILo�0��q"�9$Ľ ��R]���#�c;�h?��e^�4��z�H�9n� ]Կ�Tu��w[�L�7�M �+G�kqફ�7�P f�f��^��`�p�ʢ��B��n���z�o���8�,^^��A�0���>܂}*�-tG���u0���G���ĸh��̻�>����`��I��3ǒ � (�@��HtϻW[aYW\�*������g -��fр��;5&>-3�)�r�X�X�CC���\x77%��4������gt� �x�! ����kH"��w� ��� �kƖ"C�~�M0�?1]� -E�}��0�#�rǐ��U��(���,�c��O���vl�|�]��j����������7*��T�"I�;���/�$�����w��v{ -�A�Y�a�ip�<�rh��X�sW�o�Ւ����[���AB��Z���A7л�^����~�Z��?� �k;�� ��@4 �/J8�K$]M�u,9��C�ަ�y7:&{d-���>;$���z�4�"ި���8:�vJA��yT$"��,�\�.>��u��D������ I��W,Mg�$n�i������awUŻ=�������$��X�s��5t��ȅ�?aH�f~���Z��2��?Ke��E���d�¿5�PT�/�`�ǹ(bﳅ�H_����a�Yٸ�n� --_���C�ooL�[3T�Ftv�@F"�_gI�2�#�KY^V�{-��>�UXYWޏ,$������+� I��Scd�+1�_�%a݇��uG"�����H�Q��Ib������h��b���Pr|��o��! �~���ۢ�1�c-�$������:���ڰ����fBǐ��F�%C��W�� -"k��f���!���H�Y�u@�>�2�X�o˜�Đ�Okq.��7��>�t����?$��OT��c�,�_̙���Mx`$v�����P?�����ms�!���O!��k����! �~��P�P��w�ۚ�%��CT}P��A@H������'�Ѝ8� -}�d��Z櫸������H3��~�$���0�&x��C��2���K� wF�j"q��G �W@��*Ot3���@���{����h,�89"1�=>�� �6-7˅wӣ-)�f|�q煾{��F��Q���N`�wk3��}�KV�(����ٷ}���C)s���D8�5���;��q�r��?�jԣ��Ne��@���GE\"���'����42yq�ЫLӰ���y�?Q#�˕s��e��_��a�cSQ��%�I����L�F]���.��*=�%�Q�����~��{;��>X�VƔl�.Ⲋ�����*-`��H��W؛*ř9C���n&>"��u�7���b�ֆ�ƨ߁_<��!�w������<X0�lY ����w�S�)��4nQ� ->��YZ"�h\uxΡ/:"1�E(ӈ#!�����9��R����/A -��ĻC�{|�JV��(,�HLu�QԻIZ�M�G?[����?ଓw��n�.��z�'�{d 4�����*���c�oa����V���*�w�$v ���="Q��q���R.�Տ��!�>[��CFG$z�uV�,��P?����=κ�����K߭G$���(s�A%1�Ǩ�!�dԔ`�_�ʆ�,EPTEC��.�3�o�aY�'y�p4T���F$�VaΖޣ% ��N�uN�rj'�نW�=T���'p��o�,��\z?f���C�vDb��]�"��k�H��=���X�fi�:�Ź_>�n���1A�F$^�3ֺ���52�a �KBK3�*�N*V��oID�Q��dy� ��D�4����;�[5��A��<��w����W�`�ߖ&���\ �,���W�Z���wd�D�k�r��D�?���F�j�*^�^e[���g>L�����z�D��4������qI�lg+�y����iTg�qIt���B@��?SxDB��9G\�v�ѩ�{T�:�L*��cJ�n��<�*����#AQ�"K���檘� Hժ���?��V�NK� -\�E>�,�:�HZ�o�>�A�����JQ~��'�H �AQ���E{d��(�/vJ�X,���M� W�r�� i/]$"��һI��� ��Ď?�e�����>W�$j���_����1 ,�˟S��H����ݢ�n� -6�+��qL"�gI|�0_�8�jkR���������8��@?�`0H�%"x�U��n�;y��ػ92�Tɂ����x?��3@�>�{8�I��2Z��w{t��<��?����:S]��=���D��˟��#��b���<��M�;<�!�������_�P��H�"�,��1 �~����sLkW/6z��<��+q��n:���Y����P�;d�WY�?�!��f�dٙw�dʊRorW}�&�:��H�u;,%�s�b�jM�D�`��9�����Lb��Z���#�֭Wim�{$��YX1ܤ�I���$8�9���B�ɒ�0��1�ch�ǥP�x@7�-$�$�����ڿ&�x0��L��<�k;��)ȳ2+I:S��_7d<젝]8w�]Y�7ܣ%1��,bFӤ����2���G�G⩿�Y�`�G�������*��"�O��0�������L2H�U.���QGЉԯ���Qq��X�6]f�ڝ�x77�4w�q\��nuԽUy�7&����g���R�Qp�O�r�AB�_diT1H�*]� 丫��VI�Kk4�,�0��n�,���{a�=��9%�I��˒�0&��_gy������o�G��6&a��H�'��714��_?"��T�Ֆ��\�~�E��I����|���C�R� �ʇ�?υw��1�O>�EV.���=/$Ý��!�e)Ӣ� ���ø�8")�B>�>�ռ���$�B>R秅(B��`�|��3��XJb��C.3���(>������*��n�V�OJ�c�}E~$�b)�w��,�7$��HTy\r���d�],a<��h�PzW����˿~�>&��Gq��H��Q�D��7���-cJ���8� ��R�g߳�h�W2������#�$�X�_�d�Bm|�&$���\{����������B�c���K���c`�$X�ˠ�!��������Ȉ�\5!�ȯԞ���[�Ы˟�E�&$�U�`8XMH���{������Yr��.M�̥@�ve�{2��o�^c���с)�6�MZ'$*�[$��$�g,5�I�n����ZMhMh5mV�1���Z�/��,�����ޭu���8��c�8d^�e(����%ɯ+���X3�6ih��� �D~S�D���oBB��0��&$ -�M�pW5!�H��n��1)n����IR�s1�Ep,*�E�n��ᑩ��EyB���E��I�])k2�7ñ98��wdńFIv.~���H|&�'�n�ñH�����g+��� �;>��˟����dw}��u�~\�0��L��8\���ф�]kq�o�G�Ly��̿�Y�k�>�IX�zy�6�n�YU�4�ȫ�q{����O>���`�&$(��b@�NHP�q�o�xf�Ɛ����X��E�t����G�{� IV�ʳ"HP�I��B�O�3�x��NHH�I -���I6OJ���_R�ѻ9*МT��$�,��3e;T�s�p�C�|R�oy7Gş���- L~����%?[�9����O��)��-���dL�B��Z�n�>���,ף�2�y�L\x�GŢ��i�$q�߉����I▟��y8}��9�h�� �� -���N|��(�?�$�!�>����D2m��[�B�?s0'$�����\��_1�H�Є�AzcB☏� ��K��_e�y.�t�ID0�k$�7:�L���se���ĭ�1�:*�.���G�i -?!����ǻ�)��-7��\T�[7N&�an%.�M7^���K��1�2�>1u�Q��lB�Qݻ5���;��(�˟3өA%��*��7����o�*ax�Î�^�W���M"���A�_�y2���؞ӻ=��-,�s5�`���E�j݀V�Z��.�4K�)��� ���#�<���l ߐ��X�[/�D�b�� 1�����'��P�=�?}�*�E�d��H�S"ν�\$��Y����]�$H3�iЬ��1��r����Y��b��(o]>�n��Ǧ���&㍪-ǝ�\���Y��^����x-�Y�1��K�#:%�ޏ�S�m�g�$���v�̔�t�T�t���C�VI)�<\����-8�c%K�Οkx�P4(�{0&[�HӾ�v۱���dK�����e��Hp{P���ޭ�n��TwN�S�e��ܔ�����7����{0��`�"^Tؐ9���>�$$�Uc^��b�o5�i�..I�)�����dX�����:�T*0��n��N�{ϻE�6����i�.��XO�Ë9��c*�_�-ɂ���J�UX~�(��ѺmJ�˿m��1��Ҭ�����F�Ϳ���Čęo>4C�) :���<���(�$�|]����) ?�-3 W�n(ʄ��fދS��TKzg�MI\�Q,W�<@�,-��_*h�S��x���k�h -m흚�ө�5��6�P�S��r��@��wytJ�����c_R'/PQ���n�n��\z7�ߖ����z�݅��(]��$J�u���<�w�DA',ɢ�e�D�s���� �����v^��� ,s�%�R�,H|�o�>��,mc��i���V,�)SD�k��g9����*ʩ�пI�*9����[t<�wcC2���L��S;�ƨ"���LE���?:���مw[��أ)��7�i�*��7Q��, �7� -��x�c�&�MscYN$��I.��H���y\�Xt-f��v�!��B��`L���R������i�?,�������c����MI�}{��r����� �%�\jܘ��<�H�N�z�\�qo"2�Lƪ��'�Z��K� �T~�����s�ڼ9PT�3����g����Db����fHb���m�R���#$^�`���������u��R���x��MI`��\{�EfNa��}�x��ր�bz�5$�1��͚D��i���D��E��/�t���si�N����-OiLb}:�j�(}���F��_��?��P_{_!$(���2`^�$��Z������+8�[%�� ��a��b.���q7�.���>!��)H����a�]�B���(�����r_oJ�տ�n������댾�;�y靮2%A������}��ws#RuO-=�A% -���V -���" SW�^�+ּ�_��$���^@�˔�"y�:W��gk3�nùw�$@ +!?�n�,���_��*=�u�/Y�(��{��i�վ��N��E ����=b�h���-A0�o p��Ōn�t��W�3��샊���?��cQ�^z*���w�T8����9�S���`F��+��C�wSt��dQѻ)2o��T�t�wS$�(�UP����G�J�R��v?�X�2��[�������?�m�ʤ�1�~� -n���;�mF�����aqܻ�^wE�{�&�����@KJM�E�7k�.8Ǥ%,�A}��I�J�ѻ{���Ɔ4"9��u���K�3c�����wLo�A+/���R��Yp�����V��+8��;AE���+)���, �A,�gX� B����#+0#篲��PI�*;�����N�@"������7ǰ�Y;��`��Aٌ�w����T�Կ�?��2x��C�#?��Ȕ��Sqѿ�Ig�N�`UR�u�@h�{|-��q���һ�ZC�R-����ǐ����$x���ͻ��6Գ��}f ���&W��f3/�2���s@�[���!�,c�ʽ��[U��۟��u%AD����$\�ĺ�Q�= ��l���s�~�ٕ�+1C�?�Z�,��7� ����ay�hi�8�H�����Hx�q���������Qǥc\h �VD ��x�Y$J��<��*d�ƻ�a�3�u���ot+����!0�W�g,E��z��ܺDһ�ƌİ��5�:��*��q���u��>�`b$) -S$x]�L@���9���t{���ד����<��٘n��))Z��-K�z�$��N���@�'y�}��i@�&S�ī�-!˚&a�O�D�l��aZ�Y�<f$��F�q��gc����M�K��5z��`�&3����9��2�kF��_�ٜ�$4�@Lb��㕎���4�NH �K����w�����E�w't���ӓٖ6��9�K�.�3h��>���.�Or���E\�b�d�g4$2�Y�Y�H��zj��V�i� ��F_�D������1�'��T���U�e��G��;u���J�CD}�g��]��/$dЏ�Ш0ʁy�Nn�@DԻamM5#���Ų�߀tF꿪d�ҷ�ŌD�-ss��v��n�&�<��C!���T�G�kQ�s֑�qI�H~{��#/e���x��Egd֡��i+}��P7ǻi���2�[����Х�������F�P���X�-�i�i��"E6xs|������c�q}�ͦ�|vݱA%{�D�����˶sc�$�y���@�B��C��']Qq�1FVٞn���e�������6�|�M����D�ҿ�~�M�ُ29 o��sH��K��Y��MW�JjB�?x���^�dpx0�jW�,-%����'�<N��kd;���0�g4�6X]����xQ�,-"��;@ -L�Ӷ4 A�<�)�R�ug���w���m7���:��?8���-�TjaB�r��� fU��#j��d�� hT�"^�Z�z�g�XF"�JH6�W*th�o(ӈ�>j��m�WT~��):��� -�/x/���\m��`�ft�����y_%eĨ+���dĸV�D -�"�r���I�`���g_��J��;�M�̂o7�Z�Ͽ��`\γ�$�ܒL���M���l���r=� 7��{D��|��{{��%�xf�A�)���z�J�0l!������5���f\`$U��ó���[��:�u���<)gx��V���[���Ϭ!]�[WI�p -%q��Y"�/sD�2i5�n�\�����X�����h5�V�,�<�攆�CS=̻��&52bH�aG��u�{�������y�!����1r�M5|/x��ڬ�s��)~�cR�L}M�>E��M�F�������j)�1�$����77"���;��d̑���V��`�\3�� jJ�ȏV$����bzS�D͕`p� -}���TO��ZTU[�5첦՜HՑ_�� -��mL�X���u��{U*�Td{��cT,{��E6�[$����g������"��Z_I��$k@7�2��Q����4Bd-s���7�<�q�&y��Џ3����n�d����/C�lR��ܢ�0� -Jwc�,QS���O2 9����c��H���������C,���c|��.�R9l��T��2���Ts��?����Wr��%�sӠ���8G�<��9�1C�# -�A^���D�ND. -=$��D�ot���#��Wh�~�ŋ,x����mM��5���P��㎴�� ��9�J�hh�p�mx�W�f���C���1� ���$���\_���L���PFY����>8��i ��oC<S�5=��p�� ;!��#<�~��&Ydi�t��<���P�'Y_$+�1S�9o��cu�W��n��k���Ц EP��,�.�jzj!t+f\�G2(F�>����B�g9[DevJR�@����0�Tѵ�-H_�ד��%�)�/�GR!�h�E��~�SU�Hgd�&��X�Ow�����oo@��9�0�e�zx��(ڝQM6���K���n�Xw�Tj��c�{[�qji$�i�s��*����hK��<�\�R�ww�f�=�V�Ҷy-2��#𫜙n�i��G\��n&� �������pA���!��"���ŭ�XkMm.��/���.����-���C�6����ٳC?��á����ސ�R����J|�ott���6d˿d#��Q�Cڛ�����lŻ�tW��[�J�i��g������=�r���� KsUe����+n�w�=��q���=ݿ���ĆL��"�������J��d`����${�?��ԍ^e�������?< -�*-��'�+��7�W'[g��f�[�ĊY�|Q? pp.��leA!���/J�M�9�2èO��:�]5�o��4&�(����Ї�6�� Iy �8�^�ȼ�2+��At��".�z��d�2XȄ�셼C��P� �4L���3`��*H����ixژ�� ���۟��\W<��D�p9H�<4um��D�WD'�n|z.�F�&��uWK���@g�Rz� jE�.a� K�g�������A��o���n˫]�7C����=~�ލ�<X:9��B}��тa�Mn��w�u��X=��ݘv1����q��Wk�ɱ���+�$����P�HZ�+ӽm�Y�ex�3D��Ĥ�onշ�`�r �C�I�y^����sq]1hA�Hγ�\�^� ���<�#)8�`�é���h]s����Ҁ���*S��0��. yk=�7���k�pã�r��(�\Q��e����y�;��/|���R�Q�����G����4)�r����P�Fi�,�7H*�Wꕞ3<��~�n)U#���z�%CP����k��T�;��n����w�a~H�����;h _m�/N�k�f�P��~��>��H�Oǟ��֧F0{o���7,~���M�4�P�H8IuX�Z���\��� �?�ƣ�#�D<��%ҝ �Y-+���O͙$Qn����te������:}�7pD��;�^M�C�,��Mo�GR��J�9CɊ$'YRJ}��rr�)qX����˟�*��BI�E���l{$������T@H�����Zvj�L%�q(��H���ӊ���݅'������j��3=�vE����珒8=�A�����3���O �d�2���*'�i��.0L�����*�^T���-��?���m=x�ە�ޖ�@�-�;��$8�ϖFu`��k �No�>�ol؍�Tox-����vOR��e���(��������EN��<W�<� -�=��6�lN�7��=�܄c��^>�����T�q -�>��Kҙ����$e�./�,� -�$e��4����"�Xқ�����B�����g(#Pl���\ j{�l�i��4ctfr�=��:'�H�� ^-k(2�kF+���%�k��o�}��D"�ϳd��o�{���=����W{��,�{��� �IZ҉X���:��4�� �.n�%��I<����f*��IfЕ�@W�z=�Q�=�����zG��e �e�uӮkVqQq�$/R� -�����ҿ6E���<���{i�j�����u�8�&��1Ơ�1�t���$U�lUt]����x�Ya�MSQ���_����& 4�H����9�谵҂2���R����w�8F�b��g� �T�dؒ��n@f�6K�iut�;���@'�������v�o���Ѐ�*� -l�"T�6��Ft�TQ�8���ߒ��U�R2��b}�-�Ӂ������,�I -̉L.�z���� I���;)�>ɂ�vZо)[dm��l��7��˿-����j)��$)�^�*VV����j�����n<�}�K��>�<�'��K)vy� ��I; ����7��=�t&�7.}�b�\���co���T��"�H�H&��7����@6&�H�H�RtR���z����db�9ĆwW�)�`��r�8r.?bESZ� -�<*�"�YϺ��4�Ӧ=�)B�ަ��tHchmtt>���*�d��ː��s���k�Ǻ�����e�<�UB7�89y�Tel�4�nS/[�4�WT�dx� �O�� �!�j�U!�QWA��f2� ���ՉgϽZ38L��D�#�u��˧��ٹ�P�#y;k�F���vj� c.�ܠv��J�ndF��|���-�]����ۼk-����N9��BL!�d鼄+lJr�J�<��ģ��$[?����6��� �� Y����&lĄ �&۴���9艆�e0L1�(fp��P}��d�"���I&M�s�y��-�:oJ�`}��r(�;�ʓu�zw�i��1�z?��V/|H8��';T��\bﯞ��J�'E�*�73�HGFf�䮼��S���f0OE��b�ڈ�k$oe#q�n��|�R~�&>di�R�ڿ[;R#�K�OZ`��on@b�Hd���g�ћ$��0}����cp`�%�`��?2�w��[�|Ӥ�o�T+�q�n#]X���g7�nr%�$��m�ɚ-|O� f�?V51ٿ�~vH|��%vR,�SY�����nǻe"��4�]��è�>�fu/cY�z����g�$-�J��![�N:��0��:K2<����_��n�n�"SV"�d�-N�l�¹*b^���L�M��c��?oHv��v`{T4zq�Kʲ�I���4���N�B^�����IțJ%��H��ʿـ�|<+��a<tәJr�#iU�an���6k���H!��b�7M�@@��ݿ��Z�������lU��ֿƀdc�?�z��uu�Į�Cn��E(��,�B_?�jG_H8�!�q���HDWAi8T*S����A��G�l$���<z��^�F -�-� �;��BaXQ.d��Fb/�Y1+��3h�t�����Pn�@�E�/��@,�w�"��${����T.���Wā��'b5���K�Y��]0(*-�����id�j/x�|�i-~C9�aj�UF��՟4�=�����!C��Isye� -���R�2p����Ό���v1��$l -��c���ma��;�D�p�%̜/��!^��"wT@�9b�����s��6��7G���H��n�O�[L3?�;4ɍy���y6���C�~(,�5I�9�"�;ZF��n��A%*��BvY�����W�BO�E�\п/�-U;X��5-���x���^�6f����7Lrzr*� -�V����Վ.��=e��閍R����m7(�fY�@s���6+�5 �kHV�w��������YzK]]�~��]*Ҿ�乸[|Q+�ߕ�/���#t�3����ۻ�����#^ .���rU���H�LP|�WkuH -^���?*U��}"�߁'+u\8Wi|�����Q��u��8]�(VQ��B'YBǮG��`�:���GH�/��p�$����y�Pǡ���L�c��6p/#H��9�<s(�qH��g��S��#�z��S�F0����E�]��h��cP�G��?�@̘��a}�T�O�u76�?�#�;�ص�.\�˜V) -/�� ��ױ�W����̻�k5��R�y�=<ނLT�,��`r���K,sy���G�\����P�A��y�1r_�� ��y���\�juqH����ḻ��P����5�E���噀���:���UkK��� ���=���4:�\tu���]�|���7�_|i�ͥ�E��#�_���m��R�o�$��ߢ���}��/����g�$u��������_�7��U/�\Y��J��al(e�/��h��r�T���G]�}W��l��������v49�o���͌�aJ��(�Df�K������8�m$��e��<��%�o~ڵj��@�Q��H�zhZ�y#���� 7}c��K�l��3B���d�f�m{_��D��[˨a0�� �f��b[N���$*��nF���c��2"�RB���W���p� l�غ�DzE�y�$�cZDt_��]�c�N��ǩA���9�VSD�.����$�+�����3�VI6��i�UQqt%�\��lj<2�� -��=*�����@�@Kxe��d*^3�+c�NsE���K��H���g�xKG�b�7JE�os���t�c0=�:sC��$8o��b�ُ�d�&`�~U>���Ua�3u/C������w��c1@�tlh�TEB>u��O<�Uv,�MUj��v�1Ԣԫ�����V)���Mn�{��EȀ�666QC�cIҴ��7�U�b!�F܀�:�ZېjT����C�K��%2,sh��Ъ|@�������Laa)6�X���o�P�]U -�y!I��i�x�-A��vT�<��XY$a�H���6h���72��BeN8�!z@�&[���;$o�eC�1��]ϡ���݈�����B� �r�q����Y�{����\T�0הB5�|�{��m�$O�N��C4���*1E���37�������Pa�[�����u%&0��I H�˧�d���U}��ƒda���d���$�� .�ag'�N��%����������ȤY(������U����Bm2�*��m���*Ff�B��#C��R�������l�P�.����w�6�P�D���-=�PG�J����纽%60w���r�U�gkP�EF�9��G����A`�b/�inm�h�c��WG���2$������������1.Z$�]��E��]����[qq]��%��Yf��.�8U�V3�+N�gxsZ?���Kk�?�3� �:q���qg��-di=�c�1z�0M��E4�P!�u_�������Fz�H]���T\�ͽ!�y�KRY�M�˹�d%���$��r!?�7GŰ�����/���D���9�O�^GR�{��N!L��������jD�7?��_��g�cHRt���\�X:�iLe��[�����^�mC��i�3i|���T��Ls�W���̻�B ����a�ރ� -�w�N_��x��d���������������?"���Q��¿)*�~��,l�k���5���(r�f�|�"��p4��OKH<l�!��<Ң�pSj{v�8Ƅ���72�����n���<�R��ݙt(j��F/�[T�C�ܿ�Ӯ�_f�x�,�$5�^p�y�b����\ЗQ��� [!tHR;�Ό���\���ǖt��M~@��^�ήhH����\��ێ���^�T������S��Pۂ��}'�,Н(���*!�R�4�~Sêaȝ_�E��;�ҽ� �͎iLf�g)�������b��ĺ�?��U� -5��g4.�����!,��C�`Q^�vZ�����T�d�����:��%S�j�E�<$i`�P��J �e��3�zu�MZ�yvZ�ó�g&��KE�sM�K*��GR���7��p�[�:c���12Ý��$� ���ՖjJ����5���53��IjW��}�h��@YCQZذu��I�X��:ä>N��H��;1�1O�GF���d*=K6y �U�H�b}8�}J��Mr�g��������xE)9$��$�����YKrhi��a)q�ꇹn�$XFcDj��3����m�!��o�da����{)��[�"�ju?��_����f�:���/I;:�ET����E�,� -0h�'~�ԣ V��n�>P]#����Nґ�R�g�X����*IEj/o�Q펶�e�p��B<��V� R�H���`�8R+<�܍i�O;�y��C�lH�~�Ȑ8� ��;���-�--��.�,��F���2�)�̅.?��? ��i�&�X'}9σ�����E����P_�B��A���` I6BU��W_$�,"�ܐ$��Q�!�#y=�vK3�ۥ�U��l���X����?�`����d����J�}y>���.N��3!�+8�37j��s�$�==��z[ ��o� -��x��$k� ����9�u9�&��%Wk��&j��I��@���]�¼*8��iGz���}�9C��$�h�|��C����ֳ*��ͦ�w�Krm��l%�/Z3( g[���Z8��n��^�Ul�[��>]��p�� �Ϣ����C�vT����T�w�'o�� �V�5,Ϣ��UKX�9��[`�ζa~�� �r�Ur���o{� �S��w4�T��wj�1u�BA_�D����V��S�낃����'�,�(����� -.1=��������b0��hw�`GMu�M��oz��E�%�����ߓ! �����[$����*쫝J�fǝ ���%C?�Iqi��y\0����s�/�ۛuH�iL��xDZ�d��AdV{d�z]1qG$���e$�r@�kn#W}sDr\֗?���#�ߢۿ�#F$S��p��S�x����K���TxZ���`n։"�D~Cû$�z�V�5`_Q�ʿ��_} -;��ạ�&܆�������������?!�%M�߿�-�&2k�7=��kK��}�s�h���]ѺNL-�F$��E�U��g��L"�v��Gׂ��#H�q�(a3�?�A!��H�;)� #�9��������F�����DtUI�\&Lq�d�<3z�=8U��͓x��`��F$��V�x7�A�����=��S�s��,��ѐB��������z�n��3�S&�ħ&K�Lj :��-#�r(^ r��$� -�`1��kB�;� ��MRA��6�!' Y�" ^�(�VDG� ǫ&y �2�����쏷y��Ɋ��]�����y�1�$�$��� -�WaűS�� ��K�<�/�="y���ڜ�a�̶�en="��;q�˼d�!�:��y̠�7"I�%�F$#�$����Y���xNr5s�f���8�Wݱ2@-�y�����%j�{�=���������gP���T���W~4���#�M4����T��-���?��H>��Z��>���8���}*Y�eh�>�m�nH�+�C_j�B��V�"���P�Z���$y�����B�(���ls�� S�ɨgz.���!� m�Ґ38�A�km���������|L�O���?\/�&(����˴Q.��dc�����A�@ϔ�H�콌|�m�jB���D}�r0���C�?�#���i �n�^�3�Y��Ч�+q�oZ��zӡN�u���u�݆�����VWD����R�A�;VK�>���;?VY)����:5�+={�a�[- ��9�J��m?++[�0���g�Ob��bx�����U���^UU��=��)>E��Ն�沍��QW�S#��j8Q�K���D�L%��m]o��2�����_���x�CԢv�%z�Ut���sp��G���fe�I#���n�����:� - U�1�~�HBO#%;��E*�&�t�t2[}]���#��]�@H�"��:�i��@_�-,�W��m���hO����ߟa.izɛ�R����ѿsTP߾9�om�}/��� L�B_Urnt֍P����$Y4����ӊ�BR��lj�����o���vU���K��pG��J����K�Ȟ����2��lN�?"A�R�6TQ5 ����G�B8V��/�_Ȋ�@��0�����V�tu:�Ʀd�]Y|�|��2�n& ������R�� ��f;��0S̪I��V��։,9"ٌ����G�}�n��3���LY���1��q���, (��קEp��R��c~HJ�q��5�歊��I(��A6-U�u̐���"�:�U�q<�B���H2��) U�Ư�jA�b,sԨ���7�z�o0$��5ґL��Y�HA��>�3�ȒJ����RS���I�#�j~�������b� �����g,���~��������4��J�r�,�_��I(���dx�Qw������$�U�����>�j��x�V7Ì�u�������$�H'����$"�j;Í�'�۩�a��p�|���̆��l%���"`LҖ.���.R��n���r-Q*U$e#�����z��`�!^��2�y:!K�U� y,a;^BM�6��:����E�#a<(c���\2���$5�W��ɅjT�VC� �P��n��ۥ��C���J�ͨ�Bf&��;���X�ӒHm���CɘdG}'���ټIf���m�S�L�1�6e��I���Qa/��M���+-�ޜ��<����a��!�7T����oލ�����_��S�j� !�t\��a�}D�f���.d<�@c����ނ����`Ѱ�K�4�qW+�.���� ����Bc�������R�p8��X��u1-s����F�߃�6T�(V���ÿ�<�IR��Qx�tW�;9�m�^ϰ�RX_���HKȨ�G� -��6���X����1�I��Y������T���5���� -،۳�ѿ��Я��V�����%a3L-*`�I�>��o��ڟ���-�9Ђ�w_�=<dx� �G�X�or���,�$Q3n�:��ݑt�g�Kl TH$: j�'�v�;�Z��o"v�'���A 42�5��k�Ἒ/�f�p��Q��u�P�-0�D��`�W �b�C,I�:����`wp���\��;51�^=�orDʋ�Il����8�\�k�2&Q��.N=�R�?`?5�iM��jJ`]�Z�l<˜�QB'P��x�9��~dy�n��"f$X= 2ݥ4�Z��U�YQ!�0���������&&�(�Qgu��I��Ȥ�9&)FX���ٿE���s��4ᛥ_䘤�]6N2�.�c�Ms(d�kA��({��O�P�b6�H������)���.�e���`�]J�y�bF2bN4�Q�?������f��Y�ݎ']DI�����#0�W3�� -qI.�Q�Bv��`��0�Ç�M|�"����+|y�x���A���ƴ[W����G/�1�x���S���a����7�n��I����� C�N�tq�K��]��e�N;���Y%��.�4���7���A����^c�c�������-*�~)�e.O���H}CY;㫐�/=�PC�B�Cu����dK�NzX�M��`Q��{�E<O;�<{�$a[��������D��G]U�CyM�w&4eΰ9ub� M�}e� ��ڏh��њn�2�i�$[ڋ��B�p��ۢb�k[d&�(��_��oxp��_��^�qS�2ް����T@oPH�ӑ��L�p�}Н��q�$'�� Ü�v��Uh��)����D�3����������:!�4�Uh��lm�$�,s�����/EX��EOH ����t�X�KsH�l#��#�c�ߋa��ҤR,�L���3��z'�v��V�f[��?����*���(1:'氠�I���t3����� -q��|���i��H�wa���#�� GV����1���j'���n�ak/ �Ej�!�������mau"ip -w�0���\�''�榚+���V�q�}��1L���^�wý��ÓCSĿ=�1�W�"��ҿ�<J��>1����L -�o���v*z�A�nɥY�Z�B�"���!�G=\L���a0?"�7���/W#�i�DE ����GOM�ܿ�I�>��{� ���K�lb�t�Z�Ћ�J�W�YK��q���u����J��D����j�ȺC��S�5�O}���?��;��3�R���G��.Y)�O��ܡ�*5{��2˅\m�m�&|�v�5#��;��#���d=�w�� �\:����&��뱰���*���Ւb��B� -r����t&+����l] -$9-�����=��DN+]hop��=#˥����$��zGW&s|X�����t1�+H�UGr�x�B'�������΄��@��p��?���w�,}�B��lkB��0az<k�}XO�Ha�~@��5��X���Xǰ$��b���m�'$���#��p�4! 2R51����ԏ#{]j�����l�E�bB��^�84�QR�H��Gx��Tr$�K�LH�Pmۿ����0�f2��(cum�0p,&$W�X<&Id^;��!Mh�}1�Ln'$M��]��|�c-a�]+^,����??Ty��pC�F; -`���i)���P�y�R��`|2#�ѸZ]�5g�R��t������Ŀ= -���d�Gju�9ܨc�O�F�"Z��:��7��ܬ�b�(sl,��5���x"k�[��m���1����A'�.�����$ȾL4�hܕ�1jvMH��$s���HKQ�@h]�c �kw�ֈ<�f)�G��2�a���*kÝ^��!���IzQ_�Gu����:̯�_�?un��W�A����kڦ�^�%���n��E��o�]�`S����S����ן��c�ӝ:%+1��Gepor�jѦ��/H���x����)\��"�?��fHΰ����'2ś�{7y�H��)&$e�k�m��ɿQ*Rbc�` �،CC~2�AO�f��OH:�6�B��?e��{��x[��T���<!�*�x��c�LH�QKeVS�'G���Ϻٽ�%�w�$��`��(+8#I*z��|�!�t�ӱ� �{s;�BEb�YM�Ş]�T���w��N�BW�,�C�T�� Iz� �i�s������mt0�(w���1��6�H�;@�!QL�?�SU����h�%�y4'$��E��=��h��4g�͕�WVY��d�ٝ�����j�Qĩ��2�r)� � z���7�+¿m*?�lϯ��3�����ZC&��0��Ł�w� -��H� ��HH��>u�]T��9��0X3�l�������'���D�1���qs͈��\$� U5�-�S�aR�5�[�M�f�N�o������',s��a�<7N��N;�3d��\����G�"������q�5H�%'���������f:� ��!P���tJ��,a�MI��!>����Kc��f�f�Cv5��K�%b�g��{�kӏ�Q�Ĕв�MBk�{�<]�lg-�ܢ�r���&ȡI��QУ"����վkd~��}- �!��?��,���ـ}4c����!Шi*Rs_�9�4L�8��5�X�;Ǫ�x�jXW�-n�Hv�5�WW���)ٶ��>-Dc���n[q��h�=�a���!��(��RHɂ��4��Iqq0v��0�[P��ic�E�D����-��yA����gQ��"B�P�47j��_co+h֢���ִׁ�5C� #�G-re��}t���rWM�o�j�Ϳ����U<�(u�2WiÃ�n����b&�^��p����r*��cq��p(�Cq-�g���N �w,��S���)�=�th���Ev)S^�� aM�G�i�F�j��i.t�7�\��~�iQk��au�S�5p ��9�����bC���+��#!�ý.N�"�s�U"j��g@�`��~��y���qb�Xv�t���ȒO+�|VLՙ9�54;�����g��&��QF08;���'�\��/W��@��P��T���[r���3I%{٢i�L -2-N�?��i�m�S�#ϯO�Ǐ?��X{e��]��2��1�N��m�t@s �W��{����`�H SO2d<]\6�:�`�@��w�I���34���d���Cȼ��( -�;��6�� �G҈!!9p�",��_�2V�C����4 � �P�٪�y���`��E��4�G6/����3�8��m8�Z���Y�?�vp/�3"���.�ء�oqKK�D�o��K��@]��o�h�`S�c���O��;:�w||p�x������qPd���T_�!��ߴ�t})�0CI��nJ�0�E�k�n_S��qD�u�M��+4(�hK���[���@6?V�?3�n��nJr��|��g!I)���#���S����A�V�ӎ._�mQ��K�������.mS���������C�̰XK�MZ�$;���p;Y���+��XӘ �ƨ��,�[H*���M�:�Ӣ�����,�>�48����G�G�L;W5N0do$�M�ֱ��0�Tt2�(9�-���ْ�UҢ�10(�X �E�)I�E���"�amF�m�ߐ����̶J�/�ׇTg ��#��;�J3�Zu�W}�+�D�����G�#�w�)��Mr�����e;��Xa��"^�<��lfO8���#T,BWq���R�,��>:�&�d� �<%�jO4���ī>�uN'���tv1�j*DU�7:�,���E��3�{;��6��#��w���0K�d�x����j��x�%�G.�V�3���Sn�%��{�� bT�Q�� ��`[�2��) �0,#���I���6��Nl��<�� -@�oJFX$k��_ ɛ{i��Բ�sm1�w��ЁU~l�be.�^�߇>)��6/�4"��*��P�-�o��d�7j�e�ĉ����ѯ�K� ��y��tܭӇ���g�:���a�ҽ\�ZӲ5+�"� Z��^�K����t��?��D�T������^�����t�L44Đ�D+�m���ޜ�k!B`\��>�4\$_�ᔭ��B#�g�Z]3-��v�ؤ[�u�EN��<V�]�9��l;vh����6�q� d��:�`�M��$�S�݅:��3O�ԩ -MUl?T;V(���L��_�:Q�x�������Vx�Q�)�o�i�J�"Tj���4��#��H�.{_�7_��nCg�=����t�3]��X�Ux4QSD� � -4}��ht}�Sj�U�����0�`ɭ ��D��#��^�]�Ym�n�!TV���8�v+�4+��Ԣ�>1�ҳ���� �i$�١x�7MBv�٨�4hHQxѪ_=���3"ʱ�z�r�B�W -۷��5� :��7طWTf�T���OX�ȑ� �]�E8!�L7���=�m�'�*�^q�PI�f-�ވ��&�e;���N��U��~;�s��PkV��s�����lK誧L�gF�:4��0�q -fXoT�,�7N�Z&J� ���ɺ����g��O�P�F@�Ըؚ�?�9>fp���A]6�lE#Z�dt��r�ģ�-�~Kz�v�ʯ�(�f�}�3��2�1�61���-�4�I�V�������!ni�`Xn�:l�e��+ܛ�\��d+eH�E��1���ų�g[�}��T�Bk`P@FYc��;��sc��a��`�[V+��@d�0�d eV��j�;�,t���Ta�J����!�~k��Y��G�����!��&5��<�f��v\�!�wBE�0��Χ��.b�:���x�v&[��������1v�G�������t�(��� ��2O3��*_?P�1L��K����J4^�>�ƃ�w��_Z-}ˢ�7�'���]b��Zg��ݦ Lk�j���8\��W� i6����C.�&�$�rf��6�/`��P�7́Ɲ �X���P�W��^d����9�����i�u�%CA��5��ku|��Q�RG6f�&�Ct���S����&�ٯN>�<����ҁt��ҁ/X!f�)vA�W:�������mL<���>�97,��\�87�{7\+|mg���"����6�r&8�h��A��K��<��ax�A����k�^�Ã��{��1�I�e�h�yLMW^��v*��-��o��d�> ����xK��z�ɗ��'=�<Z�(g�-ʹ ����Ì�q��w,��/�y��ZB�����bH��A=/na���O���}���C�4+-�m1cs�ٰ#V)�+.`d�61�0��ЪU��V˼sht�1�,��*��`������\ſy2�O�c��U��h���&�z��\iS,���Xa6��V��;��7d�^=����#�:�*Pre2a�r90��ځA��EŹ䐹^i�hሃ��VG,w{4�ݾ<M�4�M���H������������n��z`4�^�MS��HH-S��)@`xM�I���H��O�^6N�k=�;1�2��Ϻg�u�kg�������@�Wmxg{�%�Ұ/ꦑ�7�Hk{xBJ��o��&��4s�.�c�������n����z".�b(3]ԗ�kHiS]�\�g��M�F��*�M6I߅��R��7g�vq~�K���FNZ#* �tCW���F٪��_S;d@7�|0���$M�u�)k@����,��Ρ\G>�W��.�ev���d�F'�m������"�R�bl��k6�D�2��6<0g]� ���Ib��,� ��ſ� -�e�?��+l=ư�t]�������(Ň,�V�I��#b^E���ލ��`����;'�����;/�v�P�u�_�'�s��O�)�6���!�����/�qY�(:�?¹h�v@�@&^,�,��XMJl�����m4�LG"�Ȉ�x�ڞ���?�g����2�݁z�f�?v}=��#3WdR���>���n�H�//_k}��YةƂ��S܂{i͞�e��\ -[SQ0��g�\L�1��%�4���/)�e�G[��?���A.�[����~]W�r�W���=��E�C�E�p�;~.�+�e��6n{i��������ɓVڃ\��1�t��%��V��bd'ڸ��wA������"9m�)��-F���F0���9qA��\�>[#:I<��>lx��7�Ʒ�A�V�2�%�䈸�&��e���(�k�J��/�c��{ح�KR��NAx�7��4�J�آ,.�H2��Q�Pc�"���������$E�D=1�P|�����jZ,�I��6�G�oq��WgZĂ�<�m*]�o�X��OA�$�|\�H�GT G�MH1�(�J|�E B@��RmPC�0 ����ф��Lٗ? �l*4�讈��$� �\�o{�� �7~$Fj�q�i�H�*�d�rJtq�͌U���pq��"����e�r/Oβz� n��T{�͠ �Ze棨���Kv.�m �^�W�W3��S��iQg�mf�&{H��}X����Ʌ�_�Z���Zӫ�q5�3ƹf��߃D��0Ž�Ou���3vG��#�0�`F��.C�ĵ�>��1�V�wB]�+UJҿެU�m�A^>o�ϰ���B -�>�8�j�;���:�)����3��(��ҩ��J�҅��~Ȟ�]�Y��[ƄRO����=�usص��RS��� WD{�%�6�g�z}��s_,b9��i[$歘\����p�h�)�i�Y?w��[,<o0��߇��v}�]ᛗYB�OG16{�(+/�a��W��� �w;��`}��Efٓ�� �c�J�����\ln�;E���e�"'!0��[m��HU�I\9��"o�ن���c�1n�)=ϛ�r�v�Mxh,~�9DB,��fum:���X��&��;��8��(\˦��^��K�w� g3����Y�=�sĐ������5�Xf�C5�� +P�Ñd�y'��b(i��$�K�ɋ�_����噊��&�22)���D>��t$�i����X{X|��,S�$���w�}Dz�s��E�6P7�N��~���<��#�M��5�m��NJ�''3}�D�� -o��7�0�s��U��rTG�~ ^��?>���M6�F������W�a8���Q���ޑ���QM���\�`a8d�S4�p<&|��T��v���8k�4Y;�,^�;� -�����߉0bg���ģ�[S���*cO���}H7qr�=�z��'�Û6����H|O�l膇��ZG�ߵ7�]G[e�÷;��j�(P�i�3�hx3D�G|:]�5V���;rzk!����y�(e���m�(< -����)C[|�i�$v�I�O�x����#2�]R��bY� Q�^[�����hN�]�#L����w".��6njY3�U��6�\B�\�Ĩ�}u�4��3e�$��v��G��'v{����uښ���ԍҼ��W���S[11�v���n����[e�yPҘ\ps�g������L�%�7v��$��7�;�~G��҃u ��y`x/QX����g��[_� �H�%���<u��㳭��[�8�'����|����;6�+_%)iBOb\��]��iC�n����|Χ�;�j��>p�.�ܐ;� �0�;��-����ށC+�`����ttT��CM8Y��L'+��2߮M��𨀚>*����{��P�K�9����;���Ҝ"�Ш���t� -�{G�`?QM6��.���+ �E� ����Pq; -5e��L�(����Hȅୱj�z�����(n� -�7`���>b��[�)@x� ��ﻪpO@�,� _��Uc��)�d�]E&��T��sQ�D����ca -pT�41;�����p�d^�|��l�8b7*j~����A��ǚ�m����I�d���B�_�"0�_�QT̎�ն῀�=� �z��[y�.��[��������A���r��x����ƚ��6�=Q)�i1���N?�x@�����߽|���|8?_5��� ���������8�|��G~���r�6F�}����}Q$O�@,k� �}Σ���5d��#iF4S�� ���w�Gq��T��{.f�����/v������� �<�#���S�̚#yf�'��^<~g#�<`z�|������Rp��NX��-��%��*��4��hmܫ������x`w���l�"X|�+,n�� ��ud�c˿&�w/yp��?߶�� .yyt�t�;Z��P�֥��km�:$�b��� I����X�!b�����?Ys�^�!x��L���<�]�0'���#nF�����C��$b�y^k ��5h�̾b�#x�E�$�w�X�ںT#�2t�m�`�&"���2�5_���vx�N�$yn)/�(r���/Q��W�����U��/+��ۡ��8� ��� -�y�j1*D����P�/|�r�^9S��#봎P�.��_��\�;�V�V/�y.gcI���ªD|(�����-^EZ�'=;@;Sb�~�ar� 8��>߮a_�4��w?JJ�1�.�!bT��Q�C=H���i�>�m.4���G�Ӈui��(GK�ʼn�U�C��O 6J���J�` j�l��S Ǖ�w��F�l�ĉ�N)~���V^�ĀA���0��ԓ�6����ݿ(�;#U����;��}�Y�u����w�H"�/<��Oz�$�eL�Yb�$aE���s�QQ嬌�Ðfgk�`"�.]g;�;7��yF�Ρ��>��/6��D9��G��̜�qW2����$[��2O>�0x��v����>nnx��j�����w�����.��g�k�fmO��2�(*�Ʋ�J𪕇 �����0�+�}b��F�Ug�W:�k���P����L��WU�I�cɽ�=L�A�N�z�(�����N��E�B�c�a -7�%'Du�yx��R�d���zt$��h냪�1�X�|4�R&�E��!Z���F����C�̜6W��; ��x�1aA{�%��� DB��9�j�I�!�n�4�V�I��S��J�@��o�Z��YQ�U#uc�� U}��e�������$e�Y�y�2c�Ħj N~a�obJ�E�G>���Q��;J)j�[�ް� �����D���=�|�$��&����JƊ�� �9`J�%i�Y��$�����Q��6=���-�y ]<�r��xF�d#��x�B��-���nFNj������V/ἩoE�_���PM�H�)l��Z�5���2�es8�������(�U�p���Z->�G�^/o�Y�<+�oi=�q�5�\U���VNrq����?� �qfV`�cU�s��������v�>� K aS�s�8!���Ҍ�h�����RP��}� �����WXv���v�{^2����遌MD�5N�S]�wM!��e�O��|��͓`��A���)��v��բ4��4�Q���B�d���(�_3�~b��#�}(Rs<��k�-�@MgZ}b��t�����-��)2'�o����'M�ȿ��Y#Kb����Fq�l�@���P��Fۭ��=�E"�d�N^a����M��N�{�ͣ^LZ -H�����<�7B|�až���=�r�:ci�*��+>P!�C�>\,������Ϯ�ջj��>|dm�|j^�pަ3Ś�|ܛ��8:��a��I.-ߴ\$1���;�^�7�t��=�}iR-H6��uE�U7*�LC�&�Ti>1n�C(X��|u1"��s�e�ï���Mʡ����n�'Y�YX� R2V�b�j_����er�C���Q�"�I�a�:����� r��*�|&�L�5�����,DR~j�D9sU�̼�÷x��Xדv ߾t�>4�F�#��4�@Ç�Dn�g�j��j�Zq���Z��4���]\��V.���K�; ��/%��%�3o����K9a1���z�d�^7�>�3n�Ӄ�����G� -s�<��I$�x���ca�����?=��6�o���C}X�a,dZd~n/~�Ա���WMt����#�y&��"weF���;4�C ��?Z��1�x� :Q1l9��EYz�C��x(����E:�Du�'��EK"y�"�7���ЕW#a6D�L�Y ���qJMBl��� �v�����/K���d����d�~-���O�'��c+$��������Y������sY��T"��"�ܛ��gs��Y5�"B�y��Z����+�-cw{�S�x�2���"p�O��4?��tرѻ���&�"��"���uZ�Њ}�ǹ�O6�Uy`B��g���hA]��$����ֿy0.����������3ix���\����L��b�w�q��n�������L���2º����5�,�_��"�]}t��4�c������Xa6�W����L���Z�;5p�c�-"�1�:�� ��w��bZ�[<^k,n�?�x��A��x7Q��ݻ�3��1�A�� ���*{�@�E�X��@ 7����я�01�� �7.]3O]���߸t�X9z�teG�[!�_QL-�kK����t��X֔1Ya5��#G<@� ߴ(ʴx��~u�lUl������e,Ԡ�f�u�d��Ls�c�A<��x ޞ�~�c®"dɓd$s?�7�7��NTT#��5"�`z�R�y���ҟ�{�"��� �(�4��������x�Ѣ��̱G�C�!�ҔIq/�%-����'�(���806��������v�}�92�oy�ޅ�Gy`��8�)FEןԴ�m��`Ea̔V���X�� ���j~H^&�Y{��Ƕ�����0��V@ө�֛��� m���o�MY��x�)��>���O4,̀��ǿO�����E������k�6E�|v���L��=p���3�oO��˲l"d�E�������, ->��6��G��-�<|��H�~e�}����[���bM��.U�E�]Q�t(N��}f8����s����M��d��'����4�R:�W -��[�c˙��[���i�'�4�@p�(-Jg�W�(�i�c�HD���z��"�7ۃQ���3��r�{ҩ�L��OG=�l�Ɨ:|��b�c=�rS�@'�Iuc��,|���{> ��|$��\�'�;�IH�Y��FD&}��1\�#��MQb������'�\74��M^���4�PcR���E�_�Q�Y=)�˺�"���wt�� -���}��cj�&{��Ct�D��˪�)>t#�D�]��:¢a<�Q�OF��r�B;/u�f�"F�Y��O`{�JgM�����y��X�Y�zl�%�[AӼ.'M��D������r%�W$+�^�y��T�l�F��A/�8įS�4߶t煪ƈ� _�v$b^,�FĦ�{� �O��mN�5��M���1�@�,`_��ցQ���.]�+�|b�i�(����L%_�����yД��}��m6�TD�^|��;�>�F����c -�I6� �H��p*`D�rj9��.�x2�j4�~��C#�!+���Dɍӥ1�͢3��7��uZ�hY� ���s���1~@�j�|��0���yz���L3�x�9���7K�?)���xX��#ۣc���X�<���Dd�ц��o<��;����ѽ����4�7��1=�5cZa�e�!-���瘊(57D1��G2����w�ކ#15�Ң6W���·-���-����˺��es0^X� -�~�,��ׯ��}aq{t�[R�U퓽�Z1ɟ��d�Kso"|��Vˏ�j�q=.[m6%nQ�Ҡ~�w��L��i� y%����PQ������/Ǽs��AMK=E�R�b�-����B���I5Hg��]�ӱ1���Xs#��DH�G{�(C÷~֏R����&�]c�U�{ԆX j�Ta��i���ȁ٠d��<Z%<��Pʏ�tkG'=�߫<#�ډ w�dr{|�f������ϊ�4R�R��U[b����LD\'�����G"t������#���7�G^�ۄ�`�g|oL�q��%ط��b�&�R<f��0��������v4�ٛv��Ú���w�$�`�p�1D�4ƻ�$� -��f�uJ7w��Y���yl7^�ֺI �:�4v������� o���������9��@�kZ��)z�<-�.�A��]�"�x=�>��=��/�ӻC��2�uM��G�����������D4�}���k�2�2�[U���& -=� -�W3�"N0��ɕWq��jf�h��R�uK}�(�H?�� W��5����-�*תeT�vǒ(*�{k��!����K�-X|ɵ~��93�_O���ƥ�o��1��4T��qȑ�G�>��J��v� �?-�7²�����������"�Ѳ���T�<:��8�Z���Z{2�>��= ޛLcE�M��G�X��%�U���6f}zb�-ǖ3U?p�W�(�|�A���5�E]����^g[[T�w��h�cVi��Š��v����4�j1�e��[{�� Vz��d���<��jV ��{�:��qa�u�w��h��JX*�;�����Ta�s�3��@�/�Z�o��7���I -z�i>]����� �QP�"F}�O�~�V�(%�>�,>�� �FP��a���XM4�~'�E4�� -���n�m����]��Y>�U�s&O����Y �,ұ��`>�}���d,kz���#UK�;A�۲�h� ι���-hץ9�i��qOh�|6So'z^_�<�G�s^s�b��V�����(@��V�ʌ\R��Au�j�k�ܙ�5e�ߎu��������e?�3n]��\}浒�H6cf���:%����7C�DB�l�x#t|(��cK��Н%�hV��<;�uV��e�t��Y4K��專 E��b(_71<�KM�r`�?HV��v+c2�3[�,fjL�n��CF�H0ɦ;a�����*,���8��ZncZ��"yX�B� ��V�w��uY�w}g*�4�NR$;��0A �bҌ�b'���E��c�""��V�U�5o��r��m�Z���+����o��L$Ho�$��rx譚77.��^�����0 -�A�yw��w�%�T;��l��6%{û��R�- ���`n\�Ia��?b����a�&1"�5���*w˞5G���Cl�D���}��|ujt9���"p�eȕa�x���<��4��y~�Sp��q�n"��ȿO�t -*v| ��w(-��n��W��*"��h���`��h���}�/9bt�r_Ic`�� -�#��P�X�����"��.��y��|�,eJV�c�&Qf�름�ٓR����?|]���_�;�����v/u�uk,���� �w8��ϸ��F���>�,l��Q�ܹ_�Gu���ݣ�m��m����[<. ��_�{(]�/��f�Fhv���I���-�ec��ߞ���/�O1�"��#Е���ن��%� �9�x��$�b�^��x�LK5�C�;�+�L"AB"�7zZF��D�GMY����� �cQ�[�ί/�f~����g4d�(Z��r�G��#��(^��S�52�2F"����7H1ïw�?�����ޢS�"�#��Y�^]�Z�~����5�wƸWόe�S����HC���"�'?9���7՟E|�|�tF������KNQꉺ�4���:����m��ô�-]�_|����r�{���m�q��n˃�7,�&�j��w�&��f���1K'=�ml�3����ie�HU:K3Uz�m�0���g�{6�~��c��d<�/ݧ?��� F�x�HS�_L�72A����h��Q?�'h�[��7|��p���?߰բu{p�����&�{ĉ�����=mnxܨ��0��-�N�q����[�ta�{D �R o�#j���%·+hߎ�p�@=ꦙ�����n���Ov���I=^�����5��68��`(�o��7S���p�%h�r�#H�A<�8�킜� �����/<@�x�ӌ�9P�Ra���y�Y��=~ ����8kR[_����A� -�8�s�G�����:�tc�i�ᱠYVʋ1DCy�*}E��z��q.f���un�+Ѐ�K�9�j��&���j -���h�l y�P�Q�qE�ή�ҐR��ast���[hӃB�"�įW��b� --�V��@�?�@�ͱ�t�����u�Г����);�d4=*[o�_1��q�j9�zz��(_n�{6O�Q�#�6����*}w�e�*m�&���U #&�������E���_�kKG���ܽR->@�G/��ʌꈡ�����&p�(\^���g���Uoy���Hc#�G'��J�!n��S�h���QT�3�1�X�� ���H�E���J|�n~�,p���}��� K/bI�#Y� -��o�,x�ߎ��]��A=����{���DG�F;���a�o�6�lގ�ta0(4�H�.��2�����T0*s)Z#�uVV˂P�Zsn��$k D��e�.�Г�ƪ�Ng��[��\�ÔE�,���l7�X��D����Lfd^�$9��o���)�&l�?$Ӹ6�R�����o/�iC]���H@���1=��7s�78ـf�3��(:�YVڲ����phQ�Dϲ[d��0n�t����7���u�{*��w��c�`nss6)� �֞t�����%��]���lm5�z��sCN�9�x;�2v�&��T���j�ʩ�-;��{ -��Շ�j��������k��O �ޣ�p��]j����z�� ٬۴;Qu�E�/�ע���ɀ~~,��`nL�qH:"7�zϴmI�% �TA�bgm�!/�*��q�Y�pY���f��@-��o��0��5,�����8�ngغa��,$~��k���FGpmD ��r��7A�ٵ�F��RW��c� ���8ހh�����P1��Bxu����W�*��U@ �K��F��6x@L١�"���aUkm�`����v������\Y�=?����4���Y���R8��m�m�(��t(��# �N��u�6)�i�E��C�<���Y�V�zV�܂q�xnx2ӓT�D���з����;R����H͞��i�~.5���Ò�0��8m�Nh7�'�m$x�����QȻż���#�Tϼ�7�,"�x�9>u��eG:��u��tfߘs����k�Z����)E�4/�F���(���x��Վ��c -�v�����dY�!�|Y�C�O9cVۢ���`M�j�������o2��-~N,�Y�M�-�o����6��PH��F�l����*`Bΰ�3y��o�@f�RsJZ5`�$d�4[�8b��1��X���J�P�J�9�����$.��,�seWDUdj�r��:�Ňk �n��}j��A1^���,���2o���A��2.��F��m. ��gp+.�"�8�P:��.��:<?��p�}��>��*��7@J����4U��f����;��Z5;L���F���s��#7 -2��@�u ����#1�Pûw{ƌ�d�9l��Mˠ�ŏ�δ�M'b�<,d�����/�[2����o�t�|]��ߚt�|m����4�G�F��y�:�u�S���FJ��ʊi��#��O����(t��'q/�E���"��*�Uҡ��l�"�������m�'�����(�cLx;D��#9+?� �ۼ�`^�O01=m2b���ٹP�����"K|������W�� Ѫ�r�:$?l�s�7E���`���l1<�ä�?������7In�,� t�/>Zuym���G4"s����p�B��X���*�fŤɠ��2ϡ8����((ӻ=K�ʼ�w����w�3�o���'�V�ӆ�W_Ϲ�������2D�P�Vaa�X0�"��+��?lX��Y�������3:�ڮE� ��?��|�4o�jt�It@@�U�N�Gg���&��q�2���'G�����\��<}���m1Fbw(a�w�q>��sU_~Nt�N�X9��-�������AXrk�w��)�[�� 6�4���"�`��Q�Ko]+����~���)/g�$�j��Km��om�+G���fO:��'�'�5�u��:�`.�"S,���I��Rk3hs�Y>�Ȩ��q��,��V�`�b,��-#��Y12�&����`_X�t��_v�SD���r8��_M�%us]$��o���C:�b�#��R%�(��`�XzY;�����u�9��:�S�����x��T)5�>���_=�_�����7�SA�e�$q��|�?E(����v'k���H�JM�ʡ�x�,� �^��}8�郧��^F"�����9d��N�S=q� ���J� �� yH5Υ ��R�9k���1c\�H�%Sli��T��>ۨ -o���K��Q�B\����B�����T6�x�O��T��k,���=} -,�Rҙ��|���Ț��as�2EO/v�;eY{���72cߣ���rA_��RR!ؼ�_��?�2V��6�<�X-pDWg�ܘ�%;���I&M��M�*�[��*���'�9</p���8�p��O�e+�zI&f�&�怠bnf��lpѪ��Y[(!b^1ާ"��( ��1�+�@&����6�թ�R�0����q#Z*�2� �/��^�߲t �Ǘ�q]��ʵf����4&�*~� P��|�{qAb59H�C8�����O5�s�pEބۇ��S�Y��D9dރ&Y�/���! �Μ��1��,��� ��n4�O&C`�I+�c, ��a����K��+Z�3,㳵xse��f�y�"�y.鬙��e� -$l!(�B���84l���c�Mߋ��k�~�������v���z>�c���(�C��GS��>!������1�=[]�����@��i:=PSx���%��\���e�\7��$旲�+�Z�H$?�{���#�h��*�0�AL����$Ѱr`�n�'��&�Y�8���`^S֩�u�mܾH3 ���(5?�F��{ �5�s3�SE4%N��|�}kN����.�P?b��������L�D]yc��A�����p+�X�Յ�k�M�:�QYq��a�wH>4V�Dž��l���'���_��`�VO{PSv�s������>�ݻ�}��9._��"w�EpAu�H;)���m�MM��V�H���P�$�W����kM��L�= ��;� -@��zy��}i��QQ��s�;㖼��B�(zC�IC���d�{bRD���\x�4d��F8�P�@iڥ)ܹo/R -+{*�q�M$t�����tg�I�w��#a&׆�7,��!�6�B�ŬI��+�T�g����������/��V�9��� �դ�Ƴ�ܷ�5 ���Ή�bn}6k��l�#�d�/~�G52��1V����J���!��BQ��˽��\&�1�"�4���e9�TQ��I�Ū��"VGW�;������ȬrO�u�;���}u_-�?�iv&NW|����y���7!�h��(v�<+�|;�g���6�D�̙?F��]���zix^�a/��%~���N�� Y�y �u��X��nn&8�0�ά�;V>��k}D�?yc+(��`�������4�^c5b�e��옶s���t��z3�o ��5�k)�GD����?�����a�d��V$��Hm�]��+�ڱ�`��u��`x�2��Cu��䮑����^A�}�7�L?,�"/�i3��5�b+�]�����&8��P�����NJ�o֜q�m�)m�Kv�vl!O&rN<oc���GP{���0�dKWb[1�TɅҘ5�(-��f��(WdD)gxcO9�����z���m�[�{̚b������}�p=lى�p(fٽ^���K���^�WŌb� �Ba�J��X�h�&(�h��[رCD�>�(VAC@)�f��3�Ҽ� ��Vh�?�3h����b�p��Ҕi�"LM_%ԤX�ܐ:�}���5h��>]�ru��G\�T �r���ÇS%!�;BTx�� ��'���)N���DF���.<D$,Y;<FD� P^�f��cT�e�*��b��02�B�sX:�l<,�*?��rl�M�ی?=P��q$��TR���g���-�5���eI��*�R3 FK���zx~�ctfۇÚN�Vُ �+�a���x��S�X8܆t{�2#�w����E�D*���"MS���#aX�'�p�|���l�� ��= -����[�¨�����J�+�ϟ^��t -� �c�d����<TثV��:����� -�~bs�E�����p��ޮYxi�|ɱH?��~e��o�h�~u�E�-U�û�)RB%3�^���Ao�ۦ����-�`�x%�5'���^��C^��Y���#���j]�\�����rj��@3nl��=��e皲*J�5n��9A�I<�?.�Y |�g���\�c��&Fh^<���|)x��6C$#y�dH ���M�3�1��������f�r�-@�⧃d��g���7G:Z_����.��k��(�(ˉE�PO�g��WЅC�Ue#�g��"�DL��=��Q�65��ރ��|#P�����.�4�r�>��<�%pp����(�5��A��7�H��y�� -o�,9N��IF��"7�Sd����]F(O<)6�Tu�Epq����W�� �ꡌ!il�=�o�'�����dtSG(s8�/��TY���5PTg:�I��dM���[<�m�y�O{[�*B�g�-����yo�/·(EP�O"�x�������Qo���E1����Ϩ�U��` �p˔ke�7z,V%=�%<T.[T���I?5�{���}�O����>�E��T�H�"�Xt�(�0N�;"x�[*���.����UĶ{1/ -�ŵD��i ����p�lPv���p��m�h�e�VLn,>TP�����q�O&�� -�1B"�1V�3(�cD�C�l�&̕���/��!��P.�܀�[Toj|��o��7[��kІo[��c�����·>����[��21��E��s�c� FhV�Ԡ<M�V�C�W|U��O,\P҆�R����n��&�БʜW���݉�V��"����1A]�=�������\[]#�X�)�b��Po��->D�[��� �l��ç�N���� �.R�M�`����D�:Az��.��[��g;�!"�n�2@�EB�Z�0e� �n���K�Rfb]7[`�n����������X�J$8X��&%B&Q��Q��C6N�/� �ޛS��8�"��A�F�$��F"�>!m{ȟ��qG@(W���8�sź���9��Fu�Q��lbL�F1�]�k�(E2��<���n��7.�ȵZ�U]X�J -6q.�� ��Y�Ӻqd-�m���#ß�"��<!�a��qDLہ�F0�XV��:�w)�@�$����i��d�}P1��${w���H�������)��sv��a{��(�N�Zv%����wXQ�P�~rd~re�:t*ϓ�)r.&/͉�����٥��j;Z����6Sg�.@��.FY:UHd��rLaB诩SH�}�;�M�y��m]T�,���"�vS1O�ܑ��ԕ���1S���5�s���l�?�=ߢ�Ӿ,1J�R���2� ⣈7�&!J�����22PC2�@�qU�)�4Z���VHW��,����q�!1A���@L��������P���7-�ha�'�٤÷x�S� ǯ��H#�����H,����E'w7�/�2O���۾��*n��?%1f(W�wx���3���>^����Yx����$��䱐J���T K�NX2!p������i�_��3F{Y��(i���=�Ae3����� �=�m��ͪ��$rfM����û���P$��#������1f#�O� ��d��8�@�<�5�_%"���&�HQ4y}+|���#��x͊�ʲ"b�ҁ�}�]UWf�UU��X��|�Ɩ�l�&���jހ��E�Ҭz���_5Ak4��'2�f^�̩ԡ2�������& -o�i� &����|\H����,HA�!W~�Q�j��}�E�۴��Nrp���w�<S���<;�p�u�:�Dz�f6�+����<[|���oU�fkExX��MR-~"��#�A�����I�(;��H:���W�^0�d�(23!&Q�ҝ�y�2� ��̎/&E�u�<�<��cL��N2o]�#�̿D��me�n������4��td���D�H6+܌s���b��&��ڠ��� �r�y�.��� -y������*�R�R6[�"�#ݯ�<A���� ]}Z������5:lg�]�����������GYx�7ē��<�9wS~��wl��`��;a�=�u+��k��m?V��E��D�m�����?�D��a ?|�g�*q��Od�e���t�Z2�U�"��H��z����WŵP�x)'���a%c��2ru/|ヾ��01�OD`�C+Q���dp�)z�(�÷}�F:�#'���`2��#÷֧I͊!I3�5Ӎ�E泭1�S��� �HΣ �N�r��Z��������4��;8!|��.b��裄_�"t��ѕ�iM�̕<�5�\3���.�a?ycޔ@B���G��'�E d����BLf�*U��5n@�Y��J�o]<@�PW��O�D���%hwi��x�!�����bR����ۤD�fe�Й��bh��'*��O�H&�;*�吒� �K�{��IY���oX:g�~32WY8��/�4M��z���I����<����1)57�tQ�A� �[C�(�݃XE�[���8ݶ��z7��1d'���@h�wc����H�9q(U $K���P�0� u�l�q��1@v�����h!Z#g��~]��b�u����>�Cks���u�!VM̳h��CL�ēY)w^�j8�Mэ9W�^�TD�g��gs�#o�G�ߎ�b=�nV�D|����A�RF�-�$�!gbf9��ɱ|����C��Ҙ*�e��;~ܓ�*T��k_���"FS��0���u�������[�m�Kfp"�O�����m�[1=t*j�r5�( ��`4O���v�_i�ķ���<H�w�d�J�ay��DR ����5�A�,�o��S�����6�W�c`�����43)�07k|;�#��Vsk���>����J�E�K�b�d¾�PF�tUBD�?�y��skm�����ʒ�'�[�� f�}c�^�4ex�ND���d{+P���^$I�qu*�_�ӓj����c}�i%�;BIY�������̞6~F "X6^�����S�fS՞x�A���b'�K: -`�k.|�@�ґF���P��7õ�]�3���i�N�3 �2W���)��#�A}�M��K�Bņt`�O�� 欯TJۓ������G��͋`f���R��8�n�mu��G}�T�vr,=���?=�j��>u�ȳ.̍�^���x��)�1P�Z��8�?�L6��!ʯ�[���#D`O�� -n���m��]":�����I].|����\狟�7P����9����V�&�",i)�QY�j����4B��H~��#��÷)~�Q��u�/�xeĄ���U�P{+b�'[�f��j��e�v�z�0��XQd|�Ga<����w"�(;�$tx��+�����2R ���eN�4Rه�m9# -(�����HrV�j(B-N��$��w�Ől���۪?L�|�#�0vx+�d�� -<}��[�e lT'��uo��V��+[Y�����nO-8�E=@��ֆyE&��ܞwsKAy���""�fm���2�/_56�oS:�3a��I곕F�cy6��9A��!%�oT�N�V�[�s5]s��]��X��[$����`�i����]��q������?�j�[W$al6'��d�����#��1�����'Rˇy{tH6�� -/v*\ݩ3�~I=��[�[���e�1鋀*z�0�MZ� )��d:�peˎ��ZӒ��&�yҩ���t�]��=�� -k�vt��=f��9V۰��]���`�Y���o,�����Ku���E�ڃ(�uG���EY�I�a�/V��V�9�G��њ� �X�4��Ż�j�V4��ӣ��d<ABH���8�ov4�!pUP|�(@]3����?�Q�N��}3E���e�#��M�KaE�[Ď#�5����A&��m��ח�E������b�3�9�}'�Ե.�i}�imƐ�/[�ʖ��!�":��l�9����n �'-�<��m�# -z��b@���/����Ⰶ��䣋qc/��_sz|J϶{�?DZxAg{�a>e'�{ f�����Ǫ�w���"c5<�>����G�`��[v�K��8��R:�����=�����H������P�����j�5����@�����Km,�D�|*�\�2�M�7z�Y��;=K������Z��L�����)՜nͮ�Ȥ/��,��ޕ�X%�J�"_�pz<��1��=��e���y�b�S��Mas�g;� @<h& ��&�?dML6�阻ӳ�):kC f�D�^�Wd��-��A�e���t4�w å���͊<��q�-Ͳ->mQ�5CԈ�8�8S��]/~���v�o��D<S���w���W�9�Y�bV�^�)ܸX0�!�/��3!_�1ȒNe�`�$�ۭt]���zc�L<7q#���z"��S�<��r��dwR�\B�F���"��|��N:b���&pC��'�;��f�H�U�&��}����|J�}�$-��D8BsΧ9�4g�ӻ���ݢg�k��f -̓�s�;�%@EK��z���0q,��j�[n5*��Rj�w]�駓�L��=�����9E/�WRg�ټ,*=m���Ïఏ]2O.�]$5��Ƿ��+e{vA��$3��B�,����9�X�h\����36�J�5C�����Y������s��*o?� -"(Ȁ[��Bx�}a<�R_�n���dT?�i�l羙�����y����Gh�����/5`-������"��yoϖ6��s�1���ZÛГiq#�B+���m���U�h�jvט��;�[E�]F�:*�+6�ے�o�g��蝸�m�⎇_>�A�i�@{�;Q��)��]+�JC����ADԗ�F���tObV�K���ŕ�y��0��[�@�b��]�q��PZ�2���s��f��Y8�����.̹F�4Ne���+g��_��o��f<FL�o_���t�4� -y�1ܳ���G#�3{���:I+�F!�lC��N'2мB��q�y`F�\|�>���w��|����{�{�3��!n-���J Cj��}��q!Ai0K��H.Y�@+�/�v]ϫ�Y���s��2 -�D�m=�j�W�G�kK�N*�z�{Ό ��o�(7F��cL��e�3�#�DWK����o���Ѓ��`����p�GX"[�J����l�͑5�rE��E�Ka�/|�'�1�9:?�o�9d@b)W����f�����V��Oc���*����)�ڏA������7�x���J��ߍ��I�w���h����Z~��g��$(]��[����->`���t4�����P��0���Fg� -Ij�t���:F�S�B��U}�Ds�$���3ꔦ7ߢ���4��ƺ��|W|�V�O�Xd�|{1�/�^�+E^�S��� ���E�e_�m�#��ĥN�xz)��N�@�`ع��"S`qS"�2�@5$x��r~w�A�Qf�4� -I��OZU|(t%�h�qAH ?��֪����Po�S�>n �X6�l�� �.4] -hE�J=?�l�����Ё�Ir̴ �o|�}�I�1G���1ɮY]M�w��D0C�I^�<��*�"+̓0|������V�/�}?�|u%1�?�k�_��\ULwl��$�g&B���"Ss�Y���vg"���&�Ǽ/�=�1��*�p�/>�Z��:�͇2��U��QD"�D��S �@�����aI=? �0P�� �y[$���g��00�M����8.$蓬 ����+#�S��{�)A�e�H�r���Yl]�A�/3�L�H��^��EE�N6/$��^c��C��y��]��:ݨ]���q��J5�˞�ޜ������M��uB��IF�J9Q�/q7M�+d>��I����s;�H��1�)n�V1��쌺 �|����j9ei4�Y0 ��&�.ʰrچÜ���.먮Y���:��U��6JW�w�Ue��<4÷)�F�:�&�h���e)C�V�M(��q,�&70��l�!��ms��h��f�����i�!kM���8;<��ÝWK(�I�B8�L�P�=�H��O���"߹O�l6�:G\�WWf��?�8@�Pm-pcfbN����@g�H����~ -L�#���=�2��1G�}�k|����<D�_�atE�ˆ˾پ}��i`]��X~i�%�W͙�I��3�cU�Y�b�`u���G��):T�����I�[�f�̬L�3���rp��mE��M|G���y���_<�]}��&�`��� -os�o��9T�u�ej"�%]b��C���}y;d�9�Iԕ�*(^N���wϻy��r��2�Ҧ&���*�3� [�+��¹��jw[�����<��8/5���Z��V�>��<�6aBU��J��ȵ�a(���Ep���w�%�L�Q�6y-��g�x��Gg%G�q�-~��f�4�o �p�gs�9U�Y8��fN��~��l�q=�)�ʃ���ݾz��Rb�s7��9�]����S���+V����~� -�� ����i��u�8k��S��蛆��>�}G�)8)��gB�nOD7�X͠�����͋�9ՠ�u�S�����D���.�o��}�y�J�!�;-�IW��8l3��0@������mH�{���H�����CzC��3��wi��o�|�a52�CT�� n���f:�bt�0�Jp -�\p�˪k3S�2l4���� -ߛ����o�t�<�g ر<�5�76����l*�DK���#�W��$c V-;��'1�O��,2� �������7��ʄ�GYa�6V�T�����q&�]V��oG��V�=�/�e>�.����Hs`W�� ~�������|��74���[�.E�Gt��3�f�_)� H�~��R[�_���[��DF�7���Ǡ<;� �a�Lİ���燄���2�ƳS�9.� ��'��Ca|��A�"nmΙH��rt�Ņ�kP��Ň|���Y�ȁ�o�PX��M���� �`˾)BYz0�z��d�c�S���F��5-�/���]H$Ք3����l^�GZ����_.���]W�������YY�g� 0�$�-R����*ܗ�!��O�w��5:T�s�Z�;NH[���mr2�l����0�w]���t��,�@��� W ������߆�"�Ď9�ߟ<�>H���:G���p�t-�7Ӳ�Z*���l�̩tSE]���j�h�D9��*0��A�0�8i�}"�h�����<�_����>�����a�n�}[l�T�h&�W��3����?ck>N��G� -�nHԁ�-d]免��v'����%I�W�v�I���Ȥ���L�o�p,ä���Мte�@��s|?�?D�S���9�r��eV}6�������0+5C �Xqg�A��,u�����Ñ�m�Dڇ���dI~�n��`!x��P�!R�)�wx�Oz!���7�jqӳ�&֑��Ң����1�6���R;po�����l�A�����ɋo�xS�t"|X�l�=�0/����6{�*��P�������iZf1V��G�Q�XT� -ݡ2�džl�=z ���4r�wҥ4L�a��c���V{�#Ԫ��!���}ÕG��[07��~��B��xi7���"a��V\�)�l�t�r��1'^�KZ�ˆ���%?vv�sfk�((���4�;�iAJ��;��wG�l$R%�6��.�2�9C�F��8��K�F(�0F�I$�xԚ���*�E���,k�?�����Ɓ��ơ�)�=ZF�c�"iC'H�Yu���\"�*ܙ��@*����1l����Ӭ�>"e�sSë���ɺ��2&FQ�6�rȋ���N����(u����1�:�G�"<��=�vl���[��lcj^,[�XNk,~�WW���X��WT.�ĸ������>l:����7�%w�<�U"����m@����s3o[��U��Zm̵�#N@�.߾.���N$��H��Y���>�`�t�x��G;��� �S#��K�=x��G�;��->��֕n9�O�;p�7t �i"��Wf�M:�)|ۇ[i�b��N�\�!d� �M)�i^�-Е5^��B��ؐ��k�u���-d�LA�����n?.�?��?�26���*��Uu�C�%���X�p@�l����C\-��:@�����{E�x��g~�1'M~�� �6X����=b����>��o@�^�9��2��v36�������ѫ{�5��P�u��'�6^��}�<�)P�Y�4���C�η�F�>�K�ۊ�G���&���u.��6���e��+��-ɱ.���(�i�U����mX]I�gl���t��38�u�� �n8��|�v�ȹȎ�4v�ߓϪft��u��7p��l�\��݀px7��`?Q�";�[�3FIILj���e����H�A{���0�X8nj��罽��j��:��~�V����z�dOd���T�wM1�����5X7������o�.\�<k*,��F!�5��Z3���Oq.2^|�c���a|c�|�ʁ�<%A�y4���"��c$����1�0��v�\��x�o�=��ʯ[�[S(�� ����,�*�Z}��^�V��g�aߪ�;J8RAh�1�v����`�8Ҝ.�]�/��%�ONjF����)5McGt�h�K�����Qa��Å�!EU��4�˹Ȥ�+̆���v�)����ا� ߋ�m{a9�M'���}���AdG�⡏akυb�v���QmK{��%����l�Zf��;�H�"�-�d��{��ݾ�Fc�*�� -��`��q������Ab�EmQ<�� y�xa�k5^|(Z����<p���E�����9�'�uz"\�;�Av �&5�#�<@�+谿��k?���W�9�?�ݔ�o��m�p!���c��Sݷ�X��§�Kg�g^�i͌Cdp�� �Q����XV�/���緂W����SA���idU� :�s���b'ЏԶ����� �*�\ŵYE<"�)�6M�a~A1�+�XNE"w�����I$�O�ʎ��v"�ߓ ��5�q�^�_�ᤵkg �"$�����P���pk�RM�����vA0�x�H����|2��⌚ȅ�*��=�o�S��Dx����J���Q~ ��m]�4�s}=�� ��{��n -D�����? .�`��� -rX�.��#�i�"���V��Ի$iN>���0�/��F�,ً�����G�ƣ�Y�u�v`]�Bi�;�m0?p�D�~]��Qض�Ԓ�>g�F:��N$���ua�!�F�w^�l�dٽdw����Ɠ�,���\��+����IC�[��c�)�`_7#|���/U6�%~����39/bL0��S�<��>���/�R���_bv��`�Qz>�� -[���Ƚ�*�`Xl[G~v^T�d�]��:3�t۸���{�ãM122|�ҽ���V;�wx����k����o�P�0K���%�KLr��Q%���!+E�Հ�}�Oo�[Ӄ�*�n�w�n���4��R|mH�ro� -:Y�D%�9�@Z�}2��.9���o�y��fG��T�8MC�*`��S���b�k"��c�m� h�Mb+" Q���/=(�Č��ţr�[SL���"1*I؏0SD���<���a����+���2�����:��/~��CІ�Zm�o2 ������M�q#�\Ǿ ��n(��ɤʞfy�X$�VeN��GG�9�<�n�ma�S�% W"��p��M -�������� R��2��a���h'��Ժ�����M���~H���1��M�ÿ��{��=�Ҳɐ������J�Ղr�^�z� mHTu� ��J��#�mZ�����)G��;̨Z���� "������/�=O��<+�_@"=�ާ��/����"��p����m�<>��l#%˖bO�+���z�w���E:�D�GC�+�^�n��{E��|�l;t�ӥMY[�+�gmC@�����tr��8�����e��m�E��ȕ�ysn)x_�j��;yX���g���o�Y��Jd�[�Cs���K����I00����d43���6�a 68R@�xo����ȃ��\Ý�*x���#�1>��7(2���q�A�e'2�<�c˞Z�ܤ��\�T��"^��%�O����0����)�'��8���'=?]q�5����e9���j��z��*�8B'�ta^��2.��T��1�ؒ+�W���b���BQ�)�} ��� l:}ll$E��\�Ny��Ae��2��/��"X��-ʉv�=��j�E-�(�u��,�<Т��m9]mDt�&�It~YH~%n����vb�Y���v�Ӭ�@�t.҂<Cx+�1��Jk���ɼ�^wj|Xnh��xB ��;���� ��Bإ�`�Q�Q.�����/�'8|�ҥ��tJ7D��-�=z6+�����$5(��ZGgg�_g��h��}�&�X��'f��Ⱦs��4$�T��C�@̳J!A*��Zk�%�A��Ls�^q�lb���)d���'� U������e>��8��!CΥ��^H�_��7}�z�¨]���9Gm�-�����E�?�0����^�t����������d]$�(�TP@PB�W���J7��Vq]/߫4���O��3��=�r��8�J6�B�c[�a^�M�4c��~f�Df��{� -խ=n"��}B������3ޜ3��~eR��O?�����f��H���^��⸘����տ��0�����?���{�B�f�����n��V�Ɍ�L�F'�lC�Ɩw�7g�L+ԋv}�4��ˋ�1�}����(>���ՠ�Ǿ�����R��W���>����{�� �<z���TE%�|3E��`�L��Ƽ밣�ŏ1�Z�J_���)'�"9�"�}Ȕ:��N^\YV�y'Q��Ox�z��D�`��m���`0��M+G�K=�J���cf�l-�;�����m��W,-LLT�ak��8�^�TKj�u<"r,��*�vv���rE��c"��T���*���� /�Yv�%K��5��}����l=�D*���GI���Ɠ5���']�2uE<9�-l��<*d-;�ָ�j(܄�~�z���6��qz;ino���(9������UѴe_�! -��0� �ѷ�E�,I)k�R���X�I�h�`=y����Q�j6�-����.�e�~� �|�A�>b���>p�_ke/��2�Xu��X�<� vf -��� �Vf.c�#�~��{�T�˗��+@d�.ե�7�p���Ia �;�����l�hJ��k��q�Ym�1�z�+��'�����J:ݱ�}�m��"�+|p��8� -��>_��7�H������+�Z滚Y�I��8����@���kZ�<��^���<Aj�^�P�7�Ǘ]^�h�į�=�O��kDq�JW0�PaC++�~OY�q��T�����:�y��5�#=y\��KeRP@��1�K$f��j�H��kӀ�����K�.�t�� -�h%�����,�X��+�;@U �{3w�|�z4>�s��ȯ���~�����pꪰ���zjY�(���E\,����̇]�$��kI9�b�'�X�l.���X[> x� -�s�T��F���.DX]}��t��j��qla���k�(�A�躖 "�㼏E��i����ڞ�#U��0�"���@�-� �3����Lk�>~�x�vҷ�N�|�Ք7��J#t�h��]�HJ��A���H؟�f �`*b/K{IK��k��W��,S��B���&���@S�b���#FQ)�lYGxCNDWs�T��"E#a��a��lF.�Q�d�8��+y$�7}�Q�����r�����$�E�.~rҳ��Ƭ�-�i���z��xw�Y�"��K�$�`QC�q��-!ޤ�aQ(bR���'�'�aN�]N\�ݑlr;%.�L��V�Mc�N{�f{8�Mo@���ُO]�.��i�x��¢�[A(˾i��(?�m�FJ�[B�X��>����� ���͋I�M��o�p���oW:��ϗP�@�&�kխ<�v7�}�A��|��f�}xSq�R�� -N>��9���)wB�&���<j�.Q�6�cw,G�� Uk�7�y�f G2��2�D������E��:��`�!s�.~4G&� lD�� E",ٝ�k��o�eZ��?.����I����?L9��eq���Zbš@=v��F�#h��7[���F9������zxb �-[�q��P�Ϟ:�hG-F(ޘz֟n��q�W.�L�$h�BK������ʳK�"tE���a}0��,��HI����D���\���pkl��$��|�C�W�I:#�xY�x�����#�b����~��L+UaY���Tc]��Jb���D&1X�%�A�RLb��}�d5V����7��USt�rk���n�&_-�Q[#�933,��0����*���!��ߡ�U�L� �����!����=�$�d��YU���;�S�~7Kxjo���)���Ct�94}n�P����m]ǸQ�����c��"+��5�`��lhb��;��d[���g��aa �eZ��x����R{�9��N��[ -�xu���$U�"��X}��gk�(��V���S��%$Ac�n]�i S�;W�e��;3��Q����/�n�Ȇ��̝��m�t��l����t�h�i���A��H����.�=:6�ر����u��cH��U"�����)�����[��iF����,�C�c���U f���V������C��*b.nx�5%�ì��Dbl8�چW�u�q�8�I�Y�CR����\��/e+���.QH�*�{6e%����c�݈�,�Bd�*+�s��O~�o�_ ���-�=�'�A0V}��H��kϚ�-�����0��U��-��JgL�(� ]�2X��3�SS����m�9:��c5`^�s�3��f�q��:P���~ԄxkZQ���0�9�c��K{���M,?�a� Z7Fi��6r�+sތ�ެ��uec�uG�(��6����j�H�!�a�7tL7���s�c��7[Ǭ��XT��zf}�yE�dpW$zR�2bR����n�\M��I��f\��� �^u�!:�l �^�ʡ�v��� o��B��f6���1 �)r9* �H�D@�O� �gլ�Y.5"�`+G�ao�H��Gw��ڳ��E�W^�!&�:RWMEP�%�T�j�0�'[USD�Sq�r&?�gەtD�@��/�C>�3�z�(mpWd�y�%�䍚�N��&i1��;/��i���Ni��i[���M����� -���ۺ�+�ĬI����1�%qTP�����Z��J�� -�1 -���^3Tm�Zh��)]b�ٹ����;w��/�{ۗ�M���e��e�enR ����HU��,��L�;�/u�Şm;���Kg���"9��[�j�t<V��j]�8��Ő�� ����٢Cy�ݮ�!�8�!Gc� -E��uc��y����NZ*�v���&�[�� �!�Yv;3�~5��2�Xx�CX���0��y:�/�Y���ƌѠt�<We��q�7��L�.�"��M��I��<��ܙ�\�91�0-���"%�K=�S d�6E����Ҡ�"_��t�<6~Z�&{H�;J�m0���|�� KP����yot���-C��/��ϭ� -2�vr��9��?�@ߥ��U�����t� n��k�������7��VD�k���>D? C���$�f8�����.$ci�+��iw�Zς�2����ڭ�:���C���>A~����Z�oJJ�:3���!K���\nW���0�=lå}����;9f�#c1ͥ��0�r��jR�'tw!�*��d����J�լyx�V�=�Y��` x���fH|`W���/%��J��*Y_p�w+H�ԭ��lkq�����lTK��=�֬��q�A���أ*|�"g gb�}�E؇�F��vj�_�t��B�//��v�Az\�m)xˇ}��<>���Uj�c�_낮�ن�;�2KS����'KWVx{d�Mz�B�by�th���#ż�,�%�, %z�~f?�6���W��r�(����C�^��� -V�e��r�r/�U� 7�&#ox�����m�I�� ,���o�]�*��Eh�A��?���\+�yxx��Y�=�{�(so��|��J��-a��ux�����e�V�N;�-������ �T� ���<y[�jN8 (�I�)���\��Z����*D���)0?���x����a��f�� �m�����#1�U����j�$�*L�b��e�x���mwD�����|����5��i�{��6�Is����R�Z�D�>��{�F�o*o�>�u��&Q�f���!��,��}xt�a��Z:�"�(]._;Եl䟰��"�*��n��9.�$������؋�a�i i�P Y�^u��2\��sx?�}���(X�/������~|#|�N�������3��f�[1��Έ��;��,��LQ�;A�o���er�b�BM�O��n� s��B�N' �1��R$;9�×�zHr�>f m -�z���bXv�)+6A�.�E{�?�E:�#ب�m���}��/f?��X�x���; .@���+lҲ�.{c�~�X�)��I�����ڏ��<�}����oZ��ۦ���[;�����Zo����hØD<a�=���� @*�)@�B�2�* ������Z��$e�2�;Y-7t��t]d@b��Ë���M��L��(�=�����^>x+��+"���wp)_���J���0���X��D�V��*d2$'Dw��*�ơ,?��ϖ�G��v�_�v��jH5�� �^��#��#O��������g~��^��Ot=>�e�F����z�e�w�Q�U$�C��kf�f��w��Y���D<��C����v����9@6S���0cb� �̙���}�2Y�����BUI����NwoN�7K�3�3Vt�67��%k�Q�a�ζHƭ���v�o#$�%�J��RAs:U�NtUGYi4)S]��� ?�"��{�^���)��_�ݑf�o0�IG=c��\e���� -�>��n�� -�d>iH�x��af�f�u�bfp/��<<�#�=@ �t�������S���)��^�:���P?��鳿1������T�Cej��L]G���m�0�'�0��T��F��?��.����DP��m_v?W8#�o�?�u?��LA*;��2�1R�Y��o-��(A��Tf*��Z|����'��_�}�C !� ��D��Rl\�����o�1��7ɔ+�ʘe"��+���ô��)��V��h����,�ͻ>��a�������=��֯O��Z(��^|�0��b *K#��"tݯЋԴp�� �-��em�snuX˦����e�,��������C�㼟ӗd���"�w?���o�9E�v����<� >0�<X��@���o ��b��F����[�QVGO��'������k&����g\����kB���C��F��YQ[ް����[�,�A�[�*lT�|�WE�e�6���eN\>B�z���O)�A��#�]�u�-�q�� ��Zݭ8��o~�w��u�ǠG`�RYAp�dž�N���&�-�-����7ܧ��ݓ��M�5Ebp�[�J��W gU���އ axs�~�9�S���/�ZO��n�\��w������ g"3&эC�I��{�ť�?����6j[���"M�6�X{�읈��m*MEp���d�Te��#�@��K+����DWT1�,"�i>�g�w�w�i�[�h�7��������'|����A�@=e�b<)E���nQ&���>�Z~ޅ��O4��.�B� -۰m�S�+�5g=CC&����N�b���<�0L];����F@M��<6x��&o�a/�;f�G�<O#�-�sx5��d7�~=n�7�o�pNHE��Mh�v�:'[X��X#q�m���&��8W���!��vc�m�ث�*�F��8�X�p��H���㔃�_�|�e�V��@�b�\�M��W�lM<��e�G�C�G"z�U�"� 7-�/�eS�íj��;L�vcZ6s��O�1Ս�ퟣ'7K+`�W� \��Ʌ2�`3��3�(��X[XP��>��@���q==|��R�PKA$�!tu+������ݘ�%S�7��js���4�=�?��K�J%��+�c -��g��6����5c�^|��t�t��`����{�������b��'�UUa��Ts�sq/�L���%�J�v"�c��2a���vђ�d�9�k������E<~v��B>��?[j�MR�̺���O�t -��K�ð Dk�Y���n$���zj̗��b#�B�bQ�<Й�WzaX� Z�f�w٨��:({���ͭ�2��>"��˝ɯ! d% -����1���}�3h$����&�6k6啇2|f�S�4�ԋs��1���M�#�_ RDO(�D,O� yd����W�,\�P�R&֣�`-���.|Def�Q�'|*¨�}ܨ��+d��ЇQ� ��(eiQksDv�ql�� E�^��-�U<�9|�e]������_§�րs 8oI�&��%�pc��͵s1�-Gۉm���qW��d����(rPE-<9�BA��T�l���<����Y�7o���\��o_&�ި�1�y:6nAqQ'��8ş#L���\�:1�������;�8�3���44�^����/��D���Wo^�|��w���g�H����DM�ʗ7UVL÷}&fq�y����{�qC��uP/��uGz�<�0Ɣh�c�nC -�۬gs�\0qzFT*�"���9$C"���f��]c�vף�����÷�E��[O� `X�[��?���<x:��X�ܪ1�o����K���H���֖zY~�V��D)_r���C[�*�l���aoy�ժ ;mN�%��|��_��l|z�xԏ�z+�R����2����YI�x��Q/�w -\ot�p�`�S�ђ.�WX- ���6ز~��VMv�ߠ�MH�����T���^��C嬂7Yܕ5Fk�W��Pp���0�P�k[�� �*�zB�@� d~"��ty��FҦ��l���dt�_뒵��j�0�z���j��7�H����՚\���!��3O4���3TɡW�3o�l�GxFd�=cڴ��U3����{Ij�Y�ś�0O'�FE�����X���eEׇ)�"8m��f�z�,�i���`VL��}Q�oi��w;x��6�h��ӝ�iQ]�W�+�|q>||L�e'�?n�7��g��0[�����އ��E��XSo�pBa c7�g +�J���`C�X���*���{��6�����8`ƙ�GbY���^�fVxl�6�k�)�fl��Ϭ�ȌUqo[����M�~��O�ۙ��v�Ûs&�R���L*���G�ҰrѬ=�qZ�K�B}��������o����`���7s��A"�L����܊3�����dôC�m�����l�i�z�.|U�Ϝ��|y�?������G��T���W�9�^�U���S��Ǻ|�zO]��G/_��j���;�o�=l� uӘwvt���"YK@Y�+8�U9�dZ$�W$���Rg��ɋ�"ˊ?�$j�� oSo��l�-~�0�A��a�y��g>V�>7~�̜��~�A�>C��X������*�4Lc͚��K�jI���GDn�%��^E��.�c1S�h=zL$�y��jrW%�wV^��e=�n�d���ڹ��?8���ϐHW�c�()���xR��[��]���'����R��G���e���O ��p��PO��#ۆ�2No'����:^%��7�ts���*���+B7D��Ƹ�:��h�e")e� X�[�:I�<�'o�3v�8*�A�濅����yb~�%���$P�/;H^�G�5�W#���k��E����C�u��~K]�� 6��L�tRD��,�e�u���y��*a���~��B_¥����f�1:),�x'��Cy��M)u-�;�>��<FW�rt#�Dp��XI'�;�c���:0B��a����X�֒�G⋞�F�IV���~�Q�|W3k? _�ػ��`ט|M+��Q�'"7ЫR��'hC��k��&����+M ~����}�'���2}�� �@� +*�bhe%��#�3������|Y#��B5�W��s�'�Kt�L +�(=}����PU��X`q-`���TtI��E�NQ�BA���2B���Ñ���t%w�� +�zo�/b[�Ƨy.��UW0֏4R#��N]v�]O-K��·�ˀ������$ub-)�S,���K��EQk�'�b[��aN�j!�tB���O���zC�==�-LT�{M�8(�]ג"A�~�����=m�١^�s�ʱ��CD����e��tF3��b�{�iM܇�/���"B�6Չ�����Ɲ��BPi��mм+�I� ���� �ެ�LE�ei�#�`�P|aM1����e�wQ��Q�$7t�h��Y�;�b�(*���-�oȉ�*c���sS�hd!��6ls�����1j��g��~%�D���?�����Q���uc6��D�H��ONCzC�ޘu��: ��Q���8�R$wz�โ�\��,j�0�=��%ě�;��"�EL��6���dbS"����ˉ�x�;R�Mn�ĥ�i\�ݪ��b��iOX��lǸ� ���:������<�OUX�s+�`�7-0��m�(@iK��ؠ��A<÷~�!��y�#ɿ�Ђ�Mn����Jg�/�����s���g��F{�/�?����Sܬ�o��#�W�T[�ɇ�0G���8�N(�D"��G�b��%j�fu�娴9�j��4/�D�H�Yf��Q߁W�(�V'^L>d�ŏ��������H�%�srm����Lk{�����<#7��q��)���,n�t[K�8��@�q��-4�f�U��(g�"�^r"��CO,a�e��6�J��S����S��� �>n��e���MUhi{��^y�c�[��HW�5�������)���z�h���6nm��ԛ��z�J=Ig�/��[��zduA�Vp���C���i�*,��u|�j��5�AI���$��1��B�I��ޠ� +���Ƶ��c�@n-���ԭ¤�;jk$8g�c��&�aZ�3��;���*c�i��·}�u�8�:�B��G�d��2��r|'�v*��f O�MQ�:�� {�.~6���� B +����ࢭ�7jR"QTxL4^d�w����M�M�0���l�q}�P5�"��L+!/2}�Zj/6��� 4�cK���]1���9��jZD@���7�l-ŝ�ފx\5z�����!"h�bܭ�"�!�a +v窾L�vg�ۀ4j�p��խ�=ِڞ����M���-8���.m?M7��z7��Itv���Gdž;V��N�v�JDվ?1%���7~��<�ȿ���{�}�4�bt� +����٪��U�5�b��[E�� ϶�$y��1�H� �[��j�n�"��=�0zHj�����k�Z�lE��Y��% +i�C�zϦ�����|̳�A=�%S�l�BeEu^�ɏ��D�U�����9ƪO�����]q�Y����^���개�%]1Y錩}���^��s�ujc +���s� �!G'�u����}�sSbܬZ"��x[�ٞ���oM+ʔ��f2�~�;�RWbio;|�����G0,D��(�:�Fnre.qڛ5��l��(e��|��T��0�2L#������7�3t�sl��f�5_K���^Ϭ�4��Ț�DBOʲ@FL +и]ނ� �� r8�ҷr r�3!�Ы�0DG� �A��T9���y�8�ۂU���̦�\�7&!=�"E.G��i���)���54˥FDl�c?��y����ۚC{�t�����ʋ6�TGꪩ��D��_�F�d�j��cy*.R��G��l����H����{(�'v�Z�c� </�<��Q3�I���$-f��b�c���3ͷ�\�)�8m�8cs��6��V���x[7~e;��5�R�!� &�$N� +���r^��� B�XY�2F�=��kf��MR �8�K�4;�u=�w��Á�eo���!v�@�L���B +�\��r� +r��i}g�����سmǶ�a�l�ؠ^DX3��x�P���Ǫ{>�AM��ݻR�P�A�3�;[t(�ە5d'� �a�P���nL�2o1���IK������~c�[b�=0�ng�֯�_�o�aˀ�2�&��<1O���"#˗�ܘ1�.�窌P6.�<�i��%�@乺��9���c���;��b4'f�E�vY��x��u�����(<X7Q�]��X}�����O��d rGI�-��<�/~��a ��z>��3}��e�����U_A�NncB�9�2��'��۹ʁQ5|�=К.č?y�0R�2��7ي�y` X4ׇ�'�a�ع�����`2�Uۅd,� s15�nZ�YpT���>��A�uZg��q("���'�/R�@RZ��MI�Qg�3�8d�²:���J�U��m����xzy'�lsd,��4�FX[M����.DZ>����\邱�5�Ӫ��4k,O�Õ��� +���z�W�vAY�#ˠ��p�n)���u�m�y0.��^�|��jIwA��ך~:�7B:{T�o[���@̶O��P����N �kx�ζ�Sh����1H�˺ "o���5��§�Cw�J�v,��k]�=��{�Pfia�����d�� +o���I�0@�W#o�͵Vr����eⲄ׀%�D��������4�J�Q�e��o(55P��� +��,uQNUN �c��С��d� /R|�:b�M8�wa>��u� �W�ۣ�m>��������k寢�7�62��q/y�e��-8��rW�V�%l:��38y��ۊ��ig�eY�0�Uc䔪��?�'o^� �E8�2E[�O���S+���Z�HS�9e����o�; �"�,�0��-<7B?zS~$&� +7�vRM]��[��SLR6�,��1s��N�(��U|�OR���[>M�aOs�f:�`�tw��Q�V�z���Ǒ|�Ԉ��M��ߧ�N��$�Ԭ�>1D����õ�N7�8BKgTD���k�������]�Wލ�;����_v"�{14�>��"m� +$kݫn�Q��~o��G��0��E����ҏo�Չ|p���`ft>��Lx+��14p�]�ET�) +u'��ޘ�L�]LR�I� Vٍ�a��\h���0��]�d'�pa�R��AI��Ǭ�MAU��bZ�N6e�&���h�b�G�(�A�}�ͱ���q}���OQ��w�����x�MZV��eoL�o��7�5i6ٹ�]�q�@��֠�@4�ܓ�M��w�4�@�vk'���Q���#�m��'�w0[�4H�7��Y�W�[�!"�X���Y�P���ZFs'��n���H���axQÓX� ~��5��z�;��o��{ED�����.��x_����ҹ��@�b��!r�H�jUe�L��d!��5U��8��"��R�������+�.�@���F�d�K��{d?y�b���~�2��/��˗����������Brr^����n9����rȑw���l��NQ;�VQ���7H s�؎w�~�8�f�QfL�2�9�WQ�^&������[�� ���^�����I��]pt��bz���.��ղ��b�8j���#��ɸ�=ގ�m�D��\��[�#hN��ߩ���(+�&e�+V�sZ��GU����+6 a8E��K@C�;Ҍ�� �7�gL�����@2�<B���ǃ>�MwTa��' I�7�Ԭ�N]����=`D���߶t�>"={ +T�>E��+]'_j�G��7}�7FwQ��*�w�L��a���sv�������v��J��(W ���ۅ1X3�j��m����g� +�b��"�1����)He��Q>FJ0���%���%��C��L%7V���|�DT����w$���P��W*����p|�y����-�!&V^�&�r�T�B��Z_u���<%�ފm��>��y�'@�;��^=��w������i�]%�&�xC�Aei��X���z�����Ez���{έk���ֲ,��9ⰰ���sH�`��s�����C���� �� =�����9��;�f���h�Ó� �4\�ՈS��Bs�7��H���A�O�r�cͤ���L��Z[�pMHyh��H�3+j�62w3z@b��=(\wU�́ +�O��(���fV��̉�G��Q�)�@4H�vd���.��6�Z13�PP��g>�ͯ�.��W�.��]*+N���)��A�İe�Ź�VR����#�{�U�����HN{+_I�ጡ�Օ��$o�ٯ5s�B�"���e�CQ� ��-�+U���w����Ld�$�qH�C#�{���t��_�Fm�1��A��`�&k������M���v]ј���,3w�h�!xi���ޝ� +#F�ED>���L��ax�6 uk��&#�8�ױ��o�?��<����U�'���-���7~�GT�ϻPZ��F�ץP�4@a��| +�{���gh(��z��)Rx������kg���!�I�����d��8��|�l�h��i��E|�՞��د�M�����n� �h#p� ���nQ��dK sk$N��M����t� +�0d^㒃�n,r� {�^��(�`B��?����b�rp���/÷,�J�([,��+ � bT�J���'��l�(|��HD�*Q���eւ�%�l�}�U-7�)��nL�f��I:�����s��fiL��<��|?�P�]l���t�kJv^��w(r"�1���o5_ +j)��@9���neR������d +��Cm._^Pp������g�=u Q�D�|�s�B���_�Ɩ���flԋ�_�n��t�0v~o��{��_5Z���ĸ�*��jnu. �E�I��D�P��N�},[&̾X�.Zr�l�!}Ͳ���������n�T��T�gK�=�Ij�Yw!��i�N��ut��yv��hM3+#�z���m�d��[O���VSlDBXhP,ʓ:S�JO"�D��,�.5X�o��ٜ��uQ��GD�|�3�5Ġ��D��B�"�8F������R2��$�fͦ��P��L|ʔ�f�z1�b��7�o���)r��D��� ���I$��ރ����X����V���z����9�ޅ���l9��OE�����u����p#�����,-jm���8��ؽ������嶊�C3��㹬ԝs^��!�K�t#��b�-�҄S�$n����v�"���h;� 5Y|0��8,R:@QE��e�G"�S`@(�P�*���������<K��9Z��q�����u�1F=O��-(.����s�i_�kZ'F#~���u���r��r�SX^ԑ�fًV���Ÿ���Ͼ����O������ ���� X��ʊi����,�99b5Y�9n�}���ѿ�H�!܃�ƘMv��mH�{��ln�&NψJ�b �UdA�~�4�dH��9�,�k��z4}�bU��v�V�hrp�I��k�wk���<r�`���O��}+�[u ���T�Y}��sw���R/�/Պ#���(�Kn�xhK\B�#� �4>�M"�Z�a��i������6�k��O�:���Qo%�]J�r^�:�7+)��?�E�� C��N,~�0Z��� +��!���9�[��٪�.����� i�U�~��}���9z��U�&K����h�A�` +��1jq��c�Z"p��CZ�ZO�(��O���.O�<�H���m��.�k]�6_-�Xb�]]mp�=I��Z�112�q�Fq=b�*9� +p�͚M��ȁL�gL���jF^��`/I�>+��x���dը�2�CZX�x|����0�Q�m0�lUϘE5M��̊Ic<��/�9�-��W�nO�����|�s?�!�k� +|EӁ/���ɰ���ǭ����fKص3y\6���ٸ(�k� .@(d�f�LA�^�1? f���bq�7t�����>�1bЍ����KQ���O_D\���^隰��W�;"$SM,��3���6ؽ�F��+ejv��� +d��`��O|�ƃJ3x��cfaPY{��b�,M�q����������Ƒ���X�����:_�/��&ٱE/:�j��p��G����<�!B2����$U���F�Ўŵ/>l=�_�6�8Q1�c�'�J��-�;�o%^|��G�v�4I�F�ฟ]��i�8ݹo���U��A,�vu����|�3 $��������H��hzg!,��q78>��#p"F3�Q�t�<@;̞X��k8!l�$� kxs���Q�5(+٘s�� ]�E�%�/wU�c���=Sc��$��^��H�u��׃�4�HT�mܸ(�>�������nC=�*���q��Y�]гX�ZS��|�V����rt�`�6T�/RB��%�S1��� +-D� 9�q��JϏa�mJj�Xf3V9q���gFs?i"���*��F�:Y ^bl���pe�+lc�!�Fn[��w0�lr��:�*۬����D�Q�Bq�T�����cTo���K1�%���6�"�o�lC��q/c[q�CDm�d8�v'*<�ȑȫ�:GAU�Z�N���X�S`������K;�j�@z����9̏���X�^n *ᮆo���������e�n?���������� ����T��b4L�D���"����^�=<wGfb[�N��H#b���P������Tg����|P�?5�ɞp=��O�*����5�e��O�w���ّז�B�ʩ���H2͊���w����w ,��p�{z�+���A�$w�Ȕ��!{c -�?���@�����G^*���q�Ř�M�>N��Z�*��3�u�>77�iv��[�]�D +; +3=I#���G�q�6��9��F���F���7 +"K�+<6)P|D4�K�e��g���y�m8�˭L��:�Ae����� ���d�"|��-Z���M�P_�;m���h�cu��5ޢ�m�3�M�6ڝk+e���V��q��68o~,o]��c�R|�g�y��f��f-�U�*�SGB�Ou;�c�����Ue<�J�>|��Mmc:G�ye���H+��+b��ѡtXkj�@���`��&���V��O����V����kF���D�����1�������r�D��˗_�oL�H�Px�U\S3��.�i�����1*�1"3���D����Q�w{�'��|�#�v��]�]��� `DQ�r���O ��Ab �Ј Y +dL���� ��f��҅��B���}%yRh'�f^k7��ˢ�w���,��TDN�o���e�շ�n��-?����4*��5�Q��"���U���K�@.-ЕF��3���'�_ +�9���"��x���4FMs�P�cUr`�<�`��;���z`^�gG�ӬIZu�<Y��:�[��DS)b���@��-4�JW\@w�����d�R��"6�W�W�/���W�~��+l�{�o��fr��|>{oTLn���K'[ ҁ������-J�+��-T�~Dz�떏��}ZN�β�N�)R;c������q�:#��ܾ0t���5%X�дa']|%Gr��-B:H�)<���4>��L��}N�!9!_ґxx�3z^��,���f�>y�p��J�wp�X��Rԣ�{$>�����)�v��÷~����V^܂���jHn�ԘX.E�+eJ�%^ˠ��o��C ��>�?�/�@.c3Z$i��"L��e|�\V��,�,�C���"���Y�G�~̂�X]�̌�, �P�?�0R'"�C�o��)��t ���NJ�G�ߘH�5p&=ne��'m�Z~Q�UG�ϲ�Ũ�����3|�.��=`��{h�h���d�4�M:.��;�0wg=s���t'i1S�>�t�Y�-�I�Ќ�H� D���RZzܘ^|���t�����������J�ͧT =["Xv�O�\����������A��o��nl?�Z��T~k����o#L����`(�����S"D4"ؾs݃�2 +�%8��/�`�t�|�5W�vR���*��n��+Yr��A��V��O�E7a�� �VU���K_//�H�@ĺ���@NH,���o���D�:�"����M��������ػ��-���ꝍ뵢�ɋ��xY����.��>o� ��#\27_2U�f +�Z���Vm���m�� *F��2������Ww�T�T5�������q�j���N� d��~�&�Z��C�F���Z݀����c;���Dy�����9���^��o�*Fo�x^�HˬCd�E]�!Z@r|�Ƌ���8,��k` O��s�7+̬���0��� d�bNsO�W�]-�� �$��Y�X�$!���%m����F�ŏ���y �m���o^�z���A���:X�K�OFE���d#��cY�����}5BE@����ny0���⽿�d�I����=����k?��ӏ���:`�����:��Q r*l(��.��6��,��vҔcU�9�- �$� �F�p�������Ԓ����o�����^w�� :G��c|ag ��|�&ٙg�PyR��H�@��R�T�8"Yg@bm��� ��c� 18D����檊�R�"3���i�J��Ёn�l�c��*K�-~4_La�� �Nt����>at$G�C��VC�߅�ω�M�K4�{�m~��:�h�*OkG���s�~��t�'�����nύ��]!�٧�"ɚQ��R��c`�љX3NDA#��4o"���aqB,�Zl�L��ލޚaا{8�n��Q`��Ub�r�_ivy�>� +k�:ȁH?��C��z1�pXL��L$E E����C�;���6�a�����C/�VY�I���GSƫ�e��9?�����%J��`T +n��I�z��+ �7(�с�,���A��Xզ~,�?�*�"^a�� +��D������}hp�b����0X8�|3��3�[t�yT �we���?�8�"pH����Q]!���z�#�g��eqS��d��m!�~���[Z���� ��l=�� �A^ղ�K���G����N��ۉ�VI'�/?����>�V�$y��4��A��d�"0SD��X=h-!��r ,���^衒�����y��p��~/����^8�B�v<�m�)Y�d]�&"w�@�����F����.R0�l�=I0�b��b8lc��&1j�Dj�}���<�b����(�g��N���A62)5�I�jH�~�ʌ)�=�(9>٘Sd=[�͌�0�{��"{ǣv�?n�)�|������oy0.��v����.�c)��0a����t�~�N���l?VkX��9H�otv��V��c�scOJ7�����S�O���vlP3��r�e�w����>��q����`r�-R�<f�ݒ��c�E����^�Z6��ebX#� W������q���j�9�9�.�B�D^4�H����56@��=�Y����"�w�a�}���ȭҍ:[ +j"T[��v4'0�"˗��Z� �]9�Y�� +��jt���_@)4ހN<�����1�*�Y�VS��s�����j$7KT +�C��\�W�W�����fN5y�Ρ���,R�����f��u��!�xr�� +*T�&�^\�״nnE�ư?�S2u?L��o_�f^��]�fV�7}">��on+� +�D�VӧR o��V�e���)��e�@������6�'�p�k%aU6$���a�`~�9���#��p,;n@��@��Y�����3���'�@�B����U,;�w@���1����8�<y����.i; ����%G�b1�l���ʒ�7��ܝv)�7G�g͍��œ� +� ��XO8 �<��x�m�V�qM·/*���ĺ�{�����Vx��$'�� +Nx3 +�@��O�Ȉ�Ƭ�5��� ��H��٥���g�A�Ă�Z��l�7�1�#s���_��o(�ݘ��7�:�Q\�H�a)gؓ�8�6Z�!#��hGK��%S��(��-�o(�g,�X����X;�B��� !A�a$�,'�%"��uz` w��פ����ʢ������O>����$Kc�kƇ���Q�Ļ�:�0��#��O �*�h�C+�e�+El�ml��lv�X����j���n�?y�i�;�n��!/͏������[?1)QV�~4�K�u9��@�}���Lع߳�ZU�H��C�pe�g�u1�O���ۻX����2jm�����U����zWmٯ<g��>�NH�(���`�V2�V�����X��.��&�e�=R�-ap��E�lo��t0_�' +"�醙�V��"������c=���`C����@��Bs�$���6�Z��t�x= v�'�\L�}]�B<�&f�6����m"mJY��y�u֞�D�a�� ��^/�l"8���}x3Nz5&�S�g{�qH���@�}�Ȑ�TK�ާ0V�}���aB�e���� a����kz��݀f������������ԟ�3]_������m �t�m��Y��Z9��Y�y�nQ��!49�Pf'(�a�[�F��o]�k�`|�k�G�d�x�'s�@H��@�#B"����H�0�?'2�G0g��p���;6�פc1iH��j�Ե�~�t�b��i��[S�7H|�� �fL"�|.g~�K4ש9�(�Qٱ0�"# �Ȇ6Y��!s�FKy���\���`������[��q��*�+ɿ`,8��؉���/�W9~����=�}<�.�uQF�t�1��N6%�� �Nr�1ܰ��tҌ�_h�~;OK��7��=�����i⅙_M��dylu��eZ��#)�_~|�b���P�ue}� ��r��p\j���v��2���f�.�1�*�6l��:DX*�-�H'�����;)|���P�%�'a�{¿�D��Jva�F0�t���f�9V�QgW�x�F���.b�WHK{u^LJ,�P ����\B�%ŸɀĎ����v��5��պ`�>�o��~���b�Z�i7o0 ��2�Q��D��'O|��y�\p.�����k��_*sbaه'��"��MuVf�1�+�y����`��7�3�e�Of�Ժj�5^� ����B݁�pH��}���Z7���m���ZxF��+�r'8cs ��x��qTf*��9|<�а��:�4����x(v�����}ɖ��DEa�`^�J�F�\���:{���U��\wܷI�*{�J����&��Od,�B D��T�i�"�⮑m�Tmt.|��Ö�y1!�[�Pg!�)R�<���,�~x��#c�k����g>������(��72��,v�����@�y�ז,��(��ÿ�ke�A�kCu�4�,\�ΐ�oO�?��EQ݂�a�cue�0|�Em�9g@:��BzA���q��Te�c�o{��Y���� Y��7�����Z�t4;�v2�S��Qw�v57iM H���(��_�D$���i�77�}����B�J��G�aN6t�ͬ���QTC����1V:Td��}�wl��+�S�d�+*�ȈX�F$�tr�!9e12M��e�"��cs�y�h�N��*�V�1Ұ"Q���_���b� �)�\�������6��x67�0N/��ohw��ތ�8tɅ)p�����]�k��%��/ޏ��� +�q�; �*��M��̻teY�0Q�"e�������!W�R*�41�Y��_��%�.�������>���{�o$1A1����lz������p/w���ܧ�K�pC��TYc�����Cn�0|��P �4Ff���'|����������ƫ�<2,��bt��Qr,�V|�BLND�� �%��9��P�,|�ҵ��1�ْ�m�f���^J�I:3M��Dj�eQ��U��pTo^d�x�v���gX�x���x�۠g�L$u�ʗ�' ��X}@�#�4�p�6��M��LH����jk?��ķ�'�eE�7�d��iY4���K�W�j��3|�'���골E�f(�`:� +2Q��"uB{5�5��XG�Xu�� s�%�v規E�����]��]�1`m^�fL��u +���wR��AS_����E~�眉jO>'�ވ� F�gP��eG뢣nި��F�YW�F����Z0�4�XI��p��(#̦�bUd��j�����Ҳa�9��M>���3�d[� ��QxCdBN��`5���*|y��ݳͪ?�J��ۚY��qxΒŏ�VV�y��@d�$��7-08tX���D�qUÏ���`�+�-x|ܕ�)��:��d�e�P�@��/%K�1=*��)[�7^������E�k(~�`�`�;/[w���c�]:����[a�&��(���"��[y�M�Z�]~ڽ��|.BNd\od��VgG�7N��M!Ë��~��i��u@�c�*SH[�B`�MZ�Y�8�r?-k��;�K�A����@0�Sl�z]@Ѫ�֔��mSO�(����I�m;S� @ņL���R���c����^|���_t4�A�t�_mՑ�����X�k���9��8d�x#�;Y�7��OsƉ�}���e�q�����]�x%i��,�~i�8��,ʰ�v%HIx�;�A�hR>�!�%� +=O��! �Zd�[��j2~��D��{c���,�:ڶ:ٌ�h ��q�I.��vl�<͇x�q��ZS��� M��Ix�O{g����DF<��O�k�.jb���Zs�>^���4�/>X��6$�*��χ7{�)��+|�ı[��z��ɣ�o��WHk��s��:�S&x�9�g��������n�P���C'�6�o�h?��g?�~H�������8�u��hwxKO6�Mx�V�k;Ҡ�noJ�ƥ��}�uu����������ގ +u,� ����G���u�E'�1�Pݼ�z�U�<\&�tLt�ރ����57Φ������4&�2�!�o� �mL3T �;Wf��P�1;�)�E�+��#<~EX���z?�9 �o�÷/rP�xʑ[��07[ڣ�Z/C�ܬ��M<��c*���N!�D�/�֩�Pm��(E�u��f�,Yu5���HA�H�SX%_�z�l��t +/Bҵf��-��XG�A��@�O9���$_@�0���z(�bê�V=8N�|�D1�H��jZt�o����y�<_e�DRѶ�����|羇�T7̈́�V��K�`���c�����w����s��.�TVX��$�A,�����>� +Hr����m9.5!�g$��_��,��=��Üu&dN�����B���RW�tDY!&��@p��#g||rc3c6�0[1TO�����ŜJ���XD_[�ԏʔ�+ޘ{�2��}��"r·z�C"і�s�p���AYI��R������>Ed�ȍ��ڍq||�Wp�0�xZ;�� �Y1]|����!͆7R��#˒���P�� +�G���U[`Ր5�h>�8R:R�.�^�s%�o{�iqڛ��Dd���,������>���u�2�Kϫ�H�j�֦������"��9;j�3�`f:�.ӱ����-.V\�ΪD錄2�s�hNRU�̃�E<�k.:��5�Q���u��:�����\�W U4#5�u�S�)�9�W�wK���PED��A�~t�T�����RA3���1w|Xd�L�k���|��1���18��[?�'U"̴��Dv��Ɛ����A�T�D��#''��<O��S��uLE�؞*�K�C�S@�.[3�>��9F��+\���1��R�m�7^Щ�dL�0.�qȝ�qV˲��ω�����h\5�B)��V����yв�_�|�������?�x#�"�o���d �t +o�v5U�2o�ᶌ�L�e�g��oɌ>�l�-!�IG�mC�7���A��z�0��n�Y�J��N���U~Q�B8���Si��QUb'BU]e=n���B(��{��B���bNo8�9İ�����o(:�u>��3Qjt�����A�[�����Ǟ9x��&�~���1^��[���F��tZ������t�e��]tɃ��_a֏���3)�E'[X� ��;f��E�*�ť�_�o�V��Y{v�ʲ��"�Ʃ�<��y�-&1�Eg,�+��dja1֘�&���2��p~��D��e��J��zV�)OD���vґ���:�!b��Q�5�^QJ���/8�12ղ��]k�ty��^� &�J|�V�,�´ͯU�W�(�ݺ~x�+�KN�dV+�qOT��%#�BWZ[~4'(�g=B� R��1$WV1џ�ӓ����/����,����X^V\�t4T��P��};��|�=�����g��QZP��o��dt�]+\��ͯ~n�>���i��H����c5�\���|JP��+�����U���g��W������Ѡ��<S7��4{~dn��W&�ή#�/ `z��J��@v �#�;ѝ�ǂV�y?'ùE��4b���,6�;�5��)��!/x,r�aM"HW#�hj�y��S�K�_�rY��{w���&�|�\F������&4,�adO�"Of��|ət���e��%{"2<���!?�Kr�A�m����U��g���ݺV����R��5(��"�Of��:o���¤�m��� �/|�� �B��y�GhY�>�����kS9X^�ڀ�`�ɶ��H�ى�S�Qua�I��?��Y|�0��[��/�����Q:�R�ՏU�����4����K��ݪ��e�� [.�z�T����U'�=��ܨ19�Z�j�S9�#�qԧǀg!{]e6��ӛwھUc��\UL�uN�D�\:Q���>�k�nR��LEWi*�ɯ�V8=qs��e:n�Q�xq�n��Q�MQ��2�.�]ȸ���_`=����K\��)˶����}���qE�-�|�b�}��{�������c�U���@o�Ҽ{��/���&����{��(n�X}`~7����n�f��} QWG����ӷ+�r]Y�ڛ�^��g�����@D�"�{�aXXvc��ŕ�LWL|�+�xn�'jA�"}%RzU��t����.�4a6WH����.��wi�R�Fs������}R����ׯ^�X��&�,!ʙXx� ǰ2�]�@UH����@�5P���f�/ ����:�4�w̒��Nz2Wf�*(~Q�m2 -�"���H0�O��������,�����n�L\^���~�"�<��Jׄ�t�R�� �jb����P4V���7�n_)S����V� kSd�x�{5T���|3��ګ��`fiR���$��4�5�L��j�Ƕ7���}I,5Ɏ-z�9V��D��_= -�]�E����'� ��,�5:�v,��x�a끰����ʼn�1�>)W*�o���}+���{�<��s�I�4������N����}+݄� -�(�b)�������\狟!IW6'�0��`�F�6G�;�`������1�a�b�����a�D������]� a�$�nXÛs�g��AY��Ɯ��N�j-�,1~���������%�w�R�D���h�<��G��m��EI�lV�t�v� T9 �4�{/�b�������՚�/�+���f����������}�J.a���GpoexVh!"L�Q���Wrx~hSR��2��ʉ�//@=3����H�?͐U D7�י��c���τ+�\a3�6r�r���if�#�q�P�fm���%������������fg���z�����\�q/�����1|�g�nj{ۊ�"j�%��;Q�D�D^��9 -*��� -v:0V�ʞ#xuݶX�a�PCҋ�_����e~|������pQ w5|�G}�v�}-sw�9d�p��� _.��n�.&��H�Z�d�a"X$*��W��͟�B�ṫ82�ztҏDC4���7}և-�:;<�,��R��1N��� l}GUHn�����/���s�ώ����B�UN�]F�iV�T��w?���a9($�#����_1��� R$1�3�D� �iY�h�iOf�(����>�RQ�x]��,Ɯm:�ap���W����ѭK�����M�{�� -��r$R�Q��IaN?jȈ��p�a̡<�0 -�5 -dD�QY^�I���� ��_�,+\<O��o�QO\ne"0ױ *c���7n��T%��[n�:VG�o�����h۽�F�+��n����l��m*���\[)e,�"/��0η�y�c)x�"�k���<̻�4�u5k�:�PyH�:����y�0=ṱ*��Wb���nj�9��0(��>�@Z�_�ߎ��ZS;RMM�N6����7~����F�/<�p�_3�D&b�Dd����E��D���x� ��_��:|c�GJ���s���⚚)�vYO0|�T$�Qٌf���&� �f�O���.0��#=�%�9�C���DMO�#�J��ŏj�K��F�R c�|t%Op`���0S7�.�U*dЅ�+ɓB;i5�Z�Ivp�]U�C�}e��z r8��w/�`�� u���m���\�Q����y�B�61�/���^:ri��4⇟�7<y`�R��Qu�K-x �1j�sЇb�r������0ߑ���ȸ�#����0<��8*H�fMҪ����}����R�'�Jc$E2�=o�qW�����M�%��2������=�����_a��~�7�����{�br��tP^:�Jh�T�OhQr_��Un����#�X�|$,��r�xu�-�p�L��ˌv��.h���}����+��)y��2��� ;��+�8���8�m�A�M�d�����e��m�p�G�� ������۞����f�LF7;��k��7�U"ȾÀ��������#��D��H��Sm���m.ֶ�����DdXpT[@r{����r)8^)S��/�Z}E�|�jp�����|�r��"�H��a*$/��%�2�z�e�e1��}� 80!���0>ʸ�c����df�dQ���Q��:I<~CtL����E(wR�>���\@���3�q+{g?i���b�:r���/FD�g��Xp���C�D+l�w�#3_�9o�qAg�A��;�;��H̥;I�� -����#o�l�M�fGjn �헖��������C�T�[E�P�7_^&��S:Wl>�j�����~Z��:��HW��� �<�~��pc�)��r��[��u/�|ab���l�CY��=ަ��!�9�����s��P-�Q�P�xAˤ��ˬ�"��R��U�Uw�_fXɒ��?����G�Z�~-��sw��ʨ�Ǖ_�zyE�"�}w^�rBb�d��x{7pw �����o�耬8p$�/�`��-/m�����T�l\�-M^����B\�wv���)x�Lhd���������4SX�j\��js��mC�lP1"���݇� ?��+�B��i�L����c`Usݠ�v2N S�c?5Ԛ���6���8����۹��'��_����,�� -�}sP�0z+��@Zf";,���"���;4^��Tř`�?^Kx�.�ӾYaf��6�y��o 3� ps�{�����j16�NP%9�������$ I|d�/i{��7�,~~��Kxl���~����g�균���\�|2*�����G%i�˚��7�6�*���xv�ȃ�t���E$�O�M������^��Hƞ~|u��㖨�En�ه��SaC�owQD���g�m����ZOͱ�nI@� yIx7����m�d�~���\_w~뤄v.���� L�9j��;3���C7��<3���#� -D��Η�(�*��:c�kc57o��+N��!�T/V7WU,�Z��� |O�Wz߆tӮ`3��TY�n��b -���nH�t�KNe���#9r��ݷ��.�~Nl�`h�_�Ɏ�[h��_5�FCTyZ;�%�s��sV�s<Y���w{n��� -��>%I���j�f���s��Ěq" -:Q̥y+�����b���`�dJ���n�����>݃��uސ�+ݭӔ��H��K��W�X#�AD���*o�[����bB�e� ))�u�7�߉�U���;�L���zy���M��7>�2^��`(㍧����a�u�-/PR->��Rp�dN�Գ�\�H���C��td�]�R�ƪ6�c��W�H� -ST@/�&�?<��f�C��{D.����� 囱D�ޢ�ͣ��+�������C��7ഏ� -�-��[�8�(�X�� -�&��o�9��G���D��oX�d�)��������%\B �?rD����p -5�N��J:��qծ6��Y���%��Ǡ�M�]$���b D��A��h �&���h`���B�l���~�#����{���������㱞h��H�z� �5�s"����0*�M=t��Ag��a�H���M�a�m�4�Q�%Rc8����`����wE�>�� Ou� v���H��N�TC���WfL��D����Ɯ� ��Jnf��%������;���qcL��X��W˃q����=?�v��K)��a�`L���fTt��\(`��Z����A�}��k�(������{R�y�@�'|���}��p5�cˀ"�!ݖ{/Ӽ�(Fh\�9L�[����#�h���1��̼;(��| 4��B�ղ\.��2>�?�3�� V�0�Y��vQ�%���D -���L�0U�w����a̲�.���� K�SD�En�n��RP���Է�9���YX�4�^�B�h`p�ʁ���peW�eT�5xx��J��t⁌�w0��V����*&&�3x��v~V#�Y�:PB�悼 -�Zl��?4s��{8/u���f� -�D��4�T��-�Ǔ��UP�b^0)��:��us+B7�������a�^�,|��5��/��5����I�xs#XT� &b��>�jx�N�(�njM�-��-DX-���i>A�[^+ ���#�<����L>����c�qZG -]� -n�P����w= Rr_NF��`�a�r�H�f���`�����o�ouI��t�/9R�a�`/.V�|xw�yh���̰K9�9r��8kn���-��V�L���z�Ix�yx�ǃWm����k�}Q�\&օ����Hg�p�'9��UpQ0��~DF�?4f�yE�L�E�.�ǿ<��'|���e��!��������R�xC���|�ſ��Ё�� -E� K9Þ��!��:�x4E;Zڧ,��F�4lQxC�=c9Ŋ�X�&��Y���� �#Ae9q.I&��K�3F�&u�X'��V��v(���~�YF$�X�_3>DlR'���Y�y-��eITy�E�Z1�-k])bsmcS�e�s�̇�U#�vs��K�H�ޑ^p�4yi~�p�p���X����H���g�^үˡ7��ۥ`�����֪�D���++=Ӭ�A}r����5��,���Qk���'u���7Իj�~��9��YwB2EYe���i�dH��t��7�/s��Zmy�� ���,�e{����\8Q@q�x_%�r<1H��GG�>�9����-(�b�|���$�� �=���Y�������<�`�H��Z��51v��N,�nic@P�h̓`���$%����O��z�g��l��Ûqҫ1���>�C�#@����3�@��pĨ�Z��>��"�Kf�*/�7� ��5-^ӣ���4+�m̄����$0_Wߦ�ܞ����`��.o���n3���2H������"��K/u��hl��y�2;A;�4j�'|��]���\>J%{���78a�cB�� -�T�}E����9����<�9�-��ܱ�Ǹ&�IC�@�WS��u���c�Kc��O�8������:�A��Nx6c��s9�C_��N�iG��ʎ���Ap��@6��*N��4Z�C����҆h��%������s5�UA]9H�c����ND�m~i���[��f���a���1w���2Bϥ����}t�)�$Nw����%�8��f��2@���yZ�����w��M/��j��GE� �c�s_/�ҸWI ����#{���F�r�+�o�`Xp�[=��R�Ew���so���4�w��!W�!`3�x��!�Rl�F:�����h��Hᛗ�>��/i>1����$�HlgP��4�Y��U46��̱��"8�"��K'5�|�pt�BrXګ�bRbq@�:H��מH��/)�M$v��c=�)��ֽ�#��|S��U->k�rM�y�iH@�pF������&�>y��,���s�Ge�X���R��><��]��ͬh�۰2Ï��\��;�E�c����Q.~2���U�ۮ��N����\�CZ��軯D�Ժat�o{���2�3BE^i�;��k�6���>��2Si�������8���g��a-�h��C����H��`?o�K�D0��'* -����Vb5Z�B��@�������M"�TٛT�57X�5af�|� cij j祚L3iw�l#�j�s�[��&ȋ��ܪ�:��L�2�uf�d�����'K\s�eָX>�,OmwF��DA��i|\`�c�}���̛��d�FQ��\+��\�k�d�t�L{j�� H.��� +�+��.hC���8�����̌S��*�c�c��WDwD���ɪο�����ڦ��������:,������IkJ@µ�(D��J$"�-�@�H+w����S$LD�rW*t�<���p�頃mf}�������~8����ҡ"�F��c�7^��'[^Q�GF����5"I�����)��iJ�/{Y4���+G�t -NVi������2.��&�%��L�N��jl<�6��A�ija���qzQ�h�xC�k�f����K.L��EǬ�_�.���~��GV��߁hTɅo�\dޥ+˺F�q�)<�p�vv�*�R1���ZL���.�w9x�\/�~�F_�i^/ޛ#� ��|�/�fc�#�͆�0��sx�K��>�_ -�������r3���j8�12se�>�ވ&���X|����6^E��`�-�[@��c���Kbr�� z���, ��1�Jf�[�����Q͖�m�7{&G�R:Nҙi*� RC�(�������2x�"ē�s�v?�2ǃ���s�=�xe"�÷P��`ݘ8q���1�a W��{��_���n�/dBr�����0W[��o�'�m?G,{(�.��$Lˢ��o^:(��V���[?�m=V�E-�4C)�YT���ګ��q���:BĪ3p�&��3.!��C7},R�����:�k�4c�7�S8�@|��Bu���5x,�#<�LT{�9y��Fm0�<�rP�/;Zu��F �7 -κ�4B<���9���J����7Fa6E�� {?WS,�ط�U�� �o���h$�A'���v��"rb���/�4W��ۏ�mV��Tb�����T�[�s�,~,���z���"c$A�i�����2/$g��'z��~\D>k\1o��㮌7MT'��'�-��� -�~)Yڎ��P�OO�ҽ���l�d�-�]C�C��yٺk<�����v��4�� -�41�F�u<!����l��z?������s�p"�x##�6��^=;:�qb�l -^<n��M���bU�B -� -�l�����9���iY+-�مX�h���D���b���Ve���4h�z��PG�L/T�O�nۙbO�*6dZ�}��Z�������C v7�����0���j���v�H��_�%�̩h5�!��)��r�y�~�3N����H</�H�3%L��r��+I۷d���KC��?e�P�Š�+AJ�� ށ5��D��)�.�W�y*WIx��"�ޚ�V���'"���('@d���Ѷ��f�EKĎ�Mr l�cs��h>�Ï��ך -N�nh2�O��|�;�p���$�0���^uQ;&�֚��������x��R�!Ua��}>��Oq^_�'�Eغ���0N DxS��BZS잋lԑ�2)��0��<S��$���wt��,�:ٷ9;G�I�P>�A�C:�͆OWݏ������F��[z�Qo���^ۑ�t{S�7.����S�����ްl�行w�-��vT�c��H%�G=joe���-�8��Ʌ������J���2�c�K���̼�ި�q6��dE~�90��i�~� ��ao�c��j�ݹ2�]���I�LA,�^9M��+²�.�����a�|��}����S����_���� �z��f�}n� ��P�>�w -�$z$xA�Ne�j+�F)��X�4Cdɪ�ټ�E -�E���*����g��8��SxB�� 0�po����B8�:$b�0xʩll� � ���k�CYV����q���&�G�TWӢC�����*#&�����������;�=���i&ϰ�_���v�h�] ��e44pטs�w���ª� ! b��T>���cV`@���o�q� �>#ו���tdi������3!�p�_��4b�^畺�#� -19d��9����q�ي��x�O��.�T�L��"��J4`�~T�,^��ܫ���S��������T���� ��J�d��Ƹ4?d�p���)"Gndv�n��㳾�s�����"�q.���@�Ȋ��C�h��~i6��RMY�,~����z�Ux?ZH�����AF[�)Ƒґ"v���Zg�+9|ۃM����0%b K�Mg1(��E���)瞯S�\z^�7E:T[�6����.���Q3�u��ED�Onq��Z�pV% Hg$�1���Ds����f8w,�y_s� \W������L�iO6��^�:�j����Q�c�2M����}�["�O�(""��(X����杧���`�W� -�I�_����"��`]s������1�l��!���<��8a��}$ʰ��4��$%V"��Z$z<E99��yr՝�G�c*���TI]B����buٚ����1Ew\� -�l�iߖj�hc��N5$c��qY�C�L��Z� ��xNd4W�`G��J!7�"��W�̓�u�R��_U}�w������)q~��~&kX�Sx����j�Yx3�e�g�-�>k�}Kf�e[m !N:��l���5�"d�3�<u���U�w��E��c�r��Y�_םJ#���;��(�qS߆PB�����Ts�x#��!��N�7f(��xC�р���,���S���_�L} �p�����#�?����5A�+����Z��j7?��5�m�����$��%��-��� K�^���~�Ex�I�-:��"O�m�1�7/T�,.���~��*���ڳU���a6N��9��ͻh1��}��,:�`ѧX��'S���7���&��'����(�%��,3 �P���Գ�Hy� JD\İ3���@�շ���Y3�������R�/�~�A�����e~�Z�����o0�T�dy��m~�2��G��ֽ��#]�_r�$�Z) /��x�b�,��ʸ���9A�?� -�M�B6O�!����������x��'| ��/eq������ʦ���*�r��d��ѕ�S�1}��/�?�|�҂�43ߨ%+�C�Z��j�m~��s;��g�L�d�Db�W������}�vO�S�b%\Q��ͷ��o^?{��D$x�P䶎��発�W���#s�(�2�wv9|����t�P�(��A܉��<�B���9!�5(�U�kWof����1��}�H�uy�c��� kA���@S���l��wXҐ��˺�s���0i���2j-�-'w7�a�#{*y2����KΤ#���]�(�(���� 0� ��y]��,�h��,��b��<K\̨�ֵ���P���A�D�2�=�y��&�o[O8�x�nh����?B������\�����TN�M�F��ND��G����L:��1-���C�1>��G|��W|]��Q��~���7G�!���_Z-�V�/��Ox��rл�b-����:9�D�F����ԚUc��q���>=<���(�a�`�������bB�s:&��҉��.��]�u� f*�J3P�L~���!艛��.�q��ŋ#tc�_��n�*Ǘ�uA�Bƕ�t_D�� ���\��LY��m�{�>�+rmQ�[�d�K��d���������g�zӔ�݃?q~5����3|GqK�����fw�'5�/��K��:Z��u��]���������7>���"���+�²���(�|e�b��X��s����<Q��+�ҫ��Х����t��� ��B:u��/t U�K�B7��u\ݤ��>�~�����5�d��Q���+�9�� ����@\��¬��l�5����lf�8w�饹�c�d�mwғ�2�ߔUA�2o�QP`^�k,���B�ގ���Yj|p�2�B|uf�c�-�ڥ� (<WPK��z����/�mO�ϩ��6��>?H�vA��Np��ę{X��KǗ0d���#m�R��0��C&��U�P��Q^WcU�c�ƯK�p���u��m���<Y*�s� >�)(a����o^KG�RC�el%���o��~W��.�_�"�ŗi���<�K�H'�3���&}�Yɳ��9�·&�*B��j�qQGX�=���뤫ـ�[ -�Q�i -��KP��5��K*�,���^�H%�O1N�� ��q`'"��TY�?�oO�|�yh|"�@� yF�gf�k��o^<� -(U��i>N�1�6l���}���?�O�il8�0歔j�T&�bt.-�΅oPv+�E�l ߮b*8h��R�� :!|��I�Y���ZU?ܮ�:ӟa@+�G"õ+ ���°�t����i��ߢm��S�JX|+��W琡�@K�}y�[�j�,I�����ߤ"˃qt6i����H��N) ���:�Χ�{�ݳ�%T��}[<�*J�dx��>�Z��1��(�|:�e�>`%��x�A����}�$*uF��S�{�-�Y�϶��'[`��i-��,.�?�2¾��\�3!d�ޗ@�s+|�g[��R��K�����eG}�@����~k�S���\�~�\�5��h��!\��5���EBG(@K -�D������=�]7�X�U�A���O������J�%_��a2���-UD���7�C��% O�s"�<6.E��*��*���#���҃¼�f%f�i m��O\>��(��T��2����Qy�,`��"�YJfי���ԙ�����*K]��"XG57�y�pD���~]��A���,��QTg1�"��q�ʚ��X�����⯍~���f��"�*ܙ9�Ժ�;f�."5A���d����]��3� �Y-~�V��V8��*of��e:F� ����|�5/R<l���rQ�NN�7GU7���2����p,X%�E��z�2���oCT,�4cC����jS�)Q�A��N)��e -`�$�H��&�jRr7=P\Ϩ+�I�B�R�f��j�4PE�,:9l��`��!����\����),��{V�/tr�!�]�u�όH��o���k��6�����8a����;8�$��1���ɩL6f,XE����6��(���Ƈ�Kr\�#4/7&�#%\3�: �$T���������-N���_���zAH�^�����`���>�Д�wc��������TV���6����Q���Px��:3}��.�v��W$#��a���* �KL��H�ND���2jDl�\�>���!�$�8@��� ��a?�֗�oXf&��H�H��yQჂ"0��M�8��m�N�]L1�ԫ� -��E�����ZQ�3����d����c�*��q�ˍ�j�f�$��0,g�2j}���ixH���sѮ�Y|�h��h�s��l�[���?4*���L��8柤���������ԃNη�BMs��o�D|����0�)r-B��i�J�f*���W���y�^���ȓWZlύ�r�`.�ye,��j�� -^f��S�y��S�+_���.p8]�-�w.B��ӻw�汯 � �`x3���R�� o��k��(�� -�z���;"zԃ��H5epR]� *,�$�Ҏ�+�l_u1��j*F�%M��=� -d�Ե~ {���o����`zj �c� 6���L����2�Å�1�Ͽu#�䳄&���[�U?H�h��_d��_�� ��<D�7��/���tY�50��Y�5�W 9���V���xh��V��O<F�%�4��=����%;�M����#��$�v��[�7e\u��7�d��l��[�����5i ĵ��w� -Bwm��%;�������mb�e�ʯS:�fh�~��-�!�3��́�� -�!#�E1��O��y2�|���Fw����� -]���t�QݜhH�q�� -bz!��5%Q�a�T�|�K@�eɞ�T���������N�A���#��<K3cq��s���|8 {��ބ� Y'd�\�"�6�O���ǔh�ހ���e��'�4��I�����>r*̤.~�)Ua���i;ͳ�Z+N�xg2��^��O7���@r7��g�h(�M��1��Xk������y� ��ؠ�r�� &P1?�a��[��Ig�ly\"�Its��!%ROf�[��"��Hqe�KD8r�-� -o����>��x?r@_�o�+�"��۾�<���ЎS˝�v)�o~�E���7>�t�:i�9��p��a@Is��#�)�Q^�a��S����V<����<U�������o?~l���;��5n&�?�g^��=^� -z��:�D��{��Y@���$G~ ���3�}���T��>���!��ʊi��O{PH�[$�'�A�*״/��pW�3cn���e�L@f(�t��|�X3#Ϣ<��̷��o�q�m6�Bj�m)�\"�1��^,~�y��ʹI�,Bȩ�o~�_��ߴp��<#&���]���Ĭ@,�8#Wi��e�&���U�I$"��ey��2�i���>T�����#L���D��]� T/ޣ|�#|o�@���H� -�C�\'��v(���A�4g͍�^<,��|�L��c�ˏ<A$A ߬����aK�^Ǹ�E��WL�}c^#�i߶t{���y`� �;��/U�<G�k��s�%��X}��K�{鴽���$�S%p*����r������C9y갤�M�N^�^�V� �N�oQ�"Q�y����NE��/� \%��r��5��Ӕ��o��G��u�B��e�Nz�� ��0^�U�TU���܍o��L.a9�&V��E�_ym�Kj�_�tx����'��܌`��J��>��f��]���7B:����B��c0a��C�*�y#ÕW -�����s��,|�G[�ۼ�b<��� ����_�Q�#�z��7��4�$�}bZ�\�!T9=�Fc�����5"��lC -���T$��c8�t���JqC��(���H����Q8�G���0�A -�lE��E(�R�1��OE<�WP`TX� k��'e���wo4U�SY�<Ɖ*⍟Y5�*�+�D.�{�������E����k/3�I���,�����[��xS�{�<@B��O���}�í~D������n -2 �C/�Z6���� -�f=s,�b����ۓtm5ոG�?G���41��ٯ�����o�<B�?�7��4�m^B��L�#_��>��LU�I�8���t�u��{�ȸ}#"���-3�;y�7@��Q�m���Qݡ?i<�ӛ�XQ'�DTÛ��T��E�7��T2�Q�.�_m-�&��K�5��ϖH���(Wَ��, �tQ�.�Kk���>��+,���������A9B�G�Gf�X%�x��$"�* ��K�^]6)4�3�R�r?ډ��C��ە�y�D���e����G&JP�M��2�x�Lt 6�O)u����>5V��Zr�Y��|1�)��_�ac6K2�sRP�j����EL����T�Mmի��TQQC�e����?H�'M\ �̳��"��?l U�7ܧAj =��;ɮ�^ԕ�n�)N�+�z�%����L:kfob�o�� k�P*\ -�>�$S�eGiA���n��6B �:�� �R7���"J�o�/�Q����\qBy"l�7�q�-�$�GH}�(�u�4*�$h�P���cyL���#���#��~��G���y���ڌ�L>�oJf���8��P��k�6� ���z������6���ʢ�p�R��UX��Y��̽���z/�l��Z�[��m��L�?y���ª����f�pW�\UM�M]DxV�!ŵu�)� Z�I}&{w��%\a+���� ���x��≯7t8bL�M��L�����25~1�-�a��YZGho����f��`(;{X�kK-��P9�=L��nY7���+�������O@�)U�� -7��HF�� �`���Ɩj��]y���=�3bq`pY�(�"!���� -��\#�ڜ���FJ���z�6Rҭv���<�Q�r&�o! o.&~ynV�3����t"�"�����y)���ɨh�W��h����P.����S�i����7�L�Q+�Q���6n �o���;;��dz�nuDU�G�;!�^}�ㆃ:(K�P5��O>άR�[JYb����Pٱ�Z��.��Q�ܷn{���Uy��̊����=�>��h�GA19���� -�d��٠�֤��Y7�y" -�9_�(Cd��5C��TG -P�dF��T7`워�l�-=3f�e��D�.�/� �8Q���$�H��G�/[�ޞ��$�1��G�k6ġ�Z� �kZPp{��w��uqX?_��k-i�/y����k���Û*�e�9�,�P�C:�����w����=eV��=l#��?�3]x�� Ü���%��f��������~�Sw��M��Y��c���O��m+����R9+b�����]zL�7�o��1���dA�~���v���~|fS)���O1�n��T��@��~���{lQ���@�;@dr�PaY~d��5\^\��<�0���!ei~x���~�O�K.��n��DO���$/H'��.�]��a�����㠳����� �u�|0���jx�J�M/�E���� ���'m͊���Y��5�\�������[P&u�*s�E��n{�����q�g�g>�B@���'�Ĝ�/�qb��������S��2�;7?��� �3�f�&�0�֊0[�_1[@X�cL֗%��`j���'G�8w��O���4;f��W��=(O*��/{���k����o�fY�i��<}�?6���7���$5�8����']g����!�d���5�ʈ�;Âm�s�g��g�Z�/;L��S��m�-��o�@�>��jpRJP����m��Bw�)��N�ާev��UE�k���3Z�X���;N�� ��a.���I�O��'�L�w�D�=Q0n���Yc�z^��pZq��ރ������&a��Ugl^ߺJ�0��"y�Q����OKN�Gţ, �0j˩J��hT�6�7��v�[r�_��ͯ>���~�dz���T�Z$x&�/�,��(��!�e�_cm�v�@d�B�=�*M0�u��Ƈ��K��� -�E���2��г3���[��8�·{��ٷ}�ms\1k�f�a�^��Gu�� ���"=NJ� ��X�c3���^�%����|q���tGE�Û��v�?�Wy��3���'hP9G<�0?�`���#>�#��S�9�2/Z��jE���`%9��P1����.WF�zL������������]��������L�XB���f��H�)F�quN��g,%�i�ـF�n�zƟ�H ~����L/�)}�~>0?cO��s�k�������)��(<�E�PiD��a3+��X�DWb�)�(�͍�S�A�n��~AՌ���h�RP_���_��;0*�,+�F��U�N�Y��Cd�XѶ�sR�A�ށ%�^?���X������G����k�ّ�.�rq����,�`>����@-XɃ��`ٟ֔� �wݣ5�Ϳu;�o~���*�W�{b�\�B���Mg�;��e���9�,����Zq����m�W;�����"ʳ-6�Q��0�A� ���F�J�(�x���s��b$����?D�j�1����#Q�`�VK�"����6� ��M��n������g�=ۦY?����1+��%���� ҙ�g��ݭ�%�.2Ao����,j�Gv���������Ix=�3�Q�U�����T��>-�t�B����G2�3*���Y$�3���5�w*�÷-ů0���_���/��Y���S���k��$�T�N/�Q��(i�4�^3���2O�^��3u�GAQB����pm�(xx#�6 3�}�@@2��� ���Wє*'�d^cb����ؔY��ß����?d�o��0����J�O� e�hLS-}|[�;7{jT��� T%Eo�T.�FVRU�ŷ����>����`E�@�U;d%,��+W��Ar�Z��=�m7��zO5�&�e���ٷeq��)5l��*?��M�I�I��`d=y=����~R������[4���Ԅ��ǣ'�H��R;`%/:(���7�F���'���@�(S7��>�+��j�5� S>@�s�w�Wb�yNӪ���g�Y �G�;'�av�ʯ!�a�E^��-cH�~���:����B�dךte�pn��"�C�w&��|�r:7N��:�QD>C^=F ���e�����Y ��]s��}�iX�o��3w -����$���B���@ŭ�u�f��b��*"ӟ��>��Mm?�ضJ�8������?F�.��xO=.Nɔ���W>�[i�lPY.�a�Oz�/([e����`�X�Te�P���2����Ty\���t���� -��� -�l���J�E�.t��\�Ey������+���{�m���]��$�a?O�zt(�Ȼ >v��;�y�b=��:[N[k��$?}�z��������y���%��o8B��t����7�'���[^�c.�2����<(�.}�C��� -@�CI��^M����<[�ڔ����L�J�Q���E���?��F� -���e�a�d�Kv˛Yn�&T����䊽���r��c,��Zz_f�nw���vH���$ư7���P�����n?K�7�]]��V�I���}���:��.`���$�e��i�EA -��$G4�ck�g��3&��dɺ��8'���0�� ��3�ΖYS� @���)=^�Y,�s�n���Z���H��X�����x��"�c�_���x�ps�p4q�s��>����4���t�A�.�o=Ʋ�*�o�����r�ı�����ӌp�^Ե�ͥf9���W~D�7�=�$��$k˹�2��M���f8���,K���QW�q/����E��ŹH���>v|n+�\j������ɜ+�e��_���������|����6�U}�ٛ�XӷIQ��� 8a����5&�+��R�h�G��a�z����!�n�����DW�Z͍�<�����e3F�?�},��;ސ�����~dH!��EBS/��9�����%��E��G�%��=9�9�xCXolM Dx{��ǩ�I�Bͳ�-��1��?=o�y/���>�/�8�G���E��B,L��Gܴ���_T}���F�h���y����>TREB��l[`����FyD�V�t ;�T�˂�3#t_V���7��ܠ��HC%-�҈�P>�i��L[� -;��,|�Ï/���h�#ɻ�K�V;��\A��%RZ���d����k[WҺ[�������;w�����z��y��f�������h[����盂�0��z��x�C���9���+O�g�Bv�@r6'��ȵ�V���Nu�����Ҏ2���ľ�`� 4y�� �C���c����"�%�I�W����`f�<�ɶ�D8N7`�x��"����oK����ܕ�T�*�b�e"G�#U�i�o��^�߮���jn\W梌Ҷ��7��Yv�?5��͐���T�T.����mqłM_W��9����J���D:�D~�?��r�˪ȹR+|��r! xI�X�U�"�s���t�U�Uڭ��"�"� -���'��o�h0P�W��9J3&�"�!�Y�]c~��h�se�dҹ�k�_��[�GX���[1�G��P�><ٖSR�i�nodЎ��:�>t���v����#F�I��A�Q�<x�"S����B�5��¯�������#o�c�#<�%��Ͽ��8�+�z�BUA�P�w�F�c�7F)Ą��*�����}���~˸)����LH|�RQ\���Kq{��`�H�J�����г��|���:�߯��A�߳U�%�yG[ĥ����@�~Ҏ!��i^�s�o��@�'����@r -&<@�\ĵ���EJi��0��j���b&�8H��h�仇����Ǵ���y�5���u=��t���}���݄bAm��#�@���"yr·.�x]0��ej��t��^���d�={�A~6];�@"�*��F5S,��\'������Q/����6k��,�M�;����c�b�ð�\!����9\��� m��fL����.ro%���PY��c~����8��81�"���K��\�@�W�.N��ع��r'���WK�䢌��J���EC�I1��E�7T`C��)T=Dx����o���Gֆo��\�9Q4�2t��ۢ������b��Kn��(��'�ٛ!(r��V+��E?�?���A��;��[�:�?ڷ��/�",��m:�ٍl`�8Um=0���Y�M#ue�+�]U�|0]r�L{�CY�7})b�V'�߱V�$k�-�f��͜�r�1a�N�] -��.�'d�s@�J溺��m)������+=*�3Pژ�nP��+v���*���Z�����]DW�����l5aNE�EιeӸ�'�P�m>νN"���0�J��Q��_$v��R�a���������u,���.��z�tën��K��� n�"�]�?Ǔ��H�L�X - s�y���徆�HV��[Pv@<�e�G��|?p�̊�P���� R��8�SX:7��;f����� -���n-�̊��5Z��?�]*�<��ėo���OU��y)�˛�(�z�h�#3O���s�x4���}?),����11�t���pC�'VJA$Ip.;�Ft�U@�|�2�#'�k�c�<������Q���H��.�{��A�=�u�֮�O2rr����G"m�wLhpn�� ��v���Lv���q)#�OEj�'\'��Բ�8��~z�5a<u�V�/���?���^� �n��k�%v.��k��7�y�S���X�]p쀸aZ2�����cxg%�!�s��u�`Y+<�ּ�h��ѭ#~7�TK7�+R�Gؼ ���x˖�=8Gv��;��5<tV�׳Q�5u% -{��3���Ko���h�+"�����=�Հ���\L|[Ţ|FT�E�GNM-��L��ʝ�F���;��և��]麸c��% �Y���*C� _�������K�1v�6����^��=�û"�~Ō�6Hw�?5��<{�cR@!S�9qD#�{�bK��2�1q�Wnq��d$�ԃ����f�c�U��D X�Iz�K� ��n��#��+C�& 9�k1sɓ�ssM�{�e�-`YuêN�7��"���y@Z�>|�'[��x�L!��o���3�`� �b��}G���نY*��Dl���7��U���xg֞�S bӝA.X��!6�ސ�-�\iGW^��� -8�h�q;��ÊrB1wK�Y����vl�<({mJ.�Ҕ)�#��K�=dg]͎Bx���:�4�V�(K�;7���[r�gV�f{����Wx3{/d��/zm�hp{ G#�f�6��KSD��K3�XmU�泫�7�犰R�m*�A�֙�1f�3��y33���� �mun>�C�nZ�+����K�y����8���H��&��(9��'�.�T�c���/�q��h��������ea��C�!S�ݴ¯���㦄G/L̓����}�W��}߳�`��e��jƸÏ4.�G}���S��o�:٫����1��$��^�@Җji��b�+6}��cs�O -G��":�@T6����H;6�(���c�V"���&�!7}/y��z�������n#���&:*�1�|�.�_���\y5���������^E�]��%������+�R�������uxPc�ް��c[<'�8�-��W"�x��^����� >�'�hV�X�c��;��E�|Х��mdJxD�[ ]�$of�uܽ��ь� �uCd���Ӌ�FX"Dl(B�g}����͋��&��*�mz�E<���̦u霽�$����k<|ӃގGmZ:�,������n�u�p�CP�k�dC�#7/�o�O�!a��ŽfЉ!wd�҅_h9� "���J����hq�ȗ{��(&Ig�SD�w-�+aތ(��e�e���5^�(��M�x�T -�_�W�+m�wN�8#CH4E0r���:�_JF��/k �7|ᾥ{7FT%�B�_�̙f<z�=���}+�o�i^��)����7�"@�Jø�k�x"&��xދ��W���M� 1�`�-34�'2�(p� L�4���2A&9������]g��v�Y�f�?!�����V�h�oG�!��'��������)L�rb�5W�V,�2uJL��Q��i��o�q�1� -�,�-�3I,'0��& �B��*�+��,���� q[# �����f.D���Z�9�^�Z��a���j�S�t�~�6�eVn&)�y�'���A� g��;L��9<�1�'2ύ�*�7�Я��`п�e^M>�^�����ޣ�S+v���On�_��bzB7T"6�z~�UZV�M~y���p�qV�p��x��_�7A+�R��6��5��a���/�Q�{_����k�Dܯ�����n`�%R;H�y!���iSV�Q�|��k�m�ƾT[����Z�Se����s9��j��3 h#�� -�E8���2��2J�ە�ߧ���r*���7~�Jc�p�:˪C�&t���;��4�Xڣ����3!�%�`�->���Up��3��5,���vr -fG`��_:B���t�*S_D,@Q�֛Z!}� ΐOx��7��`\4yM��u@"�i|R��#�?��?���+��g�B��<ׁ�.��+o�;�?�:[���m��jT�Q�"l 4[���)��Z������x�Y��k�4ԠRp֦E;��a��P���Z,o:GL��v1*����5�9g��.i!��2U�k?�ږ��/��k7Lx+N"���^2t�(���,�ޥ|b�2k���>��,KX�Jp��/��u�����1�_����{��*u�Џ��Ų�uy [�"���8��z� Y�Ζ%W���wh�1f�p."��#Y~�j�H�ڬC�� -+��jH"b2 � <c(��FU�=�'|�9��C���/]ZD��+��/��F��&���'��j��*ë��8���tZ�cދ�ɯ_��F$"� �d -�6A -�ʑ$F ���j���e�-s��UJs(B����s�:�4P���M�d�F�x��$y9`�_c�Ɇ�"R��E�y����7v�p�!�����7B����a+s�O;�k�o�x��X/��\(�����J��*]x�J��0�i+/�.�Gw�8"E��t��o�Y�3=V9����w|�xߡl���Q}�C���f4�ּ����0�IyJ�E=��J[�%>g�7?)�6R��֊7�<�ѧ��m�pI�E�_�C���x��A�E�d��X:Q��U6�0��lx��/���w��d'1������β�}�&�,,��~~k��Xu�ѸT7�\"��>�����b�M��� ijm��>[f�3<��#�o{�w��z��~�>�?EO���$Fm�l�Qt�t��|N�'K���o��v��X�&���r,#|Ӈ�n�����)0 TG�4g^)\���@����� ,sRPϋ:����l��MF(���Y%��N�<����P��s��R�B�v����B��T:q�:�^|�� �7-�gV�-|�GZ��:Fo�o~�Y��]� �D��6E���j�H�Ӳh��1�B���'���"L��V�X|�F��7-�_�+dKg=~l�o^:�V��.�$�}!bϿ_#��%eu4��9�%�_3˜� -zt����>3�[CĂ��G��=1�~�6E���-�����2�ū��Qmu(�x����Y1��Va�[n��1|���FQ{�����9��/Ӝ���H���g������� -��J���62&IG�s=I1�VބoT��Po�������t��^��j��6eO�?q� ']�k56>~�y���g��T$=F2%��2W� -�C,ީ̶*h9���ue;m�;����vZz�V��= �'0��J�*��iݰS��4�m��/�]Q�%����)a�Ϸ��� �3�'w7[��U@�_W��0�5M�Ԫ�e���k�&��YGj��^���A�� --1�y}+x�莢J���3�Eɝ�e��'��;"�.�z99��.�5`Ƅ|ށ�����[ �#�ޘ���:Ĝ5��_L�a���C����E��2����}�V⇦��Ct裑��� �7��W�����;�t��f�@1�=2�4�2 -�c9��Vyٌn� -������+��9�I"�Goe$d[p�]�D0��)�u2E�x;x���P���k0\tғSЌܨ��!�H2�dk1�j�`W/~�cy��uj�-K��Y|�w����~� 3��*�7��8L�H'�76&�j��p�ȦXX�ƛVPǁ�Ipٖ�zmFX¥��R't�C�4�0��� ��-v����#�GjA�{2t?��Lt��q��a����#��7ۥi�#�`�9�3�%Wf�[�o�� h�8�D]�1�e�)�6*(z�')11���6����5Z�\� !��K�t�W&ӭ|�� եǿ�� u(�w��eQ��=��Ǹ��w�Qy $bA�:k�s>����������[�/)rP8��6$�[����A��]�*a�U������]��l�8@j�Cy��9<o�g����Zy�=�h�J۵�A�.ׂ#������\�l��@�DU~���Yv3�$��� a��d�� -�i�u� -I �ó��9��EJ��4'�18�E}g�P��^�������@�C�����G^�������'��P�C��B�"fUG�9�a�P�W���s�" -�ٲZ����MԄ�5t8�ܖ\ ���uE��8L�X��?5�$��k?<��"^1�������E��Ic�{+l��ە��b�B<[6��Z-�)cK�%����p������ݰ�Yn\�{��>����Ծm8|�í�m�ZE��q���𭞈~*<Fo'�Qt/�Y$◟tY�.�w?��O!�l9����1T�����` HYY�2A�����T�]��#x.ƍ1H셢�?i����*2g� ���x�[�O��F����_�~�H#Գ��b�F�V��:��#�U�r$��_�QO'6P�v��H�J\M]T)c�!c �Qo��0�*�(7���� �O�t��Z��l$˕�+�5�C!)���"�7G�ezU8Q;�s-%ɇ��~܃-��>�MS4�b@ -/�ͨ�k]r�)�[���wA/�*v�� -�bx��{�묫����(�>�q2��:G6IIN� y`�[*�N̽��7�/7�c�H���.��%�I��^H�����>��(�R�,y �� �TU,gDDw8�l��//��E>�6_���L��R6 �X讦(,!�R`����=:<�̼�£؛Ҝ2��y<����TMaB�?}����*J�3c������D8ZN�9�Zv�9�+�P+�c��`�#=k�E��ȬO^Ą=[�\j7��t(�#��F� s�p$k��qjf� Mψs���}� ���誉9��I��M���>��@����]��q3�;����{�)���:�O<ʭ��۩�hd~�Tvt$cq����/���7�~q�����cx�~��/�~*�~eH��ҎT�st�����X�[�gT���7u��/�w��c��<�9үSp�^��3�tT̋��4s|$��CK=�TW��F���/_=��ѫ��l�([�>AE�,���@ރw1�7�FĺO����C��3�i�������49a-2�7,�di߿��# jR���_$���T6��↽�%|��r�{F��>Rs��&S%��Y�5�ojt�E���pq�oP�a͝m~=�,��V��7�G���R�#{�X�L�q�_bn�&�4S�UQ�l�� (a��'�}P���.�QS�%�X��E&��1��I���F��H��#��^Hcg��*B��ѠG�Nu�t�P��� j�[D�w/_v��"<���M0��G�1��"#�c<�Y�~�mӯ�v͂|�{Iٕ��)���r.SL�Y`>�c+��w�7X H 5�r#���O2P"���+;������>�#���۩U�X�n���/>���RZ��F����y�f�s���X#�a��gm����Y��B��Zg��|�gl�o�S�^!�s7�{bn�)���2[�4�{�><nE��o�d�f hz�#!,@�{�5�oal#�'F�̠�S�d6��n�(�R��s�j0O����o�^�Gu�^�=S��XV�j��H\�m��HĿ��h2e��NG�����gf��:�nl�z�I���#7��,�B��+p��7���E�2�DS*��u��\�E8UE���~�g��Սbkyx�Nz��Oi�i_��x0+&�_�2��+���� l�He�l�[q�P���R��?E��CL+`v�k��IM��HD�?\�UM�2v��i�Zb�'i$o]ğI�TG"��!d� n�P��C�ґ�$�8\�6,���Ԫ�ݭS���HD��ML��MG" -|���^��}o��n/�AW�J[��6�����|<=��c�o���m��<� -wHh�,�*L�D�>j���V�p�2�*��;�j*��E.� 3dsr�CY���L�lp��)"e_1O�ņ�"!|�"�EȘ�!"kܑ���?�`6����C�ӐO��i��e�y|` k����-�W��#T�XUZ'�Kk)b�_"<��0HU��[$��M!Q�5�����-0,lUÄ�^�R�V�� T9m(ΏH.a�<�^a�Պ]�R_Z%�l(Ɗ���w'��6$������I��3��m�4>`�.�.*37����X,�g^��v���4`���*69�q�W�8���g���ű)�H���pއ��^���Bq�g�E��K�=�˩,u��X��.��%ә�U�o�����v�p$��ѹLe�|j.�t��v��� -��&�)�2[�e�!ᢛ�����m:��ô�-�r�Ϩ,iSY\�\O0�i������|hR@DԲb�G���pS� �\���k�[X�� )�U@Q����PYa�$Q�y�<dI��oa�(W��H���Sx���uin[OpS%^#�Ȳ�r*�}�Nۀ��RO3�p��Z�Ƨ0�t&�A$���EF�n~�=}�����ٹ\^�V��c��M�f]��3(��3��ͩ �a�di�nlΙG�����������'�=Eϵ8��ݞB�Z����Upi����\��E�fD��lc��{N( ��c����� >�FU"Bɣ�+�7���4�6��V���*�b��M�J.K}�Y���s��}x�h����/�����$��_�4�{c%�I%����C"ƈ���q3W��eV�����Q��<����akcm�O�J��d%}��/҄��X_i*Jwɶ&�*.(xWj�cw�-0$/�ҋ�*��w4B/D~p*�s�ޞAV���D᷐��|&��"����_C���WU���~���|����s}��&�%S��#Y�м�)w��ҋ*>$pϘ^ML�*K -> -=H��a���3�oIv������oF�ۑ��.��?�� lЁ!���u�����q�Z�ו.#�t�~A��#�K�y�έަ��{�J�ހ�k_�XbΞ�K���awXQ��ZgM�@�#L�t9~1����8�)�X�C-��r��V���;���M��l!�c,��Qf�2W�x�S��S�A��5�f�S �,q]�$�_�L����e��9���Y�����0� �I�N/���v�"��'��pSmZ���@��>�f�,���e1�.�"��)&��r���}���a4�v��?�b�s,'� -a�$#�n������*r��g��ھ -�����<Cդ�/���ɵϠ$�:Y�d �;��st��f��OgR��'�_K�wY��{w�4���r~����L������;@�_x0Q���8���v���ü��a,^|�^����ˈa����v%�'�_�ߑ���J���m�b�L�!A.�uUY�(�<x��8=���|&��D��l�� �����^aQQH�;�)�sj�z��.��� �itYƦ��~�(u���w�=��}�������./X�� �� �q/�Ҧd�y��Cg?�]ؙo(Zt�*y!�"t�Ƣ�!"��{R�R�`Js�M��p$�ɩk ��9t��~KaK�4�Db�� �=^��JS��4����Q�d"h�I _5���"`�q_Ҟ�dcLuIdc|�a2:�e'�P�����t3)h�Ȩ�����,e�e�7��R�v#t�C��!�JL��Zx?fD�ވþ�?;VI���q�9h�-�B�y)��A��%��6X(������vy�7m���Հ�4E���Dz������6+�z,����j̅��E57W7��U��A��fOWơ߹��875D��8��|�>�ʐՆ��?�4H��+����O�c���OЇ��eU�p -����,�8�u��<��H*9��m;�G�q����N�G���7;譫��iV�Ui�c����dz����MQ�%W�z -Ǡ����yr�qOǺ(��C�0���xm����S���7_���>sjW�u=mX�mQ5揱H�i�*���,H�6Ñ�@�'�o"��K�}/���G��1��ik`���w���R���L��+�������ֳ����R���a�'�轈Ft28���?��ExNWS��o�h%/_>|�����z~���l8뵡-(r�1�ނ�~2߂�ϓ������{'w?b$?F;��8�;���@;��8�a�4Ki��I1�ǧS[a���c��K1��l�.��AD`�kzC��b����p�0v��eFDޖ�i��`B I�)�:n��0G۞J:��M���T:S���P�on��� -�'�jo�|�KJ���a�L���ݽl;�eϵJ�(�DF�����sKH���;�Y+���M� ��؏����FR<��C\��F`�B��aƠ��8�o�|��o[Ī�@^"<�:�)qBt��͖�H_!��[��$5�^x�eH{�6�~wX���o�RB~�5�tX�q�@Q�X�"�D�;�*��)�Y�0�](��t� Kb�)uŵ�b���w���T����&5�� -x9R���H�[�ط'2��9C�6��My�<ț�(<Re �ih� -�),��ٽӍ9���_(��S�� '"^���[@+���C��)*������Xe�H��ĸ\�.��.~2F�̋�p�o!"G���y|���̽�� �P��TJ�<#����E��7����Z|��uB��%�N"�"=eQGX�g����L�P ��ˢ2��qj;����o:̭8+��y{b�7�G �ZSu�R]t�L�fu���u��p�;�ዧa1 ������I���ȒϽ�"䦡�'|}�N�!5�́��� ���D���q�V��X}��F��X>x@-P��\3��4@�e -m!�7��=k��p+}Enp~�ϥ�F�ɚ�R\�C`G�w������a9�GH�ul�FQ��\�8�5=+wؔӱ����v����$U��d�;:��;��1̣�6bf�:�H{뺫�>��V�IE�u��[�LLk�dnP~C,u�j�>amK�h�A> ���IS����3��?E)�%���D��i.Bݟ#�E��#C8-�@�8�����>Ù^d��� ր���6�`�;�?�����|�����k�w����1����ŬS,���Ĝ��;�-�f��=[�*|@��M�&́�г�ri��� -�T8n� ;����0��0o6U^s�)�|J����,k���Iw(_n� ���}~/H�����i^͘��DǚسޒY��� ��,��8x(ğ�5#�o���W��~��t�51���� -p�X���MK��7i�OJO�ދ�D��RO���跨$�!mZ��V:������൮�!���P�]�v<,��Gl3�m�fj|iV�m`e��[\��0���\���s2�uc�(��S'rj�|W��W�,x&Q��>�"�1L��Ӝ�,/:7����6o���AQp�v]~��q�;w*��u�(= �Z(�oq�,�%ө�b�<� I�kO��RKw/�L���|�^��3�w�6���Q����k2i���-:���Ρ�m�a�]��W}���%�N�_����9�ғ�� ����C������`��d�N�&?���-ȊAN��$�=��S�"����* f�R5��4/C�N"�����i�R�[�ԋ�"[u"�ۼ,.�|�z;�7��f\��Îy@$�s/c��0� ��� �/�Z�w�_F��iϙ`�ᘦ:5FX]@/8 է��YOҚY�-y��Iy�0�]���o��;t�����{R�P� �<�B�`�u?S��e����{P��1�=7�1�^y'�}j�f��ۘ��gcx�Gˎ��ۿ�a=�R�x?��ֿ�m}���Z]��,�z�u���L�~����e{d���݅�0��j=�R�6kTwy����?����y�N{@�I"X�[��^�� -ߺ(��W���^x#|u�P�I;�Z�3��9�tY��UK��X~1*�;��:"�{p�����e^$;�Cwе�������0��g,U71�vۓ� �J��Z��)��V��H�*w��u�@W�B%V�Z�c -�4�.$��u(bΑ|���8�yፆ��U�r(ΉS��֔�Ndx[�'�7>��"�����K���M(��x�ж��Sf�� - �b�(�7�;��M�xoZ��dI�Е�X,������ 1o�m�7<��q1�x[��K< �:B�DQ���F9E���� ��z6õ��ĝ�ah�����̧��)ju�;���,���|y�>���&��<*�m�IJaG��i�����j=Q�~�P�0v�+K3e���q!Y ��huv�u���i�>�FM5�"xz1!]C�iN'S]/+Y����/"�-Į���f�.~M�"��`I �qe�J��� J�^ǀ�E.�'P���P�H�:E���CYM��t͓�-�~1�!2i�qQ�,�ۊ�V[�I��9�+3[�� B���y$��lp#��"�L�~�6 -�i(b���&���y߮$�8>��}"g��c�EDc^�Z��l��"���[��9"T��r�\�?�C�f�c+U��jFW� -o��s���e�W�Eoa��Ď�X���8v�Z��b*�zP��'��}�a���Y�P�OG|(��_W,�yC�f(b�_`f����3���x�F��t�̓BU1yE�"��w"��12G����&Hg����K���?�(�h_�vq���)���e>��}��|�&o��m�CSI��3#L,qe�)R�=0�D��ZY�,��.Rpqc��a��:R��B}X]ނcQ�[����͞�6��Y��e>�q�( -T��V�[˨[���/�lOW�|�?Z�W�"Z���t��),��WL��� ��l��)#,��M��P�h9�J�%���G�Г�]v�D��/Ş�U>��[���X�Գ-�1�y�c��h���|��� j`{D�Z�|�mD��1':$pyG���4e��4��31/\���4�J��ʋNΚ�[�Qjóm�#X�dQi�6"ˀ� �̛I�b(B�a�1�v�����[sɖ& ->�?�;�9%^���*2u�T�������&s�N0���0Eu�3f�26�`�M�z�C[�Sژ�Y�揜_2�.~ �����j;��;)_���k}���ݲ�9c�)WLȳ��*��˔�@x�~�E 6}�_��t�FO�( S\_�RE��{k�]b���xA͊ -�u��-徧����𮫷���rY�@���(ԜG����p�n:�2 #,�`�Z�*�~�!�²�7��a� M��=� xՑVFX�]�� �X�;��[]ͺ���t�zk����[�Ѥ�K�&�K�z�$�K�V仩��fV2��O�Ы�^"vN�}�xk��8Yg�ؚ���?ל}�e���!�%ُQq]�l�Y[|%���6�Q=o��N��"4�&��v1�&?�:���w>����\a�,��Ơ�va�{*�q� %�zk$F�2�U��U9�8`<c8�y -x�x)��%�?�������e���O��`R�Lչ��F��9Qۧ��j�-���b�0W�X��=o�����w����$��V��5&�������7ڸ�q�Ut�Z�q��-$Y��nw�����D�����|�zJ����&�~�ho��z�m�@m���GU�Ì���Mr�����jp���D +W �HR��#'�e�( ]+�!_i��F��qv�c�v^����:Tv��eH���������~��o�CŽE�� 1.KPe�S��P��:�a�eb8�\�~ �l�H���=o>�m14�F��Z��UΚ�AhVT)3� -7bʶ�D�������=NN"����<cA���>�գΞ��fG��]T��r��$+�(x���f��Eϯ��a? 5��@�K�1��z�lU��;M��9'~v_����=)�VZ��B_� ����︿��K UC�N��ů����r%��%������é��a���n�X�A��h׀]]���Pڍ���� ҋ��Q��;�R[&�c�{o5���d���*l>�����Q��qx�iWF^��zE��6��2���C0B�a0u��qзΘ�_�e+�{���3NS�:�� oá���E���o�-��o��i3�D� ���N�J�����:cg������4F��w�A�����v�)�Ϳ���`Do��T!�o��aA�`J����k'F����-9�nʌ -:���'أ#�_oPWR����eEq���WN��������X�"��I�iAT�nb���KDi`���{�I8��|W[X� ��2�Pc�"�Y�JHϋ@v�=*��nx֓�Jsi/2�J�Yj�FMg�L�~��V �qU�,���!�g�HCoĻ�{�r���aX��0*��S���� ���#Ll��Z!"[6n_��B7 )H��,�x��d--fmn�6b/�A\��f6\��k�c.Y1a$}j��>��춸߁�$���T|��������7D#��7�I�E/�_�y��5Qxjl����ac���b6��+^�&���㣇��'�D}�ow)�����XkO�`�Z�D�؎k����tԈ(s�w�;����C��&��̀Am��k��Ïh�~���Ǘ뗩��)Կ�\ƭG�!P�i�U�F���?�q���"�ۦ��|a�E��8�*�ە�*� �X(��>N��v��r���>nX���~!B��ȡjz%|�t��ξ���&FO,�--���9��v�b�u�9cM^9��JM�����6���i$�li��M<�CMW��nQ,�ljD濗�͘[�8$!�ڏ�PMF>��=�xm|cdlh0r[P -`�}�0��:�v�:',*�qt�*��ϗ�=@@�q��SFD�X���ǘy���4E~37�\���5����c/y��Cq!���&w�3�{�[���LA��;R���wx:܇K5�Ё�p�6���v0"�ߩ�2��%xA�.29���ZDs$���?�I=+0� -8p�R[�)&��w������F�|����`�e�^�uPi�X���2m����cv���ӥ/�f��;��sߥS��dB�k� fOm�F��ߟ�� ��Se��V,.�[���ML�ԞK���Rp�W��������}nL�|��������H��>��7xL�ݢ�s{���F{-�[�L����o`*i"���;��k��*���� ����J3��������xS��+B��i&�2�`�����8uw̤����w0���`�KA/N���[��? �K�F�㴘FxٓΗՕ��]Wf) FTM�r��В��O#���C�'�!�6�c�d��#0� =�F���F~�z�$��R���`�nG��%�x���`�Z�R\����"٩��ɔI9$��� -�1�Y8�!���'��9>W�7������bIq�5F���.9�(����V�\"�P8���G�t*� v�ʃ`�J��Ա��Nm����\����ɲ7H:{�G�P�K��X!`���R*�(���J�V<�Ky�P�X��?8<��3��V���6e���˺�Z -�m�ѕ{�W�]�`bнRǝ?���\Y-u��8�DX%_��E�����d���H�����p��eY�Sl���N�IY�K@v�A�],��������K��B/�+���-���Վ4��c��N�o8J��-�1]�����=��+�]0�pq��tNG�����8��%�%i��&߱��g!��%�ބ^GYJ�mܳa���G,�C�{��:d��K��|3y�}V�!�C�p�aޖ��l%��謁P��Ku��,5Լ<�4 -��UD!r�y�7^��{�ֈ��2���o�x��)�(����h�F#�E. �wp|�[�b�BYS2�P�]�%������]��E��/��;l���Ԁ%��_�a�*����PN�����ʓ�\E]��&�T ��t�5}�ޯi6V��;X�e�e��틲�k��0���\�=/��&��>�r��`KTW]�� ��a7����j$Y:,]���+�K��zj/�^ f����R~��W:U[;�h~��!�y�BP��W)+�Z��ce���x�.�!��0����-4�I8�|�J��:�;��.ڎw~Ws*�Rw�����J��Ա}�2-nu���_W�f��s��a����Q�8���iA7��3��� �?x��ĹD7c�-���=�;�Ѡ� pJ�7a���e��.uג�k��9��4#��0_���� �YG77ʽ�uS������^mt��R�Q�(Oj��1z��ZDf?���4��E����ڬτ��� ��'_gh�.<oJ��:��n���Hc�@�1tvS� F����,� -�N��P(n�63����_oTˮ��5�nh�m�u���A��P�L�� -߉���Uf�ι�ސ�FXMgٙ<�J�NCv�ݴ6�i���T�of��Ȣ��^���T�i�ۄX o����ܼ4����t+tq>r��In��)�E�+��c��~[�`l&1��7�_���x{T?�#���u�ln -��57�{ Ρt����[<\��t&e��3��7�{�4{L)��n��E�eů[�`>���t�� `�3�>�8W2�]�M�R��1-��k�Lœ����:S�1��l2eO����{�^ْ~�KGiq[�߾�TO��fh�U����Xx�a_�0��*͘��J�����{I^��]��$)�v���և�+��^�ӳ.��\6�G���_�Ň�uoӳ��%������4��9�r���l��J-[�fݱ��!}��4�Xn9���A(-�\��"��"Nj�潌`���F�F�ݰ��`'���]�z���� �s. ~ȝt�h(K�]_�"l����Ǧe-��3�B��09V�w�ᷔ��M91ZL0K�+�=�t�R��6���?:���=-�d�?�[w�~�(���XE�'�a����^��p�����l�5�Q���~i���5}��4{��7��X�\s:�V�|�ں�X\ȓ���'�+�Lj��6����(��eBy��������Lj� r��i��2caM��lg��;K-6)�ɯ����S�n:�������N=�O2��天Ay�T^��)̦�d�n�b�$���PT ���\�PQh����-y�l3YG��x�:`�a�K�fT�b��A��ˉp�v�^���;�٫ǻ���^ۨw�ف,�p��Gb6�+/F�'�������� *۬���.g{i��GdX�-ܣva��zd��\2H!����I3� -1�w��Ly�P���p�)]x1��/Z�S(�_�!��P�pH2�<*v(�7y@�����j��`lW�0{��8���:���OK<���a�Ij���j�Da��{�2~0�0�Y������F� o�A��֠T�%��7'�-8\� iR��c��sĘ^ɏ��WS{.l4� �b�s��@�b�=�F�5�c$��� @n�]��^J>��l|>%#��S�Tg�+Ɇ0-*0X� ��)�P��rU���f�V��gd�U��/��{*FE���٣ǣ���|�^�B݈�o�+�UI+n���uȠD0��0��'�nyv���OI&'�O g1��F�,��d�����V1�3f�u݈ܗ�+L�I+������.��Y��|��)^���� +t��4B��K��Û�2ЯV�݁����td(t�p���Z��bFdp���{)0���(0�m�ץ��(J�����:���Ojq�fHJ&�[QieYg#̰ �A� -�V�%ϢX�qK7"K<�t�jK� xݳ۠�RX����#Z�E�ߑI�A�_\uQ!z���(^�QL���iMK�`��l�^z��X�N>/Wz�S�c�|�B;�s����wl�t������#�qN��"�������l /� -���L��(��į��װ7�� �_��Pr{E��ka,�E�����]\���6A��g�����_�ԧ&㽢���,_![�~��x/��I�_Kn��θw�״��7[���ץE-G�b�C<�z�"�o����ܑ_��_�&+�q����;%l�Ch,4t_X�K)wcR_Fx/�.�&�,2%�_�5��ib�Z�]ꡤ{�/,F *s�R�k�����+_��%��e�x�şj�{��oi�&��o�t�9ɡ��L4ngZL��GD�ŏ�����ǖ�K� -��x{�C�]��0ْ��.���pKm[/�]����C&��/�;�m�2U(��Z�*E)�ʱȨ�^D�G銱#*��o0�?D3�us�ζ���H���҉�)U�E �<�#��\�<��5E��{T�p�a�AW��1Pj..�R8ڮ�(#�x�ճXk_h�-�E�tѻ!��]ق0Bԇ1�Tq�+�WՒ�'�*}4�E����u���[����{X���)÷��6W���s&�t��]n�ʹ��˦� -��Dæ�����7j�r�l<�w�����<+c�3-��-�� {�6���f�o��涌����^z��{�K��Xf��i/��Z�Q$�E�7�(�� ������n$���,@��2؛"���� ����M��q�� �vu)�� ����qM$ێ:����~�ׁx�C��e�yS1�&�wW���s.�f���8���A?a�-V�*��=�z�0�M�j���F����*w��-�t�K�T�K�uo��M�}{X���}�w���c/M��v=c$.�+���w�:>�}�RЍ��q<�y���v���,ҟ(���:)��Թ�:�U��w�cV�{�<莈�����\�@�,z.�����ps�=�?M%3��d����Ȯb��?8�Q.C�V�1��w,�Ҥr�o�ܩ���;�~r��M״���,��s��v��r�mݹe"w�[q�'R��I����u�u9����^I�ù<�n��k4?���N�s!�9�O��^���qo���{In�MfP#t���Ѝ��,�䱗�䥍�rR��G�ި������\��&��wt&�2�(4�����$��#�:���ߔ@6�U�X֒NA[q1)ƍ�Mv��緗���ȵF+ҙ�VA%�a^��n��VE{iO~L���hyX����M˃�(5V/�8�gT��D��sw��h�n�;n��7�{/�GYs-o}��Ğ�����Qӟ��#dVޭ������*����\��e�Xc�����0���B��qk<���u�K�6�� ��k��=G.EN��9�g?�ӣ0�1��ױ��L�P���G2��M%���=�eſ���z�P�iAW&-4��~z�#��OQ "�9-���o�^`�u��[���+5��� -���I6�abt*H���U�Eq�$,��:��ĕ8���������|�L'�6}���C 6^�ϝ`Ņ��x�K��8G�\���G^֒�S�}���[ۤ���ڂ�����:��F��v��1VG�J�y3_n�[{|G�w�̯��F� -�x�:����gU��C��$�!=�a���hA��uxU�yM��H4u������.��fd�a�b9��9��B���iS�w �n�~lA�H4�<���P;��0 ��u�a�طu1-�(G�*�U5v��H4VU�LS���ZiD��p|���Q��P��-�O��N{����X~87��i�b�U�-��%��^Gv��u֔$���z7C�*ì�Z>DnAT�ӮCMU��wCa��`ZL%�c0R��Ծا�D�ȡr�i����#G0�w���J]+�Q`r�N�/#��`�1. �� -oS��ά�j]�7��� ?��LsY;�M>��g,Lަ��l�oP�oд[�R��L[����R�����%��C�+��R�%�Ö��$�����v3��6�]y����M�s)�p*�ŭ���S^�+���&�j"<�_�D4�K��?�c�c:TA��#�6�#�6lvF�p'D�Ց��g�9�S�CF��8��(��ݎ��Z����\�4�\�AF�/���G�HA�ɽ(�Z�^҃S�3�+�"G^����^�˞�����W[ВM{+;D��M��pUd�C -A���@�\���^ -�2w3��W^�1I�<�B�~J�l2�����@��(qd?m�{9j,��1P�B�u&ch�� -��Z�E�{����G��RdEm��v�) -��R �E�n���T�w"p1����3ҹ��>�����c��JV9¾�eIx%*�z<G �7������g"�n������'�3�ڐUr�%�V�aڌtix��4�OgŤp�\Fz��$�|���� WR�<4\G�S��ϲ�ؿ�p���H�y -s:��=���T�&���Ν�q�KA�b9������]�d -��';��M -�����[� }����sܼ�> �T���.�=o*� ���0�kr<r���m3$�;T��i�~Q �̕18#��Yu06�ji˘������:�Y>��4���� �R/wyA@�\-8��V�~D9L.pWq��^F��<,85�Ub��9'�gӇ��F/��S���)�ߛT��`�)���R9-j��*�@��V?��J��EM(~��)Z�N�jNܺ��8���k�R@h�aD[x�T�� �b��t[���+.>�@a��8�G�4�#f�m���<� 7{�{��f6)�X��UKx�����w�+ ��0�]K+5��� �@��F��6s`��9����{Y;Y��{�Mna�Y$���P���30���؞����U&��-eb��E&E��2xls�3&����1���T3O:�՚��$�Y|c�H'���)���xu�{Y����x�. -����RkL2ue�g�x��&�rZ���Pnp�hh��O?�4��qÇh���=��Btǃ���l��� �������I ���B�.\�A3��8�e*+�[��7y%ܚ�&+��*�[�c����HZ_u��sx}�c/�ųU�bn���eo�c`]<E�q� �(�g2��R��b�M�7F��(�]�r$�j���^%gG m�%-�V�a:���E�L�e�����!R��R�-� �G@�I��&�!���Ϝ�����{Z+R�e��=����K���(����������U'7�h������R�H�J��O�͎����M�8Wa�mY�{ޘ�;Yv���qnF^��:�O���e�\��!kϽS�h��W�sL�6��R��(��~֦)^.�{U8Yl|��/HE{ȟ)]�)1?�DU��M"����߲�aB -Ҡ�����qR�9u-eb���x/>��7SY_�o���Vp�=���7���o�ыSĔ�b�Ax�<^���Nye)�dg��6��xB�m�d]����`�� ��Q�T]D���x�7Fw�I�T����'��>�u�`�y[�/nɨ�.����TV��� � -T�Qw����x�4tq��|�o�����D�[sZM����~��O{�-;�)+f�Ęßj��M�nպ��!�m�D��mض�NDDM�U:"���~ʽ����N��?�W�y�uɿ�{ ���ۊ�& ��ʘw'�yG_g���1�wQkF��1���xc���4�-�.H?P��'���m�a&G�� G�K̈́mrZ"���;�?���zeV�V��GN���\PO�O &��Z��������o���j�A��6i�0Nۇ���� ���F��ݞ� ��+��·�߰�d��I�L��t���ˇ�lM��~6�'�`�b�˸� �mn�[ >w:��H^�8|)Љ�� [0&���wJӣq���a��D?c���,��)`�[u���Tp�B��}�|�;R��@5j����:��4ն4�������V���DŽ!���$(�U������/�Əñ�n�uB�B����c��7S�>E���"�;Fȅo��S��)�n��$��٨W�>9�S�d(PP�(�;9�*�5ED$�RC�v�R��1��/��@/����]�wYS]�����)���;�2�wP�G�>|/z)0�lҎIȔOAe؈��?ю:"��Daw6� G�.��h>S%�e��;��F��C����s���-P+ɖ�ٗ�ŕ��78��7�xX$1���;���G��5�W��'H�-9��ZދA)zr��we���Ս�l��� �h�$;�1��'�C���+�ġ�=�2E�fi�s5�?�=?^��� �H쓤?�*]y�>���j~��w�b%�����D�E�y���8u�2���������{�M[���(;�r;p�����ͨ�o������.n�k���?��~M�V*�G�Rч7��n�x�Ʒ�c�"X��� ��0Lsay8����o+~-�� -�}ȴe��c�"�pE�F���ۊ�S�k�Ұh�#��۩<ؿw.g��7y��k��H\���?�88�]vN�[�#/����T5�厥�F�:�\Q��"��o��~�y�> -D��t��E+Xź*rKY%��=��|&���7�(�;T���dCq�}=�o�!�������i�e1����W"/P]� "�_��oԥhđd� ي��VT͔���LEp�k2����,/��) o��H�Gu#�𖦮\��oO��L]�f�R�{(�{�(�T����L�F�������Sx�:�Q�����C%3^|z�ү!{>�q��7�"����5�s{��ۡ�N���+�R��m����a�E�k����V��V�3�bY� �IґJ<����Ob"X���"Ւ�x���CZ};�@�fd�"��(����ܝ�+�6�;`}�:�ո�DF�3;@K�Z�Z��R�35IX�s�omJ`qEy�ޣ�q�(q�WHy&^9�Se>C�v��xƭS�"��nm*�F�Dn��6��V|_r� �����̈́�x�^���(�~'��/����S�7�H���"��h#8:T���k�).�^���K�i�0e� S�K^��&%x,T{�oY�G5�:x�)iua�*���L@EU�U��ӚX��8Q�x��FfW@�b��#�����]��/���|�u�!Mڎ>��1S�}��lL��ֶޜ�z-F=�W��GZ~�;� ���iY�O˜tq��k��eV�ym�m@�('"g�����|C3���$Zs�6z}����-�?�{�5$i@NFW�����=U ����F�tE�lL�sfM�!���6��|�^:Un��c�{:8��\�!s�u�^�J#�;��+�a��m���9����D�������w@W%_8�(��-�i�*���f�D x9�`y�G��x_��_�u��5��S�@n�k#\㼵�@{�� ��LM��ڔI)>�R��v�����R_6K �|$ߝ UY���DL,���P{�X�z|)�= �����#<%��?d�?������� ��p8�w�{G�މw^�� �~xӣ$+d%j�E> -r��R<Yv LE ���mX��]1�ݩ�&�R��/A�����O���%|�w�B�4�q�Ӑ�F�5 �=:*,0*"ˑ�����.� s��큷:��Ur6�ގ�N�� X�Y� -C������m*�z����b��:�'Ⱥa��$2������_8�b�&�r����{ɓ���2CT�P��hᎿ�K��a4�~�#��^���U�R^��Yn�E��O�+�Ԍ{�4�P<fBg�`'��"�3���r}�~x����0�R�#k�����zءҢ�K~��K-���/[�� -�.�o��v�|�y"t�q��v�l�~��?Y�>Q<2l� -o�W�CM&��o�[56j�YKq���K��S�P�Ҝ�dl��G�`�qX�#F�J"�;#�E��m� ��ѺK6�tUnnYD�� ���L3I�c�DOտ��юVј��+����� ��p�R Ȥ���y+�u���ߧ���ʈw���{w��=^Ϧ��X�g3�����̈́/�/�4Щ�Fx!���l��)�t�����L�H�1��N������N��R�m���-P�S��`]�g #6?�ּ'����X���{� �g��)%Ky@5�r��c��,8܂4��g�)��&��w�ɖ�f]����Qg��=��@���������jǎN<���uN�+��T�vO�@�XLa����T�eQy*(+N%�L#���Nu8�[���f� -�z�c�ԕ}2yX���}�$���\n�r�܂[᭲jo���O@=�V⭲���N�4�Ƽu�gN�+īV�X����OWoi��oU'r��T�a�|�[H^�oΛ4��Fk>����譋?OMI��PO��m��~P|�e�QYg�=�$�z�˂�\��$Z��TN8Nq -um#�I�JL�)¤��9�f��Ct��%�B����6)����� ƭ�l�������K�e���S�:�V��:~��^���4 �r��D��o ��C�*�b`s��0َSs8��!-�@qb�4լ��0*�7˶���.%�~�|o�F�6٣o���� -t�H�Uf�v�����+�5b�Z�����=�F�FM-M"P�Wi&'�ƚP�ì�6��oF:��ͷ�w6|�����P����F��W�~r�{D́�I�*���7�US.�%�D�P���X��+5c��?�7ҏ�`�!`+߬�?� B7� -z֠�:�<*BvA���[Bv�=���&eѦ1R���I�j�N�|:q����&p����/��`�I�%���_D����GaLL5��*.0g��m4I����];�`,I���p5�v�����*��u4���"� ��{V�3� z �x�8B}s�~���V�yfd�L*�V�+�OI$��=�</��� -�;o)��> Y)^Im��%o�|; ܮ��Z4��t�V�K9�ź,x���7V���}�]F�ed������% ����� ��L�:E/@�"B��N�c�%J�,˼qNW�n�����.��Bn����[��lE�T=o�[C����q�W�`���E��"|�[���,�����z�x]�V*T���P�1jʪ0�U"9{�������h�'齬g$o|J�0���%ۙ��"3�4ƨtU�6����7�Ku�DRغ���z����Z(���cְ0/8��Z䜓�b�,�jC �t(�I�T�"�49?>T����y�κ��'/o� +E�w ����%����>���}:7��̊�����E�"��c��� -�x���˷����FOR�Mn��u;&�Q������S�#f��fn��5`�������Dπtn�1^�S��t��3�M����b���EU -�#�j����W}��e �9���Q�wAΐ��x�T'/]|�622R�%� �r -�g�O�댰^}����#4x�O������^�~��'7�����خ�:��_t��́�M7܈c�"4��GÓ���`���q:�1f���8���-X����x�q�Ծ��n���V\�Ű*��@�2 ��Bi�MC0'�B�+3���U)m����)%��O�r+�VGA/��v�_-L��?�A�P��vj���Ru>��Y��$�Jq�%F"��`�I�*\~h\p��;�����Ar��w����I�r��`3i:��\�Ks�X���`3Ĺ�m/P�i{��e�LN/����3��;��V��C[�#Э�rԇ1����z�/������Q��Ga�x�?Nm�y�F���f�BW��w���;���Z�ެ�\�{"<0�c��q -�4�F�@��)M�9z�/U&X0��N��.J#ސ����;q�����[9pS����0$�]!D��$��Vl�p�xI-4����)�T�ٰ(q��`O}}g ���3'�X�%YeM���2ϲdb)�V���uR -rن�\PX-��Wx�N��$�n�Y��}��O���9�q �b�«= ��-��%]-������k��/�c�^h�;�O.�S�0< ���2?�7�_<o��O�^��W�X&���H0k/��זgg/� -oG�+i���(u��a��e�#R�q�߷�2���e��Hu�S.P���I�"����q��h4'3��Qe)��R[O�K#��R6��*jPD2�mR-'L� -W�L�8gF��of)D�9��a����Lg�"�I^ʊma�z�AJ/�ċLD�{)�S��K+��Jm�%��G��xyZ�nQ������V�N��F�_� -�*|�^�W}�*�f��1�e��nv0H.N`H�5�9A�B�rԥ!�1�xV3��3��!��qtʾކ��/c�:��t������Fh�[���I�=o�������w�O��Mx#� �R@6�X̉����g��N* �0�����es� �t3����&J���'���LѵQ���*� ��ԫ�dc���l�O����o�ۅ�`n �Sy�K��pS�m� �{ͰU,� ��k �Si�\�=�Q)q�u��>��a(#��{�cxT{^n;U������%@��\����'Z rt���@bHbX�]���z����7g/^�� t/|o��;��=�����1e��ͦ�V�f��\�!�$ЧP�G�������9��SY�%�/��ID S�j�.�_����:���y��%��K ٮ!��" �������|n�)Feн�����E�.���6�,*�17%%P:������3�����)!� ���c̠c�Ao������W ��w���[-X�r��V ;&�"�v����%��Ũ&�b�]���Xu�('T���v�:������rA�1,~�e�\C�u�(�fa �S��L����%�P�����W��I�F�����p�df���{�:\$�{�x���;����JG��t�G�:���jN2@�^S�G8Qa�4T�["B�����-���WM71{B�7�>-�Bm#�M/L��ըxOD��%ф�v�LVN�~6��ƅ��/�ǏZ�"|������� �m&Dl���$`�}e���!xV��S�Z׆:-���S��!^����ٖ�K��tE�;�*2*TU�LM�|�{5j'�<p0 ' -Pw�|�ܛM�9�a$A�-�$B����]�ۊ�:z������m��CV��� -��v������d}���dRJT^�� vI��#q�$�R�`4�ǫ^%΅d��lr�Fo_���V�Î�h��L����k�xY:~(�>i�/$R$P��`P&L�q[�t7y��t$.��E���f�&H�������WﵺT#���jc����4�;��������[�.�#�����b���� �} \�|lj5�{k�$Q�F#c���&k�]�b���u$nɒ�M��o�O�vg+p�x��i�*.��{�*��$h��x��"ؼ�N��}~z��T���ls�V���W���`Q���v�_�46T������7D��[#?>� *�u�(��ʖ^W�S W����-uڷL&�#c�R��c�/�/�S��A��W����^>�eD�����D�`�f�6��'�|?P�s!z�Fn`�-<�`��s��8b5��l�������:�X&��!���QC:��oo���LN�����xomAe��Z�/""�#*S:��;�����ء�sЂm�X(��=G� �a0-5�w&YE�?�p���&��]����y�� :i�2(�v��/�-��/�Ζ�� -W�vΘ��@F�Y�5^�j��� -o���ސ���Q���Ֆ=��z��u�R����&k@���cɥ[�W�9�i.���*���]�Q��͌�M�Yh"N��ߩxNB����Tu/GђQ���6����YsI�ə�n�t��[�=n}��U|��P����f�����|��#ܽ���<���֎]��̠ڬ̸N�c;��L�� -��'�����P�B�e�%�\%��5GY;�x���=?��[����:��]��چ� ������^��sD}\�HYp�*J`F��RF�p�,�- w)�X!u�e���%��7����xw&b -o���Q�B����F��8YCXM&T� �ÿ�Ck u�� -oQ��\�0���d��&&Ü74��j�� ���7���ԇ[@K�stħa��VL��O�{h{��{�7b�$�^{������W:#Ze����(�PE -����9�4(�~+����}�:�Jw��]"���Aar���V�{)&�ҥ����QC"��(��.%2+�}�]��m� ��U��fW8��M��5��3B���5���l��L�Kɴ��r%4q,��0�1c���u���o8���A�E�O��+�[�m�-v[�ߛtv�����;��1O�� �N�^�5�����:(�0%�����â�R�1����v�m�6Z㼔5E�ZT�ex�@����(��Z ���.�X�� i��Y�@��r�ρ�TH�� ����R".pd�>�C��"}/���PS��$Y�OҺG�."GGL>%�� -�7�w����W���̊����be�JU$ �~ѽ�T�A�9²��o���@���o2s�i\.a���e�0�irG-4�;��WSfw�O��w�rT�dIX�r���j@[�c���5��^��ξ�b�-[�x��}G��I`��ʺqq7|�����@uF��~�#��R��8;���D?�Vsn�av��+����v7��c�pz0�y������^_p*��6E$����;����%9���{u%ߴ7F�U����tM=��c��.�F�F^Î�q�@iBUzW(g��|:��c������d��|7�P:��~�� �u��#��&o�9�����c^úaM�4��9M6�e�%����Tf_�Q�e����a���5�T���K�����}_���ਏ��w$��ܚ�N(ʵ!g"��(iM��p����Z@���`>fQ��t��a���HSC���p�x ��2��t�i�`�9Ĉ�HA�b/y�q�"�5Pbj�}�dW��"X���D��U�[惎��3l�̿���e��|�@�7cs3�<�̹2���?�y!=�ɓ�����HCe��k�29��_�X�u�.�針�)p�����{�Bs��.��Ur2�'>���}H�A�݃X�`�-�����l93>R��,8��<�]I��,�=s�nPO!3����M����cIA9�� 3���{L��O����Y���}o�66 m�i�ď�,��W��`�b�l�[��B��U��=8¦û�G�k��?�նo�&q�w��x��cW���˓��� u��Z���D��Pr�� N}��J����\PO�e�=��ާAc͢KI�^�ֵ�~P�#�@�����l&�ELV���+�y@�3a�vpi��D)�\B��q�A�����$E�a)�d��a�x�p{,����ͩ���C���m�/�k�y�l~ЍE�9�[P0�~�A����e&lv��a,�dk��Jy�[9��Q�L�X�D��yB��R�h�-;����\������9����=ղ�����)>;�Q�����;x~��������>L�����FD� �t��-�#��̌0fB$��ʮ�K�����u�lJ9�\�Y��$�R�XSj\A2��~��VÕfH7C��(���#�T��Y��2�� \��2��'Fےi�Q{3X��;B��5JA�2�0G�w�]�ӕm��#_��,�3�W�� WyO���73�{�劰��vl�w�#��&[�����/�/[��E�R�F��]$#��!���B,V,+�ө����J�1���5H�ZX�s�u7:9����e��~�֪��ͽe�@o����C+��ס���+S̅}�Xo4�p:� �4l�:'����$U����lc��oT �v�7��F��h��[t�u ��S��i r�~��U$���s�>G����������:�E]D�����E,�v�b0�~I�Z"�u�&5V�4u��yѪ}o���đ���S��AD|���ݚ!r��#T�!� -o��TE���64z,�.���l���S�������b,���������r���5�pE��:�d:�4�ǜ���Z�6���8�4���F��O���*����{������.O��uv�H�M�k�*�2���+�t�ɔ=L�oA]-�<:����x����D���l��J%ex���x�s4r�Ȱ��J&�/���:cS�7�\��иo����l��-u;kD�]L�� �z$u�`�85���4('��¿� ܛC����S,�����Ot -���B�!P�=��s73�6Oo�9��p�d��������ե·{�-���q?�7��h�`�ٚ��rbYfV�����)G����Lԗ��c��!�0?C9��҂��?��aL=��%�D�.`@�z�]��u�չ�|�>�M�C�q~� -w���P w[�[�7L�8�D>�l[����� vap�h|��VM�J�[���Xo��7�[5��^a��&7��!����և?F�{Oٓ+|�Z�?��L�.���!��ʯZ|(r�~·T�_�j���o0ic3�U�%[�4Z��%��=��N��V&ɟ応?^�Հ�+�33��1��Cr�M��ee�рTg��$*��@���n@��>0�%�XG���ReUت�]䡠�?���W�ω�ӝ��ث�f=ՍF���ֆ���Qx�����E/��*U�[JNV���$1�w��?2*�Z� +̋y��V�Xh�۱�`߾0K�NP�R��������S�4������ +jI�Y�"������I�9U��Ɯ����.hc�� nљ8c��5u���t��z��^��F�0Ba�dy���S��"��j�JzL��u n4��£��ô��'KEz.���9� ��X��k��Vj����7�����|��e�_$��2��y�����z@դ�"4+y64�^���]E�X�3.����º�t5"�rDA6�<m@�:y *���I��=ы���d�)�iv��q=l�D����*���퉚/�0�#��OD�$���L} ���͋g^�J�2���<F��ކ�����1�`�>� '����R�ʄ�@�Υecܹ� �n�h�����CLM�S*x�"��B'�oP:�>��y�]���uZg�3hE��Hd�v���Pvt��6C�;�U�[� bqx�\ �cb���24hi�//�o�P��%�]U<}u��Tdy0���&�W@6��i#��"�7XRG����|��{v���ݹo���OE��{�'U�[;&UE��Og�L���3o>H1ݾ�<�D�n�(�yJ{��9��ٶ"��dl�2�x��E�gUF���}��x&�L���qn�o�l��_�t)ST1������o"(����omr +�P1���/ ����m�;������W�Hh@C�(`I��#q�1V����� �K�j<����� u3�;�^�#��k��#L氟������w(����pNDڀ�ƥ�2]Et\E�_~$x^zP���Ҭ��8 ������g���j�RF:y`U�5*����[� =K��:���:�sԞ"5zBe��T���8o���>گ�4C�^9��,F~Sd0�PYbT��U���Y��q��o!��l �^�W�;3G�Zy���%@�&H�����_�ݷkr�c�A<�;��Oيw� +�B��l�LLj$\@�՜��Eꂇm�zY"� ������&�pR�B�=�y=���e����h�[B�UX��m� +�ŕfl|p�Vmc�#%*!h�)����L���d ��DTMJ���u0i^�Xj�LU���(�E'"�-|��7$��k�?�"��s���#��N�!D^�k�N��)��R7q�:�FU�6�G#Lޠ��x�G��� Ɠ�99��ƌ�H8��܆�E3����0xI��t�����r��k&>B䛄J�;�~���ũ���K��Z/I�K��\�l����2��n��p���3v�� +s���ڿ�=*S}���*o�_g��6ԅ���5��d��"L�t�@e"�y�)�:�H��[F��m��٧�Ի#�Dzhr����>쇀���� ��d�^��2;/*|PP�?� ��6� �i��� ��zuQ᷻�T��[+�ct&����`����X~�Y�=a8N{��\��̜����CF���_? �8�|�!�5� ����r-~�P�-|������B��� ��`����t�y�]�P�8�z���6R���`������x3fp#E�E�7M>V��L�6���=ߢ6o��`�y�J���QCB��3����R-�Y�ˌ4s�4�p{�z��=��g���%��EȂ[zz���<��oƔ�#Uʴ>�->��b��?e\2_AT�~GC�z���N�˂�D%b����Uڱv%���.&3VM�ȷ���}�G\���ݕ��o��a�>�m��áYLO �Tb,���q�^C�)��[�`�p?�����c��|�Є�2P|���Mv��,���>A�`a�4��(��~�����.+��R0K�f���#���U� +�� u�ӊ����ȸd�&<��W\�d�{����w�|�?�Pxӎ�����|�N���ƝlV �-~|��ݲ��&-���u� ��VA@�-���d�>��;�ML���R�u*B�� ��O���7Dp&v�9PQ�SA:�`d����"���?Of������N��A�X_�12��9�� I�B5C�]A�"CL/Q��$*?l�*��u ��,�3��J���W��:� >(r��r���gif,��<a���aox>p�!��KV��&"��v⩹���-��0�㢬��$��u3 ����֧BN�����9�J"��q5m�y�W�`���L������f�H��Ʊ�l Ű�q#y�k�ְ�W��18!�4Y���� ��;�X�c����"�L�-��K1�n�:�D����|v�T�Q)N��w�Gθ��O�ѵߧ��G��M�`eS�p���U}�q*c�����.����h��{�Ƈ��['-7�N ( bb�~�1e9ʋ�#,��~J�; ߊ'��s���J�������Ǐ�߀}w�������̋���UA�_=BǒH|� �"U���ȯ�B�5qf�o"�����ߧ�8c^�TY1 ��i +�vK�D^��8�[��%�� +0cf��ҹ�L� �e��1�Okf�YԂ��^���}8�m1.���UH���!E��K�6F�Ӌŏ�"���6i�E(�9��/�+��.��g�$�|��t�����g�*-ѣ����tڼJ�?�DIJ�,�X�9 >b"zه +��Z}�{�)֑�r~�+:���{�os���m�6�)T}�!x������U�<H��㬹�\Ë���a�O��i�b�|��'�$�ᛕ�68li��W����� �o��a�2��ۖn�@8,<�v�">��ʓ�r��7z.�Db^�s|��y/���X;��q�NE�;8X�����·('O�4� ����ޫي0ҩ�-J_$j^#�B4Z�ةX��?�+��rR�^;��������m;������Q蓺#�IO>��:�����j��j3���� ]�Ʌ",��� +���A�+�Mp�a�B���+�O6R=� �d����9�V =|�g2ٌ]��1��FH���2_��z��&z(~WE=od��A�?��xS��o�h�~��V��ñ���X�K5�pYO8���ƞ�OL���8�*���h,ݴ��^�F��mH!�qR�����z����WX)n(RŢ31�x���; +��"�y�f3H���%^j?_�'� + +� +d����,2\��u*���8QE��"��Z�%����7s}/�|��ܽh�1�{�e�1�U���9z�X�v+��o�t/�C����O~�Տ�>�#���7�MA&�x�Y��]�\A�ìg.%�Alӷ�Ca`{��������h=��F ƾ;���y�;���G����t�F�R���m�K��� 䋘߇Uݔ��#4)G��;C�δ��ro�o�C�t��eFu'�H3 �-��9�;�#�GzSc+ꄜ�jx֓�ղ�����AF3jץ#�k��à�d�zI�����I����*ۑ^�%�ß�" +��w�c�UP�'�}��7�Z>�x�P�5(#Gh�H��l��$�]�D�]%d�{i��&ł�pf\�AW�G;1}y��9ϕh�p�V����dB *� T^�a����&�)��]�{ܧ��*vWK�0���/�2e���7�b�fI&uN +�V-�tx�����1=�j�i��z�Q�**j�X���C������!�yV?Z7�@����-�j���4H-��2t'ٵ܋���m2�)~�T���r �Ig��M,��Sd Je c�K!|��dJ��(-��գ���}���B(abW@���Z�&��TDic� �=*5�s�+N(O�m��0N��Ŝ��OŽΘFe��X*��}{,�I��~�1�bpD�ү_��hV�7o �[�C����g��M�Ì�sY�;�� Uv�Ԇ9�0^��V�\q�ƞ�VSY��[��� +�W?k0����|\���->�UKcyY�͵����'O�SXu�c�p��l�ʒˢ�I#���Ϫ>��v�N\7EqD�:��d�n�+L`E�����և��G�i��)���pp���`R��o�#&��0�?=K�� 6Ӏvܬ�eg+~m�%V��"g���u�-�Uw0��3�1Yz=� (�\7�j��C����:��̹YZ��R->��"xv�`F,.�eY#�w���aS�<�kdR�Ӵ9�H��3QO�FJ���N��B�g1jU�D�-$����/ύ�*v&�p_��N�sC�~߾3/�ۜ#�����M^�Y"�%�:z*=m�8?�F>��2je9j����� ��7Q�g���L��͠n����\ug"��s�pPei�&������ǙUjsK)K��q�"*;�X��5S�e:�P#�����mo��*/�Y�T�Q�'��g�����#(&G��X!�L[:�՚ݔ:��7OD�>�e��ӱf(3���B +��hڛ��}��-���bƬ�ߚ�E��Dg"*�Q�$ɢ���e�?��3��:F����t͆8�_����@ +.b��9�.�.����|�%���/O����`�r�|xSe�l2����3c�C�\��c��6�|��̪T��m�����q�O�<a�ޑ�D�Ԭ}�xb�s���|�����?���bLs�� @�m��:Z*bE�0��u�K�i���0<�sb��,��O�=��.�?�l*�7����)���MT��h7���5p�- +>P�w�L� +!,ˏ�V��ˋ뿔'fv�1�,�o�����Ir�E">�͵�� ������P݅�K?0rВqt���^��nv��tw>C �=P)��e�����A?���Y�q:+�����Vs`��{+ʤ.�Qe[�H2�mO�_�c��#��l���g^@�A�5�@�Ğ�ӡ��?�A����_��~rJ?Tfq����r!�}&B����D��Zfk�+fKu����d0L�]�������������)�����f'����!�����IE�C�eO��~ C�����,K�"��������f�>��;��fG�����lQ�U�7Ē�V[�!^RqtgX��u��L�aau�L]��e�)B�z��m�E��M���@3^ NJ *�Z_���Q�.z#Ep� ����.��}��sFk�Q`�iU�s;��:��ir��$t�i�n���' +�í�x�#k�X�kPN+���B�{�=��v��۟�$�0�� ��[W��[$/5��PV��i����xԀ�#�Fm9Uiq��A����&b�zKN��V���'[�"��]�x�{bҟj]������^��?�?D�l�k,���.�Wȶ�^� ҡ.���|i<P"xb"Y�#��H�wX�zv&Rp�]�X�vO~=��O�m�+a��l;�W��n>!��^��X���yl�St֫�t�>��/�}����(~xӔ�����*�Bs|&�� *�����s~��v{ +[ GU�E+�\�(^���$�R*�5������([�IRx"21���{!���a��T������K��8�l�Oi2Ũ=N�Ή����5�3��ҍ���R��3)����~���E9�����g�)�tnr���b?���?E8E��(*��R?l�bE7+��j�B�#�%��1|�0�c�M��/���0m\ +j���Qփ�+�yF��e���ܰJ ��1�xz��K#ږ�wNJ?�;�"��GѸÓ�p�r�~��3��1;��W.����%���|z��"y0R�̚2��A ���{����n����=�ZE]� +~O̔+Q��|��lr�>�,���=�b���sZX+��[�o���jǣu5x�Sd@y��fq#j~f5�;A �H\ e��u��ՙyN[���c������(�^��7&�!�<�u�" +��jIW��8� ކd�ɳ��M��_�z�,|�g�4�x �0f���S�cռ�C:S�l:������E�"h�8� �Em�h�n�Q�_��9 ��x&2ʸ*�5V��|��?�ç�.]�q�_=�H�F�_1���q&R��N�w�����&^~��w:��?�7+r��p��Cq��ĝ�C��e=*�% ܕ��kf�R��b��ya�N�((J(=��-o�٦ a淏H���z�R�*�R����bL�����2K��SSԿ��������o��Q �I��� �i���o�|�fO����q����d���-�ʥ��J�ʱ��6�Q�5�\_��h��j���E~劜58HNW+|�G��ƚ�A辶܄��5�9��,��0��-��Y�G���0I=4 ����'����6�Oj�B��y��~��F�М��3�x�$�pZj���E��a��&\��h���d3�e�&|ۧ}���C ��d�z����J,3�iZU=]�l6��({�D<���^�5Ļ#���k��e�<S�o��[ZG١=�R(��Z�Π,� ��TdqH��D�/QN��Iް<P<��gȫ�(�Y~���ø���9����Z��`�|��1 ��]{�N�x����D��Th1����`����X�4\EDb�3��g��G�CI�'��1����h�%9���)�r�w\��|+���*�E#��IO�e�l��ӣl�㙪�a��3�B�ѓQ��*�������`VC�YY��V�_ib���ԅ�r ��}�(���p;�a�x��b�����k��$6���)^��y7����r�6�YL��Zg�ikm���Q��Sق�b��0/��ğ�� G���o���v~���d�=�rˋ�vb�EQF��^^�%�ۥ�|�2Z�v(ɸ�ի�x����g�V�w���]�6�b�"0�ܡ������R����R��9L�,p�ny3�mԄ���b�\���_��t��y\K����54�����������p\���g����K���ت9Iuu���}]g��A����d�l՞"m�(H�s��vl��Xb�]rք_�,Yw��~�Fu�A�8c#��2a�����=��c@\�3�E@|.�-�|[�"�������O]B�r��+0�pon��&N{.!٧~a�q�?�����0(�e���X6^e��ޞ3Yn�8v�ߜy�.>ы�V���,�p��ʏh�f���#[�dm9�W�8�i"�����e����5�*z �R^�����8)�~��ǎ�me�Km�V��0�s�l7�+]�����ScrO�>|���o3{3k�6)��S'ѹ���dy��]� �h��O#�_���>D��T�_��*�@��q�'�v�>��l���g~���X��v6|ޏ)�p3�Hh�{<g��й�9�H3��跤U�''=go덭��o���8U>�![�y����4f���g��8��^`����b�(]~��Q������v������0���-0s;/�ӇJ�H(v��mL�7;��(�H����a���vYqf�������|}���i�����@��g6�>�i�\a'S��oz������ݠ�y$y�s��j�1�+(��DJKr��"Sc�y��m+�JZwKt�u=�w��|`��[�_5o���L���;�m�����|S���P�?�W�ox(�0?�ss�)�]�H.����j���թ��P�T�Q�3X��w>�>�&/��}h�{�ؚ��V�`���#���ఓ��,��] ������B�"�\��R��mI7�<|[���� +�RevC��L�hz�j=-� ��˗���w�X͍��\�Qږ��p 4����f�!��5�%3� �-��X����t=��<])s=��Hg��o�z\�uY9Wj�o�\./i˹�Rdt.����ʸJ�u^�\�\a�u��D��m"�� +} Gi��[�7D:�k,���v-~�̒��C:yM�7�KTsk�Pr+F��Vj�χ'�r�WJ1����qY�"�ǣ�n�Vߎ���@UxcĈ< ^=�4��oXd���S���S��w�C5u�Ը{�-~,u�'�Ĕ�����cEW�[�*�p�����{���(��0@�~��Tz>6��0|C�o7e�^s� ��Y*#�Ã�T�y)noa,��\i:=���@�zv��o��c�O����w�C�"(�{����c=��h��tZ�����O�q"$U:�`��m���䗿�HN��(���v�;�H)���^`\ Ճ�S�d V���|��BR?���й�#��f�C�������[�/��ڵ�P,���yd����=��/�P$ON����F��LM��n���q6���g�B�3�ϦkgH�T�1Ҩf��?�����t��\4���8�fM}�彩r痿��wP�sv�"��"ߚb�<��÷}��m�w���7V����EC#^*��w�/���Z��"�\���ti�(���)��;��\��A���j�[�\�Ѣ�`z@�U��h�0)�4���� +l(�3����3Y�-�����M��+�7'��Y�n�rz[���V�y �mõ"%���9{3E����j%�������9H�p|{�xC��G����V�%|�M�<�� ,����[�;k�i���vŲ�ʒ�K��io�p(�/EL���D�;֪�d�eҌ�y���\�9�#��ɶK��ڥ���q��B����5VP�-EvUվ"t�GzJS� �5v�N�SVe�]Q��a������*�� ��&̩h��9�l��D���ǹ�IDp��^�3�����W�]�/LwR��S�]�6��E�°���!bTϜnx���>C{ r�"�M[�@�K��x�����K�aN6�P{������ +�t����������Y1�1��"5A�^'s +K�F�z�ì�� �TA�5ԭE�Y��av�F���'�KE��G ���� ���� +s1"E|yZ�Y��yd���P�b�B���]x��'�e�;8� ����n���J)�$ �eGЈ� +"�U~��|�p쓧��9>�\)�EB�b�"T9���n����IFN��;_4b�H�M�� �`c2����Ɏq .e���HM���ѝZ6�'T�Oob�&�g������/\:��?���+dڭ� ���e<c~�Q��2�v +V���7LK��������P#�tη�n!k��֚�-r�6�u��F�j�yE +|��7aa�o�r��Ȏ�y����Ί�z6 +���Da�""�y����"�c�mc�q�-�"�{E�}�����������o�X�ψʲ��ȩ���Ŝ�)~UV������y���0��+]w�!ڼ$�5+Ӽ~�@e�6�Ԟ�v�t)=�.q���r��1}ԡ}xWD֯�����f�gob�tL +�"d*�1G"�h�q/�Sl�]Z�0&.��-����$Õz�\��,~̱j���3I/tɺ�M� y�zeH�$!'-f.y�vn���yO�l�,�nXՉ�F0]�uy;/�HKևo�d�![��)���M�y�l1�`Q����hS��:�0K�Y:�� ���&p�j��|���~ +Dl�3�Q7�F��r���+���KzY��0nGryXQN(�n)?+W�ގm�e�M�%R�2Et$V:c���̠��Q@�o�]���Ӫe)r�F1�x�A.��jy��lO6_b� +of�%�,Q�E�M n�ad�����/wi�Hq{i���� +�|v��&�\Vj�M�>��:��#2ƌ�_cF�� of�1�$�����gq(�M�r���|I;O�:��[��u����%g���d��%����bL����?�-�{�>Q!�!#��#��t?d꽛V�5|��a�`ܔ�腩yPup���]t�ʁӖ��{6�"��<BP�w��ƅ���r�p�7��\'{�Wa0��D�+H�R� ���V{Ŧ/1ql��I���BSD��#���&�����`�&�Û�]�}l�J�y9�7��%�Z�� ��B���m�{=S�DG%�3�o"{����_�+#��_bR����>x��ޫ(�랳���"�zU�9�98���Oj���vql��'�e���J�6�˃�}9㑻��d�� +�r���t���ܱh�<��tԵ�L o��p���Ă��,���7<9�1`䣻n���}z��KBĀ(� Eh�O��ڿy��ܤ�X���B���2>�ٴ.������{��oz���MKg��0:?;<�ʹ.z�x͟l�|���m��9$�1��w�:1�L�=t�V�p�-�7A�?S V܀���-���r�S�$�,|���%p%̛q�,�,b�[��k%T~�IϚJA����p� #��ig�c��F���@@'�K�Ȑ��e-���/ܷt��ƈ�^W���|�9ӌG�'CB@Լo��`�����c1��r7ew\Y��WD�R�c�#�c �Od�D���{��!�r��I�$��3�e���Df��2ѵn����fP&�$�#�U܃�|��U��5K���'dV��j���4:���4�r?"Xx�9� SN,��ʂ܊�[�N��77�:8����8N;�P�����|&��Fr�d^�Y�|4�`�2ܶ!nk$�=p���{8���hX�7T+�!G�_k7�47Y-~ʖ��Ocئ�����"E8���P�q<h�~{�)�2?�g�2&�D��B�|��<��y�������'P�kٜ^99�{�vj�����-��WLO���J�fzB��J�j|��//6a�7��.��c�+�A�&hEA��Ɛ��X?,���< +{��Q�<z히�uU��1�"֭�ݳDj�3/d�[�5��0m��2��x X�-~��ؗj+��U\�|����9}�Av.�TT��m6>B��g^�_f~]F)|�����rTXN@0�ƏBYi�nQgYu��<ф�8�q��B���@{4C�1�"�b&�$���g�x����^x�w��Ś�ba�NN��,V�KGHߟ�n�Reꋈ�"��zS+��5��� o�����&�ɠ=�H� ? �OJ��{$|�=��w]~|��S�_��:0�e1y�qG��Ug+vP��S�*3�X� $�f��9e\X�����?o<k1�w푆T +�ڴh�~�5l\B��~S����M爉���.F7�{�f1�l�#�2�%�"D�X�J|��X��u�%sy�� o�I$R2�K��%�A���O�Vf���ۧߘe K�7B����_�������V6F��_�5�p϶X�n"�Q�X��./a+R俳�'�Y�<�!��ٲ䪖?c�#�M|5�,b�E�9y$�O��@m�aUB�u(�_�auS@ IDL�=�g��Ѩ�����O=�!pQ_�%�K�h�{�T���7��7�2� ^ [ex5@3�2�~�N�b�{�;����ֈ�O�A�LA��&H�@9�Ĩ��CX�����e.ձJiEh�7vtn�C��4:�I��>�o�8�$�#�C�k�8�0VDJ9#��3�x�:�Ǝ�?�q�`��F��37le��i�Cy����/2�����US�\��Y�k�O[��9m�إ��G䣨>�n����0z��*GS|��/�;��q� "�?�xh���ÀfӚW�����;)�Oi���WTi+���L��!%��F���Z��=�����#����K�s��O��9(���|�,�K'J�@�ʦ���M����ŝ]��.���$f���TV���Y��o߄���w�O�om3��";���KD:����ϔ���S�<���X9!M���<��ga�ltf��:|�!�mO#��4R�p�o�G��������͚�#� ���������d�sU����=�����$"�[�T�e�o�pC��Ң�ނ#1��h×�̋ �k�B�(@�"|�=<[��eN��yQ�@�ޚMt��[�7|"��R�)|��r� +ߠtNZBU*U߮tޙ[���J�"�^�>9a����̪��o�hC�T�C����6k�#���>�H8�����T�R�C��`Z�<�#FS�V^��6U��������|�����u�l�'Ï���K���*�ڥ�Ļ/D���k�߰�����>!�O���k�c���1VA��w�>�g�k�Xp��(���"�oڦ�"4�E��PF�x�1��eoR�67+��*`�-�8�o1<�(j�R��3�"��e��\��C����Rނ���;^a��Y���F�$�|�')��ʛ���4�-py�5_�.�ի�^�"0ܦ��'�B���p���Ǐ0�՟c�l9����H��p�cR�Q!x(��;��V-g`�~��l��G�S�NK��*S��GxD�fV\�]e�<�v�P��-?��+ʳ$��5�"����:Aq����f+X� +�|��"� +� �&���Z�Z���w��D�9�H-]�K�><H�>B�%�0�o��QT��9��(�ӳ���dVXbGڅ_/'G���̘���;P"��>�y+�qpD:���ß7[����A� ��i}3#��qq�bQ�Y��P��3���J���Ay�}4r�Z������Ó���XyG��R��h#��G���]F�s,���*/��m[�1bA��A�41I��譌�l`��k���&�>���N�o��*��y ��Nzr +����B3��I��l-�Wm���ŏc� ���N ��c�?5��أ�u���8a�CC%��;������fV �����x� +�8P? .�RV���B��v^ꄮr�}�&���@�����ŎWz�x��H-h~�A��g�n�7�4,4^6zT��f�4�bu�:�:b��ʌ+�-8 <���=Ʋ�2e�FE��$%&�����<���F���?!d��y)���d���2��T#���4�%��Γ�,�{��]�'w����.5*/�D,H]g�y�'�?���|�Ub�o�z�%E +�ֆ�!|�<1�"����^!̼���!���+�Þ H�v(/�;������_+���]i��?�=��Zp�ն���"����-|�!��h������0�n���X8!����U�8��n[�!� !vxvw3'��H�B��d7G�, +���z�>t0��|(�џ��6��+�?��1���[v�YH�CĬ�4"�2,� +�j�?|VD�;[V�]#Xq���p����R�D�Ӷ�(�>�I���&�dp�g��B�+�r֔���<�Hu6�`�yo�m8x�2r\�X�g�Fp�Y��8el��3�U�V3� S#��>ˍ��3�և߷"6�ڷ �ow�U�͡Q��>��56���O�����=��E<�D��.+�e���s�)$#�-�>:�*�Ӗ�!)+�\&0�s:��+�a�Ÿ1��PT�'���VE�̴!�|�ua�C� ��r�R�Kޏ��i�z�#P��h���_�Vcd�J^�D��+;����֮���\����*e,:c���!�m3&VE��Q�T�w������[�ޒ��d��|����c($�U�YD��h�L� +'j'|��!�8د�{���'�i�fYHᅸ�v�K� �xKcaA��.�%Z��Z!Yo�y�u�u5V���}��7N�{C��&)��$lxK��遹W������y��P���E~��7i���w?��܇��@Z +�%ē�"A#���匈��-����s�(����+�p�ɣ��B�&a����%�U +,_��G�Ǜ��Sx{S��C��>�����*��"L��ϟ0YE�tf�s5�ӝG�I?GS�N3�sjE�c,S��}�gm��4��ɋ��g�^�K�F�ez�܈9a.b �D`�33N����q���q�O�V����]51�0�7�)�c܇����K4n|?�at�{!%�2XG"���G��ru;����ʎ�d,ncw�2]�����/����zo�ѯ3���Oe�@ޯ��Uڑ�~����2�r�}����J�����E�n�}LU��6G�u +��zfy�s�f����Xchi���*�������嫧�<z�ݓ͢e��'�����{�.��&���(�X�I�<[|ȵy�<ͳ4��&'�E���,���?|$AMJ3���dY�ʦ�]ܰW���= �B�to����Gj�t�d�$�0k��M�.���.�� j~#���ͯ�ڃ%�����(���RJ~d/�� ?."�K� �$�f�÷*��M�¸�{%������ �*��e:jj^�ߺH� F�8I�7?�(� x$ⱟi��}_E(=��oѩ��j�tD�x`�H����.?R���4�� ��hA9[��@d�L�g>�Я�m�UٮY�v/#)�2��<e�vR�e��9L��Gpl��������fVn���C�IJD�ہre'Vr2���Aw�T�y;��"�Aݭ�� ���z�^@J�4�ȑq#�;/�lB=�a�Н�k�"��5㬍�o�y=�1�=WH�^�B����������mb�b��+�s�&{O̍7Ų�[f˟&{�ۇǭ����m�l�,M/y$��h��t�f�-�m����w*��,���M%�"b�_�<yn^ �i����K����K�g��VˊTm�x��m��C����V B�L�)����L���3Y�֍�Wo?�P�}$�某^�=|���&Þ��XF�hJ���N���������/�LҼ�Ql-o�I�Yc�)-9��˳"f�$�kSF�w�T[?���x��,��x+.�ꓖ��R��������i̮qMt1)� ��������IZ�n^<��Y�AL�$�䭋��/)=���Hę?����ʓ��U:����ІE���Z����u�#�7��û��q���HD�"�y���O�����%�a2�J]i��݆X�a������`L��m���MєP� �b��S����GʹW�jNPfR��u�þ@M�z��@�%>�d�lNxS�{(�8�B�i� �1E��+�i���]�!�o_�\��8Dd�;�������W�\��s� 0;Mֱ2��a��>�����y��`�J��xi-E@��K��Z������w��:ݱ)$*0������u�����j���kTJ#ڊ���*� ��I��",�g�+��Z1"��C��K�$���XQB�������������tP= �Qc�|��ݐ�ܥ�Ee���;���,��^���x�Q�,��Y�&�4.��G�����>ޠ86��� ������kՑZ(N�L���}I�z9���pK��E:�d:�ϰ�� �s��?����?:��ɠ��O�e��?�N��V!�ք7�Pfk�l2$"\tӑ��տMg��ֿ�]N��%�c*�ˢ�� 3m7vÑw�M +��ZV��辙��"B�q +d��� ~ ���V$�� +(�R4�*�",��� *4O��,Is�-,� +?I��y +oֱ�.�m�i n��k�Y�S�B����i��X�i��pPkb���n��?���?�����ﲧ/�}t�:�>;���� +�u���ܬ+�v?ww��9DP"��,-܍��9���w=��3��ߡ��$B�[�h��0��S(�V�Y]�1�� +�#���ܕ뷹���m�t�� �PpL�X�3��Ҩ*@D� yT@ue�F7~�F��*{��_Q���I�P�e�/~�� K�v/͢�T���u?����&��ao��1��r8xH�Q]1n�q��*z�<w#��!�@;�W��9lm�̓���@�^�����B�%B�p bz�+ME�!��dY��J��v�α��Tz�W�>��F��N�yN��3�*v2�(����τ�T?w�k�ֳ�j`�<߯_�z�o��x~N�ou��D�d��{$���0�⮘XzQŇ�ӫ��]eI�g@� �6��s&�-Ɏ0 ߲�:��};���!��G9�!� :0$`��vB��33�P����e�a��ӯ hRpD{�4oҹ��tܓ~�VI��p"�bc��A���~����;�+*0Y�⬩h�c� �.�/��7U�4���Cph�V�q��|qg~?���8�-����<��LZ���v +�xb�9(��&�,~��"�%�b�d�� zڿ|�,U>2�t�>K� >f5A>)��e\��!by��W��d�n�M��>���'�,�E�Z�,��ޅ�C䷃:���W��4��N^��WL{��b^!,�d$ԍ��S��]En��1T�W�o�~ 7@�g�����W�9�����@gc ����~�?s�N{��U��i�L����Z�kɽ�.�z~�Ν�:�_�r]ߙ��ܿwt~��&����p�����xz���s�0�ŋ�_����?s1̵r�>��D���}�;���UZiVx�MR,��1$�ſ�*��S�ǟa>wa��D_�(bV� ��3���2�+�y0* +�x'V �xN�_/>�ۅc��8�.���4��C���V���{�o���1�ۥ�K|v��]�Rt�6�%_ڔl7�y���` �;���E��Z%/$Y��X4?DO�R�Li��Yx�d>9u $59��r�o)l�&��HL�D�Nj�Xij�OC��fU�8���@-7)�ˠf1|�Y,;�Kړ�l��.�l��7LF���J7�=�n&�u�PX�5�����{���ZJ��c��{�=0Q^1��=䃛 B��|�CT��nj���q���g�*�[x;�� ��ecV�5�#z?Hz�D���e�T6]��.�� �8�p���q�XQ��55��f�4B��3�[��������5��w;H�v����8�;��禆h�_܁ߧPҢ�0�q�Ǚ���A��wE>���#���|��� �jN���~�e"��=��G�I%�>�m��A`2n�ҹ|�)��v�f�u2͊�*��c�2��c��L�X�㙺)J����ZO��pY��2ON�/��X\p(�<� ��0�CQy�����+���gN� +��� ��-���1I8�VEP��i�f8rsh�D�m@�3i���#�(�2Fߒ�"m ,1�:�2�ZjB����{�Y���;�zVy��\ +_��>�d�шNDz���'����É�j�A������ˇ�?�8B�O����C�"� g�6�%@n�/��[p�oA�[��y�w����Qx����G����h��0��a���h�� �G=�fi"͐�8)��tj�!�C0��r,v)F�w"�m��^� ��~Moh�^��9n���w�̈��r9�bL"!�0%X�m@��Hc�SI��iW��Jg*�ZJ����>Q���S퍞OtI��?̓�y���7�m���V)e��H�4�4�xn �76s�5k��1����{���8�H�G�x����L_��8�4���M��b���m�X��KB��P�5%N�.������!�uk?�ឤf��o�i��ц�����MTJ��ƒ<�(�kP$ҁ�{�Se�29;Pf���e�nb^�aI�2����\L�����5���<ݤ��]/GJ��b{����D��1gh�f��)�y3�G�D �3 m\A�1�e>�w�� G`4Vb��8"j@u!2��@��?��uhE;��v� �/=Ee�r��V��,��������e��Oƨ�y��-D����7��|���w?���J��c��U���FC�1]\Q+��z�N�����I�S��,���l�5##x�) +�7C|YT�4Nm'��M����g�W7oO����$\k��_��n�)լ�S����}s�?|�ԁ�",&���yY�=I�W�Y��^��4�������;$�ƹ9�>@��Ar:��>Y���2.�jQ�O���(B�_�����Ꙛk�����L�-�����gm�n�Ϣ� ������!Y�R�r���Y��!"՟2,g��Ib�� �(���g��g����a:v]q�����RS��j���sG'�~�b�5�y��F��XG�ao]w�?��:�H�����i�,� �o���Sm�'�m�B�7�'�;i +��!x#�W��#%�$��hvb=�E��s$�(�zd��H�w�y�g8ӋLb�!��p���؆�}�����c�����^�|m����Y:�S����u�������z'����L��gak�U��2�ICѤ9pz6]. ��\!� +�-�aǒa�f��ͦ�k<E�O�x���e�}�1���m��ᗣ9���ɻ�ܼ�7ͫ����X{�[2�"���r����ey#E����f���m�=� +Aݯ��N÷&U�_�z�iɟ�&��I� �{��#>�BJ���ރ���d8�M˲�J��_�T��"Đy������u��m�ڠ��L�/ͪ� �� �y��pa���Kx�zN�nl�ct�DN���jY��%�$*�ߧX$3�)sx�s��E��U:��mV77( +�����P:.|�NEҵ!�'!X��-�;�E��d:�QL�]��$�c�阁Uj���%���6�o!c�ы� y����>*=�BTyM&ͳ0�E�=���94"� =���s�ʡ��;�d�c� �+��?�bTz���$x�H_�Q:lT�l� ���Ϟ>�Y1� w�d�g��c��V�1��C%�Z����e��I���x�=�\*x+�z�Sd�N�q���E�OXo��&�Ռ�`�1��u�e��f$��]r<d��[��.���=9�9�2�T����'���5�IZ3��%�@|8)#�&���M_����1yO���ᚇ]�̸�g + �L�r�|��1F���2�+��d٠O��L~�w3�l,o��h�Q�B{�w4��^���X������Uw\�뿟e�Wϵ��~�I�����l�l>���F@�]B�GS��f��.X����: �:��)b(|0IKTÖ�U�[��@���*_��o��.�0i@k�o�A��#g �.�V�j���]�/Fer�~[GDt�ռ�Ҿ̋dg�v����Q��w��&&�n{��Q���T�� �X� +�iT�c�#}�X���_+���}A!B�fӅ���E�9�OU��=/������*Ue�9q�`�щo���C���'B�Uě?�ӳc��vZ� �1/�v��0Q�R̛���z�ׁ�)�M�t�,����er1Wx�=!� �M"���'1.�o�pv��B`WGh�(���(�a����^�f�vP����t#��������7E��}q�2����/����݄S�G�y���X� �(��\#M�;õ�5\m�'J�/>�*�Ʈ~bi��:>.$������n�q5��'cܨ��P@O/&�k�;���d��e%�2�T��E�����5Q^�l��Ϡ��bA$,��6��Q�4��A)��И��%��T� �Q�(~q(�����y����Y�/�7D&m=.���|[Q�jK5�31�}�`f+D��V:���� n�X�����F�9 E�:b���D�]��?�ە��gC�Od�,�p�ࡈh�kWKW�M��P��c]Ux��8G�JBn���'3b(�L|l� +T���\S�mun�տ,�J���-,~�ؑ��عǎ�B�SL�@X� +�C��^����3�Q7k�6��EP��e2�c��E���W��p�"R��و��N�yP�*&��P�r[X��C�7F�ȑ������@�yi���G��k��.��9�]"�Uұ�'q��}����D��� zh*���bf��%��5E�f^����X+k��/��`��E +.n�U7��UgB +��@��k�[p,J�b�TR�ٓ�f�9ߴ�'8.E��S��xK�b`u+��e����/V�G���[D���3����;������i�����X#�`��w�I��-�R��D��zr�������S�ʧa�y��k#�z�E>B5oqL=M��c���8>A l�VK�O��(�=�DG�.�ў���Cx�}5�|&���5��Q�tYy��YsCq�4 +Bmx�Mt˻�,��"M�Fd�1!_�y#)\E�8�5����I��nε�+�ʳ����˔���"]E 6�0������mP���e��R�.b�}b^��xA͊ +�u�#B�o�k$�K$��*°B>X�j("�3���s("��)�{�ө-2�Er�,�Q�X��s$Q�~�x��%����[sɖ& +>�?�:�9%^�ڹ���%S�RJ%JY�S�L���`(�qa��j�3f������7=�Ae9Oic�f �?r~����%�x�T�3��XW�H |�_�����cB�-b�2^u��Vt���-H5V���?�VW��2@�#����S�s`.�d4)�R��x����)�v�'�nj=���L6v�#�ꑗ��g�2�Zx3�י1�f@����gyd1|HoI�#T\.[a��A� �� mT�[���j�ͮ ���ɏ;��(ꝇ���B��WX4��1(Ƶ]X�����`�~C D$���х�r��yU�7��uހ��^�l^ +�t��O��1:�+zd��t��<0��7Su�@b<�Q�#DN�����Z~�"�1�=�}�[&�=8�]��`�7I�9��#d� nu�x+�u� 6�b\�E]�`\!tI֫����긷�1Q�;�h=ߩ��谴 �"Ût��o[!P[h�A��Q���0cx�>�F�\&)�j��o-:Q��UC5�T��� �_0�AB�Ju�W����y���X����/0��]��e�濩�h����ze�a����Pqo}9E��T��<5��m�dٹ�?װ_�+[=�*z�s�[��l[ ��?��ab��f�X�U��h����0Qp�h0�맏�������;7OY������o���'��Q=b�\{?Ɋ! +�d��#d��+�g�H n���yy��^[�y�N�"tα��C� z�gOF +��֬��Wx�kn�.�;�d�RB�P��6����e��ݽ�ġGIu�BI0�D�/3�p*�Dq{���*V|{&>�5`G�l�=�v#��!i��|�e�"��Ԗɣ��[���(�槩 +��`�^aE�g�h�~ބ�@���W;�^'�M���p��wL].t��S��Wي�c�Ӕ����e��p�g@�x����v@����`�dڌ.P�iB���S�Rj!9�~����}*��2�����wP���pr��j�d�/0-"�[�;U���cXP8���in�ډ���sxK����n7eF������¯7�+)��]�����8�qC�+��`S��Hj +z,U�ʎ$�� *v7�X�%�40|vսπ$vN��-�� ��2�Pc�"�Y�JHϋ@��=*��Nx�ד�Jsi/2�J�Yj�FMg�L�~��V �sqY�,���!�gHCoĻ�{�r���aX��0*��S���� ���#Ll��Z!"[6n_��B7 )H��,�x��d--fmn�6b7�A\��f6\��k�c.Y1a$}j��>��춸߁�$�����P)+vpS1�wD#��7�I�E/�_�y��5Qxjܦ����&�|��l8�W�Mx3�c�G6�O������B$Ce/�֞����+�4����S'�Q��hw��G�p�MN/��ڂ�*��ђ�.�/�/SWS�K��[�C�����"J�~�[�2&��n9E��M��%��F�^#Vq�U��+�UR*�P��}����8����-�|ܰ(~~��B�RI�C�.�J�N�8ѝ}����=�$��\X���D��Y�Q���5y!䜪W*5eb����h^���̲�Ѻ2�t�5]i��E��"�E���VrH�7cn␄�k?C5��>�<�������mA)�E�!�d>�H�9�x����:�ѡ��?_&���GE6�UubuB3lc��<����Hpy�Sc�d�B����� +ŹPs?���τ�!oQV�3E&n�K9��:��M�p.�B�1��昵�a��N���=/�sw�� VW"�#�-��O�Y��^P����ښN�0�?���/� �5�����=�/c�r��:H;ƚ����i��$��s���.}I4;�ة����.�'2^�1{�p�70�T����m`��*D�bq�����ob2��\��|������OŜ�G��sc��$T�G�����]?��`��������0�k)� +�e"�ooSI'U�Y|]{�Wy��o`�uDV����&��&�N//śb,.Yq�wN21�Y|G�Oxĩ�c&Ex]�^����&x{^�zq�uߪ��x9|/����b�e�;_VWZ�ow]E���Q5A�˵�BK*?��B��V��WE�#�D� �ْ�J��8&�4%3�WVy���� >J\^P(�ѻQ���8�[��^�E�k�Kq)rb`~�d��2H&S&�oS+�\|��fᄇ8���"��\e�8B�t���%�9(� &NH��v�:^�Xa@\�/v�3��@�v�ҩ��ؕ+��+��R�2�;�q�� +s��ʆ&�b�D ��vC1.0�fb��C�K���t�r*U8hfXy�.��B�cyoo������Z!?pҔ�R/��k)��FW�E^�v�Â�A�JwbL�@JSsea�ԭ���Ta�| e�֏�2g��ݮ�?GzP�>����,�R�b��?��x���ź�d�����ZK0:lL�hxK�t��r����2{pO�H��*6��xd��"���I�*ڃ����� +�0N�t��yJ���]BY���l��ayr�[�j�M�u�����=���q�r;d����Cf��d����0��g��R=t��m��L0�Vrŏ��]RqϰT��RC���I��i\E"Ǟ�x㕞>�Gl���)��� �!��i�ҍba��я��k4���Q��<q�G��e+-��55 S���n��pA�)��U�X=��K�3�f^�?A X�������������t�^�Az�<�݀��+���� r������%�ƪ�1}+���Cr��,���L�98Wy�K.���"��"3��U�+h�7|��jc�f�I�KWn3���`����K�W�Yy��+�i����N����&�_qx�z^�����e�J��x��XY(�5ޣ�dx%�6:�:}Mb$_�RG轎�N&�ˆ����_�՜ +�ԝ%o�C(��82ul��L@�[�����իY3��h��%>fT'�<�dZ�Ms��axxdC���3q.����F&��pO�N`4(y���M�$g2BY��Kݵ$��w66�ȷ0̗d��4�`���͂r�h�Ի�=�i�Wݦ�T~�/ʓ��u��뇰������hg0��Ddl>��6�3�`ߡ/�`���ڪ�ϛ����+��%�m���+�f��s�r�}/����@�1��ۻ Enj(����ղ+/n̴�k�vSv��~#9#T;�A�E��wb�ƌ�*3T���oHo#����L�I%W�!�u�nZ��д��d�D�63�\dQ�}/��*�4��ۄX o����ܼ4����t+tq>r��In��)�y�+��c��~[�`l&1��7�_���x{T?�#���u�ln +��57�{ Πt�����[<X��t&e��3��7�{�4{L)��l��y�e�/[�`>���t�� `�3�>'8W2�]�M�R��1-�Gk�Lœ����:S�1��l2eO����{�^ْ~�KGiq[�߾�TO��fh�U����Xx�a_�0��*͘��R�����{I���]��$)�v���և�+��^�ӳ.��\6�G�����Ň�uoӳ��%������4��9�r���l��J-[�fݑ��!}��4�Xn9���A(-�\��"��"Nj�潌`���F�F�ݰ��`'���]�z���� �s. ~ȝt�h(Kv���Eؖ����L�Z$:�kH��%�Ar�t��/�o)�{�rb��`�2vVp{��<6�b)ml?����{�{Z\�������&Q.��O���O�A����3�j�N��!پ �t`F�ӦC�B�u�5���j��E���X#`iLs���Z �j�j�bq!OZd�2���\`#�{�۴��w��8� ���"CD�����w2�݂0�M6�AZˌ��5����,�ؤ�&��b�N���k���9��;�>��W����Ry�['0�����e0�-�|:l�CQ5�jVr]H@AD��B��H�Ar��:"�����C�]�F0��À�4���]N�K�������3�qN_=�1�'��F�K�d�[�X>��ny>�;�%I�����Q�fŵov1�M�T="Ò@n����ԛ ��A +�WO=O�YV�1�Kd2�ӆ�̅�L� E|�*�B)�������C���Q��@Yg���L��U��c�Z��{�����V�-�~Z��ܤ��OR�N_W% +U�K�����P��E=LE0�Nx��� ��:/���A8 h�i��RI��dg�#��R~\����sa��y���0����C�14�P�)#)U�rK7]�b���P�9�f��)����':�\I6�iQ��JM�LL�� +v�s�*���4ô�?#���G +��1*��V��8������"�Ft+|�G]i�JZ�p��uըC@%�y����M<�v�����_&���>�PL���n��|�����.ZŰ̘�u#r_2�0a'M��>np����d�gE��ً'x��F���нY&�av/AF�onG8�@�Z�wv�k��ґ����� +jE���1�~����������_� +�(u���M�u�A����g͐�:Lз"��ʲ�F�a����FK�F���nD�xb��!Ԗ� +�g:�Aɥ�4/�G���~�#����/���B���Q�������Ӛ�<��Az�5�`�;��\�NՎ)� +��g�y{Ա}�M8��Lx�W?�Z�\�9Ƌ4�2":�%�+�c<�2A�ܣ�Bk�^��,j&�UC@�Q��J��i��={�WfW`wq��R�1���=�w�_~�U���w�r�:�|�l����z�݄6g$�~-��;���_����dl H��^�� ��C`�`ꑋt�m_xd���QG~�����p�� \DJ��� �x�i����}aApP/�܍I}�M�Ժ����Ȕ�~�הj8�Y��kQft��� �����K���?���|�/d�𣗱�.�e�F0�wľ����濎Ӊ�$�v�3Ѹ�ɿ�j1��y�?Vs��Yzj,�+���uot��dK�[;�w'�-� l}��{!�zk�p¿������T}� k��\��*�"��x��+Ǝ��ÿ��K���K�oٚ�4x}/���RP�^�c�1��%�#�.ZSD9o�G� +���kte����(���Z�2���]=����f�"]�J��)ݕ-3!dA}�J'����|U- z2=��G#��Q�KH�Y7O��U�ߏ~����[�2|[*lsE��8g�q�����V��p[�l*� �M4l�o��}�v('��C|+ +�|�˳B1�?�2�`�B��j#y_hf��mn˸�����7Y=��$��>�e���R����E�[4�-�b �`�K�z�x�FR{�$�(��)IM��ް��<�˝�6>n�!����.E$�u��\4��d�a��_Y�o�:/s�v�L8o*f2�D���t�p��sq���?��'�ŊZE���_o&�i#�]@M��oըQ����%���r��*x�@��-Ե ����/�s��]5x���K�Ĵ]�Ɂ�Jk�p����m_ŀz,�t�G�{�w�m�.;�]A�@�?��'J����J +u7u.��jU�n�Bw���n�&��#"8@pg!��ۋ�K�7�;���;�ܾCO�OS�03Y3�>$���~G��Ձː�U{L�~�K�4���[!w���������隶�u��z�[�N@N~��۷�L�Nx+��2�DJc8��9�n�n"Gv�w�k!iq8�gӭ�p��'y�I�a�/�2G�I�#��T¹=�X9�#/#�5��j���3����E�<�R���Q�\N�Q��b��տ�Q����ޤ#?��S����5��@��d�@tdTGز|����*�Z�)#h+.�/Ÿ1�Ɏ���������hE:�*��5�Ks�mX۪��#/�ɏi>Q�]�-k�>p�iys�����%�2���wΣn�;��c|�����x��(k��O����ۘ^�1j��pr��Jû5^>�BP�V%?�y�|��lk���SV&��Bh=b1n����ntiֆ�b��qM8��!#��ȅ���5���G~z�9F��:�3������Hf���d���K�����V/�;-�ʤ������OO�o��� *A$�'%|�v�[����ur�V�kj��E�/g����|��?G�� +��z�eQ��?���΅~�q)�@��6y�ŀ��pAxF�3_8�I�Mߦ"�P����3gXq!�9^�2G.�Q-��5��������q�-3��mҏ�BPmA`D[q�� �\#�i��v�����n��<��/7�5�=���T�DO#b�|�Lt��dz���!@Hސ��0Bh}����:�*ʼ��Y$�:B|���@��L3��0}�������F��BԴ��;��z7S?��j$eVEA�yi��i�:�0I�ٺ�W�#h��"��g�$���� +��Qq�4"� � 8��LϨSW(i���S��|��FW�Q�?������4\1�*a�I֒od�#;Q߃:kJPBD=���}�aV�-"7� *�iǡ�* �lp0-�b�1��z~j_�SA"l�P��4\�i�#��;aOfez���09U'�Tk0�H\���KukVT��ኛ����Fr��,��&]�3&oS�z6�7��7hZ�-C�M��Z�-�z��c)�J~T���ҡ���T_)ǒ�aKNu����3��R�v��<���զ�t8����`Щ ���I��j5��/�"��%���̱ �1� ��U���n6;#k����H��3��ʩ��! +��s}CB�n�Nr�K�эW.r +��C.� #l�U���û �����n�B�#/�� Ι���#/��}Gt/�e�Ki��j��-hɇ�=��"tC�:��z�,2�!� �X~ �.���/�v�����+/�$aKA�d +��o��M6���A��#{�e�8����5h�(]��:�14 ��L`G�������o��tw)���JP���H�)�"h�\5c���;�DYI������EGW��wX��i%�a_�$�Q=���e`��}{�S�e7�|�U��c��ym�*9��y+��0m��4�~jڧ�bR��`.#={h�X>����چ+)U�#G�)��GY{��Z���[$�<�9����.]���@�}nk���8剥�n�����Ύ~2AՓ�G�$��sV�D��->�`�vʌ9n^�q����GIf�� �7��b U��99���6��� +���ȴA�(��`���]�:k��eL[��n��m�,���� ������m���� Z�TH�U?�&�8��8qg/�����*1j����n��a� ^�`����M*���_`����]}���5 Rl�v��w��]`��Ӣ&?��-~'s5'n��u�h�Q��r! 4�0�-�W*�RM1�X���V�Y���Ii�ݣ`������M����=��`Q3��b,A�Ѫ%<��hn�;�%ca�������ab�\��[#�|�90���c��B�ֽ~�����,��x�S����yK�`l��UF�*�ܖ21Iy�"�"���{�<�9��`��W��pMl}*��ǝ�jMjr�,��q�Hb���J��ν,��^�V<[�Ivt�^�c�5&�:�2�3G��zS9-ʫ�(7��P4��Ч�]ܸ�C4R�l��Ep!��AA�����݇�_� �� +��ۤd�w�N.ՠXK�2�߭�֛<�n�f���U�-�1�T�F�Z$��:|�9�>������٪e1��ftв��1�.�"¸��Єj��+���t��x1��#�N��p9�n��`���#�6�G+�0t`��v��_bfv�)b�)�Ć��C ��R���nk�gNX�w���=�)�2ЅƷ���B}��U_�wxsv�T��z�����[��n��I�p� i$�p%b �'�fGL{��&[����ֶ��=oLܝ,��~�87#/���?��3��qs+׆=@��s�#�t���\{�M�A�8����i5�a���i��K�^N�~�3R���gJ�J�Ǐ2QU�w�v{���g����l}���4(%f�dm��~N]K����"ދ���T������ +n��[�����7�5zq���U�=o��+�ى�#�,��L~چcOȲ ���4�Tl�9"�r<������c/����1)������Y��'���o@1o+�� u�ax�ܚʪ~��oý���Ý+5�9^* ]ܭ/_��w�@,*�֜VSu�������/���nxˎ�hʊY*1����x|])��n�_yȲ�`�:��6q���QS~���M��^��r������ɷ�A�g��?κ.�Wsĝt[1�!�t\�nE4���̃us3��a j-�ȶ�/����co,�{7bݑ�f�%�� +"ण٠~q[~��Q-A3��R3�69-�?�z���g�`�2�E+Q�#���Q.��^�'�z�b�B�H�o���6i_�?|����}��M����o�p�q�nϏ���n`�[�o�r�͈�$o���e: +O }���X��j�T?���uV0P1�e�ˆ�67�-�;�eb$/�l���ˇ�-dg���Q�8|_x�0�h��1��gE�������k*8T����>Y��)�f����[���Vti�j[��ZC�IE\�|��#��Z@�*���}�����E�ǂ��P7��:�o!�D�DZ�⍛�r�"��� +��#�·}�)��L�Pz��l�+B���p2(�c��t�""�R)�!S;)A����en���W�H�.��.��p~�ab�n��;(ۥu���6i�$dʧ��2lDK�ßh���G\���;���#M��i���ڲ���R_#V�ȋ��K��yx����dK��K���R��~�l<,��`o�z��#H��P����� $���Ti-�Ơ=>���������\�\�T�D�� o���-��1q�i��L(�Y��\ �n@�π���1-�$�O��JW���=� �ڃ�����X o�^w5l����7o^%"%N]@��� �7���%{�d�;18ʎ���-<==u3���?�n��ヒ���l�G���_S셕 +���T������!��-8�X��/��g��0�\X+q���ۊ_�˴�j2mg�E��\�P�8����T�ڮ4���6�v����������M����Z�"Wl�nE�?n��������z�~&U a@�c��:���#W�!�q�蛵���c��=����*�4|Q� +V����CV� }O�3� �Cz� 8��U��4�Ec@_����i��,���.C�zQ�%¥A{����TG(���W���u)q$kB�"�����U3e��x-SQ\�̬�@b ��4s +F���%R�Q��+���+�5:"ķ�BY��p3Q��=���@*�����z�P��vG�xQ�)�]�(�P��ᡒ/��w�א=�8��w��ջɏ�G��=���PS�F�x��M�_�6}G��0Ƃ��U�5��SI��]+ɩC�����$�H%�\��'1�,�ad�jɎ�� ��!�>�O�T3����v�����p�Nޕ�@��-�>�] +�j�@"�ə�%܈�U-^N)$��9��6%���<[��˸�J�8��+�<ϋ��2���r���<�֩d�Sn�6 +�I#u"7�K�\+��9��FV`�f�C����� ΎS�r�co���Jfr��)���k�V�i�O@��Ev�K��j/�h��д�� ������&��w�<�=Է,�f�Ĕ��0@|nk&�"���*��iM,V[����A��S#�K ���O��vV[ �.� ���go�僺��JQ�&mDZ�������}��lL��ֶޜ�z-F=����GZ~�;� ���iY�O�wq��k��yV�ym�m@�('"g�����|C3���$Zs�6z}����-�?�{�5$i@NFW�����=U ��_�F�tE�lL�sfM�!���6��|�^:Un��c�{:8��\�!s�u�^�J#�;�+�a��m�o�9����D�������w@W%_8�(��-�I�*���f�D x9�`y�G��x_��_�u��5�gS�@n�k#\㼵�@{�� ��LM��ڔI)>�R��v�����R_6K �|$ߝ UY���DL,���P{�X�z|)�= �����#<%��?e�����?M�?Gx�u:������&�wbG��<�G����(� +Y��$D�ρ�ܤ��O�]SQ��zi�g�`W|Aw��I���S�'3;p�䓯n{ ����& |e���&a�GG�FEd9�]�"����1a��=�V���J�F����۱�ɕ��#�Ya�#��A���Me�P/"²�p�SL���[G�YW� ���Df]�!x���s��@,�D�S��40v7y<��^f���w-��W}�=�"�F�O~�\�����a¸CʫC0� �h=~I�rH�I� �c&t�vB�(NA!:�!���WH,- �+E8�v[O���*-���')�ԢY���������l��g��'B'u�/`�O����u��#�F��x�:�d��]�6�U���o�d�]5 �,�i*@�6�~4���E=b�$��c 0�A^�v���m��d�JW��E��@[�!-�4���;�N�T�벑�h�����o���(W-�Lڎ˙���QAJ>�m +�i0��x�m�wG�ߣ�l:펥~�p6���:�,�L8�B���N���`���9���rLg������������4k;=���tj*5�6���n1�a��U~���1b�o�{r7y��������p���R��T�)��=��˂�-�As�zV��o���{w�lik��u����v�+�U �����n��Ȫ�v���}�Ωv�C����?��"�)�Օ*�(J Oeũ��i�}ԩ�v��~��QW�q���O&˷߷��7`��ˍ�R.�[p+�U�O�-���� �'��J�U�>3� �f�ט����ɲ`�x�J�6���-�7���D����_"�o�}����y�&r�h�8��\�u�g�)�cp���-7���}�2*�L�����ZOuY�����D�Ҙ� �)N��m��� )Qi�I�0E�t~9ڬ1s�5�D b^��C��&E�Է������4x��rt!�̽��b@S������O��m���`�8M�{f�-#�&��-��D�� +�����<Hnǩ9xIN��@�81l�jV�U����e���{�K?W��y�o���Y��|:@$�*3;���� +�X��,��'�yO�ѪQSK���e��I��&��0�M���Ă��+�b�-� ���b5���'�=��i��0��\{�s`eR���)����wՔ�vI9�1Թ�����J��t���F�q,;l����/!tc��g *!���ͣ� dT���%�aw��S_y�iRm#����d�^�Χ��A�'��</a7�I������w[b0?Z�E[:Hy���T�/L��svM�F��� �.ؕ�ƒdKO���i�CȖf�VE���m�IA�߲:������������3.)��B��3#gR����� ]��|J� ��A>0��y�%�V��yKQg��i�J�Jj�v7yc��i�v�ԢA����B�^��/�e��%F��2-|/�y�2z�-#k��L/H�G8(m0f��)z�"^v�-Q�GY�s��v[�ń�w1�\rK]%���=g+¤�y��bD���������rC�.BD�+�rU]f�̭մ��CG� + �R���m��QSV�Ѯ��g��x����y>I�e�8%y���1�$�/��)�-�1�Nc�JW�`cN`�kYp��T�%��۹!�㨇*������8f ��s!�D�9�q��/�ʒ�6�pL���H�-�I���S��CP9A�>��˨zb��nذR$~yg�P[��Y�j���C=ޣs��X^ʬ��{|�\�-�=���/��w��_�����7z�:or�u��1!��m%,D���1�7s�}���0'T��� z�s��)�2�J�����ro�%���-C�H�-�R���?P�O���KW,h`�`ȩV��g�r�,���:y���n###e\��-7��~6������w��a*�:B�����l�;9�������G|r#��u�0��봎�������}(s g��7�����E�����+�C�n�Nr��< D�s�/+�7^v-��"�������c1� +��!P��LBr �P��j�̉���+��L5¥hUJ[!�$rJI�����ʴ�QЋ7��W�/���xP9h��Z���T���@|f��&I��R\cI���;�pR� +��ܢ�E��u;�s�\���%>aҫ\y(�L�N�ƅ/�Ҝ<Rgz:!�q��o��a��+{�.��5���L������jG����t+��a}*�(�����!`d.��xT����a�Q��^��[��5w;�����&���4����'�V�7km�L�X���f��) ��1�"eJ~��K� Lp��t�Æ�H�7do=��Vg�x�V�F��=�"�AW�63 #��#�+^RM*ms�{)�~6,J��!�S_��YCgo���q��(�dIVYa��̳,�XJ�Շo�h����\�a���5n�(�ިco, &�[h�q߮��5'?.�ZL�Ox������e��������=�p-��|,�My���Er���_3^懳�g�x�)|�K��ʢˤBV#� f��~���������v����oW�R�[�>"%w��};,�{_���T79�;�0O�TQ�)r���g��Fs�1�HuQ��.���ʰ4���`п.eC +��E$3�&�r�ī0p����sfT@ �f�B$�������tF/�䥬��f������J<�D�����<�������V[�y��hラ�������^*L o��$z9�� +UXU��r���T9�4�Q-{]w��ArqC®!̉�ʖ�. yp����;���u��y�m9��S��6��p���Qt��uh����4B��z�N���y#% ���|p\����o�1XO�����bN���V�?MGpR��Y�����-�;l��;��Ϲu��7QRL݀?~d���B4�x�wP����^�&��o�6���� ���]� ��� 0e��W���7Uކ��[�ޠ���0;���ˀ��gZ�������1�@�<�G���mǠ���U������X���wA�4�D�`�A�.��HI�¾�?�[��x�����]��������~`'P�g;�9��<�ޔ@VÊ��lԛ=ę�O�J���Б����:g��{*����yrU4�(a�U���E�|}��]'�1:��x���p)� �5�P3VX�2Ґ� 9�����@�`sзH�ſ5�Ƙ�C�7�㦤J�^p�:Z{&�=��:%�;�\C�b�tl�7�-�x�!����!�����7�b�aT����bǤ]�6ڀ��Đ��#_��k��1�n�*c��Ԯ�TG�R"6�U.�>��Ϲ��+CZ��!�,$z���C��S����#��<��7��V�6S�����|�`X���{�b�y��}��X���ȱ�����Y�w��B��I�+j��'*L=��*KD�S�qt�a��1:���c�&fO�`���ӧe#�� C�m�� ��蕱$�0�N���I��f�Ҹ�����Q�V�or��<_���̈́��#���?�L����l��9���}zʂ�pA��P�E��w�5���P8ے{ }\��qGTEF���6�)�i���F �D�&ᤡ���b���{SX�i]"'?�$h���D��t�k�b[�_G��}�1r[ �U��%��B.����4�|9^_k{:���,z�]R���H�:��T-����W�s!�=�\�����q��G��$-!S)!����^�� +�O��s�� Ԭ%X� Sx�8�I���K�s��ٱ� �)�#4���{�.�He�òژ�'F��$ �irF`n�:?x�����v{�s���o��rCu_�0�qbM��:I����Ř+��ɚw���Xu�v���c����듮���܄)^₧���K|�ޱ�,. �.�.���6�S��q���^<���/�-bnڊ`��:���,�ޘ�.��Ɔ +�4�?����{Kã��w�LJ�De��N�\���p���8����N{��qd��B +@s����Evj�<(���|?�����G��h�x�����@,��&{"����@=c�#Do���5����,�r�G�F_�M��[ӾS�˄�5>d�r7�`HǞ���͚�۞ɩv���-�l�Z�EDuDeJ�C{��;��;��|Z�m�^5��(�!��!����d ��H#|��.1R�䔺+���=���A'�X���X�e�A[�����X�J��s��H>�"X���+YmQ�m���Ғ5꺺��2��T�n�]j?t�Ԅb ��ór,�tk�jC:�?ͅ|Ze;��=�u��1��5Mĩ2TC�;ϨB�9������(Z2ʢ�?���P]9k.)99��&/�a��[ߪi��-�����b��k/_��w/o=>Ouu��c�253�6�3n��X�Ϊ�%Sm��ÿ��z�<�'A�|~ -W�ip�Q�N?��z������&b��l��n�E����[�7ю� +�� .L�,�� %0�]i�#s�qU�햄����,���:���|Wԋ����yuV�;1���wB��I!�{�DW#Tl�!�&*׆���Z�ʡ��:FA����m.�V�օ��?��\��a���t5���m�����-�%�9���0�W+��a�'ׇ=0 �]���=��z�f�����h��qN�+���2�GDk _�"�����e +��{���S�z��\�.�T�?����09�Pox+��C��NI�������[�e�~��H�>�.��6���᪈vx�+�n�Kǚ�F�������� +e��c&ƥdZCP��8mGݘ1���:L���7����ޢ��Vd�������6�;�-��M:���ڻߝSט��� �H �=/�{`��a�q�oqx��x�aQ@)�XF�H;�6tA-�q^ʚ�J-*�"�^�j����rj��NHd�b,Gj�4�Ŭe��g9���b*�R�W��u�8�_�!�}��L���(�)܁i���'i#�A��#�&���� +��;O��n���\p�yHf�V��y�2i��� �����e�酠�aYPyW�����r�E��7�9�4.��0Ex�2e��4���rU�r[��)�;ʧE�;d9*\�$,G�d�}5���1��k�ky7Jdg�K����-o<|뾣��$�Oseݸ����n���`�:#_o��ב�o��q��N������9��\�0;��Ecij��رN8=���Zt�u���B�/8�H�"�U����r��MN�f�^]��7�Qq�� ���#]SO�e����C��װ�~�/P�P��%��B��8����85?@�:ٶ?߉0���2C�����;b]��H�z��[tN'#ch��W�nX@��,~N� �o��+e8���r�a:�'@{XF0doM$�������C��%|�{�W)�28�c���_�mn���reș��-+JZӨ;a���P�,-����Y�6�!�5u�z�F;���f% �6�-��54e�4Dm1b$RPG��M@��\\��s ��yE�i��#���oh=Ѥh����#,�۽�/�z����_3�����܌4�$s�����Ou^H�{�x����<�PY�뚹L��E)o�|��`�A�f +\%<uu�����$����ÉOi g�߆xPc� V:�iK�*�k#[Ό��=9`.wW�"7-B�����e�*|�=/m�XRPFNtt�Dx3�^���cu7�w�dh�[��MB�q�=�c/�{���7;X���A�V���ohթv�������ڶ��c��۩I��-���ؕ7{���v�:|Ç���-#'Ѩ7��84�S߁g����:ԓj<(FO���i�G��R�W�um����G'.���.[�Io��l{��ʣD�L��\8<Q�=�P�j�~��4�:9IQwX�Kٮc;^)��8�s�fws*x���+;|�����c1�tcQa@N�̿�-kde� ���n�<ٺ�O _��筜~�(_�r,R"��<!c`)P��sŖV}\�.�Ўd�J�ʏ�����j��YKT���l���N���<?���}]�|R�����?�Qw�:�er�v�%#3#��Ij��+�R�{�f;�`,�R�.�C@�b"I���T,�ԅW�LF����p%������; +2s��H4�z����L�9%�����)��Ѷd�r��V����h�RA�3��]x��te� g�ȗf"�Ly��o�V�����<��]S�����rE�bx;6�;�Rd���q����ɗ-Q����)b#L�.�G�H�t!+����T|p�A�Z������O-��9����P��2y�?tk�|��v���HM�ɡ���P{����)��>�`�7�V8�Gd6J�]d��BH�*Bv��x�1B�תg;qx-Df���:Z�:]©\��h�����*���W�#Gr YOm�6�Ye lӢ."dp�k�"�;Q1�}�$c-�кJ�+�������<�h՞���{�HUw���� "��[�n�9D�*�Q���[��"qtv=��w�]��I6Hnϩ�H����E1�� +���ȿg�P����ݚ��y �"��F���2W�c��JY�\�q���QGO��Ne#AܧTƎ���X�⽽#�^e�K���K�:;j���5U�������p:�dʎ$ɷ���O��br|�o��o"I�_�Y�N%��2�gpt��9�FdX�v)���MK������=.�ehܷ�L�e��˖��5"ˮ�^�c�o=�:�^0[�G�����Q��|�͡�o���)[�u� ����;���L��ڐ� �.������lx�D���Vu�T����R��=�UUꁸ�kܛfo�z0�lMUk9�,3+�̷��)G����L���c��!�0?C9��҂��?����aL=��%�D�.`@�z���u�չ�|�>�M�C�q~� +w���P w[�[�7L�8�D>�h[����� vap�h|��FM�J�[���Xo��7�[5��^a��&7��!����և?B�{Oٓ+|�Z�?��L����!��ʯZ|(r�~·T���j���o0ic3�U�%[�4Z��%>=��N��V&ɟ応?^�Հ�+�33��1��C��M��ee�рTg��$*��@���l@��>0�%�XG���ReUت�䡠�?���W�ω�ӝ��ث�f=эF���ֆ���Qx�����EΛ�*U�[JNV���$1�w��?2*�Z� �v(�;- -cQ�[.���K8/�o�_Ӿ?���yz\|��}�b��DF$5�0�3� L��I�sìB��]^�pǚ3��'Dx�A�rSZb��F&���K�7c[ˍ�z:��7���� =�r�\#0��6�j�a�l�?B�]���<��u�&��8�L���p^ -WU.�]����*��z�oM��{)���������ݛ7@ߛ2�`���y$f�c�j&�فc#Y�'�bԺ*��J����)r�&?�ۯ� �r1+i����I*x��[�TK�t6���|]g����;���< �{2ꈲ�%u��mT7����SYU�{휪�ro����?X�W�.�iR�Y�N�j��{� -�RĘ�G^�B�:�q�JS�10�Q�K�t&ɢ�P]�*�/��e�ş�]�S�{�M%?(�j;o�C����.V���h��x�w��op�Jt�Y�ll��Oq^����_y1H������m��LS�&��l,j��]�&d��13W���幠!x����'�����w���:̭�S H�;H��S^ -7� �U0�w�?�ٺb@���N��]�}A���Y+?f7Ta�Ke�G��QG�_��ܱ�{��DS�\Gb�oAz�Ld�u�����=$?�y�g�������"0��n4�]�X �3�k��d�i���ƅ��&#� �fW���M- ���5�2����5!�V�$�n�m�nP�M;��r�w���.]%{%�E��y�F~`�ig�P\�e���7�{��'�A"$r�����"��4��R���#�:������{ɫ2�:{�����q��P���Ӣ�xIA��@�_�E��y3��xGŅ�T\3%�>w��ѥ���赼��d'P�pn.R��/I� -��*�z�Y9��;��zn+L�S�ae# uP�r�EH*x�LtR��E@���0r/O�WX��� n����o`Lk:��(f������C�%N�/�`1�q/K��7��<�#���:W��'p��?��]Xv���jc`�R[�5�������Π��_<�w(�@i C�*��E�T�GRm�B��u��K ��au�Q8�*�(�,/����u ^�����͍��j�W�^�mD��°I����k���µ<n��˳�Ld��d�c�_�Ж��\������q��r -_��X�g�vEu��K���G!���f�9�(%l�@�D�-� -� - �W)�z@�ya����ݿ��\�����F3���!��RTMS'��6�8�w����"U��ryבZ����@�E�NcPBB�dk;�����_��| -�G�r1#��e�!�m��MG_�M�?ƣouO� �A.t��S�]��+�6=}�Kzk�<<S"*x�f�ey�2Pr�#�*�&�p�H�8�|�ȳ���p����m�"S��]N������p�}#,�A��]K������]�Ex��|2�����i�𗬳����S$*"��j�1<+���{��O��?�˴Е�&!��� -��/�}W��F����Aa�0�u���.q/�c����p,�O�7KW����qK/O�s7����f)���5Px2��S�@�O�H�N��)�ș@/��ǹ�w+ -�?a��>���t�[Ą��#�bU��ᦅ�h ���H�Υ>������A���B�sU~�ƽ�?gĵ�놀]�o��8|-�F5�)���:�zZ=;U7LJ7���=1L�(�4�B[��������՝ C�?3!�0Sg^E�฿No6�iqE; -��ޒ�6p+yX��5��SQ�W�� -�k�M:Y���q�C���~�B{���Q��k��o,:�#��^�2S.�����g1�)D�/Jй�e����ڼ�Z�۱I��C~al�ic���q�c�DI�y�e �+Y�x݊i��:;�N\;�%L�,�v �[��}��=DC�K���L�.�W����=� �F,Jz�K��Z���1���,2R�R�*��p�������0�!�ƿ0���wrtɼ"��;;��# ǀ����p���S���?��â,�=�����%�A��C,܌8�5� f��4�`C��;�!��i��Ռ,�ҩh�X�ð�������ɍk���]J��uSR��e�#�:��%�l��@v�{IǙa�c2�B<�!%�âȤ��ґ+(\d #5e��/>x��xr2�����NU�]ɏ���к֔b� ��-"vp]rkZCo`H���Z�c���� -K�j��cȐ�Щ����ʠ�vx{��ȊZD�>�`�"q +�ck��H1c�D -^'c$�.e&t}n��s��`��o�C�]2��-�T�Zn@���iS�[�e�x���!�}ڴ�t~��<gN%�l[Ӝ��:�ԏ�5�[����*^�\�·��w ��k�҅�Kθ�FdH���$��[:v�\+�8h��#J�BE�T_�v����i��%���4�clH^��7�R����^| *]�����������n5N�H�^:J�f��{9�J����l`�L��%�%Bf�.�t��f�-ZO��gRC',��QTXzX�I��!�y5_�7�V�� �K�s#Rx��x��A��^^e���ۋ`������4��S#v�U���%�%[+�ĤhK�b��7���ez\aT G7j�_ÝrZ�`�B_�� �jkBD0��O����?�&/Ҽ����})F�O���vUJ��,s�W�W x_֣��u��=�0��k�\��{���1�Av��Q�Hs�b�z*����K^8�.E����$n���o�U�ы�����g/|{���=��%�V��yJ�dzڊ��Yp�/����J2u�C�I���w�����+�~�Խ �J��EfY*��兟��d������F E��Gk�.H�hM,g�Ȍ 6��ڻ�4�>k�͢�O�TD�v��P��`.� ^�CmW���nr���ʻ$�#���8�����u=e������?�JR�" ��m��Vp�lZ�@C�N��$�I�R�М{��G:���W{���1urHp�ԅ.��5�\m��W�TVu<���U�]��'��d,�~ZɺVNe�I��ϿCsD������������8^,�Px#E��i]�/i�X��Z�G.�0����ݠQ��Y�^|&���S·���Xjo��<������s�iO�ր�P�i��]�~�c�b��N&%�L�J�׃���6�����u��;N�M���z�[,y�y��c�o�"O�Zp�Fk:��KI���T4��&�kX��Zn*�"{�.��t��J��Sǹ���:��]���"�����r -��uD�>����R�߹����:���qN���oh����q��9��=�{�`��srS{D>�Y4s��9�/���-���`7�LeϘ����$�͔��ug`S�g���g`� �7�7A���mJ�~�*Qǃ��mAoȕ�h�wGF�2�C`�BML�}�b�I0��K%0����:��[!�#�Ht9��(b�ړ��MAaE�t� ,���OG��a(*�# �P���ME�p9x�x��F�ld�#W�Ӭ, a���>7ݒum��?_*w����%������ -ԅ-��no}5��3 -�W�}���2!�P���;��;�|N��տ"T�z+���9(����� �,�1��5�g:�����n���"�^��4��4gcT��Co�� �'�%%w���h�B&'���}�`xӼ�ȭ0&j���X��V��.����:~N�А��N]�_-�����;X�n�DV���K���U)�̰���i]��N�4�T˘�.��s�Q"��A�������Z��"�6��G����L���b�J����:k"��;�^�v����b1\ ^S_�m��f�1nC�ljX���0�]�H�%?%Ôt�;�{K'��2b&G�/ʅ��P|'���LZ -��,�ڙ�j������o*������)��]���TH��T�C�����4�S�$B��5��T�g�2�� .����V����i-�Uw�$�5��z��@� ��d��T����j��P�&��d�,{�SNĈ}{����=»(erՑ;��A%u��Q�M�ۍ|�����?{���*7��@��qP+�#0a��M��jܥn��O�G��� �煹?U@n�=1�J.�08�]� r mBm���O9\�9��Q�Vϊ�G�PRX�[���譹,-��k��5`�Û��rB&<����U�0U-�����:��4& nx�:�3�~���Ӆ�2"�Z�����~�����so�6�O��:�[�m�'����J4\@8�i�r�����;X{��vt���%�� -0z-wÛu�M.p��S�����b4!#�һYf'��5�o^�k覀F%%�!96�+t�77�%e�ޗ��۹����ɧ"+�2L�B��4��:��Lt$��b`~C��m�7��[���nǸ�y�tKYF�����:z��r��X�-��L|��o��B:p_ѨS���߂��[�f�:�f��G,Nmᑷ��GzD#�� -�j�){�E�{�6�Co\���\����$����)�-嬔l�j��Ǯ|x3kz?��$�[PW�?� |'yK��u�ze�Ov�[W�L2�vr�R]�"��9Gޚ�9X��p-&( /_�W�'� -XՀ��i1N!��g���C^�7���$ި\���F����K�����!&@wY�b����G�����^"Q0�G��]s�Oi��a�<��W��9�v�Ў7.F �8M��F�~g��Tw1����(����<� �� ��(��<=����Ko�x�I��c�M2���&i`Ɯ� -�J�ֻ�Ǥ�@W�;d�J[�>*�R�u�����ōU���i>y�?G�)7�Kt�ۣ8��W�!k�k�,�����f������WT�_�;������T���G��bG��"� ���j �`];yH"t��z��ڂ�F��:����H -D�%0���(��4�ش���G��E�F �4��\ND���|y�d�hZ��Z5��]�A������LD5��88��_��Υh��:/q\"�09� -����~�U�I*����^�]a��\a�"����;�VM�Hٮoߍ��5�����*�r���� 6���W[/�)�:��[�|n��J�sk&���� ���npnQip�ߝ���`��po�aQ�X��1�$�����r�`�C�;� �2���"�Y -��-�%��[���bh?��䣬I�|��~X���50�)1f��S ���1y���-N�녍^��o�Dƍk�no#�(���NH�ᕏ�U�����1P���nbNC��x�tF��G�~����+�SI����v��WP�(�Ϛ�O;�;�!^�Xh"�����[S�JLP��l�S�1oɚr,z�if���} 7��=��-U:i�(.��|�y��G�1�w��-4�w��%l|�QC* x}���0������S�_guB��7�����&j�j�=r��C�V�cr��/�{sd��<�xpj �FA!k%q{���Dql�9�@D��B�����fya�)� -hF�V\!y��=���Td���1[�>�hTJ��pP�����#:��{�_��b�̚�z��n�-�4�1�{T>C��Q��,B� -|�9ftC�Q��r�s+)�������Q)9T�sR��Û�_O@��� &��iU������}����� ��Zf��Q2lԆ�(�|_�ƥ�8gz�L ,n��\>����-�a'nj��X�9�=Z�/:�H4�-8ܸGЀ�}q�Q-y -i�L\�o�� �4\~���<���?���]��K'��V�w�N�)^��H�u떜iw$��#o����Sb��B7�Nd�P�����3���.��h�Y0;�!d�[�:##e`����5���]2zx,"�ͽ���zZ�S�L����Ut�=�[5�?��?C�d��X+�Y��(���~��.o�AY��a<�6��RMx��X&p��a�� �3�"(w�uGުt8` -����U�<�X���[ ~����;��ˎ ��u��t�����ޙf��4��u��_Y$<�����R�+��Q.�C5I����NYW7�o �w�U�q���v��-�[���������5��_"��t�R��<���F�4�v��2M^���/�em�D�h��`]韖N/)�GP�:����Rt\��U�Ε��*�4_������L��Α�O�E0Է3~�[q䜽�$�MJT��[����6ʔ#��?��9B^�[-���0ΰ�4��I�V˞.fN�2L6��M�%IJh�#��~}���b�q��?[�̤��(�KoE� �B�hykY_��D�2�|Ă�7��~��д� D���c9�����s�@NZƸ��<��exo�[��D^52�"��e�����������J�� '3*�f�G�G��Fm"|���&�i0b�`r�盼}�"�5^"����0��F��"�A��zmTy����\�w�e�L�Eԣ�q1 o�����d�+%���� �r�[�J�c "GMI�u���qs��۳�U\l���aX\.�LD�����C���L)��M���}�VH����V��_�� -��"Gl��9B����Ot�X-A���*�^]���C�'@ZhՈ�Z�����-��5��Qm#p���Dn�MZ[���i²��������������e��{�R��p5 ���v�HT�?S�N� ���S�� -�]xKH�{��6���*���K����k��[s$b2 +���P�M��j������S_+m˦h�9�V;seİ�F�Z��u��px��`��P��?�֫��Q鲼<�M�ʇ���)�{��ͳ�@ɬ�-RԜ�A�Y�D,)P��Xׇ�5M�~*�ט�p�7��3�%�}�^�NU9$��7}�)�(a{�D�<|�GŢq6@���T ��4��u�T���$D;����:��Q��&п�������X�+�Ρ���u�6�0zk�)�m;���?\���yK%_^������Wē�v�W�A Q]v�d��oR��=o�$$��b� �FXo(� FF:U�%�?c������7��T{_??1����ʴJՖ��:��:<(��-;�N\�J�E���*�0�G~��4��B5�.U�.��dU���b�v���Rfi>�/��PΛ��Ӽ����+�Ǐ�J A���[��x��d�������_� ��c���Y:S'|^��筵{,�T�_�)�����y��~P��G���������������� K�ր���T9i��]�\���[��R�D���E�e������5�·���~I��}�|.�Ku ߺ����o����Zc��������+�j-��o��] -$9/e��9O+J�����2���_������c��-�zK1�<���`�~GZL�L��]�J���͊�4s�r��0wE�!��gt�RV�[e]&���2�E�/���9.�*.�]�X�]B:�iA��EѮ�nJ��+��`���03�(�D���ǐ���(ͮ����K߂�s�V |u/y�A+p���ha��Q3��4�5�)+�#���RL��7�p�N�(�<�1�4����/�B4{��r?y�F���Jp� ,�����y_x�-��Vu� ?10Y��V�a��� �a;3逎�����r�@�U�;;a�.�$(����b��* �����u_^�!'\�_Pl�y�"qn������Ņm��U �� W���]���{����7ȇd<�X�Q���5|�s�c2���B�o �����YMq�ZHd Dv!�f�.E��o"~� :ih�����-a�D� ſ��r������2-2���Sw�\�!���;DM�8F��W F�6���I5���j�畜��&��������P�������q�Ĵ:�o�ƕ+��J�Q�H{�JE�U�ż%�ߞ�b�q��,��ը��M��L��q8���7Y��jV�î�9B�o��T�+$��N�5H��b�:mɵe�k\��M�:�韮��}��"�a� ��@�Y�ʴM)R���#�p�8�ت�{�_�3N���j������Ô`U��ur�¤��^�+Q��� -M�Mu|�g ���$�-H4 -諦�n[�����b\C��[ԥ[~$��к��H�Ɔ*���%1k 8��Nd5L�����ܶ����[����7<��P݃ OΤ���U�4Jݹ�ݘֳ��Z�]=���h��M�i���G80N ��ZːmH6� �.��U/-? ��@ߟdUҚ���ZS��"bD�o#���d{?���}��y3L�<R�bE��kZ7M��S����!ȍ|�@3��k���ykz�i����]G��\z~��Ў����t��UA�;�V@iXB�_e[4�-XH��<Eno]m���V��?�ʪR���Ga�!�a�C������������"��_S-yY��:�Y�����)cKKf�v���v�x�4 �)�őCD����Z�C Tl�Z8�8�����,��Id�����;�@48����$���RH3�{l�r�"G�F�ᩀ���^����'Ս4��/�Y�A�u=�1\Tn������nEtG"7��D�'5�8�j�1���Ա�'v���=�>E:�I���~����9�*(�C r5$�<��"-X>�}҆�� V���m�|.z��m�sG�F���CD�J~�I��������]���)�lF)w"�\�H� �Y���X��pPw9���;�5�(�XY��.-i�<=U_|/Njt�X��.t���G�&��.n.νΒ_�>)�4��� -\p��션6��K�x�h�6���U�P�V������6�B@a���M��S�<�]�[5�i�q��AH�-m�st,1�]���w�U�k�n6�?��+�#=Δ�ľ��y�W�1��]a� �j�g�K��~���b��"w;߄�)�b���u�yV�� �h�^�_��������B��")&1��{~�h��YQ�rU��v��"�qW���y2]ePx��'w9ʶ농��t�D�KC��wF</�k�A� 8Zs�C�{�y��mE���D�|�px���ڊ���5�e�u�j;&|�Ǜw�ñ����;Eϐ�4<�1{f�8�oB�/���$�1o�*�)@���{1�*}/���,UW���`o6#|S$B���π���v�rS�gB�Z�fS-VҡX7�Tgݡ趄l �#��?���o�L@yB֢5�� ��� -oe��%M���K�;�vI㾗;������-����a@2������.����cS�hyW�=WD��t�.��Q� -�0�a��t��An˥��l�\~�l�㻨l����1P�=��x�h �C��R^%���\��^����V�2F��&�����-l�I��&gF��lK8㤎�ܽ�o!�>Z}-֥��s%,�! ��%o�W����p��8|!T�����mf����n���^�Q5��VWB������X��+@K��2�V$�jk���iSf[��X����/E�þi������q��P�����v��l�f\�0|�'��F��Rf�����q.#��xU)F#9��B��e�܄Qp��\?q<Э���y��,"�JI���Z�8�Q��P�� -&4�X�K�1�/���L嫶��,��\ -�7������r�����H}x���P�ėI����pQp�K t1R�������0#vi�Y��2��&�?��d��P-��f�����~AKDT�L-f�-����%���4��].�b�5��bIJ�������"��4|���iIw���%���r^�UP�ok�9��������]I*wb�!���;Ë��؞C����"E������\y\��Kk�#:ğ���K|S���J5ܙ �ӫ�#x|�����7���h/1m�� D0n�1���s���9�*���g��.���Fɰ��Q�4��}���V��XS��$F�ݍ��{�7\�����ѻ8�/E���/66M��� ��wC\D��Ϡ�?u��|��\h��TxE�F��i�;\/�W3��&m"�;��l�:Ҡ�G(�8&�22x���.�f��t�鑮�E)d`�V�&C���N����u/&�2�;�6�1��F��]��?�@�N�%GCk�:PC�H���z���Ї~�T^Bʷ�K�XIf�Qp_��Xլ��W�1ŃE�qX ��5*����{E9�;�����lj����&�p�$'��0� �?8��>Tn��� +�9�ȡ�P+z� ��c��K��� ���Z_�W+����H3 �е�:��b�XE_�Ub>E�M�P�i>��f���ò�Y�*�v�)Gx�q�%�x�2 -���0�^����W�O��0��&��i��WT���J� -�!��ʓ�� -���Nx3}�9��?���>�%�F�_8���^�t*>��X�+�)F���Zs ���>q���"F��D�ar�,~ C;�(TUL�g��]+�����g[]�ؚ0����ڬm��R��#( e�0>F��"�.�%�y�cs�� ��� -�=J��2?(z1F!T�b�T�{�A^�!g���E�]1}���lQ/Ɂ�{�N`:�� �ަ,%�єGP*ˀԂ��z�T�Nخ��h?��y(]AQ1���'����:�49�q��F#�F�l9A�l����'��|+�m�!�t�]�����*��q[3.��8��l�h����K��Զ(M�G�B�`I -�r��E�:�"�P �kX�Y0�������i��{�u������C�ƽ�)�$�>Rxc�տ�QJd�&K����J۵��an�Ř��1�R�Ÿ�����6�D�r5nxL�k�П���1sn��|��ΤL�ww1V�E��2��h�OX~���~��,1��%l�H��ft�Ѳ�����s^m=^{�����sq�o��r�h�I���[ݧ�����~�v)�s{]���ڸ"ɔE�H��x�������L��"�@�#�J���x�&�q�����z�D9i3�Y� %x+K -eSͣQ�b6A�܊b�����Yu���.��b�e�fC��{|~a���⸋�{�--�+)�zA�ĻR�[�=�q��I����s�n�1�7.�S?�DwK ����_����>����/|/�k��� h��È����hm�ie5,9^a�d�O��~:����7D F�1�tN�7#�h^�E#�bBW&@qB�%��3W54�-s��L�����pyVsk�]e� ��vb�`�Ex$���� -$+��1h}��~ICB��x��D(@U�����i�� >����I#�Nl+g4�I8آ>���6���_���1��K$*����Mh"��������)�!K�l��Lvn�|�E��x�SH�����XDXk�>r��U��fκ�����A?��߭���oÃ�d��9���ꥼ�w�����e��*�n�[C/}�f2B�hG�K�9��1ְ,��0�^j�OҺ _��%Yq��xUTTJ5\� &d\��`�Y���A�_�w�We��Ű��%�s¿x����ƭ�������k1\:/�n"E�B�4<�������Ff%� �20�^��E�Z��";xp��Ў~�e��hk�齞1��8�R�:��7}�i�̃ނN`�=_ Q$�a���i!�=�mh��,�#>D�ǻ#�ף1U��o�ʬ��"�ʋ��X�O7H��ky���R�CJ���wE^m=r��؊8ؾ�_�2�`�r$r�־Ō�ˠ�0�0l�w"_P`2N�B��֪aU�!������>�-#8�Ի�CX&(z�fj�)0�)T4�J'��(�x�e�x��sm��n�$B �;T�A�uWfBOXgvڮ -��]j�8U����nO�J�@$1�c/H\��14aZ�8<�_�&�yT�=\Ʒh�Q�ޢ5��I�K�s��#4���0��s�E�E�.����t����k�rR��4|����Q�b�A@Ư���,�$"��Q ex�:�<F��!���Q�[AZA�+o�=��u��YR���-�+ 6&W��!�WpC�� �#o0�f���~����5�ٵ�$��5'�S��:�=C���R��&�N2Z�>��~�{YG^�|�{rJLB���� -#�q���E���%^L#'"�����`S�k`�� �� -iN��2 Z�e�(��oJ"���r�r�M�`���F�&�^֪���ZY -�H\蔡�����;ꞭG/|��Q�.|��N�W�Kp�}VS��-�K\� �z7వ�)W����j��J�[�)`3Tº���/��8�����#�3��˘�#Ey��]j��U&塳�v+5�Z7�[�ק�WxOp��\�V�ECi�L�fK�y�ld��ւ� ��^��L�R�ǭ5G7a8^5�D��>�C� �[7�"+|4��C�Ć�( �I<��H8����KǖI�+2��@�jJ��bQ!i����^�1�5u�B�N2��ʺ���|q�5��-�s?��eņ�@o!��C�&�?�Ow`v�F,b��[�s��%Odmk��-��<F�!�i�8P��ΗKuA*���q����0�_�,���&�Y1>Q 4]Ԋ$�"P��o2�-����Wq�e��{���:��]"��X�ԝ(��p��w�##�up��&%۟x�G������##IGT ��Y��8+ A�����B�^V��|8��x�Vw����yo�{�uZ��:��?q�C�/�����c���ʼn�f���R���ԔE��dMQ�2(K�_����\�cj㔦���.y1u�9��NJdѓ+�n>���ۊ��5��#�9���h�aß���։�h�> �^���Ξ6^4�/ĬR�D.R����P�:>�'����D��ji?��!U���@�P3j_-� �MԼif����3���E %3!��1��PX��6�T�W���(R�D� ��Wb�g�mG�P:><\��f���{���v��ã��Ya%iXЕ�o�Z��G���� BmkHx;�7���C�U�M6��=�Ul|�&.���M8�����T�f�ﴺP��gi��E2x�ܗ���G;�n����7��b�e�"��A��v}���Û��"tI'Ɨ�$��_��~����L�v��L;/�}�����{�\��2ĉ�2��q��T���3ք�%�Vl��t�歧M#��Q#O^��e��8����}���q%��nx3^�Tb�T�昄{Mu��[%@P3+����W&�m����,L�^�:S���������G+�鉨�t*�%1^��vV��@�wh�Q\���L-��[|;��<��E�ܟ�����Lo��~E蜎8�k�3&�k�PjXab�6�'f�ЂF��Ȗ�(�tZ��<t,��"�l�V�x/9$m/�`��Xk��զB"b1�Xd�H�V -���� *�e�y�����5��5x�%�#t��I��tᲭ�Z����#���@� -�9���r����嵎�)G�;fV�����d/����]=�)S��A����C�%�]����bq�����%����]x��T�b�w��W?�54��q��3N@�r�v`ҹ�^��f3t�ӝ`VO��C���[d��&)�ft�����١��h<[$V���)B1 \����M�� -���#�����Ƅ{[��蘫��˘y �\��F*�D�F�w�VQE�./�|����p"�}ᏺ�S��{*),���dB�w����;�^�i@8+��r��&g������]:����Հ`_��Ԡ��:-�!Av��ճda.\�7���>�\=-��kAt9�� o��&U�j�9O.7���\"�L�:3B��˝�r���NGE���E:��������G�^zV�U�6�?��ձ�Rd������kdJ�P'g3L��ǓlM���ً�����U���j(0<�cV G}�E��=��g��W�e -�+"tt����=c��='0-ڣ>�������o_?gH�%���QSVjx���N�T��Rf[���mXУN���e�=���9��f�u0�ا�!�t������&֠���Y�)�9�>��]�s �k�n�j�� ���Eh��V�|J -BU�r�QE��?V�ݰ�9PP���w,(�u��T����'�Kf -j>���&������w]��b���po���,�"��M��HX�g���sr&:~��������K/�G�n�{,UD���&�^�*�; "��B��墑�QQ�A%�"P͈�~7�҉@��(�#�nħ���G��AgB�6F�K7d'���t��$Sˌ�5Z:�Ak9��]h�ird�Y�O���ߌ��]Q��<-��$���x�%4�T��_���P��[�� -���eD����h%��$97:�",m/}���K�}�"���%Q�j;cuᚊ�n��{뚾� -,����:���c�E�������;M�#w�L?�T�5,���hFx��W��QM<����/�,[*aᗄ�h��:�¬�p��`�-Y��>vw���x�Z��$���ܞl(^c(@���+-ů\su�)���� S����������A�݂��K���5�XM,א�jٌju�T���vl<;J�VL�,sQ1ش]F_%�2 ;[� ��$c;p���ϐ� �ֲ�_mwZy'�m|[`�!&����gb����ب(\��ږ �u��$��ri�X���ī��@�����[��tȍ��1����W�c#06� -��%��Y0J��)��4�k��y�<5��� %}0�:�%J�EI>O9aYa���c`�$�i5�Ԃ�� @�4�cFXe5�:�W����Hl�'���J�$��G��Kaͺ��~�QJ�ۡ(5'��]ػ����֣�O���)*��hm\u�vʥ�koɵ[+y�ޛvZ���H����U���m��I���ą��(�QS�%��|{fe�P��'j�oǒpWH�D�#�wSn�;��f�����.@5�s �S#�ޱ����� -�B�'���;�I(���&|��Hb�KF!��X&yԪ�&8��T�G�'Ѫ�-��wT�,�a :-�;�<I�J ]Ͽ�^��(��%/usQ`y���N� qwV(��ƻ&�꛵=<��z�l-ճ�Ԡ�c�q�$������h��<�k2��ܩ��o�G���W:JWU��������?��� T���ɉ�;8�\H QKC�5� P�5ct�� -iл�>���|7��>��:�`Ӧl���L�'��\���4�p�aU�y���ifS�~q���z�}{ -�"UKB�0d�/�wW�ᴸ9p����_�"���:&.��u���Ց����� ORD0�`s�0m�mVG�x���r�,����D0ƝB9^;6�༑��]�-υwP9��5�$�s]&P� uF�[�������X� ԻL���N�lf�K���~7�O�5w3�?�oG���2:ȴ�C���Y&b�.{g�CxΒ�X��:���cz<�gs�%�s��6��H��*������B�X���(e�G"�������ԗ�kQ [�"�Tn�IJl*��)$�0��k*B`�Ͳmu��8 ��.�F{�BLd�-���G�1��|�e�T���r�as�;���pG,C�E&X�,���IY��ʅ�j�A%t>��x�vX�R9\��ÿ������@8���*��"�!� �8X@l��>_�HTW���AT�� ?c����-X���ȟ�T�;@�É�9��brw���έ�J��kR�'V��]�/���퇓�~`�Z�dF�d�O��k?��cZp�g#b�2n��(V�-��Ƶ�`3V\ڋ+Z/1����r�W,���qǘv��R�ԇ�x��~�� W&� -��H��'^n'��[^�P��$�O��M�� ��2�~p�J��.b'�tơ֢4�#�k��eq�����Y���i;m��nx�|��+��,��*���p��vV��N{9�a��N>�rx�3~+~z��9~?�܍��k�ٰy�����K�1r\r]}���3�B�1�J/���ʗ-��eN:(�t/�hշ�>�l�:}�ë�{�b��I�r��e���g/��Ϯ��)f~�m䇏'�'�2Q�.!��wY#�V� �X���F'+$�DU�&���k��A�$r���))��QcR f�*�)�Z#lH�������('T����|��G���Cr�o���VnU�="O>��5�!a\F�>�B����2���ɶ���|��Ҽ��!�p.��.u��A@|v�p��W1F��JdW0�v�v���>;�O����H#C��g2�w�DK?ZZ#�UPx3����d�g�ox/�˪�bE}��or�>��(m�fQmX�l=z/�f|ܔ��"���MD5�B!�iq%Q� -��J-��|�Xx�=D+@��ј'��I��Ử筬�qM��o,�������V��'��-�����Z3�GX��ą �G��"EXI��<�` �E0��o�Nʢ�����-X6ʰ���~D�.�����h�֗�5*O�,~�O���Ï����'�}E���L��Y6�U 9*�dq�|��)��FJ�{y��� -!R",>/GvAB�q�I�v��⌵��������Xz%�F���"�I�4�h�^�R�C�u��uh -����"���8�f��b�\Lp�U�'�7�wʼ�G���wS���,�3T�aή#*�o�쓛��L��?� �bӅ��å�$l��ʲ-�[+��A�Ř^Ʃ��AIۣ02��K$��.�;��;�2^e�k��3����tnk�a�V7\jZ�+�i襴B��nkY�=/-( -���i}V�����|�5�� oT�+&��<p֙��?g����0��C`u��9��*,zl��t�`��@鴓ނ}'���oĠ����=�w����SVL"�#/U���ɺ�b�tc -�D�{��)H�I�������TgL:�lY�LG�����2A�"�%�K��y��2#���:�4:oX #2��˥s�=>�(���e���������M�frWÇ^���X�cx+}{�3�UB� -�Ru�^�+����"���� �x㼎*6t⥤�V�~����V�/iϻ7��{���$�̘O낈7$+=�� ����O"���H��_�*�=��q�9��F�]�t4oW��q�.wq+�"[�Q/�����8<+���Q"����&����n�~'��Ld��^b�7�'nF6����Đ� -y�#�;;Xȝ -8�7�ǟ�Q���w� �+3j9�2��xM����H,�ἶia��y�f��*[�e�9�٥�������8�����K��,Wac��]��:e��!n��*�"96�8�����]i�Ng�:I�J�C�SB�uv�G]s���,k �S���4����ϐ�꧖e㖻�������[))k�xK9�` �)�38�uQ60�P�E�;?C�Dx������͎o����=����E�����e:V�ĭG;w��)G��������y�m�Ǒ���:/1y��h]Èg߮��MpLx-��5|�~��E��{TI�ֵU=E���%WI��4,uX��!����[��-��G�E�j,bS-L�s��+�O�Kq pb�1�B*�P�Z/P%1*ΡI:k���n\�XHm��t��z�� -A����V�Sy��e���t�&��;Xӭg�;!�� ����l�h�=du2m��##*�)U�cBP����oT\�R������z6.��b�3-��zj�"w@ ��z\El�[��0����<+�������w���ծMQN�pH���z`^��4Bl�8To�8c��ZH!o �k��)�����#Y_�i�{�Ɋ�b��39�,A�EA��ʲ��CK��;4�<efh��^z�m���ay:�ɏX>�W�aZZ�z3{�3���;���5Է�G��@����f�"��A� k��6U�:.x.�" -T;xo�̀�7Td�(�8��j%��;�a��n�f�D�a���8Q��cO���@?�lf���T�� �d3��;�����c�B^�@��;Z��ig~�O^�oH:�T�>�د2IǦ�#���M��@�Û�&�x��q�l[�P���T7̀t��6��I�T���J��%"K�Ъ��z\�C����cl'+�AG=��"!{6%�r.uBZ!<;"�w�"���TLd����h�����]�T,�M5lI�Ͼ���[������j��`�4��pQ�D�^҆7�/5�ᝍ��<,<57�9��)!���1S^ �&� ��Hw��:�(�"xX��3�x)j�6���ҫ�o���EĻ���D]_Ԕ5�]v-+e �M�f�.9��ZdP��̈́�d�dy�t��t+Bo���{g#��:cu�A������W�FNÇ���L�Y~( -S�bx�Ⱦ�:�a��+���T��8�J -O�0 jO� ���Ix�N�A"�[�<�8��51r�7ގ�:tOayFbq���W�ʵ�n�z��7R.�/\*�F@;h^�t�j��Ŭ�Ҧ�F0ͳ��/ZV8,jW�dC�r&s�qyŘ��JR% >�+m��L@vUxB����R�6�<��W������j -���KR�?s�ю��j�U�dpY�E�Nf����;�S^�W�@'y�N�֔@b���<0Sz���S��ٚ��(�v�#���Z�(3l�o�0�2w�i��ײ"�^Z:ruK�V7��p��e�Wz覶�-3:\T�gQ� -�pL��ZB��|Op<�����IGzx�����}.���2�-��� �n�}#X��V.��6C �B�A��Ņ���h��,�Gն�+鞠��H�{|3�,*z.�Np�X ��[��8�>A��˼�K�� !� ܫ(ԇ��5N����-{aB��j���}j���:�PwΒ0+��A -���������ˬ�5��5(�AX?>)�efyD��jT�ݒ����J �j�oʠ�3u�5x9�M�5�`���� ��$F��� x�#�O'����w���/s�;�_vT]F�H|ƖU�x|�yH�Sy6\��ĈNs%� UKuC�в�d � -��cʊ�#�F�dL���N`k��k��ѹ��k��H91�0�1��J~x���[�ȴ"�.Gx��Y� _�81�#��V���$G�[>��ư��yf�f\"Q����d����4۔1�m�|�^J�Ui�U��&̾Z����!�&斯��_z�l1��C�F��Gk$�)�`�QR����1oV/�Բ^/;0*��Zx�wS%�D:Joԏ;$�����\��Zt�G�dڌ���u�p���p�|Hf][�:�jΨ2��t�-M����f�C�?�H�7?�(07�V�!� -�r�c�.�����a�eZ���%R'����@���X�¾��{�oo=jE��1m���1�6�s��Q��q�;���8�v/A�k��h�� -������<+1�i�+o�lG��XK-�TO��M���v�N���P,Ő2�����W��A�7)��G>T_��<bZ )+qg�I�f�p��n�����qx�hT?�?�V�����`���D���xI��Ļy�k[���}�ewz���"�:�f���d��vr+�k��6�E�k�&�g.���v�s]��~h����&{�m�>½����t�?�jS�=рML�]���5�6$�+�>��� v��coaVR��ݧ�h�wD2&DL��GI��e��Zq\I�6�f�4<�|�r��v�EO�o�C/pO�}��k�'�}��lja�p�g�=8<ah���t����߶Ox<���9�V�(��96�8���(E������`J�:# �Gp(��: ��aV_&�B_�+9����R�Rl 9�{@���,�r_M��mn���O��^�j[�x�X�+�}��?�2�6`��G�q�"�@˄�2��ڑ6 u�P}��+�Mk�����DzS�D7jYD�F�K�V�G�(l��н�m%4��!|(US��e��Ko����vhn�X*UO�B^h�;��WN)N���(�x��Ή-�\nO�}�9��^�r0 &4r�n1<j�*�Ѡ��+�ֻܭ��r�ՔÏg�5��1�����n1�~�:��?��-�83�����N�jZ9m�q���:F'�r�o���I��H{��s�5?�at;u��o�ϧ�2r<)Ȟ�>���/[�t٭�I��18�^�-��9Єæ����m?ؘ3���&���Xe��,��Jֵ�W{�˙�H�b��0�G撩s��vd4����-N��&.q�{c��bp��.��V -4Y� -��uG�ο��0�:h���"W�HY��p�U!�5�A�/#� c�#�Ft�t���k �(�}r��L3ʭ�o��zz��2�Cҙ�(�$`8��i���z]�6�~G�"�]�;���P��d1Zc�s��a�D��fj��e:��0Ŗ1�%^b��9�º��Z7�.��GI���o]/�۞�0�'7���F�v�R� -�D�7|��<X���ly�����ˢ!Ɏ�m�t���V����������D��-X�%�$c\���w $�z���n��bɠ�F�� ��Gi2Q�G'���%?�ڠ�|Zc��S���Ǣ��؍��z��Ϗ4ȫ���+4�H�1���C�<w:����)��a0T�\ֿRoCA�n��G��_�kTm���*��#i�,�5XR��V��;�,K^�qt�P���" -�Ͷ���I�z9Ԟq\K�E6c�M���%�|��<��e�t�%�ۥj���5+����tD���>�(���%��Y�wu�C��D���]zIR��K�� ��ˊ����B^�F=��y��Θ��F�-�%ڸ�֮� h��ɦ�5�T�%ȹ\2[d�&_��_�a�s��>�d����H�]�����!�?�6��1��w,:��{P�ў���U�������C�&��#��^^��f���,9�(��ޠ.��,��Z�Y���-�|uU����1�ñ�X��c�c��x�eK�M�Ee?�5q�g/S���j.�d�&^�� T�M�$��a>T#3�i>�4�|O�&m\{��s���b,[Ƞ��,� -���������@�Nr<���E�j���8�n�0~^�s\wer�\o�#��.���L�n"zx��оr�Vb����>?��@�<��wC���?�J$Fv�_���x��R֕W��F�q���#�9�?����Qyإ��&�Ԇ��J�'�Nb�i~E�N�%�^�sn=��<]�F7(������Od\U��T����[.�HI��Թ���!�H�<���R~�.�i����19�l��.�f9E��o�YuK�0�� �M��z��������%����ٚp�uu~�xC��g��o��{ej�h&�:f�0{���c��L֒�1����[�K�p���X�m��d���@��l���_r��;^���T��;�,���`A4\�����w��nE���`��9��m,i��]���3�C t �Q���$E�)���\�uW�E�����A4�:T�����Ԫ��]�\����c�h/F����˘"d��04"�m��6�����:�B�:��'i�Z��E��N��n�H��P@��W\���)���O���)y�������r�ĺ6�=id��r�a�<Tȱ��T����!z%�`��y[��WС�#ąFcD/������k@I�Dgdh���� V�N�_�~��u��22�J((�kM��3 -_�`~��TN�r5�r��� �1��F�6�����������VX?��'�R3`�q"���a��[p -o��TNM�0XR��8���͔*7t�U�#t�4+Lz�I ����5��%/i�k��B \����cQ�{�r�̻���d��Q�&�DSQ�\oMvÕ�U�3����s�_�u�Ċp�5�1���j�̩�� -�j4ͧr��:���j�_�]S1�v��b��+qO�H���ʒ�^x[�7M���u��i>q�yZ�9�mG��X\b;�(q.v[d3{k�DVGFD����ev��F��?f�+�ü��7��*m\@��y������Һ�L2����x1�����=_�#X�%(����+(�!����$O�^글������-����՚�����ڴ�1�;Z�qG�'R���h�p��#� CͫfJ`q""������"�iq�߈^dcNd� -R�r�堋6f�q_� F�XM��`� ]��~r�%�N�2��t^ �A� �l�C�&�����eZʯ`����^����]<V���V�������O"�U�T����$��1�iD��~>��'��f��l4�[�z�b>R�T -5"�b�:@��q4X ����SV2�>~,��x��^���=��t��G�/��~��q�[TnQ1�0��!(k��>(S[u��3�@�z��k u�����!U����.0M0w��斆�ը\�6��b��:YB��u[����}�B���R�1%6�zKU�T�!����T֜�¨����P#�����M������~L���1����R�=�T��E���$S�7���}��9j��8'�6i� �i�h�^�M�s��#.�n0,�_�|�"��%zB�a;]w�Z��E�ϱ���З�M} -�a��i� -��[?mP��\-A����m�9zc�7�mk�o���z.?�!f>j��#ؠ�[�#S�k�>������e#4�߶�B����_^���h����qq�]�Vp)���E�4����6^b5�W�e -�cN��~�%����r�Vl�\�r4�k��w� ���',�)���bu;�����B�(�ʅ�6����[��ݼ;�]��F�.YnE�ܹv� �#�:\?�4j�L�-�M*�2�X�t�M����j8��W�����ەqN�j)��E���&\���P���1�D0�\��!�;�E'��9�i�F�%�I���Jw���I�{e�( ��r�ϩ��٣]T$|�p�5��̖}�֮)?�%����Xm����0��!� ����:Gl�����H���~�}n����D�W��ө���(ۍ��r`������L ��zS��+��4�D��f���u#���%����G�(�7�8�`�����W���=A���Oh�r~�̽6>�B�"�&���g�sg�%ZBI��@�:y��h/^��d�Bt0T���A�fR�5��R����d�-��[�C���|�.������d��c�P��hy���G�Uu����q/o����J�]:��%e�@([���!c:�MX��#`^$����찪h�J07�*�s;� -`�@��)H�Yu9m�[���$~����RŬ�@��(8>�=+O���WP(1^��~e��դK��-����|�un�,'�Jť�tږt�Q�İ�Q���g��tL��D>t�w�۱ �a��!#�Z+oF0��H .��C -�Zӧ�aՑz۫��f�D���ˤN�L�u맦ƀë���+e�KQ��̒l�֣�^�|��U_z��#?U��Y̦��#������,�@��9:u��!fw�=��l�&:Z�͖�IM�:��t!��p5����]5g�x�:�*��Ѱ-��!<v<U�t{�^�i�9;Ac�jy�b̵��f������i��f�QNq���s>�lJ���P"M�0)�P\/�ћ�Z���VQ�Z�d�^%4�&�P��j��ow7A�� -��n���� ۊc��9�XTBA� -�a_!����}��j��륿�y�_j��4��jU����V3�䟣f� c>D�'�� �2Dς�W�!CL�ȳ��u����K��,ͺ�5���$4�6���RB���S����o��t3����b�֯�[�a�v�� �� @���8͋���@SUd��x����=�:�Ne���%��� -J��<շv���5ח�w���̉o -�v^T-�I����J�e����+��x���$+���Β�_���"EL�a�}7ŗ-�1 Y���K� �Ҳ���;�T��Bq?�^:��M�@ϳ������������h� z�~����K���GR�D���=�.�z���}���������+��}���'�*�wꦆ����w���#nJ�E{�-kܶ)����S3��Y�&�~��r����)��!��헞���&h �!$��ۯ~�:��큘�.z���Ջ<�dt�F�\��/D#)c�n~�,?�j��[]�0��^a���$o�ط�����"�y�>`�סp~�|�[�'(��L��e?!3吆=L�qm���2�:��M(�l#x��`.q�8�:I�����^���,:�ZX��8��V��U���j%�/L����Hw�+�g���m�oGg������N���vx���Z.�w���-�Y���䵁�ȨIw~�9����S�˄����ݚ;��~��7.I^��<H2o�<n��}���e>��c4`Gc��TRO8��6����������*�g�[�s�!�MZ*Y뚱���{�n1���#=�8&��)����G����i�7r���Ɵ-l ZO�9�.����֑].�)��m�3ʹV�OY�I�u��ה"y�$�T��t0�'���F��jg0 }VjZ�:{��.��Vv˱��%h�k��B8H�p�%]�k���� ��k9!�"��@��i�y3- ����L}z�c�3@�(S8L�<�|R~��s�ڃ�,�R2EǓ�V�U��P��1��r���eѺ��9���7��Ƣ��d��9��� ���ֱ�^�e[_�Kސ��JəKc�ձ�E�OT�$��-�����H�v��F}A���m�(�U�9�X~�;��z�ʊ�������_�\�[2Ly��!�j[�\=��j��R�8ᣖH0�z�D)H]3Kp<���~_�Ul� �1_L�i��b�D�Mxi���B -�A%V�� ꭟ��Ї�|$P�H�4���GΜ��Q��3|GަD%�hAH��\�ݶ��ȁ�{j3|O�0��N��)/5+X��0.�x����Ѝ�u�j�4C�+�����:�P�� 3�|��¦C0Ұf�٢��B���ӎh��!��++�G&���Ίo�&u���ʉ�@u��*M?��<1+L�f%�� ���|���*F���AdΨ�ΤLeE�f俽Ϗ����];�hK��"�K��x�Q��H`���w�aQbC9��F��n�]ҙXNHP3��i]L��wn�KD�����}Z[�mK3�a��E���&ꮆ����!�-*�T�pP��pځ"*f]b�#��]��Y6�9z&,D�KN�\V/k; 7u9���bݛ�rNʅ�Ӿ?o���,mQ�/��"�����E��UMhBm��{�ڠ�w���hL$o�pg��~�V�f:Qtl'V��-��@�x�hv�9D�P�z��7�V�����})xoyy�7Vho���tFl��ڽ %����w�� �4�?c�ڒ��L��k��j \}�mI�^�>+��3�MH6D -JI)��dq���g�S9���f�{][��OM�����Z���Α�k�&���&kzU?1�p�n^g$#�R! b�f�`���ʉȁ8)3z�+nc������֬�(����p*�����:� }���4:��ۓ�R�Uο�Ԝ�O���[Ǩ�/A�M����(t�� zx5�w��r4��k��*�`��v��T�gG��$y|�\� ��o�8�3��Nr햂Ku�RjIK#`c�b�S_��.�=1{���PRwIV�J^�����7������?(�c� -�����]���%G)6�?��t�o�����~��� m�N�C��j��@ɸ/���:f��'�B �C� F9Q����$��K����[�_KI�/T�C�A��TZUeƳ�`:������k� -H�Hw����}mg/sq[��p=�:,s�Ox����jk)���e��ڸ0�HXr�Q&��)��Q"u_�1��A�Ǐ���Q�+QE�T�A�8���I��OtNX�ֽ<������[$`�n_���t!s� q�J�X9"�{D�JU��r�v�,��� -ˋ�@�� d�(�w-ӹ�Y �������Xu2m���`N�����D%�ҝdPl�-�0-�/��,aS4�-�E�����H�~� -S��߅�xwi��\;y��\my�h�[zyzBP�'{�ɹ9�'u�{X�0�o=Z�"�z���]w�f\p�\�d)bv�� -�z9����7�d��D�M�1jvާ2� -���a��{�$���h���.�wű���y -��+^9rc )��Э~�Q���O�O���m�3(�i�=�ZK�c�T�L�^ȡ���Bu���}3&�J�/ݏ�@�ݾQ�'FZ����'=]w~����n%�����|4f��\�S��@�qԼ�7��bO ����~�c�)>F�Ze�X���BNd���=O�K����Z�aQ��ڼ\���#��VP��d���C9Vhf����YS -�w�b�K�`G�xG��B��[�ޠ������8�%�/8�u�{��y5�vb5�`�nNl���O!���)d�#Y����]ޤ�nd�Eo���9�� [<ѷ�&E��)����Al�8���I�ځr���'�`x��c["��d#L���)��R -o������VG�t�ngQu��V�E/�!E����(����s����^�\B< -�zLMd���:�t�ܵ.��3>�i�|ה-�{3"���-����3��G���x�y)6|��amȎK`t�`��:<u����#9�Mz����ݶ ���6}/�����<.�~1 ^|8�Hu}/��C�A�7��L�N%���,��¯���p����ĉ]B�Fc�!��y�����2UB.�X�R��ni���qzY�f �P����P�1P']��jԌV&��u��ڌq�TK'������m'z��!�،a�R�!S� `��J���y�W�81��ٲ�\�;��^>�B�7^E�>|�s����CJx��j���? -��]�Mk����La!���W�1��v#8RʅQ�i�wř�я$���R���c(�/��S1�mE�}� ������V|�s3,����u��j��*�:e�d�r�F��5(j�{�f�\�t9>Ƚ��˶� -͊Y��R��^8��،����FZ�G��|]��uzᐜ�uKx��\ެ�Ρ�f�>�.ڬ��0�^���*gs��ؾo�u���r����*ߡ�g���;��Ƀ�;wQ��9�}���H":��,�W�Ha!�� tKJ2T�H�m=�++B��'c���;o���k�L X4Iёt����O��L��6 a��E$:6ފ�ۧ4�&��m����N�,��ѓ�[G ���k��Z2�^ -�I��/�^���:�{D�[�I�W���𰨑_���;x�cp�����uC0d{��Η����S����]�Ũ�`�c.�)�,`���ՙK�!Z�$<������a�x�;N$]�c[_"�0�=0��crl�4�Xw��РD����}x�{q%h7�L��E��l8�sY�_�^/MK%����h�rk��F��������π�Sh9�FZM>Tۋ�]�~������e�%'c�"��ʂwM�}��0�����=���C��9zS� ��ש*�C*�� ���;W��O�7�=Z��]S��w�`t�t0�&��*<��u=�����9�j�R%��q���u�⥊O��,�q����t� W�E�v��Ї��*���m���:z"��O�Э�N��2���L\�C�����0���n�/�x� �Wp|��P�֑m� -�=q9�c��/��P�|�������)<�#�����v/�,���j���m|T��ùa��a�X��R�o|��8��\���ps��0k�P#���m��<F�O{7x��;R *� k�U����w�����<][�ނ�?0�Wl����Y^x!�j�;ջ����G�W�i�|�J�g��S\���p�TObJg�w������F{U���=��敮��Wx�6}��mY�J�r�ĨD�S}�d�W|Қ�G�x�E�H�bee7b31,J��_K�0��u[_.��A�)��H����� $�W�q+��HfV���d(`x2�Q�R��f�Br��"��0���,���L#*c�K�6-B'�0�,Z�^ -7�1����8��ռ��FG{�L[pץ�nxc:��F,�H�D�$_�m��O�i��9��"�/X$>D�h��p=��U�V-���,m=�fv��G u�@�b<�zt�Uc�`b͜UͅI4_.Ӭh&���}�Ul�рh��M�����<��I -/!] ��&�ҸX���btF�b�����]D�"^3�Q���LI?��~ -K�* >�����嚿���iQ��w��`�������\�W2y>�:"'���/4�\n�f^Q�:��|����K�m��K� �pX�`h�Eu���^w¸��5O������-�}�@�Wy�\^�M�M�ub%͚;S=�R>{q>^A��Fy���GWRz�=.�̬�8������p���G���Y����H����V�+�C�[%�� ��ZJZ'A�ņ�m�Ü2�Ȓ)DYFS�K�Nf��D�$�����K/��J�p��R@��3��d�m8� -x�tߺ��|����+�BA[tn�"� �j�͌5� -���"w�0��{`*�+��-�-�G�Q�R��'t���r�9�L;��۾�=TΌ���S�� �0'+�QUW����LXw�l��Lj��\Z���W��vg.�&&��x -ނ�W|T��Tz��ma"�w�ߵ�JG�a�B�s�t�'~���7_��� $�c��qA�n�� -�.!A��8L�`�Ⱏ�(�r�+07��k���o����+Y�[[h�Vx��`�*��%�<�=��Ҵ�n�����^�0�_�9Kk�j�)�Khx���.�T���2 '�W� ԧɅ�N3}g���$~��Û4�0�S��[q��6c�x�+(�����E0��Jz��:�ɐ�d,�A��Û��Χ�L�k�e�P�a�A�8�`щ7 ��$W$mZ�3�+څ�K)���9����>�خk`m�ʏ�Ts<������6��/���'r��Rx;��@���̮�m�m`i��C������@U��v�ٷ��!�V:����{"k�gx#��=�8a<�t��v�&�@����ZD��x雕��(�e,�����W듎ڋ�i��aIuE����̽r�>��٩VH���o � P/u�������L ��j>$�æTTo�Rj��{|k�ڔ�aᵀ�띉�S�s��+�8�P/��1[q�8'�����7��p�U�9�Yf�Ĝ_��c&�K���q-i�#���~���6�Z�-�2ў��dZ>�2�<�odl݁�6�6""EbY�+rxJ�a�h�2iVF��=}���u���4�̞q;���xu�p2|v��PP�Ӂ��!�5�C� 6ʤ!��m�r�X��ҋ�����t�#�I+Y�e������ד4|���>�X&)�U\��<�- =|ʚ�&��?:��z=#E�%P���^_���W��,��.)���m�|Kו���!�o5;�I���M�*J��|ma٠%`(YDS�A��n;U}m�˂H�w�(f�;���a -�SJ�q +����{M�3�4b_ج"�0 I����DQ��"_.Lr��נ�Qk�k�p�N2ܫ���-nHM��^y=�߹� &���篗n��=�mQZ�9�'��Υb+x!� ���*����c?� -WHWF��ٳ@�?lyP�f>)o�V���ԗj�P�An�ܮ���d�0���J��|� )���8�ji�����S���6����jC��]%6����º�M����T��V�ּ�x�a�Xd�G"<�R�>��� ��x�"� -ͬ�.�&�6���Ki��#�:8��yp�E���Xv��RD�i��q������i��*-іG��EN����hkt�����9�;��p<ͻ���9�;VlM�[W:��C����3C����nx��@�B\a�y8?�.S��)���?�QM�G�� TdY�^��M�f� Hz%F�']��Q�'�'ܬ`^A*��۵{V6]��܀�8Jyā�A�;�U�F�K䉻l柕��m���%g��V���c2�Mi斚Zhd����6�-��a$��cjC��D97+�v6��%)�>42k<��%%�Uo�~�#ɱ(�B38�>iY�QC�痗��Ǹ���/��r���G0J�[�U�%�j#?��T���Ʊ�h��y1�\����W������#��g.Vx2u��KE�3J�Y�/���E�&|�}/� };�g�o�_>�5�F �2�$�����>���l����1'�����9x��f˻�ϋ0I|ݫ���� -o�K��+ ��h���;0^�� ������.��M����� �A(��E�����\8JNGEu���W��̦ rl�58a� �x��y�ݻ�M�vٟ�S�5?�@T���Gs�N:($w�6#�{^6��JN濫CM�S���w(��k�EƲ�p�Q����F���l���������2o����1{�YJ%��<G%+Vh1����R݀F�I��I'�c23���@�qއ� �A�l5�� ru�h���A�����='����1P,1�4�7Z�8�, -�݊ ��1X��0 ��喅y,���~�+���eə����I3��C4��2 �|��"�����[�W9T�x������f�XSߺ�~F�F�*�����*�9����O�����[jٮ�4 4ӡ�����b�]���P���]�XOƔ7�!;b�~�v���� -�f:�\�#ʖGm {���1���5���3Z�-�g<�)?�#7)����9���C,-�)�������i�2��X�#>0� $�(��ʁ��x�H+��K3LGQ'�����YId�����)��l���/����6Gh�_�=a��8� ]�)��3U�Q6HSF���^�.��᭛ԱӪ�GB'���iY�~u�,��s�'Xt�5�>� uPxU�ϳ*�n٦~G�Z1����[ԉ���[tp?T.���A:5�M��M��7÷Y�!up��`��8�5ʷ]?��0W���_mlwC��N,8� nQ~�JY����K2��G��4F��l�6P��a2y���?E���f�]��p�3��#��t������=5��e�T��-���.v�� +cQ}�[.���K8/�o�_Ӿ/o����=.>p�߾~��F"#��}����ͤ��aV!�Ǯ/n�cM�ӈ�"��S�)-��X#ƴ�xA�����ƎQ=ގ�k��b��{9P��Sp�p�gn�?B�]���<��u�&��8�L���p^WU.�]����*��z�oM��{)���������ݛ7@ߛ2�`���y$f�c�j&�فc#Y�'�bԺ*��L���� r�&?�ۯ� �r1+i����I*x��[�TK�t6����]g����9���< �{2ꈲ�&u��mT7����SYU�{m���ro��w"4��~�\=\PӤ.�ĝ�D�Y�� +�[��1�����u��b���c`x�����L�Em���U��^��Z�?��:�����J~P�������Q�˺X�^�z�1����#��+�d�����?�y���6�a� M���x6�f�0" 3M���nfcQ��@�@6!���������x/� ��{��>�����`��EWg�an��bH@"<�Aʧ��R��a,�����������Vw��(� +5�ҵΪX�1����^*�>���:���F掕�#��~�:�|��f"[�%U썸�!��͋�8�5�Խ��Et� �:�j��RwX�4&�L��ؖ�4.���6l`6����(ljI�.��q�G/� 9��&��tkn+w� +o��&����3��t�*��+�-:���s7��s�O;c���-�&�u'� ��}>ɀ �� ���e�������]p�)� \�dw46��M^�)���3H��ﴍ[ѭ�Ԝ�E�h�K +��Gj�Z. +f�ț�7�;*.���_̍�)����>�.��筇����K%38��ss�z�h}I*��Hh�V1ԛG���A� �!]@�s[a +h+s��ږ�,BR��e�� +�,�䆑{y���j�Mp��'~cZ�q�G0��$��(?�Z/q +x��q�{YRN�Ÿ�����!�|xع +�<�\����²{ޘ�W{��2��M�� >�w�����a�C�JzV!X�-��B=�jk�,��]1������ VqE eyyNN�� +m���oMW��v���h#����M*��t^s���q�]^���"�&{�ƽ+�����������ο��co/�S�"-Ś�8ݴ+���^�? +y��7���y)a;R'�m�<PWh���J �z��h,�F����f��e��&(5�aD��!ݖ�j:��8����q�{]5�空 ������2�o��z-�t�"Z$���#y�A�����ȧ�|T.�!3"]�R��H�t�݄�c<�V���p��Bw-<��%��l��'Ụ�&��3%��¾�o�L��)%<*�Rk��D����<]hW(ކ.2e[���ı�*Zۛ���7t8�ŰD.�aZ����5�]����'s�9Pl���:���Y�8�A�"�)�vó"�͞�m����3�L]Y�a����RI��W�w�o�;`-��6�]g�Y��R�1&��,�B�4y�t5{Ư����<s�ݼ o�B�(�\�'��?�`.< d����D������ �r��r��}��0Q��K��J0�N���@Lx��;�*VE�nZ�́KXI�d�\��I�|p��t+��-t�W�o���sJ\��n�u������ײjT��b�^l������7Sustp]k�Ô�"J3)�U�m�`N�[��0d�3� 3u��U������a���à (:��-9�`���^�.=UzIܯ��ޤ�5� +�;4؎� ��J`�5� ��K��Ƣs0=�y�封`�!3������~���bA������[��_L��K����4k:��F�6V?zg�8�a�N�D��Z��@��e��v���p�ĵ�_����a���`��"�U^���C4��ĝ�Ȕ�R|E������ PhĢ�W��/��̽3:8_�"#�+�bh��J��!�< #�+��Y�y'G�+�� ���N?r{ �� �X?�ߌ0����<,��?�;{Yl�\�Խ=��͈s��\��`�LC�70�cr���\�8�R/��f�8����l/�� +�ܸ�x�ڥ�P7!E�Y8 ����(��[��v}taaG���t��<&s)�#�Q�>,�L��.)���E�0RSv>�����_���''�����Tuߥ���� �kM)f2l�"�a���%��E0���d�)�=����L���4�٨�M>�i���oP� +o�ױG)��E������*��B;�V +�3�A��U2F�RfB��F�=�]f��A��;��%��r,@���H915�u^��'<p��ާM���Ï��G�ԩ�m�b���Qǘ�Ѹ�xK��r]��4�+U��}�.��r�Q@�P��)ӈ�A"tK��k%�4tD�P�(��Վ�Q?M��\����}� �˴��PJ�}�A/A�����t�}�wԭƉ��KGi�q/gX�ސ� �ɚ#���DȌ������b�E��Lj�%�4� +K�0 :�2D0������ +V7A�q�~.cD +�O�#������q��L�[���wj�@�J���d�dk%��m U�V����}�L�+�����F�p�+�SNC�}A�k����UmM���#������N�<͛;��b��<Kԯ��R�d�ۘ�����{�ݫ�����)��0^��r��ۘץO�)���m��y�{K�S����n�ܑfp)ژ,�4%qs�@�|��������N������Ł�z��M^�����g�}���_NY�d&� +��艃�HyI��Wt#�z�{A^�B;�̲Tʹ�?S=��)�����0i��]��њX��Al�ѵw iF}�x�Eϟ�����a��r�\x� ���j����"���wI�F��q�Q8��(z�����Z���E\[��[� ��1h�v�=`�*�B��tT$�J�Bs��.f���f\�M��� �a�S�Pw�,s���^-SYM�9�n�Ev�R�\v��T�I%�Z9�&Q4�?������gO�OS/;�#�x�0B�8X/��:'uQd?��cqk �PH�t�[��w�FiG�gx H���fD��O ��Qg�c���6����o�q�=YZ�B���t��ю���*���2�*�^>^B��mTv�3�q�o"���[�b)ț��;|��x�W��6"X��Y�_J"�,�䥢T6�(\��n�rS��uQ��fP*��:έ%�`��5�H�QG��uL�S�dި#����D��ؐ��������)�6��p��M��儍o��5����Ş���#�̢�3Xo�)|�/nЮ���9e*{�x�`���'�Hm��f�;㘺>_�?3Ox��w� ���hS"�CW�:Ulz�X@�|D+�;2j�q���jb�ۦH�X*��g��8��� +�)�E�����yc�w-n +�+�l`�<W�:�D CQa�A��r� Wo*bׄ��Ƴ7�## ���fe������閬k���u��B��/�w��HU�.lф�p{��Q������� �·�ނ��)�s +���� +��[i�4ͱ@!V���N@f�A�u�>���F��t������� ݥ9�RxK��Q>yh(�((���E�29ٝo��Û�e�Dn�1Q#5�����_v��/��s��d�v�b�j��ǔ��w[t� �����_��T?�JAf��4�M{�"�vz��Z�Dwa=�+����;���o��\���N>���0�f����T���Y�}���������/������lӐ�7{��`pR?N� +�����E���n�2��[ߩ��[:q(��39�9W.\���;��g�R��� `I��,Vۍ��X��}]yl�$�N�[E�p��B�爐 ����E��ĘB%b��a���<;�1�q������'��Oj���7 �ɾM�w�����L&>Oչ,���_ +�k"�Jvϲ{5E�D�ط�*���C��R&W�#�TR� +���T��q�Q�����f�#^5Y��aQ�>j��aF"�֕IW ��� W�)���A��0�� +���'�C�E砋7A��M�-s�:�)��2':�ي�Y���pJ +!z��9��5���>t-:�tx��\N�䂧4`y���`���]ޡ:>Z�����w�$���Sg}�7�/�W�|:YF�RK;�:��oo�����[�M�eD��Vk[� j<��� ���G�\�;~x���^*��m]�.hI�=H�^˝�ft�� �����z�M�����ىw~ ����)�QI |H�M� +������}IY����F�v�ǀe�@�H�J��!A���h7�8�N;}S�4��ߐ<xۧ� 9����<;��c�j���?��,�L\F�G��z9����Y&>�ӷu}!���h�)^����o�v�-V��E�\�#����[�̀��#=�}oQ5˔�=�"��o֡7.ETs�AGP[�����rV� +�O���eW>��5=��\e�-�������%�ںH���';孫J&�r;�L�.~�yL��Co�v��,_j����/�+sÓr ,��j�FŴ�s���R�!�?�]F�oT.�[D#��f�%��������h��F����u��R/�(��Co]��ʮ�9���RS��+X�^9Phǿ��z��T� #�{��˷�;���M~~tvބu�qvV�O����ԉ�H祷d�ˤ�V�1G�&��h�40c�d�e�@���c���+�2L��L�)�:TY�����ƪQW���<�V��!Ք�%:e��Q^�+�߁5V���Sj3P��G��+*�/��������[��G��������{H��b���<$��[��qm�v�fN� P��g������l�� +uKl� +{�ȣP� R��J�b.'"G�~��@2��m4-aw��m���Ơ�m�D�lg&��|�y�B�Z�R4sz��8.|��@e���~?�*�$Q�ht/��0w��[��M�ƣn��E���f��lױ��FX�䚅H[uP|H�y��[}x�Mt�^�|�N>�nx%ʹ5�|c��ZZ7�����8��N��e�PT�7(K,A��V��Y�NX9D0�!؝?�S@w�Tլ�x�����@~D1��h�Q֤c�Li?,�A����3��L����r������F�^rٷp"�Ɓ5xJ��z�I�� '$�ύ�ʇ�*p[�����dsz�1��P}<k:#h�V?�v�K�㩤F�Nx�|�+(�z�g� +������p,��t��ASu譩~%&�}U�����dM9��4�X`྄�Pp[�_ۖ*�4i�[>�,W��e���ؖ�;_��6>ب!��>�||����I��������:!��������Z�o���wс��ᘜ��s���<4�/�ȬQPD�ZI���ycA<Q�a�7�0��K����Y^�bJ�����H�mx��4�#�'@̖��E+��h0�Ժ'z=��@�^�������� ��|K�7 o�����P~t���0��~�x��Pp+�\���D����@f�D�4xpTJ��h������E�</3���gZ�%|���s�����`d��Y4@����a,�(��q)#Ι^� ����o�7pf|���1#�7Vho�~����>�Gx6�4 b_vTK�@Z,W�[�u& �߽���s8y��OsƴDj�/�D��I>ŨU:��r���5R|ݺ%'@�I���[��_�L��t[��Չl�p"��v&��ݹ��1�M�� f1�Lt�Qgd�l��Q����q�F�E����p�_N�t*�i��� PE�ߓ�U����#�}A�:��r�ʊ�ݑ ����vy�5]�!�Iאj�c�2�c�FNX��A��Ĩ�8�V��Kh��m{堨���>7�J�[LM���]v)լ���o�����4�x�����T��"��Č�ְ��]��rQ�IR����wʺ� �xk��#�B�Åo�[TnY�*�=o&�n^ �y9����~�C����P� ߬7� �i����i�\�?Gxa/�hs)�G3��J��tzI �<�ס�.4�r��R���t��FT٤��_���$��}u��~�4�����;܊#��%�oR�2ވ~~�Q��G����"�j��}0�q�U�YL��Z��p1s��a��-�m�/HRBS-�4o��%c��oO�ɺd&^G ^z+Z�MhJG3�[���t%B��i�#�A����}!��u���{��g�{�r�2ƕ ���K.�{�����%��g(�ŵ ��d���V:�O8�Q�5�<�8�d4j�����0��L�#�8���������E� f5J?jo�k��ʣ���%�+.Cg�O�]��Ix[�>�$[�])y���M�{��Tb!9jJ�Km ���ޞ=��b�}w��r�f"�-�]�p%�����eJ���m����B����z.�bnW�u9b����~���j �T�����(��=q��B�F��"F�on���)=o�j����&�^ rn���T�O�U�m�K�����no|/�G��������Fh��;D����X�pz +�H5_�pP���[B��M~�i�d8�T��nބ����]��ݚ#�IX�Dž�m�\U��ؽ՟�Zi�X6E��)�ڙ+#�M5՚F���Ó�N������`�^mW�J��� o�W>D��N���o��Jf l���������$"`H��%0ƺ>D�i +��Sio�Ɯ������-���w�t��ș8 ���NF �� ����?�(E��:̤JPf@��N�K��pl�$!ڹD̔���0�:@d4��鿜=����=Ɗ\�uEȼ�8���X�A��#X��H�������U,!���T����?>�I^(E<�n'y%��e�R�;@���&U��Q���VJBr�(֜�j��1��R�`d�S�[�z�}�,|�{�C������[���L�TmI/ՙ���A�=o��w�BTB-�L\Ui��?��-��W?�9(t�"t��$���#�{���2K�ɿ�o�C9oR�;�N� +�?|�GkZ��?�K5�:o9ޣ���������zvY�� |˃��Ne�L��uxi���ljP�~��X���筫�A t���N_'�."��z�r8^^"��6�-�[��J�S���w�r9�/ho��1M̞�-�e��3�7�8߾o'{9�"������?���u?������g��^��/ʏ���W��Z4��^ͻHr^�\�s�T�R}be�G�Ϳ@�#���I��h�[���.b�y�1"��������,�Y�ĥ�?~!�e���i��_�J�a�C����إ��5�ʺLq.e���_�#s\�U�������t�ӂ���]A�0�@W��('�afPʉf���!Ky�Q�]5ᕗ��+��/�@�:�n�j�V���RU�f� 2i�+.6�SV6GT;Ʌ��'o:��Qny(�cz h!#Z�_�hv�ǂ�~�� �a���AX�/:M����&�[� +�� ~b`�;��ðؑ��v>f� m�&�威��Vw +(v¨]�IP>lM���aUx���뾼�ECN�4?��4�E���y+5�Y���"�6"�7�.5���b1U�z9��o��x$��%�zy�[k�6��d���"�Lu�Q���z���2��\��]���D��t���+½�[�&A����&��[��eZ2d,ĵ36���#�D/B���w>��X#p�h����m~5[�j��պ�+9M^'�1+�� �;���_���iu2ߞ�+W�)r����������0�yC2�=o�⣦�Y0��Q1! � +����p���uo� ]լ~�]�s�$�y��WH���+��#� uڒk���c�<0uN�?]� ��n�D<�.�8��� ���i�R�.9G�&qڱU�� �,0g��qa��7��#}�)��TW��̹I����V�����D���dO�{�/�I2[�h�WM���g�/�������K7��Hp��uA�0� U��;�Kb�p,���j�(����1�m!!W���)ox������I��a�@i��sY�1�gc���zp7��Ѝ�$�.��p`�Xᵖ!)ڐl|'����^Z~@rC��?ɪ�5щ/�����E�$��F^b��~a]���f�2y��Ŋ��ִn�V�-�j+,4����(�fDM� +2������2����7��&"�����K�5������w�A��� +��>��ʶh�[����3y��� +�!���52�U�ƕ�üCx�|��������փ���"��_S-yQ��:�Y�����)cKKf�v���v{�4 �)�őCD ��`��!*6p-C�]�[b|����$�Vu +�P�w � �JS�K�� )��=6@�q�#g���T�k`L/������F����?��Ǻ��.*�F����u�"�#���A"瓚uI��̘��W���;�{y��M�"ФD�A�B��Ԝb����F�YYk��,��>i����m�`]�j +>���6�#^#��r�!")?�Z�Yt�s@Wt�S��I6#��;~.}���,�Ft��H8�;���˝ۚc�N��l{���f����� '5:r,������#X��r7�^g�/m�K�M��.�p R�BL،�% +|��7|����٪b�\+�f�~�B�w��0�͇�&~Ռ)l�.歚�4�8E� �͖6�9:�ޮ����;��5U7�O�ӑ�gJmb_Eɼ�+��k����V5�3�%�E?�T^�l`���o��h�X���<���s����/K�Xl}i�w `������=?��r4�̬�h�*�l��E�Ÿ+�i�<��2(� ����;e�q��SL:S�ۥ�h�;#�ǵڠ��9�!�=��Dڶ"�GJ"�sQ�r8<bt^omE�f���a���ͻ��XiuI��ȋU���=3��7����|Řo�*� @�뫻1�*}/���,UW���`o6#|S$B���π���v�rS�gB�Z�fS-VҡX7�Tgݡ趄l �#��?���o�L@yB֢5� � �� +od��%M���K�;��(��}/w�1I � Zs-�/dK�M]hѩ1DǦ���P{������]4q���Ar�@�M9�Љ7�ܖK+پ s�Ar;�Ae�8����������K�@K�r���29I�(�.��"�}/�B�1bT7����o�6����ArjԞ˶�3N���K������b]��8W�Rn��\��6{�y(Qhp '���B��� Ox{��,��Կ�-R8p���<�f����J�]��S{hIUR&ߊ�Bm-�:i�l�Kշ���s�w" �=��:n2<� +��������vh����7�Nmԡ�+e&H�J���2"��W�b4�c��.Y��M7����㡀n�=�{Ș�(d��VJ:|����Ʃ�┅��U0����]����x��f�(_���e��|�R@���W�o�����h$�lG����u�*&��XHRMD����_j������GN矌� ��H���?�����6�5�$�#6�Z����3�������D�Z� j[Z��eK���i��;\��kp�Œ� +!W����QE��i�4D1:���4�d��-J��� ��@��ZsF-9�������T�ĸC��Yw�!��s�=�D��E�`�Q�{p�q�V/����v<HF�/�M-+��2�pg4�N������k8�����Y37��){�$g�����ʖ��Z���%�.��F=��LV�9g��[Q +hcMl�aw7Vj����p����F��\�o_?��4��7̯� qEu?����!W ��Y� +r�yVS�%%�P�i���`�$_�>����;��J���H���L0�@���(㻀�M��ͧG�1���mZ%�ч�:-�����0�����Q�w���x�S8 �mj�@ I: M�U�5�"B��Ry )�.�bh$��F�}ݪcU�^bP_]V��/� `U4���֨,�c� +��$N��K�P�����WP���1����'���l��P�aj�'����"��B���k\$�vV�Q(�+.%�Þ'�҂k}�^�@^fB#!̀pCW��,���c}�9dl���S4�C]���ڝ]���^g �H�e�� oF�ݗ��m��(����z�k[k�_�?Af,�>�6b�m��[^R��Ku+x�\�W(O0b�+�Z�[����X"���s��T��a~as~����+z�����&c�� ��W{k�%<� +�� �����>��ɭ��%|���P]T1��^N��ww����mu�bk� k4��j������������8�U�����T牎�Y����&+D�(]�������P �ER���y ��e4�u�Uv���n�O�E�$�=;��\�'�z���GSA�,R:�bXv�-SQ;a�Ɩ���~x��d�tE�l�;���"����4���-������d���[x'�P��<�����v]���k8ʫTNg�m�@|������E���7�/��RۢD49S]u�%)lC�a�aꬋPB���amg�vX�K'��9�"X�����zr�������Tp�H�iKT�BF)���L,eF�S�/*m�R+��c���TK]��> �.�$��ո�e0ͯ�@Z�̹1��=Pp&ۓ2���X�u��\�ã1>a� `;�[C�!���<����"���eF� +w��y��hy�;c�B���ݿ��I� &t�ou�R��� +n���q�8R�A�umpď�k�$SM"���]��~��dB3)���m��+�M��U�hƑֆ+����gi�H��t,)�M5�F���s+��vb�g�i�s�������rH`�ee����Y���_�n���.���h.���U��J o���-&Ik�#�ϱ���d߸�N�Dx�1,5��S*���T��ƿ��Įܫ�7�)#��|��e`D$��հ�x���?�ˋ�����'��p��ǐ"�9q��H��o�Qx��Ȋ ]�0�� �����\����� :2����Wj��=Xͭat��7X/ۉU��\^��+��RǠ���% ݇�����U �m�~7N˟���(�\��NYub[9��N���A�'�Q�v���_��~^"Q�doB�a�Ȅ����gN�YBO��`S-d������Y���=�*�*�}�E�!�����#G�Z5_��a�;O��\�c���J9�6<��J��������^�~7����]��~�����U�1���h&#�FpT�/��xc ��B�텡�$���%}^�'L�WE�@�T�UN +bB���Z6��ZHA��{�|�QQ�Z�ܟ='�����m܊�@�z�Ϳå�R��&R�)�N�cx���џ�mdVB�� 30Q�U�\$�U�/��������Z�^ދ������ތ}/����s.0|��6�<��-�v��E�N��=M#D�� ���{ć�xwd�z4�*´�m�@�u���C�Yy��+���VUb-��Xʷ`Hi��ؠ�nA��ȫ��.�[�7�K_�L]�D�ڷ��<�btf�-�N�k� +�A�i V�1�Z5��C�>���?{�"�g��e�zw;`�E�b�L-8�5��&]��e����Wt���� ÓD(�v���#h���L� ��N�Cw�K ���ھ��qZI��$&q�e��9�&Lk����ք7�{�Jա����9��[�W�8")q���w�携&<����H�Š��oY�N��3��~M�ZN����o�[�=jPC�;��u2��%�D$�=*�o]�Ǩ�=$|�<j��x+H+Hc� ������cu~4K�S���������:� +n��dy� ��vZܫ����[���:�v���q��$y�S���Gb�B�]j2���IF����¯v/����KN�I��pUa;��cV��U��ċi�D����l*w �Td>_!m���rYD�,�_a�MI��Tn^���P��(�d��Z��C+K���2���[��yGݳ��E�^�"J�e��o}�����R�a�.��j +�Er�K9W���2�ʾC�6Y��R���c�;l�JX�V3�Y�gwQ��t$ �x�^~3|�(���K-R�ʤ<tV�n�W���w���� +� �A���+CՊ�h(m���lI;Os��,�Z�����kv�iZ������&ǫ���<ߧw�4z�&@Ud��fwAzȕ�P�7�g� g�TZv���2i{E�P�J�C)0Z,*$��69ܫ �0f��.]��I&_Y�Q�;�/�ݰ�{��ܢ��p�-�)~(�d�����N�ֈE�tx+|.�?�㉬mm#�������h>�7�j#��4��r�.H��p?�0r�k&�˔E`�tؤ1+�'����Z�dX���M濆7����*n�l�}u�T�;�K�����%s��.�`d���=ޤ�`���u:@�yd$� +��8k��g�!������U���*�O�g!8o����Vu0����Nk"tR�ó�nvH�ó��"Xz䷴�8��[ +\���6�)�Rei�3Ӵcѣ�KuLm��w?�!/�n�!G�X�,zr)�����bu[za��r�9��rm8l��_�:� ���'�_�˕����ƋF�U*5��y*���[G��68�H�V-��U1�ʼV?�CjF���2����7�,c�s�r&d&D� ��sB +�0@�&�����~`E���9!��J̷�,��Q(���m���!�bEx��=��p�}VCIte��%�ǵ�,u�?�P�ގ�5�0�P|FUzS��-z�y����zx��tq����ō��;���%��B�uA��?��� ��ή�ý����}پ���=�]_�&��ື�]҉�-Ig�W0�_-q�/9�/���e�!|���=��q"���a\z�?է0��5!l�����]�y�iӈ�/g�ȓ��g�g"����"�ly�|\Ɂ��ތ�W7��%����9&�^�C��V Ԍ� +?t�����E� 4:<ӑ�k��T(�j`�Ĩ@>�u�ъ�{�fz,j�&�JmI�0��톡��?�5+|�r�};ӻ(�BKvE�ߎ�O��o�Z.�g&�>�_eń#�����_:�#��ZG�ÌI�Z$�AFF�X� ��B��9�����/��6�-�B*&�ݭ=ۅ��y%�KI�y)�$.�Z�`����X3VY1ҩ��$0�F� +zYa�����f��t ^f���wrR�8]�l��VF0���kt0�G�Be�q�>F��*�~y�cz������y[�G ���b�:nrG�zʔkrPw��t���`�c��o.�X�`�"�}m j�@t�j�z��/���]����k ͤ�g\����\��t����]�t'�����#������IJ�ݬ��&yGv(�6��I����q�P�%�}v1�IJ�����y?�1�����":�2��2f^C���%���J%������UTA���&iĺa�a<\�Hk�_��.支�J +Ke�5���w��C�ν�z�ʠ��D��ə�����;t�����Az5 ��Et45h��N�fH���j�,Y�W��#t���:SOK��J]�>{�p�Iչ�F��� *�)>�E'�Ό�`�r缘��A��Q��ur��.������&��^�Unռ �O{yu삾�;�km=�� +�R>����r���9[�l�p���lbw��!� +O��G��QE�r�t~f��gUr�����%���~��lωL����$�$��a,����jɧ��~ԔU�^��S!�����C-yG��sD�gpOi�qN�Ǫ��F�!�)u� ?9������5(�vV}�dN�O};B�\B�Z�[����O��w�����Pղ\}T�#/��Ub7,i��4�9GKJq��!��B%���蒙���g��I8rxzf�Wk���E�C��3�[�&?I�g0C�n=����)�*y����N��ad��t5w��ҋ�F�[�K|j�;� � +�N����>W.p�h�eT�{P����DF3��� �t"P��'J�ȳ�izp�8�ߙP���� �I �265ɔ�2c��Nn�Z�9z�aZ��tV��<��7#�pWT��=O�43 $~|7!j M�'�!����8/�i��=��l:hQ?l*-�F `:I���K�K�D�v�o_?�{{I�����X]��"����ϳ��#��N`d�e��#��@�k�N���]/��U��E �a�w4��$�:GmTO�|����˖JX�%�Zi��0+;ܳ8xC�ݝ��:^��<I.)5�'�� +�=o��DK�+W\�a��j,�C8{����?�x~�t��-��^\��Ăp 騖ͨV�Ne�m�F����k��2�M��g�U�*Ӱ��E��J2�#���I +�� Bm-����v��w��Ʒ�-bR���&�xN.��� Z�m��_�H��)�V��|�kI����$�/��ѻ��@��H(�+��~�<f1c�.�0�]�zJ���� �N�����S��� �0P�c�s�\�d^������P�<FL�V�N-�?�N#8f�UVc��:qUz�ȋ�f�q������O2��3��X +k�լ�Cȏ�P��E�9�������L���~r�&NQ��Fk�k�S.�]{K��Zɳ��ڝ�Dz�~Ő�"��<nk�O"�'.TTEY���/�����0�(��6>Q��x;���B�'����r[�A�4����v�ɥ������|$�Ψ^U���>!���%�qLBA��6�nF�FX2 +Y��2ɣV%7�.�:�>J?�V�lA�U��f�k�i�ܡ�I�Tj��z���rLD!n/y�����+%u*�㸳B�6�5�U߬%��A�Ճgk����ӏ3$��ĥDk|��_����V��=¦N�ҡP�����.f��@��e������n�2NN|����Cj�Z���n������TH���Q���1p��1d��9�6e�5df�>����\\�����:��㿅N3���������;�.�Q�$$� Cv�{w�NN��������*�c�]]�^��M=��$E��7� �V�duı���Q)�����Nc� ��E�c���م��\x��q\�)@�>�e��sRgT����*Ы�����@��4{����f��d��wc��]s73.����v4_-��L;9��xO�e"�w�9��,��E��K�<�ǣx6�^=�n�I��N�bެ��.��U��RF$�*���m[K}�n�V��5+2I�ƙ�Ħ���BR_��~��"��,�Vg� ���"l���!�Dv���|�����^6�[ @�9/g6� ��y�� w�1[d�u�ˢ잔ʬ���TB��I�gm�e,�å~� �������.01�R�*2�/�P"�@���5�`�Ć�>��U�D�p�Z��D���3�K�gx��2�Ux�iJ���D�0��Ì.*&7pߺ��zYB�x^�Z?�Z?�j}A0n?w���Z%3�%�M]�9�ӂ}=�q�_G���h��7�-�����^\�z�i�o�<K�C�bф��p�;ƴ����>�����rf�\�X*��"qV{���oy�C�gG��>�r6=�'�x�c����+�ڻ��,��Z��P�p�=�ѿ��IK�+ge��R��m���;��mǯH��Ԛ�P��v|�Y�fo`8��t(�)f;-���)#���d,���;�����}'�K�g��y���÷�/Q��q�u��>�� +e��*��B�+_����9�ҽ�U���Բ�R����·~�e��{&��jȍ���r�F8��\??�:2'������>� �d��D9�����E��vX�4c��2=����UY���?_q��O%���> PtMH�^��1�T9L��aC�n� ��D9�J7���ۿ?$/�.��{���r����y�!��� �22�AZ7'�I~�]�N��o��C'����s9 �sA�=|�v�����⳻�;'��F��1��W"�����;������~ҿ4OGR5<�A(�c�%Z���a���q�E T%�?��{a^V��+�{|���!�Fi�7�rhâ�y��{�6��$�a��N"�� +)O�K�UP�Tj���c�"Zʞ���<��N���e=oe]�k*U~cQ�o�w��%>�ny���Ԛ9?^'.?J&�)�JZw��."�����dR��G�l��Q��4F'�#bt����x�E���ԭQy�e�~B��~L�$L/A��Z�2�Bg��W5䨰�����#'Hf)E��eZ�+�H����M� u�u&��E'�3�N؛����w2xb�`u�v�t$]�8�}��e ��6.ԡ)Īw�`v��Es�s1�EW1��,�)�" N���MV����Pq�8����Y���7��2���'��Mbs�v�D�y�v(˶pl���cx��}$m��LȰW/�|8�����wJ���Dx��� �Xd~^*ӹ����[]s�iA����� +���]�e1�����(��Ϧ��Y��o���̂64�Q������Yg����������Ox��%r�,����ID��wҵ�5:��N8x����^�"��.�_��8��]n�Z��OY1����TA3'�.� ��)L��=?�� �&}rn�nG0�wR�2進e�3�Jr�r"�)�H��/Q��ʌ,����a5�ȸ/��)��d�x�cFxH��5��wD*���6�a�]zݷ��������OT �[j(8K�Y{ �x:~�����J����:��б���JY�J�Z�nXa��=��t��� �\f�03c>�"ސ��8����o�=��*�#�|ū���+�M�(:aw��Ѽ]e(dDž��ŭ�W�luG��BԚ���bOG�PK#�6�v�6�`��;a�g"����üQ>q3���LJ�$��HW�D���B�T��Y?�l������I�vX�Q� ��7��kJ ��Gb �M���#�K4�g�U��E�/��If�.5F�����X���^b�dA� +����*�d�)��q�LW��ɰ���m^f�J[��f:��IBWҜʭ��>��ovfYk�����?����~��V?�,�� ��GX���JIY����iMq�����������r�-��� �'��� ����hv|����U��-�^gWw/ұ�'n=ܾUM9��Ew��_x���n;o9�t���y�q�ȃ���F<{�v�en�cZ�k $�����/��ߥ�Hr�����)b�E�/��H�<�a��������J�oAF �<�,�Uc�jaҟ��_ʏx�_�+��P�!R1π��z�*�QqM�i�Շ�w�"�Bj��������C� T�����B��ۭ.���w��6����n=����woX�e�k;�y��!�;�iS�Q1M���Z���H�~��ڕZg̷���г9p!5ӞiaD�S�/� ���*bK��X�����Y!����x���v w�l�r�Cb�-W��JO�b[�)�z��c���B +yK(_#EN��o���BN[݃LV$�=�� f +- +JdW���0Z��ܡY�)3C�����УnbX��˓�L~���j �Ҳ֛��M�� ݩ����Uo=Ԅϔr�V�0��U����hX[,-�� +g�q�sAQ���{3�u�5��"�G����U+�����![MuS53�%2��6�Olj��{��'��Af3��/?���-�$�)��Y�ŀ��S��2�"����O;�|�� |C�ɥb�1�~�I:6Mi�o:U/�� o~�P��u�ǭ�m�C���3P�0�i��X��w$UR�#�T*��0,hC����q�9kԖ:���x�d��/ċ��ٔl˹� i���`�q`���R 0�%�3��e��@�"v�R�004��%�?�BBoa�:"« ���L +�E�mxI�̿�,�w:����w����<O<�HO���R^�Ly5Ț����#��Gj�C����ai��,�d��ڀnH��f�f��u}QSrԨwٱ�T@�5T6!����H$�j�A!b6�S�!��%,�-zӭ��;:�b��Ae�w÷~�Nb^�9 +�rF�2qf��(L R��m�"����-��.I��R:��+)<5�0 $�=%6��ۆ�'�:���nE�`��\��ȅ�px;�0P�=����)2�?,\9+�ĺ��B�K�H��?s���y�ҕ�q*�b�s���x4� +��>oYᰨ] +� ˙�Y���c��KI�$�Lf��q3�U� aO�+�K��8�\��_�^2��)�J�.I��G;Ff��V=��e��:1�䏮s�OyuO����;9[SB��u�B�XT�L���O��'k�f�\F,ر�г�k��\�A�qx8�������_ˊ�Fxi���-�X�?��V�)^顛��D�D�pQ�E�+p�1%�c ��=��`6��M�R>*'��lF���\�f�ʸ +���'��A��`��/X�@d��5 +��r�jã����䯪m��=A��T��ftQT�\*��8����Z=�q2�}�\�yc�^�B� �WQ�k����[�H��r 8y�8�f��uء6�%aVԍ�.�3>�����^M3�Ys5j��+P�,~&|R�����<ը��%�M���X�.ޔAg�*k�rB�k�]�'8��#I�"����3F��N؆��o�, +H��_��w,H�l/���~���-#������l�4����J*��ꆮ�e+�@���ǔ9G|��ɘ�R)2���>WXi3�s{6�K��Ցrb�a +"�;b�S�����s��6ԑiE�]���+(���0bqb��~/� ��I�·���a- +r���� ̸D�� ��#��Q�i�)c>�\��k�������M�}��m7�C�~E�-_A���N�:b|���n�4��H,S\�P������cެ^T�e�^�aT�O��<���Jv�t� ިuH.Ý!Vm�j�i��2n��ɴ!�����d��������*���auH՜Qd�f�@[�J��+��z���C��o~�Q`n���!B����Z]���o��˴��K�N�ߡ�^ _���}=�w���z؊�9*c�.�?|�cBm�m�n���Bㆷ��+q�^���:�C�,1�5Q��xVb��^W�fَ̝1��ZΩ�: 8�j��(�B��)�X�!eV/N=���8�[9��oRB��(|��Ja,xĴRV������,|����G��Ѩ~������2���ۉy��<Y�w�JW�L!F������$_E\u����&���Vl�z�mʋ�ךM$�\PU ��?�.�ʑ���ɷM���,}�{�){��.զH{���`�hO�+�mH�Wr},��aA����¬�8�O��d�dL��s��d�"߱⸒2mN� +(�ix��� ���������ރ^��x��93��O��B F�����X{px��ҙ��� $��7��m��x�=j�{s�;=�.Qz�slq�m�_�Q�ꗯ������uF���Pdsu�� ¬�L>���Wr2� 'b�/>��@��{�L-�Y�垚Z���������1�$�ն�W|��2e�l����xE��� Qer>�#m���IW2��oqoC���*܉n���؍^�֭2�4jQؘ�����Jh��C�"P���/Y����,7�����B�T�0�����p?v�A��R���Qx;�2��[�������s �`@Lh��b<xԔU �A��W�w�1��Q�$ �)��~j� b���� ��b��u�#4ء[Pqf�������մ0r�V�:�m�u�N���t�S�֏��$-�k~��,�v��߰�Oe�xR8�]G} K��[����cp`��[��+r� �M o��>��1gH)�M��߱�%� Y:㕬ku�vg3u�$��wa ��%S�3��hBKu��i[�@)M\�R��(��ho]2D��h�����4�Q�a8u��7�E.���(C���B41j: +���_F�A��GP�4�$��n ��`Q�d�f�[ޒ���x7eJ��3EQ*I�p������6m��<��E��w>ˡ@O�b��Z�"�!���9�t/���+�tl=6a�-c`K��`�sr�u^�n.]�q��fs�ߺZP�=ȁ�����ԥ�k|�v1n�.=����)x��6tS{iE�EC�m�۔���;�ڿ6F'r7���#���4���K +IƸ�ə�@H��`1��]�ŒA��wAM?��d(�����K~�A �&,��d�M�6�7��Eͱ-�a���y��i�W-� �;Wh�>\a$Yk��y�t"9��S*I� 4`�v(���ކ�$�pY�#��ר���L5T�)F�`Y(�k2��6I9��cw�Y�� +��ʡ�;��E��mű��b�r�=1⸖��l�x�(�K�J�y2�Y���1�KطK� ���ckV�ٹ��x{5�}�Q��KC�b��J�P�ok%�TkE�����8����A�8�Iqc���,�z�q�2ϝ2�D[�K�qc�]#BA�`o�MMk��.�C�s�d��&M�PY�8�0�6�m��b7ye�.;���1�C.�m��c*5��Xt��3w���=+�A�4W?%��=�%�|!LN�G8[��|O>���YrdQG!�A]r jY^���`9�[ ����Ecr�ce�"+/�r-�6s��˖H��5��~k���^��G��\ɶM���A����Ij��|�Ff��|�i +��\Mڸv��g8oM�X��Au�+X +��z��*��xJa\�vհ�q4�a������$ +���KG��]p���q�D +��vy�}�(�Ć#��[�}~&���߿���,S={l�H*�<쨿�/�M�*>�х,�+�{����G�s �-j����;L(:� �+b��NZ��~���Ν�KN����z��y���nP���#��ȸ�|7�VE�'%��\�����s�'B��:0y@���'w\�Ӭ���]cr +Z�JC]��r8�2Y�$X���a��A@^�2�@���`K�n�5����*����M�ϲ�� +�A���F�L2�u�~a�A{���%�c\54#,����<E�����2��li���y��\w��34<W�j�w�Y�&s��h��3e���݈2M����)�-5='r���"X�:';0��g*+�2���k�I�S Q��3�6*�K��;�h�u�Չ��UYe���Q{��h5�.^�V�ӡ�1E�b-ahDvӆ�3l��/l5�u:�$�tv�O2�b�ԫ�F�"�ه���&o��Z���4ǛS���/�ꏊ)R��%8��^%:B��um�{����mÄy��ckũa79E�.J�1��~�t9���CG��ƈ0^d+%�׀�0����u�Y5X.�R�T���:��Z�ddp�PP\ך��g���������j*��T�-�cܚ���xf�/X2{�bwZQ`��Fo�J̀)ƉG0c��Y�o�)����S95��`AH���,F�7S���T���Ӭ0�.$5������,&����� +�p��n�E%��52�j�����<M�����N1�ޚ�+e��g|Uw��̿(�8h��k�b8~Ne�X�S5%0�h�O�8u15�>�⻦b�S���4� >W⮺��]u�%����o�0.D�|��|��&sx�;��� +�v�Q�\��f�֊��2$���2����:�08��UG��6W�:�y��4o��Uڸ�,l��eke1�uM�d,'m��bN����{��G��KP�= +yWPxC�~gYI���q5fMe}S[�A���5��iU�iqcw�>�O�,�%�Ѣ)��1�G���W͔��DD@�Ï:��Ef��̿��Ɯ6�*��6���Am�j�<A�d���^�6�&���K$�eR��@f��5r�<��Mvw-�͋��_�b���F��ϻx�fw���]�9��!��D0��x��5<-+�IZ7c*ӈ2��|n�N����i��h��H���|"�`�jD*��u�r�h�@* )UD��d�}�X��ǽ`˕{�霅�_��*�c�{�"�ܢb�a�1�CP�t }P���4Hg$������@��%�#C��u{���4�� �[�W�r��p���c8��d yІ�m����{�R����w�)�9�[� +� Y矦�� �F�0D ���|u�Vnʽ��������ī��C>�o/��#IEY�[�'kKH2�opch��g������q�n�� ���`�e��:��>�B�â�yɗ+rzZ�'t����u�u_�_�1���[�}��4ѧ0����7�`�꿵��Š����r�p��֩�7�{�߶v�V�-n����a��f�`8� ��EY12u��C+}�o[6BS�m+)�oZa��h�N��+k)9�ءj���o[OS/o�%VCyE�Y� :����u�]��Z��-h����)G�vxyg�2H-�}��R�8/�Q��~^�-��0�\o3[�-n���ͻ�څ�m�ꂑ�V�����k�۠9�Ψ��3J���4�",Ф��!È�L���T��Ѫ���ZH^�\�]�蠖�(Y���m � �h #L3�5[��[tb͟c�l�n���`�`�tW9�t�W����H(8�_�=�EE�g�� �lP�i��l�Gn��P�Z@h������O����K�c 6s�!�1֢��#��w{�[��y�"�F��:\=�/N��G�Hl7�ˁEJ��wZ�35�SP�M���o Ҝ��VdGD�z���H�'��K!���@F�t��Ȧ^�^I��1^�?��y�Y2��D�\ �$����ϝ��h %�r1��Eʢ�x%��m +��P����I��@�+rLK12������`Go������"�B���,�����6=w�"��@/���&^ް�.o륮�tFK�t�P��E�C�t����G��HO[�aUє#�`n�U��[���5S�>���r�ڷ��I�:��� �Y�I�Z?�Qp|F{V� +�/�Pb�J��.ʄ��I��[Ba�y���vYN않K'v�-�V�>�ao�����^!F�$��|�(��c�#�"%CF��Vތ`��\M�X��OWî]�#��WKͬ���[1�I�֙���˦ƀë���+e�Q��̒�l��×�^<W��/=or�,f�l��҂if�b�r\�c��������.}_�H���fK��&P�BO���P��LST�Ү�3D�n�K�s�h���;��� �=p/�U�����T�<v1�Z�?r3 ���Z��4�_��(��A�?�9]4��|��(��~���O(��l��\-v��j�(J����Zz����Z��Z5mr���� �@�YX7��x�mű��b,*� v�Ӱ��k� +g�>�z5�����ἀ�/5�� ��~����lh�i��Q3��1����ǧѳ��U}�S:�l�h]涸���4K��o 0�* ���u���P�3���l�f�[��y��껫ص����CF�]/p�v�g�>N�b/fz/�T�7�j��pϨùSY�(p p+��c)O��m8�I�����y%s���|�]�Ul�hp���p@�%� +�A5�h��J&y����W��Hӂ�Fo�M�EfLBE�ĩ���q¨�,!�����9��c�P����v�,�����9��8=m,�"�7Z������<�Ri�;�T)Q�?f�����=�wO滿�?�3p�w�rr�uﱼLG���j�6�����ўp��mʯ8������yV� �_q�ܟ{;��z���?'x��ҳv� �3���z��@'s�=���EO���z�G�샮�H��6��h$eC����Ymws���U&��+L�A������9��YD�"��և�L�:�cÏ���uˡ�e������'d�Ұ 1.���9^FT��q� e!��^�?�K�r��NRe93}��c-/�κ�*4�d���oյ�?�Z ��Sn���6���-p[����w7������o��W˥�.��S��7�w}��6�5��O6G3��u�y��4qZ�[s�v��x���%ɋ0�I�B��mP��B���Ǣ~|�lk,��J� �ق������:��^��lxK|�S���IK%k]36�]~���-&?�}�'"���B4e���>>�q8~9� ��Fn�\���� D��� 3��%_����:��e�:�>�-z���*��)0ɰ��o��R$����^"��2�D8��HRV���JM�Yg�Y1b�����n9V0��w!�R��i���+�v�U�����s-'�U�y��0M0o�%aW�=���C�s�e +g���ǝO��^|�U{�QJ&��x�`� +� +Q��� &��Z�=�?@�,Z�v7�6ޑZ�F���X�՚��8V����:��K�l�Vbi�r�Y)9s`i�]�:������Dp�eT���6)�.��Ө/�Q;�%�j1�<ˏw`�wV/_Y�V��sA���+ЂK�aK�)��=D��Bm���G²W�<]�'|� FV��(��kf ��9#����K��-7A6���C �[��� /M�)^H�`:����"�A��Ӽ�����������șsv<��w���۔�$-iQ?������90uOM`��&��)@�`�"��fK����Y�a1���q�!P�X�fhxE�>�Z�*��a��"��@�tF�8[T���S賱u�m��Y <^�we����[��Y�-פV@9Q�N�_��G'f��ݬ�w!����ԒO>_��ܐ�!��5]0�����H�������_��a�m X�Wdx)��\1j1� L�#s�N2,J̢�c(�c�֨����¼K:� j���0m��It�� `���߾~��Ok� ci�7l�?�B�D�ՐP0?IJE%ܖ����N;PDe��K,s�ZB����5ˆ!�"Gτ�Hsɩ�����em��.���V�{�ZXP�I�0z�7��m=g���-��Z�7V�ݹ���� M���|/ZT����`���M�L�ς�/�֊�L'�����겼%1���n3���Y/u��Z�j�����/�-/O�� +�-����-�Y�����|�N�;����'�W[r���\-��o�-��+�g�T}�� Ɇ(CA))e~�,��R�4s*ڽ�Lq�k�u�I���~Ű#~X�P�9�|-ҤY��dM��'Fn���d�W*$A�ߌ��n��2��6�L�j��l���i͡���� ++�� �w�K�O��KN�=/�_��I͉��*���u��D���_XލBǫ�ࡇ�PS}gaN*G��v��� +f��ig�L�{vt�L���7˅۠:�F�#8� +�$�n)�T�,���46�+f��0�U �"��1���ޡ%u�dŨ�1^�pSx�ZkY��=���y8Zh߅(�\r�b���[H������i�w�ɸ +�ж��>�A �vm���"y��c��|2*�@<0?�@a�%�k.K����49Jx������t�B��]��]�L�UUf<[&���_�Q:����$��t����ok;�x����4߅��a!�~�0|pe�U[K�=,C�p��ބAG�Ґ{�2q)M���������� �=~�l���_��+2� +:>���M�~�s�����i���L�"Ct����s����U���Q�#�T���-��æ��0g�]VX^dg�n! ;DѼc�έ�h��0<�����icoWs��7�$*��$��`�l��i�}��f�����h��h,j�=�D���W�B@��.�;K�@���s^�j˓D#����� +?y�3M�ͱ8=�[��:Pw�i~����������7c��}�%K�õT���Y'��@e��/$S�'��h"�Q���QV��'GK<O��$�H�G��t��+�e�%�Sh]X�ʑK`�HQ �n}�ӵ:�E~~��_o#�AɵиHs���Z2;��e��BW��m��11�P�|�~D�����Z?1�<X�5/�t�~9�@��J�9������h�FW�T�ǁ*.��y�o��Ů�~3h ��jǖS|����|�C����2`��{��R I�hâ&�I�y$�j� Gt��� [�p's�r���vץ���4`���:����4�7�х1=��:(�A�5p3==�qfK,_p�[�6��N+�j���jf;��]��n3,�Bp��--�S��;F�.7���>�IG�.�X��81gsz��x6�oE� +-RS<; +[��ؘq4m����&D9On��>�ǶD|#��F�@��S���$߽�q�����aI�<@�!8���^���Y��Q:Ew�<+D}��6$��x�����R��uD�.� ��c#\�9�g|��� +�)[H�fD��U[Y��g�K��d;���v�Rl���)�ڐm��h����ux���?B�G����v����;m�l�^:�c�y\�b@��pZ��>�^@E�2���dov��j�JJ�Y��_5{�7��ɣ���Ѝ��C����Q�e��\$�/�"��.�5���,��)��,�B�v�lwQ1�Vc&�8N�.+ը�L��R�����N�� m��9�N�,�C���B�&C�.�Օ6k��b��qb�:�e+��wxe�|��,�9n���}���*��]��:�w��&� ��7�P��"> ե��B,hH?.�qcp��Fp������3a�I��Kd��+�P&_K�bۊ0,���cԽ-����jgfX�[���(��DU.u��B唍,hYkP���:�t���r|�{[їm���&�\s�pV�����c��.;a���##���!9=!��y��Y �C1&ͤ}L]�Y�% �a\���A!�U��r�}�묃 �y�X���U�C�����w��������\r���da�Dt��:XL/���BP�A0薔d���|�z�VV�X�O�j��-��My�: +"�4�h��#��E�� ��&ޟ!6l�j��Htl���O�h�L.�����ͭZY����]'��@��!$8x����dR�.�� + �_6�2]g)t��8:�,�����-��aQ#����w�<�*�S/ay�`�"���/2�-@ R٧:���;j�QG�P�(:\�S�Y�L�;�3��-B�Ixv��-��R����w �H��Ƕ.�D�a�{`�m��jб�D�A�S!b������R�n���?��L�� +p����� +^��J���ц�֪ 0T����3]������� +r���,�|����&��!��ٕ��KN��3D0췕�2���a8e3Z{ ���w9s��o+��A6ůSU2�T +u{Sw�{� o&{��1;��I����&�`�M@9�Ux���z� \Q/r(��J���xs��B�K��7:X����������� � +q��9�T��s�����u�D>���[����er����z�f���ya���ݶ_,�)�b�/�����w�0�#��2{�rZ�6b�_��2�z���Sx +�2z%Fw�Y�e��,{����.3�s��� ��V�������9��\���ps��0k�P#���M��<F�Oz�x��;R *� k�U����w���O�<][�ނ��1�l����Y^x!�j�;ջ����G��i�|�J�g��S\���p�TObJg�w������F{U���=��敮���x�6}��mY�J�r�ĨD�S}�d�W|Қ�G�x�E�H�bee7b31,J��_ K�0��u[_.��A�)��H����� $�W�q+��HfV���d(`x2�Q�R��f�Bיr��"��0���,Փ�L#*c�K�6-B'�0�,Z�^7�1����8��ռ��FG{�L[pץ�nxc:��F,�H�D�$_��pM�6��s��E2_�H|�d��2�z ++���Zޭ�Y:�z(*����(� +..�L�x���7�6���6�9+���h�\�Y�.>L���ī����j5�����yA� +^B���)& 2LX�q�8(������zÿ˾���<B5D�f��<����~Ps��BT|��?��jߓ��L'��"���a5 +���J/e�l +uDN�'�_hj�� ͼ��u +G�4Xg��/���RS��-�ᰮ���gU��6%��qYk�,��#6��[|�8�F��+�������J�5w�z*�|��2|�����^5������{\4��Y1qp����;;�x+������-�`��ő&�ѵ�NW��p�J�G�㵔�N�� ��0X�9e��%S������r��t��@I�%|�y5�^]��#������5 gla��۰����u?�8-��'�W������@E�AՐ�k��}�E�ZaFm��T`W��[�Z�=���ԥ<�O�ګ���s��v���}m{��9D,��� ��aNV����,%�G��:�n����c������/�{��,\JML�'��]���r��"�V��D����#uM�k[����x����)�uO��˻o��qAH��|]/� +�j��^%\&B�~[q�v?���a?!Q��W`np��$��./0W�<���ĭ� 6��fU�KTy`{7��i#�ݎ:p����a��Js�����S���6�u�]��T'�eN�<�O���f���7F�CH�}�,|��i�Ar�R ���пm�z�WP� �,Q%�`Ja��,��uN3�!k�X�ѻ��7�ߝO7�?�P7�(�nC C�y|��!� �E��4$��\��i�� +�h/�<�D@��Co��c���� +?>�S��T�S����w�<��/�9�2J���R +����30�V�Y\����Z{�K_��U%��E�f�n��Z�`V����n�T��Q�ɚQ��.jx�oV�J��7�����o�_��;j/� �^��%�aj.�2�����`�sd�ZE �B<r"�%6@��u��2�:D805螪��\�R9P�}K�e����I�kSb�����w&vNQύ˯`�C�D�o��l���斷jx�t�?8�V�cf�E:s~ b��x/��[ǵ��n��C�M�2��j���D{l캓i�D`���ľ��uZ��ڈ��e���� ���ˤYuk�vY�MWX��}��Ұ2{��Xj���ՙ�Q��}�u�BA�NZv�����7�(���E�b�~ZH/r��Z�]��'�d��Y֪��#\O���:G��Xc���KTy�b������)k�g�L��������D@�>.z}i?�2_\�3�����z�q�-=\WrO܆4���@&�J�R7I�(�g�e� +���d!LY���T����"A�ᣘ��4[�2�)@�Op(��%�X����5]��l҈=|n��HÀ$��"EI�[�|�0�iJ^��G�Ů�Udd;�p��^��!5��{����:T��Dsß�^�ѳ�(�E}x�[B>j�(��S�:����!��L?��(�k����~(\!i\ayf������A����[�kS_��C=I��s;�g�Rl�!�̊�'*9j�1&�XVF�x�����^�/�mRץ�Ն:�Jl�#�?�e�u���;l�6>(�#��/�y������H�Dxफ़}d��A��+"�E�I�Y�]�M&�M�羗��U1F"dup�U��0��j%��0 ����1��4F����� � -UZ�-�`I��*F]5>����YC#��s����x�w·�s|��ؚ6���t�����Q�1f��g+���2��ι�Ĕ-�p~�]�0iS\�7��2������Ȳ���#���V��R�`O�_�ZO�O�Y���TB;^�c�*�l���=�3q��}/��wh�ڍF�w��?+2'�/�7f�K�~�%�Ng�]�d^���-5)�4:���E�)�1m\Y�b�H��Ԇ�a�rnV��t|)KR>}`d�x�KJH�ވ�2G�cQ��0fp�}Ҳ��� �//�Ώqq��^R��7 �`�:����K��F~:�����3"ԍc��2>�A�bp�X uE�z�� �_ ������\��d2�.B�k-��lf�����^��^M���^��v�� +߬�|k0�@�ee4�IvykgK}`�� +oӱ�bNh#�<Os�vX͖w=+�a���WY3! N�y}��+ ��h���/���l�xio�oo�&F�x�^�ʆ� ��Ѣ���Np.%'�"��i���+�Kf�9�P����H�x��r�<��]�&}��K�ԅo��3ջ���ܲ� +��������洒��o�P��T�n����Zu���2�}Tf���}>-�d���eo=,�̛��3̞(C�RI�*�QɊZ�0��#�T7��pR0;n��I���La23���a`gP*[��v�\]�'Z3~ce�6�-pʼn,z�}K�"M|l+;��g7bC�kV�f#L�n�ea�Ep=���F�|{Yr��o�c�L��M��L�6������}���E�"st�&Fo��$���7n���Ѹ�ed8����:kNƤ���S�p>~�Z��*M�th�:������_�;�������ɘ�8dG�\�����vQa�L��tD��H���� d����#�9��t�vFkݷ�C��'1�G�b�&�#��c�8��b��E0ŷ����;9�W���Z`��;�����[9�Oi%Vyi��(�D�Ҹ<�0+������;��8� �����_�����+�'���d��7�~���<#��`jè!���e�=�q�:vZ���褾�"u#-��us������&҇?�� +�j�yVCE� ���U+F���y�:Q>�2�y�����7�H�F��c߶I��f�6�7���|l�ǸF�����w{����`hӉG� �-�_*ˢ�W�{I&t���0c����Mۦ�j�8L&�w������¹��l����|�|Dx�����@��U��\L5�k݂���b����`Q���&kd��y_�<�w�^�ЅS�E�>c��)�N�/�q��fo�;��:�6E��d"�Z�[P����*����(��T?ʼnYu�?�`��|G�V5{���F����Í�«'�[f�֓3���ĥp��=����4�)�Ԛ�Z}�8ֵ�:#�ڬW���;9G7��R���W��z����3�~g%�Ԗ�ӟ�ٵ{Z��(�@����ŖT`������O��؏�x(hwP�Ƙn�s�9�m�7#0C�H������r�?G�h� .�V�F��dF�A�����=�t�,��:�~B��J��$�}ӈ�1�.9J ���^���$��,����\!X,�� +j�-�����F0a��$+�@�����$V�bq�K��TO�K��$��uޖ�_������V�7�P� +U���5��m����!����\Dhn����3ʊ�7�����CYDH���\�*�_����՞��������tЌ��"�����/�,0����K�W���j\�s%|���J�����v;Eg�6����x�����=��`h����0C�En�,������d�e0XsŘ�S�j�6��~�om�Uf�����u�T�X���3Ҧ=��-�Da��)\v��`�o����ǧ���~��K�G��i������tyz���I��^]�1����~�ۘ�FuFq�|��٨�M�����R�i�=b�[�Ίd�w��j4&.�yo-2�(������a7��#ع�I7Ek}��U~��,l��a �HwND�|�w�����`�p�w�Rit쁷ve�v?NJcx�d߸I-4�� }?��[G�g��8�a��r��t�7p�F0��7t}Dmꂲ'v��a��}��a�$6/u5��P*�W��r�����������|8Y$}�Ⳏj�J���4*����[w)����]����P���0�bx�k�o#J��t����.R>����͆8l���n� i�PM��@�� o�a'��\�5��U)WDXW����DFʼn���`y�4O/e��vn�ܵʛʱ1��:�.1�����3o�֒�o�f�� ��TNAx'9X���_��7��Qmd��\s�-�����j�Z�B�1��oq�&���B�h�=S�!gM�rx9��S�i�t���:�� �8�1�gc4E/��m�϶����~R�ac�����i,�`٦���o��1�'K�*�A$D�U�_�������y-�vp���87��ޚ����=8�_c~�����/���C�����- �h�t���wk4�P�<���� +3/��� 0���5�p�ʈ�rG������ �CW���qʂ�D�qS���V��<�l��d�)p8�wۼ��֟\�����x:�`��Hc]R�6��Ƶ�x���q tx@��"x8)���0�Ms�a��e�y��[D{ +Ia���EfR��Q-�}u୮}����+T����P�`�.�Ȃ�oXȑSJ�<e��[�f�L'��~�_��Zͧ� �cM�mI� '"i���e���k��S�o߉�R�]Կ��pc:oP�y���9���(*U���:_v���'����|1���rNC_L%!���#�b��co�wR����˱v�lfQQo�[»��?�j�������Db�:��>�A�<���uC���U�� f�o���d�t�q$��[�/2���q�ӃwBp���m<�2�N�)��>z��L���,|���i��%L�-�~���L��S���R�1��l=M���S�1?�y�*���M��BUة�����6�"�L���<���foӝ�bl4!�[�ް���������[�ۈ�/�� �:��-HŦ���[���,Fw�7��@V��+�Ag"#��cP�7�G��,��ح'�`��坰�����"o��$V�lNTk6�vͥӎ\V5 =��䭓L^/|� D�����b}�x#��?f�^"`��CՊ��>-�۸#r�m�QϤ�]LK��Ei\҃��A�dHyYx�I�Z�p*G��5��Z3������R�T��R�ڲ��op `������Y��'��s/��-�|��ݓ�7�� +oK�ڶ��:�P��Dk�ȏ����q�"y�����;�� ����\J�5q5��LOD,x +��[����Ԕ7���R;�����"�K�.��Dm7�jU�Vzp����kMx[�m��?�����.y=��������zE\eW�*�%м�C�����ގ�绾��������e ��Q����A��|��[����I��D0dp�0���O0 +�*? +t{�䭌|Q�9*�ҠE�zkWX`���f�o>w��鐅��USo��Zt���6�}�k +���괇7�w�l6j��:���F��渤P�payx�6�K/��H%s�{���$W�e�N�շ��$���id� +<ܿ�q���G���[��YY���b�[��d��#�4����Q���rC���~�7pSf�N�)V�c6��k�z���8�/�M��z�,7� �(��뻦z�8���j��P���t*�����Z�F���XoȾAI52�FS`���-���؆�9���C���Q�բ��"Q�1�1��Jĝނ�A)��Fj~��l?9ϊZD(�<��+�b��Ћ�Tn�#��aX�I�n�AY��h��<E�c���nj�x�(�ģ�(�~o�k{��9ԑF=�6�j<�~��Yx] +h�<}_hf��4 j4�u�?p���S�-� o��W�0MO9�9U��7l��*M��7��T����0n�w� ��]>�gO��Q��6�_+�Q��\�j&��!o�F�W �B�h�̩�e�oW>E�B�4�t�ov�Ǿc7D��8��M>/�IZ7H��a�~��+������;�9��R�c���6����u@X�u�,�I\�z]�;�j�x6���N#L��u�X�e#F̍������P��C��ΐ���<g���>>�-7|M�L�vg��ARS�k.�`�o��A��6Y̊�Co�!#V���Uy�@*�]H�x��bN2���&�w��� ߇��E1���<�?d~x#�2�8��Z�f6��P������p؉%Ja;.����i2�%͑X&�v�S$З�-��[��w���a1�҉@���fm�uZg2B/��j9z?�Ė���/���ZD��[����'�Ñ�I>P���t��O.o��w�:)٨�������L�a���c�JD �5D�cNx����i1���oC���l#%�,F_����kf�Q�W;1����Wm6q���Fi�)k �oàӆV�.�opC��_S�\��L*g]�?�o}m�Z���mx�O������[r���%���/1u1,1B?L�ĭ����z���Et�6*}1gp����ý�8Q��ɴ7�|���t���i%o�!N 3'�REb4(�DZ����_5*��o����۵��«h��D����Z�/�L��D�oݷ���FkM��ݎ�i9o��Q�;��pC��LjI���[?�����0�3L�%r�'"1��1'�u�7 �U,��G3�Zd���R�Eۨa��x�y:� +\=+�i����]ܐ��*}Y�K������_95���㌾4b�L%�.k�%ֻ��~d��ް��T�N�Ģ�y�!_7���l����s`>S��8��7����7f�&� cyYd�� ��b�<}��7ϟ�����s��� o�W5]���D���A��%y�O��K�n�2�����H.Jy����V-�ѧꭇα2{� ��}{O<�q"b&d�Xn;x��]�����m��%����}�E��`��uMB�SC��E�y�Ep���jJ��:L�t"��u8瑨�,������+�;ؖ� +ox���l7ђ$���˽<���8���1��+ԥ���)f��4m�1���i�8������L��p���_�0y����y��o~��L��u��)Ǖ|�$����r����y�CxKz���O�< o��s�T�#��{�r�Sb��{=���ބ� *D�j��,��:��(E���4�-x�8|����L��)�� +�ʭv��&I��U>�����1� �T<1t7�\絲�Y�y+ +O� +��Vl�Xޖ����b:�0��鏏�|����jE7�,��y��X�� κ�=JME�[�gm�d{��?�N����\�����N����N�����_��~����~���k4?�|�ͧ��_�y ��'�m��(��ۿ��X���=��Ge+ �����oe��֙�8qoa�)N���K9�B��r������.��v�ڶ�7�OW'%�\��%|������ޙ��E�[�� Tfr�,fӂ%�& +d�S�����}��89÷��" +�������� �U}\ n����UY�UV,LF��KK�Ѡ�� }����_Bm�6UT�ĉa���Ȳ$q���t�/OI���R3�Q���������,����l+i�ڱ�J)�l���5Md�7���Q�]�߿�zc>N�����G�{}b +�+�Y�q��#R�|��7��=U���6x��t�,���=��qj|�RN�,�y�2�E�"U��8<�]�[J�mP^ĴɷC�m+o�\6��M4[G��R��S�0oP��&�����;�5#�u��Zl��Ǝ�; \��;�KZ[n�x=o����6ͅ�?����j��R��I���{�\����+�P�ZZ���h8�0�?Ɋ!~�$?>�F���{ū��K$�&j���f������t�&y�l]\1�e/o��&��3\ ���O��}%�އ"/��/,:�ɁZ���=۠�_W� ��=k�aƴ�[j�K�u�rD������A����f����{��f�\�9�eo�aĶ ��V*��ϋ<�e��h�Zq*�^T�L#���@-D�X�a���d��S)�Q�H����8S~Gr�f��{��0���ڎ6-����[�,��4�gPB��I��0��&5u��dx��Z����e�V����I����r���]RѱHҩ("k���[�E�88�953 n&��^��z(�jV�ihu����P�C�3�kZ>��V��Xv��rk=�lL����G#`��P���G����������֦b����XhT>F�&w��#�&��wU��ĉ��D�rs�O�s���w�7��q3�Aaق�zx��uo<�"�,{J�[�vIJ�8�[����ݾ���y�K�٫�Mx��T_��<F��kڴ5����<�VYTK��b�-� +aY�t-��/�Q�m�9k�e�-T�;Q�Sx=���`�ٽ ���6��ὄkh��^i��"�4x��1]�L�!qfƘk�r�'�;�,s@x���Z�\��q��獊���D�M��5�(�e���̪�p້� ��-�[]6�@�"b�G�[Uv��6�R����H]�,s*V-�u�gm�k��)\� L���#���O�-q�)�� +�7h�KC~���h�}�9`���(E������������I%����2�}Z��"楇+�:Q�" �A��֝9V8�����:BI�0�}o�������o���$��lڇ��y����S%Ɲ�[L�6�J������N����,o�q���2z�� +o�ؙ��7�b�ѻ���=B���xջO�i��MQ�dch�~�:�-z8����/�8n�d(*}����6ojņ�0� ��R���to��:����V�}�6Rʤ���\O�[�E�8��2��&]T~���DIhy˼���zzrTmĸ$�|uk����LZ`�_�� �9�����sh]�d���K1�)"$u��cos���@J�+[��}���p�9a�O�R���G[m)Q Z+t� ����<���h$��8�h'���.}o��[K I�d2�����a/Ć���"����ox�QZYx������'��% ��܇7�`�#QN���#�wTG@��&���l�%������|;,�7�[!&XqYƙ���+Oڻ4Q��4�Gkn���7��-,[l:|��$���b%���dL+7�smzk�:�pO�8��¬�9�aƸ���W���o��o��Cc@ql8���Oz~��Y�c�[K�]Q�Y��^o��S:ϣ��q���z�"�"�Ztn�4�u$2|����R"6-y�c�F�U��,BAB���#��w�fF�������˺?1'����{��X���a� ��R~$YSR��r߫RͰ�������K{�������}�F��^�?B?@(�)��;����)�d,%@�R��o�`��h;���t�,��ze>�w�����<lqr5�ki܌2QI�v�Gtt;�i�7 ;)�I��7 QcѪކ;����Z�a�P�E��/Ԃ~�y���o�Q�n�F���K3���G�����Y3��"���`��M����{���V�����{����,�5��׳ �~�~�>�D�"�����(����x��?�z#�3�+��� ���e�2ˣ�����jQF��� +�qjo �z�.�G]�J7e���J'V_0A�؇���#oU�N�_I�j<�����)g��b�u�jMgeYj� ��{�\Yշ[��˫���LQ�M���N�|�jT�w��nAZm�!�o�7A~u|<��W����u�=O��ꄋq�������(K u��Ͱ��N�j�ÇZE��n�~�zR���pU���U�D�J���h �-�,�&8���&"�Mޞ᠂_�r�]݉`lߟ�7��h�����m��m����S>�L��&Τr +�O��C2R/�&��:�����:��R�F���8�˕����x��`젃ϔ��Z�T�=���;I Xdb����2�¬�4�Dž��Ǚ3NKO�M���I����>:O�j!�?.`E�������#ϩڊA}����2�y2%�X�5x���i���U{-G��.U�Z s�ܬ�����nU�><�E�R�x�����5�AGݲ��W�gd*��Z%礗��ڬKI#������a�$��,�U*� %�%_�Eo(�ȍxhy�j�� ��v�獜�L�T�����@������S� )L�X5��]g��%h�� +?�>��q��7r���h}�+��;�p��ߑ�}��F�Y��"<A��:ڮ�o�� |�#?o�_�33˔��D�<�z�i� .�0������Ne�L5�M�F�z�N��?�#��ͫ�d��I�G%0���gb^��!�ww|���8I�-21,E�����\�4v���. �<S�S%G.�r{���h���t!>&#�?S�L�!�[a3x����0�7����q���C���L��K>��7GǗ��K�IN��J�%/��Z6E��<��I�ER�z~-��.��xf���.�R��b����l����(���/.%�s��O(�6�ծ���ڥ��_a��)~B��m�ނKTf:���ȷւ� �H`�If�xz���������ѭG����[j��=���ش�<�A٬:!�N1��v��B�x|.�x�a%5U�pt��s�ɛ!�P�k��د'�m�[g\5��m�4$_eѭP���v*ڨQ�i���/#n�x+`�Y|���R�C�io_?�`�`M��%�hO���x��_��p�����DŽ�(���f��]���Q�G������ťm��2�=�� x��1�ޒ�N驊$S.eY�����Ò��������SBV�U߁3���;����~]{�����c�3'O��E&���C��7t�XBh�A�\g[�6��k�8'�p�q��Z���bH���ЫZ� ە��ݥ���b�p���2�o�]�[;}��\ ��s�5��lD ֑����P�;�&-^���5讬��s���Z+��j;Iݐ�P�䤗�)e&�����Gb:Ly +V͐.��fă���?�f�e"]���Y���j�쀷�n�r�H.� 0���y�qX(�����#�]�&�E��>�����+�r�T:��� :L/IP�a�k�o�V涞�}e*ǩ�٧N� {)�pJ�x��+Lp�=�È:��{�]1SF�w�z��y��4n\T���p}����M< C'^x�S㮖;��X��� +U�7�������5ܬU���N�\G,�ŦR��i��R���ǻf�^�8�x����P�1�c3%� �p!K�PRm"ާ ��_Xr��"MGKW�=�d���a���]a!�w��~�9��p�Q�s-��9��WI&���&�jpPT2�3�/��������5D�.����Itԓ/�u�Ư�����1����O�馱�uS��z6C��]���00q��NQ�J�� j��tZ��_𨃠i魒ۙ��P;��:�#�tx��L�B�(v ~O�t,�8e�;�Z���K��w�����g����K%��o-J[�z�<��x7!�E�4C���Ih}�qe�$����zБ�s��7WCwC��l�7��f{�yߴ6n�;Km�� �:M^�>�ú��s�?�����E�r���Ԍ�ܧ;ƱÜ���(J"0�V��o�TW���"����%D�HE����Qjh���%o�c1���&U4ޱ#?cI۵'��/���,'N�Ouڡ�l%�^��}Ԡ���&K ��1���h���`��dzË}ʊ[(���;�'n��f�\��»j���ZmC�p�T+n��E�ʨ_�r��r���Xr����oX�T|,��*\`r�a������Ko�L��$�M�|�D`��L39I��q�(���ĉc�Ӭ# +��eiXz�4eMUp֚ry +���� +2����tm=!�ǃ�����Qq"?@����&)�o0���v�����刵E�(��o5TA>�#�,�Yv� �l�� +�-���_�mV�]����0|>G��4Dz���d���p�;������X����>\�UE�*�To�,�P\�z�Ɋr�p6���þ^~���i�>?��j�q�U:���I�,���u &K�֧��n~�r���e� �B�b�����` ��R�qg`ө�|7B�j��=���ݿ;����/�C��16m�ɼ��3jD�h=hc�xO�[���E��W ]� l�^@T��ک-�ے��n?�ܝ��a�ej�,!uJ��0�1}H/u�MJ!��,A^����A ���V���k����y�����7T�i�f��_��t�����S��ņ|o�\��O���^���o;�;��ʅ�^-@��=��h\w�랃m�H��\t��z��&�!7�Δ��xiS��Y�&�'1��'�[Q�mW|�k#��A����4u0l�+��n�7��j[dNܓ�{w�H?�__�h�������<AXR����������4���<��댶��,�]����n��-0��]\h�l�g�� +�,l� ����_^B0��Y��;��ʎ�4�h��V�V.鷺�����5�$������FC��M������Pzf�s�"RC;���^���45�wY�{W ��V���⌘o�IW&2�<�=` +>�������&�z�U5����3�Y'�aA�h,h��� +���EcG���F��@�D��8�<<�K��T�7���^��:�r��#4慻����y���� �zY�����7�淚�:�R���Y���0�:|c~�����y3��(|c��q1 ߘW81�:����%{��?�oͿ��?мd_?��n!�O�O/3��o�y���w�o�낤��:����m ��>t[�^�*5��7�-� ߔ7�)o L��o�)ߦ���C�oʷe��oʷc���)9�����Dbq}���R��f���>���!u&Q� s�rpz +�ꒉ��H�9G�V����z�+���C�Q +��c��Cԃ𣄄V��$��Y�(��[C&?���u�P�M��z�v��R`�ԅH}��!H�D��|[�����R�&d���5��YQB����w��K�H��ӓO?y��NS:MV&�b�lm)��(�u�B�:F�%F��>��c��O��ȥQ����</��{���BT*�&���Q��.N�qF�$$gn��A��H-�,�`uL<�Q?�BU�����w_ͺ/�L���~c*�d�>�����Z��Oy�7�qۀ}I[x>Y�����u'�5���S:�������8-����`��� �Қ�1�p���H3.-�Ǵ�� ����z+�<��Ⱥ\�%'���: �4 ��'A�b��8���Q�Wmȑ��.���Ք��:F���Z�q�#��Nt+�ޞ��SN��e�`��I����S9Q��,�r �"U�ƃ�?: _N�.Px�1��v���f.�]����b�@���0!��KK�ʗ��(���J���$���I�w���!�ы֚��Ϙ +�D�0��ʰtb�d(���;�a�~������h��\�D3@�*����V6�H +��q�ŚV�f2dh��@I�И���C�<&���9������a|��J��n��:��%�l��Aq5,��g��f'�?�Y�O��),߮L7��v�����uw@���NZد�Gw������:&���\���p�'�s�W�_d�(��q��1�4�uI�Uz��dXʿ����vS��e�l4�FMK�_� h` ȹT?�Q�@��������D��[� +Wtgg��'�ה�T��H:�K���Ә�>�;#�U~�N�� +��A��y��~�/ �`��<4��L���eҌ4#���a��N�-��o�e�¼K�.2>��4E��O%��vG�����;�"�{84�n��9���x��#;)[�<�O�$=�I���L�������$�m�' �?\aw)\���� D+ɤG����� *���1BB�y9_�y�p�L�2Q�Z���LZ�{�.߁�?��qz�h�\ؘ��$9���'`�U��K(η����-���AI�*��2�N�DI٤G�6�恗pl�D�6I#K"����q�F�]���-%μ�Ni� +��[�D�w|��~��H0ʳ��or9^�jN�fn}8%��h�I8�dT(�t�Y�+���jp�烦!�~�������r�q���.�p��%�U�9�=u����y$�74*�|�\���ˣe�2 �������+�B�����d(��D�[m�4ڞ�y�iP����ux�-�O�����-�L�ڬC��FC~~x�#�DxzDX��W�mYDo�+`P���p:8�FF:��-�4y����;D�y�I����n����4҉)��*��!����m̠)�%����6� r���v�Ʊ� ��B�}��Q�d��0�]b�a��mϘ(�K|Y.�xϑ�U�Wa�f�b�/��v�Av�����$��iʒL�Y"���B'��<��/�9G.N&H5��`���vM�.M&-Gr�@"�2_᳀o��p�z�R^}��&J�fb�$���$��t�/Ȱ�����O����AS����E��K��y�3>���h2�#"�B���t�^���t//��(�c�]A<������)���2_E�����0Xf��R�F�c7��d�%��_$,�*q�aD�-�Z<��>�����H8URek�%�AR36�f�t�b�.2F�,qa�$ң��dA,�+���C#R�b��6v�_H��o7:�+M[ 2й�Ɖ{8�d��AA�^�c +hz]��r t�D(@��I(#�u�&��N��AB+|U� x��������_�5-+�w�%/" �!cv���p�����ONN=#p�A0M�B��m?ŵ,�&���L���ۡ��rh႖��5^`L$7�;I�\�̵,�� +�I�����[0$��e>u;���V�MX�.��N<�´JS�I;u%�q�, "�k\�e�W="��,HR'*�s�8�e�8~خ,U㘌�:��e�7��H#49qD27��f���#�*ٔPl�'^�^$�m��!���1�B���`�M[B]�Q'1˃�����SI��vN��@=�X������q08ջ���Si�!BX�l��`�����7Y=,���oɓs��q�b��CSC��BS��]="��C[�؎����{�I�Y6��2O��_�p�y� z׆wg�H��^.H">��h��bsP�CA&iy�h �d���,�p��4���p�(�8��Y�i����L=���R�$�-��@j4����0�D�a�S�^!�/X�T��$ +���x�͓�b/4��V���X^�=�����Ss��"hJ�B5�l5D�E���*��~Eq������Z���) �̻P�S���~M�(T�=p� IMUv�^�-�K�7ocv`�A��e���<ʦ;D����O(`L�'�@L��ZԧWx.�o������L�DE.�u?зp{���=a�R9j���0Ǎ�����х+����z��1 q�H]���� �%�i�g6�e��LZ2#�����X��E,s��j'cU���s�Y��I�H*�ga�!�r%��%_����|`w�u�ER/����"�Ca�yRHG\?���U��E� +�CH�+��^ФnTh�n��&�7��CbXώgLe���7�=�!c:W1���Z1�)��|elD�0!M�G�p���6�+�����@r������5f� ,��i�AbbR�;��'\�5[��O��:`j���}�F����4l +{��唘�P�~ox8�Rq�E3D��q�da8��ܵ���襎�̳zs�ܯ�&@�TZ��(�H�Ca&��P���Z�j����3*.��.�i�'��U�vX�^�x}�Bl �Ni�[H6n;�U�m"5r�l����0Z�:�2c��[��e���{�=MYʬJ�v���@�N�,]3�`ᨭL�2��7��Q����a"�#ʷsz��3ט�� ��X�"�I�k�3j2\$��\�c4�.����-�T�%Tu�RD�~D�,Gh'C7�Ym�&�3zu��ܘJ�S4�Y�@�Vf������!. +=�hQ��\�g��;�),�������8�+ӳٗ��3��V�xL�)�PH,��=�./ų#�C������'SeJ;��5��(�k̷�6��L��չ`UZ�>4�A⦝�� ��2\L^�0-�2�����G���|��i��qަ����'3��獠*�:�\��ʷ���n�#sX����ݒ@�,��\ᠢ����tk��mO�W}������b�s�����?�?���o/,�GY�-�Y�.8����Y��p���_�ԱBL�����VL����hqܤ4ö��7\u+�ޮ��q�%���L����b����<ė�,#�d��ka����L�"�rgaŦ��t����Bj��2a:j���WV[v�[��C�`Rї +},?c����~å��4_~�|��|ǁ΄I��������l��5(��Ed/hu� �Oa[�6*��?�����ߘ�z�9e�h&��^J� Oқ�zir���I�.���j�M+�W���9��k����,�?Y�\ʤ�BY��o�`�s���h)" �|�ŵ��:Htﲪ�@��P&O�!N7o�ѻ����x�����a�|�[�^��^�|X8��R +No�!�'U]�(ZXZ����gZ��ˬ�v-$WBV2L�����8ny�T���#)&J��x��<[�_�&��*��V�;Wq���@�Z��������:f)����;�����>����R6O�@|��HԼ���`X�oA��g=�� .�������W�$���Zn"�S^��m�u%��$8�8�;)�ڋ�H�[ޑF��"�4t� �z�;�G����X���L���~�FJD2491�4���8e��<!*v�h�����_��|R���i܁���EF�9I��HIKDB��>�S��W��*�ЏƉVeϺ�9��xIYaC���~�nW?/��`FB w��<�ɝ��w�1|�9��{��0>��<���a���=�ʤ\8m"%��n��L�d�����W|�s����1���^yw��AAATD��q��yhqV6���^W�{ߛ�_��;F��_B��FKj���&8�?N�8�� k�l�!I�M-��c�L��,�c���#V�G�>��"-�O���.�I�%��8��*;�e��B��3��E��[�S/�&�� �.��4 '�>%�<oЩCJ�m���z~���Ъ�Y�����|�\�p��w8B��|���q���< J;U"O�3���id�ь4l�Qn㼎�I��2�h$i�8~#&b�{IIh�wx���� �k(z��C2��ӫiC��C�@Q�,OX�āy���d�X� U���?��Qhh*��]o��oŇ�����8��\j��� �.��K|�^x4���*���dS�]�㑥gf��¶pף̷�U*��y��X=��<u*������-�\�I-��I�Qh��`����ևi����o��^�ce��#HH�<�-����CHHN#R^#N��2/��5|�WR)�Z�$N��. ����H&��I}f>�j�L�����$�� ��W�8��p��hs�}���g���{N(&r.N/�I���C������1��pXb>+X¥-�0*������`����)Le�Z`�^��jP��S�T�2�0��Pk��a�>lu�T��ʆ<1��<k%�i:���XԄF���c��ʌ?�)'ᔩ$�R���h�1HI��<��!v�(��hL���v�-��*�A[���l,߄Y�=�y��2�Wr��f,�R��xP�eu�# +�l��.\4�V��SRx:�"1�5I/}��6(���Vi��xl�T��(�����@�@������y'}�[��ǿ�mm�aN<#���4L�@��7۽=hR�E�")JZ!���n� (,����·�e�_�!�>V��L�nzޕo����`%��B��3Oa��r� +�Fw���eX��Dh�lL��^�긏,܈)��k�_����p�7z����<�tH<��|����סp~���9D�)�sA+�oМ ��t�.j'�j�q� 6.��+���a�<Wm�<�NJI"���O=���2s[�ޔA��,N2o�il�W�{�D-'��@2$� +TGQ� +w��>D�b��>D����'�zf��"n�hc�4��jK�3�����x.���$�HB�#Ňq��Lv���p����l��#u��mx��� J�V�*�Jn���^R[�%��8E �!A� +�W� w��ϨVэl��ۏ���.,��:�@(N���p#V۴�B���2����>-� �HR�7јK��<�g���I��>���\����v���!�m�#�؋~�t�$+s�$L.�&"&��G>��6���է���$�$�N���毬�N�L�'D�����q\��X� �����������v��Al���/)�:z-���b��t�`���i@�mG��j��s�{��������_�J���t���lhFv1�tG�]9j�P>ٴ[8��R�<����!�Rd�ď +��()�I[����o�������W��K)�[��7 R +�?[�:�Y� +��q���H$UHi��N�$��"88�ˉ��R�6��p�]8�Q,̰��)lm� +$D������<c�������X�D���%��!�<�bA����F~��x�ٟ�c���`p��j �&9NNc8�#���%�a����J,�K��X��<J���n�dg��;��P�k��~��������'ߤ�'��!)#d3!IPj��|N���"�%��(SK<��3�3�ZD�|���Ǹ��"f���e��1߷ +>�p�p��Ï��;);�#u,䮾Hn$lA��{8�8�!Y'b��.�T�z#j�/��Pf)��#����e٠h���dV2���1��0'���/�,�7[�$����M���a���Q���[q������Y� �L�;x\^�neҔi$��S���RX��g��B*��j`���_�]B�#�+�U,~��'�s�^*� q�u�H{��Q=_�����_��BZ�U�`Y�{�"�����"Y%"i�`#��F^�呴��!��4LlK=K���m�E���ْR���S�Ê��{��W�o��7[��d�V���DcJ:μɕ��[�k�~J W���a� ��/ �2����\���`d;c"����E�����{��.w��GET�}��9�T'\� +i���勎a�:Y��_���J��.���������Lo����'�kA�Q�7��]����2��!�.���4�f:iHc\)j�Y\�����F͇F��$�?��Z�c�� wt��h�ceJ^(����X�v�'�%�wn�ؼ��Ou��V,FLf����+H�Hݣ�� �Qd^uR&Vy�T5��Ұ2~��/�o!3Eb��/� +���Ę��8;W��|��$���/o]"98�K�ܖ����wlH7�!�Y[�<ٝ�a��<�Cr��)(�Ov(�!�|Ar�$%���6�GXBI��W4ɻBZ�e������H��2>�� �w�{ B)~��Q�8����|���f��o!>'Ϭf�_���z��7W胍�4�cݵ����x�U�ski��i��OT��n�t�Bǽ��A_��v������lZ�7�\$�ire+w�_�}0ށ��;@nR����Y�u%��WqQ�/�c\9�Na :27�4Q��!%���Nx�m.��z���\·BƆ� 9���5L�V�7�!���s ȷM�����@-�Iu�U�瓝��+ �����A�R�H��y�U���S���߷��^lX���h�^n���$6J�!چj�F�SG�g���-v����s����g�����wpw�X;�6!����c���iɁ[e�"N�2>pdC�j���Lz�� ���&Ly�R�G����ڈyB�e���`9�JSyXf�c�<eʬ/���gi�D�� h����i +����J�2>;�����b�B�U��$`V����/��`e�{iw˿@��X���RS�';��ּC�y�O.-5(4�1+����`槉6-LʨxR6`H�����6&g\{r���a������3��"�8��7�l9��n���oǿ�����m�fG$O�f�4O"��$����V4k+Θ"�.<�1O�2��Y*�6�G����F�D�2$�,�-Z�[$mx�� �Q��w�0q�G [�5\�p�[�%���(��i+�0���^z2vEK�f.!pi~�9ɞg)c�"'Ш�C�0����li�82�k*��q��#���&�E�-��'M`anc ^�m,1z�\�M�`��Kb��W`j�/�_��ۿ ��|ϣ�h��2����I�y�GG⨈ �v�R]�>�rJ��Q�<p�<M1O��-5-�L���(����sA؋���� ���SV8�V\����Պj������o�������W{!��]"�����q�����Iɋی��ɦ���ۏ;0�3�A��i��v���ļ�ֺ�5V��rEL��5�2g %�JQ��L�xJ�����W�}��������}�9�t�߮?�Eo?�3��������N�&�\)�gj#�M������.�a�9�7-cΝx;�ࢼ54�7�0�ΗVl �i����4���T�s���4��d�Y���_1��<y��k=��a^+T� +/>\���B�S��*-\��qM4/�Ҕ�v�����6�+ B]�n��r���i�2_Ϗ��u�6i���@�DO�"���*���^Ss����I��0&�zfa�HcJ���~�'ԦF�L`�}�6SO�bϑ85'e%�ˮ��1*�c�7���_R+��������n/�A��䳦�Ɍ�X��qA�{���/{�'��6�� +p��]�%��!8P��D��o�lB�W�]D-�r���\�lz���}��DJ�"P��� �h�!���ǿ/"rݜ&ф�f,Y�%�/��}� �I[���H��D�ש����\�>��sDW�g��j��+JQ&�#��e�7��"��?��^��{�~�o.n.��3�D�ߠϫ�����_����kԼ^�l�z}�q������#�=����7��������sOk�EP����5E�g���< o�h/4�o��2_��j�:���/��^<N�Ȫ���L������$kI,.;7�4�����<�U�?B�B�-��s����U����`PZ�c��^f�R_f$iν�+�A��K�ÿa�or|>�7�� �I/�kx��2?����>�����Iu3VBd��I��Z��_V�ԅ$o�����TL�{\� +�AeOK�|��Xx��<O��^�3����Z�G�6�*|]�b��z���8FD�>�����-pۂ܀D�Hw�YF��}f{�I��b�u��Z�?<e���+Nz�d�w��$��n#�#���Ig��k�]j�<��Q$)�.�*)x�͓_���EjX�o��ņ�����/,l"]�8�'$[�sR��U��Fr�z5U{��H�6 +���=N'zs8�^^_���6��zn�2~ N������+���g )oO��_��+��L��9��.��i�e�;ONJT�ͰY��,�3<e^�?��ħ.���T|̺��73��I� ǣ��gb=pA6vha�Up�zN�I���+�k+P�l�v��ΞT�b� �k����އ���t�?Dv~sM��ň�$�'�@� +`?��%���B>�� ��$A��]fq�5 ����P[3��;�dZ�4��3)����c �`���hN@���2��H��-�F��f^Ơ4���;B��eV���.�q���m�DH�7�q�ֽZ�"��P���h\M +rOE�8����pq�����cR�rW{���'s�Yl�)�ly��vϪ� V��'���-� �@�C�8�4�Wȗ�c���6�<4XC�b�3�Sf�� X�w0�8�M��a��������W�0!�9��d�ITf~ˢU=�M놂;"ێ�����NV�]��>�[j��P>G8qDR'�O +&懫���l��hsR�} !VW�3��p�[H��l�����b{όn�t g~D��<l�q��1��}|�{l�-��HVcE����{�X�???�@~����h�Ѿ���n���;� ����l��~�͏_�/��U�0>%�� +8X湽2}˫��F@���+��ǝ@��\Ŀ=FP�y�0=�Q�oB��,;~ˢ��*.�V�DbXD&�Q��g��e��zH�N� +��+��;�_�%�4L���m0-#@L�lѵ�J�!�$5�\��$�(gIZ�ol�0�)L0!�d�&��_Y G�B���Û]���X��D�T0�o�ϖZ�݈}���M� +n��K����7o;V���9r2�����W����n�IV��;arce��iQ�h�,�"���Q�zG�]�Y%���ќ���<���/����q�� ���%&�1����p +���U�G���=�Շm��V%�S�̟'e�i9����<YYH6���/z!Y���2�I�E�%|�^w�V���JEr�$�fJ�b��^���� YVL�?*�nh%)�7(�Ģ��p� ��Y���*\�����Q?�<�<i�f��� �M +G�5���(�h��}�&9ޅ�O�Dgbn��=�3g�u�E���� "f&D��A>�\BIL��3|y�0�!>�v�6)W�-��k]ڱ�E��ɓ��qu�Aqt��Vm�4� �I#-������>�@�u��aD(�F���%������u�̄3|�&�=b��A%���v���g�X�xX�!P�!�LK%�[�X,$&!���@J�vB �ĕ��7�~�S9��?�؏�sz&O9-�D�[x��5�hvV��U��.�Ɇd 0�D�&�m���>�ʼH���E�=�H����`��˖��D���_��1��,�^��x��7�����Y����X�����ܘ_c����g��^�KR�+�x� �h��;�x��b�_��uC��};�n�O͓3�J�W���Y�jڜ*�7ZjpS2O�o(�3���ۦR���*�tb{[����~�F~qN%��r%g'��k� ?�i�|��~5�G%)����{hG�����,���M���2��R҈�)�haչ�������y���ɢ���] +Ҏ�/{�ܲ���b�x�\�~\np�<�Aڹ42�w�M�����<7s$?�����)��D��6,��yw$ ?ڎ��9K~�Y{\�AX�x4���}:���U;$I�� ���'|ӗ=���������KZq�g.����c៹Y�!8�BO ���$:0y�sn͓0*$����K�Xy�=_����7�G�Z��m�\������r�#OI8*���� +�nc�H7�8���^@�6�o�J���ɦ�1Q��f�!Փ��V��Cl)��'�/�:������Κ�B� +'�|�2�Ɖ�M� +�@� +x~���䢯*�Nր�ş#l�X��<� ��y2u*�ۥT#��iYn\y���F + O�z����5f��ju�F���1_��S�������?�>�̐�M�q����:���� '������NR]��U1� ���5)�u��"���\�5:��8ZKd�EB�$���!�o������Q��S�|PM�p1f�.ev$0�&�A�*���� ������bm.>Ùp���fr3�>�a�����?3O�@)C"�W��$��:?'Sz����a����YB^R�}l~���\y��2'��Gv���/�a6��0a$u������� VHk��·d�NDn�<���\>I�vK5?=en�Wr2���!~C#���)�H�$U�xF$2mB��d���qcö�̑��g���j�ˬ�r�TS2N��L�@���A�D$�QE�<�����-xxQNҞ�� J�V=��/��^}�o��� �W��� ���`������ǿ�%Za��-3m�#> a�~�_mq�((�q�ʲ��/��=W#<q+��n��L)j� �v=���A^|uy\���@g<�/D�Q�`e���o�4.���_����f�<������A!t[X>_g�����E#�ėd��N�B~�Z��{�Dy k�K���p�8Y@�k� � ��uJ\��t��>�8�_m@��W�#�ixĜ� +�h�&'�$ mF@�� ������� M�;*��������B��i`��|��[�U�V̚a�:�����e���+��b��A����~��>ξ2�÷��R�7��˄2�j���\�{��<N*�w�8�� i��ӳύ��*S�-Js$v�Ⱦ��ߐ��!�� �bi���o!�� �oi�\>���^��Z.Xr���E�JS(�Bi&�Ŀ�x#m�__R]Z͚��U�O�b�BD�Ĥ�$��% �p�D�����L�� �=���S�ƸGz{�w�I<KR� �I�AN/��˙$�}�� NH�����u��=��KⰯz?�R�=�y{�>���X���h��js���ǿ�q~�����o�A31���o��Ye���w�R������<���NM{���\E��_"��0�u��#�Q(������&��4ޛ���q@m�4��@���z���N��u��)� �9 �u�O\%���@�炸d������$[A8�*�J��B��`i���+3n��Fu�%7&�]�����#W�� �8 ʦ�Θ��ޟ1l[�=�{�W���nG��������%�r�ޣ���G2N�R�ł�w�,�eq>�B �G�-�,Zb�������U���,�X�|F��oWI:� +.!VƸ�\%i�@e�3�0����W$��%Rso.>#��I����B�&��\;0`� +I'�zμm#w��=1sN+淋2�q��=������qD����q%8�D�n'��}�VF��u1�j��6�q�f����o�!�H� +��:���]�-���%'�6W�?/w�b^!��>]�����㏰p/t�A,⸟G�/�����{$���F�}�5i�A��Whf�� ��?�����o�Wg-Yޢy���,P0(0%�RDB�6{Ȱ=Ǧ:"s��, +��S��ī�����ba�FJ�0�"Y��w���< �2���ȅZ����)@��DQ ��I6���i�/h2�OI��D�� �x�-n�����/{�����ji���1�{�S�<Qʤ'���jR���&�J��n�˛5�m��Kb�]���ᶸb-���uԧ�I/�Ox����H�ٰ�hZ����_��=����������9_�¥��(�c�eMI�M�ԟ��_О�#F��Ә��%|�@�B���#f�9�ZRA����и�,�z'^l��=�SA��$K%_`����F��<5���e %/{�B�ب��+�|IK�J2����t��RC�®�[�g�_�ǏhY��]pi��ߚ'B +�S0(p&�^�y* +�W��Iް�H�����������xm�����)o��+�dڝre��/~����2I#$��Ź���X|����1w],?��j{�͚8��s[ ��PΊ`]�p��k����a�Ni m&Œ�^ +C�b-�7L,|��ׯ]$����c ��J����I���>�h��BH�;�sj�����)m�^�F�{\����xq 6>Qz�N�������Z�a�NY,N��Y��1*���7�����mJlN�m��+�+i�A�h1J�\ qmpI��=(�K�I����Z'e2'�P�+��<,�4U�ɽɄl!"��˦��Vnj�)S~�P���Y�2�ɏGL�2��[ش���%SL���.�_� �6�N�[�� 7P��.ɺ���p'�s��#g���9�P$%�A�ҥv�ܮ����\�Z;��.�9P(Y�\(}�*}�b�HP.I���GŸt��$�/e��'fRLLJ 6+�3�m'i�t�?�Ĺc����̟�����s���\���C��-$ө���Ů�إ��P:�AQ�� RQ:��a;{j�������R����q�TJ�*�:�4�2��^\^��]\�?�K���� �F ���˫��QA��1�L}� I��Cs�����{�r�bo������ɿW�W����I�����sy�i�V�b)ܢ�/��߽{wE�t�K4����������!��Hjf/�عO�s���nXH*u*�����jR�*;e���T�����(�j!{�?�����@m�F�L���y�lDS�c_�{V۱G�S�lce6�b�X�3KD�`�O�㗴����w<T�}����L#��Ք������L�/����������2������E��3��/��� +Gud�Ď�̚��k��(v�L.�-�b�i�.�#p���pz_��{�HdI[o��1��{+3�WQ۷d?P36IU�&�$�=hIz�$'%vނ��T��b)"��y�!I����-�@���۔�-^S+;I=r5?���i����`n��ʛ�@�͕�f�e)�ԟ�sؽF&I��DjaǗ���H��+�`$H��3����P!�O4�.�I��w<`�'�8��$��`�i(H��xȊ�2d��Iq�{�����4�k�ʗ�/D��G�Ȃ��(H�$~�'�I��>Q�Ч0IU5o�gW��"�˒���;Wg*�@j�;Ʊߗ�Ϸ���`|7���_c�A��YC�:�2�� }vK4���~�� \�r��n��V3��ӢLB�<r�`�X�I��_1[3߯2g����hoS� �i��xt���{�3�4O��ބ�;W��#��#��0OF�4�a7�����e�L��%�YX���s�s�Ȣ=�W��<��b�#Y��17Ǖ�@�>�k���V+"�co7�$��<�����&J���w��}t��X,�y�&�>4&Ȋ����'�wMW�{�rUd��RLCd�O��\2A[����OP����ST�9 3Y0���0q���:����1�7)���}��/Pa�<?����Z5�������r� +�C-Z����)d�k��J�$�<�#��>����� �.����_��̉�`�zK��]��'Q��_�8��?�8}�%Ix�H�r�.���(I�$�����S��D���t��H����� ��i6JZ�_M㻑-�{q�QpT7N�_`������/c^E�+9��i~��+o��-x��G�����Ƈ����}��_Kr���d��A���k�w�Z�� �ulo��@]�!|)?��_�_��^������� � �!%�I}����,L8ܸ��@�;_�細���A����5�B��IH� +�mN쎈ɂg5��\����y��$�F*Cl7���A>O+E�G2��G����CaU�m8��b!�U(f�HBp��]F�fV�s�2��+f2}�����~I +�>�>t2�rέ~�D>BѹU�`��II9���x�t��o�eL����~��mIeh�&���*C����.Ӓ���^-tG�=C�#pY�0��������$I����TK�_Ќ�qqH�h�'Oo��g����#_D$Iί �����H�\���x��w�_2i:���.�$�6����@� ��6������>Ќ����yj��4/ p�I|ň�$�h9 +�2���48o����,У�"ũ(���!K�������������GI�:z2��):�ǽOHIV�&)'"P�)n5�@t�b��g�݀3�bK��&g�W��8��t��.��ϰ�!��C8�8Q�\�O�Y�(t&�I�,��එ ��r+K^���=r�H�,��p���!ؠ������Gz��O��5 b�O}z�� +I���4)��̃#���'\�܂pd:=���.d�Xnͫ#ui|�HHXn�,��)�����*�iP� `o��@�N%���,�y�I2[�h�1k�L$5S��g�P:����zU,�Ϲ��u�d�1O��U������!���P>���+ف����%�f����{U+A3"��W�>(�2(c�_��I�f*���5�$���j;:,�%���<�!1�»�}��O��=#z���4Ԃ����X�@�7�4?Ce�ZH�#��n�%-gÓ�:s�7e@�?�|�!�K����ۻ;��S�D�������O���Z�l#�2�5�8e'V���A��H��+o�F����ޫ����ӣ/�KRC��6���{�Hh�&����-����� +��ۈK&��Bo�e� P��<O�z�I���P_�L�zA^�!����N����*Ñ3y����gE��}�9�4�����i/��E��v]%�h��v0k�K`�K3�l�E���J`�m�XPd�ew��HL�PĎ�T�e�aF0�iũ�!�p����Y�\��}D�]�;��B3���= �3;����~���@f�X�f4� +R�0�Jv��T���K�9���%n�k��|oa�6{���|F1�=����h4a[�6���c�<��l�1�MY������ �5�7l~^F �j^���������щ��7>ڄ�ژ*�t�F�i҈wd!�{�$���+��'��Ou�1?i*���*��|s\�F{� +e��O4#I.�����{��ҵ�l�o�u���ϜzY���f\J4�2O�,r�ei���z ������:Ϡ-b~7(���qC+홏�&���W+Y�(��qBT�G�T�Nq�^���/�G꩓B���5�P�K4?b?��D}���y����y���r������������1�B�D��$�={��<�R +!����Z������Ή�H��Y�Ӹt���ǿ�Ar�^|�C[�N�9��< �Yq +a��}(��G���A#��b��s�j��bBo~a� ��kWmoP}�d���d�`�����W��_v�E����|Nn�V���R���v|�&ől$GsZ� �&Y}�mR|�h��Ro��L�����r�.��{���H��I�(�>�n���]�������S{$�����*\��9��43+Tr�)�����X1T����5C�O�;�Á���m�b�ۻ�fA�~��_V��n�/�X���NXM�K�M|��܂����,e�#>�{�������02D4� q�f��CYpܱk\�L�tm~}�� jҹ[�2x,�\XGg${i�x�2\�X)d.h�v;��s�گ�|��s�,$��]ڵ$"�R�"��31f����G'N�' �&�LB��ٟ��� dA�k�C��G����E*i\�yw�V�������1�%'��r/$g�t��L*�z�}��4DI��R۠0P�-E���{��E��,�E�v�4hlY%oW@ຍ +kU��?D�(� ��/Ay�h�%� +�2� ����?�8�VH�LG�lc�E�y�����6��wl$d%�c��c4,vY�"��Z���oh���23�w�*�&�M�ӻJ\��>ԻW ��$���Ҁ=�y�hD�'�����{t�A�G}\~�� ��O/?Y�����<�p��j��yF`���E/%�'Ÿ��K�5��R�`Z�,i�h��f{@r�j���?}����� ��;GĘ�7tt�;���<��IpBf%�,i.�<_���G�ܢm�� +ix%-��,��˥ά�rw�e��vx<��Qw��J����%m��w��yyy��C���A����������4��gx?�f0��>��a�'!�Ҭx���~��q5� Î13$���8�&��>ʿ����]nб:�,�zrP9�C���6,�<6�t�U,l����c�s�A�Z�-�����}�3G�K>������d��/���q�v2M٥�� ��<��d� +2�d.&�A�o/��������d��_�E������nRLfS�<�����v�+���u��6��v�-\�?-��b�rҾie�z�G��n:�Uz�gnv�/팲?�H;ls)I�[��qa����mE��vy��<��peXH;,7ϳ��&������.Z9�<���A}���1E���a�-釔6li��f6�Ѣ��ZDw�qu�iA���L��S%g��`��_��tQ�d/.і�%��g �g�vV4�IDz5I����i9�H�(�ჀG/�/i -���פc�l�:������+�p����gA"r5�թ�:N���Mqg�q��(�L�[�{ -A��a9\���#��%���81�����V��ߪf�@���rv]�Tx�D~�L�z�c��X���N��Y�����5"�Q�Z�Y�/Ǻ�\gDS��*zt`b� ��F�5\�A����]ﲻ�sf��d��2�`�s:�v_kX�%�>������à -,1<����}��i�y�q�����w��@�m�f�Cfh)�}R �w�{��� ��e֊4�Ht1��(2H�v�"���Δ��W��O�Viۜ�oq6f�%G�a/��O��\�����ExX��+��wXA���v����&l�c�d�h��W���ªV,�s�2��)�`{)x����������W4S#�ۊ�&jS���Cs��������"�ڗ�#$�]]��� ��5<TwFY��x��q(��ׁ_���X%�+[c���3�y�<S=����1C0V�1װ��ᥓF�:z{I���u�S�w��o��U �X�rӝ�n���&��la!��ox�'��T�f��M��?CRs����k��t�Wm~��&>��-�ʬB٠õѢ.�*^���zF@ڴ�;�E�(̠07�ˎC�]l�m�??}������?q���u�Qoc�m��h.]���8�䣵�G�s�z�>|��6�Q�Q܆!_��G6�xS�bd;�n�t�����"Y�ݦ�����o�[�̱ -;�����noX� �fGA�v�o�M�Z?�z�_rD([)dX�ҝ�>���0wG�=?�?Z�]��T{譃]���ςű☇�"�7nR�1�b�F�/"��q���%1�qX������k]� ܥ�=�� ]Q����](c��g2qX+��K]��1� -��?�7�z��}�)譾u0NI߫����R'0��J2�Cxc��] -�µ�0B����5�72��D��Z�ۈ���0�*����i��@b�!-(���@�T�!-P�w�[{� �6�zD grU��#��m8�Qq"#/"Xށ&��+�-���G<w��f�rl�=�Σ+�B�?�z�̛������)>�:3�S��MW?�z�#�M�sT���{#f1��y8����z�~$�[w��5���dg��`�Y��^ν�}#]|x�|uK.�AGL��Mы5xۇ���s9z��Uo�X���;pK7X�)B7t��=B�ɒ:Ą�t �y��,��tx�v�D��m;�M����ap���C�7���z���K�~ƻ�P+�8>@KB4� ���{����)�(�l�у��̋,5��LG0lM(��2"��QF�}i-�~��U@0�m�� .�}�������+�3[�"�y���6oAm���W�iFh�#��.�U1�X�ԣ�0�qm8��|��~\C���NJ7s<L�E�\f�{E`�:�ўAR/�e��T�bT�A��G_z�k_��Dn� -�g��#�6��:���r�9O����ֵY Ӊ`�_�qr��V�$��Xq[qÉ��H�px�n�#���,C�ԝ��^ꨋ��2nL�� �>S�0G�"���R��_n�eGI�yB������i/�4��Tb0B_Q?�7.��;��zg 5�k�˸k���fvE��%�+�q�n�C�6�(�-�]aI$��Co�����ø�Q7�+]�x�`F��&mNMVJ�G@,�5^�"�<�>=x'��s(#��b�����g���?���oַ�>K3��i�������|�YY\I9�����i2���:�7o^�7з�>_� -;s�X����&T�Wi���"����o��X��&$rK��v�9;�rP^<�\Tx+|��e�w�aQG9���tԖ{�Q ܓ�����h��x>��r%;�Ld�"�b���]����x���l������X��[�-���Ī�͉j�Fޮ�tڑ�˪��?��u��+�/����A��xA���o��0��l�KDl|w�t(�Z�_���|wD���1Ꙕ��i�ɺ(�Kzp5�ԃI#� -�5�}BKN�^��f�Uk�CP�5�^j�J@j�B[Þ� .,����?6k���3q�w��%���������]�m��ؖ8�C��Jגh��q��?�V$/�S`Py�;��=�+��&�Ƴ��鉈O!y��� ����\�]�c��#�}�^Ds�aօ�����FV���*B�u{܁u� o�a�-����7}�%��Rз0��/�R����VE��w>a{��]C�����|��t���Բ=���:�<�<��B�c��y�!_r�a�"���nR�� F�R�G�nOx����/�1GQ���ᝡ#o�� -��ތ����0�V�jj� <\��"��=��ֆ��hM����C����n8���F ��XC�۾�x���*C.,�o��q���d�h��&�� -�l��)A~���6��e�:8�L81R�G6�7R���x+W9+kvQ[C~`��:xĐ���A�W0�s�]n����o�n��?h6�Ju�f\xMW��y�G�%�i�Z�#o���#�����w`}�T@�g��V->ּ���N�[:[�[C�b~�(�9�� �7(�F�h -��b��1��1G��w(��i�d�(�HT�Dn���q���`cP�����_� ���O.��J;��劯�+q����7���H�t��vR�[PV39��HG�X/��1�4�"J'�h��,ʭ�[A��piu�Q��ͯ�����}ކA���H�Á�4��A" D��:o��/�Tqp���U+L�SNdN�(� ;�*ÀJS�Ă� �2վ~�#���]xþj������v�� �� -Ee� ����,Bv�[x����P!Z1sjb��ەϐ�P5 4]����� �!��e�/�|�� R*Diط�~�x�J�����-��NkNc�T���õ�8fxc�s]?Kbנ^�N��8� �������x�<Vdوs#E�r��k!�P'g3��'$/��o𢡊��F{� _S,��]�Y&�_��T�ڀ"��8Pf��M�b��[��U�u{U!��9�D�R=y���L������a����tQL��:|j&OA����t�~�V���j$Ԯ�Fix�xub�R؎K,�Ǩm��tIs$�I������kKd�V�ƻĝm��nX�t"�$=�Ǜ�A�֙��'k{�Z��� ��lq�n��Qc�b��� �p���@���ԩ�>�wpē�[���NJ6*|��}�G9)F)�bX$e��a QE��/`ilZ�6<9�������-�H�0��}/���Y}���EL��y�U��Dixk�Q�n�Z���0贡ոK�ܐ�7��Է�C�BD0���G����[?X��}ax��l�9�:��>iiɸ����KL]K��Ӆ.qk�#��2D�Eyݨ�J_�~�=�po5�FG��ar:-�M&�A>.�-��&FZ�[j�S�� �T� � ��7�!�7@��|�;���EE��v������1Ѵ�F�����!�i:ф8�[�m�/��Z�>�o�#=EZ@�[c|����P{<��ER0;�����䃦E"�:e��HL�e� |� �qK*��L�G)�c�6�EX��8�y��"�7�F��bZ���+l�d��J_�}Ƈ�����WN��j�<�o��� S���e��ܤ�,sEDž7�3ե�'��z�r��M-"6��.�����T�!�!� �74y�� '�X^ٕD~Bb�X0O����'��m��\�e�w�[�UMW��8�ߡo���iI����ü���L�q�+��R^�u��U�w��z�s,��̞a��y���h�H��� �'���/�786��kG#i �|7�E�_kc{#�tpS����ÛyQne�a���Rxk�=����|�y$�4˄�-��}�Z��e����#�/�M�$�N5�r?�1G�.o�c̾� -ui|��y�Y- MaA��kZ(�2FF��-�<��\���W9L^?=s�d��|�·�rz�q%�?�`����x�S�9� -C��<�!�%��[��鋧o��7e ��J���R�=o���H۽�h�o���K5Bq�`�w���ޡ_�]�<�U��x.@�R�g �V;�m����*��Wo�ȆZ*�����Zُ��,���g|��W+�h� o��zمQ1b� ����'�z����jE7�,��y��X�� κ�=JME�[�gm�d����?�I���ܤ����=�I�G��߿I����ܤ�~��o�~���4?�|�ͧ��ߠy ��'�m��(��ۿ��X���=��Ge+ �����oe��֙�8qoa�)N���K9�B��r������.�nv�ڶ�7�OW'%�\��%|������ޙ��E�[�� Tfr�,fӂ%�& -d�S�����}��89÷��" -�������� �U}\ n����UY�UV,LF��KK�Ѡ�� }����_Am�6UT�ĉa���Ȳ$q���v�/OI���R3�Q������ڳ�,����l+i�ڱ�J)�l���5Md�7���Q�]�߿�zc>N�������{}b -�+�Y�q��#R�|��7��=U���6x��t�,���=��qj|�RN�,�y�2�E�"U��8<�]�[J�mP^ĴɷC�m+o��6��M4[G�O�J��S�0oP��&�����;�5#�u��Fl��Ǝ�; \��;�KZ[n�x=o����6ͅ�?y���j��R��I���{�\����+�P�ZZ���h8�0�?Ɋ!~�$?>�F���{ū��K$�&j���f������t�'y�l]\1�e/o��&��3\ ���O��%�އ"/��/,:�ɁZ���=۠�_W� ��=k�aƴ�[j�K�u�rD������A����f���{��f�B�9�eo�aĶ ��V*��/�<�eG�h�Zq*�^T�L#���@-D�X�a���d��S)�Q�Hv���8S~Gr�f��{��0���ڎ6-N���[�,��4�gPB��I��0��&5u��dx��Z����e�V����I����rO��]RѱHҩ("k���[�E�88�953 n&��^��z(�jV�ihu����P�C�3�kZ>��V��Xv��rk=�lL����G#`��P���0���1q5���M �6ͻ�7�Ш|��qM�ԱG�M�?�,�VG�_g���$檟`�t���7nps�f-�²i������xE>�Y��������:qD���ᑻ}o1ۋ���W�<�j���V'y�6�ִik�÷�y�,������n�F�²~�ZXe_x�|���>˰[�&w�v��zL��K��!�{Fm�mv��{ 7������1Dķi���c�(lC�̌1�dO3w�Y���#4�D�RQ�V�ѵ�3�T1��kZ P��@g �Uw-�>�wu+��X[���l���Dĺ�����<Um�W����E�T.�ZJ�F��J�S�HA�"���G�1��[�Sp3�ho���0�Xy�:��s�3�?fQ�$��o=�R7Y���J��OIe����E:�7�KWLu��E�:��;s�p�#QM�u���a���2�g��p�b�;IX��**(�%���7V�J�;����l��b���-";���a��Y�L����5d��/#x�s9�[o����w=����{�/�-T�>���7E��i������阷�����;"��_�������Q��r��p�� o���t_K��.? �-���0cD��[���H)�rbs<9oq���W��P��tQ���%��-�z�Ct���Q�㒸�խ�KH@�Qb2i���^7|��[$�nr�]�u���sH��h������V���!"3��)-�lup��Q8�±�ŃR>�k�n,jm��D5h�t�m4X?[���n������`���.�W����go-�$E�ɬ�~ކ��N��O¾�-L{Lihe��6"Z��ǟhpm�>�Y���r�p�e�Y��:�5yM�d�/�D-�����a�(�a��1���2δ�w^�x��ޥ�B���f��i�������l���-��X�#�I��������*��V̵�1��=��� -�s�t(���LJ_�7b����j�Uf�ű�`TN�>���Sgq�o-�wE�fE#D{��c��<���'��_ꝋL�kqйI�|ב��͟�wJ�ش�����V-�� �?� -ލ��b��'��.��Ĝ���K`�>��6 �+��dMH N�U|�.H14����/w�'/�u����IC$��MaZzUL����|�,B����g������mJa#�)�������[��S ���+�a���\��a�����H�f��J�{H=���L;��i�IM:��I`��ˈV�6�ѴT�Z�K��(��}�����Ffx+���p��0���_�� ��>�_�tΨȚ)&����Ol��w��s�-�"��V��o���X�gѭ�,8��� ���K�g ��ͷ��DY���������9��_���nN�u.�Y?��^�2B�wT0�S{3��-�3�pi<�*T�-��HgU:��� ��>��?{��t�� -H�T������N�8S$���CUk:+�RmP%���ڪ��)e]^o=*e��o��v�ST��#w�j[��Ӽ����������#�y -��P'\�SD̨M�wGEYJȘ���$n�=�tbTc >�*jvC�;��ːj$��ZFx�$U�D0�Gal�f����/�b��d��=�A�*�,���ؾ?�oX�5�X�-*����"������S>�L��&Τr -�O��C2R/�&��:��'��:��R�F���8�˕����x��`젃ϔ��Z�T�=����I Xdb����2�]¬�4�Dž��Ǚ3NKO�K���I����>�H�j!�?.`E�������#ϩڊA}����2�y2%�X�5x���i���U{-G��.U�Z s�ܬ�����nU�>:�E�J�x�����5�AGݲ��װgd*��Z%�W��ڬKI#������a�$��,�U*� %�%_�Eo(�ȍxhy�j�� �������L�T��]���@������S� )L�X5��]g��%h�� -?�>��q��7r���j}�k��;�p��ߑ�}��F�Y��"<A��:ڮ��o�� |�#?o�_�33˔��D�<�z�i� .�0������Ne�L5�M�F�z�N��pGz�9�W��bq���J`�ߓ�ļ&�C����0# q��[dbX�j/y{�q�ri�:S�]Zy�8/�J�\��zS3 ���R|LF�~�z#��CJ��f����a"oVU5��,��->�iG~Oə��|"4/.o��/�7���&9�*�ˇj�\�C���n�ꐂճ�kY�����3k���p)��][�8d#���F1��?~q)ٞ��B�8���v �G�.5����N�S�o���X�0ӹL�E���\O8EKM2��K��v`�hԕG�T���n=�XP5]�R#��q���������f� 9�@p∡x��S�*��)�[�*���cg���L�a��_���~=�oc��:�!_�x�h;��!�*�n���藶S�F�ZN�H�^q3�[���k����L{��E�k,-�D{�7�[5����h��;~B(�29Ho&���i�{�-��L�\\�6��Y:,��: -��CZ@�-9ꔞ�H2�J�nO(N=,ik oLϏ��1%d�]�8�������(�������)��6�:sR�ԈXd��o}A<�?a}CW�%�v]�a�u�%l.�&ˀsb -k��).�D����q�հ]����]�z4.Fwo�.����ս��gxj��y=�^j �Fb{K�� ��P�#h��u/�]��ʊ�80x���8���� yMNz �Rf.0�:k.y,�Ô�`��Ҽ�a�A<����jZ&�E*9�� ج��.x���*���2�����/�,�7���OY�9Rەj�N �Q���3�1���I�r,�L�#������ -8�|��������s��L�85���d/EN���|� ��'yQ�{y�'f���[�;�كƍ��2���p04���aH��/xf��raGq��^8C�*������� �н���J�i�눅��Tjcs8m:]j�>��x�lԫ���/~�ؚJu �zl�D$�C.d�J�M�������ON�Q��h�J�����1��2Լ�+#,ă�@ӯ3�[�:�c�|��9�S�:ɤ=؝��U ��B&x��e���73״���e�16�Îz��� �~t�9�9�5<�i;�4���`J�S�fȕ�˝��&��)J[�D���N�2�w4-�U�����K��81�IG'�4,�b����J�ҍSƼ������{�7���;jx�����T�*��֢�������{ !5(:�"���LB��\�kC'�T�Fx�Î�ؾk�1���f3���5������q+�Yjs�/`��h���օ�����'|�+ҕk�f���>�5��0�DQ���Z��p7�����)��%-!�G*�^.F�w�RCs��.yC�14����Kڮ=��m�~1��܇f8 p�x��{�.e�d+(������D6YJ0��vGp��78�]^�SV�B���Q=q5���=��S� �;��j���Zq�,"VF��������s�����.�Ҧ�c!��W��#� k��� ]zsf��'�l��&K�U��I -]��E]|%N3�f�Q l-K�����(k���֔�#P���ͿT�ٌ0F�k�)�?&ߨ�T�ʈS�A�fO��7I�|������0T�P��(G�-2�@Ʉ3�� -����`٠Ͳ[L`0e��V�n9�#���Y]�v�p�>����m�i�ey`���)��w1������#X}����6�U��,�Y:�*���:����l�mÇ}��8oqӠ}~,/Ԏ�F�t���YR?��@L�J�O��[���J�:Yw˶A҅��|���n��U�n����S�?�^�r��w�{��s�w1�=_����qcl�h�y�]2gԈ�z��08��˂[�@�ؘ��� -b�-�S[��%Y��~ -��;!/����hYB���a�c��^�"��B$Y��V�a5҃n��:T�+ʃ�=�ړ�A�h��"�0͌��+��b-��f� -� ��ƹ�+��[�� 6O�q�Ywѕ]�Z��U{��{Ѹ��=ۨ1��۹�F;#�4�K�@n��)5��Ҧ����Mz7N8b�� O����ۮ�V�FX���d�i�`��W��ݾ n��� -�:Ȝ,�'s���~T= -��t�K/����y���a��)u���MK�i0��y���mQ�YF��K�}���#Z`2V���6ٲ1���?�Yخw- -?���`���0�ew�;�]i8նݫd�\�Iuc� -k�+*HbQ-M ��4��y�e���6̎k�zE��v�"E�lc/hj��4�����<���1߄��}�Ld2y�{�|!E9�!�wM���j�I��W���8D�N<Âp�X����5����Ǝ�:�큎��!zq`yx����o�白/u��>;Fh�w����S�g����S��o��K>u�0;����ya�u�����W��f��Q��|;ȓb�1�pb�u6�Ž�K�2�ߚ �yɾ~N#4��B���^f�'�7G/�&|[}��ߖ�I÷u����x�}�N��Ujևo�[6�)o�"|S���M�^S�M��7�U� -ߔo�8ߔo�x-ԥSrt)U������˫�\/��H[/ -}҉�C�\&���T���@�%R]%�s�N �~-�����W -~�?�_����ǐ����G �~Q=L���Y�(�ɾ�[C&?���u�P�M��z�v��R`�ԥH.�}��!H�D��|[�����R�&d���]5��YQB��ً��r��ȑb�积��=y����L=�`4Y�l_d����������U -��ɖ\h���K�e�?UO#�F�^q��_�y�e�r -Q����gHG1#$k�8%�9d�����/�1�#����u�1��FI�8NUٻ����5�|P3�"z����f��� |�~&gk��?���w����%m��d5D�K�������bL�0F:o�K��v[�:�)��&8KkroĈÙ�#�L�&V���sz@�(� 2"�rɖ�쫚��48:���o�t��F%^�!G6���PS.K�'k��1��v:=Э�^x{�O95�� ��&�ޢ�N�D]R��l0ʁ�~�T!&��4|9�@��`������v9;�Gs�!���g��,m+_�S�[� c`x��`(��`��C'���j���G/Zk��?c*d�#!¸�+�҉Ad����o��h�-����:�����r��0�Q��H�k�Z��")\ -ƝkZ��ɐ�A�c%1Cc� -a����:�p`����>���!w+�V���s�\��f�հ��՟+���������ɑ,M���WhZ��Gl����z�̊ϸd� "���ضM�f���R�=,c|�`��a��e�� �Y�ˢ����_��KV�\HR��"T��T�<LUI�#��s�\p�b�?[�8�÷�O��W�X�S�@Ϧb�h�����æ+����ef��M�N4 �z#p -<�v-��q��������'^����f�,�o� ��m��)��e�nLv ږ迈 0�8� ����Y��D�g�]�w��iW�)�g�x*!-�;����`X�ܹ�y�á�wъ�$�3(��yH�2u�~��C�M��7`:t��ǿ�%�o�=��� -�K�"��!ZI&=�'�@�OP�d��!j�����K_���fB��2�ҟ�ˤվG�����C9��' ���Ƽ�u � <�<�ҥ_Bq�Uol��h�g�J�Ui���vr�$J�&=ʴ9_0��c[$BŰIY�`�W�6"P�B�t$h)q�-tJ�U����$"���H.���J �t8,���:8���x�9���E��L��}&�(�Q�(��g��<���I0����?��^.3��ʽ�q/4�Z��{��V����ԑ��;�l�Ш�o�s�60�G� e������ޯ� -i�;��̓��r�o����h{*晧A��C���a-{���w�[B�6'�Y4������6\���a�O]�e�ۮ�A��_K���52ҹ�l��[_�>�!��O��_v�<|��NL�6��HygQ�8�E�ncMq/���������p�#6�h�X� -����F咩2��w�M�e�۶Q<c��/�e���=G�cTi^q�5��Ż�"�,�B%GG�I��Ӕ%�*�D|�ׅND�ER+��9G.N&H5��`���vM�.M&-Gr�@"�2_᳀o��p�z�R^}��&L�fb�$���$��t�/Ȱ�����ϴ���AS����E��K��e�3>���h2�#"�B���t�^���t//��(�c�]A<������)����X������0Xf��R�F�c7��d�%#�/�a���0�E���C-��|BD��g$�*���ܒ��|�H:v�x�h���H��CR� ��JpyF���I��Hj ��+� -gk�������-���J��=2Oư C/؉14�.N�������"�f�$����G�R��U� ���Y�<��`R��@ʯ�����;zɒ���1;�q�^���ZS��' '���� ��A��u����Zi��~�Yj���Fh9�`IKc�/ 0&��%���y�I�Z�S}�$�]n�� -���2���F�B+�&,f�`p��lAZ�)�$����̸\���5.y�2ɫ�E$�ƹz���z�oW��qL�#���2֛�~����8"���S3��V��b��lJ(��� -/l/�6 n���MƘq����_�˦�-�.験��A���}M��$�j;'�m��a,�J����8����ũ���!,d�@Q�Js},қ��H����x����D1r���!XX��� -®{�ۡ-Kl������=F�$�,��|�'|үO�u�� z׆wg�H����$�FU4V�1��̡ ��<�U�a�M�G_8P z�pM`y8�A�f�[Ҭ� ��na -�q��v�d�d��@ 5�SOKPp�� �D/����J���� �WP<���S���@E+VBm,/������]��é�9�q��%J��C�"�"A�z��x�R��8Ljc�z�B��L�牔�H�](�)@[p�&�A��`��8m��&�*�A/�إ囷1;�l�� yB���@eS����_�'�&�g &\b-��+<Ʒ�P}Gs`&L�"�:��;�� X��0o� 5Iii��F\f�y��肕��Ry_��ۘ����C��~H��ْ�4�3��u")��̈w��53ִ@Ü����X�����z&b�|"���Ec�\ 6r��f%�6�]{�a��K�00��G�P��d�����ryt��B�P�Je�4���l�I� ��ųc�S�`'7�Mvc�ǘ�UL�y�V��|>_,L@��n�*��0$���JF��<*uz"�p.��g��<AK�pڼg�������� WoE�V&A�Q�{�@L�pU�O�(�?V�� Ba/�pb�����-�Z*�h�h�<n�,g\����Ա�yVo���h��H@�5k�2�T:�aR5\Q���E��<�]1ӡ�R!x��鰐�|�N_�l���r��#bKwJ3��q�Y��l��Sd�ߟ�AЂ�ԡ�{�ܢG.�@����i�RfU�[\>��u�d隩��Gme�I���7Έ�=��Q�]Ћ$�����uL��2(b�����9�&õ@�W�u8FCjp����2O�_XB%10QG� E����G��r�v2tC���vaqAb=�W�͍��8E��%^Tke��-M������c�%z��~F���28���ޟ�iގc�2=�} ��=��n���T����"X.���R<;��0�Y9�|~x2S���+]�=���b{o�nͬ_�^�V�����$n�II�`(���%��+c�h -�}x�������]�9 ;�q2�"�|q����ϕ=�|�A���o�9�0�^+9n��-����;�*�vGN�[�$o;`�x����]���_�����D������0e �Hfy-q -��q����6���l�c��|-Y���B�3���Ii�m��o��8Vd�]�U�fK.%($H�%�`k17Ăy��E�/YF.�ɤ!.b��*��Й8BE�hga�f��t��]d!5�L��0��|�������wX�p���/+ 0�X~�ޟ^� ����|ye�E$*��:&�/�' -hKx&�/��-�ְl�������`d`�x -ۚ�qٴ��Dď�c���ᣙ��{)�7<Io��ɱ~&���R -��`Vi�b\P4����\+,�+e�����R&���J�^SF����ï̘GK �;-�=��A�{�UuZ,̀2y -q�y����}�����*���n�z��:���pX��ޖHC6O���Q���T��=δ���Y�=�ZH���d:�)3�����q��R�8��GRL�L��~�y�h��M��Up��w��K6�_�� -�� -����:f)����;�������>��C�k)��d����tr$j�F҉�?*ɷ XⳞaq��N{w`^���" �魢M~����_PW"�H�3�3��B��p����4n�9���o���a8B5؇���:��Og�̏�{4R"��ɉY��]��)��� Q����yD���+��a��ii�_�q���$%7#%- x��`O �_m�/��B?'Z�=��p�%d� �Vsx��a�]���������E�;�-��c��s��pua|%~y������{f$�I�p�DJ��Fo���O�˩��b�,�+�cq����gÂ�����f�����l -�������_��;F��_��FKj���&8�?N�8�� k�l�!I�M-��c�L��,�c���CV�G�>��"-�O���.�I�%��8��*;�(Fc!�}�H�W������-��B�U�g� -V��d��w����!%�6��R���tchU�jq�@@�`��8��;!ca>G������8�qh���*�'�����4��hF6�(�q^'�$PI�x�?��@�� �콤$4�;m{t��o鐅Lt|���j��E�P�$�"q`���z Y8�yBUb�����h��-wכ��[�ab)��5N�2�Z�"�eB$��_��7�6��$k4�bW�td�����-��(�}��vy��'+VO)6O� -�?'��A�xiK?WfR�g��ERcX�)����a�����[#���DY"�6�4A������ӈ��,�����o�J� ES��䣙�D�>��D4���R͔ɿ�P�d���B5�'��7��6�{�D���Lr!~w� �D����9i��w�މ�n�+]��+��Y�.m��)P����<�l��La*Ԫ����J�U�be����QDž�0O�Z��� s�a��j�U6�i$�Y+�O��܍Ƣ&4.�v�,80Sf�yM9 �L%! �R>��3��@J5����D��FcZ^?�CnA�U��Vfc�&����������[0c�2�e&�R.�ب�Q �f�v�A�����³������Iz�C��A��4��J��&S��@�����g�Hdէ͓8�ߒ蠯>��nk�s:0B/ O#��-d�{��[Ѓ��.X4)2���RX��V��`���*x�Zf�h �� �2줈`R�p�\y� ��QP��(���),��SN\��N������-�����W���1e�~���1����F�?4�g`�+�DD��C3�t(\���|��y -��\���6g�v6]��� �Zn�t�MJs� -5�z�$�U3�|g�R��y���sO�pAfnڛ2h�ϙ��I��8�M��p���dH�d\��h# -Q��� ه��C�և���Wo~��g6i,����6�I� -��$9cin��Њ���>{M$�=R|g�'�dW�;\g�ni͆M�j<R�;|ц��4nUp�?��{�%�X��p�S��4� qx%�pgP����j��V[����1����� �4*Hz7�`�M�/�!X,.��p�6�i�E������\j���8{��O -���}�'��j<pD������ܷ���b/�� ���A�80��.����O�Ă�\�epW��>F�h�,@0\�:IK܇���812�r��v���qi�f�6 �C���swľ{������/����资ZX�_��:ҽ��S��]k�i֫UJ�U��2�.{؟.@F+'w��Y'��Ŵ/��w�IC�d�n�ȏJ�h���TJ��?.�*���&l-R2)����]/�,V��K)�[�쵷 R -�?[���I� -��q���H$UHi��N�$��"88�ˉ��R�6��p�]8�a,̰��)lm� -$@������<c�������X�D���%��!�<�bA����N~��x�ُ�1^`�08�?p5`�'�1��E�˰H��N%�%�@�il����z���d���!T�x��"��>�p&e���7����{H��LH�Eԟ�'�+�� ��h���6�����с?��`E�1�;����jY��E������C�#ܨ����������H��/�� [����-��eH։s�� ���ވZ�����Y -EzC��H���>�CM���Jf�3������~�eJ�m.�T���Z��]���)��n�Iݟe���bʄ�����V!M�F�G�*�d���=� -(P1W��}�.��GPW�X��%�O�1�$�TTA��� ��h�=�z����ǿ��9������=��n��E�'��1E�J*D.���8FR����#i�ClWi�ؖz��ѻm�E���ْR���S�Ê��{��W�o��7[��d�V���DcJ:μɕ��[�k�~J W���a� ��/ �2����\���`d;c"����E�����{��.w��GET��}��9�T'\� -i���勎a�:Y��_���K��.���?.`�߁���n�aO`ׂ���o�b/ �e�?C \P[i�t&ҀƸR��)-���$�������&-I��ɵ�5&J�����|�ʔ�P<+q���OK����y�כ�!�X��̞�C�W�0��Gg�ޣȼ�L���j�ѥae���#��� 3Eb��/� -���Ę�8;W��|��$���/o]"98� b -n˃rzp�;6���ʬ-l��N̨|b��!9��\�';�~�$9b�ZTf[�C,��$A�+����]!�Ҳ�_lw��:�<���q3HF��]�^��F�_�{T�N��z>6�����m�[���3������g������� -}����y����z�� -�}n--�2��� -��-�.A�ḷp�2��R�.Y�r�>'ۇ� ! �l�\�����b�w i���Լ��y�Al]�8�U\���WNF�E�SX��� �M aH�e,���uD���^@Edj)��o��$e ���M|�l-��m�-�o0a2PkR�b���d���JBw��e��s���T�%u~�c�}��픹r����i��ne"��� �\���F�3D�H����(�l���a���P�{���L�}x��+|w�����l� �z>�+����U�/r�T-�G6ԯV��'������(E�0a���=:$4h��F�2)���QW*��Ctx�c�i�)��0�J����.,Q�7�-JFj�)dZ�cP�����m��V�+-���'�dD~1�+����H�������#�aa�JUL���P_[�e�7\ZjPh�cVZ��;��OmZ��q�l������mLΤ��Љ�,�#M gz�E':p.�o��r~�ۂQ���.�]��\1ڨ͎H��Ͳi�D"CI,|M�h�V�1D�]pxk�Xe -�?�Tll #�HK.͗�L=�eHdY�[��H8��nar���� 6a�8�@��k���Z��KP�)�Q�,�V�ad��:d���+�\B.�����=�R��D��Q[� -a$��!�li�82�k*��q��#���6�E�-��'M`anc ^�m,1z���&0_ ѥ���+0���ޯ���_�Fn��qi4U��~�$�<Σ#qT��;S�.P�s9���(V8����'��g&nir��c�ȹ �EOY�I~A��)+[+�ы^�N�jE5xp������SC}Y�����.d}��}�8c��Oq����m���d�Vw��ǿ�� ��4�;qib�jk]���i~�"&d�[���G��SP�N< %�WT����U�� `�p��@�>��~��oן⢷�T YMVb�}F�m�ia� -.�ˇ3����}�gi�ˋ�0��ٛ�1�N�CpQ��n�To��dV �'����9�\�)�M��.iV�4�W��5O�@�����0�*U�.w��{!ǩyj����&��@iJh�t�J�G�{����z��U����v������:|��4D�Z t�'q���q�M�q����K|o��Mu -K=3�0[ �1%Uz�>�3j�#P&���>|���'m�$N-HY �kco�K��M%l�� -@�7821u�ۋu�c0��i|2c&�uR��A�����I(�����?oW�H y���0Qe�8-��n�a����d57�����>{M"�q�}/Bb�=�tH�x���ː\7�I4!�Ki A<��_��S#i�~�����:�8����g7{���J���YE���e�=Ҟ^�~��.�������h}ߋ�������;�� �~�>�»���?�~��k��o�Q�z����������n�x��:�G�o5G�?����#�Yd<��B1f^L�)��ǿ�4���^h4��\�e�0��� -ufC�?^^q�x���U%3�N�%���I֒X\vn>i� :*x'�y&����1�[Z�����/�����2O���8�+��,ʥ��HҜ{W���' 1�P������:�|�=n�N�^�O��4�e~ c���}P�����f�����I��Z��_W�ԅ$o�����TL�{\� -�AeOK�|��Xx��<O���v�y��և����� -_ױؠ����0�Q���{<rܶ 7 �6ҝA|��&@��@�?��i]��o��2M���'�y2 -�D�Z�mH}�Ҕ8���w-�K͓�8��"�p�%R%��y���K9z�H �m�AZl@n>/������&�E��syB��_0!5-P5*�n$g�WS�G�n�t�l������t�����������j���)�����]!�)�B?^|���$���^[�r�ip8緜�%���3͓��|G��I�J�6ѻЂ9c�̋�#M�H|Z�b�H��L�Ǭ{*xS0�X��p< - q&�d�a�V\7����$|���B�F�%���k�n��Ie.�߀������}��H����JdW�7��=\�(Lz� $���c_�..����E@����q�e7� Q�p�����5�1#ޑ'�¤ -=�B/N<RA��9��ā; � -��Z2��m�J�`�eaJc�{�#� -Xf%*��G��n��@ Br�!�C��-�����g5\@�jR�{*�ű��%�+����7��I�\���2��e��b�M9d���{V����dH�ƶ���i�I���u/����B{�e�p�e|�ӊ�>Д���A��-q�Iu -�,�3-JV�De�,Z�㻴n(�#"���L`�]�P��d�����s�����s�G$u���`b~�jOX��6�A 7���bq��1=����t0���>8,�.����FN��r�G���s���Z��K�Ƿ+���ޱ+�$a5V�-��d�U��������>�������М����I���&��W��~y����)Q�V��2���[^e�<6��_]�D�<��|W�"��1�b��ȳ��*�XJL?d��;�W�p���${�"2��Z�>�(c��@�uT���X �� -G(��aZ��o��Yb�e����4�LQ#�U�Mr�r�����v -��2� &d��ք�+�(Sh��!yx�˃�k��hA��U� �ٲ@˨��ev��;$���}�T�`����m�ʜ2�CNFC�� ���S���#���<���7b'Ln���<+��)�+{�%��wt��eP⩟�靿�#z��"��/78���1�[b�_3,�p� ��]��p`�<=�^}ؖRoU�?���yR�!Q���YI<͓U��d�A����U؋+C���P�X·=�u'lUq�T$O�j�d�-����!_ᝐe�40T����V�� ��X4P���9��Z�:b3��g�'mԌ�9��IḰ�QD�b���P!���g��]��Mu&�v���<s��P�\��(I� bf�A�?P��%�Ĥ -8ÇM�����j�o�ru� �֥k[�ٛ<�]W@�n���aO�q����4�Ҿ�]��������#By7�=��/Q4<|���3g&��\0a��+��펷�h��_�b��Q��@�X(2-��n�bE������Pc)]P� 5�Wvߐ��r��`�y��L�rZj�J��6�j"�쬸����]� �`n�M���/$�}��y���ы�5$z ������-�� ޅ�_��1��,�^��x�.6�����Y��w� -{�CNp� en̯��U��3FMG�cD*}��2!-_xG�o?�s��k���nh]�O`����yr�U���jp<�T͚S��FK nJ�)� %}&��t�4@*��T%�Nlo+���W�S���E�ى.���/I��dZ8�<�_���qI -.|>������d�3Kc��Cs���F&��쁔4��rG -+Z�@u�}$���"bx`f�h�q���c��0�l�3�k��'^�*��7���q��K�+��|�=�IA*a��Y����Nj`�@��zn�IA6���(p�~0"�$��G�eΒ�CD�W|@����6� �gr�N�yz�NIҬtá�� ���e{�j17�`RV�%�8{�3����X���ܬ���Y����_N -�<�97��I����ڥa���^�@�I��Cl-G��O.�z��O�.Z��S��k6�������<�M�N6������ۯ�@�4|��zL�i��lH�����J�{�-�������c��:ߡ�~j��+4h�p��g(�n��iA!Ѥ��p����{H�I.�Z�B��d xP�9��Ů����'�W�������O�r��{Mv6Rh��G��?_cf�V���'�|���5��|#��Y@���#o�3O�����'�],��0 ir���|�j?�$��_�[�`�]ӂXW�+� ���UYC�s!{���DFA�P$DoH�h*����9��Kʜ��.�,ҥ������;XE|:��b�_=\����ps�����7#����9#��5���y��J�p���$�D��9�ҫ�w4��������z���c���ț��9�>���>B��|���� T�����X!�5D -_�����yZA��|"���j~��^��4O�F�� ����s��#�C�T��ȴ ���kx�/Ǎ ۢ2G�מ��Sz�/���&��d�LO�"�&&Ճ2:�H����y ����[��0��={:�ȭ2z��w_����_}��_}���Ps�7�?���i�ӫޗ���p�m[�h8�<��;������h���jQP��x+�e�~_�/{�F:x0�V���*��R��[��z@S������-k��x�_�����ʲ�o�mi80\�m����͈y���ǯ!ڃ6B趰|����*S��F&�/��������h���$��KX��˖n�����\�x���E�S�z�v���A�y��j����iA�#$M��G;59�&Ij�0�H��� ?��,��d��~��~��X�5= ��\y˿ -މY3,UG��9�㷴����`e�V,[4H�_�O�`���S&t�{�P�p�ft%��V�� -̥��7q����r<q�So��V�!>=���z�21�آ�@b'��� ��A�>R)�FI���B, ����V���i*>j᥏a�hɒ�(hdf.:V�B�zH3a&���iC���:��j�l��z|�0�#�8"b$&�&�t�,i0�c�%R�hE5�f����i��]�0�=��[��L�Y��H�`O6���rzA�^�$��[�hlpB -]|���t��i�]�}��!ؐZt��y����~��� =\EkMU�,?��Ȏ�c���~�~�t@�������fdd�y:��X������o��+���Ѵ�>��*�.��'@����ٌB!�����3������jc��pEg�_�'�Л�v����-N�������{?r��B\�I�K⒙��R�O�ǒl�L��*�&�ƂȂ��Sf�����KnL滞(o3G���[0�q>�Mc�1×�?cضR{���^ъk�m��.��*�k�����S�G��e�d�6ޥ:�M�Y�1��|��@,���Z*Y����U�<E�6_�Y*��H����߮�t� \B2��q��J�8��gDa���ůH&�K���\|F0?�be��)�n�LB?�v`���N���y�F�d�S{b�V�oe*���-�{01��)�į��q%8�D�n'��}�VF��u1�j��6�q�f����o�!��H� -��:���]�-���%'7W�]���+$�\ç��������{��b��"���̿�#)��v�j�˯Is� �B�0�M騖ϼ��g�|�:kIt���s�?��N�@����HJQ 9��!������+K|�(�O��N�S.\����+M�4�d��Q�/�$L�HH���8"j9+��e�E5��'���H��_�dH��ꝉځ�C�-n�����/{�����ji���1�{�S�<Qʤ'���jP���&�J��n���5�m��Kb�]��p[\� O�h����y���E���5��O+��8xC�����ߣ����_�ނ��ٽ1�V�t1%z,��)ɼ ���u�3�{Ĩ�x�2���hWh�ӟ{�L2�\C*����B7�%\o��� ���y*���d��Lb<�"�H��fT��,��e�W��\=e�/iI^I&=�]�n�<Uj�Y�5w+�����e/�w�;��y"�Р �8�g"굝����qE��q�� �K�����_aKN���(H���v��!J��)W�O�����/�.�0BB�;������,PMs�e��W�{l��Ye#�m%H*_@8+�ua�"���{�#��:�%��K�{)���$�0��XR\�v��Z�#�Y$@�* :�L$�C�����Z� ��/�������-�sxe�?�b���ċK�����wj<��W�� ��v��`qb��n��qAml�qpHD���=�lSbsZmӜ]I]I[��D+�Q2�j�k�K��x�A�^�N*��,�:-�9i��\�;�a���ҐL�H&d�ި_6|�r�S�L��;��H|6ϲ�)O�Y0!�,NnQ`�>��L1�K�xՃ��`:MoM��'�P@!W�$�:z��A��,̩_ -��9�S`x�B���QJ��e�]��2�v��](s�P���P��U������\�e��I�,I_�3O̴���lVHg�>,N�L�"~��s���ǿ�?_E 70�z7߹����H5�[H�Sc��]��K%���t� ��0=���tp��v��^E+Mc{��:�����HU�uNi�ef����xѻ����.��3T@B�@:|�W��qA��1�L}��$ �֡�?�}��Mo@�\��`U|�8���� -��p#�r�q.\6m�*Q,�[��������H�.|���_�#Q"��^|��#��"I@��ES;�icu���� I�N9�2�TM�Re��7����C�_-d��&ڹ�����b�(��D;ϒ�hJo�iw�j;�ht��m�̆QL+f�(�����5��|n��:�#���e�����dv8�@��p��`�V#R��:��\��������#?�/#(Uԑ�;�2k���j��-3���@��ͧi3�T��%�6��=e>�?�D"KZ�z3u����[�i��ھ%����I��4q%)�AK��'9)������0.K ��@Hj��ݸhq*��ݦ�o�Z�Iꑫ�q�O���$�s�V��n�\6�,K�����52IRU$R;�t��F�O�#A�=��8 U4O� -A~��v��M -����<Y����$�L3OCA�U�CV\�!�}O���������]�T��}!"�8=�D\�EAd ��?�Lv��2Dž>�I��E>���I^�T4߹:S�R;P�1����}���>�y�P��kB�������)&���[�a�t�{�/l��;�t�����Λe�呃��;���LL��qؚ�~� 8��n�ýM5�W�yPP@n�-Сⲯ�A���<���z��\�3� -�\.�$��<��d��h��S��3���ga��P��#���^�[�����dq8�k\� �W� |e���Y��X������̓0Q�|F�Ǜ(s_��G������X�TM�}hL���O�1�(��;��UA�ɖ����%-Jr�m�㕓C<A�Ò.2OOQ��4�dɼß���R��B۟Ǩߤ�vo���?C�9��x0Ԧ�֪�LD�M'Į�M+���h�R�������S*A�$��w�� -��o�'Ļ\b���2'Z���E�?��5O��ӿ�q���.p��K������]�7�a��H��W?��N��� �<���pg�A�o�4%�兯����̽��(8�'�+0q/>��2�'�˘WQ�J�*`��C^���;�|^��"��o��a�6=-a�ג�カ ��|�����D�ǥ��g�dۛ��W�u^���h�������-q?}e�heHImR�.�6D�΄7��6Pz�����9-,�(u��d ���}��x��#b��Y�-%�� ZY ���He��xCD��Rt -ap$Sk|$�!i�Y<VEچ��_P,B^bƎ$�ٻ(|?�b���_1��3����)X�n��� >�9��m�E�V����%�0��O������1�RB��[Deh�&���*C����.Ӓ���^-tG�=C�#pY� ��������$I����TK�_Ќ.pqH�h�'Oo��g����#_�$Iί �����H��?��:~�;�/�4���zbi�V|�|e����Wo��O�P�w�k���P�<5Cu�~�����$�b�`I�� �DM�N�7����A�Qp��T�O� �%��YB�or��}�rqa��$S=�X����'��+W� -�(��l :N1I��n��x�%�a�3�+�@T�\o���g���OW��!�L��@.��Ьz� -:�$L� -�dp�H��a��%/SOދ�x$q�dh8�Y�l�lbvZ��D]�#=тЧ����>=�Ao�$��i��D���@I��RnA8�2�Rm2@D[���P]�_�,�͝%J�z$��}�uB�[!�Sɹ�0y/��g�ơ~�̖(i��*I����Y+���x4w�^��s��xj�$�k�Ӣb՟���`uy�.q�ϱDj�Jv��Ƕ�)B��?���x��`�/hFd[���'E�B}e,���1��Le~�f����_m��ȎP�� -�,�R�,�����ԋ�3�w`ML�A-�0�n�e -��g�A�S1R�$o9"| �&A@�h9�8�,ԙ� �)�%����� �\�]�>��ݑ��'Jż���Z�Bg9�1ȯaG�);�R��/B�G*ޮXy�4 -��7�Wo����ӣ/���BC~��=H$4|gsX����X�s���]�%�d�X�7O�2i(}{��@=Ϥg�t�/��F� /�����@'T��X��ș�^`��BB�>˜S��IJF�[�]㋢�b��H�XZ�O4j�%0ͥ��ޢ��t%0�6I,(�Ʋ;�E$&F(b�J*�2 �0'oYǬ�T��g8��E�N�B�>��.��D�9~�� �3;����~���@f�X�f4� -R�0�Jv��=T���K�9���%n�5�V��0 -_���Bf���E�zR4���ь�qw�N�IN6����U��g�f�ք��6?/�{5/U����F�\����tMm�JmLI�R���4m�;����=�I���ӕ{��˧�ݘ�4�T� v�}�9�oýyK�2�����$�Cz�]�W��ҵ�l�o�u���ϜzY���f\J4�2O�,r�ei���z ������:Ϡ-b~7(���qC+홏�����W+Y�(��qBT�G�T��Nq�^-��/�G꩓B���5�P�K�8b?��D}���y����y���r������������1�B�D��$�={:�y\�B�� I���!`/j=]�����q�3������p�����~�VsX$n'x@����|97�PJc�d5��F��%�&9�(�B�ń���¶�9����"�����|�n1B!�ٯ������~�Y/��ܸ�>�}�|'����M�#�H�� \M���ۤ:$��ᒕ�����2D��;,�]D�{���L��I��+�>�n���]�������S{$�/���*X��9��43+Tr�)�����X1T����5C�O�;�Á�H�.\����q�$u_�����C�[�� -(��V���oi*�ࣵƧ-K䈏����&��8~��4H�Y2�@�w��$']�_�Yy��t1���^����U��B��o���:�Щ�J̧�+�8w�B2.>ۥ]K"(5+2�9c��� pt���i"�$�ٚ�Y_[��AT�&^�0�}��_�|Z�����w�G`h�p��0~i~(��8f��D���BrK{ʤ"���w!q<LC��{X � -}u�R�Y� ��Yd+͂\�ka'�N�Ё�fa�U�&p�ۘ��V��}��R�p�E�Ȼp�D� /�WؔYL����e��1��@:eb8�eS/z7?�/p�i6�]�c#!+A���!`��)�ע�ϸ}C����Q��U�7�m���U�J_��ލ��KABo�+ x�:�(���_�����7�������[$3|���g +� v���0_E�����_�R�qxR�{H�D_��p_�� u��ND+D�_6��KV+�����U���w6 ls�c���ѥ�|J�� -'� ����\�y:�~���ܢm� -ix%-��<�Q�3+��y�F���%Cn�݀F�����ڒ6����<��<����S� �}�� V��s�m���s���s���Sɰ����oi^��_s�[?����Äaǘ9X�Lw����_�{��Ft����T���~s�� K&��4]e�8>#9�{�8�X˿�7��~��t�p|�-w��`6��N�ޥww;��N���46�s�G��LOA�W���t8�����z�C/������˻p<�|����ٔ'ϡ�Ƭ�]��f�h�)��$�]p��O���X����eZ�������h�^����Q��Si�m.%�q��2.��v���(;�F����ca� V���C�yx��=�6!e}o���at��`S�L�o�і����&����Rڰ�ݎ��܇�6Vj���a�&&2[N��w����~��Eђ��-�s�#��AP�N��h���ek�n��r~��Q�2��^�_�\_��S=WJD��'3���|ZS`�t[_�֒�E�O^l!t'RyQ�^��/V�<�d%��?S\�OR�M>q��X ��PE ��ג�n_a�h5����\�����x�N��p �eׁ�'<�/���ᬤ�\�D���e��/2˕��� �ٓ�&_r@���@����䩡?���)H���R����gQ�-]��"�^A-����.|�S�=�F�<�=@�S^n�����o�1��f�@|@�������|���ȶE�ol[4�7�b]:˃6�`E_u*�9��m��N�;���W�\ݳ��Yў2X]M��ם+K� -tj�ǀNӲ�"9��d�� ZVt���B�#�[�,9�����6.Kh����4 )d7�"�%}����u�̽J�/��4���R5d�"���H|��f�`:�Y��V�-�cr�I�6H~���Ê�!=����3��������n�L?�8��a�:�h��ܑ$8Y�;����M�üQD���i�%S�ߢ�վ+ -���s ZX2Eq�Bn��Q����ؚ//T8�Mc�T�h����o�E�������?@kf�M�JA� k��W=m��7��c��FNK�RH���U���6��H��CN7��pG�I�� N���b���&Y~7�v��Q7�w��I7ɚv��Y'ɂ��y��hN/��6���W��;+7�a5W/�K�إa@#Z�lEEWA��ߜ��ߜ -�sO�����3����8'�#�j���b��}&�H��U�D]$���RN��J�l�7Se��8S�Il+��"3����M����gf���or�������p˚�{�[VN����ު�l�?�6 -�eI�ߍ���g[�m{���vg[�ms��_>� �OB��51�1$�H��+�Ѽ�f��#yGf�y�X��#3w<�הE�w����>��� ��M���Kވ����~^��`f4b���ב���evK������(C���@�� �Ry<�8?�ďc��D�8?΄�\ϯ���.|�������������>������ް�aI� �?w/����/g//������.~�_^����m7�[?Ъ!�ů��_���?��W�1������>\�'���8N�'����o��y�G�sG����dߙ<rFI�w�I�=�k�V"T�g�.��9�_� X��1/ȴ�����>3�3���>�a���`8J��pI?�/G��>�QF� �����G��1S�?�ZyҼa\�7�+�� ��s�j��f�,��<�����,Ud�#���`$e�A<��� �A��'�<��`�����ˋ��@˲��`䁜@���z�����;&������C�Utx8����BC�B��S�-ƎA�#�c�ɲjڤgVd� -˨}F0)e�u���bv 9�\�oәs� -w�<Q�t�oa�u��?����h���s���`�h�N��m�� �a��8}28=��:��Rv�ǓT���|o�]�6zۻ�q��hC��8�X��}�=����Wq�<�Ϥ,%Z����ݮ~�ƙJQ�O��x'�+��$���a�n��r��q���m��o{O6�����=���XAV�){��`Ş>�����"�!��E��f��Ҧ�0x��t�����6_�t���o�s(�WD{�˝JU��H����#�v�������R�3~˝����`0�j������TK����{;����^����7q/~�=���ې$���a�n|}w\�.!����W.,�w�j�[�:0V� r-;�b���T�j*�}��D��gD�T@��� �*N�RȽ�O�!���������)�b� �B -�p��ei&�?ئx�o�=~��x#�~~�$����*ڄPG�wܡ�B-�[,�p��w�N�_��H� ���WS�tً����7��2|J���tv��:O��:�Hn�?���-�����O�G�Ε���=�����������������7d���~���+�����v��,+���wH��?�A��x��`+���}x�o~[M�f�4S�o1?Q������t��C��w{�svj���;dE%b��Ґ���ȝ;�e��_ -��v�N˒J�����$� �V�&쮾��<�V�2�Ԝ��MxJ��A�;�����k����v�"�}L���43����L����%ڈ�i��a~2�� ����X@�=S�2t���L�s���Ku�:-+9��z-�-��#�d�w�p"�|�C�͋�v�ؐo{��n}Nl��t�Q��d��p�:�]��=�0�7ݎ� -��� ���0SI����0���4lc��8�6Dԃ�8}gs<A�p���q�v�,'�OI<�]�xv7l�pqHB0���pD�^�D"F%^m�͋�C��%�{���Ezw�?� ��d��g4�V](�iy��Txh������g���- 1e�]�V��r��VgX�ί�eU��I���}����6���\��w!��s�8�������Ow��{ÌCl�)�#Ni���2���B�]�S�R!XK���)�Ĩ�KhU��$\��S���*b��@���w9PX�a� -��6�)�G���>�m���q�P�'MحI�r���$ߓm���]���9 -����x�"�8��Ilr7���e�L�Q�_�p =��}��E�x�'�L� �y�����F*�UB��ڛ�ܛ��,;@����Ӌy�{�-:�Il�����v��W7tT7°n�q�pK~�p��2��+���_)�:��@�F��J�<B��9� JzG�e��see���2�0%Nّ;aG˻h�v��!��sV�^�|I_;��E��~��.Eֽ/���Ʉ ص#�g�7�e���e%���t�k����:r�Ur�+�j�,̗�x��=w���y�q��� -{�T:`���|vF�#kG3�f���/�p��vv-Q��q?{�vW��f�ͼ|gH�D���5�|W<:9Wh �{�3C��C�>�ӡ���t��"[Z�����e �������W$i�<L1�4S�Z�JUy��� _�e�;�B�(&�b�et �t��8ݷ��`�4X���O�T�g��p�k�hq ����O{U6xl�L#S}�>a��`{h�m��K� |�z��H9��Y$���^��|b�ko��4++I��p$g-#ij��懇]��[������vY��IW�%����DƉ�*�%I�H0:N�!�"�_N!��\_��B�HA���].2~ڵ�a�������C�GiMʂ��|c��W��1��N��D �(h�<.� �gY�.�&��ۗ4�1l��lR�c�&�5p9�wA��V�Q�6�ʃ�����<A"���]��ǾP)e9��y�`,���0����S��n�o��2�c|خ{��O�6fEl/�=��nޱ����Sb��ٱ������a_�6�U�Vi����<v�=TR[�O��N�3>��~�o1M�9�Vh�N�R��~�V�R� ;��9����?��2��X��_���j%�Y�:N�U<)W9?o7�����v�W���4���8 ǣ�6���-���cw ��4�P��ؽ�-�Txv��h�����S�_�c�5 -b��r��u���B�R��9�L�Y�@2 2����\����û���T( -�����flz�8�!�����8�+�)B˿c��oո�x �pN�c��|h<W��fa�Ro��3�Ir��7���>���Wm�@:������~w=C&�I�����ɤ�t@��#i���D���(��)h���,���&H>����)7��,�`�Ħt��7�$oB�ډN�ff��PꉾU�H�ȖE����椥���U� M9A�N�� �ʛ:��?�U���-P�:��V�M�� ��q��`��O��>�H���K�E�<g�� }#��O�(7b ���~��A_�Dee�x.���6��q fv�au�*R���?�}�GGӴ�jU�0�OT�j��X]ޮ��W�:Ma�VYK��b0�6xL��Z��>�J�߇��b&�әޱ�l�G�c{���]�X�b�л ���s�d&c�xk��B��q�l�,d�=a�q�����m%�ޛ��~��`߇=�{d/҄ꍢ��J���W��(F��d�Ɵ�*�ԗ1$M!6=_��(4�K$�9V�&+��8+3VB�b�nų�$���H��?!#�{������݃<A�b��F -yK�\�L��ɺ�B��doŇ���/�D��iFl$� -�V=r���� 4�������r��9�;6ס�,�#�%�L�`�i`�p��߮XI�]�_Gq���������%7�Ur�g^p�-fS���q��s����H�2��X %� -)����6��u�zu��6d5�٢?��t�5��Ѳs����d�[�V�Q��r�o��i�J��WN&�<*,�5rH����U�Z���<�#Ӂ��6�����#�t0?�L`m�p��l��!�:�ԯ� -�3�T��*� ��E͟5h��C� su=�>��Aܽ]��\F!v�#x��}� O�M� ����aq< �p��N4�XIQ�g�K��E�O�l���dbC��Ѕ�p���VI�fEw=����c��ia���N���(nr�\ܦSRZ�n��p�%����쮺2o�)�$GAD��<�ȼ�x����[^y�6gx��:�@J��.���z��'Y��Co��AB��v9���`�-������~�dE�W�Wp"�<.�Cwq 7[��aܵ{��Hr�t�ږ��̴sƇ����#w�:]��� �#�kN��Ӱ�6���L��7��0ޡN�w��n�A͎�d��U_�&��vyy|��e+J��u=�?H.#�r�O���d��t�Wk�ʻ�í�_!�y�UQ����'� ?�,�?��dƙa�d��Q6!���.��{�����N�����,4��*���x9�J]��a�?�,��2�?�[�o�Bv����{;��G -9PG)����]�_�O�j2��Y��Y���<�:����i3�A8��p�K+ɰ%�'�D��H�q������V��)XM&�v�]�����0�ς�`�-����ي�dT��ˋ!�5���`(� �P@�H����Q�$J7X.��C�.�),3�L�n�U�� ���+Ԕh��;6��of.b'O���R��3��X���!��������Ȅ?�t,N�%2N��/>D���i&͙��ѳp�N��82:=�>���o���.�f�ȃ�#D���w�N�4��&�+J�^�vY+g�jl�$��}�d��F//��d�=$�C�m��!��]G��w�߮{�.\@Q�^:��\O�%6�Z�FA!�M>e�� ��'O5nd��<)X�;4����!�����ȹ���n���ɘ�V��(w�A�#��W4��*��0�L�W�ٍ����c�ɶ���N�f&O5�d³�������Z�8��K�a)�Lj ��?UL}�������I&6�-��My�0)CM]�R�fܻ�D%�J"Udm�E^r��1��L�p2��a� -������[�m�!�!)�v��d�@Q��ԟY��.��Nj�:�Us���������~o����d����p�/����r�&��i��n'���p<Kl�S�*��:������N��/>�9�X��ˋ:���̢�5�Wk�v@w�GK��^^.~��0{�:�7�%N5]KE��$HB{�T��u �[�����A?��\xC�r�w��q�y�GӁwS�|{@�#�/�������W��f�]�W�`��D�0s����9�Ő����vW�P�� ]�Ρ�*�L�?��S�1�:�$��ޫ�!Z���e��}?c�$�Uȡ4Bh�U�6���~�&�o� |�ħӧ㿂�Џ��Û�ˁ�C���8���q��?����[���I�>�����?�#�!���x�6\�|z�������~�����^�eH-.<��K���r�;Xχ]R�`Q�%�o��qE����U�K�5d0�_��7qt��g*}�S���JH�(�����7o�t�����`?�E���*��'�$����X2�F� �i�?Y�v��'�委G�`��c��t��M�txP�=�sR�p�6�c��Ϫ8p��\��މOJ�A%,����px��2���!����8X X�(8zsy���o�����ߋ�;ڠ�w����9Ŝ���2P�}:%�P� � 0$b��ĺt�D��z 8r;'���6/��[��v<�_Ʒ�.�� ���BE�r��M~��4�QJ�������9���[�]���(f�+zS� ?C�0Kg�J)�.G��q^� BD�7Y^Av9��7�K��.E�E�,E���䍽�r/��̿�����io������ҟ�%h�!�y���!����̦%����M���ҿ/� -�g��#D^8���o})yq̜�o���=n��� F��"��bs��� - �u1T��HlyPt�����f)������S�am��|_P��TsGI �<'��"���sIW�q 2G��T⤢7Й�C�u{�ڣe����$fX��#��\�Q�:�C����ZeR�_�W��KE,n�f�;72q�����E��m���d�r��VE��x@H���fb^v���%�{���V3��7��~��������"?:��]��A-�o�֘S�Oc��b�~��=��sR�ƈ}ň�g4b���1��b�Lm8��mkۼ�9���A��.�D�[csQKf_l�k|e��v'�;���\�������ޢ�Z�5&�2�ג��M%�7�d�TsP��A�!��g�����-Î�M:�2+7uC�"7�4��?~�w�ʯ�[�(Xi�.T�W �.)�<$�\����aA��%}�d�@<9oS�������{t��9� �-I6���XA�y|Rs_�s�������� �$3w|�J=7��Y�i�X�'�������C� ����d6'��h8P]ٞH�ζ�1{��i��Z�QT�b�)�1��m��A��2e��) ?�&��Y��Bat����?J��1�����6l��M�S�nFS���d.ڷx��;c�f9�w; -��1T=i[��B��˭�<k�������J�C+x����^y>�&��ࠞ��i<ϒ��q �0e�-;������g��H�.��1}�"��Đ1�h0��r�k�<t��:�]�@�i��"�y��:fiγt�:t��]���o��S���@����:t�ݰ��qb����u���x��J� ��S@��O8'��*����3 ���V[1I���?/� -�i��FN�p�� �J�6$�T]�F����ٺU��9�1c�3v��@ǁ�Q�k�N�?�rB����U���σ� ���m����gt�?���h'��9�3�t�.ױ���J�AV=�E(;������0;Q�S'�k4��4͢=b�:uH��!�Q����*u��4-B�T�Ns�֝��<Ua��|1xZ��rj�g�;86 -�3g"�����@6;[������t���(�x���y��)��*�u:F��Z;�Y���!�C"�HԷ��V�穙�T��m�:E9np�]��=�w}����>��d�^����7&���|N�qҏY�G'�����B���>\���!w�B��9U��@s�z������Uߘ+���� �$O��V��)���Il����g� -��2�9�q�ct|g�&�"�\��r|��)�8�q���(���.�O���u�۹t<n�-l����.��K�c�\FT_�����f��ЩL ��)=��<�>Ɣ}��w��j�]���O�����3�����+���yA��*4&�ͷ;�:����m�l�OH]T졂�2� .���o-��)2��㕝���l����n��o��������_-q����^9E���#�<x���S2�K��d -'S�)����8ƎuL��vL��H�z�PǢϤ1������-��e5����b@�)ҁN�r��������Ɠ��� ��23�.3��Q�Fat���NukO�+e|�ԡ�s.d<�V��%�t��(�ͺ�pY��Q�[5 R�j�AM:�x�������O�B<�f��H�����H~���ى����/�B�Ο��ݚ��3QK;?o7��$v?�c'�9��Id��"s������Qiʕ�ڐ:�,�%��h��ȉ_�FK_���jbC�>6A�`�c-|��>�RP��h2ػ`�� ?���� -�}G�����ʥ��%Kw��(�. -߷.6i,&�[���Y�;�y��I��>���K5�7�?�x�����X�_�����6�>ӝ�}CK�x��?�jubx��>�bz����s4 -�f79k#���̼u�o�="�wΈw���Y�Ҁ���-����et\7��hƇ`���3���\c -:}A'�F�J�;q�IOv5�ȸ�Yi�U����ċi�'��nș[�δ=�E����v��zkQ�K�(Z��`��DS? �#^�6���b���S�.��a��kw#[��pÍ���"�X08�jdTl��e`�+��{���y��S��5�`���d�ɻ���<��E�2�%�6N����ة��Er Ӟ+�8����a�Z�ͻ=ډ��^�"�t/T]P�BcmH���lnrJ����[�[��{�� ��l�#�{�F=ڱs�g�>�6C:������2Z��E8���kY� �d+��E�U�{��JU�A:#|1��9{4�UXdj�"y@�Q�y�w��.|���%�+_�m �,�n��&~���ř~�ę;H�}U���I)�&tC���SR!h�Y�w�.o�v����=��ܩњ̆k�~֤�_�����Y�avM�K��E����;Z$���T$]���Ǽ,�̲��˒n}=n���~њ��M��5a�9�ӟԕHo�#�`2Q/�� Fa�����汮Q\�F�7�`�o���ק��ZM�ת�8������ -+U�R��lL��۩[S�*���I���ǂM�RW͌�셍���qfQg��ϻ�fѓX;a�J�^���l[��JF,��+�cK��I� -�y��;eGt6����y���Ag -<��i�� }gd�u�֮-����Β��l�H����5�o ��+��^�[V������ޛΧ�)i���;�w�p��?�/]��FXd��`�:����ƎŨ��Hr���Y؎�7l˘��(��N�R� -<;@�t�i��:��gֈ�ȯd(!��M~%պ�|�o��Jzi)�Ӷɯ���?��t�)E�����i������v��и4.M㹀���3�@�. ����k�����;����+ꌟJ��9�D5�N�x��_-�ZJ�Ý��3���7ɰ˓�� it��s���d��ov��}����g7���E~t�g��mG����z�3s۠1`O1`�����O��#6�Irfd����v��ӊ>�9����s16����v�A�u*�S�J�p.�i���X�J��$U!�* �-i5�m�a�E�����Y���`#�9���P�@ (>SF�R�2� -[���7�R���ap:v�0�a���Y�Du���(X����r���<XG��aA��%}�d>�<9o������<�kP��(Ϊ�ăo���d�̱���i\F��徦{��� -��`⛌s>��>缔=LFʩ"r]��e�I��̄4|�]5';a�XYt�δ���~J@�X�f��q͎���d��~�%�B���4�qL;�v0m���@��q�2wwb> l�� �>�K��.���l)v9�������T�����5��틠d.ڿ -b]w�2�䮃Nf�8��'[�������k!�m���^ �gN�C��N ��=�|0P�����qG���>WϜ�D�>����%�v2͉��V�Dk'Z���V��B�@[��B�:�ulP�S� �g(Y�a�=����Et�!����Ft���ѽsFt�1 ������;D7��C��#�����)�?�����c@t�D:Dw���(�[JK,��Z~b�[���UI�`¥��&�O!��d��� ��Bz�N 5�LR�?���VL��f �f�<S��rj� `#'�9� `F�Q���1)>�N!>��5J����1֝!f�a]�]�:t5��c t-�QQN����&Z��x�E��`6H>~���O���sEt~�I��s��(�9L�8Lw��0�(�OZ��\���ꠑ8���"yb"�$�P���B���n&g{�0���E{弯Lל�2u^��bTx����b�ڕ^�z�����K�*�dz�bɴ����H(�GnNX�9a� +NX1*�����Y:(�N�s�Θ=��}�"�!�CX�빺��vO����R��K��ը+�)���Up%����nܚ�۾��=��]4˲�Z��S�`�Fyf��/��~����?�8�^ �^���K���P����@WO����z��}̩. �S��`VEЩ��9��}�Сi�x�nB�]��g~�(gA�?E�p�\K� ��y����=�1�^w���Y��4��n� �u�S�z�[/�\��;�CV���!�CV���[����S��Nv���V�b��U�V��U�bpD�y��O�䡶���|��,"[0��O/!��at�@�a�+s��a�Q��d:%�̞�N��La��☰�ß��n^-���[���\W��A��\��;����L����yA�hs��6r4f;���sޮ��ͪZ=ms�b[d�$op!�~� !OQ2"��|�g���$�tK<{8�^^_���j�?���v���ʗ�����O/�/�p~bT�scL&s�0�L�d2�2�عص!��u�,�-_Y���ŹV���g觧�1tv�-:;t6��V�Z��%�%`=E��ə�P����x����x2=������OV�ڢ4�yP�*��W��?N�1*�L�`N�<O�rQ����NQ�B�y [��<�xC��!�+��!�Q$�uɳ$-�x� -j�r�(8:��t��b�ֺU�Tĺ��*�T�`[��)�xd�)?A�_�={nb�,'b�Ʈ0<�������L���f��!�y�ٮ���q;��ɯN~m<�S�Q'��*���Y�2Z���$���^�Kڐ�+ uXM�(^��Úp�o��* -������%����In��Еr<�P`Hh^^�K�-�~��N_6ʄqR�&�PE<n�:��\�̥'�j�s�zs��ޘ���M�8}�Ќo^9�Im-���H���1�v��*���_f�l�JDz������!)���e����d�e�6)�$�K -��R-�����X��Ex��MF�����rv;�/��x2 �w�I0*�ل�=���z�SL���2��A�Ze�ư�H��U�9���9�!�wx���݁&�g9�>�Iw�qMI�"���*Y�B ٴE���O��1���T��u��&X[d})�(�4%���!ڠP���������VYv��0ە�|6�\=����s��A0�u�E�z�sR;rDJ F@3����[E���E�c�w쳫�q}�v�!�a�*Fc5�1��^*��G5(��+�R�W�3�r�R�)�N:�ю7.;��fh��J z������|�����c��>�F~������ś���v�p��v��n����{�H���� /^�^�����n/~�D�\��Wo���쿼��L_^�}_���#@�{//��?{_���/hr��b <�ik�s/~��B3��Cxx�~_ -����* /������Eʿ��S������t[�}�(9h�������>��CC���E��1�ܸ�w���v���y�!D������#������G=�n�\�T:��ů��2�.�`@W �e~1d�}x��u3��_��}�3��?�����?�_������p��7:�!�C�ᑭ���!�O���;��.�<<�ߋM��@[<��S8 "��߱hD�ཆCG^��ArK|t�S�8��hK�e����<dᠢ�M{ixd�M͝L�����c=J�>K7l1n>kv�2{���i����~+;h��?�o�Vp*������Ƹ�>}V?��-��''�:�ԝ�.��M�Τ;��Lv�Lظt,��f,��Ӊ�F�z�_��!\_��b�����a-?�f�eN��3uԇ��*��bD�D\aN�#��5ۂɜ.�Aֆ�_-�=�H�� �h���(��q 2�P"4�=m%��o��FK� ^]��g�?�3�;�`flq�F!�W����m�O~��7I'���������?|Z��<��F��)&=�&��E/=�#I����V�rH��/�^����͂�4�KǞ���:<ᙄݎ��X�������������n^�W���g���l�~V����$;� -���*��7a��Cn�E-�|����]�y=�y+z���{h������1;�)%I�U9/� -��K;�m��fװ"���7ݨ���%f�i��~�[�|7;,M�� է����&Ҩ�:R��b�s�vT�iG����hsY���/��J�l� ��l���f�/� -Lw,g�_���\���{=+�J&��L;�qV�!���ڑg��� -���cU�Y3sؖ 뗳+r�j��|�� >쏋�q�ȁ牦�[�#̟�9��`����<�Vn1�c�ɤj�@_�ż2�+ʐ�<Å^������������/o��Њ#⾦��qL�o9�8y��[�Τ'��7⸴m.�q�r���Wdܓ)Ǹe�xv�c�LT�}�I�~cn��1�̛�;��LZ����B� G� -kg0��Z -��6�X��[M��G�#~�D�#�4�tW�%�qaX�<(@����?_��m�����������/���wA��!�O�+ݬ�5��QB}�{��pb�:� �<6I�6^����[>�ve|%*(����Ȗ���aֳb.�݄̆��|N�2�]�Gg���o�<լ5b�#���8ϒW�3�3o2A�zhr�� �H����i6�I(��-y*L�\���eؕ_���z�*�R&���R&~�$R&O����s�,�='Y��,�6?c��?3ɒ�4˒�*���m&��n§IY��`B�q�Y9�ƽe��(���l���U�(3 ;��X6DzG�,�l��sm�_vb�ȸ}�������o���x��V��W�g/ٳ��g%�����k���.�W?�Nv�WĪ��ݽ�z�Y�H�%�� b����cvI6�|�5��n�l~�S�I˰,��ey�,� �g|��$�V�^_x��Pʰ��Ƥ��6%�����0ãX�ҫ&�����K�x��t�x ���H?i�Y����gaְG[Q��V+��ɺ�iǟ�C4 8y){���w��@�`�Gp��o~�o��}� V�8ܿ���'y�xѠ���Y�xR�Ɗ�����Ӕ�'.�v��Uc��q.�g��3������̖�Y�iDGB���t���2�� #o�����1>l�g�����(,�93yb�3%L�U)7̬ʴ�U+x�R�| /�e��FC����� �Y/\`��K��c��.�)� �L��n�F<��^o��Ռ�� 5�g����r�������-�+ ds�:4w���3�Y��P�z -a�>��� /T�邀?�ɡFzt��렳�""�-[3�z��U���V�4�,�n ���J -|�ʪr����I��bN�Q�[��S��� -�35��:u߇����1P��^�A���`s��j���b^��03Y�� -�D��+�H��3�o��`���ggL��a�a��5%z�hj,$oPa���B^KռY���s�+&�_Ր�)93�)B����eք�6,Qx�u}��q}��L0T����i2�����8������;%�]���w4��Y��K=���6�+���U��+L@e��&����GH#�_���p�\=�KK�sc�}�Hx������'�,6<�A�ӄ���� }���a��9Ҋ�%�5�T���-�Q�P�]dY�3{P�G�)�K��leO��7�PT����y0g����`@�S�E�t�B^�ҝy��!1���8<�b�z���Ӻ��E9�*�u]Ӧ0T���v�&���Ι`1��C�[Ќ+A����<;�9Qk�l�5�G:��-N�Nͧw 7h���uF}cî��Z��/X 1���ūF���dブ'd�}z�.�$�G���pV�����c�� -x��������4Ζ�N��}8�oWQ�6\�-5ǭ�����s���C�+��$B��d)a1��� Y��z%�3.@S6�`��`��:����?t'̨݇"}2%j�Y������u;�D�ه�o�s�6~�̟r2LIX[w��3�T\��t)�_��ߖ �0v�����Z -�u�"� iw��Ĥ�'!# -!� ��!C9��S5�$�����j:�|�qD[��79`a$�B��p�}R�)�g�� ���^�)I��F+X>Щy�6P��O�bZ�W<$Ч2�ҫ5v?ţCᅞ�Z�#��)����l�L��:p}�$��&7x�f/�7t��9��s{~.ٽV��\ٱS�s�o|A���E��ec�*��+^É�z�@5��)O)q��I�Pŀ#0e�u�5����$��[s%!�r����VA��,( \�y�5�c��@P#zb�zy����/�t����s-�;�%��4��W�:]�d!S�ȴ�U�<8FJ�rv`�?yBюmfr)?�����% y��@�#��ӂ��*�9�&����^�dqmM��M���4!��=�-�Q� !��=�/wNx��l�5�,���OK[�0��M�t���d-j+v�ET�Vz�Q�o�hk�;�εȼ}���U���.�P�z��.�X&����,�0θ�>y��A�R�TB'�QNiO\jɑh�����Fں��n�;vT���t�t��f93���N���>�?�p��C��î����3I��g,�n��a�14*FV��߇��@�7Xg!��hq݁V�]�� -̍���@�hW�!J�+ڈ��0r�?f,^�ϫ�����VSyU��sB�l d�${������uL���l�V�k�O�"G`�#E�� �_��d����l�U�F��� 0$��f����L�3i�oDj~�$ ��Z�Y&.k[�$�{���L=S��4��A���2��+.�߅��nM�d���u��Y\C���~2�<{�b�v�g�~����R�N&�ʯ ެV� 6@�"&�7B�:DcU����I0����&��s�?Q\$����]���9����耎=��)Mm�1�M�1$�O��9��� %��U���XMu2�Ѡ��aش�æ�0�O� �ic8��g ����`��_��<siL�,e��q`���2� �C�l��L0�=9�kA$,�3�((�&Atx� �H�����*-��f�N��w�Q s�N��% -�"��gP>Ӈr��a�ܾ߬���.��W+�J�2�V}�V7k!Ko�+#��ݤ��NK )q��U���O��#�1o��������8}z_Gێ9��_����5�r�q�* --GO�4�gM�w� ��^����>��u�k�,?u��Yi��k���h��ڦ(�v����<�'cf'�/k<vZ�Ҥ;z-<̅V@��7��^��!YM^95lm��t�s�ֱ?9�݁{aaS�^XڪF�A%F/�f.���Z�8�RKR2��%e�@�Bf���9�2�{�-�?T[�2�ڌ*A�1�J�uA� ��P%��.R%����J� =>U��l��;�g�J�g*A9�U���g��Vdz��T���TU x����5��kH�&8k�#����<��p�Y��6g�����;��:���Mj>h$�p^8�<{\�C6K�Ve�w 5[��i<1Y�M���'�(>�B41��`E?_r�\��vh_�K�����:<�}{R�渚e���R�k����!���0��,_u���t��D1ר�dGU6Oy��ټ7��3p�3-h��ӊ�,l7T8�%���6�[��N�Q�����F�}T��G�p E�)�� -�磍���b�?���k�R��Sx�K@ݽ�r��*��/pZ��n�(�xƵ�,m2M��7Vzi�eW���� ԣq!<p�5��Kfم��'2�L8�:��L�,.:<I�i�Ϊ:ƛ A���Ob��C�����WDܑ$/\�1����I���jn�<l�WF��$�Ly����y>=u�###��?��m%a>��h|[)̑n�>pLx�8�ZX8��j��K.G���Ѭ)���acm֞k�}��BN���J -����`�#,�����24��ƬWcOV8��(����mL��Bp: { �g���t���t&��Ɵ.@V��C�4��\Z���`m��0��Dm�N���q<*G�9�ӊ��*�-���� `Ih�$K�lQK��7j���d�Cf���p�x$I�F"�g^p�nɳX�@͑~0�@=��&{b��qb@we��j �-Y�ז�*W�em���A5@鈂NS�UXF7��|3fĄL-���J�pG/)er�"@n$]~�-��`�.��ŀi}*���)�*l9p� ���3����2(��9�i��r���?qyA�<��:"�t��|��5��BQ3��W�צ�?R�34��n@��D�e?_�/�D�r�/}ǡ��/X&z�W�$&�4J8C�� -j�P��z��X�����Wk��CMH錪�9"TR��k��6cJ�z8��_g�]R�Sz�]��GR���:�����3mQ�N!E��g�U}q����� -i��;�Ī~1�F�_����� ->�{y���5i N`�kդ��������\jٳ�t�Ѥp�1�g"�T��to/?�0�&��a���H�$ :G������2˩wi?��B5���l,���T�W���(�#�2��oF(�\3�5�@���Q�[��Z��``�U3 -���6o�����TtD&H���4��` ������w"�%A�8���)��S�PjB���� �5��*��LN���Zs��WB�����4����̈́h!��I�6���n 5��sBBB���� ��NH�.$p�ݚ��SNHHHqBB3!AXSSB�h�BB��ꐐP�k�H�x�CR�� ?ً'����$�eH�-u4���y���#���l��y�&�+P� >�� Ku���KF�� 2��J����5$�L���Cvɵ���HX䱳99�9i����@��&��!�*`�]��.iD+�RU�*=�'B��^4Ŧ�Ԙ9f�W�<G��)k'9�Ȏp���"��F��Nzl2PQ���F���}oR�A���%���Vo��AɈ7Ļ��[C�) -��)�d|~;#昛��X�8pa�8qlj;�ŝ|�A��^��w������1��O,�hq'ĝ ���2 Bp���m��<�p3������N4N��0���̌n.�vȚ*d�� -2HB��a���sZ�4�7�{J��F�5�e\�f�[����v�0G[W`�� t'ͽ�.���*�?|����)�dy��4�x6��y�Ȯ*�NVw�{$;��@N2jЙq�,=<v�{�)dz�$ i�p�=�NH:��n��%1`�QoO=ˏW�e�C'�h�5BX���T15P��=G��5e)i���Ux������Ѹ�T�M��Hs�X� �;&�tѝ����iֲܺq�T���`QEK2���(��ʗI#��&:]�T]t:U\����R�5撜M.&4f���� �A ��dǛ�#���=?Ilt�w�Y���=�,&�]�bMq �s8|���e� ��*x�}t:�ׅ�� |����Ү��F����K�b -s\k�^�Q�?�.h��wG}��=����@ -� -O:x��?U�h�>;wo2G��#��{ͼ��e���6��ȗ���ZC��>t�#?V�y�'p��*�ͶX�D������C����Bt2� 4h&�8L����4���-�?W�����n ����[oZ��J@�lg�V�d\¬;R�$�м2�`!��=tW k�6Ɗ��� -��($h��|�=� ��ʼ�� ��F'8�5��?4��_m��ēr�N �>�R�ѻp^ێ��q�i���6f�Vt�"z�<�-�Ԅt'ႜ�3.^0&��v꺦z� �� -�,��8ԅ����No.y�8�9ENV�S"�p����`�e�«o��� -�[O#a�a�_�ӈ�+�+��J�s�!d]�y%�۲��ܝ�p���Rx.<��{���D0���/;���\��k^�g�O���`���:[��������w�v�?,�Ĭ�]�!��2ڠa���5�Bצ/�͢_9�E3S�xG���{ޱj�H -c��G�ۋUg�D�//��p&o -%�{��5�ֲ����W��kZ����^^E�� � pe:ݏ�|>��Lf�s�t�U9!�V�P Hb�O/��o8q��8P��Ĝ|��<N0��fh%�M�ՖM��J`� K>�*W�%UOMc< MI^>���g����|-c���?Ap|�6�M�Z�a��i�GP)G/��*�n�8���� -&�01�pjx�Q����3y�� -(k�M7�����;�Ý�z�>��( -}���2g͇��eW�|��q0Kzt -[=na����EL��{�|���=,d�Q� �i+,<����X\�V[�ۑ�ت?���$�g�LP�Lq�j-&�L���d�a�;V������z!�l���tR���#��EkP:*�ԧ���!�?��G܅�2�kb8�q��2fQ�5z�rw�]E�[�� �䲆-[;���jc��5�\\g�|���i_�ٛn��~|���I�%t�WgJ���R��/�ц��Ρ *��kx��{����6�>�Tk7@.����a�Öt'�(�����}Fآ�.O�-��\F7�f��F3V�+��]���]so6Ǖ�[Ǖ�c툲2q%��S���$�|?H)���MN�"�,�Ux�]R�������$/��[0��B�Rܼ�.�j-�^D�!ߪ�P��B>�7���3�8_�U��-!�|/��!H���� -�=�.��\Bq�`�A�S*Y�#8H�ս�"ǰѽ ;͏�jJX?=���.S,��*�:�E�ϴ���Z���v�]�T�?�x&�O �ZѶL�t��]4Vkg�5��=_lNG ��$"�%}�!�dNW��ߥ'�� .�¡qm�5��9�_�.�$' �+Ŕ=F$�;��骦�'���^��vP Fhi����3O��F&�3P���q��b<������[ -�W,��t����{�=��D P�ă������K��W�ea���Zkyv����S -=b�}-�K�c�C��vU��lUk�;��`�D��H -S뉏:q�^j=q�M��RA s����7J��]E=K���ijd���@�� �r蔡���j�aΎ���D��k��5�@'i��ͻ��v �������C�)�g\ZG=$��`�I�w�X`���z�L�����Ǘ B��P��N��� c=�[VM��.;]� -�wB���,��P�6�_������N�j�c����s� �#)� ��:!��m��i���0R�O�vh��6 �b���NZ�� tb�@)2��6�DT�I�Ye���{y���5i M8ȵj�$��S�k���fJ����t���pD�wU=a �U��'�۫�'L� �R��Cg7҃ Hϑ�d�F��2���0��N5*��l/�Ay`�N�ꈡ)*�� oLX�3t��`XF�n<\�k1f���V�Y�}�|� s�55!ݑ���)�g,0HG#�AH���;���� ]��C��H+YR��P_~P����U�e�C�=֚c�_ I:uw@'�n6p��V&�Z�>;'<ԟ�. - �Bx�F�#<p�;������vk�X9�!!� &�aeM ����{�C�C̝Lx���Ւ��L�#��^�#n?���'��xHڳ�'C�o̕a0��<k���gc��X����_���Q'�C|�е���k$��<�����S<��d��St��.����0*$X��ێ�4}P�z� �U�Y�j�g��.{E�=;"��*l�GZ�r9���lj.�ĸr����NT|Y;�� Mv�&E,�q �md�d��)EmD��&e ��jK�@'B���Ӓ�KF�!�ň�ň��OQ�e�'�t�%���t�r�y�;ƉAN2/������i��� E���FЏ��b1H��"m��U�}����DV��S =�u77��J��r��cRș��e��I`$�p`A6I�q���m�;OK��fA��P�T�h��%ь�y��!�y�ٮ�hx�� };�w�Ep{\����w�����ŝ-�r���E�&�9�!����)��dw9���FF @3n��GȮ��<�z�h��#!-z��� O���]9�0LD�M�g)�ʑ��Td� Gh�vh���w�u����E��w�v� -�O�Lڐ��{j��k.�L� 蔉(��Nrb���qY��<�8�CFq ��.#'���+_,�LrZ[�t b+�� �V����1��l�4�13�����~vi��@woo��3���P$1�}�g�[B�����}I�8ű$���p�>���&�˗���w�鐿j���5�;Ƈ��vi�5z.��/^�S��Z3��Z��Avq �B��}����+�0_��}{�b��6��<�s��&s �9�7��YL=Пi�O���:۩��,}}`��#�~��� O�>��[n���4�N��v��7���d��$�MqXm��5h��3����t����4p����㕀o��h�\�pV¸;U�%��2�a'ޢUԝU �8�}����QHP8I���{�A�(���7��q�h ������m�����:���0F�G��ym{x��%��_�"oۤu\�s��>�� ��S #���q���1In�S�9�KN0�T��`��ֽ�ʴ�vzsɛٱX ����k�.s���,��${�mז���q����$�8�t2y��y�^I5f�3�������sE��w겝#��/ۅ�^�O:���e�0�&.۽�D ;���\��ݲgVQ�������:;�5��� -t�f=~����\ھ�lum���Ex͚HQ�k����ز{]�w�t��>�:q$�Au���Չ3m�6�(��p2o -�&�8B� �(�.��z���?Ո���[�yݍ*�E�Ij�+�y��%*j�Ra��NJt�*��� -�InRo�NL�$&�V1�_?Ր�l��ZI�S{_���ke��Е�H2W�=UϹc#�Ny"B�◧O8�jZ��� l��8�8om���3�4�6����ϴO�R�ka4��W�^>�gBp1)���Q�@U�]��M�O������[�+O4i�����ک�E�S9��S��9�s�l����1$;t�rI�N�k�Q.,��Gy!C,w'/�*��{M -Y{��7��Z�������_�_c�[��qXfL�4�.U�gTMPTMq�k-��Lps��� ���@�?�6��f���B~WR]�;Z��i1����1|�#~q��.��4�e.Ә]�������v�o�[���ڶo5K\�+��;�SԾr����P����8��7��X-��I�S�U��h\�A�βJ�O���G����&�෯��K�m3`S��I����;6p�]��s����F�����3�m�yZ�Y�Ⱥ 6�7��b�Y����vL�{�ޔ�} -��1��(7So�k���c�$��|/?�)���}��"����� -�{ݜ9�K1�,�����9�zU�&߇hzL۴�t�W u�^t&5@�+ԝ -r��$���=7�M���d���]���,nL����W���ou��6�������p�%��^X�T��\r�o����;-�P}��.~��R��O��F��h��mg�6Ύ�1jSz�X��@�I��K��Cb;H����\�����_8��E�^���KR���䤞%%HҢgIi�l_Ք�dH��KV�O�'�a��,��M�y�W��� �tC2�<�g���$X$�z���b�d"�ϴ���7�3�H�5N���\Z��>~%~[�_m����ǫ*�Q�X� �k F��2]���Od�Ys�]<��@ȍ�0�����{�ę6���#H2���ف|��}��3�Jy�F�>��sҊ@�pt";������|+��G3� V��E<�6I�&.����Os�f�#P� �dH?�?�!I,�S���8)�R��2��HܟG�B�tP��O��� �\���O���m�HV:��o��� �T����S��.:���r�T���sW���������m���L[T��sHQ>�ف{�_\�&�?�FZ����9��_G'R����9 ���û��h^��܃\�F5~e���>�|{�{�MIW�MG�y��RX�Ox�a���}�D[��#���d�Hq�_�|_fA�.���Q�b~:[�h�����:Rh��~�l0�(��u+h��(ޭ��Kx-�CL�0۪!�_�c�7��hf&�+�A��8����h$i�]�q'*X��cZ^ȝ��AA K�����U��*��L^���ZsTB��\Љ��̈́�3��I�V��ǎ u'�{�BB�������NX�.,p�ݚ��TNXHHq�BSaAXUS��l��B��ꐰPn'�p��l>�H~���ۏ��Ih#:��[����D<��g�+.��l��y�.�kP� >���b��L�_2�s��Q�t0#=��O�)�e���!���%��:�0)��#.Ƕ#.M�f�b�dP5S��˛A�������bc� -W��E�\����4����0��y��W�NHrB�!I�gE<��� ���B�O* -L�L5��M�<�^�3���JbN+>*1��#�#�k�;EAVŝ�{pw��3���1.�'�8�ǼؓMhW�ыwqb�#{A9cA9�v���]4�سA�VY�TH�Sp֭:B�'r���65��I��j�PcR����eݎ㍥�pXAI�q���e��NK��ʘ}��h��&�L�����!�y�ٮ�hh��};�w�Ep{\����w����Vś%�r���)�&�9��ow�:��#�UNr��Qό�f��* �̳�$ i���=�NX:�����E1`RoP=K�W� e� Cg�h�6BY�O�L5u���?G��5e*����Ux�x����Ѽ�T�O��Os9�C&�t������ڲ<�yu�a>���0ڒUFNV���U�P�۴����jC���V���1��l�2�1���U����m:�� <���g����Hb����:�����e1�Tm�#I`�#��|=��-dM��/U�k��!�6V��5�)Ƈ��ve�5z.��/^�S��Z3��Z��YvQ�@��y�����*�0��y{�X��6�<�sg�&s�9���ÚYH=��g��Wu�Rk(?����=b�� -�������!_��6��H3�TdG {}s<_�N ��A����v�9Y��<�� �'@>;��E�XZ��M�9] ؖ퍶ʝ'%�3�N_�+Q6�!ZD�I�0��c��{��+�B��I�sz�@����Q9�a�h��F���m���yZ�Dއ1«8z�k۷�6.9���y��݊~�D�/�o��%l��~����$��N]�T/9A�RA�2`*����ӛK�l���9ENf�W��p����`�eʫo����<[ O$i�a�_��H�/�+��J�s�%d}�ze�� ��C����}Y.��\x� �.˅�6qY��K��SH������-yf�n�u8������i�~��������n����8���;A]F4�`^�&Rd��4�%��Z],��hh2���h���w��8�� 7�Q����ę6QK��c=�ʛ�c�q�#��h��z���j|T#�Mk_�VC̯��$i�L� ����K�i�v��K���g+�$�H��o8���XP��Ĝ�|��>N.0�"gh%EN�=Ֆ�4�ʄ�?H-W�-U�qc>�MY�?��-8�~�*Z�� ,�p8�mm��x�_b��m,ˇ^)�/��:M��x�����&�01�j������h�z#�P�t�~ߩ-��(����P{�N��( -����rg�雛eN�|MفPKzt -\]�oa��<��E���ݻ|����=*d�Q� Wj�,<��� Yb�f[�]�������uP3@aP3yā���f2����S�`��[��4��҃�I!�+i.��A긘[�S���#>q��.���e.͘M�������v�o�[F��Z�mK�*��+�PԺr��A��D��'p��o��1ZF��ʧ���Ѱ:c:���2�}3�6$&pMp�o_�ۗ��&�����K��v\຺l��<1�I��b3?�);�g�1�<����tl�o4g���߅����5��|)o�}|�<ڮ(/S_�k��c�$��|? h)���]v�"��b|f}���e�7�W�sH����兓Q!>|�<�G����/a�^���f��Fr�`{��x1,�6�c� -@�a]�㯈���c�::8�\�W�`U<��:*�#\��u���k���!���������sG�:� -���1�}�L��Q?3�e�7g�o�'��͓ ��k~���o�5׳y��5��S�f��ms��ٲ�ѫ�r3k�c�gǒ�5L؆9rMS�9��a�ϑ��n�B����� B�+���kD�ٖ��^�+�R�P��`Lj� /a��=n��iSƎ����[�fߠ%{�rn��`cŽ�7�QS�<�{��z�vKLU`y�y,���z��'M8j��_��0������<���gy6���7�6n�a���x����� �p�aW�q�C�8\�[��4X��p�?���{���VY�:� ����<�}�sic��+ڢ�L�W�e�>�+�ڒ�7D$b��^h+v�s�I#��������s1��g�qa] ��8}��K ���X>>4+�-��焳 ��XI�4p�<���+^�O�A��Ta8�<k��R�g����a;��h湠}ƥκ+�0��h>8��^��O�& �t\R��pI:��8�p��b~Jޗ9�67(`sM6��~VWD[��9��u� Ó<�ZM����7-.8P�����*m�8�'�������]���$��|��<��R�!l�F\D�C۲�)���dx�W�[< �]m爫w�7Q�R���n���&�^f�U��%g��8���$,��9�#��&a;7x�n�(zsQ�� 9u7xynȾ���!�{�p�N ��� ��{s��v�{NV/��������}�/G�� �`7x�oxa����o��<;lw�oQ/P�#�Dҏ�> d�0�w#�����\��>7��֣3wC�� �z7��v��{7���0�@�Bf��KF���<o���7�x��7*�xø� c�7<�a�&�!o�Eޤ<�3��%oR6��H�U�P^���_ޤ�s��e��<S�s�g�b�D�\�������F�}�1�'�����QK�:e c�8� �Zo�z�3���ޤ����7�`o�:�4"���%�!�po����B�q}m�� {JOuF~�:�l)���f��&��^�Ґ�V �%} ~� -�=a���I�e�Ĥ�#v� -1#[���P�5e�����2��Lq�6�I7�)S�b�w��<��Mq�����9��i���_����CU�F��U]��n&�)��ȥ�Dflj�9I��ex�U��{���'�����~l?U�<Xd[�-Y�,�z�6��L��EP�tJQ,)ΟQ%�_��R�d���Y拥�j+r�2ռ��ؗϕ�������"��>���>��%��1�9_��m���y)h�v~�x/���%���x�$�����*xH�j���D>��G����R�#u��qt�*GǴΉ�,���z%a�3~�S6�`���`�2`����G�<{�>�5�,�k���@ߺy]q��m�><��xN��c��w ʺ�\�MT��LWr��$� -�\� �7#���o�pMyܔYn��K���p).�g���2"���f��v{���I��d�<�|�̷��v*3����3��%�ƀW��u˄��,,�pI����y�����[��9�"��&���*f�%��'Q��� ]���}�,h�9�7�E�1�1����wp��YDI��НU�]�9��m3AS}XN/idâ&$w���p��7�T�p9���1@���/�y��� �Aځ�?�I�pMeWf��?c���=ci�f4�X��4�yq7b�����2������f��)�\"�x��G4E��L�jp�.��\�aZm�;w&e������W���Vk~h�tyZ���8eI��J\�3��y9��2'+F(ᖔؙa��ӦL�G�<��Wf�H�*z��=%0IZ�~/|��(|��y�j�02u��������d,�V'�'7��I��*��K�uR���>N��d�rE���剧vqLǝB�DzH/�*�� -0�9�U�J��:���u���<26v'=LgLMl3�jOC� ����y�Х�`��!�iC�E%2D�Yӡ!��Iq���n�%�Z�n{��0�� �rM�s�-���6����Z[1�&���*C�����.3�Q�_Zgx4��?��0��{��2��Иy�S�����'9���" k�#��%�-oLC����j,{��ZXY�S��1�D��',�=�x��7sY/��l�c}�;���eԗ��F��-�^�C5����Mz���A�Ó580~�"���L �&���oP -�;%� ��y�m�yGww��`&=���9��vI!�`�s�-@�^Ɋ�����|����I;����Wi|v��FY/颺�Tȶ��z��#�]��{[�S�=��e�K)3�Va[�,iҎ�W�g%Ϸ�L��`�Ѥx- -���d����H�ۑիa6�Bɕ=d�N�����:~KU`��a��������U+yoi�9�K����ʔ��Js�T�����R�V^���1��nZZN�4)�Q<�����L�ߒ�VG/BS�,�>�{Wis�� -я�4��9=���X4h�Ed�7"�;��q T��� - ��(��}) ������x�9���i Ұ -�"Π����PơL�Pf�L�~ ����c�X��8����pb$Xq�ڢ�P���&��-\�� �J��*��-��mc��t��u��|��t�I�}���8��=��S]�Q�.��EǍj�$h�3ެ��� �8�Fi�S4��'�F�r�Y ��5�)�*��Ğ�.�1�ytG)�c���5bM= ��).Aq���Vo9wyTZK}����Ğ���r�Qھ̢G���D���5��o�v����P�,��4�Zp����;��WN����oR]��W E���r�U?�tX��xGv�}��Q��W�K��$�3��SB%�*�m���Ǧg��.�4p)�(6���N���ׇ�6�Z������/�����a��(J�ݒ���`M�Em�ձ�ٽh����Y���D�~�1�B.m��o�� �w�� |'�^B�����&����A9�é�b#���Q,9@N�0dKىE�3U���"�l7�"X堉����x��A^�jƼ�p���� -)�d�Ĕ�dN�/WuH���%�6p:����?غMW0[��Ez����ⳕY�2sU5F�d� '!�묹�І2�3�M��(�Я�9����HK$�!��+��M���j�r\��E -��%}��V y�B��?V"�@���#���*=cR}f>�Y�G~ ���*=�����^D�g��Ql�>�9}�}�h'�>A����g�\���[1����x{�/ K��PKkȵ�E��Ѡ��#iWO���Ny��~V��"�X� L٩�#�2�ȕ-ƙ�hE >˯�j��r�ql%.� �l6��c����]K^ݡ5���̫94��1��4���<�ޞs�}��N���_A��� ��<?1�|�"xXU�b�� �hWd�%{��.�~�6��Sl�&&5�����Uʬ?6c����%~���c�bط��������D������kY%q���<]4N'_�u�k����Q�Im9�F�f.������ʸ�W�ț��0��b�<��9I�ד�rђ��*���ˊ�y��W�ʜ�3f�L�?$b��8�� �#�`9B�'[T �:s��+e���(-LGՅr�d��Ne�"�`h�`|:�*��%c�h^r����X^c��� -���&�o -q.��7����~m �@�3�����oȺ�Ri�����8 �[uu��0�mL��c:�sBt\#'7��u�|��s�w�͕�J���*�g�����H������4{ũn�Ű-(%��<&O��>�m.�L�ӝ4��y�q�Y�?�q�s���;��Qq5{�Q�N�bE�M�(P�̄�Gj�FWDb�(��7�"[ g�5᳛��|v�Ϯ��>�'�RR�������LT� ��{u̷��p��w�xoa7��. -W��1��?�:AbXsjw@���u��zqi8 ߜ�*���/�Ƙ]�9�X�D��k�����&�� +���驞)%"v쓙��q>�)0D����kI�"�'/�����(L����+�W �Q����).�')�&��if,��q(��K�k�A���I�A�|� +�]�S��N<a'Q|���������a�pVRz.["�C�������r%����f�u����ɗP�w9P{.�+yjL!0s +�bEn��|=5�Y�KW�'���WPx������gO� �t����D��'����o�큾�=�;�~qu�Gs:�%15�m������ �X���M�3X�W�J~�*y[*���N���՟3W���hV��VWӣ�u��ʒ��Z�1�Ӵ���D�n+v4���i����<KN �'��{����#�=�MB +�ͭHqI����l�1s�R�a1���T ٩H>*2���i�M��"7�*��#bL�<��&��=�[~wX�7�?�TrF �������M����G�<�H�� �;���'�p�vuz`��v�7��_7��d��[���wE!݂�z&AK�(�W�-ׂ5�_5[�� +G�i� +��v����D�ktx�}����چ0F�RP�e�v���M�fyP��iIB + XC>��~ބ1I���M�"��s��w� ֺ\����$+�&Y�n�5�&Y�n�5�&Y�n�5�$Y�?+�����W�F�R�J�yg�&0����vi�4hD˔���*��5��S�w�����SAv#��1����{*3�gD~$R���b^,z�����7�H�pJ�EbK*�)�4i���϶�z3U�ˉ3e�Ķ"�-2�K�l��H�{yf�.P^�&�`O�O �� +������e��O*ﭚ���Sn�PY����ݨI�n��ٶg[�mw���6�j���`��$�.]c�@��D;����mf�=�wd�����12s�s~MIQ��q�n��o���?�,7?�����������̌F̾��:�>���nɑ�Ӽ�e(��ď��+�Ǔ���P�8?�ŏ��T�����:@��b�w����_&//��<엛��һ��7,ɷ������e��}�r������/1~����Ko���Wn�������V �/~M&��ǿ�������J�ѯ�nt�|��=��X�q�8���|�.�����=�=8d�_�}g��%�G��k$��Ю�Z�Pi�����D��A'`Id�Ƽ �ғ��� p��N��#�x�e�a*,D{H�8�9~�8B�x��2�Ot���G�<�Վ���Z�!�ʓ� �꼡_�7o�'��W�]�6�f�]�ࣦ~ĩ����REF=rnN��Rf@j�3�,ހ�y����������� -��J�||���j[�pc�G4�GS1 ",H6��u�����ET{�Z$P3�C͜=�z��bV��0T�}��b��^�̴#0r��Bω��l�ƪJr����rV���i���V˫�ӟq�N���4�{��6�,�H��\^�e�d�s�d�iU�.��A|q��5A��*�����F�"Y�5L�&���uQQ79�ТR�:p�a1\����x7�߫zXZ���R�W>�-܊3�ڴ����ߠ���Z��;�zΦH�Lr�UA�Y�y2Ci03ϴ���"N��*2���L5}%x[�@�>�ԭ]�� �U�����d���ޗ���S<�\�+�.��}I�4#L�D�%�:\����,5��� ;Vx��kc;��j�&X5K�6ʘ�Tk����Ԇ�Kq�y�+�OѬ��Цi�l9L�����O�Z����h8xthXT�����R��r�!N�!b;�&ׁ1�3צ�sl@��(տ�}N���I����Sy���}O1�u����cR�e�#�2�ިaV��P��.3F |��ۇ�h���|Ʌ�w����T�q�*��+���=j��>Z�1���B�V�&�,�tO��C�2w~�Y�A��S�M+˓��r�9�ј�9Yr�O\�B�(T|���� +�,:� �>� Dk ��GOK +�c�!�zԻ;n�94\-'��b���Yhh[H�y�����1|�lY YVM��̊}A�`�O�ƥ�`��˰�H{!W��tf���!���O�; �[�u]��O�'�n��f��cZg0�r'Qݶ�醂���I�<������c���E��8�'�6�[m縍���wܭ�!�P=8N1���l��c=tD{��U-N��S)KY���hv�nW?/ƙJQ�O���'�+ӧ$���a�n��r���q�7�m�Y����<�`,8���w�����&|� +��M�#�+��)�&�� q���G�a�Al� ,m�ޓ�,����E�=����CxrO�}Ϡl^\�eg,w*U��#�&�g�$� OÃ�$E:�7�I��{�0�I�[����[R-���:���8c/�z��M�"�Ľ����Z�n#��'�>D!:����q�����S~�`���F��n]��XY6ȵ�l�-�S<�T��:ˉ�ψ�������U�D��{9��A�:�9�;ICS&�(�A��t��G��L��M�:�ߦ{����4BD���I2ۻ��rA��q�v��n�����!�> �{H" V�s_MI�e/����T���)�'��}�iG�T<��sP�0#�E��[.o��s��+n�|D�\����#Z-�y�O[:����@M}C� qn������5��m�[�`Y���h�C"���� c���c<[)�Ȝ��{|�c�j"6���ʰ}���ZL|tF�;BV�����S���S�8o���!+*��-���<E���(�(���D�RH�tZ�T2\��' ��9��6aw��@�a�"�Y��D�n�S��{�TR� +<3�M���Պ��1�G4:x��dzz^2yJ"ʗh#&��Gvd��ɀ�'����ba�1�L���I\S����$�3�7�6�uZVr�O�Z�[��G2��)��D��f��� �D�!����=����$��x�r��O�u*N�<��a�?v;nf Jn�x9g���JB,�DŽ����a���d�!��ǩ�;�� r�u�����d9��=%��w���ݰ���! �p�^��u�\���1�(�j{n^�h�.߃�U/һ+��_� ,�<����B�N�[���[@��w8Ǡw8�gx<l�)삷���4ǥau�5��JZVe�'���Oq�����wa�=�ٛ����6?zn�`�r��n���n�}g�q��>e�a�)��<Q�Z����tjP*d��` ��y9��s ������5pJc�TE������o��. +�� �]C�9�&�8�(rS�G���7�*�� �5I\�PV�������T�?/�w=z>^�H;ήy[���4>��c�-Sr���%\CO��@߾v���� '��<z��L� #��*!VB�MB�MJ� ����GH���<ݽ���$�����qo��H��:�aX7¸n��%�|��dw��O�xFƯD�p~ W��r%r�x��%��Y�2Uق�2��ZfhO���ȝ�����r�v��a��g�Ƚ����v��.9\���;\��{_l�;H� �kG,��n��ɵ�J�&y���&ɑ�u�b��W.%Ԫ��/�Y�l�}{�he}�h�����t�~�_���G:֎f��/W_Z����:�Z�� �~�&Z���X�h�y���܉��Uk��xtr��v�g��;���}�C����/LE,��6�)*JY��z�{ѽ�A��H��y�b�i�� �A���A�t�A� �w:��7˘����8�ۏ��I��;ا�����x +�� �T�K_SF@ÈK��|ګ��s`���d����� ��~��Cm��_���C�ݛ�@��'�"!.�����'F���O���Dqw@r�2����ovx�E��EJ��N�NNi���t�Z��;�Md�x��\�T���$XR*2���H�E�N!d����.���"��]������-�>by�ք��y�O�7����h���W���ԙ(aM��:!�,�e��S�b���>�����B�w��$�.��6\��lTŪM�� �r2>"O�H�3{����c_(��2��Rڼc0���KL�t�y��Wz�ً?Lt��1>l� ѧ`�"�����P7��Ɖ���)� �����]B� �Ơ/e�i+���s�x;�*�-�������C`?췘�w�{+4O'a ��5�����u��}�E�=q�g�oQƞ�������[��Vқ����\ŗr�C��v�]?��n���q�L��.Ӱq< +n�?]߲��:v׀:Ns ����q���^�I�gwy��������<&��� 1��UT���:Z,�B�R��9�L�Y�@2 2�A�\����û���D( +�����fnz�8�!�����x�WHS��9�8gުq�*ᜂ�r��x����P��\�g� ��p;o6���;x2��}���to�� ���z����%����I#�N�/��� �%����#=�Q/S��Y'Y8;��M�8x2���Rn�_X��8�M�r�o�I~�@j':M��FB�'�T�c�"˸G�,X�6'-�7ȸ�Bi� ��t�� ����s�(@��(P5=�U���n��d�gn����4.샱�����d�xnPt�s�ikO�!x�Y�0x:E�KxEX��Ly}�����W�n����0s��#U!�*�����Gxt4M+�V����D�����j{����k��t,�m�Ǵ���-��C4!-fr�:����Foq�?��� �F�e�(V��)(h0���N�26��f�-�7���B��f'H�<8���V"��1�����}�C{�G�"M��(:�����}�ىb�O�A��b��}3A�bӳE�YFx��9�J�d%��g%#�J�V�ѭxV�d�p� ��'d$r/W�{�'�U���H!o�҃�i��<Y�W���쭖�7���=�<͈�\A�ժG�q�=��3��vW]�Qns=Ga��:��%u貤��� ��_^���+i����e�,ev��=�!� m����}����l}\��p��;R�LA�8VɱBJ0:����dݼ^����lџ�`:ٚv�h�9Y��r��-k��0[R9 +��7W��4E���+gQ�}��9��ʉ?�U�Z���<�#Ӂ��6�����#�t0=�L`m�p��l��_#bu��_O68�g^#��+DU�M�-��?k�>C�:/su=�<��Aܽ]��\��;ȑ� <�쾊� ���&�l���0?k8Tf'�U������%t��"�'S6g�d2���?҅�p��)�VI�f-�zl��3�)8�(�����+z�<�a�Q���M���|�<�?�lKXM�� �]ue"�8SzI��%�w�{�Óy��y�����m��88u@��H�]"ҿهq��� H�TLJ�n���b��r���([^o��a�f�.�ʯr��E�<D�y\���@n��Zøk����@�T�-+S�i���� ���u�(%�vG�ל� �C�a��D'+39��$�x�:Y��fv jvt%;����4�?ȶ���@�,[Q����/����I?�Z?����^��*�~��z|��� WE��{8���8̳����g�ѓ�K���\���v��{8��D'O?8��Јf�ps���P�[*uuL��(��f8˸��n)�����>���6)�@� c:w�<z!�.<��\Jpg<c��f����F����X�p�p��O+ɰ%�'�D��P�q������V��)XM&�v�������0�ς�`�-����ي�dT��ˋ?Adk��g�P&c���.�$ڷwG�[&Q��b�p��Oa�g�wC��h�1�p�]��D=G�(�۱���}3s;~2edƐZ��������a�3Mv��/\G&�%��cq +.�qh|�a9���fҜY(=G�x�#��s��SJ �c������yPq�Hr��� �F��$�r�B��K�.k�,\M�ͣ��dS���Lo��⏯A��C�?�������.��!�����^���PԲ��$���Q���ֱQPHa�Oپq���S�[�Yo�� +�,���_�L������{����a녷�|��dLr+FZ�{�A�#��W4��*��0�L�W�ٍ����c�ɶ��O�f�O5�d̳�������Z�8��K�a)�Lj ���?WL}�������I&6�-��My� )CM]�R�dܻ�D%�J"Udm�E^r��1��L�p2��a� +������[��2�C�CR��p;�d�@Q��ԟY��.��N<�m��9Y��p ��U����B��J�����Q��F��|~w9���ɤ�_�w����d0�&��)\Ul��h�T�l'|���KVt������!�(�A���ڡ��#���o���ůf�[��F��©�k��r<�Ih�Ju�%rkPv��� 쇷�s�_���r2��/��p��hq7�ȷ�9����n����}�\n6�Et57��r.��fN<���3��R����j��б����9t~�C���dt<�S��B��{�?,竨w��.z��Ϙ:�rr �څ�7�p�c�OZ?yȷa>y�����_Al�O?|�Û�ˁ����8���q��E�����[���I�>�����ߣ#�!���x�&Z��|z������~�����^�eH-.<��K���r�;Xχ]R�`���K��z����~��W�/������縉��z��w>%�y����%��|�_���G$]�(x�2���x�\���*��'�$�����X2�F�y�$����a;X���Sʋ��p��c��t����$�d{"�g����m6��) +�Uq���|{��&�`�JTLL���0S/d���C����q8G�Qp���p7Y��9����r��߁�f��s���d@i�锤[@%�06���M�ҍɇ��ȭ7����m4\����v��/��m�G�`�EwZ��QN���)�Ҕ�>J �������/�`xy���`�Fo:�Xћ��Y�8SWJ�d1ލ���E�xq����4�� ,Ї� 2 ��JVJ�?�'�q4��D��r�Ɨ�[�����`4��E0�K�$C��K)C��g�MK�������ep;Z�M/o���h<�q؏������f�f��Ńr�7�U�#���S�9es�h�����p$�<(��g�O�F�T�}���ͩ鰏��@Q�/�zr�����l��R�����sIW�q 2G��T⤢7Й�C�u{�ڧe����$fX��#��\�Q�:�C����ZeR�_�W��KE,n�f�;72q�����E��m���d�r��VE��x@H���fb^v���%�{���V3��7��~��������"?:��]��a�����+�1�R�ƀ}ŀ��{`;�J���h� +Qc����p���ֶyksי�ޏ�p�����Z2�|�^�+'�;�݉� 炞&hd��}��1��q��$����h*�ĸ�� 3�b��5jA >Sp�p(lv�m�Y�Y��������8�q��p.�U~��:E�J�v����˺���r���������-�ɓy��I��NC�c���=|��l�6<��$٨�c���I�}M�Q�k��;���7��d���+��p�g9�yO������ m��:���lNf3��p�� �= �.�m�c� ��V:7����dŰShc ��h�A��2e��) ?�&��Y��Bat����?J��1�����6l��M�S�nFS���d.ڷx��;c�f9�w; +��1T=i[��B��˭�<k�������J�C+x����^y�y���28�'-gϳ��q\�#L��q�ά�$='�Et����tOӽ1�$�����[���������9�3 +t��v���:�E��Ot�Y�o�t����]�@h]�"����ଁ.�tt���AK���>[�!'v�����ٕ>f�����pN��%?UHA�-�dV�!Z��b�*��^0&�V���$'A� �mHΩ�*� O�óu��w�s�c�@g�@ǁ���3���bb�<aN9���K/ҟ���|��6ЍNt��:~������c�t��E�qkH��X�\��� ���"��v��av| +�����5��e�f��a�8�vH��(RONp�:qw��z�w�9i�Nsr +��0xr�<�vq9� �S����3w�rrz + ����vj�r�I:�q�cx|Wa���ь~��:�#�x�Ҭ�@��!�Y$���w+���L�S*{�6r�"�7�s�.~���>��d�^���������Ƥ���I?N�1+��d����~9סi���x�&Bȝ����yN�)М"������-���7���;ð$Hf������6t +y�s����[�B�Lvt���ـ� 9��-���@j9l +9q�8�1�8�E����vtn�v.O�[g["j���er a���ˈ�����Q��8���"���\���ǘ�ϣ_��n]ͷkS���i:�q�c���~i'�J0y^Я� +ͅ�f����Nq���j{�,�R{� �y��-�[K-s�L��xeg �=ۢg'�[����a����ݻwW\��j��W�AQ}c��>_�_��`J�p�R�L�d +�2��9��ؑ�IvԎI�)P�6�H��4�⒟:�r�e���>9[l�9E:��B����o���`8O�/Q5��)u�I�:5 +�W̸U�p�[�x�^)�S���s!㉵:�.٧C8�pFn��˒�XƻU�P� խf���j����_�.���-�S]1`ڞp�ī���O��n_���0͉���+����|ޭ��;0�ıC��v�]?@b��:v��ȜD�x.2�ʙ����\�� �#�b[<�Y���%m�h9�&6���A���(�·��c*�.0XO��ޅ��m8��5��W��;�xh?���V.u,.Y��}�D���]�b���a⎻:��%��î�W����?ɾT�zs���W�z9�%��O����oc�3�9�7t�T��X�s�V�!����3/���9z<G��jv��6r�+��[���#�{��x��!\�q�%/ ��O�"|�@�:Z,����\G�!\ﺷ����*:Ę�N_؉�Q��oO�ғ]��2nzV�E{U�*~<�bڨ�É.�r��3mAOo�~i���~��Z��%Z�~��M�����B`����1��өqQ�Z�0p̴���-��������~Y,�c52*���"�?�� +�=R�ˬ��)� ߀�q�_ +�U����]D�l���m�Βl��@�F�T��o�r Ӟ)�8����a�Z�ͻ=ډ��^�"�t/T]P�BcmH���lnrJ��^6�V�?�39f�u3���^�Q�vl���Y��͐/�"s�V~��EN����Z�`5�J6|sU����R��Kg�/��2�p����L�\$�OH1�"��.{�E�z���{�K�y�̒��t�~_�i���T�y����W��̞��hBg1�!Yq��<%�6�Uy����l�?k.��У=̝��tP�&�GaM��5���5dׄ��)]�����a��EB�.ˀJE�eI~|��2�,�0�,����f������$x�k2ɬ s�����Dz+�a��X�D>�=��^�����7�u��5���7��M������#_��gx���S_o��έ�Ru.%���������7e���ʙDy,�D+u��(Z�^��*Z�guf����o=�u���5�\ζ%|�dIJh�b?�$��D�P���SvDg3<��ЙOmt��������wF�Xgj��8K��,��Ɇ���%���0�����7v%�\�k}˪V�W�{��42% ��x��.������+6���6l�B59��ر5�I���19�Q��m����O�Io !U����\A���ː���|f�h��J���}�m�+��e��A��W�KKɟ�M~%���|o��ѭ�ӟJΦ�o"��f��ŃK@�и4����F��ɻ4tV�*>�A�/����`2��3~*5r��՜W:��y���PHh)awf��lc��$�.O�#D&h���TI窥������>���7�n�7����8��.���0^�go�U�c��h�il�ƀ}ŀ���k;>Iv����|&ɩ���n[��O+��� �3����\4�����:AשtN�s*]ù��if�c]+�ϓT�̫4�+���d�M�����rgu�B��@� +�@�:�5��L9}0J9d�`*l��L��J7�����a��(�QF�f�թJ^��pu�>��N +�`-�������-�ɓ�P�伉��o'�� ^��G�sV |[�e&e�M�O�2�g,�5���V�w�d���+���9�\�7*���u�~� &]�3��!�wUԜ0�acEdс:�j�C�)]��c-�>�ն[�5;Ǝ�'���~�� +�6����9�v0�`�d�wO��q�2wwb> l���xY��ߥbw�lu���~sx�w�����Q@�w�����EP2�_��;s�r�A'3�h�LՓ��u�Sv}���6d�d���3'����P���y�y�y�?�?��qTr��ꙓ]�H؇��Q����O�9��٪�h�Dk�"��n�N.Dy�B�w +!�$�1�� S�$/�g(Y�a�}����Et�!����Ft�����sFt�1 �����;D7��C��#z����)=8����c@��D8Dw���(�ZJK,��Z~b�[���UI�`¥��&�N!��d��� ��Bz�N 5�LR�?D��VL��f �f�<S��rj� `C'�9� `F�a���1)>O!>�5J����1֝!f�a]G]�:t5��# t-�QQN����&Z��x�E��7�������S ��\�_kRb�o, +Fa����;L7����0=ױ���:h$N���H��7 '(Ƨ(ƪ���^#�ezw�^9��5'�L���'�^&'�8LJv�����äuLJ�)Ē�J,���X2�v�?y<�ᑛV�NXqV� ++Sw{r� +�S���\�3���Aaj�A��Hp��(�������S�2�T=���5�w +q}{\I�.}��[�f�o� �@�3Ͳ����)��Q�>����q���������w�������N��t�h��G@{��g����Ґ;��fU��y��:�/�:4������M��p����,H����kI=a�?�_��0�G=s����:�5���ޭ����u +_Or��+��g^�V1�s��v;du�jYw�u~�z�<��N9;\ ��T�=�c��`����U��X��;o��i�<�:����Ed�{������F��V�2�V���@ƁS�-��)�4�f�-� �<�%\�V��|�>?���1�u� �:�5 +���q���)�?�</�m�U�F��l�����`�����YU��mPl����� .#d�o?!�)JF������l����n��o�����w��]-��]�����S�_�?W0���e����'F�?7�d2W��dN&3*����]2�H��b���)J\�k����A~�~z�CgW�¡�Cg��l����]RX�S�z�)� +� �!�F�������K�F2=?Y�k�� �A��\m'�8�Ǩ�3���}t8��<m�E�(lK�:E� +q��%le�� �c0��p�Cr��F�|�$ϒ�XƻU�P� �sF���j����_�֭�"�]�T٧��wNQ�#;N� �����s��9�_0v��!l�����4f"��L4^�/��v���Վ��ɯN~u�k�Ȝ*g�:�tVi��Z�Ѳ�%1�h����_҆�@��j�E�b>Ԅ�]xx3W�P�J0Z�%;����rB�� +������g����R�ف��e�L'5i� �Q���f����˟��R�v[o�tp�3����Y����+'7��E?I�ö<"F�n6X����o�eCT�� ғ�UF��y�H���.s8 �`%�&�-���H�%y^R`����j�\�.��<�ϣK�n<��z����4����8�ߍ��f���k���|��e�?,�L�k�y�a79��+�Vr���s�C~��M��r2}���~㚒�ETc�U�l��i�,W��j�c$}��>D���M����R&Qfi +KM�C�A��e��G���~$[e����lW��1�83�x�JHb�i.��T�����I��i(5!���f�&n��D'��ny8�1�{�>��h����b4VC#9�b�yT����+�x�93+GQ�!��Y�#�x���!�g�f���p�翹=��g91H�-�;6��l��߿��?>�ﶛ��/���vm7?�G��{������������t{���%z����z���g���g������$z�y�����������ˋY��8���ν����l��a�>G.Wh�櫐�//HrD�>)��>N)�m�32�ۗ����Pr�n��?3B�/��g �����KƘq�F߭�Û�糆ſ�꧋_/����'<�)�p�X���I�_\��{��ht�<��b��bxdg�}t�������_��}�����������_������h��7:�!�C�ᑭ���!�O���;��.�<<�ߋM��@[<��S8 ߓ���X4"t�^á#/|� 9�%>�ܩ��{����2���|f�pP�즽4<�ɦ�N�o�d +��%o��� [��Ϛ�����v��v���Z�����ʇ���:�{�1.�O�A��O�f�z�ى�N4u��K�r�3�Τ;��9�!6.]���r3���Ŀ\�E�[�_��!Z_��b����=�0[.>�f�eN��7u���*��bD�D\aF�#��5ۂɜ.�Aֆ�_-=�H�� �h����e���!2�P�h{�Jl��d�����(�L'�0~Dg�w��L�⢍B�/y��m�O~��7I'���������?|Z��|����� &} L"[��Ɏ$��AnX˗b��7�|1��ϕ�oL�I^:��4�� �$�vT�nG��6d�v�G��vmw���r����r��e���R��o ��yT��T��`�� c�>�pC,j��k������+�1�[��|�CK�Gܦ�^��AL)Iz��yQW��^�A��nk|7��9�p���F��/1�M;`\������air^�>u%W6�F�ס��S���N;��$�E�˒ǯߣ�+���&,J������$+0ݑ��~��s]�3�Oot����+��:2�p\�Yن�J:hG��ƣ+�z�Ǫ��f�-A6(gV�����2�A|�����M{�:�/1�~���he ey,��b�ǎ�I���x�yd2�oW�!�x�� J��7��/^-�W/_ަߡG�}MY7b���r�q�|�P�I��n�qi�\���d�12��ȸ��q�v9��;ƶ����ԓ����<c��7�w3���I݅\A���$`}�>)�m��b���`��G��=���i��`K�� xP�n�'l6W��=Zw��ٛ��/��wa��!+H�+ݬ�5��QB}�{��pb�:� ����_/�~^�-���2���{\xdK���0�i1�yf�n�sk>�[ị̂3�yl�7��j���aPƎ�A�g�+�љ7� �=4�hN���T�4�$m�<�j�Ux�2�*(`WA=vEM)�h})�})������9H��؞�,MI�x���d ���dIx�e�r��݇�m&��n§IY��`B�q�i9�ƽe��(���l���U8/3 ;��X6Dz��,�l��s��_vb�ȸ���������o���x��V��W�g/ٳ��g%�����k���.�W?�Nv�WĪ��ݽ�z�Y�H�%�� b��� avI6�|�5��n�lA�S�I˰,��e��,� �g|��$�V�^_x��Pʰ��ƤJ�M���F��h��Q�m�U�^�Q�s<P\:����G�W�����j�-�C��0kأ-�(�G��_�d�����!������X��h��F��#�����<̶���r�fq���GW���+�ED�ZB�g ��Iy+֣"�LR���T��mG<V�ISXƹJ���Ϩ_�:X���3[�g^� ZHbK��._��7��� bDB�����]��k�.�w��$��X��3Δ0�V���1�*�W��}K�o��5��1� �BpЂ?���f1�p���/i<o�y�����j8(0t2}>���:{�%�7R3�z'Դ��vK���"z��K������uh�Z5&Hg�(��ο +a�.��� /T�邀?�ɡFzt��렳�""�-[3�z��U���V�4�,�n ��~%>TeU9��70zeR@j���`��V$���C��B��L����N���v�`��n�>�&��G=���y��e!�L�$�B;f�1��L%ś�?X�?��j�E�jXdgM��GM��� j �w�^�k��7�<�w{Nv�d��}%g�6Eh�3��̚ن% +oB��OT5�/�#�� jT<Mf8��@�_v�}p�����zG����Y���8�NIa���a__Z�߿�Tf�0l�Iz��i$�˻�2�,V=����o<���y����ʼn׀�Æ;(w���w���;���]7GZ���&���Xڢ%0��^�>�{ğ��*�P�V��!}3EE���s� XY +�:�\�Nw/�'����!ݙ'O���I[1_��,F�gH�=�kJ_��C����Y�5m +�M�GڮԤP��9,����4�J�d{u6�Nyf�՚5�}�����n�S�S��A�� Z�5q�Q�ذk#��VF��VC�3=j�*��8���e� F�^����8��Q�}9�Vh�>:��X �^��j�'nl8�$��%��-u�v���2~-ؖ��V�����������ŕ��F�Md����҉y���a���ܩ � ]��? �u�KOpSq�\����#fT�>�5�,�k���@ߺyM�ӝw���#t�7P�9F?V�O9�$���q�`*�?�W��/az�o�t����~���E-�����x�yӆ��&1�� BȐB�qC&�a�ÐG�!�D�! +h�{谚(zі�A�MX ����OJ0���L|8���ѫ8%���h�:5��J\�i�BL+����T�Yz���xt(�Г^�vd3%?�ߑ���T R��x�$7x���#��%���8Ǚ�an��#�תxa�+;v��v���/���Ӻ�S�l�\�6q�k8�R���5�$�)%N�Y4�j��8SkQ�X#^��!��$R�ak�$�X^���*�����#�&z�XjDO��?����N�ַt�Ev�1B�D���J_��,d +�ֺj��H W���'O(ڱ�L.����2�֡�$!o��t�xZP%1���aaV��Z~�k�|�,���IC#w��_U�&�|�����!J�!�8����n�1/T�m�f�e�v��ci�FÑ� ��N�����Am%�.�����A�@�=j�<�����fN���\���w�^5�>�r�g���e���|�w�'��*�O%t"��ĥ��F�:����j���\pͨ�ּc��αNgQK�n�3�_��s��� �q��V���>�Jj>�M>��Z�����VC�bdՙ�}t��zӁu�� ���h�����HZ��vU�佢��I#g�#����� ��k5�W5�<!dA�B�@�7 O-�>]��L1�vlU���D� r��8R����UJM��.-�V\�m�8���SA"�i��I��t=�&�F��wN��(�e�e�r���EM"�_9����3E,L����]-�ww����h�ݭ���6�kh��}�=��C�C�G(F>iW}��'�i,5�x����p��j� b�-b2|#T�C�0V�Q*H��{��n�u.�'������V���[?���:Б�'W�4���2���0�����R"��$6��60��N:��pJ�M +0lR ��D�p�6�3�-pbh���%J��7�ƴ�R֙�+�a�p�>4�6�3��7���D�ǂ83����iD����\q/J�Ҳ�o���8mp��0��TP��)"I�|Z��S}('�f����j.�B��q���$.sm�Ghu���Vٱ2��Mj@.��$��g�n�_u�q�Ѥ +:r�&ٙ��.��ӧ�5q��)��N �^�,�����r��L�1�q��{���O�����O�^��6��S�����68�V9h���*�m��o'y!ɏ�S�~2fv����c'U,M������\h�����Kw�:�"ˣɫ"����љ�w��:�'ǹ;p#,l��K[���Ub�`�"���%�#-�$�q!#̉I[Rf �.d�AM��q)��'ڂ��C�u+�\�Q%H;�T ��.�����E��U B��ǧJ��mW�`�U����Q%(5�J㢒�l���xV���T����*�q_}��~ ��g�$:�[��g;�.7k2��l�^><}'��Bg���I����$^4��a�*p�f)٪���f�v8�'� &�}��W���d��ŬMz>\�ϗ\#������YI��v{Y�ǠoO��W��9_ +~ �~?�?~��w���B��A��Y���(�u���㱗穙�{#�^0'�1#�тv9;�8@��v�, ��ϰ��}ur�J�E�?7,`��z�}y��Pd�r��pNx>��X�+���C�&/� 8E��C��0����ps?�i1��� ��������4�G�X饱�]���'PG��� �0�Z,�eN��x,3���n�2�a����$ɧ�:��o6I�� ��fYg��^qG��pu�LDJv&�rª�uH�d�_����3�Y� +E���������gt����8�����m�0G���!0�E�ka�b���.,�-�3F��� +���Y{p�y�"��j9�J��+)�_��Mx��jˊ�����^�|Y�*����1����$�'L�q�l��Uh�����6��Y�uk�����rih�R�����l��as0.��:k��ag4O+�ު���K�6X�%�a�H,��E-y�ިͧ�� �y���U�$M�p�y�a�%�b�5Gz�@=��&{b��qb@we��j �-Y�ז�*W�em��#��tDA��٪ +,�CG�3bB��U��l%� �#����29w 7�.?͖�r�o�s�b��>��}�r���w������d���ִ�i9��ޟ���u��lq�W��]>{�^d���F ܋+�kS�*���A7 �O"�2��/�I��O8З�����,� ��/pn%�!�I5h(\V=�`��qKd��������&�tF���9*���5N�M�1��=�^կ3�.��)����#)Q��G��T���������{ҳ�ڪ��|MT}~��T}��sbU��N��/P�x��Ce<,��5i N`�kդ���ֽ�g.7�Z�l8!�y4)�g��فH@>U�'���&L� 5~P��Cg7�# �Α�0�f���r�]ڏ+�P�$c:�h�2����:J�^�@&��f�ʵ0_C d}�~��w���^���̶jF�Ww�� �H"�����I���3�����ع��ND�$"HǴ��;�7�c�JMHqrB9A��z_���� UvWk�}�J���?�Ʒ��]3!Z�"cҪ !��[BBͩ蜐���(�n4:B��� �l�&$�ǔR���LH�Ԕ��-���P��:$$��i�R'��#+�O�� q���{���i�����1O��V����&���:d����@�k���7,U�-�/A�F��`j:(��ox���2~r��%גS��#aQ���n���v��#b�CA�R����T��]vI�]�xD+�RU�*=�'B��^4Ŧ�Ę9fT�<G��)k'9�Ȏp���"�F��Nzl2PQ���F���}oR�A���%���Vo��AɈ7Ļ��[C�) +��)�d|~;#昛��X�8pa�8qlj;�ŝ|�A��^��w������1��O,�hq'ĝ ���2 Bp���m��<�p3������N4N��0���̔n.�vȚ*d�� +2HB��a���sZ�4�7�{J��F�5�eT�f�[�/��v�0C[W`�� t'ͽ�����*�?|����)�dy��4�x:�y�Ȯ*�NVw�{$;��@N2jЙr�,=<v�{�)dz�$ i�p�=�NH:��n��%1`�QoO=ˏ_�e�C'�h�5BX���D15P��=G��5e)i����Ut������Ѹ�T�M��Hs�X� �;&�tѝ����iֲܺq�T?��`QEK2���(��ʗI#��&:]�T]t:U\����R�5撜M.&4f���� �A ��dǛ�#���=?Ilt�w�Y���=�,&�]�bMq �s8|���e� ��*x�}t:�ׅ�� �r .���a�]9e������������61~�]Ц���Α{��S���O�t�n/�0�&�}�w�$�d�"�7G����yS3˨�Sm���/Ug#���c}0��#F~���O�>��U��m���4M�!v���7���d�h�h&�8L����4���-�?W�����n ����[R��J@�lg�V�dT¬;R�$�м2�`!��=tU k�6Ɗ��� +��($h��|�=� ��ʼ�� �F'8�5��?0��_m����r�N �>�R�˷Ѭ�;m������6f�Vt�"zO}�-�Ԅt'ႜ�3.^0&��v꺦z� �� +�,��8ԅ����No.y�8�9ENV�S"�p����`�e�«o��� +�[O#a�Q���ӈ�+�+��J�s�!d]�y%�۲��ܝ�p���Rx.<��{���D0L��/;���\��k^�g�O�<�`���:[���oO��w��;~����bVڮ��t�ܠa߅��5�Bצ/�͢_9�E3S�xG���{ޱj�H +c��G�ۋUg�D�/?��p&o +%�{��5�ֲ����W��kZ����^~E�� � pe:ݏ�|>�����s�t�U9!�V�P Hb�O/��o8q��8P��Ĝ|��<N0��f`%�M�ՖM��J`� K>�*W�%UOMc< MI^>���g����|-c���?A�8>[��^y��ft��T��ˡC� +F���NdC}ƣ��q,���:�^c�|x6��L^o��ZnӍ;���;���p'���77�Bn�9��Y���f���-_*Gv��̒��Vρ[X2=�Q,��.�$�yo +�yG�1HhZ� +��������+�j�x;�[�ؙ�d �c��� +c��#\��$� 6�,7�r� +��p�Z/$�����y\yDr�h J�Ŝ��X?����(Z�pM'0.�P�,*�F/^�e��e�/��a��Α�3��X;b�D�+�>��sҗy��[�F���t0�|��j ՙ�),������rC�U����5�}ɽm�TJnT*����ek��aK��o[�I`Kف>#l�c�'Ėu.��p3G�+ƕE�6Zmw����7��Jyí�JձvDY����]_�)��QC�X��������@�&�lR�*:D�.)��_t�� @��b�-�ޓ�7/�˪ZK��fȷj%T��� �&�Lk�Η�C�CK�=�(n�+� ��b�K(;�P�:�p���JV���ou/��1lt/H�N�c���O�#��K�ʷNk��Sm>/��D�]m�?W���'���SC�V���&]0e�U��pF�cj���H�9�HxI�q�l��U0�w�K�C�3���ph\�~��g�嗥�K7�I��J1�E� ��hq����ɰ���TBÆZ�m�j��W���I��C��<�g>��$z~(�|������d"]n�@���d�m"�8�~0�ry�R���nYX}���Z��A5p�B�����@A_K�oƘ���],[����c�X?� 7���z�N��ZO�i6zO*d#@:ߵC�F)����g��J��F=� Ԛ��/ǁN +������X!>�M�l��f/^Ë�t�F�ܼ+�l�@0�]1����`?���ƥu�C��&�4 }lj� +먗�D��a�_q|�� !�I���-���0��e�t*��ա��z'� lᜈ �l�5NIN�1h:�m��;fH�>w��?�����l����i#���k�� m�*6� ��e��@'� �"��lDŌĘU������:�& � �V ��}j�=b �1��T)�5����?����'�����{U���6����~��Fz0�9R�,Ш�^fQ��ƕ٩F�=��e4(��)`R14E�_ +x}c��`��C\p�b�V��%��a&��mE@�g�W 2YS�Y!�j�R~��t4��4�/��,���1-?���䰂`�%������� ~>[&?T�c�9���Swt2!�f3�'��`eҪ%��s�C� ��P�(�n4:�����l�&<���R��`BxV֔��-���P��:$<���Ʉ��e�ZPv� |$?ً|�����yډ��=�x2���\<o` 4��u�'���)"c9o�~J|�G�bT �B��KF0���2�M�O�SO�Ԛ�a�Oљ"��Z�LD¨� `9�sd;���A1���V)f�����8/���.{<;"��*l�GZ�r9���tb.�Ĩr����NT|Y;�� Mv�&E,�q �md�d��)ElD��&e ��jK��![Q�i��%#��b��bDt �(IJ��q:��ctV�c9�х�� '���a�Az�4Nz�b�"�gd#����?����]�6h�*�>�i�n����멄ٺ���NE�[� 9N�1)�L��n�$0G8� �$�8��q�6ٝ�%�H���{�D�i��ےh�e�<y����l�34�uu�����y����<�=���Ç��[���;��N��g�~u⢧����������u�yH���l�d#��)���#d�{H�|={�Aґ��=�C�Oஜ]&"�&ճ��HRf*2tN��#�U;y��]q:"Ʈ)cѸ�]�ݭ�kē�G�6$��Z��K%�x:e"J7���d:\�7�7��QH{����.�3��K#���V:]�� +`u�8���}��r�!:�.Mh��+�j9���]��3���ۛ#��1??Iw�}�Y���P?�,&`_�:Nq, �s8ܯ���Ŭ ���*~��t:䯀Z'C������J���=^�/�)�q��~u_-c��]\��)u�#���� +)�+<�`�^�Xa�M��4��y��H�u�����fS����S#?��vj-;K_:���+�r�����|!��ۭ�"ͬSm����p���|�;�����#��`u��1z*w;�O�.|vx\�n��p؟s��-�m�kLKw�j�$��W�0��[����*a瀽���8 + +'�_r�9(��2��Fx<�-�P�X ��| B� �Z=�~y�A�z�����hV���q������m���+znէC���t*a���3��^0&��y�2�z� �*�,�Ӻ?P���No.y3;�9�~-��e��]�%��d����683n]\<��G�~�N&"OW� �\�+��̵cF���Ҳ}N�h4�N]�sD��e�0���v�I'ػl&��e���d'����a�[��*�ݲS�~]g��U7�A�Nݬ�o����x@�Kۗ��.�4��p]�&R���4�%=��^��46!��}�Gy��;�NIaP����~{Au�L���6�c?�̛������'4��ˮ���?��O5���Vk^wÊx�)A����t#k��ڼT������D�Jsq���j@��ԛ@��,� ũU̹��O5��){VR���W�y"Z�y:t%���aO�s��ȮS���7������A@����}`۟ <z筍�Ay���tۂ�� �C�z-��s���'�L��.�p16 +�j���A����i�zC�Q�x�~�ib�#�SyB�Y;�s�(t*�sʟ5�rn� 8��5�d�@.��)xM<ʅ���(/d�����[��x�q!k���]+Xs���{��5f��n�eƄJ��RP5{�A�d��A���ւ��7�ۉ���.�T��am��j�^z0;.�w�!Յ��5��s�n`l�ç=�wQ���2Nc\�2��U|�^��oW�� zː�tY����#��t�w�z��W.�3�>^�$�y��F���%u0�|��jQ��3��YV)��w��d�.� 6��kx��{�ؔ�}��>� \}���Ü'�9�~�Ql�'�9e���0G�{�s�!8�n�����o��h��S���4�7�m�oj��;��Dě�Z;�y�X#��,��OjJ��|�F�q�5p+Ů��9�^7��AN�RL��{��:Z�����M�i�V� +����k�θ�|��SAڜ����� �� +��,���˲s�ŭ��x��R��7�A����F7[ x�s�����2ÒK��ms�"=`�ŀA�oW���\J���#���-�²�L����0F�cJ���H�8 |xI�qHl��U���_8_������h�~>`~IJ0�t��Գ�IZ�,�!팖����� �{�*� �$4l�����6O��560!�nHf��������EXϼ�0�R��b�L$��@>��&{f @�Ɖ�"��K���'��o�b����֒���@�3 +;b�}-�H�C�B��6U��l5k�+�������f�u�o/��8�T}yI���=;����/��z�w��Wjd���;'�T +G'��K�X��ױB~~4���pu�^�#l�4j��\�a���$��aj:���%C�W�QIb�p�/}�I�����Ʉ@���8�D(�⤃z~�VOL��e�}*��n뇚��!�s�DL�����8=8mƘ�/t�տ;������Ϗ�D��u�oS��gڢ�/�C��I�����6Q��5�R�5�ΉU�8:��@�HhXe�<,��5i �=ȵjT�W�X +�^��U�16%]�{4-��]�OHa�>�I���j� m�n�p&o����#�a��}�ջԯ�F5���l-�qrX�W���H�%x����(��u+h��e�[���Z��� a�UC +���Vod���LFWd�$�qJ���H.Ҡ���NT�$*HǴ��;�7�� +�@�'/ԓ��'4�U�k��Pe���UB��\Љ��̈́�3��I�V��ǎ u'�{�BB�������NX�.,p�ݚ��TNXHHq�BSaAXUS��l��B��ꐰPn'��jA�|&��d/�_��Ih#:��[����D�<�@�b��c?�C�qޮ���.��:�è���嗌�\#�d�7�HO8<�SkJf?=g��k�+�&L +��ˑ�KӇĨ�Y�X5���b*�]vy�]�x6D,SU�*X�(J�Betŧ��\��A�������vB���I��<+���1�Nz|�PQ`��F`���oR�Aب�Z���VsZ�QɈ9��\C�) +Ұ*�d܃�#����X�8�qa�8�lj=�Ş|hB�b�^��{�أ���1��O,��q7Ğ ��ʲ�B����n��<��3������P�N�%�P��B͔n.�v$h�� +�HB��e�,��uZr�_��K��F[�5 f\�h��_�/��v�0CC[Wd�� �'ͽ�����*�?|���*�d(y��<Ny:�y���x���!�ɮr�����x��6K��U�h Oe�=� �HHK���w��i�%p/�.��z��Y��r)3:#F��ʪ}������p�9"��)S��]�ݭ�kċ�G��%��~Z���A�p�2���'��Nז��ͫ��9\�і�2t�J�D����ܦ��N�U�NG�:������9/gS� ���xEG�|��o��w���H>c��ES��@^x֡�%��/� ���jSI����l!k�|�ʀ^{'�鵱�DH�\��b|xXiWfY���k��%~1;�5@��U��f��tH��>�|��@ +� +O:����U�h ?<wo2�@�#��|�<����y}���Ug+���}@��#f~��; O@ >�e��m�x�4�M�Av���7���d����&�8l����4���m�?Y�����o-����]R��J��lo�U�d0.a؝�u��r^����"ʎ��AtkE?�s\q�M��s�kze�ߍʑ �F386(00(Pm��ȓ �>�^�˷Ѭ�};m������6g�V��&�O�}�ؔt(a���3.G^0&��w��z� � +�,�S94/7����\�fs,�)r2C���K\5ո+.�P^}˵%\p��zhx"I#����HD��xA^��WR��kDŽ(!��+��`��,�>��ra ���N�wY.L����~^��B@r�o���o�3+�wK��)5��uvOk������x�f�?̏ı�}�!�r�A���5k"E6�M�^�_���r>��&�+8�v/O�y��#)ruPo/�M�i�Ă<�é�)8��9B�vˮ��j?��G5��Uk5Ă�8��@�V��t� K��ڻ$��k'��J-q���j@���@��,���L̹��O����)rVR���Sm���V&����Aj�"l�z���l�����<m�9\��W�2�L`��C�㶵�n�g|i�eA��,z��B��`4]�_�m6�g>Jx��� <���^F�ϦW���TBYӭ�}���ڣ��wB�Y;}s�(t��sʝ5�on� 8}�5yd@-��)pu=��E���1�rw��mҚ�����wF=�\����x���~���rͶ��2#l�!v'�=�f2� f�YkA�d� 5� �����?�֍ifk���B>W�\�3Z��Q1�>=��1��G|�.�1\$�)��\�1���ы����j�Aoqd.kٶt$qЫ8ڮXCQ��v��k�x2O�t��w�c��ƕOsW-��Au�tK)e:1�f�ܐL��=4��} o_ro���ҖO�.UG�p���uv��0&��7���D0��P��h��Sb�:'�M����ќ��"z��;`F�ܛ�����h���LD|ɮ�ÖG�-�H��}�4��t�Zt�e����l���A��Xp_%�!]`�(�=�+���B|�"y8��o/_�"�N#��8� �X��B��bP�l��G��ú��_����c�::8�\6P�`U<��:,�C\��u���k���!���������s��:� +���1�}�L��Q?3�e�7g�o�'��͓ ��k~���o�5׳y��5��S�f��ms��ٲ�ѫ�r3k�c�gǒ5L؆9rMS�9��a�ϑ��n�B����� Bχ+���kD�ٖ��^�+�R�P��`G��^&�4�{�N/Ӧ����x;AK���>�,��"Ɗ{Go��qL �Q��N��y�-1U����@7��?�Z�4�,����S�X^^���ǟ��;g���lf��۸��v`Z�^��y��᪃�:�㪇p~�"��Ei�}�V#+��n)���u\A�Ncy�������wW�E���C��}�W~�%�o�H<�$���V�\�\0�F&q�K+�է�b:'��º$1�q.�D�I9��||hVhZ�'� gc,��$�i�$1x2#~�W�L���S��� 6JU�5eG���4(��3.u�]q��Yw�G����G{I�?ɛ4��qII�;�%��6�±j��)y_�gW��<M6��~WWD[��9��u� Ó<�ZM�>�M�Л�6���J[�,���s��%eci=4�?�$��s�#�;��w۩Q�ж�mJ��>:���_��,nW�{j�-��2R��h�EM_�g/3�*տ���3�r��qn���d��ct����\7T��(������<7d��\ܐ��I8� '��P��f㽹�i��=�������}|C�� Ͼ�Cx�q�<�7��v���7�{���;�ͷ��ґP"�'@�2n˻x� ��nx�wCe�^|�љ��L�q�^n�����n[ |!�j��%��w�i�7��y�qƛk����s�a����?�0y��7�"oRy��� �7)��o$�*o(�TΊ�/oR�y�9��2ox�)���ٯ�=�ŀ-���q��a��t�r��F�Io0+��t��C��NY�Xo�zñ֛��������7){���� 0��N7��b+p x�1�´?|�Pp�@��bÞ�S������>[�k%��5�I;��4�{�AI__��pO�#t�b�m.1���"���h8=�@oM�he��u[��)�ۦ8��4e�S��N��'Ӱ)�p��-:GZ< ?y��g�\|�����ϲ�k�X��X1�Y��������8Q0' �>���r���7����m|��O��0�V�xK�:��,�>�M"(��p��^�N� ʃ%��3�����Yʝ,x�>�|�tXmE�Z��ז�����s =y8_[Bğ�'�����p��7�C�9g�p�� �?3/����O���}Kv��.<��,��`3.��n>�i5Y�^"��w�#��;��ɑ���8�_��cZg�}���a����� ?� ]��?ճu�K0qq����l��=H�L��d�5~�~�oݼ�8��6��M<�U�1F��e�t���*hj&�+9IK��X L.A��|�6[��<n�,���%z�R|�d�ٳ�N�V�����13�B�=�n��$�[2x�g�u�[�|;��oa�����@��]c���s��e��c�l��zz ��<T�l��-H�^�H���I23ƨ�Cd�y�I�)pgBWo�f��a�:� Fw�hx�;G$�/�\�n�ˤ�t��*rή��Iֶ���>,��4��aQ�;m�Ww�"b�K�9'O\�O\��U�м�9k���h��Bb�y(�)/$=�|��ó@����l���=��ư?8�!��i]+�E� +��ķ2�i�ʔsS.ȿ{NvaɼV�����-Va��vLÒi��GTn%�a��dѣbc�������5�ː7�fx4��?z��|�Þ����P��II��U�s\���G��K�[^E��O��6\�0!�86�>�D�f�#F���=HX4{��fo�&�^V<�&�wu��v�17�{���|�0��l���9��`&�,x@��z,�����k�$7g�5�行�~�:P�� ���u��!�J8/���g��Tz.��w=9��vI*�p����A��9=��⑷�9����z�J;����Wi||;dO���tQ݇l"ī'�:ci��c��˔{�b�v�=Vy�,s)e��*l뚥�A�1��C����6�)s���2�E���NN���g��27�Bɕ=��J��َ��-U��e��;k �o��i�T,� +�l>4k�]�S.[�K�Z���6�|V���iq�H��F��r�N�2`|KV�kP�M �Pl�]�͉fk`4$�ͶD?lӄr�@���V`���ȦoD w���@�* �@(eQVN&����d�W|���i�4^�4�ƛ�3�w0�;�q(�5�5�x���H0�;s��jȨ��H�bT�#}��]m�y�n�KSZ����{��O��n���ֶ��� ��麉 ��I>o[: + �$�2_�g�}�ڈ��.�(N`���F�t4�Z�XJI�u����]/�ɶ��|V±u�fʡJme�g��=Fd>�QJ�z��h�XSO?d��XP\p#��[�D��RG�:8�1�����`R JۗY�Xư65�#�r ��[��Cm� �4K�5I��,������Ĥ�t�G�M������*��0���y5H@,!8�ߑ�l_ey���z�Rn7��+�Pɯ�Jd�6�%��r���KS \J9�M`*��)f��!����Ŵ7��g�~<��p%��t9�$��q� �"u5�GbQ'�u�`v/Z�<�;K�_��2(7fY�F)��M}$�nu�o��+BHW�����?lH���~��Q����F���9�ÐQ,e'u�T�W�p��,��*M�����Jy!�]�����R�*�$�i��9!�\�!��Ŗ����,��sn�`�6]�l��e�-�Z����Vf-��U�E�!�������>Cʬ��6i��(C���0b�W#-�d�Lrh��V%�c���9pYTv)����Z��uQ��H�t�/ý����H���g3ӽ���wy�[����xA��z}�s��*��N�}����p��S ���b�e�>�������:�k%�L�Ѡ��#iWc?S�Y��lYz�����ƒ4c��NE ��G���Es�S�}b��j��r�ql%.� �l6��c�����]K^ݡU��̫9hX�psL���f0)3���g�{�k�S�bTP��7��8�O�+�. L<���Y� �~�l�+�ђ=�Y��@J�)�c��M!�� +Uʬ?6c����%~���c�bط��������D�F#m�d:�ZVI��sA���j�{P_�n�ό�Lj�)T�W� +�K%Еq-� *�7��3F]]L�gp0')z�Rn ZR�@e��Y1B9�� +X��}F,ك �DLUg��v�,G�d��[g.<��L]����ɰ��@���XשlP$L�\MG[%��dL���A},���m��D�����7�8�}u��k��i�6���C�� *�ĺ�n�TŨ> �5N��V�A�;LoӃ������ɍ��y<����'Ase��r0����6ws>���f�GƆ�:�^q���Q1lJIi-�����@��&��t'�}��~e\m��$�`\s��bx����kX\�C��m���XQn9 +�'3a�ڇ�F����,�/�M��V��wM�즽8�]�kA���T��={���J�v���v�.���no��-��[�-��bv\��q��1�9�;�c��:�l���4�o�F����独1�F�G#�9�-o���#9=�Y�����e>��T�R��T���#����$�:HHʁ�Ȣ *��3-�ʡf�h=H| +1+tc ���I�ZU/w���pq���^E�ncU%9MMT�y�TY@9����`�Z���W���8n� +I~F�=^C�Q�k$M�e./��2`2�9M�m��D� �8Ƈ횠Qo��݇���F�"Y�5H�&��_uQQ79���R�:p�a1\����x7�߫zXZ�� +R�W>�-܊3�ڴ����ߠ���Z��;�zΦH�Lr�UA�Y�y2Ci0Sߴ���"N��*2ê�L5}%x[�@�>�ԭ]�� �U����e���ޗ���S<�\�+�.��}I�4#L�D�%�:\����,5��� ;Vx��kc;��j�&X5K�6ʘ�Tk��G�ԆHq�y�+�OѬ��Цi�l9L�����O�Z����h�=:4,*�\U�l)�e�����m����ʙkӊ�92�wr��_lj>'���$�ؐ����<��܂����:}�k�1�ﲂ��Y�qo�R��W(wy�#�9�_���\�Y�p_��̻�H}H��xP�����=j��~��bε�����KM +Y�'k��ڡ�5d��4�D�&'F�,�V��U��s��1�s�..�@��~O�(T|���� p~�� -j��j+D4�FūS��pҧ��H����.qN��z�ClyY�$��0�a�Zq!� Iy�Dtyɑ�b�(�Oe� �{�s�C������:r���gg���|��0B{q ��L��� So'Cl1��/��O8�vv�7G�k�3��El�����$}�^[0�j����rj�:��Bp6\쫶RwMx٦�L�E"�v��P)�bȖ3hCI���h�=K��T�l ��%�~L��˧��ԍi�!�K�] -�~@���-!��W#��t�E� M�]�]�`+Fl5 �pR��9�x~B��<?2x�̪���q���ٛ���nf�"`VF�#[u0���zP -���ڂ��B�L��4?^;��IV���� -�ص� -p�:]���W��D��3��xyxj:���GR��KZ`�e3�,}Y;�����|}�>�B_�N%�~��y ޠ�N���kī�ݪ0��sDeD�f(z/�Ι�PԳ���y6u1�xq�P�Xg�&o}KgY�����P����k&�I9ov`gÉ��C����vl�h硥�g��T��f8ᰀ�sBu@x^�.5 -eS�E�9N'�zd&�r)o��I�#^�� 5K���N,ub��=N��R�퍄RP�s�I��LDVf_ ��G����o���Y�3�)2�ͺ�����Y}�|�`�ႇiӖ3�7+˒Z�y<����c?���d����������ř#��T����C��A)�*�����ѴY���l� �Y�e��#X.��o02q�k>���e^����Lq�}�LR������P*��8Z*��,�2�JA�� o3�|c�3�3���\:�~�L+�;��I��ϢUG��%:�{5\��M�] -f�/Kjm��P"a��;��=^�p!kf.��-1���\rʬ� ��(��k���ɦ�rM�ʦ��]!U>ζjEG� �REck�����тO�����jMذ;T�2Q���ה� ^�rRk����Y�L�6��1���Z�I�w��J��[��V��Y�KyrKh�_���m7��E�o,p��B�v&D`W�r��c7��A�S��q#U�rՃ"��9��}����F�ҵB�Z����9UW+0��L+k7�T�@t*�I�k�s�$���c��@p�zܨ���BOU��t�5��u��{X�9˼Q~�O^�F� V��M�H��7-Ěq{E�w3��`��i�iqh�|C����o%4��б'�0�Ť���W�Φ>}Ș�ٳ4&gmU]T���q�n*9w��"0YB�_�P����SA�>gaIʏN9uA\����>P�����h�9�D;�t�q7������z��Da(Y��J� �����G�X2Ė;+(Ig��(��Ji�+v{�S<���������c��Q���Ӄ@E���~����}ңG�Gs�di�W��X -�v���Э�nj��v��oE����\�Y�F�2��Z�Sc���5T ��X+R�� KPf�e�A��2���:dg�������Y�C� �UX"?��x�|I9�:�4g����9�&���QUy�y�ѓ����+��3��Mt_����ǭRb�:U:-r+�RT��?�2k:��SU5P��$G�����6���QT��LO�ƥ|v�Z��LY����<[�e�߫��ƽ�Z�}�f�Fً�Ee����쳍�������f#ʾ�_u!�>9e���.�$ʞp�Գ����F�M�0�^kh�e���7&��[����({��d�NG�+����\�\خe�b�-YI�E�q�:Q����&ʾ|P&��ssn#�^�� �����q�4�^�:e���H���9�U%ʾ�m7�����a"�>3�y�҄�"�� #�ԁd@��ƍ��^��T����͘{��Վ�/Rj��g ��1����|��`��t��bj�+��0���{ h������_�5R�|�5�����V�=ϴk��*��:u�2�p��Z�:�Z -�n\`8eޡ�ua���y+�Rq�d�gv)�����B[��Y��,dx���zx���k�[ȼj#�:64鼡�"���@�^�%��l�=�G��87p&�P���=aW�{�k���q$�mn�l��Fk�w %��Y���F�qM3�$_�Ӝ�\?�R�({P{�y#�XV�A�Zi��^xY~�Nx��H�4B1�[�Ϛ�/�cU��̴`${"A����G^v�4U�0oW�Ue*�l��Ì|%L�f�Yo���A���z�M��u߫05Rw>�X9�6�J#�}Sa�*s�L��3�tO���O�h����Y4��Q��۟C�L�Oe���UMB���M"].I���5U�ױ�.���=v!4�k]p t��qmbT���MX�R�DžR�m��k��f���rlr����*x��]m?a+�����R�������q�EZ���]V�s(�癤Q+ �'�+�&��¶�2�Z� ���f��z��Q�7��.�9l�~�RQ����0��^�3n���$d���O��+���X�8J��u�����7J�V�� pV�=QbQd������Y�S�V�gc��n����7�s�U���/43�����ek��Y�U8�J|�������R�tm�:%�'��*�_�"�+H��f72�6��ܔT�������)�{e�%s�q+B���b>~X�QGA6W�%s����E ϲ���5n*��ou���D�Z�e�DK%j����ֵ"� -6X�L�*�~Lf���q1b� ��=�"@(P�Jh�X#�ӯ�nh� ���M��NU�����T��u -�����+��T_��G�Fz{�I垟���Yi�K�v K=5�6�z���`�������@��;ŬQ��)ө j���u����ںt6�������D* A`V����@��< -�I��I�<�W��`ւ�Vւ*י�>�l]j�d�� ��ڃ����Y�g�u�8b]뮁�N�.�}����)'ֺQ�]�{�&F[�~�2�� o���ұe�oZ#;w�}����<�C}o����@���[m<'��=�ݦ-�IU�ٓ��p����Co�DSg�f%�Dc�/D[�r)>���qQ_A�F�q��XՌu��b����fa���;�M��c�o�k��T�q5o[�=?o7�5��!�����ҷ�K�y�]��U��p�r���3�<+j��wߪ���Cз�cZ� �;�;��B>��$�Ҡ�T\��q��h��V�OUAn�r�Iw�� �3�6TwR�Ɨժ�ӽ���9h٥u���q�Lc��锈^AG�k�4w�I�|�%*��fa����;L?��o5*�X��s��H�m)÷"e4�RF���jYg����po�ZbJ�y�v�v� -�G��T4h7�D7vM>̕%)"�\�â�$��{�w��d�P`!��ӵ�W�P4�T(��-��VQ���R�"����2{�SX\ɞ��B �kh}:�f���g!|���:~A��S�i���5:�����RY1���n�������x�\\�eQq�TS��]�[�^������U�*��2����U2��"v���ֵ~�\ޜs*� -����J�m��,�We���*��7� <^�=��&��g��Q��˦�-?�g,mr�Ң�E�6c��J;���au�q�_�y5j�kƧcǨyIg_�7�ꬻ�;P�Y�$ک�,�wU<�kvo���R�g�Ե�M@�)�Qw����}�u�g�$��~r�-�/W�ٚ���ru�=����u�ۮ�{�Δn5� -+��k�Z)�a%�\\�قKښDO�}��'�E���FZ�� ~��M��D����VHZ�}ֵ'IKc�y����O�L#�86��]+��0�AE0T�����e����!��vm2n�86D��}��CZ -�<�u��C�Ǐv��囟2�<.�һ�����ͪ��Ц�Bۯ��i�?XX8%�Qײ�W~��u�S2��!��\��y�J��r=��}�� M���ɕ}��^�U+.��[���������4~۬�<��C��D�o��\�\W����Y�F�&��?&R�^�ovV4����9�6R[ŜG���E������l���I�ak �Uzsu&e�<!�3�JL�8/<�r̓Fu$���?���J�m%Ŗ£�֭�$�tl�̴���P;�E;�tyNE��ɳ� �t*q7�.�V}�c�м���<�Qr�D�����:�l����aa�GW����/�AnRYyШ�cG��'XMy�S;�Dz���U�a �i��g��p��v�V�A����P��Upm)ȕ@�)��,��AYb�*�f�#7/�l[ΪTy<M�P�G�m�ϗ{t�`/�<��9�i>�g�O��b���e��+��J�x\�Eu����å��j�~C(|�i���Th�s��h+���1�_�xм���Q6Z�P#�I�p�v�s��,�N�V04�C�����*ņ��U <I����Z��L�.�:�e��Sc�}N���T?�:č#�GVP�Uz����[P.*>��+�O�_w�i�a�Ն�IY �Gq�l������||�+;i߮Q-gX^��Da� -���5�+1���\�L�+&���VҠ�*�C�U8��O�wy�Hs=D)���TEC (�� �3]��R�&U��*a�Jp��I�+f�J�0��*����&�O6��̆w�U�S��"w�]%X��Y����J0�,h�J0'>J����iW%�U �[�v�`Z8����h�J0��LU ��:S�(��H�`���T ��U �,C�`nD:%��rU�[���rƫ��nϧJ07S� -#rӣ_\*�f����v��V .���U�ũ�@�`����]��*��������>�Q7�1��c�����F1��U�*�aKU�S�W�Jp1.�SV .��*��J���G�nU vh�X�nbTl�J�����U x��; ��BΨXq�z�T����=��D�Q� -,�N -ߨo̳w��AX4%Z��p���i����SIIKe��(#H��������Q�P���^�0�vU�����z����S<it�Q��nn -5�\ �����ج}8�J�C�3)� �T�4R�� -0Kd�Y��33(����F�ܸhc���ؖL�̅��ee ->�X �V��`���KdQ7_��n��O��l��˗����JpJ�HiJp���p4�,Y��.u��Γ)�l]�),�<�+���.�q��v��h[ʹ���7� [���Yr(��L9���Y��Y)Ț̒�KƑt�_��A/�M�/��^�J ���Ό�mF�g��|�V�)Oʐ��6�p�҂%�!�~OT\@�ԭP��h�M�74�:?�\5�C�>M*bw�§n�k��寻k�0j�8�J܍咾ר���1\�{x���� C���Vl�d��}�E �5"TX,�25#M���Kb�ݫ'�8���b�ldS*y -�(E2��He��23^�^p�T��~5RG��q���&�cCƋS^u4$�WF�j�i˷u�Ag�.8�����j3p�j�a5�+Y ԗv�ʜ,�[DKN�2�����r��t����y>Ɂ ��i8>�Ag�>����Ѷ�^Z�Q�i��S�99E�v�,L�d�-B-�P)Ɋ������T҅IK����3J48Lz'E8)�mVo������JW��@ۦ@�`q�#~�Wj��?ϡ"y����N ��y�>X�^p��l� jA0�/���``J0״�`�/��`���N,�"[����"W�q�8Dxże@�e1@Z���;o@���8�w�o �gt������� -��t�о9�g�R�Y K-�y��sR/�R����������a�T�oȞN�/y��v�W����5kܨ����Y��00���\d��fg�<�]�d'+X4̸햞'�)��� ���=�OE������0"�W]ϖ����2cB��gR�@�U--C%�����B�ȡ(2�X�(n��J�\j�z�<,���\`�`ES�����Ob3,�����k*+h�B�_A��&m�a�w�sU�~���Hu9q�\Eu�v��Q���<�U��_��D��,� �؟_v�+w���;~���]��MZT�����%�F���q��z���<�r-�)V�99��)��SfV]�L#���?R��F#��ȸQ'�Qu=�V6#�tv�lF��}�� F�I�?��H��nz�*i�:&H�E��Lodź�[�.��FξP?�Q ��d`H=�+]bTt��~�r��~{�o*p���!q�}̗�ϰ�� ns�9���h�VBf[ �n "��� -���Gp₾Q�|�,�>4�$<��rF.������[��O�rA)5��Nj(�R���҅�����*a������}�7��_R�n��.\t���݀�����ݍ���u����%�^^�:�D�|�K�hI酁�t��t���3�W�f�{�*P8��^���7�����@m&3x,�.��)��f5�(�-l�0��7��ܰX�3P�M�3S[��=�5��$E��`���F�fy��ʼnR��l�9�#s�VK����'��Ըp1a��s �!(ʯdLZp|[���x�W$��F��4իUq�\l�vR��o�|�x�|��$i �5 (�"�4���P�����>e���=�>����>�*V,����g"�'���<# &t5O�X~���}����8��䨼����Y��\��7F�|��.��,>�`�0�f����'���y����;���l@m������K�l\�f�&`�k����h�t��]n�5����ig'��o�N���І�&;j ����A�g�\��0E��a�|��X[�Q��*?J 8 -�؇��>��d�'�~b��{�*#vX�� -��Wy.d�D�3QW����H��Z�Ks9��+= ��CqO'���yGM����qG���ӛ���2lBT��ߊ�����bO����]%�*<a�0(� -�Z�$�$��PTr�X���隴��T -��)7�h��rS^H�������h?�S��H����Ex�՜�(��wZI}����H�\g]�:�����|J�v�Ꜯ�T9۷)�bXG#�m�6� Y��~M裔�S �� ���fE��m�/�o=8=�_0tچ�@Z���k2&mb���&ml|J7�3��26��i^Q�q�� f�ʽ�����,|�]�{��;�ȫt_�ox=�><|܆�Z�����=w�栭9�� (k���aj�(`��e��OۻL�֤���*,��T�W ����X�T����1���AP��f�&�'���+F�?��=�[����L�m�ݖt�d���[n���=���DoS�t�2Pງ/�ԆLmX��ռN��Ȭ\�u�S�-�s�◯M�P;����g}���ęu�H�@r�)�t���Ӂ\�":�]�oS���k~�i�2�^�<mٟ�Z<ߞ�GD�F]X��X4��w*���>�_��ހ>|���SZ43=&{ڍ1�L��X��6|�}�yv;إy}���M@��+��jZC���nPrn����P�L9�:=LQ�,߆���q�N�eȰ����}����5�'����I\K�VbC�����4) �������={��=#*>�4$�3���)H��I)�`v�#��W�r����F_.��*߱pW����^���� -�����^-�=��G�/�5�؇�!/��:{#?��E��<�Ky_�8���fa�Ż��������{?U�JL��j����x`̱h�����ݓ�]�'��tR1���[�#3�:�=����)������`B��@�I� K�A"8�G:(1?=�Xe -���h��ל��ɸ�����C|��ͥ�dКҰ7-�$%"�0�F�4�cװ��=S`�!�ƖRGU���0�B���fn��6țH����B�g"�p�s���Tr��.�Rr�� ����2��N���a�Q�U���s�#=1�l�B�<Wg��r��g]�v�U�o������a�T�-��4)�V�H.a��닋Ô�e�Ok�8a�EX�} ��K ð"Ov�gy�ἵ�!��x�1gʧ`����K�$J�W=�3����A�o�Ю��4��e�2E`��1*2��#�>C��@�� �� �N�20�!�}5�j ��� -WrW�`��D���AP_��p ��2D�֞q�Z�F*�`�Xf�I�?��y�bH��5o^ ���>��DH~,I$4#�|>��/��?�A�;��wd'���M�l�Yj�j��Gdc�D�|��">R捨^��T�� >K��=�#<係���C�\�1\7_�o��E�J����Ç&H�k>]��؍�t\�4&@�F��O���.c�6~V\ǤN��>���P��L>�PI\� -J���M�4�dhJ��EE!��̄OL}���=.��Mig�2����1�`�;��2���{p�u��.����1\m�����!�����-��V��T���>�"��ȆK�og/��DL"��M�����E�҆�K��~�ۗ�5B${�}K(e�~��O[$������d��&M��'yTN�M�|���а�ff���T�N'�א�$���io�7-�enMI|���_`�����&>π���JŐ,��zR�����6f$9�SE*�z���ʰ8$L���z ���i���� -=0�F�rZ���Ke�" g�X��B�f`$H�[kϮL��Ijn�ք������!3�R�psaJ��ؐ@$w%&叾�#3� -҇���25q����^ĜN*�z]�'��T*�K%��Y�$�T&I���DbT"T�H�`��#�"��q٘�K,�K�;l.~43�7�X�S�T����������<�ۜ�\f�E��A�{#�&B�{B�������Nn,_���&��M��uѫG���!Ut,T�k��i�9��E���B��a���^9��s����AU�2�?i��Q $��%����Z�-߹�;�qn��-߹�W��v^�n�?1X�c<v�����G��ǟ�O&b.)0�UJ(k�^>7+9h@%���_�`~(dO�nz����NEf�*f����%�f�(���z�o�0��P�ں)ڔ��d���l�U���6W���GL&�jzd�G�O� -���m����C������0�v}6LƧ�#�:�Ã�i3���FZ�@�%�Kb\�w����<���Ց1u������ �ށa���9�,�|�~����{����9Qk@kO~�����'�Vq��R�.49T\�:(��7(���.~�%�����pP�;�\7�������'C�b��y�<�^a�̹� )8�^<YIS@3�D�i�n��s`�5�;��ψ��^�E�< �pV��Ca"O��V׃+�����5�Ru��ϟs{c�6�7���:�v�U)V��+�^U.��}����U�XR�<��F0�jO7)����9�e� ���3�8���Q�e7h3��H���d�l&p��@��M�4��R�D�am��>jK7���FV�wU�(��R~��0��y%�Hr1���xfM��I!.��q��㋈�p�&1pP�F��0⾟�VS��2t�k�������*� eV�}iH��*ĺ�F)q34���",}̑���� Ŧ;�}$p���������4Q�jG +j��j+D4�FūS��pҧ��BH����.qN��z�ClyY�8��0�a�Zq!� Iy�Dtyɑ�b�(�Oe� �{�s�C������:r���gg���|��0B{q ��L��� So'Cl1�v ��O8�vv�7G�k�3��El����$}�^[0�j����rj�:��Bp4\쫶Rw�y٦�L�E"�v��P)�bȖ3hCI���h�=K��T�l ��%�~L��˧��ԍiz��%�.� WY�8��v:�"`�&�.�� +I�#��{0.��ǜ� +<?����<������~R��O��l7�u0+#w���:[�h���d��`����:�{k>͏�x�U7�<��*v-C�����@d��@d/Q)�LE��y.^����r>�f�ƒ�@e�L)K_��B-k���8_��ϴ�קS��!o��4��3\y�x�r�*�5�Q����K�sf���ų�b��G]$^�8'�ٯ�[��6`V맼>�|)�/�m���Ii�RΛ��p����h"��(��yh)�W ���'p�AuN��¥F�l*��0���^�̤TC.�M�2�t�˓���bi�Z߉�N,���q�X +���P +�]b�v"i�������U��3�X�-�\;k~�=E���Y��:�:��"�o�,4\�0m�r&�feYR��2�0`�g�0����#sS_��W��8sd9��v���th�W����[�JM�Q�e�_�v�כ�^&�8��B/�#'���C�*�[�ey�A�'�7�$��=t��Rq�4��R 0�g)���@ +2,mx�Y�c�A��Ue�r�d�52�����'��?�VQ*����`p�66ft)��z�,����C���E��8&�xMÅL��U�p�İ�j{p�)�j�h^�X�U�"'���Y4M�*�&Χv�T�8۪�'�J�� A#kCGR<U�C�ct(�5a��P��D1��^S"7x�s�I��&�Fxӌ�"mT�cR=[���.�%�*`=���'��w���������H�.C!�nBY�x�X�pe��!�3�����N? �n����9�F���E��9�}����F�ҵB�Z����9UW+0��L*k7�T�@t*�I�k�s�$��c��@p�zܰ���BOU��t�5��u��{X�˼Q~�O^�F� W��M�H��7-Ěq{E�w3��`��i�iqh�|C����o%4��б'�0�Ť���W�Φ>}Ș�ٳ4&gmU]T���q�n*9w��"0YB�_�P����SA�>gaIʏN8uA\����>P����k�9�D;�t�q7�����Fz��Da(Y��J� &����G�X2Ė;+(Ig��(��Ji�+v��S<����'����c��Q���Ӄ@E���~����}ңG�Gs�di�W��X +�v���Э�nj��v��oE����\�Y�F�2��Z�Sc���5T ��H+R�� KPf�e�A��2���:dg���X���Y�C8'�UX"?��x�|I9�:�4g����9�����QUy��<���l�p��X�������7���[�Ău�tZ�V4������e�*t�৪j�<+&I���I{m���T�>�K��D�Z���6���y�\%��WͿ�{��(���6��y�$�?ЃD�gs7�ge���F�}��B�}r�lE�\�I�=ᨩg+'�Ս��<a�����#�>��eoL�u�ޝ��Q��)T�Ɲ��W�5<`��8��]=�^��[��T��/��u��3�?M�}��LD����F������09�Li��.u2�� R_��G�sL�J�}�nBmG��D�}fr�f�1�E��AF����)��)F�488�s/rW�1�<��s_�Ԏ��@� c�5����{o��t��bj�+��0���{ h�����_�6R�|�5�����V�=ϴk��*��:u�2�p��Z�:�Z +�n\`8eޡ�ua���y+�Rq�d�gv)�����B[��Y��,dx��zx��\�H��y�F +ulh�yC�9D79���K�{/�,z�]�<X�qn*�L�D�&��]9��đ����[�YF�=ށ�4�g�NN��5�D�|MOs"4s�4JE��A�u�cYi���z�����𲃑�i�b���5i_�Ǫ���j�H�D���u�u���$i��`ޮȫ�T�r �J�N���b��I�N�!h�D3����Waj��|�r4i��F��&U枙$�g���)<-����1���q�h +~#���5�?�z�8�ʬ�ȫ��F���D�\�ґ1�k�6�c�] +i{�Bh�@�p���بRgٛ����DžR�m��k��f���rlr�XƻU�pu����V4��e����-��%}7��B��0tyI����P��3I�Vn�%WnMƯ�mCe���WAXG9�MSo�p���6,n`�]D3�*4����/�}a�ս" g�,��I�HQ5�WB��Xq�P!�$3ve�;������{�Ģ�e������Y�S�V��#��n����7�s�U���/43�����ek��Y�U8�J|�������R�tm�:%�'��*�_����g�v�c}nJ*�CZ�����2TX&s�q+B��V1?,Ҩ���+蒹���墆oY�l� 7�Y÷:^q�o"�H����2`���� +��u�Zr,c&���?&3�X_ظ�e�(pO� +�Z!���k�ZaB��j(E�*��FU~���?�B�#�B�%�����" ��������^8G�;fc��ǣF�zV���R��]�R_ͳͩ���9�uzv9�6н�N1k��u�tj�Z���l�}]�0<��.� 6=�.�;���r7��@C�g&�/���B�n��`�,OA���'��`������u&�O%[�*�su%���;}��@ց�i�"�Xk�Ӻ�a?���wʉ��B�kW�ޠ��V����L�j�k���tl�����]�F_n0�7��PߛC{�;?%�V�G �s�9l��@�kRUy���-b�䤇�Л�9�ԙ�i ;+ј�і�\ʇO�+c\�W���n\03V5c�.Z��R��AcW��,Ry�S#���b��cu��њ�;��m+����f�F�>�u55]�VrI3o����� +��Y����o��gEMr�X5|7�c�vL�aB�tGSYȧܜ�;@4���7����aߪ��* �M�Yn��/�.��`F׆�N*~���Z5{�w�~9-��.Z@�8��i�2>��+���a���7���De��,̟]���t��g�F%c!ߞE�?G+A���ۖ2+RF�-e4�{0��uF:� ��j�%��omw��q��JEC�v#iAtc��\Y�"2��8,jN2H�7z�M� Ҩ>]�z� +ECI�"��RpKkU=l-U- + +no+�;�ŕ�L/Ԡ��֧�jV�������A?���暍Z�úk*+�)��Q:�F=�|O -�َ'��U�X7H5J�%�E�E�,�ߋ����PѤE����5֬�����ͽ����ł��ĘS�\�@��tx���U +m��gA�*��_W���nX��b�����H5y|0�>�^6�m1xO�����K�:Qی��+�<Ԛ�՝Gy~��ըѯ���~�%�]vܬ�����@ag��h�����U-�\Ȯٽq��J�uzP�v6Y�E�4F����R�}���#�\f�e��\�gk�r�խ�\,�s���n�^�Y:S��H�*L�LkP�Yk�H�xrq�g.ik=]V��&��}֛i�g��9�4�O��S�[!iiLZ�Yמ$-�Y��)�c>NP|<�2�`��(&v�����`�,m �jA��C�h��d�Tql�x�}��Z +�<�u��C�Ǐvc��囟2��v���k�j�w@�f�nmh�e��W�� T�4�,,��kYƫ�{�:�)\��_P.�U�<e��d��R ��r�&����>[S/��ۊ�-���pڂ���"j|0��6�<O��<7Ƽś@��k���j�fe֪Q������D�ڋ��Ί�R� �R1g�Fj���pXS�h!�W@�u�M�p>I6l�a��Jo�ΤL8�'$u&]��'��%��X��kTG�{ +�S-���Tjl+)���n-$i�c�f�������Q-�!�C�s*��PM�NL`�S��Ywٶ�[�;���-���ํ��&�-�H���9�d���(5� ++?���'�~qzp���^�ʎՃ�`5eO�v��`7����P��� ��:C�ꭲ�N�� ˫��R�+��S��Y"�� +� +��U��TGn^ٶ:<�V��x����r�R�v�/��*=:�6^y4�[ϱs*��*|L�+&�D��h��˖�C#5V>6��Ѩ������^�K7�N��P���N�3>�:�i�s��h+���1�_��k^��q�(�p��$V8t� ���d +O&f+�Ћ!�J�Z\�bCU��jUO�,u��n5S�K��fY���z�Sx��jՏ�q��?G�^-<<��������Ċ�Ó��nZr�v��`\V�Q\:�*a�a��%,_��NڷkT��ר4QX�¹:}M�JL�j9�<�-�� ����4h� +�@s������G4�\�FJ6~=��?�j�Jg��D��T�9��C�I�`�J���4y�*�ʁ�,̽�J0<��*�� � �8���}�������kW �j�b姬L*�̉��*�f|�U vU��ֳ]%��<�*��$Z���;SU�1�Δ=J�1R%��+U�uG}FU��;��P%��N�(�\��jDe���*��)������͔�����ʬY��+p����U�K�i�`qj:P%Xk�ƪgW��J��=��nb��n�M|L���&6�đQL�n�`�^E0l�Jp���V .�C�x�*��4V%X\ u�`�h*��+ڍ�j��U �c�����Y�`�Wۻ"n/䌊��Mm�j�=�C|��'���WX`�v�P��}c����@ ¢)���@���8��N�V_P��JJZ*#�EA2��<�$�=��j4?������-�{��R�O�U�u��꺹)��s�2��c���+��[ΤD��R)�H��*�,�q�2�Ԡ�����s㢍ź�#[2M3z���)�cI4��<\�n����V�.�D�|���>��c��w/_�G��x+�)�#�)� GN8z�7hY8�I]$�x��Γ)�l]�),�<�+���.�q��v��h[ʹ���7� [���Yr(��L9���Y��Y)Ț̒�KƑt�_��A/�M�/�Y/f��b�jgF��6��3�Ȏ�C �p��'eH�kR8pi���V�'*. m�V(W{��&��s�V��ݡ{�&�;q�S��������5w5k�Q%��rI�oT����.�=8M�n����ڃRZ�6[�a�҅����*,�k���&��ƥ���U�K�X�u�d:�)�<�K�"#x�2Fa����a/8C*\T����Qa���Ƌ�!��)�: ��+�L�rܴ�ۍ���YyჅ�'e3���Ņ�hX ��JV�����2'��ђD��?z�=�@&!���Or ��)q��<AЙ�O>��@��C��9��Vh�zZ!�qNN�].S �q�PK TJ�be�%i��6�ta��`�b� R��IN�8G��',8C��!���B� ж)�'�f�_��ՀZ ��s�H�3�a�@�A��w����`�ۂAz�Z��K��'��5m"��%�n�����`�.����E4N�^1o�hY��(�9�ΛP�x4��[��)�d�m}yA{���'];�o��٥�BzZ�RKp^�����:�����f�~�������K^�����U��p�7*�dz~��E-��1Y,��Y9a�8Y�� +MSn����zJ���@BG"#d��S& {uv���U׳%��|�̘Pg㙔7lUK�P #;�pD�P!r(��7(��m��!����(����K��'X,X���z/����˃���`�ǚ� +Z��W�F`��_[�G����j�\Eկ���*R]N�(WQ�A�]�b��??ϤEU����m%Q}��.@�"�����o���%-r��u��g{v��Q%�@e�5"e�����0Ͻ\D�r��,FNNqrJ�唩UW�'��H!t�T訑�H�'2n��fT]ϯ��H%��*�Q�a��p��AR�!Ȥ5���ިJ�� f�<�Y�.V�.���/�OoT�`-RO�J����_�/��^��� +���b@j�e��3,��Q���sN�"ڿ�����VD���p�*���B(B�����o������# ������с�'g89�u9�V���\PJ ��� +�*0�t��g��-BE}���J��}�5�/���>�K� ��m�ۅ+�n��Ӿ���[:��pZ�NT�6���K���]���qI�-)�00�N���N�4�A&5��*٬r/T +���O�_��34R�]2��d���e18E��f嵅�2���9���kr��)yfb+=ҹ\�&��h���`�u���,O�8Q�9�m1'x�b�j �5p�$��.&�u�a4E���IN`˂s��$���l�NS�Z��}��F�j'%��v�'����PN��_Ӏ��!�aAI�j\UJ��{�S� Lz�c0��pR/�㩢A`�r��|f!R�|���3�`B�a����Y�g<�L�C�L������i�U�}c����X�°^���V��m,8|08j����Y���Fj?�@;;��F`6jf�F�J���I���F\��ٴ�vvb_��T�Om�m�Ö��Q���|F�5 Sdp��ǡ���u�-Ϩ��Ns�2�����}���:�Q@�|��ǦX���2b���pL|�$��Łl�({&� +;�X�W�r�A.Gz��$|z`!��d<99﨩��;�������]�M��}^�[���m�.��4J�I�5Vr���aPA� +�0��L2H� +E%���Zz��I;iL��|�rS���)7�g���0;_o +�J��3�8������_�g]�)���|�U�ԧyI]q���u���S�ɩ-�˧�L`�����N��}�2;��e�h��m�?�!+�ׯ }��z*Ab��2��kV� ж���փs�Ӂ1�CA�mq� +�5�P8�&c���n��Ƨt�;03l~*c�mA����ob���k�m�0˛d�����/��E^����q����6Z�¶~�8����6m͡md@Y�|�^Sޣ��J��*>m�2}�&�nVQ���r��jx��o��@�z5՟��OA��7�5�=��_^1B��~�ު^��%e�ٶ�mI�nK�<��� �s�nN�6uK�(�Z��=|�6(`j��L��uJ��Df�گs��n��+��|mJ���;�,g>���`$ά�DB����M�&���X��xZp���\w]�M�N���i�͛�D{��e�Gh�|{F(�cua�bc�T�d�ߩTds�T~%rz��e_hOah���� �1h7�Pl<1�b]\|���(���`����&S7Y��P�i 1j$b�AɹC,bOC�r0�`��0eDٲ|R�:�����ːA�������1~cPO��Q���� (�4Ć�4(iR@��ˋ��{�t{�FT$|iHpgNO�S��)H�* +R����G�����B/�)<��\TIU*�c�ޗ%^g�6�� p2A9A��Z,z�{1��_2kx���C$^ +%-t�F~$u���yė�<q6�[���w��o�K������!!:~����D >��Q ��3��g̱h�����ݓ�]�'��tR1���[�#3�:�=���)������7&\O �t%�����J̏�A{�La��������s"���R�x���T�ZS�'Ŝ�D�ب��S;v J��3���`l)uTI� +#-$�;l憚l�������)Kp&���.9���L%����.%�ȟ ;�9(é�DZ(VpU1Y���91w0�s��)T��su=o)��x֕oG~u���.�O@��K��"�M�"o���&]���8L�_�A����ƈ�G-� +�K���_j�y��]8��S�m�VNj�9S>�ȸ(�^�&QB��a����*}c�v= �L)���)۽��"<<B�34��$�p�q��Q]ݰ��(�� ���Tk�������P@�������f�X�$���U����+Cn����a�� ��av����W)�]^��U�@h �I��w��DB12�����h)@��ɧR���.�#;A �ne�R#U�<r ;%��CW��2oD�R����l�Y����!���OO}�暌���}�=���(U���� U��t�c7Q-�Ҙ�-x�.c|�2&�����Yq�:]���AIb�2��B%qQ*(��>h4��ԗ�)�~ �H62>1���N;�@�7�y�E˼ +7���"L�U�,����3��µשR�*J��p� 30�c��vI|n1�*}���u�0� wE6\�;{A� b��vo��lgU-z�6�_r���߾į"ٳ�[B)����~��"h�Xg�&'�57i2]�=�ȧrZn������73�Ԥh�� +u:���l'Y������=�oZ���:���H���`�����&>߀���JŐ,��zR�����6f$9�SE*�z���ʰ8$L���z ���k���� +=0�F�rZ���Ke�" g�X��B�f`(H�[k߮L�Ijn�ք�������!S�R�psaJ��ؐ@$w%&叾�#3� +҇��25q����^ĜN*�z]�'��T*� K%��Y�$�T&I���DbT"�*K$�K�V�j�C��lL�%� +���4?��� �i�ʩo�F�҇@h�A�U}E�m�P.3��� ݽg!� �YD�D���E'7V�S{Qo��ʺ�U��RS͐*: ��J�5��4t���"�V#!�ʰ_dB��_�9�E�����kퟴo�����S�H-�����8�|������f���n�۟,�1�~�~�f�Q�*��g� ��K +w�ʚ����J�C�"* !P%��Ӡ��&f��G�)�����3u��Y��JF�'���f[4b2��n�6e�0Fa�0iU�)�����|���I�����S�|�vۧ�5���%'�"��]�� ��i�Ɛ�����t�L"�:'��HK���u)�C�k�V��_���A@x!�:2�N�c9�~�1�;0,�8'�����7�C��[��>'j h��Ͻ��v�ۖ���*N�~�Ӆ&��KQ���>�&��05���ϰdWܒ=�x%�C�u���a�? �xR0��#��� +`ΥNH���r���H��������1���x�����?#.�{$��$D�i����|���[]z�����0Kչ�?����hޠr��u����&R�,�_�e��\V3�/R7K�@��$y�9�`���nRa#Ws.��.�Agp�����n�fv��3��,r�L�.O�Z�si�ͥ(�� ��"H�}Ԗn8HuC��&�*�Pb����aJ��J.A��b8�X]�̚ +�/�B\��������Mbࠎ�|�a�}?����e��FW�umN� +8U�����Ґx%"U�u��R�fhK�",}̑���� Ŧ;�}$p��������4Q�j� �U�Y�Ze�� -�*��5��Q��K�I�x�(k��6�B>:c�� ���&�i�[3??5Fj~=���YYвI�͢8e�/�G!Sڥ6McxGYBW�J��d\�$ ���z<��d�}"�{�ʡ�W96�6 �Ѻ�sWUJs�ƼF�+ڭ -3IPᅐ��.B�Rj<3'姱u�n���cE�SO���tҚ��)��.�P�]!�-���4錤�3;���'D����MX�/e��l˘�Q{E�tYz-zb�s�\Y��|%V~s�e��O;S����k2u��Ȍ���q�����ʸ���?Zё��Q��M -�wQ�ZΏ����}�3'���y��>\g��H�"4�Lh�B旡�do�h�̎9���2oG���W��&��y�>���<���K ,Yq��͒4��P�NF� 1��nҿ,��$C�rN`Ac&��{k��g�pЕn(�u~�)Y\��IeFҤ2��d��{H��d6�^$���}Y��T2��T�Q��o+�L)G}��Q�;�(R�f�)w��>\���j��]�,wb�<˅x<��Z47��<hE1��I��@G^��A1��{�9?���F/�P��@4߽�r�H܅�2�[��!��%h�5����l�8� mnR�k�#R7��p�_$�?��Ш~ڲ�M��fU/�%˷��6TZ>� ��j�$�|�I�aMZ��C���=S4`�?\��6�� <�^IS� )&�~�� 3��7o���6���k$��P��@����|K����R�=��О�=���9@��n�Sv���q=T��s�Ŧr��LU�m�2 -��>O�U���յ�>�,xl�_~*t��p��V�,7a���*��h� ��,.Y��E,z�����v����U�՚ӫ��U}��8Sׄ^�ձ�O��i (�9���^v���:�]��;}�St\ -W��U�Xளx��ȸ��iaK����� S��6��7W~?1��=��[�ˤ���Xr�Dz����Db��E���z;�j9C'�uPݹ4�n*ؾ-y6M��K*ϖ}�����n*o�Yka���Lm�])S����ӕ��LH�U�^������qr˞�{Sz��}� �����mFju�2���*���4_��������fW�ӺW���k. s��ݬW�Y�o�i�r� W���J�^�4efȖ�SV�3J6�vX�x��2`�NX���̣����s�c�(�疜ٶ.�E'U̸>�d������KC�<����n���R��W�1^"�Tt�jnr�-WfphTW�1Z@Ug�*~_�*�Z��;^����J�B�Po�Zj���Z�ae�h0E��.��4�G�4&�^O�p�!�B� ȼN���C��p�ij̹�Y�ʃ\��X�l�F���� Xp��>BL�Z���������vR��y�T6�-�o\C}�g3;\��{�iRU,u~�&�a�v�)</�* -�`�,���x�u���k���/�S�D�^�@�+�9�sHz��,_�4M�^"sF�QPrx��E -�X�(:���0�t�� o���g�M�&���p�z�jd�YE$����{��i��/p�9�vtz�i��!��H�b���O(��D��������ar�@9a��?&\�n�a�'����P�q�J���{|�n f�2�f��x�w �R��U&4e7��ˊ���|�%�v�����P��� ���}���Crpܯad'�֎&SӘ��Jz��EY*$V�Ib��m�H�Xs>I�J��Y��J�X)�^lW�͎IӲ�{�\��� �M��u�2x����V,e7��H͛���[�+~���T��eaZU�hS��&t��0��L�1��@�~��0�x���"�����8zΣ5���P�.�F��i#���K܈6��7b�r3�M{�B�<��e�3������~��� -6�4�L�.�{֚� ϒ���l��3p���[t�[;&%߬Z�1��_�U -:�駍4��et�]�M+b���V4.I�Y��������6a����B�!�w<ܭh�4]jL@��2��m3V���)�Y��� -U�ۣ1M��&C3�k"��p�j��у��x0���#L"�oI;�� T���j;PŌ��U�lB(���� vX�M(m�����R�N�/ٯ9L�i(�i�>i�59\�uV�:���*��V1Wӭ��Yk��c3��P9�(�����v����F�>f�ڀQ����h8x�hX�#`X �g��}X=�^'_��%�5ӳ�6�"�}��V>"�����%(Qv�K��җs�|U��63X=���V]v��|�����Oj��k��O��M�+��3��F���(^��6r����5r���hOI=�2�-Ú�l�UI\2,F>y �Oǽ.r��i��} vT�.[���G:��؝bR�v�z`W=�U��+�Kȇ/u�0 k��f$ �T�{v+�8�A�Qaӣ�G��͠�cnO�<=LR�'���(��kF�fj�ߊ8Հ#BT#�Ϟ@��*bi╩]�$�+هuu��r�j��2�����Ȯ��a=P�JA�2�I�gX�'�x^C�#���AB���9̫�y�&�l�>�UM��fpg/�Cu[b�/��-���WC���4�����Ҍbָ����}���2B���� lqcB�ʴRO���ݏ��=g���f)`�iYN�z,vEr:��C�t,�vŔ��W���0��)ࡦ.�M�C�\KV�oV�8´�o��?��_�P���/Y���=B��4C9tFn��l^�F8���"�D�2|�������jl��h��*�]F4��`^�ׯ��~B�@?�۳ge�6����ٌsk+�uIQ-Hq��x6M���V��$06Ja�#��Yb�|�I�j��WT�A���a����):�%���ږL��x�bj�6���#,�;�̚��5�hň�o��~���_��>4�4��2�㍌e��Nkb��lh��H�L� ���U�x��� -wzZ5 -��G��H�L>rY(^^�"/�˽��[E\�9\$N��}<��&f�$&���ֆ��Ok����C$��U��?*Ի�L�coϹ�>��^�q��<4m�m���4��"�u˪P�tY���uEvW�G;��K!���۠���6OEyc +�WA��F20��o_�1��1�-!�}��o?�m��2j|���OFji�d�Z -4�Vr��y� !*�lhY&k�AMJmHBP�m�A5�M�<99n�/�}C�\&PÜ0NJ�1D�#�ICDL�rC#�\n2ꕌL�M8qG��.L�� Ȥ�lF�#�\VR��G��T8�G+�����=���*�&��r&���hKŗ"�e�Xx�C���������7|��F� Ӛ|1l"_(Cvf�̐����Rήp��nE������� XHD�!�.�=���v%�N�N�p��m�cd^�{Nr���G��R��D��0�m�C/ES��!g����M��8M�i��V��łOU��֒>=�ە�\����~�&�ӡq�o�-�g�� -y�G��Q�/�ϮW<Z��N�.�C�̆�,Q�~]5�+j$x�L��R(X��K�s)���>j�Rx�lPzN�O���^g[O -��fr�����8/v���� ������<�`>oP���4iD����L�i6��FA��O:k_���@�;��D�)! -,�+�?E��\$�a�oJs��g��uo��P�w�T=MjZK��8�]�j��rL -қ���"M�.�5��䥻�3�*� ���z�&���5 �zM]��4�`�kT����>}�J��RE'���,���I���:�J�o���x��W%��|է�>�O��Ht�YN`h� -?Y�$�fUT�*a|� �Ӯ���͑��0�ƬʒIת5Ma\��SJ@�c|خ��6���FҲ9��4�E�LHlX�<�o��v�ұ��o�"�m3���|��)��=�����T4?�9�;� L��k�'��C�p��L��a���,)���9����z���&�u�����G -{C�����*9v�Ww��n �줬���s�k��5�IaX��i�vgМ����M�q�KQ���1�S��^em̞�!�y�ٮ���U�\�R|���>�f�%�:i��v�W����5��V�J�F�I�Ȏ���\Gj����ۈ�c�n?��29a��P& �g~����8�1�"�X9��8a+������5�hL����7NPL�F��(���<ɛ{n��Z�&AO�sJ���K�4tz�h}��3ռ�V��ʹV�-�QT���u��3E�N+Ч�ߑ��q���.�Ŝ^e� ��(�9�[����ℜ?�O������`�\�E�'ա���;�>��n&~�YF�n<���0[��|��k��`!y�=����z;��� �ь -�\,Q��a����̄�ʔ ,�����:�%��}?�+��q+gF���Yd�+}2�z��6���}놹� �ۇ�_lbĤbtD␥�Д#�c�H����WU�~뾜���H�N%?N���,K@p��%�4?�Y�,�-�]��E\%�±��Z�h�kC�f��BkX�$3��r%cz�2t~�eIG�zJqù -%��P"]��b%m+�¢�%��r�+Mr��$�B�Ѐ��|�M�9Q.���Sm��-r�`�(8RA�TY�p*��C̉V�j���*!A���J���K�`ȣF_o%�o��{�ח.\�]�� ��}�ڏ��^�6f�B��HT�P�p&d�<&F]���QU��)<��Nx -B����jv8�� ��2���2��>Zօ�l�o -�~%�?��o;*�Ґ��^>��q�x�k4��4�5��k�4��;3����D?oV�~�RJ�,�(8�'����G��F�����0iE?� �A�[����:�YM���g��xb��HO��\������Q�}� -N��j�9�`C����� B�{�1��>�<[^�bF#b͡CZ�¡�CC>�3}t�����&�5���0� ��pf�p���9�#6�����L��B]��q���ˤ_;�5Cc�[�1�̖�7�} ߑ���Q���Abp4��*�6㷘�^J��)7v{d�Kx4s��zp�ą�r�6�kgJ;��)�5�$Fル�PԬ�د~�l�7�Á+E���p�* ��;�k��Jx~�H�8����R���a�|�x�њ�,G�R��G_�ѐRf�MP���$7Ġ'�HA�}��� �� � ��O��m����0y!4�b�䤜]h(�����NY�bFږ�l�M"@t v L�l'��Z�R[mL -��,�w����q��`��2��J漜�L4YA��e���N.U!ŐvµeJ�%3�P3Q%�̵�t���8�8�V2.��s�I|���m��0�6 #���ȘZ7)j>I��J�ެ�|����W����w9P\Өl���rc��|���/��7��64�\���EF`�Edm��s?r�ud�q��HI�������ec����y�����Y��f8���ToT0���L$��<0����A�c� ��eÔ{B��χ�w��4�%��Ǯ��Ar�1�h�����W������T��\� X�pvU�� -5��n�Uu����k�(�O��"���-���s�?��٦��F��:Z7ۥ�+�h�B���*NEz��[1�h2�1��qP���U�$�On������Ҫ��F~RB�CG����R�2_�fj+�Voԁ$f�-�l-[���/���0f��06�B�� �EŴ�ZGs�9$|�HhDk�|Ѯ�k�G�k~�8�Y)[��ڨ��F ����R�T���}C�����w���wr���]��\�$3������q� -A���[,��B$'tOB9������k/��̈́AZ��CVW�2������'j��M���aR��njW���F}r���������ũ���?G��?3L�r(��E��6����~cd���*��a �3Au�� �K�b�������:z*\8H]-^&-g -� ��8�H嵕G�+��oX���R���̷~%�l׀��Ф�7�,�&l e�E���6ݑ��M=�=��j��L�,ȡ�݂��X�{���D#8��@�`9,3�ez��nf���wE�Mr��n^�C�="�YME�� ���\/y�ϥ����W��7�����{�'�\/�V�^�Ѳ��=�>�ٸ٧��0fI� M�,��x�b����N��g�`�Wr�\��~�&��1��3���oc[�F���U.����/�2���8i��<�'~V��a���ݫ&)'��=�^*��!:������iU&IJ��-�+�AR>����k.��M�>'�ӔKG��Ȟ¤�d�j~��P��^�c(�M�VE췜�f˔c���p��!��iF���q�*p$f.�9S���3oȇߋ�Ǫ�dF��?��A��nw��7V�]�>Z�\t�a.��k2I���{z�ӫ�=�b�4]�~�ϥμƸhj�'i�ё"�s8I0�8�����f��m�ҿ����Bk�!s�ŋ�����҄l3*g�Ä-����*x���ab����3M�3Ƈ9{(~�}O[A��SL - Vi���ǂ9�(�)�X���a����� 6?eCc� -��`��$P�šѴC2M�I�L��fV�5~�~�oݰ�]�I'���&F<#F�=�o�1~�hZݾ��W��<4�gH�HK������Y���C�8h�+ȃ:�I��2�j�,���"m@V�D�'��W<O�O�Fr� V����*v�MŪ�� ;���� -��Rٻ[l��l/+dgg���ֶk�v 2'�P6>9gβ���g۴!��ͧ -��m�=z���x{�/���G⧆-$�H�͘W�p�a���7��'����4�B�u8��L>�����+�<hA����)������{kL!�鯍P?�"2��<���\��c�#G@�mG���{��i�S-�r�<�����=�U�/`��0$q;a�2�&a�jԅ�ee��}�ۗ�!�9{�}K(`�~��O[��A�ܠ3V�&M��W�r¥�a�� !2YdX[����^��}~<�"&?�V}|d��I�S*�Ђ2�0�ZYl���1(��E�K��z�>� �ݞ�f�rJ�r"Ș���/���sU䋖��``���}a�3GsO���5�� ;҅o��V�S�.��ac�ƨy�����ʥ��L��_]�-8�(�T���P�%߇�/�x��!�GӴ3X:(���*LO|C�?W���pi �6���=n�6�[_n�ԝ��v~jK�v��Z�� �ʌ�*Ȫ��nNG��,����ѳ����b�dTH�m-�c4��x�KN���uoj��&�5�t�g��y��㹺M}H�嘠��[u�U�+z�1$�����5,C�5>�$0�,��I�Փ�"��� :[G����I#� 3Q�� ,�L%���,w"I�W -H�μS1.]x=��7fRYW��Fִ1�M����_�w��7Q,�LB%;D~>��O����h� ��SۦV���Hhh�f�4��s ei�4�n�F�����-r����I�g8A�s�F]�ñnL���*��Y��tWO�e�9��O�4;��f~a�����+�\� -�Y�BXT���E3Α= �q��E2y -��qI���bʚj�&(�UG���"�<皗�H$Z�X���p�-m����U���G -f�'�K��x Kq&4m�ݔX�s�R�;��I�R�2ũ�e�\��|��+PGڈd��$������ ���+��X�O�G�-jC�Y��A�WZ:V��)aʨSltL�QY�6\G�l��U���19zr?)@nj�n� ���7�n�j�$v$*Q`p�(PP�+�,ڰ�c��Y��=] ���@0�Ivrt�˱ �nr5�Մ�0&�7�p�Ei�m����<>��l�aT�N��aq���q�KI�ث�}�4_m?�U�)�����q��B��@\;�rM�58� ���0"����ۛP����{��� �r�4s*TrJ\���,y/&7-��K���wJ���Ĵ�7� �y��-��]���́�}iR����?e�[�g`��ԕ'C`e�����y�9l�ӓ쇼;ϟI�U���v�%�8G�N9����Yy���zrw��Sdǣ���<E�_G�m��g�%ƞ�������s�b��q۩-�*˽���y�B�?+z[����S�SĠu�s���3�B#�9j�(w�) -uԦЅ��8I=�M+#Eǜo��D�� ¶� a6Q�R2oV�}���!��2��!4��)?�QH�����?��}�X���V�Hh�� �6��������<b��MYbY4�O�f��l��5>���0��&��r� tܭ�E�@Oa �G#�����B*,C�|{�J�_�_�-���8ͥ5W��۸�-�����K`=�;����5�ddNk�~��$��f�@d����F�H� *�7,�Q���wMc-���O=J�zPc��WØQU�aSNx��{�s/��R6��3V�>s�s[���P%�X�����q��j��~�2�S${��ߤ�����f/RNK=�±�is��0�F��ʑ������SW��؋�#~S�r&�befc�jF��Pѝ�,V�b�!B:*w/��e��@�kcπ��8�Zcπ��X�����F���A��nƦF�gV�����yI~�k��jGa8 �)F�ز�M*��gg<'��:��-��#6����Wl����\ɢ_�ÕB%/��ea�B����i�G�Vּ��+Q�W@Ϸ���;��|�V��#|I��Q2�� -h��5�b�{��5�l7d�6�t�qN��w^ %&���B1�C�wY�^û��kU9a�cfes���,�qZ\3�+<۔�}���9%P����d�7!�OϱI������6{��n=��="E;�����p��5��܌}V95�S�6�g9*����X�m�Q�N�Q ��@A%� -/8��8�����l�����,8*�mqT������*�>�8 ��\�c����K�N�}Yh ���@+���.�U�qA_� 'L���S��j�yЯ�(�%H9�M�)�!��j�T�#E?����E�� � W>[����s�\�@]CqlϦ>�f�9'0������Ԝ.{�w��:�MP��I>T�U������|�=�`L�w���Ӄ}CNv�� ���yE�[^��i^�BM� -���h-Mb2��%(��j<����g�zZ��S#X���Z��s "��09�r)<������{s�8�/��~���ux��JU|��'v�z�1��ڽ}l��ٽ:QAUQ���Y�4:��/�� �� ��cc{�"���_&�L�}i���֔��:�R��kˊV���¤����q��&f�Z���um�ke�uO����%ل��&��The������V��䮏�D�'T���v�ԣ�sf�zܥ�*]�J�#5��S������dz���oN��*�ٞz%}ɐ��7u�c�j���nڵ~<���z��gSz�V�72�Qoғ�No�S��7��sb�Y�N�7w*[d�J{��I��.�d0笎�'�WA���l"]F)�~�� �ŻĢ -�nP�� -PQs���fS��c�*�����|�ܨޯY��R}A�҂t���ZD퉶KÇ�n��)\��Z�j!��~^7����8K��N�H���8��E>�yfK�I��a'�6;����6���䞂Z���sr����S�.�v��/�3T�r���� ����J@���S4��;P� -붠��4z�鋃�*��Jߝu²��[eu3������^���{��6�~q5Yq(��x�%�����v�O؇XuZ����6u�A�L�ZVP���M$��Щdk�H� '#�k �������7V�6gO�O��Gi��y9���X�� ڞW��.y���p�����Q�L� @����A�(�����g��v���5���6��#�Y�1講�_��/��5e�[c��c�]�ex�rs��X#�Ԁ$����A�(Le��^q0�EYU�(�+Q�Ճ����U/���Y��F��(ܭG0o�������)�wzx�|Z��J��m=[wd�9�JzB�� ̗@��a���#@j��q�ѫ�J�;��\O��]�.ل���Q�u -R�C��PY���g(�rs���:�ˈ�Z4kQ��{p�PU��<DȖ��܍&x6���O�@�m8���m7��v �]���v���6���0�,�/��0��@}T�RԠA^� -���#L�HU�s5�Ϣ*�l��u�✉Nt�R�d�5���>9��Kf:�f���խ���v�� �:�C�%�����/��FԊ�\6)M�ru�#�r����~��)1�K��UgQ�V���ٰA�PƑ��� sU�l8n/�K@��6����q��p-��6�Ӽ$֜�CE�7��&��z�=M���n����g���<�=�k{�#o��n+@v��jzӝ� �������z�����D�j{M��)#� ���;�s�E ڡ�C:%~��)ʥ��w�衺[��0R*t���\4B-~��Q�#��O��*�uw�����B�gWG��dZTJ��H��Q��h�bi�=���BPU:�ַ`����;����h�tWx�y\n�/ 0t%�W���ܝ���L� �������s��[��U9�u��%wP�,0G��j��h��U��\��ϨG -���ҝ~"�������aن���C銥�r���9�<s�نKsv��yn�+�sklںy2zO���^Y;�H�rN���4W���oZ���ai73�=�c -�I�ܫo��������Y,õ��0�郟��p��]���܆�N�\�y=H�,ĝ�ɴ�,}��쌶����?��}W+���CѽP���e�������?`S]46A~hRf�Ӈ�TE˰q���^� ->?����P�^ر3g&���S��V���aF@�J�;à�>8誛]a>n��^|��JG�+�6�y�b�J���6J�@xR��s�=!Mǰ)ju��5�{��i������k�CwYꈷ�0�\u���'9�0~�����p�����1Z��c��|r#MY�L�n�%n��lP(Q�1l��Y���9BF��pF�.Y��J��/(���\�0�B�2; �R -^�Z��� �h8�&��pLj�ܡc�0f�y���;�����Ȋf濌-�}�b��y!� -Fc>m&�W얃'�%�`6�[�'��nn�JB����L�h�c��E�>n�����%���$����)',�x���,S0>s˗��o�� -�E��ȝ��?D�����;0�5�߾�Qp_��O��J�7W �s5���xl�|���)����вfgU�J��5�<�-����'�o�]�E���@�C���k��S+�]�|�ٌ;�V���2��Q���p廎6��̨^�eRRG��6Z8�����UM����*d�,4����N7��z�g���� }�q�h�LREZ�ȬLYu{L����(m&��u;N��T��n�E\~m���ˊ���5��U�0���M6_ǙU�7�S����{^����W��U��A� -�<��~' -����z���ށ�H=[�~#���w9��I�+{�n� ��Z&� ���ᥔ�e�8D��8�BQ���ë��JT+���f�(w���'c�k��6$c2��~�|*�Y�zyU�>̍т�A����s�{*�>Bj?��6�pMGd�}e��.Z�C�4�_xj�:�l�}�~%e|DƓ�m��T�q��5N}\��bZKk,O���̎.��Qz.� �P��H6�>�כxU�q -��l�DĝUu�Ԙ'*@���!�T����s�(�Z�4� |�WE�� X��e&�����D~X��jTn���j�ZG�| Q�f���凑�m� ��}\���0n���~<@F_�s��Z�1Y�5��C.�6R/�2n�/�e�v^U��SF]: չ��_�,��Rre�<F��E֙>�{���e!���Ա���=�jDw�o- -N���7ߑ��0��� �� ��"�L���1�r�l�:Ѓ�0zk87L���v��(y��Q�[��iX�Â��;�*(EÐթ�~)f�{b��W!:����N�M6���*cΞ��QSNo<jK�-�����a�5�?���A�d�*\��RB���F�C}���EPxo�<�!o�n��H=oH �Z��qm;hm&'A�T�������Mr�V�ږ°I���)�6]�$&�8�R ����t M����.�T�ג[������/A6X�27i��-�Fp��3<+�����ܯW����E�.�pŬ���tp�B2W���u�n�W*=�Qlgly~�=���|��>\��>�4(����)F�LO+d��ʊo*!�7��vv|!vm�l�p����.2�.�����eB�.��e�˵�Lr9yn.J�����a�f��@lޏ x��}���OB#����� -���ûR_2�j�5����S}���6f�0�_�����2=��d#�8D�{���j������Y�����"���z�+4R���/Y�C��+�O�����ʳ��h��t߄�h���fz�c�������^��h:��[M �2���Q�P��nc���h�����1�Iz���N��UQ5�|�^U����^Gx���t�ǜ�2z�Ь ���@$݃�[R���ch�><���䇼�E�� d��sũ(b>�u)���=�/�'���0�6���k ����Tp��`�6��l �l8�|`s~{pXȩm8Ը9����y��imU7��9s��*��:�o0�?��》g��P��q� *�B܇�"k�{X@`���1�8iv,R���� -�3���a��7��S��h��v���_�x#���x�S>8�����V�V����L�h�^ c�s\�K0�ϨP��ʒ�p\��C4�o�a��z�y�9�ƻoc�!��:{E�[��8��5>�}5E2��߃?���>���_���]�����,te��Bbg����ۮ���#�*�w�z�c��kb��I����T�RTk�ٺ~/�� ������o*���I�u0p�1�B��uQ�T;l�z�zن�qtO�Cy�������z��{\�C�uuL���J�LU��� �� �!�r=h���U�h6�%��"�T�7o��T��xST�aà�<�F���kI��`�E]��5Շ_K���߹��'��*�6XT��9������F鯈�g����ip��M4#1�v��z�>�\I���w�5?]6|�j�?�-�E$�"����W0�KP�ղ�� �B���6���p��q�r@������.0Fx�� [��cC� -I�a���_S��Ɓ�����v,r������Ѥ:���i��=�=������Y�a���3���хel �B�ἷn�а�WL>�����|�ΏQ�U��f�,d����H�`z9J�����,e��+����O%�ӟiw fU��=��rvYZ"�n�Z�6���D������$u���2?���Fԙ{�rWW<�*�d��#�-��x��j^X�>;��c�zl�=��c>e�ͱ�6>(�7����5�6,&0��x��1f��������vX�Ž��E��vx�4�{?���������U��d1��dK�<��yNߓ������ �e�.GB ��Gfb���F�����A<3��U�g�Zf�v`V��=@�Z �c��K�d��� �<���$Ŀ���M�P?��.^��u��J�~�TI��}�ҿ$�3.{��𰉣�(U�i�_�U./�Wd�\�/�:�@����O��f'�x|�w�q��px� �Q�i���f̈́伉�E����r@O{8�SI�|�����,����b?��!�x�;J�s�d�S~X_�g�:=#ys�����:�g�pb�/F#�4F���H9q�&D��[�R�jko4Y�#W�B�d�R�|�?�h�T��M�K�tZ�GbK�~@������ǣtoI�����+ֿXJZ��I����o��пԥ+#�x��T[I�ݕ0�5�>�T�Է4����h�(?[�'Sף��(T�?��A?S���c8V(�n��T��*5ЩK5m�|�bDP�xp�����5���C{�3iO��؞��� n$U�@dQ��+^�l9b6L�B�j^�{�!�2�֣��.Iwl�֔���v:�>�O�5D1��ԏ�s�N���ܫS?��>�B����^�����-s�(���U�̇��0�b�[G�1������L�'MR�r9Ż�� L�)����g��␋=W\�j�Af=y��\��|�C,�$�I��?Q�A߲������Uœ�����A��'�O��G0�ڗ���$r�@��x��uY2����Cr7�fQxn���yE0g��8�Oa�N�s=r(|O�mr˝�/�'��H t9P�r�D�#�k툠���h�[�ΡڱČU5�j�e�Z�l�־�����7q�Y�m�DY���?�`��(?���K}]n�8^+j4D�U�%��0v�vƲJ��k���ʪ Fz���C����1�>H�|���8�?���]1&�<}��+Vp�Az�1�Ӓ��P���$����T����|�~�����@u�L�fѹC�Ä��3' �mߖm";x��J,ǷL�����B|�ۭ~��9��Lb���7�:4�t����������8������}�κ �7��Q��P�� ��`�����}�O��ӵ��m�q^��ø��ϼ�$��K.�l�b�o�[𥻛�ĖA�ưQf EMdḮo�ę{̬���v��]��C��� ���pK���`�B�����A*v�u�(�:B�!�L !R�����g��,�D�#�����<�]��Z4 RSi.1�� L���f�k�%ܬ;s����` -8�`�sۙLNc� ��g�t�i0�����rM&���4M6�&O��^��$���'���:LC��Ti"5y����a$!�\����� VAo�?���iI f��*f^ȣ'��H��h�C���N�/�U!�]&��&By�%7IU�-]8.��@]\�.�njuT����A�r�ﺡ����<�K�7���K�*���+#�>�͙K��^����C� `ӕ�X� -��U���`��Lt����.�$�p�@,�_���?����O?�һԧl)����h.��E٪���$'���$�wkd�ݡ�F`����"�`oٜ!�Ҵ����xQ� �9yu�,����*9�,x�˻(\�uG�)@�S�zR��sV���h�4+#�\=�2 �)L�u��+��H�!�r9��bV�E&��D����x�/!+ ��R�-�����R�ei%&���}T6�J'Ŕx)C��)C�a�? �<�< ����(�nԉiu�7P'${�%tKi�L� �,��]�Y���Db��M���"�-3h�Z����۠gL뙠Ͷ%�y`N�`x[��U�,Π���F+�/D�1�A/Y�K�������G��<�2�s.ZH��l?���ǀ�2�݁F�7_��}�$�/Ca������z]��uU���&���R�:h�,)G�8őD�au�J�Cِc��cT��@¿,�7��xWG,��K �(�x)|H��`ɲ.a��7���Y#����)b�T�������z*�gsP]@���������M���^�x�R7�8�-s���_Vc��g�$ -O�<,�[b.����6������d0h�ˠ��6�ޙ1����)A�'��Q*x��B�7�6#TY������/�LA��>%2�M��P����q�%J��=����sk�Q/�Fr͝ -�7Ʃ ljb�>�O� �,S��;�Rڑ�;Gw�У���a=M�=&�}9��&�[jkasb�a�9v@�^!l.S����^!,�v�Żu� ��'6�ɛ������[��|�:}��+�Q������LV�|���~DhkF�CƠ"�)p���V�S�1 �� -�T������h8����?fc��h����Vv!L{�a�5��U���J����q ���*��m�BSZO~��b���%t]�s�贴v�e=��^������ �yB��l�g���鯛s��p$����HE7d� ��3g〙}�Lț�0�b�03�Әy�?��cz h~���Gq�<܄�h��=ކ;���)��D� �_�~�]�5ݿ*�H��4V7|:/�A�}s�`]��!�\��4'�1�|פXX ��8T -��q|D�l$o�O�tq����5�z4\�^��4��q��z��<� ?�U��P �$���(�y�A "WH8��d��̤�u��)���}=��㮔�j�������*Jq�ʲ�/J]S�L�64�,0�)�@[�훹j -�cT֙ٓw`$?��4��,X�.R����+%|yI�SuÄ�d���*�KS����:�""�J�:SJ��0�W�u�6V�:�Ҳ`:��<�8A��'ӏ�,��ڒ���-�iI!q�ѐԏY�QΘ����x|�Dӷl��� -@��]�G}��A��&�j:2�F��k�r3P����|H� ���ms�3�=p��Ꭾa4߂c�x��hf(�t�Տui<D��1I�[ -�W���7Nޒw�\%A���hH)����Է�����Y�F;��������$jB��O2��@k�#��s�ig]�+������OU4���E�4��<���6��0��4^%�!c%5AIm��{���7'�1�Gž䴛��O�*������#�C�d���ts�;l7����'s֛s���<�.�[�ǻ�F�u��E��j��|TC4.��S ����G�(�R+A6pb -2�f}�E]�^濥���@y��;B��' ��`^��!�G��� �R -�3�-�8n -vjsRf�Ӈ�T��t�I��1<%��A�s���o)G�h��!�3^� ó �2|%���s��e�q�������0��b�o3��a�o3�����`��Cט�)V6&�ob0�Qt8�b<W�xx0�}C��{��\(|�l���5���\+����b���~a��_�B����/���3�2:\���_z�����5��LO(���x�!�x���P�}�;����M���Y�J��1�1j2~��Ca�۲V\ڿL���ML"�3t��2)X�����<�x��m����!��㿽A�[���w�f���V�܆���l|k���������8����Jz0�znm���ڥ�t��p������@�� �x��A��%ח�r��c�kpC\:%o�?����w�<���G$�U���Յ�0�ͧ�u+�y��^n0g���G����`��a��C�|I���ye��i��Z��/�f���4^�:X��c�*��ў�LIr��s�Zt��F�i;p����N@;��m��C9��Mꀍjm�PA� -"�O0���n@�s7�85�g��[����)��r�f�o�n�UiU�\�����b?����G�n=ڄ��cmu����U@˸��M&��dR ���yZ9�4��X�4AAƞn/YVW�g@D�u�������I;4���L"�� JvUw��ܪ�����2�=E40Gףb���@�,[~æ�U�3�h����o*� -4�th�!z�2�o�o@��h���7m�e�Cc,�����l�A������M���8G�8`;���imF�vW+ -�G:i�����o6��rܫ��C<��.���~������x{�;ό? �<���Γ�I�X&��U��DК���W� ꋷ���$'��/B4P݅�5������p��W����ʽ�F���(P�<|�`�$1�6�x�8�߄���N�m�Di�<�x�^�%w��e�5���D^\���9�d��F�+(g`�O��p@ta"��<���p{�#_n��B��P���o������le�ܖŠ��5 ���2��:�8��!J��]�$��Dٳ�(����J��[G!� ���(��f��+/@{���f��tRt���ڤ����9'8ܷ���i3�E�r�W���eI�l�!��R�Ym��|��V MB�����#���"�(��ht��@��6Y&S6P��=��(�� E@�W�*��>�Q��@ʓ��� I0��`!�;8љ@r�lO\^?=@ D�D]�))t �+�B�e�D5�� h��H���/���sN�`֬K⌓�����a��*DC����ih�[gN#�ߋ�i��ɜF����~��q�1�Cf�N�^�^���?��>G�Ҍ��իT�F?i�_�3 �c�xQ��c G'��l���D�T�z�c�C�>`�ԇ$=�$����e;���0�b�À�{M�CzL��+�Y&����`�K��n)��+ޱP寚���ڬ��[���z���%����M�l-?�_^U����gǡ8�pv��O_ǯV��T�[%���r�1��W1����qC��~k*�o}&������~�c<�s+�oڟ[�ذ�Vٰc֬�4"����jIi��4�Fc�j2��UMU#�&G��1��}Q~�@4��*���s�z��ɽ$�@�Z�`�Q���7�W����U�[��>�w��S16��DN%9Հ����Ҭ�#�����~����z������0�4"u�ʅ�A�ǻ����.y�0e��&��"�_�%�=�� ��=�0M�5�+�l_]�_��<Sdyu7p8V�䪬"����zd��8Fj<UԬt�-�ϖYG����!m"z�6� �C�[EL��Sn#���ѷ�Sm�d�%��r`~��b�:����+�%|����9��h�[m^g�l��#�[j��;D��a;{"������'�����R�Ae��-m�vH>W9�C���9��2J�Sz�*'~{m ����hLC�Ny�n��ܑw�IT�&_S���ʖ&��\�6af�aϭz?U F�j@��M�1՛�nQa�Y�O�0��@�?��6�pM�5���;0urNw�����:���Z�J}>]��X�-�=v�5�>Au{��d�f�P��`���uSv�m��ζQ�t4��|q�7-�s{7�;M��i7'H�vC ���gސG`�Q�0G���}~g�AMąW2�)�����ю�oab�t��|�S-�Co^�75A�� ����PotS>�����{�Cj4��`w�`�;"�C�x�1c;�Sc����\ځ����,�"�Q5����&U��w;;��`����s�S�c���!��%��DZ�/�E�X���>b�@,�`�6\݁�,�ezw��ЁwVO7�r��-�;�.&�.J��t�1�_�!څW����/'{���e�D��N�R������є -e�~�_7Q����.0�H�z��ih59���3H�˅~|���z�.�CxH��ǿ���h��.!�F�,�[d���ށ �V�..�s+�����s~"�L���ޣ�D���#�f�����6���!�-7�f�c�6��n-�|���n =0���-L{��h���h{L��u4�v�hk=�֙�Zb�lojɘ�������F���UI��5@���~��U:�� �K�B3(�Z(�e���(�0"�/�X���}c�����yE����LCz�'�X�y��;@k��A�j�Z,�b��L�d.h6��&R��-띋o�#~+��v�fg7Z�];�N�ϧ�S#nv��*@�h����w��Wm�n�xJ[�_gjH&5�@���8 ۋ�R�c;;M��{`�)ʥ�p���5�nPo7 -ި�o�f��bj �8G�cs���K��3��>u����ȧ%̒#������dL7���Ry�nb�*U��� -?�n�t����<`��[�!�C?�^��L���qt����E�Db�!Zf[Tr)UۥFn���H�B�2^k�c%]�'xc����X�! �<�����dqF��gNP�a�7���8,y�a��ۭ�[Y�Ծ�: �{c����+K���ͼT�K]�}V͵X�� ����ѐ��tt��¾D�g���5�������*p>5z�"]+[�Q��Y��9d<�?�lM�ʪ]��(3���鬒 ��d��/ �#�����-��̎Ѥ����,����d���yv�Js�t�웝$��n�}�~ ��Z������<���\��5�ù8�����\����?�����u�Z�#:|��������M���\����ɉ�`�1/I~����<@��Ǐ#���x��p*�P�xEq��#!����E"��0�[r�q]����ZU#�6�n"rg��mm]��l���1�l��f�� +9�,�r)��o�MU7-t�0�HJ���R,�*_]�.��"!=�D%9���P�0�=�)�V{�o_Po�V~�ߍY�AC�p�7?��.:�[��ݿ�I��8�_��X0�͙�MD���D�EX܆1�����u��H��(6��~籉�f{bH|_t��+�_T;x��"�j0�O���M�5<D#\�b8�~~A��Zbdd��A�%A���\U�O�n��]�sFw����X��d�������%$����6�����d�h��? E!,��ؕR[��f�xN��-�����-��0�,�l�i�Ϡ�O6%;��R�+��[�^1���ھ�������� -k���o�N�GLFN4�����Ff�~)����'���=U��pē7�p��_�(�1VN|"z��&-�L�X'�����D�D����@T���C!͓̓c�p��x#�ʥ�n�����;�:���{C�VsRI H=:W��l���eH� -³��k�)da�5?�̮g�Z���ֱ��q�V����%�S��Oim�U���U�o�$ї�f6�Mp��̓B�on���y�� -�:j_� -9����tW�Y�Q���Q�f�T�C�\ +�*��5��a��K�I�x�(k��6�B>:c�� ���&�k�[3?� 5Fj~=���YYвI�͢8e�/�G!Sڥ6McxGYBW�J��d\�$ ���z<��d�}"�{�ʡ>P96�6 �Ѻ�sWUJs�ƼF�k�[f���!O7]���xfN�Oc�$�6���>�ا���o�55j�Sޝ]�<�BX��i�J�gvTg�N���/����_ze��l˘�Q{E�tYz-zb�s�\Y��|%V~s�e��O;S�WP�5��:�DRdF�E�8��|�Ge\������E�(��&ǻe�Z̎��#.��g0N*]��_}�μ���Eh�Ѐ��/Y�ޒ�4��q"'�eގ�5|��,��2>�F������D�[Ll/%�Dd�M�7�Ca:IL�/ĄB�I�V�D/��� L����ﭕ���AW��^���{�dq-�&�J������!16�]��z�l��eqtS�LKS F姾�$2���G-z���Hu�I�ܝ~�p��լ���y���,����p�hnt� yЊb6_�>+D���-�b^�3~xe�^��v�?�h�{)垑��e�#���C!K�$k���٘q��ܤ.��H���L��~�`����~�B��i�rc4�"�U�ؖ,�*+�Pi��&�V�]�,�}&��5i�b� ��.�PLр}�p-`���6��{%MQ`/����f�U�6<̰n|�-�q�&_#)��t��4�[2/د��z�����`����F/��Ot[��������:t�{.6�+�d��jmc�Q0=� x���Yd��`���S��|�����r8g� s`�V��F�L�pfqɲ,b ����2>l�z�[^�9��*X�GP���3�qM��uT�O�Mk@a�y��(������ ���黜��R�j殚�w���U�D�e�N[B������z%�YV������Q~/����*\&]��Ē�%�У}U�$��s�u����U�z8����Υ�wS��mɳi\�^Ry��$�7�WuSyS�Z�\�g�h��J����t �����gB�Я��.���:��ݭ���Ð[��ݛ�;tH�Sm��E��Gn3R�s��u}W��d����p��u��Gg5�R�ԽRO�^si�;��f�����+�Yx���u�\U�S*�z�Ҕ�![�NY�C�H(و�a��� +ʀ�{8a��ǂ3�ƞr"ϭ��t�[rf����T1������o4�.� Qd��x�3����Jf_��xm�|S�Q��E�a�S�\���a]u�hy�}T��U��Uʵ�w���㕞����µ�@yɵb��T�`8��]�[�I��iL���$��C��^�y���5�f��,�)�g�q�U�ƕ��r�,���@��f��1 j��~��8 ���"���;��lQ���=����BD��N��b��5�k��N�y W�0� +����\�Q��������<E)@�� +��ҚS>��g-� +�Jӄ�%2g�5�%�?_�`�D���_������ 5nxC_�>;n�5��H�O�+�s�P#��H�*"��ͮ�ˏLK7�A��ι��#p��;(O[i/GҰ`��`~ByN'����?��M�%�����cµ���|L@�š����N��'��`v~!�k��w(�O;Qe�@Svc+ᾬ�O�·Zr!m'k]��.�_�0Z��a1)9$�G�Fv�j�h25�9~�����_��Bbu'F��v��5�D1�dY�ˬ����"��v���4-�_�5J ��4jjPG(�g[9�m��Pvc+��Լi +,���Mqn AEm�PX&5P�6�)iRA�)S`ʸS�A;D�1��_��,��>�O��o��r �����*Ҷˬ}�u��%n�7��,�X��r�^DF��/�{�D��:`��!y����Gk��M;�>Ӭ략f��Yrv_ސ�yCvf#N�Cpz�N�ck�ģ�UC�4Fq�^�[��3�~ڈ@� +_F���ش"�ΑjE�d�&� ]�-M�lV���*DaB�{��݊�Mӥ��j/cK�6�A%�J�����_�P��=�d9�n<0�&B�� +��v��=�� �'���*>�$�6��c}B��U�P�q�*f|ܭ���&������`�u�fX�j,�{�^�����Ğ����!��Y���\g�Ω�n��ls5�:ja�!���?2� �ӱPYX�xi��� +��`���c�щ ������cDÂ��hh/�8������@�:���/Y������ �n��A���]�U`��8�!}9'��WE�n3�U��;�kU�eg̎ˇȩj�y�&�@����t��T�rx�1n7�D��c��쬑��G{�H��qn��e{�J�A1��K�~:�u��M�Uh��2Gpي��}X��8���������1�J�_�_B>|���IXT�5#i�'���X�� J� +�M>����5����1<]L��0I�`��1,\c0�4S��V��Ѱ��X|��8�WK�L��= ���d��S.�YLh��;͠V:<Bx��#���t@�/5�8Ǚ�a9� �� �l�F� ��s�0�&�����!��W5ك +������m�͋�d�(�CP �>T��X�hNK3�Y�fD�w�E��;�e��3��K��Ƅ��i����7����;z�@_[�R��Ӳ���X��t4�+&���Xv�)���b��aF9vS�CM]f���z���@ߴ:�q�i៧�?��_�P���/Y���=B�7C9tFn��l^�F8���"�X�2|�������jn���<\#T�\nА��yt�^�F�����o\,lϞ�q��D�3`kd3έ���1 AD� mȵ���$��znX=((���0�1��Sg�=3�&��Ap�\-PyF0�ol��FV;|��ȗ�Hnj[2 ��u��E�`������0k#�\�1#B�m��9�:���}dir=e���1�����Ђ��ʙ��鳫����j������P�|�P��xE^��{˝���p�H��x�M�$IL*W� g���ve�H4#�psT�w�I�z�ޞq�}V��N3�@�'�h�V�p1h�{�.I��-�BiO\�UdaHv��]��l�B �<26n�&J�<� OV������d`,�߾$b:�c�[B,����~��"�e��&�����Ҥ�t �h0��� ��ABT2���L�d���ڐ���F^5�M�<99��r^ߐ$� �0'̱�`�r������,���z%#�D`cN�Q�*�ӿ+2i"����*�Հ����S�D:N�ъ�<s��/@a���3�ؼ<C�^m��R$�/�th]�~V��q|�F`Yܨ�aZ�/M�e�δ@0�?ւxA���.Rҭ���"3��(0d b>�ŲGrҮ�a���IN�-y�Kp`�I��?����aV��H�-s�h��6�{�~�� �Y��!�"M���ҨX�����Zҧ�|�2��|[����[c20�ͼ��6wT!��(\>�����*�G���i�t��br��ٰ�%jԯ�FrE ���t] +K�s)t.��|ه�] +O� J� � R��l�I���L��؝�����؝;a3�uv�-7���e.3MQi�F�h6�f� %�QP0����w�)���~���GJ�����OQ��C* lؼ�Ҝn�lf�$*Trĝ&UO���Ҥ8�jW����A������g�HS��o �5����̩Jh1��^� �i�bMBC�^S��5 *��n���O_Ʃ�)�T�I�v5K:�8w�4��Ny���[��4���Uɨ;_�)ǴϺ�Sn4`��Z��O��I�YՠJ��,���e�rs��"�1���AҵjMSU�픇�����_���a#i�Xf��"X&$6�b�ٷWB�b�X��7H�聶��X>�tօ���O��N�_r*��w����&��5���c�!_��j&�F�0ψO\�~q�q�K�f�RUO��PO���#���A��Z}E�w��ګ��s��nvR�o���5����8�0,~N��1q�3hN�s�f���8˥����{L�T�WY���w�n���{}.E����ḏ��k �N�y�����U��pͧ�U����g�<�#c�A8ב�jt�6���X���O��LNد)� �5��_{�|�8�g�H6V��N� +/�#?-|M9S�d(����=0�%`6K�����IГ���d���- ��F*A���L5/��;�r�U�}EKcթ/��L��� +���w$d�s"��B�K|1�Ws����ED6�j�V(+���8!�����(�&�,VQQ��qu�1�����=B��I��-�E�x� +�c#���h����6�CH�zGy6��������#!lt��{4�%KTa�yX�$0:5�2a��G x�w ~�A����y�@� +ř|zd�J�L��d��k���@ߺa�C�kB�����1��8b)54���%D?/A��Uխߺ/g�.7ҭSɏ���"��iI!͏F7E� �v�pW>qFW �pl��$�֠�Z��ЪY���2���\��ް��pYő�^�R�p�BI�*�HA7����XI��J��h�d ����J���4I��40 $5�xF�v�Ն� /G�T1t�\.X) +�T�@*U)� +y�s��WM�2\%"h5��T�}y�y������d�M�xO��҅+�����B�Q�+���\R�����*}΄���ب�X�A=��6��'T�� OA���f���A���(���+sk�e]��FA��~TB�s)�a���B- 9)���x����F�KH�_��VJ��3��%������RJdqE���8Q���<�70�4O��I+�Y�P�zIo]H*�K�g5������s��qj C=U�se.�ZȮF��Q+8���-渂 U#$�N�Q�1Ɣ����y��ŔFĚC��$�C��|�������6�Mlkʑ�� ��pf��j1;.g���Px+��3�� +u�6�e2/�~�����n�F�W2[���5|G��BF=�������ڌ�b�{)�ڦ8����/��T�%���:HH����"��u(�b���0���f6CQ�Bb��Q������9��i�$<R#찯O+a�m��"�㸞�g�KI�o0�M�B�Fk�y��(��:7�!��B��(4{I"n�AO�/������A�JA7�61D�Z��-�a�Bh"�(�I9��Pl�)X�E}��"Ō�-�"���D���W����N2��R��ژZYx�(*�i��=�`��� `e�/���y9?`k��nC�T���\�B�!�k��Jf��f�J&.�ki�!N+q�qB�dT窓G�۰1�a^m@Fj嫑1�nR�|�s�\�i��P7�i�T%�R)�r���Q�V���F"� +��_,�o2ymhz���S�������1Z�~�����ۑ�d���c5N����jy�w�+(���'��pPc���`6륙H�_�y`6�O\�^�c� ��e��{B��/��wރ4�%��Ǯ��Ar�1�h�����_������T��\� X�pvU�� +5��n�Uu���� j�(�O��"���-���s�?��٦��<#~F���R�_��w�@�]�K�"=�ѭZ4�B���ՆG#��#�9'���g ���u���a�Q������z9��T��W���ʮ�u ������e�������4�"}c>R�ƆP�q�������BXK�H�r�7��O �h��/�5p�{$��u � �m���9M-��I�/ ���7ٙk�Jx�yx'G��ݕ��5IB13���+\�0\�Ǯ�{����X*DrB�$�sƽQ��*���}��L��Oi0dep *�+�=�["�D-��I��E�d낛��U�E|�Q�ܦn�o��9sqꧡ��a���S�ʁwrQe����=�m��+(� +�sPC�LP]��A���:��������X\GO�����ˤ�LA5A�G����9`�t��k#0�rX��Ӕ�6���p�Q���^���%ׄ �����Ц;��OҴ�颇 ?T�X�J�94�[P�!�zo���hg��,�ef�L/P�������)@.�=�6�ݭ�kth�G�5ˡ��=��Q��%� �x����4�ct�jby��>�խ�b�l(kϼ�~6n���6�Y�oBS1K�-ީ�%�9�����<�̣����������"6��~&<��-cl�HB�>���x�7��E"WfC���|'��g�����7�]��{�$�����K_6Dg�ёr�9��$I�W��At�?H�g�{�%�I��dt�r鐞��S�4�Y͏qj��ً�be�Y��U�-��2���/2�zvfa�Rnww\� +��KtΔ�'��7�����cUY2�Qa��� s|�;|�)��Q�r.�u����&*�~���rϲ{"M����s�3�1.��IGZlt�����CL*Nz�3���<�|���*f;���}Ĝu�"�ko�4&یʙ�0a�-��n>�GG01����L���a���l��V�2����UZ$��`��bJ4��Ģ~X�$l~j��O��X���:ܥ' �~q�B4�L�F�'S�&�U|���[7,pWw��<��q��ψ�v�#�[g�m�V�o��+9��&Ғ�B��#elV����� +���Ҽ�v����&��H�!����l�_����S���n��� �����*/,Ȏ�=;��B��T�n��=!�� +���;����]��I#���OΙ�l$�_���6mH*v�e|[(D��~o��y��#�H����ޢ���3̽��F���7Tٝ&CC�B�#�G����x�{E^�-;�Z9E��BxCQ�wvo�)�2���PDfӖG���psLs����H>���{8�uʡeP���Q�>���'�����$n'lS&�$l�T�������=��O~�?D:g��o ��O��o��}�8ȑtƊ֤�tb�jY���=l�� 4!D&�j�"u��ыq�Ϗ�]��Ҫ��s2)tJEZP�=㫕�i���KP$�䨯��3� -�V� �$�R���*�ʼ���7wO7��Ao7��Q��H�Q�y�y{������O� {�a�\�W&�ha�̜��p�L �M��.W5"���,�!�w��Y�t���>G��q/����R'�I��a�^N-]����D�A������C�%F!P��O��`����r>n�ۻt��_`=Y��J�������:�n�!J �@r&I2('�.;�9K{G���:<x�A�g@��MN�^����x(�B�u� ��3gBWo���ޠ�;=�l�=Ã*�*X����'�k��'@:?%�@c"̪�]��Rqq �ٓ��s����,0[G���O4��U����:=DQ��4g �Owa"��Uy�nF.���ׂ��(*�� ���>Ը�!���I��R*�N��F�����'@�-�� ��:����(��I[���O\aK�,`��x��ѫ&�qD��'��PG��<����+=�������J�/q* �f�Gf���DF��}��W3Ѓ����oP|7*P��T��#����2�6<H���z#����C(:����'�|��d��%:��o�!��^ҹB����>��ޭ���tu�N�`e�-��#�-G� 7&�S�.� al��SA��1�$�R3CF�+\R��qtP�6O�D6!�-Q��oi�E�J�&��O/ F���gd��I��:O�E+��πq�Z�3�*���Z���0���Buh{e!2���e^W`> ��d����Dk`��4ol'FyA�}�H�c䫖=h�H��B),0K_~���Ʒ�x����8Y�BߕlmO���s9�kWB: �r*��]�%����g.I�E��Mr�7�p�X�Qmm>:�v����R��po8��7��YǬ�@�x2J�$��~F�R��J> ��-`��܆;�R�3 -���R�Ks�v�wR�T���n��d��1�t[�4v��6�H���z� �k6� �+�K�M/�/`�38G|Fyo3�>"xI�5��5��-ԣ��CX[���N^"���ŵ��Q�/*Ⱥ� \��_K�r��ѻ�,�Vk����VKNd��{l��\P�p�]�G��+�O8X�����J\pj% �H���{��l�\������6�6�/)K���e�%�>ϸ�~� 0���m��g*9%�Ϧ�S���O�)�l�uYc�MPe�O�b7UjJ�O`Big����0J�[�q�G����M����R/��p��N�@��R,J�b��gõ�N�`B�\1r*�H�d������"�v��&i^y8���oڭk-��!� -Bbԓ&Ѓ�����^lykC�*o-f�^���ɥ%x�8Q�ƴNHJ�EWN�s#��~ � ��c*d �v� �b`3u�Qa�>spdҎ�O%_;j����4��_ņ��w��]ʯ7x�jܣ�y_�C=����$rl��:<U]���Xg����@�yG:��l*ҙ��>E:�e�4���^�iW�H�o���~�Km���inՠc�ilG���[u�6C���N���x+.�����P>�������ۭ�{�m���˰��2eU�8�OVUE��aN�[G��x4�����V!����6���m��Q��vǿl��ϸ�`����O���e�|��}���D���MS�Ub�>!VE�!V�L��T�5���*�X-�P%ھ� �)�5����_�ˁE�ׅ)�� ޗ���U��g�����TU�/u������[$�x�DB��5���rV/ob -�|W2��oh�q���q�����*��W|��p�� -�y �C��,9��^����L.�����$#آч�y��>��璢��M��.�@�IL�BH���_f�y�9'q��S1����59^ʳk4c�D��+ �+I��>Y��%I�"� ���I���/�����Ν���B!�lخ�qz�r�^)u��'�W�`�@��q�#�8�#���HnJy �h��t�LRJՈ���J�a�_�b��i�9�'H�j�i�`O�O��&ʽ�/;s�8g�3K�U�[���ry,��3Q1V&����ʅ3�A��2d�)h������c��Z)gL8U��?d�/�eM�gMk�WF�Ey�W#q��T�m���v���w|%�>�N���JON�i�1�A��k���r7P��p�j�E���/��%�-`<L0���h+(��r�0�&�\A^g��Q��+Wb*8�d�:���B �Onw�_f؎|B�<�/+B����ry���g&º:������A�k��l�\��Bf�*� -��!.�����w��a��E�s�Bg<P���:0)'L�b -���̙��9��L�V��\�ጠ6dߡ�m�H�l���=(� a�v�"��ӣ�P|,�X'!���$��7��&.5�I+�ꮼ�\�-O��˾�-͂�o;ب����#!��Bn��^L'-�zx��!5?4�(w<��H��<6E¡-���������ը��- -�y'�(���b=�K�=�)|�}�<�D� -�+xu��L`�Q8�>��h�M߯ �����������O�L"[ń�s�W%���� >�^��+��1��6U�}S���L+�TwZ�����{ 8$ ��|�ֵ'������p��g̾0���ˏ�]�B]I����è�,n���3�u�>G�)�@���q��� �����%��+B�̬�S�����:\��yQ8�e]��H�F؆6a�Na3�܉|��䣴aJ���"ˎ71���fSI4Q��a�d�k>��� |�h>�Vax4~:��o����� -�_ T\�X��i1O����,�}(���-Q�7Hf�F�����r0y��%��`1Yн�c�/q�<� 3���:���������~������F�u�\�h�k�Ly�R�"�����<`Rc��Xe�X(D�k�f#"q m�Zա�'J:bj��qT���5��6J?d*��7�T��i<qF.y����?�U`��� -x:m��;%&�q*F���N1(J���mTŋ%�s/���iB��R�&������g�]��3�w�����#���m���5�\w���a�㟃��/��-�\^I2rA�hm�0j�^� �e!�nV�bȚ<���:���lԢ$ؐ��%��Ax���.��������˞�L��ǬdL7S�+� �^=ބ!�-��f��k�@=w����62�52M�Ȅ8�(�8�%W�f�!D���fs�y����\݅��hY�����j;�m/T�zj_3<����K1��!�"���P<� -1��YWF�����g�*�e�d�K}���e�$�A�����J��q�����{A^�7�^�Q(z�C�t�J����g���IM�A��b�]`]�dcdf�rn6���sI���m�~�90 -��2^g�Nfu3�[���&|$ͦp��g���5J��_��V�3q<jVs؊chTI5��ʍ�\��γo�G8��6�/� ��o���L�ݓk/0��۲Լ�������Uv�Fu��=�Cxx��<J�$���q+���e�ʼn�(�U�VF����@N�4�L���N�?^ob��R\��eL^R�kT}�ju���S83$�[��q��iS������3(�~�V/�������Smu"vW�q���_T5�77�*������#�ʜ��2�2�JjfP3/��?��'��jTp�5����Q�){��>3���Jg�E�z�&������h�$4�=�1���� ��KY~ܥ������<��&���������� d����I�K��̀F2�a_����$,�N�L�J��h�qEi -WES�� h;~���|���e{��=�?{�_�:q_�:qH�=b2k�߃�9#5���:j'pDj�� �k����l�!�7aݩk.Ʋ��Q}d�&Q�`�w�Ԡd_�Dњ�[:$���Vz4�41�~�!q~���/�P{�1����������������0��~����Z�A6�������+(ӭv26�<�q ��?.����ۯ#X��$J���P���ˁi���|pVi�"�f����:k=F�^d�π�j���~��>.ݭ����a��W3��exξ��j_�g�ʿx��y��Y�m��� ���y�ȥ*�!2]�� -�=m�p}In�Q:�'�9���N�_�l#܊Ui��WUhh3[�(Q�4wp/Y������:t�BP�BE����G�J�tZUV����k�3-_�!4x �mChpg��(Of>��J�p�DvִB9��nS�<z�ڜN;�qjaP=Q�<���BaN�x�gC'| ���z�/=�Gp�������z������V�0��O;��g��� �ټ���I�F#2�R�x{y]�AS�EJ0ӧ�"��MJ.��Ç��@���#�b(���M��ĂL�T�^�*�;�+��[@�oH�?���D1��W��9F��Ǵ3!��wz�*��dy�/�I��~d$*y�/�H��KB��m����K�/'��Z�@��I�+TG�����ަ�/f>���xܜ�9s�3Kj��9�k%�Bd��c��K��Rц���1�z�� -��ڗ�Ʊp�UB���3uKF�˲ݓ��3c�P�?A�a}��Q�z�/{1}#a�vI�9�+�J0�.�.-"��,E��.������{� ��ym��6~*�I����}�M�J{�� -ɕ���\Sp8+��l�����`�^��ox�ȵ��I�n~a�$������\���'$�`��=�?d�a�:(��4:ӑd�����I -:�"��$g���Ma�!�KtH�������x\��m�7��%��I%F��e6�̠{��dL�g��~��0�����0���8/щWKw��$V.�=�sΥ�A���%>� �2���ؚ�`t*ag��ag�T���wX�q3UP��e -� -}83r���*����<����!j��K��W�8ڤe�Ԙ�4����ӏa.1��&���DZ�~��5����5�8�"ڃ��S;���������q�r��T��@O��ST�J�m(bǴ"vk7����n�r5�����ʨ�љ��( ���I��L[ݒ �Q���;�WۻpW�w�?Φ��S��~�x��j��L"��w�;o���8�M��M�7��FZ�pG�[��( �M�c��.�{���L�V��Ӊ����vV�Lj�*�?`҃%0X�w&���Bx�K�/���Ajؕ�ߕ��D+�u���y�������SC�̜T4�?��i�\3+~c;��*������v8+Tt�*:0�Ɂ��:h��]���g��5�>k��ɔ����k���L~�_�>���S�&��1i���)6G&s���9��Bb�,�Z#K����Mr�^�h��퓙�d��}o�+_����#�`���1U<���rE�v�X��bA��Tˆ˴�pa�ug��-@��&�zѦ�� ��|Q�^�˦�̗���P�ff��I���_�f0i��c�`IL�s5i��&MLF�[7il��պ+��d8|���v��/�_T>���P 5[>d�g�`��q��1RH����Jx�����i���쐦���r���7�&Ջ�߽���k7�S�<�|e�CG�<� ����H8��Π�Up�I��I����� q��<�M�+뱞�hX�NȌ$z��{��kNq��=���J���'74����~ъ �U!���*n��m]qW��M�M�v�Y'5eHp#<��EI�/[�.Me���ow���ڊ��SN�IL �B��D�Q���I]�/��˩�As�aOSY]�p�|��j+ou���M�Q�����5��敹d�B<xۼ��Z�@zi�o�����?�@�:����ײ��k)H���Aߒ(���~��V�jѐ�q�=e����%GX�A��`@��e�[�[!�~$���N���g G��� �w����i�+[A���>�������c�u��+M`l���v�N��6C?O�M�/p��Y`@�a�����V��{��U��&[��!Z����w���,�.Z�տ�3����]����}�|�D�au�\�i(���Q�����?'������Ļ ��ۧ��q�A�`]��I�����ej7�;h��I��q�ķ�h]��;�?�7��v�_G��}�_�a��c�an��m���+�kv$99+� �� -rp��䠀�-�u|["r���:z������!ކ�����˰e�W��e����f �&\�]B�@c�����2�?��,�=�iE��,b �L�l(�@�a��ʞL��Z���S������\��%#E -=�Q��)K��&���#��E?_�#|�9J���ܙ�'9�$��m2b� _͚q���~�y�IS��t����P��C��q;J����7��S4��#� q���_�G974J���?��t� b���}�N&�i��2b�r�zqF#ϙ:���ٜ�c!��!�F����X����>�w�f�'�EM�'�_�;��0Z����?�Ff˞����p������S��a�l?���=�lF�[��-�0�:=���#|w~��#�rF�&i�5�}�w��D�[pQ�rঞsS3s���zc����V1u��`�f��zό�d��Rz7�}(Z���X�*�f1b��5��G�]�R0�E���i��M��XJ��x���&9^1���<��[�0�HΩu�&��N&��1H81N�=�'�'�f��+Qv:�f�{(QvOF�;e�+���D� ,ɞS֒*W�rp�oN�$��v��5���i��;��R�V�mc��,N>���̟�`�wOI�;%q���;���7�"�5����S7�U]���ԡ��4 á<���<��g����4��u�&d��?�=�9������Fй����NH�?!m��%�'^�F�h�7�bP��y��� -����@V��y�Eg���s��N���oB�=7I:1Nz��=�vA�����.�z� Z�rW��J��l�P�m8���Hga+'Zo=�V}���١)S6�;ˢ�N��Z���7'6n���>s������4[�*a�T��S�OE�#G�*a�Ntx]�[�L6=�m�!ݑLq(�*�i�t�m@��$�� -��!=�gC��y��v?�tsh���Qډy����yp)�Y�~�O��������q��+4�\,6^��Xl<�1�ń��\N� �@'��yߙM'�h܆��1����ęxZA�,y�_x�Pφ䳨ɦ你�칼�_L�q�WB��!8o���+aZ �ab_�><6u�0���t2���ȄfQ��f"�-|O���g�Ϻ� }�X�� �&Gq͘�:P+��q���R g�:�)����4OKJ=��9���C���,X�}ozS�(<ӥf��|��;x�~I�-m$#�ϱ� (�]3�f�pe�p�� Q��Y�:����֞�4�n���j(��V�4ϟNO��a��ݾ ��Х�z�=O�e���j�;���#z��[�/UKS��@�RiT4k�w�/#�� ���� -n��Y����(�/Q7�x�.'N1�F�x��p�w->��6f��nJ�s�}#���{ݍ�����%����bdA��}�j��'�H��>���7�kM'�6@f����(�����|�>�w�m!$P�)�Y�����_$��?يdxnym�� -�Y6��a��.�����V��r �n���#����*J}�ܰ\����/w��1��" �͒TTP|:����jK!!ȡ��D��ͅ������b= ���Y��p-��ˇ�j%�-���\���|0�J�y+'r�"K�=O4�b�F�#�N��$�Xx�����ŵ�M�k�zz���Y�q�:�x��3�N/��Yt��ӛ��5\��]߸ӹ�����5�X��� -[C�u��4x�5���]}�S,����A3Z_���.m����Up��3���ΗM�9�`���)�dՖ���J^*���x��aP��Ե"�t*�=��M����+��PZBۦ�"K���)�*K)J�e�T�u���RJ�U�" ��F�t22I���N�X��� ~!���o����I�����;)P&V�anތa��8\�� -��ۻw�ƆJ;.����0=#�~6�8��9��Й���9�71υ �Z�P�����0'��~AO%g�apT�I>'d������~���v�S�H�ʱi���� �4^}~4�ݡ,�:�5����� -�~�������v��>h��=�7Z���lj�ڹ%�暸�7���J�����T)^7-���?��z�R��|o1��I�S�JT��T'��V���m9�@��#��M�"櫍�r�B�P��0����zD�>�֛>����Md)4� -Xnq��<���}��aߩ�a���|QS*��\��jY+с�`ג�0Ӧ��y�î�SKZ��{\�G}�3Y�������)&V�"�A�,~3a�B�&�2�Q�m���Bp�^Ō,�T�bؾ`ؾ�a�ӛ��m�u9��A]��,Lғ��s:-�H/��]� ��%��F��>���yN��#������l.C(jk��^~ٯ������]������31t��6R����(�7�70:�V�j|Oz������RHJ�@���bJ���T��v���J/��v�_�7�/p�2+�e�B� -�lL:a������QT��� oV��b����/B�y=��W�l�,��!���Z�G�ս�����&�C��B1��X��o|ן��t�ͯ��F}�q�^�h�]��y��8s7.��j�����j�h:�}]����vf�ᅿr��+���� �9�z�x�j4s1y���B�'��Y�@�u8����"���ܛ�|=��V��hH.-L���t�Vg� .X5֣����k��1��Y*����!5�JѼ�K�>̻�Hh�c����D�.b���FW�Q��2=��d��L���*���A�bL�-B/b?dԏ�����.E�m�p�>WE�g�77@�Z_y�M��ﴴU�3O�Ǚ�(�vC|}Vȧ���������w�E��HJ�=b6^�-�r��z�Ӻ��CI7�l`�ٙ��R�uA�)A��غK -�Y�� ����N̓�m�L���1�5��y���-��+�mr�����;Ds�{�W��jT��%�H�0r���7�#�'�j�g�l:s������� -�ɌEb4��P���ػz�(�[`�iR����K��(_(�]��7��ޭ��*/n2��g���|�G��t�����<#L�!ڝ��Oh�x�lz&�p`uo֧�����A� ր���Wi٩��]��; �����`m�����M��w�Ҟ��e;���+m��"#7R�)2������%�����?��_�;���~�n}�WCR�#Ԛޒ�8�^4=��ǃ��6�����6�<��w��v��]{m�%�i����Ւǵs���I��I��m:�H-�H��;���8H�/�[�)�a��z��t�>�in���m�$���]G��;G�}#`�8H����XƱ�$1����k�U6d�Ŏ����ry�u(W~�O˜�d�7�h��C�E��!���>~H##�tb���G/5! ���c�,pH�H�Y�:��!k�3W���ZT�Cb�!1��pH��tX�`�������7qrg3���K��o�ӣ^��� -O��_o�b jA�]�[�1Q�Q+^�2T~��;G�5��ڽ.|��.�*�o��{���(��:ޢ%��ä�j�l�l����q�H��w�H�� |4���Nй �nNE��PQG��TZ�;����h���9x/��elrW�>�y�Z���&�n��b�Eԭ阶j0�YF�ePIc�&�@'uur*�L���R���+b���3ְAf�Iq#3Oj�u+K��D�`���`��_(K�6I�))e�8w�Z?��6�'Fʎ�f��k:C瘼�y���.N�C������}�J��hPR���T빠E�'�gfH�&���+�ܣcg"N7vҎ9חQ��Iӓ]�c�sצ�����9�,���6�F�vd�H>� - �7��V��T��.K|�O���+�s&N�N��i8�g�x��IJp� K��50x�1Gۗއ2��T���D�Ш��!�L� �acV|�:��,�o}}��]X�0�]�3�~���z7����3ڂ�z5��g�b]O�Etq�΅筜�����*hJ̫Ԝ���:�?����W�s��&��<r���/����\3���6���hs�LԶU�9�-���o^o�Sc� N���v/�/�z �mt!�1��0U �(Kj<��K��J�IeखWȨIAY����y���5M���O5��ӠW�������p��Kc�52Tԑ��$c�Uv:�J����o�xc�Tم�������U�zp��:��[%u�iU�p�����o��o�]_��#>j5$�.��~��I�qv-��F� 3��R�}"|�X.ЊZ�U��;�������� U���⩕��ˢ]c�ؼƂ� P]��#�X�c�~/Y���2��7d<T�H���L�>����D��Ӟ>`�GZA���?��S8�9;�<eZ��V�i��C�cྮ�ǝ�KI�C�'��bn����|r*�%�t�,�ϣ�'��Z)5?m7�>�6,���?����$���o�r�������?����v��_~]}L��~ w��|����������>|�r�������&�\���9������ xS�ˆA�Q�fC�l�;�_�G�țO�c -?�3�g�Q9YΏ�1<�{��c�������������ɗ��}���Ǐ�w?$?���w��i��������w���������vm�YOx�z����!?�L� ����F���ـ?�u��[��6�h��5LWw����W�kgq -==�G`�HaꫝI��W/���$��2I���S�R}��>v\�p��>ۿE�Pm����#_H���}0�]w�$��a>�\�d��'�E��W�RAҪJ"����Υ�x�!G�]4�������oFdT�1]�I� |�����+����� �4��ctx��>��iG�������������\ˬ�X�M� \ No newline at end of file +���jf)�`,'��X���R�8WE�h9�va�&�;s4�\XX㪞�C]�&��a5�0E�"�4�ja��w^~?�\��4���U{]ۂӱN��{�;P�}H�����B}4M;���^�f(oTaz���J��KK�� �-g�qp��1��p���.��#pP[�C�rL�M�Uf\WAVEp�vs:,��f��dž`����o�h&�B�mk���x(ǻ\r��'H�{S;�5�Y�� 5̓'��m�C�,�-�ߪӬ�\Y��Ԉ!���Ee�a�6���'�9eiOOꭞ�U�\���:�x*G8$�x60�D!p.6|��3��o�?�܉$�b\) �:�NŸt���_ޘI d]Y�F�7 �K�{ ߑbH�,c�g*�!���A�$4%�D3�M�Ԟ�6�����FBC5���<�K�(K�!�tc7��?=m9���%UN�=� ڞ�H7���uc����W���|�]=��礖<)��P����]r���r�+dg5aQ�֓�,8G�$8�u���)Lr�% V*�)k��r��4WM��_�l�k^�#�h�#A�O�������Vf>*�9�/i��5,řд��"vSbI��}Ky�b&�J�����R�qr�:���Z�@9j#�����B�s�7'x��W* +���6�[Ԇ�3�,7���t���Sa ��.�2��2�%l�&�X+�h�4 �c,r��~R��)��4�Von<=��RI�HT��w�(PP�/�,ڰ�c��Y��=] ���@� ��8;� +���؆�]7���j�U���h��[ΥI�>8|�2>��������a/8):x��`15㴗���W��(�y���֫�S����ÿ�q��B��@\;�rM�58� ���0$����ۛP����{��� �r�4s*TrJ\���,y/&7-��K���wJ���Ĵ�7� �y��-��]���́�}i\����?e�[�g`��ԕ'C`e�������9l�ӓ쇼;ϟI�U���v�&�8G�N9�L��Yy���zrw��Sdǣ���<E�_G�m��g�%ƞ�������s�b��q۩-�z���nz�<~�7�� �-x�`�)w�)bк�9�A����Pƈg�GM�N9�@����pg!���Ie������QD�v�!�fâ���̛����:�z�@�h������{��bcʟ�($[�K����h2����<��'�����M+���;��+ �dt�ĀC�X���B�iu"�q����8*àq)�\�&w��<l���꣑���lb ! ����\��/ٯ��IGT��Қ�+�w�m\�v����%�����FY�ʚB22�5I?�FIR3s 2�Sjr�i����� �t�-��]�X�y��xP��C����c��0fXcؔ`���܁��q������"�L���ߜ��V��x+T 7��9�s�i����m�ߠ�����7�|���.�ً��R��p�3�c�fu��VY9�� �����8E!qe:���8��75/g2/V�a6v�f�.� ݹ���b�/f"��r�2�^���d�6�HN�3�5�HY�E���oD�����flj�1{f5��;٘���g��ͬv��@�b��-�ٸ2��-v�3p2H�����r=�8�a�H�ƾ�.ʕ,��%<\)4P���@f)��L���zT��`e�kQ?�ox%�<� +��6�ѝ�ӊ�bq�/ �=Jf�����\�a�b�B����f�4��Ƀ�Ϋ�Ą�qR(f~h�.�1�kx���*'̴`�`̴l�� N�k�|�g�r�oQ�<� +ໟ�,�cD��slrs}�f������[��b�Hюk>f�9kp�d77c�UNMj�T;䆍�Y��-&59*�{qT���pTF��8*PP�����:�*�l7���9��r[��&C�7�� +���-NG+0��X�4�����d_Z�u�>��b0�K�gn\��3E� ���Ƹ�Dv��t��* +yI= #ǹIq!���Z,T�H�O��y�D0!#ȕO��Vd�0�;:P�Pٳ�{��0g�_���e/���VZ� *u>ɇj�*����Ka�;�7����|�==�7�d7���;n�W4��UM��/�Ԭ�K.����$&#P��ȯ�ӟIx�'X=1���L�uP�>� �l��3-����px$ۅ�F�]�c��6��Y�Ҧ-���ܤ�m~��R���G-b�q�� �榾�m�ܓ6s6H�n�Bs�� ��Wʶ��S�>F���*��r������qs�:X1�I&��x����7�I���d��vX9b�ȯ��4��Ѕ]ܬ��骕�#�h��x2�� p��gS�)V��i7爛�$5�M~j�p3�>'��\8 nnt��ɤ�����h�(9�HVG{��H�%�mF��P�v���S2D���V��sh��7��o<�p +����Ĺэ�����V�i���#hw�n�k�6#�P�t��o����� +��Y��f`���YY��m�����D&�4��n_v +���e���il�*�r� ?]J�-h���7���}{�㸑��� +�;�s�J�K��X����{<�ճ�ݫKbUqZ�Z���ro�Ë$@ @K���q�I �D"�9�`��)ZM ;�G���*Y�p���� ����J@���S4��;P� +붠��4z�鋃�'*��J�G?�e9����f1�� 7P�Z�d�mB��j�")��x�%�����v�O؇XuZ����6u�A�L�ZVP���M$�H!��֨��NFp��fc+���n��+l2ʞ��|���9���\fc��h{^!�]�2&$~���?����n��-�.:>#@����A� �����g��v���E�`m�Ñ�,�A�tv��_��ᚲ�����E<!�Al�\�\�}#��55 �fq}�4 +�D�F�WL��n^V��ە�u���Y[���y`�,�m2� ܮ0o�n���f��G��t���jɕ�]%�z�>���*� ŲW�0_a�:��$����o�{���F�f*5�4�r=MKPvA�dbx���&G1�)�Z�#XE��:X��.Cل���|�9_FעY�[�jށ����h��!B�4��n4��|6��T݆3��vs�mW��j?�̶3�U���'��Ig�~�Ȩ"��QI4HQ�y�+zH�#a��D������q~U1f˧P�C�)Ι�D�/%I6_si�j��sɀ�d����9ߢ�uvYٮ;��Oڑ��~ �,�a��p���"0�MJS�\]����m��_,��%�y�֪3/k+�T �lؠb(��n �\ ��*@��6�% 0�6����Q��p-��6�Ӽ$�̡"�E���������n�)�t]�S�u��=��k{�#o��n+@v��jzӝ� �������z�����D�j{cM��!�&��hw��$��C�j�tJ���S�K+oW�cu�Z�a<�2T�̻=�:h�Z�'��G�� +�U����W�q�b�c��#�iQ)�#G j�AJ��m�ت;� +AUT��_X߂E��w2;&ACт9^��q��7�4�Е�_��S$rw��rP0}"���>w_��l_kͭ�I�k,�D���m,���M0�.��z}.?�)��;�H~�����ò ����+����uL���̙�fZ,E�=@����sK_�x�[c��͓�xB���(����G��sE�_�����}�B�47�;v3S�s8��asI:�^}�o��N��b��?O��O��(w�ß����&������A�he!8L+�ҧ.���h�o�o����߇q�� +�o���y��AL�(���=6u��Gc�vq!eF>}XHU�G^�ũ`��������;vf�d�� +7܊�=�<�="�XIg���b]gW�ӭ۫�o�Y9R@��J��x�Ry�������\pBH�l�Z��p�0un��j�7��]���[��P�:2��'9?*>�">R4�g����X���?V��'7ҔEδ�F���MP���~��*���j�#T`4Y ��v�J|]P�C����p�_ +#)D/�b*�0����Nz��S�I��0���`R�0���g�1K��'�� 6o��DV43�elY������ +�U0�i3 �b�<Q,A��1ހ=�Ets-Q�4�g"�D�8��I������ǯ(��������@<�+�m�`9���[�4��{WP�(�G����=�X��&߁���&B��D�}��>mP ��o���j�i����)9��)����вfgU�J��EG�� +f�����۟oW�@ѥ�#���mEAumr<�R�u0�W��lб8/�T�ʱ��Q��h �ό��]&%u4* �Fg#�b:-vUcsE��� +Y:�t�?���ߡ���p,~�k�^C���v#:�T��&2+S�A�"~&�&J� �zݎ�|�o3lE���ہ~�_�����"���D��u�<L�ip���qfU����Ĭno���)�����U:@��W�B?�-����mwY=�[o�[��i���m�ш��w9D����n7k�����x���ix)�fY?��d'��PT!���*�x��ʣ�4���㇐�dL��`mP݆dD�a��/�O�;^/��ۇ��"Z�3�Nz��0��G��0�N������v�WtD�W�uy�:�Ҥ���SC�Yd���+)�#2��ls�;M��Z[��Ǖ�p+��������Ҫ5�g�����^q�d���p���U��`x"�������.��D�3t?��Jqr0y��Y��&5��Y��hY�KU�L���9�2˯�Q�B��u��=@MS��$*\��W��0��m�a��;~;/� ������\r��CL֨EM$��;p_��~���c;��*�w�)�.����\Bɍ�E�ha!��\���;�:��@~6R�̅3]�A+����tWL�ּ��dm�Q/y������3��l��S�AD�J�0�UΙ�`QG:�FO` ���q���%�5 +W`+�d^�7 K}X0}�^�T4Y��P�bv�%f?p��w�,p�3�zx<[x���9{��GMA8��-��LH +#����DX����Q�����U�l�����+�Q�C}�������y�C� 'n��{H=oH &Z��qm;hm&'G�؉8Ec���@�ҵ-�I���K�/l��I$Lbq6J5��7�4X4��7�k��S^K.lM��Z=$?��`��ܤ}6w�u���@�LÑks�^1 +:�4�t��U1~�k���MQ�\���Ѫ�^���F}��Y��Q��69 ��@A9\�!�z}"iP���R����V�ص��TBNo�7��c��I�ص в��Y����L5]&�x�˄<�]&��D�k��2��乹L(?����0K��b�~l����P�> �Zٯ��+���zH}ɐ������N��P�D�M��n��Ě�tn��,b��@�#�e2B/�Cgݻ6��^���]����%}�����X�F�XР��V�%�G�x��&\F=v5�{����^���R�DӁ^�jj��70�j��}7ƫJE�F�=�NZ��C���ԀZ�U����UeN[^<1�t�_nMGxap��ZD���A��Z��{�qKj�0ј���8�����O~��L�!=(�+(N�@�KU���})=9� ���^k��t��CL�Y8�q��3Bz8|�p���>���<ఐS�p�qs4� +�� +���ڪ8n0�s +�r����������=.�-.B���v��$ +p*���a�I��D�p�ٱH ���*HN�^؆���أN9.Ѵ��>�o�x #���p�S�;�����V�V��G���8�^�8.���8���O�P��ʒtX��}4�o�`���2z�~}���_GLB��u��z���q,D{k|J�j�d~1���c�k;���|m��������Y*� ��7�(��&7 �]5 �G�U�!�t���+1թ��� �Γ)x�<JQ�|d���XD['��Άj��W�&���h���r/�dAF���GI�R��]h��e���U<�����\����W=��TA��:��@� ��/����� �����b��5ZC��*i4���x_��QxH�[i� �X���Wy�U�_��r�����k0�"��ů���ï%�J�yς�ܝ�擌�*�6�W��9������F��hԿg����w��M4#1�v��z�>�\I�����?]6|�j���Z@�H�E&o_)�`���ղ�� �B���6��p��q�r@������.@#<������鱡v�C�a���_���@������v,r��9�p��fd�T�hR��j���i��=����� +�O�xC�ٛg(�����@΅��yo�IB�ү�|fN!E��Z��f���^Y8Ƞ�ԑ ����(5S��.S����D@ +g?��N� �5�T1{�Ė��fi�̻5j��zc�/>c�ԙ0������#QgB�)�] x\ �������\�� +�ya���t�_��K����n��#�o�E��@!�������a1�i&ƃl'�1cp�߭��v��g���".��vX,j6�� ��=���}5�E,��D���X�K6 ���X�᱔��+���=��절 ��^ī�q$2h|d&Y�|aT��`,�3�J_u�x�a�e&lf5��$��@0��b�'�`���K����Z��WdC����x�G6�1�*I����� +�����I�g\�>D�~G�AFU�i�_�U./�Wd�\�/�:�@������f'�>Ή��8uk�����F�i���f̈́�yc�p���z����J��kL||�e�=������'���PR��'�����z=��ɛ딶����P<��S|1��Ӡ$�L�H��~M�1�d�h���h�nG�|���¥:V����h�|q'�ʗ~��SbK�~@������ǃtgI����o�{�+ֿXJZ��Iz����o����KWFt��Rm%�wW�d|�X|�DS1S�ҰR�������l�L]v7�P�^|��{��L�����X��q�W��W騁N]�I� �#�Jƃk�x��ߨ�46�3�I{�w���LfOp#���#��_�"e���aRZU��c@ΰ-ch=*��t��iM�8�An���3��t_}C�O�8<g�ԏ�Ν:���S�}��(H����MIҧ5��%.�lg��pTt1D]Qj`�Ց�ٕ��u��=���)_����,^�W�},�1XX���VL �ɾ�,z�y��`�v���D�f7�d�n$0XJv������w��^�5���OcLa�C��V� �Z"p�>�H���p�B�w�������Ker˺".��^��4�B���|����q`���Vv��u�L�7�=�wq�+��1�^��j���F2���4M�b���0<@�0`��$^�G_E� �p��[�E<A��E��1^�� +hxFe)��c`�v$�Ǽ��DGj��w@s�;Z<O�������B�3�}�ET4 +�[zubZ�� � 9�x��Ϛ���av�u��&�|�W4���W4�&��2��1�e~~��ۿ�zƴ� �l[p�c���ۂ���m�^+�Z��V_����K�^����~����������|a�E����"2T�Xķ[�(�������O[�2�J����өE�\W�:ݑk��B�AcgIq8��((�$ +��;��ʆ�7��8O��$&]ī��'ٕ�*��m��J0�i��,�p�v���z}�(eH�|v3j�O��,��*3��5N%� +�B�<�q�q�7*Z�N +r!�g�hR9W��V�,H�����8��P�jB�c��2(�5_0ˁ���`J��R������]�_�s���Ȩ��o��}�g�6�]W��Ȝ7�Am6�^&e?c�"۞�����c��rk�Q/�FrM�}�7Ʃ ljb�>�8'��*�T+SW �'��%D��<i�=$�}9��&�[jka����Rs�#l���B�\��!,%��BX=� �>����>�_Ÿ&o6s/0/[����H�o��/��8&�KQ��♬B/��oנ����[�c�D�S�܇�w �`�`�ǀ0_�*�}��vuI4�N�����X�u�V`|+�p�hم�h�f��'?s�)��eNW����.+�Va+4����GK,6�9\���TtZ�*��b�qZ&,���J��C���y�5�n�\�œ������H.3}��n�c`&���;{��*fB�4��X;��<��̻�>]�T%�6�b��߄�h��=ڄ[ �/��%ү�X�Uv=�t���c��w��#���M|s�`]��!�\��4'����q��p����4> +"NF���-]�(�6�h ���������UԞ��V�������i��Ƿ�6\���2�(a:�L�A�!�އv����<� ?�V��P �$����A�̀@D��p���R4����+3��������.D��RF=)�8'�������8m���,�qX�ژ�d:��)��MIU/P�Q�SWMa^Fe��=y(���`k3g���H����W����%)N� �3-=&W9^�:�6���VjՙPz5DŽ^��P���z��ٖ���|� ��֟L?6�@*kKBI�[4��B�%��r�lv�����%��e{�5T��x���=�~r=6�Wӑ14B&��s��B���~�IJdh�^xUn�#����P�p�k�7��(���e�W��zY�.�烨�<$�nC![�*��� ����]+W�E���#�>��v Uz�<���a��6���g�瓨���d a��6�Gne�b�κ�W) lkW矪hN3h�ywm�q�a'i�L �C�Jj����4ڌ���#��oZ(��_��ayE�tS���e��K2��3�:��9�6�������T1�'��̃�B�Ux��eE�pm<ƅ?v�a6xx�/ʦ��B� ��b�V�>m��.i/�����|�<̻-��' �la^��>�g��� �R�<HT�8;g7�����Ŝ�Y��!'Ua1q�!�'FO 1�� �wt���o)�h���!�3^� ó �2|%�����!ïB� X�i�K7�önj��A��;��E�x|b�� +f<>3��x�����u�WF��n�#�sE��Gs����5�x|��ȅ����:`m]C��ε��.ƈK�������>����-?q/��{K���\���5��LO(�g�x� �PUt[a ��'�����+��,����]�&�/��b(L{[֊K��i���tQ�$2tC`� �L +�wws��3��wӤ���1@�=~��7� }C������mlt�m8~Y����7V +oH�.���Y\�GW҃q�cpk�6�t��.e����O�oOQF7T�U~�:�\_2�}v{荵b�� q锼���*��!������WVQF�SnT�ô7��֭�:���"Ȃȱ9̇��ֹ�'��0j+�������JEӾ�XE�zw���4^�:X��c�*��Ԡ�7��&��s�Zt��F�i;p����N@��r�h�rxc����B��J.4\7���{L]�b�n�qjn!�l��q��S������ �{���V�Ur�/X��*wϳ��_���@(���`no��{@;@�W-��v6�DNo�I%��&���)F�Y��� +2vt{9ϲ�"<"�´7�^��ME%Nڡ���O�e�< +��dWu7{˭�ь~�6Z6bG ����zPP�C�4Ͳ�7l�Q\�=ӌ�c��M%Q�fv�#�fh�n̷O���%ch�McGu��e��u�uR +6� h �j��w�&�/��Egl�~�9��(��jE��H� �G@�ϻ������*���}���l�n���9�=����gƟ�w��wp�Iˤe,���*�r"h��`�+�����`t��o�/B4P݅������p�������ʽ�F�����|�Q0E��}d�U�ܯ�'�|��6Z�4Ax�@/g����g�2�BQf,/����s�rp���30̧?ݬ9 :7�vu�}a��=@���+H*;���-�z<[>��,p�۲ jVZ��Q�y�*�N�s�S~����&�@��I�=댒ȱ�[z�T/�u2BN���k6�Q����g� ��jf�H'5N�<R�ٞ46����_�}{�E|Ѿ�%���(wY4�����w�TtV[~*��UC����M����4��H�?H�4�~z� D�ɔ T�z�l J�lBо�%��E�@�υpTjj��$)�X݄$�VP�[H�Nt&��5����OP�Q�aJ +�_@�J��s0Q ��FC��C$M���? Ah�sN�`ڬK⌓�����a��*D}����ih�[gN#�߉�i��ɜF�Я�n��q�1�Cf�Nl�=^�^,���?��|���Q�W%�p�&~.i�_�3 �C�x^��c��gu6 p�w�h"� �u���1�!x0�v�C�qLw�Ȳ��u�ѫ��0 �^����� � +Ah���+{�'��B���[����w,T��f�FmV�ϭ�|P=U�]ܒ~`�o�M��l-?�_^V�����gǡ8�pv��O_ǯV��T�[&���r���W1����q3R���D���L�G8��:������έ�inUb�n�[UdÎY� +ӈ��^[�%����i��F��dD����F�M�8c�����|B4��*���s�z��ɽ �@�Z `�A�� ��7�W����U�[��>� 'bl"�%��H r���=�������їݽ�U4��F��%��m*ioovr�z��i�#��5A'�~qدT�"�\w�>�a��k�Wnپ�ο�y����n�p�"��+�UYE�����q�U�q8��x��Y9���B�-��#�!�A>ZG�"m�D�h���֣/i�����?�G_G_�h-!�.�=�[�[�9��c���W�Ǚ)|���������u��6��#��RtV��O������O3�S��C��2Ke�� ���Q�!�\�Q�"2�s�{�J�S�L���6�LSIE4C�Ny�n��ܑw�IT�&_S���ʖ&��L�6af�aϭz?U F�j@��U�1՛�nQa���ݍ�j����v���]��uҊ�F�xtrNw���^I�~G@-�n�>�.Q�X,����5�>Au{��d�f�P��#�b��uSv�m��ζQ�tD�P3_��M�ܞ���N��촛��N�!�� �3o�#�� i�#�w�>��﹠��«���qJl~��pEi�c����"��֟�T�ЛC�&�qsb��݄t?®?��PhB���=؝=����/^e����ؽ��*�v o���ˬvTͮy�I@�ݣ�g�`����s�S�c����>���%��XZ�/�E�X���.b�@,�`�&\�J��"݇�d Dh�;�����M9xW���f�.J��t��H?��h^iL�D ~9�[7�w/s'��ub�j�]Ǯ'��T(;g��갎��(w�F��[\LC�ɉ�HJ8�D�\��G ���B=���4z�G�� �u �7ZXd�"{�i{&[e��4c̭�S{�����2��OT�z��QRg�p���FJ#�tTnZ�P��l�d��g���>�wkQ�[�?wK��.w����*×�搤��hm��֪��37�Č��Ԓ1}.��˥�� o[��BYk�tC�����*���ͤ�L�� +� +�m/�2L���SN�\=���olZ�W�5�?�s�i�@�dZk#�x�Z�kP�ڮK�X(1S1��1Z}c)������7�����v�fg7Z�];�N�ϧ�S#nv��*@�h����w��Wm�n�xJ[�_�jH&5�@����#ۋ�R�c;;M��;`�)ʥ�p���5�nPo7 +ި�o����b���A�#�������?Ӄ��K��3��>u�����ȧ%̒#�������dD7���Ry�nb�ꨦ#6*5~����� |��y���}`�~z�*ߙJ����N��㋜%����h�mQɥTm���:�B:�r��k�+骜8�K�5��Ƃix�� �8<�d'�3"T<s�� �a�o�@��e�p7o��oe9R���$�� ��[��@�I���@�K�ԅ,�g�\�ͮѰ��Jб 9: ��@G�+�ty6��^���|�����G(�Z٪�2��]� 3`�~��5]�!�vѧ�������J����Y��0���3022�[�P��I��AYt_�;���-*�#�쌕���`�7���2vC� t��^x֒5����߹�$�_3N0����]� �H;{�=`��(Z%�e=��CXu^���qr�s]V��QN\Ƽ$��*��8./��=����K��B1�ō��\�<��#��Z���v����u���C��F�m`�X�Άn��uU�����p�~��j�AZFV��Y��R[��8Uݴ0�U��")%[|�K��|5l]0IEB:��Jrl��-`�{XS ֭��Ro�V~���OAC�p�7/A�?��C��_�$^b���/�D,��L�&���;i"���",n���@��*R�M��l�Xy�豉 �=1$�/:���/�<M�?��5�����&���U�\?� F�k-12��� ƒ [�Kd�*��u���.�9��U����],��d�D����"| I`�{�v��bv?��;�(�9�� +�O��jq�J���LU��<��-��rb���a�J� +��4�g��'� ��|S)���h���G�^m_Xnk Wʃ�� +k���o�N�GLFN4�?���Ff�~)����&���=U��pē7�p��_�(�)'>�ca�p&l���Dx�l,C��p�h �K +�ꡐ����1�?�T��V�RS7�x���[�|Zڽ!`�9��R���d�&��k�+Ȇ���t-<�,̷槐���LP�㣖�@�:�>=n���1�k��T��ї��ت����*�7v���f3���&���x�I��7�Q +�?�����gd�/g��pap����Ň(��j���i3z*�!v&�e�s�]d�G�rC`e�9��7wO7��Ao7��A�H�A�y�y{����w���{�~�\�W&�ha�̜�tp�L �M��.WE�Fd�[��;�̃,t�Z@W�#����q��S�����0W/���.�D�P"�� �G_���}�����/��`����b>��ۻt����,|I%} ;����Ʉ:�n�!J �@r*IB��`�������)�H�_����0t�>�nmr8��dH��Ĥ0�֭�&�:Ό ]!���?�A�w��l�=�D��5�����dx���H��h<�*y�n�T\�{�dg�$�-�v�c~�'����_����p�zF���/wa"��Uy�nF.��y�kA�g��q\����>ָ�!�/I��P*�N��6"B����G0�[�O�<dmu����Q�0���PY���ΩWM�5�R�O���#%��$�F2�t.?E�~ �2��T�Ͷ)��L���l�v�Mh��_�@�����C�F�ݨ@9/SM�����ˠ��` a���YP[%�2�Pt��s�7N��7���!ڧ�o�!��^йB����>��ޭ���몝��b[�-G[�lAnL��@9\!���l�U�*Ɯk,�|B���S�����`�m���lB�[��"��~���M��^�j9���pœ��u3��V�џ�㘵V3f�MUL���Z���0���Buh{e!2���E^W`> ��d����Dk`��4���� ⋾g��1�Uˊ4P +$[|�春/��s��m1���E`<N����w%[�Ӵ��\��Z��p9�F���ZpX��3��"N�&�E����Q�z��Ҩ�6��|;����R��po8����YǬ�@�x2Hw$��~F�R��J> ��-`��[�R�3 +���R�Ks�v�wR'T���n��d��1�t�4v��6�H���z� �k6� �*�K���^����gp����8f4}�D�2v1j2�k��[�C�{���.����D���k���T_T�u�72�D�j���w�/Xܭ�٭&�ˬ���F���r��v�l�Ϥ>ao%�VbC+qΩ�h$�W"1���%s�����,ۨ��,��j�Iv��yƅ��K>�}��_�}q�x��S��l*9eYJ����*�v�[�5�^�U6��/�JMi�P�Y;p���F�V{x��.+�u��l*���r6���S&�)��D�Z���l���i�M�#�+FN$i���xUD�@�$�+���9O��ݺ֢�"�WAH�z�zP�q�Ѿ�-o-bHS��ߩ��2��o'�ژv��҈��+'͏���o�x #�� +Y=��y����LsTؾK�����S�ڨ;�8�-�W��g�;��.���y�N� ���<��ۡ�PXN�y9��xRo�D�GWmm5֙�w�� ��#�in6��JH�"�˲k��E/̴�}$Ʒ�hw��F�6B��4�j�1�ilG���[u�6C���N�f�x+.�����P>���f|�{��Vr½̶���eXUs���J�%��"L�0'ޮ�Gy�zL�r}z��U�a�k����� �6o!���/���.>X��~&��z��{���Þ����ג�8b1�i +�J�%ĪȢ=�*�)��J��u�R�����/~g�l ��~.���r BQ���l�K]��٪ +U�3UU���]�����������[$�x�mdY'�^�����dr+���G�ޣ!.�e|/����*��5�>�k���7�������������d�7��7oBQ���ua�\Rt�<� ԓ��3���]�*��d^|�I\��T���)�EM������=�� +H��Bo�O��F�zAҿHs��#�t��O�ps��ΎV��D�PH>��r���\��WJ�� ��*�@<��[�������3>�!ץ�l��W�g:V&)�j���z%ɰ�\1�ش����G5ܴa�'�'�h�^ؗ�9L������*٭�t\K�<���?�(�+�Y}���r���X�L7�ӢW��Ty��T+�,� �J��۬����i~�i���h��#��j$���H��DUۮw��d�G"�I�2_���3m�adPc��`�� �<��g{�җ���x�� ����K[A��0�96!�� +�:Cl�J^�S�$+�9gh�j�}r���2��'�����"d8�o�-wizV`"��3��o�����ʦ��/d�����n�¬^��n�ߏ�u'���:�i�"/�EԁI9a�S���e�LO��-f�B���g�!�-mG:e#����A OK����]��c d�: ��~&����4q���MZ�?Qw�e�5��t������������� +;�08b*�ș��d�����R�C3��р��I��Ǧ��!C8�Rߣ�>��Q6��U�EA5?�-������XO��}Of +G~[8�+����� +^�� �j�����~Zv��+/w�~E.f6���uy��:��V1����U ��g�Ϲ�"���ʢ.�M�s�T��1� +<��G��Kˊ�����m�O>���ڍ�������l��g̾0���ˏӝ�B]I��v����A�m�ϙ�:n���[�lu�m�8{�mW�ll�`�w�s��Sf��)����s���A=��(ɲ.�a��T#lC�0B����u�D�EW�Q�0��J@�eǁ������TM���E�!���v�:4ځ�UE�������m�� +�_��*�o,Y���'��|(suJn�pK�� �ٽQ`o�n�X��L^�vɣ�,&��q̽�%��Gdft�#^e71�W7�{�20�[_�ȿ�(�4�Z,Sޟ���f���&���/VS +�ںو����X��P�%11fxN9*�\�}p�2����i��F�4���8#��SF +��~�*0zY\<���ɝ��8�WF['�%���6��� +ݹ�L���4!ʄ��T����.��3�c��s3�w�����#���m���5�\w���a�㟃�����-�\^I2rA�hm�0j�Ջ��߲~7-�1Ú<���:���lԢ$X���%��Ax����F +��r��c��eϊa L��ǬdD7S�+� �^=ބ�1[M����z�N�'^�mzd:kd� qZ;P�qpJ���t5B�F���z�i����Xޅ��hQ�����j;�m�*q=���?����d�K1��!"����P<� +1��YWC#�?�|{�|�2|��G�/�a�$�@l����#���tX��}4B/��ɫ����6 +EOr��]����� +��$'���_�h��"� 3��p�����H��n��cf�*��x�m;��ͤo'����4������Y�G�(��}&X�O��Yq�a+�!��j�%���e97�I�e��o���&�/� �߯��L�ݓk/0��۲ jVZQ�y�*�F�:���><�M�%@d�{˸� +�}�2���U��x+�QJyk �ai&� �\'���1�Q)�ji����U_�Zݻ4��)�)�ލP�8B�Ŵ�r�b^��J����K�`��zt�T[�����UEr؆���݃�&���Z[����qDS����L@�L�ҽ��������j&ljv����F .��e�kʞ4����%<f�3�"f�bc]�Q�р�2��j���������]J�ߥ,�K7�RV@�Ɖ� X�DI�PS����v��b��� d����I�K��̀(��B���|i��F�q�c��Y�Ḣ4���)F��}�����e{��=�?{,�/U��/[�8$�1�5��^͜���?�Y_�8"�C�B]�l�!�7a݉k.Ʋ�v���(6M�2,���oF��}qE+�ni�$�����|�]83d���\��| ��/��%�=��d�4��f΅I-�C�wx%�B ���M �?�]�H_A�n��a���ɏKHe8�q �ޭ�n���xn'Q:���´�_L��.f��J{��0k=��Y�1Zt"k}\6P; w���i�݈,���6�|5#�X���[����{F����<���h�������SD.u��P�!p�� +OEW`�i����Kr�ҙ<��ȑ�mt*��*�d�V�JlF��BC��JE���Ľd���//�t��m +A�s�ֱ��i+I"�IUY�:�O#H"�W�gZ�*}hp�{���ࣅ�<E��p�*�^�mT�Y� +��Zg�M����ks:����ݫ�^-tD-T��� +U�9�R࡞ ��9L�w��-��8�`��@ϣ��zw[�8ͭ�a�;?��h���(��y ��8�d�{����v������`�K�E*h���\���� ���G�Pnea��}��0�R�zE�X,�T�X�o�4x�� 9OLS|~5��c$N[QpL;��}�7 ��`�|L��B��H�G(Qɋ/|�Fj|^�|�v��g؊� �r�?�b�M:^�:�,��=t6~�F4�1�����̙��YR÷ȉ_+Y"30�\�u��6�.��֣4T��־\7��˭��[=�d�,�=�/?2f5�G8�nX�hD��u=����>���_�$_�~,�J0�.�.-"��,E��.��������+�!ym���u��p'�ʚO��W}+��3*$WBC�sM��D�\4>�\�\��mpsx���a�kn�z����+,<80>��_!s `Л����P�����Ɇ�JuP�{��i�/�#�;�^5l�tFE�I�>ٛ,��C�C�O�� +Qtq��=>-v��6ކ�E������s�M93�^x9S�� ���)�"��x�q�U�}���ī���v�+����)��o�`^� ÆLӂ6��)�N%�l�:�,��R�Y��3n� +*��LT��gFΑ�Y�SU +X��D䬖��e�.� +_���h��PcB��~O?rL���D���@��i����ld��ր��h�k@�M�L�On�a{����#(�AKM�?��==EU�T�܆"vL+b�&q����V-W���Aܘ��:��^!!��۩D�N��-��uK^1��z��w�z���l����h�����o�]-u�Id��>��*|BG��6���f�ϨB��`�b�a�Nt���ސ�gj���iu�=�퀺�kgL�V������zK�|6����R�P�r)�����4H�����rߑh�n��5opP^~<��P53����O|c�y*�̊��NAϥ +����&����{}T��@DG4Q߮��y�3s�b��V�dJ��_��dxx� ��/@��M��A�ÊȘ4G���#c�9R��kd.�F�M��X�}��&�-Z&d�����S�OԾ�ݕ/_�J�Rӛ*���BL�ob�\��-�3�XP�"�{�Ų�2�7\Xu}4����}��h�|�t�|Q�^�˦�̗�Bj(�33Z�$E��O�Iӛ4�I�1i�$�&�4h}{��& ��4����jݕ�_2�Y�k;�ӗ�/*��l(��-��{gKo��q��1RHe�y���!��>����I�!MI+Z����[���T/v$w��5�Y��n\��y ��v�2��y��7z#��;�fV�U&�}�'�����&S��y��Tt6����z��~:!3��)n��0{ל�.�{b�]��v7����/f��E+n$W�4�����Y���u�]�W67I`���z�Ԕ!��0����EI�/[�.Me����������C>6��ޅ�%�V�xK�c퓺�_RW�S/���+���J%�����e�V��q%�:�T�����5��f��d�m�x�y#����y�AN^yg��<�ud��%�e���R�L�� �%Q +6��n��jѐ�Q�=e����%GX"�a0 E�2�-�~/�@Yx'�vP���{a=�'�jZ��V������+��2���x&�R�㡽��S;����f��9)�A��EXz3�k��Ua��j��ɖ6z��`�~�Ϳ��w`�����O����3�.���d�:����n� +�������v��~N�U�7�+<2�����~������^�G��b�$��I^��2���4�����M��m�*�� ����p{�ܭ")q�k��"L�q�B�:��fx�"_����Y��ܓ*��k' +�ޒ\Ƿ�A�Q�]E��[�o���Ǜp�4�=q��#�J�l���Z/�҄K �(����k,c��V���,ڧI���%�212RXB +2�ZbeO&\d�db��)��~��T�d�W��H � �(I����r ����͢��w��>�$��`�Lܱ�`��6�_��f͇��?�z��4�Ť��)��kH�מT`96�tw/�#���"�R��4�ſS93D%����\:�9n�{�e���1~=������^���s&����d:����D*}L��6ڃ.Vq�< �O��]�^��Q�� ���<�_P������a����n�[x����у��t7����|+2�T���}t�~���ίs� 4��Q�(�$ �&��v���h~.�Z���qnjf.�\o,��W*�����L��X�,�[:��z�凷�.kWE�,F��G]q~��.SYt^���܄)���k��_o��)�\�3;�� Sp��Zw�������u��=�'�'�f��+�����4�{������kdw~"��d�G֒*Wm��d��I\���� +{�Y^�4kKm[-|� +��O>���̟�`��rp���H{���s�<���ƣ�Ъ����C�i@�3�c#'�G�}2��JL��pOc;j�n܄,|�'�'4 0oN`�i�;�{±���pl��<1>xqx�9�q���3�7S����duF7������{�ѱ�c�֡�Ϟ�:1>�zw{����� +���6hՑ�5۪#��m +v��gh�XCga+'Zo��-��.IO�CS���,�6:ђk �X�~}"?���ƭT�ga�U�wr؞f+\�=��ީ�O5��w����Ze�a��lC��G�)��&��m6���6 X�kr�����cz"φ���=(��T����ύ����_2.Ŝ7��Ow)t�u?V�;l�n�����ƫP��g@9湘���q�8��D3�;��x�����<��y�;cO+H�����\+Գ��Y�d�ὠ�칼��O��q�����$8so���+aZ �ab_�><:q�0���d<����ȄfQ��f"��}O���g�Ϻ� }�X�� f�&Gq͘�:P+��3�s���A��yk�y��%���LO����|�g��7��|��R��d6���M���6���ؔ��/\1\-gGC�,|����l��',͢x���n��'�U(����q��Y�2�ֶ�7���tWo��I��\�t�@�vG��:������R�t0��*��FE��W�2��� R!K��!�.ᦹ�%�y�b�u����r�3ld���w���G�b��Ƭ1b �Miu�o���|��������$60C�]�,Ƭ�io���� 2䳏9EJ��zw��d���ֹ�3�?c���߇��-� +;2�"�5`ዄ����H����p\�?b� E�g�������8�$�B<�X��[,D����oa��R�47,i����])�o����C�$�O�X�Um� �"9t��B��������c�^����jD7��'�J�痓�j�N���w��u0��HYRB�[:�3��YmR<)�v��#�L��8νp9�`:����$�v�'7���6��סc����l2N&�h������.M�n����vB:tM-Vvp��o��: �ٮ��)k�����X����.m����U��x� �}l�����;�1'�H�U[�O+y�Ģ���ۧF�A9ӱ9�S �10l���G�8��F0��6�Y�ֆN�UYJQ�-Ӧ +�4��R���I07b���I�Ldp*��\����9<�~�Z `=��H +������A�XE�m�~3���p��~(l��/��q>"(����k����9X�%s��k���Cg:8�D(���� �� x.l���������Ɔ 8�G��z* 8� ����L�9�#���4|�mw�'�ێrF�U�M����4�l���ӓ��e)���1��N�=W8�+��TͿ�7��`�A��d����R�gSc��-�4��;9�������QP~����MԂ���r�|=fG��|o>��qԏ�F�[�:�%���o�G �Fuģz㦇��j#�\�*T�4��0�ѯ�պ'm�hG + ��[�>-N���G1<�;5������5��l�EI���G�=�Z�f���SB< tؕ~jI��q����`&�4��K~�bb�!����7�Z7�`���l�o���*fdI��d��}�d�ӛ��m�{u٫�^]��,Lғ�#s:-�H/��]� ��"\���K�Z3�yN��Hz��m]U�\�P�����x�-����2鮀t���{�=����ZMv~7D��@@o`��V�j|Oz������RHJ=!6�<��R.�����(���ˢž]�����ɔY!�-q�G*�2�t�TSE����&��չ�,��p�ܡ?Y���h^�&��?��7�f�f���sʸ�� ѿ��o@�x����z8�o|���d�ͮ��X��UI��V�,�{Cw9���3��A0���j�7���)�5��n}�L�á�t��K��� �:s�z�x�j4s1y���B����Y�@�U8��u4g($�f6[�'�e05��CSz��8���O����fj�5I����,��i���f�Ƽ�K�>��h��*����։VLj�>n�0�B�b��>�&�-f�;엑ŵ� +���!]��P����~8���GT�`-F��Ù�\џ����k}��79z���VE;�<mgnh�$� ��Y9 ���C;sG�_"� �`�0�����J{�l��[���z�Ӻ��}I7�l`�ٙ��R�uA�t@��غK +�Y�� ����N̓�m�L���1�5��y���-��+�mr�����;Ds�{�W��jP��%�H�0r���7�#���j�g�t2u������W +���"1�o�S�yCN�]�j��-0�4�[����~�/�c��7�έ�lT^�d� �b�����K:Mر��<#��!ڞ��Oh�x�lz&�p`y�W������A� ր���Wi٩���Zqw<�Ͽ�ڊ��kכ:g?�J{����Z����l����K���� t|�/�ܠw����ޝ���Uo�su��������ǹ���A6�8�ŵ�G��N`�^���y{��qV��^��Ek�E{'l�q��q=�s���Z��m��H-�H��;z�+`'p��_O_$��S�G�9O�I�I9��(s��]l�$����:���9Z�����A2� ��2�M'��HE��_!�+�(v\ \�t��k�C��S}Z�t%��F���h/��id�w�C���#�X���p�g8z� 9�u/8G��d�}��Fʵ����^��Y���m�vТ�����Ā}b�����O��P��g\���p���;�A���\Z�}[��/5'�Wx�/���x�hP��*/���DѣV��e����w>�"=jzu�{����]�{U*�����)�Q��u�yKPÇI��=؞1�*�����?:#������-F�@���w�Q�Ѽ�(-��D�H ��A�콌����2�?�+�U��<�Vqr��X��iAkuk:��Lwօ�tT�جI$�I�:9��XzO)~U�1{��3ְAf�Iq#3Oj�u+Ke�[GIo���Io��_(K�6I�))e�8w�Z?��6�'F�#)���t��1yK�:\m�m���0��[i'���x��Q��z%�+��sA�TG��I�:���+�ܣcg"N�vҎ9cח��9^��'�T��sצ�� ��ݜQ�@AC� �h�d�H>� + �7��V��T��.K|�M���+�s&N�N��i8���x��IJp� K��50x�1ۗ��2��T���D�Ш��!�L �abV|�:��4�ou=��.�M��Lv��n�Q�t]�f�Y��|F[�ZN������� l ��z�ҙz���,���y����7�C'����K0�l�8Cg:^Mf�3�}!<5w嚉]����V���`���R�ly�_��z��n�B#<hp��ֶ{��kXo�Y�魆1�JPFAXR�)�_�N*'���Z^U �&e���0E[<+z4wK<�8dO�^E���Kr~��n��>Z-� �����jOB��갓q�vT�)��&�ז�*���x�s��㲪Tn�@['yy��N�j.�Q��ֻ�x{�/��qz$>�k�5$s,\:a�-����u[,�dAf~��N�D���\��R�Kw.^ :;�]!8��Q�B"O��V�/�v��C��6@u�n�c�=\��d���O���ߐ�Pa"Uj0I���ԪuJX<N;V���ia5/��B�O�<��$�i�.�Z-�E��/�����w�.%]�⊹�CJ��9� ���ҡ�?��\�j�����a���pO�a�4�w�����÷��<ܸ�1�ߗ��ݿo6������2u.?�n�9���Ƀ�������x�f9�t�?��ps��.���k�}����_��:C���a�eԧ�=��N�W�?�f�Ę��x��YcTN��Cr���i���?�6r�����h{�~�����O�����.�q���=����/�?���o�ݺ�Ƿ���YfWص5f��=�u8�f +H~&���%;_��3������ٵ2-m�s�4H�s�.�V�[����)t�p4��ʑ��W;�l��^0E�CI�11d������HI��X'}:zp��IR��d�%B�e��ʦ�|!USS���w�풴#��Ps��ܟ�\��2tHpHI��)��;�F���<�w������/~�~Ϩ(�c���#���3���W2��o_��L��:D��������H�r���.���o��_��ޛ�+վM� \ No newline at end of file diff --git a/core/modules/system/tests/src/Functional/UpdateSystem/UpdatePathTestBaseFilledTest.php b/core/modules/system/tests/src/Functional/UpdateSystem/UpdatePathTestBaseFilledTest.php index 29c30bfd939be0e7d82b82ca3084ca91bc537c4c..366fd53e497f63826cb483399f2a949cf242597f 100644 --- a/core/modules/system/tests/src/Functional/UpdateSystem/UpdatePathTestBaseFilledTest.php +++ b/core/modules/system/tests/src/Functional/UpdateSystem/UpdatePathTestBaseFilledTest.php @@ -370,7 +370,6 @@ public function testUpdatedSite() { 'options', 'page_cache', 'path', - 'quickedit', 'rdf', 'responsive_image', 'rest', diff --git a/core/modules/text/src/Plugin/Field/FieldFormatter/TextSummaryOrTrimmedFormatter.php b/core/modules/text/src/Plugin/Field/FieldFormatter/TextSummaryOrTrimmedFormatter.php index 5086a31d4d81056c61259a263ccf30f5f759e487..b156e7a832743e62ab40569dbee8c44ff73f2c15 100644 --- a/core/modules/text/src/Plugin/Field/FieldFormatter/TextSummaryOrTrimmedFormatter.php +++ b/core/modules/text/src/Plugin/Field/FieldFormatter/TextSummaryOrTrimmedFormatter.php @@ -10,9 +10,6 @@ * label = @Translation("Summary or trimmed"), * field_types = { * "text_with_summary" - * }, - * quickedit = { - * "editor" = "form" * } * ) */ diff --git a/core/modules/text/src/Plugin/Field/FieldFormatter/TextTrimmedFormatter.php b/core/modules/text/src/Plugin/Field/FieldFormatter/TextTrimmedFormatter.php index 35dc4f70da8e59b1d2e7c1b8ffd87f192db5c919..6f90a56d99e723034f9279e079341dcb2f7ba9dc 100644 --- a/core/modules/text/src/Plugin/Field/FieldFormatter/TextTrimmedFormatter.php +++ b/core/modules/text/src/Plugin/Field/FieldFormatter/TextTrimmedFormatter.php @@ -22,9 +22,6 @@ * "text", * "text_long", * "text_with_summary" - * }, - * quickedit = { - * "editor" = "form" * } * ) */ diff --git a/core/themes/claro/claro.info.yml b/core/themes/claro/claro.info.yml index 60213d54059f877958ce1fa78f08181b01e3165b..53e70a9466f31762b250a2b4df76d8378950e44d 100644 --- a/core/themes/claro/claro.info.yml +++ b/core/themes/claro/claro.info.yml @@ -160,8 +160,6 @@ libraries-extend: media_library/widget: - claro/media_library.theme -quickedit_stylesheets: - - css/components/quickedit.css ckeditor_stylesheets: - css/base/elements.css - css/base/typography.css diff --git a/core/themes/claro/css/components/quickedit.css b/core/themes/claro/css/components/quickedit.css deleted file mode 100644 index b2c6bf61db4bdbbe042b720d54df0feebc2480d2..0000000000000000000000000000000000000000 --- a/core/themes/claro/css/components/quickedit.css +++ /dev/null @@ -1,74 +0,0 @@ -/* - * DO NOT EDIT THIS FILE. - * See the following change record for more information, - * https://www.drupal.org/node/3084859 - * @preserve - */ - -/** - * @file - * Override Quick Edit's entity toolbar style on the Drupal front-end. - * - * I.e. loaded by Quick Edit on the front-end, despite this being a back-end theme. - */ - -/** - * The Claro style guide prescribes softer corners. - */ - -.quickedit-toolbar-container > .quickedit-toolbar-content, -.quickedit-toolbar-container > .quickedit-toolbar-lining { - border-radius: 0.25rem; -} - -.quickedit-button { - border-radius: 0.1875rem; -} - -/** - * Entity toolbar's "save" button must be styled like a Claro primary button. - */ - -.quickedit-button.action-save, -.quickedit-button.action-saving { - margin-top: 2px; - color: #fff; - border-color: #1e5c90; - background-image: linear-gradient(to bottom, #007bc6, #0071b8); - text-shadow: 0 1px hsla(0, 0%, 0%, 0.5); - font-weight: 700; - -webkit-font-smoothing: antialiased; -} - -.quickedit-button.action-save:hover, -.quickedit-button.action-save:focus, -.quickedit-button.action-saving:hover, -.quickedit-button.action-saving:focus { - color: #fff; - border-color: #1e5c90; - background-color: #2369a6; - background-image: linear-gradient(to bottom, #0c97ed, #1f86c7); -} - -.quickedit-button.action-save:hover, -.quickedit-button.action-save:focus, -.quickedit-button.action-saving:hover, -.quickedit-button.action-saving:focus { - box-shadow: 0 1px 2px hsla(203, 10%, 10%, 0.25); -} - -.quickedit-button.action-save:active, -.quickedit-button.action-saving:active { - border-color: #144b78; - background-image: linear-gradient(to bottom, #08639b, #0071b8); - box-shadow: inset 0 1px 3px hsla(0, 0%, 0%, 0.2); -} - -/** - * The entity toolbar's "save" button's top margin shifts both buttons 2px down, - * so we must compensate for that to achieve vertically centered positioning. - */ - -.quickedit .icon-close:before { - top: 0.5rem; -} diff --git a/core/themes/claro/css/components/quickedit.pcss.css b/core/themes/claro/css/components/quickedit.pcss.css deleted file mode 100644 index 328ec081d58857ac217a0027ccfeeb33df7d08ff..0000000000000000000000000000000000000000 --- a/core/themes/claro/css/components/quickedit.pcss.css +++ /dev/null @@ -1,63 +0,0 @@ -/** - * @file - * Override Quick Edit's entity toolbar style on the Drupal front-end. - * - * I.e. loaded by Quick Edit on the front-end, despite this being a back-end theme. - */ - -/** - * The Claro style guide prescribes softer corners. - */ -.quickedit-toolbar-container > .quickedit-toolbar-content, -.quickedit-toolbar-container > .quickedit-toolbar-lining { - border-radius: 4px; -} -.quickedit-button { - border-radius: 3px; -} - -/** - * Entity toolbar's "save" button must be styled like a Claro primary button. - */ -.quickedit-button.action-save, -.quickedit-button.action-saving { - margin-top: 2px; - color: #fff; - border-color: #1e5c90; - background-image: -webkit-linear-gradient(top, #007bc6, #0071b8); - background-image: linear-gradient(to bottom, #007bc6, #0071b8); - text-shadow: 0 1px hsla(0, 0%, 0%, 0.5); - font-weight: 700; - -webkit-font-smoothing: antialiased; -} -.quickedit-button.action-save:hover, -.quickedit-button.action-save:focus, -.quickedit-button.action-saving:hover, -.quickedit-button.action-saving:focus { - color: #fff; - border-color: #1e5c90; - background-color: #2369a6; - background-image: -webkit-linear-gradient(top, #0c97ed, #1f86c7); - background-image: linear-gradient(to bottom, #0c97ed, #1f86c7); -} -.quickedit-button.action-save:hover, -.quickedit-button.action-save:focus, -.quickedit-button.action-saving:hover, -.quickedit-button.action-saving:focus { - box-shadow: 0 1px 2px hsla(203, 10%, 10%, 0.25); -} -.quickedit-button.action-save:active, -.quickedit-button.action-saving:active { - border-color: #144b78; - background-image: -webkit-linear-gradient(top, #08639b, #0071b8); - background-image: linear-gradient(to bottom, #08639b, #0071b8); - box-shadow: inset 0 1px 3px hsla(0, 0%, 0%, 0.2); -} - -/** - * The entity toolbar's "save" button's top margin shifts both buttons 2px down, - * so we must compensate for that to achieve vertically centered positioning. - */ -.quickedit .icon-close:before { - top: 8px; -} diff --git a/core/themes/olivero/css/components/site-header.css b/core/themes/olivero/css/components/site-header.css index 39e77b589e2ba13663a46ad4973d0d805c71c0f2..f11e7cfed2b7a2268767b2519fe5be7c8eaa1724 100644 --- a/core/themes/olivero/css/components/site-header.css +++ b/core/themes/olivero/css/components/site-header.css @@ -27,7 +27,7 @@ position: relative; /** * Ensure mobile site header is always above other elements including - * contextual links, quick-edit, and Tour. + * contextual links, and Tour. */ z-index: 101 } diff --git a/core/themes/olivero/css/components/site-header.pcss.css b/core/themes/olivero/css/components/site-header.pcss.css index 1aceb838a7f5ed1eb3386bae1a2c5db591a9f539..9eaf220761bfd770349385c8f10e91171a4fdc9a 100644 --- a/core/themes/olivero/css/components/site-header.pcss.css +++ b/core/themes/olivero/css/components/site-header.pcss.css @@ -9,7 +9,7 @@ position: relative; /** * Ensure mobile site header is always above other elements including - * contextual links, quick-edit, and Tour. + * contextual links, and Tour. */ z-index: 101; diff --git a/core/themes/stable/css/ckeditor/ckeditor.css b/core/themes/stable/css/ckeditor/ckeditor.css index c1e2d4409fb15cb7b4c9f0bc77b80b1075cf4273..400c6da9125e79d4febe6db0585131f2e47fdc22 100644 --- a/core/themes/stable/css/ckeditor/ckeditor.css +++ b/core/themes/stable/css/ckeditor/ckeditor.css @@ -23,17 +23,3 @@ font-size: 14px; -webkit-touch-callout: none; } - -/** - * Adjust the style of in-place editing CKEditor instances. - */ -.quickedit-toolgroup.wysiwyg-main .cke_chrome, -.quickedit-toolgroup.wysiwyg-main .cke_inner, -.quickedit-toolgroup.wysiwyg-main .cke_top { - border-top: none; - border-right: none; - border-bottom: none; - border-left: none; - background: transparent; - box-shadow: none; -} diff --git a/core/themes/stable/css/quickedit/editors/editors/image.css b/core/themes/stable/css/quickedit/editors/editors/image.css deleted file mode 100644 index b6218c93f955a94138196ea437f6a2737d120c0a..0000000000000000000000000000000000000000 --- a/core/themes/stable/css/quickedit/editors/editors/image.css +++ /dev/null @@ -1,52 +0,0 @@ -/** - * @file - * Functional styles for the Quick Edit image in-place editor. - */ - -/** - * A minimum width/height is required so that users can drag and drop files - * onto small images. - */ -.quickedit-image-element { - min-width: 200px; - min-height: 200px; -} - -.quickedit-image-dropzone { - position: absolute; - top: 0; - left: 0; - display: flex; - flex-direction: column; - align-items: center; - justify-content: center; - width: 100%; - height: 100%; -} - -.quickedit-image-icon { - display: block; - width: 50px; - height: 50px; - background-repeat: no-repeat; - background-size: cover; -} - -.quickedit-image-field-info { - display: flex; - align-items: center; - justify-content: flex-end; -} - -.quickedit-image-text { - display: block; -} - -/** - * If we do not prevent pointer-events for child elements, our drag+drop events - * will not fire properly. This can lead to unintentional redirects if a file - * is dropped on a child element when a user intended to upload it. - */ -.quickedit-image-dropzone * { - pointer-events: none; -} diff --git a/core/themes/stable/css/quickedit/editors/editors/image.theme.css b/core/themes/stable/css/quickedit/editors/editors/image.theme.css deleted file mode 100644 index 0257a9019cd1a6b3b21d6eab45615fde56384502..0000000000000000000000000000000000000000 --- a/core/themes/stable/css/quickedit/editors/editors/image.theme.css +++ /dev/null @@ -1,100 +0,0 @@ -/** - * @file - * Theme styles for the Quick Edit image in-place editor. - */ - -.quickedit-image-dropzone { - transition: background 0.2s; - background: rgba(116, 183, 255, 0.8); -} - -.quickedit-image-icon { - margin: 0 0 10px 0; - transition: margin 0.5s; -} - -.quickedit-image-dropzone.hover { - background: rgba(116, 183, 255, 0.9); -} - -.quickedit-image-dropzone.error { - background: rgba(255, 52, 27, 0.81); -} - -.quickedit-image-dropzone.upload .quickedit-image-icon { - background-image: url("../../../images/image/upload.svg"); -} - -.quickedit-image-dropzone.error .quickedit-image-icon { - background-image: url("../../../images/image/error.svg"); -} - -.quickedit-image-dropzone.loading .quickedit-image-icon { - margin: -10px 0 20px 0; -} - -.quickedit-image-dropzone.loading .quickedit-image-icon::after { - display: block; - width: 60px; - height: 60px; - margin-top: -5px; - margin-left: -10px; - content: ""; - animation-name: quickedit-image-spin; - animation-duration: 2s; - animation-timing-function: linear; - animation-iteration-count: infinite; - border-width: 5px; - border-style: solid; - border-color: white transparent transparent transparent; - border-radius: 35px; -} - -@keyframes quickedit-image-spin { - 0% { transform: rotate(0deg); } - 50% { transform: rotate(180deg); } - 100% { transform: rotate(360deg); } -} - -.quickedit-image-text { - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - text-align: center; - color: white; - font-family: "Droid sans", "Lucida Grande", sans-serif; - font-size: 16px; -} - -.quickedit-image-field-info { - padding: 5px; - border-top: 1px solid #c5c5c5; - background: rgba(0, 0, 0, 0.05); -} - -.quickedit-image-field-info div { - margin-right: 10px; /* LTR */ -} - -.quickedit-image-field-info div:last-child { - margin-right: 0; /* LTR */ -} - -[dir="rtl"] .quickedit-image-field-info div { - margin-right: 0; - margin-left: 10px; -} - -[dir="rtl"] .quickedit-image-field-info div:last-child { - margin-left: 0; -} - -.quickedit-image-errors .messages__wrapper { - margin: 0; - padding: 0; -} - -.quickedit-image-errors .messages--error { - box-shadow: none; -} diff --git a/core/themes/stable/css/quickedit/editors/formattedText.ckeditor.css b/core/themes/stable/css/quickedit/editors/formattedText.ckeditor.css deleted file mode 100644 index 6850af4c65fd8805c93c621a384d54478e909a41..0000000000000000000000000000000000000000 --- a/core/themes/stable/css/quickedit/editors/formattedText.ckeditor.css +++ /dev/null @@ -1,18 +0,0 @@ -/** - * @file - * Functional styles for the CKEditor-based formatted text in-place editor. - */ - -/** - * Adjust the style of in-place editing CKEditor instances. - */ -.quickedit-toolgroup.wysiwyg-main .cke_chrome, -.quickedit-toolgroup.wysiwyg-main .cke_inner, -.quickedit-toolgroup.wysiwyg-main .cke_top { - border-top: none; - border-right: none; - border-bottom: none; - border-left: none; - background: transparent; - box-shadow: none; -} diff --git a/core/themes/stable/css/quickedit/editors/formattedText.ckeditor5.css b/core/themes/stable/css/quickedit/editors/formattedText.ckeditor5.css deleted file mode 100644 index 6850af4c65fd8805c93c621a384d54478e909a41..0000000000000000000000000000000000000000 --- a/core/themes/stable/css/quickedit/editors/formattedText.ckeditor5.css +++ /dev/null @@ -1,18 +0,0 @@ -/** - * @file - * Functional styles for the CKEditor-based formatted text in-place editor. - */ - -/** - * Adjust the style of in-place editing CKEditor instances. - */ -.quickedit-toolgroup.wysiwyg-main .cke_chrome, -.quickedit-toolgroup.wysiwyg-main .cke_inner, -.quickedit-toolgroup.wysiwyg-main .cke_top { - border-top: none; - border-right: none; - border-bottom: none; - border-left: none; - background: transparent; - box-shadow: none; -} diff --git a/core/themes/stable/css/quickedit/editors/formattedText/ckeditor5.workaround.css b/core/themes/stable/css/quickedit/editors/formattedText/ckeditor5.workaround.css deleted file mode 100644 index e64eb0d03cf14d1f076da38d2ec8cf26e163aaa6..0000000000000000000000000000000000000000 --- a/core/themes/stable/css/quickedit/editors/formattedText/ckeditor5.workaround.css +++ /dev/null @@ -1,9 +0,0 @@ -.quickedit-editable, -.quickedit-editing.ck.ck-editor__editable_inline { - top: inherit !important; - left: inherit !important; - margin-bottom: inherit !important; -} -.quickedit-editing.ck.ck-editor__editable_inline > :first-child { - margin-top: inherit; -} diff --git a/core/themes/stable/css/quickedit/editors/image.css b/core/themes/stable/css/quickedit/editors/image.css deleted file mode 100644 index 9265f309dbda9ad00ab5b9c0ef4c275042d07605..0000000000000000000000000000000000000000 --- a/core/themes/stable/css/quickedit/editors/image.css +++ /dev/null @@ -1,52 +0,0 @@ -/** - * @file - * Functional styles for the QuickEdit module's in-place editor. - */ - -/** - * A minimum width/height is required so that users can drag and drop files - * onto small images. - */ -.quickedit-image-element { - min-width: 200px; - min-height: 200px; -} - -.quickedit-image-dropzone { - position: absolute; - top: 0; - left: 0; - display: flex; - flex-direction: column; - align-items: center; - justify-content: center; - width: 100%; - height: 100%; -} - -.quickedit-image-icon { - display: block; - width: 50px; - height: 50px; - background-repeat: no-repeat; - background-size: cover; -} - -.quickedit-image-field-info { - display: flex; - align-items: center; - justify-content: flex-end; -} - -.quickedit-image-text { - display: block; -} - -/** - * If we do not prevent pointer-events for child elements, our drag+drop events - * will not fire properly. This can lead to unintentional redirects if a file - * is dropped on a child element when a user intended to upload it. - */ -.quickedit-image-dropzone * { - pointer-events: none; -} diff --git a/core/themes/stable/css/quickedit/editors/image.theme.css b/core/themes/stable/css/quickedit/editors/image.theme.css deleted file mode 100644 index 7fd07346e8013cfc394eb14390393a6e72515ad8..0000000000000000000000000000000000000000 --- a/core/themes/stable/css/quickedit/editors/image.theme.css +++ /dev/null @@ -1,100 +0,0 @@ -/** - * @file - * Theme styles for the QuickEdit module's in-place editor. - */ - -.quickedit-image-dropzone { - transition: background 0.2s; - background: rgba(116, 183, 255, 0.8); -} - -.quickedit-image-icon { - margin: 0 0 10px 0; - transition: margin 0.5s; -} - -.quickedit-image-dropzone.hover { - background: rgba(116, 183, 255, 0.9); -} - -.quickedit-image-dropzone.error { - background: rgba(255, 52, 27, 0.81); -} - -.quickedit-image-dropzone.upload .quickedit-image-icon { - background-image: url("../../../images/image/upload.svg"); -} - -.quickedit-image-dropzone.error .quickedit-image-icon { - background-image: url("../../../images/image/error.svg"); -} - -.quickedit-image-dropzone.loading .quickedit-image-icon { - margin: -10px 0 20px 0; -} - -.quickedit-image-dropzone.loading .quickedit-image-icon::after { - display: block; - width: 60px; - height: 60px; - margin-top: -5px; - margin-left: -10px; - content: ""; - animation-name: quickedit-image-spin; - animation-duration: 2s; - animation-timing-function: linear; - animation-iteration-count: infinite; - border-width: 5px; - border-style: solid; - border-color: white transparent transparent transparent; - border-radius: 35px; -} - -@keyframes quickedit-image-spin { - 0% { transform: rotate(0deg); } - 50% { transform: rotate(180deg); } - 100% { transform: rotate(360deg); } -} - -.quickedit-image-text { - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - text-align: center; - color: white; - font-family: "Droid sans", "Lucida Grande", sans-serif; - font-size: 16px; -} - -.quickedit-image-field-info { - padding: 5px; - border-top: 1px solid #c5c5c5; - background: rgba(0, 0, 0, 0.05); -} - -.quickedit-image-field-info div { - margin-right: 10px; /* LTR */ -} - -.quickedit-image-field-info div:last-child { - margin-right: 0; /* LTR */ -} - -[dir="rtl"] .quickedit-image-field-info div { - margin-right: 0; - margin-left: 10px; -} - -[dir="rtl"] .quickedit-image-field-info div:last-child { - margin-left: 0; -} - -.quickedit-image-errors .messages__wrapper { - margin: 0; - padding: 0; -} - -.quickedit-image-errors .messages--error { - box-shadow: none; -} diff --git a/core/themes/stable/css/quickedit/quickedit.icons.theme.css b/core/themes/stable/css/quickedit/quickedit.icons.theme.css deleted file mode 100644 index 4148c1782721e5482d4e43aa4d888c01fe6e8866..0000000000000000000000000000000000000000 --- a/core/themes/stable/css/quickedit/quickedit.icons.theme.css +++ /dev/null @@ -1,74 +0,0 @@ -/** - * @file - * Icons for Quick Edit module. - */ - -.quickedit .icon { - position: relative; - min-width: 2.5em; - min-height: 1em; -} -.quickedit .icon.icon-only { - text-indent: -9999px; -} -.quickedit .icon.icon-end { - padding-right: 2.5em; /* LTR */ -} -[dir="rtl"] .quickedit .icon.icon-end { - padding-right: 0; - padding-left: 2.5em; -} -.quickedit .icon:before { - position: absolute; - top: 0; - left: 0; /* LTR */ - display: block; - width: 100%; - height: 100%; - content: ""; - background-color: transparent; - background-repeat: no-repeat; - background-attachment: scroll; - background-position: center center; -} -[dir="rtl"] .quickedit .icon:before { - right: 0; - left: auto; -} -.quickedit .icon-end:before { - right: 0.5em; /* LTR */ - left: auto; /* LTR */ - width: 18px; -} -[dir="rtl"] .quickedit .icon-end:before { - right: auto; - left: 0.5em; -} -.quickedit button.icon { - font-size: 1em; -} -.quickedit .icon-pencil { - margin-left: 0.5em; - padding-left: 1.5em; -} - -/** - * Images. - */ -.quickedit .icon-close:before { - top: 10px; - height: 12px; - background-image: url(../../images/core/icons/787878/ex.svg); -} -.quickedit .icon-close:hover:before, -.quickedit .icon-close:active:before { - background-image: url(../../images/core/icons/000000/ex.svg); -} -.quickedit .icon-throbber:before { - background-image: url(../../images/quickedit/icon-throbber.gif); -} -.quickedit .icon-pencil:before { - background-image: url(../../images/core/icons/5181c6/pencil.svg); - background-position: left center; - background-size: 1.3em; -} diff --git a/core/themes/stable/css/quickedit/quickedit.module.css b/core/themes/stable/css/quickedit/quickedit.module.css deleted file mode 100644 index 4c55a9a4f72c29475b4424df0f546480dca555db..0000000000000000000000000000000000000000 --- a/core/themes/stable/css/quickedit/quickedit.module.css +++ /dev/null @@ -1,122 +0,0 @@ -/** - * @file - * Generic base styles for Quick Edit module. - * - * Note: every class is prefixed with "quickedit-" to prevent collisions with - * modules or themes. In Edit module-specific DOM subtrees, this is not - * necessary. - */ - -/** - * Editable. - */ -.quickedit-editable { - position: relative; - z-index: 98; - cursor: pointer; -} -.quickedit-editable:focus { - outline: none; -} - -/** - * Highlighted (hovered) editable. - */ -.quickedit-editable.quickedit-highlighted { - z-index: 99; -} -.quickedit-validation-errors > .messages { - margin-right: 0; - margin-left: 0; -} -.quickedit-validation-errors > .messages > ul { - margin: 0; - padding: 0; - list-style: none; -} - -/** - * In-place editors that don't use a popup. - */ -.quickedit-validation-errors { - position: relative; - z-index: 300; -} -.quickedit-validation-errors .messages.error { - position: absolute; - top: 6px; - left: -5px; /* LTR */ - margin: 0; - border: none; -} -[dir="rtl"] .quickedit-validation-errors .messages.error { - right: -5px; - left: auto; -} - -/** - * Styling specific to the 'form' in-place editor. - */ -#quickedit_backstage { - display: none; -} -.quickedit-form { - position: absolute; - z-index: 300; - max-width: 35em; -} -.quickedit-form .placeholder { - min-height: 22px; -} - -/** - * Default form styling overrides. - */ -.quickedit-form .form-wrapper .form-wrapper { - margin: inherit; -} -.quickedit-form .form-actions { - display: none; -} -.quickedit-form input { - max-width: 100%; -} - -/** - * Entity toolbar. - */ -.quickedit-toolbar-container { - position: absolute; - z-index: 100; - width: 320px; - max-width: 320px; -} -.quickedit-toolbar-container > .quickedit-toolbar-pointer, -.quickedit-toolbar-container > .quickedit-toolbar-lining { - display: none; -} -.quickedit-form-container { - position: relative; - z-index: 100; - margin: 0; - padding: 0; - vertical-align: baseline; - border: 0; -} -.quickedit-toolgroup.ops { - float: right; /* LTR */ -} -[dir="rtl"] .quickedit-toolgroup.ops { - float: left; -} -.quickedit-toolbar-label { - overflow: hidden; -} -#quickedit-toolbar-fence { - position: fixed; - z-index: -1; - top: 0; - right: 0; - bottom: 0; - left: 0; -} diff --git a/core/themes/stable/css/quickedit/quickedit.theme.css b/core/themes/stable/css/quickedit/quickedit.theme.css deleted file mode 100644 index cf8f60c56118f282a431cc8c5919c800200ab44a..0000000000000000000000000000000000000000 --- a/core/themes/stable/css/quickedit/quickedit.theme.css +++ /dev/null @@ -1,254 +0,0 @@ -/** - * @file - * Styling for Quick Edit module. - */ - -/** - * Editable. - */ -.quickedit-field.quickedit-editable, -.quickedit-field .quickedit-editable { - box-shadow: 0 0 0 2px #74b7ff; -} - -/** - * Highlighted (hovered) editable. - */ -.quickedit-field.quickedit-highlighted, -.quickedit-form.quickedit-highlighted, -.quickedit-field .quickedit-highlighted { - box-shadow: 0 0 0 1px #74b7ff, 0 0 0 2px #007fff; -} -.quickedit-field.quickedit-changed, -.quickedit-form.quickedit-changed, -.quickedit-field .quickedit-changed { - box-shadow: 0 0 0 1px #fec17e, 0 0 0 2px #f7870a; -} -.quickedit-editing.quickedit-validation-error, -.quickedit-form.quickedit-validation-error { - box-shadow: 0 0 0 1px #ee8b74, 0 0 0 2px #fa2209; -} -.quickedit-editing.quickedit-editor-is-popup { - box-shadow: none; -} -.quickedit-form .form-item .error { - border: 1px solid #eea0a0; -} - -/** - * Default form styling overrides. - */ -.quickedit-form form { - padding: 0.5em; -} -.quickedit-form .form-item { - margin: 0; -} -.quickedit-form .form-wrapper { - margin: 0.5em; -} - -/** - * Animations. - */ -.quickedit-animate-invisible { - opacity: 0; -} -.quickedit-animate-default { - -webkit-transition: all 0.4s ease; - transition: all 0.4s ease; -} -.quickedit-animate-slow { - -webkit-transition: all 0.6s ease; - transition: all 0.6s ease; -} -.quickedit-animate-delay-veryfast { - -webkit-transition-delay: 0.05s; - transition-delay: 0.05s; -} -.quickedit-animate-delay-fast { - -webkit-transition-delay: 0.2s; - transition-delay: 0.2s; -} -.quickedit-animate-disable-width { - -webkit-transition: width 0s; - transition: width 0s; -} -.quickedit-animate-only-visibility { - -webkit-transition: opacity 0.2s ease; - transition: opacity 0.2s ease; -} - -/** - * In-place editors that don't use a popup. - */ -.quickedit-validation-errors .messages.error { - background-color: white; - box-shadow: 0 0 1px 1px red, 0 0 3px 3px rgba(153, 153, 153, 0.5); -} - -/** - * Styling specific to the 'form' in-place editor. - */ -.quickedit-form { - background-color: white; - box-shadow: 0 0 30px 4px #4f4f4f; -} - -/** - * Toolbars. - */ -.quickedit-toolbar-container { - padding-top: 7px; - padding-bottom: 7px; - -webkit-transition: all 1s; - transition: all 1s; - font-family: "Source Sans Pro", "Lucida Grande", sans-serif; -} -.quickedit-toolbar-container > .quickedit-toolbar-content { - position: relative; - z-index: 2; - box-sizing: border-box; - padding: 0.1667em; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - color: black; - background-image: -webkit-linear-gradient(top, #fff, #e4e4e4); - background-image: linear-gradient(to bottom, #fff, #e4e4e4); -} -.quickedit-toolbar-container > .quickedit-toolbar-pointer { - position: absolute; - z-index: 1; - bottom: 2px; - left: 18px; /* LTR */ - display: block; - width: 16px; - height: 16px; - -webkit-transform: rotate(45deg); - -ms-transform: rotate(45deg); - transform: rotate(45deg); - background-color: #e4e4e4; - box-shadow: 0 0 0 1px #818181, 0 0 0 4px rgba(150, 150, 150, 0.5); -} -[dir="rtl"] .quickedit-toolbar-container > .quickedit-toolbar-pointer { - right: 18px; - left: auto; -} -.quickedit-toolbar-container.quickedit-toolbar-pointer-top > .quickedit-toolbar-pointer { - top: 2px; - bottom: auto; -} -.quickedit-toolbar-container > .quickedit-toolbar-lining { - position: absolute; - z-index: 0; - top: 7px; - right: 0; - bottom: 7px; - left: 0; - display: block; - box-shadow: 0 0 0 1px #818181, 0 3px 0 1px rgba(150, 150, 150, 0.5); -} - -.quickedit-toolbar-label { - overflow: hidden; - padding: 0.333em 0.4em; - white-space: nowrap; - text-overflow: ellipsis; - font-style: italic; -} -.quickedit-toolbar-label .field:after { - content: " → "; /* LTR */ -} - -[dir="rtl"] .quickedit-toolbar-label .field:after { - content: " ← "; -} - -/* The toolbar; these are not necessarily visible. */ -.quickedit-toolbar { - font-family: "Droid sans", "Lucida Grande", sans-serif; -} -.quickedit-toolbar-entity { - padding: 0.1667em 0.2em; -} - -/** - * Info toolgroup. - */ -.quickedit-toolbar-fullwidth { - width: 100%; -} -.quickedit-toolgroup.wysiwyg-floated { - float: right; /* LTR */ -} -[dir="rtl"] .quickedit-toolgroup.wysiwyg-floated { - float: left; -} -.quickedit-toolgroup.wysiwyg-main { - clear: both; - width: 100%; - padding-left: 0; /* LTR */ -} -[dir="rtl"] .quickedit-toolgroup.wysiwyg-main { - padding-right: 0; - padding-left: 0; -} - -/** - * Buttons. - */ -.quickedit-button { - display: inline-block; - margin: 0; - padding: 0.345em; - cursor: pointer; - -webkit-transition: opacity 0.1s ease; - transition: opacity 0.1s ease; - opacity: 1; - color: #5a5a5a; - border: 1px solid #d2d2d2; - background-color: #e4e4e4; -} -.quickedit-button[aria-hidden="true"] { - visibility: hidden; - opacity: 0; -} -.quickedit-button + .quickedit-button { - margin-left: 0.2em; /* LTR */ -} -[dir="rtl"] .quickedit-button + .quickedit-button { - margin-right: 0.25em; - margin-left: auto; -} -/* Button with icons. */ -.quickedit-button:hover, -.quickedit-button:active { - color: #2e2e2e; - border: 1px solid #a0a0a0; - background-color: #c8c8c8; -} -.quickedit-toolbar-container .quickedit-button.action-cancel { - border: 1px solid transparent; - background-color: transparent; -} -.quickedit-button.action-save { - color: white; - border: 1px solid transparent; - background-color: #50a0e9; - background-image: -webkit-linear-gradient(top, #50a0e9, #4481dc); - background-image: linear-gradient(to bottom, #50a0e9, #4481dc); -} -.quickedit-button.action-save:hover, -.quickedit-button.action-save:active { - border: 1px solid #a0a0a0; -} -.quickedit-button.action-saving, -.quickedit-button.action-saving:hover, -.quickedit-button.action-saving:active { - color: #5a5a5a; - border-color: #d2d2d2; - background-color: #e4e4e4; - background-image: none; -} diff --git a/core/themes/stable/images/quickedit/icon-throbber.gif b/core/themes/stable/images/quickedit/icon-throbber.gif deleted file mode 100644 index f2603e8a2cecdf53e7c2e370a50c0678e7c4b677..0000000000000000000000000000000000000000 --- a/core/themes/stable/images/quickedit/icon-throbber.gif +++ /dev/null @@ -1,6 +0,0 @@ -GIF89a������������������������Ž�����������������{{{������!�NETSCAPE2.0���!� ��,������@`��)Kk��ŏ�A|�ad��0L���9~����\��8��L��� ���Ǹ0�,� i{��q�B��C�~H�'J�RĨ`��f4&a�!� ��,������`���s��ɺ��(��t�34M!-0���,l#)�)9 !q(i<h�B������ ���3˥�(`� �,9�%�cm -b0A��Y_e�!� ��,������d����R�j�:ړ���tG�8�$��c�0���2����P� hi,��ǑQ0X[LEck5`�ڭ�P�2�F! �� a�� �@q dfz{l��Q�zK�!� ��,������`���B�j�R:�$����BPF�q�(ˢ��� J�@0i�-�2͇�� Qck�6[G`�m��:��p���Q4���fqo�w�!� ��,������d����1�j}M�S@�S\� H9����#�IrPØi8�f��..�r$�ł�|n�l� -�*T\�![�͂l�,Q0��@�(��KF��MO�{ ql{�!� ��,������^�I 3�a������!P�(�O�l���~`���8 LÇ!�@$�Lg�x|f,`"`���J��ʼn�"�c�U��P -�GAw< tz�!� ��,�������h��9C�4kk��\ ���&I�&�l� �)�F�-P@c�hH!ш4< -�� x��@��R����`0�C"��8�h0B�fg�X(rc}Y -1�!���,�����aйҚ�X��]mK�l[�)"�aĢ\�*�"�$t&�#9��@�1p��P`,`I�,8 S �8U,Q�`(d�`���3-��qH$�1T����{�; \ No newline at end of file diff --git a/core/themes/stable/stable.info.yml b/core/themes/stable/stable.info.yml index 50c618910547dbbddd4c1913b6963210e36f3818..e3a885fe31ed89e38426e87ecfc5db0e9cafa0c9 100644 --- a/core/themes/stable/stable.info.yml +++ b/core/themes/stable/stable.info.yml @@ -181,30 +181,6 @@ libraries-override: theme: css/node.admin.css: css/node/node.admin.css - quickedit/quickedit: - css: - component: - css/quickedit.module.css: css/quickedit/quickedit.module.css - theme: - css/quickedit.theme.css: css/quickedit/quickedit.theme.css - css/quickedit.icons.theme.css: css/quickedit/quickedit.icons.theme.css - quickedit/quickedit.inPlaceEditor.formattedText: - css: - component: - css/editors/formattedText.ckeditor.css: css/quickedit/editors/formattedText.ckeditor.css - css/editors/formattedText.ckeditor5.css: css/quickedit/editors/formattedText.ckeditor5.css - quickedit/quickedit.inPlaceEditor.image: - css: - component: - css/editors/image.css: css/quickedit/editors/image.css - theme: - css/editors/image.theme.css: css/quickedit/editors/image.theme.css - quickedit/quickedit.ckeditor5-temporary-work-around: - # "Temporary work-around until https://www.drupal.org/project/drupal/issues/3196689 lands." - css: - theme: - css/editors/formattedText/ckeditor5.workaround.css: css/quickedit/editors/formattedText/ckeditor5.workaround.css - settings_tray/drupal.settings_tray: css: component: diff --git a/core/themes/stable9/css/ckeditor/ckeditor.css b/core/themes/stable9/css/ckeditor/ckeditor.css index c1e2d4409fb15cb7b4c9f0bc77b80b1075cf4273..400c6da9125e79d4febe6db0585131f2e47fdc22 100644 --- a/core/themes/stable9/css/ckeditor/ckeditor.css +++ b/core/themes/stable9/css/ckeditor/ckeditor.css @@ -23,17 +23,3 @@ font-size: 14px; -webkit-touch-callout: none; } - -/** - * Adjust the style of in-place editing CKEditor instances. - */ -.quickedit-toolgroup.wysiwyg-main .cke_chrome, -.quickedit-toolgroup.wysiwyg-main .cke_inner, -.quickedit-toolgroup.wysiwyg-main .cke_top { - border-top: none; - border-right: none; - border-bottom: none; - border-left: none; - background: transparent; - box-shadow: none; -} diff --git a/core/themes/stable9/css/quickedit/editors/formattedText.ckeditor.css b/core/themes/stable9/css/quickedit/editors/formattedText.ckeditor.css deleted file mode 100644 index 6850af4c65fd8805c93c621a384d54478e909a41..0000000000000000000000000000000000000000 --- a/core/themes/stable9/css/quickedit/editors/formattedText.ckeditor.css +++ /dev/null @@ -1,18 +0,0 @@ -/** - * @file - * Functional styles for the CKEditor-based formatted text in-place editor. - */ - -/** - * Adjust the style of in-place editing CKEditor instances. - */ -.quickedit-toolgroup.wysiwyg-main .cke_chrome, -.quickedit-toolgroup.wysiwyg-main .cke_inner, -.quickedit-toolgroup.wysiwyg-main .cke_top { - border-top: none; - border-right: none; - border-bottom: none; - border-left: none; - background: transparent; - box-shadow: none; -} diff --git a/core/themes/stable9/css/quickedit/editors/formattedText.ckeditor5.css b/core/themes/stable9/css/quickedit/editors/formattedText.ckeditor5.css deleted file mode 100644 index 6850af4c65fd8805c93c621a384d54478e909a41..0000000000000000000000000000000000000000 --- a/core/themes/stable9/css/quickedit/editors/formattedText.ckeditor5.css +++ /dev/null @@ -1,18 +0,0 @@ -/** - * @file - * Functional styles for the CKEditor-based formatted text in-place editor. - */ - -/** - * Adjust the style of in-place editing CKEditor instances. - */ -.quickedit-toolgroup.wysiwyg-main .cke_chrome, -.quickedit-toolgroup.wysiwyg-main .cke_inner, -.quickedit-toolgroup.wysiwyg-main .cke_top { - border-top: none; - border-right: none; - border-bottom: none; - border-left: none; - background: transparent; - box-shadow: none; -} diff --git a/core/themes/stable9/css/quickedit/editors/formattedText/ckeditor5.workaround.css b/core/themes/stable9/css/quickedit/editors/formattedText/ckeditor5.workaround.css deleted file mode 100644 index e64eb0d03cf14d1f076da38d2ec8cf26e163aaa6..0000000000000000000000000000000000000000 --- a/core/themes/stable9/css/quickedit/editors/formattedText/ckeditor5.workaround.css +++ /dev/null @@ -1,9 +0,0 @@ -.quickedit-editable, -.quickedit-editing.ck.ck-editor__editable_inline { - top: inherit !important; - left: inherit !important; - margin-bottom: inherit !important; -} -.quickedit-editing.ck.ck-editor__editable_inline > :first-child { - margin-top: inherit; -} diff --git a/core/themes/stable9/css/quickedit/editors/image.css b/core/themes/stable9/css/quickedit/editors/image.css deleted file mode 100644 index b6218c93f955a94138196ea437f6a2737d120c0a..0000000000000000000000000000000000000000 --- a/core/themes/stable9/css/quickedit/editors/image.css +++ /dev/null @@ -1,52 +0,0 @@ -/** - * @file - * Functional styles for the Quick Edit image in-place editor. - */ - -/** - * A minimum width/height is required so that users can drag and drop files - * onto small images. - */ -.quickedit-image-element { - min-width: 200px; - min-height: 200px; -} - -.quickedit-image-dropzone { - position: absolute; - top: 0; - left: 0; - display: flex; - flex-direction: column; - align-items: center; - justify-content: center; - width: 100%; - height: 100%; -} - -.quickedit-image-icon { - display: block; - width: 50px; - height: 50px; - background-repeat: no-repeat; - background-size: cover; -} - -.quickedit-image-field-info { - display: flex; - align-items: center; - justify-content: flex-end; -} - -.quickedit-image-text { - display: block; -} - -/** - * If we do not prevent pointer-events for child elements, our drag+drop events - * will not fire properly. This can lead to unintentional redirects if a file - * is dropped on a child element when a user intended to upload it. - */ -.quickedit-image-dropzone * { - pointer-events: none; -} diff --git a/core/themes/stable9/css/quickedit/editors/image.theme.css b/core/themes/stable9/css/quickedit/editors/image.theme.css deleted file mode 100644 index 8514266ede4ee66c00544700037fc69512898d03..0000000000000000000000000000000000000000 --- a/core/themes/stable9/css/quickedit/editors/image.theme.css +++ /dev/null @@ -1,100 +0,0 @@ -/** - * @file - * Theme styles for the Quick Edit image in-place editor. - */ - -.quickedit-image-dropzone { - transition: background 0.2s; - background: rgba(116, 183, 255, 0.8); -} - -.quickedit-image-icon { - margin: 0 0 10px 0; - transition: margin 0.5s; -} - -.quickedit-image-dropzone.hover { - background: rgba(116, 183, 255, 0.9); -} - -.quickedit-image-dropzone.error { - background: rgba(255, 52, 27, 0.81); -} - -.quickedit-image-dropzone.upload .quickedit-image-icon { - background-image: url("../../../../../modules/quickedit/images/upload.svg"); -} - -.quickedit-image-dropzone.error .quickedit-image-icon { - background-image: url("../../../../../modules/quickedit/images/error.svg"); -} - -.quickedit-image-dropzone.loading .quickedit-image-icon { - margin: -10px 0 20px 0; -} - -.quickedit-image-dropzone.loading .quickedit-image-icon::after { - display: block; - width: 60px; - height: 60px; - margin-top: -5px; - margin-left: -10px; - content: ""; - animation-name: quickedit-image-spin; - animation-duration: 2s; - animation-timing-function: linear; - animation-iteration-count: infinite; - border-width: 5px; - border-style: solid; - border-color: white transparent transparent transparent; - border-radius: 35px; -} - -@keyframes quickedit-image-spin { - 0% { transform: rotate(0deg); } - 50% { transform: rotate(180deg); } - 100% { transform: rotate(360deg); } -} - -.quickedit-image-text { - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - text-align: center; - color: white; - font-family: "Droid sans", "Lucida Grande", sans-serif; - font-size: 16px; -} - -.quickedit-image-field-info { - padding: 5px; - border-top: 1px solid #c5c5c5; - background: rgba(0, 0, 0, 0.05); -} - -.quickedit-image-field-info div { - margin-right: 10px; /* LTR */ -} - -.quickedit-image-field-info div:last-child { - margin-right: 0; /* LTR */ -} - -[dir="rtl"] .quickedit-image-field-info div { - margin-right: 0; - margin-left: 10px; -} - -[dir="rtl"] .quickedit-image-field-info div:last-child { - margin-left: 0; -} - -.quickedit-image-errors .messages__wrapper { - margin: 0; - padding: 0; -} - -.quickedit-image-errors .messages--error { - box-shadow: none; -} diff --git a/core/themes/stable9/css/quickedit/quickedit.icons.theme.css b/core/themes/stable9/css/quickedit/quickedit.icons.theme.css deleted file mode 100644 index ab566ab1d2fd2e45492f7d5461ad08ca8974b9bf..0000000000000000000000000000000000000000 --- a/core/themes/stable9/css/quickedit/quickedit.icons.theme.css +++ /dev/null @@ -1,74 +0,0 @@ -/** - * @file - * Icons for Quick Edit module. - */ - -.quickedit .icon { - position: relative; - min-width: 2.5em; - min-height: 1em; -} -.quickedit .icon.icon-only { - text-indent: -9999px; -} -.quickedit .icon.icon-end { - padding-right: 2.5em; /* LTR */ -} -[dir="rtl"] .quickedit .icon.icon-end { - padding-right: 0; - padding-left: 2.5em; -} -.quickedit .icon:before { - position: absolute; - top: 0; - left: 0; /* LTR */ - display: block; - width: 100%; - height: 100%; - content: ""; - background-color: transparent; - background-repeat: no-repeat; - background-attachment: scroll; - background-position: center center; -} -[dir="rtl"] .quickedit .icon:before { - right: 0; - left: auto; -} -.quickedit .icon-end:before { - right: 0.5em; /* LTR */ - left: auto; /* LTR */ - width: 18px; -} -[dir="rtl"] .quickedit .icon-end:before { - right: auto; - left: 0.5em; -} -.quickedit button.icon { - font-size: 1em; -} -.quickedit .icon-pencil { - margin-left: 0.5em; - padding-left: 1.5em; -} - -/** - * Images. - */ -.quickedit .icon-close:before { - top: 10px; - height: 12px; - background-image: url(../../../../misc/icons/787878/ex.svg); -} -.quickedit .icon-close:hover:before, -.quickedit .icon-close:active:before { - background-image: url(../../../../misc/icons/000000/ex.svg); -} -.quickedit .icon-throbber:before { - background-image: url(../../../../modules/quickedit/images/icon-throbber.gif); -} -.quickedit .icon-pencil:before { - background-image: url(../../../../misc/icons/5181c6/pencil.svg); - background-position: left center; - background-size: 1.3em; -} diff --git a/core/themes/stable9/css/quickedit/quickedit.module.css b/core/themes/stable9/css/quickedit/quickedit.module.css deleted file mode 100644 index 4c55a9a4f72c29475b4424df0f546480dca555db..0000000000000000000000000000000000000000 --- a/core/themes/stable9/css/quickedit/quickedit.module.css +++ /dev/null @@ -1,122 +0,0 @@ -/** - * @file - * Generic base styles for Quick Edit module. - * - * Note: every class is prefixed with "quickedit-" to prevent collisions with - * modules or themes. In Edit module-specific DOM subtrees, this is not - * necessary. - */ - -/** - * Editable. - */ -.quickedit-editable { - position: relative; - z-index: 98; - cursor: pointer; -} -.quickedit-editable:focus { - outline: none; -} - -/** - * Highlighted (hovered) editable. - */ -.quickedit-editable.quickedit-highlighted { - z-index: 99; -} -.quickedit-validation-errors > .messages { - margin-right: 0; - margin-left: 0; -} -.quickedit-validation-errors > .messages > ul { - margin: 0; - padding: 0; - list-style: none; -} - -/** - * In-place editors that don't use a popup. - */ -.quickedit-validation-errors { - position: relative; - z-index: 300; -} -.quickedit-validation-errors .messages.error { - position: absolute; - top: 6px; - left: -5px; /* LTR */ - margin: 0; - border: none; -} -[dir="rtl"] .quickedit-validation-errors .messages.error { - right: -5px; - left: auto; -} - -/** - * Styling specific to the 'form' in-place editor. - */ -#quickedit_backstage { - display: none; -} -.quickedit-form { - position: absolute; - z-index: 300; - max-width: 35em; -} -.quickedit-form .placeholder { - min-height: 22px; -} - -/** - * Default form styling overrides. - */ -.quickedit-form .form-wrapper .form-wrapper { - margin: inherit; -} -.quickedit-form .form-actions { - display: none; -} -.quickedit-form input { - max-width: 100%; -} - -/** - * Entity toolbar. - */ -.quickedit-toolbar-container { - position: absolute; - z-index: 100; - width: 320px; - max-width: 320px; -} -.quickedit-toolbar-container > .quickedit-toolbar-pointer, -.quickedit-toolbar-container > .quickedit-toolbar-lining { - display: none; -} -.quickedit-form-container { - position: relative; - z-index: 100; - margin: 0; - padding: 0; - vertical-align: baseline; - border: 0; -} -.quickedit-toolgroup.ops { - float: right; /* LTR */ -} -[dir="rtl"] .quickedit-toolgroup.ops { - float: left; -} -.quickedit-toolbar-label { - overflow: hidden; -} -#quickedit-toolbar-fence { - position: fixed; - z-index: -1; - top: 0; - right: 0; - bottom: 0; - left: 0; -} diff --git a/core/themes/stable9/css/quickedit/quickedit.theme.css b/core/themes/stable9/css/quickedit/quickedit.theme.css deleted file mode 100644 index cf8f60c56118f282a431cc8c5919c800200ab44a..0000000000000000000000000000000000000000 --- a/core/themes/stable9/css/quickedit/quickedit.theme.css +++ /dev/null @@ -1,254 +0,0 @@ -/** - * @file - * Styling for Quick Edit module. - */ - -/** - * Editable. - */ -.quickedit-field.quickedit-editable, -.quickedit-field .quickedit-editable { - box-shadow: 0 0 0 2px #74b7ff; -} - -/** - * Highlighted (hovered) editable. - */ -.quickedit-field.quickedit-highlighted, -.quickedit-form.quickedit-highlighted, -.quickedit-field .quickedit-highlighted { - box-shadow: 0 0 0 1px #74b7ff, 0 0 0 2px #007fff; -} -.quickedit-field.quickedit-changed, -.quickedit-form.quickedit-changed, -.quickedit-field .quickedit-changed { - box-shadow: 0 0 0 1px #fec17e, 0 0 0 2px #f7870a; -} -.quickedit-editing.quickedit-validation-error, -.quickedit-form.quickedit-validation-error { - box-shadow: 0 0 0 1px #ee8b74, 0 0 0 2px #fa2209; -} -.quickedit-editing.quickedit-editor-is-popup { - box-shadow: none; -} -.quickedit-form .form-item .error { - border: 1px solid #eea0a0; -} - -/** - * Default form styling overrides. - */ -.quickedit-form form { - padding: 0.5em; -} -.quickedit-form .form-item { - margin: 0; -} -.quickedit-form .form-wrapper { - margin: 0.5em; -} - -/** - * Animations. - */ -.quickedit-animate-invisible { - opacity: 0; -} -.quickedit-animate-default { - -webkit-transition: all 0.4s ease; - transition: all 0.4s ease; -} -.quickedit-animate-slow { - -webkit-transition: all 0.6s ease; - transition: all 0.6s ease; -} -.quickedit-animate-delay-veryfast { - -webkit-transition-delay: 0.05s; - transition-delay: 0.05s; -} -.quickedit-animate-delay-fast { - -webkit-transition-delay: 0.2s; - transition-delay: 0.2s; -} -.quickedit-animate-disable-width { - -webkit-transition: width 0s; - transition: width 0s; -} -.quickedit-animate-only-visibility { - -webkit-transition: opacity 0.2s ease; - transition: opacity 0.2s ease; -} - -/** - * In-place editors that don't use a popup. - */ -.quickedit-validation-errors .messages.error { - background-color: white; - box-shadow: 0 0 1px 1px red, 0 0 3px 3px rgba(153, 153, 153, 0.5); -} - -/** - * Styling specific to the 'form' in-place editor. - */ -.quickedit-form { - background-color: white; - box-shadow: 0 0 30px 4px #4f4f4f; -} - -/** - * Toolbars. - */ -.quickedit-toolbar-container { - padding-top: 7px; - padding-bottom: 7px; - -webkit-transition: all 1s; - transition: all 1s; - font-family: "Source Sans Pro", "Lucida Grande", sans-serif; -} -.quickedit-toolbar-container > .quickedit-toolbar-content { - position: relative; - z-index: 2; - box-sizing: border-box; - padding: 0.1667em; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - color: black; - background-image: -webkit-linear-gradient(top, #fff, #e4e4e4); - background-image: linear-gradient(to bottom, #fff, #e4e4e4); -} -.quickedit-toolbar-container > .quickedit-toolbar-pointer { - position: absolute; - z-index: 1; - bottom: 2px; - left: 18px; /* LTR */ - display: block; - width: 16px; - height: 16px; - -webkit-transform: rotate(45deg); - -ms-transform: rotate(45deg); - transform: rotate(45deg); - background-color: #e4e4e4; - box-shadow: 0 0 0 1px #818181, 0 0 0 4px rgba(150, 150, 150, 0.5); -} -[dir="rtl"] .quickedit-toolbar-container > .quickedit-toolbar-pointer { - right: 18px; - left: auto; -} -.quickedit-toolbar-container.quickedit-toolbar-pointer-top > .quickedit-toolbar-pointer { - top: 2px; - bottom: auto; -} -.quickedit-toolbar-container > .quickedit-toolbar-lining { - position: absolute; - z-index: 0; - top: 7px; - right: 0; - bottom: 7px; - left: 0; - display: block; - box-shadow: 0 0 0 1px #818181, 0 3px 0 1px rgba(150, 150, 150, 0.5); -} - -.quickedit-toolbar-label { - overflow: hidden; - padding: 0.333em 0.4em; - white-space: nowrap; - text-overflow: ellipsis; - font-style: italic; -} -.quickedit-toolbar-label .field:after { - content: " → "; /* LTR */ -} - -[dir="rtl"] .quickedit-toolbar-label .field:after { - content: " ← "; -} - -/* The toolbar; these are not necessarily visible. */ -.quickedit-toolbar { - font-family: "Droid sans", "Lucida Grande", sans-serif; -} -.quickedit-toolbar-entity { - padding: 0.1667em 0.2em; -} - -/** - * Info toolgroup. - */ -.quickedit-toolbar-fullwidth { - width: 100%; -} -.quickedit-toolgroup.wysiwyg-floated { - float: right; /* LTR */ -} -[dir="rtl"] .quickedit-toolgroup.wysiwyg-floated { - float: left; -} -.quickedit-toolgroup.wysiwyg-main { - clear: both; - width: 100%; - padding-left: 0; /* LTR */ -} -[dir="rtl"] .quickedit-toolgroup.wysiwyg-main { - padding-right: 0; - padding-left: 0; -} - -/** - * Buttons. - */ -.quickedit-button { - display: inline-block; - margin: 0; - padding: 0.345em; - cursor: pointer; - -webkit-transition: opacity 0.1s ease; - transition: opacity 0.1s ease; - opacity: 1; - color: #5a5a5a; - border: 1px solid #d2d2d2; - background-color: #e4e4e4; -} -.quickedit-button[aria-hidden="true"] { - visibility: hidden; - opacity: 0; -} -.quickedit-button + .quickedit-button { - margin-left: 0.2em; /* LTR */ -} -[dir="rtl"] .quickedit-button + .quickedit-button { - margin-right: 0.25em; - margin-left: auto; -} -/* Button with icons. */ -.quickedit-button:hover, -.quickedit-button:active { - color: #2e2e2e; - border: 1px solid #a0a0a0; - background-color: #c8c8c8; -} -.quickedit-toolbar-container .quickedit-button.action-cancel { - border: 1px solid transparent; - background-color: transparent; -} -.quickedit-button.action-save { - color: white; - border: 1px solid transparent; - background-color: #50a0e9; - background-image: -webkit-linear-gradient(top, #50a0e9, #4481dc); - background-image: linear-gradient(to bottom, #50a0e9, #4481dc); -} -.quickedit-button.action-save:hover, -.quickedit-button.action-save:active { - border: 1px solid #a0a0a0; -} -.quickedit-button.action-saving, -.quickedit-button.action-saving:hover, -.quickedit-button.action-saving:active { - color: #5a5a5a; - border-color: #d2d2d2; - background-color: #e4e4e4; - background-image: none; -} diff --git a/core/themes/stable9/images/README.txt b/core/themes/stable9/images/README.txt deleted file mode 100644 index 3a817fa2ed37fe923138bd72539da9068c12b150..0000000000000000000000000000000000000000 --- a/core/themes/stable9/images/README.txt +++ /dev/null @@ -1,6 +0,0 @@ -WHAT IS THIS DIRECTORY FOR? --------------------------------- -To provide backwards compatibility support for images used by Stable. If an -image consumed by Stable changes, the original version of the image is copied -to this directory. Any Stable CSS files referencing the image will be refactored -to request the original version copied here. diff --git a/core/themes/stable9/stable9.info.yml b/core/themes/stable9/stable9.info.yml index dc7ba753308a7d6a24b226f885f4f03339fcb682..6562bebafbd9358f2091fcc95556943f6a7a70de 100644 --- a/core/themes/stable9/stable9.info.yml +++ b/core/themes/stable9/stable9.info.yml @@ -201,30 +201,6 @@ libraries-override: theme: css/node.admin.css: css/node/node.admin.css - quickedit/quickedit: - css: - component: - css/quickedit.module.css: css/quickedit/quickedit.module.css - theme: - css/quickedit.theme.css: css/quickedit/quickedit.theme.css - css/quickedit.icons.theme.css: css/quickedit/quickedit.icons.theme.css - quickedit/quickedit.inPlaceEditor.formattedText: - css: - component: - css/editors/formattedText.ckeditor.css: css/quickedit/editors/formattedText.ckeditor.css - css/editors/formattedText.ckeditor5.css: css/quickedit/editors/formattedText.ckeditor5.css - quickedit/quickedit.inPlaceEditor.image: - css: - component: - css/editors/image.css: css/quickedit/editors/image.css - theme: - css/editors/image.theme.css: css/quickedit/editors/image.theme.css - quickedit/quickedit.ckeditor5-temporary-work-around: - # "Temporary work-around until https://www.drupal.org/project/drupal/issues/3196689 lands." - css: - theme: - css/editors/formattedText/ckeditor5.workaround.css: css/quickedit/editors/formattedText/ckeditor5.workaround.css - settings_tray/drupal.settings_tray: css: component: