From 6d2729e2031744070001c05cb357258189ffb0b3 Mon Sep 17 00:00:00 2001 From: Scott Seago Date: Thu, 26 Mar 2020 13:09:47 -0400 Subject: [PATCH] Added support for restic --verify flag Added support for restic volume checksum verification. This adds another pod annotation ('backup.velero.io/verify-volumes') which is used to identify which volumes on the pod should get the '--verify' flag passed to restic when restoring. Stdout and stderr are logged to the restic pod logs. The PodVolumeRestore CRD has three new status fields: Errors, VerifyErrors, and ResticPod, which contain the number of total errors reported, the number of verify errors reported, and the name of the restic pod that ran the restore (to allow for the user to look in the pod logs for more detailed output). The Restore CRD has two new Status fields: PodVolumeRestoreErrors and PodVolumeRestoreVerifyErrors, which contain a slice of ObjectReferences listing which PodVolumeRestores contained errors or verify errors. There is not yet support built into restore describe to see the restore fields via the velero client. Also, the restic daemonset will need to have an env variable set for POD_NAME. (cherry picked from commit da2df66ad156ccd3c86dfb885634d744abc1b980) (cherry picked from commit 5a05c6be5711fdcc93cbba7c53fdb3ece531cdde) Signed-off-by: Scott Seago --- .../v1/bases/velero.io_podvolumerestores.yaml | 15 ++ config/crd/v1/bases/velero.io_restores.yaml | 132 ++++++++++++++++++ config/crd/v1/crds/crds.go | 4 +- .../bases/velero.io_podvolumerestores.yaml | 15 ++ .../crd/v1beta1/bases/velero.io_restores.yaml | 130 +++++++++++++++++ config/crd/v1beta1/crds/crds.go | 4 +- pkg/apis/velero/v1/pod_volume_restore.go | 18 +++ pkg/apis/velero/v1/restore.go | 15 ++ pkg/apis/velero/v1/zz_generated.deepcopy.go | 10 ++ .../pod_volume_restore_controller.go | 37 ++++- pkg/restic/command_factory.go | 10 +- pkg/restic/command_factory_test.go | 15 +- pkg/restic/common.go | 25 ++++ pkg/restic/restorer.go | 14 ++ 14 files changed, 433 insertions(+), 11 deletions(-) diff --git a/config/crd/v1/bases/velero.io_podvolumerestores.yaml b/config/crd/v1/bases/velero.io_podvolumerestores.yaml index 444c1fc986..c0054eb299 100644 --- a/config/crd/v1/bases/velero.io_podvolumerestores.yaml +++ b/config/crd/v1/bases/velero.io_podvolumerestores.yaml @@ -103,6 +103,11 @@ spec: format: date-time nullable: true type: string + errors: + description: Errors is a count of all error messages that were generated + during execution of the pod volume restore. The actual errors are + in the restic log + type: integer message: description: Message is a message about the pod volume restore's status. type: string @@ -126,12 +131,22 @@ spec: format: int64 type: integer type: object + resticPod: + description: ResticPod is the name of the restic pod which processed + the restore. Any errors referenced in Errors or VerifyErrors will + be logged in this pod's log. + type: string startTimestamp: description: StartTimestamp records the time a restore was started. The server's time is used for StartTimestamps format: date-time nullable: true type: string + verifyErrors: + description: VerifyErrors is a count of all verification-related error + messages that were generated during execution of the pod volume + restore. The actual errors are in the restic log + type: integer type: object type: object served: true diff --git a/config/crd/v1/bases/velero.io_restores.yaml b/config/crd/v1/bases/velero.io_restores.yaml index 8335c2a55d..e23127a5e6 100644 --- a/config/crd/v1/bases/velero.io_restores.yaml +++ b/config/crd/v1/bases/velero.io_restores.yaml @@ -1651,6 +1651,138 @@ spec: - PartiallyFailed - Failed type: string + podVolumeRestoreErrors: + description: PodVolumeRestoreErrors is a slice of all PodVolumeRestores + with errors (errors encountered by restic when restoring a pod) + (if applicable) + items: + description: 'ObjectReference contains enough information to let + you inspect or modify the referred object. --- New uses of this + type are discouraged because of difficulty describing its usage + when embedded in APIs. 1. Ignored fields. It includes many fields + which are not generally honored. For instance, ResourceVersion + and FieldPath are both very rarely valid in actual usage. 2. + Invalid usage help. It is impossible to add specific help for + individual usage. In most embedded usages, there are particular restrictions + like, "must refer only to types A and B" or "UID not honored" + or "name must be restricted". Those cannot be well described + when embedded. 3. Inconsistent validation. Because the usages + are different, the validation rules are different by usage, which + makes it hard for users to predict what will happen. 4. The fields + are both imprecise and overly precise. Kind is not a precise + mapping to a URL. This can produce ambiguity during interpretation + and require a REST mapping. In most cases, the dependency is + on the group,resource tuple and the version of the actual + struct is irrelevant. 5. We cannot easily change it. Because + this type is embedded in many locations, updates to this type will + affect numerous schemas. Don''t make new APIs embed an underspecified + API type they do not control. Instead of using this type, create + a locally provided and used type that is well-focused on your + reference. For example, ServiceReferences for admission registration: + https://github.com/kubernetes/api/blob/release-1.17/admissionregistration/v1/types.go#L533 + .' + properties: + apiVersion: + description: API version of the referent. + type: string + fieldPath: + description: 'If referring to a piece of an object instead of + an entire object, this string should contain a valid JSON/Go + field access statement, such as desiredState.manifest.containers[2]. + For example, if the object reference is to a container within + a pod, this would take on a value like: "spec.containers{name}" + (where "name" refers to the name of the container that triggered + the event) or if no container name is specified "spec.containers[2]" + (container with index 2 in this pod). This syntax is chosen + only to have some well-defined way of referencing a part of + an object. TODO: this design is not final and this field is + subject to change in the future.' + type: string + kind: + description: 'Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' + type: string + name: + description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + namespace: + description: 'Namespace of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/' + type: string + resourceVersion: + description: 'Specific resourceVersion to which this reference + is made, if any. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency' + type: string + uid: + description: 'UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids' + type: string + type: object + nullable: true + type: array + podVolumeRestoreVerifyErrors: + description: PodVolumeRestoreVerifyErrors is a slice of all PodVolumeRestore + errors from restore verification (errors encountered by restic when + verifying a pod restore) (if applicable) + items: + description: 'ObjectReference contains enough information to let + you inspect or modify the referred object. --- New uses of this + type are discouraged because of difficulty describing its usage + when embedded in APIs. 1. Ignored fields. It includes many fields + which are not generally honored. For instance, ResourceVersion + and FieldPath are both very rarely valid in actual usage. 2. + Invalid usage help. It is impossible to add specific help for + individual usage. In most embedded usages, there are particular restrictions + like, "must refer only to types A and B" or "UID not honored" + or "name must be restricted". Those cannot be well described + when embedded. 3. Inconsistent validation. Because the usages + are different, the validation rules are different by usage, which + makes it hard for users to predict what will happen. 4. The fields + are both imprecise and overly precise. Kind is not a precise + mapping to a URL. This can produce ambiguity during interpretation + and require a REST mapping. In most cases, the dependency is + on the group,resource tuple and the version of the actual + struct is irrelevant. 5. We cannot easily change it. Because + this type is embedded in many locations, updates to this type will + affect numerous schemas. Don''t make new APIs embed an underspecified + API type they do not control. Instead of using this type, create + a locally provided and used type that is well-focused on your + reference. For example, ServiceReferences for admission registration: + https://github.com/kubernetes/api/blob/release-1.17/admissionregistration/v1/types.go#L533 + .' + properties: + apiVersion: + description: API version of the referent. + type: string + fieldPath: + description: 'If referring to a piece of an object instead of + an entire object, this string should contain a valid JSON/Go + field access statement, such as desiredState.manifest.containers[2]. + For example, if the object reference is to a container within + a pod, this would take on a value like: "spec.containers{name}" + (where "name" refers to the name of the container that triggered + the event) or if no container name is specified "spec.containers[2]" + (container with index 2 in this pod). This syntax is chosen + only to have some well-defined way of referencing a part of + an object. TODO: this design is not final and this field is + subject to change in the future.' + type: string + kind: + description: 'Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' + type: string + name: + description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + namespace: + description: 'Namespace of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/' + type: string + resourceVersion: + description: 'Specific resourceVersion to which this reference + is made, if any. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency' + type: string + uid: + description: 'UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids' + type: string + type: object + nullable: true + type: array progress: description: Progress contains information about the restore's execution progress. Note that this information is best-effort only -- if Velero diff --git a/config/crd/v1/crds/crds.go b/config/crd/v1/crds/crds.go index 82f613324f..90de89c2c2 100644 --- a/config/crd/v1/crds/crds.go +++ b/config/crd/v1/crds/crds.go @@ -34,9 +34,9 @@ var rawCRDs = [][]byte{ []byte("\x1f\x8b\b\x00\x00\x00\x00\x00\x00\xff\xb4V=s\xe36\x10\xed\xf9+v.\xc55\x11u7\xd7d\xd4%\xbe+\xa6-n\x13\xf5\x0e\xb9\x14\x9f\x8e>|h?\xb5\x1f\x1a\x00\xcbXҿҀ\xa2f\x88\x1b\xf0\xa9\xef\x1b\x00o\x06܀\xc3\x1e\x15\xb7\xc6>\xa6\xc8\xf8gBQi\x0f\xd8#\x87\x96B#\x11m>x\xcf!\xc5\r\x1c\x1d5\u007f\x04U/\xf4\xb9\x94\xfa\xa9\x94\xba\xab\xa5\x8a\xb7'џ_\x8b\xf8\x85ƨ\xd8'6\xfd2\xa0\x12 \xe4\xf7\xa97\xbc\x18\xd2\x00\x88\r\x117p\x93aEc\xd15\x00#\x1f\x05\xe6j\xbc\xf1\xe1c-g;\x1cL\xc5\x0f\x10\"\xfa\x1fo\xaf\x1f>ݟ\x99\x01\x1c\x8ae\x8aZX]\xc0\x0f$``D\x01\x1aFp\x10\xa3\xacQ\xe0rϠ\x80v8\xdd\x14\xddx1\b;Ў\x04\x18#\xa3\xa0\xaf]tV\x18r\x90\xf1\x10\xb6\u007f\xa0\xd5\x16\xee\x91s\x19\x90.\xa4\xde\xe5V; +0ڰ\xf7\xf4\xf7Km\xc9\xf7̇\xf6F'\x91\x8f\x0fyE\xf6\xa6\x87\x83\xe9\x13~\x0f\xc6;\x18\xcc30\xe6S \xf9\x93z%DZ\xf85\xd3D~\x176ЩF٬\xd7{\xd2idl\x18\x86\xe4I\x9fץ\xfbi\x9b4\xb0\xac\x1d\x1e\xb0_\v\xedW\x86mG\x8aV\x13\xe3\xdaDZ\x15辌M;\xb8\xefx\x1c2y\u007f\x86U\x9fsÈ2\xf9\xfd\x89\xa3t\xf37\x14Ƚ\\e\xaf\xa9\xf5\x16G\xa2\xb3)\xb3s\xf7\xe5\xfe+LG\x171\xe6\xec\x17ޏ\x89r\x94 \x13F~\x87\\E\xdcq\x18JM\xf4.\x06\xf2Z^lO\xe8\xe7\xf4K\xda\x0e\xa42\xb5d֪\x85\xab\xb2G`\x8b\x90\xa23\x8a\xae\x85k\x0fWf\xc0\xfe\xca\b\xfe\xef\x02d\xa6e\x95\x89}\x9b\x04\xa7+p\x1e\\Y;qL;\xea\x15\xbd\x16\x86\xf6>\xa2\xcd\nf\x12s6\xedȖ\xf1\x80]`x\xea\xc8v\xd3\xd0\xce\xd8}\x19\xf0\xf6̱<\xd0\xf9\xa9e\xf2R\x9a{^\xbd<\x14\xed\x88qօ\xab\x93bo\xe2E\x8d&\xf9\x8f̔\x9c\x89\x1b\x9b\x98\xd1\xebX\xa9l\x8b\xa5\xa4\xb7r\x81́/\xac3P_JP\xf9\xce\x19\xf2\x02\xc6?\x8f\x89\xa0\x9dQxB\xcec`C\xca{\x06\x1d\xb8t\xc1\xdfHK\x87U\xac,l\xe4`Q\xa4\xbd\x88#\xc5a\x01\xd37\xd4\xc9O\xfe\x86\x9am\x8f\x1bPN\xf8\x8a\xb2\x86\xd9<\xcf|\xb13\xb2\xd0\ng\x14\xdc\xe6\x98%\r\xb0nu\xfcw\x11\n\xdd>\r\x97'\xad\xe0\x06\x9f\x16\xac\xd7\xfe\x96ÞQ\xe6-\x9f\x9d\xb7\x95\xbd\xf2M}#K\x8bMya\x94\xbc\xef\xdc\t\x8b\xa2\x81\xcd~\xe2\xf5\xd8\xc2\xc6Z\x8c\x8a\xeef\xfe\xd7\xf1\xee\xdd\xd9\xefCy\xb5\xc1;\xaa?M\xf0\xdb\xefM\xad\x8a\xeea\xfa\x1b\xc8\xc6\u007f\x02\x00\x00\xff\xff~\x96\x80P\xae\t\x00\x00"), []byte("\x1f\x8b\b\x00\x00\x00\x00\x00\x00\xff\xb4WMo\xdc6\x10\xbd\xebW\f\xd2CZ \xd2&ȥ\xd8[\xeb\xe4\x104\r\x02;\xf5\xa5\xe8\x81K\xcdJ\xac)\x92\xe5\f\xd7q\x8b\xfe\xf7bHi?\xb4Z\xdb9T\xb7%\x87\xc3\xc7\xc7\xf7\x86\xb3U]ו\n\xe6\x16#\x19\xef֠\x82\xc1\xaf\x8cN~Qs\xf7#5Ưvo\xaa;\xe3\xda5\\%b?\\#\xf9\x145\xbeíq\x86\x8dwՀ\xacZ\xc5j]\x01(\xe7<+\x19&\xf9\t\xa0\xbd\xe3\xe8\xad\xc5Xw蚻\xb4\xc1M2\xb6Ř\x93O[\xef^7o\x9b\xd7\x15\x80\x8e\x98\x97\u007f1\x03\x12\xab!\xac\xc1%k+\x00\xa7\x06\\C\xeb\xef\x9d\xf5\xaa\x8d\xf8WBbjvh1\xfa\xc6\xf8\x8a\x02jٴ\x8b>\x855\x1c&\xca\xda\x11P9̻1\xcduI\x93g\xac!\xfeei\xf6\xa3\x19#\x82MQ\xd9s\x10y\x92\x8c\xeb\x92U\xf1l\xba\x02 \xed\x03\xae\xe1\x93\xc0\bJc[\x01\x8cgϰ\xea\xf1t\xbb7%\x95\xeeqP\x05/\x80\x0f\xe8~\xfa\xfc\xe1\xf6\xed\xcd\xc90@\x8b\xa4\xa3\t\x9c\x19\x9ca\x06C\xa0`D\x00\xec\xf7\xa0@9P\x91\xcdVi\x86m\xf4\x03l\x94\xbeKa\x9f\x15\xc0o\xfeD\xcd@\xec\xa3\xea\xf0\x15P\xd2=(\xc9WB\xc1\xfa\x0e\xb6\xc6b\xb3_\x14\xa2\x0f\x18\xd9L,\x97\xefH\\G\xa33\xe0/\xe5l%\nZQ\x15\x12p\x8f\x13?؎t\x80\xdf\x02\xf7\x86 b\x88H\xe8\x8a\xceN\x12\x83\x04)7\x9e\xa0\x81\x1b\x8c\x92\x06\xa8\xf7ɶ\"\xc6\x1dF\x86\x88\xdaw\xce\xfc\xbd\xcfM\u0090lj\x15Or8|\xc61F\xa7,\xec\x94M\xf8\n\x94kaP\x0f\x101\xf3\x94\xdcQ\xbe\x1cB\r\xfc\xea#\x82q[\xbf\x86\x9e9\xd0z\xb5\xea\fO\xa6\xd2~\x18\x923\xfc\xb0\xca\xfe0\x9b\xc4>Ҫ\xc5\x1d\xda\x15\x99\xaeVQ\xf7\x86Qs\x8a\xb8R\xc1\xd4\x19\xba\xcb\xc6j\x86\xf6\xbb8ڐ^\x9e`\xe5\a\x91\x19q4\xae;\x9aȚ\u007f\xe4\x06D\xf5E0ei9Łh\x19\x12v\xae\xdf\xdf|\x81i\xeb|\x19s\xf6\x8br\xf6\v\xe9p\x05B\x98q[\x8c\xe5\x12\xb3\xf2$'\xba6x\xe38\xff\xd0֠\x9b\xd3Oi3\x18\xa6I\xccrW\r\\\xe5J\x03\x1b\x84\x14Z\xc5\xd86\xf0\xc1\xc1\x95\x1a\xd0^)\xc2\xff\xfd\x02\x84i\xaa\x85\xd8\xe7]\xc1q\x91\x9c\a\x17֎&\xa6Jv\xe1\xbefV\xbf\t\xa8\xe5\xf6\x84@Yi\xb6Fgk\xc0\xd6GP\a\xe7\x8f\x046'\x99\x97\x9d\x9b\xc1\xa9\xd8!\xcfGgX\xbe\xe4 \xd9\xfe\xbeW\xa7\x85\xe6{l\xbaFj\x05\x8d@J\xf5\xf8\xa19\xcbx\x19\x03,\xaaw\x11\xc9$b\xa1Ax\x95R E\xea\x18\xd3\xf9\xd6\xf2\xa1K\xc3\xf2\x065\xfc\x9c1\u007f\xf4ݣ\xf3Wޱ\xc8\xfdѠ[oӀ7N\x05\xea\xfd\x13\xb1\xd33\xbb\u007fz\xce\x03\xafQ\n4^\x866\x06\\#%{a\xbb\vb\x9d\xbe\xfc(=ͼ/\xcc\xd7&\xf5\x88\xc8k\x93\xdd\xfd\xed\xf0E\xed&\xe2\x82t\xea,\xa9\x85a\x01\u007f6|\xc1\xa3\x976\xa8G\xdf<\xcb\xe7\xac8\xd178=\xc7OT\xeb\x14#:\x1e\xb3\xe4\x97o\xbe\xe0\xb9V\x9f\xfc\xf1\xdb\xf5\xc7'\xfc\xfe\xee\x10\x99{;e\\A\x13\"\xd6d:y\xafeN\x1c\x9f\x9dxNF\xf9N\xfb\x87S\xa2\x16o\x14\xbf\x06\x13s]{\x02\xe2\xfb}`)K\xe8ʓ3\xef\x90rB\xa4\xfc\x9ck5o$\xe4\xdb \xb4h\x91\xb1\x85\xcdC\xa9\xaf\x0f\xc48\x9c\xe3\xde\xfa8(^\x83`k\xe7\xa0;\xa5&\x00\x1a[\x9a\x835beT\xd7\xd2\x12\xcb\xe7\xce\xfa\xe9\x8a\x1493\x95f\xe2-\x95|i\xedLg\xe7\xb0\xdbHg\xb3@I\x99G#>F6\xef\"\x9b\xb8\xa3\xa4\x0f\u007f\x1f\xdb\xfdM\xfa\x10)\xac\xea\x1c\xaac!⦗\xba\xee\x14\xba\xa3\xed\t\x80/\x8d\xa59<\xb0\x18\x16K\x12\x13\x80\xac{\x14\xab\xc8ڭ~L\xacʆZL\xf2\x02\x18K\xfa\x97\xc7\xfb\x8f?/\x0e\x96\x01\xac3\x96\\\x90\xbdj\xe9\xdb\xf3\xe8\xde*\x80 _:iC\xb4\xf753LT ؕ\xe4!4\xd4\vE\"\xcb\x00\xa6\x82\xd0H\x0f\x8e\xac#O:9\xf7\x8010\x11j0\xcb\u007fR\x19\xa6\xb0 \xc7l\xc07\xa6S\x82#`E.\x80\xa3\xd2\xd4Z\xfe{\xcb\xdbC0\xf1R\x85\x81\xb2\x85w\x9fԁ\x9cF\x05+T\x1d\xdd\x00j\x01-n\xc0\x11\xdf\x02\x9d\xde\xe3\x17I\xfc\x14~7\x8e@\xea\xca̡\t\xc1\xfa\xf9lV\xcb\xd0Griڶ\xd32lf1(\xe5\xb2\v\xc6\xf9\x99\xa0\x15\xa9\x99\x97u\x81\xaeld\xa02t\x8efhe\x11E\xd71\x9a\xa7\xad\xf8\xce\xe5\xd8\xf7\xd7\a\xb2\x86\r\xfb\xd6\a'u\xbd\xb7\x11\x03\xed\x8c\a8\xd4@z\xc0|4i\xb134/\xb1u>\xfce\xf1\x04\xfd\xd5\xd1\x19C\xebG\xbb\xef\x0e\xfa\x9d\v\xd8`RW\xe4\x92\x13+g\xdaȓ\xb4\xb0F\xea\x10\xff(\x95$=4\xbf\uf5ad\f\xec\xf7\u007fu\xe4\x03\xfbj\n\xb71\xbdaI\xd0Y\x81\x81\xc4\x14\xee5\xdcbK\xea\x16=}u\a\xb0\xa5}\xc1\x86}\x99\v\xf6+Ӑ8Ymo\xa3/\x1f'\xfc5\xa8\t\vK%{\x8f\r\xc8'e%˘\x1aP\x19\a8$\x9f\x1e0\x1eO\\\xfeR\xc5X\x04㰦\xdfLb9$\x1aH\xf6n\xecL/\x1bו\x94Ĕ\x99\x83O\x94GL\x01T\u007fxݐ\xa3xƑ\x0f\xb2\xe4\xe02^\x06\xe36̘9\x90\x98\x1eq8\xe1\x06\xfe\xb4\x11tA\x8f\a#hLl>\n\xa1\xc1\x14\xad\x8f&f\x8d\xeb\xb4>\xbe\x85?\xa3_%\x985\xe2\x82\\\xf9F\x04G\x159Ҝ\x85\xa9pY\x13\xcb[@\xa9\xfblM\x85\x1f\x82\x19\x91l\x99\\@\x02\x86\x01\x01g\x83\x02\xceT\xf5Q\x89\u007fy\xbc\xef+yo\xc4,{8\xbe\xf7\x82}\xf8\xab$)\xf1\x88\xa1y\xc1\xdd\xd7\xf7U\xba,ִ`\x00\xc1J*\xe9\xa0I\x80\xd4>\x10\n0\xd5(G\x06\x12\xc0\x89\xef(\x9f\xb8I\x15,\x97\xca]ka\xdb\x03r\xed\x94\x02\xfe\xb6x\xff0\xfb\xeb\x98\xe9\xb7Z\x00\x96%yf\x84\x81Z\xd2\xe1\x06|W6\x80\x9eՐ\x8eĂw\xa6-jY\x91\x0f\xd3|\a9\xff\xe9\xa7\xcf\xe3\xd6\x03\xf8\xd58\xa0/\xd8ZE7 \x93ŷe\xb9\x0f\x1a\xe9\x939\xb6\x1ca-C#\x87\xcdtk\x01\x0e\xaf\xac\xf6:\xaa\x1b\xf0\x99\xc0du;\x02%\x9fi\x0eW\\~\xf6\xc4\xfc\x0f\xe7\xce\u007f\xafNp\xfdCJ\xed+&\xbaJ\xc2m\xfb\xf0~\xd2\xed\x84L\x99\xe7d]\x93\x8b\xc0e\xec\x8bM\x85K\xf5\xf7`\x1c[@\x9b=\x16\x911{/\x15J\x12GB\u007f\xfa\xe9\xf3I\x89\x0f\xed\x05R\v\xfa\x02?\x81\xd4\xc96ֈ\xef\xa7\xf0\x14\xa3c\xa3\x03~\xe1\x9b\xca\xc6x:eY\xa3ՆunpE\xe0MK\xb0&\xa5\x8a\x84\x83\x04\xacq\xc3V\xe8\x1d\xc7\xf1\x86`х\xb3\xd1ڣ\x9f\xa7\xf7w\xef\xe7I2\x0e\xa8:Vb\ue695d4\xc30&\xf5\xe2\x18\x8dGͼ\xff|\x97\xc2'\x18(\x1b\xd45%}\t\xaa\x8e\xbb\xe3\xf4\xfa-y|\fI\xfao\x04\x9a\f\v\xc7\xff\xad\xb9\xbfP\xb9\x88\xa0_\xa0\xdc\xc3^\x94\x9fU\x8eg\x15\xa7)P\xd4O\x98ҳj%\xd9\xe0gfEn%i=[\x1b\xf7,u]ph\x16)\x06\xfc,\x8e\x1b\xb3\xef\xe2?o\xd6%\x0e\n/U(\x12\u007f\v\xad\xf8\x1e?{\x93R=\x86}y\x1f\xbb^dd5<\xcbi\xb1nd\xd9\xf4\xc3I\xae\xb1'\x92I2\x12\x16\xa94\xa3\xde|\xf5Pf\x83v\x8e%\xda\x14y\x00.P\v\xfe\xbf\x97>\xf0\xfa\x9b,\xd8\xc9\x17\xa5\xef?\xee\xef\xbeM\x80w\xf2M\xb9z\x02\x80\xa7\x18\xb1\xe6^\xb0)+I\xee\x020\xfbp@\xdcC\xc7\x11ĺ\xa5y\x152\fX\x8f@1\x14\">{\xa0z<\v\xd8\xceZ\xe0@\x8d'\xac=\xa0#@hѲ\xe7\x9eiS\xa4\x16oQr\u007f\xe6\x16\x9c1ϒ\x00\xadUr\xb4\x15\xe7F\x9eAh\xc6\xfb\xea\x87\xc4\xe1\x82\xfdӀ3\x06ٳ\x00\t\xdfla{0\xb0\x1cK\xd13\xa0\xf8\xa4\x15y.e\xb4v(b1>@\rhx\xa0\x18,Y#\x06+\x87\x918\xd8L\xfa\xbdh\xaa\f\x18:\xff\x8a\xb92\xd2\xf76MU$d.\x11B\xbfu\xb2,\r\xa3\xd3ç\xb5\xf3\xee\xbd=>\x11\x1fq\x9cH\xc2\x05\xd9r\xcc\xe6([\xa3\xef\xef\x18\x1b\ra\x8f]:\x19\xeb6s#\x11\xa1##\xdb\n\xa5\"\x01\xfd\xdb\xde\xf0\xcc\b\xd7}.K\xaa\xb8\xc8uV\x19\x14\xfd@\x96\xc5\xdb\xc23\x9e\xd7\xe3\xebȵ?ó\xf3$\xe2$?b\x84c\xc8V\x19\xd7b\x98\x83\xc0@\xc5(S\xdd)\x85KEs\b\xae;\xde>S,Z\xf2\x1e\xebK\xa9\xf8{\xa2Jsj>\x02\xb84]\xd8\x0e\xaa\aE\xe1\xda\xe7\x98zݬ<:\x02\x1e\x8632D\xf7\x19\xaa*\x15\xcf\xec\x17\x82݃p\x94jI\xe3\xad\xee-5\x01\xc06\xe8/\x99\xea\x91i\xc6\x12l[\xbd\xcef\x18\u007f\xa4\xbb\xf6\xf8\x96\x02\x1eh=\xb2z\xaf\x1f\x9d\xa9\x1d\xf9\xe3\xc0)\xfa\xf8\x1a\xa9\xe6\x05\xfc\x1a\xb3\xe1U\xfa\xe7\x8b.\x99 \x93AcT\x9f\xcc&\xa0\x02ݵKrl\x87\xe5&\x90?,\xe7c\xaf\x12q\x9aٙq\xef|\xef\xbf\xc4)\x0fh%\xea\xf8z\xc8\xd9\x15\f\b\xe9\xad\xc2\xcd\b\xe3^\x91\x88X8\xb9\xb8\x04\xec\xe2\xb9OjK.n\xbd\xf65%\xcatg\xf4\t|\xdd\xe7\xb3\xd4\xe1O\u007f<\x83o\xa4\x0eT\x0f\x9aC\xdegs\xbe\xe3[\xbe\xce\rgZ\xb7\xd7h}c\xc2\xfd݅(Xl\t\xfbl\xd8\x01\xa5X\xfb\xe2\xdbf&ʡ0\xe6\xaammyU\xaa\xfa\x80.\xbc\xb4\x15-\x0e\x88/t\xa1\xc8y\xbc\a-Ȣ\xe3L\x8f/\xe1\xb7\xc3ߚn\xc0\xcb\xf8\xbc\xc7x+\x01\xb04|{nN\f,\x8d\xa3\x91\x92\t\xc7m堉\x1c\x8a\xff-\xfb\xc7h\x9c\x1c-F\xc9\xc5\x1e\xef\xfcD\x9cWv\x18\x06K\x9e\x0eH<\f\u007fO\xbbJ\xaf7\xfd\x0fd\xf1\xcf\xd2\xe8\x04\x95\xfd\x1c>}\x9e@~6\xfe\xd8\xff\xeeŋ\xff\v\x00\x00\xff\xff~\xe4\xff\xab\x84\x1c\x00\x00"), - []byte("\x1f\x8b\b\x00\x00\x00\x00\x00\x00\xff\xc4YKo\xe3\xc8\x11\xbe\xebW\x14\xbc\ag\x81!\xb5;\x1b\x04\x81n\xbbv6P\xb2\xeb1F\xce\\\x06sh\xb1\x8bb\xc5d7\xd3]\x94\xac\x04\xf9\xefAu\xb3\xf5\xa4\x1e60\x13^l\xf5\xa3\xfa\xab\xaf\x1e]E\x8e\xb2,\x1b\xa9\x96>\xa1\xf3d\xcd\x04TK\xf8\xc2h\xe4\x97ϟ\xff\xecs\xb2\xe3口g2z\x02w\x9dg\xdb|Do;W\xe0=\x96d\x88ɚQ\x83\xac\xb4b5\x19\x01(c,+\x19\xf6\xf2\x13\xa0\xb0\x86\x9d\xadkt\xd9\x02M\xfe\xdc\xcdq\xdeQ\xad\xd1\x05\xe1\xe9\xe8\xe5\x0f\xf9O\xf9\x0f#\x80\xc2a\xd8\xfeD\rzVM;\x01\xd3\xd5\xf5\b\xc0\xa8\x06'\xd0Z\xbd\xb4uנC\xcf֡ϗX\xa3\xb39ّo\xb1\x90S\x17\xcev\xed\x04\xb6\x13qs\x8f(j\xf3h\xf5\xa7 \xe7c\x94\x13\xa6j\xf2\xfc\xf7\xc1\xe9\xdf\xc8sX\xd2֝S\xf5\x00\x8e0\xeb\xc9,\xbaZ\xb9\xe3\xf9\x11\x80/l\x8b\x13x\x10(\xad*P\x8f\x00z\x02\x02\xb4\xacWq\xf9c\x94UTب\x88\x19\xc0\xb6h~~\x9c~\xfai\xb67\f\xd0:ۢcJ\xea\xc5gǬ;\xa3\x00\x1a}\xe1\xa8\xe5@\xfa\xad\b\x8c\xab@\x8b=\xd1\x03W\x98@\xa1\xee1\x80-\x81+\xf2\xe0\xb0u\xe8\xd1D\v\xef\t\x06Y\xa4\f\xd8\xf9?\xb1\xe0\x1cf\xe8D\f\xf8\xcav\xb5\x167X\xa2cpX\u0605\xa1\u007fod{`\x1b\x0e\xad\x15c\xcf\xf1\xf6!\xc3茪a\xa9\xea\x0e߁2\x1a\x1a\xb5\x06\x87r\ntfG^X\xe2s\xf8\xdd:\x042\xa5\x9d@\xc5\xdc\xfa\xc9x\xbc N\xee\\ئ\xe9\f\xf1z\x1c<\x93\xe6\x1d[\xe7\xc7\x1a\x97X\x8f=-2劊\x18\v\xee\x1c\x8eUKY\x80n\x82K\xe7\x8d\xfe\xce\xf5\x01\xe0o\xf7\xb0\xf2Zl\xebّY\xecL\x04g;c\x01\xf16 \x0f\xaa\xdf\x1a\xb5\xd8\x12-C\xc2\xceǿ̞ \x1d\x1d\x8cq\xc8~\xe0}\xbb\xd1oM \x84\x91)\xd1E#\x96\xce6A&\x1a\xddZ2\x1c~\x145\xa19\xa4\xdfw\xf3\x86X\xec\xfe\xaf\x0e=\x8b\xadr\xb8\v1\x0es\x84\xaeՊQ\xe705p\xa7\x1a\xac\xef\x94ǯn\x00a\xdagB\xecu&\xd8MO\x87\x8b#k;\x13)\x85\x9c\xb0\xd7aZ\x98\xb5X\x88\xf9\x84A\xd9J%\x15!6\xa0\xb4\x0e\xd4\xd1\xfa|O\xf4p\xe8\xca3W\xc5s\xd7\xce\xd8:\xb5\xc0\xdfl\x94y\xb8\xe8\x00\xdb/C{\x128\xc9,1\x8c\xb1\x17\x0e>\xae<\x12\nP\xa7ͫ\n\x1d\x86=\x92Ũ\x10\xf7\xb2\x9eغ\xb5\b\x0e*\xe9\xfcH\xc2\tC\x04\x95\xad\xbe\xa0ƣ\xed\x03\xc2a\x89\x0e\x8d\xb8{\xcc\x10\xad\ry\x84\x15\x99\x14\x161\xc5\x02\xdb\x01-\xe6\x11\xf50\xc4\xd3\xd4Ù\xec9\b\xf8\xe7\xc7iʘ\x89\xe1\x1e:\x1f\x9f{\x81\x1eyJ\xc2Z?*\xae\xae8\xfbvZ\xc6\xc3B\xee`\v\nZ\xc2\x02\xf7\x921\x90\xf1\x8cJ\x83-\a%ʭ\r\x12`\x0e\xfb\x1d\xefb\xa6\xe8S\xd26\x85\v\xf5\xa0$G\x91\x86\xbf\xcd><\x8c\xff:\xc4\xfcF\vPE\x81^\x04)\xc6\x06\r\xbf\x03\xdf\x15\x15(/j\x90C=\x93\x99\xbcQ\x86J\xf4\x9c\xf7g\xa0\xf3\x9f\xdf\u007f\x19f\x0f\xe0W\xeb\x00_T\xd3\xd6\xf8\x0e(2\xbeI\u007f\xc9g\xc8G:6\x12aE\\\xd1\u1975a@\xbc\xabW{\x15\xd4e\xf5\x8c`{u;\x84\x9a\x9eq\x027\x12\xe5;0\xff#\x81\xf5ߛ\x13R\xff\x10\x03\xe8F\x16\xddDp\x9b\xfbn7\"\xb7 \xb9R\f\xech\xb1@\x17\n\x84\xa1'$oI\x89߃u\u0080\xb1;\"\x82`\xb1^\xccG\xa8\x8f@\u007f~\xff\xe5$\xe2}\xbe\x80\x8c\xc6\x17x\x0fd\"7\xad\xd5\xdf\xe7\xf0\x14\xbccmX\xbd\xc8IEe=\x9eb֚z-:Wj\x89\xe0m\x83\xb0º\xceb\xbd\xa1a\xa5\xd6\xc2B2\x9c\xf8\x9b\x82V9>뭩\xcax\xfap\xffa\x12\x91\x89C-B\xbe\x93۩$\xa9\x1a\xa4\\\x88w^\xf0ƣK3=\xbe\x8b\xee\xc3\x16\x8aJ\x99\x05F}\x11\xcaNn\xa1\xfc\xf6-q||\xf5\xa7g\xa0\x048L\x1c\xff\xb7K\xf4J\xe5B\xa5z\x85r\x0f;^~V9i\f\x9cAƠ\x9f\xb6\x85\x17\xd5\nlُ\xed\x12ݒp5^Y\xf7Lf\x91\x89kf\xd1\a\xfc8\x94\xf6\xe3\xef\u009f7\xeb\x12\n\xf2k\x15\n\x8b\xbf\x85Vr\x8e\x1f\xbfI\xa9T+^\u007f\x8f\xdd\xce\xfa\x02\xe6p\xaf\x84Ū\xa2\xa2JM@\x9fcO\x04\x13IũcjVf\xfd\xd5]Y\b\xed\x9c Zg}\xb7\x99)\xa3\xe5\u007fO\x9ee\xfcM\fvtU\xf8\xfecz\xffm\x1c\xbc\xa37\xc5\xea\x89B7\xfaHk\xa7Z\xa8,\t݅\xba\xec\xe3\xde\xe2TW\x0eԅ\x9b5\xaf*\f\xbdQ\xad\xaf,O\xef/\xe0\x98m\x16&\f[\x03\xf4\xe5`\x92%\x8e{\xb6\n<\x83'\x8a\xba\x80%\xd6\xf6C5v\x8f$\xd6\x1caD\xeaڀg8X_\x8bPZ2)\xa0\xf6\x11fÝ\xc3\xc1\x9a\xd6ꃑ}O8\x98ܚ\xe6`\"*yU[Ŋ;\xff\x9a\xc6*lH\xcc\xc6\xf8\xe6^L(n\xdf\xdcZ\x15V\n\xc7\xfdWL\xe7\xad|w\xbc#\xbc\xc7p:\xa2cj0\xf4+\x01\a\xac\x94O\x87\fY\x14v\xe4ŭ!\xa7\x8a8ԡ\xac\x93\xaa\xb3TT\xa3\x86\xcdK.x\x92\x0e34\xf4\xb7CUL\x12\xd4yԡ\xf7\x1c\x00}\xbc\xaf\xb4\xaeQ<\x01i\xe33\x11q\xb4\xc2tu\xad\xe65N\x80]w<}&\x80\x1a\xf4^-.E\xd0\xefqU\xec\xf8\xfa-\xa0\xe6\xb6\xe3M\xcbׇROŭ\xef\xbd\xe0umg\xa5\xfc%(\x8f\xb2f\xc8\xe36A}\xde\xe5\xe4A\xd35\xc7\xc7d\xf0\x80\xab\x81ѩytv\xe1\xd0\x1f[&K\x06\x1ch\x022\xf85xǫ\b\xe8\x0f\xba\xc4A\xbf\f*['ﶬj0]3G'D\xcc\u05cc>1\x92R\xc3P\x0f\x1dj\xef-\x93[\t)\xdbEQ}7Q(\x13^)\x89\xff\xb2\x05M\xbe\xad\xd5z@n\xd2$\\\xaf\xe2\xbe\x12G[\x8fIQ(\xe1\x1f\xe6^\xdb\xfb\aP\xf7֜\xa8\x06SȐ\xe1?\xfd\xf1\xccmL\x86qq\x90J\xfby!\xf4\x179\xe5\xeb\x9cp\xe6\xc2\xf7\xac\x1c_\x9b\xf6f{\x8b/e\xbc z8\xdf\xed\xa6\xae\xe3D\xb5\u007f̷\xccQ\x83D\x1d\r\x06\xe4zGv\xffެ\x1f\xd9\xdel\xaa\x90b\x0e\xf5\xc3ᧆ\x9b\x9b\xbd/\a\xe1ga\x8d\xa6\xf8\x99\x04>\u007f\x19A\xff.\xedS\xfa\x1c \x83\xff\v\x00\x00\xff\xff\xb9\xf7H\xe3\xa0\x19\x00\x00"), + []byte("\x1f\x8b\b\x00\x00\x00\x00\x00\x00\xff\xc4YKo#\xb9\x11\xbe\xebW\x14f\x0f\xce\x02ӭ\xdd\xd9 \bt\x9b\xb5w\x03'\xbb\x1e\xc3r|\x19́j\x96\xba\x19w\x93\x1d\xb2(Y\t\xf2߃\xe2C\xcf\xd6\xc3\x0efҗ\x19\x93\xc5b\xd5WojT\x14\xc5H\xf4\xea\t\xadSFO@\xf4\n_\b5\xff\xe5\xca\xe7?\xbbR\x99\xf1\xe2\xc7ѳ\xd2r\x02\xd7ޑ\xe9\x1e\xd0\x19o+\xbc\xc1\xb9Ҋ\x94ѣ\x0eIHAb2\x02\x10Z\x1b\x12\xbc\xec\xf8O\x80\xcah\xb2\xa6m\xd1\x165\xea\xf2\xd9\xcfp\xe6U+\xd1\x06\xe6\xf9\xea\xc5\x0f\xe5O\xe5\x0f#\x80\xcab8\xfe\xa8:t$\xba~\x02ڷ\xed\b@\x8b\x0e'\xd0\x1b\xb90\xad\xefТ#cѕ\vlњR\x99\x91\xeb\xb1\xe2[kk|?\x81\xcdF<\x9c$\x8a\xda\xdc\x1b\xf9\x14\xf8a\xabU\x8e\xfe6\xb8\xfd\x9br\x14H\xfa\xd6[\xd1\x0e\xc8\x11v\x9dҵo\x85=\xdc\x1f\x01\xb8\xca\xf48\x81;\x16\xa5\x17\x15\xca\x11@\x02 \x88V$\x15\x17?F^U\x83\x9d\x882\x03\x98\x1e\xf5\xc7\xfbۧ\x9f\xa6;\xcb\x00\xbd5=ZRY\xbd\xf8m\x99uk\x15@\xa2\xab\xac\xea)\x80~\xc5\f#\x15H\xb6':\xa0\x06\xb3P(\x93\f`\xe6@\x8dr`\xb1\xb7\xe8PG\v\xef0\x06&\x12\x1a\xcc\xec\x1fXQ\tS\xb4\xcc\x06\\c|+\xd9\r\x16h\t,V\xa6\xd6\xea_k\xde\x0eȄK[A\x980\xde|J\x13Z-ZX\x88\xd6\xe3{\x10ZB'V`\x91o\x01\xaf\xb7\xf8\x05\x12W\xc2\xef\xc6\"(=7\x13h\x88z7\x19\x8fkEٝ+\xd3u^+Z\x8d\x83g\xaa\x99'c\xddX\xe2\x02۱Su!l\xd5(\u008a\xbcű\xe8U\x11D\xd7\xc1\xa5\xcbN~gS\x00\xb8\xab\x1dYiŶud\x95\xae\xb76\x82\xb3\x9d\xb0\x00{\x1b(\a\"\x1d\x8dZl\x80\xe6%F\xe7\xe1\x97\xe9#䫃1\xf6\xd1\x0f\xb8o\x0e\xba\x8d\t\x180\xa5\xe7h\xa3\x11\xe7\xd6t\x81'j\xd9\x1b\xa5)\xfcQ\xb5\n\xf5>\xfc\xce\xcf:El\xf7\u007fztĶ*\xe1:\xc48\xcc\x10|/\x05\xa1,\xe1Võ谽\x16\x0e\xbf\xba\x01\x18iW0\xb0\x97\x99`;=\xed\x13GԶ6r\n9b\xaf\xfd\xb40\xed\xb1b\xf31\x82|T\xcdU\x15b\x03\xe6Ƃ8\xa0/wX\x0f\x87.\u007f3Q=\xfb~JƊ\x1a\u007f3\x91\xe7>ўl?\x0f\x9d\xc9\xc2qf\x89a\x8c\x899\xb8Hy\xc0\x14\xa0͇\x97\rZ\fg8\x8b\xa9\x8a\xdd\xcb8EƮ\x98qPI\x96\a\x1c\x8e\x18\"\xa8l\xe4\x195\xeeM\n\b\x8bs\xb4\xa8\xd9\xddc\x86\xe8M\xc8#$\x94\xcea\x11S,\x90\x19\xd0b\x16\xa5\x1e\x16\xf18\xf4p\"{\x0e\n\xfc\xf1\xfe6ǧp\x12\x9d\x0e\xef=\x03\x0f\u007fs\x85\xad\xbc\x17\xd4\\p\xf7\xd5\xed<^\x16r\a\x19\x10\xd0+\xacp'\x19\x83ҎPH0\xf3A\x8e\\\xb5\x81\x03\xccb:\xf1>f\x8a\x94\x926)\x9c\xa1\a\xc19JI\xf8\xeb\xf4\xd3\xdd\xf8/Cȯ\xb5\x00QU蘑 \xecP\xd3{p\xbej@8VCY\x94S\xde);\xa1\xd5\x1c\x1d\x95\xe9\x0e\xb4\xee\xf3\x87/\xc3\xe8\x01\xfcj,\xe0\x8b\xe8\xfa\x16߃\x8a\x88\xaf\xd3_\xf6\x19\xe5\"\x1ck\x8e\xb0TԨ\xfd\xa2\xb5F\x80\xbd+\xa9\xbd\f\xea\x92xF0I]\x8fЪg\x9c\xc0;\x8e\xf2-1\xff́\xf5\x9fwG\xb8\xfe!\x06\xd0;&z\x17\x85[\u05fb\xed\x88\xdc\bI\x8d \xab\xea\x1amh\x10\x86\xbe\x90\xbc9%~\x0f\xc62\x02\xdal\xb1\b\x8c\xd9z1\x1f\xa1<\x10\xfa\xf3\x87/G%\xde\xc5\v\x94\x96\xf8\x02\x1f@\xe9\x88Mo\xe4\xf7%<\x06\xefXi\x12/|S\xd5\x18\x87ǐ5\xba]\xb1\u038dX 8\xd3!,\xb1m\x8b\xd8oHX\x8a\x15\xa3\x90\r\xc7\xfe&\xa0\x17\x96Nzk\xee2\x1e?\xdd|\x9aD\xc9ء\xea\x90\xef\xb8:\xcd\x15w\r\xdc.Ě\x17\xbc\xf1\xa0h\xe6\xcf\xf9\xe8>d\xa0j\x84\xae1\xea\x8b0\xf7\\\x85ʫ\xb7\xc4\xf1a\xe9\xcf\xdf@\v\xb0\x9f8\xfeoE\xf4B\xe5B\xa7z\x81rw[^~R9\x1e\f\xacF\u00a0\x9f4\x95c\xd5*\xecɍ\xcd\x02\xedB\xe1r\xbc4\xf6Y\xe9\xba`\xd7,\xa2\x0f\xb8qh\xed\xc7߅\u007fެKh\xc8/U(\x10\u007f\v\xad\xf8\x1e7~\x93R\xb9W\xbc\xbc\x8e]MS\x03\xb3\u007f\x96\xc3b٨\xaa\xc9C@ʱG\x82Iq\xc7)cj\x16z\xf5\xd5]\x99\x01\xf5\x96%Z\x15i\xda,\x84\x96\xfc\u007f\xa7\x1c\xf1\xfa\x9b\x10\xf4\xea\xa2\xf0\xfd\xfb\xedͷqp\xaf\xde\x14\xabG\x1a\xdd\xe8#\xbd\xb9\x95\f\xe5\\\xa1=ӗ=\xec\x10\xe7\xber\xa0/\\Ӽ\xaa1tZ\xf4\xae1t{sF\x8e\xe9\x9a0˰1@j\a3/vܓ]\xe0\ty\"\xab3\xb2\xc4\xde~\xa8\xc7N\x92Ğ#\xacp_\x1b\xe4\x19\x0e\xd6\xd7J\xc8#\x197P\xbb\x12\x16Ó\xc3\x1eMo\xe4\xdeʮ'\xecmnL\xb3\xb7\x11\x95\xbch\xac\"A\u07bdf\xb0\n\a2\xb21\xbe)\xb1\t\xcd\xed\x9bG\xab\xcap\xe3\xb8\xfb\xc4t\xda\xcaׇ'\xc2;\x86\x95Q:R\x1d\x86y%\xc8\x01K\xe1\xf2%C\x16\x85-~\xf1hȩ\xcc\x0eeh\xeb\xb8\xeb\x9c\vբ\x84\xf5#\x17<\xf2\x84\x19\x06\xfa\xab\xa1.&3\xf2\x0ee\x98=\a\x84><77\xb6\x134\x01\x1e\xe3\vfq@\xa1}ۊY\x8b\x13 \xeb\x0f\xb7O\x04\x10Zk\xec\xc0t\xb5\x03\xed/\x81(\xce{\x95\xf1\x9a\x82m\xdb6\x9e\x86\x0e\x9d\x13ux\x95\x12\x04K\xee\xa5k\xd4h\x05\r\xf6\xc6҇y\x05_\xb0\xf2\xb45\x8e\xf1\xe0\x98\x022\x01\x1a\xf1\x14\x15y\x91\xeer \xecPh\xa6\xe8My\xae5\xc7\x12\xac҄\xf5^\xe8@V\xe0\f\n\xbfG\xaa\bC:\x02bf<\x1d\x11\xffʥPx\xdd\xec\xdd\bwN\x94{\xa6\x19\n\xbbuf;\x1dw\xfc\xa1\xf6\xdd\xe15\x05\xdc\xe1r`\xf5V\xdf[S[t\x87\xeeYd/\x1e\xb0v\x01\xbf\x86\x10y\x15\x00\xe9\xa2s\x18$2hL\x9bCܐhA\xfbn\x86\x96\x81\x98\xad\b]F$\xe7ǡ\x87\x840\x80l\x90\xdcp\xc8)?\xb2J#U%txW\xe3 &\x03R\xb9\xbe\x15\xab\x01\xbeY\x93\xd0cp\f\xb3\xb7o<&\xa7\"\u0381a\xef\xb5\x0f A\xa8\x1b\xa3\x8f\xb4\xc49o(M\u007f\xfa㉖d8(\xc2>\x03\xfa3\xdf\xf2un8\xd9\xf5p(ߟ}\x88z\xc8tC\xf5=\xe5\x03\x0e\xcd\xd8\x1a\xf7\xd6T\xe8\xdc`^\xda2I\t\x1f\xf5*g\x9cu'-9ͤ\\h,<\xa1U\xf3U\xfa{\xa9¯\x1f\xfb\xdf\f9\x19\xd5\xf1h\x1eͯ\x1c/\xbe\xae\xef\"a\xe9\xd2J8\xdd!>W\x04\x03\xeb\xe1\x12\xb8]\xcd\x0ek\xd7\xee5߶l-\xb6\xb0?\xd7\xfdm\x9b鰄\x05N\xe99\xb8\xb0\xd8rъ\x96\x1f\x00\xe4T\xa5\xbb\xa0\xae\x1d\xef)\x8fT\xba\xff\xa9\xae\r\x06\xd7\xc1b\xb0\xafܲ@zpN+\x9b\x96PT<\x05\xa1\xbc\xdb\xff\x8d\xee]|\xa5\xca?\xb9\x85?+\xa3\xa5\x8a\xbf/\xc2\xe7/#H\x8f\xd0O\xf9w4^\xfco\x00\x00\x00\xff\xff3&t\xf5\xd9\x1c\x00\x00"), []byte("\x1f\x8b\b\x00\x00\x00\x00\x00\x00\xff\xb4W\xc1n\xe36\x10\xbd\xfb+\x06\xdb\xc3^*y\x17{)tk\xd3\x16\b\x9a\x04\vg\x91K\xd1\x03E\x8d\xeci(\x92%\x87Nݯ/\x86\x92bYV\xe2\xcd\x02\xab\x9bə\xc77\xf3f\x86\xf4\xaa(\x8a\x95\xf2\xf4\x80!\x92\xb3\x15(O\xf8/\xa3\x95_\xb1|\xfc)\x96\xe4\xd6\xfb\x8f\xabG\xb2M\x05W)\xb2\xeb6\x18]\n\x1a\u007fŖ,19\xbb\xea\x90U\xa3XU+\x00e\xadc%\xcbQ~\x02hg98c0\x14[\xb4\xe5c\xaa\xb1Nd\x1a\f\x19|\xb0e\xf1\xff\x00\x00\x00\xff\xff\x1b\xa0}D\xf4\f\x00\x00"), - []byte("\x1f\x8b\b\x00\x00\x00\x00\x00\x00\xff\xec}}s#\xb7\x91\xf7\xff\xfe\x14\xa8\x8d\xeb\x91t\x11\xa9\xdd\xe4.u\xb7\x95z\\ʮ\xec\xa8\xecղV\xca\xfaq9>\x1f8\xd3$q\x9a\x01&\x00\x86\x12s\xbe\xef\xfe\x14\x1a\xc0\xbc\x90\xc3\x17`\xa8}\xb1\aWu\xf1R3=@\xa3\xd1\xe8n\xfc\xbaA\v\xf6\x1e\xa4b\x82\xbf$\xb4`𨁛\u007f\xa9\xf1\xfd\xbf\xab1\x13\x17\xcb\x17_\xdc3\x9e\xbe$\xafJ\xa5E\xfe\x0e\x94(e\x02\xafa\xc68\xd3L\xf0/r\xd04\xa5\x9a\xbe\xfc\x82\x10ʹ\xd0\xd4\xfc\xac\xcc?\tI\x04\xd7Rd\x19\xc8\xd1\x1c\xf8\xf8\xbe\x9c´dY\n\x12\x89\xfbO/\x9f\x8f\xff8~\xfe\x05!\x89\x04|\xfd\x8e\xe5\xa04͋\x97\x84\x97Y\xf6\x05!\x9c\xe6\xf0\x92HPZHP\xe3%d Ř\x89/T\x01\x89\xf9\xd8\\\x8a\xb2xI\xea?\xd8w\\G\xec \xde\xd9\xd7\xf1\x97\x8c)\xfdm\xf3\xd7\xef\x98\xd2\xf8\x97\"+%\xcd\xea\x8fᏊ\xf1y\x99QY\xfd\xfc\x05!*\x11\x05\xbc$7\xe63\x05M \xfd\x82\x107&\xfc\xec\xc8\xf5z\xf9\u0092H\x16\x90S\xdb\x1fBD\x01\xfcrr\xfd\xfe\x8f\xb7\xad\x9f\tIA%\x92\x15\x1a9\xe3\xfaF\x98\"\x94\xbcDZ\x99\x0e\xe0$\x10\xbd\xa0\x9aH($(\xe0Z\x11\xbd\x00B\x8b\"c\t2\xb1\xa2H\x88\x98Uo)2\x93\"\xaf\xa9Mir_\x16D\vB\x89\xa6r\x0e\x9a|[NArРH\x92\x95J\x83\x1cW\xb4\n)\n\x90\x9ay\xc6\xda\u0590\xa3Ưkc91õO\x91\xd4\b\x10\xd8.;\x96A\xea8dz\xab\x17L\xd5C[\x1f\x8e\x1b\x12\xe5DL\xff\x1b\x12=&\xb7 \r\x19\xa2\x16\xa2\xccR#wK\x90\x869\x89\x98s\xf6ϊ\xb62\x035\x1fͨ\x067\xdfuc\\\x83\xe44#K\x9a\x95pN(OINWD\x82\xf9\n)y\x83\x1e>\xa2\xc6\xe4\rN\x0f\x9f\x89\x97d\xa1u\xa1^^\\̙\xf6\xeb'\x11y^r\xa6W\x17\xb8\x14ش\xd4B\xaa\x8b\x14\x96\x90](6\x1fQ\x99,\x98\x86D\x97\x12.h\xc1F\xd8u\x8ekh\x9c\xa7\xbf\xab\xa6\xed\xa4\xd5W\xbd2\x92\xa7\xb4d|\xde\xf8\x03\x8a\xf9\x8e\x190\x02oeɾjGQ3\xda\xfcd\xb8\xf3\xee\xea\xf6\xae)gL\xads\x1f\xf9\xde\x10\xbez\n\f\xc3\x18\x9f\x81\xb4\x93\x88\xd2fh\x02O\v\xc1\xb8\xc6\u007f$\x19\x03\xbe\xce~UNs\xa6ͼ\xff\xa3\x04e\x04Z\x8c\xc9+T*d\n\xa4,R\xaa!\x1d\x93kN^\xd1\x1c\xb2WT\xc1\x93O\x80\xe1\xb4\x1a\x19\xc6\x1e6\x05M}\xb8\xfe\xb0\xe5Z\xe3\x0f^ym\x99/\xb7\xfao\vHZ+Ƽ\xc6fn\x99\x93\x99\x90-\xe5`^\x19\xb7\x88v/Z\xd3\xec\xea7\x1al\xfd/k]\xf9K\xf5\xa0\x91\x1fӉ\x92\xb3\u007f\x94\x80*ήX\xd8P)\x1b$\x89\xef\x1f\x8a\xc5x\xe3\xef[xj\x1a<&Y\x99BZiۍ\xb1\xac\xf5\xf8j\xe3\x05\u070e(\xe3F\xfe\x8d\xfa7\xdd\xe6\xf5_\x8d:\xed\xe81\x95@\x8c\x042n\xe9\x11\xc6q\xb0\x9d\x9c6\x8di\xc8;:\xb7st\x04\xf79:\xcd\xe0%Ѳ\x84-\x9c\xa1R\xd2\xd5\x16\xc6\xf8\xbd\xf9P\xbeT\xcf;\x85\x90\xb1\x04\x9a\x1b\x85e\x8d\xddd\xa8\xdc\xec\x11\xf9\xa4\xb9\xb2\x10\xe2~\x1f'\xfej\x9e\xa9u\x18I\xd0\xc6!SX\xd0%\x13ҍ\xddm)S \xf0\bI\xa9q\x9bߠ[\xa2:\x15\x92\x14B\xe9\xed\\ؾ\x12\x89]\x1cۦp'\v7F\xe6\x14\x87\x9fb3Ж\x12\x11\x1cL_s\xb3\x12\xebg\xa5(\xed\xb3\xebھ\xc1\xf0n\x8e\x90)U\x90\x12\xe1d\xa0\xcc@\xb9o\xa5\xa8\x9e\xeaUv\xbe\x95t5x\xbb\xefft\n\x19Q\x90A\xa2\x85\xdc\xe4\xe4!\xfc\xb4\xed\x10ͱ\x85\x8f\x1d:\xc4\xe9^\xa7\x89\xeb\x81\xed I\x8c\xd1\xf1\xb0`\xc9\xc2n\x89F6\x91\x0eI\x05(\\F\xc6l[m\x1b$\xd97\xf7\xee#\xbb\x16R\xdd\xf6,\xa9uz]\x8b\xabn\a(\x9f\xba\xedQCm\xce\xd6\xf6j\xe7>R\xb7_'c\xbd^\x8d\x10\xda\xeb\x8dW\x8f+\xb4\xe8b\x18\xd3\xf7zF /\xf4\xea\x9c0\xed\u007f\xddG\x91fY\xe3\xfb\x9f\xf1ĄK\xfc\xf5\xfa\x9bG\x95\xf8\x9d\xb3\xb2\x8f\xa2\x99\x95\xea\xf3\x9f\xe1\xa4\xe0fq\xeb\xf6\x8a\x83'\xe4\xbb\xe6[\xe7\x84ͪ\tI\xcfɌe\x1a\xe4\xda\xcc\xf4Z/\xc7`\xc6!\xfb\x9di9\xd5\xc9\xe2\xea\xd1X6\xaa\x0e\xc7\x1cȗ\xf5\x97\xad\x81\xe8-\xe6\xf6Ƽ\x87.Ag\x8eIȭ\x93x\x87ܬ\u007fA\xeb\xfa\xf2\xe65\xa4\xbb\xd8C\x0e\x93\xbc\x8d\x81\\\xaeu\xb6\xf9ig\xf5\x1e:\fg\xfaT\x1e\x84u\xff\xcf\t%\xf7\xb0\xb2\x16\v\xe5\xc4L\x0e5\x1f\xda\xe2Kl2\a\xe3\x10(d\xf7\xb0B2.\xb0\xb0\xf7\xedCE\xc1\xb6{X\x1d\xf2\xd8\x1a\x03M\x9f\x9c\xbbg9i~@F\xa0\x1bz8\xf3\b\x06\x89\xbc.\xda?8r\xb8\"\xf1\xcd\xf3>b\x98մ5\x82i8\xb1'\xcaN\x91Y\x05\vV\x1c8P\x8c\xa5)\xc0\xd5\xe2\xc3D\xefi\xc6\xd2\xeaCV\xee\xaf\xf9vk\xb8\xddn\x84\xbe\xe6\xe7\xe4\xea\x91)\xd35\x9e\x92\xd7\x02ԍ\xd0\xf8˓\xb0\xd3v<\x82\x99\xf6E\\^ܪmÇf\xbc\xe9\x00\xe1\xb6\xedچ\x15\xaa\xe9a\x8a\\s\xe3\xb88~`\xf4\xd0~n\xf7\xfe\xd0ny\xa90\xa0\xc4\x05\x1f\xe1V9\xee\xfa\x92e\xf6\x81$\x85l\xcd\xc8fת\x8f\xda\x0f\x1eH\xf6\xce\xec$\xf6}\x1b\x0f\xcdh\x02\xa9\xf761\x8aG5\xccYBr\x90\xf3]\x1bG\xb3\x15F\xbf\x1fօ\x03\xb5\xaem\x81\x12v\xd8\xd6\xee\x9bS\xdd\xe9\xfeΌ\xcc\xca=\xe0)?\xd9{\x1f\xdd\x12\xbc\xdb\xfe\xe8\xfe\x11\xe1\x16\x8b\xf6\xc7^\xee\xd24œ\x16\x9aM\x024~\xc0\\l\xee\xfd\xb6cv\x87\xccia\xd6\xef\xff\x98m\x0e\x05\xfa\u007fIA\x99<`\r_\xe2\xa1I\x06\xadw]\x98\xa8\xf9\x19\xf3\x05\xa6\x88\x99\xdf%\xcd6\xc3\xc2\x1d\x83\x13F\xb7@f7r1۰X\xce\xc9\xc3B(\xbb\xa7\xce\x18d]!\x9bvc\x8a<\xbb\x87ճ\xf3\r=\xf0\xec\x9a?\xb3\x1b|\xb0\xba\xa9\xac\x05\xc1\xb3\x15y\x86\xef>\xebc\x04\x1d(\x89\a=\xc6;\x83\xbeuk\x89E3\xf0[G|\x9d\x99\xbb\xab\xd7\a\xc9a!\x94\xfekw\xc0nK\u007f&\xfe\x8d\xb6m\xda\x11\xf7\xdak\xb3\xbb\x18V\xa5T\x8d%7\xd3 ]\x10\xcf*Z\xef\x01\xf4\xf4\x8d\xf6\x05\xe9\xaa\x00\x1d\xad\x02\xe5\x86\xc1{\xa4\xc2\x1e\x00\x1c\xd2\xc5\x10\xab\xd1\xf0%\xd0\u07bezl\xc4\x18\xcd\n5\xffn\x0e\xe4\xd8Vm\"\xf2\x9c\xae\x1fy\x1d\xd4\xd5W\xf6M/ӎ\x90\x9d}9/q]\x1en\xeey\x19\xc2î\a\xa6\x17\x8c\x13\xea\x97?H'P\x94\x14b\xbf&\xb2mA\x15\x99\x02pϾ\xbd\xaa\xc1\xb6\xa7ݯsƯ\xf1\x03\xe4\xc5\xd1\xf7wR\xb3+j:=\xab\xab\t\xad~\xc0\x1d\xe7P\xd3H\xa4\xe4a\x01\x12ZR\xb1\x19\xf06\x16\xe3\x81$\xb9\xd0\u0378\x82\xa1[\x88\xf4D\x91\x19\x93J7;z\xa8\xc0\x95\xeaPq\b\x9ca3\xba;\x96\x83(u\xc4\x1c\\\xd5o\xb7N+s\xfa\xc8\xf22'4\x17\xe5\x01\x9b\xbbmf\u007fayu\xa4\xe8f\xe0\x812\x8d\xea\xce\xd0\xc5\b\x8b\x16f\x96\x8a\f\xf4\xa1S<\x85\x99QG\x89\xe0\x8a\xa5 \xfd\x91\xb7\x9dY&\xcc\u009dQ\x96\x95]\xc77]-\xd4M\xe5WRFy\xa9o훍\xa8\xe1B<\xb4\x19t0\v\x16t\t\x84\xcd\b\xd3\x04xb\xe6\x05\xa4U\xd9\xf8\t\xc7\fd\xcd\xc1by\x98\x827\rx\x99\x1fƀ\x11\xael\xc6w\x06Ś\x8f\u007fMY\xf6\x14\xd3f$/~i|_\xbf\xfdA\x96F\xa5T\x0e\xdf¦@\xde\x01MW~}P\xad\x8d\xab\x8a2 \x88,yS#>\xc1\xca\b\xf1\xef\\/\x8e\xe9\xb81\xce\x0e\x98صx>\xd3MkǐxRk\xc7|\xa0\xda\xe8bB3\xd7-\x02f\xab\xf4\x863\xf6\xbd\x92\x9a\x00\xcbg\n\xc6A\x85\xd4\x06\xbd\xcc\xf6\xe9\xech\v\xe4\xd9r\f\xde9\xba\x10\xd3e-\xcc\xeb\x1c\xcd\x06\xf8-x\t\xb8\x00\xefJ\x94\xe4\x81r텾2\xe6\nq\xa0ԇΪmT\xce\x03\x9e\xde@\xd6y\x93\xd5\xc3ۀk\xb9B\xb8ա\x9d\xb6\u0378\xa6\xa9H\xee\x8d9\x92\xd39\x9c\x9c(\xf2\xea\xcdk#*\xc6\xea0[F\xc0\x8e`\x1b\xb3'\xb1\x85\x14K\x96\x1a\xd3\xe9=\x95\x8cN3\xe3\x04\xcf@\x02O@\x91/O\xdf_\xbe\xfb\xf9\xe6\xf2\xcd\xd5Y\x10q\xe3:\xc3cA\xb9\x91\xc1R\xf9ݼ\x9a}3\x00\xe0K&\x057\f\n\xe3\xc6\xf5\x8cP\xb2\xf4\xbdM*$\x9aq\xb5\xb2\xa5\xb3\xe6\x82(V#\xf6\x81\x10ƋR\xfb\xe8\xe8\x03\xcb22\r\xa3X\xf2dA\xf9\xdc\xf0\xd5L^\x83\x8fD\xad\xb8\xa6\x8f\xa6\xdfA\x14\x8d\x99\xab\x12Z@\x8a\xd2O(IEi\x18\xf0\xe5\x97\xe7\x84\xc1K\xf2e\xe3#a\f\xbdrt\x1b\x13\x8fc\xe6\xb0\x04i\xedk;\x95\x87\x06\xc6m\x930\xa72\xcd@)\xa3\xcb\x1e\x16\xa0\x17 ]\xb8\xc6M\x1e\x84Dsm\x13\xd2\xc8m'\x02\xb1\xc6\x1c\x06Q\xf4\xf8\xc4\xfb\n`;f\xe2\"\x15\x89\xba\xd0Tݫ\v\xc6\xcdV5J\xa9\xa6\xa3\x862\xbb\xb0\xbb\xcc\xc8\xed{#\uf84e*1\xbf\xf8\x9d,9g|>\xa2\xd5S\x8c\x8f\xe8H- \xcbN\x02z\x19\xa4\x86m\v\xf6#\x9b\xaf\x85\x04\xee\x03\x1d~\xdbښ\xf2\xaaR\x8c\xf6\xcbcr#\xf4.d\xd7\xf6Vm\r\xc8\xe3q\xa7\uef3a\xb9{\xf7\xc3\xe4\xed\xf5\xcd]\xa8\xcal\xaa\xdb\xed*4N\xf9\xb4\xd4m\x87\n\r\x9b\xfd]궭B\x83\xe8nQ\xb7\x1b*4\x8c\xb1\x1d\xeav\x87\n\r\xa2]\xab\u06dd*4\xac\xbf\xeb\xeav\x9b\n\r\xa2\xba\xa9n\xbbUh\xb0\x1c\xac\xa9\xdbM\x15\x1a\xb6\xb5m\xaa\xdbA\x85v\xbc\x16\xa6B\x81/\xa3\xd5\xe7w\xce]h,\xf1j\xce\xc36W-\xf0\x84\x9c\xf1\xb6\xfe\xe8\xdam\x9f\x96\xf3\xed\x10\x16_\xbe\xa7m\x18\x00o\x0e6\x882\xa9\x97\x83G\x18\xe3vQy`a\xb6S\x8cWa۾\x93\x9e\xee\xb6y\xfe\xe3P\xfe\xf1\xfc \r\x9e\x8c\xc9\x1bw\"Nɫ\x9f\xaf__\xdd\xdc]\u007f}}\xf5.\x8c)$~\xed\x10\x0fr\xe8ɚ\x93\x0ew&\x82/\xbbw\xe4\xe0\x8dζB\u0092\x89\xb2\x06c\xf7_\xb8\xb6\xad\xaf[\a\x80Z\x11\x05rɒ\x98\xbevv\xad\x8f\x01a\xdb^3\"~\xf4{\x8c\x89\b\xc2\xdb=\xb8\x86I\x11A\xf7\xd8~\x9cm\xfb\xbc\xb9\x18!8\xa2Ab\xdb.\xb3\xe45\xcch\x99\x05\xba\x85\x8e\xac Ϟ\x8dC\xac\x02\xf7^Oe\xf5\xb5\x14\a\x86Λ\xad\xa5\xb0nmz\x8f\x8f\x15\x1fG\x9d\x9f8Hdk\x03WQ\xc2\xca\x1cj\xce{=A\x88\xa9\xba\xc5\xef\x97\xc4\x1eF\xce\xd8\xfc\r-\xbe\x85\xd5;\x98ŐXg;\xa2%\x1d\xb0\x90\x88C\x8f\x0f\xd7\x1b\xda\x0f\xb6k1k\xb6/_H\b\x96\xb4\xab\xb5xr\xe7p\xafh\r\x1a\xf6\xc4\r\x89\xf4[X\xbe\xc5\xd9I\xbe\xb5\x8d\x82\x86\xc1\x14M\xb1\xf2\xd8\xf5\xa1.P\"x\x02\x85V\x17bi\xf6ax\xb8x\x10\xf2\xde\xf84f\a\x18ٓ\x10u\x81\t\x18\x17\xbf\xc3\xff\xe9ѻ\xbb\xb7\xaf߾$\x97iJ\x04\x06\xdcJ\x05\xb32\xb3\x80\xab\x831\x9e]\xadN'?ǔ\xe6sR\xb2\xf4\xabpe\xeb\xdb\x11dC\x14\x16\x83w$\xf9\xb8\xc53\xdcU\x8f}\xcd7\xa3\xc2+\x8d`v6\xa6\xd5A\x00\xc8\xed\xcdCU\x9d\xd1ؓ\xedS!2\b\fA\xfbv\xf8\xa1`W;\f\b\xda\xd5\x02\x0e\x0e\xbb\x1a\xae\x80\xe3\xec\x1a'\xf5\xb6q\x18\x90\xb1\xbb9\u05ed\x10\xe9K\xa2ʢ\x10R\xab*U}l\x14AX\\\xaan-\"\x98\xd5uN\xfe\xab\xfa\x11\xb3\x06ԏ''\u007f\xfe\xf6\xea\x87\xff{r\xf2\xd3\u007f\xc5~\xa7\xa6٨2r\fª\x80d\xccE\nFe\x9f\xdb\u007f:/\xe62Ah\xc4M\x0f\xf6(Mu\xa9\xc6\v\xa1\xf4\xf5\xe4\xdc\xff\xb3\x10\xe9\xf5\xa4'I\xa4\xa1\"LPr\x14#`[ɏ\x90֒t_\x1a\xa4\xf7\xa6骈\x18y\xff\xda,\x99\tՋ\xc3\xc1U]\xedA2\xad\x81\xa3\xdf\a27\x1eɹю\xb1\u0383oƉX\xbex\xf6Q\x8d\x9e\x99gё\xa6\x11\xb9\xed\xd4M\x1f\x8dE|\x90Ш?\xefqW8\xba\x1eD/'\u05fe\xe4\xccGd|ߝ\xad\x9a\xb6\x8f\xb1\xbfy\xa8\xf1\xd7O\xb2\xcfy\xea\xfd\xb6\xba\x1aMj\xd1\xf7\x87\xe5pno\x19\xc3\xda4\x94\xa7u}\x9aS\xfb\xe38)\xcaXe\xee(\xe4\x90\v\xb9:\xf7\xff\x84b\x019H\x9a\x8d\x94\x16\x92Σ\xb7\x1f\xdfU\xecb\xfd/\xfb\xb9X\xcd\xdf`\xc1fO\xc3\xce\xcc\x1aT%\x90\xa4\x94\xc6\xdb\xc9V\xdeF\x81\xf4\xa3\xedo\x95\xfct\x17\xc79\xb4\xb5\x85\xbc\x86)\xf7\xf35k\xfd\x81a\x9c\xa5\xc8\xca\x1c\xd4y\xe5\xa5\xf4 l\xe8\x01_\x92%\x95\xea\xa3z\\)[2u(P\xb6\xabQ\xbez\x1b\xa9\x9a\b\xeaX;\b\xc65\xcc{\xb8h\xa3c0\xa3\xd3}t\x85\x03zL\xb6(uQ\"l4\xa7\xba:\xdfy,D\\\xe4ηF)\x17o%\xa1\xad\xf3\xe2Y4тj\r\x92\xbf$\xffy\xfa\xf7\xdf\xff2:\xfb\xea\xf4\xf4\xc7\xe7\xa3\xff\xf8\xe9\xf7\xa7\u007f\x1f\xe3\u007f\xfc\xcb\xd9Wg\xbf\xf8\u007f\xfc\xfe\xec\xec\xf4\xf4\xc7o\xdf|s7\xb9\xfa\x89\x9d\xfd\xf2#/\xf3{\xfb\xaf_N\u007f\x84\xab\x9f\x0e$rv\xf6\u0557\xd1]~\x1c\xd5\x11\x9a\x11\xe3z$\xe4\xc8\n\xc1\xde4\xff]\xcd3\xf7X:靷D\xfan\xbc\xa4i\xb1}D\xd5\xd1״\xeaņ\x9e\x96\x95\x82D\x82\xfe\xf4bζ_\xde\f\xb7\xf9+\x95\xc3\xff\xab\tC\xf7w=-\x9bj\xbf\x05\xcb\xdc\x11<\xea\xeeA\x16\x0fɗXA\xc0}\xe1\x1e\"ND|\x1bB\xe5C\xa8|[\xfb\xb5\x87\xcao\xed\xfa\xa9\xe3\xe4\x18\xed\xee\xb76\x878y\xd4n\x17\xfdr\xdchm5\xe6\xa0W\"{\x18\x89\xca\v=\xda\xefD\xe6\xd5%\xc4H!\x8a2\xa3\a\xe7EV\xfd\xd8D\xe1l\xc2\xf4\x82h\xba\xed\xb5F!\xd5\xc8i\vE\b^\x82\x9b\xa81r\x99e\x84q\xbbI\xe2ǂQ\xb1\b\x11\xb2Q\aB-\xf2oi\xd8\xf0\xb0\x00\x1e\x95Ug\x1bSDi*5\xe3\xf31\xf9\xdeв֘â0N\xf22Ӭ\bD7U\x1eVU\x95\x82P\xa5D¨\xf6\xa8\xe3\xd0\r5\xa3J\xfb)A \x8f\xa6\xf7\x88]L \x05\x9e\x00V1*\x03\xf7A?\xe7ӕ\xe1\xe8\x15_V`\xa4҂s!X\xfbt\xf7\xedc\x03G\xcd\xf2uК\x1a?\x1a\xa8\x141\xc6mi\x88Y]D\xaa:\xdf\r\xa3\x17obW\xe8\x97(7dö\xaeϧ+\xcb8\xe6TU\x8a\xfc\x03\xa3\x80\xe2\xcdܭ&nm\xa8F\xda\v\x9f\x9ay\xfb$\xa6\xed1\xcdڞ&m?sv\x97)\xdb\xc3\xe3\xa9W\xd41\xc0\x1a\xfd\f\xd0\x1eF`!a\xc6\x1e{j\x98K^\xcd\x11a)p\xcdf,\x0e**L\x87\n\xe0\x98\xcd\f4Y\xd8\x02\x88\xbc\r\xb2\x89\x91\xe9O\x00\xebn#\a\xc7Q\xe8\xb7kq\x8eA\x9b\x0f\xda|G\x1b\xb4\xf9\xee\xe6\x96\xd3g\xac\xca?\xa0\xa7\x8c\xb9\xb5\xf1\t\xc0\xaf\x1b\x19\xba\xa8\x11\x9e\"\x9b\xbbZ\xafuI\x8d\v\xfcbز\xc4\xf2\x9f\xb8\xf4\x8c\x17Ymr\xb6\x8c\xbax \v6\x0f\x8d\x88e\xb0\x84\xcc\xd9\xf7$\xa7\x9c\xcem\x11E-\xfcQ\x1d9\xb8\xa0\xafmF%I\x96\xb6Jn\xe1P\xcd\xc6i\xd4T&h\x98,\u05f7\x86)\x92\xb1{ \xaf\xa1\xc8\xc4\xca\xd5J\xe4)\xb9\xd5T\x1b\xb5t\v:\f\x00\x17\xa5\x9e\xcfa\x95\\7\xdbZ\xf5A@\xd1@0\xa5\b߶|C\\\xb00\xe6\x8b\x11\xaa\xba\xb2f\xb5\xd1\xc49\x19Xz\xb6}\x9f\nE\xb5\x89\x15\xb1\xe8\xfd\x81E\xc8ڭ/F!\xa2ZM\xb3\xed(X\x1b}\xd6\xe8K\x9af\x8cC\xb3r-\xc3j\x98\xf1G\x98\xcd\x15l\xf5\x91\xf3P\xe3\x0f\x81\x99\xc4\xdb%V\x8d\xaa\x86\xb6\xef}\xc0\xfcR\bMNO.N\xce6\x0e\xb5N\xe2\xa9\xceX\x06vw\xb5%d\x92j\xb2\xa2I*\x96\x17\xd9\n\xe7\xe7$Ż|\\:\xac,\xe3Έ\t*53˾d\xd19Q\x82hI}}\xf9\xf8\xbe\x1aj\x86\xb8\x96\xa5\xb3UNO~99'\xa0\x93X<0!\x0f\x82\x9fh\x14\xa31\xb9\x13\xa4Tuǣi\xaeDI8\xd8r\x85\xf0Xd,a:[\xe16\x1fMS\x94ږ\xddë\xf1\xb0\x14\xd4\xd5#\xd3.O'\x9e\xec\x8c<\xc7\xd5nM\x05B\x8d3\xb4\x84\x8b\x05\xd0L/\xe2\xf3\xfb\x8c\\r\xc1G\xff\x04)\xb0\xd0\x14w\x14c\xa3;\x11gg\xcdv\x04\xc4IL\x18a\xfd\xedH\x10\x831\x10\xbe\x81`\x93\x93l\xdcEyw7\xf9\x06t{\v\x8bb\x87\xe9\x91\xc7\xe7cH\x1b\xe4LȎ\xcbV\xf7\xb7\xbe\xfb\xdfB\xa8(ΐ͛:\x95\xb6\xf7\x0eX'\x85\xc7ŜmӢ\rKv\x88Fr=\x89\ab\xfd Jí)\x9df\xab\xaa~\xa8\x02M\x9e\x99\xae\xc7Þ\x19\xc7\xf9\xfc+\xd0\x14+\xb6r\xa5\x81F\x9aHGXj\x8d\xbe\x1cǨ\xb17\xae.,\xc9\x1e3\xda,&\xe5d\u007f\x8ck*^M\x1a\x13\x15\xefܱ\xea\xd7\xf5\xf1#)\xc9\r]ag\xc1\xfd>\xed\x85M\xa4\xfe\xe2[;DW\xd57\xb2x\x87o\x8cc7qQ\xf4\xe8]\u007f\x940\xe9\x8dV%]'`\x96W\xbdh\xba\xdc\xcbpX\xdaz;J~It1\xacf{J6a\xf7>>\x9f\xfaA-I\x1c\x10\xb1\xfdz?N\xf4\xccP \xbd\xed-L\xe6\x89N7\xdeL6ւ\xd0$\x01\xd5\xc3Զ\x1b\a*,\x05r\x19\np\xac[o\x11+Dx\xfcҷ^\to\xc7Iw;J\xb2[G\xe5AIx\x99O{h\x92\xaa\x00\x86Ե\xc0\xb8\x89\xef\x11L\xa9\xcaV\xde`\xf7\xfc\x11n\x1f{\x0fM\x18\xca\xe7@^\x98\x9e\xfe\xe9\xdf\xfe\xed\x8f\xff6F6DS\xf5\a˔\x93\xeb˛˟o߿ªo\xb1R\xfe$\x99mX\xb6!z\xffi\x9f\xcc#)ýRa\xa1\xb3>3l|\r\x17\xff\xb6\xc1eկr\x9cmZ\xa0\xba\xf9Hz\xa6\xcf&6\xc2E\xf4\xa1\xfdl\x9d\x14\xb7\"\xb9?\x82\xa7}r\xf7jbI\xd5\xcev\xd4,P\xeeČ/E\xb6\xb47\xc5ݽ\x9a \x83\xe2fּ\x8d\xe7\x03\x18\xea[\x99>\xfaLx\v͉\xa2\xca\xf2\xc2ݕH\x89\x04\x9a1\xa5Y\x82ߪ\x8e)\"\xfd{q\x1f\x83\xe2\xf9d\xe2\n'o=\x1c\bC\fѫy-4\xd1\n1\xf4Q\x11\x8d\xd0DlJ\xd7`\x91\x1c\xdd\"\xb1[\xbd\x90\xfd\xec\xf8\xc1\"\xf9\xb4-\x92\xcfm\x8f\x8c~\xb5\x90p\xabE\xd1\x135a\x89\x1c\t3\xe1\xef \xdb\x06j iĔ\xda[\x83/'\xd7Ut\\\xb4\x80\b\b^\t\xa6\xaa\xcad\xe1\xcff8(u\x81\xf0\x88\xb2\xb0\x91/\u007f\x95`\xf8\x89U!\x01\xef_\x13\xfc\xbc\xaaH\x80\xec\x00n\u007f\x04\x9d\x84\xaf\x16\x8c\xc98\xec\x88;O\xf4\xd3\xd5\x17\x86\x91H\xaa\x16\x80ŕ\xe1\x91i\xe5\xef9\xa6Jp{\x84릏\x89\xf0\x03L\xa6HA\x95\xb2\aw\xba\x1e\x84\xfd\xc8D\xa4'\x11\xa7\xb7\x8d\x0e\x91\xb9\xa4\t\x90\x02$\x13)\xc1\xaa\u007f\xa9x\b\xef\xe7\x14\xe6\x8c+/\xbf\xa6\xa3~a\x18[\t\xa2N\x84\xeb;Gߵjb\xe3EեND\x84\x1ev\xaf;.\xae\x03\x88\x82S'\xb1\x9bf\xf9\x944\xcbV\xf5B\xf5\x99\x9e\xfa\xf8\x93\xb4\x89$\x8aeB=\xeeu$Q\xf8i`\vyd\x96B\x8dJ\xea#\xfe-\xe9dʬ\xaad\xd1\xe3\"*\x12\x0e_\x1e\xa0M{\xdb\x00m:\xb8\rЦ\x01\xda4@\x9b\x06h\xd3\x00m:\x88\xc4\x00m\xaaz4@\x9bv\xb4\x01\xda4@\x9b\xf6\xb7\x01\xda4@\x9b\xea6@\x9b\x0ej\x03\xb4\xe9\x806@\x9b\x06h\xd3\xd66\x1c$\x0eЦ\xdf\xe2A\xe2\x00m\n{}\x806\x05\xb4\x01\xda4@\x9b|\x1b\xa0M\x81m\xb0H\x06h\xd3o\xd1\"\xf9\xdc\xf6\xc8^\xd5\xc5\x02_\xf38\x9e\x89\x14\xd3\x1ee\xc6&xV\xcf\x12\a\x03\x12\xb3\xe8\xda:\xb6;c\xf2\xaa\x05\xcfp\x17\xda\xdb*-A\x14\x1dЧ\x86'\xf5\xad\xd7\x13\\\x93\xc9\x17\x05S\x17\x85\xb0\xff\xaf\xc6\x144\xc0\x046\xbe\x16\xb29\xc4n\xbe1(\x82}\b\x82(]\xb7\x1b=\x80H\x80`\x9a\xc7D\x0e\xf4\xb1nz \x06v\xa0\x05<\xd9(\xe5ڍ\x14X;\U0004f1828\x94\xc0\xe6i\u007f\x1f\xc0\x05B\xe16N\xfa#)V\xe8\x80m\xa7\xfcq&\xb9:\xfe\t\xff\x13\x9c\xee\x1f\xffd\u007fǩ>Y\x892\x8a\xe6\x96\x13}w2\x1f)\x9b\x9d\xa7\xf9\xfeT>\x8ef\xf7I~\xebD>V\x98z\x9d\xe2\xf78\x9c\xeai\\\xc7G\x92\xa3-%\a6\xbe[HP\v\x91\x05\xebږ\x9e}\xc38\xcb\xcbܨ\te\xd4#[Vh\xe6p\x19\xf18'ku\xd8c8C\x98\xa5\x80\x97XR\x96Ŕ\xaa\xc3\xd2z\v\x8a\xf1\tU&\t@j\xf6\xc9\xd7\xf5\x11x0\xcd?\x8e\xab\x91\xdb[5\x98\"/B%\xcf^\xa8\x88\xfe\xdd\x1f\xff\x105\xfb1\x9ea$`c?X\x03)\as\xb2?P\xa3\x8f\xb9\x11\x1bHy\x1ap\xc6\x0e`\x06\xf9!rk\xd8\x01\xca ,n\x9b=\x12 \xa3\x97\xe6\xec\t\xc4\xd8\x01\xc2p<\x8a4@6\x01\x18\xeb@\x8a8\x96ǃ/z\xecmO\x05\xba\xd8\x0e\xb8\x88\x15I\xd2\x1bl\xd1\x1fhq\xc4\xdb\x0ek\xe4@\xef\xdb\xf1{\x85\xe8\x8e\x109\xec\t\xaax*\xb6\x1c\x03B\xf0\x11o\x9f\x8d\x9e\xd5>\xe0\x89\x9e\xc0\x89>\xa0\x89X\xc0\xc4\x0e\xb0D\x9fHsO\xa0D/\xf1\x89=\x8e\x88>\x8a\xe8\u007f\f\xd1\xfb\bb\a \xa2ϝ\xb0\x9dG\x0f\xb1\xf7\x17\xfa\xd6>vX;>\x884\v\x9bG\x0eG=:8\xfa\xb1A<\x88a7\x80\xa1\x01D\x88\xe5\xe1&x\xa1\x0f\b\xa1\x87D\xc7*\xff\xa8C\x95h\xa5\xcd8ӌf\xaf!\xa3\xab[H\x04O\x83-\xa3\xb5\v\x91\xaa\xf5\xaa,9뙇#!Z٘\v\xean΄\xd4'\xd4\xfaӐpՊ\xe6#\xa1xNaF\xaf\xdbٓ\x1f\xf7܂|\xb4\x90\x81M)=\x86\x10\xfcU<\x101\xd3\xc0\xc9)\xe3^\x0e\xc2\xe3\xa8u\xb0\xa0\x8e\x17U\xcb\xda\xfc\xf5\xc5\xf3p\xcde;\xf3\xf9\x06v0\xb4\xa5\xd4\xd3\xc5\xf5\xdc\a\x8e\x1f\xd8s\x84gex\x8c\xbe\x15ܳ\x01¶~\x0f\x9e\xbc\xfa\x1a\xbe\x17\xd8o\xafM0J\xed\xca6D\xd0\xfcL\x85*\x1av\xb6\x17rF\"n\x1e\xdb\x057\xab\xa1c\xc1d\xb7@\xcdj\xd8XxG\xb7\xc1̢ c\x1f=¹\x06\x13\x8bw?\xb7@Ĝy\x16i\xc4G\xc3\xc3\x06?,\xb0퀁\r~\xd8'\xe4\x87}\x1e\x1e\x86f9\x88R\u007fR\xce\xc5Â%\x8b\xa6\xad\xc2rPD\x94} \xef\xc6\nq\xdd\xea\xb4.\x9f\xfa\xea\xa9_\x9dG\x12%q\xa1\xe1\xf9\x8e\x98\xd3z%\xa0\nt\x154n\xaa\b%\xafon\u007f\xfe\xee\xf2/Wߍ\xc9\x15M\x16\xcd\x12f\x9cP\xb3\xa9\x05\xd1D]\xb4\xa0K \x94\x94\x9c\xfd\xa3\xb4\xb7\x96\x92\xd3\xea;g\x1e\xbf\x17D7\x0e\xeb\x17\xb5\xcb\x18\xcd\x13\xa4\x04Z\x13\xf4\x1dSxI\x1cRqP\x18\xa1 \xfc\x02\xe9\xf6\xceC\xae\f\x19ki\xe2.\xb5\x00\tdΖ\x81N\x90\xa1\xea.V\xa4\xa9\a$\xe1\x126\xab\xc7شt*\xca@\xf5\xb9\x00\xc2A\x9b\xd5]E\xc7\x04W\xadzx\xa5\x02\x15\x86M\x9b\x96\b\xc3*$˩d٪\xd9I\x9a\x8dɍ\xf06\xfc*Ԇh\xb2\xf0\xf5۫[r\xf3\xf6\x8e\x14\x12K\x82Y\xbcQ\xf0\xeec\xa6\x97L\xc1L\x90\x9d\xf0tL.\xf9\xca~\xc8\xea\xf2@\xac\x921ځ\x1b\x82\xce\f\xf1\x17\xde>{>\xc6\xff{ffP\x86\x86\x97*hZ\xb2\x01еV\x0f\x9b\x06\xe6\xa0\xe0\xd0\x1b2\xd0\x13\x9f\x1bqL\xbc\x06\xb8t\xe3\x9a\x18\xd6K(읮\xa1\xbb%\xadD\x1a\xa7\x10\x95\xa1Y\u007fY\xb4=\x18\xef<%\xcd!\xf5\xbc\x0f\xbf\xb6O\xbc\xb1k\xe55\xc2VtrY\x88\xf4D\x91\xeb\x89\x17DZ\xbd\b\xda\xec\x04\x11D\x8d\x1c\x1a\x9b\x84\xa5\xb6\x83\xf6p\xe5\x9c<'\u007f&\x8f\xe4\xcf\x11\x14\x8d\xa9\xfc\xa7p[\xb8\x8f=\xd1'\xd0a=\xe5\xebI\xcfy\xfeި1C\xc9̌\x16dʢ\xf0\xb1f\x82\xe1Q\x834ۄ\x93\x98p^\xf6\xf0\xf6\xcc\x10>I\xb1\xb7'8׳Ɲ\xd3D/\xa2\x00\xa9\x95\x03\xb7E\xf0c\xfc8\xf2g'\xf8\xa6\x8b\u007f\x15J\xdf8u\x16\u007fK\xb6m\xda/n\x92S\x9d,\xda\xfaָ\x10Q˾.\xddHR\x81q0\v%^\xb0\b\xac\xd1\xc7[\xbaqЛ\x96\xa4nJT\x1fU\xba\x16\x12\xc0ر\xb3\xcbm\xb1\xd3H\x9dP\x88\xd49\ff\xc8ic\x93\f\xf5\x18l\xdb\xe27\xb8\bG\\\xe2x\x9d\xd4gtaB\xb9\xcdB\x9a\x81\x94\x88R\x8fa\xe9\n\xd1\x16,\x81\b\xb1\xec\xa1\x05\v)\xb4HD\xd6S\xb6&\x8e\f\x9e'\xd8`\xf5\x9bh\xd9\xfa\xdb\xeb\xc99\xb9{59'B\x92\xdbWw\x93~HfB\x9eݽ\x9a<\xfb\x80l\x8d\vN\x8d\xda\xe6X\xe0\xbb~\"\xc3\x1c\xac>\t\x85\xa18\xa7V\x04\xd08!\xa3\x9c\x16\xa3{X\x05\x99\xad\xf1\\\x8a\xe2\xd1f\xa7\xed\xe0sz8\x10\\\x02M\xd9'\x94K\xe9\x14Mݯ\xee\xa4\xca\\,\x03\xe3>\xe8\xb0y\xea\xc0\xd3B0\xaeUW\xa6e\x10\xd9M\xaf\xef\x93A,\f\x99\x96\x1dmȴ\xdcچL\xcb!\xd3rȴ\x1c2-\xbbېi9dZ~Vة!ӲцLˈ6dZnkC\xa6\xe5Amȴ\xdclC\xa6eg\x1b2-;ڐiyh\x1b2-\xab\xf6\xebA\xf8\x0e\x99\x96\x9f*\xc2wȴ<\xa4}\x1e8\xe8!\xd3rȴ\xf4|\x192-\x83ڐi\xb9ֆL\xcb\xcfU\xa8\x86L\xcb!\xd3rȴ\xec\xfe\xeeo\xdd\x0f\x1b2-?U?\xec\xf3\xf00\x86L\xcb!\xd3\xf2\xc3eZJP\xa2\x94I\xd8\x1e\xda\x16\xb2W\"/J\r\xe4\x9d'U-\xb4\xa0\x81OW\x16\xc9\xddH\xe8\xfb\xb0\x97\x18$\x82\xcfؼ\x94\x98>w\x91SN\xe70J\xec\xe0F\x15\x9fFU\xff.>\x04\xbc.c9\vK\xb54\xad\xce[\x9c\xf40\x92\"\xf7\xe4\xbe;r\xcf\xfd\xb8\xa0Z\x83\xe4/\xc9\u007f\x9e\xfe\xfd\xf7\xbf\x8cξ:=\xfd\xf1\xf9\xe8?~\xfa\xfd\xe9\xdf\xc7\xf8\x1f\xffr\xf6\xd5\xd9/\xfe\x1f\xbf?;;=\xfd\xf1\xdb7\xdf\xdcM\xae~bg\xbf\xfc\xc8\xcb\xfc\xde\xfe\xeb\x97\xd3\x1f\xe1\xea\xa7\x03\x89\x9c\x9d}\xf5epW\x8f\xbc\xbf\xb5\x97\xe5w(9\xf5\xa9$\xaa\xef\x9c>\x1a=\x1b.\n\xb9(\xb9\xb6@]\xbbګ\x05aOrC\xd7&\xf9\xc4\xd6'\xe9\xb3e\xbb\x93\xeda\x99\x06\xb4a\x99\xdae\xfa\xce\xc9N{\xa1\x06\xf71w\x06Ԏ\x85\x1a\x05B2\xdb8\xe6\xc7U\xfdd\x8a\x88\x9ci\riT\xceQ#\xab\x1a\xc1\xadMgת\xacp\x9bofq\x99L5\xa1\x9e\x8d\f1\xa1\x17 \x1fXD*\xa3q\xbfx\x1d\xf1@\xd53Ja\xc68\xb8K\x9e\u007f\xb3j/\xea5\x05I)\x99^\xbd\x12\\\xc3cP\xa4\xa0\xbdln\x1d!\"\n\x8b?\xf6\xa80\v\xfe\x0fS\xdf%\xc7L\xbf\xe0C\x8dBd,Y]\xf8A\xe1\x1c\xc0\xa3\xbex\x02+USu_\xcb\x02\x8c\x8c\xbbRO\xf9F\x0f>\x84i\x8a\xfb\xfeD\xb2%\xcb`\x0eW*\xa1\x19\xcah?\x97\xf5r\v\xd5\xe0efX!E\xa6\xc8\xc3\x02\xcc\xfa'Ԍ\x14C)\t\xe5dN#@U\xb9\x99\xab\xc2w\xce\b\x9d\xd1\x0eZ\x91\x82J\xe0\xda\u007f \\'`9\x80\xa9\x10\x99\xcbx\xc8Vu\xffY\\\b\x89\x8b\x9f9<\xfclz\xab\xc8,\xa3\xf3*!J\x81\x8e\x85y\xd4'\x8c~\xa8\xe4h\x13\xc6\x14\ue984f\x0ft\x85Ӷ\x16\xf1\x8a\xa0\xf8\x92\xbc8\xc3\xf5M\x15\xa9\xfa\x98\x92?\x9c\xe1\t\xe9\xab\xcb\xc9Ϸ?\xdc\xfe|\xf9\xfa\xcd\xf5M\x9c\xda4s\x06\x811\xfb\x84\x16t\xca2\x16c\xeem \xbf\x9a\xc4p\xbbJӋT\x8ap\xc81\xf2[\x96\x1c\xeb\xa9Թ\xe6\xfd\"<͢,(v\xb3V\x87\x83I\xce%\xe5x\xa6\xbdZ;\xf0\x96%\xd7,\xff\xa0IY4ퟐu\x99\xa6\x90\xf6c\xc9\U00070b2f|7VuM\x98(\xaa\x84L\xde\xde^\xff\xbf5\xd9\\\x15}\x00v\x1f!\x97\x84\x10\xb3\x90z\xcf\xf1;\x9b\u007f:\xcc\xf2\xce\xf6\xf9e\fUv@?L\xc1\xbb\x92\xb7+\xca\xd5t#\xec\x93\x14\xc6db\xb7fPmj\r\xa5\x1e\xae\xeb$\x10C\x92kF\xb3lE\x8cg\xb8\xa4\x19\xd8\xe4\t)\x02KՑ\xf5\x1a1Ml\u008cf*X\x91\xc7\xef\xc6Ɛyc\x9c\xe6^\xb3XQ!)p\xa1]\xb8-j5\x88\x19R#֓o\x80\xfdZ;^\x94\x91Yo\xc6Ly\x9eO\xaa\x9e\xe3)O0\xd5R\x81\xeaތ\xe3o\x957\xa3\x95@S\xcc\t/\xa8^X\x9cIN\xd5=\xa4\xf6\x87H\x1b\xdb\xc54l\x8f\xab\xa1߭\n 3\xa0\xba\x8c8rB\xdbڢw\x80\xd3i\x16\x1e\n\xedQ\x9e\x83\xa6oy\xb6z'\x84\xfe\xbaJC\xee%\xc8\xdf;o\xa9}\x16\x13\x0e\xb0\xc0ʙ\xa6\u007f#\x9cDL\xbbnfJ;\xe9\x8b\xf1\x12>\xb0\x82\x90%\xbfT\xdfHQ\x06\x9b\x02\x1b\xc6\xfa7ׯQ_\x96V\xf7\x01\xd7r\x85\xa5%b\x94D{\xcdU\xfe\xd8\xdf\xcczt+0\xdc\xe0\xf1\xeaaFJ\xae@\x8f\xc9\x1b\xba\"4S\xc29\x8e\x11\a\xb2d\x82(\xc9f\xdcgL\xb0\x86\x13\xe8\x98̦\xa9\xd0\v\xb2F\x10\xd5\xc3\xe6w\xc2\v\x10\x18\xa6\xdaC\xe8*~h\x86\xb0F7\x9c,\xbd\aE\n\t\t\xa4\xc0\x93`\xe9m\x9c'\xff\xe9_?\xd0y\xb2\x93\xfc\x1b\xc1\x8dz\xe9%\xfb\xd7\xa1\xfb\f\x96\x10Q(t\xfd\x1e\x03C\xc58\xa4^j\x90lT\xf43\xa3SȬihW\x8e\xda\\9\xd1Q\xd1Ƞ\xaa\x14Y\xff\x94\xd5w\"C\x9d\xc9\xd8)\x1e|\x95\xfa\xb3+\xf3Ÿ\xee\nW\xea\xf2Mu\xad\x81a8\xf04\xb6\x92CA\xf5\xe2\x9cH\xc8(&%;\x85vo\x03Z'q\xf3\xd4\x18\xb0\xd7\f~\xe2\xd0\xcef\x82\xc7%\xa1\xe1\xa8\xf1X\xc0[\xc43ԁF\xc1?\xfb\xce\v[D\x9d\xf3Oa7\u007ffGRE<\xe3N\xd5L\xbbg|\xe4\xce\x1f\xac\x1d\x85\xd7x\xc0\xe6\x88\x19\xcd趴X\xc7g\xf3\x90n\xe3\xd0-\xce\x03Z?\xa8\xf3NPt\xa0hǁ\x1da\xe1\xb1zb\x0fƏzhG\xb6\x1c\xdc\xc5\x1fa\x93\xa7>\xc6&Ow\xa4@\x8ep\xac@>J(/.\x99Ζ\xdd\xeay\x17\xd3m\x83J\xc3m\xd5\v\x1a~\xc5\xf1D\xa4\xb6\xf4`U\xba\f/%ƒ\x89쟡\xc0\xc8\xf65\u007f\\\xd8<\xcef=Bw\xf9L\x98\x97e\xfc\xb5\xccG(\xf3\"3\x16B\xab\xc7\xc1\x90\x17\xa4ո\x14\xea\xbcbF}\a\x95\xab\xc6\x18\xb6^\xfe\xbbT\x9a\xd0\xea\xde)_tmR}ʆ\xb8\x02/\x1eq\xd7\xfcaeq-|P\x95\xa4l6\x03\x9f\xc6\x16\xe8e\x17T\xd2\x1c4HE\x1c\xbek\nsfs\x89ČPÌ\x93\xc00TU\x8d\xe5\xdc\xe6&1Mr6_XS\x9cP\x92\t>'\xc1(G-H&hJP\x8b\vI\x1e\xa8\xcc\t%\tM\x16pn\x13\xfa\xd22x\xe1c\xb9\xff\xd5Hi\xaa\x8d+\x056[\xd7]\xf3\x9b\xf82&ab:\xdc\x106\xdc\x10vp\x1bn\b\x1bn\b\x1bn\b\vm\xc3\ra\xc3\ra\a\xb7ᆰᆰ\xe1\x860ۆ\x1b\xc2\"\xdapCض6\xdc\x10vP\x1bn\b\xdbl\xc3\ra\x9dm\xb8!\xac\xa3\r7\x84\x1dچ\x1bª\xf6\xeb\xa9L?\xdc\x10\xf6\xa9V\xa6\x1fn\b;\xa4}\x1e\xf5\xfb\x87\x1b\u0086\x1b\xc2<_\x86\x1b\u0082\xdapC\xd8Z\x1bn\b\xfb\\\x85j\xb8!l\xb8!l\xb8!\xac\xfb\xbb\xbfu?l\xb8!\xecS\xf5\xc3>\x0f\x0fc\xb8!l\xb8!\xec\xc3\xdd\x10\xa6tʂj\xfa\x1fPN2&9\xce\x17w!\x94L\xcb\xd9\f$Z\x99\xd8;\xaf\xa4\xe2\x00\xe4\xbet8֎3\xddth\x1a\x05\xfa\x1c+Xڤ\xa80\x9f\xa2\xb3[\xbeJ\rַ\x97\xa0B\xeb_2N\xae\xde~];l1\xb50\xe3\xcau\xe1x\xde\xf2$\x1eg\\\vBG\xf9\x9e0\xdeZ\xf0^\x92\te\xd1d\x96\xd9ɂr\x0e\x99\xf3lX\x18g\x17T\x91)\x00'\xa2\x00n\xd3o(Q\x8c\xcf3 Tk\x9a,\xc6f\x04a\x96\xb7\x13\x02w\xadA\xddS\xa5%\xd0\xdc\n\x83\x84<\xf4\"\n\xd3EB\x13)\x94\"y\x99iVT\x9d$\n0\x97*\xf0\xc0\xf3zVO0\x02\xcc\x00\xcd\n,\xa4X\x8d\"\xb8\x8f6O\xbe\xb1\xe6\x8d\x0fx\x8e\xb7\xf4\xe4\x85^Y\x1cv\xd8Ʒ\x002cRi\x92d\f\xb8v\xa3\xb6\x05<\xb0\x9f\xe7$\x14W\xa7\xf1\xda\x03\x9c\x05\xe5X\xcbS\xb4\xa8\n\xad,J8\xae\xa3\xae\x8b)S\xcerW\xe7\x84j\xbfQ\x06\v\xbd\x97%\x14\xfb\x14;\xe9{\xed~\x8a\xecf]\xf3Q\xd50\xf5Z\x19\xce2\x1af\xf1z\xa5t\u07bc\xea\xc9g\xe7\xf8\n\xa0\xa8V\x83\xc8b^\xaa\xe5\x02.\x1c\x0eK\xa3? \x01\xb6D[\xd2h\xc6 \x8a\xebZ\xf4ɕ\xa8\x06\x993\x8e\xc8\xf07\xa0\x14\x9d\xc3$\xf0xn\x9bs\x89't\xb5p\x05\xba\x13\x98\xae\xaeEÆ\xab\xc1\xab'\xaa\xd9\xed \xb2\xb9\x1dc\x95\x03\xf1 \x99րB\x8c\xa5\xcd\x11\xb5\x10\x88!\xdb\xe8\\\x13Z\xfb\xc6\u007f\xd0~(Tj\x8d=\xc5S\v\b\x9d\x02\x99J\x0632c\x9cf\x0e\xc3\x19\x06VƂ\xa7T\x19ѤJ\x81\xc4\b\x8c\x83\xf8yބ\t\xec\xf7\x8e\x91Z\x96<\xa1\x8dkP\xb0<\x02\x9b\x919\xe2D\x03\x03U\v\xcaɿ>\xff\x8f?\x91\xe9\xcaX\xc1\b\x16\xd0BӬ\x9a\xc0\f\xf8<\xb0\xf8\xa3۞ډ\xea\x95$०\x81\x88\x1e\xe3\f\xfc\xe1~\xda\x0eR^\xa4\xb0\xbch\xc8\xe7(\x13\xf30\x9en^1\x1bb\xc8G\x85\x05:\xd4\x00\xde#\x16\xad\b|ue\xb2\x10\x0f\xf6ځ\x9e+\xb6N\x8f(DQf\xf68\xe7k_z$\x88d\xa9`3]\xbaS\x0f\x86J\x83\xef\xda\xda.\xe6\xe0\xd6n(aF\x8b\xabL\xe0\xc2\xeaUQ\xe5R\u0098|M\xb3lJ\x93\xfb;\U0005d62b\xb7\xfcJ\xca\xc0\xdb\x0fQ\xfa=?2j\xac\x98E\xc9\xef\xed]\x8dU1*\x11\xb6ۊR\x17\xa5\xf6\tb\r\xceV\x93\x19\\0\xa42\xd0\xcc\xf8\xdb̅G\xb3n\xf1\xb2\xbc0u\xc0\t\x18~Y풉y\xd5o\xe5\x95A(\x9a\xf8\x0f\xcf\xff\xf5߭\xca\"B\x92\u007f\u007f\x8e\xe9&\xea\xdcnbh\x1b\x18C6\xa7Y\x16\x1a\bk*\x18#\xf4=\uf84e\xd3\x11:^\x1d<\x89\xcb}w\xf7\x03\xfa\xdbL+\xc8f\xe76o\xd9_\xa6\x11D\xf4\x04\x8d\xb8\x13\xb7\xcb\x1a\x1f\xe3c8\xb4K\x91\x959\xbc\x86%\xebs\xf7y\x8b\x8aϙʘ\xd2D\x84e\x90N3\x91ܓ\xd4\x11j\xe0:\xd7/:\v\xe1L\x04\x82u\xeb\xe8\x1a\xd7ӆV\xab\xceiQTy\xa0\x92>\xb4\x06\x8b\xba$\x18\xbcJc\x83\xdc\xf1'B\xb6\xbb\xa1\x06\xbb\u007f\xb7\xc1՚\x90\x17\x98\"t\xf7\xb3\xcdemmT,\xf7W,D\x9dS\xb89\xb1v\x9a\x999\xd4\xcc\xe1\xa1\xf9\x1e\a&qx\xe0\x16\x8fyuΐS\xed|\x9aȳ7\x94\xda\x02\xa4b\xca\x180\xefqM\xbc\xca(\xcb\xe3\xb3\x03c*V\xf6\xb8#(\xe6LcԐ\xd3\xc0\x17\x83\x19ݫfB\x18.֪4\xbc\xf3)^\xebOD\xea\b\xa1\xaa\xb6\xf7t\x19W6X\x1c\xb6%\x89\xf628\xfa\xaa\xfd\xf75\x8f\x9aZߎ3|9\xe3\x02\xb24\x9d\xb2\xff\x18\xea\x1b;\u007f\x04\xed\x8dz\xdb\r\xa3o͚f\xc0\xc6\tT\xc3\xf5r1\x92\xb1\xc5\xd5D\x907\x12\xe4\xbaGN^\x9e|P\x1dn\xd9-EA\xe7QwB\xafq}\x9d\x1cI\xc1\xba:QI+\xc6MF\x8aUQa\xa4\viU\xfc.\x8a\xa8Mƫ\xf7a\xef>aՒ\b\x8a\x0ftE\xa8\x14%O\xed\xd9C}(\xf5f\x8d\x1d7\x82\xc7t\x99\xa9\xaaH\xae1\xbc\x19d\x98\xf7?\x05M\xcd\xde\xf6b\xfc\xe2\xf9\xe7\xb6\xf1\xe3H\xd66\xfe\xc8\xca`\r\xbd\xf5A\xb9\xe0\xef\xf4\xebɉ7.\xc4Z_\xc1\x17U\xb2ʞ\x01!\x91\aɴ\x93\xe6\a\xa6\x80\x9c\x86F\xcd}\x13\xb2Y\a\xeb\xec\b\xb7\u007f\xf6\xb9\x85\x88\x10UN\x9f`g\xb0\n=\x82=\xa8\x84\xbab\xf1*\x9efǶ\xd2d\xfa\xb3\x98R\xb0\xa7\xb67'\xb6b\xc6\xd9\a]$nʮ\x1e\x8b\x88\xab\x05Z\xd3v\xf5XP\x8c\xfa\x17\xf5\xfcŬ\x93z\v\xdf>\u007f\x11t\xb7\x9b\x05\u007f\x81\x05]F\xed\u007f\x8a\xe5,\xa32[\x99\xa9\xbf\xb5\x9c$\xd3R\x13\xe0K&\x05\x8fBn\x12\xb2\xa4\x92\xd1i\x06D\x02֑J@\x91/O\xdf_\xbeCtWL\xd1\x0f[\xe2\xcb\xcdO\xa9\x18\x9f\x1f\x81\xa3\x8dA\xae/\x82Z\xa4#\xe8\xdaE\xe0\xf9i$\x13-\x00\xcf_\x1a\x01U\"$/ui/\\~L\xb2R\xb1\xe5\x87܋b=\xc7\xca\xd6\xfe\x159\x8e\xae\xdc\xd0k\x16\xa4o\xd6J+Պ|\xa3zQ0`\x03\x8d\xc1\xba:^'\xac&P\x8e}\x05\xf3f\xd9f\x17Pw\x95\xd7l\xfa\x81\xbb\x14 \x14\xba\xb4\x866\xc8\xe9\xfc#\x84\xd6Ce:H*\x83\xe51L\x12\x1d\xee\U000f0bb7\xcdb\xfb\xa6+\xcao\xa3\x8e9}D@%\xc5\xe5z\xe0\b\xc5\f{A\xdeC\x06R\xf8m\xe9\x812]\xe5\xaa0\xce\xf4\xabЛ\xe6\xd1q\xb2\xb5\x18\x0f\x13\x80\xa0\xa9?x^\x0e|p\xff\xb4\xed\x13\xb3\x9db\xb5\xb7\x17\xbb\xbe\xbf\xe3eƓ\xacL\xe1UV*\r\xf2\x1d(Q\xca\xceӏ\xb5\xd3\xe5η\x1a\t)\x0f\xee\xc0)\xb1\x8f\x8cT\"\x8aN\xf5 \xeb\x97+{\xc6u*\xf5ɪ\x98\xdbD]\xba\x8a\xab\n\xa2\xb4\x90\xb0\xa5*'/\xb3l-!B\x96\x1dBd\x9e3\xd6\xc9\x16\\\xf8.\xff\xc1w\xd18\x92\xaa\xa0\a\xb3\xac\U00042f7aJe,\xc1\x80=\xf7\u007f\xb0\xffez\xed>\xd21B;\x97\x16\x84\x8a\xb8,<\x9d=Gp\x05\xaf\xbf`\xb3/\xed\x877\x87\xbf5(\xb8s!\x1dĴ.9\xf4\x1d\t\x14\xb2\xfa\xf95\x86y\xc99\x84_\x9bb\xd3\xe4X-\x83\xee\xb9)M\xee\xcb\xe2\xd3b\x1f^Qv\v\x19\xda\x06{X\xf7]\xf3Y˶\x1c4]\xbe\x18\xb7\xffb|k\x96iD!w\x9af\x0f\x16\ti\xb8fL\x13\xc6S\xb6diI\xb3\x96\x046xV\xb3\x16\x93YX\xd6\x05\x90\xc2rz\xee\xfd\x16\x8f\x89\x87\xaf\x05\xaf\xd5\xddQ`\f\xfc\x18\xf3\xdbAa\xbbUp;\xbc\xb8\xf6\x8a\xe5\xa2;\xc7u\xf7\xc5)\xcfG\xa7ڍ\xff\xb0\x15f{\xe7\x8a\x19\xf9\xe7p\xe4\x977\xaf\xb7\x997;C\xf6\xad\xae^\xee\xe8\x8e[3Մ\xef\xaa\xe0\xec\f1e\xf3)\xd49\xa1\xe4\x1eV\xe7\x16\xfc\xca]\t[G\xc4^+\xe5̆{\xd8n\xaa\x98\x97-\xbdm\x8c9$\x80\u007f\x0f;c_-v\xdcê:vG\xbe\x98\x1f\xaa;\xe6+V\xb8{\xfev\xef\xfd;O9\x0f\xb27<\xd7\x0e\xee~\xc5f\tF\xf8\xac\xa8\x981\x9c(w\x97\x97\xe0j\xc1\x8a}\xe0\x18\x8a\x90m1\xf3ܯnw\xb2\xe4\xad\xfc]\xf3sr#\xb4\xf9\x9f\xabG\xa6\xf6$䘹|-@\xdd\b\x8dO\xf7f\x8e\xed\xda\xc1\xac\xb1\x8f\xa3Hs\xab#1I\t\xbfQ\r\xf3z\u007f\xee\\\xc5b\xa6\xc857\x8a\xca\xf1\xa0\xaaA\xaf\x1cy\x9f\x97\xc6\x05\x1f\xa1V\xdbm\x89\xdao\xb7\xe8[\xb6\x9ao49\xd7\xfc\xd4n\x96\xb7\xbaa\xbb`#\xda\xf6/\b\xd0.2\x9a@\xeajT\x9b\x89גj\x98\xb3ݥ\x8bs\x90s\x04\x1a$\x8b]\xa3:\xe0\xe8\xf0@\xc3\xfb\x18&\xf2vU3\xaa\xd8\xfe\x14&\xb4\xdbCp\xfb\xdc\xc2\r\x9a\xfa긓\xbd\x1am/\xc76\xf7\"\xfbi\xb7\x99\xd3\xc2H\xfe\xff\x18\xf5\x8cB\xf4\xbf\xa4\xa0L\xaa1\xb9t\x19*[\xbe\xdb|\xc3\xd9:M\xe2\x86.S\xc4\xcc\u0092f`\x8b\x1cRN`g궘m\xec\x96\xe7\xe4a!\x14\xee\f\xf5!ҳ{X=;o\xad\x90-\x14\xcd\xc3\xd7\xfc\xd9yu^\xd6Z\x94\xd5>\x85G\x18\xcf\xf0o\xcf\xc6\x1b\x1b\xec\x16\xda{\xb6ݝR\xb2㏕\xd5\xfd\xc6B\x9b6g\xfeP\xf9\xd8)\x1b\x1b՛\x9a\xdfl\tG\xd38n\xb9\x15]\x9f\xa4r\x0e\xba\xcb\x05q\x163B\x19\xc6䒯6\xe8bb\\\xa7\xc9휸JΊ\xd6\xd5\aB:\xb0\u007f\x93\x94\x03.\xa9nG\xd8<\xb89k;&\x057P\xb9\x84\x1b\x91\xc2D\xc8.|G\xfb\xbcf\xfd\xf9\x0e\x8f\xb6\xc1\x14\x91\xa5\x88\xb3\xc7G;\xfa\x8b\xb6\xb1\xb3\x8b\x8f\xe9|\xba\xefO\xde\xef\x1bϻ\xea\xc1\xdd\x03\xa1X\x97\xdb\xceW\xc78\xcc\xfb6׆\xd3B-\x84&\xa7KF]F\x93(Sw[\x84\xec8\xef\xe91J\x95, -3辰h\xa3ĕ\u007f\xd4\xdb~%g\xff(\xdbw8\xf9\b\x95{\xbak!\xd4<\xa9\\\xebFDը\xa3\xbf\xe0|\xfa/9/\xd2Q\xde\x02\x85o\x92\xb4kA(\x8dyJ\\7\n\xb6x\xb73q\xa5\xbd\xdd\xe3\x9div~\fۖC\x87\xfa\xe8\xde\\G\xee\xab\x1b'\xe2[\x96\x95\xc5ҷit\xc9ܭ\xc5\xdc'\xb4Х\xf4\xf7\xa3\x95\x12\xef\x12\xa9˟S\xcf9Ǣ\x16\xd9펁\x8b\v2\xc1\xefX\x0eJӼ\xd8#!\xaf6\xdf0\x13 dj\xbb\x86\x11\xccF\x88\xa0\xbe\xb0\xa3\xcb+\xa6\xf551\xe9\xb8AےA\x9b̐\x86\x94\xc0\x128qI>x\xf2n\x03\x10\x1dD\xede\xdbr\x89g\x01\x9e\x0e\xe2}gB\x12\xbc\x91\xa7\xea\xfa\xa6D\xf8\xd4\xf1\x94j\x18uf\x12\x1e\xb4\x12;w\x1d\x84\xe9\xefS5\x98\xfb\xe0̓\x04qbfz\xb3̾\xed3\x0f\\\xaa\xdf\x03H s\xe0\x86ŝ\x1aǙ\xb2\xf6\x9a\b\xc3X\xb7\x82\xab\x00Ν\xbdY\xa3\xa4\xee\x03֝\xa9v\x95\xad!3|\xa43\xcbjW\x02\xbd\xcb\xf8x\aTu\xe1\x96Z\x8c\xf8\xba\xf9\xac\xf3U,\x0fp\xe8\t\xb5w\xec\xd8\xdbΘ\x84N\xd1w]\x12\xf8\xe5\x805NH\xb1\xa0j\x9f\xba\x9c\x98g\xaa\xeb<\x1a\x8b\xb2Ҕ\xef\xb6\xf4\tx\x99o\x12\x1f\x91\x1bx\xe8\xf8\xf5k\x14z\xf4;\xbb\x97҈\\\xf3\x89\x14s\xd9Uan\xe4\x17V\x87\x84\x8cȄJ\xcdh\x96\xad\xbe\xee\xaed\xef\xbf\x1e\xc4;ו\xbdV\x82}\xac6D\x19\xb7\xeb\xcfH*\x9d\xe2M\x11\xb5\xb0\x9e\xa8Z\x8e;&\xd9\u007ftl\x9cP\xf0\x81\n\xd6&\x8a\x10,\xa5G0\x9b\t\xe9\xee\xc9\x1e\x8d\b\x9b9\xfd\xd9e|P\x96\xa1\tg\x0f\xd1\bӵ\x83XmHB\x12\xcaWD\xa2\xb0\xe2\xb5!9]\xd9\x10\xd3+ \x87N\xa5\x13\xb2-\xde^;\x16\xdc|\xbe\xba\x9e\xb1\xaaS\x82\xe4,\xeb\x16t\xe95C\xb6\xcdUĬ\xfe\xca\x06Uf\x95u{\"\xfb\x8aj`N\xe4\xf5v\a\xb9}\xe0V=\xec\a`S*7\x86!\x9a&\xf2\xf6p\"S\xfeU3g\xc9\x02\xab\xf1\xe8\x85\x14\xe5|\xe1Ep\x9b\x02\xdd\x16V,1\xe9\xb7\xc8ʹ\x11k\x17\xe8ӥ\xe4\r\xefŅ\xfeҺ\xbb\xbb\x88\xeef\xe1\x0e\xdb]\xb5v\xbc}\x06`\xeb\xe1~;{\x95\xee\xfe\xe9\xee\xc8\xcbJ\xa5^\x1d\xb27\xbf_{|\xed \xc5\xec\xd25E\xb7\x9fv0\xe7\x94\xcdl\xd441\xbd\xde\x04\xef|\xe0\x03\x91\a*9\xe3\xf3}\x83\xff\xde=\xd6a\x9a8\n\x1d\xc6I\xc7 *s%\xc88\xf1\x9d܂\xf5\xa9\f\x96\x1e\xe6I\xe7\x1a\xda\xf8\x11\x059m0\xd9}\xc9\xfdR\x9b\xf5\xb6̅;\xa8\xb4\xbc\xbdg<}\xe9\x01\x81EVJ\x9a\xb9\u007f&\x82[\xb5\xa0^\x92\x1f\u007f\xfa\xc2\x0f\xe8=HU\xfd\xf8\xff\x03\x00\x00\xff\xff}\xb9\x01\xa8\u007f\xcc\x01\x00"), + []byte("\x1f\x8b\b\x00\x00\x00\x00\x00\x00\xff\xec\xbd\u007fs\xe36\x92?\xfc\u007f^\x05\xcaI=\xf6\xdcJr&\xd9\xddgoj\xebIygS\x05$\xe6cs)\xca\xe2\x05\xa9\xff`\xdfq\x1d\xb1\x83\xb8\xb6\xaf\xe3/\x19S\xfa\xbb\xe6\xaf\xdf3\xa5\xf1/EVJ\x9a\xd5\x1f\xc3\x1f\x15\xe3\xf32\xa3\xb2\xfa\xf93BT\"\nxA.\xcdg\n\x9a@\xfa\x19!nL\xf8ٱ\xeb\xf5\xf2\xb9%\x91, \xa7\xb6?\x84\x88\x02\xf8\xd9\xd5Ż\xafoZ?\x13\x92\x82J$+4r\xc6\xf5\x8d0E(y\x87c3\x1d\xc0I zA5\x91PHP\xc0\xb5\"z\x01\x84\x16E\xc6\x12dbE\x91\x101\xab\xdeRd&E^S\x9b\xd2\xe4\xae,\x88\x16\x84\x12M\xe5\x1c4\xf9\xae\x9c\x82\xe4\xa0A\x91$+\x95\x069\xa9h\x15R\x14 5\U000ccd6d!G\x8d_\xd7\xc6rl\x86k\x9f\"\xa9\x11 \xb0]v,\x83\xd4q\xc8\xf4V/\x98\xaa\x87\xb6>\x1c7$ʉ\x98\xfe\x17$zBn@\x1a2D-D\x99\xa5F\xee\x96 \rs\x121\xe7\xec\xbf+\xda\xca\f\xd4|4\xa3\x1a\xdc|\u05cdq\r\x92ӌ,iV\u0088P\x9e\x92\x9c\xae\x88\x04\xf3\x15R\xf2\x06=|DM\xc8\x1b\x9c\x1e>\x13/\xc8B\xebB\xbd8=\x9d3\xed\xd7O\"\xf2\xbc\xe4L\xafNq)\xb0i\xa9\x85T\xa7),!;Ul>\xa62Y0\r\x89.%\x9c҂\x8d\xb1\xeb\x1c\xd7\xd0$O?\xaf\xa6\xed\xb8\xd5W\xbd2\x92\xa7\xb4d|\xde\xf8\x03\x8a\xf9\x8e\x190\x02oeɾjGQ3\xda\xfcd\xb8s}~s۔3\xa6ֹ\x8f|o\b_=\x05\x86a\x8c\xcf@\xdaIDi34\x81\xa7\x85`\\\xe3?\x92\x8c\x01_g\xbf*\xa79\xd3f\xde\xffU\x822\x02-&\xe4%*\x152\x05R\x16)ՐN\xc8\x05'/i\x0e\xd9K\xaa\xe0\xc9'\xc0pZ\x8d\rc\xf7\x9b\x82\xa6>\\\u007f\xd8r\xad\xf1\a\xaf\xbc\xb6̗[\xfd7\x05$\xad\x15c^c3\xb7\xcc\xc9LȖr0\xafLZD\xbb\x17\xadiv\xf5\x1b\r\xb6\xfe\x97\xb5\xae\xfc\xadz\xd0ȏ\xe9D\xc9ٿJ@\x15gW,l\xa8\x94\r\x92\xc4\xf7\x0f\xc5b\xb2\xf1\xf7-<5\r\x1e\x92\xacL!\xad\xb4\xed\xc6X\xd6z|\xbe\xf1\x02nG\x94q#\xffF\xfd\x9bn\xf3\xfa\xafF\x9dv\xf4\x98J F\x02\x19\xb7\xf4\b\xe38\xd8NN\x9b\xc64\xe4\x1d\x9d\xdb9:\x82\xfb\x1c\x9df\xf0\x82hY\xc2\x16\xceP)\xe9j\vc\xfc\u07bc/_\xaa\xe7\x9dB\xc8X\x02͍²\xc6n2Tn\xf6\x88|\xd4\\Y\bq\xf7\x18'\xfen\x9e\xa9u\x18I\xd0\xc6!SX\xd0%\x13ҍ\xddm)S \xf0\x00I\xa9q\x9bߠ[\xa2:\x15\x92\x14B\xe9\xed\\ؾ\x12\x89]\x1cۦp'\v7F\xe6\x14\x87\x9fb3Ж\x12\x11\x1cL_s\xb3\x12\xebg\xa5(\xed\xb3\xebھ\xc1\xf0n\x8e\x90)U\x90\x12\xe1d\xa0\xcc@\xb9o\xa5\xa8\x9e\xeaU6\xdaJ\xba\x1a\xbc\xddw3:\x85\x8c(\xc8 \xd1Bnrr\x1f~ڶ\x8f\xe6\xd8\xc2\xc7\x0e\x1d\xe2t\xaf\xd3\xc4\xf5\xc0v\x90$\xc6\xe8\xb8_\xb0da\xb7D#\x9bH\x87\xa4\x02\x14.#c\xb6\xad\xb6\r\x92<6\xf7\xee#\xbb\x16R\xdd\x1eYR\xeb\xf4\xba\x16W\xdd\xf6P>u{D\r\xb59[۫\x9d\xfbH\xdd~\x9b\x8c\xf5z5Bh/6^=\xacТ\x8baLߋ\x19\x81\xbcЫ\x11a\xda\xff\xfa\x18E\x9ae\x8d\xef\u007f\xc2\x13\x13.\xf1\x17\xebo\x1eT\xe2w\xce\xcac\x14ͬT\x9f\xff\x04'\x057\x8b\x1b\xb7W\xec=!\xdf7\xdf\x1a\x116\xab&$\x1d\x91\x19\xcb4ȵ\x99\xe9\xb5^\x0e\xc1\x8c}\xf6;\xd3r\xaa\x93\xc5\xf9\x83\xb1lT\x1d\x8eٓ/\xeb/[\x03\xd1[\xcc\xed\x8d\xf9\x11\xba\x04\x9d9&!\xb7N\xe2-r\xb3\xfe\x05\xad\xeb\xb3\xcbW\x90\xeeb\x0f\xd9O\xf26\x06r\xb6\xd6\xd9槝ջ\xef0\x9c\xe9Sy\x10\xd6\xfd\x1f\x11J\xee`e-\x16ʉ\x99\x1cj>\xb4ŗ\xd8d\x0e\xc6!P\xc8\xee`\x85d\\`\xe1ѷ\xf7\x15\x05\xdb\xee`\xb5\xcfck\f4}r\xee\x9e\xe5\xa4\xf9\x01\x19\x81n\xe8\xfe\xcc#\x18$\xf2\xba\xe8\xf1\xc1\x91\xfd\x15\x89o\x9e\xf7\x11ì\xa6\xad\x11LÉ=Vv\x8a\xcc*X\xb0bρb,M\x01\xae\x16\x1f&zG3\x96V\x1f\xb2r\u007f\xc1\xb7[\xc3\xedv)\xf4\x05\x1f\x91\xf3\a\xa6L\xd7xJ^\tP\x97B\xe3/O\xc2N\xdb\xf1\bf\xda\x17qyq\xab\xb6\r\x1f\x9a\xf1\xa6=\x84۶\v\x1bV\xa8\xa6\x87)r\xc1\x8d\xe3\xe2\xf8\x81\xd1C\xfb\xb9\xdd\xfbC\xbb\xe5\xa5\u0080\x12\x17|\x8c[\xe5\xa4\xebK\x96\xd9{\x92\x14\xb25#\x9b]\xab>j?\xb8'\xd9[\xb3\x93\xd8\xf7m<4\xa3\t\xa4\xde\xdb\xc4(\x1e\xd50g\t\xc9A\xcewm\x1c\xcdV\x18\xfd\xbe_\x17\xf6Ժ\xb6\x05J\xd8~[\xbboNu\xa7\x8fwflV\xee\x1eO\xf9\xc9~\xf4\xd1-\xc1\xbb\xed\x8f>>\"\xdcb\xd1\xfex\x94\xbb4M\xf1\xa4\x85fW\x01\x1a?`.6\xf7~\xdb1\xbbC\xe6\xb40\xeb\xf7\u007f\xcc6\x87\x02\xfd\xbf\xa4\xa0L\uec46\xcf\xf0\xd0$\x83ֻ.L\xd4\xfc\x8c\xf9\x02S\xc4\xcc\xef\x92f\x9ba\xe1\x8e\xc1\t\xa3[ \xb3\x1b\xb9\x98mX,#r\xbf\x10\xca\xee\xa93\x06YWȦݘ\"Gw\xb0:\x1am聣\v~d7\xf8`uSY\v\x82g+r\x84\xef\x1e\xf51\x82\xf6\x94Ľ\x1e\xe3\x9dAߺ\xb5Ģ\x19\xf8\xad#\xbe\xce\xcc\xdd\xd5\xeb\xbd\xe4\xb0\x10J\xff\xbd;`\xb7\xa5?W\xfe\x8d\xb6m\xda\x11\xf7z\xd4fw1\xacJ\xa9\x1aKn\xa6A\xba \x9eU\xb4\xde\x03\xe8\xe9\x1b=\x16\xa4\xab\x02t\xb4\n\x94\x1b\x06?\"\x15\xf6\x00`\x9f.\x86X\x8d\x86/\x81\xf6\xf6\xf9C#\xc6hV\xa8\xf9ws \x87\xb6j\x13\x91\xe7t\xfd\xc8k\xaf\xae\xbe\xb4oz\x99v\x84\xec\xec\xcby\x89\xebr\u007fs\xcf\xcb\x10\x1ev\xdd3\xbd`\x9cP\xbf\xfcA:\x81\xa2\xa4\x10\x8fk\"\xdb\x16T\x91)\x00\xf7\xec{T5\xd8\xf6\xb4\xfbu\xce\xf8\x05~\x80S0\x0e*\xa46\xe8e\xb6OgG[ ϖc\xf0\xceх\x98.ka^\xe7h6\xc0o\xc1K\xc0\x05xW\xa2$\xf7\x94k/\xf4\x951W\x88=\xa5>tVm\xa3r\x1e\xf0\xf4\x06\xb2Λ\xac\x1e\xde\x06\\\xcb\x15\u00ad\xf6\xed\xb4m\xc65MErg̑\x9c\xce\xe1\xf8X\x91\x97o^\x19Q1V\x87\xd92\x02v\x04ۘ=\x89-\xa4X\xb2ԘN\xef\xa8dt\x9a\x19'x\x06\x12x\x02\x8a|q\xf2\xee\xec\xfa\x97˳7\xe7ς\x88\x1b\xd7\x19\x1e\nʍ\f\x96\xca\xef\xe6\xd5\xec\x9b\x01\x00_2)\xb8aP\x187.f\x84\x92\xa5\xefmR!ь\xab\x95-\x9d5\x17D\xb1\x1a\xb1\x0f\x840^\x94\xdaGG\xefY\x96\x91i\x18Œ'\v\xca熯f\xf2\x1a|$j\xc55}0\xfd\x0e\xa2h\xcc\\\x95\xd0\x02R\x94~BI*JÀ/\xbe\x18\x11\x06/\xc8\x17\x8d\x8f\x841\xf4\xdc\xd1mL<\x8e\x99\xc3\x12\xa4\xb5\xaf\xedT\xee\x1b\x18\xb7M\u009c\xca4\x03\xa5\x8c.\xbb_\x80^\x80t\xe1\x1a7y\x10\x12͵MH#\xb7\x9d\b\xc4\x1as\x18D\xd1\xe3\x13\xef*\x80턉\xd3T$\xeaTSu\xa7N\x197[\xd58\xa5\x9a\x8e\x1b\xca\xec\xd4\xee2c\xb7\uf37d\x87:\xae\xc4\xfc\xf4sYr\xce\xf8|L\xab\xa7\x18\x1fӱZ@\x96\x1d\a\xf42H\r\xdb\x16\xecG6_\v\t\xdc\a:\xfc\xb6\xb55\xe5y\xa5\x18\xed\x97'\xe4R\xe8]Ȯ\xed\xad\xda\x1a\x90ǓN\xddy~y{\xfd\x8f\xab\xb7\x17\x97\xb7\xa1*\xb3\xa9n\xb7\xab\xd08\xe5\xd3R\xb7\x1d*4l\xf6w\xa9۶\n\r\xa2\xbbE\xddn\xa8\xd00\xc6v\xa8\xdb\x1d*4\x88v\xadnw\xaaа\xfe\xae\xab\xdbm*4\x88ꦺ\xedV\xa1\xc1r\xb0\xa6n7Uh\xd8ֶ\xa9n\a\x15\xda\xf1Z\x98\n\x05\xbe\x8cV\x9f\xdf;w\xa1\xb1ī9\x0f\xdb\\\xb5\xc0\x13r\xc6\xdb\xfa\xa3k\xb7}ZηCX|\xf9\x8e\xb6a\x00\xbc9\xd8 ʤ^\x0e\x1ea\x8c\xdbE偅\xd9N1^\x85m\x8f\x9d\xf4t\xb7\xcd\xf3\x1f\x87\xf2\x8f\xe7\ai\xf0dB\u07b8\x13qJ^\xfer\xf1\xea\xfc\xf2\xf6\xe2\xf5\xc5\xf9u\x18SH\xfc\xda!\x1e\xe4Г5\xc7\x1d\xeeL\x04_v\xef\xc8\xc1\x1b\x9dm\x85\x84%\x13e\r\xc6\xee\xbfpm[_\xb7\x0e\x00\xb5\"\n\xe4\x92%1}\xed\xecZ\x1f\x03¶G͈\xf8\xd1?bLD\x10\xde\xee\xc15L\x8a\b\xba\x87\xf6\xe3l{̛\x8b\x11\x82\x03\x1a$\xb6\xed2K^\xc1\x8c\x96Y\xa0[\xe8\xc8\nrt4\t\xb1\n\xdc{=\x95\xd5k)\xf6\f\x9d7[Ka\xdd\xd8\xf4\x1e\x1f+>\x8c:?v\x90\xc8\xd6\x06\xae\xa2\x84\x959Ԝ\xf7z\x82\x10Su\x8b\xdf/\x89=\x8c\x9c\xb1\xf9\x1bZ|\a\xabk\x98ŐXg;\xa2%\x1d\xb0\x90\x88}\x8f\x0f\xd7\x1b\xda\x0f\xb6k1k\xb6/_H\b\x96\xb4\xab\xb5xr\xebp\xafh\r\x1a\xf6\xc4\r\x89\xf4[X\xbe\xc5\xd9I\xbe\xb5\x8d\x82\x86\xc1\x14M\xb1\xf2\xd8\xf5\xbe.P\"x\x02\x85V\xa7bi\xf6a\xb8?\xbd\x17\xf2\xce\xf84f\a\x18ۓ\x10u\x8a\t\x18\xa7\x9f\xe3\xff\xf4\xe8\xdd\xed\xdbWo_\x90\xb34%\x02\x03n\xa5\x82Y\x99Y\xc0\xd5\xde\x18ϮV\xa7\x93\x8f0\xa5yDJ\x96~\x13\xael};\x80l\x88\xc2b\xf0\x0e$\x1f7x\x86\xbb걯\xf9fTx\xa5\x11\xcc\xceƴ\xda\v\x00\xb9\xbdy\xa8\xaa3\x1a{\xb2}*D\x06\x81!h\xdf\xf6?\x14\xecj\xfb\x01A\xbbZ\xc0\xc1aW\xc3\x15p\x98]\xe3\xb8\xde6\xf6\x032v7\xe7\xba\x15\"}ATY\x14BjU\xa5\xaaO\x8c\"\b\x8bKխE\x04\xb3\xbaF\xe4?\xab\x1f1k@\xfdt|\xfc\xd7\xef\xce\xff\xf1\xff\x1d\x1f\xff\xfc\x9f\xb1ߩi6\xaa\x8c\x1c\x82\xb0* \x99p\x91\x82Q\xd9#\xfbO\xe7Ŝ%\b\x8d\xb8\xec\xc1\x1e\xa5\xa9.\xd5d!\x94\xbe\xb8\x1a\xf9\u007f\x16\"\xbd\xb8\xeaI\x12i\xa8\b\x13\x94\x1c\xc4\b\xd8V\xf2#\xa4\xb5$ݗ\x06\xe9\xbdi\xba*\"F\xde_\x9b%sE\xf5b\u007fpUW\xbb\x97Lk\xe0\xe8\xf7\x81̍G22\xda1\xd6y\xf0\xcd8\x11\xcb\xe7G\x1f\xd4\xe8\x99y\x16\x1dh\x1a\x91\xdbN\xdd\xf4\xd1X\xc4\a\t\x8d\xfa\xf3\x1ew\x85\xa3\xebA\xf4\xec\xea\u0097\x9c\xf9\x80\x8cﻳU\xd3\xf6!\xf67\x0f5~\xfd$\xfb\x9c\xa7\xdeo\xab\xabѤ\x16}\xbf_\x0e\xe7\xf6\x961\xacMCyZק9\xb1?N\x92\xa2\x8cU\xe6\x8eB\x0e\xb9\x90\xab\x91\xff'\x14\v\xc8A\xd2l\xac\xb4\x90t\x1e\xbd\xfd\xf8\xaeb\x17\xeb\u007f\xd9\xcf\xc5j\xfe\x06\v6{\x1avf֠*\x81$\xa54\xdeN\xb6\xf26\n\xa4\x1fl\u007f\xab䧻8ξ\xad-\xe45L\xb9\x9f\xafY\xeb\x0f\f\xe3,EV\xe6\xa0F\x95\x97҃\xb0\xa1\a|I\x96T\xaa\x0f\xeaq\xa5l\xc9Ծ@ٮF\xf9\xeam\xa4j\"\xa8c\xed \x18\xd70\xefᢍ\x0f\xc1\x8cN\xf7\xd1\x15\x0e\xe81٢\xd4E\x89\xb0ќ\xea\xea|\xe7\xa1\x10q\x91;\xdf\x1a\xa5\\\xbc\x95\x84\xb6\xce\xf3\xa3h\xa2\x05\xd5\x1a$\u007fA\xfe\xe3\xe4\x9f\u007f\xf8u\xfc웓\x93\x9f\xbe\x1c\xff\xfb\xcf\u007f8\xf9\xe7\x04\xff\xe3ߞ}\xf3\xecW\xff\x8f?<{vr\xf2\xd3wo\xbe\xbd\xbd:\xff\x99=\xfb\xf5'^\xe6w\xf6_\xbf\x9e\xfc\x04\xe7?\xefI\xe4ٳo\xbe\x88\xee\xf2ø\x8eЌ\x19\xd7c!\xc7V\b\x1eM\xf3\xdf\xd5]Y\xc61\xa7\xaaR\xe4\xef\x19\x05\x14o\xe6n5qkC5\xd2^\xf8\xd8\xcc\xdb'1m\x0fi\xd6\xf64i\xfb\x99\xb3\xbbL\xd9\x1e\x1eO\xbd\xa2\x0e\x01\xd6\xe8g\x80\xf60\x02\v\t3\xf6\xd0SÜ\xf1j\x8e\bK\x81k6cqPQa:T\x00\xc7lf\xa0\xc9\xc2\x16@\xe4m\x90M\x8cL\u007f\x04Xw\x1b98\x8cB\xbfY\x8bs\f\xda|\xd0\xe6;ڠ\xcdw7\xb7\x9c>aU\xfe\x1e=ḙ\x8dO\x00~\xd5\xc8\xd0E\x8d\xf0\x14\xd9\xdc\xd5z\xadKj\x9c\xe2\x17Ö%\x96\xffĥg\xbc\xc8j\x93\xb3e\xd4\xc5=Y\xb0yhD,\x83%dξ'9\xe5tn\x8b(j\xe1\x8f\xea\xc8\xde\x05}m3*I\xb2\xb4Ur\v\x87j6N\xa3\xa62A\xc3d\xb9\xbe5L\x91\x8c\xdd\x01y\x05E&V\xaeV\"Oɍ\xa6ڨ\xa5\x1b\xd0a\x00\xb8(偣\xb9*\xb3\xecJd,\t:sh\x8b\xde\x05\xca\\Qf\x19)\x90Ԅ\xbc\xe5\x10z,s\x96\xddӕ\x1a\x91KX\x82\x1c\x91\x8b٥\xd0W\xd6\u074c\xcch\xd1\xc2\x11%lF^؛\xb1\x88\xa6s\f]T\x95\xcb\u0084B\xb6:f7\x93{\xa6\xfa\xfa\xe9\xc1\x1b\xe6\xc6\x02\xfc\x1c\xbfj\xb6N\xfb\xef'\x17\x9f\x8c\xcd Y%Y\xbc\xce:K\x10\xecZ\x17ޮ\xd7mX\xc8h\xa54\xe4\xbe`\x14\x06P\x18\x16\x18,\x04W`K\xa9\xc5D\xb8\xaa\x11ڀ\x99\xea9DZF^!\x94\xbe\xd1T\xeeY\xa0\xabn\xedUz\xe5\xc9\x18\xf1Oh\x96AJX\x9eCʨ\x86,\xfeo\x90\x02\vMqG16\xba\x13qv\xd6l\a@\x9cĄ\x11\xd6ߎ\x041\x18\x03\xe1[\b69\xc9\xc6]\x94\xb7\xb7W߂noaQ\xec0=\xf2\xf8|\fi\x83\x9c\t\xd9q\xd9\xea\xe3\xad\xef\xfe\xb7\x10*\x8a3d\xf3\xa6N\xa5\xed\xbd\x03\xd6I\xe1q1g۴hÒ\x1d\xa2\x91\\\\\xc5\x03\xb1\xfe!Jí)\x9df\xab\xaa~\xa8\x02M\x8eL\xd7\xe3aό\xe3|\xfe\x1dh\x8a\x15[\xb9\xd2@#M\xa4\x03,\xb5F_\x0ec\xd4\xd8\x1bW\x17\x96d\x8f\x19m\x16\x93r\xb2?\xc15\x15\xaf&\x8d\x89\x8aw\xeeX\xf5\xeb\xfa\xf8\x81\x94䆮\xb0\xb3\xe0~\x9f\xf6\xc2&R\u007f\xf1\xad\x1d\xa2\xab\xea\x1bY\xbc\xc37Ʊ\x9b\xb8(z\xf4\xae?J\x98\xf4F\xab\x92\xae\x130˫^4]\xeee8,m\xbd\x1d$\xbf$\xba\x18V\xb3=%\x9b\xb0{\x1f\x9eO\xfd\xa0\x96$\x0e\x88\xd8~\xbd\x1f'zf(\x90\xde\xf6\x16&\xf3D\xa7\x1bo&\x1bkAh\x92\x80\xeaajۍ\x03\x15\x96\x02\xb9\f\x058֭\xb7\x88\x15\"<~\xe9[\xaf\x84\xb7ä\xbb\x1d$٭\xa3\xf2\xa0$\xbç=4IU\x00C\xeaZ`\xdc\xc4\xf7\b\xa6Te+/\xb1{\xfe\b\xb7\x8f\xbd\x87&\f\xe5s \xcfMO\xff\xfc\xa7?}\xfd\xa7\t\xb2!\x9a\xaa?X\xa6\x9c\\\x9c]\x9e\xfdr\xf3\xee%V}\x8b\x95\xf2'\xc9lò\r\xd1\xfbO\xfbd\x1eI\x19\xee\x95\n\v\x9d\xf5\x99a\xe3k\xb8\xf8\xb7\r.\xab~\x95\xe3l\xd3\x02\xd5\xcd\a\xd23}6\xb11.\xa2\xf7\xedg뤸\x11\xc9\xdd\x01<\xed\xe3ۗW\x96T\xedlG\xcd\x02\xe5>\xc4\xcc\xf8RdK{S\xdc\xed\xcb+dP\xdc̚\xb7\xf1|\x00C}+\xd3G\x9f\to\xa19QTY^\xb8\xbb\x12)\x91@3\xa64K\xf0[\xd51E\xa4\u007f/\xeebP<\x1fM\\\xe1\xf8\xad\x87\x03a\x88!z5\xaf\x85&Z!\x86>*\xa2\x11\x9a\x88M\xe9\x1a,\x92\x83[$v\xab\x17\xb2\x9f\x1d?X$\x1f\xb7E\xf2\xa9\xed\x91ѯ\x16\x12n\xb4(z\xa2&,\x91\x03a&\xfc\x1dd\xdb@\r$\x8d\x98R{k\xf0\xd9\xd5E\x15\x1d\x17- \x02\x82W\x82\xa9\xaa2Y\xf8\xb3\x19\x0eJ\x9d\"<\xa2,l\xe4\xcb_%\x18~bUH\xc0\xfb\xd7\x04\x1fU\x15\t\x90\x1d\xc0폠\x93\xf0Ղ1\x19\x87\x1dq\xe7\x89~\xba\xfa\xc20\x12I\xd5\x02\xb0\xb82<0\xad\xfc=\xc7T\tn\x8fp\xdd\xf41\x11~\x80\xc9\x14)\xa8R\xf6\xe0N׃\xb0\x1f\xb9\x12\xe9q\xc4\xe9m\xa3Cd.i\x02\xa4\x00\xc9DJ\xb0\xea_*\xee\xc3\xfb9\x859\xe3\xca˯\xe9\xa8_\x18\xc6V\x82\xa8\x13\xe1\xfa\xce\xd1\xebVMl\xbc\xa8\xbaԉ\x88\xd0\xc3\xeeu\xc7\xc5u\x00Qp\xea$v\xd3,\x9f\x92f٪^\xa8>\xd3S\x1f~\x926\x91D\xb1L\xa8ǽ\x8e$\n?\rl!\x8f\xccR\xa8QI}Ŀ%\x9dL\x99U\x95,z\\DE\xc2\xe1\xcb\x03\xb4\xe9\xd16@\x9b\xf6n\x03\xb4i\x806\rЦ\x01\xda4@\x9b\xf6\"1@\x9b\xaa\x1e\rЦ\x1dm\x806\rЦ\xc7\xdb\x00m\x1a\xa0Mu\x1b\xa0M{\xb5\x01ڴG\x1b\xa0M\x03\xb4ik\x1b\x0e\x12\ah\xd3\xef\xf1 q\x806\x85\xbd>@\x9b\x02\xda\x00m\x1a\xa0M\xbe\rЦ\xc06X$\x03\xb4\xe9\xf7h\x91|j{d\xaf\xeab\x81\xafy\x1cϕ\x14\xd3\x1eeƮ\xf0\xac\x9e%\x0e\x06$fѵulw&\xe4e\v\x9e\xe1.\xb4\xb7UZ\x82(:\xa0O\rO\xea[\xaf'\xb8&\x93/\n\xa6N\va\xff_\x8d)h\x80\tl|-ds\x88\xdd|cP\x04\x8f!\b\xa2t\xddn\xf4\x00\"\x01\x82i\x1e\x129\xd0Ǻ\xe9\x81\x18\u0601\x16\xf0d\xa3\x94k7R`\xed\xc4?\x1a\n\xe2P\x02\x9b\xa7\xfd}\x00\x17\b\x85\xdb8鏤X\xa1\x03\xb6\x9d\xf2Ǚ\xe4\xea\xf0'\xfcOp\xba\u007f\xf8\x93\xfd\x1d\xa7\xfad%\xca(\x9a[N\xf4\xdd\xc9|\xa4lv\x9e\xe6\xfbS\xf98\x9a\xdd'\xf9\xad\x13\xf9Xa\xeau\x8a\xdf\xe3p\xaa\xa7q\x1d\x1fI\x8e\xb6\x94\x1c\xd8\xf8v!A-D\x16\xack[z\xf6\r\xe3,/s\xa3&\x94Q\x8flY\xa1\x99\xc3e\xc4㜬\xd5a\x8f\xe1\fa\x96\x02^bIY\x16S\xaa\x0eK\xeb-(\xc6'T\x99$\x00\xa9\xd9'_\xd5G\xe0\xc14\xbf\x9eT#\xb7\xb7j0E\x9e\x87J\x9e\xbdP\x11\xfd\xbb\xaf\xbf\x8a\x9a\xfd\x18\xcf0\x12\xb0\xf18X\x03)\as\xb2?P\xa3\x8f\xb9\x11\x1bHy\x1ap\xc6\x0e`\x06\xf9G\xe4ְ\x03\x94AX\xdc6{ @F/\xcd\xd9\x13\x88\xb1\x03\x84\xe1x\x14i\x80l\x020ց\x14q,\x8f\a_\xf4\xd8۞\nt\xb1\x1dp\x11+\x92\xa47آ?\xd0‷\x1d\xd6ȁ\u07b7\xe3\xf7\n\xd1\x1d r\xd8\x13T\xf1Tl9\x04\x84\xe0\x03\xde>\x1b=\xab}\xc0\x13=\x81\x13}@\x13\xb1\x80\x89\x1d`\x89>\x91\xe6\x9e@\x89^\xe2\x13{\x1c\x11}\x14\xd1\xff\x18\xa2\xf7\x11\xc4\x0e@D\x9f;a;\x8f\x1eb\xef/\xf4\xad}\xec\xb0v|\x10i\x166\x8f\x1c\x0eztp\xf0c\x83x\x10\xc3n\x00C\x03\x88\x10\xcb\xc3M\xf0B\x1f\x10B\x0f\x89\x8eU\xfeQ\x87*\xd1J\x9bq\xa6\x19\xcd^AFW7\x90\b\x9e\x06[Fk\x17\"U\xebUYr\xd63\x0fGB\xb4\xb21\x17\xd4ݜ\t\xa9O\xa8\xf5\xa7!\xe1\xaa\x15\xcdGB\xf1\x9c\u008c^\xb7\xb3'?\xec\xb9\x05\xf9`!\x03\x9bRz\b!\xf8\xbb\xb8'b\xa6\x81\x93\x13ƽ\x1c\x84\xc7Q\xeb`A\x1d/\xaa\x96\xb5\xf9\xeb\xf3/\xc35\x97\xeḑ\x1b\xd8\xc1ЖRO\x17\xd7s\x1f8|`\xcf\x11\x9e\x95\xe11\xfaVp\xcf\x06\b\xdb\xfa=x\xf2\xeak\xf8\x9ec\xbf\xbd6\xc1(\xb5+\xdb\x10A\xf3\x13\x15\xaah\xd8٣\x903\x12q\xf3\xd8.\xb8Y\r\x1d\v&\xbb\x05jV\xc3\xc6\xc2;\xba\rf\x16\x05\x19\xfb\xe0\x11\xce5\x98X\xbc\xfb\xb9\x05\"\xe6̳H#>\x1a\x1e6\xf8a\x81m\a\fl\xf0\xc3>\"?\xec\xd3\xf004\xcbA\x94\xfa\xa3r.\xee\x17,Y4m\x15\x96\x83\"\xa2\xec\x03y7V\x88\xebV\xa7u\xf9\xd4WO\xfd\xe6<\x92(\x89\v\r\xcfwĜ\xd6+\x01U\xa0\xab\xa0qSE(yuy\xf3\xcb\xf7g\u007f;\xff~B\xcei\xb2h\x960ㄚM-\x88&\xea\xa2\x05]\x02\xa1\xa4\xe4\xec_\xa5\xbd\xb5\x94\x9cT\xdfy\xe6\xf1{At\xe3\xb0~Q\xbb\x8c\xd1fz\xc9\x14\xcc\x04\xd9\tO'䌯쇬.\x0f\xc4*\x19\xa3\x1d\xb8!\xe8\xcc\x10\u007f\xe1\xedї\x13\xfc\xbf#3\x8324\xbcTAӒ\r\x80\xae\xb5z\xd840\a\x05\x87ސ\x81\x9e\xf8܈c\xe25\xc0\xa5\x1bוa\xbd\x84\xc2\xde\xe9\x1a\xba[\xd2J\xa4q\nQ\x19\x9a\xf5\x97Eۃ\xf1\xceS\xd2\x1cR\xcf\xfb\xf0k\xfb\xc4\x1b\xbbV^#lE'\x97\x85H\x8f\x15\xb9\xb8\xf2\xe28\xb1\x17A\x9b\x9d \x82\xa8\x91Cc\x93\xb0\xd4v\xd0\x1e\xae\x8cȗ\xe4\xaf\xe4\x81\xfc5\x82\xa21\x95\xff\x1cn\v\xf7\xb1'\xfa\x04:\xac\xa7|q\xd5s\x9e\u007f4j\xccP23\xa3\x05\x99\xb2(|\xac\x99`x\xd0 \xcd6\xe1$&\x9c\x97=\xbc=3\x84\x8fR\xec\xed\t\xceŬq\xe74ы(@j\xe5\xc0m\x11\xfc\x18?\x8e\xfc\xd5\t\xbe\xe9\xe2߅җN\x9d\xc5ߒm\x9b\xf6\x8b\x9b\xe4T'\x8b\xb6\xbe5.DԲ\xafK7\x92T`\x1c\xccB\x89\x17,\x02k\xf4\xe1\x96n\x1c\xf4\xa6%\xa9\x9b\x12\xd5G\x95\xae\x85\x040v\xec\xecr[\xec4R'\x14\"u\x0e\x83\x19r\xda\xd8$C=\x06۶\xf8\r.\xc2\x11\x978^'\xf5\x19]\x98Pn\xb3\x90f %\xa2\xd4cX\xbaB\xb4\x05K B,{h\xc1B\n-\x12\x91\xf5\x94\xad+G\x06\xcf\x13l\xb0\xfaM\xb4l\xfd\xf0\xeajDn_^\x8d\x88\x90\xe4\xe6\xe5\xedU?$3!G\xb7/\xaf\x8e\xde#[\xe3\x82S\xe3\xb69\x16\xf8\xae\x9f\xc80\a\xabOBa(Ω\x15\x014N\xc88\xa7\xc5\xf8\x0eVAfk<\x97\xa2x\xb4\xd9i;\xf8\x9c\xee\x0f\x04\x97@S\xf6\x11\xe5R:ES\xf7\xab;\xa92\x17\xcb\xc0\xb8\x0f:l\x9e:\xf0\xb4\x10\x8ckՕi\x19Dv\xd3\xeb\xfbh\x10\vC\xa6eG\x1b2-\xb7\xb6!\xd3rȴ\x1c2-\x87L\xcb\xee6dZ\x0e\x99\x96\x9f\x14vjȴl\xb4!\xd32\xa2\r\x99\x96\xdbڐi\xb9W\x1b2-7ېi\xd9نLˎ6dZ\xeeۆL˪\xfdv\x10\xbeC\xa6\xe5NJ\xf0\x1d2-\xf7i\x9f\x06\x0ezȴ\x1c2-=_\x86Lˠ6dZ\xae\xb5!\xd3\xf2S\x15\xaa!\xd3rȴ\x1c2-\xbb\xbf\xfb{\xf7ÆLˏ\xd5\x0f\xfb4<\x8c!\xd3rȴ|\u007f\x99\x96\x12\x94(e\x12\xb6\x87\xb6\x85\xec\xa5ȋR\x03\xb9\xf6\xa4\xaa\x85\x164\xf0\xe9\xca\"\xb9\x1b\t}\xef\xf7\x12\x83D\xf0\x19\x9b\x97\x12\xd3\xe7Ns\xca\xe9\x1cƉ\x1dܸ\xe2Ӹ\xea\xdf\xe9\xfb\x80\xd7e,ga\xa9\x96\xa6\xd5y\x8bW=\x8c\xa4\xc8=\xb9\xef\x8e\xdcs?.\xa8\xd6 \xf9\v\xf2\x1f'\xff\xfcï\xe3gߜ\x9c\xfc\xf4\xe5\xf8\xdf\u007f\xfe\xc3\xc9?'\xf8\x1f\xff\xf6\xec\x9bg\xbf\xfa\u007f\xfc\xe1ٳ\x93\x93\x9f\xbe{\xf3\xed\xed\xd5\xf9\xcf\xecٯ?\xf12\xbf\xb3\xff\xfa\xf5\xe4'8\xffyO\"Ϟ}\xf3EpW\x0f\xbc\xbf\xb5\x97\xe5\xf7(9\xf5\xa9$\xaa\xef\x9c>\x18=\x1b.\n\xb9(\xb9\xb6@]\xbbګ\x05aOrC\xd7&\xf9\xc8\xd6'\xe9\xb3e\xbb\x93\xeda\x99\x06\xb4a\x99\xdaez\xedd\xa7\xbdP\x83\xfb\x98;\x03j\xc7B\x8d\x02!\x99m\x1c\xf3\xe3\xaa~2EDδ\x864*稑U\x8d\xe0֦\xb3kUV\xb8\xcd7\xb3\xb8L\xa6\x9aP\xcfF\x86\x98\xd0\v\x90\xf7,\"\x95Ѹ_\xbc\x8ex\xa0\xea\x19\xa70c\x1c\xdc%Ͽ[\xb5\x17\xf5\x9a\x82\xa4\x94L\xaf^\n\xae\xe1!(R\xd0^67\x8e\x10\x11\x85\xc5\x1f{T\x98\x05\xff\x87\xa9\xef\x92c\xa6_\xf0\xa1F!2\x96\xacN\xfd\xa0p\x0e\xe0A\x9f>\x81\x95\xaa\xa9\xba\xabe\x01\xc6\xc6]\xa9\xa7|\xa3\a\xef\xc34\xc5}\xffJ\xb2%\xcb`\x0e\xe7*\xa1\x19\xcah?\x97\xf5l\v\xd5\xe0efX!E\xa6\xc8\xfd\x02\xcc\xfa'Ԍ\x14C)\t\xe5dN#@U\xb9\x99\xab\xc2w\xce\b\x9d\xd1\x0eZ\x91\x82J\xe0\xda\u007f \\'`9\x80\xa9\x10\x99\xcbx\xc8Vu\xffY\\\b\x89\x8b_8\xdc\xffbz\xab\xc8,\xa3\xf3*!J\x81\x8e\x85y\xd4'\x8c~\xa8\xe4`\x13\xc6\x14\ue984f\xf7t\x85Ӷ\x16\xf1\x8a\xa0\xf8\x82<\u007f\x86\xeb\x9b*R\xf51%_=\xc3\x13җgW\xbf\xdc\xfc\xe3旳Wo..\xe3Ԧ\x993\b\x8c\xd9'\xb4\xa0S\x96\xb1\x18so\x03\xf9\xd5$\x86\xdbU\x9a\x9e\xa6R\x84C\x8e\x91߲\xe4XO\xa5\xce5\xef\x17\xe1i\x16eA\xb1\x9b\xb5:\x1cLr.)\xc73\xed\xd5ځ\xb7,\xb9f\xf9{Mʢi\xff\x84\xac\xb34\x85\xb4\x1fK\x0e\x87e}黱\xaak\xc2DQ%\xe4\xea\xed\xcd\xc5\xffY\x93\xcdU\xd1\a`\xf7\x01rI\b1\v\xa9\xf7\x1c_\xdb\xfc\xd3a\x96w\xb6O/c\xa8\xb2\x03\xfaa\n\xaeKޮ(WӍ\xb0OR\x98\x90+\xbb5\x83jSk(\xf5p]'\x81\x18\x92\\3\x9ae+b<\xc3%\xcd\xc0&OH\x11X\xaa\x8e\xac\u05c8ib\x13f4S\xc1\x8a<~76\x86\xcc\x1b\xe34\xf7\x9aŊ\nI\x81\v\xed\xc2mQ\xabA̐\x1a\xb1\x9e|\x03\xec\xd7\xda\xf1\xa2\x8c\xccz3f\xca\xf3\xfc\xaa\xea9\x9e\xf2\x04S-\x15\xa8\xee\xcd8\xfeVy3Z\t4Ŝ\xf0\x82\xea\x85ř\xe4T\xddAj\u007f\x88\xb4\xb1]L\xc3\xf6\xb8\x1a\xfa\xed\xaa\x002\x03\xaaˈ#'\xb4\xad-z\a8\x9df\xe1\xa1\xd0\x1e\xe59h\xfa\x96g\xabk!\xf4\xeb*\r\xb9\x97 \xff輥\xf6YL8\xc0\x02+g\x9a\xfe\x8dq\x121\xed\xba\x99)\xed\xa4/\xc6Kx\xcf\nB\x96\xfcL}+E\x19l\nl\x18\xeb\xdf^\xbcB}YZ\xdd\a\\\xcb\x15\x96\x96\x88Q\x12\xed5W\xf9c?\x98\xf5\xe8V`\xb8\xc1\xe3\xd5Ì\x94\\\x81\x9e\x907tEh\xa6\x84s\x1c#\x0ed\xc9\x15\xa2$\x9bq\x9f\t\xc1\x1aN\xa0c2\x9b\xa6B/\xc8\x1aAT\x0f\x9b\xdf\t/@`\x98j\x0f\xa1\xab\xf8\xa1\x19\xc2\x1a\xddp\xb2\xf4\x0e\x14)$$\x90\x02O\x82\xa5\xb7q\x9e\xfc\xe7?\xbe\xa7\xf3d'\xf9\x97\x82\x1b\xf5\xd2K\xf6/x\xca\x12jwE\xaa{z\xf5\x880q>=\xc5\fyT.\xa5\x02\x89\x91j-K\x88\x9b\xf8\xef\xca)d\xa0m\xa0\x04\xeb\xccQmKZ\xb0\x9c\xce\xc3W\x13\xd5\xd5V\xa8\x05\x01\xaeJ\t.T\xadI*\"\xdc\x00W\a\xc2\f\xfd\x87\x8bW\xe4Krb\xc6\xfe\f\xc5\u007fFY\x16\x93\xb5\x8d\xe8\xcd5m\xc2f\xbe\x8b\x86\xa5\xe16\x01Gg_ZU=\"\\\x10U&\v\xcfӘ\xe8\x90\x0f^9\x843B\xd0\a\xd5\xf4\x11\xa8\xa6\x9e\x1b\xeb\x0f\nd\xef}\xf5\x87\xf7\xb0\xaf\xf6\t\x83\x19\xddԞ5T($\aMS\xaaȋW\xc9\x1bՍ֖B\x8c\xec\xee^\n(\xda\xc14\u007fgK\xe1\xc3\xec\xd2\n\xbeg\xbc|\xb0`\xe4\xfe\x01\xe5\x9bs$G\xdcQR̎2\x05B\x8b\"c\xb6\xfc\xceZ\x95\xf6\x8b\x96\xe8\xc6\xcd\xfd\xa6\xab\x89\xdb\x03\xcd2ǎ\x88CiIy*\xf2\x8d\xc1\x1bG\x14h\x84W\xdc\x18p\xc7\xe2ܶ\xd8\xc2\xf7\xeezq\xfe\xde\x16[\x9f\xd0}\x06K\x88(\x14\xba~\x8f\x81\xa1b\x1cR/5H6*\xfa\x99\xd1)d\xd64\xb4+Gm\xae\x9c\xe8\xa8hdPU\x8a\xac\u007f\xca\xea\xb5\xc8\x10\xcfK+&\x19\xb2\xbf\x19\x1e\xe1\xcb}y\x84ѧ\x16\x8f\xa2\xa3\xe8\x1f#\x8f\xca\b\v\x8f\xac\xf3Ș\x89m\x1e\x19\xb2\xbf\x11\x1eE\x1fA(H\x12\x91\x17WR\xccX\xf8b\xdd\xd8\xfa\x1d\xb9\x1aS\x13\xbe\xf5\x97\n\xba\x90\xdchG\"\xf1p\x8b\xdcu\x86\"\xf4B,Y\n\xa9\xf1\xacq\xcfs\xa8\x9f`\xa2\xffOÄ@\xad=Z\xb3+\xdcW\xc3{\xbb\x04)}!\xccB\xa4\x9e\xd0{\xdd\xddDB3\xbc\x14 N.Ⱥl\xac\x13$\xcc\xc7s\xa2\x16 \x02q\x90\x8eG\xd2aUt\xfc%\"2@\xfc\xfd:\"\x85F\xed\xd7\x12/\x98\xb9\xb59+\x86v\x14a\x9f\xced\xec\x14\x0f\xbeJ\xfdٕ\xf9b\\w\x85+u\xf9\xa6\xba\xd6\xc00\x1cx\x1a[ɡ\xa0z1\"\x122\x8aI\xc9N\xa1\xddـ\xd6q\xdc<5\x06\xec5\x83\x9f8\xb4\xb3\x99\xe0qIh8j<\x16\xf0\x16\xf1\fu\xa0Q\xf0G\xdf{a\x8b\xa8s\xfe1\xec\xe6Gv$U\xc43\xeeTʹ;\xc6S\x97\xbb\xd5b\xbe\v\x85ŭ=\xeb\x97M\xc8;\xbcF\xa3\xa1\\_\x90\u007fƭ\xbdj\xc2\xc8xsiGQl\xaa\x83\x8e\xa5\x1dEӪ\x83k\xeb.\xfa\x9a\b㞡hb\xa3X\xcd\xc3Ί\x01\x11@T\xdf*\xed\xf5\x03\xc75hT\xe4\x98p\xd1K\x93՚\xd1\xcb\xc0\xd1\xfb]_\xf1\xe9\x97\x11\xe6p\xb4Iu\xcfx*\xeeա\xa2)?Zr\xdeuN\x8c\xbaӌ\xcf# \x18uD\x85fY\v\xa1w\x88\x90\x8a\xd7\x04\xd5Ue\x9b\xa1\x83蘽\x15\xe6v,\xb1w\xfc`Kx\xa3\x0eW\x84\aSv\x847l\xb8\"\x98\xe4\x87\to\xccsE_J\xf3]\xcdhvS\x84W\xe8'\xeb\xb2\xfc훛\xb36\xc98͎\xb8^i\xcdcC\x93\xd04gJ1\xc1\xc9=L\x17B\xdcE\xd1=\xf1\xd0\xf99Ӌr:ID\xde@я\x15\x9b\xabS\xb7\xb2dž;qE\xca\x19\xcf\x18o\xa0]\x80k\xe5O\f\xcc`⬬\x8a\xab(\x80\xee\xb2 \ap\xddd\xfbel\x91\t\xac\r\xf9\xdeM\xaaMQ\xbc\x8c,\b\xfa\x888F\xf3\xc5݅Ш\xd6`\x05\xb3\x9e\x97\xb8\xed\xd6̥=\xfay\xff\x91;\u007f\xb0v\x10^\xe3\x01\x9b#f4\xa3\xdb\xd2b\x1d\x9f\xcdC\xba\x8dC\xb78\x0fh\xfd\xa0\xce;Aс\xa2\x1d\av\x84\x85\xc7\xea\x89=\x18?\xe8\xa1\x1d\xd9rp\x17\u007f\x84M\x9e\xfa\x18\x9b<ݑ\x029\xc0\xb1\x02\xf9 \xa1\xbc\xb8d:[v\xab\xe7]L7\r*\r\xb7U/h\xf8\x15\xc7W\"\xb5\xa5\a\xab\xd2ex)1\x96Ld\xff\x1d\n\x8cl_\xf3Dž\xcd\xe3l\xd6#t\x97τyY\xc6_\xcb|\x842/2c!\xb4z\x1c\fyAZ\x8dK\xa1F\x153\xea;\xa8\\5ư\xf5\xf2_\xa5҄V\xf7N\xf9\xa2kWէl\x88+\xf0\xe2\x11w\xcd\x1fV\x16\xd7\xc2\aUI\xcaf3\xf0il\x81^vA%\xcdA\x83T\xc4Ủ0g6\x97H\xcc\b5\xcc8\x0e\fCU\xd5XF67\x89i\x92\xb3\xf9\u009aℒL\xf09\tF9jA2AS\x82Z\\HrOeN(Ih\xb2\x80\x91M\xe8K\xcb\xe0\x85\x8f\xe5\xfeWc\xa5\xa96\xae\x14\xd8l]w\xcdo\xe2˘\x84\x89\xe9pC\xd8pC\xd8\xdem\xb8!l\xb8!l\xb8!,\xb4\r7\x84\r7\x84\xed݆\x1b\u0086\x1b\u0086\x1b\xc2l\x1bn\b\x8bh\xc3\ra\xdb\xdapC\xd8^m\xb8!l\xb3\r7\x84u\xb6ᆰ\x8e6\xdc\x10\xb6o\x1bn\b\xab\xdao\xa72\xfdpC\xd8\xc7Z\x99~\xb8!l\x9f\xf6i\xd4\xef\x1fn\b\x1bn\b\xf3|\x19n\b\vj\xc3\rakm\xb8!\xecS\x15\xaaᆰᆰᆰ\xee\xef\xfe\xde\xfd\xb0ᆰ\x8f\xd5\x0f\xfb4<\x8cᆰᆰ\xf7wC\x98\xd2)\v\xaa\xe9\xbfG9ɘ\xe48_܅P2-g3\x90heb2\x8a\x03\x90\xfb\xd2\xe1X;\xcetӡi\x14\xe8\x11V\xb0\xb4IQa>Eg\xb7|\x95\x1a\xaco/A\x85ֿd\x9c\x9c\xbf}];l1\xb50\xe3\xcau\xe1x\xde\xf2$\x1eg\\\vBG\xf9\x9e0\xdeZ\xf0^\x92\te\xd1d\x96\xd9ɂr\x0e\x99\xf3lX\x18g\x17T\x91)\x00'\xa2\x00n\xd3o(Q\x8c\xcf3 Tk\x9a,&f\x04a\x96\xb7\x13\x02w\xadA\xddS\xa5%\xd0\xdc\n\x83\x84<\xf4\"\n\xd3EB\x13)\x94\"y\x99iVT\x9d$\n0\x97*\xf0\xc0\xf3bVO0\x02\xcc\x00\xcd\n,\xa4X\x8d\"\xb8\x8f6O\xbe\xb1\xe6\x8d\x0f8\xc2[z\xf2B\xaf,\x0e;l\xe3[\x00\x991\xa94I2\x06\\\xbbQ\xdb\x02\x1e\xd8\xcf\x11\t\xc5\xd5i\xbc\xf6\x00gA9\xd6\xf2\x14-\xaaB+\x8b\x12\x8e\xeb\xa8\xebbʔ\xb3\xdcՈP\xed7\xca`\xa1\xf7\xb2\x84b\x9fb'}\xaf\xddO\x91ݬk>\xaa\x1a\xa6^+\xc3YF\xc3,^\xaf\x94Fͫ\x9e|v\x8e\xaf\x00\x8aj5\x88,\xe6\xa5Z.\xe0\xc2\xe1\xb04\xfa\x03\x12`K\xb4%\x8df\f\xa2\xb8\xaeE\x9f\\\x89j\x909\xe3\x88\f\u007f\x03J\xd19\\\x05\x1e\xcfms.\xf1\x84\xae\x16\xae@w\x02\xd3յh\xd8p5x\xf5X5\xbb\x1dD6\xb7c\xacr \xee%\xd3\x1aP\x88\xb1\xb49\xa2\x16\x021d\x1b\x9dkBk\xdf\xf8\x0f\xda\x0f\x85J\xad\xb1\xa7xj\x01\xa1S S\xc9`Ff\x8c\xd3\xcca8\xc3\xc0\xcaX\xf0\x94*#\x9aT)\x90\x18\x81q\x10?ϛ0\x81\xfd\xd11R˒'\xb4q\r\n\x96G`32G\x9ch`\xa0jA9\xf9\xe3\x97\xff\xfeg2]\x19+\x18\xc1\x02Zh\x9aU\x13\x98\x01\x9f\a\x16\u007ft\xdbS;Q\xbd\x92\x04\xbc\xd44\x10\xd1c\x9c\x81\xaf\xee\xa6\xed \xe5i\n\xcbӆ|\x8e31\x0f\xe3\xe9\xe6\x15\xb3!\x86|TX\xa0C\r\xe0=bъ\xc0WW&\vqo\xaf\x1d\xe8\xb9b\xeb\xf4\x88B\x14ef\x8fs^\xfb\xd2#A$K\x05\x9b\xe9ҝz0T\x1a|\xd7\xd6v1\a\xb7vC\t3Z\\e\x02\x17V\xaf\x8a*\x97\x12&\xe45Ͳ)M\xeen\xc5\xf7b\xae\xde\xf2s)\x03o?D\xe9\xf7\xfcȨ\xb1b\x16%\xbf\xb3w5VŨD\xd8n+J]\x94\xda'\x8858[Mfp\xc1\x90\xca@3\xe3o3\x17\x1e̺\xc5\xcb\xf2\xc2\xd4\x01'`\xf8e\xb5K&\xe6U\xbf\x95W\x06\xa1h⯾\xfc\xe3_\xac\xca\"B\x92\xbf|\x89\xe9&jd71\xb4\r\x8c!\x9b\xd3,\v\r\x845\x15\x8c\x11\xfa\x9e\xf7P\xc7\xe9\b\x1d\xaf\x0e\x9e\xc4徽\xfd\a\xfa\xdbL+\xc8f#\x9b\xb7\xec/\xd3\b\"z\x8cFܱ\xdbe\x8d\x8f\xf1!\x1cڥ\xc8\xca\x1c^\xc1\x92\xf5\xb9\xfb\xbcE\xc5\xe7LeLi\"\xc22H\xa7\x99H\xeeH\xea\b5p\x9d\xeb\x17\x9d\x85p&\x02\xc1\xbaut\x8d\xebiC\xabU\xe7\xb4(\xaaM\xe4\xd9\x1bJm\x01R1e\f\x98w\xb8&^f\x94\xe5\xf1ف1\x15+{\xdc\x11\x14s\xa61n\xc8i\xe0\x8b\xc1\x8c\xeeU3!\f\x17kU\x1a\xde\xf9\x14\xaf\xf5\xafD\xea\b\xa1\xaa\xb6\xf7t\x19W6X\x1c\xb6%\x89\xf628\xfa\xaa\xfdw5\x8f\x9aZߎ3|9\xe3\x02\xb24\x9d\xb2\xff\x10\xea\x1b;\u007f\x00\xed\x8dz\xdb\r\xa3o͚f\xc0\xc6\tT\xc3\xf5r1\x92\x89\xc5\xd5D\x907\x12\xe4\xbaG\x8e_\x1c\xbfW\x1dn\xd9-EA\xe7QwB\xafq}\x9d\x1cI\xc1\xba:QI+\xc6MF\x8aUQa\xa4\viU\xfc.\x8a\xa8Mƫ\xf7a\xef>aՒ\b\x8a\xf7tE\xa8\x14%O\xed\xd9C}(\xf5f\x8d\x1d\x97\x82\xc7t\x99\xa9\xaaH\xae1\xbc\x19d\x98\xf7?\x05M\xcd\xde\xf6|\xf2\xfc\xcbOm\xe3Ǒ\xacm\xfc\x91\x95\xc1\x1az\xeb\xbdr\xc1\xdf\xe9ד\x13o\\\x88\xb5\xbe\x82/\xaad\x95=\x03B\"\xf7\x92i'\xcd\xf7L\x019\t\x8d\x9a\xfb&d\xb3\x0eֳ\x03\xdc\xfe\xd9\xe7\x16\"BT9}\x82\x9d\xc1*\xf4\b\xf6\xa0\x12\xea\x8aūx\x9a\x1d\xdbJ\x93\xe9G1\xa5`Olo\x8emŌg\xefu\x91\xb8);\u007f(\"\xae\x16hM\xdb\xf9CA1\xea_\xd4\xf3\x17\xb3N\xea-|\xfb\xfcE\xd0\xddn\x16\xfc\r\x16t\x19\xb5\xff)\x96\xb3\x8c\xcale\xa6\xfe\xc6r\x92LKM\x80/\x99\x14<\n\xb9IȒJF\xa7\x19\x10\tXG*\x01E\xbe8ywv\x8d讘\xa2\x1f\xb6ė\x9b\x9fR1>?\x00G\x1b\x83\\_\x04\xb5HGе\x8b\xc0\xf3\xd3H&Z\x00\x9e\xbf4\x02\xaaDH^\xea\xd2^\xb8\xfc\x90d\xa5b\xcb\xf7\xb9\x17\xc5z\x8e\x95\xad\xfd\x1br\x1c]\xb9\xa1W,H߬\x95V\xaa\x15\xf9F\xf5\xa2`\xc0\x06\x1a\x83uu\xbcNXM\xa0\x1c\xfb\n\xe6Ͳ\xcd.\xa0\xee*\xaf\xd9\xf4\x03w)@(ti\rm\x90\xd3\xf9\a\b\xad\x87\xcat\x90T\x06\xcbc\x98$:\xdc\xe7~]o\x9b\xc5\xf6MW\x94\xdfF\x1ds\xfa\x80\x80J\x8a\xcbu\xcf\x11\x8a\x19\xf6\x82\xbc\x83\f\xa4\xf0\xdb\xd2=e\xba\xcaUa\x9c闡7ͣ\xe3dk1\xee'\x00AS\xbf\xf7\xbc\xec\xf9\xe0\xe3\xd3\xf6\x98\x98\xed\x14\xabG{\xb1\xeb\xfb;^f<\xc9\xca\x14^f\xa5\xd2 \xafA\x89Rv\x9e~\xac\x9d.w\xbe\xd5HH\xb9w\aN\x89}d\xac\x12Qt\xaa\aY\xbf\\\xd93\xaeS\xa9OV\xc5\xdc&\xea\xd2U\\U\x10\xa5\x85\x84-U9y\x99ek\t\x11\xb2\xec\x10\"\xf3\x9c\xb1N\xb6\xe0\xc2w\xf9\x0f\xbe\x8bƑT\x05ݛe\x8d\x17\xec\xd5U*c\t\x06\xec\xb9\xff\x83\xfd/\xd3k\xf7\x91\x8e\x11ڹ\xb4 T\xc4e\xe1\xe9\xec\b\xc1\x15\xbc\xfe\x82;\xb4\x1f\xde\x1c\xfe֠\xe0΅\xb4\x17Ӻ\xe4\xd0w$P\xc8\xea\xe7\xd7\x18\xe6%g\x1f~m\x8aM\x93c\xb5\f\xba\xe7\xa64\xb9+\x8b\x8f\x8b}xE\xd9\rdh\x1b<º\xef\x9b\xcfZ\xb6\xe5\xa0\xe9\xf2\xf9\xa4\xfd\x17\xe3[\xb3L#\n\xb9\xd34\xbb\xb7HH\xc35c\x9a0\x9e\xb2%KK\x9a\xb5$\xb0\xc1\xb3\x9a\xb5\x98\xcc².\x80\x14\x96\xd3s\xef\xb7xL<|-x\xad\xee\x8e\x02c\xe0ǘ\xdf\x0e\nۭ\x82\xdb\xe1ŵW,\x17\xdd9\xae\xbb/Ny>:\xd5n\xfc\x87\xad0\xdb[W\xcc\xc8?\x87#?\xbb|\xb5ͼ\xd9\x19\xb2ou\xf5lGwܚ\xa9&|W\x05gg\x88)\x9bO\xa1F\x84\x92;X\x8d,\xf8\x95\xbb\x12\xb6\x8e\x88\xbdVʙ\rw\xb0\xddT1/[z\xdb\x18\xb3O\x00\xff\x0evƾZ츃Uu\xec\x8e|1?Tw\xccW\xacp\xf7\xfc\xed\xde\xfbw\x9er\xeeeox\xae\xed\xdd\xfd\x8a\xcd\x12\x8c\xf0YQ1c8V\xee./\xc1Ղ\x15\x8f\x81c(B\xb6\xc5\xccs\xbf\xba\xddɒ\xb7\xf2w\xc1G\xe4Rh\xf3?\xe7\x0fL=\x92\x90c\xe6\xf2\x95\x00u)4>ݛ9\xb6k{\xb3\xc6>\x8e\"ͭ\x8e\xc4$%\xfcF5̋\xc7s\xe7*\x163E.\xb8QT\x8e\aU\rz\xe5\xc8\xfb\xbc4.\xf8\x18\xb5\xdanK\xd4~\xbbE߲\xd5|\xa3ɹ\xe6\xa7v\xb3\xbc\xd5\r\xdb\x05\x1bѶ\u007fA\x80v\x91\xd1\x04RW\xa3\xdaL\xbc\x96TÜ\xed.]\x9c\x83\x9c#\xd0 Y\xec\x1a\xd5\x1eG\x87{\x1aއ0\x91\xb7\xab\x9aq\xc5\xf6\xa70\xa1\xdd\x1e\x82\xdb\xe7\x16n\xd0\xd4WǽzT\xa3=ʱͽ\xc8~\xdam\xe6\xb40\x92\xff?F=\xa3\x10\xfd/)(\x93jB\xce\\\x86ʖ\xef6\xdfp\xb6N\x93\xb8\xa1\xcb\x141\xb3\xb0\xa4\x19\xd8\"\x87\x94\x13ؙ\xba-f\x1b\xbb\xe5\x88\xdc/\x84\u009d\xa1>D:\xba\x83\xd5Ѩ\xb5B\xb6P4\x0f_\xf0\xa3Qu^\xd6Z\x94\xd5>\x85G\x18G\xf8\xb7\xa3\xc9\xc6\x06\xbb\x85\xf6#\xdb\xeeN)\xd9\xf1\xc7\xca\xea~c\xa1M\x9b3\xbf\xaf|씍\x8d\xeaM\xcdo\xb6\x84\xa3i\x1c\xb7܊\xaeOR9\a\xdd\xe5\x828\x8b\x19\xa1\f\x13r\xc6W\x1bt11\xae\xd3\xe4vN\\%gE\xeb\xea\x03!\x1dؿI\xca\x01\x97T\xb7#l\x1eܜ\xb5\x1d\x93\x82\x1b\xa8\\¥H\xe1J\xc8.|G\xfb\xbcf\xfd\xf9\x0e\x8f\xb6\xc1\x14\x91\xa5\x88\xb3\xc7G;\xfa\x8b\xb6\xb1\xb3\x8b\x0f\xe9|\xba\xef_\xbd{l<\xd7Ճ\xbb\aB\xb1.\xb7\x9d\xaf\x8eq\x98\xf7m\xae\r\xa7\x85Z\bMN\x96\x8c\xba\x8c&Q\xa6\xee\xb6\b\xd9q\xde\xd3c\x94*Y@Zf\xd0}a\xd1F\x89+\xff\xa8\xb7\xfdJ\xce\xfeU\xb6\xefp\xf2\x11*\xf7t\xd7B\xa8yR\xb9֍\x88\xaaQG\u007f\xc3\xf9\xf4_r^\xa4\xa3\xbc\x05\n\xdf$iׂP\x1a\xf3\x94\xb8n\x14l\xf1ng\xe2J{\xbb\xc7;\xd3\xec\xfc\x18\xb6-\x87\x0e\xf5ѽ\xb9\x8e\xddW7Nķ,+\x8b\xa5o\xd3蒹\x1b\x8b\xb9Oh\xa1K\xe9\xefG+%\xde%R\x97?\xa7\x9es\x8eE-\xb2\xdb\x1d\x03\x17\x17d\x82߲\x1c\x94\xa6y\U0004813c\xdc|\xc3L\x80\x90\xa9\xed\x1aF0\x1b!\x82\xfa\u008e.\xaf\x98\xd6\xd7Ĥ\x93\x06mK\x06m2C\x1aR\x02K\xe0\xc4%\xf9\xe0ɻ\r@t\x10\xb5\x97m\xcb%\x9e\x05x:\x88\xf7\x9d\tI\xf0F\x9e\xaa\xeb\x9b\x12\xe1S\xc7S\xaaaܙI\xb8\xd7J\xec\xdcu\x10\xa6\xff\x98\xaa\xc1\xdc\ag\x9e$\x88\x133ӛe\xf6m\x9fy\xe0R\xfd\xeeA\x02\x99\x037,\xee\xd48Δ\xb5\xd7D\x18ƺ\x15\\\x05pn\xed\xcd\x1a%u\x1f\xb0\xeeL\xb5\xabl\r\x99\xe1#\x9dYV\xbb\x12\xe8]\xc6\xc75PՅ[j1\xe2u\xf3Y\xe7\xabX\x1e\xe0\xd0\x13j\xefر\xb7\x9d1\t\x9d\xa2\xef\xba$\xf0\xcb\x01k\x9c\x90bA\xd5c\xea\xf2\xca!\x17s\x8eJ\x06\xdd\x1a\xf3ۅ\xf6\xb6\x93q\xa0\xb8sx\xba\xfbj\x0fNMg\xb9\xd0N\x03fي,\x04\x12\x9d\x10\xf2ZH,\x04Oy\x02#\xe2c\xdf\xef@\xaam\x99{\xc6(ym>\xe91\x056cm\trE$\x95\x90\xad\x8c\xfb\xc4\xec\x8d\xfaVe\xe2\xc0'\x84|\xd5\xed\x03]p\xfb\x02>F\x16\x90\x15n\x98\x8a\xb0\xbc\x10J\xb1\xa9\xcd\x0e\xa6iZ\xdfbl\x9e3\xfbPw4\xb3\x8e\x1c\xfb\x8f_pk\aUl\xc6?؋Ҥ\x9d\xd1\xc2,\xf2\xa4̨D\"F\xdc%\xb3W\xc7t~%cw0\"G\x18.A\x81\xb2.\xa2\x16($\x8a\x9cY\v\xee\xc8\xc8\xde\xd1\x0f\x17\xafp\x16\x1c\xef\xbb\xe1N\xe6AެP\xe4\xfb\x00\xe9\xd1\x04\x9f\xb8EG\xb7\xbaϋ\xdcC\x96U\x18\xe9\xee\x03\xf1\x96tM\xf0\x06\x8c\v\x8e\xe7\\\x98O`\xa7\xcb\xdd\x16F\xfe\xe6$\xd9^[i8\xd4-\x05\xb2q[[\x15^rd\x88,3w\x1cT\xdf\xe86]Yz\xa3\x1d\xd7\xd1\xe7xs\"\xd3dA\xa55DJ\xe5\xea\xfa\x17\x12R\x96hr\x8f\x1b\xbaq\xec\x16\xb4(\xc0t\xf9\x8fv\u007fޱ\x0e*)ey!!a\xca\xdd\xe6\xb5\x04\x99\xad\x88\xfbiB\xc8w\xcc\xde;exK\xfd\xef[zj]`#\x95\xe4\x87\xeb\xef\xeb{\u058c\x1d\x99\x96\t\x10\x9aOټdz\x85/8\x13\xc3l\xf8\xb2\x90\xa0\xb7\xa7\xc6ں\nh<\x13J\xae\xcfon\xfd\xd7\x1aR\x9cP\xe5d\x97\xa4P\x00O\x81'\xabm%2\\U\xae\xb9\x14e1\xaaαtYdP}\x11g\xd0.{\xbf+\xdb\xd5\xdbI\xd1ީ\x84+TJ\xc8`I\xb9\x9e\x10\xf2\xa7\t\xf9\xb1\x12N\xa0\x8ae+,\x8a2\a\xc2t-\\\xddz\xd5\xf0\x0f\x95+\xfa9\xb5.D%\x87Y\x806\xd4cQ\x1a\xae\xf0\x9c\u007f\x87\xb8\xec\xd6n\x8e\xceff\a\xe0e\x0eR\x94\xcaV:\xa6F\x99\xbe\x12\xfc\xf8X\xa3\xdc\x11\x0e\xf7\xa8w\xedǍ\x1dU\xf2\x14d\xe5\x8fu\x92>\xbb\xba\xb0\x1d\xd0\vX\x91TT\x90w)2\xb3\xcc\xf0\x8a\r\xc3P\x8f\x1ds\x1d\x1e9\xb7\xab\xbb\xbf8\xdc\fE\x13]][l\xc3Zr\xf6c\x14\x99o\x16\xffx&\x12\xfc\x8b\xe0f\xbf\xebև\x15\x1en\x82\x1a\x1f\x1e\xa81uF\xe4\x06\xe4\x92%p]\xc3\xe5̢\xab/Ė0g\x18\xde\xdd\n\xa0\xdfy\xeb\xf5)-\xd8\xe94\x13\xd3S#$T\xc1\xf8\xf9\xe4\xf9\xff{Z\xd1o\x92?]>?E\xb59\x99\x8bϿ\xff\xd3\xd7_w~\xae37\xfe\xb1#\x1dZ0\xb7\xa3\xedw\xc0uu\xb1\xbe\x14\x1c\xff\xb6\x1eA<\x1a`\x9d\xf9\x1ds\xaf\x1e\x1c_̜\x85R阂\x81\xb3\xed\xb8\xf7-X%];\x8eü\xd9o\xdf\x19Y\ttg\x18\xbe\x8c\x91\xcbРn\xe3\xfe\xffo\xde^\x9e~\xbb\xfd\xb8\xc7FX]\xc5?\xb4\xe3s\xdc\x04|\xb9\x89\x14\x94q\xfc\x8dK\x0e\x93\x9cr6\x03\xa5'u\x11\x86\x9f\xbe\xfay\xfb\t@K<]N\xb9\x1bo%\xc4\xe8K\x88Vq\x97GP\xb3h\xaf\xba\xc1\xdf\xe3\xa0\xf1\x06O\xe1\x06]\x02\xee\xe5/ȑY퍮\xfe\x8fٌ\xffw;4\xf9\xc4^%\x8f{\xf6\x91\xed`u\xfdO3\x14\xb4\x9e\x1a)\xd9|\x0e\xbb\x00l\xe8\xb0-\x81\xebg\xc6&`3\u009by\x1d܅\x83\uaacb\xd7;\xfe\xd3W?\xef\xe8u\x9bo\xc6Z\x82\a\xf2\x95\r\x9d2\x85\xb6\xbd\xdb\xd0Ԋk\xfa\x80U\u007f\x8cᱝ\xc3\xde\xf2Y\xd0%\x10%rk\x99\x8c-\xdc+\xc5L\x121\xab\xa6\xd0\xf9\x10T\xeeLS\xaeD}⪺b\xef\x8cx\u0379ߦmu\x14\xbb\x835RH\xb6\xd2T\xa5\x15&-\xaa\x9d\xc9\ue3b3R\x97\x12\xb6\xd6\xdext\x85߱\xedw_\xb6\x177Z\x19능\xabV\xf9\x9c\xe9\xc9\xdd_\xb0,`\"\xf2\xbc\xe4L\xafNqsa\xd3R\v\xa9NSXBv\xaa\xd8|Le\xb2`\x1a\x123\b\xa3vlj\xe0F~\xb0\x14W\x9e~\x8e\xaaul:\xb9\xb5N\xe0\xa3Cܕ\x1d\xb3Vӱ!\xfb;\x87\xb8\xab\xf8\xa11ϖ\f\xeeO\x1dTul\x84u\xec\x90\x1c\xa7\x18\xc6?\xfd\x1c\xff\xa7\u05c8\xf0,`\xffa\xd9\x13\x8b\xf706<\xa28\x8d\x1e\x9al\xfbr\xfb\r\xf0\xc6{Wko7k3a\xbc\xd1i\xe2\xadˌ\x19\xe74\xb5*\x9c\xf2Փ\x8b\xb7a,F\x96\x92\xd5ؙ_c\xca\xd3q\xe5\xe6$\xabhN\x96lυm\\\xbc\xf7\"\xf4%\x8b^\xc5;\x0f\x1c\xa3\xd1b롬w \xd9l\x15\x15\xd0j\xbe\xbaGX\xabc\x88.\x90\x85\xe7\x19>\xbe\xbe4T\x99\xf5!\xf6\buuPE\n\xab*\xf8\xe5)?\x1bB^C\xc8k\by\r!\xaf!\xe45\x84\xbc\x86\x90\xd7\x10\xf2\x1aB^\xae\r!\xaf!\xe45\x84\xbc\x86\x90\xd7\x10\xf2\x1aB^C\xc8k\by\xfd\xd6B^\x0eH\xf6(\xc6\xdb>V\xc7s\x9a\x81\x1c:\x15\xa5nB\r\x8fU\x8dB\xec6\xfb\x90ڄ\\\n\r>͌\xb5\x89b\x01-\xa5\xc70\x9b\t\xb3ۘmj<6biѯ\x1dtg\x94e\xb8\x8b[O\xc3\xf8\xa3UzO\x05'6f2_\x11\x89PÑy&\xa7+\x9b@M\x93\xa4\x94TéҴ\v%\xdc+\x9d\x12\x03h.ܷE,ۙ\xbc\xcd\xe7=\uec3er\x1a\xc9Y\xd6\xe1\xcem}\xbel[\xa2\x0f\xde\xc9Re\x10(Af\xb4\xdb\xe1x\xecJ$\xach\u007f\xb1=\xbd\xa9].\xa1z\xd8\x0f\xc0\x16\xc4\xdf\x18\x86h&8lO\x065\xa6\x83\xbbU\x8dV\x0e\xaa^HQ\xce\x17^\x04\xb7\xc1_\xb7)\x82\x12#TEV\u038dX\xbb4M]J\xde\xc8=q\x89\x9bi\xdd\xdd]Dw\xb3p\xc7:V-\xbc\xf2c\xf0\xfd\xd6\xc3\xfdp\xd9\xd5e%\x1f/\x9e\xba\x0eR\xed\x15\x8f\u007f\xb7\xf6xG\f\xbe\x11\xf6\xb2\x91\xf4\x0e\xe6DGş&\x9d\xfd\x9eJ\xce\xf8\xfc\xb1\xc1\xff\xe8\x1e\xeb\x00\x96;\n\x1d\xd0\xf2\x8eAT`\xf3 h\xb9\xef\xe4\x96JM\x15ܼ\a\xb8\xbcs\rm\xfc\x88\x82\x9c6\x98\xec\xbe\xe4~\xa9\x932\xec%E\xaē\xe5-:\x05\xbe\x9c[\x91\x95\x92f\ue7c9\xe0V-\xa8\x17䧟?\xf3\x03r\xf6\x96\xfd\xf1\xff\x06\x00\x00\xff\xff\xabO\x8bn=\xf2\x01\x00"), []byte("\x1f\x8b\b\x00\x00\x00\x00\x00\x00\xff\xec<\xcdn\xe4\xb8\xd1w?E\xc1\xdfa\xbe\x00\xee\xf6\x0e\xf6\x12\xf86\xeb\xf1\"\xc6Nf\acǗ \a\xb6Tm1\x96H\x85\xa4\xda\xee\x04y\xf7\xa0\x8a\xa2\xfeZjQ=\x1ed\xb30/vKd\xb1\xfeXU,\x96x\xb6Z\xad\xceD)\x1f\xd0X\xa9\xd5\x15\x88R\xe2\x8bCE\xbf\xec\xfa\xe9\x8fv-\xf5\xe5\xee\xfdٓT\xe9\x15\\W\xd6\xe9\xe2+Z]\x99\x04?\xe2V*\xe9\xa4Vg\x05:\x91\n'\xae\xce\x00\x84R\xda\tzl\xe9'@\xa2\x953:\xcfѬ\x1eQ\xad\x9f\xaa\rn*\x99\xa7h\x18x\x98z\xf7\xc3\xfa\xc7\xf5\x0fg\x00\x89A\x1e~/\v\xb4N\x14\xe5\x15\xa8*\xcf\xcf\x00\x94(\xf0\nl\x92aZ\xe5h\xd7;\xcc\xd1\xe8\xb5\xd4g\xb6Ąf{4\xba*\xaf\xa0}\xe1\a\u0558x*\xee\xea\xf1\xfc(\x97\xd6\xfd\xd2{\xfcIZǯʼ2\"\xef\xcc\xc7O\xadT\x8fU.L\xfb\xfc\f\xc0&\xba\xc4+\xf8LS\x95\"\xc1\xf4\f\xa0&\x8c\xa7^ը\xef\xde{\x18I\x86\x85\xf08\x01\xe8\x12Շ/\xb7\x0f?\xde\xf5\x1e\x03\xa4h\x13#K\xc7\xec\t聴 \xe0\x81\t\x04S\x8b\x02\\&\x1c\x18,\rZT\x8ez\x94\x06W\x01ô\x01\t\xa0\r\x94h\xa4Ne\x02?\x89\xe4\xa9*\xfd`\x9b\xe9*Oa\x83`*\xb5n\x06\x94F\x97h\x9c\f,\xf4\xad\xa32\x9d\xa7\x03\x8c\xdf\x11Q\xbe\x17\xa4\xa4+h\xc1e\x18\x18\x83i\xcd\a\xd0[p\x99\xb4-\xfe,\xfe\x1e`\xa0NB\x81\xde\xfc\x1d\x13\xb7\x86;4\x04&`\x9dh\xb5CC\x1cH\xf4\xa3\x92\xffl`[p\x9a'ͅ\xc3Z\xaem\x93ʡQ\"\x87\x9d\xc8+\xbc\x00\xa1R(\xc4\x1e\f\xd2,P\xa9\x0e<\xeeb\xd7\xf0gm\x10\xa4\xda\xea+Ȝ+\xed\xd5\xe5\xe5\xa3ta\xa9$\xba(*%\xdd\xfe\x92\xb5^n*\xa7\x8d\xbdLq\x87\xf9\xa5\x95\x8f+a\x92L:L\\e\xf0R\x94rŨ+^.\xeb\"\xfd\xbf Q\xfb\xae\x87\xabۓ~Yg\xa4z\xec\xbc`\x85>\"\x01\xd2l\xaf0~\xa8\xa7\xa2e4=\"\xee|\xbd\xb9\xbb\xef*\x93\xb4C\xee3\xdf;\x1a֊\x80\x18&\xd5\x16\x8d\x17\xe2\xd6\xe8\x82a\xa2JK-\x95\xe3\x1fI.Q\r\xd9o\xabM!\x1d\xc9\xfd\x1f\x15ZG\xb2Z\xc35\xdb\x0f\xd2êL\x85\xc3t\r\xb7\n\xaeE\x81\xf9\xb5\xb0\xf8\xdd\x05@\x9c\xb6+bl\x9c\b\xba\xa6o\xd8\xd9s\xad\xf3\"\x98\xa9\ty\x855~Wb\xd2[24Nne\xc2\v\x03\xb6ڴ&\xc0v\xadYh\xe3\xab\x16j\xd3C݇ϏZ\x9bk\xa3\x15\xe0\vɾ]ͤ;\xcf\x19*Za\xa6R\x84\xe7\x01L\xa8M\xcc\xfa\xe0\xcd\x047\xf9\x15\x16%-\xd7\x19\x14\xef\xebn\x84\"\xf1(mܑ7(ؘ7][580*<]\x86į\x9dLk\xabq\xc0\xcd\xe3\x1c\xf5\x88mE\x95\xbb\a\x9dW\x05\xda{\xfd\x15\xad\x93\xc9X\xcf\x01\x11\x1fG\a\x06y\xa3%\x0e\xbb\f\r-N~\xc1\xf6n\x14.\U0001ac58\xb2\xc9\x13O\b\x026\x9e\x03d;\xf3\x1cJ\x9d\xc2\xce\xcf\x04\x9b}@\xfaP6\xad|6Z\xe7(Ƹ\x86/I^\xa5\x986.o\x94/\x03jo\x0e\x06qp \xa4\"-#WL\xa8\xaa\xe6\xed\x04\x9d쯄A C!\x95\x87\t\x92U\xb0&y\x9c(鰘\xc0\xf3\xa8F\xfaFA\x88\xd8\xe4x\x05\xceTc\xba\x1e`\bc\xc4\xfe\b\xcfB\x00\xb5\x84e͘ڜ\xe72AbVc\xb4\x99k̚\t\xfa\xfe\a\x19\x96i\xfd\x14ä?Q\xbf\xd69A\xc2q*l0\x13;\xa9\x8d\x1dF8\xf8\x82I\xe5pj\x1d\t\a\xa9\xdcn\xd1\x10\xac2\x13\x16m0)ǘu\xdcDP3\xc7\x05\u007f@W+t\x12\x1esc\x8a\x146œP\x81\x11'\x8b]\x95 U*w2\xadD\x0eRY'T\xe2\xe9\x13\r~\xe3\xf4\xc1\x9cB\x1c\xe0\xef\rp\xa0\x82\xa4\xd4\xf3lZ!\x85\xa3\x856\xe3\xca\x11\xda!\x98i6l\x04Y@=\xe5\x8e\xdaf(\xa2\xafQI٥\xb6v碕\x94\x0f\ns\xb1\xc1\x1c,\xe6\x988m\xa6\xd9\x13\xa3\x04\xbe\xc5\xda\xcf\tΎX\xd2\xd6g\x90\xa2\xce\x1aѶ9\rϙL2\x1f\xbf\x91\x961,H5Z\xb6\x18\xa2,\xf3\xfd1\xa2!F3\xea\xc9\xe6\x8cF\xdb\"\xcc\xc7\x10\xee\x94!i[\xa4\rnی5\xees\xbdQ\x9b7\xa6\xf7\xd0Tߤ\xec\xb7\a\xc3__ىݒ\xf6w\xb7[\xc0\xa2t\xfb\v\x90.<\x8d\x81J\x01V\x8b\xc7\xefLp\xa7\xad\x96\xdb\xe1\xe8W_-\xaf\"\xb5\x06\x8d߉\xd0\xd8Y\xddվj\x91\xc0>uG^\x80\xdc6\x02K/`+s\x87\x1cK\xcd!\xda\ttf%\xf7\x9a\f\x8a\xf5\xbd\xd4\n\xe1\x92\xec\xa6\xd9\xd2F\x8c\x18\xf0j\b\xc0\xc7\xe5a\x0f\xc32\x88\x00\tMP\xc1Y\x10i\xb0\xf0ٕ{^\x1f\xed\x13\x8e\x00?|\xfe\x88\xe9\x1c\xcb ^S\x0f\x88\xfa0\x88t\xba(0\x81Q ;Dq\x98\xd6\xec\xf1|\x0e\xed\x02\x04<\xe1\xdeGV\xa3\x9b˱F\xa2\x15\rH\x83\x9c\xd0c3\xf2\x84{\x06Ug\xe8\xa2\xe0-Q\x15ߞp\x1f\xdbu\xc0T¯\xceQx\xee\xd2\x03\xa6\"f)\xb5\xadaj\xbdv\xc0\xe98ba\x99Q\n-p\xfcD\xb2\x1b\x81\xf5\xd2\xd2O\xb8\u007fg\xbd\xf8h\xd5d\xb2\\\xc0\x012\xd8`\x91WX\xc8\xc7>\x88\\\xa6\xcdd\xbcN\x16@\xbcU\x17\xf0Y;\xfas\xf3\"-\xa1\xa8R\xf8\xa8\xd1~֎\x9f|W\x16{\"Nd\xb0\x1f\xcc\xcbRy\xb7@|Y4\u007f\x8b\x03\xbbPR\xd1Fl\xd2\u00ad\xa2\xfd\x99\xe7\xcf\x121e\x18\x90\xf3h\x15\x95匮\xd2j\xc5n:̶\x00h\x17\xafZT\xda\xf4$u\xb1\x10\xe2(\x8a5z\xf7\xe4\xad\xfc\x9b\x83\\\xf8\xb1f\xb0\xccE\x82)\xa4\x15\xe7\xdb9\xf1.\x1c>\xca\x04\n4\x8f\b%\xf9\x8dx\xa5Z`\xc9};A\v\xe3C\x8b\xd0j\xb7\x90\xc6!\xb6\xa2U\x1f\xd93\x889\xaa\xfbD\x96\xfdx\xf78*ٽs<\x14\xc5}\x91\xa6\x9cz\x16\xf9\x97\x85\x9ee\xa1\xbc\x0ec\x10\x8f\xa4\x0f?\n\xc1\xc9\xde\u007f\x91{e\xf5\xfew\x9c7\x14\xd2\xd85|\xe0\xc3\xcd\x1c\xbb\xe3C\x96\xb03U\x14H\xc2DZ =ى\x9c\xc2\a2\xde\n0\xf7\xc1\x84\xde\x1eDPq&\xe69\xd3\xd6\xfb\xfc\xadĜO\xb7Οp\u007f~q`\xbd\xceo\xd5y\x1cL\xb2\xf9\aF\xab\x89Z\xb4\xca\xf7p\xce\xef\xce90[\xb2DN\b\xde\x16hutW>~^\xb2\x15\xa0\xbdv\x88ZhpsHK!\xfc\x1c\x15\xd1:]j\xeb\x16\xa1\xf5E[\xe7\x13\x80\xbdp{$C\x18\xb3\xfb\xab\xb3\x86 \xb6\x0e\rX\xa7M8\x10%\xb3;H\x90\x93\xe4\xed\xbc\xecI\xd4M6\xd2\x03\xa6M\xe6yk!\xbcM?\xf7'\xa5\xf4\xff<̄\x83%\x86]\x1a\x9d\xa0\xb5\xf3\xaa\x14\xe99f\x12\xb6M\xb2V\xf8\xcd\xdb6\xca4Ǥ\x92C[\x16\x8a\x13kO\xd8\xd8ܼt\xf2\xced\x86\xe8w\x8c*\x9f\x82#p\xd1KQ\x88\xe1\xe1|4\xba\xd7~tX\x8050\xbfa2\x8f\x15\x1b\x95eqs\xad\x92\xbf\xb5\xc0\xa3\x90\xea\x96'\x82\xf7\xdf-X\x81`\xca\xf1ԭ\xccu\x18\xdf\n\xa4y\x10\xbb\u007f\x85pԬ\xf9\xac\xc6`O\xb2\x87'\x19\xf1\x92\x02\n\xa6\x95v\xdddM=\xd3;\v[i\xack\x11^\x00UZ>N\xfe\xbe{Luc\xcc\xc9[\xcc_\xfd\xe8NZ1\xd3\xcfuaĒ\x8du`~&v\br\v\xd2\x01\xaaDW\x8a\x13^d.h\x9a\x05\x10\xbd\x10\xbd3\x89\xf4\x99\x9d\xc1\xaa*\xe2\x19\xb2b\xed\x94j6;\xd6\x1d\xf2\xb3\x90q\xd9)8M\xacN\x16\xa8\xabY\xd7\u07b6~e\x87\x1fݫ\x80)ċ,\xaa\x02DAbY\xb2o\xdc26M\xb9\x8c\x97\xf5\xb3\x90\x8e\x0f\xfd\b6\x89g\x995MtQ\xe6\xe8\x106\xb8Ն큕)6\xe1C-\xff\xd1z\x93\xa9&`+d^\x99\x056z\xb1d\x96\xee\xdbj\xf3\xf4\xfa\x9b\xb1xDV\xcc\xccȤ\xfb\x82\xa0y\xde\u007f\x94fY\xc8\xfc\xc5\xe0뇦\xa5\x91\xa4\xa5z.:\x9d\x85\xc9\xd1k?:\xad\x95W\xa8\xfdTx:\v\x951y\vO\x9b\xf6\x16\x9e\xbe\x85\xa7o\xe1頽\x85\xa7o\xe1\xe9[x:\xde\xde\xc2\xd3N{\vO\xa3\xfdG\f\x86\xfe\xab\xa3#\x1d\xa2\xb0\x8a,\xc1\x98C{f\xae\xba\xd2\xe8:\xaf\xacC\xb3\xa4B\xfav|\xe4H\r}⻬\xf8k\xad)\xadiKWZ\xa7הLӒ\f\x8b\xc9\u007f\x8b\x11\x11\x85G\x97AOW\xdb\xc7\x16\xd0͕\xcd\xf5kǛr5\xff\xdf\x04C\x9c\x0e\xd3\xd7\xd2\xf3\xdf\xf8tk\xae\xfa\xb5o\xbc\x0f\b\x18\xff&\xeb\xca#\xcb\xdaf\x8aَ\x17\xe2Oy\xf8\xc0\xcb\xc1\xe1B\x9f\x99\xa6W\xf8\xfd\x9b\xe6eD\xb5\xd9t\x8dY}j\x89N\xecޯ\xfbo\x9c\xae+\xce&({\x96.\xf3\xdf\x1f\xd1\xd6U=v\xcbڃ\x9e\xd6\xdf\xfe\ry<\x01Q\x1bP2\xf7\x02\b\x10z\xec\x87_K\xbfE>y\x9d\xcfo\xd4\xe2\xebҖV\xa35\xf5C\xf3^\xe5\x1bjЖ} 0[o\x16\x834\xc4T\x99\x8d\u05cf\xcd@]R[\x16\xbb\a\x8f\xa8#\x8b\xaf\x1e\x8bc\x0f\xf0\x17\xbb\xb15c\xd1Q[l}\xd8\xf7\xa9\n\x8b\xac\x05\xebTx͂<\xb1\x02,\x9aaq\xd5^\xd15^\x9dʭyn\x1d\xa9\xec\x1a\xafך\x059V\xcf\x15S\xa5\x15\x85ktmVSq5\x9fI\xfc\xa6\x8a\xacׯ\xfd~\xcd8\xffx}UTUU\xd4^`\x1e稺\xa9\xa5\xd5RQ\\]Z\x19\xd5T=\x1d\x998\xaa\x1e\xea\xb0\xd6\xe9\x18)\xb3UP\xd3\x15N\xc7\xc0\x8e\xd5>E\xd45\x1d\x01٭xZ\x1c\x06\xccj\xd3L\x87\xf1\xaf\xeaC\x9b\xf7\xb5\xf9\u007fC\x03\xbf\x95hmR4\xb3\xbb\x92%\xa8Ϣ\xdd\xcfW\x0e\xe6\x1f|\xae\x13>&\xa7^\xdd\x1d\xcfT\x14\xa5\x9b\xcfG\x12\xf8E\xaa\xd4k\x12-\x96NL\xc37Tp\x81Y\x13fMWܶ\x11\xed`\xb7e\xb1\x14d\xd4S\xd8\xec}VȮ\xe1F$Y\xd3q\x02\"Ϝ\tK;\xfbB88o\xb6\xb1\x97a$=9_\x03\xfc\xac\x9b\fB\xe7\xf3\xd0\t\xb8V\x16e\xbe\x87\xca\"\x9c\xf7\x01}\xdb.lRw\xac\x12\xa5\xcdt\xb8I b#v\xd7\x1f1\x92/\t\xf7\b$\xb9\xae\xd2f\x86#\xe2\x16j\x0f_\x1e8\x92㯧\x93\xf6+\xf3:R\v\xfb\xaa\xc1G\xe8\x13 \xa7.\x8fXIJ鬊uڈG\xfc\xa4\xfd\xbd\x1a1<\xeb\x8f\xe8]\xadR\xdbՐc\xad\x8b&'5\xd9\xd36\x04\xd8\x1e\xbdԫ\xadMB\x11\xb6S&wf\x9d;\x97G\x10w\u007f\xff\xc9\x13\xe4d\x81돕\xcfp\xadJa,\x12\xa7\x03\xa1~\xd0f\xda\x12f\xfa\x19r]\xf3\xe1\xa7!\x1d\x06\xf9\xa8\x87\x93i'Q㯰\b\xea\x1bX\x17\xa3\xf2\x0f\xe3#;\x9b\xe5\x8e\x10\x8f\xe5\xc4\xf4v\x12\x96\xb0V'\x92m\x11\xa7(\xf8\x84\xe5\xfbݱp,\";b2*\x8b\xbf>+4_\xc3B\xb5\xb7\xcaKj\xe6֕\xbf\x1c\f\f\x02\x1e3\x1fd\xff\x06\xdd\xc7\xfc\x9e\xaa\x19d\xfd\xdd_ތ3\xe3\xc2=4\x87\xac\x9bY\xff\xd3k\u007f<\xa2^\x8d_\xfd\xb2jn\xa39\x8b\xe0\xacu\xc2U6\xe6\x82\x1f\xee\b\x89(]ej\xf7\x9aT\x86/\x9c \xe8\xefc8튟\\X\x17%\xcbOM\xc76\xc3`\x9d?\x8f\n\x06\n\x9e\x85\xe5\xbbs\xfciԨkn.\v\x9a\xbc=\xc7{\xd7+H\x85\xc3\x15\xc1?M\x9c\xa3\xeb\x80/蘡\xf4\v\xf5iN\xc7kF\xf3\xc0p\xb1\xc7\xdd\x14\xea\xe3ǝ+\xf8\x8c\xcf#Oo\x14\x11q\xb8\x19\xf5g\x9a\x98r\x86b\xecz\xb3\xa3$\xee\x9aQ|\xa0\xfc\xe8\xde\xfew~\xce?\xc2\xe5~\xfc3\xd1\xca\xc7\xd4\xf6\n\xfe\xfa\xb73\xa8}\xedC\xb8\xc1\x8f\x1e\xfe'\x00\x00\xff\xffa\r\b,+Q\x00\x00"), []byte("\x1f\x8b\b\x00\x00\x00\x00\x00\x00\xff\xb4V͎\xe44\x10\xbe\xe7)J\xcba/$\xbd\xab\xbd\xa0\xdc\xd0\xc0a\x05\x8cFӫ\xb9 \x0en\xa7\xd2mƱCU\xb9\x87\x06\xf1\xee\xc8vҝN\xd2̀\x84o\xb1\xeb端~REY\x96\x85\xea\xcd\x13\x12\x1b\xefjP\xbd\xc1\xdf\x05]\xfc\xe2\xea\xf9\x1b\xae\x8c\xdf\x1c?\x16\xcf\xc655\xdc\x05\x16\xdf=\"\xfb@\x1a\xbf\xc3\xd68#ƻ\xa2CQ\x8d\x12U\x17\x00\xca9/*^s\xfc\x04\xd0\xde\tyk\x91\xca=\xba\xea9\xecp\x17\x8cm\x90\x92\xf1\xd1\xf5\xf1C\xf5\xa9\xfaP\x00h¤\xfe\xc5tȢ\xba\xbe\x06\x17\xac-\x00\x9c\xea\xb0\x06F\x8aJ\xa2$0\xe1o\x01Y\xb8:\xa2E\xf2\x95\xf1\x05\xf7\xa8\xa3\xe3=\xf9\xd0\xd7py\xc8\xfa\x03\xa8\x1c\xd06\x99\xda&S\x8f\xd9Tz\xb5\x86\xe5\x87[\x12?\x9aA\xaa\xb7\x81\x94]\a\x94\x04\xf8\xe0I\xee/NK`\xa6\xfcb\xdc>XE\xab\xca\x05\x00k\xdfc\rI\xb7W\x1a\x9b\x02``*\xd9*\a.\x8e\x1f\xb39}\xc0Ne'\x00\xbeG\xf7\xed\xc3\xe7\xa7O۫k\x80\x06Y\x93\xe9%\xf1\xbd\x12\x19\x18\x06\x05\x03\n\x10\x0fJkd\x06\x1d\x88\xd0\td\x94`\\\xeb\xa9K9:\x9b\x06P;\x1f\x04\xe4\x80\xf0\x94(\x1f\"\xab\xce\"=\xf9\x1eI\xcc\xc8Ơv\xa9\xbe\xc9\xed\f\xeb\xfb\x18N\x96\x82&\x96\x1dr\xf24P\x82\xcd\xc0\x00\xf8\x16\xe4`\x18\b{BF's\x94\x89\x9f\x16\x94\x03\xbf\xfb\x15\xb5T\x03\x0f\x1c\x93\x15l\x13\xab\xf5\x88$@\xa8\xfdޙ?ζ9\x12\x12\x9dZ%c\x9d\\\x8eq\x82䔅\xa3\xb2\x01\xbf\x06\xe5\x1a\xe8\xd4\t\b\xa3\x17\bnb/\x89p\x05?y\xc2Df\r\a\x91\x9e\xeb\xcdfod\xec:\xed\xbb.8#\xa7Mj \xb3\v\xe2\x897\r\x1e\xd1n\xd8\xecKE\xfa`\x04\xb5\x04\u008d\xeaM\x99\xa0\xbb\xd4yU\xd7|EC\x9f\xf2\xfb+\xacr\x8a\x95\xc5B\xc6\xed'\x0f\xa9!\xfe!\x03\xb1\x1dr}d\xd5\x1cŅ\xe8x\x15\xd9y\xfc~\xfb\x05F\xd7)\x19s\xf6\x13\xef\x17E\xbe\xa4 \x12f\\\x8b\x94\x93ؒ\xef\x92MtM\xef\x8d\xcbե\xadA7\xa7\x9fî3\xc2c\xed\xc6\\Up\x97F\x11\xec\x10B\xdf(\xc1\xa6\x82\xcf\x0e\xeeT\x87\xf6N1\xfe\xef\t\x88Ls\x19\x89}[\n\xa6St.\x9cY\x9b<\x8cc\xeeF\xbeV\xba{ۣ\x8e\x19\x8c$Fm\xd3\x1a\x9d\xda\x03ZO\xa0\xd6T\xaa7!I\x1a\xff\x12\xcb0I2\x9a\xd9|\x89\xfd\xf9:\x9a\xf5q\x92^\x0e\x8aq~9\xc3\xf4\x10e\xe6\xfe\xadiQ\x9f\xb4\xc5l\"O\x13|\x1dJ<\xe8B\xb7\xf4Y\xc2=\xbe\xac\xdc>\x90\x8f\x935\xcd\xf5\xebs\xa36 \xffo\xf6\xc6-\u009dG\x96\xa5\xd2?l:\xaa'\x03z0\x04\x14\x9c\x8b}\xbb\x98\x90\t\xc8|\x92/d\x8c`\xb7\x82f\x15\xcfg\xd7\xfa\xb4\t\xa8\xe8XI\xee'\x1c\x92=\xf8ɸV\f\xde\xceu>\xcb\xe1\xf5&B\xf3I\u007f\xd2\xff\xa6\x1cǍ!\\\xf5]&T\xab\x0f\xd1\xe3\x1a\xe3\xeb\xfd5\xa0\f֪\x9d\xc5\x1a\x84\xc2R;\xeb*\"u\x9aW\xcdXj\x97}\xea\x95\x02Z(\xc4>y9\xa0\xbb\xd5\r\xf0\xa2\xe6S\xfe\xca3\xecN\xb7T\xef\xce\xcbᲥr\xe9\xd6\x10gw)f\x85\xb37\x91\xb2\x9a\xbd\\ҫ\x9bǂ\x90\xedTv\x9c\x19W\xad1.\"\xcb\x18nBXM\xf6\xe22\x99o&\xe1\xb1xR\xfbi\xc0\x1cv\xe7?\xfd\x18\xc80\x92\xe1Ͽ\x8a\xcbt\x8e\xcb\\/\xd8\xdcϷ\xe0w\xef\xae\xd6\xd9\xf4\xa9\xbdkL^\xe2\xe1\xe7_\x8a\xec\x18\x9b\xa7q\a\x8d\x97\u007f\a\x00\x00\xff\xff!\xec@\xb2>\f\x00\x00"), []byte("\x1f\x8b\b\x00\x00\x00\x00\x00\x00\xff\xb4VM\x8f\xdb6\x10\xbd\xebW\f\xd2C.\x95\x9c \x97B\xb7\xc0\xed!h\x1a,\xe2ԗ\xa2\a\x9a\x1c\xd9ӥH\x963t\xbb\xfd\xf5\x05)j\xfd\xb1\xf26\v4\xbaq8|\xf3\xe6͇ݴmۨ@[\x8cL\xde\xf5\xa0\x02\xe1߂.\x9f\xb8\xbb\xff\x81;\xf2\xab\xe3\xdb果\xe9a\x9dX\xfc\xf8\x19٧\xa8\xf1G\x1cȑ\x90w͈\xa2\x8c\x12\xd57\x00\xca9/*\x9b9\x1f\x01\xb4w\x12\xbd\xb5\x18\xdb=\xba\xee>\xedp\x97\xc8\x1a\x8c\x05|\x0e}|ӽ\xeb\xde4\x00:by\xfe\x85FdQc\xe8\xc1%k\x1b\x00\xa7F\xec\xe1\xe8m\x1a\x91\x9d\n|\xf0b\xbd\x9e\x82uG\xb4\x18}G\xbe\xe1\x80:\xc7\xdeG\x9fB\x0f\xa7\x8b\t\xa2\xf2\x9ar\xda\x16\xb4ME\xfbXъ\x83%\x96\x9f\x9fq\xfaH,\xc51\xd8\x14\x95\xbdɬ\xf80\xb9}\xb2*\xde\xf2j\x00X\xfb\x80=|\xca\x14\x83\xd2h\x1a\x80*O\xa1\xdc\xce\x02\xbc\x9d\x10\xf5\x01G5\xe5\x02\xe0\x03\xba\xf7w\x1f\xb6\xef6\x17f\x00\x83\xac#\x05)\"/'\x02Ġ`f\x02\u007f\x1d0\"l\x8bj\xc0\xe2#r%\xfd\b\n0\xf3\xe7\xee\xd1\x18\xa2\x0f\x18\x85f\x81\xa7\ufb3dάW\xbc^g\xea\x93\x17\x98\xdcW\xc8 \a\x9c\xd3GS\xb3\x05?\x80\x1c\x88!b\x88\xc8\xe8\xe4T\xae\xd3\xe7\aP\x0e\xfc\xee\x0f\xd4\xd2\xc1\x06c\x86\x01>\xf8dMn\xc7#F\x81\x88\xda\xef\x1d\xfd\xf3\x88\xcd \xbe\x04\xb5J\xb0V\xf6\xf4\x91\x13\x8cNY8*\x9b\xf0{P\xce\xc0\xa8\x1e b\x8e\x02ɝ\xe1\x15\x17\xee\xe0\x17\x1f\x11\xc8\r\xbe\x87\x83H\xe0~\xb5ړ\xccc\xa5\xfd8&G\xf2\xb0*\x13B\xbb$>\xf2\xca\xe0\x11\xed\x8aiߪ\xa8\x0f$\xa8%E\\\xa9@m\xa1\xee\xa6n\x1f\xcdw\xb1\x0e\"\xbf\xbe\xe0*\x0f\xb9\x8bX\"\xb9\xfd\xd9Ei\xf7g*\x90;}j\x84\xe9\xe9\x94\xc5I\xe8l\xca\xea|\xfei\xf3\x05\xe6Х\x18\xd7\xea\x17\xddO\x0f\xf9T\x82,\x18\xb9\x01\xe3T\xc4!\xfa\xb1`\xa23\xc1\x93\x93rЖ\xd0]\xcb\xcfi7\x92\xe4\xba\xff\x99\x90%ת\x83u\xd95\xb0CH\xc1(A\xd3\xc1\a\ak5\xa2]+\xc6o^\x80\xac4\xb7Yد+\xc1\xf9\x9a\xbcv\x9eT;\x1f\xb0\xba\xc4n\xd4ky\x927\x01\xf5\xc5\x00e\x14\x1a\xa8N\xf6\xe0㕮j\x9e\xf3e\xbc\xee\xc2}y\xc0a\xda\xf1\x03\xed\xaf\xad\x00ʘ\xf2\v\xa1\xec\xddͷ\xcf\b\xb6\x90\xf7\xbaDʍ:\xf8\x98\x19\x1d\xc9`l\xe7<+\x93\x14k\u0084\xd6p\xf7\x04\xf2\x86\xe65\xc9\x02\xf9\x94\xe6\x05\x8f\xbbꖙd\xa1\xe7gӆº0\xcb\xfaT{\xbc\xc5`!\xe3\xdc\xe1\x14\xf1jV\xdb\xc7\x00_\xd5;\xa2$\xf1˻\xa7<\xab\x9e\xbb\xdaA:ňN*\xe6¦\xfd\u007f:(\x1c\x14\xe3\u007fh\xbe\x1c\xe1.\xbf\x9c\xcb`i@\xfd\xa0-N\x80\xe0\x87\x85n{\x11\xe5\xfc\xa1K\xe3Sn-\xbc?*\xb2jgq\xe1\xeeW\xa7n\xde\xde,\xfeb=\x9f\x189\xafSӃ\xc44a\xd7.\xab\x96S\xf5\x95\xd6\x18\x04ͧ\xeb\u007f=\xaf^]\xfcq)G\xed\xdd4\xac\xdc\xc3o\xbf7\x13*\x9a\xed\xfc\x0f$\x1b\xff\r\x00\x00\xff\xff2\x1e\xaa\xc01\n\x00\x00"), diff --git a/config/crd/v1beta1/bases/velero.io_podvolumerestores.yaml b/config/crd/v1beta1/bases/velero.io_podvolumerestores.yaml index 43a738e5f0..f55d266ec6 100644 --- a/config/crd/v1beta1/bases/velero.io_podvolumerestores.yaml +++ b/config/crd/v1beta1/bases/velero.io_podvolumerestores.yaml @@ -101,6 +101,11 @@ spec: format: date-time nullable: true type: string + errors: + description: Errors is a count of all error messages that were generated + during execution of the pod volume restore. The actual errors are + in the restic log + type: integer message: description: Message is a message about the pod volume restore's status. type: string @@ -124,12 +129,22 @@ spec: format: int64 type: integer type: object + resticPod: + description: ResticPod is the name of the restic pod which processed + the restore. Any errors referenced in Errors or VerifyErrors will + be logged in this pod's log. + type: string startTimestamp: description: StartTimestamp records the time a restore was started. The server's time is used for StartTimestamps format: date-time nullable: true type: string + verifyErrors: + description: VerifyErrors is a count of all verification-related error + messages that were generated during execution of the pod volume restore. + The actual errors are in the restic log + type: integer type: object type: object version: v1 diff --git a/config/crd/v1beta1/bases/velero.io_restores.yaml b/config/crd/v1beta1/bases/velero.io_restores.yaml index b900f8b137..c135d27b65 100644 --- a/config/crd/v1beta1/bases/velero.io_restores.yaml +++ b/config/crd/v1beta1/bases/velero.io_restores.yaml @@ -1621,6 +1621,136 @@ spec: - PartiallyFailed - Failed type: string + podVolumeRestoreErrors: + description: PodVolumeRestoreErrors is a slice of all PodVolumeRestores + with errors (errors encountered by restic when restoring a pod) (if + applicable) + items: + description: 'ObjectReference contains enough information to let you + inspect or modify the referred object. --- New uses of this type + are discouraged because of difficulty describing its usage when + embedded in APIs. 1. Ignored fields. It includes many fields which + are not generally honored. For instance, ResourceVersion and FieldPath + are both very rarely valid in actual usage. 2. Invalid usage help. It + is impossible to add specific help for individual usage. In most + embedded usages, there are particular restrictions like, "must + refer only to types A and B" or "UID not honored" or "name must + be restricted". Those cannot be well described when embedded. 3. + Inconsistent validation. Because the usages are different, the + validation rules are different by usage, which makes it hard for + users to predict what will happen. 4. The fields are both imprecise + and overly precise. Kind is not a precise mapping to a URL. This + can produce ambiguity during interpretation and require a REST + mapping. In most cases, the dependency is on the group,resource + tuple and the version of the actual struct is irrelevant. 5. + We cannot easily change it. Because this type is embedded in many + locations, updates to this type will affect numerous schemas. Don''t + make new APIs embed an underspecified API type they do not control. + Instead of using this type, create a locally provided and used type + that is well-focused on your reference. For example, ServiceReferences + for admission registration: https://github.com/kubernetes/api/blob/release-1.17/admissionregistration/v1/types.go#L533 + .' + properties: + apiVersion: + description: API version of the referent. + type: string + fieldPath: + description: 'If referring to a piece of an object instead of + an entire object, this string should contain a valid JSON/Go + field access statement, such as desiredState.manifest.containers[2]. + For example, if the object reference is to a container within + a pod, this would take on a value like: "spec.containers{name}" + (where "name" refers to the name of the container that triggered + the event) or if no container name is specified "spec.containers[2]" + (container with index 2 in this pod). This syntax is chosen + only to have some well-defined way of referencing a part of + an object. TODO: this design is not final and this field is + subject to change in the future.' + type: string + kind: + description: 'Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' + type: string + name: + description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + namespace: + description: 'Namespace of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/' + type: string + resourceVersion: + description: 'Specific resourceVersion to which this reference + is made, if any. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency' + type: string + uid: + description: 'UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids' + type: string + type: object + nullable: true + type: array + podVolumeRestoreVerifyErrors: + description: PodVolumeRestoreVerifyErrors is a slice of all PodVolumeRestore + errors from restore verification (errors encountered by restic when + verifying a pod restore) (if applicable) + items: + description: 'ObjectReference contains enough information to let you + inspect or modify the referred object. --- New uses of this type + are discouraged because of difficulty describing its usage when + embedded in APIs. 1. Ignored fields. It includes many fields which + are not generally honored. For instance, ResourceVersion and FieldPath + are both very rarely valid in actual usage. 2. Invalid usage help. It + is impossible to add specific help for individual usage. In most + embedded usages, there are particular restrictions like, "must + refer only to types A and B" or "UID not honored" or "name must + be restricted". Those cannot be well described when embedded. 3. + Inconsistent validation. Because the usages are different, the + validation rules are different by usage, which makes it hard for + users to predict what will happen. 4. The fields are both imprecise + and overly precise. Kind is not a precise mapping to a URL. This + can produce ambiguity during interpretation and require a REST + mapping. In most cases, the dependency is on the group,resource + tuple and the version of the actual struct is irrelevant. 5. + We cannot easily change it. Because this type is embedded in many + locations, updates to this type will affect numerous schemas. Don''t + make new APIs embed an underspecified API type they do not control. + Instead of using this type, create a locally provided and used type + that is well-focused on your reference. For example, ServiceReferences + for admission registration: https://github.com/kubernetes/api/blob/release-1.17/admissionregistration/v1/types.go#L533 + .' + properties: + apiVersion: + description: API version of the referent. + type: string + fieldPath: + description: 'If referring to a piece of an object instead of + an entire object, this string should contain a valid JSON/Go + field access statement, such as desiredState.manifest.containers[2]. + For example, if the object reference is to a container within + a pod, this would take on a value like: "spec.containers{name}" + (where "name" refers to the name of the container that triggered + the event) or if no container name is specified "spec.containers[2]" + (container with index 2 in this pod). This syntax is chosen + only to have some well-defined way of referencing a part of + an object. TODO: this design is not final and this field is + subject to change in the future.' + type: string + kind: + description: 'Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' + type: string + name: + description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' + type: string + namespace: + description: 'Namespace of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/' + type: string + resourceVersion: + description: 'Specific resourceVersion to which this reference + is made, if any. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency' + type: string + uid: + description: 'UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids' + type: string + type: object + nullable: true + type: array progress: description: Progress contains information about the restore's execution progress. Note that this information is best-effort only -- if Velero diff --git a/config/crd/v1beta1/crds/crds.go b/config/crd/v1beta1/crds/crds.go index d16049295f..05f3891f03 100644 --- a/config/crd/v1beta1/crds/crds.go +++ b/config/crd/v1beta1/crds/crds.go @@ -34,9 +34,9 @@ var rawCRDs = [][]byte{ []byte("\x1f\x8b\b\x00\x00\x00\x00\x00\x00\xff\xb4\x96\xcdn\xe46\f\x80\xef~\nb{\xd8Kdz\xc1^\n\xdf\xda\xec\x16\b\xda\x06A\xb2ͥ\xe8A#q\xc6ldI%\xa9Iӧ/$ۙ\x9f8\xc8\xf6\xb0\xbe\x89\xa2\xf8\xf3\x91\x94լV\xab\xc6$\xbaG\x16\x8a\xa1\x03\x93\b\xffQ\fe%\xed\xc3\x0f\xd2R\\\xef/6\xa8\xe6\xa2y\xa0\xe0:\xb8̢q\xb8E\x89\x99-~\xc2-\x05R\x8a\xa1\x19P\x8d3j\xba\x06\xc0\x84\x10\xd5\x14\xb1\x94%\x80\x8dA9z\x8f\xbc\xdaah\x1f\xf2\x067\x99\xbcC\xae\x1ef\xff\xfb\x0f\xed\xc7\xf6C\x03`\x19\xeb\xf1/4\xa0\xa8\x19R\a!{\xdf\x00\x043`\a\x0e=*n\x8c}ȉ\xf1\uf322\xd2\xee\xd1#ǖb#\tmq\xbc\xe3\x98S\a\x87\x8d\xf1\xfc\x14ԘЧj\xea\xa7j\xeav4Uw=\x89\xfe\xf2\x9aƯ4i%\x9f\xd9\xf8倪\x82P\xd8eoxQ\xa5\x01H\x8c\x82\xbc\xc7\xdf\xc3C\x88\x8f\xe1gB賈\xad\xf1\x82\r\x80ؘ\xb0\x83\xeb\x12u2\x16]\x03\xb07\x9e\\\xc53\xe6\x11\x13\x86\x1fo\xae\xee?\xde\xd9\x1e\a3\n\x01\x1c\x8aeJUo)\a \x01\x03S$\xa0q\n\x10b@\x88\fCd\x841Zi'\x93\x89cBV\x9a\t\x96\xef\xa8\u007f\x9eeg\xceߗ\xe8F\x1dp\xa5cP@{\x84\xa9\xee\xe8@j\xe4\x10\xb7\xa0=\t0V,a\xec\xa1#\xb3PTL\x80\xb8\xf9\v\xad\xb6pWб\x80\xf41{W\xdal\x8f\xac\xc0h\xe3.пϖ\xa5\xe4W\\z\xa3s\x81珂\"\a\xe3\v\u05cc߃\t\x0e\x06\xf3\x04\x8c\xc5\a\xe4pd\xad\xaaH\v\xbf\x158\x14\xb6\xb1\x83^5I\xb7^\xefH牱q\x18r }Z\u05fe\xa7M\xd6Ȳv\xb8G\xbf\x16ڭ\f۞\x14\xadfƵI\xb4\xaa\x81\x87:0\xed\xe0\xbe\xe3i\xbc\xe4\xfdQ\xa4\xfaT:A\x94)\xec\x9eŵ\x87_\xe5^\xfaw,\xf3xl\x8c\xff\x80\xb7\x88\n\x95\xdb\xcfw_`vZKpʼ\xd2>\x1c\x93\x03\xf8\x02\x8a\xc2\x16y,ܖ\xe3P-bp)Rк\xb0\x9e0\x9cB\x97\xbc\x19Hen\xbfR\x9f\x16.\xeb\xbd\x01\x1b\x84\x9c\x9cQt-\\\x05\xb84\x03\xfaK#\xf8ͱ\x17²*H\xdf\x06\u007f|ݝ*\x8e\xb4\x9e\xc5\xf3]\xb4X\xa1\x85\xb1\xbcKhK\xcd\n\xb8r\x96\xb6d\xeb\x18\xc062<\xf6d\xfby,O\x88>\x0fp{$^\x1a\xd8\xf2\x8d\x06ʭr*\u007f%Y\xa8u\"Ɠ^[\x1d\x99y\x93\x82\x1a\xcd\xf2\xbf8\xd4\x133\t\x9b\x991\xe8d\xa7\xde\x02K\x87\xbe&wd\x8e,\xe7y\x9f\x84\xf3\xb9\xaaԿ\x96\xa1 `\xc2\xd3t\f\xb47\n\x8fȥ\xc5m\xcc\xe5\xee@\a.\x9f\xf1\x9aP\xf48\x16\xa5\x94/q\xb4(Ҟi\x91\xe2\xf0\"\x9aW\xebP\xbe\xf2'4\x1b\x8f\x1d(g\\\xac\x9fa6O';\xa97\xf2\xa2\xd8'I\xdf\x14\x8d%\xde8\xde\xcb\xf8\x16\xf0\n7\xe4\xe1\xdc\xcb\n\xae\xf1\xf1\x85\xec*\xdcp\xdc1\x8a\xbcغ\x19I՟\xddW0Yh\xb83\xd1\xe1\x81qqXU\xe8\xab\xe9AQ7\x00\xea\xaf\xd8\x1d\x81\x15\x8dlv3\xeaC\x17\x1bk1)\xba\xeb\xf3\xe7Ļw'\uf0ba\xb418\x1a_C\xf0ǟ\xcdh\x15\xdd\xfd\x1cG\x11\xfe\x17\x00\x00\xff\xff\"\xf7\xf4 \x8c\t\x00\x00"), []byte("\x1f\x8b\b\x00\x00\x00\x00\x00\x00\xff\xb4WOoܶ\x13\xbd\xebS\f\xf2;\xe4W \xd2&ȥЭuR h\x1a\x04\xb6\xe3K\xd1\x03E\xceJ\xac)\x92\xe5\x90\xeb\xb8E\xbf{1\xa4\xb4\u007f\xb4Z;=to\x1a\x0e\x87\x8f\x8f\xef\r\xb9U]ו\xf0\xfa\x0e\x03ig[\x10^\xe3\u05c8\x96\xbf\xa8\xb9\xff\x9e\x1a\xed6\xbb7\x1dF\xf1\xa6\xba\xd7V\xb5p\x95(\xba\xf1\x1aɥ \xf1\x1dn\xb5\xd5Q;[\x8d\x18\x85\x12Q\xb4\x15\x80\xb0\xd6E\xc1a\xe2O\x00\xe9l\f\xce\x18\fu\x8f\xb6\xb9O\x1dvI\x1b\x85!\xaf0\xaf\xbf{ݼm^W\x002`\x9e~\xabG\xa4(F߂M\xc6T\x00V\x8c\u0602r\x0f\xd68\xa1\x02\xfe\x91\x90\"5;4\x18\\\xa3]E\x1e%/\xda\a\x97|\v\x87\x812w\x02T6\xf3n*s]\xca\xe4\x11\xa3)\xfe\xbc6\xfaQO\x19ޤ \xcc9\x88\x9cmp\x91w\xb6A\x91G\x99V\xf0\x1f\xe8\xe5\x10\xb3r\xfd\xfe\xe6\x16\xe6E\xf3\x11\x9cr^t\xb2\x9fF\a\xe2\x99(m\xb7\x18\xca\xc1e\x95qE\xb4\xca;mc\xfe\x90F\xa3=%\x9dR7\xeaH\xb3l\xf9|\x1a\xb8\xcam\a:\x84䕈\xa8\x1a\xf8`\xe1J\x8ch\xae\x04\xe1\u007fN;3L5S\xfa<\xf1\xc7\xdd\xf24\xb1\xb0\xb5\x0f\xcf\xedl\xf5\x84\x16V\xbe\xf1(\xf9\xbc\x984\x9e\xa7\xb7Zf\v\xc0\xd6\x05\x10\agO\xb45Gu\u05fc\x99A\x89\xd0c<\x8d-P\xdc\xe6\x14^\xf8a\x10\xa7-\xe4\xff\xd8\xf4\r\xf7\x01\x9a \x94\xce\xf0]\xb3\xa8wi\xf55\x8d\xaeb\x98\xa5\xca[g\x1e\xd9\xe8\xdcz\x8e\xd1,\x17\xe5\x1f\xda4\xae\x15\xaf\xe1nj\xf4\xa3\xeb\x9f\x18\xbdr6\xb2\xa0\x9fH\xb9s&\x8dxc\x85\xa7\xc1=\x999ߩ\xfb{f\x99v\x8d\xdcj\xf1\x12\xa4i\xf8\x1a)\x99ՅV\x858\xff\xf2\xbd\xfa\x1c\xcb|5\xcd,\xf3\x84\xd2q\x11\xf8>\x0f\x16#ҡ\r<\xe88\xc0à\xe5\xb0R\x15\xf2\xb4|@\xdc_\x88\x9c\xd4ٱ\xff\x0e6\xebX\a<\x93G\x9dEs\x16d\xc8\xd5Z\xf1\x85\xe7\xd6\vד\x17\x9eul\xb9\xa0\xbfճ9{&U\xa6\x10\xd0ƩF\xbe\xad\x96\x13\xbeŴ\xb3\xe2\xbf\\\u007f|ҹ\xef\x0ey\xf9\x89&\xb4-8|\xc0\x9at\xcfw+\x8f\xb1w\xb3\xb3\x96\x04\x94\xdf\xf1\x1d\xff\xec\xa9\xe1W\xaf\xc3ѓ\xe5\x02\xb4\xf7\xfb\xb4\xd2XЖ+b\xf9z\xc9\xe5\x90\xf2\xb5+\x85=\xc3\xd6!(4\x18QA\xf7X:\xe3#E\x1c\x97x\xb7.\x8c\"\xb6\xc0\x17G\x1d\xf5\x99P\xf8\xf9):\x83-Đ\xd6U\xb4\xb2Y?\b:\xb3\xd5\xc9>?s\xc6\xda\xf1\xef\xcd\xf5\xc4\xf9Å\x0eV\xc3'|8\x8b}\x0eN\"\x11.\x8dq\x01\xfd\x8a\xb8\x17\xa1û\xfd\xcd\xe1+K\xb1\x9e\xde\xe9y\x00 \xbfz\xd5\x11uӛq\x8a\x1c\x1c#\xa4D\x1fQ}Z\xbe\xd4_\xbc8yz\xe7O\xe9\xac\xd2\xe5O\x06\xfc\xfa[U\xaa\xa2\xba\x9bqp\xf0\x9f\x00\x00\x00\xff\xff]]l+\xe3\f\x00\x00"), []byte("\x1f\x8b\b\x00\x00\x00\x00\x00\x00\xff\xc4Y\xdfs۸\xf1\u007f\xd7_\xb1\x93{\xf0\xf7fB\xea\x92\xfbN\xa7\xa3\xb7\x8b\xddt\xdc\xde9\x9eȗ\x97L\x1eV\xc4JD\r\x02(\x16\x94\xa2v\xfa\xbfw\x16 %Q\xa2e\xf9\xdaK\xf9b\x13\\,\xf6\xf7~\x16\x9a\x14E1A\xaf?Q`\xed\xec\f\xd0k\xfa\x1a\xc9\xca\x1b\x97\x8f\u007f\xe4R\xbb\xe9\xfa͂\"\xbe\x99\x94+\xd74\xad\xd5q;M\x01\xa9\x17mt\x81\xa7\x8a\xd6d\xa6\xacW\x05\x86\xaa֑\xaa\xd8\x06\x9a\xa2\xd7E\x12ܦH.\x1b\xf5]\xe8➯\x0e$\x8d[q\x1bǠ\xedj\xb7\x9c\x02\xecI\xbbK\x80\x81f\xc0n[\x96\u007fo^Y\x12\xab|\xfc\xd3\xfc\x01\xfaC\x93\v\x866O\xd6\xdeo\xe3\xbd\xe1\xc5P\xda.)d\xc7-\x83k\x12G\xb2\xca;mcz\xa9\x8c&;4:\xb7\x8bFG\xf1\xf4\xdf[\xe2(\xfe)\xe1:%4,\bZ\xaf0\x92*\xe1\xd6\xc256d\xae\x91\xe9w7\xbbX\x98\v1\xe9\xf3\x86?\xacCC\xc2l\xad\xddr_(F=t\x94\xfbsO\x95\xf8K\x8c&\xfb\xf4RW)\x05`\xe9\x02\xe01yy\xc0v,5\xe5\xc9Ua\x1e]\xc0\x15\xfd쪃$\u007fB\xa6wc;z\xa9\xa4\xb6\xe54\xa5\x8e5p\xa6\xf1\xacE\xe4YJ\x97\xb9\xc7X?{\xea\xd5\xed2\x1f\x93*Rt\x80\xe05U4(\xed\xa0-GB\x95\x17GX\x02H\xe2\x06\xea\xe8_\xe7\xfaӕ\xb9};\x10[\x03\xe6\xfe\x06\u007f\x99\u007f\xb8\x9b\xfe\xd9eYGybU\x11\v\x1b\x8cԐ\x8d\xaf\x81۪\x06dQA\aRs\xf9R6h\xf5\x928\x96\xdd\t\x14\xf8\xf3\xdb/c6\x03x\xef\x02\xd0Wl\xbc\xa1נ\xb3\x95w\x05\xb5\x0f\x10\xcd\xd9\x10;~\xb0ѱ\xd6㊣\x04R\xa7\xf0&)\x1a\xf1\x91\xc0u\x8a\xb6\x04F?\xd2\f^I\t9\x10\xf1\x9f\x92\r\xffz5\xca\xf3\xffr\x92\xbe\x12\x92WY\xb0]\xcfr\x0eO_\xacN\x8f+/\xedJW\xf3\x0e\xf9\x1c\uf514\xd8Ժ\xaa\xfb!a_=Gs\xa4A\x95K.\xda\xed\xef\x1e\xb6b\xc86\x88<ۢ\x1bC\v\xb4J\xfeg\xcdQ\xd6_l\xb9V_\x90\xa4\xbf\xde\xde|\x9b`n\xf5\x8b3r\x14\x10\xe7\x98\xf0\xeeV\x89\xf9\x96\x9a\xc2Y8\xf5q@\xda\x03\xbb\x11$\xb9\xa3\xb9\x18\xc9E\\\x9d\x00(T*]4\xa0\xb9?\x03\xb2\xce\xe8<\x10\xfe\x01W\f\x18\b\x10\x1a\xf4\xe2\xa7G\xda\x16\xb9I{\xd4\xd2c\xa5\x8dvxeA\x80\xde\x1b=\xd2N\xbbV\xdc\xc1\xc5\x0ey\xcbX\x8b+\x1e\xd7w\xc4\xeay\xf7Yk\xe7\xf1b\f>wGg\\\xb2\x83\xd0\xd1\xed\x81\xeai\xfc\x9e\x00\xd7'\xec&S\xa0\xa0\xabCъ\xf1\xd1e@!\x90~\xb0\xe0\x9d\x1a\xbc\x0f\xe3l\xf0)\xeb\xf3\xec\xf4\x161\xb6|\xf1\xfc\x96\xa8{\xeb\xe5z\x10;\x1e\t+\xfc\x96\t\xaer\x82\x1d\x87\xd7T\xe7\\x}J\x9f.D\x82\xcabE\xddH\xbd~\xc94y>\xec6\x00.\\\x1bw\x03\xe2 ů\xb8\x8b\x9e˧ӑ\x11l\x18\xb2(\x80\x99;\xf8hL\xdaq\x98\xd6\xfbK\xd4$ς\xc4-\xffi\x86\x03\xf8\x1a\xf9\xbcq\xee\x85b,yv5\xe8L\xf6@\x9a\b\xdb\xe6\xf8\x84\x02\xeehs\xb2vk\xef\x83[\x05\xe2\xe3\xd0(\xfa\xf89Q\xb6\x80\xf7)\xce/ַ;\xe0\xbc\xca\x1d\x11\xd4\xce\xf4\xe9\xe9\"\x1a\xb0m\xb3\xa0 z/\xb6\x91xX\x84Og\xfe4E\xec\x8dv\xb0\xbb\xbfB\xc8|\xba\xa1\xa8B\x9bn\xd9$g\xa2\x03\xa5\xd9\x1b<\x9d\x8az\x15\x12\x92\x90\x94\x91\x94\xdeGk\x9f\xa6\x9eB\xfa\xf4\x92[\x8a$͍\xb3\xa3\x18\xb7\xcfOm\xe3\x1f\xfe\xffIġm\xa4ՠ\xa8w_ŀ\xef\x84\xff\u007f\x9b\xf7\x93\x8d\x95-z\xae]\xbc\xbd9\xeb\xed\xf9\x8e\xac\x8f\xf2=hI\xb5+\xdd\xfbuD\xbdˇ--?9\f.N=\x8e\x18\xe2e\xcdc> }\xa6o$\xbe\xa4J\x98\x93ǀ\xf140\xd3}\xf0\xf5\xf1\xaf,\xaf\x81u\xba\x16\x13\xec\x93\xc1P\x1euYډ@;\x17r\xac\x9er\x1c4\x82A\xe1\x1f\x8a\xfe-j\xfeH<\x1c-\xed\u007frz\xb3\u007fKqYt?1\xa5\x0f\x9dZ\xea\xe0\xf0\xeeV\xb5[\xd9\xc3\x10\xac\x04\xb2\x93\xba;\xfe\x91\xe9U\xbe*\xe9\u007f5J\xaf\x95\xb3\x19\xcd\xf2\f>\u007f\x99@w\xd7\xfa\xa9\x97C\x16\xff\x1d\x00\x00\xff\xff\x81\x16-\x05\x9e\x1b\x00\x00"), - []byte("\x1f\x8b\b\x00\x00\x00\x00\x00\x00\xff\xc4Y_s۸\x11\u007fק\xd8\xf1=\xb87\x13R\x97\\\xa7\xd3\xd1\u06dd\xddt\xdc\xde9\x9eȗ\x97L\x1e b)\xa2&\x01\x16\xbb\x90\xacv\xfa\xdd;\v\x90\x92(Q\xb2\x9c\xe9\xa5zI\b,\x16\xbf\xfd\xed\x1f,\xe0I\x96e\x13՚O\xe8\xc98;\x03\xd5\x1a|f\xb4\xf2E\xf9ӟ)7n\xbaz\xbb@Vo'O\xc6\xea\x19\xdc\x04b\xd7|Dr\xc1\x17x\x8b\xa5\xb1\x86\x8d\xb3\x93\x06Yi\xc5j6\x01P\xd6:V2L\xf2\tP8\xcb\xde\xd55\xfal\x896\u007f\n\v\\\x04Sk\xf4q\x87~\xff\xd5\x0f\xf9\x8f\xf9\x0f\x13\x80\xc2c\\\xfeh\x1a$VM;\x03\x1b\xeaz\x02`U\x833h\x9d^\xb9:4\xe8\x91\xd8y\xa4|\x855z\x97\x1b7\xa1\x16\v\xd9u\xe9]hg\xb0\x9bH\x8b;Dɚ\a\xa7?E=\x1f\x93\x9e8U\x1b⿏N\xffb\x88\xa3H[\a\xaf\xea\x11\x1cq\x96\x8c]\x86Z\xf9\xe3\xf9\t@\xeb\x91Я\xf07\xfbd\xddھ7Xk\x9aA\xa9j\x92i*\\\x8b3\xb8\x17\xa4\xad*PO\x00V\xaa6:\U00091c3b\x16\xedO\x0fw\x9f~\x9c\x17\x156*\r\x8afעgӛ(\xbf=\xefn\xc7\x004R\xe1M\x1b5µ\xa8J2\xa0şH\xc0\x15B\xe7\x15\xd4@q\x1bp%pe\bE\xe5\b-8[o\xc6\xd1:\xa8\xd4\n\x81\\\x83\xb0ƺ\xceR\xaf\xa0a\xad6b\u007f\xef.\x890\x05\xad\xf2<\xec\x06F\xb5>~\xb8\xfd0K\xa8$\x84\x96\xb1\x8e\xc9)S\x1a9\xf3\xe5\xb0O'\x97\xc4d\xa4#\xa4\xe0`\aE\xa5\xecHY\x83\xd84Dv\xcb gI~\xfd\xdal=<\xb6\xfb\xdf\xc8\xf1}X\x18\xfeO\x87\xe0Ef\xc5\xd6\xf9E\xb3\xee\xf7\xe2\xf9\xacY\xd2\xc4{\x8b\x8c\xd12\xed\n\x12\xa3\nl\x99\xa6n\x85~ep=];\xffd\xec2\x93@\xccR$\xd04\xb6\xe1\xd3\xef\xe2?_eE\xec\x8c/3%\x8a~\v{d\x1f\x9a\xbeڜ\xbe\xaf\xbb\xf4T\xba\x9ew\x8d\xc7\xe1JI\x89ue\x8a\xaao\xd2w\xd5s4G\x1a\xa5S\xc9Uv\U000fb1ed\x10\x19\xbc\xe0\xd9d\xdd]0SV\xcb\xff\xc9\x10\xcb\xf8\xab\x99\v\xe6\x82$\xfd\xed\xee\xf6\xdb\x04s0\xaf\xce\xc8ц4\xc5D\xeb\xee\xb4\xd0W\x1a\xf4g\xbb\xa9\x8f\x03Ѿ\v\x1c\xe9\xe3\xb62\x177rdUK\x95\xe3\xbb۳\b\xe6[\xb1~\xf7\x1d\xe5]\xfb\xd6k\x92\x10=ӷ\x9dD\x92ԜE\x91\xfa\xee\xb1.\xb8Ð:\x868\"\x1d\xe8W!\x91됴9\xfbH\xb2\xf1\x0e~ \xd1:=\xf8\x1e\xfaw0\xb5#}0\x9c\x8cx\xf12Ê\x03]~\x9d\x89\xe2=g)?\xb9S\x12\xcf\uebfa\xd0\x14N\x9a\xb9\xe1\xe3\xcd9\xcf\xdd\x1c\xcb\xc7\x17\x02\xaf\x13.6\r\xc6\xdbBD\x00kE\xfd\x16\xc7~\x83=mia\xac\x84\xa2\ful\xb6\xa4\x0f,\x95\xa9Q\xc3\xf6\xe9\b\x1e\xe5>\x17\xaf\xcc\xd7ǵ\xb2W\x13\bu\xbc\xe7\x8d\x00>\\U:\xdf(\x9e\x81\\\x933Qp0oC]\xabE\x8d3`\x1f\x0e'O\xa6A\x83Djy>\x0f~M2\xe9\x86\xd5-\x00\xb5p\x81\xb7W\xac.!:\xf3\xaf\xa9\xf3\xf8\xe5\x17\xbcJ\xd1y\x10\x0f\"1\x16Wۤ<\x17X\x10o/\xa19\xdc\"\x83{\\\x1f\x8d\xdd\xd9\a\xef\x96\x1e\xe9\xd0\aY﨣\xf6;\x83\xf71\x02.6\xb8\xdb\xe0\xbc͝\x10T\xae\xee#ױ\xaa\xc1\x86f\x81^\f_l\x18\xa9g\xa0O\xf4\xe3\x1bj\xecyw\xbc\xed\xd6\xf7\xd5*)\xea:\xf8B\xd9\xf8$#\xd1\xc9\x0e\xb4\xa1\xb6V\xc7-|oC<\xf6$8%Cvq\xd1g\x97\xa4t\x9c{͝:¹uv\xb4#\xebS\xc1X\xfe\xd3\x1fO\x9e\x8f\xc62.\a\xa5\xb0\x9b\x15\n\u007f\x16\xfd\xffk\xdd'\x0f_b\xe5\xf9\xb2\xd25\x1f\x88\xbeT\xb5\xa2ⱚ\xb5_~\x8e\xcb\xcdp\x93oQiF\xa89\x18\xda=ؿ\xdd}E\x17e\xdd\x03}\x9c\x80d\x96\xdeۼ{\x8c\xeaFv\a\x96*\xa4\xd7B}\u007f\xf8B\u007fu5xp\x8f\x9f\x85\xb3ڤ\xbf.\xc0\xe7/\x13螨>\xf58d\xf0\xbf\x01\x00\x00\xff\xff\x98\xaaEc\xdc\x18\x00\x00"), + []byte("\x1f\x8b\b\x00\x00\x00\x00\x00\x00\xff\xc4Y_o\xe3\xb8\x11\u007f\xf7\xa7\x18\xec=\xa4\a\xac\xe4۽\xa2(\xfc\xb6\x97\xdc\x16i\xef\xb2A\x9c\xcb\xcbb\x1fhql\xb1\xa1H\x95\x1c\xdaq\x8b~\xf7bHі-\xc5q\x16\xbd=\xbf$\"\x87Ù\xdf\xfc\x97&EQLD\xab\x1e\xd0ye\xcd\fD\xab\xf0\x89\xd0\xf0\x93/\x1f\xff\xeaKe\xa7\xebw\v$\xf1n\U000a831c\xc1e\xf0d\x9b;\xf46\xb8\n\xafp\xa9\x8c\"eͤA\x12R\x90\x98M\x00\x841\x96\x04/{~\x04\xa8\xac!g\xb5FW\xacД\x8fa\x81\x8b\xa0\xb4D\x17o\xc8\xf7\xaf\u007f(\u007f,\u007f\x98\x00T\x0e\xe3\xf1{ՠ'Ѵ30A\xeb\t\x80\x11\rΠ\xb5rmuhС'\xebЗk\xd4\xe8l\xa9\xecķX\xf1\xad+gC;\x83\xfdF:\xdcI\x94\xb4\xb9\xb5\xf2!\xf2\xb9K|\xe2\x96V\x9e\xfe1\xba\xfd\x8b\xf2\x14IZ\x1d\x9c\xd0#r\xc4]\xaf\xcc*h\xe1\x86\xfb\x13\x80֡G\xb7\xc6\xdf̣\xb1\x1b\xf3Q\xa1\x96~\x06K\xa1=o\xfbʶ8\x83\x1b\x96\xb4\x15\x15\xca\t\xc0Zh%#\x1eIvۢ\xf9p{\xfd\xf0㼪\xb1\x11i\x919\xdb\x16\x1d\xa9\xac\"\xffz\xd6ݭ\x01H\xf4\x95Sm\xe4\b\x17\xcc*рd{\xa2\a\xaa\x11:\xab\xa0\x04\x1f\xaf\x01\xbb\x04\xaa\x95\a\x87Q\a\x93,\xdcc\vL\"\f\xd8\xc5?\xb1\xa2\x12欧\xf3\xe0k\x1b\xb4d'X\xa3#pXٕQ\xff\xdeq\xf6@6^\xa9\x05a\x87p\xfe)C\xe8\x8c\xd0\fB\xc0\xb7 \x8c\x84Fl\xc1!\xdf\x01\xc1\xf4\xb8E\x12_¯\xd6!(\xb3\xb43\xa8\x89Z?\x9bNW\x8a\xb2?W\xb6i\x82Q\xb4\x9dF\xafT\x8b@\xd6\xf9\xa9\xc45\xea\xa9W\xabB\xb8\xaaV\x84\x15\x05\x87SѪ\"\nn\xa2;\x97\x8d\xfc\xceu\xce\xef/z\x92Җ\xcd\xe6\xc9)\xb3\xda-G'{\x16w\xf61P\x1eDw,ɿ\x87\x97\x97\x18\x95\xbb\x9f\xe7\xf7\x90/\x8d&8\xc4<\xa2\xbd?\xe6\xf7\xc03P\xca,\xd1%\xc3-\x9dm\"G4\xb2\xb5\xcaP|\xa8\xb4Bs\b\xba\x0f\x8bF\x11[\xfa_\x01=\xb1}J\xb8\x8cQ\r\v\x84\xd0JA(K\xb86p)\x1aԗ\xc2\xe3\xef\x0e;#\xec\v\x86\xf4e\xe0\xfb\xc9\xe8\x900\xa1\xb5[\xce\xc9b\xd4B\xc7\xe1?o\xb1b\x831j|P-U\x15c\x00\x96ց\x18З=\xc6c\xc1ɿ\x85\xa8\x1eC;'\xeb\xc4\n\u007f\xb1U/̟\x91꧱\x13Y,\xcep)P\xb1c\r>Q\x1e\xb1\x04\xd0\xf9\xe8\xa6F\x87\xf1\x04g)U\xb1+Y\xafȺ-\xb3\x8d\xaa\xc8\xf2\xe8\xfc(\xecQQ+O\x8a\u007fk;\xa7w\xb8D\x87\x86]:E\u007fkc\x8e \xa1Lv\xfd\x94<\x81\xec@\xfaE\x92vL\xb4砆g\xf3ᨠ\x1fn\xafs\x0ëv\"\xd3\xf1\x8d'\x01\xe1ߒ\xb3\xfc\xad\xa0\xfa\xc5[/\xae\x97隘\x11Ȃ\x80Va\x85\a\xa9\x15\x94\xf1\x84B\xa6\xc5\x11\x96\x00\x1c8\x0e;\xfa\xb7)\xfe\xbb4\xb3O\xc7\f5\x88T_\xe0\xef\xf3O7ӿ\xd9$\xeb(OQU虍 l\xd0\xd0[\xf0\xa1\xaaAxVA9\x94s\xde)\x1ba\xd4\x12=\x95\xdd\r\xe8\xfc\xe7\xf7_\xc60\x03\xf8h\x1d\xe0\x93hZ\x8doA%\x94w\t-\xfb\x87\xf2\t\x88\x1d?\xd8(\xaaո\xe2\x82\xfd\xa8Sx\x13\x15%\xf1\x88`;E\x03\x82V\x8f8\x837\x1c\xc1=\x11\xffá\xf3\xdf7\xa3<\xff\x94B\xe4\r\x93\xbcI\x82\xedjV?\xe2\xf6\x02R-\bȩ\xd5\n\x1d\x8e\xa3\x19\x131'\xb8\xef\xc1:\xd6\xdd\xd8\x1e\x83Ȗm\x96\xf2\fʁ\xc0\x9f\xdf\u007fyF\xdaC\x9c@\x19\x89O\xf0\x1e\x94I\xa8\xb4V~_\xc2}\xf4\x88\xad!\xf1\xc4\xf7T\xb5\xf5h\xc0\x1a\xbd\x1d\x97\xd6B-\xd6\b\xde6\b\x1bԺH\xbd\x82\x84\x8dز\xfe\xd9\\\xeca\x02Z\xe1\xe8\xb0\x1b\x18\xe5z\xff\xe9\xea\xd3,I\xc5.\xb4\x8ay\x8c\xab\xccRq\xcd\xe7b\x9f*\x17\xfbd\x84#$\xe7 \vU-\xccHZ\x83\xd84Dt\x97\x81kIy\xf1\xdah=.\xdb\xf97R\xbe\x8f\x13\xc3\x1fT\x04\xcfR+\xb6\xce/\xaau\xd3\xf3\xe7\x93jq\x13\xef\f\x12Fͤ\xad<+UaK~j\xd7\xe8\xd6\n7Ӎu\x8fʬ\nv\xc4\"y\x82\x9f\xc66|\xfa]\xfc\xf3UZ\xc4\xce\xf8_1\xb4\x1b\xf4\xb8\xa5\x831\x1323\x94\xb1\xd9\xe2>p)\x94F\t\xbbWGp\xcf\xf3\\\x1c\x99/\x86\xb92\xb3\t\x1ee\x9c\xf3F\x04>>\xb5\xb4\xae\x114\x03\x1e\x93\vfp\xb4o\x82\xd6b\xa1q\x06\xe4\xc2\xf1\xe6\xb3a\x80\xceY7\x98i\x0e\xc0\xfc9\x92\xa4\xf9\xaa\xb2\xc1\xa4\x1eL\xebt\x16\x1a\xf4^\xac\xe2\xfb\x1dA\xb0\xe1\x9ev\x85\x06\x1dO\xf3\x03\xc5e\x88\xd3\x02>a\x15\xa87\x04\xf1\x98\xd6\x05U\aaBPT\x14Dw\x93\aᆭY\x17\u007f]v\xd2v:\xb0j\x01\x1f\xa3\xf3\x9f\xadpw\xc1i\x9d;\"\xa8\xad\xceAkIh0\xa1Y\xa0c\xc5\x17[B\x9f\x11\xc89n8\x9c\xc7v\u007f\x8f\xdb\xfe|NԉQ7\xbcT\xc2ķQ\x1c\x98dA*\xdfj1\x9c^\xb2\x0e\xb1\xe2s\\\xb2/\xef\xfd\"'\x16\xcefq\xef5\xaf\x13\xa28W\u058c6\xa39\v(C\u007f\xf9\xf3\xb3\xad\xc1\x98\xbb\xc7]\x86\xf0'\xe6\xff\xff\xe6}\xa2\xef\xe0\xc0\xbc}\xe1\x05\xce]\xa6\x1a\xab\xb6]ls\xb0\xa5f\xb4u\xb6B\xefG\xf2K\x0f\xfc\x12>\x98m\xce\x1c\xbb\xceUr\xc2\xe82\x9au\xf0\x80N-\xb7\xdd\xf3Fů\x01\x87\xbf\x05rRY\xa5\x83yԽ\xf0\xbcx~\xd7C\xc2\xd1y\x95k~@\xfaRъ\x8c\xc7JV\xbf\xfa\f\xab\xcd\xe1%ߦЬ{H\x9f\xee\xba\xfa&\x19\x16\x9dȧ{EZ8\xd4\\f\x92\x95\a \x9c\xaaL\xaf\xa9D\xa3\xe8\x0e*\xd3WW\xa2\x91\xd09Z\xda\u007f\xcbz\xb7\u007f\x8a(\x16ݷ\xab\xb8\x01\xc9\xe4\xb2g\x98\xee=m\xb7\xb2\xef\xe5D\xc5c\bʛ\xe3\x8fWo\xd2\xeb\x9f\xfc-*>V\xd6H\x95>\xbc\xc1\xe7/\x13\xe8\xde\xde>d9x\xf1\u007f\x01\x00\x00\xff\xffA\x05\xf6<\xf7\x1b\x00\x00"), []byte("\x1f\x8b\b\x00\x00\x00\x00\x00\x00\xff\xb4W\xcdn\xe36\x10\xbe\xfb)\x06\xdb\xc3^*y\x83\xbd\x14\xba\xb5i\x17\b\x9a\x04\vg\x9bK\xd1\x03E\x8d\xeci(\x92\xe5\f\x9d\xbaO_\x90\x92lٖ\xbd\xc1\x02\xab\x1b\x87Ùo\xbe\xf9!\xb5(\x8ab\xa1<=c`r\xb6\x02\xe5\t\xff\x15\xb4i\xc5\xe5\xcbO\\\x92[noj\x14u\xb3x!\xdbTp\x1bY\\\xb7Bv1h\xfc\x15[\xb2$\xe4\xec\xa2CQ\x8d\x12U-\x00\x94\xb5NT\x12sZ\x02hg%8c0\x14k\xb4\xe5K\xac\xb1\x8ed\x1a\f\xd9\xc3\xe8\u007f\xfb\xa1\xfcX~X\x00\xe8\x80\xf9\xf8\x17\xea\x90Eu\xbe\x02\x1b\x8dY\x00X\xd5a\x05\x01YH\a\xf4\x8eI\\ \xe4r\x8b\x06\x83+\xc9-أNn\xd7\xc1E_\xc1a\xa3?=@\xea\xc3YeC\xab\xd1\xd0.o\x19b\xf9}v\xfb\x9eX\xb2\x8a71(3\a$o3\xd9u4*\x9c)$\a> c\xd8\xe2\x1f\xf6źW\xfb\x89\xd04\\A\xab\f\xe3\x02\x80\xb5\xf3X\xc1c\x82\xea\x95\xc6f\x01\xb0U\x86\x9a\xccH\x0f\xdey\xb4?\u007f\xbe{\xfe\xf8\xa47ة^\x98,;\x8fAh\x8c1}\x93\xfc\xeee\x00\r\xb2\x0e\xe4\xb3Ex\x9fL\xf5:Ф\x8c\"\x83l\x10\x86\xbc`\x03\x9c݀kA6\xc4\x100\xc7`\xfb\x1cO\xccBRQ\x16\\\xfd7j)\xe1)\xc5\x19\x18x\xe3\xa2iR\x19l1\b\x04\xd4nm\u9ffde\x06q٥Q\x82\x03\xc5\xe3GV0Xe\x12\t\x11\u007f\x04e\x1b\xe8\xd4\x0e\x02&\x1f\x10\xed\xc4ZV\xe1\x12\x1e\\@ ۺ\n6\"\x9e\xab\xe5rM2V\xb4v]\x17-\xc9n\x99\xeb\x92\xea(.\xf0\xb2\xc1-\x9a%ӺPAoHPK\f\xb8T\x9e\x8a\f\xdc\xe6\x82.\xbb\xe6\x870\x94?\xbf\x9f \x95]J\x1bK \xbbދs\x95]\xe4=\x15\x19\x10\x83\x1a\x8e\xf5\xf8\x0f\xf4&Qbe\xf5\xdb\xd3\x17\x18\x9d\xe6\x14\x1cs\x9e\xd9>\x1c\xe3\x03\xf1\x89(\xb2-\x86>qmp]\xb6\x88\xb6\xf1\x8e\xac\xe4\x856\x84\xf6\x98t\x8euG\x922\xfdOD\x96\x94\x9f\x12ns_C\x8d\x10}\xa3\x04\x9b\x12\xee,ܪ\x0eͭb\xfc\xee\xb4'\x86\xb9H\x94~\x9d\xf8\xe98:V\xec\xd9ڋ\xc7i1\x9b\xa1\xd3\xfe\u007f\xf2\xa8S\xc2\x12k\xe9 \xb5\xa4s\x0f@\xeb\x02\xa83\xfdrbx\xae9\xd3W+\xfd\x12\xfd\x93\xb8\xa0\xd6x\xef\xf4\xa4\xcd/\xa0\xfae\xee\xc4\b+\x8d\xb8\xbeQq^\xf1\xc42\x80l\x94L:T\x14\xd9}\x9b\xcf\xc4q\x91\xf2L\xbbJ\xedj\x95\xd5\xf8)\u05ceջ\xab\xb1<\xcc\x1cH\xa1l\xdc+\xb8V\xd0NM\x8e(k<\v\"D\xfbf\x90\xfdL\xbekRi\xb5\x84\xe1*\xc0Չ\xf2\xc8s\x1b\x8d\x19,\x15\xdau^\t\xd5\x06\xc7Fn]8\x83H\xbd\x8d]\xdf\xd5\xdf\xc6\xef֙\xd8\xe1\xfen\xb8\x8a\xfc\xf9XwZ \xbd`\x00\x91B\x80p|\x05N\xbf\xa1&\x18\xbck\x06\x00C\xd1r\x8a\xf3\x8d\xd8Sr)\xe0\xd14,\xe6\x8b\xffHc\xae\xa2\x8e\x14N\xb3y\xb4y\xc2\xd7W\x87\x81(\x89\xfc\xf6q\x90\xd5Gbu\f\x01\xad\fF\xf2M\xf8M\x03\xc1(\x96I[\xa47\xd0\xd5<ߟ돐\x92)\x90$\x98vѫ\xe2\xb9~i]\xe8\x94T\x90F{\x91\x0e\x9d\xec\xa7\x17\x98\xaa\rV !\x9en^\x9e\bȬ\xd6\xd7#x\xe8u\xfa\xabp8\x00\xaavQ.\x10\x9b/\xc5+\xd4^E\xe47\x8a\xaf\xe3\xf9\x9c4\xe6Ҋou\x8e6v\xa7.\nx\xc4\xd73\xd9\nUs\xdas\x05<:\x99۸\x10\xd3L-\x9f\x88\x0eO\xec\x9b\xc3*\xd7]1<\xa9\xf3\x06@~\x996\x93\x14sߛ\x83\xe4\xd0 Jk\xf4\x82\xcd\xe3\xe9\x93\xfaݻ\xa3\x17r^jg\x1b\xea\xff\a\xe0Ͽ\x16\xbdUl\x9eG\x1cI\xf8\u007f\x00\x00\x00\xff\xfflC\xbf\xee\x8e\f\x00\x00"), - []byte("\x1f\x8b\b\x00\x00\x00\x00\x00\x00\xff\xec}\xfds\x1c7r\xe8\xef\xfe+P<\xd7#\x99\xe3.\xa5\xbb\xe4*Q\xa5\x9e\x8b'Q>\x96-jK\xa4\xe5w\xe5s\x1c\xecL\xef.\xc2\x19`\x0e\xc0,\xb9\x89\xf3\xbf\xbfB\x03\x98\x8f\xdd\xd9\x0f`HJ\xf2\rR\x953W3=@\xa3\xd1\xdfݠ\x05\xfb\bR1\xc1_\x11Z0x\xd0\xc0\xcd_j|\xf7\xafj\xcc\xc4\xf9\xf2\xe5\x144}\xf9\xd5\x1d\xe3\xe9+\xf2\xbaTZ\xe4\x1f@\x89R&\xf0\x06f\x8c3\xcd\x04\xff*\aMS\xaa髯\b\xa1\x9c\vM\xcd\xcf\xca\xfcIH\"\xb8\x96\"\xcb@\x8e\xe6\xc0\xc7w\xe5\x14\xa6%\xcbR\x90\xf8\x05\xff\xfd\xe5\x8b\xf1\x1f\xc7/\xbe\"$\x91\x80\xaf߲\x1c\x94\xa6y\xf1\x8a\xf02˾\"\x84\xd3\x1c^\x11\tJ\v\tj\xbc\x84\f\xa4\x183\xf1\x95* 1\x1f\x9bKQ\x16\xafH\xfd\x0f\xf6\x1d7\x11\xbb\x88\x0f\xf6u\xfc%cJ\u007f\xd7\xfc\xf5{\xa64\xfeK\x91\x95\x92f\xf5\xc7\xf0G\xc5\xf8\xbc̨\xac~\xfe\x8a\x90B\x82\x02\xb9\x84\x1f\xf8\x1d\x17\xf7\xfc-\x83,U\xafȌf\xca\xfc\xb3JD\x01\xafȵ\x99EA\x13H\xbf\"dI3\x96\xe2\x12\xed\xbcD\x01\xfcbr\xf5\xf1\x8f7\xc9\x02rj\u007f$$\x05\x95HV\xe0s~~\x84)B\xc9G\\\x9f\x99\x04n\x04\xd1\v\xaa\x89\x04\x9c\n\u05ca\xe8\x05\x10Z\x14\x19K\xf0+D\xcc\x1cHR\xbd\xa3\xc8L\x8a\xbc\x865\xa5\xc9]Y\x10-\b%\x9a\xca9h\xf2]9\x05\xc9A\x83\"IV*\rr\xec\xc0\x14R\x14 5\xf3\x885\xa3AJ\xd5okk86\x8b\xb4ϐ\xd4\x10\x0fة:\x12\x80\x94(D\x00\x113\xa2\x17L\xd5K\xc2e4\xc0\x12\xf3\b\xe5DL\xff\v\x12=&7f\a\xa4\"j!\xca,5\x14\xb7\x04iP\x92\x889g\xff]AVf\x81\xe6\x93\x19\xd5\xe0v\xda\x0f\xc65HN3\xb3=%\x9c\x11\xcaS\x92\xd3\x15\x91`\xbeAJހ\x86\x8f\xa81y\x87[\xc2g\xe2\x15Yh]\xa8W\xe7\xe7s\xa6\xfd\xe1ID\x9e\x97\x9c\xe9\xd59\x1e\x016-\xb5\x90\xea<\x85%d\xe7\x8a\xcdGT&\v\xa6!ѥ\x84sZ\xb0\x11N\x9c\xe3\xd9\x19\xe7\xe9\xef\xaa\xcd:n\xccT\xaf\fA)-\x19\x9fW?#ioŻ!qK9\xf65;\xff\x1a\xbd\xe6'\x83\x95\x0f\x977\xb7M\xaab\xaa\x8ds\xc4v\x83\xd0j\xc4\x1bD1>\x03i7\x0ei\xcb@\x04\x9e\x16\x82q\x8d\u007f$\x19\x03\xdeF\xba*\xa79\xd3f\xa7\xff^\x822\xa4+\xc6\xe45\xb2\x102\x05R\x16)Ր\x8e\xc9\x15'\xafi\x0e\xd9k\xaa\xe0\xc9\xd1n0\xacF\x06\xa5\xfb\x11\xdf\xe4|\xed\a-\xb6\xaa\x9f=\x8b\xea\xdc!w\xbao\nHZ'ü\xc4f\xfe\x18τl\x1d~\xf3ʸ\x01\xb2\xebX\x9aa϶aA\xed\xdf\xd7&\xf1\xe7\xea1C+\xe6\xf3%g\u007f/\x01Y\xa8=\x93\xb0\xc9.d\x83\x9d6\x87!\x81\xf1گ\x9d\x184\x03\x1e\x92\xacL!\xadؤ\xda9\xd3ˍ\xc7Q\xc8P\xc6\r\x8d\x1b\xa6n\xa6\xcb\xeb\u007fE\x06I;fi\xe8\x8cq\v\x8d0\x8eK\xec\xc0\xac\x19LC\xbe1\xad\x1dk\"(\xb5\xe84\x83WD\xcbr\xfd\xdb\xf6=*%]u\xa2\xc2K\xd9\xc30Q=\xed\x8ey\xc6\x12ܲ\xea0#2\xbe$<,\x84\xb8۽\xf6\xbf\x98'jnD\x12\xd4N\xc8\x14\x16tɄt\xabu\"a\n\x04\x1e )5J\xe05\xa8%2E!I!\x94\u07b6\xeem\xa7\x8b4\xa5\xea\xe6?mE\xd8\xc6z\x1c\x13\xf0[i\x96\xd7b\b\x82\x83\x99cn\x98_\xfd\xac\x14\xa5}Vu~\x81l\xc3\x02\x99R\x05)\x11n\xaf\xcb\f\x94\xfbR\x8a\x8c\xa6>=g[\x00W\x8b\xb6\xb22\xa3SȈ\x82\f\x12-\xe4:\xf6\xf6\xe3Ў\xfd\x9c`\v\xf6:x\x82㞎\x976ف\xd8\n\x93\x90\xfb\x05K\x16V\x8c\x19\x1aD($\x15\xa0\xf0\x90\x18\xb5jս8\xb2{\xaf\xed\xd8qL\xea\xb1\xf3\xc0\xac\xc3\xda<:\xf5\xd8\xcbL걇\xad\xb4qYk\x91\xff0\xa8\xf4\xdc1\x980\xaf6^|L\xc2D5ߨ\xa2W3\x02y\xa1Wg\x84i\xff+\xaa\xf3h9mEO\xf5\xed/n#Bi\xfaj\xfd\xbdG\xa4鞻P}\xfa\x8b\xd9\x04d\xf67\x8e\xd7\x1f\xb8\x01\xdf7\xdf9#lVm@zFf,\xd3 \xd7vb\xd7r\xc5\xee\x9d苂\xfd\x92ʌ\x9c\xeadq\xf9`4\x10U;<\x0e\xc2\xc6\xfa\xabVq\xf3\xbak[\x98\xee\x84J\xd0xb\x12rk\x92\xdd\"\x06\xeb_\x8c\xbeG.\xae\xdf@\xba\x1d)\xe4\x10\n\xdbX\xc2\xc5\xda4\x9b\x9fuz\xe8a\vpJJ\xa5\xc3[\xf3\xfa\x8cPr\a+\xab]\x18c\xbf\x00I\xcdg\xcc\xc3{!J@\x1b\x1f\t\xea\x0eV\bę\xed{\xde=l\xeb\xed\xb8\x83\xd5\xfe\x87\xd6\xd0ff\xe3\f,\x8b?\xf3\x03\"\x00M\xbeCQF\xd0\xe9\xe29̾E\x91CY\x84\x1f\x1e\xdb\xc1˫\xb6\xa9\xe1\x90\u008dHG<\x94\x14b\xd3\xe5\xda5\x16T\x91)\x00\xf7H\xdbs\xe8\xedx:I\x9b3~\x85\xc0\xc9\xcbG\x95ˤFQ\xc4\xf6y\xe4V\x1bX\xfd`%ǡȾ_\x80\x84\x16\rl\xba\x88Q\xaf\xe3B7\xec\xf4\xc3\x10m\xe7q\xacȌI\xa5\x9b\x93T\xa4T\x87ml\xd0n\x99\x19߲\x1cD\xa9\x83qzY\xbfۊ\xbd\xe5\xf4\x81\xe5eNh.ʽB\xd7\x0e#\x03X^\x05\xc9\x1cF\xef)\xd3Ƞ\fT\xf4Tha\xb0^d\xa0\x0f\xd3;\xa703L$\x11\\\xb1\x14\xa4\x0f\xd7\xda}b\xc2\x1c\xbb\x19eY\xb9\x19\xb4\xe8\x1aaf \xbf\x942\xc2\n|o\xdfk\xf8\xd8\x16⾍\x98\x03\x97\xbe\xa0K lF\x98&\xc0\x13\xb3\x17 -\x83\xc5\x0f8$ J\xf6\xea1v\x1c\u008c\xcd\x00^\xe6\x87,|\x84\xe7\x92\xf1\x1d\xee\xa4\xe6\xc3o)\xdb\xe5\f\xf4#h\x9b\f\x8d\xc5\x1e\x80\x1f\xebw\x9f\xe1\x00\xd4\xcc`\xa72R\x8f)\x90\x0f@ӕ?\x05Tkc\x06\xe2\x8e\v\"K\xde\xe4b\x8fL\xff\x87\xdbP\xee\xfb\x8fe\x1e1\xce\xf6n\xe4\x9aw\x9b\xe9\xa6\xf6a\x00<\x99\xf6a\x80W\xa2(ܽq\xd5z\xdd\b\x05\xaf\xb4\xe2\xac+\n9X\x13\x99\x821\x00!\xb5\xee\xa2BTf\xbeM-\xe9\f\xe7v\xae\xebpeb\xcd\x11\xeaL\xb9f\xd2U\x83\xd0\x0f\xf1Wڱ\x12%\xb9\xa7\\{ҮԪB\x1cD\xdba\xfbh\a\x95\xf3\x83\x9f\xdd\xc8\xe8\xf2J\xa3O\xac\x02\xae\xe5\nS~\x0e\x9b\xae\x1d\xc6\xf0KErgT\x84\x9c\xce\xe1\xf8X\x91\xd7\xef\xdex}\xc1\xb0\xff\x83\xb9\xbb\x1d\xcc\xc6\x18\v)\x96,5\xaa\xccG*\x19\x9df\xc6\xc0\x9c\x81\x04\x9e\x80\"_\x9f|\xbc\xf8\xf0\xcb\xf5Ż\xcb\xd3\x00\xd0\xc6(\x85\x87\x82rCq\xa5\xf2Ҹ\xdao3y\xe0K&\x057\xa8\t\xc1\xc3ՌP\xb2\xf43M\xaa<(c\xd8dKH\xcf\\|ĭ \x04\x1f\x96M2^\x94\xda{\x12\xefY\x96a\x96\x15O\x16\x94\xcf\r\x96n\x17!@\x1b\xf8#j\xc55}0sF\x15R%\xb4\x80\x14\xe9\x97\xd0\x00\x90\xa9(\xcdҿ\xfe\xfa\x8c0xE\xben|bL.\x1d\xd4z\v\x03 \xe3j9,AZ\x1d\xd7n\xe0\x19\x910\xa72\xcd@)Á\xee\x17\xa0\x17p\x98\xd3\xd2\x0e\xeb\xfap[\x06\xde\xebi\xa8\xaf+\x93-\x00pG\x96\xdb]\x95\x929f\xe2<\x15\x89:\xd7TݩsƍH\x19\xa5T\xd3Q\x83\t\x9d[\x890r\xd2i\xe4m\xbcQE\xac翓%\xe7\x8c\xcfG\xb4z\x8a\xf1\x11\x1d\xa9\x05d\xd9\xf1\xc1\xd3\r`\x9d\x0ema\xd6X\xf3\xa5\xc3]\xd5A\x86\xb2\x1dm\xfevY\xb13\xfb\xd51\xb9\x16z{&\xd1\xf6Q1r\xc4븓\xe3]^\xdf~\xf8\xeb\xe4\xfd\xd5\xf5m\x18\xa3k\xb2\xc8\xed\x8c/\x00f7\x8b\xec`|\x81\xc7d+\x8bl3\xbe\x00\xa8{Y\xa4c|A\x9cr/\x8b\x8c\x14\x1c\xbbXd\x83\xf1\x85\xcc\xf5\x00\x16\x89k\b\x809\xb0\xc8\u007f0\x16\t|\x19\xc9\x1e\xbfwj{\xe3(W\xfb\x1c\"\x9a\xb5\xc0\x18/\xe3m.ы8\x82\xb1\xddv\n\xf1\xe5G\xda\x0ea\xf3\xe62\x03\xe0\x92\x9a\xf4}\xa6*\n\x82\xca\x02\n!\xf8p\xedގݑ\x8d\xee\xb1\x19\xefp9\xe0\xb1x \r\\\x8c\xc9;\x17ӥ\xe4\xf5/Wo.\xafo\xaf\xde^]~\bA\x06\x89=#ć\xe6{\xa1\xe4\xf8\xf1L\n;\xb6\x18\x16\x85\x84%\x13e\x95\x9e\x1b\f\xb7\xf3xn\x9c\xb6\xf0\xe9b\xe0`E\x14\xc8%K\xa0\xfb3\xa1\xfby\x80\r\x14\f\xb1K!h\x89\xf9`\x88\x8f\xaa\x16\xd8q\x80r\x10\f\xf3\t\xac(;\xf6\xdbR\xc1 k\xc5b\x8b\xba\x10\f\x11Ջ70\xa3ef\xfd\x13GG\xe3å\xb5\x1d\xfd\xd8\xcb[)\x0er 7G\x8b\xc5\xdc\xd8\xe2\r\xef;}\f\xc6{\xec\xd2\xebZ\xc2\xd5\x1a\x10\x110\xb3\x12\xbc\xc5\x11\x90\x9bS\x8fXyFl\x18m\xc6\xe6\xefh\xf1\x1d\xac>\xc0,\x1c\xc0:\xb21\xf3\xce%\xaba\x81a\x04Db亝V8\xeb\xeb\x87\x0frx>b\xd7h\xe1\xe2\xd6eM\xa2ff\xd0\x12\xb3\x18\xd2\xe7\x00\xf9\x11\xa3\xb9\xf8\xd1\x16\xd7M\x15\xc6\xf1\xbe\xe8e\x1djz$\x82'Phu.\x96FJ\xc2\xfd\xf9\xbd\x90wƖ0\x9c}d#\x01\xea\x1c\xd3\xf0\xcf\u007f\x87\xff\x13=\xa3\xdb\xf7o\u07bf\"\x17iJ\x04\xb2\xd1R\xc1\xac\xccl\x8aO\x84\x1c\xf6\xa3.\xec=\xc32\xd33R\xb2\xf4\x9bPF\xeaGoz\x10\x85\xcd\xf3z\x14\x9a\xb8\xc1\xe8\xe4*¤m\x0fCRչ7\xa6-\xd3\n\xcfO^\xaapV\xed\xc7\x14\xa2U>7-D\xf6T\x88\f(\x8f\x80qh\xf8\xabk\x1c\x92V\xd85\x0e\x0e\x91u\r\xa4\xf5ǐ\x05ǵ0\xb0)r\"\\:\x92:\x15\xe2\x15QeQ\b\xa9UU0<6\x87=\\\x97%\x8d\x9a\xe3qU\xbdsF\xfe\xb3\xfa\x11s\xca\xd5O\xc7\xc7\xff\xfe\xdd\xe5_\xff\xef\xf1\xf1\xcf\xff\x19\xf7\x95\x1ab\xa3\xa3C\u007f\xb0\xaa\x80d\xccE\n\x86\x1d\x9f\xd9?\x9d\x05q\x91`x\xff:\x1a1JS]\xaa\xf1B(}59\xf3\u007f\x16\"]\xffK\x05+\x82\xe4\x11\x84sw\x8b\x84\x90ѢQ\xdfJ\xc1\x8a\xb4h.\xe3z.\x18J\xc5\xe6\x15\x13\xaa\x17F\xa7\xbb\x97Lk\x88a\x1bv\x18;\vd\xae\x88\x98\x9d\x19>V\xab\xe1˗G\x9fL\x9d\x98\xf9%>\xca\x16 \xae\x9cJ\x81\x90\xe3%\x88W\xb4\xbc}Z\xe5\\E\x83\xbc\x98\\\xf9\xd6\x1a\x9f\b\xdd\xfd\xe4G\xb5U\xcf-E|\x1a\xe9\xdb'\x90&\x1ev\x9c\xee3k\xbbl^\xd9\xfc\xe9C\xea嶏\x8ca\a\x0e\xcaӺ\vlj\xfdq\x9c\x14e\x1c'v\xef\xe7\x90\v\xb9:\xf3\u007fB\xb1\x80\x1c$\xcdFJ\vI\xe7\x91l\xdeO\x13\xa7W\xffe?\x16Ǚ\x1b\x8bߜe\xb83\x878o^RJced+/\xff!\xfd$\x92\xa7\xa2\x98\xae& \x87\x8e6Iש\xa8},\xb4\x9aG\xa0\x93c)\xb22\auVi\xf9\xd1`\r4\xe0K\xb2\xa4R}2[%eK\xa6\x0eK\x9e\xec\x1a\x94\xaf\xdeG1\x1f\x82\xfc\xd3N\x9fq\r\xf3h\xd3f\xd4\x1f\t\x9d&\x97/\xba\x16\xa5.\xcax\vi&dNu\x15\x97x(\x84BǦoL\x11\r\xb8\xa5\xaf\xbc<\x8a\x84SP\xadA\xf2W\xe4?N\xfe\xf6\xfb_G\xa7ߜ\x9c\xfc\xf4b\xf4o?\xff\xfe\xe4oc\xfc\x8f\u007f:\xfd\xe6\xf4W\xff\xc7\xefOOON~\xfa\xeeݷ\xb7\x93˟\xd9\xe9\xaf?\xf12\xbf\xb3\u007f\xfdz\xf2\x13\\\xfe| \x90\xd3\xd3o\xbe\x8e\x9c\xf0è\xf6a\x8c\x18\xd7#!Gv\xeb\xf7\x94K\xef\x1a~;\x1e\x87\xef|\xf0:E?QJ\x9a:\xd7'b\x10\xfdԣ\x1e\xcb\xef\xa5\x1d)H$\xe8\xcf\xcb\xe7j\xe7Ԩ\x818Vuk\x8b߀\x1b\xb6\xaf\x89g\xd1S\xdb\x18\u061c\x8b`\b\xb6\x8fw\x8a\xdaV\x86\x1e\xfe\x1d\x04\xfb\xff\xfd\x18\xdcă\x9b\xb89~\xbbn\xe2\x1b{V\x06\x1f\xf1\xa7\xf1\x11G\xbe\x1a\xb3\xca\x112\xa5\x904\xa8\x98\xb9E\xe5{\x85\x05\xa6;s\xbe\xeafI\xa4\x10E\x99Q\x1d\x1b\x9fޞ\x922\xf6\x020&\xf7\xa5θ\xb5A\xf4\xbcw\xbe\xd1E\x96\x11ƭ\xc8\xc3I\xf94\x10\tֶ'T\x91\xa0C\x04K\xe0ڰ\x15\xbe^ͩ\x88\xd2Tj\xc6\xe7c\xf2\xe3\"\xc8\rku)\x977\xc18\xc9\xcbL\xb3\"\x03R\xb5뫪\xf5C\xa0*%\x12F\xb5OJ\xb1\xedk\x94\xf6\xe8E\\hz\x17\x02\xb3\x90\x90@\n<\x01\xec\xeaR6Z\x10NW\x84rrɗ\xf8\xb5\xa0է\xa5M\ued2aS5\xaf\xd6\xd7l\xeeC\x00\xd8O\x92\x82h\x8e\xa9K\x01iww\x0ebzn\x83\x8cr\xed[\xe9T\xb1\xca\x105\"V)\xae\xf24\"\f\x86\rm\xb8\x8e\xb2V\xdalx\x94P\x8a\xfc\x19\xf3TbUӧRK?/\x95\xf4\t\xd4\xd1\xc7SE{\xa9\xa1}T\xd0]\xeag\xb4)X\x9f\x1d/\v\xe3U\xc7>jc\xb4\xfaVH\x98\xb1\x87^<\xe4\x82W\xfbBX\n\\\xb3\x19\x8b\xd0\xe8\x8d\xd6#\xa1\x00\x8e5\xa7@\x93\x85m\xeb\xc6۩ \xe1\xf4\xfb\x89\xb3\xa2\xad%\xff\x18\x8c\xfa\xa6\xcb\xe70p݁\xeb\xee\x1f\xbf-\xae\xeb\x0e\xc2\x17\xc9r\x9f\xc9\"\xc5\n\xc8\xd8\x12\xcd7\x8d*J<\xf5\xcd\xfb!\x02\xd6zȩ\xac[\x13\x9c\xe3\xf7B\x0e\x1f6$\xf4\xfd\xd6j!d\x9b\x03\x8b{\xb2`sCf\x19,!$\xeci\xb5k\x92SN\xe7\xb6\xe5\x9b\x16>|E\x84$\x86\x91H\x96\x06\x15U\xd6f(.҈5Æ2A\xd3\xc6m>!\x8b\xcf\xd8\x1d\x907Pdb\xe5:\xbb\xf1\x94\xdch\xaa\r۹\x01\x1d\x92\x90\x15\xc1\x1ep\x1d\x932\xcb&\"cI\x80o\xbeMjWHcE\x99e\xa4@@c\xf2\x9e\xa3|\xb8\xc8\xee\xe9*(\xdex\rK\x90g\xe4jv-\xf4Ěv\xedj\x05\v2\x00\"\x9b\x91W\xf6^\x1b\xa2\xe9\x1c]\bu\u007fe![\x9f\n\x00\x8b\x02\xe2\x9e)輘\xe5\xf9\x8e\xda\xef\xf0\x9bF\x14ڿ\x9f\x94`26\x83d\x95d\xb1\\\xe9\"\xc1tɺ\xado\xe3|\xaa\x95\xd2\x10\xa2\n\xb96:\xe8\xc4`\xd8\x1e\xad\x10\\\x81m#\xe5\x8fj5\xe3P\xf7\x93\xeaUf\x19\xa7\xa2\x15B\xe9\x1bM\xe5A͊\xea\xd1>\x8d\x13\x0fĐzB\xb3\fR\xc2\xf2\x1cRF5d\xa1~e߭\xae\xe5\x83ë\xc8\\#\xb4p\xf9\xbf\xa0<\xcd@bo.\xe7ukA\xd7 s\xc6iX#\x01R\xa5+\xa1\x83\x10RB\x93D\xc8\xd4\xf5C\xf2\x1do\xa8\f\xf5\x8bT\x1c\r\xb5\x9d\x06\xbd\xaeg\x9d\x05\u009df\"\xb9S\xa4\xe4\x9aeu\v4\xdf\xff\xcc]\xa2\x15\b\xf3p=\xba\xc1F\xaa\xff\x1cUge\x84\xb7̜\xff\xae\xfe'\xfc!Li\x8d\xb7R\x0e\xe91\xb99\xd6\xfa\xac\x01\x92\x03&\x02\n\x0e\xf1\xa1\xe2\x990j\x88!\xa3\xba\x13`%@\xc6\xd8&/\x02j\xfb\x8e\x05\x8al\x11{\x05ѻ\x83Z2\xb5G\xbf\xb8|p/\x90\xe68\xa0\x8dfd\x04.c\x1c\x9a\xfd4\x19v\xf9k\x9f\xb9\xd8L&\x03\xc4Y\x90$e\x12;˯|=a$L\xdf0\x12\xfbj\v\xa1\xc9\xc9\xf1\xf9\xf1ix\xa3\x8d6L\xdf\x19\xc4\xe8\xc8\x19X\x19\x19ڏ\xa8k\x96F\rby\x91\xad\x10\xbf\xc7\xe9\x19a\xb1\xd1VW\xe8(K\xee\xf7ȵs9#\xea\xb0^v\x9bCK\xea;W[X\x06\xb4\x96\xa5\xd5\x1f\"\x81\x9e\x1c\xffz|F@'\xa7\xe4^\xf0c\x8d$0&\xb7\xc2\xd8\xf9\x910\xab\xa5\xaeDI8\xd8fk\xf0Pd,a:X\xda\xfaa\xc46\x11\xa5\xb6\xed\xc3\xf0\xa2*l\x8fs\xf9\x10\xbdK\xb6\xce\xc3\xf0\xc1\x17x>\xad\b'T\x91\x8c-\xe1|\x014Ӌ\xd8\xf9\x1a\x8a\u208f\xfe\x1b\xa4\xc0\xd6;\xdc\xc1\x8b\xf3\x99\x04G\x88\x9a\xa3w\x8eD\xb8\xa1\xbe\xfenT\bވ\xedo!P\xf5#\x1b\xb7\xbf\xdd\xdeN\xbe\x05\xdd\x160\x11h0\xb3\xf1\xb9\xdf\xe8\xd6\x059\x13r\xe3\xea\xc2\xfd\xa3\x9flZ\b\x15\x81\x11\xb2y'\x9eҶ\x1f\xb95\x0exL|\xcc\x0e-\xdae;.\xb3\x8e\\Mb\x93\x84\xfe*J\x83\xa5)\x9df\xab\xaaˡ\x02M\x8e̴c\x93l\x19\xc7=\xfc\v\xd0\x14\xbbIr\xa5\x81\x06u\x11\xaaG\xcf#\u0558\xc7c(\x19\xf6>Å[\u0601\xedR7G\xa3\xb5\x8e\xa3\xf31\x9e\x1e\xebw\x8a\x951\x12\n\xcbX\xdd\xfc>\x01\x03\xdc\xe0\a\x16\xf7\xee\xf7i\x8f\x1c9\xea/\x93\xb4\x8bs=FKգ\x1a\x8bq\x8bts\x00\xa2g\xd67/\x95\xf4̔$]\x91\x1e\x8b\xa3\x1e\x10]U^h\xba\xd4\xfax\x84J\x85ȶ@\xcd\xf1t\xe8\t\xcd\xd8Y\x1f\x8f\x80\x9f>\xc9~$&%\xae\xfdr\x1f\f\xf4\xcay'=\xb5%,\x05\x89,9\xdd,8Ղ\xd0$\xc1n|\xb1\xe5\xb9F\x18 ;»\xeb\x83Z\x905\x80\xf4#\xa8B\x84\xfa\xff\xfc\xe8Q\x18\xf5\x18eQ\x8fP\x14\xd5\xd1[M\x12^\xe6S\x90\xb1\xad\x06|\xb3\x01\xa9[\x04\xb2\x96Q\x19\t\xfa\xdaN\xcd\a1\xbd:A\xf9\x817gm\x8e\x97f\x96\u007f\xfa\x97\u007f\xf9㿌-\x02\xaa\xfc\xccX\x9a\xbe\xba\xb8\xbe\xf8\xe5\xe6\xe3k\xecs\x15\xb7\xd0'\xa8\u007f\xc2\xf2\xfaH\x89ҎG# \x83\xb5RaK\xa8xW\x8b\xb1\n\x9c\xbf\xd8:dU#\xf6\x14m. C\xf9\x04\x9c$^(\x8d\xf0\xb8<\xa7\xed\xab\x93\xe2F$w\xbd\xad\xdf\xe3\xdb\xd7\x13\v\xa86\x80#0O\xb9w\xc92\xbe\x14\xd9\xd2\xde\xf1t\xfbz\x82\x88\x89\xd9K\xf3.\xfa\xd0\xd1U\xb62\xf3\xf3\x95\xcf6\xe9$\x02&\xcb\vw\x9b\x19%\x12hƔf\t~)&\xe8凙exv\xcaga\xe5\x1f\xbf\xf7I.\xb5\xc1\x1f\u007fl\x1dC\xe82\xf8c\xcd\x14\xeb&\x88+\xfe\x19\xb4\x8aG\xd2*\x9c6!\xfd\xfdt\x83V\x113>G\xad\xe2ˑx\x91/\x16\x12n\xb4(ze\aX\x10\x8f\x92\x1b\xe0o\x1e\xda\x16\xbe'i\xf0&\xda[:/&W\x95\xefY\xb4\x82\ue61a\x11\bS\x95\xc9\xc2\xc798(u\x8ei\x00ea}N\xfe\x8a\xb0\xd0Pb!\x01\xef[\x12\xfc\xac\xaa9GD\x00\xb7?\x82NB\xcf\x05\xfaE\\v\x84\x8b\xaa\xf9M\xea\x97l\x90H\xaa\x16\x80\xdd\xe5\xe1\x81\xd5סS%\xb8\r{\xbaMc\xc1\xa63S\xa4\xa0J\xd9\xc0\x97\xae\x17`?1\x11\xe9\xf1q\xa8\n֘\f\x99K\x9a\x00)@2\x91\x12샖\x8a{N\xa60\xdf\u007f\x8b\xea\xfap\xf4j&鏁\xd1v\x00\xa3\xa1\xd5\xed~\x81@?\xb4.\x01p\xcd;\x12Q\xe7G;|\x84\xd2W;-\x06˵\x90\xf8K\x9ae\xab\xfa\x90\x05Bu\xd5\u007f\xbaښMd\x87\x9e\x03ܚgϏ1\xa4\x8c\xff\x16\x81֭\xf4\x857b\xd3d\x11N\x05\x81i\xecC\xfa͡cH\xbf\xd99\x86\xf4\x1b?\x86\xf4\x9b!\xfdfH\xbf\x19\xd2o\x86\xf4\x9b\xd6\xf8,\x1csC\xfa͐~\xb3>\x86\xf4\x9b\xe01\xa4\xdfl\x1fC\xfa\xcd\xce1\xa4\xdf\xec\x18C\xfaM\xf8\x18\xd2o6\xc6o-P6\xa4\xdf\xfcV\x03eC\xfa\xcda/\x0f\xe97{ǐ~3\xa4\xdf\f\xe97\a|{\xd0*\x86\xf4\x9b߶V\xf1\xe5H\xbc\x1e\xfd\x9b\x82^\xf2\x19'\x13)\xa6э\x9c&\x18\x9bf\x89KW\x11\xb3\xa8\x90\xba\x9fʸ\xbe`\xbdѧ\xd7\xf7\xcc\b\xba\xec\xd6^\xc2\xedSh:\xfb\xa5\x846\xb18<\x82\xee\x1b/\xa9\xf3B\xd8\xffW\xc7\xcf\x1b\x81s\xeb\xd7:\x9c\xe5\xc7\t\xd2\xf0\x88\xf9!\xd1\xf2:\xf6\x1d\x9a\xf0\xb4-R\x1e\xad\x95\xf5\x8d\x92\xc7\xeb'\xd1\xd1\U0006724c?UT|gD\xbc\x19ێ\x80\xbd\x11\r\xdf\x16\u05ceQ\xac\x1b\xb3{\xa4\x98\xf6\xcexv32\x1dc\xf6nIJ7\xa2\xd2\x11P\x9bq\xecΈt\x04\xcc:\x86\xbd-\x1a\x1d\x01\xf4\xf2\x81駋D?b\x14::\x00\xd3KY\x8d\xf5\xa5F\xea!.\xf1\xf4v!A-D\x16\xc8\xe3Z\xfc\xed\x1d\xe3,/ss\xb0\x95aLlY嵆r\f\xcfs\xacd\xb7!&\x03\x96\xa5\x80\xd7\xd1Q\x96\x857\xe6\xc2&b\v\x8a\x96\xbc*\x93\x04 52\xa9\xd1\xd7/\x10\xe2\x1f\xc7՚\xab\xdb\xf6_\x86љ\xbd$\r\xad\xa3?\xfe!b\xbfí\xaa\xa8\x14\x83\xfd\xe9\x05\b7\x10\u007f}S\v\xe2\x05z\x9c\xb3\xe1)\xd2\tv\xa4\x12\x90\xbf\x8a2\xc6\xcaߞF\xb0\x96\x10\x10#\x17cS\bz\xf0\xc4^\xa9\x03\xbb\xd3\x06\fn\xa2\xb0\xb05e\xa0\n\xfeǸ\xc0b\xd3\x05\xa2%\xd5Ӥ\tlO\x11 ,\xce\xd7\xd0/=\xa0oj\xc0\xa3\xdd_VǼ{\xdeH\xddǫ\xd9ד\xd6+\r\xe0i\xd0\xd1?\xf8\xfd\x89\ue24c\xdc\xc7\xf8p\u007f\xafP\u007f|\x98?.Ŀ;\xbc\x1f\xe9\x84\xef\x15\xda\xefA,q\xce\xf7H\xc7{_\xa7{O\x87\xfb\xee\x10~\xe4\xc6=\x81\xa3}\x87\x93\x1d\xdd\xe5\x11 \xbb\x1d\xec}]\xe5\x8f\xec&\x8f\r\xbc\xef\x0e\xba7\xc2\xe7Q\x8apG\xc0=>t\x1eM\xbfq\f=\"x\x10Ɋ\x19g\x9a\xd1\xec\rdtu\x03\x89\xe0i\xa0V\xb3v\x89Ju*\x95\x05f\xed\xe4\b\xd7l]'\xb8\xa0\xee\x86\x89\xf9n\x8b\x04\xfbo\xfc_\xc4=\x113\r\x9c\x9c0\xee\xf7\xfe4\x9c\xe79ý\xf6\xd6T\x87לݗ/<\xe8\xe0Z\xc6/α\x82.%\xa5\x9eʓ\xe6\xc0?\xb6+́\x9d\x95\xa1\x9e\xec\x96;\xcd:\xe4\xda|;p\xc3\xea\xeb\xb5^\xe2\x9c=\xc7@\x8f\xae+\x96\xff\xed\x13Qd\x12\xd4\xde\x04\xa8:\x9d)\x10\x85\x9d\xc9O\xedT\xa6@\x88\x1d\x89O\xddiL\x81p[IO\x11)L\x9fԛ\xf8HiK\xbbS\x96H!bl\xec\xa8t\xa5\xc1R:h\xecNK\x1a,\xa5Ok)}\ued80f9\x88R\u007f6f\xc0\xfd\x82%\x8b\xa6\xb6\xc1rPD\x94\xf1)\xd4F\x8fpS\xea\f\xb6=\xed\x055\xbf!\xcb!\x82\xc2\xc2\xdc\xde\x1d>\x9f\xb5\xde+u\"P\xc0z\xa9\"\x94\xbc\xb9\xbe\xf9\xe5\xfb\x8b?_~?&\x974Y4[=qB\x03\xc5\x1a\xf2\x9a\x05]\x02\xa1\xa4\xe4\xec諒\x99\x90\x9cT_9}\xa6;\xc8#$\x87\xe1,\x01\a\xbd\xb5)\xdf3\x85\rq\x10\x86kQ \x14\x84^\xfeږ%\xe4\xd2\x00\xb1\xfa!ʝ\x05H s\xb6\f2T\fL\x9b\xffChZ5}0\a՜\x12&8\xa1SQ\x06\xb1\xc6\x05\x10\x0eڜ\xe0\xca/%\xb8j\xf5\t+\x15\x04]\v8-\xf1:\xb3B\xb2\x9cJ\x96\xad\x9a\x13\xa4٘\\\v\xafq\xaf\xc2t\x81&\xea\u07bc\xbf\xbc!\xd7\xefoI!\xb1ՒͶ\xc1\u007f\x0fܨ)\x98m\xb1\x9b\x9c\x8e\xc9\x05_Y0\x96K3E\x8c\x9a\r\x1a/\xe5\xe3]\b\xd6\x1e\xbd\x9a\xf4ک\x1f\r\xd31p\fv\xb5 S\xc6\xd3(k\x04\x1e4H\xc3\xccݎ?\xdbm\xe9f\xf2\x9f\x1d\xc1\xda\xe8\xc6լy\xfb\xab\xfe\xbcH\x96\x98\xe9\xfdE(}\xed\x98O\xfb\xaeZ3\xdb`\x88\xa8r\xe5T'\x8b6g4\xea\xbb\xd25\x83\t\x87\x9c\n\xccӵ)\xae\v\x16\xecf\xfe4\a4&\xa1\xa4E\x97\x8fIAk&7\xfa[\x9d^l\x1b5\x86\xfb~,kvʺYl\xda\x10a1N\xa8-:\xbb\xf3\x1e\xc4\x14\xfc֥[\x86\xd3%\x94\xdb\x1a\x94\x19Hi\xfbwMó\x8f\x15\xc8%K \x98\b\xa3y\\!\x85\x16\x89\b\xbeO\xbf\x9dXဠ\xd7ݺw\xdfE\xd2\xd2\x0fo&g\xe4\xf6\xf5\x04\xaf\xb4\xbey};\xe9\x93]K\xc8\xd1\xed\xeb\xc9\xd13!3\xc6\xd53j\xabFAo\xfa\xad\v1i\x9e\xe7\xc2\xff5\x1f\x9a1\x12F9-Fw\xb0\nP\x1ccq\x13\x81\x99\xcd\xe9\xdaE\xe7\xf4Єd\t4e\x9fI\x8d\x9cc\"\xf5\x9c\xba\x8b\xe5r\xb1\f\xf2\xa3\xa0\x19\xe5a\x03O\v\xc1\x8c=\xe2Z:7+\xe8\x02\x80\xee\xbcs~\xa8\xa0\x1b*\xe8\xaa1T\xd0\r\x15tC\x05\xddPAw\xe0\x18*\xe8\x86\n\xba\xc3\x17:T\xd0\r\x15tC\x05ݎ1T\xd0\xed\x9d\xcfPA\xb7k\f\x15t\x8d1Tе\xc7PA\x17\xf8\xf2PA7\xe4\x85\xee\x19C\x05\xdd\xe7\x9c\x17:T\xd0\xed\x1a\x9f{\xd6\xecPA\xf7\x99x\xe9\xc9PA7T\xd05\xc6PA7T\xd0Uc\xa8\xa0\xdb:\x86\n:;\x86\n\xba-\xe3\x1f\xd7R\x1a*\xe8>/K\xe9s\xb7\x05\x86\n\xba\xa1\x82.\xe8\xad \n\xf3W\xf2\xc7Vl\x1d\xbf\x16yQj \x1f<\xa0\xea@\x85\xe5\xa7b\x86p\xa3h\xeb9\x9b\xa4'\x82\xcfؼ\x94X&un\xeff\x1f%va\xa3\nC\xa3jv\xe7O\x9d敱\x9c\x85\x14љQW\xa5M\xa2\x95\x9c(\xf9\xdaO\xba\xf6\x92\xad\x05\xd5\x1a$\u007fE\xfe\xe3\xe4o\xbf\xffut\xfa\xcd\xc9\xc9O/F\xff\xf6\xf3\xefO\xfe6\xc6\xff\xf8\xa7\xd3oN\u007f\xf5\u007f\xfc\xfe\xf4\xf4\xe4\xe4\xa7\xef\xde}{;\xb9\xfc\x99\x9d\xfe\xfa\x13/\xf3;\xfbׯ'?\xc1\xe5\xcf\a\x029=\xfd\xe6\xeb\xc0\x89>\xaa\xc4j\x1f\xc0\xef\x91V\xeah\x1e\xb2\xe6\x9c>\x18.\x1a\xba\xfd\xb9(\xb9\xb6i\xa1\xf6TW\xc4o#\x9f\xcfq\xe1\xffS\x9dD\x12/\x82]\fx8\x90{\xc7p \xc9\xf1\aG-\xebG\xd2*6\x8fx$\xbd\xa0\r=\x93W3R͑)\"r\xa6\x8d\x95>\x13\xb2Y\xe9\x1a\x9a\\\xcat\xcb\x14ul\t\xb3\xb7)\x16%G_7ߨ#\x12z\x01\xf2\x9e)trQ^\xfb\x14\x90a\x8cR\x981\x1e\x9c\x96\x81\xaaf\xb0\xc7\xf9sdU\x11/)HJ\xc9\xf4\xea\xb5\xe0\x1a\x1e\x02l\xf26\xd1\xdf80D\x146\xdb\xd5\xe78\xd9\x14\xf1\x10f[r\xac\xea\nސBd,Y\x9d\xfb\x05!\xe6\xe1A\x9f\a|\xfb\xb0/j\xaa\xee\xea\xfd\x87\x911\x19\xeam\xde\xf8\xfeS+\x8b(\x99'\x92-Y\x06s\xb8T\t͐&\xfb\x98\x8a\x17[`\x06\x9e,\x83\x02)2E\xee\x17`N.\xa1f\x8d\xe8\xb0H('s\x1a\x9c*\x94\x9b\x1d*\xfc\xc4\f\x99\x19.\xa0\x15)\xa8\x04\xae=\xf8P\x96\x88E\xd9S!2\x97\x13\x9f\xad깻\x02\x14.~\xe1p\xff\x8b\xf9v\xb0{>\xa3\xf3\xaa0F\x81\xde\xf0\xd6\xc4N{\xdb6\xd9t\xeb\x12\b\xcd\xee\xe9*t\xba\xf7\vX\x9f\x1fS\xaf\xc8\xcbS<\x9bT\x91ꋡ\x9c\xf6\x0f\xa7\x187|}1\xf9\xe5\xe6\xaf7\xbf\\\xbcywu\x1d\xc3\x16\xcdNAХp\t-\xe8\x94e,\\\t\xdb\xc8fj\x82B1\x94\xa6\xe7\xa9\x14\xa1\x89\xb1\x88eYr\xce\xf8\xbcQ_\xdc'W\xb9\xd9\xf6\x02\xc9l֞\xec\\R\x1e\x9e\xb58]\xad\x11\x83,\xb9f\xf9\xb3\x15\xe6дoQ\xceE\x9aB\xdaBE0\xbc\xc7ɾ|\xed\xa7\xb0\xaa;nD\xc0$d\xf2\xfe\xe6\xea\xff\xadQ⪈O\x16{\xe6:\x06B́鹫\x1fl\x85ᰯ\x9d\xe3K\xaaO\xa9\xe4y\x9fx\xfa\x87\x92\xb7\xbbn\x15\xb1R*\x17)\x8c\xc9ĊdPmX\xf1\xad \xa8\x04b\x00r\xcdh\x96\xad\x88\xb1ޖ4\x03\x9b\xc0\x8f\xb5s\xc1\nVw6Ռf*\x90=\xc7\xcaU\xa3\xb8\xbc3&j\x8f\x9d\xab`\x90\x14\xb8\xd0\xce^\x8e\xa0{1CX\xc4\xda̍\xa4\xb5\x96\xfc\x8aP\x0ek\xb1ʔ\xc7\xf4\xa4\x9a5FD\x02a\x96\nT\xb7X\xad\xac\xe8\x88\x1c\x10\t4\xc5\xdaނ\xea\x85ͪȩ\xba\x83\xd4\xfe\x10\xa5\x15;/\x83\x9dm\xb5\xe8\xdbU\x01d\x06T\x97\xc1\xa1\x19Ԇm\x8e\np:\xcdB\x1d\x18\xd1\xed\x13h\xfa\x9eg\xab\x0fB\xe8\xb7U)j\x0f\xb2\xfd\xd1\xd94\xedȅQpC\x19\x03\xcem\x84\x1b\x87l\xa0Q)\xeb\xa9-\xd4\x19\xa3\x9e\x93\tȒ_\xa8o\xa5(\x03E\xfa\x86j\xfd\xed\xd5\x1b䅥\xb5?\x80k\xb9\xc26\x00ጠ۾\"?\x98s\xe7NZ\xa8\xca\xe2Y\xc0\x8c\x94\\\x81\x1e\x93wtEh\xa6\x847낭\xd9\tf\xf95\xfd/ct\xcfY`d*t(_Y\x03\x87,`\xf3+\xa1\xbe=\x83L\x1b\x90\xad|qf~kPC\x81\xd2;P\xa4\x90\x90@\n<\t\xa4\xd5Fl\xf5O\xff\xfc,i[H\xe5ׂ\x1b\x06҃ίx\xca\x12j\xa5\x1c\xd5m:\rUTJ\xa5\xbdMN\xb1\"\x1a\xd9G\xa9@b\v/-K\x88\xd9\xea\xef\xca)d\xa0\xad\xcb\x02\xbbwQm[\x0f\xb0\x9c\x06\xdf\xeeNu%ڴ \xc0U)\xc19\x855I\x05\xc4䗹E\xffp\xf5\x86\xbc 'fէH\xea3\xca2,\xf9\xd34\xf8\xa2\xf45\x8f\xc7\xccO\x0fQ\x89'\x9e\x04wqB&|F\xb8 \xaaL\x16\x1e\x97L\xf0\xca\x1d\xe4rk#\"k\x1b\xccg\x1b;\tu\xb7\xd7\xcc\xe7\x1f\x87\x9d\xf4\x12}?(\x90=%\xdf\x0fO.\xf9\xe2\xddJ\x86\x9f\xb4w\n\xd9\x00\xc9AӔj\x1av\x1d>B\xe4\x8d~1\x03!\xaf\x01\xfd\xc2䢂\xef\x19/\x1flrk_\xe7\xea\xcd%\x02#.xb\xed\x84P\x81S\x14\x19\xb3-\xf2\xd6:A[F^\x85\x13{\t\b/Ӑ\x91\xd3,\x13F\xa8\x87k\xfe\x94\xa7\"\xdfX\xb61\xe6\xa0\xd5G|\x8c\x1c?\x14\xfep\xacj\xa0\xbd\x8eU\xbc\xfb:\x83%\x04\xb7?\\\xef\x8bn`\x18\xa3\xce\xd3\t\x02\x8d\xf0\nft\n\x99U\xbe\xec)Q\x9b\xa7$\xd2[\x18\xe5j\x94\"\xeb[\xa2\xf8Ad\x98'J+\xe4\x18\xa0\xbf\x01\xdc\xe0\xab\xfdp\x83^\x9a\x16n\"\xbdɟ\x1bn\xca`\x8d\x8b\xac\xe3\xc6(mm\xdc\x18\xa0_\xe7\xc3|/&\x9c'\\\xf3?_@I\x11\xd1\xc0S\xc6\xe7\xe8ݏi\x06)!\xa3Xx\xea\x18֝u\xfc\x1c\xe3\xa9s\x13\x8f\x00\xeb\x0f\xa9\xdf.ԍ\x99\xe0n\xf6\x82\a\xa7\x00\x12۽\x19U\xcf\x19\xf28ú\x8f\xbe\xf7\xe4\x15܃\xf9SK\xe6#\xbb\x86\xca\x17\x18\x13C2\xe3\x8e\xf1\xd4U\xf4\xb4P\xee\xdcK1\xa7\xccZOc\xf2\x11\xdb\xf6{6F%\xbc\"\u007f\xe3\xa4By\x04\xe8ў#\x1cs.ܑ\xda8\xc2\x1f\xacy\x16\x17>\xb1\x93\xdd\x19\x9e\x8b\x80藾>\xd5\x1f8\x9e\xb6\xf0\xc4U;M.: \xfb]\xdf\xe2:\xe8r\x06\x84\x06C7\\\a\x9f\xcc\x190\xcf\x15}-\xcd75\xa3\xd9M\x11\xda͛\xac\xd3\xe2\xb7\xefn.\xda\x00\xe3Z7\xdf\xe3\xcd^\x06\xd7\x06\"\xa1iΔ\xc28\x05L\x17B\xdcE\x80<\xf1)\xd4s\xa6\x17\xe5t\x9c\x88\xbc\x91M=Rl\xae\xceݙ\x1c\x19\xbc\x9cF|\x83\xf1\x8c\xf1F&\x05\xde`\xe5|\xe0f!\x11 \x93\n\x9bHp\xeer\x10\x97\x04\xb9\x89\xee\xeb\xb8\"~\xec\x85\xf7\xacJ\xcb&\xe9]G\xb5<\xdcC~\x91\xf8p\xfd\xd2\x1b5\xf1\x96\x10\xeb݈\xd1C\xcd\xfeY\xe3\xf3y\xbdZ>(\xf4\b\x18\xc6\xe0\x90\x03e8\x99\x13'>\xf1&\x134%\x86\x87\x06@\x15\x92\xdcS\x99\x13J\x12\x9a,\xe0̖[\xa5\xa5\xc4\xf6\xfa\x1ah\xba\x1a)\x1d\x16\xf74\xaa\xb3\xf3\x06a~i\xf2\x8c\x8d\x1e\x86\xbb|\xb6\x8f\xe1.\x9f\xe1.\x9f\xc6\x18\xee\xf2\xa9\xc6p\x97\xcfp\x97Ͼ\x97\x87\xbb|\x86\xbb|v\x8f\xe1.\x9f\xe1.\x9f\xce1\xdc\xe5\xd3\x1c\xc3]>\xbb\xc6p\x97\xcf!c\xb8˧9\x86\xbb|\x9ac\xb8\xcb\xe7\x901\xdc\xe5\xf3\x0fܡz\xb8\xcb\xe7\xf3\xeaP=\xdc\xe5\xb3k|\xee\xfd\xbb\x87\xbb|\x86\xbb|\x86\xbb|\xf6\x8e\xe1.\x1f7\x86\xbb|\xbe$\"\x1a\xee\xf2\x19\xee\xf2\x19\xee\xf2\xf9G\xb5\x94\x86\xbb|>/K\xe9s\xb7\x05\x86\xbb|\x86\xbb|\x82\xde\n\xccmLY@\xd7\xefC\x9a\xd9\x05wo\xf7\x8d0\b%\xd3r6\x03\x89\xba!\xcel#\x8f$\x00\xaco9\xec\xb3\r}\xbe\x87\x02}\x86\xdd\xf3l\x91K\x88\xf6\xdf9%\xdf\xcd㞮\x14\x91\xa0\xc2\n\xbd\x18'\x97\xef\xdf\xd6\x06Ux\x17\xbe\x986D\xb8\x92\xf7<\x89\xcdg\xad\xb7\xbe\xa3\xdc-\x04\xa36\x81,Ʉ\xb2\xb9M\x16\xc5ɂr\x0e\x99\xb3?\x82\x92{\x16T\x91)\x00'\xa2\x00n\x8b0(Q\x8c\xcf3 Tk\x9a,\xc6f\xf6!*\xb2\xdbv\xd7\x1e\xbd\x9e\xa5\xd2\x12hn\xb7_B\x1e֘\xdeL\x8f\xd0D\n\xa5H^f\x9a\x15\xd5\x04\x89\x02\xac\xa3Q\xa1\xa9\xbc~S1A\nl\x1a\x8f,\xe1\xac^\x81EJ\xc84\x9b\rr\xd1B;\xc3{9\xf2B\xaf\xaaL_ 3&\x83\xaa;\x93\x8c\xa1!\x80\xeb\xb5\xcd\x0fp\x8egh\tjls\x8e\x18\r\x91%\x16\xa5\x96C\x8dQ$\xdd\x14?\x1b>c\xf7rc\x8a\x8d\xee\xf9uZs\x88\x86\xe4\x99\x1dvL\xf5\xcc\xe4\xacyI\x8b\xaf\xbd\b\xf22`:X\xcd4\xdd\xfa\x91\xf49,\xcdه\x04\xd82\xe4\xec\xd3-\x9c\xefI\x19\x9f\x06\x993\x8e\xb9\xc4\xef@):\x87IP\xd8j\x9bA\x87\x91\xab\x9aD\x82Tz,\xc3բ\xa1Y\xd5i\x93Ǫ9\xe5\x00\xa0\xb9]]\x95#\u007f/\x99ր$\x8b\xad\x8e1N\x1f\xa4\xd3oL\xac\xd9r\xf6\x9d\xff\x9c\xfdL\x88\x00T\xa8\xe7\xf0\xd4\xe6\xccO\x81L%\x83\x19\x991N3\x97Cx\x86\xad\x10Ch\xcb:C\x942ƾ\xe0>E\xcdceL~\f\xaeuײ\xe4\t&0\xba\xba>,!g32ǼFi\xf3\xdc\xff\xf9ſ\xfd)\x00\xe8tetR\f\x92k\xa1iVm[\x06|n(\xca\n\b\x9a\x85x\xee\xea\x82\xe0j\xf7\xf1r@\x8b\xe0\x97\u007f\xb8\x9bF\xa9\xeaZ\x90\xf3\x14\x96\xe7\rz\x1ceb\xdeu\xed\xe2\xe1jr\x84a\xddq\x84\xf1\x16\x9f\xc8C\xec{\xab\x92\x85\xb8\xb7M\xc4{\x9d\xb7:%\xbe\x10E\x99\xd9`\xc6۪\xbdBXO\x9b\x8d\x12\xd5N\xee\x15f\x9a\xfbi\xad\xc9\x1b\x97\xac\xeb\x97\x11\xb4v\xac]sN檥j)aL\xde\xd2,\x9b\xd2\xe4\xeeV|/\xe6\xea=\xbf\x942\xa8\x1f\xaaǙ-ѡJ\x93dQ\xf2;{\xb7\x99\x9fz&B|2\xa2\xd4E\xa9}\xd9O\x03\xa3\xd5\xdamә\x90\xa3a\xd5!\xa7\xba4f\x06\x0fx\xea\xee\x999ʜ\x80Y}\x8807|!\x13\xf3jΪy\x90\xff\xf0\xe2\x9f\xff\xd52\x90\x90\xd5K\xf2\xaf/\xb0\xb8@\x9dY\x81\x83\xd2\xdb(\x8c9\xcd2\x90\xb1\xac\xc1\x90x\x17+xRN\xa0c\x0f\xfd\x13\x98\xae\xb7\xb7\u007fE\xbb\x95i\x05\xd9\xec\xcc\u058b\xfaF\xf8\x01 \x8fQ\xb5:v\xb2\xd0\xe8\xef\xcfm\x1c.EV\xe6\xf0\x06\x96,\xfe\x8e\xdf\x16\f_\r\x931\xa5\x89\b1i\xa6\x99H\xeeH\xea\xc04r\f\xd7/\x18:\x1c#\xc1y\x94[\xd7ո\xac\x91\x92\x9c\x16E\xa8s\x18+\xf8$\xbdo-\x13\xb9\x05v\xb8\x89r\xe6\xc6F8\xec\xc7Ôa\xfff\x03?5\x18\xbf\xe9\x05\rnHO|=\xceFg\xe2\xaa\xfd\xb9\xfdN0\\\xaf\x0f\x99\xddB.\x1a\xea|\x8e\x0e\x04\xc4䗶0\xcb+\x1fzN\xb5\xb3\x13\xa2\"HHu\x05HŔQ,>\"E\xbf\xce(˝k+\x18bx\xc8)\xfa>\x8ep_\xfd\xa8A\x93A\xaf\x05\"\xb7G5zH\xb6\xa5e@x\x9fJ,o\x9e\x88ԁA\x96jo\xbe1\xc6`\xe0\xe6o)\xee\xeb\xa3\x04\xf4c\xce\x1fkܴy\xb3\xf9%\x8a9[\x88\x9f\x88%\xe3\xb4{sd\xe4\xc5n\x01\xfd\xbav4\xdd\x1b\x8e\x80\x1a\xe6\x8e\xf3*\x8cm\x8eG0pC1nj\xe4\xf8\xd5\xf1\xb3\xf1e\x8bd)\n:\x8f\xb8\x01u\r\xd7\xeb\xc0H\n\xd6\xc0\x88(i0\xe6(\xc2S\xbe\x05)B\x85\xb4j\xcd\x15\x01\xd2\x16b\xd5\xf2ԛ,\xb6\xef\xc3}p\xce7!T\x8a\x92\xa7֧^\x87Wޭ!\xe2Z\xf0\xf0\xe92U\xb5\xd64\x8a/\x83\fK\u007f\xa7\xa0\xa9\x91T/\xc7/_|9\xe2\x1bװ&\xbe\xa3\xfa\x1e5\xf8ҳ\xad\xde߃\xd5\v\x03\xef\x9c۱\xbe\xb8\x8a\xc5]7c\xe73\xba\x97LC\xe3v\xef\x134\x8d\x8c\x85\xdb\xe8\xf6s\x1a\x9e]\xd0\xf3V\xbc\xf8{A\bQ\xe5\xf4\xd1\xf9\xbde\xd4\xc1X@&\xd3\xe5\x91V\xb1\x10;DE\x13\xd5G\xe1m'O\xecL\x8e\x15v\x1e\b\xde\xea\xe8\xe3\xe0\xb6\xe9\xf2\xa1\bn(\xdeڪˇ\x82\xa2\u07fbh\xefY0\"\x9c0\u07beg\xb1\x10;\xf6\xecϰ\xa0\xcb\by\xa6X\xce2*\xb3\x95\xd9\xec\x1b\x8bA2-5\x01\xbedR\xf0<\xe6\xfe\xd3%\x95\x8cN3 \x12\xb0\xc3N\x02\x8a|}\xf2\xf1\xe2\x03f\x16\x9d\x1a\xc9\x19\f\x13\xfc\xae\x94\x8a\xf1\xf9\x06\xf57\xa6ۏ\xb7\x1c\x1dm\x10\xb0Nj\xa1\xacpI\xcc\xd3\n\xafFc\xc8K]\xdaKC\x1f\x92\xacTl\xf9\\\xf2\"\xceJ\xab\xb4\xdd߀\x91\xe6\x1a\xac\xbca\x01\xfca\xad\x8dLMp\x1b\xddZ\x02\xc3\xc1\xa8\x94\xd5]\xbe:S6\x828\x84\xbf\u0530\xd9\xd8\xd59\x93]/)\x9b~\x1e\xde\f|#\xb5\x06;\xf9=\xaf[9\x8cz\x03(0\x90\xf6B\xa8\xce\xe5\b\x1e2\xe5\xb6Rj\xdfs\x8d\xb5\xad\xbf.\xa7\x0f\x98\x80G\xf1@\x1e\xb421\xb3I\x11\x1f!\x03)\xbcи\xa7LW\x95\t\x8c3\xfd:\xec\x16d4Tl\xff\xb8C\xb6;`\xa3\x0f܉\x83\x1e۷M\xbb\xc9i\a\xf9\xec\xf9\xfa\xf6\xefn}\x91\xf1$+Sx\x9d\x95J\x83\xfc\x00J\x94\xb2\xc3ÿ\x16\x1d\xed|\xa7Qtp\xefB)\x89}d\xa4\x12Qt\x1czY\xbfZ\xe9\x14nB\xa9/,\xc4z\x15k8W\xdd\x17\x94\x16\x12:\x13\xa1x\x99ek\xe9\xef\xb2\xdc \x15\xf3\x94\xd1\x10:3\x83\xb7k\xea~j\xc6DS\x05=\x10M\x8d\xc7\xed51*c\t\xba\xb1\xb9\xff\a\xfb_f\xb6\xee\x13\x1b\xeb\xb2;g\xf3l0y\x11\xa3\x8bg\xd8\xeb\x9b\xd7\xf0m\xbd\x9c\xfd\xec\xfa\xa2\xb7\xb8\xd1v\x1c\x91\x03дIk\xfe\xf3A\xa4T?\xbd\x86\"O!\xfb1\xb4I\x1cM\x1cՔ枛\xd2\xe4\xae,>\a\x84\xe1\xb5?7\x90\xa1\x1c߉\xac\xef\x9bOZD\xe5\xa0\xe9\xf2\xe5\xb8\xfd/\xc6Fe\x99\xc6,\xd4\x0e\xd5\xe9\xdef\xd2\x19<\x19\x15\x82\xf1\x94-YZҬEe\r,\xd5\xc8\xc4\x12\x05\x96m\x1a\xe7\xd8$̽\xdd\xc2)\xf1\xe9PAgp\x97w\x14]%F\x19v\t\x91]L\xb4\xed\x80[{\xc1b\xce\xc5\x1dݭK\xca\xe3αf\xa3\xc9o)]\xbcu\r`\xfcS\xb8ދ\xeb7\xdd\n\xc8\x0e\xe7uk\x92\x17;&\xe2\xceD\xb5\xbd\vZ\xb9E\xb7IM̔Wg\x84\x92;X\xd9\x04J\xca]\xcbL\x0f\x02/mq\x02\xfe\x0el\xaa\x82}\xaf{\xe1\xfb]\xd6w\xb0\xc3\x1b\xd4Z\xae\xf9\x9e\x0f\x00\xe3\xba\xcd\x0fU \xafZ\xaa\xbb\ak\x97<\xde\x11\xad;@\xfa{\x8c\x1c8\xed\n\x81\x12\f9\xd9\xed7s7\xd6\x1aށ#\xb8Z\xb0\x02\x8bpv\xcc\x1a\xef\x00\x9eylW7\xa4X\xe0\x96\xa2\xae\xf8\x19\xb9\x16\xda\xfc\xcf\xe5\x03SZ\xedi\xfc\xfcF\x80\xba\x16\x1a\x9f\xed\x85\x12;\xa9\x03\x11b\x1fF\x02喷a)\t¯\x96w5s\xb7H\xd8\xf5\xedX\x04S\xe4\x8a\x1b&\xe3V^u\xa8V\x0e\xb8\xaf\x17\u208f\x90#y\xe8;\x80V\x9bƔG\xa5\x90-|m\xf9\xd0\x0e\x98S \xee\xf3\xe8õ\xef`zn\x91\xd1\x04R\xdfۖ\x1a\\P\rs\x96\x90\x1c\xe4\xce;\xaf\vç\xb6o\xdd\xde0\xd8A\xcan_\xd5\xf4\x0e\xba\xdf\x1b\xed\xde\xdeh\xc5\xd5\xf1{\x14p\x9d\xab\xa7\xa9\xef\xc89\xd9ß\xf6\xe0gSf؏:AK\vC\xd9\xffc\xd8)\x12\xca\xff\x92\x822\xa9\xc6\xe4\xc2U\x12t~\xb3\xf9\xbc\xd3<\x9a\xa0\rT\xa6\x88\xc1\xf9\x92f`۶QN\xc0\x16\xc5v\x82\x14\xb3\r\x89f\fm\xa1,\x17\xafB\"Gw\xb0::k\x9d\xbcm\tlGW\xfc\xa8ʲo\x9f\x03/gl{\xe0#\xfc\xb7\xa3\xf1\x86\x10\xec\x04\xbbS0\ue808\xad\xffTi\xba\xeflb\xcd\xfa>\x1fF\v;\xe8`\xa3\u007fM\xf3k-Bh\xaa\xa5-\x15~\xf3sT\xceAw)\xfbNW\xc50\xfb\x98\\\xf0\xd5\x06\xd4\xee2\xeb\xcaD\xaa(\xaah\xb5=\x17\xd2%r7\x01\xb9\xb4\x19Es\v\u007f}O\xb6\"\x1d\x05\x9d\\µHa\"\xe4f\x86A;Ұ\xfet\x87U\xd8X\xba\xc8R̙\xc6G7\x16\x8az\xa8\xd3A\x1fDŽsߝ|ܽ\x8a\x0f\xd5c\xbb\xa7O\xb1\x9f\xafۍ\xc9\xc7-+P\x9c\x16j!49Y2\xea\xaaND\x99\xbaN\xf0r#F\x11\xb96\x95, -3\xe8\xba,d\xa3\x81\x8f\u007f\xd0ka%g\u007f/\xdb\xf7\xa6xύ{z\x93\xb0k\x83\xac\xc8JI3\xf7g\"\xb8\xe5\b\xea\x15\xf9\xe9篈\xc3\xc0G?\x0f\xf3\xe3\xff\x0f\x00\x00\xff\xff9\xa7\u007f\xb0\x93\xba\x01\x00"), + []byte("\x1f\x8b\b\x00\x00\x00\x00\x00\x00\xff\xec}\xfds#\xb7\x91\xe8\xef\xfe+Pr\xeaI\xba\x90\x94\xd7N\xf2r[Wϥ\xecj\x1d={\xb5\xaa\x95\xbc~)\xc7\xe7\x03g\x9a$N3\xc0\x04\xc0P\xe2\x9d\xef\u007f\u007f\x85\x060\x1f\xe4\x90\x1c\x80\x92v\xed\f\xae\xea\xe2\xa5fz\x80F\xa3\xbf\xd0\x1f\xb4`\x1f@*&\xf8KB\v\x06\x0f\x1a\xb8\xf9\x97\x9a\xdc\xfdYM\x988[\xbe\x98\x82\xa6/>\xbbc<}I^\x95J\x8b\xfc=(Q\xca\x04^Ìq\xa6\x99\xe0\x9f\xe5\xa0iJ5}\xf9\x19!\x94s\xa1\xa9\xf9Y\x99\u007f\x12\x92\b\xae\xa5\xc82\x90\xe39\xf0\xc9]9\x85iɲ\x14$~\xc1\u007f\u007f\xf9\xc5\xe4\xab\xc9\x17\x9f\x11\x92H\xc0\xd7oY\x0eJӼxIx\x99e\x9f\x11\xc2i\x0e/\x89\x04\xa5\x85\x045YB\x06RL\x98\xf8L\x15\x90\x98\x8fͥ(\x8b\x97\xa4\xfe\x83}\xc7M\xc4.\xe2\xbd}\x1d\u007fɘ\xd2\xdf6\u007f\xfd\x8e)\x8d\u007f)\xb2RҬ\xfe\x18\xfe\xa8\x18\x9f\x97\x19\x95\xd5ϟ\x11RHP \x97\xf0=\xbf\xe3➿a\x90\xa5\xea%\x99\xd1L\x99?\xabD\x14\xf0\x92\\\x99Y\x144\x81\xf43B\x964c).\xd1\xceK\x14\xc0ϯ/?|u\x93, \xa7\xf6GBRP\x89d\x05>\xe7\xe7G\x98\"\x94|\xc0\xf5\x99I\xe0F\x10\xbd\xa0\x9aH\xc0\xa9p\xad\x88^\x00\xa1E\x91\xb1\x04\xbfB\xc4́$\xd5;\x8a̤\xc8kXS\x9aܕ\x05тP\xa2\xa9\x9c\x83&ߖS\x90\x1c4(\x92d\xa5\xd2 '\x0eL!E\x01R3\x8fX3\x1a\xa4T\xfd\xb6\xb6\x86c\xb3H\xfb\fI\r\U0004076a#\x01H\x89B\x04\x101#z\xc1T\xbd$\\F\x03,1\x8fPN\xc4\xf4?!\xd1\x13rcv@*\xa2\x16\xa2\xccRCqK\x90\x06%\x89\x98s\xf6_\x15de\x16h>\x99Q\rn\xa7\xfd`\\\x83\xe443\xdbS\u0088P\x9e\x92\x9c\xae\x88\x04\xf3\rR\xf2\x064|DM\xc8[\xdc\x12>\x13/\xc9B\xebB\xbd<;\x9b3\xed\x0fO\"\xf2\xbc\xe4L\xaf\xce\xf0\b\xb0i\xa9\x85Tg),!;Sl>\xa62Y0\r\x89.%\x9cт\x8dq\xe2\x1c\xcf\xce$O?\xaf6\xeb\xb81S\xbd2\x04\xa5\xb4d|^\xfd\x8c\xa4\xbd\x15\xef\x86\xc4-\xe5\xd8\xd7\xec\xfck\xf4\x9a\x9f\fV\xde_\xdc\xdc6\xa9\x8a\xa96\xce\x11\xdb\rB\xab\x11o\x10\xc5\xf8\f\xa4\xdd8\xa4-\x03\x11xZ\b\xc65\xfe#\xc9\x18\xf06\xd2U9͙6;\xfd\x8f\x12\x94!]1!\xaf\x90\x85\x90)\x90\xb2H\xa9\x86tB.9yEs\xc8^Q\x05O\x8ev\x83a56(ݏ\xf8&\xe7k?h\xb1U\xfd\xecYT\xe7\x0e\xb9\xd3}S@\xd2:\x19\xe6%6\xf3\xc7x&d\xeb\xf0\x9bW&\r\x90]\xc7\xd2\f{\xb6\r\vj\xff\xbe6\x89\xbfT\x8f\x19Z1\x9f/9\xfbG\t\xc8B홄Mv!\x1b\xec\xb49\f\tL\xd6~\xedĠ\x19\xf0\x90de\ni\xc5&\xd5Ι^l<\x8eB\x862nh\xdc0u3]^\xff\x15\x19$혥\xa13\xc6-4\xc28.\xb1\x03\xb3f0\r\xf9ƴv\xac\x89\xa0Ԣ\xd3\f^\x12-\xcb\xf5o\xdb\xf7\xa8\x94tՉ\n/e\xfba\xa2z\xda\x1d\xf3\x8c%\xb8e\xd5aFd\xfc\x9a\xf0\xb0\x10\xe2n\xf7\xda\xffj\x9e\xa8\xb9\x11IP;!SX\xd0%\x13ҭ։\x84)\x10x\x80\xa4\xd4(\x81נ\x96\xc8\x14\x85$\x85Pzۺ\xb7\x9d.Ҕ\xaa\x9b\u007fڊ\xb0\x8d\xf58&\xe0\xb7\xd2,\xaf\xc5\x10\x04\a3\xc7\xdc0\xbf\xfaY)J\xfb\xac\xea\xfc\x02ن\x052\xa5\nR\"\xdc^\x97\x19(\xf7\xa5\x14\x19M}zF[\x00W\x8b\xb6\xb22\xa3SȈ\x82\f\x12-\xe4:\xf6\xf6\xe3Ў\xfd\x9c`\v\xf6:x\x82㞎\x976ف\xd8\n\x93\x90\xfb\x05K\x16V\x8c\x19\x1aD($\x15\xa0\xf0\x90\x18\xb5jս8\xb2{\xaf\xed\xd8qL\xea\xb1\xf3\xc0\xac\xc3\xda<:\xf5\xd8\xcbL걇\xad\xb4qYk\x91\xff4\xa8\xf4\xdc1\x980/7^|L\xc2D5ߨ\xa2\x973\x02y\xa1W#´\xff\x15\xd5y\xb4\x9c\xb6\xa2\xa7\xfa\xf6\xafn#Bi\xfar\xfd\xbdG\xa4\xe9\x03w\xa1\xfa\xf4\xaff\x13\x90\xd9\xdf8^\xdfs\x03\xbek\xbe3\"lVm@:\"3\x96i\x90k;\xb1k\xb9b\xf7N\x1c\x8a\x82\xfd\x92ʌ\x9c\xeadq\xf1`4\x10U;HG<\x94\x14b\xd3\xe5\xda5\x16T\x91)\x00\xf7H\xdbs\xe8\xedx:I\x9b3~\x89\xc0ɋG\x95ˤFQ\xc4\xf6y\xe4V\x1bX\xfd`%G_d\xdf/@B\x8b\x066]Ĩ\xd7q\xa1\x1bvz?D\xdby\x1c+2cR\xe9\xe6$\x15)U\xbf\x8d\r\xda-3\xe3[\x96\x83(u0N/\xeaw[wo9}`y\x99\x13\x9a\x8br\xafе\xc3\xc8\x00\x96W\x97d\x0e\xa3\xf7\x94idP\x06*z*\xb40X/2\xd0\xfd\xf4\xce)\xcc\f\x13I\x04W,\x05\xe9\xafk\xed>1a\x8e\u074c\xb2\xacܼ\xb4\xe8\x1aaf \xbf\x902\xc2\n|g\xdfk\xf8\xd8\x16⾍\x98\x9eK_\xd0%\x106#L\x13\xe0\x89\xd9\v\x90\x96\xc1\xe2\a\x1c\x12\x10%{\xf5\x18;\xfa0c3\x80\x97y\x9f\x85\x8f\xf1\\2\xbeÝ\xd4|\xf8\re\xbb\x9c\x81~\x04m\x93\xa1\xb1\xd8\x03\xf0C\xfd\xee3\x1c\x80\x9a\x19\xecTF\xea1\x05\xf2\x1eh\xba\xf2\xa7\x80jm\xcc@\xdcqAdɛ\\\xec\x91\u9fff\r\xe5\xbe\xffX\xe6\x11\xe3l\xefF\xaey\xb7\x99nj\x1f\x06\xc0\x93i\x1f\x06x%\x8a\xc2\xdd\x1b\x97\xad\u05cdP\xf0J+κ\xa2\x90ޚ\xc8\x14\x8c\x01\b\xa9u\x17\x15\xa22\xf3mhI\xe7un\xe7\xba\xfa+\x13k\x8ePg\xca5\x83\xae\x1a\x84\xde\xc7_i\xc7J\x94\xe4\x9er\xedI\xbbR\xab\nы\xb6\xc3\xf6\xd1\x0e*罟݈\xe8\xf2J\xa3\x0f\xac\x02\xae\xe5\nC~\xfaM\xd7\x0ec\xf8\xa5\"\xb93*BN\xe7p|\xacȫ\xb7\xaf\xbd\xbe`\xd8\u007fo\xeen\a\xb3w\x8c\x85\x14K\x96\x1aU\xe6\x03\x95\x8cN3c`\xce@\x02O@\x91ߝ|8\u007f\xff\xf3\xd5\xf9ۋ\xd3\x00\xd0\xc6(\x85\x87\x82rCq\xa5\xf2Ҹ\xdao3y\xe0K&\x057\xa8\t\xc1\xc3\xe5\x8cP\xb2\xf43M\xaa8(c\xd8dKHG\xee~ĭ \x04\x1f\x96M2^\x94\xda{\x12\xefY\x96a\x94\x15O\x16\x94\xcf\r\x96n\x17!@\x1b\xf8#j\xc55}0sF\x15R%\xb4\x80\x14\xe9\x97\xd0\x00\x90\xa9(\xcd\xd2\u007f\xf7\xbb\x11a\xf0\x92\xfc\xae\xf1\x89\t\xb9pP\xeb-\f\x80\x8c\xab\xe5\xb0\x04iu\\\xbb\x81#\"aNe\x9a\x81R\x86\x03\xdd/@/\xa0\x9f\xd3\xd2\x0e\xeb\xfap[\x06\xde\xebi\xa8\xaf+\x92-\x00pG\x94\xdb]\x15\x929a\xe2,\x15\x89:\xd3Tݩ3ƍH\x19\xa7T\xd3q\x83\t\x9dY\x890v\xd2i\xecm\xbcqE\xacg\x9f˒s\xc6\xe7cZ=\xc5\xf8\x98\x8e\xd5\x02\xb2\xec\xb8\xf7t\x03X\xa7C[\x985\xd6|\xa9\xbf\xab:\xc8P\xb6\xa3\xcd\xdf.*vf\xbf:!WBo\x8f$\xda>*F\x8ex\x9dtr\xbc\x8b\xab\xdb\xf7\u007f\xbb~wyu\x1b\xc6\xe8\x9a,r;\xe3\v\x80\xd9\xcd\";\x18_\xe01\xd9\xca\"ی/\x00\xea^\x16\xe9\x18_\x10\xa7\xdc\xcb\"#\x05\xc7.\x16\xd9`|!s\xed\xc1\"q\r\x010\a\x16\xf9O\xc6\"\x81/#\xd9\xe3wNmo\x1c\xe5j\x9fCD\xb3\x16x\xc7\xcbx\x9bK\x1cD\x1c\xc1\xd8n;\x85\xf8\xf2\x03m_a\xf3\xe62\x03\xe0\x92\x9a\xf4}\xa4*\n\x82\xca\x02\n!\xf8p\xedގ\xdd7\x1b\xddc\xf3\xbe\xc3ŀ\xc7\xe2\x814p1!oݝ.%\xaf~\xbe|}qu{\xf9\xe6\xf2\xe2}\b2H\xec\x19!\xfej\xfe \x94\x1c?\x9eIa\xc7\x16â\x90\xb0d\xa2\xac\xc2s\x83\xe1v\x1eύ\xd3\x16>]\xbc8X\x11\x05r\xc9\x12\xe8\xfeL\xe8~\xf6\xb0\x81\x82!v)\x04-1\x1f\f\xf1Q\xd5\x02;z(\a\xc10\x9f\xc0\x8a\xb2c\xbf-\x15\f\xb2V,\xb6\xa8\v\xc1\x10Q\xbdx\r3Zf\xd6?qt4\xe9/\xad\xed8\x8c\xbd\xbc\x91\xa2\x97\x03\xb99Z,\xe6\xc6&ox\xdf\xe9c0\xdec\x17^\xd7\x12\xaeր\x88\x80\x99\x95\xe0-\x8e\x80\u061cz\xc4\xca3b\xaf\xd1fl\xfe\x96\x16\xdf\xc2\xea=\xcc\xc2\x01\xac#\x1b#\xef\\\xb0\x1a&\x18F@$F\xae\xdbi\x85\xb3\xbe\xc3\xf0A\xfa\xc7#v\x8d\x16.n]\xd4$jf\x06-1\x8b!\x87\x1c ?b4\x17?\xda⺩\xc28\xde\x17\xbd\xac\xbe\xa6G\"x\x02\x85Vgbi\xa4$ܟ\xdd\vygl\t\xc3\xd9\xc7\xf6&@\x9da\x18\xfe\xd9\xe7\xf8?\xd13\xba}\xf7\xfa\xddKr\x9e\xa6D \x1b-\x15\xcc\xcă\xf8D\xc8a?\xea\xc4\xde\x11\xa6\x99\x8eH\xc9үC\x19\xa9\x1f\aӃ(l\x9cף\xd0\xc4\r\xdeN\xae\"L\xda\xf60$U\x9d{c\xda2\xad\xf0\xfc\xe4\xa5\ng\xd5~L!Z\xe5s\xd3BdO\x85Ȁ\xf2\b\x18}\xaf\xbf\xbaF\x9f\xb0®\xd1\xfb\x8a\xack \xad?\x86,8\xae\x85\x81\r\x91\x13\xe1ґԡ\x10/\x89*\x8bBH\xad\xaa\x84\xe1\x899\xec\xe1\xba,i\xe4\x1cO\xaa\xec\x9d\x11\xf9\x8f\xeaG\x8c)W?\x1e\x1f\xff۷\x17\u007f\xfb?\xc7\xc7?\xfdG\xdcWj\x88\x8d\x8a\x0e\x87\x83U\x05$\x13.R0\xecxd\xff\xe9,\x88\xf3\x04\xaf\xf7\xaf\xa2\x11\xa34ե\x9a,\x84җ\xd7#\xff\xcfB\xa4\xeb\xffR\xc1\x8a y\x04\xe1\xdc]\"!d\xb4hԗR\xb0\"-\x9a˸\x9a\v\x86R\xb1x\xc55\xd5\v\xa3\xd3\xddK\xa65İ\r;\x8c\x9d\x052WD\xccF\x86\x8f\xd5j\xf8\xf2\xc5\xd1GS'f~\x89\x8f\xb2\x05\x88+\xa7R \xe4x\t\xe2\x15-o\x9fV1W\xd1 ϯ/}i\x8d\x8f\x84\xee\xc3\xe4G\xb5U\xcf-E|\x18\xe9\x9b'\x90&\x1ev\x9c\xee3k\xbbl^\xda\xf8\xe9>\xf9r\xdbGư\x02\a\xe5i]\x85\xe3\xc4\xfe8I\x8a2\x8e\x13\xbb\xf7sȅ\\\x8d\xfc?\xa1X@\x0e\x92fc\xa5\x85\xa4\xf3H6柳ӫ\xffe?\x16Ǚ\x1b\x8bߜe\xb83\x878o^RJced+/\xff!\xfd(\x92\xa7\xa2\x98\xae\" }G\x9b\xa4\xebP\xd4C,\xb4\x9aG\xa0\x93c)\xb22\a5\xaa\xb4\xfch\xb0\x06\x1a\xf0%YR\xa9>\x9a\xad\x92\xb2%S\xfd\x82'\xbb\x06\xe5\xabwQ̇ \xff\xb4\xd3g\\\xc3<ڴ\x19\x1f\x8e\x84N\x93\xcb']\x8bR\x17e\xbc\x854\x132\xa7\xba\xba\x97x(\x84BǦ/L\x11\r\xb8\xa5\xaf\xbc8\x8a\x84SP\xadA\xf2\x97\xe4\xdfO\xfe\xfe\xfb_Ƨ_\x9f\x9c\xfc\xf8\xc5\xf8_\u007f\xfa\xfd\xc9\xdf'\xf8\x1f\xffr\xfa\xf5\xe9/\xfe\x1f\xbf?==9\xf9\xf1۷\xdf\xdc^_\xfc\xc4N\u007f\xf9\x91\x97\xf9\x9d\xfd\xd7/'?\xc2\xc5O=\x81\x9c\x9e~\xfd\xbb\xc8\t?\x8ck\x1fƘq=\x16rl\xb7~O\xba\xf4\xae\xe1\xb7\xe3q\xf8\xce{\xafS\x1c&JIS\xe7\xfaH\f\xe20\xf5\xe8\x80\xe5\x1f\xa4\x1d)H$\xe8O\xcb\xe7j\xe7\xd4ȁ8Vui\x8b߀\x1b\xf6P\x13Ϣ\xa7\xb61\xb08\x17\xc1+\xd8C\xbcSԖ2\xf4\xf0\xef \xd8\xff\xef\xc7\xe0&\x1e\xdc\xc4\xcd\xf1\xdbu\x13\xdfس2\xf8\x88?\x8e\x8f8\xf2\u0558U\x8e\x91)\x85\x84A\xc5\xcc-*\xde+\xecb\xba3\xe6\xab.\x96D\nQ\x94\x19ձ\xf7\xd3\xdbCR&^\x00\xc6ľ\xd4\x11\xb7\xf6\x12=?8\xde\xe8<\xcb\b\xe3V\xe4\xe1\xa4|\x18\x88\x04k\xdb\x13\xaaH\xd0!\x82%pm\xd8\n_\xcf\xe6TDi*5\xe3\xf3\t\xf9a\x11䆵\xba\x94\x8b\x9b`\x9c\xe4e\xa6Y\x91\x01\xa9\xca\xf5U\xd9\xfa!P\x95\x12\t\xa3\xda\a\xa5\xd8\xf25J{\xf4\".4\xbd\v\x81YHH \x05\x9e\x00Vu)\x1b%\b\xa7+B9\xb9\xe0K\xfcZ\xd0\xea\xd3\xd2\x06wZթ\x9aW\xebk6\xf6!\x00\xecG\tA4\xc7ԅ\x80\xb4\xab;\a1=\xb7AF\xb9\xf6\xa5t\xaa\xbb\xca\x105\"V)\xae\xe24\"\f\x86\rm\xb8\xbee\xad\xb4\xd9\xf0[B)\xf2g\x8cS\x89UM\x9fJ-\xfd\xb4T\xd2'PG\x1fO\x15=H\r=D\x05ݥ~F\x9b\x82\xf5\xd9\xf1\xb20^u\xd5Ji\bQ\x85\\\x19\x1dtb0,\x8fV\b\xae\xc0\x96\x91\xf2G\xb5\x9aq\xa8\xfbI\x1d\x94f\x19\xa7\xa2\x15B\xe9\x1bMe\xafbE\xf5h\x9f\xc6k\x0fĐzB\xb3\fR\xc2\xf2\x1cRF5d\xa1~e_\xad\xae\xe5\x83\xc3Vd\xae\x10Z\xb8\xfc_P\x9ef \xb16\x97\U000fad60k\x909\xe34\xac\x90\x00\xa9\u0095\xd0A\b)\xa1I\"d\xea\xea!\xf9\x8a7T\x86\xfaE*\x8e\x86\xdaN\x83^ף\xce\x02\xe1N3\x91\xdc)RrͲ\xba\x04\x9a\xaf\u007f\xe6\x9ah\x05\xc2\xec\xafG7\xd8H\xf5\x9f\xe3ꬌ\xb1\xcb\xcc\xd9\xe7\xf5\x9f\xf0\x870\xa55\xdeJ\xe9Scrs\xac\xd5Y\x03$\a\f\x04\x14\x1c⯊g¨!\x86\x8c\xeaJ\x80\x95\x00\x99`\x99\xbc\b\xa8\xed\x1e\v\x14\xd9\"\xd6\n\xa2w\xbdJ2\xb5\xc7a\xf7\xf2\xc1\xb5@\x9a\xa3G\x19\xcd\xc8\x1b\xb8\x8cqh\xd6\xd3dX\xe5\xaf}\xe6b#\x99\f\x10gA\x92\x94I\xac,\xbf\xf2\xf9\x84\x910}\xc1H\xac\xab-\x84&'\xc7gǧ\xe1\x856\xda0}e\x10\xa3#g`edh=\xa2\xaeY\x1a5\x88\xe5E\xb6B\xfc\x1e\xa7#\xc2bo[]\xa2\xa3,\xb9\xdf#W\xceeDT\xbfZv\x9bCK\xea+W[X\x06\xb4\x96\xa5\xd5\x1f\"\x81\x9e\x1c\xffr<\"\xa0\x93Sr/\xf8\xb1F\x12\x98\x90[a\xec\xfcH\x98\xd5RW\xa2$\x1cl\xb15x(2\x960\x1d,m\xfd0b\x9b\x88R\xdb\xf2aب\n\xcb\xe3\\\x05\x19[j\xc0\x17\x1b\x90\xbaE k\x11\x95\x91\xa0\xaf\xec\xd4\xfc%\xa6W'(\xef\xd99ks\xbc0\xb3\xfc\xd3\x1f\xff\xf8\xd5\x1f'\x16\x01U|f,M_\x9e_\x9d\xff|\xf3\xe1\x15ֹ\x8a[\xe8\x13\xe4?az}\xa4Di\xdfG# \x83\xb5RaI\xa8xW\x8b\xb1\n\x9c\xbf\xd8:dU\xe3\xee)\xda\\@\x86\xf2\x118I\xbcP\x1a\xe3qyN\xdbW'ōH\xee\x0e\xb6~\x8fo_][@\xb5\x01\x1c\x81yʽK\x96\xf1\xa5Ȗ\xb6\xc7\xd3\xed\xabkDL\xcc^\x9awч\x8e\xae\xb2\x95\x99\x9f\xcf|\xb6A'\x110Y^\xb8nf\x94H\xa0\x19S\x9a%\xf8\xa5\x98K/?\xcc,ãS>\t+\xff\xf8\x9d\x0fr\xa9\r\xfe\xf8c\xeb\x18B\x97\xc1\x1fk\xa6X7A\\\xf2ϠU<\x92V\xe1\xb4\t\xe9\xfb\xd3\rZE\xcc\xf8\x14\xb5\x8a_\x8fċ|\xb1\x90p\xa3EqPt\x80\x05\xf1(\xb1\x01\xbe\xf3ж\xeb{\x92\x06o\xa2\xed\xd2y~}Y\xf9\x9eE\xeb\xd2\x1dC3\x02a\xaa2Y\xf8{\x0e\x0eJ\x9da\x18@YX\x9f\x93o\x11\x16z\x95XH\xc0~K\x82\x8f\xaa\x9csD\x04p\xfb#\xe8$\xf4\\\xa0_\xc4EG\xb8[5\xbfI\x87\x05\x1b$\x92\xaa\x05`uyx`u;t\xaa\x04\xb7מn\xd3X\xb0\xe9\xcc\x14)\xa8R\xf6\xe2K\xd7\v\xb0\x9f\xb8\x16\xe9\xf1q\xa8\n֘\f\x99K\x9a\x00)@2\x91\x12\xac\x83\x96\x8a{N\xa60\xdf\xdfEu}8z5\x93\xf4\xc7\xc0h;\x80\xb7\xa1Uw\xbf@\xa0\xef[M\x00\\\xf1\x8eD\xd4\xf1\xd1\x0e\x1f\xa1\xf4\xd5\x0e\x8b\xc1t-$\xfe\x92f٪>d\x81P]\xf6\x9f\xae\xb6f\x13١\xe7\x00\xb7\xe6\xd9\xe3c\f)\xe3\xdf\"к\x95\xbe\xb0#6M\x16\xe1T\x10\x18\xc6>\x84\xdf\xf4\x1dC\xf8\xcd\xce1\x84\xdf\xf81\x84\xdf\f\xe17C\xf8\xcd\x10~3\x84ߴ\xc6'\xe1\x98\x1b\xc2o\x86\xf0\x9b\xf51\x84\xdf\x04\x8f!\xfcf\xfb\x18\xc2ov\x8e!\xfcf\xc7\x18\xc2o\xc2\xc7\x10~\xb31~k\x17eC\xf8\xcdo\xf5\xa2l\b\xbf\xe9\xf7\xf2\x10~\xb3w\f\xe17C\xf8\xcd\x10~\xd3\xe3ۃV1\x84\xdf\xfc\xb6\xb5\x8a_\x8f\xc4;\xa0~S\xd0K>\xe2\xe4Z\x8ait!\xa7k\xbc\x9bf\x89\vW\x11\xb3\xa8+u?\x95I\xdd`\xbdQ\xa7\xd7\xd7\xcc\bjvk\x9bp\xfb\x10\x9a\xcez)\xa1E,\xfaߠ\xfb\xc2K\xea\xac\x10\xf6\xff\xd5\xf7獋s\xeb\xd7\xea\xcf\xf2\xe3\x04i\xf8\x8dy\x9f\xdb\xf2\xfa\xee;4\xe0i\xdbMy\xb4Vv\xe8-y\xbc~\x12};\xfe47\xe3Ou+\xbe\xf3F\xbcy\xb7\x1d\x01{\xe36|۽v\x8cbݘ\xdd#\xddi\xef\xbc\xcfn\xdeLǘ\xbd\x1bw\xd9\x1b\xb7\xd2\x11P\x9b\xf7\u061d7\xd2\x110\xeb;\xecm\xb7\xd1\x11@/\x1e\x98~\xba\x9b\xe8G\xbc\x85\x8e\xbe\x809HY\x8d\xf5\xa5F\xea!.\xf0\xf4v!A-D\x16\xc8\xe3Z\xfc\xed-\xe3,/ss\xb0\x95aLlYŵ\x86r\f\xcfs\xacd\xb7WL\x06,K\x01\xdb\xd1Q\x96\x85\x17\xe6\xc2\"b\v\x8a\x96\xbc*\x93\x04 52\xa9Q\xd7/\x10\xe2W\x93j\xcdU\xb7\xfd\x17atf\x9b\xa4\xa1u\xf4\u0557\x11\xfb\x1dnUE\x85\x18\xec\x0f/@\xb8\x81\xf8;4\xb4 ^\xa0\xc79\x1b\x9e\"\x9c`G(\x01\xf9\x9b(c\xac\xfc\xeda\x04k\x01\x011r16\x84\xe0\x00\x9exP\xe8\xc0\xee\xb0\x01\x83\x9b(,l\r\x19\xa8.\xffc\\`\xb1\xe1\x02ђ\xeai\xc2\x04\xb6\x87\b\x10\x16\xe7k8,<\xe0\xd0ЀG\xeb_V\xdfy\x1fؑ\xfa\x10\xaf桞\xb4\x83\xc2\x00\x9e\x06\x1d\x87_~\u007f\xa4>\x91\x91\xfb\x18\u007f\xdd\u007f\xd0U\u007f\xfc5\u007f\xdc\x15\xff\xee\xeb\xfdH'\xfcAW\xfb\a\x10K\x9c\xf3=\xd2\xf1~\xa8\xd3\xfd@\x87\xfb\xee+\xfcȍ{\x02G\xfb\x0e';\xba\xcb#@v;\xd8\x0fu\x95?\xb2\x9b<\xf6\xe2}\xf7\xa5{\xe3\xfal\xd7o\u05fdV\xd7\xfecz\xe9\xc9G1\xdfm\x92\xe0\xe1\x1b\xffWqO\xc4L\x03''\x8c\xfb\xbd?\r\xe7y\xcep\xaf\xbd5\xd5\xe15g\xf7\xc5\x17\x1etp.\xe3\xafα\x82.%\xa5\x9eʓ\xe6\xc0?\xb6+́\x9d\x95\xa1\x9e\xec\x96;\xcd:\xe4\xda|;p\xc3\xea\xf6Z/pΞc\xa0G\xd7%\xcb\xff\xf6\x89(2\bjo\x00T\x1d\xce\x14\x88\xc2\xce\xe0\xa7v(S Ď\xc0\xa7\xee0\xa6@\xb8\xad\xa0\xa7\x88\x10\xa6\x8f\xeaM|\xa4\xb0\xa5\xdd!K\xa4\x1016vT\xb8\xd2`)\xf5\x1a\xbbÒ\x06K\xe9\xe3ZJ\x9f\xba-\xa0Y\x0e\xa2ԟ\x8c\x19p\xbf`ɢ\xa9m\xb0\x1c\x14\x11e|\b\xb5\xd1#ܔ:/۞\xb6A\xcdo\xc8r\x88\xa0\xb00\xb7w\x87\xcfg\xad\xf6J\x1d\b\x14\xb0^\xaa\b%\xaf\xafn~\xfe\xee\xfc/\x17\xdfM\xc8\x05M\x16\xcdRO\x9c\xd0@\xb1\x86\xbcfA\x97@()9\xfbGi;\x13\x92\x93\xea+\xa7\xcfԃ\x18$\xf6\xf5^Ҍ\xa5vr\xf6\xbabD\xbe \xffF\x1eȿ\xa1\xba\xfa\xa7P}4^\xcaǻ\x10\xac=zy}\xd0N\xfd`\x98\x8e\x81c\xb0\xab\x05\x992\x9eFY#\xf0\xa0A\x1af\xeev\xfcٺ\xa5\x9b\xc9\u007fr\x04ko7.g\xcd\xee\xaf\xfa\xd3\"Yb\xa6\xf7W\xa1\xf4\x95c>\xed^\xb5f\xb6\xc1\x10Q\xe5ʩN\x16m\xceh\xd4w\xa5k\x06\x13\x0e9\x15\x18\xa7kC\\\x17,\xd8\xcd\xfcq\x0ehL@I\x8b.\x1f\x93\x82\xd6Ln\xf4\xb7:\xbd\xd8\x16j\f\xf7\xfdX\xd6\xec\x94u\xb3ش!\xc2b\x9cP[tv\xe7=\x88I\xf8\xadS\xb7\f\xa7K(\xb79(3\x90\xd2\xd6\uf686G\x1f+\x90K\x96@0\x11F\xf3\xb8B\n-\x12\x11\xdcO\xbf\x1dXဠ\xd7ݺw\xdfF\xd2\xd2\xf7\xaf\xafG\xe4\xf6\xd55\xb6\xb4\xbeyu{}Ht-!G\xb7\xaf\xae\x8f\x9e\t\x991\xae\x9eq[5\nz\xd3o]\x88I\xf3<\r\xff\xd7|h\xc6H\x18\xe7\xb4\x18\xdf\xc1*@q\x8c\xc5M\x04f6\xa7k\x17\x9dӾ\x01\xc9\x12h\xca>\x91\x1c9\xc7D\xea9u'\xcb\xe5b\x19\xe4GA3\xca\xc3\x06\x9e\x16\x82\x19{ĕtnf\xd0\x05\x00\xdd\xd9s~Ƞ\x1b2\xe8\xaa1d\xd0\r\x19tC\x06ݐA\xd7s\f\x19tC\x06]\xff\x85\x0e\x19tC\x06ݐA\xb7c\f\x19t{\xe73d\xd0\xed\x1aC\x06]c\f\x19t\xed1d\xd0\x05\xbe\xfd\xfa\xe4\xe4\xc7/\xc6\xff\xfa\xd3\xefO\xfe>\xc1\xff\xf8\x97ӯO\u007f\xf1\xff\xf8\xfd\xe9\xe9\xc9ɏ߾\xfd\xe6\xf6\xfa\xe2'v\xfaˏ\xbc\xcc\xef\xec\xbf~9\xf9\x11.~\xea\t\xe4\xf4\xf4\xeb\xdf\x05N\xf4Q%V\xfb\x00~\x87\xb4R\xdf\xe6!k\xce\xe9\x83ᢡ۟\x8b\x92k\x1b\x16jOuE\xfc\xf6\xe6\xf39\x1a\xfe?\xd5I$\xf1\"\xd8\xdd\x01\x0f\ar\xef\x18\x0e$9~\xef\xa8e\xfdHZ\xc5\xe6\x11\x8f\xa4\x17\xb4\xa1g\xf2rF\xaa92EDδ\xb1\xd2gB63]C\x83K\x99n\x99\xa2\x8e-a\xf46Ť\xe4\xe8v\xf3\x8d<\"\xa1\x17 \xef\x99B'\x17\xe5\xb5O\x01\x19\xc68\x85\x19\xe3\xc1a\x19\xa8j\x06{\x9c?EV\x15\U000520a4\x94L\xaf^\t\xae\xe1!\xc0&o\x13\xfd\x8d\x03CDa\xa3]}\x8c\x93\r\x11\x0fa\xb6%Ǭ\xae\xe0\r)Dƒՙ_\x10b\x1e\x1e\xf4Y\xc0\xb7\xfb}QSuW\xef?\x8c\x8d\xc9Po\xf3\xc6\xf7\x9fZYD\xc9|-ْe0\x87\v\x95\xd0\fi\xf2\x10S\xf1|\v\xcc\xc0\x93eP E\xa6\xc8\xfd\x02\xcc\xc9%Ԭ\x11\x1d\x16\t\xe5dN\x83C\x85r\xb3C\x85\x9f\x98!3\xc3\x05\xb4\"\x05\x95\xc0\xb5\a\x1f\xca\x121){*D\xe6b\xe2\xb3U=w\x97\x80\xc2\xc5\xcf\x1c\xee\u007f6\xdf\x0ev\xcfgt^%\xc6(\xd0\x1bޚ\xd8io\xdb&\x1bn]\x02\xa1\xd9=]\x85N\xf7~\x01\xeb\xf3c\xea%yq\x8ag\x93*R}1\x94\xd3~y\x8a\xf7\x86\xafί\u007f\xbe\xf9\xdb\xcd\xcf\xe7\xaf\xdf^^ŰE\xb3S\x10\xd4\x14.\xa1\x05\x9d\xb2\x8c\x85+a\x1b\xd1LMP(\x86\xd2\xf4,\x95\"40\x16\xb1,K\xce\x19\x9f7\xf2\x8b\x0f\x89Un\x96\xbd@2\x9b\xb5';\x97\x94\x87G-NWk\xc4 K\xaeY\xfel\x8994=4)\xe7\x84z\xce\xf4\xa2\x9cN\x12\x917\xa2\xa9NJ\xcdՙ;\x93c\x83\x97ӈo0\x9e1ވ\xa4\xc0\x0eV\xce\an\x16\x12\x012\xa9\xb0\x89\x04皃\xb8 \xc8Mt_\xc5%\xf1c-\xbcgUZ6I\xef*\xaa\xe4\xe1\x1e\xf2\x8bć\xab\x97\xdeȉ\xb7\x84X\xefF\x8c\x1ej\xf6\xcf\x1a\x9f\xcf\xeb\xd5\xf2\x97B\x8f\x80a\xbc\x1cr\xa0\f's\x82'΄ؼ^ڸ0\x8a\xd3k6\xae\x98\x10h\xfb\xe2(\xeaxo^5\xb5.\x8f\"`\xf6\xbbn\x8a\x00\xbc[\x1a\x92\xb86\x00O#\x11\xc9SHE\xf2\xecn\xab\x98t'[d\xe8\xa0.*7\r\x18\r\x13N/hh\xfb\xcfk\x91\xdaBjU\x81&lى\xc5\xdf\xd8\u007fY\x15+ĉW'\xcaqas\xe5\x9a\xd5\xd5\\+\x89\x10b16O\xe6\xfdpy\x91\x19\xc9ݚ\xad\x8d3\t\xeb\xb8\xd6h\xe52\xaa\xd0P\xf7\x8dqU\xe5B\x14\xde\xff,\x95&\xb4J\xd5\xf1e\xa5\xae\xab\x0fY\xa7N\xd0,]\xc3-\xach\xac\x85w\x1b\x92\x94\xcdf\xe0S\x8d\xa6@\n*i\x0e:,\x1c\xd8\xc5\xfdLa\xcel\xfe\x87\x98\x11j\xd0p|\xac\xea\xfaF!\x18\xc0l\x12\xa6I\xce\xe6\v{\x90\t%\x99\xe0s\xe2\x03o2ASbxh\x00T!\xc9=\x959\xa1$\xa1\xc9\x02F6\xdd*-%\x96\xd7\xd7@\xd3\xd5X\xe9\xb0{O\xa3:;o\x10Ɨ&\xcfX\xe8a\xe8\xe5\xb3}\f\xbd|\x86^>\x8d1\xf4\xf2\xa9\xc6\xd0\xcbg\xe8\xe5\xb3\xef塗\xcf\xd0\xcbg\xf7\x18z\xf9\f\xbd|:\xc7\xd0˧9\x86^>\xbb\xc6\xd0˧\xcf\x18z\xf94\xc7\xd0˧9\x86^>}\xc6\xd0\xcb矸B\xf5\xd0\xcb\xe7ӪP=\xf4\xf2\xd95>\xf5\xfa\xddC/\x9f\xa1\x97\xcf\xd0\xcbg\xef\x18z\xf9\xb81\xf4\xf2\xf95\x11\xd1\xd0\xcbg\xe8\xe53\xf4\xf2\xf9g\xb5\x94\x86^>\x9f\x96\xa5\xf4\xa9\xdb\x02C/\x9f\xa1\x97O\xd0[\x81\xb1\x8d)\v\xa8\xfaݧ\x98]p\xf5v_\b\x83P2-g3\x90\xa8\x1b\xe2\xcc6\xe2H\x02\xc0\xfa\x92\xc3>\xda\xd0\xc7{(\xd0#\xac\x9eg\x93\\B\xb4\xff\xce)\xf9j\x1e\xf7t\xa5\x88\x04\x15\x96\xe8\xc58\xb9x\xf7\xa66\xa8«\xf0Ŕ!\u0095\xbc\xe3Il\x87\xa59\xfb\x90\x00[\x86\x9c}\xba\x85\xf3=)\xe3\xd3 s\xc61\x96\xf8-(E\xe7p\x1dtm\xb5͠Û\xab\x9aD\x82TzL\xc3բ\xa1Y\xd5a\x93Ǫ9\xe5\x00\xa0\xb9]]\x15#\u007f/\x99ր$\x8b\xa5\x8e\xf1\x9e>H\xa7ߘX\xb3\xe4\xec[\xff9\xfb\x99\x10\x01\xa8P\xcfᩍ\x99\x9f\x02\x99J\x0632c\x9cf.\x86p\x84\xa5\x10Ch\xcb:C\x942ƾ\xe0>D\xcdceB~\b\xceuײ\xe4\t\x060\xba\xbc>L!g32ǸFi\xe3\xdc\xff\xf0ſ\xfe)\x00\xe8tetR\xbc$\xd7BӬڶ\f\xf8\xdcP\x94\x15\x104\v\xf1\xdc\xd5\t\xc1\xd5\xeecs@\x8b\xe0\x17_\xdeM\xa3Tu-\xc8Y\n˳\x06=\x8e31\xefj\xbb\xd8_M\x8e0\xac;\x8e0v\xf1\x89<ľ\xb6*Y\x88{[D\xfc\xa0\xf3V\x87\xc4\x17\xa2(3{\x99\xf1\xa6*\xaf\x10V\xd3f#E\xb5\x93{\x85\x99\xe6~Zk\xf2\xc6\x05\xeb\xfae\x04\xad\x1dsל\x93\xb9*\xa9ZJ\x98\x9074˦4\xb9\xbb\x15߉\xb9z\xc7/\xa4\f\xaa\x87\xeaqfSt\xa8\xd2$Y\x94\xfc\xce\xf66\xf3S\xcfD\x88OF\x94\xba(\xb5O\xfbi`\xb4Z\xbb-:\x13r4\xac:\xe4T\x97\xc6\xcc\xe0\x01O\xdd=3G\x99\x130\xab\x0f\x11\xe6\x86/db^\xcdY5\x0f\xf2\x97_\xfc\xe1ϖ\x81\x84\xac^\x92?\u007f\x81\xc9\x05jd\x05\x0eJo\xa30\xe64\xcb@Ʋ\x06C\xe2]\xac\xe0I9\x81\x8e=\xf4O`\xba\xde\xde\xfe\r\xedV\xa6\x15d\xb3\x91\xcd\x17\xf5\x85\xf0\x03@\x1e\xa3ju\xecd\xa1\xd1ߟ\xdb8\\\x8a\xac\xcc\xe15,Y|\x8f\xdf\x16\f\x9f\r\x931\xa5\x89\b1i\xa6\x99H\xeeH\xea\xc04b\f\xd7\x1b\f\xf5\xc7Hp\x1c\xe5\xd6u5\x9a5R\x92Ӣ\bu\x0ec\x06\x9f\xa4\xf7\xade\"\xb7\xc0\n7Q\xce\xdc\xd8\x1b\x0e\xfb\xf10eؿ\xd9\xc0O\r\xc6ozA\x83\v\xd2\x13\x9f\x8f\xb3Q\x99\xb8*\u007fn\xbf\x13\f\xd7\xebCf\xb7\x90\x8b\x86:\x9f\xa3/\x02b\xe2K[\x98\xe5\x95\x0f=\xa7\xda\xd9\tQ7HHu\x05HŔQ,> E\xbf\xca(˝k+\x18b\xf8\x95St?\x8ep_\xfd\xb8A\x93A\xaf\x05\"\xf7\x80l\xf4\x90hKˀ\xb0\x9fJ,o\xbe\x16\xa9\x03\x83,\xd5v\xbe1\xc6`\xe0\xe6oI\xee;D\t8\x8c9\u007f\xa8q\xd3\xe6\xcd\xe6\x97(\xe6l!~$\x96\x8c\xd3>\x98##/v\v8\xacjGӽ\xe1\b\xa8a\xee8\xaf\xc2\xc4\xc6x\x04\x037\x14\xe3\xa6F\x8e_\x1e?\x1b_\xb6H\x96\xa2\xa0\xf3\x88\x0e\xa8k\xb8^\aFR\xb0\x06FDJ\x831G\x11\x9e\xf2%H\x11*\xa4Ui\xae\b\x906\x11\xab\x96\xa7\xded\xb1u\x1f\xee\x83c\xbe\t\xa1R\x94<\xb5>\xf5\xfaz\xe5\xed\x1a\"\xae\x04\x0f\x9f.SUiM\xa3\xf82\xc80\xf5w\n\x9a\x1aI\xf5b\xf2\xe2\x8b_\x8f\xf8\xc65\xac\x89墨G\r\xbe\xf4l\xab\xf7}\xb0\x0e\xc2\xc0[\xe7v\xac\x1bW\xb1\xb8v3v>\xe3{\xc944\xba{\x9f\xa0id,\xdcF\xb5\x9f\xd3\xf0\xe8\x82\x03\xbb\xe2\xc5\xf7\x05!D\x95\xd3G\xe7\xf7\x96Q\ac\x01\x99L\x97GZ\xc5B\xec\x10\x15MT\x1f\x85\x97\x9d<\xb139VXy x\xab\xa3\x8f\x83ۦ\x8b\x87\"\xb8\xa0xk\xab.\x1e\n\x8a~\uf8bdg\xc1\x88p\xc2x\xfb\x9e\xc5B\xecس\xbf\xc0\x82.#\xe4\x99b9˨\xccVf\xb3o,\x06ɴ\xd4\x04\xf8\x92I\xc1\xf3\x98\xfe\xa7K*\x19\x9df@$`\x85\x9d\x04\x14\xf9\xddɇ\xf3\xf7\x18Ytj$g0L\xf0\xbbR*\xc6\xe7\x1b\xd4ߘ\xeea\xbc\xe5\xe8h\x83\x80=^\fe\x85Kb\x9eVx5\x1aC^\xea\xd26\r}H\xb2R\xb1\xe5sɋ8+\xad\xd2v\u007f\x03F\x9a+\xb0\xf2\x9a\x05\xf0\x87\xb5225\xc1mTk\t\xbc\x0eF\xa5\xac\xae\xf2\xd5\x19\xb2\x11\xc4!|S\xc3faW\xe7Lv\xb5\xa4l\xf8yx1\xf0\x8d\xd0\x1a\xac\xe4\xf7\xbcn\xe50\xea\r\xa0\xc0@\xda\v\xa1:\x17#\xd8g\xcam\xa5Ծ\xe7\nk[\u007f]N\x1f0\x00\x8f\xe2\x81\xec\xb521\xb3A\x11\x1f \x03)\xbcи\xa7LW\x99\t\x8c3\xfd*\xac\v2\x1a*\xb6~\\\x9f\xed\x0e\xd8\xe8\x9e;\xd1\xeb\xb1}۴\x9b\x9cv\x90Ϟ\xafo\xff\xee\xd6\x17\x19O\xb22\x85WY\xa94\xc8\xf7\xa0D);<\xfck\xb7\xa3\x9d\xef4\x92\x0e\xee\xddUJb\x1f\x19\xabD\x14\x1d\x87^֯V:\x85\x9bP\xea\x13\v1_\xc5\x1a\xceU\xf5\x05\xa5\x85\x84\xce@(^f\xd9Z\xf8\xbb,7H\xc5\xf7\xa3\x85\x1dt\xb0Q\xbf\xa6\xf9\xb5\x16!4\xd5Җ\n\xbf\xf99*砻\x94}\xa7\xab\xe25\xfb\x84\x9c\xf3\xd5\x06\xd4\xee4\xeb\xcaD\xaa(\xaah\x95=\x17\xd2\x05r7\x01\xb9\xb0\x19Es\v\u007f}O\xb6\"\x1d\x05\x9d\\\u0095H\xe1Z\xc8\xcd\b\x83\xf6M\xc3\xfa\xd3\x1dVac\xe9\"K1f\x1a\x1f\xddX(\xea\xa1N\a}\x1c\x13\xce}\xf7\xfa\xc3\xeeU\xbc\xaf\x1e\xdb=}\x8a\xf5|\xddn\\\u007fز\x02\xc5i\xa1\x16B\x93\x93%\xa3.\xebD\x94\xa9\xab\x04/7\xee(\"צ\x92\x05\xa4e\x06]\xcdB6\n\xf8\xf8\a\xbd\x16Vr\xf6\x8f\xb2\xdd7\xc5{n\xdcӛ\x84]\xe3\xa12K\x1b>E\xc3N\xfe\x82{\xe7\xbf\xe3\xec1\a\xd7Pl\x97G\xa0\x02hi[(\x8dy$\\7JVx\xf3-q\xe5\x83\xdd\xe3LU\xb3\xed&\xef\x8dC\xdf%\xee\xc6\x0e\xfa\xdaMl\xe7\x01\xb1\x11\xd2ͷ\xbb\xe8\xe8\xc6\xc6Q'\xb4Х\xf4]\x86J\x89\xd5\xff\xeb\x82\xc8\xd4c\xc6!\xa1\x01t\x9b\xea\xed|aL\xf0[\x96\x83\xd24/v\xee\xfc\xab\xcd\xe7\rr\x85L\xed\xa4l\x8d\xffڌ\xae\x8b\xecoZ\x91\xb4n\xe5\x90N\x1a\x90-\x10ԅ\f`H\t,\x81\x13\x97p\x81w\xbd\xd6D\xdf\x00i[\xbe\xca%z\xb8=\x14\x8c\xec\x9c\tI\xb0[F5\xed\xf5\xa3\xe6\xd3jS\xaaaܑp\xd8\xe3LuH\x04\f\xce\xde\xcd*0z\xdd)\t\tF\x19\x99\xad\xcc2\xfb\xae\x8f\x1f\xb7]=\xc8=H s\xe0\x06\xa9\x1d\xfe0\xa74\xda\xf2\xee\x06\x95\xee$VN\x8d[[\t\xdf\xd8\xeavj(c+\x8e\xbfM\xc12\x0f\xd0\xf9\x963ѕP\xecb\xf5\xdf\x03U\x9b\xd1/\xad\xe5\xbfi>\xe9\xec\x00\xbbrk\xa6R\xdb\xf7\xc2\xf6\nb\x12:\x88\xdbMF\xe0W{\x9e[B\x8a\x05U\xbb\xd9ܵy\xa2*\xba\xdf8n\x15\x87{\xdf9\x17\xe0e\xbe\x0exL\xae\xe0~\xe3\xb77H\xd0h\xbdu\x1d\x921\xb9\xe4\xd7R\xcc\xe5f\xfd\xab\xb1?0\x1bT0&\xd7TjF\xb3l\xf5\xa6\xabڵ\xffjo<\x89\xd4\x06\x86\xb8\xc5^\xec'\xe9\xeb\xceW\xd6\xbd\xf8\x9d\t\x19\x8f\x91x\f#sZ\x98!\xc9\xee^\x95\xe64c*ji\xcekJ\xa6\x80\aȼ\x96\xb2ٌ%e\xa6W>\x8c\x11URm8$&\xd9u\xe7/C>\x85\xd4\xe9\x8a\xe7חjBȋ\t\xb9\x9csd\x19h,\x98\xdf.\xb5\xd7c\x8cQ\u009d\x19\xb1\xbd\x9d\xac\x99(\x17\xda\xf1\xb2,[\x91\x85@\x90\x13B\xde\x18C\x83+My\x02#\xe2=\xbb\x1f@b\x1f@\xa3\x16\xbc1\xc0\xb7\\\xeb\x1aȘ;\xb4\x04\xb9\"\x92J\xc8V\xc6$a\xb6ūe~\xa5M\xd8#_N\xc8%\xb7\u007f\xb4XX@V\xe0r\xba\xf6K\x11\x96\x17B)6\xb5\xb9\x954M뾛\xe6M\x9b\xabQ\xfbC\xfdg.9\xea!\xbbЋ\x8f\xda6DF/\x94\xd8\xd0G\x9b\r\xa3\x12\x9f4\xa4-\x99k\xfb\x90\xb1;\x18\x91\xa3-N\x06$!kpi\x81\xa4\xa2ȹէ\x8e\f\xb5\x1d}\u007f\xf9\x1a\xb1\xefpn\u007f\xacb\xc1; :\xc3\xc0|\x1fң\t\xfev\x8b&c\xdd5\xe7\x1e\xb2\xac\x8a\x90M\xedy\xf4˛\x10\xf2U\x97\x11w\xc9\xf1\x86\x06c\xc6\xed&\xb9\x8e<\xe4/\x8erm\xfb6\x94\x80\x96\xb8]ף\xd1\x16\xa7M\r\x84\xc82[\u007f\xcb\xf0\v\x84V]-c\xa71\xa6ɂJT\x13:@\x96\xca\xd5\xfc.$\xa4,\xd1\xe4\x1eE\xb11\x98\x16\xb4(\xc0L\xf7\x0fV\xb6:\xaa\xafh\x90兄\x84u\xe6\xe7aϜ%\xc8lE\xdcC\x13B\xbee\xb6\x15\x89\xc1)\xf5\xbf\xfb<\x10\xa49\xf2\xfd\xfb\xef\xb6\xf6\x90J(7\xba^Z&@h>e\xf3\x92\xe9\x15\xfeũ\x06FX\xcbB\x82\xb6(\xb2\x19\xe6\xa8\xc2\x12J\xde_\xdc\xdcv\x00u_\xaf\xe9\x98$T9Z%)\x14\xc0S\xe0\t\xba\xaf\\Š\xb9\x14e1\xf2w&]\xc6{YdPa\x01\x9d\x06\xeex;\xc9\xeaΩ\xedt\x82'OJ\xc8`I\xb9\x9e\x10\xf2\xc7.Z\xfa\xa1\"F\xa0\x8ae+,\xf80\a\xc2t\x8b\x9c\x1c\xf3\xb4\xf6D\xcd\xdb\f\xd3\xea\x00\xea;\x86\xab\x91\x8b\x12p%\xb1<\x14\xe2\xf3?\xe8lfx9/s\x90\xa2\xb4vDN\rk|-\xf8qgc\x16C{\x84\xc3=\xf2U;\x19\xa3\xfd\x94<\x05Y\xd9A\xe6\x8f\xf6Sz\x01+\x92\x8a*\xa8Y\x8a\xce.*\x97\xb6оA\xa4\x8f5r\x93\x1d9s\a\x1br%\xc8t\x9d\tiK\rXM\xab[\xb0\xa02\xc6\x14\x1e\xf2\xf1L$\xf8\xac\xe0F\xb2\xc9:Nj\x82\xbc\x1b\x1e\xa8QMF\xe4\x06\xe4\x92%P\x89\xca.\x8a5\x1c\xb3n\xf2*a\xce\xd0ቢvg\xdf\xd63Z\xb0\xb3i&\xa6g\x860\xa8\x82\xf1\x8bɋ\xff}V\xc1j\x82:[\xbe8C68\x99\x8bϿ\xfb\xe3W_uL\xa4#\xbfx\xf7\x85\x05-\x98\x93I}\xaeg\xae/\xd7I\xdcam\x8b\xb3}\x8f\xb3q\xe6%`\x8fo\x1f_ΜVQ\U00050081\xd3¼\xce\xef\x1b4lO\xa53\x8a\xb9U\xc1\xed\x1b#g0[_\xbd/\xba\xe2\xa2\xed\xa9\x13\xb9\xff\xf7\xe6\xdd\xd5\xd97\xdbR\x89\xad\xaf\xd1U\x1bC\xcd:G֮\xcadA\xa82\xcb0Ƶ1\u007fa\x92S\xcef\xa0\xf4\xa4NE\xff\xf1˟\xb6\xf9\xbb[\x84\xe8\xf2r\xddJ+rE\xdd^\xb4\xcaX\xd8x\xc9m\x180:\xa5[\xf6=.\x17\xfb\xdb\t\xb7\xdc\x12P.\xbf$G\xe6\xf46\xa6\xf9\xdfF\xb4\xfe϶P\xd4\x13\xdb\xf2\x18\xe5\uf45d\\Uw\xaf\xe9NYOX\x93l>\x87\xed\xa1Ph2-\x81\xebS#\xddٌ\xf0f\x8c>w.\x95\x9aϬO\xfa\xc7/\u007f\xda:\xe36\xbe\x8c\xc6\x03\x0f\xe4K\xebNd\n5ow\xb1\xa1V\\\xd3\a\xacibԅm\x98\xf5\xbaʂ.\x81(\x91[mb\xec{\xf3\xdf\xdbk!\xbfqN\xbf\xa7rG\xe2gE\xd8\x13W)\x12gf\bjν\x80\xb5\xd5 \xac\x04j$\x03l\x81\xa8JK>ZT\x92\xc5J\xbbY\xa9K\t[\xea\x13\xec9\xc7wl[w\xb8\xf6\x11F\xbd`\x9dqt\xd53\x9e3=\xb9\xfb3\x96$KD\x9e\x97\x9c\xe9\xd5\x19\x8a\v6-\xb5\x90\xea,\x85%dg\x8a\xcd\xc7T&\v\xa6!1\xd37\xect\x9c\bn(\x06\xcb\x04\xe5\xe9\xe7\xc82\xc7f\x8a[j\x94\xedY\xdc\xf6\xfc\x86\xb5\x1ar\r*߹\xb8]%\u05cc*\xb5dp\u007f\xe6B\x1bdž4\xc7.\xa6\xe0\f\x1d\xd9g\x9f\xe3\xffD\xaf\x05=\xe1}\x17d}\xf5ϰ*tϟE-J\xb6m\xab>K\xbb\xf1\xf6\xceڻ\xcdZ3\xe8\xbbs饁ɬ^\xdfé\xb4\x01\x13\xdf_UN&\x0f\x17\x9dM\x83sip.\rΥ\xc1\xb948\x97\x06\xe7\xd2\xe0\\\x1a\x9cKn\fΥ\xc1\xb948\x97\x06\xe7\xd2\xe0\\\x1a\x9cK\x83si\xeb\xd2\x06\xe7Rk\fΥn\xe7\x92\v\x89\xda\x13Gl\x1f\xaa=(M\xd7\t\x9d\x8aR7C\xe3\x8eU\x1d5ץ\xaa!\xac\t\xb9\x12X\xe3\x16ӌX\x1b$\x16\x11Rz\f\xb3\x990\xb2\xc3\b\x9d\xf1ؐ\xa0\x8d\xca܀:\xa3,CYlu\u007fc'VI\x1fU\x18\xabQ`\xf9\x8aH\f\x8f\x1b\x99gr\xba\xb2i\xae4IJI5\x9c)M7\xe3U\xa3\xd3\xe3\xd0M\xe5\xdci\x9d\xe4\xd7οl>\xedc\xe5ꆭ\b\xcc\"\f\xa5\xaf\xb5\xbc\xb2\xee\x14\x10\xec\xb0Pş+Af\xb4\xcbb\xde\xdd\xc6\x04+^_nKui'\xaaW\x8f\xfa\x89\xdbr\xd9\x1b\xd3\x17\xcd\xc0\xf8mI}F\xec\xbb^G\xb42\x0f\xf5B\x8ar\xbe\xf0Ķ-0\xb3\xfb\x90\x97\xe8\a*\xb2rn\xc8ץ\xdc\xe9R\xf2F\x9e\x82K\xc2K\xeb\xa9n\a\xb9\vq[ϨjE\xcd\xee\x0e\vo=\xda3.\x98\xdc\xd3M\x9dȷ(\xf8\x04#zk\x17P\x0fo\xf6\x87\xb5\x87;<\xd8\r\x97\x92\x0fs|\x8c\x90\xc5\xc7N2\xbe\xa7\x923>߽\xdc\x1f\xdcC\x1d\xc1\xcc\xee\xfd\xa7\vg\xf6\x13l\a4o\x80tVZ`@s\xc7\xe9X\xfbə\xdf/\xc9\xf2E\xfd/Ė\xad\xc6\xe0\xfe@,5\xa7\rܻ\xa9\xb8_\xea|\x00\xdbo\xc4e\xff[\xb4\xa3>\xefkZ\x15Y)i\xe6\xfe\x99\bn9\x82zI~\xfc\xe93\xe20\xf0\xc1\xcf\xc3\xfc\xf8\xff\x03\x00\x00\xff\xff\xe9\x8e8R%\xdf\x01\x00"), []byte("\x1f\x8b\b\x00\x00\x00\x00\x00\x00\xff\xec`\x86F\xaf\xa5>\xb3\x05&\xb4ڽ\xd1eq\x05\xcd\x0f~R\xc0\xc4\xef\xe2[\x98\xcf]\x99\xb4\xee\xa7N\xf7'i\x1d\xffTd\xa5\x11Yk=\xee\xb5Rݗ\x990M\xff\x19@aТ9\xe0/\xeaA\xe9G\xf5\xa3\xc4,\xb5W\xb0\x13\x99\xa5\x9fm\xa2\v\xbc\x82τI!\x12L\xcf\x00\x0e\"\x93)\xef\xd3\xe3\xa6\vT\x1f\xbel\xee\xbe'aR:\x1c\xd6\x11\xe1 \x95\xbb\x1d\x1a\x82T\xec\x85E[\x19\x89q\xf2L\xa9=53\xc5\xe2\x93\xfd4\xec%F1\rƶ\xc0\xe6t\x04&0\xc2ds\xcb\x02\xa4J\xe5A\xa6\xa5\xc8@*\xeb\x84J\xfc\xbeD\x8d\xdbо`\x9a\xf5'\x98{3Z\xe1O|\xe9x$\xad\x10\xb4\x81\x9c\xdc\xef\xe9P;\xba\x06\x8cn\u007f+Ȟyc\r\x86\xe2\xe9\xb0X\xcaή\xb1\x17\x17\x13\xc0k\xee\xf8\xa0-\x13[\xcc\xc0b\x86\x89\xd3f\x8c,\xf3L\xf7-\xce\x16\x8e\xd0s\xc0*6v\x9f\xb6\xdclp\x12(\x90\xc9\u007f\xdc\xcbd\xef\xe3+\x92)\x86\x04\xa9F˶@\x14Ev\x1c\xdf,\xccKBXh\xda\x1c4m\xd60\xf4a\x0e\x9b\x88\xa6E\xd9Ӧ\xcdX\xd6.\x9dk\x11y#s\xe54\x9e%Л\x93\xc9/-\xd0D`Ig\xab\xcd\x0e0/\xdc\xf1\x02\xa4\xabz\xe7aR\x18\xd4\xe0\xf0\x87`\xd4s\xf4aӟ\xfb\xc2\xfa\xf0\x02\\\xaaQ\xf8\x9ff\x12;\x9bo\xc1\xd7,`Ч\xf6\xbc\v\x90\xbb\x9aA\xe9\x05\xecd\xe6\x90\xe3\x9ei\x14[\xaeo\x96S/E\x968\xafI-\x17.\xd9\xdf\xd4G\xc8\xd9\xf1=\n\xf5\xa7\xfbX\xb9:It\x9d\xfc,d\xe0\f\x834\x98\xfb\xbc\xc5-\xeb@\xd3Ñڇ\xcf\x1f1\x9d&\x14\xc4J\xe4\xc9v>\xf4Pn/\x1f\x8e\x01\xf1\x9b\t\x01U}\xc2\xf2\xf9\xa8\v\x10\xf0\x80G\x1f\x05\t\x05\xc4(AK\x8d\x1e$N\x89ĉ16\x11\x0fxd@!\xd7\x151?^4|{\xc0c\xdc\xc0\x1e)\t\xb3\x90\t\xf04\xa5\x0e&\b\xa7L\x96\x90\x118s\xc9\x1a\x02N\xc7l\x12\x96\x98\x9b\xaaU\x9cx\xd6vk6vҸ\x0fx|g=\xc3H;\xf6\xb2\x88\xde0\x19`\xb0\xc8zTe2\xefD&\xd3z)\xaf\x0f\x1b5\x15uw\xdbg\xed6\xea\x02n\x9e\xa4%\xf4T\n\x1f5\xda\xcf\xdaqϫ\x11֣\xff,\xb2\xfa\xa9\xaczʛy\xa2G;A\x1a%\xf4\xbem\xfc\t\xb3f\x95\xb4\xb0QtV\nt\xe147Ì\x17KF)/-gB\x95V+v\xb4끵\xa2a\x06\xf6h\xd3\xe1N\x1b\xbdֲ\xd1P\xe9@\xe7Q\xbb%\xdf\xe3!\xf8\xf4}&\x12L!-\x99\xa8\"\x1a\xa2uF8\xbc\x97\t\xe4h\xee\x11\n\xf2\x05\xb1܈\xb6Ͼ-\x96\xb9\xd8Рj\xc1Ч1(\xadH\xaf\xa3\xc6U\xec\x8f\x18<\x98\x8f\x9e\x1e\x1c\xb37v\xd0\x1c\xc7DP[\xa4)'lE\xf6e\x91\x97Xĝ\xd3\xf8\xc1\xa3\xe7\xfdk.8Q\xfaor\x91,\xec\xff\x81BH\x13\xa5\xe5\x1f\xf8\x8a/\xc3\xce\xec\x90uk/DkH\v\xc4\xf1\x83\xc8\xfa\xb7\x1d#[\xd4d\x810\xf3\xa1\x80ޝD>\x17\xf0\xb8\xd7\xd6{\xe4\x9dđ\xe4p\xb7I\v\xe7\x0fx<\xbf8\xb1K\xe7\x1bu\xeeC\x84\xbe\xd6G\x80\xad#\x0e\xad\xb2#\x9c\xf3\xec\xf3_\x17NEKg\xe4@\xbe\x0f\x8e\x0f\xc4\xe9$[E\x134\xb5\xbe|\xa4\x10z\x1a\xfbH\xd9,\xb4u\v\x10\xfa\xa2\xad\xf3\x19\xd1N\xc0\xbb,\xdf\x06^\xaeB\x9e\r\xc4Ρ\x01봩\xae\xfa\xc8H\xf6\xd2\xc6\xc4E;w\xe0 \xc6\xd6\xd9;\x0f\x96\x0es\xe7\x8d~{\xfb{\xee\xef\x00\xe9\xef9\x88\t\a0\f\xb90:Ak\xe7\xc4&\xca\xc2\xcf$6뤦\xf0\x87%\xbe[\x9b\x15ֹdkՖ\x84\xc2D\xce\xc5lj\x9b\xa7V^\x96\xcc\a\xfd?/\xb2˱\x03\xd6\xfa<\x17*ʁ\x9d z\xed\xe7V*\x16@\xf9#\x8a\xb9/\xd9\\,\x89\\\x83\xf0\xfd~\x82\x81\\\xaa\r/\x02\xef_%|\xa8\x8d.>\xef\xf8p]\xcdnXPw\f_\x92\x8e\xb5B\xf3}\x85\xc1\x0e'O\xb3\xfa\x8b\xc2f\xa5];\xf5A\x90\v\x9d\xbe\xb3\xb0\x93ƺ\x06\xd9h\x98\xd2\xf2%\xe9\xeb\x9d\xe5ԍ1\xcf<\xca\xfd\xec綒q{\xfdX_\xe8\x8f_\xfc\x0e5\xbe\x1eC\x90;\x90\x0eP%\xbaT\x9c4\"c\xc0\x8bxv\xc4\v2\xc4\xfa\xbd\xa6\xa1*\xf3XB\xacX\x12\xa5\x9a\xc9/\xb5'\xfc(d\xf6Zlt2G]\xce8\xe6\xa6u\xeb\x11\xfc\xdcN\xa5F.\x9ed^\xe6 rbD4\xc9)ڐ9ve\x00\x1e\x85t\xec\x91\b2\xbb'\xa7\xa3A&:/2t\b[\xdci\xc3\xfane\x8a\xb5\xeb\x0fr\xa1\xc7\xef\x1d\xfbM\xc0NȬ4\xd1Vw!7\x96\x9d\x90\x82\xe1yكO,\n+&_T:::\xa4\x9d\xf3\x04\x85Y\x12\xd0~1\xf8\xd2\xe1ca$ɢ\x9e\x8b g r|ٍ \x83\x88\nu\x1c\v!g`2\x16o!\xe4[\b\x19\a\xf7-\x84|\v!\xe7\xdb[\b\xf9\x16B\xc6Lx\v!\xdfB\xc8\xe5(\xfc\xf6!\xe4\x8dW<\x85\x1b9t\xe2\xf0~\xdd\xfd\xc5\xe9P\xff\x04\x8f\xd2\xed\a7\xc5ߠ\xd0qQݷ\v\xa3+Y\f\xdfx\xf5\xa9\nڀ\x92\xd9pM\x03\x11\xbc\x9a\xdf!7\xfc\\\xf8C\xe9\xb3\xf4w\xee\x98\x14[#\xf5\xecʨn\xddӨ\x81_~\x81\xb7\xa4\xac<\xbe\xf6i\xaeTiI\xc5S\xbb\x9ai\x02dl\x9dS܉w\xb6\xa6\xe9\x19\x95L\xd1u\x95/r]\x19W\xab\xf4\x1a\x15J\v꒺\xf5F3p\x97U#E\x92)\xa6\xf2hq\xbdQ\xa8\xed\x99\xd9OD\x95\xd1h\xf5\xd0\f\xe8\x81:\xa6\xf9\x9a\xa19\xf2wPy\x91J\xa1g\xd4\a\xbdl\x1d\xf1KE\xddS\xd5>\x115>\x11q\xf9\x1c\xa6\x11U<\xcbjw\"h\xf8\xcc:\x9d\xba\ngt\xed\xa5\xd59\xddڛQ\xb0159#\x157\xa30'+qb\xeblF\xa1Ϻ\xef\x19ə\xfcy\xe8\x9b\xe7\xaa\xcdy\xc9췕\xb4_\xb3MmR43g\x83x\x84g\x90\xed\xe6\xf8z+\xf7>ި>\xfa\xa5Q\xed3ǰ8\xe8\xfaӂ\x04~\x92*\xf5RD\xaaЊ>\xf8\x85\x00.\u007f\xaaC!V\xc6a\x1e\x86H\xb3wֱX\b2\xcb)l\x8f>\xc3b\xd7p#\x92}w\xe0 Ƚ\xb0t~΅\x83\xf3\xfa\xd8xYͣ\x9e\xf35\xc0\x8f\xba>\xa5\xb7?\xfa\xb32/\xb2a\xebVZ\x84\xf3.\x98矂F\xe4\xc4*Qؽ\xae\xbe\xf0\x9e=\b}\xeb\x8e\x1f\xc8DT\xdfw'\x99.\xd3\x1a\xfe({\x85:\u0097;\x8e\xb5\xf8\xbbפ\xf9\"8DS\xd5ɦ\xff\xc1\xf0\xf0\xc7\xfa\vH2\x96\x99\xb0N\x1bq\x8f\x9ft\xd2z\xcdd\x8a&\xdd\xf1\x9d\xc7*\x82-\xacr\x8f\xa1Ho\xf8\x14\x17v\xd4\a\xd7\\9\x04\xddi\xd27\x84鰙\x9c\xd4X\xe7\xb2\xd9M\xdd\xde~\xf2\x1bq2\xc7\xf5\xc7\xd2g\x85V\x850\x16\x89\xb6\xd5\x06\xfd\xa4\xed\x98\x15\xdb\xebG\xc8t\xd8\xfd\x0f}\xfc\r\xf2\xe5\x06\xa7\x9f\x16\xef\xc2?\x16P\tdE\xaey\x11\xbe\x1b\x9e\xd7:\x88\xb6\x98\xc6\xfa<&\xbbc\x90\x84\xb5:\x91lM\x1e\xa5\v_5\xbd\xc6\xf7\xed\xe3\xf1Ѩҗ\x16\u007f~Th\xbeV\xeaf7\xca\xf3e\xf2\x15\x8b_N\xa6U\xcc\x1c2\x00d\xb9z\xc3O=\x94\n$\xb1\xfe}$oz\x99T\xd5k\x1e}bM\xea\xf5\x98N\x0fE\xb2\xab\xa1'4V\xf5{\x1eg3t\xb4N\xb8\xd2\xce?\x88\xc2\xc3 \x11\x85+Mp\u007fIi\xf8\xe3~\x02\x81\xfe\x1b\xf8\xe5O\xa2dº\b\x9e}\xaa\x875\xe7t\xeb\xfc}Kel\xe0QX~s\xc4߶\xb4\x88\u007fj\x16\x87\u007f\xf0\x9e\xef\nR\xe1pE\xb0\x973m@\xbe\xf9\xf1\x83\xc9\xdd}\xa1\x11\xf5\x9dn +O\xab\x9eL\x18\xd9\xc9Х\xdd\n>\xe3\xe3Iߍ\"\xc4\xfb\xd9t\u007f/\x87\xe9]\xfd\xdeU즚\x17\xb2\xf8\x1a\xf4D\xe7\xbbf\xaa7\xb8\x97\xab\x15Yւ\xe7\xaf<-\xfc\xbf<\xf5-\x9c\x80Ih'\u007f\xea\xfd6bx&\x8cΰ\xc1\x19P\x92^W\xf3&\xda\xfb\xe6?^z\x15\xde@;\xf8\xea\x01~t,m\xc9Jpơ\xa7\xd1<\x91$X\xb8p\x17\xd0~\f\xed\xfc\x9c\xff\xa9\xde:\xe3\u007f\x13\xad|\xa8k\xaf\xe0o\u007f?\x83\xe08\xef*<\xa8\xf3\xbf\x01\x00\x00\xff\xff*\xdd\xe8w?N\x00\x00"), []byte("\x1f\x8b\b\x00\x00\x00\x00\x00\x00\xff\xb4VM\x8f\xe44\x13\xbe\xe7W\x94\xf6=\xec\xe5MzG{A\xb9\xa1\x06\xa4\x110\x1aM/sA\x1c\x1c\xa7\xd2mƱCU\xb9\x87\x06\xf1ߑ\xed\xa4?\xd2\xe9\x9d\xdd\x03\xbe\xa5\\\x1f\x8f\x9f\xfaH\x15eY\x16j0\xcfHl\xbc\xabA\r\x06\xff\x14t\U0004bad7o\xb82~\xb5\xbfkP\xd4]\xf1b\\[\xc3:\xb0\xf8\xfe\t\xd9\a\xd2\xf8\x1dv\xc6\x191\xde\x15=\x8aj\x95\xa8\xba\x00P\xceyQQ\xcc\xf1\x13@{'\xe4\xadE*\xb7誗\xd0`\x13\x8cm\x91R\x84)\xfe\xfeC\xf5\xb1\xfaP\x00h\xc2d\xfe\xc9\xf4Ȣ\xfa\xa1\x06\x17\xac-\x00\x9c\xea\xb1\x06F\x8aF\xa2$0\xe1\x1f\x01Y\xb8ڣE\xf2\x95\xf1\x05\x0f\xa8c\xe0-\xf90\xd4p\xba\xc8\xf6#\xa8\xfc\xa0Mr\xb5I\xae\x9e\xb2\xabtk\rˏ\xb74~2\xa3\xd6`\x03)\xbb\f()\xf0Γ<\x9c\x82\x96\xc0L\xf9Ƹm\xb0\x8a\x16\x8d\v\x80\x810]\xfc\xe2^\x9c\u007fu?\x18\xb4-\xd7\xd0)\xcbX\x00\xb0\xf6\x03\u0590\\\x0fJc\x1be\xa1\xa113c\xb8촆\xbf\xff)\x00\xf6ʚ6\xf1\x9a/\xfd\x80\xee\xdb\xc7\xfb\xe7\x8f\x1b\xbd\xc3^e!@\x8b\xac\xc9\fIo\xe9\xf1`\x18\x14\x8c@A<(\xad\x91\x19t B'cL0\xae\xf3ԧp\xa3c\x00\xd5\xf8 ;\x84甓\xf1\xe9ը0\x90\x1f\x90\xc4L\xe8\x93ɩ>\x8f\xb2\x19\xc6\xf7\xf1\x11Y\a\xdaX\x91\xc8)\xc6XW\xd8\x02\xa7\a\x82\xef@v\x86\x810\x91\xeb\xe4\x12]\xe2\xa4\x03\xe5\xc07\xbf\xa3\x96j|=\xc7,\x06\xdb\xc62\xde#\t\x10j\xbfu毣g\x8e4ĐV\xc9T@\xd31N\x90\x9c\xb2\x91\xfe\x80\xff\a\xe5Z\xe8\xd5\x01\bc\f\b\xee\xcc[R\xe1\n~\xf6\x84\x89\xc0\x1av\"\x03\u05eb\xd5\xd6\xc8ԑ\xda\xf7}pF\x0e\xab\xd4W\xa6\t\xe2\x89W-\xeeѮ\xd8lKEzg\x04\xb5\x04\u0095\x1aL\x99\x80\xbbԐU\xdf\xfe\xefX$\xefϐ\xca!\xd6\x13\v\x19\xb7=\x8aS\x8f\xdc\xe4=\xf6G\xae\x86l\x96\xf1\x9f荢\xc8\xca\xd3\xf7\x9bO0\x05M)\xb8\xe4<\xb1}2\xe3\x13\xf1\x91(\xe3:\xa4\x9c\xb8\x8e|\x9f<\xa2k\ao\\\xae%m\r\xbaK\xd294\xbd\x11\x9e\xaa4槂u\x9aK\xd0 \x84\xa1U\x82m\x05\xf7\x0e֪G\xbbV\x8c\xff9\xed\x91a.#\xa5o\x13\u007f>N/\x153[G\xf14\xeb\x163\xb4н\x9b\x01u\xccY$.ښ\xce\xe8\xd4\x06\xd0y\x02\xb5dR\xbd\x89!O\x99\xafA1Έ\x8cc69b\x0f\xbe\x85ciT$\xf9N1^\x8afh\x1e\xa3\xc6<\xb25\x1dꃶ\x98\x1d\xe4I\x81o\x81\x88\a]\xe8\xe7\xf1Jx\xc0\xd7+\xd9#\xf98'Ӥ>?\x8b\xf9\x87\xfcs\xd9\x1aǟ\u007fM\xd6I\xbf\xab\xf3\x91{6jG7@\xc1\xb9ؑ\xdeE\xf1\xcc)\\N\xe4٭\x11\xec\xafp,\"\xb9w\x9dO\xbf{\x15C*\xc9}\x82cR\xc7\x18\x19ѕ\xbb[9\xcdg>\x8a\xbe\x80\xc0|\xd2\xca\xf0\xf5\x86qt\x18\u0085\x98e² \x8e\x91\xaeċ\x1d3\"\v֪\xc6b\rBan\x99\xed\x14\x91:\\V\xc5TF\xa7\xe5\xe8\xb3\x05r\xa5\x1ek\xffu\x87\xeeV\x85ë\xe2\xa5\xdcd7\xd0\x1cn\x19\xae\x8f[\u07bcIrY\xd6\x10\xa7n)报/ b!K\xb9T\x17\xb6\x83+\x126\xe7\x9aS\xef_\x14\xfc\xb4,̑\xdf\b\xbe\x90ԙ\xe8\xb4\xd4ޝ\xbeRa\x97\xe3\x12\x9b.\xc6W\xb4g/g\xf1\xa4\xb6\x13\x17\xa7\xd9\x1a\u05ecA\xb0}\x98\xaf\xb0\xef\xde]\xec\xa2\xe9S{ך\xbc\x81ï\xbf\x15\xd9+\xb6\xcf\x13\x8e(\xfc7\x00\x00\xff\xff\xad\x01\x9a\xeb\x00\f\x00\x00"), []byte("\x1f\x8b\b\x00\x00\x00\x00\x00\x00\xff\xb4V\xc1\x8e\xdc6\f\xbd\xfb+\x88\xf4\x90K\xed\xc9\"\x97·`\xdb\x02A\xd3`\x91M\xe6R\xf4\xa0\x91\xe8\x19veI\x15)\xa7ۯ/$\xcb;\xe3ٙ\xa4E\x11\xdfDS\xe4\xe3\xe3#\xa1\xa6m\xdbF\x05\xdabd\xf2\xae\a\x15\b\xff\x12t\xf9\xc4\xdd\xc3\x0fܑ\xdfL7;\x14u\xd3<\x903=\xdc&\x16?~@\xf6)j\xfc\x11\ar$\xe4]3\xa2(\xa3D\xf5\r\x80r\u038b\xcaf\xceG\x00\xed\x9dDo-\xc6v\x8f\xae{H;\xdc%\xb2\x06cɰ\xe4\x9f^u\xaf\xbbW\r\x80\x8eX\xae\u007f\xa4\x11Y\xd4\x18zp\xc9\xda\x06\xc0\xa9\x11{\x98\xbcM#\xb2S\x81\x0f^\xac\xd7s\xb2nB\x8b\xd1w\xe4\x1b\x0e\xa8s\xee}\xf4)\xf4p\xfc1\x87\xa8\xb8暶%\xda}\x8d\xf6\xaeF+\x0e\x96X~\xf9\x82\xd3;b)\x8e\xc1\xa6\xa8\xecUdŇ\xc9\xed\x93U\xf1\x9aW\x03\x10\"2\xc6\t?\xb9\a\xe7?\xbb\x9f\t\xad\xe1\x1e\x06e\x19\x1b\x00\xd6>`\x0f\xefs\x05Ai4\r\xc0\xa4,\x99r\u007f\xae\xc9\ato\xee\xden_\xdf\xeb\x03\x8ej6\x02\x18d\x1d)\x14\xbf+\xc5\x001(X\xd0\xc0\xe7\x03F\x84ma\x0eX|D\xae\xc0kH\x80\xa5\x02\xee\xaa)D\x1f0\n-\x04\xe7\xefDaO\xb63_\x9b\xf1\x1f\xe9ͦ\xccʇ\x9f\xee?\u0092\xb4\xb4`\xcdya\xfbx\x8d\x8f\xc4g\xa2\xc8\r\x18\xe7\xc6\rя%\":\x13<9)\am\tݚtN\xbb\x91$w\xfaτ,\xb9?\x1dܖ\xcd\x02;\x84\x14\x8c\x124\x1d\xbcup\xabF\xb4\xb7\x8a\xf1\x9bӞ\x19\xe66S\xfau\xe2O\x17\xe2\xdaqf\xeb8DuU]\xec\xd0\xe5I\xbd\x0f\xa8W\x83\x92c\xd0@ur\a\x1fA\xadجS|9Zw\xe2zi\x80a\xde\xe0\x03\xed\xd76\x00eL\xd9\xfe\xca\xde]\xb9w\x95\x9e\v\xb5ޖ\x1cY\x8e\xb9\x80\x10\xfdD\x06c\xbb\xd4V1\xa4X\x8b,\xbb\xb1k.\xe5:c\xb8\x16V\u009d\xc3[!\xb8\xabN\x19C\xa6u\xb94\xef\x1d\xac\xeb\xaf,C\xb5\xc7˹\x9fՙ\x15L\x11WS\xd8>\x85\xfe\xaa:DI\xe2\xff\xaa\x8fr\xa9z\xee\xaaFt\x8a\x11\x9dԈ\xe0\x87\x15|\xf5\xff5\x12\x0e\x8a\xf1\x8b\xfc^\x8e}\x97\xef-\x94[\x1aP?j\x8bs\xb8\xb2Ο)\xea_C\xcd\x1f\xba4\x9e\xa3j\xe1ͤȪ\x9d\xc5g\u007f>9u\xe5ߕ\x06_\xe8ۙ\xe9\xf8¹9\x9e\n{\xed\U000a2e59\x9f\byk\x9a\x1e$\xa69y\x95Z\xb5\x1cŠ\xb4\xc6 hޟ?f^\xbcX\xbdG\xcaQ{7\xcf)\xf7\xf0\xdb\xef\xcd\x1c\x15\xcdv\xc1\x91\x8d\xff\x04\x00\x00\xff\xffJ\xbeWz\r\n\x00\x00"), diff --git a/pkg/apis/velero/v1/pod_volume_restore.go b/pkg/apis/velero/v1/pod_volume_restore.go index c6077f7c46..a4766b4c19 100644 --- a/pkg/apis/velero/v1/pod_volume_restore.go +++ b/pkg/apis/velero/v1/pod_volume_restore.go @@ -79,6 +79,24 @@ type PodVolumeRestoreStatus struct { // about the restore operation. // +optional Progress PodVolumeOperationProgress `json:"progress,omitempty"` + + // Errors is a count of all error messages that were generated + // during execution of the pod volume restore. The actual + // errors are in the restic log + // +optional + Errors int `json:"errors,omitempty"` + + // VerifyErrors is a count of all verification-related error + // messages that were generated during execution of the pod + // volume restore. The actual errors are in the restic log + // +optional + VerifyErrors int `json:"verifyErrors,omitempty"` + + // ResticPod is the name of the restic pod which processed the + // restore. Any errors referenced in Errors or VerifyErrors + // will be logged in this pod's log. + // +optional + ResticPod string `json:"resticPod,omitempty"` } // +genclient diff --git a/pkg/apis/velero/v1/restore.go b/pkg/apis/velero/v1/restore.go index 73e2872f35..871473fd8d 100644 --- a/pkg/apis/velero/v1/restore.go +++ b/pkg/apis/velero/v1/restore.go @@ -253,6 +253,21 @@ type RestoreStatus struct { // +nullable CompletionTimestamp *metav1.Time `json:"completionTimestamp,omitempty"` + // PodVolumeRestoreErrors is a slice of all PodVolumeRestores + // with errors (errors encountered by restic when restoring a pod) + // (if applicable) + // +optional + // +nullable + PodVolumeRestoreErrors []v1.ObjectReference `json:"podVolumeRestoreErrors,omitempty"` + + // PodVolumeRestoreVerifyErrors is a slice of all + // PodVolumeRestore errors from restore verification (errors + // encountered by restic when verifying a pod restore) + // (if applicable) + // +optional + // +nullable + PodVolumeRestoreVerifyErrors []v1.ObjectReference `json:"podVolumeRestoreVerifyErrors,omitempty"` + // Progress contains information about the restore's execution progress. Note // that this information is best-effort only -- if Velero fails to update it // during a restore for any reason, it may be inaccurate/stale. diff --git a/pkg/apis/velero/v1/zz_generated.deepcopy.go b/pkg/apis/velero/v1/zz_generated.deepcopy.go index 021ee11ffe..bfa1dff4fa 100644 --- a/pkg/apis/velero/v1/zz_generated.deepcopy.go +++ b/pkg/apis/velero/v1/zz_generated.deepcopy.go @@ -1357,6 +1357,16 @@ func (in *RestoreStatus) DeepCopyInto(out *RestoreStatus) { in, out := &in.CompletionTimestamp, &out.CompletionTimestamp *out = (*in).DeepCopy() } + if in.PodVolumeRestoreErrors != nil { + in, out := &in.PodVolumeRestoreErrors, &out.PodVolumeRestoreErrors + *out = make([]corev1.ObjectReference, len(*in)) + copy(*out, *in) + } + if in.PodVolumeRestoreVerifyErrors != nil { + in, out := &in.PodVolumeRestoreVerifyErrors, &out.PodVolumeRestoreVerifyErrors + *out = make([]corev1.ObjectReference, len(*in)) + copy(*out, *in) + } if in.Progress != nil { in, out := &in.Progress, &out.Progress *out = new(RestoreProgress) diff --git a/pkg/controller/pod_volume_restore_controller.go b/pkg/controller/pod_volume_restore_controller.go index 7fac93fe6a..72ae4aa61f 100644 --- a/pkg/controller/pod_volume_restore_controller.go +++ b/pkg/controller/pod_volume_restore_controller.go @@ -306,7 +306,7 @@ func (c *podVolumeRestoreController) processRestore(req *velerov1api.PodVolumeRe } // execute the restore process - if err := c.restorePodVolume(req, volumeDir, log); err != nil { + if err := c.restorePodVolume(req, volumeDir, log, restic.GetVolumesToVerifyIncludes(pod, req.Spec.Volume)); err != nil { log.WithError(err).Error("Error restoring volume") return c.failRestore(req, errors.Wrap(err, "error restoring volume").Error(), log) } @@ -325,7 +325,7 @@ func (c *podVolumeRestoreController) processRestore(req *velerov1api.PodVolumeRe return nil } -func (c *podVolumeRestoreController) restorePodVolume(req *velerov1api.PodVolumeRestore, volumeDir string, log logrus.FieldLogger) error { +func (c *podVolumeRestoreController) restorePodVolume(req *velerov1api.PodVolumeRestore, volumeDir string, log logrus.FieldLogger, verify bool) error { // Get the full path of the new volume's directory as mounted in the daemonset pod, which // will look like: /host_pods//volumes// volumePath, err := singlePathMatch(fmt.Sprintf("/host_pods/%s/volumes/*/%s", string(req.Spec.Pod.UID), volumeDir)) @@ -346,6 +346,7 @@ func (c *podVolumeRestoreController) restorePodVolume(req *velerov1api.PodVolume credsFile, req.Spec.SnapshotID, volumePath, + verify, ) backupLocation := &velerov1api.BackupStorageLocation{} @@ -395,7 +396,11 @@ func (c *podVolumeRestoreController) restorePodVolume(req *velerov1api.PodVolume if stdout, stderr, err = restic.RunRestore(resticCmd, log, c.updateRestoreProgressFunc(req, log)); err != nil { return errors.Wrapf(err, "error running restic restore, cmd=%s, stdout=%s, stderr=%s", resticCmd.String(), stdout, stderr) } - log.Debugf("Ran command=%s, stdout=%s, stderr=%s", resticCmd.String(), stdout, stderr) + log.Infof("Ran command=%s, stdout=%s, stderr=%s", resticCmd.String(), stdout, stderr) + err = c.processRestoreErrors(req, stdout, stderr, verify) + if err != nil { + log.WithError(err).Error("error updating PodVolumeRestore errors") + } // Remove the .velero directory from the restored volume (it may contain done files from previous restores // of this volume, which we don't want to carry over). If this fails for any reason, log and continue, since @@ -429,6 +434,32 @@ func (c *podVolumeRestoreController) restorePodVolume(req *velerov1api.PodVolume return nil } +func (c *podVolumeRestoreController) processRestoreErrors(req *velerov1api.PodVolumeRestore, stdout, stderr string, verify bool) error { + nErrors := 0 + nVerifyErrors := 0 + for _, str := range strings.Split(stdout, "\n") { + var i int + _, err := fmt.Sscanf(str, "There were %d errors", &i) + if err == nil { + nErrors = i + } + } + if verify { + for _, str := range strings.Split(stderr, "\n") { + if strings.Contains(str, "Unexpected contents starting at offset") || strings.Contains(str, "Invalid file size: expected") { + nVerifyErrors++ + } + } + } + if _, err := c.patchPodVolumeRestore(req, func(r *velerov1api.PodVolumeRestore) { + r.Status.Errors = nErrors + r.Status.VerifyErrors = nVerifyErrors + r.Status.ResticPod = os.Getenv("POD_NAME") + }); err != nil { + return err + } + return nil +} func (c *podVolumeRestoreController) patchPodVolumeRestore(req *velerov1api.PodVolumeRestore, mutate func(*velerov1api.PodVolumeRestore)) (*velerov1api.PodVolumeRestore, error) { // Record original json oldData, err := json.Marshal(req) diff --git a/pkg/restic/command_factory.go b/pkg/restic/command_factory.go index 8b315a93e1..d931643310 100644 --- a/pkg/restic/command_factory.go +++ b/pkg/restic/command_factory.go @@ -47,14 +47,20 @@ func backupTagFlags(tags map[string]string) []string { } // RestoreCommand returns a Command for running a restic restore. -func RestoreCommand(repoIdentifier, passwordFile, snapshotID, target string) *Command { +func RestoreCommand(repoIdentifier, passwordFile, snapshotID, target string, verify bool) *Command { + extraFlags := []string{"--target=.", "--delete"} + if verify { + extraFlags = append(extraFlags, "--verify") + } else { + extraFlags = append(extraFlags, "--skip-unchanged") + } return &Command{ Command: "restore", RepoIdentifier: repoIdentifier, PasswordFile: passwordFile, Dir: target, Args: []string{snapshotID}, - ExtraFlags: []string{"--target=.", "--skip-unchanged", "--delete"}, + ExtraFlags: extraFlags, } } diff --git a/pkg/restic/command_factory_test.go b/pkg/restic/command_factory_test.go index c9832ea3f5..7f6b73de7d 100644 --- a/pkg/restic/command_factory_test.go +++ b/pkg/restic/command_factory_test.go @@ -39,14 +39,25 @@ func TestBackupCommand(t *testing.T) { } func TestRestoreCommand(t *testing.T) { - c := RestoreCommand("repo-id", "password-file", "snapshot-id", "target") + c := RestoreCommand("repo-id", "password-file", "snapshot-id", "target", false) assert.Equal(t, "restore", c.Command) assert.Equal(t, "repo-id", c.RepoIdentifier) assert.Equal(t, "password-file", c.PasswordFile) assert.Equal(t, "target", c.Dir) assert.Equal(t, []string{"snapshot-id"}, c.Args) - assert.Equal(t, []string{"--target=.", "--skip-unchanged", "--delete"}, c.ExtraFlags) + assert.Equal(t, []string{"--target=.", "--delete", "--skip-unchanged"}, c.ExtraFlags) +} + +func TestRestoreVerifyCommand(t *testing.T) { + c := RestoreCommand("repo-id", "password-file", "snapshot-id", "target", true) + + assert.Equal(t, "restore", c.Command) + assert.Equal(t, "repo-id", c.RepoIdentifier) + assert.Equal(t, "password-file", c.PasswordFile) + assert.Equal(t, "target", c.Dir) + assert.Equal(t, []string{"snapshot-id"}, c.Args) + assert.Equal(t, []string{"--target=.", "--delete", "--verify"}, c.ExtraFlags) } func TestGetSnapshotCommand(t *testing.T) { diff --git a/pkg/restic/common.go b/pkg/restic/common.go index e8648cd6cb..c717cac913 100644 --- a/pkg/restic/common.go +++ b/pkg/restic/common.go @@ -66,6 +66,10 @@ const ( // the BSL is using its own credentials, rather than those in the environment credentialsFileKey = "credentialsFile" + // VolumesToVerifyAnnotation is the annotation on a pod whose mounted volumes + // need to be verified after backing up with restic. + VolumesToVerifyAnnotation = "backup.velero.io/verify-volumes" + // Deprecated. // // TODO(2.0): remove @@ -182,6 +186,27 @@ func contains(list []string, k string) bool { return false } +// GetVolumesToVerifyIncludes returns true if the passed-in +// volume name is included in the VolumesToVerifyAnnotation +func GetVolumesToVerifyIncludes(obj metav1.Object, volName string) bool { + annotations := obj.GetAnnotations() + if annotations == nil { + return false + } + + volumesValue := annotations[VolumesToVerifyAnnotation] + if volumesValue == "" { + return false + } + + for _, vol := range strings.Split(volumesValue, ",") { + if vol == volName { + return true + } + } + return false +} + // GetPodVolumesUsingRestic returns a list of volume names to backup for the provided pod. func GetPodVolumesUsingRestic(pod *corev1api.Pod, defaultVolumesToRestic bool) []string { if !defaultVolumesToRestic { diff --git a/pkg/restic/restorer.go b/pkg/restic/restorer.go index 242cc717d7..62dba4e652 100644 --- a/pkg/restic/restorer.go +++ b/pkg/restic/restorer.go @@ -159,6 +159,20 @@ ForEachVolume: if res.Status.Phase == velerov1api.PodVolumeRestorePhaseFailed { errs = append(errs, errors.Errorf("pod volume restore failed: %s", res.Status.Message)) } + if res.Status.Errors > 0 { + data.Restore.Status.PodVolumeRestoreErrors = append(data.Restore.Status.PodVolumeRestoreErrors, corev1api.ObjectReference{ + Kind: "PodVolumeRestore", + Name: res.Name, + Namespace: res.Namespace, + }) + } + if res.Status.VerifyErrors > 0 { + data.Restore.Status.PodVolumeRestoreVerifyErrors = append(data.Restore.Status.PodVolumeRestoreVerifyErrors, corev1api.ObjectReference{ + Kind: "PodVolumeRestore", + Name: res.Name, + Namespace: res.Namespace, + }) + } } }