From 2246def69f127d840ac62fef6d792538ef47de75 Mon Sep 17 00:00:00 2001 From: ahankinson Date: Wed, 29 May 2024 13:24:08 +0000 Subject: [PATCH] =?UTF-8?q?Deploy=20preview=20for=20PR=20114=20?= =?UTF-8?q?=F0=9F=9B=AB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pr-preview/pr-114/.gitignore | 2 + pr-preview/pr-114/CNAME | 1 + pr-preview/pr-114/EDITORIAL.md | 204 ++ pr-preview/pr-114/README.md | 42 + pr-preview/pr-114/bare_pr_preview/HEAD | 1 + pr-preview/pr-114/bare_pr_preview/config | 6 + pr-preview/pr-114/bare_pr_preview/description | 1 + .../hooks/applypatch-msg.sample | 15 + .../bare_pr_preview/hooks/commit-msg.sample | 24 + .../hooks/fsmonitor-watchman.sample | 174 ++ .../bare_pr_preview/hooks/post-update.sample | 8 + .../hooks/pre-applypatch.sample | 14 + .../bare_pr_preview/hooks/pre-commit.sample | 49 + .../hooks/pre-merge-commit.sample | 13 + .../bare_pr_preview/hooks/pre-push.sample | 53 + .../bare_pr_preview/hooks/pre-rebase.sample | 169 ++ .../bare_pr_preview/hooks/pre-receive.sample | 24 + .../hooks/prepare-commit-msg.sample | 42 + .../hooks/push-to-checkout.sample | 78 + .../hooks/sendemail-validate.sample | 77 + .../bare_pr_preview/hooks/update.sample | 128 + .../pr-114/bare_pr_preview/info/exclude | 6 + ...5e4e256db2022cde860fee7431094e5989400b.idx | Bin 0 -> 12216 bytes ...e4e256db2022cde860fee7431094e5989400b.pack | Bin 0 -> 151611 bytes ...5e4e256db2022cde860fee7431094e5989400b.rev | Bin 0 -> 1644 bytes pr-preview/pr-114/bare_pr_preview/packed-refs | 30 + pr-preview/pr-114/index.html | 63 + pr-preview/pr-114/static/img/dc-logo.png | Bin 0 -> 10750 bytes pr-preview/pr-114/static/img/edc-logo.png | Bin 0 -> 10612 bytes pr-preview/pr-114/static/img/pae-logo.svg | 17 + .../pr-114/static/js/verovio-rendering.js | 52 + pr-preview/pr-114/v1/index.html | 1591 +++++++++++ pr-preview/pr-114/v2/changes.html | 202 ++ pr-preview/pr-114/v2/guidelines.html | 224 ++ pr-preview/pr-114/v2/index.html | 2405 +++++++++++++++++ 35 files changed, 5715 insertions(+) create mode 100644 pr-preview/pr-114/.gitignore create mode 100644 pr-preview/pr-114/CNAME create mode 100644 pr-preview/pr-114/EDITORIAL.md create mode 100644 pr-preview/pr-114/README.md create mode 100644 pr-preview/pr-114/bare_pr_preview/HEAD create mode 100644 pr-preview/pr-114/bare_pr_preview/config create mode 100755 pr-preview/pr-114/bare_pr_preview/description create mode 100755 pr-preview/pr-114/bare_pr_preview/hooks/applypatch-msg.sample create mode 100755 pr-preview/pr-114/bare_pr_preview/hooks/commit-msg.sample create mode 100755 pr-preview/pr-114/bare_pr_preview/hooks/fsmonitor-watchman.sample create mode 100755 pr-preview/pr-114/bare_pr_preview/hooks/post-update.sample create mode 100755 pr-preview/pr-114/bare_pr_preview/hooks/pre-applypatch.sample create mode 100755 pr-preview/pr-114/bare_pr_preview/hooks/pre-commit.sample create mode 100755 pr-preview/pr-114/bare_pr_preview/hooks/pre-merge-commit.sample create mode 100755 pr-preview/pr-114/bare_pr_preview/hooks/pre-push.sample create mode 100755 pr-preview/pr-114/bare_pr_preview/hooks/pre-rebase.sample create mode 100755 pr-preview/pr-114/bare_pr_preview/hooks/pre-receive.sample create mode 100755 pr-preview/pr-114/bare_pr_preview/hooks/prepare-commit-msg.sample create mode 100755 pr-preview/pr-114/bare_pr_preview/hooks/push-to-checkout.sample create mode 100755 pr-preview/pr-114/bare_pr_preview/hooks/sendemail-validate.sample create mode 100755 pr-preview/pr-114/bare_pr_preview/hooks/update.sample create mode 100755 pr-preview/pr-114/bare_pr_preview/info/exclude create mode 100644 pr-preview/pr-114/bare_pr_preview/objects/pack/pack-fd5e4e256db2022cde860fee7431094e5989400b.idx create mode 100644 pr-preview/pr-114/bare_pr_preview/objects/pack/pack-fd5e4e256db2022cde860fee7431094e5989400b.pack create mode 100644 pr-preview/pr-114/bare_pr_preview/objects/pack/pack-fd5e4e256db2022cde860fee7431094e5989400b.rev create mode 100644 pr-preview/pr-114/bare_pr_preview/packed-refs create mode 100644 pr-preview/pr-114/index.html create mode 100644 pr-preview/pr-114/static/img/dc-logo.png create mode 100644 pr-preview/pr-114/static/img/edc-logo.png create mode 100644 pr-preview/pr-114/static/img/pae-logo.svg create mode 100644 pr-preview/pr-114/static/js/verovio-rendering.js create mode 100644 pr-preview/pr-114/v1/index.html create mode 100644 pr-preview/pr-114/v2/changes.html create mode 100644 pr-preview/pr-114/v2/guidelines.html create mode 100644 pr-preview/pr-114/v2/index.html diff --git a/pr-preview/pr-114/.gitignore b/pr-preview/pr-114/.gitignore new file mode 100644 index 0000000..090a1f0 --- /dev/null +++ b/pr-preview/pr-114/.gitignore @@ -0,0 +1,2 @@ +.idea +.DS_Store diff --git a/pr-preview/pr-114/CNAME b/pr-preview/pr-114/CNAME new file mode 100644 index 0000000..f664e75 --- /dev/null +++ b/pr-preview/pr-114/CNAME @@ -0,0 +1 @@ +plaine-and-easie.info diff --git a/pr-preview/pr-114/EDITORIAL.md b/pr-preview/pr-114/EDITORIAL.md new file mode 100644 index 0000000..cec0f91 --- /dev/null +++ b/pr-preview/pr-114/EDITORIAL.md @@ -0,0 +1,204 @@ +## Plaine & Easie Specification Editorial Process + +The editorial process is designed to capture the process and discussion behind changes to the specification, promote +transparency, and preserve an audit trail for the historical development of the specification in response to feedback. + +The process is divided into three main activities: + +1. Reporting an issue, or requesting a change, through the Issues section of this repository. Discussion may follow +to clarify the scope of a change, or to present alternate courses of action. +2. A Pull Request against the text of the specification enacts the change. The changes may go through several revisions, +and the history of those revisions are captured in the Pull Request. +3. Approval by the Editors and merging the Pull Request. At least two approvals by the Editors, not including the author +of the Pull Request, is required to merge a change. Once a change has been merged, it is part of the specification. + +Each of these steps serves to document the reason for the change and the person who requested it, the various iterations +and discussions the change has gone through, and then a record of the approving editors who accepted the change. + +More details about each of these steps follows. + +### Issue Reporting + +Individuals who have identified a change they wish to see should start by opening an issue on this repository. Please +do not open Pull Requests to enact a change without first having an issue describing it. In your issue, provide as much +detail as possible about the motivation for the change. Concrete use cases are extremely helpful for understanding +motivation. + +### Pull Requests and Revisions + +Once an issue has been described, a member of the Editors, or a community member on invitation from the Editors, can +open a pull request to make the changes to the specification. We use [ReSpec](https://respec.org) as the tool for +presenting the specifications; see the section below on how ReSpec works. Each Pull Request should limit itself to +solving one or, at most, two related issues. Editors other than the original author of the Pull Request can ask for +further changes. + +### Merging and Approval + +By convention, the original author of the pull request cannot approve their own change. Once a change has been approved +by two other editors it may be merged into the specification. The last approving editor also does the merge. + +There are two options open to editors for reviewing a pull request. + + 1. Approve. The Pull Request is approved without any further changes needed. + 2. Request changes. The Pull Request should be modified to include changes as described. + +To find these options, choose the "Files changed" tab on a Pull Request, and select the "Review changes" button. + +If an editor requests changes, then the Pull Request author should enact the changes, or try to convince the change +requester that they are not necessary. The only way the change can move forward is if two editors have selected +"Approve" without any further changes needed. + +Once merged, the change becomes part of the history of the specification. Since we use the git version control system, +these changes are preserved and the history of the changes comes "for free" with the system. Anyone can go back through +the history log of the changes and see when a change was made. + +When viewing a file, the "Blame" button at the top of the file will even annotate the whole code to show you who changed +every section of the underlying HTML, and will link back to the pull request that initiated that change. + +Sometimes, if many changes have been introduced, a conflict may appear that will prevent merging. In this case it is +up to the Pull Request author to clear the conflict and to ensure it can be safely merged. + +## Editorial Guidelines + +Prior to Version 2, the Plaine & Easie Code specification was written primarily for an audience of encoders; +that is, people who were responsible for creating Plaine & Easie encodings when cataloguing sources in RISM. As such, +it was a combination of specification and encoding guidelines, and had a number of under-specified, vague, or conflicting +rules. In Version 2, these two purposes were separated into dedicated documents, and the specifications are now written +to provide a comprehensive set of the rules of the encoding scheme, while the guidelines build on the specification to +provide further assistance with encoding scenarios. + +Changes to the Version 1 specification should only be made to fix language or resolve ambiguity without changing the core +encoding scheme. Since this is the most widely adopted form of the specification, and is used outside RISM, changes +to the scheme have knock-on effects for others. + +The Version 2 specification strives to provide unambiguous language for people who want an authoritative reference for +what is, and what is not, allowed in Plaine & Easie. In addition to assisting encoders by knowing what they can include, +it is also meant to serve as a reference for software developers and data scientists, to know what data they can expect +when building tools that use Plaine & Easie code, and to understand what constitutes "valid" or "invalid" data. + +When writing the specifications, it is important to keep in mind the concepts of "normative" and "non-normative". These +terms refer to the style and content of the sections of the specification. In a normative section, the content should be +written to set out the rules for a given component. To provide clarity, a restricted set of words drawn from +[RFC 2119](https://www.rfc-editor.org/rfc/rfc2119.txt) set out the parameters, and provide an easy way to identify the +core rules of the code. These words are spelled in all-caps in the specification. + +These words include: + + - MUST / MUST NOT: A hard requirement or prohibition; violating this requirement results in invalid PAE. + - SHOULD / SHOULD NOT: Recommended; violations do not affect validity, but they may raise warnings. + - MAY: Optional. + +Non-normative sections, in contrast, are meant to provide additional context or to describe additional technologies +without setting out a hard-and-fast set of rules for them. Non-normative notes may be included in normative sections, +but normative content cannot be included in non-normative sections. The RFC 2119 words should be avoided in non-normative +sections (the words themselves may be included, but not styled in upper-case). + +By way of example, a specification for a peanut butter sandwich might go something like this: + + The sandwich MUST include two slices of bread, and MUST include peanut butter. Peanut butter SHOULD be spread evenly + across the surface of the bread. Peanut butter MAY be spread on both slices. After spreading, both slices MUST be + pressed together, and the peanut butter MUST be between the slices. + + Non-normative note: Both crunchy and smooth peanut butter can be used to make a peanut butter sandwich. Some + implementations of peanut butter sandwiches also include other ingredients, such as jam or bananas. + +Although a somewhat trivial example, we can easily tell from these rules that the requirements for a peanut butter +sandwich are: + + - Two slices of bread + - Peanut butter + - Slices must be pressed together + - Peanut butter must be in the middle. + +Optionally, the peanut butter should be evenly spread (recommended, but there's no rule saying that it can't just be a +blob in the middle), and optionally the peanut butter can be on both slices (it does not affect the nature of the +sandwich if it's on one or both slices). + +The non-normative note provides some additional context about the sandwich. It answers questions that do not affect +the core specification (both crunchy and smooth are peanut butters, so we didn't need to specify this, but it may +be a question that a reader might have). + +You will also notice that nothing is said about other forms of peanut butter sandwiches, like a single piece of +bread folded over; In our scheme, this is an invalid form of sandwich because it does not meet the two-slice rule. +This is not to say that in the greater world this is invalid, but in our specific universe that we have constructed, it +is not a valid form of sandwich. + +To bring this back to Plaine & Easie, it is clear that we are not specifying how *all* music notation works, but we are +only concerned with describing how it works within a limited context. So if we say that a clef MUST specify line numbers +from 1-5, we are not saying that other forms of clefs on 6-line staves do not exist; we are simply saying that Plaine & +Easie does not support it. + +### Style + +Spelling follows the US form of words (flavor, neighbor, digitize). Serial commas are used in lists. Titles of sections use headline case (Key Signature, not Key signature). Dates, if necessary, +are given in YYYY-MM-DD form. Measurements are given in metric. + +Do not, except under specific circumstances, change font face, size, color, or other style features. + +### ReSpec and Markup + +The specification is written in plain HTML, but it uses [ReSpec](https://respec.org), a tool developed by the W3C, +to enhance and augment the plain HTML with additional functionality. Some examples of the additional things that ReSpec +does is to add notes that a section is non-normative, creates a table-of-contents for the sections, adds nicely +formatted front matter to the top with editors and other administrative information, among other things. These features +are controlled by adding special CSS classes or IDs to the HTML elements, which then mark them to be processed specially. + +The easiest way to write ReSpec to get it to format it the way you want is to copy what has been done in previous +sections. The ReSpec documentation also provides examples of how you can mark some things up, but it is not exhaustive, +so you may have to resort to trying something and seeing if it works. + +### Previewing Pull Requests + +When a pull request is opened, a GitHub action will publish the version of the specification so that others can preview +how it looks. The URL will contain the number of the pull request in the URL. Subsequent updated to the pull request +will also update the preview. + +For example, https://rism-digital.github.io/pae-code-spec/pr-preview/pr-49/ will provide a preview of Pull Request #49. + +You can always find a link to the preview in the Pull Request itself. + +### Rendering Examples with Verovio + +At present, previewing Plaine & Easie code with Verovio within the specifications is possible. Rendering is only available +within a table of examples. For example: + +```html + + + + + + + + + + + + + +
CodeNotation
+ + {''6E'B8G}{GA}-''C{'3B8..G} +
+``` + +The important elements about this markup are: + + - The `notation-example` class on the `` element. This signals that the row contains some markup that should be +passed to Verovio. + - The `notation-code` class on the `` element. Within the `` you should embed a script tag with a JSON-formatted +Plaine & Easie document. This will be the format used by Verovio to render the example. It will not be shown to users. + - The `` tags within the `notation-code` element are what will be shown to the users. This means you can restrict +the example being shown to just the elements you are trying to illustrate, while omitting any additional code needed to +render, but unnecessary for the example. + - The `notation-result` `td` must always be blank. The SVG output of the rendering will be placed in this cell. + +Any other `` elements within the `` can be present, but will be ignored. + diff --git a/pr-preview/pr-114/README.md b/pr-preview/pr-114/README.md new file mode 100644 index 0000000..7a23944 --- /dev/null +++ b/pr-preview/pr-114/README.md @@ -0,0 +1,42 @@ +## Plaine & Easie Code Specification + +The Plaine & Easie Code is a text-based music notation encoding system, primarily designed to be used +for encoding small, monophonic extracts from a larger musical composition. + +The Plaine & Easie code system was first proposed by Barry S. Brook, with input from several others, in 1964, +as a means of capturing incipits for more precisely identifying musical compositions in manuscripts. Incipits were +a means of uniquely identifying compositions that could not otherwise be uniquely identified by the title or composer +of the work. + +Plaine & Easie code was used in the RISM cataloguing systems, first typewritten on index cards, and then in +software databases. In 2004 the Plaine & Easie code was [adopted](https://www.loc.gov/marc/marbi/2004/2004-05.html) as +part of the MAchine Readable Catalog (MARC) standard. Currently, the RISM uses Muscat as its cataloguing system which +has Plaine & Easie support integrated. + +RISM now holds well over 1 million incipits encoded using the Plaine & Easie code; a significant corpus of notated music +and an impressive global effort. These incipits have been the subject of a number of tools, databases, +and studies, and with an increasing number of software tools and projects using it, further improvements and enhancements +to the code, and to the documents that describe it, were felt to be necessary. In some areas, the lack of clear specifications, +or inconsistent behaviours, have made it challenging for ensuring consistency across the whole corpus, which in turn +made it difficult to build data authoring and validation tools. + +This repository hosts two different versions of the Plaine & Easie Code specification. The first, which we are calling +"Version 1", represents the status of the code as it was until 2022. We have decided to forego any significant changes +to this version of the specification, as it represents the most widely adopted form of the code, and changes to this +specification would risk introducing confusion. + +The second version, "Version 2", represents work-in-progress for changes to the Plaine & Easie Code. These changes are +largely based in the goal of making the Plaine & Easie Code more consistent, such that the large existing corpus of +incipits can be more easily used in notation search, data analysis, and data science. + + +### References + +Brook, B., et al. 1964. Notating music with ordinary typewriter characters (A Plaine and Easie code system for Musicke). +_Fontes Artis Musicae_ 11 (3). pp. 142–159. + +Brook, B. 1965. The simplified "Plaine and Easie Code System" for notating music: A proposal for international adoption. +_Fontes Artis Musicae_ 12 (2/3). pp. 156–160. + +MARC Development Office. 2004. Proposal No.: 2004-05, Changes needed to Accommodate RISM Data -- Music Incipits. +https://www.loc.gov/marc/marbi/2004/2004-05.html diff --git a/pr-preview/pr-114/bare_pr_preview/HEAD b/pr-preview/pr-114/bare_pr_preview/HEAD new file mode 100644 index 0000000..b870d82 --- /dev/null +++ b/pr-preview/pr-114/bare_pr_preview/HEAD @@ -0,0 +1 @@ +ref: refs/heads/main diff --git a/pr-preview/pr-114/bare_pr_preview/config b/pr-preview/pr-114/bare_pr_preview/config new file mode 100644 index 0000000..d14c137 --- /dev/null +++ b/pr-preview/pr-114/bare_pr_preview/config @@ -0,0 +1,6 @@ +[core] + repositoryformatversion = 0 + filemode = true + bare = true +[remote "origin"] + url = https://github.com/rossjrw/pr-preview-action diff --git a/pr-preview/pr-114/bare_pr_preview/description b/pr-preview/pr-114/bare_pr_preview/description new file mode 100755 index 0000000..498b267 --- /dev/null +++ b/pr-preview/pr-114/bare_pr_preview/description @@ -0,0 +1 @@ +Unnamed repository; edit this file 'description' to name the repository. diff --git a/pr-preview/pr-114/bare_pr_preview/hooks/applypatch-msg.sample b/pr-preview/pr-114/bare_pr_preview/hooks/applypatch-msg.sample new file mode 100755 index 0000000..a5d7b84 --- /dev/null +++ b/pr-preview/pr-114/bare_pr_preview/hooks/applypatch-msg.sample @@ -0,0 +1,15 @@ +#!/bin/sh +# +# An example hook script to check the commit log message taken by +# applypatch from an e-mail message. +# +# The hook should exit with non-zero status after issuing an +# appropriate message if it wants to stop the commit. The hook is +# allowed to edit the commit message file. +# +# To enable this hook, rename this file to "applypatch-msg". + +. git-sh-setup +commitmsg="$(git rev-parse --git-path hooks/commit-msg)" +test -x "$commitmsg" && exec "$commitmsg" ${1+"$@"} +: diff --git a/pr-preview/pr-114/bare_pr_preview/hooks/commit-msg.sample b/pr-preview/pr-114/bare_pr_preview/hooks/commit-msg.sample new file mode 100755 index 0000000..b58d118 --- /dev/null +++ b/pr-preview/pr-114/bare_pr_preview/hooks/commit-msg.sample @@ -0,0 +1,24 @@ +#!/bin/sh +# +# An example hook script to check the commit log message. +# Called by "git commit" with one argument, the name of the file +# that has the commit message. The hook should exit with non-zero +# status after issuing an appropriate message if it wants to stop the +# commit. The hook is allowed to edit the commit message file. +# +# To enable this hook, rename this file to "commit-msg". + +# Uncomment the below to add a Signed-off-by line to the message. +# Doing this in a hook is a bad idea in general, but the prepare-commit-msg +# hook is more suited to it. +# +# SOB=$(git var GIT_AUTHOR_IDENT | sed -n 's/^\(.*>\).*$/Signed-off-by: \1/p') +# grep -qs "^$SOB" "$1" || echo "$SOB" >> "$1" + +# This example catches duplicate Signed-off-by lines. + +test "" = "$(grep '^Signed-off-by: ' "$1" | + sort | uniq -c | sed -e '/^[ ]*1[ ]/d')" || { + echo >&2 Duplicate Signed-off-by lines. + exit 1 +} diff --git a/pr-preview/pr-114/bare_pr_preview/hooks/fsmonitor-watchman.sample b/pr-preview/pr-114/bare_pr_preview/hooks/fsmonitor-watchman.sample new file mode 100755 index 0000000..23e856f --- /dev/null +++ b/pr-preview/pr-114/bare_pr_preview/hooks/fsmonitor-watchman.sample @@ -0,0 +1,174 @@ +#!/usr/bin/perl + +use strict; +use warnings; +use IPC::Open2; + +# An example hook script to integrate Watchman +# (https://facebook.github.io/watchman/) with git to speed up detecting +# new and modified files. +# +# The hook is passed a version (currently 2) and last update token +# formatted as a string and outputs to stdout a new update token and +# all files that have been modified since the update token. Paths must +# be relative to the root of the working tree and separated by a single NUL. +# +# To enable this hook, rename this file to "query-watchman" and set +# 'git config core.fsmonitor .git/hooks/query-watchman' +# +my ($version, $last_update_token) = @ARGV; + +# Uncomment for debugging +# print STDERR "$0 $version $last_update_token\n"; + +# Check the hook interface version +if ($version ne 2) { + die "Unsupported query-fsmonitor hook version '$version'.\n" . + "Falling back to scanning...\n"; +} + +my $git_work_tree = get_working_dir(); + +my $retry = 1; + +my $json_pkg; +eval { + require JSON::XS; + $json_pkg = "JSON::XS"; + 1; +} or do { + require JSON::PP; + $json_pkg = "JSON::PP"; +}; + +launch_watchman(); + +sub launch_watchman { + my $o = watchman_query(); + if (is_work_tree_watched($o)) { + output_result($o->{clock}, @{$o->{files}}); + } +} + +sub output_result { + my ($clockid, @files) = @_; + + # Uncomment for debugging watchman output + # open (my $fh, ">", ".git/watchman-output.out"); + # binmode $fh, ":utf8"; + # print $fh "$clockid\n@files\n"; + # close $fh; + + binmode STDOUT, ":utf8"; + print $clockid; + print "\0"; + local $, = "\0"; + print @files; +} + +sub watchman_clock { + my $response = qx/watchman clock "$git_work_tree"/; + die "Failed to get clock id on '$git_work_tree'.\n" . + "Falling back to scanning...\n" if $? != 0; + + return $json_pkg->new->utf8->decode($response); +} + +sub watchman_query { + my $pid = open2(\*CHLD_OUT, \*CHLD_IN, 'watchman -j --no-pretty') + or die "open2() failed: $!\n" . + "Falling back to scanning...\n"; + + # In the query expression below we're asking for names of files that + # changed since $last_update_token but not from the .git folder. + # + # To accomplish this, we're using the "since" generator to use the + # recency index to select candidate nodes and "fields" to limit the + # output to file names only. Then we're using the "expression" term to + # further constrain the results. + my $last_update_line = ""; + if (substr($last_update_token, 0, 1) eq "c") { + $last_update_token = "\"$last_update_token\""; + $last_update_line = qq[\n"since": $last_update_token,]; + } + my $query = <<" END"; + ["query", "$git_work_tree", {$last_update_line + "fields": ["name"], + "expression": ["not", ["dirname", ".git"]] + }] + END + + # Uncomment for debugging the watchman query + # open (my $fh, ">", ".git/watchman-query.json"); + # print $fh $query; + # close $fh; + + print CHLD_IN $query; + close CHLD_IN; + my $response = do {local $/; }; + + # Uncomment for debugging the watch response + # open ($fh, ">", ".git/watchman-response.json"); + # print $fh $response; + # close $fh; + + die "Watchman: command returned no output.\n" . + "Falling back to scanning...\n" if $response eq ""; + die "Watchman: command returned invalid output: $response\n" . + "Falling back to scanning...\n" unless $response =~ /^\{/; + + return $json_pkg->new->utf8->decode($response); +} + +sub is_work_tree_watched { + my ($output) = @_; + my $error = $output->{error}; + if ($retry > 0 and $error and $error =~ m/unable to resolve root .* directory (.*) is not watched/) { + $retry--; + my $response = qx/watchman watch "$git_work_tree"/; + die "Failed to make watchman watch '$git_work_tree'.\n" . + "Falling back to scanning...\n" if $? != 0; + $output = $json_pkg->new->utf8->decode($response); + $error = $output->{error}; + die "Watchman: $error.\n" . + "Falling back to scanning...\n" if $error; + + # Uncomment for debugging watchman output + # open (my $fh, ">", ".git/watchman-output.out"); + # close $fh; + + # Watchman will always return all files on the first query so + # return the fast "everything is dirty" flag to git and do the + # Watchman query just to get it over with now so we won't pay + # the cost in git to look up each individual file. + my $o = watchman_clock(); + $error = $output->{error}; + + die "Watchman: $error.\n" . + "Falling back to scanning...\n" if $error; + + output_result($o->{clock}, ("/")); + $last_update_token = $o->{clock}; + + eval { launch_watchman() }; + return 0; + } + + die "Watchman: $error.\n" . + "Falling back to scanning...\n" if $error; + + return 1; +} + +sub get_working_dir { + my $working_dir; + if ($^O =~ 'msys' || $^O =~ 'cygwin') { + $working_dir = Win32::GetCwd(); + $working_dir =~ tr/\\/\//; + } else { + require Cwd; + $working_dir = Cwd::cwd(); + } + + return $working_dir; +} diff --git a/pr-preview/pr-114/bare_pr_preview/hooks/post-update.sample b/pr-preview/pr-114/bare_pr_preview/hooks/post-update.sample new file mode 100755 index 0000000..ec17ec1 --- /dev/null +++ b/pr-preview/pr-114/bare_pr_preview/hooks/post-update.sample @@ -0,0 +1,8 @@ +#!/bin/sh +# +# An example hook script to prepare a packed repository for use over +# dumb transports. +# +# To enable this hook, rename this file to "post-update". + +exec git update-server-info diff --git a/pr-preview/pr-114/bare_pr_preview/hooks/pre-applypatch.sample b/pr-preview/pr-114/bare_pr_preview/hooks/pre-applypatch.sample new file mode 100755 index 0000000..4142082 --- /dev/null +++ b/pr-preview/pr-114/bare_pr_preview/hooks/pre-applypatch.sample @@ -0,0 +1,14 @@ +#!/bin/sh +# +# An example hook script to verify what is about to be committed +# by applypatch from an e-mail message. +# +# The hook should exit with non-zero status after issuing an +# appropriate message if it wants to stop the commit. +# +# To enable this hook, rename this file to "pre-applypatch". + +. git-sh-setup +precommit="$(git rev-parse --git-path hooks/pre-commit)" +test -x "$precommit" && exec "$precommit" ${1+"$@"} +: diff --git a/pr-preview/pr-114/bare_pr_preview/hooks/pre-commit.sample b/pr-preview/pr-114/bare_pr_preview/hooks/pre-commit.sample new file mode 100755 index 0000000..29ed5ee --- /dev/null +++ b/pr-preview/pr-114/bare_pr_preview/hooks/pre-commit.sample @@ -0,0 +1,49 @@ +#!/bin/sh +# +# An example hook script to verify what is about to be committed. +# Called by "git commit" with no arguments. The hook should +# exit with non-zero status after issuing an appropriate message if +# it wants to stop the commit. +# +# To enable this hook, rename this file to "pre-commit". + +if git rev-parse --verify HEAD >/dev/null 2>&1 +then + against=HEAD +else + # Initial commit: diff against an empty tree object + against=$(git hash-object -t tree /dev/null) +fi + +# If you want to allow non-ASCII filenames set this variable to true. +allownonascii=$(git config --type=bool hooks.allownonascii) + +# Redirect output to stderr. +exec 1>&2 + +# Cross platform projects tend to avoid non-ASCII filenames; prevent +# them from being added to the repository. We exploit the fact that the +# printable range starts at the space character and ends with tilde. +if [ "$allownonascii" != "true" ] && + # Note that the use of brackets around a tr range is ok here, (it's + # even required, for portability to Solaris 10's /usr/bin/tr), since + # the square bracket bytes happen to fall in the designated range. + test $(git diff-index --cached --name-only --diff-filter=A -z $against | + LC_ALL=C tr -d '[ -~]\0' | wc -c) != 0 +then + cat <<\EOF +Error: Attempt to add a non-ASCII file name. + +This can cause problems if you want to work with people on other platforms. + +To be portable it is advisable to rename the file. + +If you know what you are doing you can disable this check using: + + git config hooks.allownonascii true +EOF + exit 1 +fi + +# If there are whitespace errors, print the offending file names and fail. +exec git diff-index --check --cached $against -- diff --git a/pr-preview/pr-114/bare_pr_preview/hooks/pre-merge-commit.sample b/pr-preview/pr-114/bare_pr_preview/hooks/pre-merge-commit.sample new file mode 100755 index 0000000..399eab1 --- /dev/null +++ b/pr-preview/pr-114/bare_pr_preview/hooks/pre-merge-commit.sample @@ -0,0 +1,13 @@ +#!/bin/sh +# +# An example hook script to verify what is about to be committed. +# Called by "git merge" with no arguments. The hook should +# exit with non-zero status after issuing an appropriate message to +# stderr if it wants to stop the merge commit. +# +# To enable this hook, rename this file to "pre-merge-commit". + +. git-sh-setup +test -x "$GIT_DIR/hooks/pre-commit" && + exec "$GIT_DIR/hooks/pre-commit" +: diff --git a/pr-preview/pr-114/bare_pr_preview/hooks/pre-push.sample b/pr-preview/pr-114/bare_pr_preview/hooks/pre-push.sample new file mode 100755 index 0000000..4ce688d --- /dev/null +++ b/pr-preview/pr-114/bare_pr_preview/hooks/pre-push.sample @@ -0,0 +1,53 @@ +#!/bin/sh + +# An example hook script to verify what is about to be pushed. Called by "git +# push" after it has checked the remote status, but before anything has been +# pushed. If this script exits with a non-zero status nothing will be pushed. +# +# This hook is called with the following parameters: +# +# $1 -- Name of the remote to which the push is being done +# $2 -- URL to which the push is being done +# +# If pushing without using a named remote those arguments will be equal. +# +# Information about the commits which are being pushed is supplied as lines to +# the standard input in the form: +# +# +# +# This sample shows how to prevent push of commits where the log message starts +# with "WIP" (work in progress). + +remote="$1" +url="$2" + +zero=$(git hash-object --stdin &2 "Found WIP commit in $local_ref, not pushing" + exit 1 + fi + fi +done + +exit 0 diff --git a/pr-preview/pr-114/bare_pr_preview/hooks/pre-rebase.sample b/pr-preview/pr-114/bare_pr_preview/hooks/pre-rebase.sample new file mode 100755 index 0000000..6cbef5c --- /dev/null +++ b/pr-preview/pr-114/bare_pr_preview/hooks/pre-rebase.sample @@ -0,0 +1,169 @@ +#!/bin/sh +# +# Copyright (c) 2006, 2008 Junio C Hamano +# +# The "pre-rebase" hook is run just before "git rebase" starts doing +# its job, and can prevent the command from running by exiting with +# non-zero status. +# +# The hook is called with the following parameters: +# +# $1 -- the upstream the series was forked from. +# $2 -- the branch being rebased (or empty when rebasing the current branch). +# +# This sample shows how to prevent topic branches that are already +# merged to 'next' branch from getting rebased, because allowing it +# would result in rebasing already published history. + +publish=next +basebranch="$1" +if test "$#" = 2 +then + topic="refs/heads/$2" +else + topic=`git symbolic-ref HEAD` || + exit 0 ;# we do not interrupt rebasing detached HEAD +fi + +case "$topic" in +refs/heads/??/*) + ;; +*) + exit 0 ;# we do not interrupt others. + ;; +esac + +# Now we are dealing with a topic branch being rebased +# on top of master. Is it OK to rebase it? + +# Does the topic really exist? +git show-ref -q "$topic" || { + echo >&2 "No such branch $topic" + exit 1 +} + +# Is topic fully merged to master? +not_in_master=`git rev-list --pretty=oneline ^master "$topic"` +if test -z "$not_in_master" +then + echo >&2 "$topic is fully merged to master; better remove it." + exit 1 ;# we could allow it, but there is no point. +fi + +# Is topic ever merged to next? If so you should not be rebasing it. +only_next_1=`git rev-list ^master "^$topic" ${publish} | sort` +only_next_2=`git rev-list ^master ${publish} | sort` +if test "$only_next_1" = "$only_next_2" +then + not_in_topic=`git rev-list "^$topic" master` + if test -z "$not_in_topic" + then + echo >&2 "$topic is already up to date with master" + exit 1 ;# we could allow it, but there is no point. + else + exit 0 + fi +else + not_in_next=`git rev-list --pretty=oneline ^${publish} "$topic"` + /usr/bin/perl -e ' + my $topic = $ARGV[0]; + my $msg = "* $topic has commits already merged to public branch:\n"; + my (%not_in_next) = map { + /^([0-9a-f]+) /; + ($1 => 1); + } split(/\n/, $ARGV[1]); + for my $elem (map { + /^([0-9a-f]+) (.*)$/; + [$1 => $2]; + } split(/\n/, $ARGV[2])) { + if (!exists $not_in_next{$elem->[0]}) { + if ($msg) { + print STDERR $msg; + undef $msg; + } + print STDERR " $elem->[1]\n"; + } + } + ' "$topic" "$not_in_next" "$not_in_master" + exit 1 +fi + +<<\DOC_END + +This sample hook safeguards topic branches that have been +published from being rewound. + +The workflow assumed here is: + + * Once a topic branch forks from "master", "master" is never + merged into it again (either directly or indirectly). + + * Once a topic branch is fully cooked and merged into "master", + it is deleted. If you need to build on top of it to correct + earlier mistakes, a new topic branch is created by forking at + the tip of the "master". This is not strictly necessary, but + it makes it easier to keep your history simple. + + * Whenever you need to test or publish your changes to topic + branches, merge them into "next" branch. + +The script, being an example, hardcodes the publish branch name +to be "next", but it is trivial to make it configurable via +$GIT_DIR/config mechanism. + +With this workflow, you would want to know: + +(1) ... if a topic branch has ever been merged to "next". Young + topic branches can have stupid mistakes you would rather + clean up before publishing, and things that have not been + merged into other branches can be easily rebased without + affecting other people. But once it is published, you would + not want to rewind it. + +(2) ... if a topic branch has been fully merged to "master". + Then you can delete it. More importantly, you should not + build on top of it -- other people may already want to + change things related to the topic as patches against your + "master", so if you need further changes, it is better to + fork the topic (perhaps with the same name) afresh from the + tip of "master". + +Let's look at this example: + + o---o---o---o---o---o---o---o---o---o "next" + / / / / + / a---a---b A / / + / / / / + / / c---c---c---c B / + / / / \ / + / / / b---b C \ / + / / / / \ / + ---o---o---o---o---o---o---o---o---o---o---o "master" + + +A, B and C are topic branches. + + * A has one fix since it was merged up to "next". + + * B has finished. It has been fully merged up to "master" and "next", + and is ready to be deleted. + + * C has not merged to "next" at all. + +We would want to allow C to be rebased, refuse A, and encourage +B to be deleted. + +To compute (1): + + git rev-list ^master ^topic next + git rev-list ^master next + + if these match, topic has not merged in next at all. + +To compute (2): + + git rev-list master..topic + + if this is empty, it is fully merged to "master". + +DOC_END diff --git a/pr-preview/pr-114/bare_pr_preview/hooks/pre-receive.sample b/pr-preview/pr-114/bare_pr_preview/hooks/pre-receive.sample new file mode 100755 index 0000000..a1fd29e --- /dev/null +++ b/pr-preview/pr-114/bare_pr_preview/hooks/pre-receive.sample @@ -0,0 +1,24 @@ +#!/bin/sh +# +# An example hook script to make use of push options. +# The example simply echoes all push options that start with 'echoback=' +# and rejects all pushes when the "reject" push option is used. +# +# To enable this hook, rename this file to "pre-receive". + +if test -n "$GIT_PUSH_OPTION_COUNT" +then + i=0 + while test "$i" -lt "$GIT_PUSH_OPTION_COUNT" + do + eval "value=\$GIT_PUSH_OPTION_$i" + case "$value" in + echoback=*) + echo "echo from the pre-receive-hook: ${value#*=}" >&2 + ;; + reject) + exit 1 + esac + i=$((i + 1)) + done +fi diff --git a/pr-preview/pr-114/bare_pr_preview/hooks/prepare-commit-msg.sample b/pr-preview/pr-114/bare_pr_preview/hooks/prepare-commit-msg.sample new file mode 100755 index 0000000..10fa14c --- /dev/null +++ b/pr-preview/pr-114/bare_pr_preview/hooks/prepare-commit-msg.sample @@ -0,0 +1,42 @@ +#!/bin/sh +# +# An example hook script to prepare the commit log message. +# Called by "git commit" with the name of the file that has the +# commit message, followed by the description of the commit +# message's source. The hook's purpose is to edit the commit +# message file. If the hook fails with a non-zero status, +# the commit is aborted. +# +# To enable this hook, rename this file to "prepare-commit-msg". + +# This hook includes three examples. The first one removes the +# "# Please enter the commit message..." help message. +# +# The second includes the output of "git diff --name-status -r" +# into the message, just before the "git status" output. It is +# commented because it doesn't cope with --amend or with squashed +# commits. +# +# The third example adds a Signed-off-by line to the message, that can +# still be edited. This is rarely a good idea. + +COMMIT_MSG_FILE=$1 +COMMIT_SOURCE=$2 +SHA1=$3 + +/usr/bin/perl -i.bak -ne 'print unless(m/^. Please enter the commit message/..m/^#$/)' "$COMMIT_MSG_FILE" + +# case "$COMMIT_SOURCE,$SHA1" in +# ,|template,) +# /usr/bin/perl -i.bak -pe ' +# print "\n" . `git diff --cached --name-status -r` +# if /^#/ && $first++ == 0' "$COMMIT_MSG_FILE" ;; +# *) ;; +# esac + +# SOB=$(git var GIT_COMMITTER_IDENT | sed -n 's/^\(.*>\).*$/Signed-off-by: \1/p') +# git interpret-trailers --in-place --trailer "$SOB" "$COMMIT_MSG_FILE" +# if test -z "$COMMIT_SOURCE" +# then +# /usr/bin/perl -i.bak -pe 'print "\n" if !$first_line++' "$COMMIT_MSG_FILE" +# fi diff --git a/pr-preview/pr-114/bare_pr_preview/hooks/push-to-checkout.sample b/pr-preview/pr-114/bare_pr_preview/hooks/push-to-checkout.sample new file mode 100755 index 0000000..af5a0c0 --- /dev/null +++ b/pr-preview/pr-114/bare_pr_preview/hooks/push-to-checkout.sample @@ -0,0 +1,78 @@ +#!/bin/sh + +# An example hook script to update a checked-out tree on a git push. +# +# This hook is invoked by git-receive-pack(1) when it reacts to git +# push and updates reference(s) in its repository, and when the push +# tries to update the branch that is currently checked out and the +# receive.denyCurrentBranch configuration variable is set to +# updateInstead. +# +# By default, such a push is refused if the working tree and the index +# of the remote repository has any difference from the currently +# checked out commit; when both the working tree and the index match +# the current commit, they are updated to match the newly pushed tip +# of the branch. This hook is to be used to override the default +# behaviour; however the code below reimplements the default behaviour +# as a starting point for convenient modification. +# +# The hook receives the commit with which the tip of the current +# branch is going to be updated: +commit=$1 + +# It can exit with a non-zero status to refuse the push (when it does +# so, it must not modify the index or the working tree). +die () { + echo >&2 "$*" + exit 1 +} + +# Or it can make any necessary changes to the working tree and to the +# index to bring them to the desired state when the tip of the current +# branch is updated to the new commit, and exit with a zero status. +# +# For example, the hook can simply run git read-tree -u -m HEAD "$1" +# in order to emulate git fetch that is run in the reverse direction +# with git push, as the two-tree form of git read-tree -u -m is +# essentially the same as git switch or git checkout that switches +# branches while keeping the local changes in the working tree that do +# not interfere with the difference between the branches. + +# The below is a more-or-less exact translation to shell of the C code +# for the default behaviour for git's push-to-checkout hook defined in +# the push_to_deploy() function in builtin/receive-pack.c. +# +# Note that the hook will be executed from the repository directory, +# not from the working tree, so if you want to perform operations on +# the working tree, you will have to adapt your code accordingly, e.g. +# by adding "cd .." or using relative paths. + +if ! git update-index -q --ignore-submodules --refresh +then + die "Up-to-date check failed" +fi + +if ! git diff-files --quiet --ignore-submodules -- +then + die "Working directory has unstaged changes" +fi + +# This is a rough translation of: +# +# head_has_history() ? "HEAD" : EMPTY_TREE_SHA1_HEX +if git cat-file -e HEAD 2>/dev/null +then + head=HEAD +else + head=$(git hash-object -t tree --stdin &2 + exit 1 +} + +unset GIT_DIR GIT_WORK_TREE +cd "$worktree" && + +if grep -q "^diff --git " "$1" +then + validate_patch "$1" +else + validate_cover_letter "$1" +fi && + +if test "$GIT_SENDEMAIL_FILE_COUNTER" = "$GIT_SENDEMAIL_FILE_TOTAL" +then + git config --unset-all sendemail.validateWorktree && + trap 'git worktree remove -ff "$worktree"' EXIT && + validate_series +fi diff --git a/pr-preview/pr-114/bare_pr_preview/hooks/update.sample b/pr-preview/pr-114/bare_pr_preview/hooks/update.sample new file mode 100755 index 0000000..c4d426b --- /dev/null +++ b/pr-preview/pr-114/bare_pr_preview/hooks/update.sample @@ -0,0 +1,128 @@ +#!/bin/sh +# +# An example hook script to block unannotated tags from entering. +# Called by "git receive-pack" with arguments: refname sha1-old sha1-new +# +# To enable this hook, rename this file to "update". +# +# Config +# ------ +# hooks.allowunannotated +# This boolean sets whether unannotated tags will be allowed into the +# repository. By default they won't be. +# hooks.allowdeletetag +# This boolean sets whether deleting tags will be allowed in the +# repository. By default they won't be. +# hooks.allowmodifytag +# This boolean sets whether a tag may be modified after creation. By default +# it won't be. +# hooks.allowdeletebranch +# This boolean sets whether deleting branches will be allowed in the +# repository. By default they won't be. +# hooks.denycreatebranch +# This boolean sets whether remotely creating branches will be denied +# in the repository. By default this is allowed. +# + +# --- Command line +refname="$1" +oldrev="$2" +newrev="$3" + +# --- Safety check +if [ -z "$GIT_DIR" ]; then + echo "Don't run this script from the command line." >&2 + echo " (if you want, you could supply GIT_DIR then run" >&2 + echo " $0 )" >&2 + exit 1 +fi + +if [ -z "$refname" -o -z "$oldrev" -o -z "$newrev" ]; then + echo "usage: $0 " >&2 + exit 1 +fi + +# --- Config +allowunannotated=$(git config --type=bool hooks.allowunannotated) +allowdeletebranch=$(git config --type=bool hooks.allowdeletebranch) +denycreatebranch=$(git config --type=bool hooks.denycreatebranch) +allowdeletetag=$(git config --type=bool hooks.allowdeletetag) +allowmodifytag=$(git config --type=bool hooks.allowmodifytag) + +# check for no description +projectdesc=$(sed -e '1q' "$GIT_DIR/description") +case "$projectdesc" in +"Unnamed repository"* | "") + echo "*** Project description file hasn't been set" >&2 + exit 1 + ;; +esac + +# --- Check types +# if $newrev is 0000...0000, it's a commit to delete a ref. +zero=$(git hash-object --stdin &2 + echo "*** Use 'git tag [ -a | -s ]' for tags you want to propagate." >&2 + exit 1 + fi + ;; + refs/tags/*,delete) + # delete tag + if [ "$allowdeletetag" != "true" ]; then + echo "*** Deleting a tag is not allowed in this repository" >&2 + exit 1 + fi + ;; + refs/tags/*,tag) + # annotated tag + if [ "$allowmodifytag" != "true" ] && git rev-parse $refname > /dev/null 2>&1 + then + echo "*** Tag '$refname' already exists." >&2 + echo "*** Modifying a tag is not allowed in this repository." >&2 + exit 1 + fi + ;; + refs/heads/*,commit) + # branch + if [ "$oldrev" = "$zero" -a "$denycreatebranch" = "true" ]; then + echo "*** Creating a branch is not allowed in this repository" >&2 + exit 1 + fi + ;; + refs/heads/*,delete) + # delete branch + if [ "$allowdeletebranch" != "true" ]; then + echo "*** Deleting a branch is not allowed in this repository" >&2 + exit 1 + fi + ;; + refs/remotes/*,commit) + # tracking branch + ;; + refs/remotes/*,delete) + # delete tracking branch + if [ "$allowdeletebranch" != "true" ]; then + echo "*** Deleting a tracking branch is not allowed in this repository" >&2 + exit 1 + fi + ;; + *) + # Anything else (is there anything else?) + echo "*** Update hook: unknown type of update to ref $refname of type $newrev_type" >&2 + exit 1 + ;; +esac + +# --- Finished +exit 0 diff --git a/pr-preview/pr-114/bare_pr_preview/info/exclude b/pr-preview/pr-114/bare_pr_preview/info/exclude new file mode 100755 index 0000000..a5196d1 --- /dev/null +++ b/pr-preview/pr-114/bare_pr_preview/info/exclude @@ -0,0 +1,6 @@ +# git ls-files --others --exclude-from=.git/info/exclude +# Lines that start with '#' are comments. +# For a project mostly in C, the following would be a good set of +# exclude patterns (uncomment them if you want to use them): +# *.[oa] +# *~ diff --git a/pr-preview/pr-114/bare_pr_preview/objects/pack/pack-fd5e4e256db2022cde860fee7431094e5989400b.idx b/pr-preview/pr-114/bare_pr_preview/objects/pack/pack-fd5e4e256db2022cde860fee7431094e5989400b.idx new file mode 100644 index 0000000000000000000000000000000000000000..a115939cbd14d3c0eb2fd3e2d5655655f5bd63ab GIT binary patch literal 12216 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 CjGfp3 literal 0 HcmV?d00001 diff --git a/pr-preview/pr-114/bare_pr_preview/objects/pack/pack-fd5e4e256db2022cde860fee7431094e5989400b.pack b/pr-preview/pr-114/bare_pr_preview/objects/pack/pack-fd5e4e256db2022cde860fee7431094e5989400b.pack new file mode 100644 index 0000000000000000000000000000000000000000..32e760c1b9416f342c814e2b5912f2dd94f50451 GIT binary patch literal 151611 zcmZU(gL7wn(Cr)B=ESyb+qP}~V%v5mb~3ST+nm@o?>y(cr|!9R|AAfgt=+5pvwF3n zkcbQr5D*9u5O7=>nkO&|6A%b^_v2Jj%mQiH!%t8X7PgGWtNbynBX{xD>GQBhY(ZdP zW+b$xl)0C_pAxl5z-lkSedqO~WBr9xZWAW`X5;6ibVg-R;Zjo4)KX!gX?OMhCojaz zpIYx<2ge=La%}^b}Bf4wwMQIsLZcqwS2}4Bb}(}d@B}pL3A?mbkpOLGqvMmMprYOFi$yp z^luBDZf={A)X(AJ^hUWp{;6?UV^5R8UbA!u>B4qpZ;j-2mBeb)f!W{YXr$y86s2Xt zTU{GVEqWEdZKDmvZx2tp#P}#QhI#`sl#{e|2l~=fj+|~qw2mm4APPJR-x~;Ae^x<& zc9VQ_>sui_ftPjcT((9MzvB#;$m^!kiQVle+z2db%+{0ex5?_I(-cyT+relVJ7G~_ z39$mu9`1K<038+qT0Nm1(N)*?{p)%lEPUGv9s=8Z+^h_?8m%11Pq+^qts1G_>;NWJ zyJS+#U5&w;(NqBau0Q_{g2>5C`lKA2?dWo$rN?CRba;KMeZ@^1DvRwye@a6sOK$CH zlDl0;eXX3s53@E0CrcAK?GN{^CP&@Q-39T+fvM3>^H&Lroyq+%`I+5nhqdJgt_!@B ztbJEbLqdQ4C9zb`LsBkJDpqfZ|){YR$o_k7P_g264PC+nSF>R9An4TW;OPuYKn;h+`;j_KPj}mT)8i zw-UT?*s4k~w7fV0@cG)-mU@krbhTF#@Zl4_P&b`u3!Mlj9Z&137Qn&OTBc7dJiLD6 z(}qt6jZ5nn3j0>`Qs8xrTTm)IM-Il&#?D5mb7{Gbg$#Y1NG+vFV=a3C!Z4#|-A&cP zLQfN9h%-jK-9r^jnxhoTpSQ(q0Zx_HtCET;nP^BFk33W0Ow21claG8*uS$1-P}67E z<@=J%cs%BGo6g^MvounJzbS6bR(benjAd7devtjWmF~C)@B8aQnp^`WyWB4_{`fVS z)bHt49eQ*gfMwclFq!n5j*YNx6=LIgwrtQ#E?%BjrEl)_s+NoXYJ1V(4&snE>-E0^ zFVJrt)TiD@?QfJsXW^5xZrg`+k0)Q7DReO#O~F(nJ>m4{xCbM(HXnPlYK@t8-S*x? za26}Roh+};XERC5oIoFr4-ITUUdtJ<12&gH{9QS^zD%8O$!OFK-yhIhZ?|)whe+5- zhi_<{tn}@NIGuGD&tCdnw$a^4#@R@})B4T*pe9;d+H4EJ`EiD+ypFA_t?y<{1?2CxSxj&tb@us06(XVL zH(m4jJOXtzy^i!lq_JMj%g{Ox&6iK)>iI~jbMPUu5*oNX)r_n--f+MZ>#2}UjV!S=Dv=f)s`8C1UW z=^T@;=Fbm^XRWa5G<;;LUoZ*{yS=)ME4A_fv&D8xYUkL6byRd1PSG zp2!2mU2p;o1f;5*jm?5m*Hg_kHhuT09N`8!?CEf0xo(Kp@&qO8H&9T9KxrbxkxTUK zu%d>^Y}@oKwWn1Gk}IF7bZH=aX66%>0ukv}C5)q*mE3L)Ie^FZ_$QJjxq# z7K!Mu^BGG`_zQ+yzE@W@1Y7XD#SYo$b?#ncWmRDA^Ol-hIpJ&R-;aYJi9rY7qf;`p{}~-PmcyQUjls*UQ!h)CDf6<)(_fM;!u@&)G06$CJF2 zcC)`fpHIsUNjeTa)>{cA^2ma_j2p5tsuvH0Oi)5Bw5;733VE3%eCLT=to{%r>uT9_ zL7oWapp%`Gm8g4`x0R$U$<+41{i$LtFHy>RBnR=FC%a|7vA`(_kfOCZz57bBk*)D} z!XlBa507b;fBO$Vo|aD*i$q-%X~-5W(?Qx!$oDdCO|-dK>)fZDocHPWi@@C4^!?;2 zmuim+L>?gaTi~4w6LQ?tlEL=_jk7s$`)J-;?C>aM5sg6#O9C-65Pz3)0}i7Bi90LL zQ6KVEWG$jd4EZTz;^BM?f4X$S6sT@_4+)fqo^`CQ|JaRv8iz*;{F_XECgJo1E%M*V zK^V>5d{Ts7e#`2CJP)@0u+wX-Eq`W?eARX(3&W(QdS-(vTqn<|M4k+%sEt|VY#u>zDu8IWeT$J~k}N+f@icNNBN zwvfDn22_0Fj$nCu2 z>VfQR;6+ZoRi*`BIjdqNQWWyB}!V03$Q@^ zL|aIKAxK$i7}MuQdV0>pdv>=%0k=#!q4;IM=L;&Y=NzM`j2Pb5uhC z0+ka`=6L&(;5F>8$}=vgDQlEi9_AdJr8$k#-p}KZdok7I>#T;(KI}ptPR?(TVB{UT zTLn{hwJ}lXN3y5sY(W_48@&%Ng7mg?cC(F>faYKERB#)8Oxs@VA00t&7VB$;QF zFGjGY;|L`EHz@5=xA5kmM{mkWS*3!3#LTaYFW6H({-a@3`#{i7^hv@yQ7QsX1&4kl)wyx~ zp2Fdh^hlm_OI=;c#eVadFG)ZI*2WIDWD{tx{(0EeQZHQ-yaD>-DJ!F45k#4`s9v`) zgYY}O1x(mYU#gIx5As*#x^c7$L zDfzf{d*F|vU=&|b5tYUCq(MS8MdC?WyZCR2^WZAHpg{w74BNYJ)Rx$hK*|gk{Mb4i zpyGMp=fEAOaL>?V`Uj?gc*$Sgk~DkUKb^n0Q(>G*=TOaq3xs!o=7e!Ld)}}1IihFh zERzD*O`w^Q`F6DaGQsLfN{PQP(3Hi5Jm-0HEyaKVYcaAUpDe1bbJyj9Q!IDUQvze| z7L;pjtm@R0J)dybLshSh^*aV>spikP|2PyzMfk?+1&97VSl_bl9q zD22%5MgvQNMzzmk@)mCi6)7gqw%LH&PNX_BX#{4C`mlb?ScrO^muc}#DS6uZ!hFqB z|C`h~e+0Y$!3rRykQtsY(9HCw&@(I#;Ai2_%9WI{CPI+5a!5wn{eAD98|dcLF1uT3 z(<{39L|qqZ<4kyWQMN&{1`+zMWT_NszEkf2zil%ejeuu?J-}H$$qS|ocn)20IpK}K z8kAU9CBcKck8RQ$FJ1bxBx`7gQ&*qrl|#oCb8zYsJ9@&z(+4MtnY2c{ZW=!$HHnE# zR83m_nHHg&*W6ZKjeUM(Dmoo?vOj~Hy`-luH% zGOXEXLBh|cb~)!;ZFdc))eOUV+uaU$cNg@E)hxM{J%IoQqaZ#eXe;9n4Od5$YBBMUkEhJ)B3fw2fFzNnl>p8m8g|8t$F zs8m(&YrS`#ttmtL!eV)v6}p(UCmKqiC6wYE-_CkxRS`BEA}u?d#VMfP@*WgqAf%K{4#$w4BiDb15G`I0Hxo5-i`k&UEN-o6E1*Il5MLv z8yT44QQs9fUESk2S`%Ma7^JWIDm2kH#=v(qmk22gWX6@u&zIP|^!ujGJ3@0vICVx;Zva-*eB0n{)_V1O;P{4+F$0MVKXQ5cO#| z05St7AD^FoVIw?(TM)Z$sZIZx!5`{jN-S^PDgh$ETP~O?jnbs zLs49zQ1p-pBk~<*=w+rm#A}5WuJTTd9Sq+qn*X2POXSdYN1Tpk4}_8Z?jSg2MFfLi zVWY*A!6l{2aPdYI3}f55g*(FnTEe6P@pgpDh^MEL36D6%d4?2VsZ`Fy1E=i7&X;$G zZ=7lQqdL!rpQ5r^KJmsqLnLhP5q#os?#;u?uoSJ*EOpFGmi{b(63H z*ejz4jZXnLcyDil8=vyXxq0Qsu{RXkW&QQQ=?y@bF(~|e!-NYK(qhBn<1hbuk{BUi zfhO-yQnv1$Wq(>-n)_fepfgs`b`Cgx!|JaS!D4QvChe-w!uf)W!l>zaD(1kW%Fe`kzltRmMLnX&BmfkVPcKHEC}yi%|dK(Ix+fy zg?>?PhXx=Pg`bg6^41x-N%GpzQH+V31f?M|QFg5DQ((EkR}n3nHo=twD~k)nf#s)z z!>DZPbczY(|19xIP6UCRAWXmI8NB)dn(=TO~4TlxNAyUtr6gebduK}0*H zZE*=A1WuHGf*Aj97aP@k0AhjGHiobE)i9+X)l(xrR*|*OiQUmwihzO?kSuj3Ln|WR zngO$b1Lb=FEj!G+d=1`@BTPD8lN@Y2ED@Tz$N3y#LYZPkce3SKL)<%HWa2-d2K$bw zl%pRhv<1COy-S!f^&q@y%Ny(zB>;*j+;`L#&n(|g)eXW5ly`naBYjgA%_Qd|rVxg- zM-e(Vil(W|8Eyr4pt(iC(Dx+(^H&&8%@yXeY%20pJifgcj0)W1Fx$EtPE5)#VhO&` zcsPjw!vFGd-}NQPWVzx3#LSAA6k1yJzxi&&kkv$*`m;W3uB-?@r{PbpeGa6>@Gn9Li$B*#!~FSOpCdq!b<0<1q5@ zLf1ZB4M{k>mZQvFJ5!bB0IEuAi?~=?3^i}rN=XaVS&nQ|qqG_Vf4pw_t{t8DC4o~? z<0O$&QZI0|-G#x2hW}oHxh+io*+%1m%q&1H#qX(tkhm8};}o@BHdjP3m?<+tdH5pn z8Rp+}#PcimG+LMa%FS*v)(qnCs4VKm=>g)W1Nd*&Y1T2sAGau2VjcEd$3(qt#h(87E~aS@VcctSn-zyb_+6u6x}dH7HXrn5qmJ>6;@0 z7TA}2sjksKG7DMu1Zthh0wRU@x-FE7znf+HdfU4Cb6RTW9aH@6l8hbBKlC&6o~?_U zA&Uplex*0Kz)iIa6h1x9itL9K$b92^Rs2Rz67$T-O_r)FQb!7X`Hbpp<(_g(T&Q8p zw&)A!$GX{L);k`b9qHwlmsvMUZLF$OEm2XVh(w5e^#%kQORS%aBHrQJ9hqLJQM7qb0q@ND}Dq(Gy~= zq7SuQIBwMK%^s<+Pd?ODDmcAB;(QncU{Iy~{Vgfv_?w@YziD(+{j=_`b)~v)AiyC^C_a^6Bu|rs3QDhGONRj=R zudON?S(Vzw&m{EinWM4TFZuhvU(LLR$?|0uRa{;;yaH;ZZ0NsEpYY{*=~BGTlG6|J zB)^wz2Oj4kY;Vsc2iIK5cQrM@la zL+}gpu7K3^q$l{H@61p9BXKBYBiH+@V_|M zb-&&b7Nm3Mzje#uAGQ-ox_G$t-%=Y-K<+n zfT$8Si$(`;@FD>Ndv+P&xPN&>O1wbX&L2_1iQg)sv@C+B@?3eBzS%>y_1EXBMv)@G zp%ayLLx_g=t9syN9E)T@kqF^Y((fkBP46q6SC_Un4*Z9_hg&S7^km=NsccC~1PIWl zl5LiG*_bw+Pndp4Bex7aSOP0M@I5)~BDG7(lSy{vK62-I^4m0n)Qfr+wHvw5inQ*- zIaY?rdmSu$saWm7l2EA=Fnq#7V$PTM7$e2fySdFk&JCx_iU4cQJ2ALxK!E5Vs$m*w zUB7R*b$Q&w8aE&13jd|gGttoXsEXTMBs=hh%PfKXMcSt@oF@SJITLnm{ga9%JmZqU z=a>%4iomsV%Nbw?cA)O>tlhQXcMh}f;7Oyyoi6%MKPfVZmFj4rC!bL)6g9jEgyY?E z$jGXqDIAT1i-RJ20hFKbUYo8fN-wr`rero0A3CVxE`+vRZFC7k6b*1hDM}E3*~h`- zkk^93p-C*LvRM+&k;n5kZ}`@ zRw&~T9;d?f|IOQDEm>EWEwEi8|D&z=V27tUUVv5>huFs{Ia>lSZ&hZ*0S zHl?;mjON|(kTx`=DY>gXDXYw9z!=LFNNnseU3dvADBF<5-8^Zxn$TvwiGd^R#}=|L zd!9Rk*FzCNnNW+yF2Db2_`||2n14mBx&)s`Lj7I;uH3r7+rse+ugmA!cr?Sw8Jc~J zuit25rwkFiRP>kCd}fkYyBLl#DSe95s`HMudOd` z_4r58bTrC+vonhMT~htw6Y=d5ID_dzfEzhB{BY=Wp7>YdsD*y9(v?(EiKbza zGp7n+=M4D8@PUkY#5DIV12J1&GnW{{(CST$PT@f`M)LJ3LfmHNc*nW6oI{boU#;S9K8IVty+Y$nBp} zRl@CH_6Byxvg2bgb>C=DG{Cr7fVw~VRA1n+_89-^hBPR-?vbQ@RkEcGD^eEVO*1ZN zsh2fR`}@4I8upl1dHeG#)P|v=&I;R%r?tNDk)nDQmJ z2&Z_PWf1i`uN=6S@rxbg3A5H#SO5PPHw`^?wyrJB{#(;L=~JBD^gf^TQ(c8YK$w%0 z8Fe7+_f~+i6%jIV@i6hB?;kIhwp>Yro9TeD z1W^c_(4BL&6Musbr6euwqd>IeP{#)oOi&9%GC_5tE~kI}{^-R3;!O0fzXlFu^336x zam}$BfI%L9b-#K{nacEUcSWb!niBC!yE({jE5ik9F@RG&fo;O^%=yS@;Wry(k*7Bc z-MgF$3YzMA9JkiZy3DjvhoN3xP9`X)VWe4Fv3Ea+!aSOuW}sK1q@<%BW00rI^O4r~ za_)qw6O`%^E)A8-4>sa>2xn zk5>#2C!3&`%A7d?o9QYqqR6;NSEFt5iSP>N?u&eO>wS?o(o{fG78he29%@hn#WIXb z9x1QcRmv11`Y;z<^cZ!`uj5qG76GVjt1-u7Mk}bLsgq5{nn}~`?Uro%|Ed#dQt(w zbq_cI(le(sy@ASX5W0DM_NkkFvx3GE6i6x_k}g}yGp8h3YOzoqE$lydD(guTDplo9 zg=MA*`d!{RNvLm*ZTkAel>1oAQIWF^*r{~EaNrY3FE#uSj1U3Am9ot$MGPzfi~Ng9 zD%M0uOj8RCe|+kr);=MvIn;vAk<^nM#wl)Q$mUp;$!;9^Be; zBk^X#JoQOA-HUDm`4RX9I6U?4%~lJyePVDd69iyT9zW#lV+$&?iXjtd|22~QImxV^ z_R0yY>y=P20q52Z>65M;E3$Kx2naHqb8Q!IFAdXb4n=x+!C`*R@iHm92ZaN z7M^@*^ZCX)V7{!3fUS9@q~1q$A1)1@&Xk4x!nkbPb*64aXks%mh$(zY%nXw;oHen} zBomlV_4->oRqBTnz~4Js(()ORUpReHi)TeaAXd-%$(F(T5d8VU*o#u}s4k+N-$?Bs zf_GTgc~;YT5e9Tt^8NcD2tfav-3&M z&I0#)GGi*rdacn9)9ig{^1HAy_o(KV^yn zb^ebsxoh4)6e0LGo}dB$HiQ;$`{hKKL`;l~?5wPWMkcOS4)*i_J6oVAD<)OxWH;1r zKJO~)j3tL6mqnYzeY5s`yua7LD*vZv;wEyif9klum6B%BG<&dR@}ZA&6MfpE6!8Gf zV!*wZ{R{J1SQ!~P*wiGY=%nZ-rl(|<he{H|)Vm`J+ ztV4kSZ30nEMc393P?)_eP(9(8Z8{P^vC4lZNxS{B5Z^TmEhPrP^o6#>()7mWr3`x?LEq< zi4QX*-|Bx3k8%)%ti70voKkY-6BpOH(e20gQAQu1HBF#sgyOmK7Wm_ zFNY2}b2U7UP3Zml{%Gps9gz}NYBrwEg)w5aSNuNqMqEg48~*ybe90iOPnYB~^FLs0 zV;MVz2+|OOPoWeo7yR8{)`>Up=~obo^y7At$&Y1Yn|=~l+>yhFFs+K61;MrGf9zy- zWg8K$Ts{QGhmlL|SYfq5IZ5tKH#ug;uF5X7-ZFdZie-}dp5`n44;0zJ-L^W6Sf5;v zNN?S2*+M@Z#da@9hVI&vA344K`fe@;7J`K){%T9b+(Rv zj_K}^?SM{kr1Qe-mrXKQoJ5BYncY3oQ;8!|>=R(?kd&T+1pS*7ACu34b|QR>hhnn6 zInvZ;nPhij6;{bl8D#Byyd~rIQ^!EGF7QUzz=>G@r(|Ign*}mK)-LURkE(h54wAkf z=3&H~h9kW@fM*8a)Azv=|INt%h(Kz52nY)8ae+mKSvna@AK!Y~W8vQW`txY;Qe$}2 zuIvYCDW`mi9Hq4LSl;+5=tsa))3d6X+ef++epPO35gsT=8n3GiP&ZZJ1N3Q8vWjMTl*5_)TdT-hqp2A7kq}RTfLfGaI^+7EL`IX$H`-J~p? zgpz&j@_APi$?dV-cj|~ZroU8Icli<=5IYsAs%_#wE&l@*X23sCndaAxUk0Ym2ERW9 z#r*egGP_vJ2kqs>i>AFfy+b*6RU?eeShK2Y4LSfN+N2~IR=ip=!u~FmBSP%IsolQB zWPu=2kQ>wJJagQVWLydb(f-@Y?C7unXCEu2%9aSB85aiJC+G#k2X)yB&KVGpUt~6N zzf^U&RbIFA6`}QMii#o|i&o^6-YG|!DaBdA0E(e3^pDMiq)QqnnnUJ0Aeqrsq$E|0 zq^N>Og{ah!5lx`dtzyt7NQ91%RXLd-)5CyU&$y8e%`%fKLF;UP!Ls*QppQ@PN~wGS z2NhFO3%ej`-Zr*nssnaaAlLy82uz+exZ<1lcX>x&W)VM)Y0X;c7JI7(RwE-Dz}_ao z!OiP`i%xI^azOF0c^bM5401gkCxYq7!}P=aUHRqGFki=HlhEKTkI=AW8*IsX1w>nE$yB~8Ixk3Tr}N_N zp^0aZ7c@seE#>m(J)Y*Z;obWMTQaM;>h_J=JHj_;oXSJ;kLtB6VSImtm;O*`dsI#5 z8NC{@V?aJ;IoKC?&PNuh*OqvC-oV>^J(A}bibb(sViC+t0D61LR~bfQs!>y7(ss=^ zNpJPV5wM~e;>-E{6_X256lzPUz906*Th37g9~1sIql`kA=6n%g{`s|Q@&_~?Jf$XII| zTggYJ3I|EMH48ggJ1bdB)#r6uL`amY_(b%!R_&UalL=slCisLNF6<|LZcSCHhEAd2 zhc4`^hN^bE^8NPxKwCybyT6w~YY3o5Ly^93RC%aI0}0X{(9SJ)_xQqQ=e(K#{v$?nQ1U^uSq)(9w&ps~ zKjbP_&5(GKsE+Y92N+y6JG~0ViIc$Cv`9WqOWsEy{lz1Cv;n2-aQdl zOm(AH5dDW!L|rBj`=e`RW%!gmLlvS*%nX4Yt}a4n`l`gDql+v8ePY?^-rnY+C;v(q z{)FZ^ctI=YSq}^$z1ws%jDXkggVLU+v+$xuP80r)kc&JTn^(WWS*v7;TkLzA6P{VE zs3H$ebQ~i2W=`xZ}Uaraq&enNgA zRP7)*GXLSuzf_^IK^*IU&o7Rth2r~?pa{w$xbtOvRu$N_80OFSSF^Q$p@MgQtNijh z?>}2CxTlHb1U-5ify$y~=qVIbA95IDwiiC6i1H?SSWbSvunJ_%pEQhhM;VDsL8geY zrW!{E92t=ePU;^;Y2Ka@HBvx`e=D^cj9W{Mx6Joi^N}-a|4vdzqWcvj`Nd<{s+a(l z7EZjzNIR%VpndSq5o>Tc-2Xb+yRdN2@^kLf5(wTa=8^WiYwqO)rwr&`>`+O`t)v_W zw#jO+-IX!ts15xR@^ir><~k>CFMjM`VT(voi3IXmgyX$HJD? zxpJGoocpfbO~075T$hye0Z;cxcbX`u_oWM%qrI&DwAJ*odDz3u;x)<@5Kp^CAWvVQ zA%5pSjs4R!c;>`$V1rPV50z|Y)7PRQ7`F;;US+Hckw zz4uZyJUXJjQm^a_aGu?k z7}x^+D2mKEj+)S#M)fX%urm@?N=CjMALPzP`pn7GB8wu4s~!x!G@3g?KzxvFW@Nro zotVvE_GRZ*=-RTtTqQ^cXa+}%T=v$FT5@EuB01#Tu)OZkl9wDIMuEF%Akcaa@m zmomH%puN^7vhzQ+vSc;>Fqo7Z4uDb%;uWC4ff3&05PwQ{)>RLl(Nti}iHZR4C`l;! zZ6u%PKL5rFEB#3=b>T%b`CQa|CkQ_){jlzMj9omV5e6k^ziGLu+4b2UrMgT}{>ZESWHtfhh#RKJyT;blMotZzV_kPP#Y?Cyx#x z)eiD*MgQs8wvMR2buGI=c1oDp+X@xIhAXAubB>i7kl zM|06t@$BejYknKrv+>Z5Bs)9GJ|^}L6*L16`>q&ezRrrYVFst;?mP5#bG;(2ZVsE$ zK|nrcLKb{>_JdC7flJ8Col#)`psJ$Cixob>FgSkGP>~|0t~r*XbdWjxhUpwKXnm{9 zy&a&96U}Vs#Q`_3(pI3{MY%W36+1hjVZLMhdNY*5l}-g|mV6?3FEdz$^ZCd1PkJHH zZm8FW#WsnN8~IE;UHbA#kB9h}wvxCOWDn^r9kBb}Zrl+*ay?;0?sxTnp1vQ-Whx!Bokvi%+JUAaC#V-sP!UWReyN@}#ywqhdxz zlS@Vxk__yi90L;qPYjvp3Q^0mK`K&%G%YtovEf!2Pu?>V&QFjA2t}JkJZa9eMX?Eg zf70-(xk*KuXvwik7K>_BATZTMNYh%YDv3oMVvXXRcUGJ4DYnwJ9f~CuHGtP$YB|_` z=A}_G^dxnBLU@WLgF#Do0GTI*CwSMI?YN}?Q{1TYLDZ>DTdMH(lmXJ8UIjEaitX}( z(({?Dk#*s@y_J=StNZIo~q^><^CA@SfM)x2!odkNM8Mk{)2(kNJBn`IOo_$=I1ASigA zPP$3eSI0tq{vbZ-=oq!`>TKqKj+ACHCcjki=kZFx%g5Qldg8?)Ydt9&<~y}5MNf%Y zx&7|&c0MEfW&go!_XXLW01D}Dwqub#KVS9-dx3-ieL)G);gg%TN-z%^!T-uZ#sYX& z1gpk8{)`H%>ig1V$~OxO1dlQ|H&%uXEl{dgL?j(TIA=*_6W?GNxA&1vXGn4sEUb1WmZr)nbceu z$$-#Mcd!LJEC^PVkHXb`IQ*9m9?Nmvo7*c2)xZV&s#fw=HP$dJhagTfRx>& zLX!#!35CH5Zu2m@ZnR)^cY5KNJgKYFmfsF6Mm`pie#+98wMJPO-{~gZEnxpRYZ&sl zU>?)2tr4^XfjM5#T4$EBF-Hrtoys&vGRS)nqzQ|5-s z?a2P-)CPFz!S4(U(567f}&be}vJH4jEYpvvAD$;e+N0cW;_&BmU=_0I1>Xf|;e(MhS+rRB)L_v{Q)vo7- z&(L52%uDjnfx^$xh`H#`K>k`ija44b3rS}KvGTN+9VE1&4*vR}c#yIy5%SzcEddZ4 zAMKw+u9?WYO==F>yXAQ$?ZX82g#Je91>!^nNl9n_Z;DDKXEP#&-h9HS9i2KuND&gU zCF9(J==agIjB*f>#(+Wu|C#=LUt`gtm&)%j=)GC^G9Bh(go+ORrGrMi$jDZ0l4^y7 zomOjHfI1x$V#qxzEk)y(6rhO_Oj(FWJS`Z5BRp6y?K-_Q4TTcMrDTGm)%&H$W&$g* zRvbYh4JFRasun?OZHZ_jOBn4|K-H8OUI;Q-SliD&-H>w3=2?4vP~Xu*&L!7aS3TAX zDk&QR)q(_qk6u~ntnr{Ktq;tRs*f6YqM~%iY-5nD`YY>HKvS9AEi2%6_x&ylTTgPm?L@d|!B7=3yL zrG~Bndoa3++kH+22=4B5ztuH;v4@V~LWWbP?7OKeae91dZIg!qPiYE%u!Y)UFn66x z{DUs*Lu~oIQUaY&L(5m~!ljPu{KQNWb>roJ0#>PuCBqhut+x3vR0D>B_H0 zGmNuKiPusq7^rlx9tU$t#N~fEj3h=}er=LJ0lr5~%p-li{Vvr3FUiyd)r2Fr@nN0n9axD5K(V@_9&wDSA0V7a}vVd!h)lH2KF1g{(TL( z*;crZL9R_?`@c;)*>wGpn-Z_gIX1lEA0|KJ&hG725ERO64NODa9=|P?jZJxdW$Y+L zY2wv=zJP znJ!9B8l6Y#yc4l4e{-^fVF4$-Z@~t8luYI6p;PclEE$ESLp?~4X+Y~K$)ol%NS5(y z<{kY_QSVp-xeXwU+`y#M#Xs2n0iXNzA=ZsI^x8pJ7^S1t-Bu^ZH9mI^ zA?CBt-XZGtCXMVl)8WlxVe1icRB4VLhlEqC!@EHTx~4_uYisMlh`TC{cC*~XHD6&m zpog;47;VOhc6s_M4Ywy4|7Jf*u30C-{!D$ii2;V1$f#^&L-P2VyY|A@X$$QbxwPFZ zGd-e|?O3rUY%|a&%+*`^Zglex!j8GdLECh=w4Nih6@eGRy~AB3I=m9K`nA>NpFZ~@R=2T`KeaV|`GcCgLdYyQy~s_v z*BIU+va1@StdtG~6TzcYrg%Gw_RDFWg3(F~I@!YP9NLDWd5oOwVqZ5&UT%O}P%pLz z`N;Tb?-O9%)Sb_T@YyX)0(Ikcms$BK?hof>s?ix41XLJ{#OQfo2$a>*p5#A!T}=yK)2 zlr3R1t5kAiuOZ3FK(*hxlWK#E&T{jtQWR~hWK~UQqI1>Q#uXQpR^OQvniGlD+Lc5T zS;|=}aEaBHp+U4U^;YHTM${QlmWOJieYLm{x55`$h2}u{>sxv2k5@~C+Wu3W$21A9 zDy(u={0JC@q)`J?>?tk-0TOQq5&b7ECdG9Iy}6Wi;-C4=D*ia9(7avgS6+T#Ejt*+ zJ(&F`Uo&6Bu!2B~h9~SHEucom6xlLu0}3-U2r=i?BOIY`s3F--w*@ztwHV|IPuJ!5 zgDcni22Oi~z+KWTsvmm)tf5%?$ zxJ7zyV?>b#(CP8Pi?u;rBdF#`trssZt8Cl3d9UEM!+oXscpPjt2j-9_roG(VXKnrE zpD7mWE0YCEEg~>FUhEI7Oz~cAa;cwOq7twVE5cVxUG!Yk-ej>vLgg=OlO4%8M@@MVvxGO1C2}fSJm3bEDm@tXYr#i#}AjO3b3PuF5DeU)tNoaF$5_w!f9YOn>`D^LEd1y4#IDL^#txIji87_S6 zH)vZMgvXTsT!`{y?Z1p<>j6D?YGEtT9v3Icn_`iYn3%GBbu>% zaR@Clh784uGcYOY2&y2!GODt|@l%6A;_?jLW?~VsNHG|^ujk=GQYZu;Sri}~Gv;1n9Qo1%IplrFrZ&zHJ&T)F zYo|%G5~WFad*$S1dkWmir$5HYG98ed{dv(oCge4eKZ#u5MhO6*wTk#7Imlq;7kQ&p zW_y_*bg6Zuj&utNp!<=h#%no-5|x!&YC)g}KfU2;x5CDQ6RsBeR~%h=y-{gYccr~E zYSwJaseeG8;af6PiKtQD#Q`o4HF#!g9+2^Hm)*1a*O$=(;@1|?Vi#pE;dJ>{j;t{j zxJJ40?U&1s@@du`?cX=T9v012O|naCy;%vi$hv(|F+tioKm*t5DcB=p^`u0LxCN{vQC^KqbF)b#z*c#cq38Nd1QZKDtrS3x6^*-08m) z6P$#n38=d~2RylTNz;OF2m{8e0>nZ2b`HwCD#d4|NWNIuP9R6{^b8l~@Ats!CD;8{-ED+Z_A&v6F;^;b5?Z0NY=G zxw&^nZ!m&PpRP;rh{$7bm1V&rPzWl!-Kev zQjN6gQcIB3O#=>jS?1*0fbVi>3)%n5t|TwNvHJQGAj`50JRH=)2qFlz0lnr*aS6g) z&07k-SGDA~^7$*v)up9>S<7x&lV{-TzvTzvA_kjq1Kt;5?CthR@Eg~F2KvTlzUTQ9 z&)fRjWw9?mCzHfq*_Q&ZJ3}t|fxLJNFEEO}9$j_A??}{bTQ`y-eI7LM9G^Yt+Eo`E z=TMsSy@}%Gj(0|FbhDG1@6a{pbU-adri{XxpFQ32`6Upd9p=#1UPODHqafFnlwNJJ{UN46JE zp{(9X-tuN2j8^p<`M3m)ygCxE5;LSpXHU;Jui*CPcnj%dIXDccXkk2aPmMp5mE-ppv)c3$SJeM0(M*0(x=;I05=oL7o(1vr&yHzt zTxJ~H+Oh6YHsx)nXONruuFqPL8P&Mdl`3d?VIG}B~ z9M>`QmfDDQ>E%2dI&+n3z8_Yw3KiX&!=<>V>W`Z9LJm_#YCyrJxwGa!iXf6Ge*0RgW_(_N zZP?)UXRwS&9ch}f2-A|CJL`m;L7o^!YK`Q)NI|RVO6}CS zp(*?PdHsnKV0)o2`Hr+jvY?r}+=b%p{B}*4B{T0ZV|u@~srUBF{A5rWd0sv5q(4Sd zc$K{Gwj2TQ3i|;Uu047h*W8rRypy|`k?ir9j$-IPoaq^SB!a79hgY+r@$4g>6<5+{ zF6%>s0Ae8sPG;RC{TZ7KZy#xA@vGU|hq^{(q8iBS`;y(&4%OtKvDs&1FN}chuDEY* zckW1l*+|QS(X*-6x_rLVsfFyL>6kW^mB7nOyFNlIYyxVbSL=bPi`Y@zBMnUgZFuRrF z36OZ6wN!CuNzf^r>DFhKlCFv$Ch9@aDS0X-%OwTY^w{$LCV*{* z_(NIc*TdbNUldYo{0RH?u`Hn}&ZIQMu6oaP2zebJXg&$}IB-?%~5%b#{)i@I(LRyv-m;o9pwO@Q@M9o#PS zZVgS>#hK!lD!APXe<1fKCP4QrngiSM_8&_yGC@ZcwtA@IY$`ZrecNy%fTJf)sSer% zgYq33>g68mnls7N>luH%n8+E0E;~pD@|SgYfI7N(e-Pjg8<{Hc!!z3DBj^`6{r!$sL8?R&#rC0GUFX#kfdK2YK9gJ8@cP@ zgy0+Wuxl|I+I}IT?91};7Be8J+U7fb__o=9%aL)|s-of7ZATd3q(|KVimh!7;Xgxs z@wd*z&&k^CyU>VX{|nyq+7c$izw~~z+Qvhh;DBoQjrbe86{9tkM0lK?)48&%Mid3m zoUiCyWivEmmES8PM(Hw0h)K#CXb=e0jFRB%eQlSs7kOuURh{4jdmb?c2+2$?$fd-? zvP3fCc}~nEl*ugq1_`sA#K{cCRF6jdoIwFu84H+|7*q(143#qfCX5P}7j1TF{5Q^P1Q{&5OWpgteAy{hgtRV~cgFw|9it)<)hP94n3 zi{oTs&?bloQB3k*pNHO^`r=Kq#~$d%NL`cApHv2O;jY$Yo19V4Jsbh8$euDwCaE z!{2p!$M)W~B<^t8F9gRdM**=^?%W*nWQgo)SMX>|#+U6kd0FfB#U6R2M(FwW_xZEj zX-#o-6U;lRBu4ALBiD!mBizz!BE7MtW1)t(Axvp{U_4!ZPWLzsqH*w~lJ@iQ9y`Q0 zgT->gPQEiquFNp%DUfc%`?6|6MaS&UiB%|{VfCNQ=? zNBN=O`77Q+pRK>YuwfY5ydb>kQzC`QSzGho7sdB(g0a-3n;adTOknueoJ9GuPst?~ zL-fdMrxrNqYZOqM(dvsi3 zO#G-^uf{-uVar~sX*qZpwGUU6k1yOP@6poM!BnNqbomf|jmoo!S->u+Da%8UvdoZL zq|;RIL;-6WmLLt*aq&X3WR*FZ(PEyRp?NshHD&up88iyBRA!|q#)eRLti@^-R%QQ+ zD;ZKiUdOEsOjAAFLi{nLg0cHa9ddin+s>ySr{sQo0S?QiDc${^S$#R=O07UP6#oSei2Nfm z%n5|@GLA8im=<@*bpRs7R7?qC3FH$VavX!lA#XYmG<^?F zMO78J?!jyKtYtU9XEiRWpQNdO0alcG$a4}BzzVVuGEZ6;!;o~qECy?g!Rxi@lD1mj zvtr1{_&>9(&H5q(KYm9uOxpu{a}Pq>^wj7O7=Jhe7%=x5(NtB_Rn^yg=W_6GtsZC_ zDKF7(;yZg*RkqA*)oFBd6-TC8PfC8c)mC}uq;A82Gxo+05+x(qLc$}S+NzWDS%JL^WuZX6U@OP zE5zL&fRz+ZWO+dlz=mNNhWer%8iwM3Jy)-)M-}+x$7s4?IlwbKaIp+W4WmH+n^S-S z$hSV4s%kq`y&sUStE)7v<@x2>C>XXA$0^u==T%9teo(vMXf~0$s~Z1bPJsj;3RJ6V z$2F~J%TO9J{b0PE(=h07d`+{_yCyMVJU(Qm+o9zjbNrYyZpyRPMknC$R-Wc`$r4vHX?W(Ixc2%f3SLKRp#WV8t+|*3dki>VhX<^k z_|JQT8rROd@?qR;_0%?Qax(CmY45(KcXkZV_GfmMqo5=dP$eHdx-l*ibj;kk@R>TU z<6;xfXs_HhkLpSM&r|mrIQ4q};Ft^RyUfmSCYL3zV?=?>@!c+Ml}+#9y5r0&)x~K= zoK;mjM#P6uvoH7>W=lu7XB-9QfZL7etIB=ew7F}9=e#++OY$jV?Dop*_-O$^* zHnTRZ!s^43sY1egtKO4VdS5>Ddc^7rB4UlYDN|sGnxb;$OIQ|pJllH3j%LiC5&WuW zx4PwVxuyGYPapk}&1{-Z`xxG79!(Ys!eETaxtZuV^~d?5w9&d zwkAmq-#y3N%B0DL@-}~?z_)acuGCLwbZ7rx#!#0T4X_3k8tU=(YYqp5pWk2kP=f&j z!wStv`>yUn%XPkcYG{HfClr-n(&Pk>&-;(7dKg~)Z#4Z+#+SeJ&zznnirT#eahsu_fQWt_4a%f4$VE|hP!y92h{*Ko z+kO#m*Q?H5p7=5s8F_}D5FjC(~OHzeO-b2~;AZTAN5LNekl{{YH&;HZa{q%S7NUHlExPANuI3)8tf`~(aW;vFn zKJ-xy1NmRWMOVD40(|{jnr_-I@J%0l+or3Ar$GP3DL{ehXs?>8Y8zF}j7rzl1&vGY zbl#x~24&=Vxizt~$Wf~s>LW11o1<=u+wnK2K-5}y<+I{>?{cJ66HfQNb*GdL(wYNlCh=q?% zH*g)Uc2CDII#t>5d)(|bIp?o}UpJr2Q$UN~=l;mK{Y<2(x1)R%WO?e&`Zj_c*&fQ0 zTm+=Q>onL~OyFr;j8|Cq8XS;hK$imf)8HgKk>0imZ-*(RYkRXZ2NcrkQACciT!{BA zJm`it9|K}FyC380*p-suc;gn$6krC3Lz8)}4JQW9b(ZBdZ3xd^ESY&|KVj%%n@_m7A{KS>-J)Bw|Qy zcNOza;?X0UI~;gpg?HOQrNCvq!YjE&P(3Zkju^EcknFhmc}_@2EV+-7)b`2j}2k$9tg$#$}~%r!nGiWxFZC ztEHv)4k?*;^48;!)kg}n2EW*9J3WFJxt7RgQWOO*>pa<6m*;M+&&(2IIqsTbKh6=V z=hgB$>jOH+i~tTe-f`;UF?lJdH9f6o*P-mPz-TshUru z=*l>auwdA|uT#Jh-59opm#> z5|@Y~2cg8R5s`?B6;5X2amd>aT-v?|VNusbOndN0_kGK5{xhR-QU8ux`V;U_6$B`X zk_cFi=Q!p|X)z4R{|aZ%tS>U~+uye_OzQ+((*;+{JZXM#G5+BUU_jwnpN*z%wwgwE zg<)t5oR-vio{z<4SWkkWwkCEKHEfNYMlUE;aop*g^8r1C zZrrRN#kNFF85@$BTB3OiUOT)UUR^|qoP@Y>aq$$TnE@X-U5(ayEZWm^`kq6}Dssxz zjVFyj{;)L{Rxx9%m5=2?#zU|s3TW#9P9)@S3q5}RA-;1}*P z^H~(H^j%q#yPt)gcE(O_fujFrG z;!jjRx`*R!(!I)f+#);5k3^S}=@qX>PV-h}iy7bzN^9J_X@7Ie%(&0v-q`Kz(q`um zz9!+jQ724JIISxA1na4hsFj-%WVNFuCdRn^wop2E_9#)6t9wrmois*^Ju0%$+WK}9 z%YN&Q?g#ZKSQGDJ3AWE8XMoGS5p)(FQU;tzOLeiT_78)Ge&9Rl5Pf9mUF~QnuleI4 z^uvk`SzF#GTKi2_A*zzmJ3Eh&JcBC(&bI{(r#0WudV`ARTW_8R#JGq!Nf6I- zbXZCBd-;>ds(4dJDnJDcSkj~3y|PW`wHlwA$&(HaE*Zd?jG z6!Ga@dU@m2<C-tC^nVz3X$}M^tET#=biiUT)FeqW1%m81NZd2dW*-~ zdVfApQ`1ANvQ@>H?qQ!+OaRNZ^nwKXc{WpeIX9$$wrXa>}4kSGt#6Z^aNo}yP3P4r!3yt49-mR3_tJh;o#j9 zsTlYvc{;;wmJMzuWPHbuk6G;+jGX|jNPJu~gxkPmrUfl)9iTsfV+;?<+2~Ebve*C& z;31l%FcHwR36Zf_(LhYZQZR&dN%SVbLTE$6HRmKQ7H2xre9mMi#8+nn{atzf>~GDH zX0@18g0ONB7~qJLM;ota(;tnGAK%m>vuk9BCcX9lSY=YW*TgJ(A7&M_CJ9jbvMYhuHBjaS8Suc!hj~z&owAG3u+P zL-9Ye?8=ia;kQdB0iUm7#3Pu@`I%ERVc$4|CHm{ zJY{@2%%g?V-7n&F`ZTM8UCfr#E&I;_Tg4%6J5GWjS!LcX z$}rC)dli0PwIX5x^PgXbonyyXt{MOn@_5H1d#e}qMsJzPXUDOj`Eoo?NpqIB0N&QW zb{p{bO|YJQ_5~FB&oz_>(Uc0BgMytX)oJJ}Xxfk6tFAq1)AlbHvR7TzUfKw}0qC)o z`IsMgoQ;u7bDJ<2Mfds@-`-P~hd|ItIu$krOza>WaPdw7L1=gdI)X75X zD5roiLw{ZQxzE%z|IFk$^TJCI?aX1nW69>cZ8iy|;U=bkIf5ON_mpk3^msIW&f#0o zIeaMa!+^hbgo=#9R}jZ33+BsgdmMB?WVgcve^r}IqFiv z-Y8Au^m(78b9Rg1_F;-L^m~na*#2t^Dg~EcfHzG)!!(GzE*B{3vJ@XrjbiAhTK3}t zvWG$pO~16)0{sH0%9gB^MR=T@lS!|uMihki{EFVAgc%ws?R1|6fb80{& z?`DvQqAaATlu4YRB32R#g_Br8l?zT36p7E%0?HE0Qs_B9dIC=UG=Ug54Myz*{ve;X zBCkKo7UAaiv~Pa`PKGS}NZ|p^a-Zafws@ZN{}nEWa>6C}?eEhq+YLZyhv3V#1MU2M zvi{)|pa72Cx2|crp=sF;Tb8!T%U1Zq(Zi=%U3eb$cIt01?ya5HMz0|J){L@_{^Jz* zIHcDYCcgDndiNHEsl@@i{^-I75ssJOb!94sHds26UU(c1)vn{e;H7?tOr>rG1sYwd zZppFSf|;jd*;72`P|N*zU{!vv&^Ij%oJi8WU1jWoxzO<~mvvy`g5PkJs1&J=iNCxg@*S?@suPvo(`5w3GdcG}aZ1%$;hd#IC!e}7Fr^$Y4mE+l2s^Kom zbat(#r_*OFdd>Q-u6K;jKH{*l)T{hZZP=iT-fy>!jz+FP@cgtXFvGaI5T1@){`CE| zZ#92T4}x$Wp?}W;JT#Hm2xv1l`U1IoyB+eh?aI;c6lt!n;gbTT*BF(~6;g>`scF~O zp;w1VhBVY3l~# zxhs(OeI%F4nY92;qmsVgsy^vu(_aq8Q(qDHUPqf@DBvB}U94d!!x3iLYnq7@YjTzx zjNQDwmv*nsscSw8O@=A7lKHW(e^B6u*%TY~?`EvP{MBM8Ez3Z@&IEy`FH78&0FnOL zWnjt4g!>K@xXW@v{RP7zT@{mKc$}qF%d(sh6Ci?pPT>++7FCsjEzL*`rdf>}N~#Ri zz{W+<|Nc6W5;fNAU5gfDbrHJ@cTS8{Q9N%ENB%0dD@|9Q zCt0=j&wY?J^9=(s)|L1V*x5UYbG5+4vc*B%-mk94o4eMvpY}8h_%<;zLD;KZ#QBe8 zFDC0Ht2W;1!2m~G;H89bhF_JHB6=AgE-zujohRCzJRTAY{Y$A#YZERhv#sMNhq0gzAYX|Kbmo=wHB^kkaCf5V$exVDEV|!`-YRx5UxfRk9Ibe^zMT*3+6=A| z6>}_^f@Cw`@v$A%@`qxd0yEggi{~mj-+XghYLjMv@Y%&oG2G+6AcEW;n!^zZiCWSC zahVrbEM^%nkq(mwdSoF@@4<3%%1OSUvp7B0?z8hAI`$iH9t7Rl(+kAzO;cD(+CyD; zvJ^S#;miPeO(C~C2qJ5F7un@S{q8SCW1CQZ&0cN`;drg)jZJ*Dqu2Y2O!Dr~pl~j3 z^C@NdCj+E|IGfBCbu}94g}=<_h3UW&oo(|{S7aHw9CfUly5GQgXa~y=JIyTFR;FUP zvn-2t4A2(G;}K@8j*;OTX6`RXSHd2JNC{;&-E`&Ql=10xnps^^u5vYo#uo;B`53$X zAYZ#-xU+xT7$(8@&!BA(NHP7VMhWOpeS#EU04@RQ2E!l;pfCk7>bLlU%RWg;kU(6t zHDY!d0x)`oZv9ff;s7V0As5uIG@vy`4WQ)3focDUW&i@u)_a16_Kq{)!-3%wK=0}M zC-AL*+I$8zX_~ygjjH;ss!@m0?d=EA*Z=BZ-@pk)a3H3Al}%LRih>B1C8597{KyUZ zlA2ul3vPzu-kDxme~dC%rh|Y#GJ7p~+feWe_a!Cy4f7NKg#J*(?*Qn1aBx0YRW*T8 z25zJ+;^A43hYI{^Ec(I!v(mozxJJd}6M)Uox;{h7;xQ1%AnBbs#!Xeg$7?`6dq25m zD6k*ga7|H(>K-!&>n#{;xW{{Ez5~?A1qhHfc$|GwO_Q2H6uk2*=1#Hl{jrs#0>~m! zQ4w6(+YAg0iVO^cuKD$Gv#H7@m3Mm8?{#%ob#sO>&@eL|l~dw;4MPA2qJ(91WVn3iohmMZH&loeSP9_Xdv z95WC$d@&*L*Z(INZxQ$-nxvuBC?#|o& zI0xY+^Am4rk(0i;YAm|BE{0j;E|2~F2KUrI@8gARgnItkHfvP?$tL%MwDVO*J0m=J z(aUOHyQ_}6`4ue%hG zGj9`THL%;g%$<2xtoSBs!W7=7lgWoW9qXUz(5-vo>7rgI0`TK#dYu`DHIQj~i|?tr z5Q(_lkxfQ_Mzh0)8p(|_$e4LLj7Pf&E=ek<+5TWB>03Ao;QFJ|LjP*8Wu0(l(^s<_ zU(RoyrbQ`V{>9ii~*J@qvC^NFVxU8nx`%q=>_*DR3yXrm@J~IpA`M(nrO58JC zG>|u44Mxl*I`Mwuf)Ig=&pl6c3dw zc${^TOOK*J6ovQvirSkVQC>yTJ?R3KSGNd=bh|5xw>*?8MELdN%xq^)a*}(#o4Y!f z^=S&kES9q*Au$iJq+&771h|f2OrR=>N}551hfhn~758b&fV9r!Ooo|4ge+Ypf+{>` zDTUHn#%T(%s_=LXNzCDa6*+l&Suw=_Im@p(EpzblTiVvJ_TXR~KwuerbPWCN zAI<>|j8r2ULYj_{r+IcI`G%_dnxhnz=-!3i8WCzOYCYFEhKc8Xol2#hZRfl}pDa%} z5N`E6uw7O+;tEQc=r#4SJfvp}yT$32ucxRYu{Ai|QJ=g`(4|-wVpxMoz_sei!WW+|T7ntMt~3eQ_1f)AGTAc&yEv zA@WtQIafqB&D-^E@6L0$`JOIBZ>d8^vWQK^Imwe@FWhqSziNiQ3(F5%YvzEm_mC6K zdpjE+7mB;BdL)rChn`R$RhN=wK};M>y0*|WwJ(^Fsmj#rvG=josf*q?@Kz;K#r^GU zyWjk~F%BgOAOmGx^D^``U>$fqBW^&_5&8={#ND-&GkBbJQcaVZKoq?5E2b((Yvafa z45X4&Kor46b`hiNB{jhCA)gL|ioZT?K5j`LURC#ded&IJGX`{|q)1M*1kqV6r*Wbv z7{^$r6v;SxOsc|^Bt+^cXN>@|reH#}G?g*N34yYvt8z>tOjN9)h^n$8Q%%+X-Y0sb zCon|}VoVe*NtlY_6d|UlDb*vybUC8Brb%=VdCNi2_C44aRaMZs2cP+ap7`}!R@0*T z7`OFTFjEOuH5DQRCh!62q1J^Ej03w6t04lPo0hY#8oyF4fziF3aq+s&sK&$Wtp=;_Q&{w|E># zPzRCcR3R^#aV7yht&NFaHq*rJ;cidIgMB>T@@Qkm4W+|nWAXGDiDef&sx{c|MYnYm zA~ET1@nF`T1SmYcwd3+`_110A-Rf+p8r)(OJW^8{cYm$BbvX^_cLJA}Q9Y0D-F^1L z0vKoF$7t-(B}O+F6g3+3fg z$l`q3Q4!})Gf7H|+oy-2p)~{S@_61KV(b_Y?H~5O_z8rT{sx{dc$|Hb%Wj)c07UnE z#ob#8ugj}SssN#2<6wfZUA(E_@-$ChE?~UtM^x%ZbdmpR`wvaqEUV69q&d>8W(ZCa zpzuP=V6o2L+OUNyzvv1KMZ|> z``f0)NmtFcSwZq4x|F{CKyMpeK{Djz7I+YL|K7+Ur4JkVYy3iG+2z|QChm=VL!0gF=|BL?^wSmHDNg z4oAi=YV8u)^>l9PtvgUaC}XELEJZ)Yx&2(0m1^%W2Z=fHE5r2s!*$mW!FgD(wBSP< zRTU=IdfFyPORXnKK2gA4HFSSM&e<~j){Z_Vepz2~@j#>fnxVJZX7tygGGVfD3IU2) z%ZNP7Z5PpFi|91Fr@*~;J*}y~n;FjIzZav@;_?o}Lsu0jBne2y*PDJKbC&?pzNIFt zlV77(?(Cm2c${^S$t0EX{8MOWoWO>COAt7cLIE)0qYIEs2}+GbG@(haygeN0lx zDfw^zcKSNb7%;GQ;M*fW(ca5u4srN14%96?9u^7D6&-RNHWbb znUz6ZBU(xoc%)c2HC3TU1DP=Wv&Y23*wT&}Bu1(}-zKyuK}TX@tRid@l4|gXQi=3k z(QptqLV%>Ks*=C4snXq1`;h5hkOt8xVQn zih~&9^_2LLGT80B-)?62Dq+!~bVnB$*)(uQ@&V`NSPLMS=M8Q7D}8VSus?I5knf1-lL8;0`Q0-Lot#l#fHv}R910>V+Q4f zEmR#VkR=+@dj z;2l^OVl%|xscAd@UVpx1g~*5aKeOyT>x&Hh_!HAwZx6s*d*F4uK9ExwSl_(_Brx?R zGYK)5g!rcKlpl?zF9Xxn^AaCNrQ1$~&_lH)c4lg84;F7;j5|Brh7}ojfh6G3^X}oB zRp@7r>tXAM0$(@CINwoyRH;pgdX3+@EUNS~4PJxu*IPle-q<^>jolTkC2$F?=wv%- zZWu)#6|q}JnFZsa~#ml^TI1Kp2%ujIOmX47Z&EP-dco1pa9nRQtG+n5yg z97IeMZPU+L&RNwC;$>8R1N)oUCz%g;oTZFG3c@fD0PlIl-i4A)vl{~<9z6JsbhEX^ zHZ3Iz{@&6rIJcR@)J+u_yBKpu>5zIM$%-OfOKosb&<7XJNJOn!)25|Diqhpsw(o7r zmaXe4MD|`#*{cu2dvU>;^sd9Q!9A5xCwQbXEd?(5&}KL^^6fdNacX3luYk-Ek$gDA z$?llF&SS0m*TjtFqgw@?*ZKt+R9@x>EE7vsmJxWIrHnC-!ypg92)&hL_|Rt`aOYNKg&%HfZ*a>Wy*@u0>HD#9U9YKc zUw}jradv)!i#;)C-KwhmYhs46Uhf9LvF z7L^rvoTZFQPQ)+}ME5y`ce6kl+MhTMLWl(mHXNee?oKQvPGouD`h-E8fZA2*)oYbm z8S+Mgv3l?h(&!T+V6X{9Lv&7L5E2`yJFs$TYGe&;C^*XwBpUH>UaSp(B;qHXL^OK; z$1{=%HY5}mMh*glLl;RyqG=eN)s(y$A$E9c%U;zRmdvYq$FlB4J*RuUF84b5*LlOd zUTNQ6l=eOhlOLT{4{)YC*Dbfk|B`ecTxV9XVxdJ{PO@CoE^5wgxy7H;)2Zu!U5`iY zkIJ8!zj~yW_tJd>`Y&ozk~Danby3Tbn>rNS^A)PPODcDG2~bs%iWnQP8Eo)#GCKhh z$O9H5go*w2mzz{}$=P+E?yfqgm829fkC?=C34=airt25BS=qizeG4IjAOcO(fs8_} zCz4(jpqAr8f@py}2<_4;9kYVer&Z-RRXIml2DM#g{ni_ZQ41Q5MIrP{;+3XjAVN$7 z8J=Gl$h8rxVBu+GRE>~eCx!u>dE0W*4dAn!;YCj0>W=XC-%@m6f$7d3-|`&@bi*_Z zZDu>J6qO+2Djo~)`6?vs+xxegt7a_zVypXl;5GR4{{+iuwECw{a$Y=-}|d#9N{_*3!uyD1Gnq6c@MrrnmLVRfb-m)~T@u`0E;@ zpl{Zvp5)oNo$~a++EO{m`MBk)Y`sLML;WJ%_h^6K5a;CQNf4(O`XL&giB}B>HL|uy z-kzLceREgsct~}4P}|(pqYw@E6V5g#5|+o;{bWo`)M>umTKmHf8_z%a{zU^{+_S2* zU!5&Ci$6D}rBv1w^kdrsIUh|21^zJ+U{ZA8U9`NAyfy8oo~W|=vrxNz9 z%1(KZ04)ds0?XEoWd^X=XAqLU-Xysu@77)2U9Y<7h!7C@6!UVP=2#L{Jwt|IXgE`I zRmeqA79>qYiI!r4>5~z)6f7deNCm^daw;gYF64_q*Lh7Bu%X~g%JU__$e3iJWjBJb zBLtkQx~`IjfR}NBU*r5%G)Yze%(~_m5L8t%bWxXN!14mmGYi{Pl%f$h72QlJcxk&4 z_4VVesAxH*|FIQ)L8=1$_v{ ztI*tQ<(GWCN#k~gP&ss4=(N)@bsLub5I=k97OkIr7>01%1qCZ?lRIy*3X5G zr`534YM9@HEG>34BnD2UvDZwPt+ht=lHQlp_{`X=`G^6ASdNei_AywBB zP_=}PQ$`o?4Pv+3$CWa8oOO{&lbbLUgzx+cRpscKSYlVzOlkz<9bf)dj~@W(x`Itv)e#s$1fle#kEE`- z0JEf?Hw?UHx!^@QykC;~+OYrBF2$uvF5u4yc>=rYZ><|9rHDG7w39{bFC}0PW_!!Y zZoAz+NGE5uIw(%F_Z+u4@l{{i8$W?_cSwETFlC}|kJPqq=ZAHlqNEu!38+Qr`n@wd z4fhXhIvH;Cxo{5C=H_i~W7DiBW6>BZ~RkfMTLjRZ{73&gQKjk^&s z0i+7vqA~;q?VclAThK#KY4p@+zrwF@TEK zb&_4Gp9B2+7nm$~oOO{)kD@>Tgzx-{zLQ-Wc_%ZQX%re%5FFn(9t}26Z5q+}_2ced zck5PPQk6=IGeSVBB)O(!Dbe*zB`}%FN~R`o3Ueb))TwM{vI>cs2-ldAmV-=%ajqqX zG$qDV%_TEa4C7UxN=a%$O_rrZGvg!`;(=c}1~y&ag9EK=8aF+7V=r5>@uO&BTK`PD z<`67be`j9lyIM?v{zNd6Nmu0>A^@Z+~E8+!o= zaR@#=9H8xPWB=g-5Wv`5sfCa=LnyMMMY*bZJKI=G{ZcCHyUe^1p&+k3gw2Q8OQKmA z^%*~*<`r60cy|Gy&*{u|7lU*$Dg@p0rWq-&Us+E0xXl}f zL~}AQgpOn*fPAN_$1=vZ!vwpF&pY3_4V3SqXK_Dp_m(t1mh$d-K04ccmySk8U?=-< za$7s;3G&y5!!fgMLQzc%X`U5xeCYgKy<)hqYP5<^d(Rj3FW2ez&JgJEoGedqSQ)r( z2BpN?i2%&&7#AW_nv+q6oaKjhJy^&c8;yIBzLITu;`jHx5rv)30?W^Xxv$;_{Md1Q zmUiy~c*n*y6#jl@2lIbFCivZ*fG{pd4|>8mZHpezw&!d}IqlkS?!DX-o-BBrb&^Yy zqA&o2@BE6~t=$QcXVuKs1Z4mfL{U+12_z8Y;Xo8;fBm|<*WJE#SM{a8mOWztaT6Kb zBwT~c)S*pG$hc*gI#QWoTa-@Ni1%21evAUng;b8W-K$1 ztxqYjGKJh^+4W%C4FgC;T?^6-;I)6+svqBrhKTxm)-^wXY8X@7LP#^g1ga1!&$JOz zvL1Ls`Zo$*+pcHV`s=+Avb@p%)QW2{hyr~3EywkO2*h3tlE91bZohT^z+;+~}Y7&rsj602m)XU{@r2t{vh!~dV z+;zPuj7lfgTPv;n8I2Zpzseu8It*k&^p{h$X~*nwniqMx#^q$U-g?wmz)N*K5A~;* zMQGpHkPfQZS;NC4(DUw>%&h$7sflB_uiXe=x)n+bze#X$WLcP3@;Ql48dwIxmp#Y6_a+HaG+B_x; zm7afk;y4c%k0G>g8iVzowkjE}g)U$sLZdW zIazW4*yv#rgp4k|DK^t2od;a?9eC(V_Z48km_uHh$Zwh$Z=}xNrW#&fne-l%1 zo&)wE&9!DgG^AjFKc7W=(q<(Xn3SR|hF{Dq-H)3&c${rh$+DtI6x|b1|8VzqS1}I} zRUL)sLqSDxc9%dh2_!Ew!H0j;-_bwTSg(6mxjb>t5ci(s6k|}aA}5ND6~)lyMAt3d zv_v_PLBOOT-w*x@>7mgv?k# z9nT4c5I6t)4SSBN1XK84qoVpb3Sst%e68_cAnCedshX}yFcD=@6k<}>1?MBdE%>5~ z;Cn+TZmZ#ER`9%wzK#RGp=E8xiVXgIz3JRtZeZ(fVZU@Y_Td=Lf8hcM@L4a0?$V)Zo6}o)b_Ifd2+V=K_-rJkVcmDBI`1Vz6YwsipFxk!I=KCY*UG57&gI%jzeLCA6 zzR}w`eQxOf>h{5*6(22bjzyrq`E_^+XjOWr1;%VHZP#5zwwh}xkF@~(VE5sLhl{uJ zoMKbFW($|9>$`6&;q}B;Jogk6t1Krhz7yJ{kcg zhE11{O~W-}giRgP8;PB@r@Duhpb($UTvjM17Z6o}iK~H4Rcm;^|9%+??ST#^r2Lm; zs^+m;R?;*0!+Y6iZmKeK=ZJl3nw+lPBzNiA9!MI6;SOmWB)uLFz&!n+ul#1yAZ_Ii z?eQ7a^^M8Haoo%soMtd53%KnIdjx)pJ*@nVmfqtG!DwjFq^hDOr?HsR?94!KfZ+AF zI&Da7<%!o3Laj+&L&6n_$Fc@vsgUO&**gR@is2m|RJ6MlVlUPL`jHeM&_q+=AU7is z_PGlX*u_H#*3{7Smz%#j4HPA-ick=!i`1ApAgD#RNN)jaz$ zh7=D1+4jxGAYpUof%A#d1V7Qmn%B%@qq$Wc+kvBHzrE0fM|-4yG`dzutj{q6XUm2O z-=1bVcP$vqxEp2+?fiI*Eou6>RWqZW&WwEUJwi3JO*~03X`DzwVD0u^F*o0qA)+%yw`N~O*V(-fz_B5;)t5jg>V^g3JG1W&#isH6E>NLN)& z=!}3jvV(5uA$z%~th?0q6O>49KvLx|buhLllC=Ae?y?u$A*v6T%ELyxujA|~8*{+2 z=)3$-Zwr&lWhG-i579C1+u6KQGyX}b*erC9tv6RbZJq^FVa_Dx-#l#J;aPWz2 zgWO+}D(JT8@)V(vMBL;-Gi6U$Hk(p|{=2ooc<9`l4Sx5pVaIx(;#Atk?lTunV_JWb zgXguN`}(|s0l~ElGBT^0>J}tZPhAou!ZWja&-kT{GK-Q6{qi;bFLfA(*g)GP;-%y2 z`&|h$gvcgRgJbB&C)h}pX@S*yYZhoE6sGm&Bwsn;2WViw(C{JPwaR--K zkYWvo7S}B9)dy`+ga=`hQ}V}+*<&4i2k;Go&-S2@^`G=hdCacxztscZ7G_Jg@I<8* z_~8|%VRruFP1cghGl;#z^N}%K^RpXO>eF)R3LGrroxc^GiKJ8jHlfjoK3OFwWN4IGp`?U(M+>~jRNyp| z5Ty-}xO|Gj9X5e4B;;;FYtc%B)@pxHeI+pckjSb)XrBP@GB$jO9}}psQxBk8Ie?_b z=2n~wI* zdLlzRyJ#qF^dsu`Kh|4#9&LJK;?P!E5eu}tf0cUBt9XJ+;m1+}XYi5hW~n^tf?{k- zQbXI2#TdrY%lz^fQOp~cRdA8H={T^W4T82abB|mB(^Xi(Qok3Uma^ANi8aY%e9I3# zv98+7-Rc?axM`9f+ViUPx)Y`ucQq`nQ(oU#e~bu4NM~nOujXs1V=~bBu8pi|Q{>(q z3f27)&i}+?j3r-B8rok;vp+d_x9I9U zmw9{7nl@ztP55$*<$Te)t=ZcEr)Y&KT*$2l3i!639Ik}V+Tqr!p-)(kjruQwUGt}O zVej`N1=33XHUX8Ljh&qT=IQ{ap8)nB8`_`fwdTbi1)ZY`X;fbNZN~!Uo zVrmMaT*H(UB^kYgjIINWa+8WKTuaCp{P3gi-4HI3qahaIZwzYCTOfxINja(cc-fz+N`xrky<%C|+A>S-kIRZMg#K zc2b{s2M+6LNQ#>eK4L)mE(GWk+qyHC>h@jxVdL>|WKh7vTACx>%9jbH8cPoK1Pqy$ zE!uGGr~JzJiLbQ*0ieG+D1>RjeEqFO$i$_3cj^XU=nQi9nkb9Yuh;@rDm7@|%hVs+9y5SAXo9AuyvWmEy z4^7+utmcZ?4+S;v@iO4n=aUm7pEgH==`z?Nb>78>!*88pKiK3agC`VPK|} z{DdB598R1m7q%G%2QI?de#0?N^Vm;KMSA0Wkl zw>c?4U$P$GWAoYXSvC0p{-(a?aq9N-%y7!2|>X-t{n%7(GV@5rz6oA$NYm z$-?<7R1G_y@Tl|XIM3L^(9p~XL_IMhH_ae<9O)ceJ6G@8-%L+Au4p#w9X|+Bo-e4J z`iIR!H6}|(ExiPwo|-n^k@dem@TK=PD&4HQ*;IMN{en1_3$1v(b#Z%ybu)#kXWjbR za$mwbl7d9HGyI`|8S(o^_ejnd_AC-ywMa40Jn zJV>1Q;O!dUz=QC9E*Not{P3?BP@QNyHt0K^ zFA>!}oso5P2$e83CTrB{a@&zV+F5*AB{h35@0)!#TTq#c&{Xh$5+RHKzY`(JBjYK~ zAp_-q{=YX+$oJ8INQSIviqc;%gzX#AFp%^(V*;pdouv=u2|qnipZMc8OBd4ma2xMb z{0(6V!+Z_7|2s!5ZwkkgY|Kwv#lA6=Z8gr>&(D$g2bsjkNMvJa1e9fNt1wp<;gk68 zQY~@XNHL?M8kbYJd0R?42Mg8-?eenCaE>nM3@aFU?G>vbE@XKdUk%60t zIA!3&3d-y&@D{iqHskn1oMTXiSA(UtRbqsxc0)wOA5$Y`<-~-DHl;|d%=+IA<;8yj z1BH|uBI@gR2lZhwR8&ZlB7Whk3H}RWR~!$B0x*$_5x4zoB@@sfW*wCvuBYr`xJAdSRo6=yzXGR4Y7S2WcXU8?#Zr z-XLC69Z`!C|y zmSfIskcNb`&gg)5_EM}4hb|y&xsq<>+T!d44E~8ayq)%GR8dQba@m7G%#gxHtH-3e zD3cSzy@-2}1kasv3oGoR%1C(as-sjE*MUe<8ILR+8$dz9ua@HwIkWJro_?P!Wh;keuQ@A@oW3z&}*&w~V4enaj|#ocTtiSI-@dT~H=w zyQB8Y^303zdG4y+rNSA-bJCgb(5k(GT3homE|BwikE&Y_VokHs{R;KNpwh`K5a9=o zG|rpn*zW@bgA6j-e)DLL@hS&LVY0`G(qxQTkd?M z>FSiRRElRuE1HUmd3sQ5lRp1)rW_M@xc|z)q6EWEokl7g=alxR>e?E7ca2yUOLxHG z+OGT92-v=&@USuYZTkE7>5P`c?)g|OL+Iqn-HN2y(q=+>bsh8Ny~DxL3lm6g@ITOl z)?R<{WB>IsR7fnT?MA6GjEC6K z=iuu{1+l6++Hj6t$jJ{GQX`T_B$(iN-M3E6&o&<37!dgvitu-JP`9<5d206?L=*T0 z*Pgy!4#4uqDn+$s#lDNgJ z*Bm~d8yNpVD`kPZ`oNRuPeZ+_0^~;GUeSxp_Zp?=U)V6Cn2X#QP%`(f?AH)AX1Dw0P&-loV8^%^Xc)5Hn0xD5$IH$<7FE*_M0F*u zm)lIfMa{cBcaPe2;&uo>TI?QiXdf5kGY$PWVGw$@By>pjnD=`gyPf&m&OV22h$~U| zsdNJOEmR?ej)*hmu&!0#uJqH0aCIK^<_d{+FO8JN%p9<-wZwe*qv_Icl)p<&IAMp; zL+?0#_!(v^8_b`h*Qt?1n(xu*`xL21l~W}XNg8QaMsGT=2)Xj*(TfUp%HdW+9_TWE zw3ZC`tWX}!M1^|kY^rxc;xS=;W-blvTGkhZKnJ}mnk(~E?sdR&33}>bjpCIkzn)f% z2%-4}tz*ZiH{3Y&$DF#VP72YQe^YhP>Z%j3M{A65@l}$pTo4_fhH59u+T?g?Rd0T9 z|JB>)$mbX;BMVjsQ7f?8I5OJ-o|s6;)0AX#6=mX;Z+5pW%fbDGrL!j~JMUJ27O4W$ z<^Hw+%I-dPn3%(R@8vH}qM_JVS}7fp2J-NMZ7R&JiEG}TU2@MW7K-ir_q(x@=h|)+ z-O~s$BdK|Xk37W7eobdz6@N0XjyS|lP#`PzI+a0gf1EGoDwHn3+` zz2l9W{0tYPEa>jlZncXB_VL}2afOyIH%wPe?4C7<4H>gZ~weWI$wFjn^p$VR)ex8|VoV`LWGUKg#EFPTh zUQWNBv9=3O6jW`Qh;{06dFPv%F`Q%hWMm}r%!WcUkoRI=39Y7~00e(B^omZ+t!*>t z$;!Eo+(;F5gek9%wgD6t^Gxg@lEkzkcfQZBfdp!1;k*Q7tM+<1+g8!-vl)1QDil2O zM-w3iILK?&F1P_geREPThi(L{IvGsl#B2`&0cw9Erc6y|?wOT6H^;$xp2t4Z%cIPp z{fHfswhA4c$cKoU&MYYu^619e;}*Q_yM`|r>44x#0w`?Uc?pZl%b1c7^M&8p*mN5o zOr_VD+cU$$2XVC&6Bp)5-jU*XahN9jMo;0+*Fa|L&*oZr@~ygy*>_0g1XTi-dITd^ zOU1&XQ-p;I6`2mSyQWoCQyq3%3u{rX@~?>2kMgt2_)7N5HUL2Fg{60qDoJjQr?=6G zdy(V%XnqAoBicF_0%4|>mUC1&UxZr`)4!$xD1;J0B08O;fv6bEf~*2IajzY~x@#L5 zolY>XEj^H{Q$bujPpWfcbseMS4u?CpK;tQ$UBp{8QDKD%?ZEFG@#1vFZvC=g0V(8G z`D#8^iQ#bC!Qt3!rKR5`-*@JC7LZ9jPM3$axmpW9_clC@)X4o3znDR&5p>GM)Cyvt zZJjUOX)<1d0PO9Zx6W=sb16kt>qIshG7qHi?9CNZe0dEPzQ&8@8$xjGP9a@-zGWt zD4c=H09eFv#=q^Yi@^CM403TSEO4!p%ZLzi!)k=4!NX^Q76BC_L}(LS6_>5-^{?lC zRISHDNI?3Px-5`Z6Suv-<0<5}z1HK4pQt}9*{t`oAIgG_b}~=K{w;YuK2H@L>Y0p< z)i-*LbY1dcHcV}mC9LLxj|<(563y1Afd&sXk5%(#3-T^~L*DfRy}2YLt%ttros6KT zli}>}rPsK@1gR3We`Zy^bU8W91G&9F8FN|P)a{>};sUbvBP}0qXO{5sgN;k+VU^fH z=kr1!k4(svU)`~bNt1=f3PJI<4ygJ5<>z6=mi5?0T{uCyRy6X=yQzOY44Hcs6loc6 z;H0it0tKq$@4)x1n^J%nT(xNXI!zXBu|Q)iA#z2HQ|5WazzE+fq>h6DAF;c1%zgca z6R7%{5;(5&P%>hv@4(FUF>2&F5fmWtI z=wYv4F(7jICpwfxWk`ed&-^G94(9^R_yUH+AF_%UvL4ezmoQ@QSr4mQFV3$=cd0-Vc?9{K<-Cqt?t`&9zkowT?>2gt^5?l4 zQ}xIy5{``e4}fQ1UFh$)jrC&(mVqHXzn0l!Gw#t`s7Lg!Fx+b!+Dur=beE3p&Rhk2 z4hQQ5$~fG^xHjGR5-u4w?UTMexYoRPkk))}1u0A&H}>fvTpMXyOqRXTJD4o^uHEte zJ)WeT-fIVDjCK*2@na#Nfb#nQS zI9K@>@LLMu>`Z0&rTe*^+_F9r>1o9t5jnXN@u-F!IW8gdXNQhU8(+mp*sE*NhtY%f zaa_^{WR29ODZsM`P<@@;hhlPQzz0|+pbCnUOPZLgtcLHkRtS4`-M zg={Q1?XAu*`y9gQt&4T4AVCikVldO(bRk!Z0rlp_BS&1Ym=jL4#ygnIiHRMQaiAuc zFe0pqLPVAl|97Q95Cbs{orY~^l!6{#gA-MfFQ%_r9&s}>Gm*gc@ACnXUlh(^Q=B9Kmi>=@6G;-|U*3^Yn1YV? zQDo73lCtT@zTjF3oL|9Jggiw?es|BmpH(zR}Xy* zP^N%QRR6Fw{6jEu9(o&Uon(59N3Ls3=*+3jNS~_iPd<>33+)pXM0iE_`Ud@$c^<69K7KX8zIu*?ds`3;2U8 z+S>hxU)7k4Rm7*f2#H(%z%)^Clk(_QoDU1GaKJxLh!AG3Z%5|a9)W`zOJ2Ayv)+u>_qQVkS zWzkW>c4H29OJq-q@p*F7-IO3Wosky0a_MRc>FoH8dZ}A#oqMe0tsZ%oT;NsPp}@h)>+|oQ=hI#CxNUlX2LhRNI_NAK!}W{>GOv%>`j^>Std}yycwv%_9;q7Rdqz#U?~; zW;E+b#4tTiE*Ac#l1g#q7w2OIw!xMGY;@Osm#YN{gNIw8KzSMCoM44G@$rz9+^!yX z^8Fn0L~JEx2`9XVHt}+T5ftYuWSUEe%WNx(@pxn4^4e6%8czV~D@9`-cIyb|VACcR z68~C{3bYJqQjI{8Wzjrh^ue{>P1&yKE(%P1_R5{tdSZGQR||(kQ6f+%Hx;ztKw}P)oMf zy`28Hu{P9%nkZ#E87&96kfAVBbKBglgj#|6UqHV5*iR&8C1ERKh@Bg2(i-eB8T8Y%(t8rCr5Xh08Di!H3PpU=C`4Zus_Hfu5sT)PTiOfI8knLje^4@P% z7VL7Tjory15E=AGx;K0I8|8!CPGwby4xh6y=B+$n{kjo z{Tje0Az9q{(Ft#-*wW_9n6SfIyX3}W8YuT%QcKj#2Lh^DUhB&%doad#{~=(lXenZh zh3c8LIZk{2#cZ4{;KV~n6kCf*$#nYE?G1?RCGntID2;?2ooppO3s!!1o8M` za*{8^fP&zgNi#9Hy_ZXaY_iDbqcV)-h^`bLooxmde-ix*CC^~wpZe)L)8%qcxagh; zFmAUjT*=bNcB|d6C+^uq39NvwDy2wb9mMbajDjKyzmLpUtFt%c2V{oc(Ytpif=dYu zT||v2@V2sKe#t(4&FKM1eK)8>0q8==do$wKK!WS%evT&~2?mOzh8=&2qDYdV@Rn)} zUs{QZGl9iX?dTXTL_0b+Tswh3zj<=2YoPn1_OD(pZo=4m2khYU3h)E%b<}HO zs<#GMb#K4@+B);W!%SPVrzD3C-6lGn&`I_rjr~qm8Hm=sN|NIn$hnY3!5uy zML9$m!1^Wn_&8XCASNf#qIK@rQhOxOU!YmCWa_`+XiW{_v7YBy*r4Vf>cFg}hESE@` zoV5rntdeB;`l7j1aukdlK$<|E_f4n`Wt6KDQS_-J`Pv1PT7x%>$Ad zqsj2!FU$6P4my<)t$pesZ9&la@&M+ZJVI&FkIDz30ph2(1-T|wAWSOuh#trxp!a1z zC(YBHZ-`*4jRg%j9~hqtd**iCNWjmP95samDBv;sM?h7+u8UMAdlmJ-Quqt>R$~a& zJdzT+u&}wSH#%=Gi9})UDT%PBTeTYE319%eKJ|69flv5o@{m$Hq$|Uj7w1U} zVXM+Yc9hKVQ6}L*J7*Sot3KW@4>%{{^rCD%?-#}$zPNthFwsIX%`>!97u;UVE2jVZ zdW+6m`D;ljN4wI1G;5`MTsMJ4vG7oyFwb|JOn$=QaEk0O$yMQtFH3%SO4V9Sfb=o` z>O7mvavNvaSbldlSD=d}if0KD+)HW)=P8v@7zkqi977!-rrikMlf~FH@*GHN8OEU& z)%fV?E__QRJM|Y4dMzPoY5IJ=w5;a?OIFW{RPRn53&S(1g=c7vp2#2GB(T!>)S+)m;Z7aoWNa#UVd_ic zV3vGg4wa02g?Ju&tTgLp^VtN2IhpzQ%U$s_{*$bARen~-Yo@S^BlWqo0T|OI^;0#- zAs)XF5B}ms+`8E(T20|+Q3Q1vVnHkQ>yBLLj^^Os2 zpiEUt707uY8_CM|eugN|$VSXm7J*_q(+1^8RxdP)N~fZ{sSB2DrhW=i8)jTOrx0_I zzjj_iO;MVH?5Av_izHAB^r1WOWyth;QcS(5p}a7q=+|ghyA|<^h9I@f6 zwJUZVZT`|67dmTdf);&S>1Z)PR^-I6_iGUjhFo>D{^I#CW2!0ynB8`}iU7qbaXauLN}6Wh;8qIwHYs zCijsZHeLGqjst=VyspEv7*38vWzgXZ#&gp+`f@~40=(HUm5n75Vj~b^5?;vMk?P?6 z>m?n4{p0({h2ZE&wgk~wn)T@`jwWx^l;Fq@sa(GiC zl^wJ6vhZnhX?(PHwB#;7coR3w1u-kM>>Y~~=zCg1RQ&nQ6o)NTM3Bq#L$sJ$MuN}! zd@ETI2(&(}NmTy=)*uCbbS>z<#oD*yv3j&GFX^oi2%ryEV^ujP#vtgB7^`TUs^d4H z;=7MDupA(stasAlV)daE$-H(OENT=<)IS=%yYxU1-hG?o*nRfdN}xmc9_gZ%x5E<$M>6d2vp6GG6>3>qS z{;hKH3Z8l-A%E`;^Uz!bWPlf%%^BjW>rCb4rGK1aXx2OR5)ll6G8sZIg=474m_SJz z*=y;z&&5O>DW*gml1>hpto#FhVcp7AX2@`cFISMRIr{z@e>Xa8LnUSCDgtw(;3%`Y z&T{N6J+?-HjGQKCzN3q9s`HyM5U4iTecNT0Op~twPNiF&YWhOcf5}R)#3IyvR)8eC zCGkSQl}hbLcnTU1rtxqu;09re2qWn5gkKNy8(eJ9?GWWXL!?KK9JRpbANPf{8ilju zwuS!0fxNbBAt+VPRHuEvmeC+{dL0Ok&H_krBre;I|<%3 zNGtd(rm$%+VVQz*9*^}BJ}sAMe7VyfIaLe;b|gSBax#GnYTRg|c4#H|S<4x-y|RM* zZpXAiK{d4`rC=3YdMjtXB%ezl57mzxrj>1E7#z1W9z*ovZ2{elN9iHl zgC+?cS#)@435l}KemCPie3ex|Av>S;Uz@S3C4{w{)Lb|&;YAo8?H_R2WF98iE^o8n zbn2urz2E-TS4zHaR?F#N@!(VO}q=iXq)1+_+YSUzD?w`&vWtZw(rJ66P9cEL6}1OBoWko>+-6*n;`$|nO_ac4 zwM#qujKru#d7~O?Rwl&YKuU$6)-Uz(JVb@5e>W#xuyUmRC0w;{P4u)R+eS44eg-r_%Woa1`gW%fDHW=KEQ&H0`w~^J$p&;%gs_ zK$|H}Xhwc@IbMJAneOZFr5=1%Sjr(h%JI&InsEKSnm>IFpT%w%mxd#0nXvgswj~dcn=L~74Y~9CeX09lj6+J^_b1@;vA3Rv?&ngbe zQLoZ>&g7EU%vjLmt#CO_cgJ9z5W*c7uOe&+oTT0* zDgdpwr8a$#+Z==z;q8YLD&j#Wu{lOr zwRUsK@1P?O>E28CX%dYkx-Z}28u-KuAf9k9YwmV7tFoV^S>q~m7brR3?f(Ou zoNLaq8gA6A61fE5?%)_6{ZxSNuGvPZwbXfE?|ID%X@sR91%c>omymIcVSw=MMlN~= zWcb{uZPmzR&a-eainRawKGugj)wgM-nYbOalq%i-!=2nzQPA|g0n~Wx6Z9R8BgB6I zNana_95PxxsGBKk^GvwQvEQ9QOFDdfu9s=q<{v(pS7{{vJTsNR zd#d`x%<%slc{vL~I==~)@-+2a=|%N5@G^_Gn4z$wtT7Teo3sMA;eZ03zVWOu8oj4g zAdti?8HedM2M)pi5_k>H4;6C@N(!@WQ}^%>J&{Y{`Q^2L#N|gL`|=FjG-{p0gh%o! zjmpTlzMWm1lTC!WqQ0uqHurP;Zup-2!s}f`IeCwEWQf1}^@zm+Qm|!1mKZ$F z25w;LKjZ>0g`$o)YdZ6&PBg$6ULrYx(x}AN^Fm!v(#`PXw`}4bD@Co1H^6 zwJRHA!<(Hdx!HDziVNWBkaFN*bg3oY zE!&<}u#n-Tw`Md7GxEQ&o3=|?=?`u+;8nyhV%^vh?Cum7MVxqM~TXqZ-zyMU~H?t(4 zqk1Y;vh{w*?jv=ohsBK>%p~>NU|KXQhUV6fl*ut>os^9oBLNvuf*!7V0t@ zON`1B+J%)K1_7n9U@Z|kBMX_#R^pR9OOdqz2K~l&IS|X z@6Oy#t5t+^I@?vy8I~IZ+PPN?ou|;sM6%v0skW25-hBH-2G?*XMz|U|>W>#KU;-q` zWcOGUFI>ksSYsoW+Fa7Nar?3nmO}0|6MZB62SGiav!7ZZFZhrx53JV`Zox z(>v@YQztn-0POX#>O?Z?EF*3xfWyy*P* zt1d*rIUp=K3c|NV+SjhLK;`$4GR)eE;Noa}2kl4eC3e8=A2kOQQmX_1qsX2I7JXjP zaY!o4)~?cNe-&FHB>C}^zSWeuIQJ&oXqqYad(`wKA z+bo@xjgQ;LZ0>w)*)-4cF~XBJ(@rijSk7S&o-h3vM^TaRp={4(uog8e|NP~(nI8x? zQr^M=!@$I-Ep9{7N^RxV z-zFx&vRjOA&FPPDaUxL5FOT3xU$_6Zn^yY}ta;yHSL+;RZqtN?g&m*%`^_wQ2vlB{ zzWjPisJq7Lv&69n0wwcRGm!tZHlE_~K)+XxfBT?^8*~m~S2pk9PeV6c-fnzh(S+!( zZk&lTMi*>2BgU{HfBzbh}{MDOr{9fWjspZGYX-CcKci)8}6vn-ay1@`oyc762R9-buUY zwiB7pXrw84sKMq-BaCv)RHNB% z4W~RVh|A0Aih%d5<8Sko*FlGPt1nsZVz<8g%zR669jlwZQBz5_k!0}_qDyaT(?Yom zllm0j^}vi+ICB8ohcBiGJE$cxV z1;uG*xQ<<_^DUrRjWJBm%{qa--*<-j1;S5WZ%IOLK!HM081sBPbu{9KiwwNi5{pJ8 zpf6y7ORt(wFo0sZd14F%2OY)_LGi}K3U%fPf2EjW#@(J?T-jqOwd>h#`&>O4rk&kK zqaC-cf*8Yz+znc10$KtWk114ZDA^s&g3C+d zG?L;zb8$goi^_xU};gEmcII8Jqpk3AXO1<z`+1*(eHfCxOb}!Xwbygq!GY2`k5{{chJY;hFI>ot{P-(bk-W%94o|Kmb6jxBOCT5PuwHoKkOP)#H zj|)hh_(qg|y-pv98cZ-)MVm;-SU-Ptf~p;!N4Fj29g_%Mf}E=Dw?G5h)@ z`~J;~>o6Z;z@P-$Uj~jjtnQM^m-=RPm|(%7bdw8q6G<4MKHYP7Hy zC&LMc6=U3?@&T?jP;)G#RFw(1lE_#E%nlx|&G&ftCb!rEq(VI1ka!__9HrXHka0()AW#1U|84=ucrW0zY1JrL#;~8!8=NIHcM&1e@ z);f3#ECdYqj>4~YcXz2i(Lb^}y&=AfYsqy578u)4Yv!faA(uKtabA^jwSPNyOlvve zf}E9^r5kGmmd!vaBEr(*J(T0}^*1UJ>+6;B4UI-4g{$hF&8 zmV$?|lPrTf^jcDNkAE@NpxWe+WGw>;f!2w0&|Ob;J*2Xxbr4H0$iCo%`{qBmlBl+= zlEaa564SRIK=80tmVhTqH}jqH*VUI5A6{hQB{u#|`2C^9M}jM|D5|8#H;!;rm~K+p zdHxRzeg~cficlf$lZKga9F81KTkdsG#+0bFQ=d!IBHM|!FU|`M3`ioK@z(_qy^r67 z_5|#Cr7?xkuXGN7z-;rW?I#YRoNumiviQv0csh-qI8{pqu7qxrzUbogFN5b;g>1TP zHldk6v%`WMIJ_Zgf>UYOr3vc?nX@<138K~AW~$^0_%XA4&6gF3)BJ1zzem_F-oLx; zw*K3nh`&tSR4y?>gnqOOiXHL;f=D)`q$kQGboiRw0#ob}DvCtyZ|`E%1^prB3nVo$l9_fUT;zDP3n_Pu~Nd zPxU%$Lc}j(R3A7Fk&kJ|u@#7N>nY7F@BFADAR3`WtQ8xZdGKH}Q;X;j!xj13wn6gS z8DksBvcen*j=7GdhQ}pUP4SCqkyo>e!@;wbU!xuUV$9VJpXQ4YLc81Uo~DydT|CV# z>kj%2>%KUqs!8btM0oNd* z#2(q+`0w0q19tM_g_GW#=F-eKa!(6Xn?BlHiO3VIxm7>*@@;yLM7WB9rBfsnKy7$P zMK*!W<{sJW*!Mg>|MNzuSpiXNg179!1UCEs&w|bWED&mO;U&p115jj?f7u_Z<$Q!{ z)bLX_5g8EIixP7-6_K$pbZH7L%L5lt3Ls9nC``)GNlySX4ctdH%sbry&|#FLoLHiw zeoGsQQ&WN$Q*XOD2QFBA~_3DQ@K2PwAU>SzlHe z%Liq9K&afqNn(JLOa4<`=#)-x!slAPyqNOwZ}gw`@BDu9H2+lAb}|-}D;9IeaHwN0 z29Nqfd>XA6NG2JrKc38ku>)taha$usRPItc&ee%brQEv-1xuT(<+whVi3c`OJtM^) z`U(S;lf-R`0A>^k_S^DIp~JiI?^naS(Zj#)t;`{O!PqtYCr}sF6IQVNjr$w+U3j8J zgBHXk^Wd#X4MT~fEFZQD-1r{8z4 zz1BM4I(zJK#`#}k;=X6qoK8Xug=}8CDf|uSJkq>ag`$)xbim~tt2sn667}WR#9zTT)+`rxj(ooSyO%Sd~?z5953XH;Jk9i;;?v!>}z>iNYQ z6;!ZN?Ksd78##BRiH;xFjg_b`92;#%y{?t8rH$I>CxXIMnq>Bkrm@hUPd`X{6iN)1 z>@c6M4Z^QoP<%-0k&71_Z2j=b-FD+0zR2Vh6wQo%8S&}&f)LcNHKQjTTaVb*s(^(4 z-igZ(bY8hOtDTig|A?jz7=MvV1NFoN@4nfnSzgQDb{~Vs9X*rCSC)^j%sLWzd3;A_ zm<}bV$m(?k5bdF*%Gs*%KIOV&VkP^lrmUJLy*zKAT^bP-mZ6@2+Aw5q3dbLCg9khl zETlkW9pKQ%z*jQ=Ri;?0)1>4!S#QP6V<=AA@85Zk=H~Mq3MgC?)^QiyuiqU|EHvsI zX4Uf^7E>j&F=)!P9C?i40GHBZ=w%Gea6Uj|lbWg-pY{_&Cs|z)F5gN?_E{Xp*%?Nh z>LQy6|CjW2rMI5ACJ??VuJK&ci^cCeNfKOb=(@kOixx~aRu4-KkeMnUNE2dxn7yF0#^ z_1e7bc&TcYImH`#6rMbN0aEcMgXi_eU+^r1??_b?FN$qTUS?^<@MZHOV^W zU4%YD%-=-rTb6H`EGdu%#u8^q?YNrhX&0SbED3OQ$QPGf^9pCt!#$XQcsBy04_fS( zNz)-N{uVjX{7&5d``czhoV^)aoZ5m zK>4kQO`i;)g>!D{OZJ@I0K11S!bvr*r&T)2X9z?Cd$bGSd-8v;l6}kajODzb&};IJ z$^CrG*nN;>3;|Th?o=Tp?SNeY8cTCeIA)3s_W?nn-pw#eFo`E%YVK7kjW5EmO~Y>A z=`=Mfs&$ANJ_;7FA)POGz8x;=z}PK$SoILsND3Wy`shfm&3*xTqsAV)0KUfjdpNTm zP9(~xI<$>>o^{Be@3hki+(s$}^!K_ud5S>2)L&QtqCfsA+K4jZ13y50x$3^#Djd`9 zdfRFHEA&s{^FkO z4ur2fKv*9r>+>(+Vpad0tIz0&SmkFlM^Qf?^!biyX|(^l81(Vj=Ej{Wmb4O|I5U?$ zaSt(-5aXZ4puDqzATEm=hQ^eM@VV%_l*#hJ3v%9xPqhfwrVa2Lx zVydfatWS{WuX8U`#l#*$#5>dUO|f4g=6XxOX@ac3YZiRgISmuYPe9rj`G?|zI=dL# zLe#;z8Ldje*w2HZ%Z~41(|ABE93%#SwSD==bU1OvXZ6viu^t9zaN{K%?*=-VX)Y|%&b4$>l%$2wBl;$C z%`{t24~y8fLbp~KO>}2^)U+oGG$2t*oO;0AfI{hie!>Y<`kW0EH{HR;AbI@S?AD=K z6cIaAzz<$&gSY;Fe(wp?o&nRNdeYTYKQgxWt!k9?(@j_efbe}b!uuYWpDkcyL7>+E zIt^U^yVDS+aqPe!K9DsNRwrbk0PL=Zc-;dSlDC+E{}jX*U~2zwmC?pCA9tC#@wj-~ z?>$rLU$rXwM4VeI&L4pSGJHph1yrvCN{0V+kF7a*G)j@m0BSsx!^PL1v}BDiGJrYu zW8pt9fc^jNXH1|{o=7m`tWkfzNb3b8CM^k7o;*7M!prmslmKC_e;?Ukwdjjqcc)tOw0~P%BL5Tl8;&divj;2ofKz4K*TL!)+X`1ue zydva&6F-=hfZ~XQQB#TN0;J28F=`t761`@;?!`(@b1dr|^Ti9MZ)jXw#QqJ!G+<;v ziSj>3E=EnYxy-xqJ#@TjB=sW`-Or%bNq+?hKN2Cj?SO^w0E7jA+W*sjIfjOZCn$gS z)Y(**nkrpoo+2P*{@E{YgUK>GZ+r5!=Zlt&-Ev{ca!WN}z*0U!lnY?Ff1mt+T&dT; z%MMZef-_2=d7yA6{>+wN`8};e_zN)Zh6I8b;CxX2Lseno(xE3^jFTyB&W1{|$vg&! zzv<~UUG{xj2U=By=eqy~@Uj0nfMz`~aRd2ZA9G>o9m<)ul#NG%U(yY-7E_a!RuTe%MMJyih$3fQ>7* z8^B8qCwTcBzC4>Peu*X^u+z1Hcm-;G%I0S&uWv&Afp6o2Bp|Ap8(E&l?mWvvHyy`~ zD@gU@xk*sodG4?j58pKx8*TehF+lkC?2%4>Qm%nMERd5?C((jtW&PsJYY+2wqPaJ4 zQgi#bk5E!l9X9Vu#7J(>zhiussQf0CLdPd!$y(%d+R0&O43LiQ8EYs{=_Q&n7rLVLnGkJKTOKiK?{ z!B{j`xjsNeE8k*udB(zrdCx$jc1S~QwSZ+bXntzI+y|tuSw-gfy=`iu(*3Xl=#x7s z;S|_!2E{e=RR2srQ5xym}?HB&%x)*b{+uU{3-y~s^w>)IU7;v6(OfP;u zYki{b%UlC>;l}WLl6RSy{&ks1IRhav+f4kMYVp=)x8g(Juz6d5g(tQ%?RfG%eJi&V+GX7v$TwGVob#2yBiKB) z1#E;_g9g$ZoNhVU|z3eclVwvWp=*`8t)AV zer`B(*HtJ)$Ayk==U+JB$g3aohZpc|vE?hW&J_HShHU z{we{L{?8mB!Awz0PQtO>nrpw;?e^yVhZ+a`iW~p=pkq|4pONQ`5E(LnZTavpW251g zM*hR@F=R?+a0Y7h5BtjbwJPJ0tku$rMM=eSW0`Y$BKv-%J%J2@FDEu3t&f5G+v4X; z_(Zx`r^G@_=UTZl5m%wvpC=UuHqO@~h`%Xl0Buu5#c0K7N5;n_=A~$8hZm(J>4wK9 zXQ?N2uO#$m-94Y~%UUWcSMLv{JI);$XW0Xf#74&?rlsfrY%k-~(^8W()3joekY=1E zug>YW&ym^ecJ=BVM&xW4_fM<@Kq%@|k4cCC@{8zEGf+lUp~upl^DhA(1PlWasE9Lu z*>{FAL#hG7D7)%yw!qdCq=x9nT`o?Xn(&S6#Ij6=EGu~^4HPy4)qdQU)tLKPeS5Wv zJV+S^c@mH)3BQlZ=L-4~VW_$lq%k9FkeWwk4s(Qb?amKZa^{VmtyPvjQ+8WqHG(Cq zSU%T+XO||a;Y*|;5tVUFemkQ(d%~_Bu{=m$sx1vRl(47byhl3*)waL9fdE$xz7Kx@ zIh`vEmVy0~s%K0>tYT`EVt8E7l~zf)RQ{8{&X&?;sj6^KqKKeb`LAa$f1EYHoVl8@ zIcKl^#C_T@u=|*Nk&@CKj0bw5OxOwx5GEq7ZWZ7%`$N4Gi1LFALTSvz4(z6zH z4jC`~CiCo&Hf1EBG%uK&!hhij`sd`S(?-TKS_jqc#E(i78Y1M{pU%X4+(2)1h*I%? z*>O$;fE^F?@a{jC(|4wm-%#kX)CQ`!pH%LZ&#e$T{_=hGlGxtEIWaJ`epA zJ^KX5u}BP;8{_e0eFv3QEz34pOCuO)S^=h$x5-@3#mmAAW)xZ2WI*TW+1a`MhBc_V zRMTm;f_)J5Z3}@QR_$SXn=J~8evZFBK1TsI*W>E@jKXu6~zGb9aj(-V$-RC3^Mmq%i@01d#8xNG%vTg4{2^B{&Aa?IpZxcN$8i z*nZjsq$x`1WHSe&S<9zl(M0=w)3xhs65~A@S#h~pu%a)7T4=}&Rh)#D2#JaUaXmzp zIz*P)OEJKQqu5V$5D2HXWov;|H(x3?Ta%LE{o8s7>W1e+h=djA2Z@(tbW@cUe z(6-t#;N0Uz!~K4cV8#G6Du`qbj-Aph;eLFccuOrxPWG z3h4m}IuD5MQ=4zRfxS-fKzJzo)vyu`FXM| zatWsKo!RbLH>b62FOnx@!FQRffF5Ipd-+Dek)WLLOi%?yG|BVyt z9An?Ev9{r@^;zS6?4H7(UQ$*}NnAEST?%=P`1sPj}B0i!j0PRwJw z_S$aU|BVxi{hfp?W>zDREfDNZ`v`_{ zE{=)Y0^~st;EVU}1=&MVo1}O@Rw%E33NsdR8t#YV$TGtqC)Aw(f0iIMGZm_pPW*PTtEGqle`+!SaN_tGnk<_ zoC3vxY8W#SMT^I<3VIL9C@gjmSDX=?lC3BxQ{;CSdFr@>co&T{7O;chTQ>eVP@6L@ zzv_Y$7W>yHM$df*)eoBVrg9&d)dK{+>v9VF&|Jal0Mx*~MXM3Bk&i{&X*2^h-%anN z^5YN`TSv$z$afO0%It?m86c3v3%vwVF=ZI&O9`n2Wp8bVR&I>~_Aq9tJY|`4w4jQH zlyn0}2Td_bsz;rlKzbI%!$0B+O*Ag6s-D#kO%JeD0$^G`G#%g5@!ZTIfks-}FXzcSDqYxb_Y(w8-HKZCa{ zo7GfWe#uL~1W6U0-&n()=eIP|xV8M=&{Y5}^+j~-^_RbQG~v%KlktuCpXR32)wWh%CvATbuWstSv650 zPZQH~9yt5BrHVoLh@GN(dAsgn28QD+wLq;_AIvWvol!D-a|0jd(=DwIr^~0TVL&3} z;lZL95+}#0zsq7yqejo-0r!FI?}mX~L9UQ&1R-Sawy7xMdG_aAy`xca?~CEbaO>p6 zE;OX(iJ$d$J*8@qKXOD;gi%~)!<<*>VAe!uU7+FJ)TS!GLtouu4KZIMFt3Qc)9Z(x zruv=T2Hl`7ZoR_pkiCW@Nz!(8wiJ3AZH;=u?l@AdVq9a)bLb(){q?38hR+j)`_sj5 zT@ImNTXeRx9M!0oMdoF=}f(jR}Vtq!k2OL7(Jc`vxg z!uZfMkK+7ZF&L5n9?+e%dG%NooPOAw2LoHwCiVWCW-!g1Wc38XAP-pr;R}s5s`Jp? zIwam`c{es(m5}b6S>&mRI1swfF7Lb+y(yb>KFq#gE%vwGrIxLeE7uhB`Pd)g*in`oiZGt-N)_PlDdNYk6hyeU->2rgNh{Df-K*Sr z^0RRj_t&sCFKD4oF@U98D-RxMC`ZaFYkzlQ+wF!_mk^!tyuJwD{>U_lPw;A$0!Je) z+zAdb(BuB);2UY{2Cpy*95e~ZuhTuXEoor&(|@M*^6Hi;lczbn5~*aUHrozJ8YGg46VfZp(#J|XO z<$4UsDCuERry=07$1D9H(w8M6I(WU^M(E1sF7Qh#%^l3okU;E-i^}^%h>?ZB3h;0k zp#eNe!Av-H+|h?|UA2@_j@2ULP=;dpK_pV7V6!a3l;lNnJ%gTb376SjcJ`>GAb3c& z*tZRkht8N?peks=_dp*^ zYAw4nb^1|)AXAH*=%oztX%E7qJ`0By4ij^`t%+aGXwQ~b=w&l!QF)d@t6eB$Rv+8p zBBqfsmC5Q-l)AnEkL%0J-7A)Vb5$$yR&EW`~enLo~mSTPSuAmgAS)>xXdMWXt+Uhp{F8 zlzMZVX$t`Gg%;%W`P?BZtPeLhh&dVz7@@rL7(a!hQ=~eI@RyM zSYrvPKc)l2Tw|;(eT<$iCN1Kn&4U^BsE1JDA~pYNAml}s#S|GdLSevqWdH7*a{=VJ@DEl{v@ZNJiFxS&8?r~@g&4YH> z$$2iGieDXkcwZ_${C6mj;}(Cj!Q4MKX4+*l%v zG_r{U4_}4uYG*l9T%p=~m?h&j(+~$^g?D;h$o6q;7-NyjR%XIrZJQZRWHPkv=MP=O z4#H8NhOaE?p;gn5HH(vgyF1#uySimBsq5UM+EMefrDJVVpa_rh;64E8`(XZ9EID`K z*m&q}THg^okN_ms{{JR;qN@6`@uK6=)mZ?c5rYTEJvF1(*|>z5OHRv7FT~#byO@Ht zN|60qonRvgBVPXg!h})Gn8C;-!4A}mvehO-&G~OP1|YEvYNSp;(s*1+DrS}evHeg5 zu25igzEF*$P<=`p-43MNUcGcgswm2A2fAU_`f<0DxhBC{9uXOYh%U}xvMr6>hR6GZ zrldj)U7WnQu{xG5CKos2q;w%oAzx;|mH=2c83oEt)vLiiiZXJ7Xu(%w&brbl3{fI> z<5CycM!|!9WFWpnNeNnsj|f?;)q7F*e|m zMIWlpgG6sJ5H9L)XH#`3Hmxo{;9+BEY;i?j{I2Co|;Flo;g^*aWA81ti#k3#(&BOq2WS;~x zL=a@2#R^&8J*zP9m8~&jcG+MMRlp8X@?cGvrqLG?k((()iNCeE#Ay^U>RHM^y@~y_ zlz20Xy08lsq3^}$%lMkA>X>=nTK2NI#ELZh!y;HMEF~ZW)8Fg8j}2Gw%r^>x?L1Xm zX9AhO0+GV|9NVMtn|eUctpUbmAppKw*QnUCf&C#;!J9aVTVoUO!$g4YT&4 z3_u$ZrqT8AK{`Q5R$v)CSV2<;Vud_+0cSNvq)%{Qf?P*zi0v1^^22L&)HC+wj-Z6Y z&!y7t>p1e4_m}$*AL?&ok=$QGp>a%G3ezBYWAavEI-3f9w8gs~*+vymeJ~Mudn&S3 zWu)vQWc0_Zb)Q*;1s{u`nQOi<>Qz4)JaUbGF>?yhUmN)1WJcaL1XF9dh8HX!rssnn zQ>AXha_;!JabA{}U$~a@jVNzv`6(15W_jqs>cf* zoSQW-?D4zb@h}D!Xjf!^xMUU(}?F%3Ren$2NB;~~a zH6e6{iah$({z9qW{NVPH3WLoguZQz;TSp)J z2fO2UY=OIcql1DYvJ`Z*f`g=^LX+g9WRk*w-)k$)XK`+l&(A+_`8P|?amX67*bpFq zTJ9+J02x342saq~xtvg3l}i&pKz`@V5K>@=fP0_HmK*$(_mrl4zPQo?X$ zned-}>q3`uJxl9^?HJ$&T~F!VzT?#fY{o3Q44z)rg<5PST6o8n;-zk54nPi}2APcD z0xU6Dkywh=ZbZf$(P=ybEMFKSY{lWOQ(c((nt>eDMI(3)>fpjkRJ%|ei0Pr=#>vF| zz=#YOW%@3kr(?Q~i=dyBW)CJQZ58 zPCkFe5(#_`?aN9lL3=+lLki7G=~}SaI*li`W#ql}L-YBblwLxLaSatDmL%nh;;1+D zV3telkL~o-3RD#gkUh2MidW#LlhF?wdA+BgbY0GSeu~cAKGY+eDrzrzBL_Xxsc*Ct ztWgSNHy+y;QG|1ZFSyoS6J=HDH%T;rehCJ`*nq-^Yz&_y(zu*UVxpCoDC4S4J1EYj zkxd>Wm}OmZIv_1EQBJuCb6vBEy7DLQCG0A)w>ptdqL?Q9QR~rslZ;$WU+dbW)B7%G zTXeRKOX#Tc8t({jW;5B^!K>J)%sfrOa!NzdYOn)A*GWY)x2#7bEsh$$I#m(QN=#Vk zM&!#_sXvM5vDik_QwUjcggOk#@c?UcM+C>^F}<%WmNpk>4NkITq_c^Y)y8Eu9xlYn zxbrrCyx@*_V4`YZPjG5f!Q)JW#lqkAYz@?KjLPuRnmGUbg}|_Qm{`DC(WO1A)MHXn zM{UFVtPVGtqA%j*SmIz>1`n*bV5v?PDuELgn}>IziB;BEysbgOi`R^GA>J|=G=EUl-)M0(bj(DqUIWAS@>5mO}LTpW6x?>AHTMr8ygO_^fp< z&bk=xj0vBx!xT`&KrKi%DooC!U|%$M(q2Jwy=D6pH^__VB-zkbG=~8C+D}6GpQH5u zF+~6j^v;72k@A;A(2Sg?j40&Lv9q5z-l61HNP|d-sE?8{q>6t;#8w0KtE$m5r7mnu z?Pn>@I&ZrqB1kk6M@f!Y;T8-XN)DlsyqJWgbQp*dG%hKcKzA}Jn=#562A`N)zkMzR z6U(3x>8J#9d6PIIVOj(Yc}=9CiJ`XMa?4r>^iwZS0A@YyNDI~*qt~MG%13!CTzx0T zk4F?)9ufK9Lw2}bV&Nn;^ygExU7u)`gYLqtPv@6$O6%2rWvyH0M-N0$UiSpiz;J|< zPeUOA<#QqOKT6$~o)@*Xga-vah}%uoaqo6&Bd&AILng-ZkDX;tLLLEudY&W5Mlup9 zdMY>d>EyaE8QN|HtcF%2qr_ll`OjR^oyi*`GSttV;p&11rCj; zh=^xqE-b8^Fw@v0SJbrg5?UyaUn9+OXOD-QW#Y@szz|<%Q7tthi_<;C z&(GMsNqcHRCW)vg{4Te6Y4&fQR8nz2lEj zJkQM^3*A+}mvr8>bf>cbw=b6Pc(rUL!~?-01L%}^ifVsFV^P#)y!#R1 zxpAP;AmS0xuF&04fn*2%Z5W}gWdU7AWN>Xg2MS$LqtUk`5yZP$F#Q=85({zwav}1* z>0PTH%j|>Z<$=CSoY=5=y$Be)7EzvHCEiW=)1uj338kcqpi`V#aumGdIADrN>mD0? zz(yJvCN|=}qNKE;YVL*)?uVDeDGoRNBw2TPId0?Wc#qrV&IU*EIi&(u@kQC;zK*nC z)AzgU0g4bW&oD+VwtmEU1P2%4<$Ft?ugvoaH5+1$9&VE&kN|XIww^&oGs@AZb1vVf zVFkhvND5t?QvTwNaG%`WVg@l9Ihp$M*AC@-(=YnFDi0W?X+pSMWo&7H$mv&b;_;jS zqEt{(bCzGXr>^2l^2ZH?mr~`0Mmw2t4VG>fJ-Vun#>>mzuBJoNFooo83OP0EqiPXP z62rElAa^7QHa5{)G`nEmZdvIB9V^v4q*M}fZkdci7JO4&@Q3=1i$KA1Zn9AWgbi?O zrEm%}wtkX&hh>qSJdW%Xk&a4@i63%VjL+=*U;iF*oa1$Qe$Fr<0>@8QevZbVYr0k& zb8&ZQXUXQy4yJGt)RS5rRlveRE3Ll0 zW@H_{<$o)asPkNG)7kz}?@Aw7@)Hj>P5DM8Cr0Zq`hhbnmmWs61Ts$}byd#EFTG`I+hI#xNNH>1Z7Rd-S5{Mf}lLl zi68g-;>=kbc8^1yUPUgRvMMeK$a*?`Xn7^t!sd-X93F>BehxosQ2xvW&7;=VPmkA{ z0Ccpy-*+PhWh-!Tz$ASu%~Rm^a4B==QIUU&>BGr4kOHpX?6Vc>C3*?(arms>&t16g zQoMW`TVKS{cqM1V@?u5yuS!*HrFs$b`{^|7lY6!LrFZ^w6!RpRHGj+)jMsFH3NFG$dmY#oofH+~E2_ag9SI8-`{EgDBLJ>_A2P(@62}z}8S^O;`J74s-Yk z8mbe<8>IRhK!e01%H_)%g2%zc(x|l^eboPB(ScQIvJj;6Jv`r>9F`*;^ew?SjQ^;_#{o_^ z$4-Vo43)GQIl>^XbZ4T%!%X_2;2K@8fP%xkxw+R>F-G5JEqRc#r* zY1lPBqG=hQEsM7)+#@ygD<}6(3CgM*NspKV(|rFV5mot0X4_Yoi=&4Dz8ST6HC$3U z;n|S8mc4!y4PrwNGQ*12DDygUtvT|!x}P^!#L1_{zij8vyc0DvU3GKlATJ4L5$&?Q zlpex4Rd8ChRQH+ZB*a#3Kp`x`7v}ldq=TWQ!!QQY_0Dfhq-0#-&K`X|sS8IlKtC(- zb}~)tf7Ds-`CPD*k9qi`y@8uOxN)>6)o-^0SMfB(oh$ZGH0k9Khp0@*XA6Z*mUXXK zhdCtkv(?2t);>~PtFrI9LhaMF!pLS+L4KFcsQ22IjCZwX}>1@$fPkJik@kh?yUs8=!q1aFokxCL|4>a;Bv2amw&A0*S|=?qq;2U*J(yuFPvqIx>PEz`hn<_L4%XTw_mL> zAuBj{U;XniO3EdhHD*_>67C>Ip3iJc?j0t7LqN3Lf;u1ZpTY3hd_*;Z1#yr6xa0~= zI8Z$LJ^5+{KXYS>A*1qhV2XFCB@X{#M#-Yyfbg7ZqyYY~%!SpH4XQv~Y=?q{G|Q;I zgPG09A&fEH@B}}(s$+%hfE>ab!n{oHlOs=k#0M+Dt(ZUstV21*tA&MA^tJ#CQZ}cm z*o!&86Z-+9oI*?O3^Y&TA8sCJUiQ-Mu=1j$IcPwc06XgW#!{2Fd-|VT<(?rKqh`y~ zx~$>GjPpYNky{b3^u6h{lFZLPu_QJ$Y^FTWzf+-qfH?mFSF;Gf;WX7dEPuUCy}1qH z@b6GsWtX(%w!()4TJAxu0{|l-|J4tkKpn|impWnC7`vX`2gexPezPm6PyzrWAuo{r z2($e6n&SpN5^juADo&KRw(pOf+EVTWBXVp1g0(}yPbB|^*y*+cR4RadmhXH32co#; z%kUxQ2X^759xy2*rhy18i_*H~17jQ_mxpii~W(=yXd_0ug)jV;YG^{rzw&8>CK&61OoEz=G4 zOm)o+(^Hd8nHU!md*`}_#+G`P40mX_wJ%dQsJvr8+tXozeh?Di{eQ;?{Scj8H>x0JY`6~Lw7}MIFuAy7Nd^I;Bf*QRfczVV z@c)hvii4J1=}YvZEgIR~3aK5D(T5Yb6udY3e)LflG@7xU($Gcq1t_GM=C=vpl$J$h z`XCpy zDivnPr0WZ(TT#OBP4f)SG7#Bk4?;)#!SyE5sCD`OBK$$Z(Larwl(0mt7H$Ws27;13 zM5x5XK~r4bmlk+HxHrPoeM=K$2=UAkqgcoDdV6+zdM&G1C@gu*QaqWmWmD%J#l=;g8*?m78|NS*z#1avVp0>r(pI#_ZzT zJrYF)lPe9>v_ci)NUh3i>#$bdwSL18vrkCYLZC}WRl?j=UgQLtlLvf z+LWGtcrpc&Re|ohH#N;wp0Q9-SK29!7?CCt$XU_PsF-{__LoZT&2BT~5_4MneFC6fuLQv-_Ul#MPhuhdyJJSP=5GE?1@@Z~u@1Cgk+ zlZp5pQ&Zqc2EIM7z_=OQ`p0s7nxo7V+aj3JO2U~!ae2iJZCIV*Yz!wZRJAutWPKQ4 zRRt<*3y#L$c%;jSK3(ZkVA0AY@6e10-*bw?^+8^K+XcOLLS>x+*K%RDdK-sXG(~h< zFsm5zfw>oLntb*OOQ#c6QWSaXbtvUv5`iC`EDz8cD+r#A_sOP)^gO??ntxHWOP=$ePU)Eo$0?2#={Pai9 z{?)udxA>MkU1J=EyqaabExlk!V}>P9uQghu6eV*NkropLr<4*JKT$i7uY96*vZz>o zdZfYB6507?4MW4+Vi+{fu)33$RIlKB`q_+z!~D^DBrh3;Zrb{!@W%3Dhn%CE%bLi? z$fMe$2B~}uW6Yu_m1WE<0R*!yR)y!6Fh)*~CcHVFK>ZGTDt!(-e|zad_qBAb@&AeE#Lr9*!iyt=16aapuUq<-xq8AygCUFj;HoATiUK&a-4lxXi7< zuz6VxCmmsw+*ahooeY;zS1KQcHUtgrPCrXt9%`1ca$xODkEHpIzkR}DX>x*dej}sl zBGh^n{SX5+djW!u3nDtyXK0#J*@d{FFG&T!NyY=`2Unpm{o zTWs#NvbiZ#bjraK>l${?Q(xAlgg)_4Zj6b>4*?{)W@I6I(r4lOo?|UE>q-pQ)*uTO zPduhop<;)7G*FrF95v^%EqA1rD@8X>N<&MAFhilI41JP&9^4x%d^c5!TCSZC*$lg-5Lh3*?-mhRgX@ais>RBjk`ftIGyF zC|DsJ9XB{WCWiQBkC%V5tvf_O7&s1|2(`h~>V?Ua&$-&ztw^WNe2r>PEd9|sz93j) z0JoD5?sl``LMg>D&t{a?%u-!!u(~qJiw)F?-#xx3lT9)ZJ&8-)^tuRIs{x_ z@TGL7Q!KkEHq4%xoKx{?1DsxYj_;4Qbuap_ecV`TbuKQ)Jh^%yo3#?-MBj zS|x<{$^PTKCp5yJ0&?O2pz1^5IH7RYW%p&2n(7id%a3S~sc# z-31RB^p>ky{4<`uzFHxc*b=mVVz_0k1ei5BL+AmC_Ktq?(RAu>W zL6Dg0F<6TJHp$UAKrzUmprd$>(L^iK)89x{5LT2YgSY7Yrx#`mS-H>X)&p`~uxw+_ zXgwjm88|5voqEax&S#xLwVzT#5Z$g2!_my5y^me4xL@b`WPyC#Xj z;Q8LcW5hQ0YxS&hhRupF1g&=L==nT-Qt~`WDx5<0T6Pf0SInMXzjL-|7OFN?r>uvf zC7mp&7~n%I^opbeYPo($=CRo_?S1Ei%eC{bnL5tqh=h~$9<;60$F^s9wC#plCS0~Rs@I+cY2)BAaM|i8}oR^WE)PH0Ek#SY(!C1Maj=J}V?>Wcjo*6lC zqq`-cj*mp@`fTcWz}zGxv=v)(+Wepothz6t0&`u(U#N?nzR?{$%!KwWbx4 z9I--fsM;uHu7!{u8S{<(CdIrH9J}+*>26=Pp67g~@yq(*J5OL{kYv-ihf=)@qBoIrbeF4IQ-*kP_w4`AjQAN(+>RqDj(R*rQ9+6 zX>Z-QK{^`maRaUps z(OQDtUgU$g6|(B^<=V#huI{0%57C<`MyQrdSMtEfG69qDO=#Yq6|2aG`~xIAQVZ@3 zbkpp=^(+s2wY(m|GuP$2bL#JQ`{}58A)AFw_CIm)%rTN+35-sh@G*^*iFDL&mve(9 z__Qr2$A1z~LE^X!7r=mg_&$pD%w#YwzQ?SXR5K*$1|hfQMm;UpI43En1SSlipF`s5iFQ(n$@d6(|g(o%T8 zo6>_*)kfc?fI-sVXQg+5Ltj9OP=yb+r5z{2 z0R;|GzJ)DtQlb3Ju=Qz>++^dhlJAx6uhXfYhtC443JKe^(k)w=o%d0o;0w}R(asiL zyId&VHmRhf7HB7SH_)~>K^Oz~H4bzJ<5+mET|P@zV|9ehYw7a{wJFYvdYR??T$v2} zbwmfX1>JIB0%73(ngg3#r9b&G-Rs!cuwDzb!QDhT2vt<*qMsOiucF$)Mw*gq6yUSe zCtm7%Ddf0@NI`4Akg~YUJL|h*z&`hsc3hdW5a+kd;fd70=lfnQyIUJ)FYlM1j6vKU z*czUe9;_6RD!;oLp@-NSOlE3)JhkXlv>OY@jlwIb%%0H|@*(AH++KLQE1g8Ig!cUjmw zvl_f4cx6YAODT2bT(e*!>c)<|W<7_TOZp98Uhs<+h=?Qjm^b0k7lvwSPt>qUjt@;~ zoI%QUt6c8vRAB^F)Ht*y$41qMz$Q|oY9$j?TUT)F2~erIL9->yuO4%{Kj`AllY1<) zm0Na3XJtiS-3=StoK`1O>aB+w)IxVXbRb|%MW z%9IEe^h4S_yv3*qBENf`yGkL}F&{*)9f-$!K90zPJA|g3|CVO-JNFu|-FKijUb_83 z`b!K+uSd^C%A+#!Q0NPODTu4$VX#6Pk>y7c&}SDAc^}#D!2U5g#b2_??mEYWbRwI8eBQ8y zm?bfuf)NB}ZTDxNi{BTZ`G9a!%K*5}%2;MRi}bduNm3X0$$>#Jcc#cCtdhD=yP{)z z2hmm!!pm@~ClzwOwR3{slJO;1$s=%FwK#%{*Bu)o+O_E7@fu9fdGF07qU%DH+pJX^ z0&@#FFG7@R2|(Ls^_2*?Lp76WE{CqAYve^z2s1TxD~rLf4&}(T$M~EjGV42P5~1ws zSe+-#-a*2GzIR!3u~tWDRrIEVS3@Kl37q*+Q3OHdM@eAg3>8kh@5-0OlcNGHJ{FMQ{d66DSZVuS5~J{Uz}4H z_4sk@F5|ntkIXc1a3)H3;Y!q+ul(d|_iYmrU96j{>5UfujOwSh@Pd7mJDP-_Bzw%) zGTbRkB*I-!ep{Cmhw5YPOV*ks17lVQg0Nrf?J47KiXyEE4VSVsz18JQ4O4JD=aYjN zX3CRW39@tK+l10%J2YmktK_I?hrxAf@Rtf=54X#Pu2o#7r}HLDr%eBcwRdU`tqa>V zW81c!72CFL+qP}ncCuo7#kOtRo%h=(dv|r8bal;tFsnw@7|(Ox*JbD0PRz=-1c6s| z-iQTAq*|y}lky_YjX~EnnMhhgx_>S77mNZ0=_eQN+~jt3qDaM7Mv84R_P=-%Oa;LOVgy)+>yPsEFQeZHbJb;{?*qJo9^a9neE)t@DO?5StZa&lng}v z59mg#xN)Kq^I738hU8;A6NESNJ7~l%f&1;AR;Oiod3GcC7yJ6`A)?K=2m%njQ)JA?m6MJlJJgw z+ML8fGCw@8QZwf3e|6=$VFws~D_nASp2h!uVo8H3FaR0?4!DyDki=qzk~JtW{EsjI z(XIPb%06VvCLj@iB>)Th3^gf#k7Mqdt-E0ZDR&&F1L5YqVvQXkM`047O`*z0I3slb zjAlcPG~_$Wkh%$|3usAgCU&M1414sHpg!|CX`4zrv5W*S_*B*UT&I@aJFo*R%xlV^ zqSqIR6c-ESF@3iR%9bFrr6cirY7-`_oj{wvcIDdLgLZl;o&A3wgbm_`owgP}^TFGv zcUIlF+QE1+@324s(DUH-8W;bH?4z2q^uYmu;{h!*|65ro|0ZcwVYVJn-SC@X(iG0C zpbQ{_F_99jb1~?GDWe1WR@iKobkv%S$9Pj+oJsI!hz0#)2$PcH4IG0(0!ou;raUm5 zAVxUGkRXsq0F!VGeYgu(U1yu0VXTdu>>1{ZMSQS$j)$KDY=pH1i1{Ezod!j6t47HXL*3el+Rc4XL1S zC-ev@Gi`y@oCNZ%S}=6IkL+-OF(`O^(u5T_(F{vdBZ+J;8;?|P(o6WDp+)X;QZ=#h zT_UMkLa)#x-Dxau^l*T8#(F*q+h`n!&BYsj zI$qXcB>ts_{ehiC0TxhW%9HckWkOw+J2RC4ujp#5wd4qR@fap!+j^SNqIg}SI5O(G`D!X6TXfA1l8+)) zQOR@j(4DO|=!+}%$AwhFPA7vUy}N~CD!K!K9t+E9xgO}AFBao%f45!UNXd;CtA+3E zV1o406afULOhWEK6H};nBwu8@pd-i4rI@htb*ezz?v`>?&XFh0gVoE9%+jT|A;#8_ zY|KPy!ho=t@2n~Umnp(poPH?|BJ(7tr=0ru!}1RI0*xCQiahPT(o>qU6SsDL zbTX(mER=E5LphP;wncRAfugm677_*!1^&EOZs!%}kROqr&H06B_}2mEaO%$l zV|sdNd7i+JZDt-Z*0y=3-}Ie&KIRZ|de4z|50roEO;X=CNZ5p7tnmxLFMEkCLm%kB zlcj$R`1&7;;(r6hBo*NGdt|x1$asnzDN`y*Nyn2F>0%7AtO|dD3345%J zNrqru#W@5-hXV*u#-Fz3y==b5SzM@&I z5+@T6o#ZMe*D8+oMbd!H+vCp?C4wv3TIyfRekLZc4pVr^RXHBM%>%WfM?B+A@zza3 z-}>nL?sI0yB2XxX;w$>RH)7E7B58!7FivE_j5ye%nAjodnaK9u2AA6MAc5`cA#3xg ztfFVFn5zTjS!+C;ftvIt6mvLc!TKfhtnK~jh zyn{oVe#)m|%}4SCSARsI4Wd|wSN>A5TsyV+t$XWgOg!eUiQ11!))BSr>om|C+VQe* zee|HJ;wf~tQWB)!bT?J8?caGwpl!j+CGwq?BEZHFBUs|oA@*Ahgc8a~5XBT%xtcp<56%r`WTWKa1p;2n}YwqhIltraQM3iPv^a&xS zwTZyQq2z~DDfXH=-Gjfhy{3Qfr<5*wyB}!A*y?OVwi50%a6-xunJQLME?=3(y?l0h z8+jM>#bVYqcrUA{FOE=?4sOxVD%!sef~J-4^x`m8l$Ciw!QMPaOdJ^>Yr1UknX$_> z^*HXPY#~7lGIR<$UjrQ}v}RZca(MNQ+Bp!v>NdUH`iu>+)3|+#HNEgr-Y!`Dd;fN0 zgHijb8<8Jv{%o`AS1y2z=N2HgmGT#xP3rmwDS3_~jZ49qc%1JSgZjkgCSa(tkLX|Y zOBce8ostAnzzF5QDhGGS{@fUP^WH+{$A=-Xxj)nA4Ys_ zCxOw(m;__$O+|okId7x@F&F;U06F6QtMl3ooFPKETY%L_QJgrJ1EMRwm}oKCle6WM z!q)a@It;2m(ih{BR`{J*W9V9qN}Nl4&U%_3Qom|2{KIse#1eFXpNTT@p13guQfo_U z6UyIaxUKvfQ1=AIo07?~(Ly;SoQu;;xt)>adEp1}suX)5AF1bw?zUWIsVQ5w)a1Z_ zywUm!0Q~f;o$jbxQtD*@)nqzy3;5-@l&EaQZV02Ob`TX@+fppe3s$5miBNS`{jzlz zB@+-V3p%U$4VP5Ky+p{K+3_rYwVn<{QsLoZ<&)U{@^5LD@pUAhXi?AB+AG!B`k| zP$4+$0cLPi58bfB>l378X{hueZ9x(wTYsRy^f5$uGrpE-)@N0s08+?$ngyzbKn*yJ zSm;c@3@4+2xc0xM&kGYfthH@2@NJ-A0f_>&ENKFO#5MQUEjQiE>8`uE%p7FY%C&?h zf`b2=gi$FA{TbTmr_xaegT1y5gbiw2HVN?A5uS^@A>4qdlbtUsr%*M&p2K6};}KJ_ z?KaRdAnLyZ-HqQChyG5CbdB>YN`u|Wrl~SOoBW{~&f)|vVQUyqnr*s7EbF$e7CuFY zy%s8cQ@@2QXIw$1r9o{6&_lWioZnUl`OFUs2z|?S8w}gpBEITy^JF5bQS_E=6RKg# z_`P!gQ}pt^Y*W|QFvAFwLe-i`HzjM;egwk@_2-KtcTmf**6I!U8F`q#{{`Cp=<#}TK2WXlrRlZR zp|NYN(^c;gg$Yw>eAY>O?tET4;~M%9BHa-UlmzceJ7P~-z>;SS`4T~C-dmKF0Xb*X zZ{Pcu#>s#W4yTCr3Jn>qjI-rnIeNuhf*LLi8ZCM~IEbNgiXfESsv0sV?^w*h$MO&d zouz~iN6H!;qJz|dNVw8BK<{XTE<)E&`6hfOrcg+xoO3J`TC#tuSS$A9fRbG8^3E+w zx~ipr50HYxBo)oVh6!H{DDo$FrK54-b%_AYDewE^62>WkAR|PB-P}|MRJHgJj{*Jl z`Bmqq)X%33X=NOvp$Q3oP*N8I?G>YeyMY(yzyJ!P5yf=;);~$29b&MiCNnA?3=Gbp zKA8lSD_q_1H9xA9G`<5Hfm1Pa&GXnrtpQ*_qeeivhzROIlU~hI(Dm$R_G7XCsXs+k zWFYF^EijV3$=C~7^eMl3fP0q^vcZxJRjk`oXwlZj-uGz5IRrjAdWd30wmA0%L5P^; zqx&k)hRl3yBsDH8%jD#V?}dR23Qr`8?08ZcP53EM4Y?*bTvXegw}6_x3dlv%l#>Y=-@@LK;d2znm3I{Qg!;OUaLkXxI(3c z-LF|~7qny~3Bo04hmv?Cy}^>*TXKzA&H`!L)$IQMZJBT0*4^hCFrMvyzqXX4WCAzc z*J+-c%UdNBZM)wCh$-|x|5B_@z~R^bC-9Uk0sk8q4F0{gv=a)-VD3iC+ja|R-#x;0nf5o&@YEaK6%U5Lt3@iWDT{J;^oh~a+>-0zLvBEv4~HK2 zJ>)FvABM)QKd4Loqxdm`Q!!8c(Wa3DnbK-5UdF(NZv~a6!dnp_SSi*@04<~)soULjJYG}Z+d`fR zfa-;ijaFIP2U3=k61OIhKw`pUhX0{cJ!Lhc$x&UiP-Gir;4fCBsR4FRHC4->CawcT0y&-+K{Sgs04;T5)^VK!tE2R-~)uHrw*%eP&!+vo2rgUQH-G`ikq@M{g zvrkQ{8sjy~o_)qTtplyMq|Ivl2ZOeWoase;r&>*!%-npDUnlKCl}uraye=33PJ?CT z!9g1IG5aF0SHDEy42B8m+3P;@i5+Wi!p}>EpyuNxt0R5Gk!;QRM3_7`1SB3oH{r+s z{JZ#c>!o$R3)PmeSk1lm-CKW!m~%AB)_|V0u8mtRYHI&$-C6IX7AVp z!Et5moy}A8g2!bEwXJ8tC2U6&nd)iY4)@9PJ`#K;tpNwS7HN*KIHE zUOy4#voi_ut3!iS&GGh0Y^e&E6)p{(;?IxkFM>Y!HYU^koypUl|JDw3t{|8n;S5ooU`%a~(%7oQk0#%b~2K{kO z`1vnEa%9m-0a2(7Ay<-UVsOB#W&0GXp=0`5K!I0L(R@dkh+42jWMT?ZVcwO815C(? z&jHV8K7l7B2*)iu{tx;NlN^%sWXbYHsO`fU{J|rv>|I@FrRCvZZDp4eD=G*O%>+hB z;UoVH&*hH@)NZVD21|z=SgpnPX@Sm9B&w}y3B$Y`Qs=9(*}p>mN7`Ut8WJ-7{9e=mC*hJm@N*n zsEqv=81jRGwzG)xHxXef_(XemSLoYGZ@I^7rA(&+x1L#P1IAvj(=5daa#VEb^+=46 z9nTZk?;f zg4m^rDeQ*Yy22FhXsP@Y8n;%|E#}Ys4P?ITBST$HO4(k#j*BhIOK!~}WudLrKQ<+m zQoJiweDBpFO%3z#LRI$T=2Ic!G%H@aNsoI4N*$ZvfG2oVbX6Ks?FC2M z_b*O+gmTG6^$lL+&WXF5otbh+M+eEPh;w@l>QXyVe+0Fg@rMkW1)1T|Enwm<)td*t zG3CuRF(N7L-i6q58L+bqU$uiYdZEfF<;_{5H*tU!*IKZA60lF|C+s8COg|Z1xHnru zYzk9+%HEKKsYfq|B@eo_EKb3}eAxrp^?yu7TjYLHFfNmy=>GyP1~3ZwESt#1`}Dx? zu`xVpXdYpU>zThx{6y33FPOsmJeP?H7Z6C^NQWflk^ z0;MDM@RO8X?NXXL%g*6WmU-N;AOJx_BNI{OCoy&Tkx-05pHrqE0jN0-fVZ*>5^Zm|cJTV_Hv6Tce0 zhCbcCH(4tzea3b^lk1D)Q1#pS8C7Ma0&6dT2AFVK zy5BwdxkJh4-&fD5sM&DVV?K4!3~la77PJMv1G>MQDLX)Hx6`(mQb%v%$c#-=Ou z@dybX7)0YS1(L-*Xl-jfW<&>RO?1O}zMD8{4gQqmjL|@}iT4u^mSMrD1`q za#sB7=%JQt3!F72f zFW31DO?URf9KUBNhin}~I|7@;h|Bi9>180zN3w7gN@?C~YLo98JQS$a3XY>uveX5` zI&Hgt`B1M{ZtPSCiaYkARF<%AKTb4aF6krY226R=dA0=Bgk3k`p%6>|^!tW7L%)Q@yeY z1occ`s(TN1p3w`WD6?Cb`oxMuQ%mu7>_bwrDOIUu+iXRV8Vdi37)n9Xu$>M5kpOK@ z;E5#?u|^XOBY283D>Y0D72{Mqb30Y*7vNqFG3|0q?CBZTU^0&Wa0;|QH8}j~SWH?c zFsInw`0X9{gXmkZIM&>~VGXnE)T%oLzp_UvGXyVImmsMzyH$sDi%U|R97GwsEw=Rt@Grlgkh>j zMX_(G=B(m#J@hAw@@OgB8Bp*4fHMu64|+_pS+1-}8#iP;mwVrImYley`}?H-vifeP zg-@qn4&53SS{!kGTAu9;PwsNU@=Z}l$jrz~%LF&O))!lJD)OzP^hIwEPr5{S$km2= z0RWEbo%xS}{|8Xa3NZFl4pa^lUykDUO;B+|9FBSP!PS$H7*?So1WfTC5%>Rjq({+1 zh3RtymJj(0SwH!$e+@#FPEDlOw52T&Zrl3G?a}M z6qK|Sko6@Ux*jt#c4Q;}m&y1}(HGDt=$inC{)g{>h}Sccggi|oMa&X%0x~lFrN!mU zDy=k(Wz0*m1*M|>WVDQB7-aPxl{oas0MQF7cY756*1tM{#9k{D0hG~pAz~N-9_G;s z9Bu@l{cDy0;0Op!kokz3kj~bJXVZU|)0}*^I$67Z1ky$Zi2wKyR(tye>l^B4iGG4g zV%R&A4yP+jdv5NwUmi?+x!-OtFIQOHdYagjPb0nHH=VsFc<}K5HeD3$T|YqVua?uCSvxXriP}M3SRYW<#r_1j5*Yut=2CNjkMA#3^yx_wZ}L6s%sE#Q+Qh` zWQmcaRpzByk4s>11qlH+qQDwA^24&Q!60cEL@-AXD7d@GNl7AYC1Wbxw;kRv28aNo zJS;*1cY?~WY=nid_+qZyax-bC##`ES_G8!NSj=NqqSUf4=V$y492fvLB2*I(&>WsH zvCo05=nmLr3(UNWo(j-gT@KH@#lf-w+))WM+jQqB`D=A&;mSmpWRbU>p482RIFd$zul+dS%ARrEjrCg+j6t^vb; z>1bO0e*^!cA)mxd7~yC)UQ^w8U~WHb-?tljCEpJ5Z~&}P!s%IuVE(q@E!Pa%3q&m+ zBq;I707%q8I@;;n0h<;3WrO4qx*kv$$iaCiwjpIK1*^d$z%NTIAWF16&|VbW^IxAd z@d`*u&xbFjucs%kwWYHwX|kJ*!`enT>69iCwP@1nZ}11+9&`@rKMA4(*NWmI!n(#A z%kzCiN=7V?1j~ld_$4X{sJ0tC&E#dO#aP?)L)hmO8UF^xx{HB||MUyBUrTf=zE1*A?o;Lvh z{f)D7Oiu54)yJ`6%EU(W&$JUJWzt`=Uua$d1)%==VaDFGT?UavH9}U^twIu`7rE&` zLlzICy+KR%$GZ-r3qQLiD;LLDqZ^V?(`A7GEQjF-Gyc1FDg6(M=l6FywIV&sc>a=j zhW%q;SHV8O2J7ui!|LMn3O5}kw>lPST`DR^@Cf6>8z}nXi%-L&2E*eF0TGMEABcW; z!uC8^TXDg5 zPgGLEo&bCwcN$L9_!c-Pt9A^2)giwR7mw5i~Gog&9o{XNY?ZQ87**su(texhCY{QQ?wZH`!iS$Pt*S*4)jf4>j*ku_# zj~Ck>`ufePFunh(?ZU`lMd^K1UoI`_V81hR?V*7(mx^-Z2K@acKf|+l)Pv_>vJIta zvm2-Cp!EFKgx$3GBA*(zvkQ48K~FMa*TIvDBkGZMkgDCE!i745mT6ct)J}yBaba4X zkzu4K=2YTSr%(}>;e1?Z?ubX73a*V6d2DnlJI5)Q+Sx@P=4|LrMCN$hr%b?d%B7_l z`Qb=T{z)*qc$U7KDBREsmL2D=b&UVDkada1*@^X%ikq2!&^BYQF2`E|F(2TQ8BG33Ip8i++#@9 zokd($hG~^h9JiS`D3Liz!Tew`j9KqxHVf$JN~t`;yqC?vdGLImi?*cxS;Cl{SO?8# z`P2;H*A1ftGC&TZvXi`|S2@(~{r?HqIGNLIex}mE3dgpDsP^EX64XoIJ{M3PN`UIP9R@BtP>e*NO^sI z4FXRBa=rI4;^o$b?-uQLt3A~n%y(@b4n8YQoyWQN;w;1$*T(oS+$t?4Wl7`ld5PeR$A$FQS9DQRoDJL#B0-oc8qt0(^C$zox;ud4bp9D*IK+7O=9Bifze5KH;-XHQoAbui4BL7w< zM~N(k(psKgMqesdcK#_!4bl}vXjo9`GD}mJaDkK4dmf+Pw~DH30RG?p8F3KWk2gxBvDiWa^&^7XAt*J$_C!}z^964heOx8M?FkPc|h&pbzC$| z2NDrrEO@ZqjS-U?H0G4jY1z(qF?pyiQ<*13u-5^(FUT&Ni_Xd~LL(b8}pa;ROvg>cXkAnl_3iCZSPeIW) zt;2K)v{G|{%ej$XJIi;IWNV6Q+z+ca6HD z{6`T$3;bSYt8ceENN6o2D-vqGT!t>uxXFSmOGcPPC18xax-k(QLZRX+R@y-#0&qRF zASvy>ciC_Axm;d;@@Pq>Dz`Z=JsYQnAt9G)>B6{&XGBOBZynQtrwikUI$I)}!@T*_ z#@DKM$k5jMPf{6wCT{rOZV_1_cJ?kHM^0WOhAinzpHT2hZE00>1_&UiwoJXA zt1%B;s`G|4X_u5e*4oo6S}5cF#ldD~-l&mg^V%xi=Dt{qr2JKZs;>9<_qEsi4_l;` zTc3Ne&-bp4AjYp5G1Tx=kRpHk&(Aj|DyqtPj5+xh%Pn?O_N!HX0g)%PThGb_a@wXJ zMpHYxo1w+UplY|c8?Owazf<@E!!?(etHrnJFwJ55KXmkd(=&PDqJ+%6-mf1*qpPY% zDy9EgnPJmYR_AXY)-}9felDhz38vg-HW>XMf$!BgPfc^$Em#6|7f&9O3L!|SYU=D1 zni8ZYi_&e~Tk}+Zjs=#im7Se^VYNiD*dpXTl#}-aufu=)2MLJ8ge)&3**YQu4vg`+ z@O&FH+0Tm!ew_L9(FM+=O=3(hjXgvs>(mB6N#2d z=L1L%{HZ4}(xxLrCglAZxKGde$62n2)>7F_@n6qPOIyw^EKSd2zdDjWf0pPN+=)Q> zFj%0zdONxOpzONXsdafVB;g$Dh?{n&?p>)DMu0yTAnkeqocafQ5i>J>RAa?x`nqg8 z&fO_zLF$iG#7a1MJwl4~Rg@cf!F?ZXs|y6 zo}P}jqELJg!9(sBjUj`LINSE*B(D0~_4X-zWFSPo=&st;i3SFz%<-&kZ7rK1LZ{6* zo2Psw!&Dv_)u5s#)9DRyY15i${-X#@Uz8DVhpssD_47W!)1S2*8 z7ngK@Kq4K%34>gV)BU*NcLadvN&p*A)!`CM`~ob5*bIX_y|e_rG8i#+Rz45;)0QDo zilTLuO!e+^$t_mru_`Z=kAh+TrN9tiyD{!#c(9^Ngd`y(Ex;spu>WyueHEtt#vqF7 zieOq(+?>mW_o-^M5R28ER>l-33ggJFCLk#U+bbM^!U)Q^Icr0d6v;*UEw&O&G8Sfs z9`W}|hX!dR)?YuPDmUli2L~P$bHv7jX@A+jTc6$;=x%WrTW{rpKlk{VIdu-XO#|5T z0-xO(0@dGFpX=J`i3c|Qyo1tGZ;av(GiyQBa?Mu)q|rhQ?S3Wk7Wm|zzK8AO+Yn)q zkuei?f| z92m2G&uS<}T5}g{%R5>b#RGFcNTt9efxCfqqA0!$lj9+7li6_L5!@+dTPG^9(r2fn zbj*h_cr7eO!!wx5i;$FBv7FDF-PL;o-)c>r7mSPcg& zBJtf)eUCx2}S~XIr@TN!v9<`@O9*TEjCU5 zoB%_^)kiLXJ#B365E^(|^gt%GMgMuIwf4IW&(tg!XiK5%Qjo#o*~2!o938qqcv07q zx-eD_c=Hrk$UX)Hc#xBuZt?_+7=*{fmo58SM>2y{(Qymy`~qjK^Z@C6z?T(6yEu>( zI+9vJ`)HAcH$x%hT2>!birH_KmtB;!%xwwuE*wY{59v3+p(4X{p&P4RIlH|Hu>lG) zwJ8FWi@Vk4QbV-^Gn=pjNJ+e0dKxFOA>NkV$&3 zPz_HB3YKXK=yd}OkJ~j9e8!GN=Jq!SDB)?Ks_P>Q25F>+E&*4n#`i$Rb~#>bnHe5s zAH(;-I$KU|nUpx30}2YNlpoj)z>2V}ERRnbqL0dl8R#N9VW@30jl_n2O~Kz9mSVo8C)KAwZ9)&T6av|{IGVJLVs zN;%@dM^!7R{=CY);zEE-qA^=P4Dco^5|}4G+#<=$bd7}al2Jnt)*JEsQNJW!m$#6#rK0QX zmX-$)o7$>ESev?~ptRJqR25x8Tu=}Qf;8}}>TCqRB8Pc(2s%|4lspMUX?F9P?ZQg7 zfJG2XuA`m{H4^D|QHR>>q=7WV#sVf8s@5{UEp%Rby0Xw#k-GT8(RsDi2| z@6sxjLaW!j?r-JAO~>{UE6)n$pAgLVI(~*^qk29pcf3ramaNU5EXhrk=O=P6`e?*< zV*$-}H^Cdc0xQ1N(|{ISJp=mGLIn zINykSS82(Zbrav884ptxBJLpB+1dI46ZYNoj-~}u7VWSozsMsl4i3nB0(Yqz{)mpOM zZZNDz>``t9KEVlZ+s2Wt60ZG+r2$qK-Jdj=eLK&*S&BQvIp40L>5P^M(%XMOug6me z@OXQzrRxOd!D~t`A`MN)^8{yKAO-!EDlg-2h^eSyR$g@KIL0Q&!2{px+p-RL-lf;D z)!y{FUAJj0!2ZEWNljH%RcIMpU;vN|B#wU?djVuqD>EWetJ2M!VP>I1J*(;9o+?+_K?CjX6Kgml{V^*1+gP&g<5f$Bj1gT#QIa_>an z7|ZtuM=#?dp`A_bb^2VFOqPF#vB7q0gv*rrnF(Oxr+ruMJDk5fwtA8-h9O{m0~<) zq?@PTY%$%kYmoN(B-L0Vid;hig*z6AqfniV`FmQPK9}A2cP3hl5*)n}E7xCfIirV} zoB=i$cF9(G#S!@~bJiABgw0}3&+Q)|;%oiTVjuC?)^*XqaMk5mV^NKJeL%l~A>lg9wAyH)%cg%>_maT6!G(*Tn(}Qd?-4^?-r+#aU`?7(&8= zjKPT;-DgTPmZs6|L}o-kE{PI!*H9Wxk2(O+uZxvBBmAt13o+qK9zQE38P>)Mx)Ew7 zmOf!O^i--?TQ`Hkr%%wLsCtAs1g%_y3DyB{5oqV>$yE_tY88rKaa~>E6UmIquu62j zTlD^qVov8AX0{1Nk~>mG=JW^)tb0W|$4iQiwQ8};ghVm- z`NM0Z6{m$;)x@@5n+RR^I&JUH)%Cu%_9wtyClCFnm6u^*>k_}HAER{^AHUXoh9o#s z1mrxp^pzI|wrS{N-XPHvb$NLDD63%}zJ+-}RFoJffXz5<&{UBr95uXV`y*|R0Bd-5 zHrG}&@I;qxQcCjr7O4egWv>`OAgAYvhyM`p_HX4@+}5R}IE;uOp99XM2dauq;O0zR z*N((OFUQ0Q8(2CS#d-MtU^K4&pLo!U(L_#34HP_B4oRiy6`zJi&bLuiZ(=Yo&g5T% z?UQng4KHGWe!h*vb0E)+nEd>IFy?$P^6WZmwg~$J^6PTnb2P43_BCPC@er<&vG|lt zMQ~}L<^`OY=@Dq^DV8Dsy5YJw%z{jRmayLpW{Y2yYIZn=Abcc10VLW=o-SB_TIL!e z@C7fPl60*-FZ4LbY?l#Jl1Mo(a;H=t!umErPn)u%pz%dxmUgia9^{aFc>yxbo`$mM z{28;J_jY-6QIIM5sf^5Ddk9iL_W`ehk>R!YqK-gNQf@rCDPFRxx+Y6m2JeylwiHrA|F(8VfeIWq`H9lmx;{b z(b29URF@F0F`<3LwMR_U!5Vz!2A(2z8aOyq&ADf#{=m$RfPx7dN%l8*`jgC+W>){Y z2!0xUto5kb@zVl)fS*ENIk~z{^SFPF^Y8@cU+M(|6Gna;JiB@$FTQF3hk$Qg(mB$9 za&o=)T_%Yjn}o%1Ue3|8>r?4_{VLNUGXE4(XXdmV#{EW>$3z`&HGRxpJ^K%Qg~3Y{ z7EdNouY6aPNwR`5K@yC<+XNx`>0R9t9^Ww{(v;@b7fgBczk+#` zG2d-<-*n@wJD6iR9FN>QJT7Q6lCm+0u z`qI0vj}^r8!E+UI$~i%&>kHEUrW8sfyc`*gF|#55 z-N|uDU09O**QsEpFdBi^`JMUudv=KTzV#nVmU~k%0Z&@leF}1N@>MLPct^eX^q17< zJS$TKeSV~O&4x{D6V4Ke_gi3O-;o~OHjX1clR9ic#kf|WI3gnAEjZIxoS#cx@GV`9 z`o>18%8GtgovLcEv(&DYh#25HwxBS|X>85$i7<$PW9;k}uhSe>0Fjq~kb6Ftpdf*6 z4am&oLu1_;U>&18nM$q4dmU9icoY~Mn1269_-R~$BU$UCHK3K0rf1sI2@ewp3M*W+ z85g~e2%uhAWr9=hej&;3i7YNH$wU;Vp09}L zUCKeLKPzlUF{|Y3y?h=t8Ju1DL0Z%LgV?r<0I@$CHJa}$v;@8sr^3x@T_b_ox8SPo zIQSm0-pu+-q1Y}_^hq1cG0-13h(S);M6Fp$&GN=_K$!Ks?$j=DZB*f|6O0}YdV0+N z^;#h*&Xxe7SzJ5gRvW`8XI6ro9~X94Fs;3plnkV%raqFODbnalb+Ue7LU4&0zLdxJObp~8TEREy2+>q}uOXPzN>w8bHW2;9ux z)-{B+0NTFfMpsVhx*{Dy1Ca0p1(T~+33qZLTzPpgP@n8M6sVcLpDifi62n)9ipaee zpHR(&T&yX<>ZC}%qx+p6(kSetiSvCkIc(s4`k@F4X>+r*O#*nSX75C=tjRzx@M*jj zG|k)VEqD>@(h5x&EGY2!x%V((jgzn-4twf_F23ujY5wrBbr8iUi)v@dL6YHZs~MH$ zCQ?~B{+$)4*yPJnhx&>K?4Tz~2-#UV_{VE6|DDI`9xsMwY)CrS|JDY@5d-`_Al+fe z4gWjJq_}$)R~eoRj>!9b@M!fMqg(KJ?e~a!crKd}G0iDQ3Y2Ud5bag8qAMhyA~WRv z1m#(~?behO8TfwdGJrO7QTbZLJwFL_S*&@K7$Cy^+!HX~RPj&FVSICb=pQMY3f%`3 zEMQySpp+0})JlR)ywa-~@bcP{4Py%F=5rdJh1_qu&*O7K@X9tj%iS z$4z=(Q-9QoCN`MP1agEC*0oyrK3yol8-7FK*lro2f2?PVkPHMLjw$sLgY&{Xw8&@B zW=D})G`hqFH*rqRhs>A+PqBj?Ooy=r=?3;eb+fPkkyPIT!slXwxx}ZHE{P?6PcN{H zga=%4fy*M{KDxB$7qVEI4$Bc=zr@P?@`HeI)$d53 zjMZv0QMHd$hkvW5(Q@GwdCfDNF%8VfOCQhY|IUKkJ(opS6(4gH;&Q;~@b=84L56Jm zxgf3*JcT>Ov5mu;Va1qOYAgrKUnJ0AVJ_cU>zFhyS7N-a8s2_WU>^EK|L+BdVxz z`-3l|j@bqvJ)2WZmCWh0Q}Km++Frd#AGT-To-Ph)2&W#bMnqqhN2|sD~VDI76Hb;Ruck0n-e`$MG-qTcA<6`YXF|NZaDHuYwBl6*O&zk8W zB{+l+^s4cs8J+&BOw7A&>(}(if6xoMXdw))clZWb@E9#Ntk?MQF#{@cR8X?|#CDP? zJX8lz6e>iNd6#%P-|6W?qD9Ec2(9QBxy2&0EE?(et7qDF+yi*KH$d&&4Cxc;eONFA zoV?`9%FGx?W`a%}FZ1}uZuXkBQT$~%=6fsniBv~~GRZy0G)|+N znTz}}{eca8 zzu#itUX6~o_ohN>g4q=sSvbG(#2nIqOv5U7 z8qx^mLqTK;pF%dqq({CRwvIh+l*)dP{aG?V9C(re^5#o#^PBAI$KNO}I-cU+WkU#gSR|54UB; znoVr)4njj~K$v|wgI}i}kcrdH%!~VT?+%0N@4I~~kxQJ9l)qsoew5?<@ayExlI;k1 zh&neV=dQDV+g&bgCa1^2h9Z~O=%;dfaOkq%tc5s^K)`aySsnXHvZl6Q1b#Lo$R{|- z>$pSlVuS;GcfuDIxT!mv{G3*dR#A7ZzdP9Bs@-}+Gz!M^vXs-5I5kXevpl6KDe&(} z-jqMgvCEKgOJ5_kU1r9$>C658$nJ(KVA9=22;5vha2r%(Pds|^&FX**vksiEU2ZFj zNSe?>DAaY!8OA>Cn8c<9vc;ytofcBJ+p!4xt=-C_q;nw3Q|o=h!%e<3iM9>XD>;gj z;I>vG(p%JgsqIo(!KUj$sQ~64#~599!=C?R*NTdwn(e8~Y_yTp^`)r?v6l8&%fiTw4&9swtKYJqVT6bYg-WcR;?D@I_F<57LlBKY zsowd)!4eu4+L!hd%z0RGYnt{y&?gG!>VkP-q%3!mC-__r0-r3p2P3Tk?La80vb_~p z;|v(l8l0X`+MwDcj0uh9C5+YmS4uL_RO;T_B@B9ZY9_RU0$MN{3cr3Us-A%gz7T|e z^PP}aityEAy|U&A4aWF3XR{m6kn28Ms_>#Evqc>P4wr)_Ny~+fvQ1IxZR%af$Ver!Yb0w2oh*pw1oZ!CRTATQ6+DB0lb)E~O~ zj0huVh0ai(u!987 zIZ`GY72%5lpbPWdx}ohkwXP=JgV6&!1>zY1nK__dq&)j?99|qDl-}YSYlz7PfFMSn z(pg@Zi*I`pQ-UC##f>WZUP66l+=Lk0)v=e&^gt7oo5oT%{i?G}BXFzJoMas`zv`A~ z&{&Q8T{Y9h#lOE&WfMVUf>$Vzo;kQU~(QyPP0#2 z7~r7FkMCB1WM>{o^tum=IHPwC+i9@F56B2E3wPl0NmkwEZ943MElv+$pH34lj>oG{ zTno>@cD#iOO!CzQ;l~Fg7te=5DquTwccWEmXB&Sl`j(k$9GtYK zBSSn^HB8=6RhgkSQWnp(aH$lbQ#-xnp_*uu^*u4{OuXhor~+#S^Un~iPJsW5v3H8j ztc%)h<5X-_?22vMwr$%+#WpLpZQHi-#x_s>Z|~FgId^+q&&xI1m~*se^zH`W>&k|h zUk;5d`iCEN&DG9TP4eXCMSMW$v}Omoc(<7Hp0@Z@ zYeMnBmD(K<{4=%#jB8!Vvnf#<&py zczEy$&3e>o5HM1+E~Grd@5pxlT!r%oPA%W@zw=GrlftW4h2@Qc*XzO7C9S!aQ}BL& z#DR1#g^ysT7iG?i1*0BCGh`{w0{U0*hxYzJ>nW8xFaq2_rV75#w_z$vjYfTD&#y&G^DC)W3=Q=>C z?Fbi4K2>Q4Wy+w3bD|NENqF~{#9*=#cwC+bT2blivcl!@F%KO(eUY{~W|s9d z4jd>2=t>g@vVFtm)nW_~`jo%&_yn&iopZVR-otPbx5z1Zn_dxN9`+TTR;Bsw9AjsK zlu91h)wAR*rU(dtrH~DlYUV{sU42RvT-#aP-pjY&KzLc5o6Fhsam;*?fBPDezUkmD zejKmh|5y?!f9t?vQkK7@VBGb)Be}I~AUk8y+Z52(Z9T!UFVVFLDjw?-PC|d)2fvxT&Rz&T zAol-T4LvcBPQJA$I@qTM!yGI_9MhNN~8nDqc)!qO1CL1w7n)!w_;7_GmK|fLi8G=5M6bzRgVrW zbSlIMFfcZ#`U7q(%{+-hI(-XG1t^V;Z24R2FZ@ssU~#J;zt3dv7}F{SDqB3wH%-x! zilNumGRrQ*dtDKUt*(8dEHqp!+=S>*x<$1J?iS;ZM#{8s)me$WF>qh>Jh6&aDLuDb z+Fd|DtqQ)K1A zky*#oesgeBjYZF`x?}dysT6Oiv+AsE9Bun8akv4^iy`g6C}Ol;_IHtDlv~1y+5r&* z&S_(+b*dLbWo#VHBYD-xWGT^2l!>Q_1}EmM%#P$tXJ2FJ7UG@tDkzq8UYBm!%{ETx zFBy%L?#mE7cwjl0B*Cj)ti#xz*mVN(UezGpoR9&(!o14t?%eGKl{aEEf$bcS`M75I zPf{6CvEK<_4{ilm;7aM$D?7@CWgg^%pSvDCA=qtcii`gc=P!nU_Z@JzIwu9DA5l$L zC1xGN1TqQxptKI0ib<*RQ!)Wrd)IL z@LeE6(+^C0297?9M+jsA{UJfj9^nA+66^8-Rp~fqV!j}LD}~^4nP?=wwtJ-VwB@)9 z3LMoQF5OfRw7+qdJ`jIZirAed&^>7IRWmY$H63xxP9)vTxf1M}K-CNUDOlD`9>1j6 z{N}`SG1SARl9S&R+Ary-*f_N>ds}S5Jis7Uy8hF@@-Urb&0&s)>O$|KUro^T2+rC_ zABpp5Hp0fi-gC9nzS}1AhWOiD;g}TU#Mx*vR^~yi7)6`yiuiOvY_tjg&LiXH^4$|v zt%E~-8&5&7nu5ZmV7Y1v8hq(X{HQmwEBxAP=SUBccB^cR&huUz`fqaZt}1MZqEV*# ztoL++Q*X5fqeAEl!DB~@qK+~N>AQJ-I&2}z0=+wr!*9(5dO35312$sS*bz4tRq|YG z{vp5Ms_i-7B*cKBC(eQq>nygFjlxr8g%wc>5}NtIR6qvv>#AntD_DeWsez_cTKL?chC00WoPXyZ6%MOtB3 z^R%yCXrDb&93#fnyfMf8jm=v0(6l;de6D`cWDlek03EyyRKg~FWBojRs=!MSUpf;`n$LREcJO8A3>*9VQn%>+8!)^!=Lir7MMa@?#{^G z!|kIzZ1IKG0hlbxduz}&zV zzR4T=jvR(1j;=oiDv{JtuSKuY!`-JqnJyJUR`jQ!&cPBuJDA>L&t1m2DjQqt&%3wt zHj&iYTqJ7#kxjgJq1gJ7CFkYgo%1Kjcftn5>w*%mn9A0thh~QU@k)K2U>HmBY00$-Bz=Ym#R~Ff!Emr$Sjqlh` zWQ7+S1XKOTc_Gf8nQLncF#z4mj-E5p76|D6`*5S!#krYh)H7v$k&biQELg4vWxl-l zDtkJUQoTc9nC^j7)FOqG3_M)s6s`9N6!Tc1q)1ZhWItDp$9hgX`L6EfaI-)`Vz zAJ$|CLvG({0(T|tZYm9jkWFmQkBd^l%T^7?NfFNrzc+t%Ptpt`oMt2I=+p|Z%V3j4L*-S_SeT% zjUq-#q?8&mK~t^o=*Rfl_5fg~)eWzPdzFm90gfJUF6$LWmllM7!XeZLbr|prVA3xV@}WzX&H#HGytCsSvyS5& zs`eSBiH?$8wjJ{c4pDi2D73DflbQ}f=BKgdOb!*>QR5vcBPhN6`pMgtsfSE3s@V3I z3gM>j==@#O6i~5;kp{3~aZC>h%i%{~f+Kz-%}2GRsBE%ciO+ zYm?b}Q%^tE*1d%%sFQ0*+>x~1l2^uYM-g4R7~_WBCGbO%!m3hdVjw+Cx}bL0oJ$~S zcwGjNu|daGL~ zzve?^9u;Rc_#JWPw6K_aGLd|T_P;)3+`uW7zOry>gJN?v{g1MOgmPTS$IQDhu+b>n zcuKFvJDgs}OPU@X@uDsm1zde=-0b5rWG(Q;b5!JvKT5^wy6=MG#a#Esl{_6Ni$2rJ z4Z*XtWi2hwlYu?0sb=~S^@%pWdoAHGA=`~QrU*XIh&esPH=IpO^}V$hF24ZMcLWyI z$?Gayu+tgyFlSXUF_bFBZ3?Ctcs2_G&!>>7SRdCURFLt!rkh2;pj|p;MtU(RGP4Uu z+G%s?qOt=0uz51_w3{;~DRCm1vp#yT+cq$YZzdKX={>Iq*nYoBY&drV=DU!CQmm<$ z6-0_kMy+jg68qekL}N_si7T@B098ls_k?;g%5}lIY*{qvH=zV@|Us zN}ic8*}WLBGWwOwhMfz`V?Be%B8YgTl=s`SeHtU5TKACiW^d)N-Q!d zE^vD47R!+R*gkQwirkUN#wd8;=0?%j5ZOgm&qX|eW3flPLom8FsX+j(QcH2DjrrYd z-$6IP{Z*$v-B~TR+T%y#yEH?sHEYiv{M9}1% z9Yfgk5>^e&iB!ppU`nTQ6-|Fa*KRl9y&9p0_1`RaN@wA_7AD=Gy)6!HXEAqxu8Bnd z7ZFUx>LKDQs1~21jTjmW6#^VA2wX9#D0gN$mS+rR8_(XfN^|_qhwKO=&t}pVZC5aw z?X`mt_X|u#{`+!<@>(!2>+$b-{@pzd zR16yq#)oFM+xJqoQTH$Q&c@`q{ckBfdE=T=+Y5x@y!{QWP5uMg!2k&_1aWm`{C073 z!z+To8%1`5d?L?wnR~@edE2U?Wbe#5I3patZ&v&6)AJI{t0} zA>6f|_KPW9P=L%j-K${t#M?1WXfq!81q3nm*f@H&qxR7_CE}m^Hvh*p^h)f4vL7Fc zgMHJ*Vcp_h#o4m-{?_#;=LFqD=NKqbOf&#@<(34!C+BI$vSw3DmcaICz69X)T? z=RlOOlFFSTo9z3GDZ%ztg=+_gy>dHyLn7p9oPVUmmU*->fLo3mIV+m7TaLjn_TkyR znqN|x5AWGYxXIPTn~Y-jE7aPqGqT@!D5oALP-Z=-E8$#l$`$_mN{;7i##*#DFVSzA z8~~$DX-0QQV0-i1F=P5japS7rbAE#FxkrU_y-4Fu7|Dv$QJZ~mX@kExfqZNyfAeI{ z@DWeIn|whKI1*bS-{L0aVcX|`JOH;77-5Gkmg1OF6z+pHgSUdBi97Rc&wGXUMqQ>K zc%?R&@81las777#`HS9Y<9 z-X4?^PU6@~IvT-2-tUd)SE>t+TTj*{ySQJM6#@2Iv=u8}E|f73g$exv2_A8-?r=@o z6_N8wlAN-V9|#G_kl^G$8MMiD6oLGCE%uG;?6cpH)*CHPO1*0_MQ*%S4m0#Y)yXOY zVjj?7g={5pCtSDqdUy%qI7!Ap7PqNAf@9Hbz_P`RLg*+)E!&Q$-6usoGEk~B_>MQx6+3L$rAYjR z9i8bALHNwjK`a)a5Mhv8*Yg`r7K}Zjl{?+21Y5dXvjlRtKuNda8@kh_VR^Vp>z3|| zS(uR)opaKIo*XWtqkO08CryPP_oIzZi+m35Oxl`4O?1>!PbASsmZ}Y&rp$t2+3>04zaAr?0ZAKEU`xU&_&WD2H5QEF@kQZ!y8+n{vv9x3@Q+Y8YyR zeDS$-1R$w9LY%4kqJUSB|NOW+1c}bu#;E4r{YW|2-FPe&P#6NQL*J=Y&Y~liZL#~~ zCfy*{ABtP|JNL2L!3^QD~pnYuVo3&EL@1Ia_dhpWn5)9}h=TN2+-K zxKCs9?+$~)BZnW{GI&Jo-+z&?Wu~l`F+S?sh#}xCHer#;O@v6k+Yq$7HJQH$1Wr48 zM$r|trGKVd^ zzFpJ4&s=^Vi9!v_AX)=_WW&zeQ6O#gJ)c}0q z*kqE;82Aqfcvaf}vh$&otNtK{KO#C>kP%y9Rj!Ky-Qxv}6@RE<1pOlXV7@-y5GI8c2c+k%``NP_UW9L@I^$x$_PwXyDSX%!F_5qa9F%%G3AG z)C_p#o*qOQz|zMiiN5$Q!0sv^$uT0U^jJVCXpmd zpOffq)xjCnsn1pQac7jeQ@A!>;ds&IVE8e`Hm#U$Zp+(V6DY>6l?=ePxNaAghfu2; z>qs3lQO#<;v&sI-fs$!5cIRYdnABxRuzO4OmfmC>Pxe^eP&VCy{!ZCdouA9npvMKw!_~5C7UDqd{UCU{B;$ZtzZOoR zp8(}+rlq+MNe;CnmY}oNpf$iGf;vA!fmW8XK3e5+_TB`UAVY1cDN=i=fcM#4F~`n? zz-7ROagETf#YShQ|Ek+M!2)}L>Ccsn*El_ewk&U@voH|u?{YV4c%RXRNV>~0?A*vm ztgen-9fp&>0^@VmCxus`D;Zxo7a^=J~Pa{cqK>nQOx zyV3AwIc3Jx25}p6=H0XTs{%)oUMmIu(V!G{$&FgXGcLp^qhOc^=;)m$JQd2^6C}UF~pyIxVS0T|M&@Nu>jwJISjg zxc2+nMApBCtTc$IJI;q8M&khvYi-=`a) z{W0DDXlIfW{|~213+kNyf3(o_`n~>BF?PK`ruVCuou6;)8#JklRTU~UK9)<2D=fXG z@gl{ht(w6gGdJSZly#wwK^p465E&Uq4ni?Xtr%8P!I@S1?wY9S)zRIRQy2r02UxX9 z>0yOC<(IT|*iAs+qfB3;X@apvk zyhVJr%Cu76{DP4Lzk@fdyskBGCUO;B7Vdicxcz4tc}OEbKk0HoP)}l(#Z*vLtkA5T z+p9Z=Mmij7zPe%1U;7-88K|CViiFvc#>Tr8)f!#dzs{9*JJL}@ime8E=CrbK@)aH? zPEIXCX&fq9T!i+NNxAB@O^3gl6~_{{p$JnWx9a#_QEQcSFaL4(K@R5vyg3q00mxr) zY!1Ig6LVBf9U792GNKLi7H(BSk$9j_8rblBh%6RUCuFl^a3T&)oqD?1=AD=On(96K%3ISUI|q8-_2@TQ|b|E%%n0 zeiO}B^+OlTv5I7Lm90V_oZq;9$`J=KO;zI0_;BAg;Cub+1g0dvwZXEEe4%O8Ro`I>W~T1g^Ty z3ye3N8gMZbqBbo1Efqr*P$W;1SmQuM@osqdoT|u7PRt=wo&>nA@?y{ZSKB_iXOJyo znDK?^`79S2wn6i{Hr3x(UfMQ!pyTpZ%PPjvCPKEeR{pwjs0#A)Rh^^3DG;DL8)a<& z&LrBfS8k4klaH8u5e@BIJ-6m71)>=2vfuAfSV+`(sQeAZ)x|)S8t4_ zK^leJNtbKSYk66@S&9IE9kSqy3~Rdb>I6GXn)9;SMFAFDZkwnoVSFO3rnAS{rnM6` zHweFe#FpLqR-7gtE!THn2p2~R`PO%*Iz(WgtF5KFh4aD)dvkih$`~zJG3E| z_vB3>+<3{f=y8B)6#Dzq7xWQyYiX~yt$+a(qGAda$^~|?&qE>sE_6-yu(8QWUzA+o zWkuaGNY$&Sg)Pg^US%odg3W@;^;aT5+vQ z#nY|3S~vS@B@F;1X_3HWt$UcDd_$d-kXEEmJx5K$7$+GS7z92NA&ejE@eD#O2Eai* zO$%LI*`*LLWGes16aXNki!dBkQ0_Ap{_st92gA!DLsXSf8oC7g!t4P!eSCzkw_5uC zv^=rqJxtrA=#`U=dRO_9_()tXb@*nT{ff zc^}=h+xlV3sXSjNnkUVWu216wN6KoD2KeSsguAJtWX;U|Fd*wp5*P7qrxet>b^#kK zQKKS{cdV*45yUyGsXSsHP|iq+CPZ|y)r@zPoIv22FqB`l#UPOfHaBf8I~wtBMw?9q zbzwZM4Z&p#o>Pf-GddL`VwGKaW=vLIi=XNtP(8A|z(hi>?0=+}!RI1X=-`*Hm@Rm= zm!Aee!0%PIIVPaSS=)v`)5G?y7aEoG`c zP?v2jN1=ff`D}a1)zRh})DA2B@}lz=)01nn+Tm622w)=V=AiOWN$gkf3LXHA;;i)! zgG||@RG%v^!wkU`ss+PNr@M0T312LtHNFz@kLV3aIm_ItjwgJdJe|LM3KUIc?rOx& zEk*AEnQSaA#66IEO=zk&L1HNYes6&l5&Nr>yDe+K=-|D2iKekP5PIQn%Z5i9i&fMS zM~pujc>ErmI|;j1_+C9Z(9UQ0Ze}Oo$98oRdxoIBJl!iYEsQwtwxV_`S(SZz`Daa0 zR(vtGdU@?+4ngrI;E$gr8#CCGIXAOjgDy0x0l}Ch%N0lGu))T0i;?-DQlI$WHSs?n z!;fN3Z3y~Q9bn3sm~Q>?cq{dzaBk~pSCmk3aj{INhoFc~(-wxM z!f+&uK+Y%O#SpF*cOoGgoadM-NeBx=l4;cgnlS@6G{G{W-VKZ=ji+Ug8B@xbSV)>q z%PMdnJO~~c3)(5RTa&Kg8;4)ItXZ4=gf|a35XnhVhrlVV39H#y znh5+>bK*#G(h1b_m1L3LfSe89mD_koo?v1AdV=Ej=d9%`&o9+1I~-Z3PtsX^>c^h3 z#ihL)rk~e0-KHH1a!}@cKVFW=PmbNy%LTgCcW4kCH_b_AZA5pf<-jiW#o@ys?S^COcsFv(5-~nY-8yrgK-0x~ z=Na#ST4h1)FIkDs_&4QaQNjznN&yEhZqee+#B^7Vie^mhqo%!Q6PHd(4sxi!xF*MD zyN|x022I;xWYf|*Nn9)jCZ3H}fuLjW@QYZ1Mb?0!G1=cX^^(c>_>H2Yf0XBZrl4V3 z3(4c4EJRe0RhqT7(-;w`IeM`Y&ZBlpyPMp&=Xg;oOvRk3B)Nrx(-(R)5-_vdIkLvhCEa=mo+ni-tJL#4b8daRn&XF^^~+sSSdQ@w zLq{!A!)D?9KvPMvXNja-<<0Ijnb$ri_R|VeUMiiqaU-P8esDBHwD@YxtRp;c(!Nz@ zU$%-%=5g zN+~M36p-+;xH~^t_+WUG=Cak%+Qt+`lpwmNC~YMh$`5UfK_WFd5_l6f~@ZkT)6qC zGn!#_*T|?L2zWTH1UPeKWrV!VEmg*HrKmckU24fF*TjDy&BQ%Gq-<2&8ah!J9fib^ zI>{-mo+5#S;>aWPY@gRk6ey8>hVa-pCmKcKSdlj0Uc7&o zw=nc1gdbE325)hyv1fz4YSJu)?Y}4Uq}~OrOZE$@HD*TuY531`>ctfPo&@p>XNQTceXyZ^J_m7Vigq{5?B?tW-5 zm!UH6h;p^_Y2&E~v=Y$*Fj>OK;jsSYtK3ixrD0G1&NaC&Wg6Wvk?hsVv&OQFqT)M0 zD;ZEsBGIDIkk?CC))E<5IhzJ(A$ zjpog|PP3Y4J6oJQd7MB0-9TRXk=M5q>#_K9p;no%n708!RF5^i_zcT}vx6@(!EzID zAPh`?6vo3Z)HbqQalB0@E>DI>Lu)TQkdr9&m4!0ac_`*K%V>xxd(^{5qKyxUCwM6k zAOWR$G=+n;Q5KE=TJHquY(t?x z#JbJ6aTRKF$oy7Z)KuHsFTrEO9%O!$qa~MzmUclB%g-MGXOb zK+kaUckQ8pDB7tI1dIJ5jEhU0gvB)MCuV^ExwLTr9?BDC+er~RpVo6prL2?!5!H_@ zt4GU-9K@4ev}NOd(qq~t;^XouRj3>oj2a@7pva5zwLj0Xq6%e6@Z`VY)Rcnx#p9Gx zOUdP?oq_JW$&BFvbe>jFzc#8t&9qf8mvLW$CRY+*{m@tjmtq^MzQH=FY19%ZX;pe1 zofsN4jU?y3F;h6ca`*NXoLhl<{8DT+V-P^7fZ~l_*KbiX^f*B={Sl@Mtuky;HJkg2 z%c33mjyp!S2MATX1mrcTwxY+|SlBc#wKp5eu!cTwq|AETn)DqO8t0}MZg~sYtVG4} zkU6-E>3QDMZ|64>ffpA9PZIe?)ukRMeKj7Kv-nzp% zSCD|)cPWyYJ$t#}2wB7@-D)KFy8o?^d+flM#ZzL$fBX)~#gd~o!&4Pv@_?vchYhBp zesggE-zCegzRXeIRiJG-aUx`|(Xqo9iIS0YYtKvH>vz&{0{ANtm1*y^g%!_I=s^q) zIf5VGetk|l5~`JYxhrrPp;h-RHL^o4wi>4X49FcUn6n*OJ-2UbKOM_(6DjJ}J>+G# zZt3&MWR?&f>#e{`hJGYdo=M5i=;9|ytsynxr|7JyRoEhFp5nsL+iCDc*2oys2W1;cBg6yMFPK&o zT3M^ti7`@m8KjcF#)%S}9k&a*Na^to^Jeu{5DP(yxkJ zI8~bH&d~j?&n})jbL9*kj_@f61hy)PgR#S)Ezh{v^2)W?JTm|wo?R&p&JDf@mPn!YV_2&uxOTVbR9 zhcL!MMf7&JU8-91WQ82}njr!c(Y}jS7ei)ACy?v}1ZiLAqy4X{t<$;)hp0U4il)LF zPj}H>wPx$zT-cY_nD_~Av*Cx8AGj%*u*(K9zkJLwPaF}y)(x&Q;@a;4c2w9}&{%Xf zRJI{A>@P;xmS&-Uq^-Sh_WYp@$86BLGNIyP28jW$^bf2-_bLD6rqz0cUMoPDP=Ao= z2=-^)H*8>mh|D#d>Cc1YMyhF$0z9Ii;=iotvCZ|Pfv))Bp-TD2c1H0hcdAgcbpIoG z{eOoe;TjMSg`IycnsfV188CN3myCk?225Wb9gvSwl+IN3DzvH+EdPlBvnSnR0<_bQ zxn=LA1q4HjxXp^R5s|0}z@_9(m5K)%-QoBTNkow7bL)r#E2;UZBcKJThrKhP|4gw9 z&=wJy-LP+JL4Pz~3rL@3>=r}z%+>hJzQ&gK6@IZ;W$plz_gzzfp@Feps7L$ zH)*@5$Wi_XfaayWt^*rq!5UC) ztBI1VrwxX%R*Sp}bUOIUpq{YuAb6Hg50-%uj*JP!J<6$zKCSy32-SQ{;lI)H{-RWd z{weziC=1is=JeLrcYXbEebT>+erEH_>~vMW)ijr`5Si%u3L%w7Nc znn2>iooL^H=H3~(`6_|6dre-2^RacJeA~czROU$orxAYgI%oYMqA5)-9qW`QU($4_ zBnV4_t#*6CrkYB0{w`#XV)pmC5kiG|cU-EK*>fOeoE!hVO&G;Fe=aJ8(so>`qVvU} zr}jl?S*!~_Fwq9n-j6Hg#W90(dVw+Ncd39v8{M4v%f}+-^T=DqPJ|@Nwp9xEpP_jb z?J7l@rtEd^OnUx~!Sw@F{`vGe#=hK*UQFBPk3yL$P%ei=n&|Ttfb`RcoD;lkR_Rpd z{qHhdj?5q4aPNAhon*=VW4d>F=M?Y$lagN`o3m5FAKB=wJ*>a_;hXrdHTm0(UH`&w4D;zpOkcrgQ6q#Gt9G?+z0%)3 z5U-TMva{yZsy-W6u!BJnYRTNDkyW-WF%iG_u2t^=_LOL?jD&g_}|XIg7jQ-{xe&+ zH2s9SzCqkQWa(l3{)N~Mt%mcZEJd1W3YE+54Dw&VA|=wYj@qykSwYIk3s6$Cn9mIq zzbDM!2IH)8h=sWOY$31&kZ?%KqM|Gq`S#Q$9Z>%^xaT-A&GcK?yeo`fS3?v@;O391$~qi3B^a$; zaZvoz7XqU$aM4|n*9<(UYBW(6rpbHIrnwwaGliaNz8*QlNj+6`AESg`*yW?W3JF)^I+}RlHK4!@9$2$m z=u{*%mbjcJ<2H@T4^W3x5v6vnWP$s*pUPVZ#W!p2tJZZ=#q<8hfmT^M*sVr{zZJ0v zJAS|TY&)K>w3dwKGJ7C#czOHZbZr^60lsaf;{>&nqhRL|6k+&<`?g2@9Fo55kavf@ z(S#Y%X5fQ>B z-G_9*_fBsG9IV4t(sNRG-{I^6t<~r`O=N7eCDV=>8bq(toBB39js~O$kzh4Ne$0iP z56zb^hg1 zo%$1cE%0$Knwv_ViiQ}p<@ty?!TR?J8Lt5~UIcsE5A%xok%D)$WCRe1+;9kbsJ?gYv(>D)g zeZ;ko#D}2>&{s0%Plv;aN0}xn77ZJP+&eRl)2`$4s*^iMbwhJJ#GS~J`GEBxG%SgI zlb$M^k{k9LB;FRUJfZ1TkIX5HRjb0A?5#QazgNJi4MvtW^}?waaDH3t`%4s4b<1N% zgq9vwVR4|$&8CXv^&2##Z!T0j${71M{H{bAf8YB0@_Wvbh9sY;;%QCEU0x@n=Mn8R zB#)Mh7Np2BO4I=2>3n4*Zye|pZDXL)}d_Ra`<>9$^{ zYk*Dr$-uU_*P|0b$je~)GWJ@|GHiCbl-k-u)8n#Fe=U2eg9tXXR}m1ifYX<~m+eLX zpKa8TG6wL5?5rj`|0{lRyYa^rr_bY9F0n%T_PgKDzq zE=D0x zCP^{f-@ZDE;!PPUI6Cfela(VmS@O6c+2!c5WNsK>60;60GKdoc4IQ})9Po~fAj30l(T}cKB!3C>Xf2r|C*kLGm4{F_Wa(F;=`C@u&GKwQM zkbb7V&7!$I6aUj3=es|lex;bIkKR&)L4HWBV*K#<$G=zXUuj3m!FGJ5lF*hwV)p$j z%GLWXug3h?A?W4X&S;?n|0D~#RvT-qu9{Fyw%90d57Lp0JxW^IX6;P;R1_#j0(hBs z+qXTeH|hQ{l%P;`3rVlukbwf+-R5n>8VsB-Uji%DuBEGmu=mF(QPaJ$GqKUKN8a2N z2`r8_{#YvdkM~aJ0Zj9nGY5z7f)W!z@LfvoyyT7xQKuwDI_>t-Q8FFi(?!8^nS+4< zI#V4Dy1*`Z@1u54wMY`peBQMD`)c&9``$88oY18D^iVd{JUg)X-}G1{{zXZA-Y?MT z2Zv>TyMd_$M3ZypPy4QU>Qc4-vV7oZd6g?(soUoSZ{|{@SfU~K;{lf3SY#Di2wLG4 z>BJS4mSuv7Xc9#iSajRs!9{tg0|}0orU3LMh7{l zE~`!!E86AegB;V-@lM?EZI*iduUZHy`MO-nZNZRFi(sX)gbcF&o1})nHMsi$d=J`H z#Q5bw56qQ5dQ2MpYo{dk!}&|&+|t5UaC&!7(Su>GYd#->s=@^H zklrAnan%vA7j1qP^zWg2T;9$v%hU*tuijpSclS5WV!o}oss%q5h(yoeJ7{^Lg^K4$B#)n@d0s&lAingMrZh4Jx~~r&6n>VJ*;NWKp+Zm#Xc4v#~%DXpI*| z^9tC%TkHQtWn&{z;SQA*Wu?Xn7rR$o)M{L=<=&5bAQwOYb#1~LWXb+dGnQ(|7ymC> zvd*;tau=1BgBka?6Rk$gL5&}cK%Wrx&)3`X1_MLa$``h75vA-r9^pTt$qMhB zd#vCr%Hz01l1|O=&irzUnqS780I_i3UI;+0w6F?Dw9$+ zR6hfoz{qOMa*&T#+O5WHMC(hMRW8?39~{GbDKj9@^6dLX78yMZO`l>O5jg8A3>AZ8xB3FF{H?F;v;4`B*cCTu>(Eyp363;5h3 zm$t|s`pn>yz_X^VlUhk1?zwc@XyXl5Ej;6=&~b440kkuxUaE1M`koCrpOuN@aNvMf z$KuSkVx)T$XK08CodzrVjNB{qhS{XQnB|kT%VYM2Shwt*+1-Py>R+eKIO2KPj9frJ z#pp1@!?Xxq_$-1`3j&P;(ljTOCB$eWReAf5MVTXyBbrkM>1izePY%sU<_4`3`yfkw zZGx9xsvPc>S$vDI2UZ$-icJvkmZ!3CiYwWs-4s&*o6xmKOxh)8(y5X;;EoYSk`eED zHSO=J^xp!-YrE(By@qsmO-6tFipK=Ha*KmfBJ?6*#-J(=Z{f?O6Kx;8mGjnna^3xs zBi}j<`3>io-urklc(W^KL!k4fJS1}4)bZH-4QbKm+9u`)Ia{c<6IHpV!j{@Jt}XlQ z?%E3H#0PrKtP00N8LKJ(oc2HB)5qS{o(w$buM+%(8Vd*TY$;+0P&3ugv0JO_z!`mc z?OYJaipl^sHR_dTe_&TTiHW@{&-i=uBKufRfje}ieLZe;+&?x|FN6?G^TmIDFP@}j zl;vF!WlEW{JypVh&eMCf-)65r>uEzkS3Pc4vR2RV;pjU zcJp;konv>`8-xyDBM)3qoFe&SRgIz@hIJ#e14;IRdBqWZbmKs(6NGZWE;Ru)3e${M z;F&b03%K~e{1X}IfHXdo+?hCphxE^&tT@3gtFB?7@#dnZCnf$gY|Kre@N9_!9p9;b z?#@41iTCrT%G>3m#D0HnH}sv~NyEoNPa{wN@0HntT%igi?A5*h6eWWw!Q^Wv4FM$_ z_e)W%-5yDRDD37j<=uv8obIN^zeEDJs z1Z9E}{!^@J{V3KQ^ZV5sMSv%jJ}713lA@B4*JsBz>Ye>}C2sIbxX zF6r2_JVv_1ct7ID0K*c@Y?3M@9V$+;6qfG~`>>k#;J~~t+zKrS)|fq!33ru;S7A{J zQ;Z)iyvG_5oISEqLlN!R1=EQ$N_W816lg7q`>8yFIZ-kZrC4bI+PBO;oVZBDN4E;ewYrObE@6^2Rypk{bML6poV( z-Jv@K#Qf{enN{daLBH4DICli3A_m*z2SFNI#Eo(}QHj;yT(FU4K>kP}?T~yJ6G5U=rE#V9#JCK1aQVd!d}c zZvAZ;sZIev#mQ7n!qQ_k=`tIKk1)08ufK1Lpato)jn6x-^8Q?JCiar#+WD7kJR6 zTC{WMq~u{Md&OS27D+PAOcGXBqO!7`!XBube)0RTFOkMU1w47niD#}UQ-AN`m9AvE zU<(#p2D5;bqsx}pug8r{kJe+t0;ywj^@yfKi(B@QrV83i*XOK@zIyI}0PK#$+NrKF zsliqR_>oU0=eRA zgMYV6B-m$?vrk*fz>CpJ@rVEZ{u9~aMqAa>z|%Lq0**%b-(JK2oG#O-yO$Z`(V-{B zoXq<>L9%99_mP{1@%y4*xkyM?z%>8=vxcza*q7+sf`HZWjkBC!jIu%cnxC^Ps0if$ zjZc%>e(DoZ*r|K}IBAL~MQX{57BoSfgkMm*Im!o#OYm3swx=tH)8TZnmuEdw4aEdM z$Qb*WM%oR|kfQSVJgiteM=(e>3@SQP^+KZpf#2ml$K^UMsG2Xjb9p#Kia9Bhf93_{j_Ub_g!`W zL_Gt&mMYzv3%}&ZytE3Ck0+^li8*O|CEMLRisBQ3_lK5PU|3~0n;(CA0t^F>T1jH7 z!!->X#JT1g-JZ-sts1gXkggwRWYsY~n^00D;8PDDbf-`aT9Cb9du%PhnATgBJ!Yi2 z6zgH`L)dX(8zYsig_A(F>lg~U5#Z9e^~V{fa;FFFB1$G34Ly zYBU2sO3>-vkvmN*?+=BhB~#jXT|@rd&?a8S%mj>PxkbB^$wOZqywVLH6q@s(?tXcx zlFx;qq*Il0DwgM#&%XCdLpDeR&`L?s@ubUrZmGA(3c@LMA)M0_tVvOAdS9uvP~j)= zy+e2Wm<~F>{(r=SeY4}Ejtm6sNEl$&?pIl!^hI(4IKL@j$Xps6HIOBHlFYwHYdcV} zDK4S$&FR#tXvT^}IQ%B*`4J}>0a}u-B%hc+<0o|aVaV{Fr_0KhKh%8RApWvD4T7Um#`QVA4 z`76asdUGLov1$g&4-8=EH}c~FShD_4ks1Qz{8vbm`T~h7??Dz7XZDD)Xs}FzU)sLn z9U}t+8w(48fswO?oh_Y*jWs~Vs;b%an!DhMOogZyNfrA+=<^E;!_SAn+QJYZ#r^Dd zI8oFZJ(zoGRix>D*7E8m5s<=2msaTt)PLUMpG2A0LGM8M_?z695G zoU+;YB$JKp!V77b0Cd7QE!O^1IRD15#F_-*9G+xE14aW7`hv(N{4)b2{ST){!SF=T zlRgqN29_;-yv{1q!xF~5PY?f8WZfjClR^czyr@HQ+l3CwpMzo^Nlj9E#0;XLJw7Vj zw5)23v*s6QmIBa(MMV0Zb~H7@k&v-dM4?7-ne>5206HPH15810N`XA2hai$U5Z?;c z>|SIV=#b1VyS;i}+$(p>{l%=MzsxuHz#zUq8iy_dX{0HjgpY{#*<6*?ZEtF2xn?HR z&j^6B-89q3sq61Ah@MU7C_OW>i}9bc3%-YR>%TZZu<(R+%<2%&rI>Q4qN0?XvLENp6)|? z*rUtz2G?mU+Nzn@zXK9SLWt4PbznGCTE=f6R<;8#QW=Y^qSd@^_G*D+GL>J(?esX~ z8J#t%Rh>Ku0nuL@&Z_t>;bX{fOWK^*WkuneYbwrxqJ%_tclnR-^R3{LZr8&gWrMD- zh6NNAu`d#&Kps^^Z`7SATF(BRN5UB>wylerHS=9m&(xNqCCf~2rV5v znEk(>VNQoVs`aT7*M%(2wsVX|;Mb10?M;tu(1Y0_aI$gM&`ml!4Y`x#SFpWGCqKQ< zjkvFk2{Z@iu1+tm$lbXU^s(L)iE7L+pPgbMXp;amTvY+6Brc%P zy%MohXO#x2^XM$fMV{3XitQ1e3Zq~a(c!v&+F#w81p42Fkpp=kFOYh=A|FYZpH-h~ zh7i>+V2|Ga59(^0rOuF)ZihAd`jzuK>hW^q^G|`@7e%2m#&6YBO_kJc8S(*WF zHFMX^W)gDANquG+0RSH#c1aabjJK!bNvWW+yKXaev)dK3LQ_lJ<)r?>zHvEMu%7KX zm@CL$jq~FK>yjKkHeZNt##uPN2ks^NcY))JZY(n zJu>2gh6D@MugQ42ii)tcKb%|PDa9}q{i9vR6VrH}kDKV2*k3G|+kR!5?>z$3(&EUN z%3Ich_p-*+jUGmyCS8-Y9pb^O`Yux?jhF-VC)x>9vj0)2p@Shtf;BU)pX>U5TNa1< zfk8l};t*R{iNWbA7O&qpz*c;Ai=#Z!XYBD~OWP;^9RYs-D*@(2H4HeaX#0V3cuX1z zST5PO145@`xkzb1OIFscIt5q6WErZUG46ROy|4@30s`Nf%(^{~TIuOW5@nIBcAPb^ zp@fdlqE4C58wPyOf!)yvnHD{nQ{IWS6Qn3NuCAap@KPU&ooJ(z+Oy6j_!EoD9qW z$@9cva_WLaUdk1t{oCODU;S1N20VSbq#u-;r28Y{dcEw7aeo1U!O+*`hGWX8b5KX0 zRY7X}rDkGApiATr4p+eQXHISL-3_I+i&dBW4EIh)r)4hlX39eE^kVvtY;hErfEhC; zuR&E=WP45ZdUTJeN56ouc(f<40YiUs*>L#lq-* zK+Fy>yb25RpVRaIXg&Bz@m2sS>7myAZPksTsaN+t{`(Oxfj0`R02Cx#nE=Z~4;pdiW} z2Fq%24IrM7jNK^^5kw3e{fg@zyu z?}L9qeJn=B41MsUJ+;|M!uhyMLs8*h-z(7Tdo0>)@Vj5? z?4rtm{aiXLdfSelGdWR3i(bfCnM%R3uoonliKiaz4Jt6ua zyi{nEWa2?u&U%k|NvuQLYR)GkcRPBdU3_6~*jdttB?>xA0!ucmf354`N)^42BTMDb zrI2hkFI+daLc(oxngE@z3b&$=)7Wq9oYii!i{eArkZE_%ubrenoJPJH@8<2El~P0p zAG(nv7L)xzT4zumN!N&X?2VP{p>;S_<^zS1v9*0P%Pb@Exp#8@F|j>#Wk4=W3rRoY znE+=)AaU%jxU=z>vbB+w!qKeey>$Bx3-l6{nl&57#J_b{DdqF&j}$(rqnDL1wV z!9(v)7(&5l5G<`9;$@U3E+WkDUj(2e(TOU;H|LfJ_)b^qh$d$9J+v7mqp8~$6cWTn zdK-?tTCLSe{5S8TUKNd9ZV~;mDBz7SWg6O)@C#^7n{NvE7Woc-$Tb97F1zR3 z-PO}$^HjIqDz)#|;p>w$ct&wR1HSvXM$QcuzB*C2OsT{_{UBZhcWn`hAHX)i~6a)hqyqe<^ZS|+~Y?&nlzSt6FwL$b1_az=PY%w`b>zQkk zOr;;W!*4~U77u|UZrD)K@TECaS#j+v7)ihloW{8dvHD$|+iq`$+Yzh7t+pZx!i}(ROPJ$gn^zyyJ!Upx&Hd|bV8tM3i_WGS38iO!vO(yFqM6C2 z(k~F~08{a6z-ZV1U2+N0y;4TeLVBoICh=qXoKLZhHEYIiLt?f7GkUN=@&EQUG5E^= z(rAc5YI7;>C^1ayci8mp%uC-4hw9;zEBpj6ujj~RYT!)MD5V1OO{WKs5|1S@^lNYx zi)Y7qU@|vDEY)>kvn+<$~o>Vl`9qAIy z-E9Sk3eM=z?8qYAL$ujGY`{{|Y2v=(61E@G@%U=9p;~gI&bMayD%oJN=>gB~dEXGL zHWI0RxQD2w69IS*hg68!+YFJsW1=6Rdp6=ho{WwNoNO6+-DYsp%SgE}VrHWm9OTIn z9j#<*8A?V4G>|fXT|%#Pu`)wvjyq(&X(`>$#08r;E0S{JZyWyM54cRc9JR%{^S~#% zoKLu3OM&3PxDpSY9LJp(c@J11mTzkhD#?P-^3`*B!aZ)0wiLQbT7U=fkBg;>M}JR^Hd5Dv+F{qs;q9ChL0}?5DfV!&aA8mmlNz*gU=*%x;G#lvgntb5eToZ6x4R7o z;Jjd(O`ohIktgem5~l-qV_nIm2mY3k+8oe<=klHuy~tm4Tt}a0=QGE-XIK;a+LZ8a zsFG_$R&et%a1?p9I-A=u)Pu6~+S%x!i;gCKkLRdlugRXizq$nm^1V z3knxmI>ro7EWYHP6R`>X03GMn)I9=8QvTUqe*tv<*Y?V_D=EG+UICD?(oJyP$qZnD znV<3d|K47a@|{B#M=>W0$1mc9h zDVk}Ro3;BL3jY{c0GPEvIHvqts1iwqqA0;PACVo@)=#vCBl|)GfUx3KLR*n4r1h)> zEqXV$a#Pdfr?kCeU0vv$up)r&vO*|>ibx^yf)0Vg-mFuj#Lqxau4Pd z8<2CDS}2AIi##GJ6zIko^ubLiA_|hjEa;7w+&RY}o^o-v0J`k4d!ZLtg{C0-K$*-k?1WuKEa` z8@<^8AbmCU)Cg3gP$%S77WT*|)lKhFA>9(Wn4;%18Ql`CvfTY6;RfsjMvsnuPC#27 zPUeD%FsPs&CHt)sL-32|_HthL^vk~3I)oupT%xF5;3|HboX6P@(d+9tZfu-DReYpS z^!!x1fX%80^#(3)d?W{i_a~p%I$28Y0S&30%H$R)XeSk6Rx=%edXs?66s++i&S+T1v;WqE~zVh?S6{9YUC@6x6Pi2&Xu4HRsj z=>-Y|V9D;NyP;;IJd?5LyFIFGsTuCtb+U`PK}R}?8o91u^K*8xO57lAZRbx|xXj!9 z(;oHclQ?&s95I5eCKQ^~tP);gR^UyKrSZ${i^Iq6Vwz;cdZVC3*0c?YVXF_>yN$^L)c;TG+9I4;O zsxWV^=TZ80n`Nt5vvimyUG1sp=17JxO=-Qn3$Y7=A#bbo&?yol^^`ezQ9!lWGYcL_ zw`paciTFZ&5(_gAO$Xhs*-n8U@~;x_lH0+mDT~-=?JxqvY=5UsWImOn{i8sAK}jw2 z0e(-bI`Gf%N%Mc6gUe7jzXk>eNQiDAG*%y+cf8&Yifm*Px~$JR5rodc3(5YeLf@(Q z|Emgp_t$G5cFKsP#B~EoYhXfBTBz}O<(ao}iOnfMYB!BQcB84OtEF2((Y)OK) zEes`2eei^Qu#|b?)*T!T@%#o0nLnwAkvX%87tOYfuNrn5}_uAW+DlovF@1FiuULL?y(V8$FM zsh%o{85<-dN($t3loYHFm1(GC?QgV0C@>E)OD2?Q@9bGbARWaMg5wkHRVYpzg+^@@|mKZ&+7ePglv1t^}%*?{9z1mTbDrO&;w0&)Cp z)rK=sPWRJ+!-~o}U~A4%Upg$KT02WW27Y3AHPi(O;0ryhEhJOLRdLWuL$>r z6})RpRwlx_9nrKt33F*~m3y}Q9AJXGPvnpH5%Se+z+}elA$bwvig-Pw^q)6836I^( z$Fg+8Q9GHiZR_D7$yVo0q=-lu|GKQv_vT}x%5R{^uDogB2f7LdY9Q}?qS@nbJ(Pgz zIbL^{F@7>I={{SN)m<-zP?5txxNT-qxh|wxYe$Y$NW$KQ(y1+&I{Ps5-JHFUNsM<@ zZSF5)Qk&%{sJwSzXkztvGa#Hr`LSj3ROjQ_iTs*OGZ6VxT(K-#YfrkA*uNaf2`a{ zQ*U8{G&CAReVBK0KG%t3E)naoB^h}Z3k;^$N6W9?+#_@Wh7X9*U*2&XuNIAD^VGg7 zi^}cILo*~sIY4PkV%RCQskU>sT_@ zM7uoLG1^8d*dG2a^j6joCq?hI8Ae-|d#E?m@MaQNX=5mg>T9@LI?GCx@-zNL?zKR9 ziZeyg`l27!SN&d}E|5EQbps4P?*ShEf&(b&bzB0LLo|`<{{kX;(d#$^ibecq++CVt zG062cbd)gl&DAxrg#)(R5|IVFm%X5Nla9>Iscd3pZJx<}8G{87;zIcK9}4hzL!c^x zz<(|}_n;Mt%IP8*pmZHZXvPS?KzjIkiW(-Vx-S-&2TvY&P(dj&io`Ji2WSk!d8Vae zC&PacOtR!R&;)p7Cdbn&US>#(@B=?-(I~MUmnRcih%-VG%cB@eGEG9{(txVpDQA?Z z-{sy6f_&^h0+rcra-He!wVq|MEuPL+NS!~eTL1Y1ATd^l0EJuF6YvIpU#Q7FJ@8{y zn>|-i+e^!fSKh7*sO;P`{L_LF-1Ejh3IJv~yY>$>DysWJ>pr)9y5+xTQ=kWb+| z$82>t|J%~gjNp1A%JK2<*D;2`;H|MI2VP?kUdI0QM5ZtCa!PfoNz?N}q0VQO!0sK} z&6FdV<=!jKftem%6lg6s%tL~ha&p$=CbX*k7v_{bMK&m7YXV>+8pcw z#q2If4`+?lvyg=MGa`n&`S4VMrY47}I!gv`!}g#mP3A?b%a{mjsZ{4xa;eLfuB(R9u0?UoD=M!4fI!yTX?y#*TmY1^%lbon7d9%Jrx_hTw04f%! z1TPjU{3dmb(iJ!`6?LBYVN&%d^)U_9(x(hjI!TwsPIhUM0X98`D|EBUR^jtMNnDzNUb-$&4zXK7(Jp1kzTz+Tm{C*p+Il@e-Tt}(Y9YnNg|^AvjnUc-Za z4<+nX?Ts@`6ZbguA7$TjIlAAjCLlk`Zy=Y*_*(oVnn30CYBk?y(N(5{q-yv{_gpQi zv{0j2A3KVt4q{_R@w|*wWEBvTEa^o{`vL|!9=HOy?bc8I6EM!1J71rVYpbRN~>D&c(6$}`s;k+Cg`h3aI>h)y1zrgYO7k<^ms&A^S)Gy$5Xy} zOc-T}2n|rE+|-i4x5ROBwn6UmVPw)686^+rdqK8mD)U`oAmV)Eoa-VnkMfR$6TVF}1-?&J&;0eL(wo#z3EuL0)8UMcDtsp$bF;`T7 zq%o#zkVpagE`9h0po>r7^WPt=!)?O%mlj~B77c#^A;ap+{6~56&))bSM;kH7ZV3;$ z{2*vBX=d&==b-kIwY~pZ92>LjSQgA@vQ4O@1fozO33Y@r(>U@E%p(ndwZxYx9vEae zkWkNal6b(FD7~r+49gc${0$isj;PkpkV4W?z|o3~rvXi%Ytu%Vq#0~*u^54TIphgy zyLxBCHvK#LK-+otX~t`8^UaMDmgj$<5qm0`8{%^|M?y^ql+aIuarl8V}#3SGGD;&H0yRMRT{F)$hwg5d&NQHjT?e6d;>2Q(U3A>GlZ^Tb)V10)E*u3WL znB+3dfrSyi$IBy(V%r)mtDAsl*8amjrsKZ`T}8;eyViTm&eT15Z9JcGc=NRc{0hf7 zr$tHm>>d=W?o>XE*?rJ7ifAJPn&XcXWcf4IFbYp+q+XV0=+kKU;`D7|Q? zT%g#+rP=vy*T#OF=;W%9b#dP?b?K>kgn3oQvo7I!GZ^GdovtKlVbXneUyJPt`xfJi^h10;l z&6YZtukx`it0LC60C{mhKOtRee;Cj+UF@BK{DclXty5}ksakBzI37(@X}TX5xL^ZO zr66X2b3@exLn874$hVbS1@{B4o=w*=Pw@o-yU+tDA1O}c=_b?Naf?v$7y)>x;U|pV zLW@IlHYrg(KPMbViGWVSe$8w#HL7Vb34)OsQ=_0BDyjHTIo|e37lsk6hmZHEa+od6 zH1W8KJTSc~>69`?C-n{iYGo6F3(OXwRn=+9$j$S+uP=^dOyzQS>QC%b<&eJbYwkud z2&VSNEnowt_kGyN>ttOofR(l;%Kt_ZL=pZK`OiZq_5T>!6xV0Kn6d@A!LqQ8q_6)x zR<_`>VPbn(VVkO4(hZ9NjN4*#0qFz;F(SIjXaaZi#yx*44F~D3Z(L-yC}~^-9PA5g z0L+cMXCCno0VFhO>pPYOp&7$L+qP~p!vsjgp%l>cVmGe;ZY*(l7a&pU{MzJ|bp9-`ic@?!9J+Uv^p$T^tr2dTz940c;4G>~wkf%|Pr zFDD>`yvGQcFa^GCojkQjK;>WENvBiw6n+W2R8%cm{#wH=Dk|$}^}k~7ZOc19i=RWK z5V~SA`tqsf`4-8=>F=Un=lvDjdg+|MG7W6DP_=nQoJ&I$$0j*<|8gJ^Kzmi! ziukoLE}U8FY5G|7`aCsi;%aytn-K@StGA0gh|b7n(lSnBP;Uz*jP8$bBkM=vi=9m2 zm>(a>KF$}io?1XPA;5fg{vA2;Fjzg#fpAvK);=)_36-Kn2~Zh_s1< zJtzCBvE7pa-!tL&qJ`&Mz!GHCYnjwq@?eS@!8g82A;kjMY$sm2ekue&x_lRLll#(7 zB2@K$Ex7&Q+mw|Za|Q01ds-IL`8Ly2@pc}svi2K0re6d)j&AOcndltU)W)JfD zxjE*<3F529vLe{X%(VAJuc#tX30L#SyWe(-4ap$sX4lI+Gl?!?rm(>GgnNIwX-#Nx ziX0LKiDEo!VtAX`^thSn9gjbv0D9H=QX~AB3fD%zC1LgtOMHwFYH;E1^3O}~F|ix~ z<@r>uqF#_m8@2ua8xCY1#WKefjxGPVJN3N_q(N)hgR=`Sm6cqr7>$$TaHb>008Z&ZC~5OPr!H9i_F zw5C(sMPTw)SHU&*#Swjg)ccdzixjQ0{Q3+ZJF}1-7RI z)g6%ehtBZx-{z!fXU31)QpHiiuRiIQhV3w>*iyz3EYaj8Og(jd6{v*$S9|gAI>n|j7 zn$YPs8$W(zycK~3ONoh7OGN28*=IL7U9-hQgS&fOgU_){dZBHU; zLjPc__!67m!qAsdk`9l*dRSzfAsDrEmw8kXy`K3ViejTZ&TX4$TG+_~1C;oN2wVaN zu>VjyMjnzK3RXlCmP=Z$BtcEIK$ru``A=!jIopZ8Kmn?xV8#;vWn=yyObnputpzWI zx){K$c{cqJ*14Q5gfsi2{IT788&j zRFnWm zMHz7S4)B?h>$0@HqR%TOf1ngQU$%;lbu`PKS{4}}saf`V@YM=gXivxNg^P?&)dJnk z%4*E&Iki@itM3aXf^(PCb7pC2IoB?Y*sm}vaXPJQN(1C1BI-~Nmu=p)9@u*TR>x+z8m&K0TW#2)L){RTJ3O(EWU_8Ua z6b0x(A&v7?APPeoGAUe#Wbc$DzACu;i-niYp7XV!IqeOCWZc3gc2b|Tv@^vTlkMk% zKMBToV=p=R!vzoRvAXpv%@%Y}B0NvY-1xLa({rZ=>f-d3DTil)i0$Fdh!eZt5L(a1HyF4^^5? zFq~%Gpedu#N4;iZ!Fe}#*H8745~QKcI8u$BaDor!NUSS-F$NWPtNXo#_|~l`oJRe3 zz3DxAx8Orr<919=SDIWXm$?og7mt$Ib!IzlTHnjg9-QSL49`DO#Ktm1p4ry^Fp>*% z$nUX2WLcs3Bo92;xo@;d>}j-4!L=!8-zEC|C_Haxd#<&1DMoxoH^ay^bz1~gNuF?LE_q7c(zd?6EKn4V*ihsWRpZA$~HHA3s#FWf5^?c>jv;oBR=c_N; zBI9UzT-qB{Ij=qB7Lh(QfH)XJatD-q_N3I5Ota$u{APb*wo#E{mVQEZa-2R+Zk&cr zoJL}1Z(>4@s^vgYKoR1Ak^&{=1oa}YDVZ$gBqjO$ge0{HEzQ3;Qc4jzlCS~=#aWOl z;EBZSh`OxJE7U!hYq&GC{Vik&oFmlzHp^p=(g`GfLm(yQTf;Of#c?AI;Z~!oJu`rG$HTKAL5i zMoA?go6x*tj5Bl4KH9jfs>(5RlCnWxBCu)}M#<5ABy}uZMx_@3jyj6Qh?1?6Dtqee z?V{i!lC~|I`mUib9EKVr`d7pA0vz(+Fb^=bH5Uf2nZ39(ubtAX*^`X^>t{pvFAxsl zd6KFL(>6#O|auAcf_(Mzfr=z01$Q+W)Yy|w%@bEQ*F{>M5DNEUN&eWj!(Vg zhTxLOGjH!_5pHQ{bDY^$g;_A%{0dw9+SGKP-dgI6430#=Jug)p=9-Z$J$u#U8Oa>C zYduul4Sxd87oGI)#&y|74uq3HKD)c%B9w>;Xzs~0V#E?6kjTwKQAZ7F?yYD;n5>Mc<0i&`K=g-)-W|BLzYin1UuUzP}9>}^p1#R9t zO~tWrpHGEnArx!H1^3JQ%v3vw2i4;I*5~)*=`6?!P!>cPw}sdNt1`&p6|0q!nUEihzO$!oUm9!@k8ivenR)&J zT>u`LW+Vc>pB4vFSx`m~y}6S;*%kkYA(W>XaP1lC`q*K`Acf@K!;t*}Qmkx$%*{F# ze^i8v$?)2IA=`P?6N7gH4T@&QPhyc=GHO`NLiZJy6C0m#$OPwb>Kc@H?g!~gF|Yka zABvBWUtn3us%5OHt&;Bh+g2iB!n-7s;BdJLoiEHyGK2{Z`PN{tA13}oeQWy0AK`E)wJ z;&(olT30qBoIMPvjx`yFcLb``P$(XSLjj%u9Bv#2a-B1>MEz=-JR{(1$qX^Ht4HiF z{?Phy=96FUi2Ya+s%mh@t!FYdaON(919G@aT4Gyf*;&pGu%SPDJ_og=zg?m5+Z9}m zq41i7*E5^+@DQIc$3Kg1#JvMBclHqjl-xMbp$736otoH#`cs2IkjIAI%9S(P2qyW7`8 z$<+QAC`$bi-TweZ8!nC?8>Vc0U`vN~onVTJ zd>2QRY=j?{ec7^Q;&($*i$5;k&b4%=gY3K}5iTRN8?K;&O?_G-Qa-pW@qGlQ5LSYJ$uU~a5DM3i>fndbgnypXH@ zv&{|HNz3rH8(5QUjOAAB(C28mRw@(MX<^3+_V{ML6NCO~977h7RJL(~nxIi8 zc!7pqc>BH!_m$Lx(^ zC=jrA=hc$_;dH0d!=#qzl^e8&`N_xfXw}*}F6%oJ!*VmNOtQfOQ~(A@`M}T}^S6+O zAVEnPe0n|>2FS7F#^f* zkzjW`m@1;B?if43{ob)kek;}yD8&T*c?6XJ2J4@w{3z&X-!`wYFr_j2%sdN{A95QH zK&^~D@PGy7a`jE2MYHmsPkhS9)(AhSH#=)t%)T(rzVP2rqP6D8S?vB8i6n8p=Wj@? z9{E+)p=wxTc9E9pK|jd{@{CpeS^S?PAF#$E{s0sCVG4hVpyeSpDVy~YIWxcavWI$l zzvW*pTFZs>0?N7QG;#cE$`&~1qL4ypM+URskONTuENA}PaQ}5i6gl-4nXLw4sBKC1 zLj4OE9mhD=Wo>HH*9P0hX!r8Q5y8}1c&R~Ko~lfG)idn`U>8YK6gjnvN{S5fV?IC3 zk@hN`z(BrjiG} z0e%DMS0~(1Q3XT|_g}Gh%)F}yGX*2X&)kJK@;wuUM9^4dkGg$61HL9QpSc$Ag&eaR()N->3cWzT1o}os z3643BX{i}AQi)!i1E#%BJ2eRlERyQYhb(xne*0<})OK>^XweE{(uuHrnRPca-kVhW zrY3=|(D{Bk;Ek6+JKjghlb=*1inR3tjV$H5{n*jvd6VybZf;8fytBI@ zoE>A8D)IE_G`e|wSz!k{sO#evu6lKZH)|w1XgrrG?EBF001oV1v{^m)v5EQl@mTre z50&wJ20WJ!ek9@fT3@cj!x=$QZEMe4&~z^q~XjooL; z8288g_*wf*o>j|r(v%f1nkr5a2?OyA<8L0PAT!37z~(tBtocvZqso zH_gB9)$c#lNSr}O6k>UzzVX_++D+B_=r6T4jL34Tz8`AjZ_5r?oM}KcoyOv(p!Qq_u7vSEKs*| zo?5Ud5}X*+VsLsZiOf+Bgwc3EG8;N5I9!oQmkwnSg-2|IzdyD%n+tCX)nE@o&w_LA z@1J)>U(F8YO&G7*>eTuir^DAkuxB2PeL|EHttz`0_x_7Qm+dGzl11qX286Jdwo?P* zyIavdTu&ld2jhBq`^XKekir% z+5_l@jaFqxJ~9$ioPs^AitBf)YVA4xVigk4hxfwuDoveOvx*UvKYE<`6JOKwQK zRG&cvJ!KWjq8s3Jaa6K!soFYQb%o}CZe_dnN;RzuvGKd3=p{6YGaRr>?+Z^h7W&|W zucTB&;0Lg|$OSpTwxCf+uj z&D)_{FPOi(ey!5GZV@+iKEeQv%olw=@rG2nxOz2=+`v&tbfzh>%~#DTvi|anU;i_| z5HZ;Bd8#Xykf0=(>>`4saX0NSMhG`J7y`*Y&ENr3=PQuvy4$_FhUPxY#k6k|$xBa- z`lWO)O^2DR5m8h)jC$77ZR>YvQqh#PI|bqWvj!N96+^zACzoTA4H)>(kr1+M>$2~?(4QGc^>!{7G> zB!H``pY~7JQJP+;5JlO#N4cy95yc3o@KVAAK~(ky0ojHf>qYJKrD&V`*eoPCsa_i2 z0!@gUua` z0w~qH7}-}ci?bU_uhmHs4gPdPo&ys}8rB-AOEyF4z3=cPgUKz$)}~f)1$1R?P$0+H z&5c2BEz2E6d> zk_h~q^ zg^wG%c_9ry%rK+7Mg`_v-Tn;W>51M9XBJM>htlrBAH?;qB7XR`j>*HM$==h>RRi0K zZq_*Usm4P3TpZ2Nb6DbTG8LmlH3&{#*>h3&DayQ5p3uNV@%Z=`_;B`1_aVVxmlAzi%<~t2A5&0m6 zs=5jyvq%IgVgpog7eQHl;$L~gV{H^ejr@+X*<50O?^IKuJOM%}L&`|fR25`KMMp~1 z#PHJvlE~v<3gv%z(QM#luNeG)lN3c~0)EW#Qa#eNLrEa6o6D)6 z-XF|7Ds7IvF&7(%R{Y71uluABmfzSJk_U*)EiB)R2?06j4Dj*ZCRlVs?9Hj@4Nu zI?RCI`uY3m=q%bigt{GcQK{HJ-n^<28MH-O({_Jo)7omVkav_%=t?MeI71s(4R??Z zE0L?C@+K}{pd}qU6`AB+5Rexp?^DWP;F*=V+FA^*Nt*r0lL6~17`l6g{k8){o-|LD zNvyKFS0POJn)lRn0;ThY_K&%z0gqse`B`0DzDW$diPj4HC5uGek?F zVC^hcCrec90TAE-g+^$%cw2AvYCr4o^MN>%#hf1;lirQT#40w{d^~X@HHOx zf(;}|Adp|jq4o1;nAX(O07q7*=%{o{UXw;`E4usdtS4k#5Dg707ps&}T@2ftWo+c1 zSYUeQEV#^)eoK_!QB3oPtb3?Ew&=qH8@k3Xf=}Sd{M&We;qnAiQA+j=L50MomY+dD z{DEY>O5a>Y*D-pS!uc$q4*0x_cM*b_F?zt@=k)c9>W}|2DgNQkiXwE~qdK)BHNs+? zbyEas*z{G6oQ%xq!?1O}{sZUHmL{Js6kqcxS9)IFB4VK7Y}1kZTHnkg}v znUjS==AG)5=pog%&2A#1Fi7cB%}HbrTTBUz-DywZVNgv{WR`%uY!gDn6CYSqb>Ova zGx#I0!^Y+Tzx-58hu#-W9;2k zpz0j0P6gY&!;+BS{Ovi#P7Zke=WdKPy!*iP;6eDfeTLkmygu|KTwZfO5E z$KwR`fL6<#VHJpf1EMIiEid=RK-lkMq3bH_?tV`zpXj()l|0#I**r2;_9(Iar_62Y zoHk$hG>B#?e^rJ0UXmLhqcp^8pM(IFUMwc3xR)ZsNq8?!(Ar(;n}ZOH{5j}5$~IZ( zcM1K$dJv8hkIKZkoY*^eRyEq0D>}++LXDlm#nNMY2zK$zUMS4LXSsC%h;D_ctm0*wd>In5j-Ew{z(9+$JZCf8Ler01s}dM<}m8Co{sld2V^c@n$#<0 zB!BuVms1Y-kYN@7v5v@JOnT4s7lUAJV@-`adT~C46&eUvxeMDl*NUBMrWLj&S}Lf3 zs_=UBUXa|DI2B(}MHKrww67wGDq%RupV~51o^MAU8dIA#&V?LBV9o|e4O{Vb8z6gF zHW=_4G)naj2FN=I%+@Yr3kQIdj(odhy6%k&4M}N#HeFbLp)h|P>nyX+&T1t9oN9}2 zAJLsfA^a{Wc?Ncz-6|Cv#=z9=rJj;i;16Q&CrrHtpj*l9vms1#ZQhZAS;4fE7LijcoZ7KR8QW*FR zK2Izn&U)MfYNW}|>fQYIifOX~KcI*Hi7{!#{u$Had65Dc5JJ4<`ioA?%*(q1VvG*u z84QLANF3N5oH4Gig%Gf@suO+QP4sr)Iw_ET;}?X3^*H9sz-n_o^bKIl_ALg~L>xQ$ z`*RiR1Q5vVIzd|^hQ(fa7dqFw(L<9cXrzH~K#SciX89SowtIz0vX2ju-a*}sr2H?= z{((ueE@;<9%Qm0ta&_5umu=g&ZQHhO+qP}n>|*bFzm0Vw&W;l&)*qM=b3_hg=AGBQ zhjolIt|I0Kd6_i-B#qcmE8{mr8R`DbkZrCq6mq+uCC7+If|H(cx3km}_{G=K;VQxPCg=d4UsvY-7N1{+oTEU&^ff zZ{&rrVVnlBt`zTuRJ`2boQJ_*H;DXTdqfN=*b;syKVt|k-&Ve0tPT3Va^H6U98fpB z?9NF2J(zpKLYuytBM%XqDXEmd4eK|M+vu9(A@3?#DO7omA#WKpD3xbJ+Fj|Z)0P9~ zxsF%EI_|yPm6!u1370)`p8Ij%7oXEww7x0WA1je!?r7sxT=^18p9i%?JT*!sE{$fd zz&&{b5(@uUKXy!dYHE>+!X$3)y3JkNqA+;>0CM(C?RKU@D#`;KXeJeYx@Q5{Evs2| z(`J($$@^7x3I^N?z2z~7AabX3UAu{Yp&%BXCfce6rJRJK)8@i=7b}J~=GtX5)SG-S zEYy*M$uVSE*;?CgG>?0UvMSH6B_PO`6!UktYleF0^*L%XxOFt|p)KfD4n65!Dp053 zoq!t;Xd9Zn8nyFN(C16r)$}4<-Vo5rU z`1;-oc{cH>pm$9PHq^LW$IR8Mnk(yg<68Hj#U3lCi%4`Z7zI>JVRS7;XaHFblm6T< zHB~R8K`Jy8`d_vd&LPS&SmqU>Bk?zt^&JJSm^kSHzX4`}Ed!W!%J*lTg^|BHI8wz7 zJ|kDOXfTbV()oO~H>o+n<9AP4aDf2by#lJVvz2FtnF=FOcaQal<|N2aV!JNIClOZlQsDDUlz*bEP{H7Jut%_>ou^eiHC2Ppf66Vmy-hw=8 zt~2LhvZi**LQpm3Z0s_ECybiPoNj6a_Yjn`4A|L1;GSO4)rH(~R)9$rP8jE@iPMaK2g_jxBbyzw60b>1S1eEX5X&U{nyoQ$BpjtF_vLLGbA2^eucJE=-2 zhUPlf;On61qM*#fg5Jq7@NiJL0kXpNnlg8z8+aP1^ymze!@@z|Umb}>)wJ+7?}YIJ zydAuZjh$i0eOIq#rLOaYen;J<<(+}-7R@x(6Q>`GGq7gIRr9(GyvS35j^So@JLA)W zuh*-&@O&DtNtZ3TVPjluU&5oRE;bou_gDoNl&#V}4T>ZtN#EJQ5kABD6wTiX# zd5Xa9^zfLO8#JsmG}2Q6&YI^JU;U_1(~#1Pkrq0$x?Z^p0$7^T)QHTGbA?$ebYAlJ$ra#H0fXS+1MSN}hcGZSf*&dAj?Y>^L)0aJhi==syX)DP} z;C4E&xRxw48!*F-&{3p9Z+iavH?S6~L-KE0t!o?A#RXy(ci{*H{nMyUhC|~m0h(mh zx-ohY_#>Noe12)c*XZ5bEpA&YC+Ty}o4K5)(LU|i{DH~%9dm%u4zlq_I!H5-k1$9N zCoG>+8wOWczF&y_i-J5WA^}KJTx%Vn;{DdSso!;$EBiIB3|9@dHk8QOzm%5-dv1=c z!CK8gWF9IOKa7!-MGo(H_t&xfBzJEa%SA3cTur&(pXGQmAAa^>Bm*@iJ=fGu;5u&N z+#BE_`2TBotqG(FB(5GU*y7@3T4(wukfE%3idUWl6!udke%SUZ91-vKKknJ)z>jie zz%@REV)scA0at8tx=U^B+|u#YGI{)9d@Cvg=(ZDq=>O#+DElU~t6kSyEkWg{eYH6K zN#@4?PMQN9S0Enlkw-$iWm(HhN22m0k;re+&qt=#)d;LZ&GZomx*;_T1^)GiQNKSd zX-iDcu)2M5Lfr0-NBW=(TW~}91RcN|@;$P>vzeCCV)3}Vc-2|1R3%I8(Q^A&jW|2M z_Cb^#__22o8NSy@thlhIq%r6c*oVl~>NVef&g-0@3PMwqek>8wuQq**vlGCL0YVx_ z5naf!5!%4nLTG7DU4YT$S4X4Im=074P931DD;?;ukbKkU`^S}W4G0J)kN(WpO8XhV z74JIhfO=G-jN~Kok@GFul6o2BU!T6PtXa2%dRd%A@7W(8Xryb_x!yrgOfYc}ID$WJ3c;v1fPL+0NjWh%u zP2#9*w67-kIDWVxKp&664w>XSAa`?f2J#j-kokYbfwcZC@5-riZI9duHmbwUhO8m9 z;<%BGh&0fX4Se4JOB~Flt88>xCbC%WgnO1?RXb{xT-aPe0?jGHhuuO1{%irwX-_}T zL64MinyQ(HWi1%KIHjbt)GYmCIk_Z_lyr?7u#*d*Vp3is<0jd?mhz2| zo$mO|#~v%)mnn13*t;=r)Hx?Bln9Pb?KmA0)>B`GJ>WVVTS>x2t-^3vNZE8)UaNZC z%FiB?Kfr8_+EFf@!$Y*$LABd^VwutE0vfJHfQX`$O`AYxG&9}Fo)(teYrM0>&D&bp ziy_8+zwg?^4oB!G$0oUHEfcR-wP0{lMU?)!|#zsP*9ZlBjEym=WAtQ4C4Y%X@F1Fl)VD1~+84x+^Vrq@$FBbWxlQ1K`Yhnf;%Wa2 zu}OylKA``ZMk$AeXRfUXTdzeI#&d(7V!mFIt|l(_=nQTo4}rZtuLx1Xx{lc5%wvD}0fuzH{=3nqH(SveYki^}=7=Lmm&G z@+aCJhv)x388S4~gLK#5;i(Y^s?E`;Hxp-&f3iYd*MBi@h1}f^5$?R6LH3 zYq>0@gK_uOWDgycaA5}BK3H1awC8=LQ3>xKkHB_ED;E39dXncav1|| zWXmVGicDL3)gkYy7F4X{UQgRjzsdeNO>jvgNI;Zem*>LaMotIF})3ELA4D?_Rm1fjrece626Q@GxucnH8v^|D(nG&A{LK1qC|!(4h`Y-Yg8jpM z<%9PG^`aJh$-=lr3pS2LNuzs0%BXISr3Vw*s#v`;8aQjNiBN%K<2%qo^oY<{2p@6hO;LIsnwkN5bxihG`h$7sv znAxtZjg@ixNK3GJKDh#X!c}92LZa|K zT~ETACr?v7609wSg~q5@Ii6mFjA%(JpiN;*&20JZn225AR+@$fiV&4sv?iku?cV!u z_!qd%w9;h`<9`Pie`5hVTJVp#w9<3J1*t!nn6j%XDCI)S`;yOvBc?zfw?6@J;q7WG zlOjuHdgG57gDcx9TsKmm;~xq8FflxcoW3@v@LL6ecvZQ6y&IGSR1|?q!)`OkIHoYc zSwZ?fq9gqjRujx+OJ2i+v(T}{f6%W1d**4CJrZx=PHJu8UftHkUT;{nzO%GZc{DQl zrf@di2Q_qUkaf&*>xz<$s2!+Jk zjw<-QwhwjgtD}@RnDxs_Ce_A0GcwQL_>Ifo4Z6R^>^rl^E)m{8<V=#>qYv>f=QVvLrA()10bg^$jotF5ho5$^w^8K zn5P}OWUtc}R^i@Ck)YYxMOdu(N<$ZG{g1}^0!9ZGufVsr805}QxR2i#Td9{;j-B24 z&A*c!BHYU~&*@itraY_FZQs~ny)y4a4ZarFomk#(N2-d? zsDL}_YxwDE3g&yh*y z(~Xz1H^%mMJUfIG0Zg1Jkq#Wl6I^bXu`mRWAlT{vsSm*rt(FleeWGy)%7AJ9(#-1!R46peH?L5{I@Klfpka8{zPpsuP#!84dx52 z8!xy)`v$5Um&b*l;wA^VZ)Ny(wW_6MML<0=Z~fQOSz#agfgD_$EQ<8s2DSqjPr44+{FHxNNP^1 zp!bkC=t0PHOj(x+1R%X-7iNQ+@4rWSIOs^dj+ zi>Li%N&SKf@X6?F{$YjNklk(mO@0>pNB*B0h{XGYYcG%3;jEJ%3_Hb8{X}xpBB${m zI&FwS1s1;v5(J^S}0)}3?JQS`l?gl-ikawJo>tPA@);Wp2$V3&^_E}}`D zh-}l;*yTpPgMKvo%5ql13S62?&!@SQ`psV_v9@35`PS*CE{28Zq9>eHvCut;;<>Lb z78R}Dw4UaZJ&p~hY;kUIW^&St1BB{-7eGNd1@54$VqV!U6?A+vBx!e*W8pg%1$LL6 zgXTl~_6MLh4SRhB2~GTF5c9*-ZpUn=0#al!RAM%h=4C9Y&SjpeDOs}h-4SHxJMsS@ zlG!NXFDF9Uvnfmg%~I8}`qP#-#Bm*oHyWcGFOyi}FUD>aeSQ}ZSE@$~ z=672)RLW=l$T)4)zHy-NwZlLx6l1qb7^cHFxos>cRB}(Ate!fqhaj>uZ(%31uqTF~ zO5=Yu5BecbkSX>J2yf22PLZwbYY9TgtIa;whoVt@56e zZ=Hq%b18CeL=MGBBuI_A9`HzR6OGl%CRny%Vp=xoWX@a|r$ba{Yd;TFXARmh4S~0i z&idV$R&Mlr|HALkr_B&3gr=O$>TK-xt-{l614!mMk@d4xs*6DMj3)g)O~n!3hEe|T z42*Pc=z2Nb>=ZNQ(oCs7ejg`Ug*z&s>UyDbi`6V;V_hgdc?kTOAL@&3)%rC0K94%N z`B%v>MUmNW38eC(mI)!XoW*{uBgAhz_B(1or<)@aH6F zsmG;eC+Q@N)7Cx)ZXO_09j&UlQw2DkIvw|QB5f?*?ddBb{I9SU?AmBhUqd~`HSI{w4N z3?4{p9Rni@Il%;IC0?+=vOH62!ADT%F>iR$(8X=u5&#XQFfN&Gl9nMBKsAc%KuWlZWj$1w64MdM6M9}?nWkxGV%l_0&yH8cs zxcr4!+v;)RLii2?nAr*JD;icT8;hmwv%Eh&w_LD6h=(X-4qkJ16W8lSK_gYwkZf>o z^impOqYX4YR>xN1PGWKw9{vJX^35T1*HGk3?||-$4vfj80~{T!SIzchsQg0XN`GOu znBLJ7|lxA5Q?)Dj4ZMkl&}A&@N%qyY8@Sc9FG^{Fsx>L5A|h|A(7x^OCs zqtnK)0ntjnDpS_XiO|7-)h6uI{2cOSqGgpTTPd<(FS!ZQ8W1e314OM-a{FpUBbsJf z0X(iVp35LwQswp~}dWEsE zS?S{ia2OyU!QbFBDM)Tv#W9oCgY-y3w^atW5JB4aWFR5?f-q1Ez{A=bFhq)ZWq=xz zP_(!c1py~9$ehJJ{X6>V2tRz>Xb#PoHB_!d$d&O+K%41-o)<6C`;bMrvJHHLUTg03cKXP|E-B#XrskgBygz)N2D3-)cq^D&do7Rgy%YAeb%= zI*UW#F6|%O)3+c53FZW^6_}0ij9O5~ZZbSY*1kls9G)aaGSzI$tS>^*U@y)#HAZu4P-p5tkeTNC(kMl6X z_QTZ5 zA@1)BD%;KfZa!0o=S`VUffyhacTLh9WuaCa(ofx@V8QBbPv-)2u3^{^t5BCe&G<;^ zC)kZy5xp|FlH7X|9q|qL!JV{1+tp!@(?42o4H3cBBaf#_b8w+97jDSJ$n-$2)F_8Q>QvA6xlOPcELO4#J#0$OXGL41^0fMbn-38BgxD$TX1dzHCDn00FS`X)BSj zl2?gUM>Y&>H)4~36OMTN4}JR#glUudjGJHjbpW>@--EctaH@N&N$R~CJ?t0+7+T|4 zdGwrLj;q&hZEl-GM7wxLEvP%Gt@TTk;$a(|UC4*g-Xb#cQM}z#Ac0K^AdJO&@`fL!TJ3hkrDwsyA$%xaZgwCPSNWz7BcSaxWaWSA3*f;ZRK z4_Ui)Is@&rm9lm_vtxAtGE>wyvR0htaF1z0jMuDh-Kvi8y3}_CQW!p^ z^n8K6SH6fGfd}>f919=gZb{|?g0)>sOK8DSOIbe??^6kI!3Y1*GJe>PQz*d;Ah^Mw zL_dS@3t4EvSyNX^#Ksim;>G9Z1i{H~#li&I#o(y7lE6R)xdbW+EdPbDcw**{*yi>V zM)~+G!;jBTi6s$c4RFi4Gm?`DRKHdw(6`ph<3gIOxX}9g?ztUG#%>5CoOH3YB{vfr_$@QGx*#ZL*j#lqlXw~_rk;(|Jnz?bmb24G0V~-frQOEcr^ibT zn&13cK_@QfQc1sN@YK55#erylW;MUqqcOkCq(&b~KDIpB1_9c*0aNqT=GcaUMk2hvt8^P)gw zC#*#6EyJmvp)?SK6{XF}ij7Mu%^qN$!{iTYb!OAw*#DL0dhO+Y(dCEcef+XBoCZ&( zW2Cd^!Lcbib3s{Si{jQ<;Y#f7d{QOy&qhjv5syi(SsjACQga3BZd!?dXc7laD#@La z&00BGt4qmTzV5EruuFVWAi+iV`!|`}L`PE?zsT_806rMhFVGAYk~35lKhtmMc|Pux zULag{DCex7UXpc!xNYH2>EfrC)FX=8$P6elN*aN61GlmZvz2yj1Z?b?+&^57rq6FZ z*gQWaD=8?G0YJ?w$ke1qhlu5v&^V+~#gr4Gq~VOEmX-!6@+)Xr)ao1|#VRa=_J#CQ z!YPJikrYfOJR%gae$g|8RmdBNwcS2w_(}6SOi|jE2`@xOLEnu;CV0dBd!`!q1^tE*7z zvcAlp=J{;2_+rM>r>CE_I4BrAKI{3MxVNr#qh<`8WGuD-fSx5R8 za9#ZgNZQYn#yWm7F@p~&^!5{7F@L^aS@)g9rvlR+Wz zVk~GQ5&-_9AvEYmVkt0TWujy;2Pq}mtIjGDz0^eNBJev)jA!a%IPTQ9@DWVad%k<5epj1%n@QCZZx+~y|nO>XdA-yhjQ zwe?+#2k7YY#7K>++V?m|pTB1%Dz4#n-`ae(^gi6cH2axmns(Bcw8&ZEZKw4nTy()>j-1_I6%;q?_TB)oy{B}v8fnZ*fmBf>cok7)-MBv8!%>^~4kR~iX^mDZa2E(R5BnEJg5BU{j2Q^(+}qlYDy2>YHYs`iSN>+;sG zZ-riTq_$nfF9FlQJFj%fzu4YQmh@#OoSE<($W;y@O8R%IL8)kwi^#-Z>DHEr-9_{& zpOw1dM@r4FOR3Uyhc6vmIIv7XPu&3Ew{pKW=DDnSn9NS17qVGEth?EBFQqcSy`48L zZQsY7la65_b)XFKURT!_bUt?hrf7tdiI9KKE~u(``c{eY&0u@V9$Ix1s*5(`XBaX?&b}@HP5R$JZH$`B>RJL@L!3j5I{f~y_htm=z{d*+ynzNwdCTs zgkDQ=r}1J<^mLA=)x7$iOg3Fh`iTMv2*a3ACzs*ByHxTg7=ivf$I2(>H^vM@M3-$W z_>t$q(ZMlo;NTFCn+NmuYGcJITZ`zlzm#9gu}Hx9NCctC(xViD7=zr?h9!u^Bm(Mz z;)yBAM=U7qw57xc{m2P;_%%RsV}#WSiDIEogppy0m5-A`3nGllzOKm_iBOPP1dI|& z=!4}*DnO89;>mvpLD3l&>E}d3sx+awS?>lqsw*37z3wIR90u>~K627l-imAf0}2?3 z%pm6{4#fJ0_FCjT4#@ALT=(ePYc{7iuQ>lhr_QkVZ|Z^eb`q!SGeKXY1@>hH5660P zS+>XY`vhmNubT};a5Xx(20v=BWa2us=Ps&RL2K`ZRQ{vplIhvzlF9{l6aj&lJ9GZG z*o(qLSd1q^SmOu-G>!VluN2GglA+}bm|D+82aHrSOoKd58+qmy(h1FvC4toj zkv6N4!a?9h99M&EBJnX50f0;b9hiEPrrE(!=r=u5*|Q^P$noc+qm6V$u{JlR2CE7y ze!sc<37>mwib7#MEv#tYrdq|bSQ?!iL^Q(&qf_Z?oE51*&o$>H z;7ybW+#rs2r9+(*gQgtIWZHABlU9~b^c7_v!Xcr^hGMJPJJHJ~*=QG|VzpMLV4@!o z?qk4oK`82ZCHb*_>)$=kSv?#|r*xGt4c(Z*ZTH!tS05Y<&8U-G!o=FRvupIL2G-vr z{%je$DOd>#-z6d+?}nt>s8EwrcFQwaycdu_@b0Tos? ze$9D>M=A+ieatoq2V|V+FYBp4GGS+hX@^XDK-VK$#`%0A1eU)Z={Xum|K1ujz%Vg0 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 literal 0 HcmV?d00001 diff --git a/pr-preview/pr-114/bare_pr_preview/packed-refs b/pr-preview/pr-114/bare_pr_preview/packed-refs new file mode 100644 index 0000000..13103b0 --- /dev/null +++ b/pr-preview/pr-114/bare_pr_preview/packed-refs @@ -0,0 +1,30 @@ +# pack-refs with: peeled fully-peeled sorted +5167fb64eed94956ee828ff354b51ef7806fdb04 refs/heads/example-preview +288b93b57b27b83abc37ff50d0ad9bb700bbeed3 refs/heads/gh-pages +ac89ba39103a4cf56a22d338d5c64c1aef0cfa92 refs/heads/jekyll-docs +e50528e2e93a625266959a4f6e739b2d15409ffb refs/heads/main +ca3a91c34f603e4cf06a58338ffa0dcb32c39bb3 refs/heads/parametrise-pr-values +f5db5c92badaca355476a4831dd122195ab29956 refs/tags/v0.0.0 +55df7d7c97c37ddfcad91d8da3700c1c80913ead refs/tags/v0.0.1 +30a02270046756a3e8bcad2923fddbfab73783be refs/tags/v0.0.2 +f31d5aa7b364955ea86228b9dcd346dc3f29c408 refs/tags/v1 +fca13e940d9437bb975801f2c4005734ce2eefcb refs/tags/v1.0 +fca13e940d9437bb975801f2c4005734ce2eefcb refs/tags/v1.0.0 +98706dff8eaffcef39fbd5c5cadd2c6339bbd60b refs/tags/v1.1 +591779e70aba2ce461521af517b269dac0221c77 refs/tags/v1.1.0 +98706dff8eaffcef39fbd5c5cadd2c6339bbd60b refs/tags/v1.1.1 +eac2838daf487e8f054a4bc10dc957431cd6270b refs/tags/v1.2 +eac2838daf487e8f054a4bc10dc957431cd6270b refs/tags/v1.2.0 +699c12bae12472ca7f43d0654858b16c3e60dab9 refs/tags/v1.3 +9dac5c4777c535516ebf819f93aeadac70f66488 refs/tags/v1.3.0 +2a652922e9b9c53e7e5ea62fa38da744de09043c refs/tags/v1.3.1 +699c12bae12472ca7f43d0654858b16c3e60dab9 refs/tags/v1.3.2 +f31d5aa7b364955ea86228b9dcd346dc3f29c408 refs/tags/v1.4 +022361539c71c58a7141d4fe8c3e0e4a1c34f9c5 refs/tags/v1.4.0 +60ad6fc41be190767f6c3cc5d87c0a4dc03e3022 refs/tags/v1.4.1 +70d0e7a39b1712a874aeba33b936c6fdf795617a refs/tags/v1.4.2 +b3a95bc3cdbc27d8941e9b74c5c294c9c9fcb12b refs/tags/v1.4.3 +183082fd714654433c8e2f6daedbfb4f20f2a94a refs/tags/v1.4.4 +7df1ee45a802b8bc8dca1845a5241d118c610810 refs/tags/v1.4.5 +4668d7cb417ce7067b0b59bc152b1ae1513010de refs/tags/v1.4.6 +f31d5aa7b364955ea86228b9dcd346dc3f29c408 refs/tags/v1.4.7 diff --git a/pr-preview/pr-114/index.html b/pr-preview/pr-114/index.html new file mode 100644 index 0000000..b6f5718 --- /dev/null +++ b/pr-preview/pr-114/index.html @@ -0,0 +1,63 @@ + + + + The Plaine & Easie Code + + + +
+ +
+ +

+ The Plaine & Easie Code is a music notation encoding system + designed for the capture of melodic incipits: Short fragments of + music notation that help to identify the musical work. +

+ +

Version 1

+ +

+ Plaine & Easie version 1 is the + currently accepted version of the specification. +

+ +

Version 2

+ +

+ Plaine & Easie version 2 + specification is under preparation. It is due to contain significant + changes, and should not be used until it is finalized. +

+ +

+ Encoding guidelines for Plaine + & Easie are also in preparation. +

+ +

+ Developed and maintained by the RISM Editorial Center and the RISM + Digital Center. +

+ + diff --git a/pr-preview/pr-114/static/img/dc-logo.png b/pr-preview/pr-114/static/img/dc-logo.png new file mode 100644 index 0000000000000000000000000000000000000000..c1131c8e3de8dd8af26e9ae94067e47010c26efa GIT binary patch literal 10750 zcmWk!1ymI87oFXuI|Zaey1R4fk`jZA78sMQh+1GObcUHJb2wuhRjHvphd z{eK0KXyjm_PEz?OoA?;GJNWopd)Wj2{{FnqZZ6)o)*kk}?p}`BN7By$fB{g4Dj2@Y zIm`_Trm^oB37hK5F3vblv2&cIep&pQh^+aCg*>tNU*ZlEGO{R9xHb-taKQ79Pq5zeQ8{q za+FhdScP9LOvs*D=28D<9;$Kkx0mCO$#f(+(_)fLji3S?KHc> z|B3hnPxD4gS9OHGCmdl#q%`#BCsI;u_otNbM88P1V+$F@Lya%^wXPi7yY{se|V zJ#d)c-`h(IT3Ur;qSATP=zEgW#0;kE<8g5kDAPXWCX{j@1JJL7}DR~9byzRL4b ze!)4)l?hrdUR_Nv9aCnI6i}WOC6ZzHd5GvtN|M7X)9R%XG8g7QL1*m*5Ks89lz=xB zAfBJdwn{f-?d0#&0(lUZt;Rr4ljA3@!$S-3whBse7r&;uz*#-;qaR23L&PUrL3(lm zYaAciO9UwKK9+l!)^`?epm7Yj0yp9fw>@5`y=IWnzmV>Y{|?_r$$tyF0^Zb$lZcl6P|8o@TD2(ymecP-Sj7d?XF<{I!7N!mp3fIq`B?j>E zv;3B@5=7p<136ZV`%1;W0q#}R0=z6#M`CW$xzZ~uD+hCRcB}z;=phde&j6|(A#M>C>9+mbAp zub!s=Jc<;7oWp!ym(&d{!kxXCBZPrI30i#s+a?ejpR{akeF1SdNVIe?(hwvzOBbc7 zu{7fJ7xa#ek^cMtFypaY@A`;-0jwi*%!OCVR#p>g zY=AppC%5j}y!%?-p4kw#>6D=~rUE$Wr^aB5$3<8Sb>l+20H5~(oTS<> zY+uX4Gm*%cLAkMW{My=b@rV!Y$q`Rr50fzeD?{MGAk`08igW5hYsFrtt=OlRkF~`T zM@MMm|30B_y5SGuMe38-ScS0LIWqou4sMTg(sT~EVM}J(4oO=IiGqdVM2oFM0fRvJ z1MqB1F$tnz^ox#C&~y*;zwd}+;^}eyu^_Rx^U3FDuZ%AAfh%~Jj#g>$+0K-IYFgSa zpgkHcM<=5LP1Xm?yZicH4C;?ji@7ad=dH**<9RL2LlW1Vjm+J-y2}@~e@E3n>b&N| zL=BFR&rvQeE#21Q*gA8due*JCY`!uwy5Ir4<9?v7r54(o-}4YZ%IFN`i`7BLo3Jf1 zfIeX?**%F&sfGyxSfKpEw~*&rlhI#C|DtAjE5F}*eW~Kc7GtoD;h`PlbR!S-pNB%R8_s6C~H70pz$qkWp z+!Y(Nea7rVX!#fvm9AtaJjQ&s0n(s`*z0JF zLoJn+ZlHR8BCMzwuffH|#YQ!je=Ok!6H2+zb3vgPn2Bo=m_Iv~*I%4w$JofoqTYHi zddKV3q45K}$|h8<0`(~}FZPi;(&qCWJ|jto+G%M!DYbnVg+;E5QNVpXd=NbUBJLKX z1@@L8P9r|S7M_5%YlTfoa4oH z?BDk8X)xo@ zc0LyWCZ$5EmXE?%rK}d$!Z>W`RS^E~M&u<*KjITOlR4@Hl9@m8 zaCx}o|Gr}R0eUXdxAs(R(KR{k;OL+m|tBqeA9S|n<49288e;+w2M*}k~rCw9!^VVIg7F&M#WBrb{pDvz} zf2>U8Utowb!L&_Rd7GL)7F$?Ys0q>n_+J_t{u%%CoMWp9(VYU%j$`jySOmQ^G7=#i zPVo~Hl4}S!bD-^qpm2e6+0}wg%X_vc2Mva*MyZReOD;g}lhhA$?(lukrb46Y?2($^ zLv>OTt!PX~S&z&Xg@0~gYUB^n*`3#C1!)474Br&FF}@DUMu|v3=X~!+Q7?IBy289r z^W~>FX}{5&Z3)6wRK5hY;NFReHZ9aVM&6vY?a$Tht1Zmf4MyV+ph9H-wV7F+W^1-A z4Kyt?mM-o!xHwgBzn{Xz#YHZC{IMD*PrQ=E-pY7<@1BtanNLxhC*mRv(@OYa5!g^* z?zv9{z6_kL<_dyOh3oyL;Fo+d@KdDDj3YcAdYn;$4+KYDBm-We@n)u*UfP%*dXbd+ zq06N=CQNS}Y7pmOrua#lMnRV(;mS%KhC)q19(kcXy;&M?!UGiV-$t5WI{W&lzw{W$ zX)%yj3c3r@j{m2xwLk}Ca^Kzd;@J92(e}iSewg$lq{Btap}T8S!s@QBhj{1H}{CwjQsNh|dzYG|55O#Dp=@qKP{=pGxemFW4UbLJ?j$$}1KE{IB~ zX=_h7X5Qr3QS5gI*|u^iJKnCFjOReBCW0J$9?|c4%@^H0AO1DQfrMj9n*2>Z-l(~66d7cm=L!c z2n^P)Lz|P~1Bk1jp4E2K>e~G)Y{pPLm`YI4U553wH4VQfj*jB_>)hAHL`nu8jIB+- z6j(iTvl82hvtwsuCo%&x4vOO9dLhhzyyh2FeWGfFk_YT3wzgJpCnul&RQ6f$B9-lq zxqu|kcT`2~pm4ZFkD?xQ+p9Ndte0C%xaYp-M)0=j_Vw~EpeRmv7jznN94T1usM>yKiF(89UH3? z!+5W2H@}l?&0zgNt3-_JDUwKeox>1Yt8*((Rls+^|Bvd-ad`Z>!y_iKQI_8c8e-4? z8&*x_Uq^n${EXUt+=ew}Gi}QIjhnGZbXJ&J zKU3tgvpoYfDSh$V3+?<+ljslvDzN@>Fi8MH{2JnrR!B2)XCZLd3&h-A-GLH0-n@B} z6tOpqx89;v$6Q!`JY;HY?y0OYM_7mCO0NEDpQLBhg4Mr;n#G^s+Y(C@iO0ROdp?$* z6M8qxc15#I8~fz8idZ@HJGq%TvF7upTcC3#im$1D{C<~HlIT6nBCo*G_)9G0wgdn0 zaL@tAn&VUK=|mq6qK!dzJ47RYb`SKQ&)1OeS;LtfpJQJ!hmI^PYn$M{@i^EzUffSns$up}|@=NL?$3ody<3}A=;^h&H5?6Isn zc_%Fw>3qq|v{tH}Ex2ljiv~Uf3XR;KS5;LRu#T2jRKQ0OZG@)l+;JG`{AXYGf)73r zU1jyr>7nr32SZmOMmMw!eU<92UCHU>Jcd*gDnoxFnY7Usyxmj}cA1oNJ<8srSISvB z2tMI1bK{>egJyyq#_3S>f}PY006$% zTn#9z8{Jw|fxaqB)@uCEVVki`}gmy zf~o1k4k$+p`l+JwFM9nP$t#Utzkcm#a=6D3YtKXO^i3sfrwf&1P>`iO?r4XD8j>j+ zaw~)a7z&i1{fzh{^)_JJo^w+(N$Kh7xu-53+0$9k{E>HLTRwm{cMSb_GgG-QGDiq+ z(WKPboyfyAW!7HnJZkFjQuT}MA8_4iaw0}nGcx34U^Tk6l|M1i)|03nAvMG;X(>V4N21t0j*yEfSSAMieSCdG?Ab-vC$hz^q;e;{ z0crffn2l$Ef{{^JQRQDgL!*b1%F09NIeR!9>O&2;TIL>Hg-;Dw;)o+?Ld4{ z@KSTEH}hA-(NRWG?e!f4Lzsb!M`!hZC*iYC(txUtS4Xd4YA9=`xz&dbxN3j; zZXOtfjYBZFVBcI%DsP;Elmhb5J&J1gRnfr_-?PQsTQ36mGd@`Wovb=JPIn>gXOmJv z;D~>Oyizp zp&tU%}ka=_E`4PV6f)(TFxD-QMS-A>cmjoCJyB3~`?1R(ZE#to3pLSUV^_jmn`nHv>B$t?<>UJ_7K!l?ewNcWDT;{GD zKrX7yN<7V%wQ|I#?|CZXOCOx<#DqwEpnePWENF>z`Y;*%Vnc3cHhcN#3$;>#vEU&r ztuQzzqJ00L?{DP5&ff_+n*P=(>xkXtUri1l<-)IgUJ_xUtzw>p_HO-P^Tgqe^{HZ2 z_IYs1A1817>bT9}AzqrCO3rYL7jD4fk@J!7a6R1kDc;IF45=3)uV{4)Nvblto_6ay? z->Q!lr{S1|DKBXHNFaW2syFWit*ltgiTY8yN@GOoXt_6n2V;MI;jwPegl6m^+*62F zK8M_4K!A9fBoqq{O&Gd3gwwa1mod_Wdj8NCNHF0O7iCT)NF9cqXdfq1v87#JiM?kp zNWp=S$~W6zG&{4|6K_x%o%HtP=C<|@lC-M>6b#z~$_V3X&yG;C3C?V??SWLSZ)zWM z-i2+u&h?NA;JE&FXdFOC1cQhtTwPqeD=H-c7`0HJJhUc4zF#!S%IH@w6t7^3hCL-3}uWm6vnO{_o4K( z%9%v6@$JQ>`_QK~kUVO*e%aTaL=H!wleUeG4K|xEmP7810#emVWdz-gTC)d!(_LAd zoV=`zt*?)iQrOpXW$xw+N(opQ+5PZ!B)I>BmBv?IbgYn~Q78hNEci{n{^=#eKg+t)Rw> zlk%*>s>;BM+Wj_=hbf(kGLXbl$P9WXO{Y74zBgOfAixoVyBGXu%injBjp8mkm@m-* zWo2c9WY$q8;#@5G7ln?%vI;aG?W@D0eG!SC1J&7YMVZ_GyC{yp{YXoT$|vUI@bU$(zocIR1JjwO>GC+{D$I0LPE4LF z7K|9{X8XneyeI=98gufNG@J3F!@Tt|Hk#Utb$T?_er6LerBC8y1l^z3d`9`yne+DR-xpm9c#+- ztF?sPAQw(fIzi;ug@Lypy~aBtA@VCpv|(l_nubz`qh9o8W$wG>Nt}tgoJN}z*M@OB z2y4JYS_Q}gOVsr&o9#L{_C@Yf-CJ6%^j`U~L#%|JmK)e;bkf4VxkZb(Dw{5(?ss-} z8jOl8zmv|}ga_c`m3_LCl#-$tl5EPP(#Z#(q>gNM3?SZkIsad`LcJ%pl><|tjHDz! zsHqgQ#oY5dd0)@nQI}A>gjm@aHjc4{#i4N7k)Q!Q^JWx9OXrqy4(ol|~6!Br`@LuUI zfC@V+NWEk`;;&~{A5~EQdDC|}o(-Z!9uBOGC5 z?FiQ5dQNe6v^s#C|1*)iFssPQ8gECDwBlxoS^0}!j-p(yC zjfY=jXa`X`a6C)+&%ZiPTB3+VKr6ML;>0~;+>h)EJo$KZB&V9dNkgOpUoc5w?fKHv z6T>Vy`{Qe<8F$Qw!EDe_wnpsa8^10-CXNjJcu2F|UwrmMznQpyGRl1DfWxG{LQe&M zx=Mv*3`@@<3lWyI4wMi?gy^!sWP2$sdo;f#^2-fkTknSmt$617j&;Nsi{ zGRGet&OpmwYN{JdTnq(H^c!2bp>GS`C(f=hU#ZkxVo=@pA2<^SxLN5b%@sQm{rqF(vrUCS4v}8=jkjB8tKJ(Im+|7%GZ0GN zVH15jPn3bKhBck$EOYErZPh1hXkih8PrRZD9YS*`JStOKy9DzjiUmfTm z^5xd_EG>J};S`|uh0W8qr*{uwpYjWFtsP0I^(Q&Kdt7V8bXbON@$^|=B(5j1;M87S z#el*i3{b@)d0+Z2g2{%?e2MsEMo>G5*)%A=;ziye87+T2Kgo2Z-HvH&`r9MNz`+;A zLu1~C3r|^cpA3vdiuBBp7gGXF`S1rp2z?@?1cgatfhWiyh4m(X=C(={icIbI^z@9w z?EYhPkfpDWPFPG_Hzngz>o$yiAzG0sx7z3JIL3tPPh;cZ&AVN~r;Svi$fs+1|NTqc z*BEJB+PbB)=~>7O%d8C1a`RGSAQgILlTXUJjLuMy#R=jQiB=4w`o=@5g5fa9Nvgxk zSokCm#$&Ci6^v7O)P20obQ;F0#^D0^2%U9bUS8fdQzYsmw3??Uz7>TJeHLseWIjvA z#YFW9pVH+EsUml8f6bQCx_ZZXF0y(>e^4{Jbn3d9#VUdWx0g>u zb=zS&=gUlzUx{I#N=1ZV7pi=pJ9~dKW;3LqI+!e?`LfTdoind&fBM8fTI%ROcADzZ zT^Jb_->cT3gvjoxt=FUdA@hCo4Jdw7(yXP&q92oKilG_cRC!s!K7H{FXmC073Ekm9 zD}s8How0?uU3DmZIqJ9G{?4DG`$~oBvz4*2@e(hUp;0bx$ugK(=;OAJr17WXoY1~L z^5H=zn#&O&Q8^OmcgVdSxKL>-+uxJwS$?ic@ni;75xHf7nl7tL!%zNVWo3Qrof`k&Oo8?H7rIy z{xc|(uLq9Br0?jY#TvNPsCgE$P_FzQhd^!-rboPQVV_S(Qy zV)tmzyKBm^(2g<7ApY)--m;7xJ3Ev#)A+N%ua?>maS;Xs-8v)>?w(;`CTwqP3wJ0@ z=$go`g@p2vU!9Eu^ovI=Ec65nFk9;{aQp9-Q4P}kgHE59deb%h_rIElyTV~Z2GQgc=+8ITS!x+CGCPnEv zO0A5$)oZZrh!)3AO`$`5SOt^w;W5HoEQL-fqm3w@F`H8o|4%qvH}d9~VG$DsAY>Sx zW7@LtK=@7B0y{)p3L_d2+q#Y&TE9t{`vK-&o=x&buC6dWAyR2Y|1FNVj+)yLg;07E8JXkmO6G#5J zvj(cD-Hdm7T!+m_q+XlXYO+kX#qCLqmLGsJYGj0mAf(Zu-vKgTCOB@s-?A6Hi6{{bJiiZ!T5!c`=^e%Da4c-$86wF6gR8M zmGu342W5$6w=W=ITEto3VDVggzuUQb?4 z1_tAG^?LCJS%}y8ye;0_SLShLjgJ$4*4g1E(q`efQW*1iYWI9yDSrIf&R6+60%dO@ z1bwY&^s=$#&(!{XXYI(nqs#|$OnUAR?AEsCqY-CM?-OFFMm#)kfxXyu1SfT>b4x_@32{5OtvO`^kZ)raz} zL`laA7rt|xqQhk9?>Cbvc&SJ}14j2!UL~2zc(X_d+)sMVqpU6?lVpDU0?t!;W&pw$ z@Lm13YXPGi&5jHT2eD0y!7_bq;9bbl*2{s&sYBW92p2%wq|DiQUzvj4gW*q$52B^u zWip&kd4v5@JAWznWq@7vX12hf{WG(9o?@CN1$^{jf`B^wUz7xW{eI{eneG=I=4byH zX6pL^Mv?_Am?Q`ZbzMWp!D9Y}h;(%#S3|65kTZs7k!Uz+E<1eeK2{I)S< z7l#$|q^qD$9;O?dsf~5He$h(=z3Ny|4Zl$U7#Ml!d3YP)icmgCJEWghe{2l}TEPnf ze^VW_mA~tC67|K1s6};DFw$5$g#FsJyZAG@6{tRXj3pkQxxYX7oA{$A?@QRcx265~ zTu;#8lZf@VDlH#un=gtaxq(Mf*zZc){C9mvREbd91!;V29@BagY*l!UP6wTUKxKkV zCLJ|@l&$}SCutH*L04Io8zwjIRa-i6^Z!W-N08@zZ5Wfbhcg_ zMqA_9p{y#u9D(L@Ht^ihTyu#fgMIyj+6H<&8^;&~&s-jQjLSG_(rG(#89Z*ZUNl~A z>;Zc@N+0n;Rf>4UN;u$Or1{SmQZHY1nt!2zW`lBY*C8=Pj@v11-o$-sW=H_H|&Ad3z|IefPNd0Zd*Aj#SJmlMad zMWxc67pW!B;_&XR4m`n=$uC~G3mX{*3($LsbeKD)q=tnTEW0-mm64@(^*dQ364&** zg&eflX(`)r??}g$KWq8y=V6of9j?-CODXk3!G z(Fxp!b0Srp^;5a9+woNj?@dF17KeaR z=f#s}mr+w`>XO&%$N*dk8vg?VjQlHt>EdmJ)L9UB^zUHOmQgvA0}pP?MqAZIPI7dd zKM4YL>w0tP8M<^H;M4@J; z9A-`A$OdM7pn2_V<}MT?iK$5X6pvCFZDe5n!42{i^bQwMhaI!oQZlffz4s;^^7F600009a7bBm000He z000He0d2HjfdBvi8FWQhbW?9;ba!ELWdL_~cP?peYja~^aAhuUa%Y?FJQ@H1AOJ~3 zK~#90?VWjiTvheJzvoSshO(q(ZCL~q;fHLp{6N_^wMv^wF$Ls@l#;%5AzRr*1xFDD zsZEp6B`+*h${J|W7AbiHx)WL&h14b|>F=B+3z>M*>HH>@vusypQrE77x)I{55MA z{C$wGpCiYZ;*+CL%I@|N+;|MeOhcK5a6lTpdJ#6FvJrS6)sGO_8r4EnP>Ml|L3RRm z2l5kK?^Q(Z!pNPhu6$u&H#od zGoG@P-R&dz)+AIuj|m=%$f3ZOf&F4y{uyYbOYUY}RaZu1pIP5az$T19z z4TWMi<+G`)9P|gkt_fOgL8Ok}?xn1~h22uqbC$AB1J3dO(pOjK4PjEg&` zbRsgBwyG7wFW3+NcE+NWC%U z5o63Fz&A!(o*bi_(VXZaF<%GTL9SqW!!aW*QjQ$iFtQ3| z>cX8ut2x_voPCn~ai`LH(YwPf)`+mCW+U)zKrk$!>~7ykiv^Y6(WXi}Xl#==jaCZpD(oT?XjQM5ZY{}bl z74T2c@8_(P9Ak}J-YFb{J_Bv{c2k`#wEm46vF8OjzFF=2c!PDRhK zjhQWC?m=Z{R(;EsY)i}h4+mGE9Em6|FW=SY^BrM~*~PLfV~p9DmzVdaWy_Y0-W)wc zKprKFzl%@=*1Movfh~wCSOut#M`Z${;}Nz+84t1p=r+JMAU;GpP<;ce=Md{jS}*!% z!qLR{UoiV?ru(aVs)c6tW zbX51Ehwa$Z8N}bv4*CXe-q}|$`U=P<(8I9!GN!kh)ffLaqyJ5R!$ORCoHaFTGU}Iz zw%RTD>(^6uw=Zeh$mtE=z-R+d6nbq#Pp}49HYjpr$(%WJ{?{1u$4vTImUZ~@<;$M| zuxApIBzko;^iG?hjpikLAmkueWXcb>K6Z$Q9!Ij^kVt zd7!+!{20r!ehi$Xsy-1xRS^+_!C<#-+rL)TE1H{|Jxi?2o;~|^5jiKtxE}(q0IR#Z zyBDumu_7v@qN1XrQdJv(t&Zc2Pj;b*wune`Q&W?jti5g9Zv#64S2&JyZ3;QbL-clc zhp!&ncT@!kJ^0~-VtslbQXy#QW2n6b!C(I`;8uF_Z-~pFwyNq)O6%8$vX%jQ1uY9U z!vZM2#ZSlk_aJ=3dk?e%T1i{Y4XJJl0Dt`v2#ZiX0fZPu<^$am*b_Jo)zH4{$a~GN z1JYM0ZjO_Su{aSJ9EIWv^E)~>><%PeN;hT!$i5K=N@=TY8$20C9R;|lKz9X>HpbLe zR8+L)<>k#@vSi7yMONFk9RRMxbsZR0{k@31CL)%q?hhOROcjx@*|uHnI8L?-ep}q! zK!+6+6r4Y2&YY8%FJJz8HWyOW3nSj2J#XH;1xuGM9W+ZekG9&^`O5WQWqjcuQT>8P zn~k9B5P1jXeN?)!*dEmhAQM6N2M(d%AG06uBl3GLp`^Zs)z!DeT<=dnDeyA+lUMW| zU2#DtrORfa-7f+=ddTrChizF(I*&`4kpYJiWcQaT!Vsu|bj>QeG zn-q5qH51~FCBtxxtCZwOrq!R!n(9X~>Ys?9c?7ZcCXqrZX*dw{8M?JI%sM$UWl^73kzE?pY+12lK;-2H>W;1b|eV2N$pJ&xnt znBbBRJC1W&?7=`Fkk{Vc{uvSZx~eV&_BO`c2*kBb#q8O$kHSrwz8-i7IJBpyX9jR{ zrq@b@>qB|)(vK)z{2h?B9&K);t>)sSS1DVv8@;`kp;Q6k=+5mCZpL4K0BzNm_q8?h zM?_0Ou8lL}Tjy@V-*5-$MINKvkyZ_zl7?@hdK+N{r+PgFTfXlGj79MT@JsBbi+KBE zKPuM~X$D(Xe4I>DbkDx@GL~Kn430usTl*p<4PQz!?mQy%+W0j6>EIZ}ahx9DtVyds?gGvP7TdP{ zh~qe~raM+35a0jm9 zx#-upbF~=s-zl%sGXE`Fs}~@g3B=Z(xr~y<^CCuk3go}!Z@%60TE;x&ecbwON;#(1 z?}cbH;rkM|6Ym&8XX=w=- z78cIJeSpV{$mPk}CqqQSQ)$6_4_rddJMX;lK-gDvYj1Dw9Y7HH((Ku@y=Ep^(XUY4 zRgYKVTBvMJ`)aM#t8q=xXhaq=wSF%E@_c_qxhCO5E>^q@06m)6*&8O00DX!;9;LPF zy0qj5XsLLQt=%(#7u^GznL=?L)%}RCHnaXoXsPrr3nGQ*0o(VBz?*|M<`^SCKfe*^ z!L^XR_J|D%wr%ePd=)@MeipKplG51N_&(4GpsL@ht*tG}W^7gM`@uKHWaKLjuzqLdjPb||Bx?kZcZ$b zwbA3~d#tN^Kk2w-OLjveOkHJB#w98qy!0cGkRs5`B2-oOiTAJ-+tf;}yLSrG=Y)k|@6+iE96?*vgZS%LgKVF=aRkC=V~*q_`PINBS;>(K zf5R!jfiXvSq-@bdcjat!;q&>9nLT@UqQv6>h{(S)@h^Dr58x;f*=+#VNQ$Z+5_EAvg9II%=kuMQnr($dnBcp4vrZQBO`$Kp{dh=HF$nYVvcH0P zp9e-=x=dAV5=og8{c7N<0gSOFG)87W2AQ#AXsov~=@bYAjBVQ+fqg~9%aZ(}ZQF7F zLlN0lRX?YyI{`f+vQ$;C@#vq7S?;CeH%(1VeY23p#>V$6Dk|2h>I_^9W{?$%=vFrd zB?3cs5v9s+ktl@%=+UH7D2PIRC(&8l($K~dJ-sm2!9b>Fq06e;4M6(Y-K~OH>m??#C!pC?fKdrm%KZHM_r82+Oj3p`fxM+s2`)Dk4Z4+R+0E zU&G_vL_C&)W18OE+uQrIn{K)(?Pt=q?R?x!fDkd=31f`8O+;ph$fnbb4a{xVn|mwvLzS{Rtz8xB`u6GyM!WDhb%dlh=iS?iE3h_GPUgmK;AJ|7kz6+e~^Z8D&ZTrY{%bAGCR8`#-Kvh3qQBe`K%A~3VxS^buF=iG6 zun-~kOKI2|AEjy%hkPeP>9jn;VkimL4YCPpkO6$HvYwaJ>9CIKfvQPka zWy^c#0yhoHNK+aL!CaWQq>_AoP{tX9h{zX1Z#~1@2Ln}oK4hHiJ9qBf3F-P#-hA`T z{VmHH4EY=CxwUW{syrOOg7o+zKOm>#V)RJCBH=Lj&Ev<9zi+6vY-kA{k6#c~wB{HO3Y zB%78Dl+T6!HFV0IKxG=azU`R4c*vGbM;n1az_M-o z$ACX{==uRXuxX*HKfn#5+pn{;a|uaG`UV1lyn=#)U*fI;e&F-@(hs(bANTdp+m!pv z0KE(!|0!|LOSp2JBR zzqWyZp|tT*R39Qfanxr)A7|R)b68XJc$zY#hg&){w8A9oSy$DCzwXCiO(*(`b{r-3 zUuJdnlUa`y8OSDPX=p|4-@rjp?RsTDGFhb>1}w|ke(v14DIbJjF!*6?^r@;A#rEy# z=_&U4e8;!9w=clm@CNW;M@Pr?gD15&j^jLS+xGW?>qO*2+qQQ$#?;(+lSh+uM5$ zkRJ>N&j+FupNPc$4ZMi4P&_Pw{49JZ&rSFWut)Sky(8^9I})?1qb5BWS}T7G{3yZM z$yoAR{PlrBEl;uI4to)OdTdncz6i&w$HuS0JZZmi1~y zMa5ri+rG!P?N-~ipI6nt<0_L*5xKCbsVU`yor3W5WA*g(c+3F$32piV_}#K)%Tg}K zhjvOo2B505h_Sj<^{O=fes4u96fX;fS&dTnO+y4vLG9b^iQQC<0vdEUa={DO6&e7t8seOj>yI9L}Z-vP$;9rF>8$J z#Z82i$t%)2*^;E)E5O4da;4AbJHTIBiFJ>fpar2JueFVr@zDU;(kKU3ACaAT{w zRrLtmUB!OjVBFQpyF}!WrlzLYG#&tm$VWg&su&%Bf`WpVadY%^7-RajnHXa_Lvn8c zux)z>;Kb0ew09DV$cj*(oo(9=$B-ra8^pb$=YIbB^Kj=|5tw~wt9?B!iOTNw(X*ir zsEj#t6>Zg5dv)=|U;hx%K|a5ut@?zt`=f%t;ab3JT|eAr6IkcbR`p=|*Y%*ZehwPS zj3)8}TC4gMiNF3)+&^q24sF$5S^pDrQXr4wiLZr{LiN%c+?)FrtPhPpA0;~Jl+a3R zb=oTs$*^tvG2CBSfZ0j%d3>s=tgPI=v$OLc5!ppmjjC?iZoBQC8)|>fXd^bTtvAkh zW96r39h59Snw|~U;3kuayk;ARZN4V0#7JS3-YA1h(pcq*9#d)Ka{P;509l4-8bR3w zbRGWs>)6t96^{ne2%hu6P1F>UJ0{hG=ryRsDwOk?UKa>OvxJeB-RcXvjdjygptFs_%g~Nab1<$DA+tJ zt;9&tM9ZOB#=^AKtYq4vr?7mtLF_gF!1W)+sv>)+~61UB(@Un}8>gVmgkV-lv$lD4Rqx z{XUdl;*(JsjbA1d=25o9EBSIfB@G9noD}->5^Xh)MV;Sq-0Q?g5*HHO6yp@nkz?o? zin=`ab6Ce`X{(9bh?F+58?QtMCZ|);LtFKC5px`gHw=CTpYIV$>kmqBJ`t{kqI9z6 zqWEddn(DO(v3po1&=V|=YwLyRMT9->!jiavHP<;CpG-SwMulTG8G*ry9?mgph@SGO zC2;|k%DISnkzn3?7+?RUD_{4XSn?S0sS>}&GsQ5=63 zHi4FTwAdNtL8dhx$(l;9u=Z%m8g`~f-L3M%zrCYVMWOzuz#Y-Y^e`ws=nCV+?+D+u5H^l;D!U-;5g0;wrw8=QRz0*LPUDQIcII#z6f{q zCoNRKDQ0X*B;*}3-CTW`%g^~eB;@u3)BoV;S5Ot8w+LFwWd zsH~$uF*SgNNHccR5m^`0QY6|bD}z^%%q{IPgOd7kgd2d^yeX5g%$=0oeR4`4M7N1> z$R;I@SQtZ}pG&+YNcBw6cTCDs`}N|uhnO%OC;!i1j& zgTWfYF+2Sf0Y`^k7u&X7={U|WJTCK9GE42ami|2|7Vd^RL`3Jzne*K8<;x#U(SH_D zq^fIy7k~r8*T@7_?E>b9#{R0Ro{?_fP!8EhpV@3u%qqgheNj=-I~5fb=QlMqWgSMJ z4bcy(CGqPiJ}dSM&`)d4LzFDO3X#}^F9-8>R}GL|)S{>rt=I<1LWyK`^^Ht#d^RoTKyOc&;*o~_vaM<*imd^a*WxWp z85Ig8WF6cAZcv_xv;s?1^)DSA9UtzvZz*w9o#Jpx7fB#0;K}*oQNzrV$B#;s5oAp!wT3am)FoE(|bLOmDzI^$n*z2k4>yG0%0}x4Z71xi*AU&t!IRC&+F&RZgMTLbs zEj3L|P3g+@dIoLd5Ru;{>wn>e7uNZFzUP4=W6WjrXS*MAVj^WdoS)tC30|WSMXd{Q zBjqC524mewTne~!i0dgqlgk#FNhmu_o}NzZAWIpP1y zno!}ZPaHShbki%qJ)w`odXKStdEym{q_9u`*MTVu;*KjP<8O#BtC6W(LtWIpt?EHk zJVKOZO7f18QyyRH`bEV%+(`VUz0;UpcX-s1={I}^*KrB3fnCPM?_Q3i$5Wx?@owkd zDP53c2rCo@medzjm*R)BcL!`4x{ENQm$c;YOjq5q>7_^yK3{JD}muNs)iNvx^y#}IgV4?)YNpO<2cnr zDB4B17WKi!#l_zl!f{3nRSl8vm>T^QASe5Cjj2Y zv)y3QGXE{m=w()85@&mxdCNGouO{+4DeDG>+1kB?xQAb6^yO7*$EL9mmizId3#jUS57gM25ITp$0=jOgxK$pb z<4Kn_mF@WJtBKuUD4a{l;#*l=^Xs&(6F>Dzu27~l6tb==Y1XXtkUs(a(;Ul6T%E1s zgME=cIa6CFVII8nBmDI@0D*|3KG15Qir&0)K*Ne`b&n-{#Gm?;13z(;()-HSzuu@!D9IgtqEiL082c7jZ&?T3N`I zM4|ZWiYe5;3`&j@)lD&<6F>|4wbw7e|o}USH4= zQz*umZ6n?fUdDg-yRdJnS9^PVD&K)xmQ{gU&->^J6DCv*qKv5+&%o}%#;u{#_fpl{ zRkZ;(MWg^1O`0^RWEhnskk*t(GE*o3`PLjaJwOzDVHKs96D2lM7V;CWSg7w{;2?T8 zoSw0qu~-rlj}pJu-#>1YeLaHC2zMe^K#TW%``Qv0-7; zrcHec)3U4#>qIBzH$I>5v#DN=Md;&?=gys*BH8%hpsEiIlTmK zTHM6tg}|cq>(_sCIPNEsn9zHP54|@TS||W5Rd3^8d@*tJH=Rex;+3qfNgkH(RYa+S zZRpQf6?sip1FKX3@mbO`A$pTzko=^f>*>d!cwuxAmQ>PP8hAWN6YlP51-zkdDM zB66%TrWrR6&yXhg7LkG8gOey0r?$4XXzSLkcdP0dB64$OW#t2*)C$8w8dDyVxk3R# zn*$$?8_yCal!rAjUdz|Pt=`if%NKHRY6<@OQ$5?HgTJnr$k1-(PFkwG3NnQo^gHs5 zmAOJ$Q?rr8k+{kB?IaLKysRXP?)(w6QgE}hLw|y%bT~g$wzPIA1d1gP2$;OQybFO& zRXxSF?F)xv+@YebuI}StFj$4F6vuaVb`IQf&w$j+#z?w;k9dsE2cn&&$|3Af9GlTC zW=N0U+TH}t;ZE}gZcv&4&7l~M%n|E)`mKdt`U_LXb5bA=q(8q(UY1VBAPb3Gss@ym zX|EcEad$d<)TTBgxq|Vl(7#_QFE39w^<}s&%z|+7E zd3kxu80LVm!A4d831Ey#nW=s-=~pO$fR!LJG}HVb(d3(-5bv}cPtbBa!}8rAxV__! zs~nqTl*r}X$)JCrwBZ*itrdS=F{Sm*pmp?pfpi6})yd;#R4A z@G<_zN-(k8s87XTKZ~}Qn!nm}8Qxp8XH&LhAuaRcvx6&tK>BL409dGg8x5X|zy1+K z?jXoB6!yNs#}tw8J2>>qeLmWk9zYQZ&{}mh)Fi&2()#02qPL(MJsbFK;!a6ut$hjq z;x>@!p=)JforJJtPmiMQ+oHi+n9?w1aAI{bqq({HM%%Uz0;*JXMpswY@wRQR6p=p} zW42h9wVN^K>mqU%?%(}2%d%!Ax}Jy}W!v`MX$<{O$8pk6v+2tEtZm!Z1K-W0Ulycw z532fdb93{RS&s2x=o-TsI$#k9SorI&K;-8M+6c;Blr71=8eLoEI*=BROD|+vWB+{B zUwLF5?I$Q=CH0p8^ALFn)sKMpaqFWLp=^sV4%LI` zc<(n%UFeUhRor^fyTBaKxs=>+5Td7|dK$uscxJo@;AK>QjY=D9svk)zd)eJSy5A~C z^h}VafF4i<5kv*07~xX<_5Vv-brSO?0jp}C#$VqIY{)7pRnLT*5cwjQbs(F7E|3pU zV-VQ^C`4s9Fl#AoSV(JC=1OaTG&eUl&zd#s&b++5uZhS>sybOjid6Mo5qaJibD!fl ze^1okvaIWjF=?-S8DsjU!GS;^XxsJ-fUd5tgku0SHa2!uR8*9x>S53q^N|pBD^<>r zG-^kM3X`W@>?`sfLb9Bts$yAI%96f5pYP^iFc?-UL%($;#PB+v{EN>7xhMXFmeW>q zQ~dD(5(rp4yTe|nH5p_Z(5+a$cgV}%n06Jzq2`Q5yK~=y^_&#QqiCXUB&H?F$kpY^ zkqJYa79f_kntSoruLNRJ8b}@fx`)#)D3&g6`Ht5^uhGYu_4^UzL13RyBB#O2_Maoi z2r&Fv$9wXtfY`W=?Z8^Wrz#7&3PEx3%2=Nx#~5Y!AK+ij>p7)?7#a*iBhfss=vD=z3H$aJEkTme0t zLd`70+gPHsu`(2qd~MS3{v0{RAS3GpU0eMhEIFU}n#1$lAh%B#B@G9ndM)rTinqUZ zq{YdRW3UAN#ThbY-ZBnL?*Iz0tP4U3t8?V|L^1LT1t5RY zmBi;x*_NPb;~Ptdb+_b@vE{vGD2Je2%c{y@-T0Ox$8a$^6iUmCAYC#Y;rW;|`%}=< zMpM%wqTe2HL9st<|dcHX*yqSGMj3q;N|@G~7T{c> zEfqmoLdoK9kC0TUnbNR5*0}pY4+oy$qwe!^$|T39g@ISw8%qB1z~9;b>n|ac(l4tZ z;^%-V!ap8(bOfb~$6r^BPaZ({GVlzTukovkV=Dya$nl9~^iFvqaT7D$hFcM>A7u#z zld5T%F|6elJ(*rN31h7T4h5d2C;yaCg}@v+J~fODg#s|W@mP#$CBDSQTDEqd!-JQ8 zG!kL~;IBUdXan{@vSLQa|F__Q*1ER-<*x?+&qJ!%N`B62kyn|~5Yr#Q5fHSIueR|BeH z2l3q$Z-0Jnk4}zHGh^TvF*AITG{9Qz&7|78TL$J3AC*dkQcthZY75Hkx%{s=a-`;yt571DdCNFD z-a8RXj&uu(%K^Y{z&Mm5gihQ%ESpgN2Kp!R + + + + + + + + + + + + + + + + diff --git a/pr-preview/pr-114/static/js/verovio-rendering.js b/pr-preview/pr-114/static/js/verovio-rendering.js new file mode 100644 index 0000000..820b8b0 --- /dev/null +++ b/pr-preview/pr-114/static/js/verovio-rendering.js @@ -0,0 +1,52 @@ +document.addEventListener("DOMContentLoaded", (event) => { + verovio.module.onRuntimeInitialized = async _ => { + let tk = new verovio.toolkit(); + tk.setOptions({ + footer: 'none', + header: 'none', + breaks: 'auto', + pageMarginTop: 15, + pageMarginBottom: 15, + spacingSystem: 2, + pageMarginLeft: 0, + pageMarginRight: 0, + scale: 50, + adjustPageHeight: true, + adjustPageWidth: true, + svgHtml5: true, + // svgFormatRaw: true, + svgRemoveXlink: true, + // svgViewBox: true, + inputFrom: "pae" + }); + + let notationExamples = document.querySelectorAll("tr.notation-example"); + + if (notationExamples !== null) + { + for (let row of notationExamples) + { + let verovioSvg = ""; + + for (let column of row.children) + { + + if (column && column.classList.contains("notation-code")) + { + let paeCode = column.querySelector("script").textContent; + let loadSuccess = tk.loadData(JSON.stringify(JSON.parse(paeCode))); + + if (loadSuccess) + { + verovioSvg = tk.renderToSVG(); + } + } + else if (column.classList.contains("notation-result")) + { + column.innerHTML = verovioSvg; + } + } + } + } + } +}); diff --git a/pr-preview/pr-114/v1/index.html b/pr-preview/pr-114/v1/index.html new file mode 100644 index 0000000..74a0807 --- /dev/null +++ b/pr-preview/pr-114/v1/index.html @@ -0,0 +1,1591 @@ + + + + + Plaine & Easie Code + + + + + + + + +
+

+ This document serves as both a specification and as a source of examples, and is largely a verbatim copy + of the existing specification hosted by the International Association of Music Libraries. We are aware + of a number of areas where the examples could be more extensive, or the specification could be made more + precise. The hope is to address these in Version 2 of the Plaine & Easie specification, and to add supporting + materials to accompany it. +

+

+ The Plaine & Easie Code is a library standard that enables entering music incipits in modern or mensural + notation. +

+

+ This version of the code is maintained by the International Association of Music Libraries, Archives and + Documentation Centres (IAML) and the Répertoire International des Sources Musicales (RISM) for use as an + exchange format in the library environment. Observations or queries may be addressed to Massimo + Gentili-Tedeschi or Balázs Mikusi. A tutorial is available + here. +

+

+ Last update to the code: 28 June 2019 +

+

+ Also available in PDF format. +

+

+ Adapted from the RISM guidelines. Corresponds to UNIMARC 036 and + MARC21 031 fields. +

+
+ +
+

General Principles

+

+ Music incipits help identify works and facilitate the comparison of historical musical sources. +

+

+ Which music incipits to enter depends on the kind of music. Best practice for instrumental music is to enter + incipits for the violin or the highest part. For vocal music, enter the highest voice plus the first violin or + the highest instrumental part. +

+

+ The incipit should be neither too long nor too short, and make as much musical sense as possible. It should + contain at least 3 bars or 10 non-repeated notes. +

+

+ The code should be written on a single line. When using MARC-format subfields, omit the special characters that + precede the encoded notes. +

+
+ +
+

The Plaine & Easie Code

+
+

Clef

+ +

+ The clef code is preceded by % and is three characters long. +

+

+ The first character specifies the clef shape. +

+ +

+ The second character is - to indicate modern notation or + to indicate mensural + notation. +

+

+ The third character (numerals 1-5) indicates the position of the clef on the staff, starting from the bottom + line. +

+

+ If the music is written for a transposing instrument, notate the incipit at sounding pitch. +

+ +
+
+

Key Signature

+ +

+ Begin this field with the character $; if there are no sharps or flats in the key signature, + the $ is omitted. +

+

+ The symbol x indicates sharp keys and b flat keys. The symbol is followed by the + capital letters that indicate the altered notes. +

+ +
+
+

Time Signature

+ +

+ The time signature is preceded by @ and indicates the time value or the mensuration sign of the + incipit. If the incipit has no time signature, the @ is omitted. +

+

+ Fractional or numeric values are transcribed as fractions and mensuration signs are transcribed with a + lowercase letter, if necessary followed by / or .: +

+ +
+
+

Musical Notation

+ +
+

Octave Symbol

+

+ Apostrophes are used for the octaves c4 and above, while commas are used for the octaves c3 and below. +

+ + +
+
+

Rhythmic Values

+ +

+ Periods are used for dotted notes. Multiple periods can be added to a note. +

+ +
+
+

Accidentals

+ +
+
+

Note Names

+

C, D, E, F, G, A, B

+
+
+

Grace Notes

+ +
+
+

Rests

+

Rests for single notes are indicated by - (a minus sign).

+ + + + + + + + + + + + + + + + + + +
CodeName
-single-note rest (preceded by rhythmic value like note names)
=measure rest (followed by number of measures and a bar line)
+ + +
+
+

Bar (measure) Lines

+ + +
+
+

Other Symbols

+ +
+
+

Beaming

+ + + + + + + + + + + + + + + + + +
CodeNote
{beginning of beaming
}end of beaming
+ + +
+
+

Special Rhythmic Groupings

+ + + + + + + + + + + + + + + + + +
CodeName
(beginning of special group
)end of special group
+

+ Before ( you must indicate the total value of the group. +

+

+ After ( you must indicate the rhythmic value of the first note, even if it is equal to that + of the group. +

+

+ Before ) you must indicate the number of notes of the group, preceded by ;. +

+ +

+ The triplet is a special case; strictly speaking, it should be coded as follows: +

+
+                8(6ABC;3) or 8({6ABC};3)
+            
+

+ Instead, the following shortcut is permitted: +

+
+                (6ABC) or ({6ABC})
+            
+

+ The rhythmic value inside the parentheses is required. +

+
+
+

Shortcuts

+
+
Repeated figures
+ + + + + + + + + + + + + + + + + +
CodeName
!beginning and end of passage
frepetition indication of the notes that appear within !...!
+

+ The group will be repeated as many times as the f appears after the second + !. Repetition is possible only within the same measure. +

+ +
+
+
Repeated measures
+

+ The symbol i repeats the last measure. It must always be included within bar lines. +

+ +
+
+
Rhythmic sequence
+

+ When the same rhythmic sequence is repeated, the sequence of rhythmic values can be stated once + before the note names. +

+ +
+
+
+

Change of Clef, Key Signature, Time Signature

+

+ Use % to change the clef, $ to change the key, and @ to change + the time signature. Follow this with the new indication (clef, key, or time), followed by a space. +

+

+ The introductory characters are mandatory. +

+ +
+
+

Abbreviations

+

+ Notation abbreviations, such as tremolo, slash, etc., must be written out in full using the actual + notation. +

+ +
+
+

Chords

+

+ Enter chords from the highest to the lowest note, each one separated by ^. +

+ +
+
+
+

Coded Validity Note

+ +

+ A one-character coded validity note can be introduced by a ~ at the end of the code. +

+

+ Accepted characters are: +

    +
  • ?: a mistake in the incipit has not been corrected
  • +
  • +: a mistake in the incipit has been corrected
  • +
  • t: incipit has been transcribed into modern notation
  • + +
+

+

+ These characters may be explained in a note (UNIMARC 036 $q — MARC21 031 $q). +

+
+
+
+

Representations

+

+ There are several ways in which Plaine & Easie code can be expressed. The choice of representation depends + on the environment in which you are using Plaine & Easie code, and the support of your software tools. +

+
+

MARC21 and UNIMARC

+

+ The most common use of Plaine & Easie code is as part of a MARC (MAchine Readable Catalogue) + record or UNIMARC (UNIversal MARC). The 031 MARC field is used to record incipits for + bibliographic catalogues. For UNIMARC the 036 field is similarly used. +

+

+ In MARC and UNIMARC records, the Plaine & Easie notation components are separated out into subfields. + The specifics of this encoding are given in the MARC + documentation, or in the + UNIMARC documentation. +

+
+
+

Single-Line Text

+

+ Plaine & Easie code can be represented in a single, continuous line of text by using + the field delimiters for each notation component: % for clef, + $ for key signature, and @ for time signature. These components + are given at the beginning of the line, and separated by a space with the notation data. +

+ +
+
+

Multi-Line Text with Field Delimiters

+

+ This format puts each component on its own line, separated by a newline character \n, and + with the component field preceded by a @ symbol and followed by a colon :. + There are five such fields: @clef, @keysig, @timesig, + @key, and @data. +

+ +
+
+

JavaScript Object Notation (JSON)

+

+ JavaScript Object Notation (JSON) is a key-value format that is easy to process in web browsers. Some + tools may support Plaine & Easie encoding using JSON. The same field names as the multi-line format are + used, but the preceding @ is dropped. Fields are separated by a comma. +

+ +
+
+ + diff --git a/pr-preview/pr-114/v2/changes.html b/pr-preview/pr-114/v2/changes.html new file mode 100644 index 0000000..e4a1f10 --- /dev/null +++ b/pr-preview/pr-114/v2/changes.html @@ -0,0 +1,202 @@ + + + + + Plaine & Easie Version 2 Change Log + + + + + + + + +
+

+ This document is a companion to the Plaine & Easie Version 2 + specifications. It describes the major differences between + Version 1 and Version 2, including those that introduce + compatibility issues between the two versions. +

+
+
+

Breaking Changes

+
+

Clef is a required field

+

+ It is now an error to have a Plaine & Easie Code + document without also specifying a clef. This change was + introduced because the clef specifies the line on the staff + on which the note should be drawn, and without a clef this + is ambiguous. +

+
+
+

Encoding of fermatas

+

+ The lower-case character p was introduced to + indicate fermatas, replacing the previous practice of + enclosing the note in parentheses, (). This + change was introduced because the parentheses were already + in use as the enclosing characters for a rhythmic group + (i.e., tuplets), and there was no need to indicate more than + one note for a fermata. +

+
+
+

Order of elements within a note

+
+
+

Neume Notation

+

+ Previously, neume notation was indicated with the special + duration of 7.. This introduced an arbitrary + restriction on coding dotted 128th notes, while also making + it unclear whether neume notation could be mixed with other + types of notation. +

+

+ Version 2 introduces the : character in the + clef to indicated that it is neume notation, following the + same pattern established by Mensural notation. +

+
+
+

Changed tie to underscore

+

+ Previously, the plus character + was used to + indicate that two notes were tied. This created some + problems when using the Plaine & Easie Code in a web + environment, where the + + symbol caused problems when it was instead interpreted as a + space. +

+

+ Notably, the first version of the Plaine & Easie Code + also used the underscore for tied notes. This was changed in + subsequent revisions, but is now reverted to its original + character. +

+
+
+

Removal of Coded Validity Note

+

+ The previous version of the Plaine & Easie Code had a + provision for a "coded validity note" that indicated whether + corrections had or had not been applied, or that the incipit + was transcribed into modern notation. +

+

+ In Version 2 this has been removed. It was not deemed + expressive enough to be useful (it did not specify which + corrections had, or had not, been introduced). An evaluation + of the usage of this field showed no consistent application + of this field, so it was removed in favor of putting any + explanatory notes in a notes field. +

+
+
+

Appogiatura Group Opening Character

+

+ Previously the characters qq were used to start + an appogiatura (a.k.a grace note) group. However, this was + the only instance in the Plaine & Easie Code where two + characters were used to start a group. It also meant that + parsing the code was a bit more difficult, since it created + ambiguities between a single `q`, or a single appogiatura + notes, or a group of notes. +

+

+ In Version 2 the start of an appogiatura group is now + signalled by the lower-case letter y. It is + still ended by the lower-case letter r. +

+
+
+
+

New Features

+
+

Introduction of JSON as a representation format

+

+ JavaScript Object Notation (JSON) is now an accepted + representation format for the Plaine & Easie Code. +

+
+
+
+

Clarifications

+
+

Order of elements within a note

+
+
+ + diff --git a/pr-preview/pr-114/v2/guidelines.html b/pr-preview/pr-114/v2/guidelines.html new file mode 100644 index 0000000..9367363 --- /dev/null +++ b/pr-preview/pr-114/v2/guidelines.html @@ -0,0 +1,224 @@ + + + + + Plaine & Easie Encoding Guidelines + + + + + + + + +
+

+
+
+

Introduction

+
+

+ These cataloging guidelines are written as an accompaniment to the Plaine & Easie Code (PAEC) specification. + In previous editions of the specifications, the formal description of the code, and the guidelines for its + interpretation, were given as a single document. Although convenient as a reference, it also posed significant + challenges for the interpretation of what was actually required, and what was recommended. + In the new edition of the PAEC, the specification document provides a formal description of a valid PAEC + encoding, while this document will provide recommendations on the application of the code to incipit capture. +

+
+
+

Considerations for Incipit Capture

+
+

+ The thematic index derives its superiority over non-thematic lists be cause it can not only arrange + a body of music in a systematic order, but it provides, at the same time, positive identification + in a minimum of space and symbols. It does so by the use of the "incipit," or musical citation + of the opening notes. For most music, an incipit of no more than a dozen pitches is required. + When rhythmic values accompany the pitches, the incipit's "uniqueness quotient" is astonishingly high. +

+ +

+ A musical work, printed or manuscript, may be identified by composer, title, opus number, key, + instrumentation, movement headings, first line of text, date, publisher, dedicatee, plate number, etc. + No one of these, indeed no combination of these, can provide as certain an identification as an incipit. + For example, an anonymous 15th-century Latin motet may also appear as a French chanson entitled + "L'amant douloureux." A composer may write a dozen trio sonatas in D major, three of them with the + same tempo sequence. A concert aria found in a library in Vienna, in the key of F, may turn up in + Prague in the key of G, and with added horn parts. Two printings of a set of quartets may be given + different plate numbers by the same publisher. Two publications of the same opera, in different cities, + may bear different titles, and dedications to different patrons. Finally, a set of six symphonies + may be published in Amsterdam with one opus number, in Offenbach with another, and in London within + a series of Periodical Overtures without any at all, and under another composer's name. +

+ +

+ By contrast, the presence of the incipit avoids confusion. Identification is certain. Even transposed + works can be readily identified in properly organized incipit files. In dealing with anonymi and with + works of disputed authorship, the incipit becomes indispensable-as a catalog without them will readily + demonstrate. In short, the collection, classification, transposition, and lexicographical ordering + of the incipits into thematic catalogs have enabled scholars to solve a myriad of otherwise insoluble + problems, and have provided musicians, librarians, students, biographers, and program annotators with + an invaluable reference tool. +

+
+ + Brook, Barry S. 1973. A Tale of Thematic Catalogues. + Notes, vol. 29, no. 3. pp. 407–15. + +
+
+

+ The cataloging of musical incipits in RISM is primarily intended for the purposes of identification and + disambiguation, where all other bibliographic means of doing so are not sufficient to uniquely identify a + musical piece. +

+

+ The most important component of incipit cataloging is the capture of identifiable musical material. + This will, in most cases, be the opening measures of a piece. It may, occasionally, be the entrance + of a melodic instrument when the opening of the piece starts with otherwise ambiguous accompaniment, such + as a ground bass. In rare instances, it may be the entrance of a theme that is many measures in. +

+

+ In all cases, the encoder of the incipit must keep in mind the primary motivations of identification + and disambiguation when choosing the musical content to capture as the incipit. It does not serve the users + of the catalog to encode a unique part of a musical work when all other instances of the incipit in the + catalog identify the opening measures. The uniqueness of the cataloging simply means that the incipit will not + group with like, and it will thus be "lost" in the larger catalog. +

+

+ The capture of melodic and rhythmic qualities is of primary importance. Considerations of visual + appearance, phrasing, polyphony, or other special indications are of secondary importance, or should be ignored + altogether, when capturing incipits. While it may seem important to capture for any single given source, it + can also pose significant challenges to positive identification or disambiguation when compared to all other + sources. Other means of capture, such as analytical notes fields, may be a more suitable mechanism for + accurately describing these features. +

+
+
+

The Plaine & Easie Code

+

+ From the beginning, the PAEC was purpose-built for the capture of identifying incipits. It could be written + by hand, or typed on a standard mechanical typewriter. Unlike other codes, the goal of the PAEC was to be + simple. Indeed, the first version of the PAEC, issued in 1964, was subsequently simplified in 1965, to "make + the code more usable on an international basis." (Brook, Fontes, 1965). The current PAEC specification is based + primarily on this simplified version. +

+

+ In the intervening years since the introduction of the PAEC, a number of changes and additional features have + been introduced. In some cases these additions have significantly improved the coding scheme; in other cases + the additions have ultimately distracted from the central purpose of the PAEC when put into practice. The + reasons for these changes are not always known. They may have been in response to a specific need, or they may + have been added as a "nice-to-have" without an identified use case. Whatever the reason, they have been + available and widely adopted and standardized, making it difficult to introduce retrospective changes to the + coding system to address problems and clarify ambiguities. With no clear versioning scheme in place, the + previous version is now no longer updated, and is now known as "Version 1". +

+

+ The new version, Version 2, contains several backwards-incompatible changes from Version 1. It is not the case + that incipits in Version 1 need to be "upgraded," nor is it a problem to have software or other standards + support PAEC Version 1. It is simply a way to differentiate the two versions. In most cases, unless the + version of the incipit is plainly stated as being Version 2, it should be assumed that it is supposed to conform + to Version 1 of the specification. +

+
+

Version 2

+

+ The goals of the effort behind Version 2 were to clarify ambiguities in the previous specification, and + to make the PAEC more suitable for machine processing of incipits. Since the previous version was developed + before the World Wide Web, and even before there was software available to render the code into a graphical + representation, several parts of the specification existed that made it difficult to unambiguously + and reliably process the data into the notation it was intended to represent. +

+

+ Version 2 of the specification is written to make the requirements of the encoding system clear, to help + software developers to build applications that can process the data in a uniform way. The requirements are + given using [RFC2119], which provide keywords, such as "MUST" and "MAY", to indicate required or optional + features, respectively. Most of the sections in the specification have also been expanded to include + an actual description of the code, as well as illustrative examples. +

+
+
+

Maintenance

+

+ This version of the code is maintained by the International Association of Music Libraries, Archives and + Documentation Centres (IAML) and the Répertoire International des Sources Musicales (RISM) for use as an + exchange format in the library environment. +

+
+
+
+

General Guidelines for Incipit Capture

+

+ Music incipits help identify works and facilitate the comparison of historical musical sources. +

+

+ Which music incipits to enter depends on the kind of music. Best practice for instrumental music is to enter + incipits for the violin or the highest part. For vocal music, enter the highest voice plus the first violin or + the highest instrumental part. +

+

+ The incipit should be neither too long nor too short, and make as much musical sense as possible. It should + contain at least 3 bars or 10 non-repeated notes. +

+

+ If the music is written for a transposing instrument, notate the incipit at sounding pitch. +

+
+ + diff --git a/pr-preview/pr-114/v2/index.html b/pr-preview/pr-114/v2/index.html new file mode 100644 index 0000000..635f80f --- /dev/null +++ b/pr-preview/pr-114/v2/index.html @@ -0,0 +1,2405 @@ + + + + + + Plaine & Easie Code + + + + + + + + +
+ +
+

+ The Plaine & Easie Code is a music notation encoding system + designed for the capture of melodic incipits: Short fragments of + music notation that help to identify the musical work. +

+
+
+

Introduction

+

+ The Plaine & Easie Code was first defined in 1964 by Barry S. Brook and Murray Gould + [[BrookGould1964]][[Brook1965]]. Perhaps the most important design feature of this system + was that it could represent music notation with "ordinary" typewriter characters, to be + put on index cards to build a thematic index to accompany bibliographic source descriptions. +

+

+ The specifics of the code system have changed over time, but, until the present specification, + the changes have not been clearly versioned. Features have been added to the Plaine & Easie + Code and the expected publication medium has shifted from index cards to computer systems. These + changes have resulted in incipits that may have conformed to the specifications at the time, but + which are now at odds with current practices and methods. +

+

+ The present specifications seeks to establish a clearly defined "Version 2" + of the Plaine & Easie Code. This is an attempt to distinguish it from "Version 1" of the Code, + which is now fixed at its last revision date. Incipits encoded to the specifications + given in Version 1 are still valid, and will continue to be. +

+

+ Version 2 of the Plaine & Easie Code is written in a specification language that attempts + to clearly communicate the normative requirements of the Code. This is a recognition that the + a significant "audience" for the code is data processing systems, and by extension, the + programmers that create them. This audience needs clear definitions of the code so that it + can be accurately and uniformly processed for search, retrieval, automated comparison, + and notation display. +

+

+ At the same time, however, it must be recognized that the core of this code must remain "Plaine" + and "Easie" to facilitate easy capture of musical notation by catalogers. Although now couched + in normative language, the present specification does not deviate far from the earlier + specifications—indeed, some changes that are introduced in this new version are drawn from + the original papers by Brook and Gould. In this way, the present specification is an + attempt to "pave the cowpaths"; + that is, to normalize and standardize existing practices. +

+

+ Catalogers who are familiar with Version 1 of the Plaine & Easie Code may wish to consult + the Change Log to see what has changed in Version 2. +

+

+ The Plaine & Easie Code is maintained by the Digial and Editorial Centers of the + Répertoire International des Sources Musicales (RISM), and by the International Association of Music Libraries, + Archives and Documentation Centres (IAML) for use as an exchange format in the library environment. +

+
+
+

Terminology

+
+
Circle of fifths
+
+
Transcriber
+
The person or persons who transcribe the source into Plaine & Easie.
+
Logical Unit
+
A logical unit of notation data consists of one or more characters that represent a single musical notation + figure.
+
+
+
+

The Plaine & Easie Code

+
+
+

Staff Definitions

+

+ The clef, key signature, and time signature of an incipit is defined separately from the + Musical Notation of the incipit. These properties affect the whole staff. +

+
+
+

Clef

+

+ Every encoding MUST include a clef. +

+

+ The clef code MUST be three characters long. The first character specifies the clef shape and MUST + be one of the values G, g (octave G), C, or F. +

+

+ The second character MUST be one of the characters - to indicate modern notation, + + to indicate mensural notation, or : to indicate neume notation. Each + of these notations impose different interpretations on the music notation in the incipit. +

+

+ The third character MUST be a numeric value in the range 1-5, and indicates the reference staff line + for the clef starting from the bottom. +

+ +

+ The clef indications imply the octave in which each note on the staff will sound and + its visual placement on the staff. The following table gives the indicative octave and note + for the bottom and top lines of each staff. +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Shape and LineBottom Line Octave and NoteTop Line Octave and Note
G-2'E (E4)''F (F5)
F-4,,G (G2),A (A3)
g-2,E (E3)'F (F4)
C-3,F (F3)'G (G4) +
+ +
+
+

Key Signature

+

+ An encoding MAY include a key signature. +

+

+ The character x indicates sharp keys and b flat keys. These characters MUST be + followed by a list of note names that indicate the altered notes. +

+

+ The list of note names in a key signature SHOULD follow the circle of fifths ordering. Missing + accidentals in this list SHOULD be supplied by the transcriber. Note names MUST NOT be repeated. +

+

+ All notes given in the key signature MUST be interpreted as having their sounding pitch altered + accordingly. In cases where a note in a key signature is further altered by use of an accidental, + directly on the note, the written pitch and sounding pitch indicated by the accidental + will take precedence. +

+

+ A key signature containing a single n character MAY be supplied to indicate a natural key + signature, i.e., C Major or A minor. This character MUST NOT be followed by any note names. +

+

+ A key signature MAY contain note names within square brackets [] to indicate that the + note names are not in the original source and have been supplied by the transcriber. Consecutively + supplied note names MUST be within a single set of brackets. A key signature MAY contain more than one + set of non-consecutive bracket groups. +

+ +

+ For neume notation, the key signature MUST be omitted. Any alterations to individual pitches MUST + be encoded as accidentals. +

+ +
+
+
+
+
+
+
+

Time Signature

+

+ An encoding MAY include a time signature. +

+

+ There are two main categories of time signature forms, Common Western Music Notation + (CWMN) and Mensural. + If a mensuration sign is specified, the clef MUST specify a + separator to + indicate the encoding is in mensural notation. +

+

+ For neume notation, the time signature MUST be omitted. +

+

+ CWMN and Mensural time signatures MUST NOT + be mixed on the same staff. +

+

+ CWMN time signatures are expressed as one number + above another. These numbers MUST be separated by a / character. Any positive digit MAY + be used, but encoders SHOULD use commonly accepted values where possible. The c + ("common", or 4/4) and c/ ("alla breve", or 2/4) characters + MAY be used. +

+

+ CWMN time signatures that indicate alternating + measures MAY be indicated by transcribing both. These MUST be separated by a single space character. +

+

+ For mensuration signs, the c and o characters indicate tempus + imperfectus and tempus perfectus, respectively. The . character indicates + "major" prolation; omitting . indicates "minor" prolation. A / character may + follow the tempus character to indicate diminution. +

+

+ A mensuration sign MAY include a numerical component as a proportion or augmentation, + indicating Modus cum tempore. These numerals MUST be either a 3 or 2. + These numbers MAY be combined and separated by a /. +

+ +
+
+
+

Musical Notation

+
+
+
+

Structure

+

+ The Musical Notation section of an encoding is given as a single line of characters. These characters + represent a staff of musical notation. To represent complex notational figures, such as + notes, chords, beams, or tuplets, groups of characters can act as a single logical unit. +

+

+ A musical note is the most complex logical unit. It consists of one or more characters representing + a note on a musical staff. Many characters representing a note are optional—the only required character + is the note name—but where one or more characters for a note occurs, they MUST occur in the following order: +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Note FeatureCharactersRequirement
Grace Note[qg]Optional
Octave[,']Optional
Duration / Duration Dot[0-9][.]Optional
Accidental[xb]Optional
Fermata[p]Optional
Note Name[A-G]Required
Trill[t]Optional
Order of characters representing a note
+

+ Logical units MAY be nested to represent complex notational features; for example, a beam will + contain two or more notes. All logical units of the same kind MUST be closed before a new one is + started (i.e., no nested groups of the same kind). +

+ +

+ Many logical units use the same character(s) to represent the same musical concept. Notes and rests, + for example, both make use of the same duration character(s). +

+

+ There MUST be no spaces within the Musical Notation section. The only time a space MAY occur is to separate + a change of Clef, Key Signature, or Time Signature. +

+
+
+

Note Names

+

+ A note name MUST be provided to indicate the pitch class of the note. +

+

+ Note names MUST be one of the following characters: + C, D, E, F, + G, A, B. +

+

+ All letters MUST be uppercase; lowercase letters MUST NOT be used. +

+ +
+
+

Octaves

+

+ Octaves in Plaine & Easie are enumerated according to [[ScientificPitch]]. The boundary note + between octaves is C. +

+

+ Octaves MUST be indicated using the apostrophe ' for octave C4 and above, and the comma + , for octaves C3 and below. These characters are repeated to indicate successively + higher or lower octaves: '' indicates C5, ''' indicates C6, ,, + indicates C2, and so on. +

+

+ The number of apostrophes MUST NOT exceed four, corresponding to C7. The number of commas MUST NOT + exceed three, corresponding to C1. +

+

+ The octave indication for a given note MAY be omitted. If the octave is omitted, the last specified + octave indication is used for all following notes. +

+

+ An encoding MAY omit all octave indications. If no octave is supplied on any note, all notes are + assumed to be in octave C4. +

+ +
+
+
+

Durations

+

+ Note durations MUST be represented by integer values in the range 0-9. The corresponding + note value for each number is given in [[[#note-duration-map]]]. +

+

+ Duration values MUST be interpreted differently if the encoding is in + CWMN or Mensural notation. Mensural notation + MUST NOT use durations of 3, 5, or 7. +

+

+ Notes in neume notation MUST NOT be given a duration value. +

+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
DurationNotationCWMNMensural
+ + 0 + Longa
+ + 9 + Breve
+ + 1 + Whole noteSemibreve
+ + 2 + Half noteMinim
+ + 4 + Quarter note / crochetSemiminim
+ + 8 + Eighth note / quaverFusa
+ + 6 + 16th note / semiquaverSemifusa
+ + 3 + 32nd note / demisemiquaver-
+ + 5 + 64th note / hemidemisemiquaver-
+ + 7 + 128th note-
+
Note duration value mapping, ordered from longest to shortest note value.
+
+

+ The duration value for a given note MAY be omitted. If the duration is omitted, the last specified + duration is used for all following notes. +

+

+ An encoding MAY omit all duration indications. If no duration is supplied on any note, all + notes are assumed to have a duration value of 4 (quarter note / crochet / semiminim). +

+

+ For CWMN the period character . MAY be used to indicate a dot of augmentation, + extending the duration of the note by half again the indicated duration value. This character MUST be + appended to the duration value. Multiple dots MAY be used, with each successive dot indicating that + the duration is extended by half again. +

+ +
+
+

Accidentals

+

+ An accidental MAY be used to alter the written and sounding pitch of a note. Accidentals MUST + be one of the values given in [[[#accidental-map]]]. +

+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
AccidentalNotationRemarks
+ + x + sharp
+ + b + flat
+ + xx + double-sharp
+ + bb + double-flat
+ + n + natural
+
Accidental values
+
+

+ The sounding pitch of a note MAY be altered by both a key signature or an accidental. In the case of + a note being altered by both, the alteration of the accidental MUST be interpreted as an alteration + of the pitch in the key signature. +

+

+ A note altered by an accidental SHOULD NOT be altered subsequent times within the same bar. The + alteration to the sounding pitch of the note is continued on subsequent notes with the same name + until the next bar line. +

+

+ Accidentals MUST be interpreted by their written value, and MUST NOT be interpreted by their values + relative to each other. +

+ +
+
+

Rests

+

+ Rests for single notes MUST be indicated by a hyphen/minus character -. This character + MAY be preceded by a duration value giving the musical duration of the rest. If the duration + is omitted, the last specified duration is used. If no duration is supplied in the encoding + a default duration of 4 is assumed. +

+

+ Measure rests MUST be indicated by an equal sign character =. This character MUST be + followed by a non-negative integer indicating the number of measures for which this rest applies, + unless the measure rest only applies to a single measure. In this case, the number MAY be omitted. +

+

+ Measure rests MUST be followed by a bar line character. +

+

+ Measure rests MUST NOT be used with Mensural notation, due to the general absence of measures in + this notation. +

+

+ Measure rests MAY indicate the number of measures that are being skipped in the + original source before the musical content being captured by the incipit, regardless of whether + these measures in the original source contain musical content. +

+ +
+
+

Chords

+
+
+
+

+ Enter chords from the highest to the lowest note, each one separated by ^. +

+ +
+
+

Beaming

+
+

+ Beamed notes are encoded using braces {}. +

+

+ Beam groups MUST start with an opening brace {, and + MUST end with a closing brace, }. Nested beam groups + MUST NOT occur, except as part of a grace note group. +

+

+ Notes with duration values of 0, 1, 2, + 4, and 9 MUST NOT occur within + a beam group. Notes with other duration values MAY occur within + a beam group. +

+

+ Beam groups SHOULD NOT occur in Mensural encodings. +

+ +
+
+

Bar Lines

+
+

+ Bar lines MUST be indicated using one of the code options given in [[[#barlines-spec]]]. +

+

+ Bar lines SHOULD be inserted at intervals that correspond to the current time signature. +

+

+ Neume and Mensural notations SHOULD NOT use bar lines. +

+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
CodeNotationRemarks
+ + / + Single bar line
+ + // + Double bar line
+ + //: + Double bar line with repeat sign on the right
+ + :// + Double bar line with repeat sign on the left
+ + ://: + Double bar line with repeat sign on the left and on the right
+
Types of bar lines
+
+ +
+
+

Tuplets

+

+ A tuplet group MUST begin with a duration value to indicate the duration + of the tuplet group. +

+

+ All musical symbols MAY occur within a tuplet group. The members of the tuplet + group MUST be enclosed within parentheses (). +

+

+ The duration value MUST be provided for the first note or rest after the + opening parenthesis (. +

+

+ A semicolon ; and a non-negative integer MAY immediately precede + the closing parenthesis of a tuplet group. This number indicates the number of + beat divisions in the group; that is, the number of beats that occur within + the tuplet in the space of the given duration value. If a number is not + given, a value of 3 is the default. +

+

+ A special encoding shortcut is available for triplets. +

+ +
+
+
+

Tied Notes

+

+ Tied notes MUST be indicated with an underscore character _. + Ties MUST occur between successive notes with the same pitch and octave. + A tie MUST NOT occur between a note and a rest. +

+

+ The underscore character MUST occur on the first note of the tie. +

+

+ Tied notes MAY occur over bar lines. +

+

+ The underscore character MUST NOT be used to indicate slurs, phrase + marks, or ligatures. +

+ +
+
+

Grace Notes

+

+ There are two types of grace note: Acciaccatura and appogiatura. +

+

+ For a single acciaccatura the lower-case character g + MUST be used. This character MUST be specified in the order given above; + that is, it MUST precede the note name, and MUST also precede all other + optional attributes of the note. Consecutive single acciaccatura + SHOULD NOT occur. +

+

+ For a single appogiatura note, the lower-case character q + MUST be used. This character MUST be specified in the order given above; + that is, it MUST precede the note name, and MUST also precede all other + optional attributes of the note. Consecutive single appogiatura + SHOULD NOT occur. +

+
+
Appogiatura Group
+

+ For multiple consecutive appogiatura notes, the appogiatura group SHOULD + be used. The lower-case character y MUST be given as the first + characters before the first note of the group, and the lower-case character + r MUST be the last character in the final note of the group. + There MUST be more than one note in a appogiatura group. +

+

+ The r character MUST follow any closing beam character + that is part of the appogiatura group. +

+

+ An appogiatura group with beams MAY occur within a non-appogiatura + beam. +

+
+ +
+
+

Trill

+

+ The lower-case character t is used to indicate + a trilled note. The t MUST immediately follow the + note name. +

+ +
+
+

Fermata

+

+ The lower-case character p is used to indicate + a fermata on a note. The p MUST immediately precede the + note name, and MUST follow any other attributes on the note that + occur before the note name. +

+ +
+
+

Tremolo, Slash

+

+ Notation abbreviations, such as tremolo, slash, etc., must be written out in full using the actual + notation. +

+ +
+
+

Shortcuts

+
+
Repeat group
+

+ If one or notes or rests are repeated several times, a repeat group + MAY be used. +

+

+ A repeat group is only valid within a single measure. +

+

+ To use a repeat group, mark the beginning and the end of the group with + an exclamation mark character !. The lower-case character + f MUST immediately follow the ending !, and + MUST occur the number of times the figure should be repeated. The + f MUST be specified at least once. +

+ +
+
+
Repeated measures
+

+ If one or more whole measures are repeated, a measure + repeat MAY be used. +

+

+ The measure to be repeated MUST end with a bar line. The lower-case + character i MUST occur immediately after this bar line, + and MUST be immediately followed by another bar line. There MUST NOT + be any other characters between the two bar lines. +

+

+ Any type of bar line MAY be used to begin or end a measure repeat group. +

+

+ Measure repeats SHOULD NOT be used with Mensural notation. +

+ +
+
+
Rhythmic sequence
+

+ When the same rhythmic sequence is repeated, the sequence of rhythmic values can be stated once + before the note names. +

+ +
+
+
Triplets
+

+ The triplet is a special case; strictly speaking, it should be coded as follows: +

+
+                    8(6ABC;3) or 8({6ABC};3)
+                
+

+ Instead, the following shortcut is permitted: +

+
+                    (6ABC) or ({6ABC})
+                
+

+ The rhythmic value inside the parentheses is required. +

+
+
+
+

Change of Clef, Key Signature, Time Signature

+

+ Clefs, key signatures, and time signatures MAY be changed within an incipit. +

+

+ The percent character % MUST be used to indicate a clef change. A clef change MAY occur anywhere + within the music notation section. This character MUST be followed by a clef definition according + to the specifications given in the Clefs section. +

+

+ The dollar character $ MUST be used to indicate a key signature change. A key signature + change MAY appear anywhere in the music notation, but SHOULD appear immediately following a + bar line. This character MUST be followed by a key signature definition according to the + specifications given in the Key Signatures section. +

+ +

+ The at sign character @ MUST be used to indicate a time signature change. A time signature + change MAY appear anywhere in the music notation, but SHOULD appear immediately following a + bar line. This character MUST be followed by a time signature definition according to the + specifications given in the Time Signatures section. +

+

+ For any change of clef, key signature, time signature, or combination thereof, the change indication + MUST be separated from the notation that follows by a single space character. In the case of multiple + changes at once (for example, a key and a time signature change) the individual change indications + MUST NOT be separated by a space. +

+ +
+
+
+
+

Representation Formats

+

+ The original expression of the Plaine & Easie Code was intended for physical + media such as an index card, or a printed book. In the intervening years, usage of the + Plaine & Easie Code has shifted to use within a digital context, such as online + library catalogs and on the World Wide Web. +

+

+ This section provides the specification of the acceptable representations of the Plaine & + Easie Code. It is expected that these representations—with the possible exception of + "single-line text"—are constructed and used by automated tools and not written "by hand." +

+
+

Character Encodings

+

+ All characters used in the Plaine & Easie Code MUST be within the [[ASCII]] + code range. Plaine & Easie MAY be transmitted as part of another encoding standard, + such as UTF-8, as long as the characters used within the encoding itself do not + fall outside of the ASCII range. +

+

+ Depending on the application, some ASCII characters MAY be encoded in another + way; for example, Plaine & Easie Code could be embedded in HTML where some + characters are replaced by Named + character references. +

+ +
+
+

MARC21 and UNIMARC

+

+ The Plaine & Easie code is accepted as a format within a MARC (MAchine Readable Catalogue) + or UNIMARC (UNIversal MARC) record. The specifics of each system are given in the [[MARC21]] + documentation or in the [[UNIMARC]] documentation. The 031 MARC21 field is used + to record incipits, while UNIMARC uses the 036 field. The subfields used by these + formats for Plaine & Easie Code is given in [[[#marc21-unimarc-subfields]]]. +

+

+ In both systems, the $2 subfield indicates the coding system used for the + incipit. This code MUST be pe2 for Version 2 of the Plaine & Easie Code. +

+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FieldMARC21UNIMARC
Clef$g$m
Key Signature$n$n
Time Signature$o$o
Musical Notation$p$p
Source$2$2
+
MARC21 and UNIMARC subfields for the Plaine & Easie Code +
+
+
+

Multi-Line Text with Field Delimiters

+

+ The Plaine & Easie Code MAY be represented in a multi-line text format. +

+

+ Each field MUST be separated by a newline character \n. +

+

+ Each field MUST begin with a field identifier. This identifier consists of an at sign + character @, followed by a field name. The field identifier MUST end with + a colon character :. +

+

+ The field name MUST be one of the following: clef, keysig, timesig, + key, data, or version. +

+

+ The field value MUST immediately follow the colon in the field identifier. The field value MUST NOT + contain any characters that are not part of the value itself; for example, the value must not be + enclosed in quotation marks. +

+

+ There MUST be at least two fields in the encoding: clef and data. +

+

+ The version field MAY be included. The value of the version field + MUST be pe2 for incipits that conform to Version 2 of the specification. If a + version field is not specified, the incipit SHOULD be interpreted as conforming + to Version 1 of the specification. +

+ +
+
+

JavaScript Object Notation (JSON)

+

+ Plaine & Easie Code MAY be represented as JavaScript Object Notation + ([[JSON]]). All JSON encodings of the Plaine & Easie Code MUST be valid + JSON. +

+

+ The keys in the JSON MUST be one of the following: clef, + keysig, timesig, key, + data, or version. Unlike the multi-line text + representation, they MUST NOT begin with an at sign character @. +

+

+ There MUST be at least two keys in the encoding: clef and data. +

+

+ The version key MAY be included. The value of the version key + MUST be pe2 for incipits that conform to Version 2 of the specification. If a + version key is not specified, the incipit SHOULD be interpreted as conforming + to Version 1 of the specification. +

+ +
+
+

Single-Line Text

+

+ Plaine & Easie code MAY be represented in a single, continuous line of text. +

+

+ This line MUST start with the string ;pe2 for incipits that + conform to Version 2 of the specification. +

+

+ Following the version declaration, the line MUST contain with a declaration of the clef. + The format of the clef declaration follows the same format for an inline change of clef; + that is, the clef declaration MUST start with the percent character %. +

+

+ The line of text SHOULD specify a key signature and a time signature. This also + follows the same format for an inline change of key and time signatures. +

+ The clef, key signature, and time signature declarations MUST NOT themselves be + separated by a space character. +

+

+ The clef, key signature and time signature MUST be separated from the rest of the music + notation by a single space character. +

+

+ The rest of the line of text follows the format for the music notation section of the code. + Further changes to the clef, key signature, and time signature are permitted as normal. +

+ + +
+
+
+
+

Changes

+

+ A list of substantive changes between Version 1 and Version 2 of the Plaine & Easie Code + can be found in the Change Log. +

+
+
+ + + +