From 55e744f999d6ee9f542bb7b8ebfc7daa80e4213c Mon Sep 17 00:00:00 2001 From: perdasilva Date: Tue, 26 Jul 2022 17:54:21 -0300 Subject: [PATCH] Add node affinity and pod (anti)affinity to Subscription spec.config Signed-off-by: perdasilva --- crds/operators.coreos.com_subscriptions.yaml | 457 ++++++++++++++++++ crds/zz_defs.go | 2 +- pkg/operators/v1alpha1/subscription_types.go | 12 + .../v1alpha1/zz_generated.deepcopy.go | 15 + 4 files changed, 485 insertions(+), 1 deletion(-) diff --git a/crds/operators.coreos.com_subscriptions.yaml b/crds/operators.coreos.com_subscriptions.yaml index 7bcc8c94f..0e2bd8d98 100644 --- a/crds/operators.coreos.com_subscriptions.yaml +++ b/crds/operators.coreos.com_subscriptions.yaml @@ -173,11 +173,468 @@ spec: optional: description: Specify whether the Secret must be defined type: boolean + nodeAffinity: + description: Describes node affinity scheduling rules for the pod. + type: object + properties: + preferredDuringSchedulingIgnoredDuringExecution: + description: The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding "weight" to the sum if the node matches the corresponding matchExpressions; the node(s) with the highest sum are the most preferred. + type: array + items: + description: An empty preferred scheduling term matches all objects with implicit weight 0 (i.e. it's a no-op). A null preferred scheduling term matches no objects (i.e. is also a no-op). + type: object + required: + - preference + - weight + properties: + preference: + description: A node selector term, associated with the corresponding weight. + type: object + properties: + matchExpressions: + description: A list of node selector requirements by node's labels. + type: array + items: + description: A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: The label key that the selector applies to. + type: string + operator: + description: Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt. + type: string + values: + description: An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch. + type: array + items: + type: string + matchFields: + description: A list of node selector requirements by node's fields. + type: array + items: + description: A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: The label key that the selector applies to. + type: string + operator: + description: Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt. + type: string + values: + description: An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch. + type: array + items: + type: string + weight: + description: Weight associated with matching the corresponding nodeSelectorTerm, in the range 1-100. + type: integer + format: int32 + requiredDuringSchedulingIgnoredDuringExecution: + description: If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to an update), the system may or may not try to eventually evict the pod from its node. + type: object + required: + - nodeSelectorTerms + properties: + nodeSelectorTerms: + description: Required. A list of node selector terms. The terms are ORed. + type: array + items: + description: A null or empty node selector term matches no objects. The requirements of them are ANDed. The TopologySelectorTerm type implements a subset of the NodeSelectorTerm. + type: object + properties: + matchExpressions: + description: A list of node selector requirements by node's labels. + type: array + items: + description: A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: The label key that the selector applies to. + type: string + operator: + description: Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt. + type: string + values: + description: An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch. + type: array + items: + type: string + matchFields: + description: A list of node selector requirements by node's fields. + type: array + items: + description: A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: The label key that the selector applies to. + type: string + operator: + description: Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt. + type: string + values: + description: An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch. + type: array + items: + type: string nodeSelector: description: 'NodeSelector is a selector which must be true for the pod to fit on a node. Selector which must match a node''s labels for the pod to be scheduled on that node. More info: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/' type: object additionalProperties: type: string + podAffinity: + description: Describes pod affinity scheduling rules (e.g. co-locate this pod in the same node, zone, etc. as some other pod(s)). + type: object + properties: + preferredDuringSchedulingIgnoredDuringExecution: + description: The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding "weight" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred. + type: array + items: + description: The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s) + type: object + required: + - podAffinityTerm + - weight + properties: + podAffinityTerm: + description: Required. A pod affinity term, associated with the corresponding weight. + type: object + required: + - topologyKey + properties: + labelSelector: + description: A label query over a set of resources, in this case pods. + type: object + properties: + matchExpressions: + description: matchExpressions is a list of label selector requirements. The requirements are ANDed. + type: array + items: + description: A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: key is the label key that the selector applies to. + type: string + operator: + description: operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist. + type: string + values: + description: values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. + type: array + items: + type: string + matchLabels: + description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. + type: object + additionalProperties: + type: string + namespaceSelector: + description: A label query over the set of namespaces that the term applies to. The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field. null selector and null or empty namespaces list means "this pod's namespace". An empty selector ({}) matches all namespaces. + type: object + properties: + matchExpressions: + description: matchExpressions is a list of label selector requirements. The requirements are ANDed. + type: array + items: + description: A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: key is the label key that the selector applies to. + type: string + operator: + description: operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist. + type: string + values: + description: values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. + type: array + items: + type: string + matchLabels: + description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. + type: object + additionalProperties: + type: string + namespaces: + description: namespaces specifies a static list of namespace names that the term applies to. The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector. null or empty namespaces list and null namespaceSelector means "this pod's namespace". + type: array + items: + type: string + topologyKey: + description: This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed. + type: string + weight: + description: weight associated with matching the corresponding podAffinityTerm, in the range 1-100. + type: integer + format: int32 + requiredDuringSchedulingIgnoredDuringExecution: + description: If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied. + type: array + items: + description: Defines a set of pods (namely those matching the labelSelector relative to the given namespace(s)) that this pod should be co-located (affinity) or not co-located (anti-affinity) with, where co-located is defined as running on a node whose value of the label with key matches that of any node on which a pod of the set of pods is running + type: object + required: + - topologyKey + properties: + labelSelector: + description: A label query over a set of resources, in this case pods. + type: object + properties: + matchExpressions: + description: matchExpressions is a list of label selector requirements. The requirements are ANDed. + type: array + items: + description: A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: key is the label key that the selector applies to. + type: string + operator: + description: operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist. + type: string + values: + description: values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. + type: array + items: + type: string + matchLabels: + description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. + type: object + additionalProperties: + type: string + namespaceSelector: + description: A label query over the set of namespaces that the term applies to. The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field. null selector and null or empty namespaces list means "this pod's namespace". An empty selector ({}) matches all namespaces. + type: object + properties: + matchExpressions: + description: matchExpressions is a list of label selector requirements. The requirements are ANDed. + type: array + items: + description: A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: key is the label key that the selector applies to. + type: string + operator: + description: operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist. + type: string + values: + description: values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. + type: array + items: + type: string + matchLabels: + description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. + type: object + additionalProperties: + type: string + namespaces: + description: namespaces specifies a static list of namespace names that the term applies to. The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector. null or empty namespaces list and null namespaceSelector means "this pod's namespace". + type: array + items: + type: string + topologyKey: + description: This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed. + type: string + podAntiAffinity: + description: Describes pod anti-affinity scheduling rules (e.g. avoid putting this pod in the same node, zone, etc. as some other pod(s)). + type: object + properties: + preferredDuringSchedulingIgnoredDuringExecution: + description: The scheduler will prefer to schedule pods to nodes that satisfy the anti-affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling anti-affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding "weight" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred. + type: array + items: + description: The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s) + type: object + required: + - podAffinityTerm + - weight + properties: + podAffinityTerm: + description: Required. A pod affinity term, associated with the corresponding weight. + type: object + required: + - topologyKey + properties: + labelSelector: + description: A label query over a set of resources, in this case pods. + type: object + properties: + matchExpressions: + description: matchExpressions is a list of label selector requirements. The requirements are ANDed. + type: array + items: + description: A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: key is the label key that the selector applies to. + type: string + operator: + description: operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist. + type: string + values: + description: values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. + type: array + items: + type: string + matchLabels: + description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. + type: object + additionalProperties: + type: string + namespaceSelector: + description: A label query over the set of namespaces that the term applies to. The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field. null selector and null or empty namespaces list means "this pod's namespace". An empty selector ({}) matches all namespaces. + type: object + properties: + matchExpressions: + description: matchExpressions is a list of label selector requirements. The requirements are ANDed. + type: array + items: + description: A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: key is the label key that the selector applies to. + type: string + operator: + description: operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist. + type: string + values: + description: values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. + type: array + items: + type: string + matchLabels: + description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. + type: object + additionalProperties: + type: string + namespaces: + description: namespaces specifies a static list of namespace names that the term applies to. The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector. null or empty namespaces list and null namespaceSelector means "this pod's namespace". + type: array + items: + type: string + topologyKey: + description: This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed. + type: string + weight: + description: weight associated with matching the corresponding podAffinityTerm, in the range 1-100. + type: integer + format: int32 + requiredDuringSchedulingIgnoredDuringExecution: + description: If the anti-affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the anti-affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied. + type: array + items: + description: Defines a set of pods (namely those matching the labelSelector relative to the given namespace(s)) that this pod should be co-located (affinity) or not co-located (anti-affinity) with, where co-located is defined as running on a node whose value of the label with key matches that of any node on which a pod of the set of pods is running + type: object + required: + - topologyKey + properties: + labelSelector: + description: A label query over a set of resources, in this case pods. + type: object + properties: + matchExpressions: + description: matchExpressions is a list of label selector requirements. The requirements are ANDed. + type: array + items: + description: A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: key is the label key that the selector applies to. + type: string + operator: + description: operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist. + type: string + values: + description: values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. + type: array + items: + type: string + matchLabels: + description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. + type: object + additionalProperties: + type: string + namespaceSelector: + description: A label query over the set of namespaces that the term applies to. The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field. null selector and null or empty namespaces list means "this pod's namespace". An empty selector ({}) matches all namespaces. + type: object + properties: + matchExpressions: + description: matchExpressions is a list of label selector requirements. The requirements are ANDed. + type: array + items: + description: A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values. + type: object + required: + - key + - operator + properties: + key: + description: key is the label key that the selector applies to. + type: string + operator: + description: operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist. + type: string + values: + description: values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. + type: array + items: + type: string + matchLabels: + description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. + type: object + additionalProperties: + type: string + namespaces: + description: namespaces specifies a static list of namespace names that the term applies to. The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector. null or empty namespaces list and null namespaceSelector means "this pod's namespace". + type: array + items: + type: string + topologyKey: + description: This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed. + type: string resources: description: 'Resources represents compute resources required by this container. Immutable. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/' type: object diff --git a/crds/zz_defs.go b/crds/zz_defs.go index 3578ef32e..68b9d3530 100644 --- a/crds/zz_defs.go +++ b/crds/zz_defs.go @@ -225,7 +225,7 @@ func operatorsCoreosCom_operatorsYaml() (*asset, error) { return a, nil } -var _operatorsCoreosCom_subscriptionsYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x7d\x6b\x73\xe3\xb8\x95\xe8\xf7\xf9\x15\x28\x27\x55\xb6\xb3\x92\xdc\x9d\x9d\x4d\x72\xbd\xa9\xa4\x3c\xb6\x3b\xd1\x4e\xb7\xdb\xdb\x72\xf7\x54\x6e\x92\x9b\x40\x24\x24\x61\x4c\x02\x1c\x00\x94\x5b\x79\xfc\xf7\x5b\x38\x07\x00\x41\xea\x45\xca\xf2\xa3\x67\xcc\x0f\x33\x6d\x0a\x00\x81\x83\x83\xf3\xc2\x79\xd0\x82\x7f\x62\x4a\x73\x29\x4e\x09\x2d\x38\xfb\x6c\x98\xb0\x7f\xe9\xc1\xed\x6f\xf4\x80\xcb\x93\xf9\xeb\xaf\x6e\xb9\x48\x4f\xc9\x79\xa9\x8d\xcc\x3f\x30\x2d\x4b\x95\xb0\x0b\x36\xe1\x82\x1b\x2e\xc5\x57\x39\x33\x34\xa5\x86\x9e\x7e\x45\x08\x15\x42\x1a\x6a\x5f\x6b\xfb\x27\x21\x89\x14\x46\xc9\x2c\x63\xaa\x3f\x65\x62\x70\x5b\x8e\xd9\xb8\xe4\x59\xca\x14\x0c\xee\x3f\x3d\x7f\x35\xf8\xcd\xe0\xd5\x57\x84\x24\x8a\x41\xf7\x1b\x9e\x33\x6d\x68\x5e\x9c\x12\x51\x66\xd9\x57\x84\x08\x9a\xb3\x53\xa2\xcb\xb1\x4e\x14\x2f\xe0\x13\x03\x59\x30\x45\x8d\x54\x7a\x90\x48\xc5\xa4\xfd\x5f\xfe\x95\x2e\x58\x62\x3f\x3e\x55\xb2\x2c\x4e\xc9\xca\x36\x38\x9c\x9f\x23\x35\x6c\x2a\x15\xf7\x7f\x13\xd2\x27\x32\xcb\xe1\xdf\xb8\xf6\x51\xf4\x55\x78\x9d\x71\x6d\xbe\x5d\xfa\xe9\x2d\xd7\x06\x7e\x2e\xb2\x52\xd1\xac\x31\x5b\xf8\x45\xcf\xa4\x32\x57\xd5\xb7\xed\xb7\x74\x39\x8e\xff\xed\x1a\x72\x31\x2d\x33\xaa\xea\x83\x7c\x45\x88\x4e\x64\xc1\x4e\x09\x8c\x51\xd0\x84\xa5\x5f\x11\xe2\xe0\xe8\xc6\xec\x13\x9a\xa6\xb0\x37\x34\xbb\x56\x5c\x18\xa6\xce\x65\x56\xe6\x22\x7c\xd3\xb6\x49\x59\x18\xf5\x94\xdc\xcc\x18\x29\x68\x72\x4b\xa7\xcc\x7f\x6f\xcc\x52\x62\x64\xe8\x40\xc8\xf7\x5a\x8a\x6b\x6a\x66\xa7\x64\x60\x41\x3c\xb0\x10\x8c\x7e\xc6\xfd\xb9\xc6\x41\xa2\xf7\x66\x61\xa7\xab\x8d\xe2\x62\xba\xe9\xf3\x09\x35\x34\x93\x53\x82\xf8\x45\x26\x52\x11\x33\x63\xc4\x7e\x8a\x4f\x38\x4b\xfd\xfc\x36\xcc\x08\xbb\x2e\xcd\x69\xd4\x7c\xdd\x7a\x4a\x33\x2a\x04\xcb\x88\x9c\x90\xb2\x48\xa9\x61\x9a\x18\x59\xc1\x67\x33\x78\x5c\xe7\xa5\xd9\x9c\x2f\xbd\x5f\x31\x1d\x6c\x3a\x7f\x4d\xb3\x62\x46\x5f\xbb\x97\x3a\x99\xb1\x9c\x56\x7b\x28\x0b\x26\xce\xae\x87\x9f\xfe\x73\xd4\xf8\x81\xd4\x97\x12\xa3\x28\xb9\x65\xac\xd0\xd5\xa1\x20\x65\x61\xd7\x64\x17\x47\xc6\x0b\x62\x14\x4d\x6e\xb9\x98\xc2\xd2\xa7\xb8\xde\x73\xdc\x18\x3d\x58\x9a\xb2\x1c\x7f\xcf\x12\x13\xbd\x56\xec\x87\x92\x2b\x96\xc6\x53\xb1\x90\xf5\x24\xa2\xf1\xda\xc2\x29\x7a\x55\x28\x3b\x2d\x13\x9d\x43\x7c\x22\x1a\x55\x7b\xdf\x58\xe6\xa1\x85\x05\xb6\x23\xa9\x25\x4f\x76\xfa\x33\xe6\x0f\x07\x4b\x1d\x00\xed\x76\x9a\x19\xd7\x44\xb1\x42\x31\xcd\x04\x12\x2c\xfb\x9a\x0a\xb7\xa6\x01\x19\x31\x65\x3b\xda\x03\x5b\x66\xa9\xa5\x63\x73\xa6\x0c\x51\x2c\x91\x53\xc1\xff\x11\x46\x03\x10\xd9\xcf\x64\x16\x3f\x0c\x81\xe3\x26\x68\x46\xe6\x34\x2b\x59\x8f\x50\x91\x92\x9c\x2e\x88\x62\x76\x5c\x52\x8a\x68\x04\x68\xa2\x07\xe4\x9d\x54\x8c\x70\x31\x91\xa7\x64\x66\x4c\xa1\x4f\x4f\x4e\xa6\xdc\x78\x0a\x9c\xc8\x3c\x2f\x05\x37\x8b\x13\x20\xa6\x7c\x5c\xda\x8d\x3b\x49\xd9\x9c\x65\x27\x9a\x4f\xfb\x54\x25\x33\x6e\x58\x62\x4a\xc5\x4e\x68\xc1\xfb\x30\x59\x81\x24\x32\x4f\x7f\xa6\x1c\xcd\xd6\x87\x0d\xf0\xad\x3c\x07\xc4\x53\xbd\x8d\xb0\xb6\xc4\x8f\x70\x4d\xa8\xeb\x8e\x6b\xa9\x40\x6a\x5f\x59\xa8\x7c\xb8\x1c\xdd\x10\x3f\x01\x04\x3b\x42\xb8\x6a\xaa\x2b\x60\x5b\x40\x71\x31\x61\x0a\x5b\x4e\x94\xcc\x61\x14\x26\xd2\x42\x72\x61\xe0\x8f\x24\xe3\x4c\x18\x7b\x0c\x73\x6e\x34\xe0\x1c\xd3\xc6\xee\xc3\x80\x9c\x03\x03\x22\x63\xe6\x0e\x6c\x3a\x20\x43\x41\xce\x69\xce\xb2\x73\xaa\xd9\x83\x83\xda\x42\x54\xf7\x2d\xf8\xda\x03\x3b\xe6\x9f\xcb\x1d\x96\xce\x18\x21\x9e\xc1\xad\xdd\x9d\xf8\xc0\x8f\x0a\x96\x84\xe3\x40\x05\x39\x2b\x8a\x8c\x27\x88\xf1\x66\x46\x0d\x49\xa8\xb0\xf0\xe2\x42\x1b\x9a\x65\xc0\x4e\x5a\xcd\x62\xdd\x69\x27\x70\xb4\x1b\xcc\xc1\xbf\x5e\xa2\xd0\xf5\x1f\x02\x53\x6b\xb4\x58\x47\x19\xec\xe3\xe8\xec\xf2\x0f\x1b\x40\x4e\x50\x32\x99\xf0\xe9\xaa\x6e\x6b\x61\x79\x0e\x5d\x40\xa6\xa1\x5c\x68\x37\x44\xa9\x10\x9a\x15\xa7\xb2\xbc\x8b\xd6\xf8\xf6\x60\xed\xec\x56\x42\x76\xdb\x9a\xed\xc3\xc4\x7c\xf5\x0f\x8d\x05\x5c\x8a\x39\x1e\x54\x2b\xb3\x58\x22\xc7\xc4\x9c\x2b\x29\x72\x7b\x88\xe6\x54\x71\x3a\xce\x1c\x63\x63\x96\x7c\xe1\x19\xc3\x25\x32\xb5\xea\x48\xad\xf9\x2a\xae\x87\x2a\x45\x17\x6b\x5a\x70\xc3\xf2\x35\xab\x59\x35\xed\x4f\x54\x45\x54\xc2\x22\xef\xaa\xa9\x13\xd7\xc0\x4e\x9d\x92\xf3\x30\xf1\xb5\x9f\xd9\x02\x77\x7c\xd6\xe3\x76\xf5\xac\xc1\x72\xff\x6c\xdb\x40\x7c\x80\xd3\x6f\xf8\xbd\x01\x16\x7b\x42\x90\x81\xb1\x95\xd0\x18\x90\x77\xa5\x86\xdd\xa2\xe4\xfc\x6f\xc3\x8b\xcb\xab\x9b\xe1\x9b\xe1\xe5\x87\xf5\xe0\x20\xdb\x0e\x4a\xf5\x00\x8d\xef\x30\xd9\xc3\x4f\x7e\x8f\x14\x9b\x30\xc5\x44\xc2\x34\xf9\xf9\xd1\xa7\xb3\x0f\x7f\xbb\x3a\x7b\x77\x79\x4c\xa8\x62\x84\x7d\x2e\xa8\x48\x59\x4a\x4a\xed\x99\x46\xa1\xd8\x9c\xcb\x52\x67\x0b\x47\xb9\xd2\x35\x48\xdb\xc4\x56\xe0\xb6\x54\x2c\x88\x66\x6a\xce\x93\xd5\x20\xd2\x03\x32\x9c\x10\x5a\x21\x50\x12\x30\xdc\x32\xaa\x6c\xce\xd2\x1e\x0c\x1b\x26\xed\xbf\xc3\x45\x51\x1a\xcf\xf0\xee\x78\x96\xc1\xa9\x10\x28\x2b\xa5\x03\x72\x21\x4b\x3b\xde\xcf\x7f\x0e\x0b\x53\x2c\x2d\x13\x10\xa2\x2d\x31\xe0\x62\x6a\x7f\xea\x91\xbb\x19\x4f\x66\x84\x66\x99\xbc\xd3\x40\x29\x98\x4e\x68\xe1\x97\x1e\x43\x47\x2f\x84\xa1\x9f\x4f\x09\x1f\xb0\x01\x39\xf8\x79\xf4\xd3\x01\x7e\xbd\x50\xd2\x7e\x02\xe5\x64\x9c\x55\xc6\x0d\x53\x34\x23\x07\x71\xeb\x01\xb9\xb4\xdf\x60\x69\xbc\x0f\x30\x82\x60\x73\xa6\xec\x2a\xfc\x2e\xf4\x88\x62\x53\xaa\xd2\x8c\x69\x6d\xf1\xec\x6e\xc6\xcc\x8c\xa1\x28\x1e\x00\xc6\x3e\x73\xcb\x70\xa5\x22\x42\x9a\x01\xb9\x60\x13\x5a\x66\xc0\x81\xc9\xc1\xc1\xa0\xc9\xf8\x76\x47\xb5\x37\x4a\xe6\x1d\xd0\x6d\x54\xd7\x1c\x56\xed\xfd\xa1\xc6\x91\x6b\x64\x4d\xb3\x94\xf0\x89\x93\x60\xb8\xb6\x8b\x22\x2c\x2f\xcc\xa2\xcd\xa1\xd9\x42\x47\x48\x6b\x42\x40\x02\x4f\x7a\x47\x8b\x6f\xd9\xe2\x03\x9b\x6c\x6b\xde\x5c\x3f\xcb\x58\x62\x09\x25\xb9\x65\x0b\x10\x67\xc9\xb9\x1f\x70\xf3\x52\x3a\x2d\x87\xb4\x24\x8f\xfe\xe9\xdb\xe9\x6c\x6d\xd7\x1e\x48\xf6\xb9\x65\x8b\x36\xcd\xc8\xb2\x4e\x67\x41\x03\xbc\xce\xc2\x6a\x3b\x54\x48\x7b\x94\xf5\xcf\x76\x8a\xbe\x72\x72\x87\x31\x69\x77\xe7\xd4\xac\x14\x58\x6f\xcb\x31\x53\x82\x19\x06\x32\x6b\x2a\x13\x6d\xc5\xd5\x84\x15\x46\x9f\xc8\xb9\xa5\x7c\xec\xee\xe4\x4e\x2a\xab\xc8\xf5\xef\xb8\x99\xf5\x71\x57\xf5\x09\x18\x3d\x4e\x7e\x06\xff\x23\x37\xef\x2f\xde\x9f\x92\xb3\x34\x25\x12\x8e\x78\xa9\xd9\xa4\xcc\xc8\x84\xb3\x2c\xd5\x83\x48\xeb\xea\x81\x3e\xd0\x23\x25\x4f\x7f\xbf\xf9\x70\xef\x08\x31\x59\xa0\xb1\x62\x07\xa8\x8d\x40\xe8\x5a\xd4\xe8\x54\x40\x7a\x4b\xa1\xac\x8a\x60\xf7\x3c\x77\x6c\xd1\x31\x94\x0e\xcb\x18\x4b\x99\x31\x2a\xb6\xf4\x00\xb0\x75\x3f\xb3\x87\xd5\xa1\x85\x11\x3c\x02\x14\x32\x3d\x25\xba\x2c\x0a\xa9\x8c\x0e\x2a\x02\xd8\x5c\x7a\xf5\x3f\x41\x5e\xee\x91\xbf\x87\x97\x19\x1d\xb3\x4c\xff\xf9\xf0\xf0\xb7\xdf\x5e\xfe\xe9\x77\x87\x87\x7f\xfd\x7b\xfc\x6b\x64\xa1\xab\x37\x41\x9b\x8e\x4c\x41\x08\x77\x7f\x3a\x36\x7a\x96\x24\xb2\x14\xc6\xfd\x60\xa8\x29\xf5\x60\x26\xb5\x19\x5e\x87\x3f\x0b\x99\x36\xff\xd2\x5b\x38\x01\x79\x58\xa2\x03\xe0\xbc\xa6\x66\xb6\x67\xd2\xb3\xde\x1a\xb1\xfa\xa9\x6d\xb7\xb7\x4f\xb8\x5d\x76\x06\x09\xfb\xcf\x37\x7e\xba\x96\x03\xdd\x29\x6e\x0c\x13\x20\x77\x30\x95\x5b\x4e\xdc\xb3\x98\x5b\xb1\xd9\xf9\xeb\x83\x07\x21\x5e\x01\x6a\x3b\x2c\x0e\x66\xef\x56\x86\xc8\x1c\x08\xad\x97\xa0\x2a\x1d\xe9\xec\x7a\xe8\x2d\x33\x7b\x5f\x88\xb7\x37\xbc\xb9\xf7\x99\x0c\x96\x0b\xb7\xac\x20\x69\x9e\x12\x29\xb2\x45\xf8\x5d\x93\x8c\x83\x35\xc2\x0a\xa0\xc1\x22\x71\x84\x2f\x07\x49\x51\xf6\x5c\x83\x41\xce\x72\xa9\x16\xe1\x4f\x56\xcc\x58\x6e\x25\xb6\xbe\x36\x52\xd1\x29\xeb\x85\xee\xd8\x2d\xfc\x85\x1d\x6b\x1f\x58\xee\x8d\x22\x75\x52\x2a\xcb\x3c\xb2\x85\xa7\x20\x2c\x7d\xda\xb3\xe8\xc1\xb4\xe7\xa3\x18\x76\xe3\x6a\x47\x96\x1b\xb4\x45\x67\x70\xf5\xab\x02\x19\x72\x2e\xb3\x32\x67\xba\x17\xd8\x13\x4a\xeb\x62\x6e\xa5\xc9\x25\xf3\xce\xea\xa7\xe3\xe9\x4b\xf9\x9c\x6b\xa9\x76\xe6\x83\xdc\x99\x3c\x65\x69\xac\xa6\x32\x91\x2a\xa7\x26\xa8\x8b\x9f\x0b\xa9\x41\x07\x70\x38\xdb\x20\x29\xaf\x0f\x5a\x7d\xb6\xa0\xc6\x30\x25\x4e\xc9\xff\x3b\xfa\xcb\x7f\xfc\xab\x7f\xfc\xfb\xa3\xa3\x3f\xbf\xea\xff\x9f\xbf\xfe\xc7\xd1\x5f\x06\xf0\x8f\x5f\x1c\xff\xfe\xf8\x5f\xfe\x8f\xff\x38\x3e\x3e\x3a\xfa\xf3\xb7\xef\xfe\x70\x73\x7d\xf9\x57\x7e\xfc\xaf\x3f\x8b\x32\xbf\xc5\xbf\xfe\x75\xf4\x67\x76\xf9\xd7\x96\x83\x1c\x1f\xff\xfe\xe7\xad\xa6\x47\xc5\xe2\x7d\x8b\x03\x8f\x4f\xdf\x6d\x10\x17\x86\x4d\x99\xea\xd8\xab\xf5\xb6\x12\xf2\xb9\x5f\x09\x6d\x7d\x2e\x4c\x5f\xaa\x3e\x76\x3f\x25\x46\x95\xdb\x0f\x46\x45\xd4\x76\xc1\xf3\x0f\xfe\xb4\x46\xa6\x58\x4f\x9a\xf7\x8e\xc8\x9a\x25\x8a\x99\x7d\x69\x30\x38\x9a\xe7\x1f\x85\x4c\x0f\x35\x11\x6b\xcc\x84\xeb\xa6\xfd\x93\x50\x6a\xbc\x48\x81\xf0\xaa\x38\xef\x44\xc9\x7c\x40\x22\xb3\xd0\x9c\x66\x3c\xf5\xed\x6e\xd9\x16\x2d\xd7\x3f\x2f\x4a\xd0\x97\xa5\x04\x8d\x70\x7f\x1f\x5c\x03\x62\x62\xbe\xc9\x4c\xd3\xb4\xe9\xda\xb6\x75\x73\xb4\x17\xa0\x8c\x24\x85\x2c\xca\x8c\x9a\x35\x66\xbb\x15\xb6\x69\x87\xfb\x3a\x98\x09\xed\x46\x83\x1d\xd8\x51\xb9\x7c\xb5\x31\x94\x9c\x65\x19\xe1\x02\x4f\x02\x0c\xe0\xad\x79\x8a\xa1\xbc\x44\x28\x1a\x9c\xe7\x76\x0a\x77\x33\xd6\x34\x34\x72\x6d\x75\x1d\x65\xb8\x98\x0e\xc8\x77\xf6\x77\xa4\x59\xce\x34\xc6\x05\xc9\xcb\xcc\xf0\x22\x63\x24\x70\x5b\xb4\xa1\x65\x25\x23\x54\x6b\x99\x70\x6a\xdc\x8c\xdd\xfd\xa1\x36\x7e\xda\x30\x1b\x43\x6f\xc1\x14\x9a\xb0\x94\x89\x84\x0d\xc8\x27\xb8\x2e\x0c\x6b\x1d\x5b\x61\x10\xcc\xfb\x30\x06\x25\x69\x89\x57\x3b\x48\x0f\x56\x8f\x31\xcc\xf3\xd2\x80\xa1\xf8\xb1\xac\xf8\x76\xc7\x9d\x65\x2e\x32\xe6\x03\xa9\x0a\xa2\x35\x85\xbb\x07\x39\xa9\x54\x77\x7d\x3f\xf3\x7d\x3b\xc2\x1b\xcc\x6d\x5b\x39\xd5\x12\xc5\xad\x6c\x0c\x75\x4a\xfb\xd8\x16\xc3\x76\x74\xf6\x47\x49\x63\x3b\xd0\xd7\xf6\xb4\xb5\x83\x71\xa9\x2b\x3d\x6d\x6b\x4d\x2a\x14\x9b\xf0\xcf\x1d\xf0\xf1\x4c\x54\x2a\x0a\x4f\x99\x30\x56\x11\x50\x40\x50\x15\x2b\x98\x00\x3d\x9c\xd1\x64\x06\x74\xc1\x51\xd1\xca\x32\xfc\x90\x37\x46\x28\x65\x74\x3f\x5e\xa3\x55\x52\xcc\xcb\xd9\xfa\x91\x9f\x2d\xb7\xeb\xfb\x3f\x58\x42\xa6\x0c\x75\x8b\xf5\xca\x75\x63\x1f\xa3\x1e\xce\xcf\xc5\xff\x85\x17\x78\x7e\x92\x56\x7b\x0b\x57\x4e\x85\x84\xb3\x36\xe1\x86\x48\x2b\x11\xd8\xef\x0e\xc8\x68\x45\xcf\x9c\x9a\x64\xe6\x5a\x1c\x1e\x6a\x82\x46\xdb\xe6\x40\x63\x34\x11\xa6\x65\xc6\x52\xe2\x1d\x36\x70\xd0\x8e\x28\x55\x73\x55\x38\xa1\x5a\xf3\xa9\xe8\x17\x32\xed\xdb\xd1\x4e\xd6\x21\x44\x8b\x43\x15\xbb\x1a\x6e\x3f\x58\x5b\xf1\x2a\x18\x27\xda\x6d\xd3\x87\x60\x7f\x8b\x64\x8b\x44\xe6\x45\x69\x58\x64\x9c\x0b\x76\x9d\xf1\x02\x3d\x8b\x22\x19\xb2\x92\x88\xee\x07\xd3\x9c\x0a\x3a\x65\x7d\xf7\xf1\x7e\xf8\x78\x3f\x7c\xeb\x3e\x60\x6e\x43\xb5\xd0\xa4\xb8\xe9\x1c\xd6\x81\xf7\x16\x4d\x96\xf8\x72\xec\x4c\x47\x39\xfd\xcc\xf3\x32\x27\x34\x97\xa5\x00\x99\x6c\x19\x9c\x70\x79\xcd\xd2\xfd\x00\x6c\x05\xa0\xf4\x5a\x48\xb5\x84\x16\xe9\x8c\x98\xe4\xf9\x5a\xb6\x5a\x59\xb4\xba\x59\xb2\x3a\x58\xb0\x76\xb6\x5c\x79\x23\x75\x7b\x7c\xfc\xe0\xed\xe6\x0d\x8c\xe4\x62\x2b\x46\xfa\x03\x0e\xae\x1d\x61\x1c\xae\x89\xcc\xb9\x31\xc1\x25\x2b\x60\x58\x8f\x70\x53\xb3\x7e\xba\xb3\xc0\x27\x48\x63\xb9\x26\xec\xb3\xd5\xa6\x38\x58\xd1\xfd\xad\x45\x0f\xb9\xec\x1d\xd7\x60\x40\xa3\x82\xf0\xbc\xc8\x58\xee\x7d\x48\xfb\x5e\x37\x73\x4e\x06\x2f\xe7\xe3\xe5\x7c\xac\xea\xa4\xbb\xc8\x22\xb1\x18\x82\x86\x82\x31\xcb\x2a\x71\xc4\x62\x76\x21\x53\xed\xe4\x05\x8f\x43\xf6\x2c\x5c\x7e\xe6\x1a\x3c\x71\x3f\x30\xb0\x0c\x8c\x98\xd1\xe4\x6e\x26\x35\xc3\x1e\x54\x31\x37\x4e\xc4\x1a\xbd\x25\x04\xee\x11\xc0\x69\x74\x32\xa9\xb7\x48\x59\x91\xc9\x45\x0e\x92\xed\xd0\xc4\xf2\x4c\x10\x5d\x58\x5e\x64\xd4\xb0\x20\xd8\x6c\xb6\x36\xdc\x9b\xf3\xc1\xd7\x2f\x3f\x5b\x09\x20\x8a\x83\x68\x01\xdb\x66\xc7\xba\x69\xaa\x01\x69\x47\x64\x72\xf4\x59\xbe\x01\x09\xbf\x7a\x03\xd0\x3c\xbb\xba\x58\xef\x20\x49\x5a\x99\x57\xc8\x76\x13\xcb\xd2\x32\xce\x36\x4c\xb5\x21\xbd\xa2\xcf\xaf\xf7\x60\x45\x0f\xf4\x1e\x1a\xaf\x7a\xce\x7d\x2e\x44\x07\x60\x63\xc5\x32\x0c\x7d\x70\x86\x66\xdb\xc8\x79\xae\xef\x47\x23\x6b\x6b\x77\x6f\x63\x73\xef\x87\xc9\xef\x49\x09\x6c\x65\x94\xaf\x6d\x06\x28\xd9\xf1\x51\x05\x97\x23\x0b\x49\xb4\xcf\xbb\x8d\xa0\x45\x91\xc1\x7d\x9d\x6c\xeb\x9b\xd5\x52\x1d\xc3\xe5\x77\x9c\x74\xd8\xf2\xd8\xe1\xd6\xce\xfc\x50\x23\x02\xd8\xd3\x31\xe3\x85\xf3\x66\x44\x6b\x9d\x8f\x5f\xf8\x04\x76\xd4\x2a\xa6\xc4\x9e\x84\xa1\xe8\x91\x2b\x69\xec\xff\x2e\xd1\x26\x6a\xf1\xe6\x42\x32\x7d\x25\x0d\xbc\xd9\xeb\xb2\x71\x2a\x1d\x17\x8d\x9d\xe0\x80\x08\x3c\x93\x60\x90\x8e\x02\x1a\xd0\x57\x14\x48\xa1\x07\x10\xd7\x64\x28\x88\x54\x7e\x75\xc1\xaa\xab\xdd\x10\x5e\x33\x14\x52\xf4\xd1\x8d\x70\xd5\x18\x97\xc1\x87\x32\x86\xc9\x86\xe1\xdc\x50\x37\x96\x02\xe3\x2f\x18\xc2\x92\xd1\x84\xa5\x24\x2d\x61\xd2\x10\x8e\x41\x0d\x9b\xf2\x84\xe4\x4c\x4d\x99\x65\xda\xc9\xac\x2d\xa8\xb7\xd1\x25\x7c\x5a\x50\xa7\x78\xd0\x2d\xfb\x07\x24\xf8\x2d\x70\x89\x6e\x64\x1b\xfb\x20\x79\xcb\x69\x61\xb7\xee\x9f\x96\x8a\x01\xf4\xfe\x4d\x0a\xca\x95\x1e\x90\x33\xef\x7a\x1b\xff\xe6\x6c\x60\xf1\x30\x76\x04\x2b\xf5\xfd\x50\xf2\x39\xcd\x2c\xdd\x44\x01\x8f\xa1\x78\x67\x47\x6f\x32\x8b\x9e\xe3\xa5\xf6\x7c\xa3\xbf\x0b\xd7\xe4\xe0\x96\x2d\x0e\x7a\x4b\xdb\x7d\x30\x14\x07\x48\x5f\x97\x36\x38\x10\x63\xf0\x28\x39\x80\xdf\x0e\xee\xc7\x5f\x1e\x40\xf8\xdb\xba\x97\x46\x66\x4c\xc5\xa1\x9f\x5b\xf6\xf0\xa6\x6a\x0f\x4b\xab\xae\x77\xa3\x91\x1e\xe7\x96\xe2\xc6\x8b\x2d\xf6\x6c\x55\xf3\x02\xd4\x32\x86\x26\x33\xf4\xe2\x76\xf3\x82\x38\x9a\x05\xb1\x7b\x66\x90\xae\x03\x62\x38\x0e\x69\x14\x5c\xfa\xfc\x36\x60\x5b\x8f\x81\xfc\xf4\xbb\xc8\xbf\x1d\xda\xdb\x3f\x02\x86\xfc\xd6\xff\xeb\x77\xf7\x8c\x5b\x68\xc7\xd8\x70\x4a\x1d\x04\x8c\x4b\xe8\x40\xb8\x48\xe1\x82\xc9\x2d\x15\x20\x80\x63\x59\xf8\xc0\xb2\x06\xe4\xd2\x12\x2a\x92\x33\x2a\xb4\x37\x73\xc1\x4d\x54\xd5\x58\xbb\x2b\xb3\x48\xaf\x72\x26\x85\xea\x64\x30\x72\x25\x47\xce\xf6\xd5\x23\xd7\x60\x4b\xad\xde\xc0\x49\xba\x92\x97\x9f\x59\x52\x9a\xb5\x77\x59\x31\xdc\xb6\x72\x91\xad\x8c\xbe\x06\x90\x6f\x2b\x26\x8f\x2b\xab\x31\xf9\x0a\x83\x63\x36\xbf\x11\x32\xb7\x6c\x51\x31\x1b\x27\x42\x00\xc9\xef\x55\x58\xe2\x59\x01\xf2\x8e\xff\xf6\xa6\xac\x7c\xcc\x05\x7e\x0c\x87\xf6\x5b\x01\xa3\x7b\x80\x5a\xc9\x2e\xcb\xf0\x33\xfb\x00\x57\x3b\x39\xa3\x06\xb3\xf7\x1d\x64\x8c\x40\x25\x57\x4b\x17\x91\x48\x71\xf9\x43\x49\xb3\x7a\x10\x82\x7b\xe5\x1a\x2d\x51\xf5\x3b\x9e\xa5\x09\x55\xce\xcb\x0b\xc3\x34\xb5\xc4\xdd\xa3\x40\x08\x12\x2a\xc2\x69\xaf\xf6\x48\xe3\x55\x65\x41\x95\xe1\x49\x99\x51\xe5\x23\xc7\x5b\x05\x0a\x6c\x85\x68\x85\x34\x23\x96\x48\x91\x76\x51\x00\x6e\x9a\x7d\x9b\x77\xad\x05\x53\x5c\xa2\x77\x31\xcf\x59\x13\x49\x8f\xea\x36\x6d\x39\xf1\xa7\x3a\x1c\xb1\x9a\xe5\x03\x62\x33\x3d\xc3\xe3\x53\x21\x15\x4b\x8f\x23\xf2\x18\x4e\xc5\x80\x7c\xb3\xf0\x66\x16\x30\xb9\xb8\xe8\x0a\xcd\x8c\x0f\x84\xf1\x28\xeb\x80\x5d\x1d\xa8\x89\x54\x10\x9c\x72\x94\x4a\x8c\xc8\x98\xf3\xc4\x1c\x0f\xc8\xff\x65\x4a\xc2\xc6\x0b\x36\xa5\x86\xcf\x03\x37\x0d\x8a\xab\x62\xd4\xdd\xe0\xbf\x22\x47\xd0\x8d\xf0\x3c\x67\x29\xa7\x86\x65\x8b\x63\xd4\x63\x19\xd1\x0b\x6d\x58\xde\x66\xeb\xda\x18\x0d\xd0\xd7\x0e\xda\xfe\xea\xeb\x0d\x2d\xbb\xc6\x50\x7d\xf2\x51\x29\x15\x64\xd0\x87\xa0\xb1\x85\x81\x07\xc9\x0d\xe2\x66\xec\x83\xe0\x02\x9b\xbd\x64\x19\x6f\xf0\xf7\x16\x0f\x28\x51\x0c\x32\x10\x38\xcc\xbd\x27\x8e\xa3\x37\xe5\x3b\x59\x8a\xf5\x26\xc1\xda\xc2\xdf\x3a\x25\xfc\x53\xd4\x71\x6d\x94\xe2\xa3\x88\x09\xd1\x4c\x22\x13\x25\x25\x60\x97\x04\x76\x6e\xc9\x03\xb6\xaa\x3c\x51\xb6\x4e\x72\xaf\x11\x89\x30\x97\x2d\x5e\xef\x7b\x89\x5b\x0c\x1f\xea\x80\xcb\xe0\x20\xee\x00\xd3\x88\xdb\x33\x8e\x1c\x00\x7e\x22\x04\x2b\x04\x85\x6f\xb1\xd4\x7b\xb1\x59\x6a\xe0\xba\x92\xc3\xd3\xc3\xbd\x10\x5f\x5c\x8e\x92\x05\x9d\xc2\x79\xea\xb0\xaa\x66\x57\x92\x32\xc3\x54\x0e\x01\xd7\x33\x79\x87\xbf\x23\xdb\x2a\x5c\x2b\x96\x56\xb1\xed\x33\xa9\x81\x2b\xd5\x83\x18\xe1\xfc\xc2\xc5\xe8\x1d\x5d\x10\xaa\x64\x29\x52\x27\x35\x05\x02\xfa\xae\xf1\xe1\x2b\x29\x80\x52\x94\xda\xc2\xea\xa6\x46\xa5\xc7\xcc\x50\x7b\x6c\x5e\x0f\x5e\xbf\xda\x0b\xc0\x3a\xc6\xad\xc2\x6c\x1a\x96\x42\x7f\x57\xee\xcf\xcc\x5e\xe6\xa5\x18\x4d\xdf\x8b\xac\x8b\x2c\xf7\x0e\xd1\x0b\xba\xf6\x41\x09\xe3\x13\xb0\xdd\xf6\xf0\xd5\x9d\xe2\x86\x45\xe4\xf1\x68\x42\x33\xcd\xac\xea\x5e\x8a\x20\xc2\x1e\xd7\x45\x10\x68\xd2\x66\x41\xdb\xfd\x41\x74\x39\xbe\xe7\x39\x73\x07\x0a\x50\xae\x3a\x66\x01\xe1\x0e\xf5\x86\x23\x57\x0f\xee\x24\x47\xd8\xd2\x4a\x6c\x52\x9a\xe3\xfd\x38\x89\xe0\x02\xad\x66\xdd\x45\x25\xf1\x71\xc3\xc5\x1e\x57\xfb\x0d\x9b\xd1\x39\xd3\x44\xf3\x9c\x67\x54\x65\x10\x2b\x38\xc2\xf9\x91\x71\x69\x56\x47\xa0\x77\x8b\x6e\x8e\x67\x12\x0d\xb7\x15\xd4\x7e\x1e\x16\x4e\x40\x23\xfc\xbc\xec\x77\xf2\xd2\x94\x34\xcb\x16\x84\x7d\x4e\xb2\x52\xf3\xf9\x7d\x4f\x93\x8b\x7e\xd8\x81\x55\x37\xb9\x74\x21\xd3\x51\xc1\x92\xc7\xe4\xd1\x75\x0d\xc3\x92\xaa\xd4\x6f\x3a\xf0\x64\x54\xf6\x41\x73\x5f\x80\xe7\x53\x92\x30\xad\xbd\x4f\xe5\x22\xf6\xf3\x0c\x6b\xf8\x52\x12\x0a\xd0\x3b\x7d\x99\x51\x6d\x78\xf2\x4d\x26\x93\xdb\x91\x91\xaa\x53\xcc\xfe\xaa\xfe\x8d\x34\x0c\x67\xdf\x8d\xc8\x05\xd7\xb7\x71\x62\x17\xbc\x34\x8d\xcd\x25\x94\xdc\x96\x63\x96\x31\x73\x78\xa8\x91\xcb\xe5\x34\x99\x71\xc1\x3c\x83\x13\x21\x24\xc5\x29\x7c\x16\xca\x5d\xef\x4c\x5d\xe0\xd3\x89\xc3\xd7\x9f\xd1\x3b\xcd\x70\xfa\x63\x3b\x7d\xfb\x33\x6b\x13\x91\xbe\xd7\x7b\x0a\x9c\xcc\xf0\x62\x4f\x77\x10\x13\x7d\x63\xe7\xd8\xcd\xb8\x7d\x88\xbd\xbc\xea\x30\xe1\x19\x43\x8d\x07\x16\xec\x7d\xd4\xdc\xa9\x80\xfd\x5b\xc8\x92\xdc\x51\xd4\x91\x81\x22\x0e\xc8\x0d\x2f\x4e\xc9\xa5\xd0\xa5\x62\x95\x75\xa3\x39\x14\xd7\x55\x9c\x99\x57\xae\x60\xbf\x51\x01\xb1\x74\xcf\xe9\x5a\xe4\xf2\x33\xcd\x8b\x8c\xe9\x53\x72\xc0\x3e\x9b\xaf\x0f\x7a\xe4\xe0\xf3\x44\xdb\xff\x09\x33\xd1\x07\x03\x32\xcc\xc3\xad\x3b\x24\x02\x52\xcc\x3b\x42\x61\x07\xcb\x9a\x23\xae\xfb\x20\xe8\xe2\x9c\xea\xac\xec\x96\x4a\x72\x87\xf9\x28\x2c\xc1\x67\x4a\x49\x15\xfc\xd0\x23\x30\x00\xaf\x49\x64\x5e\x28\x99\xf3\xc8\xcc\x07\xe8\xbe\x57\x6f\x3b\x30\x3e\x6c\x17\x50\x97\xb1\x21\x74\xf4\x08\x11\xbd\x10\x6d\x50\x61\x38\xf1\xce\x14\xa8\x45\x3a\xb5\x1e\x86\x73\x8d\xec\xe6\xbb\x51\x2c\x21\x8b\xb7\xfb\x4d\x08\xa8\x23\x27\x29\x9b\x9f\xe8\x94\xbe\xee\xc1\x67\xb4\x73\x04\xac\xcf\x89\x6a\x72\xf0\xfa\x60\x40\x46\x9e\x11\xf7\xe2\x39\x56\xed\x26\x52\x85\x01\xc1\xce\xfe\xea\x80\x1c\x49\x05\x23\x27\x54\x90\x8c\xd1\xb9\xb3\x2d\xe3\x71\x5b\xa0\xba\x7b\xdc\x3a\x20\xb2\x6d\x6c\x58\x64\x00\xf8\xcf\x5f\x6e\x69\xdd\x4e\x48\x5d\xde\x44\xdf\xcf\x9b\x00\x54\xe9\x62\x05\x26\x52\xb9\x3c\x20\xa1\x89\x66\x06\x8e\x1e\x17\x35\x15\xfa\x09\x08\x2c\xe9\x18\x4a\xef\xa9\x67\x57\xe8\xf8\x7e\xa0\x03\x09\xfe\x43\xc9\xc8\xf0\x22\x04\xd4\x33\xa5\xb9\x36\xf6\x18\xa7\x35\xd6\xc5\x91\x9f\x1d\x9d\xe5\xf4\x1f\x52\x90\xcb\x6f\x46\x6e\x02\xc7\x4f\x0a\xaa\xad\xd4\x80\xfe\xa3\x54\xcc\x72\xe1\x0e\xcc\x3d\xf4\x69\x32\x74\xfb\x9e\x5c\x50\x43\x91\xaf\x3b\x4f\x2b\x51\x91\x72\xcb\xb2\xc7\x5c\xa4\xee\xa7\x88\x61\x3f\x36\x6f\xb5\xbb\x77\xb5\x49\x4c\x8a\x1b\x7e\xfc\x30\xdc\x13\x0f\x4e\x80\x98\x4f\xdf\xc9\xb4\x33\x23\x8e\xba\x7a\xe2\xfb\x47\x0b\xd3\x73\x7c\x4f\x72\x3b\x26\xb1\xda\x7b\x8f\x7c\x60\x34\x25\xf6\xfc\xba\x7f\x7e\x67\x75\xcf\xd6\xb4\xaa\x15\x0b\xf1\x00\xec\xb8\x0c\xdf\xcd\x2f\x21\xf6\x74\x4f\x2d\xe6\xc0\xb1\x72\xbc\x64\x9c\xc9\x31\x71\xc7\x61\xdf\x73\xff\xf8\x61\xb8\xc3\xd4\x3f\x7e\x18\xfa\x99\xdb\x7f\xca\xc9\xe3\x4d\x7a\x27\xf1\xad\x92\xde\xde\x34\xc4\xad\x8a\x25\x57\x81\x1b\x4d\x91\xac\xbd\x3c\x36\xd8\x97\x24\xb6\x4f\x88\xad\xca\x3f\xb9\x05\x5e\x87\xb6\x8f\x55\x28\xd0\x57\x2d\xba\x47\x1c\xcd\x28\x84\x3e\x87\x80\x3c\xd8\x67\xbb\xf1\xda\x72\x05\xbf\xe3\x56\x09\x04\xda\x46\x2e\x18\xde\x72\xa6\xa7\xde\x77\x20\xf4\x58\xdd\xe1\x1d\x78\x6a\xa6\x8e\xbe\x12\x74\xdc\x4c\x23\x04\x3b\x42\xab\x92\x08\x3f\xd1\x39\xe5\x19\x1d\xf3\x8c\x1b\xe0\xd4\xc7\x83\x9a\x37\xaa\x86\x29\xef\xf5\xd4\xef\x28\x72\x04\x71\x62\xc9\xb8\x45\x8e\xec\x6f\x27\x60\x1c\x3b\x1e\x00\xb5\x82\x86\x33\xa6\x96\x84\x92\x0f\xdb\x84\x92\xbd\xc9\x0f\xb0\x03\xf6\xc4\x74\xe5\x8a\xb6\xcf\x4a\xae\x08\x3f\x8c\x5c\x3e\xb9\xe7\xcc\x18\x31\xd6\xaa\x15\x6b\x04\xfc\xda\xda\xb2\x3d\x73\xbc\x2f\x72\xa5\x5f\x06\x72\x91\x10\xd1\xb6\x03\xff\xac\x3a\x7a\x3e\x04\x4a\x12\x78\x9c\xb9\x68\xb7\x9a\x6b\x26\x62\xdf\xc8\xd1\x1a\x97\x82\x09\xb9\xae\xc5\xb9\x6f\x5b\xa4\x1f\xe8\x92\xb4\xc1\x63\x44\xd7\x55\xf9\x7e\x7e\x51\x48\x02\xe1\x35\x69\x81\x8b\xad\x27\x99\xb0\x62\x36\xe9\x72\x25\x6e\x3b\xbc\x19\xd5\x2d\x81\xe7\xac\x98\x91\x37\xa3\x15\xc7\x18\x60\x0f\xb3\xd6\x68\x1f\x3c\xd4\x24\xe3\x13\x66\xf8\x96\x25\x3c\xc0\x41\xce\xa5\xe0\x46\xaa\xf5\x21\xd0\xa4\xd3\xe1\xf4\xc3\x75\x65\xa8\xbe\x9f\xdd\xd9\x2a\x81\xc8\xbb\xe8\x2d\x25\x89\xcc\x32\x96\xf8\xf4\xd9\x00\xde\xd0\x6d\x85\xf2\xc4\x9c\x3d\x20\x14\x17\x40\x45\xe9\x04\x37\xf7\xe4\xc3\xe5\xd9\xc5\xbb\xcb\x41\x9e\xfe\x6c\x26\xef\xfa\x46\xf6\x4b\xcd\xfa\xbc\x45\x86\x92\xa7\xf3\x5e\xc4\xa7\x68\x95\x30\xab\x69\x90\xc1\x5c\x5f\xef\x7d\xfc\x24\xf9\xa8\xd1\x6b\x01\x6c\x47\xfe\x4e\x4a\x4a\xd3\x23\x8a\xba\x18\x49\xea\x4c\x4f\x65\x96\x21\xb4\x8d\x62\xac\x17\xdb\x62\x36\x86\x86\x74\x5e\xd8\xbd\x0d\x15\xb5\x05\x3e\xac\x0c\xf1\xf8\x08\xd7\x85\x63\x6c\x97\x49\x96\xa1\x58\xf5\xac\xc3\x71\x54\x7b\x8f\x86\x33\x33\xb3\x50\xbd\x65\x0b\x02\x8e\xc0\x13\xa9\x2c\x3e\xa9\x3a\x6e\x30\x93\xc0\xd2\x4f\x4a\xcd\xd4\xc0\xb1\x9d\x47\x07\x5b\x87\x2c\x42\x3b\x24\x6f\x0b\x1d\x57\xc1\xcc\xbd\xae\x32\xfb\x3a\x79\x8d\x96\x66\xc6\x84\xf1\x89\xd1\x1d\x64\x56\x02\xd1\xf9\x61\x3f\x3a\xd4\x5a\x26\x31\xea\x96\x72\xe8\x25\x4d\x4f\x17\x9c\xb4\xa7\xa6\x2b\x3a\xda\x3e\x10\x88\x18\x93\xf9\x10\xcb\xa5\x68\x2a\xc1\x61\x03\x33\xd0\xd5\x10\x8d\xa6\x39\x17\xcf\xf0\x74\x26\x5c\xa4\xdb\xe0\xd0\x30\x80\x41\x8f\xba\x28\xe6\xde\x39\x83\x7e\xb8\x37\xa4\x5e\x93\xc2\x80\x77\x77\x83\x58\xbf\x3f\x6c\x75\xf8\xf2\x85\xfe\x21\xeb\xe3\x57\xfa\x45\x5a\x41\xe5\xe5\x32\x70\xf9\x06\x6f\xbf\x26\xa5\x47\xb8\xe2\xdb\xd3\x6e\x93\x47\x96\x86\x1e\x56\xcf\x7d\x14\x40\x75\x91\x79\xee\xcb\xbd\x2b\x9a\x09\xd5\x5f\xb4\x0f\x3e\xc3\xcc\x66\x58\x46\xc6\xe9\xcb\x16\x1e\x05\x55\x34\x67\x86\x29\x74\x81\x73\x4e\x75\xc2\x45\x27\xbc\x2f\x98\x18\x19\x9a\xdc\xee\x3b\x15\xea\x0b\xc7\x7d\x38\x8e\x7b\xef\xab\x40\x8f\x08\x2e\x2f\xd2\x22\xbe\x45\xe6\xc2\x71\xa1\x67\x42\x62\x42\x3a\xb2\x2e\x56\x8e\x90\x8e\xaa\xce\x5d\xab\xf4\x64\x68\xd8\x00\x4f\xb7\x90\x5f\x0f\x3c\xf8\x11\x0a\xfb\xe1\x86\xed\xcf\x80\x23\x81\xbb\xdc\xa3\x45\x5d\xeb\xd4\x21\xb7\x6f\xc6\xdc\x54\xe7\x5e\x33\x43\x0a\xa6\x72\xee\xc2\xba\xa5\xc0\xca\x82\x2c\x45\xbe\x66\x79\x98\x1b\x2e\xe2\x79\x82\xc8\xc4\xf8\xd2\x5d\x64\xcc\xcc\x1d\x63\x82\xbc\x7a\xf5\xea\x15\xc8\x25\xaf\x7e\xfd\xeb\x5f\x13\xc8\x23\x91\xb2\x84\xe7\xcb\x0d\xa1\xd5\x7f\xbd\x7e\x3d\x20\x7f\x3a\x7b\xf7\x16\xbc\xca\x0a\xa3\xc9\x58\x9a\x99\x1b\xd9\x36\xa8\x75\xd6\x3d\xf2\x3f\xa3\xf7\x57\x5e\x9c\xd0\x8d\x5f\x41\x05\x09\xcb\xab\xbb\x08\xbe\xfa\xd5\xd7\x5f\x0f\xc8\x05\x57\x10\x4f\xcc\x21\x02\x22\x38\x41\x16\xde\x31\x50\x48\xb3\x1c\xc1\xef\x38\x88\x73\x12\xce\xf9\x74\x66\xb0\x06\x14\x20\x4e\xc6\x13\x83\x39\x05\xf1\xe8\x23\xa0\xb5\x0b\x90\x71\xe1\x5e\x4e\x8a\x80\xc9\xf5\x48\xc6\x6f\x19\x99\xe8\x3f\x28\x59\x16\x55\x98\xa3\x62\xda\xca\xb2\xae\xc2\x14\x0e\x56\xed\x95\x66\xe6\x49\x9d\x30\x5a\x1a\x82\x6a\x38\x08\x7d\x1a\x02\x4a\x2f\xe4\x56\xeb\x23\x3e\x14\x94\x07\xc7\x41\xb8\x53\xaf\x65\xf6\x0f\xba\x67\x1a\xe5\x92\xf3\xb1\x2b\x85\x92\xdf\xe3\x56\x71\xe1\xa3\xa0\x9c\x84\xac\x9d\x4c\xe6\x82\x4e\x45\x64\x73\xf5\x51\xf9\x96\x17\xba\x88\xff\x28\x7e\x6a\x38\x89\x03\xed\x20\x2c\x9d\x6b\xfb\x89\x5a\xe2\xcb\x15\x5f\x8e\x4b\x2f\x9a\x99\xc6\x7d\x2d\xc5\x52\x6f\x57\x47\xc5\x91\x1f\x57\x5d\xc7\x85\xb0\x55\x63\xa0\x2b\xae\x0b\x00\x8a\x6a\x36\xd5\x92\xd1\xd5\xbc\x7c\x34\x33\xa5\x03\x0d\x78\x5e\xd9\x6f\x33\xad\x5d\x1c\x51\x4e\xd5\xad\x55\x12\x1c\x15\x18\x80\xd7\xb3\x0e\x31\x4c\x18\x50\x36\x67\xa1\x00\x5f\x1c\x35\x60\x3f\x72\x38\x18\x1c\xe2\x31\x91\x0a\x73\x79\x22\xce\xdb\xf7\x4f\x14\x2f\x5d\xf7\x4a\xa7\x45\x54\x5e\xcf\x95\x2d\xa1\x35\x6f\x67\xea\x20\xd5\x26\x83\x6f\x27\x91\xa6\x5b\x2e\xe4\xb6\xd9\x90\xb1\x65\xd1\xa6\x24\x43\x57\xa9\xaa\x43\xf2\xe4\xf5\xd9\x1a\x1c\x8c\xdd\x49\x68\x97\x16\xb9\x73\x9a\x5f\x82\xee\x1e\xbb\x4c\xf5\x30\x77\x9c\xef\x7d\x37\xce\xe7\xe2\xf5\x6a\xc5\xc1\x9e\x3f\xab\x1b\x4e\x30\xd2\xa5\x4e\xba\x1c\x69\x88\x45\x81\x50\x88\xab\x0a\x7b\x79\xd6\x1c\x2d\x46\x9b\x6e\x89\xe7\xbb\x70\x37\x7c\xda\x5d\x4c\xe0\x53\xc3\x35\x7f\x3b\x81\x8b\x76\xa4\xb4\xa8\x15\xf8\xc8\xd0\x6e\x00\x32\xa6\x3f\x3c\x03\xf2\xce\x91\x5a\x44\x32\x3a\xd6\x32\x2b\x0d\x76\xad\x7e\x8c\xe9\x30\x0c\xea\xb3\x2c\x00\xf1\x0d\xcd\x22\xaa\x6c\xaa\x12\x67\xed\x08\x34\x3e\x1d\x0e\xe7\x4b\xb6\xcf\x07\xcc\xf6\x19\xf2\xd3\xea\x96\xf5\x9a\xf4\x83\xa5\xd7\x4d\x34\xef\xa2\x5f\x69\x4e\x8e\xaa\x32\x21\xfe\x3a\x7e\x28\x0c\x53\x13\x9a\xb0\xe3\x58\xef\x0a\xe5\x58\x82\x8b\x90\x8f\x8b\x98\x51\x91\x66\x28\x80\x27\x4c\x01\xee\xb3\xcf\xae\x50\xf0\xf9\x68\x48\x52\xc5\xa1\x00\xee\xd1\x37\xcc\xca\x8b\x8c\x9a\x52\xb1\x56\xd1\x55\xfb\xf5\xad\x84\x69\xec\x4b\xd3\x83\xc1\xba\xba\xea\x41\x27\x4f\x79\x44\x74\xbe\x2a\x30\x21\x54\x11\xa4\x3a\xd6\x65\x07\x16\x95\x80\x40\x03\xcd\x58\xc8\x52\x39\x2b\xba\xcf\xab\x9a\x48\x65\xd5\x25\x1c\x98\x6a\xa2\xd8\xd4\x4a\xb3\x0a\xc4\x5e\x6c\x91\x95\xf6\xc5\x5e\xdd\xd9\xee\xe3\x00\x58\x99\x66\x37\xf9\xea\x4d\x9c\x54\x2d\xe7\x3c\xf5\xac\x12\x2e\xaa\xaa\xaa\x86\x05\xd5\x51\xa8\x4d\x94\x81\x3e\x02\x2c\xca\xe8\xc0\x50\x43\x10\x6b\xcd\xd9\x3f\x36\x0a\x4b\xc8\x6d\xd1\xa2\x7c\x44\x17\x22\x2c\x53\x76\x5d\x8e\x33\xae\x67\xa3\x1d\x4d\x88\xab\x86\x40\x67\x85\xa5\x5b\xbf\xb5\x96\x44\xcd\x84\xe6\xc0\xf2\x2c\x19\xb7\x4c\x17\xca\x25\x4b\x00\xa2\xef\x1d\x23\xa4\x84\xe8\x8f\x8c\xb9\x0c\x06\xf6\xa7\xab\x6a\x1e\x2e\x28\x0d\x73\x96\xa4\xec\xa3\x28\x6a\xef\x13\x9a\x65\xba\x19\xb0\xeb\x29\x26\xca\x1e\x3e\x50\x0d\xf7\x94\xdb\xed\x0e\x95\x51\x1a\xd9\x2f\xd7\x2e\x4c\x93\x5c\x62\x18\x8f\x20\x52\xf8\x46\x90\x7a\xc5\x77\x88\x02\x19\x21\x5c\x19\x50\x66\xcf\xa5\x23\x5f\xcc\xa5\x0f\x67\x2e\xbd\xaf\x1f\x9e\x0e\x55\xa4\x68\x14\x0d\x5d\x2f\x73\xed\x49\xa9\x27\xb9\x5b\x9c\x3a\xf6\x7a\xad\x80\xdf\x3c\x33\x58\x9a\xbd\x7b\xbe\xb7\x46\x77\x60\xd3\x56\x11\x81\x53\xdc\x77\xab\x4f\x22\x14\x75\x1a\x42\x38\x0b\xcb\x67\xbf\xe2\x39\xc0\x6e\xf0\xe5\xa1\x26\xa9\x4c\xca\x90\x17\x16\x80\x56\x5d\xa0\xb5\xc9\x9e\x48\xba\x9e\xab\xee\x29\xbd\xe2\x8f\x6c\x45\xaf\x54\xde\x89\x3b\xaa\xd2\xb3\xeb\x2d\xde\xf7\x75\x76\x5e\xf5\x8a\x05\x25\xff\x1a\xaa\x00\xd2\xb1\x2c\x4d\x95\x3a\xf4\xc7\x63\xaf\x5e\xa5\xa6\x1b\x69\x49\x43\x4b\x7b\x74\x57\x45\xff\xc5\xc4\xfd\x62\xe2\xae\x3d\xbb\x98\xb8\x87\x68\xe2\x8e\xf3\xe0\xd6\x8e\xab\x4f\xaf\xc0\xb3\xb6\xbe\xbd\x0f\x69\x25\xbd\xa8\x08\x0c\x4a\x53\x4d\x3f\xfe\x86\x00\x87\x47\xa4\xda\xdb\x48\xe8\xf3\x14\x08\x78\xf6\xd3\x5b\x54\x1f\xc8\x4e\xda\xbe\x4e\x31\x3e\xeb\x0a\x09\x6e\xaa\x5b\x0c\x52\x43\x54\x68\xb8\xe7\xb2\x40\xf7\x9c\xde\x25\xd2\xaa\x84\x1f\x26\xa1\xee\x50\xa6\x14\x9f\x8e\xc0\x27\x9d\x37\x80\x74\x2c\x22\x8c\x4f\xd7\xdd\x20\x3b\x14\x14\xc6\xe7\x89\xcb\x0a\xe3\xd3\xd9\xf6\x4d\xba\x97\x18\x5e\xb1\xdc\x87\x2d\x34\xbc\xe3\xd2\x76\x37\xeb\xef\x6a\xce\xef\x55\xe5\xed\x9e\x3f\x5b\x7f\x31\xe7\x2f\x3d\x8f\x68\xce\x8f\x08\xb7\x27\x06\x2b\x4c\xfb\xb1\xb9\xcd\xdb\xf7\xc7\xcc\x8b\x95\x83\x2a\xfb\x9a\x45\x39\x6f\xd9\x97\xaa\x7e\xad\x7a\x38\x18\x1c\x1e\x7a\x7b\xbf\xc3\xcf\xd2\x4c\xfa\xbf\x21\x4c\x24\x32\xc5\x4d\xb5\xe3\x2b\x6d\x80\xe9\x57\x6a\x7a\x3c\x97\xdc\x7f\x2b\xbe\x9a\x85\xb1\xbb\x6d\x49\x87\x13\xdc\xbd\x6c\xf8\x2a\x48\x3f\x46\xf1\xf0\xb8\x44\x78\xbd\x22\x38\xb6\xb8\x4f\x19\xf0\x18\x78\x0f\xce\x5f\x5b\x17\x06\xc7\x67\x17\xf6\xba\x43\x91\x70\x7c\x1e\xb9\x54\x38\x3e\x3b\x71\xd4\x4e\x65\xc3\x57\x2c\xee\xf1\x8a\x87\xe3\xf3\x4c\x0b\xc9\xd4\x9f\x4e\x85\xc4\xf1\xd9\xad\x9c\x78\xbd\x6f\xc7\xad\xdf\x4b\x69\x71\x7c\xba\x15\x18\xc7\x67\xdf\x65\xc6\xf1\x69\x09\x09\x30\x86\x5f\xf0\x4e\xa1\x08\xbe\x4f\xdd\x5d\xd2\xb0\xbc\x90\x8a\xaa\x05\x49\x9d\xad\x61\xb1\x22\x22\x34\x0a\x09\xbd\x77\x6a\x18\x98\x47\xca\xd5\x9e\xa2\x11\x3a\x44\x83\xb2\x94\x97\x6b\xcb\x35\xaf\x03\x1b\xf6\x8a\x81\x76\x07\xd9\xc0\x5c\x26\x31\x7f\xdd\xe9\x9a\xf9\xc4\x8a\x34\xb9\x75\x15\x83\x3c\x54\x91\xf7\x47\x41\x2e\x07\x07\x8d\x3c\xd0\x60\x1e\x83\xbb\x3f\x57\x19\xd1\x37\xc6\xb1\x6b\xa6\x2c\xbc\x0d\x71\x6e\x01\x47\xae\xe1\xb1\x95\x48\xde\x01\x1b\x7c\xa4\x5d\x22\x1d\x23\xdb\xf8\x3f\x18\x94\x1b\xeb\xec\x1b\xef\x3b\x86\x74\xd0\x12\x24\xf3\x50\x17\x2d\x93\x49\x74\xf7\x5c\xe3\x50\xb0\x0d\x97\x1e\xf9\xbd\xed\xde\x6e\x86\x1d\x15\xe5\x0b\x30\xfa\x64\x1a\xef\xf5\x78\x02\xa9\x2d\x41\x8a\x07\x60\x86\x0d\xb8\x89\xaa\x04\x96\xda\x7e\x09\x32\xcf\x47\x6d\xaa\x0f\xdd\xf9\x0c\x9b\x26\x2a\xe4\x56\xd7\x3d\xec\x2f\xa3\xb0\xb2\x4a\x6f\x83\x10\x08\x2f\xa8\xeb\x12\xc4\x44\xf7\x15\x27\x2e\xc9\x09\xdc\x5d\x55\x65\xd1\x42\x72\xc7\x25\x34\x13\x3c\xab\xe3\x99\xcf\x65\x17\x16\x5e\x0a\xe7\x68\xb0\x84\x34\xab\x71\xa6\xd4\x4c\xf5\xa7\x25\x4f\x77\xc1\x96\x67\xcc\x00\x5b\xb3\xbd\xee\xcc\xae\x23\x8b\xbb\x07\x63\x0b\x8e\x18\x1d\x58\xc3\x41\xe5\xbd\x51\xe3\x0d\x71\x5a\xbc\xba\x27\x07\xf5\xce\x02\xe1\xc8\xf9\x2b\xa1\x9b\xa0\xda\x3a\x9e\x91\x2c\x12\x17\xac\xcb\x6b\xe9\x2e\x71\x58\xc4\x3c\x70\x6c\xed\xdb\xff\x78\x15\xd8\xdb\xf3\xc7\x6c\x22\xab\x0a\x29\xa8\x11\x39\x77\xdc\x94\x65\x0c\xca\xc8\xfb\x12\xf5\xb6\x01\x5c\x09\xe7\x72\x6e\x91\xf9\x2f\x82\x7c\xf4\x39\xfb\xf9\xe4\x94\xd0\xe3\x5a\x08\x84\xab\x3a\x23\x18\x4b\xd1\x47\x37\xab\xbe\xa3\x4a\xa1\x7b\x64\x7c\xec\xfd\x51\xe0\xc4\x09\x2b\x16\x66\x5e\xe2\x45\xbd\x5a\x31\x0b\x00\x08\x3b\x56\x32\x27\x5a\xd0\x42\xcf\xa4\x01\xd5\x90\x16\x34\xe1\x66\x41\x8c\xa2\xc9\x2d\x94\x28\x52\xcc\x7d\xae\x47\x92\x63\xe7\xd8\x15\x83\xaf\xee\x36\x6c\x66\x4a\x96\xd3\x19\x78\xc2\x62\xab\x24\xa3\xda\xaf\x7e\x65\x7f\xa7\xed\x68\x92\x2e\x04\xcd\x79\x12\xb2\x06\x2a\x39\xe7\x9a\x4b\x67\xed\xf5\xe3\x5e\x87\xcc\x70\x68\x41\x3e\xcf\x28\xcf\xc9\x91\x66\x8c\x5c\x7a\x94\xc0\x5f\x5c\x19\x7b\xb4\x6c\xa8\xba\x73\x80\x0c\x29\xcd\x85\x4b\x88\x50\x11\xb8\x70\x79\x85\x0c\xd3\xce\x7c\xe5\x47\x8f\xc3\x76\xad\x9e\x93\x54\x70\x71\xef\x53\x77\x32\x91\xca\xe8\xd6\xf2\xec\x7a\xa8\x63\x6d\x04\x71\xcb\xe5\xbd\x83\x1f\x32\x29\xa6\x71\x1a\x81\x0a\x33\x2d\x29\x15\x50\xde\x65\xce\xd3\x92\x66\x48\x44\xdd\x64\xce\x47\x43\xec\xce\xa7\x33\xd3\xbf\x63\x60\x8d\x41\x5e\x53\x9d\x19\xff\x51\xbe\xe4\xad\xc3\x35\x10\x5d\xe3\xac\x09\x68\xd9\xb2\x53\xbb\xa3\x0b\x48\x5b\xe3\x5c\x4c\x6a\x17\xa6\x3e\xb1\x18\x0e\xb1\x0a\xe2\x30\xbd\xb3\x50\xae\xc3\x8a\x0d\x60\xae\xb2\x20\x06\x4c\x5d\x9e\x9b\x05\x7c\x94\x07\x30\xbc\x76\x95\xd9\xa8\xdd\x20\x2b\xdc\x6d\xd6\x65\x1e\x40\x28\x9b\x57\x9b\x7c\xe3\x4a\x27\x76\x14\x0e\x0e\xbe\x8b\xcc\x66\xd1\x45\x87\x3d\x36\x54\xa4\x7d\x9a\x59\xcc\xb9\xfe\x74\xee\x3c\x9c\xf1\x20\xd4\x2e\xf2\x7d\x15\x24\x2e\x42\xda\x6c\x2b\x33\xac\x3c\x02\x10\x07\x3f\x66\x29\x10\x8d\xb8\x60\xe4\x9d\xd5\x90\xdd\xe6\x5d\x7f\x3a\xef\x11\x3e\x60\x03\xff\x57\x68\xea\xa9\x96\x91\x53\x74\x03\x0c\x3e\x9e\x80\x77\x30\x95\xd8\x18\x15\xf7\xfd\xfb\x6f\xed\x24\xed\xaf\xbf\xeb\xff\x36\xca\x36\xfa\xbb\xbf\x5b\x22\xa8\x6c\x83\xfa\xdb\xd8\x97\x2c\x64\xdd\xff\xfb\xb5\xcb\x4a\xed\x72\x56\xff\xdd\x15\xe3\x62\xc2\x58\xb9\xf1\x5a\xc2\x2d\x3d\x4f\x11\x1b\xe1\xdb\x8a\x7d\xef\x0d\x8b\x00\xa6\x60\xd4\x49\xa8\x61\x02\x08\xb5\x0f\xca\x10\xd2\x60\x77\x57\x77\xd6\xce\xff\x08\x4c\x02\x18\x54\xd6\x23\x46\x4a\x38\x8e\x78\xe4\xcf\x04\x61\xbe\x56\x27\xae\x15\xc0\x41\x9d\xa3\x9a\xe7\x3d\x76\x58\x0b\xe1\x10\x82\x6b\xe7\x01\x73\xfb\x85\x90\xe6\x17\x61\xfb\x1b\x55\xc4\xe9\x5c\x72\x9f\x80\xdc\x9e\x14\x81\x15\x1d\x43\x4a\xec\xf1\x82\xe4\x5c\x1b\x7a\xcb\x06\x64\x64\x79\x4b\x7c\x1b\x86\xd0\x13\x04\x32\x58\xb2\x94\x94\xc2\xf0\x0c\x7e\xad\xc6\xb1\x53\x8e\x79\xce\x70\x42\x74\x09\xe5\xcd\x0b\xc5\xfa\x9e\x8b\xb9\x56\x4b\xb4\xa0\x5a\x4b\x2f\x6c\xf6\x8c\xa2\x2e\x50\xa4\xd0\x15\xe0\x41\x85\x43\xaf\x25\x3f\x2e\x3b\x4f\x29\x92\x8a\x73\x01\x30\xf5\x80\x5c\x01\xb3\xca\xfc\x95\x30\xaa\x25\xce\x80\x29\x58\xc2\xb4\xa6\x6a\xd1\x83\xc4\xee\x3c\x24\x03\x77\xae\x3b\xc0\x51\x73\x2a\x30\xad\xba\x62\x89\x14\xda\xa8\x32\x31\x58\x67\x6f\xac\xe4\x2d\x13\xc1\x5d\xd0\xee\x62\xdd\x81\xab\xf2\x9f\x81\xfb\x2e\x49\x92\x19\x15\xd3\xa8\x4e\x4d\x4e\x53\x80\xfd\xb7\x41\xca\xf1\xeb\xb1\x10\xa0\x13\x2b\x58\x70\x03\xa0\x18\x5b\x3e\x12\xcc\xb0\x7f\x11\x21\x1f\x4f\xaf\xb2\x93\xda\x25\xf1\x6c\x0b\xed\xea\x44\xbf\x48\x47\xa3\x5e\x1f\xd8\xf6\x9e\x1d\xc0\x72\x66\x68\x4a\x0d\xdd\xc1\x09\xec\x5d\x55\x5c\xcf\xd7\xd7\xc7\x02\xa7\xe1\x62\xd2\xf1\x21\x2f\x6e\xc9\x82\xc7\xf1\x4f\x70\x12\x67\x1e\xf2\x10\x71\x6d\x2c\x4e\xb9\x8b\x02\xf4\xed\x02\x79\xc6\x57\x2f\xb3\xc3\xfb\xd1\x90\x5c\x54\xa5\x19\x2b\x72\xd2\xee\x1a\xaa\xa3\x05\xd6\x82\x7e\x07\x18\xdd\x54\x77\x65\x49\xdd\xbf\x6b\xa5\x08\x82\x5c\x82\x09\xc3\x15\x8b\xc3\xcd\x1c\xe8\x4a\x81\x48\xde\x00\x22\x40\x79\xca\x8c\xae\x3c\x54\x90\x0e\x5b\xe2\xe2\xf8\x9d\x53\x46\x81\x48\x3b\xc0\x3a\x7d\x6e\xb5\x2c\x84\x60\xd7\xd2\xd1\x59\x4b\xf9\x1f\x04\xae\xbb\x18\x9d\xb1\x9c\xc0\x3b\x99\x76\xb1\x53\x37\xb2\xf0\x57\x43\x54\xfe\x9b\xe8\x89\xab\x41\xa9\xc7\x06\x70\x5b\xa5\x6b\x41\x73\x48\xe4\x66\x74\xbe\xbb\x91\xaa\x92\x91\xfa\x21\x95\x31\x7c\xae\x0f\x9f\xeb\xbf\x6e\x6f\xcc\xeb\xe2\x01\xe2\x9f\xd6\x9e\x20\xf5\x8f\x74\xb2\x9c\x5a\x92\x32\xea\x68\xee\x6c\x44\x23\x87\x11\x1c\xcd\x77\xb7\x88\xe1\xe6\xd6\x45\x3a\x30\x6e\xa9\xc5\x29\xf9\x45\x8d\xcb\x3b\x69\x2a\x68\x4a\xe8\xa9\x7b\xe4\x55\xa7\x81\xdb\x0a\x1f\x7c\x5e\x6f\x7e\xdc\x18\x0c\xc4\x8b\xd5\x1a\x85\xf7\x08\x0e\x22\x9f\x15\xcf\x14\x18\xcf\x7c\xfc\x81\x45\x2f\x25\xb3\x8c\x29\x58\x82\xd3\x9e\x1a\xb7\xe8\x90\xcb\x14\x6d\xba\xbd\xa0\xa2\x06\x19\x53\xb0\xbb\x20\x4c\x50\x8d\xa9\x5b\xfc\x8d\x17\x73\x85\xf3\xd6\x8e\x17\xbc\x96\xcf\xc4\x02\xa7\x7e\x11\x81\x16\x55\x4f\x32\xb5\x1f\xb2\x52\xa7\xa0\xe3\x0c\x6f\x8f\x03\xb3\x85\xb9\xd0\xec\x8e\x2e\x34\xe0\x7d\x25\xcd\x87\xef\xbb\xac\x6a\xd5\xc0\x1f\xd8\x04\x7b\xb7\xbe\x11\xdb\xe9\x4e\x6c\x97\x5b\x31\x08\xa7\xe4\xa2\x8d\x0b\x52\xd5\x61\x63\xe1\x90\xe6\xb3\xcb\x35\x1a\xf8\xa9\xc0\xf5\x79\xb7\x3b\x91\x7a\x9d\xf2\xeb\x21\x0c\xe1\x65\xf2\x29\xfc\xe1\x39\x4e\xb8\x34\x18\x33\x8b\xd5\x55\xa0\x34\x60\x48\xdc\x77\x85\x27\x41\x85\x5a\xdf\x42\x36\x56\x67\x25\x0e\x95\xc6\x14\x03\x4f\x10\xf8\xe2\x00\xca\x11\x50\xb1\x70\x9c\xdc\xcc\xb8\x4a\xfb\x05\x55\x66\x81\xea\x63\xaf\xf6\xb5\xe0\x5e\xdf\x69\xe1\x3b\x5e\xe7\xb4\x4b\x7d\xbc\x16\xc2\xb0\x78\x6f\x1e\x76\xd6\xf9\xb5\x70\x7d\x8c\xf5\xb4\x77\xe0\x5f\xb9\x9e\x38\xb5\xa8\xd7\x08\x9f\x6c\x3d\x69\x4c\x3e\xee\xcf\x37\x2c\x0d\xd2\xf5\xab\x57\x64\x03\x71\xe9\x2a\x19\x7b\x41\x07\x2e\x0f\x0a\x91\x1d\xa9\x67\xf5\x50\x5a\xd5\x1a\x8f\x0c\x7b\x4e\x52\xf0\x3e\x34\xae\xd2\x91\x58\x38\xd3\x4d\xfc\xad\x78\x80\x70\x4a\xc8\x91\x90\x02\x4f\x0e\xb6\x3d\x46\x17\xa2\x35\xb6\x29\x68\xe2\x4a\xd4\xd5\x2b\x84\x46\x27\xd5\x33\x09\x2e\x52\xbb\x75\x40\xb9\x41\x47\xd2\x65\x92\x30\x16\xb4\xea\xb8\x44\x4d\x75\xb2\xdd\x94\x7d\xa9\x4b\x2d\x21\x89\x8b\x36\x34\xcb\x2a\x6d\xd6\x81\x4b\x02\x9f\xf3\x16\xc0\x88\xfd\xd5\x02\x6d\x9c\x62\x0f\x45\xd4\xd1\xed\xa5\x14\x09\x5e\xe1\x73\xb3\xf0\x33\xb8\x68\xb2\x7a\x50\x23\x34\x2a\xb9\x7c\x82\x76\xa7\x48\x1d\x08\xc0\x04\xd2\xe4\x4a\xb8\xd7\x39\x93\xcb\xcd\x60\xe9\xd0\x98\x26\xb7\x77\x54\xa5\x50\xca\xb7\xa0\x86\x63\x5a\xf0\x5e\x6d\xd8\xa3\x68\x0e\x50\x48\x3f\xc6\xa2\xe3\xa0\x74\x68\x16\x52\x50\x57\x9f\x21\xb4\x34\x32\xa7\x86\x27\xa0\xca\xf2\x49\x64\x45\xcc\x43\x4a\xc3\x46\xd9\x41\xa0\xb2\xa1\x80\xfd\x0d\xde\xc6\x28\x46\xcc\x9d\x24\x3c\xb7\x12\x02\x85\x52\x1a\x93\x10\x31\xe4\xed\x9d\x9b\x66\x6a\xc5\xa0\xef\xc0\xc8\x1c\xb5\x42\x25\xd9\xaa\x50\x1a\x86\x0f\x16\xcd\x60\xca\x73\x21\x37\xbd\x06\x03\x77\x7d\x2c\x4e\xdb\xb9\x46\xa8\xda\xb3\xdb\x73\xc7\xac\x5c\xa0\x37\x22\xac\x1e\xac\x9a\x11\xd6\xb4\xd5\x24\xe5\xba\x51\x98\xfa\x28\x55\xb2\x28\x9c\x81\x24\x3f\x6e\xce\x08\xee\x0d\xd4\x9c\xe9\xa8\xf6\x32\x9a\xaa\xa7\x4c\x84\xe2\xe1\x2e\x9d\x05\x9c\xdc\xe6\x27\x6a\x07\x66\x80\x01\xa1\xc7\xe4\xa3\x2b\x2a\x14\x10\x37\x78\xdd\xb5\x12\x9c\xd0\xda\xe2\x64\xa7\x17\x89\xa7\xed\xf3\x22\xf1\xbc\x48\x3c\x3f\x6d\x89\x27\xb8\x7b\xed\x2a\xed\x54\x3e\x8e\x8d\x82\xe4\xde\x19\xa0\x6a\xb0\xce\x88\x31\x9c\x90\x0f\x2c\x91\x73\xa6\x90\xc8\x41\xe1\x4f\xcb\xcb\xdf\x50\x9e\x59\x12\xe7\x49\x5d\xa5\x1e\x42\x46\xd5\xba\x69\x2e\xd2\xc8\x03\x34\x1d\x9a\xe7\x6e\x52\x2e\xd2\xcf\xb6\x77\x97\x64\x85\x62\x73\x2e\x4b\xed\x5d\x16\x4a\x83\xc7\x4c\x1b\xc7\x6f\x67\x7c\x1a\x12\x73\x87\xab\x4e\xc5\x12\xa9\xd2\x2a\xa4\x5c\x1b\x6a\x4a\x5d\x8f\x93\x48\xd0\x9a\xb6\x3f\x03\x4d\x80\xe3\x03\x53\xf7\xdd\x28\x29\x7a\x6c\xdc\xe3\x54\x1c\xbe\x45\x9f\x8f\xaa\xee\xb6\x89\xdc\x50\x2a\x17\x18\x2b\x42\x95\x86\x45\x68\xe5\x10\xa0\x33\xac\x6b\x51\xaf\x27\x58\xb8\xa5\x1f\x86\xed\x57\x5e\x27\x2d\x32\xae\xc7\xcf\x4e\x50\x27\xf7\x08\xf0\x8c\x9f\x67\xec\x78\xd2\x58\x6c\x77\xef\x4b\x72\x4f\x0f\x4c\x72\x1f\x2f\x4c\xb2\x4f\x4f\x4c\x12\xfc\xb9\xef\x73\x62\x3e\x78\x4f\xf2\xc6\x99\x71\x84\x77\xd3\x99\xa9\x25\x14\x08\xe3\x70\xed\x2b\x40\xba\x6b\xcd\x70\x06\xc0\x24\x18\xfb\x03\xbb\xd3\x0a\xda\x1c\xde\x5d\xb2\xcf\x21\xeb\x6f\x24\xc7\x54\x45\xb5\x8d\x04\x0f\x84\xbc\xc0\x4c\x40\x70\xea\xfa\xce\x25\xcb\x6b\x4b\x2f\x27\xf8\xe5\x04\xb7\xed\xff\x94\x27\x18\x3d\x9e\xbb\x38\xe4\x37\x2a\x05\x61\x77\x17\x84\x4b\xc7\x2c\x23\x3f\x94\x4c\x2d\x88\x15\x82\x2a\xf7\x1e\x48\x6f\xac\x79\xea\x1c\x64\x9c\x51\xa5\xbd\xcc\xfe\x88\xfc\x1f\x4c\x36\x97\x9f\xad\x04\x08\x71\x6c\xf7\xa0\x6b\xcd\xa1\xea\xa1\xca\x08\xad\x00\xc1\x58\xc2\xc3\x1b\xc6\x9a\xcc\x67\xc5\xbd\xb3\xab\x8b\xdd\x14\x9d\x6e\x97\x5a\x64\x97\x8b\xad\xa5\xc5\x9f\x6d\x58\x20\x02\x22\xfc\x52\xaf\x26\x15\x4c\x11\xe4\x96\x2d\x7a\xee\x1e\xdc\x65\x6f\xf7\x8d\xd1\x9d\xa3\x9e\x52\xb4\x6d\xaa\x8a\x55\x00\xda\x81\x42\xee\x66\x3d\xc0\xa7\x7d\x12\xca\x7a\x2f\x0f\x84\xae\x84\x78\x67\x12\xde\x29\x59\x65\xfc\xac\x4b\x5c\x89\x38\x01\x19\xf8\xbc\x5f\x73\x40\x03\xf0\xe5\x06\x6a\xd1\x75\x13\xc9\xee\x2a\x30\x3e\x1e\xb0\xf7\x5e\x6a\x40\xd3\x9a\x63\xee\x2d\x5b\x1c\x6a\x17\x35\x28\x85\x9e\xf1\xc2\xe7\x87\x07\x4a\xe0\x30\x97\x7c\x02\xff\x00\x3f\x04\x9e\xf9\xa1\xe8\x91\x2b\x69\xec\xff\x2e\xc1\x55\x08\x2d\x95\x92\xe9\x2b\x69\xe0\xcd\xa3\x03\x0b\xa7\x7b\x6f\x50\x39\x33\x25\x07\x33\x23\xba\xb4\x41\x7c\x86\x77\x41\x01\x90\xb8\xfb\xd6\x00\x56\xae\xc9\x50\x10\xa9\x3c\x4c\x8c\x4f\x1e\xac\xdd\x10\xde\xb6\x14\x59\x84\x57\x8c\xe1\x40\x29\x55\x0d\x92\x1b\x86\x0b\xc6\x65\xee\x7f\x01\xdb\x13\x58\xe3\x83\xdf\x0c\xa4\xc0\xa5\x86\x4d\x79\x42\x72\xa6\xa6\x10\x1f\x9a\xcc\x76\xdf\xa0\xee\x74\x1b\x9f\x9d\xa8\x77\xfc\xe1\xce\x98\x01\xac\xee\x2d\x78\x2e\xdd\x97\x61\xe2\x28\xc8\x22\x72\x5a\x58\xa4\xf8\xa7\xe5\x04\xb0\x2f\xff\x86\x94\xd5\x7a\x40\xce\x7c\xc1\xd3\xf8\x37\x67\xc5\x88\x87\xb1\x23\x58\x99\xfe\x87\x92\xcf\x69\xc6\xd0\x9f\x8f\x8a\x90\xc6\x53\x4e\x96\xd8\x74\xcf\xe5\xad\xb6\x54\x2a\xdc\x0c\x1d\xdc\xb2\xc5\x41\x6f\x09\x91\x0e\x86\xe2\xa0\x0a\xd2\xae\xa1\x4e\x60\x68\x70\x69\x70\x00\xbf\x1d\xec\x9b\xb3\x3f\x91\x68\xbf\x03\x96\x38\x83\xd0\x79\x46\xb5\xee\x16\xdf\xda\x08\x2d\x6a\x8c\xb3\x2a\x01\xe3\x28\x6a\x53\x05\x17\x39\xef\xcd\xbd\xdb\xb3\xc0\xcb\xbf\xbb\xa7\x51\x27\xe8\xcd\x5d\xf5\x94\xf6\x89\x1b\x56\x26\x14\x83\xb4\x05\x3e\x86\xa3\x16\x17\x57\x5d\xc6\xae\x81\xd7\x27\xb0\x2b\xca\x49\x5c\xe4\x99\x6b\x50\x83\xb9\x8f\xea\x10\xd2\x10\x2e\x92\xac\x74\x26\x45\xe8\x0a\x4a\x74\x57\x51\x7f\x07\xe0\xdc\x03\xa9\xaa\x01\x3c\x36\xf9\x6b\xdf\x25\x07\xde\xe6\x0d\x1d\xdc\x89\x86\x1b\x2f\x84\xd5\xbe\xd7\x3a\xd9\xe2\x2e\x59\x4f\xc6\x99\xd4\x65\x8f\x37\x7c\xac\x18\x39\x9f\x51\x21\x58\x16\x45\xbb\x3a\x63\x47\x28\x67\x05\x02\x89\x2b\x62\x75\x58\xaf\x62\xe5\xe9\x9b\x08\xb1\xd5\x7b\xaf\x1d\xfc\x63\x2a\x2a\xb5\xb7\x3a\xe5\x2e\x55\xe3\x4c\xde\x91\x54\x92\x3b\xa8\x5b\x30\xb7\x4c\x0b\x2e\x65\xb5\x67\x77\xd1\x4c\xc1\x45\x22\x91\x79\xa1\x64\xce\xb5\x77\x8e\x77\xdb\xb8\xd7\xd0\xd0\xac\x6c\x91\x03\xa8\xbe\x07\x59\x29\xea\x29\xe1\xdf\x9c\x13\x43\xd5\x94\x19\x3b\x1a\x11\x65\x3e\x66\xad\xe3\x57\x1f\x22\x07\xd9\x97\x54\x42\x74\xbf\x45\xb0\x70\x1b\xbe\xfb\xee\xaa\x73\xe9\xdd\xaa\xe7\xba\xbd\xbd\x93\x2a\x4b\xef\x78\x8a\x2c\x5a\x93\x23\xdb\xf8\xf8\xf9\x57\xca\xbd\xbb\xe3\x69\x67\x70\x40\xa7\x3a\x18\xbc\x1f\x94\x05\x03\x01\x38\xb8\x0a\x4f\x1c\xd2\x68\x43\x8f\x63\x72\xc9\x31\xba\x08\xfa\x43\xa2\x9a\x7c\xcc\x45\x15\x61\x56\x81\xd9\x12\x63\x7b\x5e\xbc\x6a\xa2\x99\xc1\xb8\x10\x08\xad\x90\x66\x46\x34\xcf\xcb\xcc\x50\xc1\x64\xa9\xb3\x45\x6b\x54\x79\x1a\x50\x4f\x32\xf6\x19\x31\xbb\x0b\x93\x0b\x9d\xea\xcc\x0e\x5c\x57\xaa\x30\xca\x25\x6e\x57\x39\x57\xa5\x27\x81\xf3\x85\x70\x23\xf6\x99\x25\xce\x2b\xb8\xc8\xca\x29\xdf\x12\xfe\xf0\x13\xcb\x6a\x5e\x25\x90\x2e\x35\xab\x22\xf5\xdb\xd6\x75\x79\xa4\x24\xe4\x4f\xcb\xe1\x6f\x56\x27\x20\x4f\x59\xc1\x44\x0a\x29\xd1\xde\x54\x98\x8b\x93\xdf\x2b\xe4\x5c\x7a\xb1\xae\x54\xcb\x67\x25\xab\x51\xf0\xc8\x85\x6b\x26\xb3\x54\x13\xf6\xd9\x28\x6a\x09\x53\x6e\x49\x50\xe8\x33\x21\x54\xb4\x27\x32\xcf\x23\x45\x30\xd9\x3b\xb7\x7f\xd8\x7a\x99\xcf\xb1\xe4\x65\xb5\x76\xbd\xb1\x60\xf5\xfd\x52\xd7\x23\x21\x76\x67\x45\xd7\x3d\x84\x57\xa4\x98\x77\x5f\xa9\x7b\x26\xde\x2f\xd5\xbc\x5e\x91\x54\xbb\x31\xab\x97\x32\x9d\x5f\x44\xde\xf9\x09\x04\x06\x77\x49\xc2\xe4\x7a\x34\x34\x6a\xf7\xb2\x59\x10\x7a\x83\x06\xed\xf0\x36\xe2\x03\x90\xf1\xd4\x0d\xe4\xc2\x9a\x88\xb6\xb0\xac\x5c\xe7\x4a\x21\xb6\x51\xb1\x87\xc8\x22\x4e\x0d\xd5\xcc\xb4\xb3\xa6\xd4\x45\x87\xaa\xa7\x3d\x80\x31\x7e\xb9\x9f\x30\x8b\x3d\x38\xa4\xfb\x60\x59\xd2\xff\x9d\x93\x32\x44\xad\xa5\x95\x2f\x3c\x7c\x7c\x92\x26\x16\x6e\x91\x71\x8c\xd4\xee\x4a\x42\x4d\xeb\x92\x3b\xad\xf8\x82\x9b\xc1\xc7\x8f\x9d\x6b\xb9\x46\x3d\xbd\x1c\x02\xff\xae\x03\xc1\xe1\x02\x24\xf2\xe1\x3f\x94\xb1\x3a\x00\xc9\x2d\xc2\xb2\x5d\xfb\x7d\xad\x6d\x9a\xb0\xca\x78\x75\xc1\xf5\x6d\x97\x64\x64\x4b\x9d\xeb\x47\xe2\x0f\xe7\x97\xc4\xbd\x6d\x65\x5f\xea\x62\x60\xba\x6f\x66\xac\x69\xc2\x2a\xa3\x6d\xca\xf5\xed\xa3\x97\x55\x2f\xd2\xab\x6d\x1e\xe0\x8f\x67\xff\x6a\x4a\xbd\x3e\x45\x4b\x94\x3b\x68\x21\x4b\x72\xe7\x52\x1f\x38\xa9\xf9\x86\x17\xa7\xe4\x52\xe8\x52\xb1\xea\xe6\xb6\x39\x94\xe5\xba\xcf\xa9\xf4\xfa\xbd\xb0\xe4\x39\x1b\xdf\x0a\xaa\x0c\x88\xc7\x5d\xd1\x20\x74\xf4\xf4\x29\x7a\x21\xda\xe0\xc1\x70\xe2\x1d\xeb\x7a\x2e\xc6\x3b\x24\x2e\xf3\x8d\xec\xce\x47\x69\x4d\xe2\xbd\x7e\x13\x52\xfe\x90\x93\x94\xcd\x4f\x74\x4a\x5f\xf7\xe0\x33\xde\xe1\xb9\x3e\x27\xaa\xc9\xc1\xeb\x83\x01\x19\xf1\x9c\x67\x54\x65\x8b\x5a\x2a\xe6\xaa\x9d\x65\x16\x7e\x40\xb8\x95\x7b\x75\x40\x8e\xa4\x82\x91\x13\x2a\x48\xc6\x7c\x44\x93\x3b\x67\x0b\x94\x1d\x8f\x1f\x9b\xb8\x90\x07\xb5\x5f\x22\x9d\xe9\x8c\x13\xa9\xe7\xd8\x8e\x1f\xd5\xd2\xd9\x5c\x54\x24\x9d\x0b\x4b\xe7\x07\xe4\xe3\xaa\x42\xe5\x70\x64\x7c\x8b\xa7\x02\xea\xe3\xe8\x7d\x3b\x69\x70\xcb\xe6\xe0\xa7\x03\xd3\x76\x2d\x71\xca\xcd\x07\x56\xc8\x4e\x12\x02\x76\x69\xd8\xe3\xb8\xb1\x2f\xa4\xe6\x90\xa8\x94\x1a\x28\x0b\xac\x0c\x4f\xca\x8c\x5a\xb1\x1a\xad\x71\x03\x72\x71\x79\xfd\xe1\xf2\xfc\xec\xe6\xf2\xe2\x94\xfc\xc1\x8d\xc4\x63\x09\x6f\x40\x6e\xe2\x6c\x50\x91\x47\xaf\x4b\xb9\x13\xbe\xd5\x73\x64\x88\x8a\x2a\xb9\x23\xe4\xf8\xa0\x82\x0c\x05\x37\x55\x7a\x64\xf4\x3b\xcb\xa4\x60\xbe\x7a\x68\x21\x9d\x35\x70\xca\xd1\x1b\x44\xb8\xc1\xec\xcf\xf5\xd1\xe0\x74\x60\xaa\xd5\x30\x95\x2d\x8a\xe0\x03\x88\x16\x15\x70\xf7\x25\xfe\xfb\xfc\xa7\x5d\x65\xdf\x90\x8d\xd6\x07\x38\xa1\xf5\xbf\x7a\x8f\xcc\x20\x24\x66\xf7\xe9\x6e\x56\x94\xb4\x26\x96\xcd\x1c\x0e\x0e\xbd\x40\x91\x2d\x25\xe1\x0f\x83\xc6\x19\xbd\xea\xc8\x36\x20\xe4\xbd\x77\xd9\x86\xd0\xe3\xd5\xf9\xfc\x31\x3b\x44\x94\x15\xbe\x81\xb2\x3e\x30\xa6\x1c\xc7\x1f\x75\x29\xc0\xa6\x7c\xce\x04\x2e\x6c\xbf\x14\xca\x7f\xbe\x73\x75\xb4\x6a\xde\x4e\xff\xf8\xf0\x76\xbf\x33\xc3\xf3\xd7\x79\x5e\xee\xd8\xba\x59\x25\x32\xcf\x31\x5f\xd4\x2c\x04\x18\x56\x31\x82\x81\x2a\xec\x4d\xf3\xc1\xcc\x57\x93\x2d\xc8\xdf\xa0\x67\xbe\x53\x43\xd3\x09\xaf\x5d\x50\x82\xa8\xc4\xdc\xee\x79\x98\x5d\x92\x35\xed\x93\xa7\x38\xd2\x7e\x12\x3e\x7e\xf2\xe1\xf2\xec\xe2\xdd\xe5\x20\x4f\x1f\x9d\xb4\x30\x91\x16\x92\x0b\xa3\xb7\xeb\x37\xdb\xaa\xce\xb4\x27\x3f\xe1\xa3\x5d\xb9\x73\xe8\xe8\x71\xcc\xbf\x88\xf2\xd2\xa5\xcc\x50\x9e\xe9\x68\x0f\x8d\x2c\x64\x26\xa7\xab\xd3\x2f\x77\xd8\x9c\x9f\x61\x7e\x99\x3e\xed\xdb\x5d\xdf\xaf\xa8\xdf\xa6\x8e\x46\x53\xca\xaf\x2a\x62\x57\x6b\x0d\x52\x33\x94\xbb\x78\xa6\xcb\x7d\x10\xe1\x6c\x09\x06\xa8\x48\xc2\x01\xf6\x29\xfb\xaa\x1c\x78\x51\x0d\x9b\xb6\x52\xdb\x43\x83\x6e\xbb\xc0\x66\xe9\xcf\xf6\x42\x45\x75\x98\xf9\x3e\x75\x02\x57\x28\xd6\x0f\xe9\x9a\xa0\xb4\x8a\x54\x11\xc3\x8d\xe9\x9d\xb7\xde\x78\x5b\x0f\xb6\xca\x16\x4d\x2b\x4e\x25\x1f\x05\xd3\x17\xe6\x18\xc8\xb2\x45\x95\x06\xd2\x69\xd1\x74\x8a\x69\x98\x94\x33\x13\x17\x8a\xcf\x79\xc6\xa6\x90\x8a\x95\x8b\x69\x14\xfe\x1a\x07\xcc\xba\xd4\xac\x75\xa3\xeb\x3b\xfb\x57\x94\x74\x1b\xf0\xe2\xea\xfd\x0d\x64\xf5\x85\x0b\xae\x7b\x0b\xe1\xf6\x83\x70\xde\xfa\xfd\x3e\x98\x0c\x8e\xbe\xb7\xf2\x64\x9a\x1d\x93\xef\x98\xfb\x8e\x84\xb4\xc3\x0a\x4a\x01\xcd\x64\xc8\x01\x0b\x73\xad\x20\x0b\xe8\x88\xd7\xfb\xae\xd5\x89\x6d\x69\x65\x25\x64\x35\xb5\xf6\x50\xf9\x14\x53\x37\xe2\x1d\xd3\xe3\xcb\x9e\x7b\x24\xfb\x3b\x53\x39\x6f\x5a\x5d\x85\x9f\xe1\xe2\xc7\xd3\x43\x4a\xf4\x22\xcf\xb8\xb8\xad\xf2\x82\x4d\xa4\xc5\x21\x0c\x4d\xe0\xe2\xd6\x63\xac\x62\x34\x5b\x4f\x29\x77\xc1\x8f\xbd\x52\x49\xb3\x83\x05\x10\x2c\x74\xf6\x9c\xfd\xd1\x1f\x7b\x77\x0d\x1d\x93\xb8\x83\x83\x67\xb7\x5e\xae\xbb\x95\xc1\x3f\x84\x0e\x35\x9a\x26\xc8\x70\x74\x3e\x1a\x3e\xaa\x85\x7a\x1d\x4b\x80\xd9\x3d\xa1\x54\xc7\x7f\xd8\x76\x3b\xdc\x27\x59\xb9\xbd\x0d\xaa\x77\xd7\x52\x19\x9a\xed\x89\x08\x24\x33\x5a\x9c\x95\x66\x76\xc1\x35\xe4\x50\xe8\x2a\x04\x2c\xf5\x8f\x3c\x9d\x31\x77\xb3\x4f\x18\xc8\x3d\x3a\xb8\x76\xe7\x7f\x3c\xbb\x26\xb4\xb4\xfb\x6b\x5c\x72\xd1\xbd\x5e\xb8\xfb\x99\x8d\x30\xc2\x60\xc7\x75\xb9\xde\x5b\x56\xe5\x5b\x3d\xf4\x9a\x1e\xc2\x0f\xf7\xe5\x2e\x02\x68\x28\x52\xb0\x67\x7c\xff\xc0\x05\x37\x9c\x1a\xd9\xb2\x50\x59\x0d\x05\x6a\x7d\x83\x41\xa0\xd4\x46\xe6\x0e\x83\x87\xbe\x05\x5c\x21\x03\x17\x5f\xea\x54\x59\x0b\x40\x7a\x07\x88\x0d\x85\x95\xb5\x69\xc2\x1a\x0e\x90\x3d\x48\xfa\x89\x63\xf3\xd0\xe6\xb7\xce\x40\x05\xf9\xc1\xb2\xdf\x9d\xd6\x52\xb1\x2f\xd5\xb5\xf0\x56\x8a\xaa\x68\xc2\x5e\x2d\x3e\xfc\x87\xae\x44\x81\xff\x20\x1a\x96\x36\x5c\xe0\xff\x96\x34\x43\xc0\x5c\xed\xdb\x2c\x55\x07\x72\xd7\xf9\xd6\x77\xc8\x4d\xbd\xda\x8e\xab\xa0\xa5\x97\x1a\x33\x8f\xe1\x7a\x8c\xa2\x42\xdb\x3d\xaa\xeb\x62\x87\xee\xe2\xe9\x90\x1c\x99\xa4\x68\x5d\xbb\xff\x81\x5c\xdb\xb3\x52\xd4\x0a\x39\xc3\xcc\x6f\x70\x5b\xde\x06\xd7\xf6\xb6\x93\x7c\x90\xab\x21\xc0\xf2\xae\x56\x15\xd7\x2b\xec\x56\xbc\x2e\x64\xfd\xe4\x2d\xd7\xc6\x17\x64\x80\x17\x5c\xbb\x3c\xc2\x20\x77\x5d\x5b\x45\x8e\x17\x7f\xa3\x69\xaa\x4e\x91\x4b\xf9\xea\xcb\x0a\xa4\x2f\x9f\xe4\x8b\x8a\x70\x97\x78\x64\x16\x85\x4b\x00\x78\x73\x7e\x4d\xb0\x40\xca\x6f\x7e\x85\x95\x5f\xff\xf3\x97\xbf\x7a\xd5\x7a\xbb\x9f\xce\x79\x7c\x47\x3b\xc6\xde\xef\x98\x9e\x85\xdf\x60\xcd\x3f\xd0\xae\x04\x64\x93\x11\xba\xe3\x59\xca\xea\x8e\x3a\x22\x96\xdd\xe5\x40\xef\x77\x93\x60\x5e\xfc\xec\x9e\xd4\xcf\x8e\x84\x88\x12\x24\x12\x1d\xd1\x25\xee\x0a\x21\x86\xcb\x64\x07\x29\xce\xf5\xf3\xa3\x38\x5b\x61\xb3\x1d\x8b\xea\xd8\x13\x5f\xc6\xfb\xf2\x37\x95\x0b\xfb\xc5\xd5\xe8\x6f\x6f\xcf\xbe\xb9\x7c\x0b\x33\x75\xf7\xf7\x16\x35\xb8\xd8\xd9\x7f\xaa\x3d\xaa\xb5\x51\x5e\xb7\x03\xa4\xdb\xb5\x8c\x68\x5c\xc8\x08\x72\xf5\x66\xd4\xf5\x2e\xe6\xbe\x02\xba\x98\xb4\x5a\xfb\xe3\x5a\xdb\xa0\xaa\x09\x53\xfb\x8b\x1f\xd9\xd9\x28\x17\x25\xd2\xaa\xe9\x5f\x76\xa7\x70\x86\xf7\x56\x91\xb6\xee\x00\x79\x06\xf7\x0e\x76\xbd\x08\x83\xbd\xdf\x38\x3c\x10\xac\xda\xca\x01\xaa\x7b\x60\xd1\x21\xf6\xf2\x22\x80\x3d\xa4\x48\xdb\x94\xa5\xd9\x96\x5a\x33\x1d\xaa\x2f\x3c\x53\x4c\x29\x56\xa5\x67\xee\x42\xbd\x56\x0e\x50\x2b\x57\x56\xbb\x8b\xa9\xc5\x52\xac\x4b\x67\xee\x3d\x14\xa8\x53\x5e\x75\x41\x93\xbd\x16\x54\xa9\x5e\xe1\x1b\x08\x72\x7f\x7c\x02\x08\x9f\xdd\xa3\x23\x6d\x18\xaf\x2b\x22\x87\x8e\xcd\x28\xb9\x4e\x3b\xe4\x0b\x7d\x14\xd2\x47\x20\xc6\xe1\x74\x4f\xbc\x7d\xe4\x71\xb5\x9d\xef\x76\x54\x74\xf6\xad\xe4\x14\x33\x69\xa4\xd8\xd9\x4b\x7e\x55\xf7\xfa\x81\xbe\x86\x16\xe7\x55\x19\x9b\xa8\xc6\x23\x78\x50\x86\xcb\x08\x2b\xcf\x79\x76\x21\x85\xbf\x96\xa8\x5f\x4a\x3c\xba\x08\x92\x0e\x2f\xf6\x74\xf8\xbe\xdc\x10\xcf\xae\xc6\xe0\xbd\x3a\x83\xa4\x9d\x63\x52\x6c\x17\x0f\xb1\xe1\x85\x13\xcd\x7c\xc0\x89\x76\x08\x49\xd6\x63\xe4\xde\x58\xa7\x54\xe6\x4e\xaa\xee\xa1\xde\xf5\x8e\x0d\x5f\x05\xf7\xdb\x52\x28\xd6\x73\x3c\x3d\x38\xc7\x27\x3e\x41\x23\x38\x41\x8d\x04\xe7\xeb\x4e\xd2\x43\x1c\xa4\xa7\x3d\x40\xf7\x65\x54\x0f\x1b\xe5\xbb\x57\x21\xdd\xa3\x5b\xc7\xa5\xfa\x6e\xce\x98\x60\x37\xa9\xa2\x16\x14\x4c\x2e\xd1\x89\xdb\x1b\x75\x50\x12\x4b\x50\x76\x21\x0c\xbe\x0f\x1a\x70\x31\xd1\x73\x96\x59\xa8\x4a\x11\xa7\x88\x76\x61\xbc\x3d\x82\x59\x96\x73\x5a\xf8\x9a\xdc\xf2\x4e\xdc\x51\x95\x92\xb3\xeb\xe1\x7e\xa8\x41\x07\x3f\x6b\xc4\xa4\x76\x19\xbd\xea\x9e\xd6\x55\x4f\x2c\x73\x33\x63\x50\x5b\x91\x8c\xb9\xd1\x55\x4d\x3f\x66\x62\xbd\xd2\x52\xc1\x70\x97\x65\xcf\xb2\x3d\xb7\x6e\xa4\x88\x61\x0a\x22\x13\x43\x33\x5f\x44\xc0\x95\xc9\x79\xf5\xea\x15\x9a\xc2\x5e\xfd\xfa\xd7\xbf\xc6\xca\x4a\x29\x4b\x78\xbe\xdc\x10\x5a\xfd\xd7\xeb\xd7\x03\xf2\xa7\xb3\x77\x6f\xa1\xf2\x63\x61\x34\x66\x25\xc1\x91\xb1\x12\x7c\xd4\x59\xf7\xc8\xff\x8c\xde\x5f\x55\x65\x62\xea\xbf\xba\x82\xda\x6e\x79\x03\x72\x11\xf9\x3f\xc5\x86\x2e\x6a\x66\xae\xa0\x91\x21\x74\x32\x41\xc4\x18\xfb\x72\xba\x78\xe0\x7c\xf4\x38\x54\x05\xc7\xfa\x23\x16\x25\x32\x70\xcc\xb2\x2a\x39\x9a\x06\x7d\x66\x03\xf4\x33\x83\xb1\x02\x99\x84\xa9\xf4\xb0\x96\xfc\x44\x43\x15\x92\x2a\xfd\x9f\x62\xda\x0a\xa5\xae\xba\x22\x0e\x56\xed\x8c\x66\xad\x73\x3d\x3c\xc4\x0d\x50\xeb\xea\x18\x75\xd3\xbd\x3b\x43\x3e\x7d\xab\xcb\x5d\x5c\x95\xa9\xff\x1e\x6f\x43\xb7\x39\x09\x3f\xd0\x8d\x4c\x6d\xae\xd7\x61\x36\xb8\x75\x2e\x4b\x40\x45\x27\x68\x26\xa1\x92\x57\xd8\xe9\x8a\x8b\x45\x45\xef\xb7\x2f\xa5\x73\xf2\xc5\xae\x09\x78\x91\x50\xbd\xa3\xad\xcb\xf9\xd4\xfd\x45\x7c\xef\x5a\x5e\x05\x3a\x96\xa5\xf1\x77\xd8\xee\x77\x08\xc0\xc6\x2a\xeb\x1d\xd2\x48\xee\x90\x79\x72\x97\x0c\xc4\x9d\x93\x98\xd6\xef\x9b\x81\x27\xd4\x45\x89\x1e\x61\x34\x99\x91\x5b\xb6\xe8\x23\xdd\x2a\x28\x44\xf3\x00\x54\x2e\x2c\x2c\x6a\x85\x4f\xaa\xda\x35\x56\x3e\x76\x20\xf3\x8e\x01\x11\xf7\xf1\xd1\x40\x5e\x08\xd5\x4e\x5e\x72\x69\x44\x45\x64\x29\xf0\xb9\xaa\xa3\x7a\xc4\x21\x6f\x28\x16\x23\xaf\x07\xa9\xd8\xf3\xc6\x52\xdb\x4d\x6f\xfa\x72\xe5\x0d\x61\xe9\xa0\xe3\x6e\xa5\x58\xea\xed\x8a\x6f\x3b\xe1\x0f\x3e\x48\x7d\x76\xe6\xc8\xa3\x02\xca\xf9\xb9\x4a\x4e\xae\xad\x87\x52\x00\x44\x2d\x88\x46\x33\x53\x3a\xd0\x60\xbd\xb0\x52\x64\x4c\x6b\xc2\x61\x85\x39\x55\xb7\xcc\x27\x8c\xa1\xd9\x80\x5c\xdb\x49\x86\xfc\x55\x98\x16\x79\x8e\x2e\x76\xf6\xcc\xc6\xd1\x41\xf6\x23\x87\x83\xc1\x21\x12\xf8\x15\xb1\x42\x1d\xf0\x63\xb7\x9c\xba\x3b\xe4\xd2\x6d\x94\xf6\x2e\x34\x66\x06\xb6\x22\x1f\x64\xbe\x96\x10\x05\x67\x66\x9e\x81\xd1\xd6\x49\x94\x96\x97\xb3\x43\x02\xd8\x5d\xf3\x96\xef\x92\xb5\xbc\xd5\xbd\x45\xfd\xd9\x3d\x5b\xf9\x4e\xb9\xca\xd7\x65\x2a\x77\x3b\xe5\x4e\x5b\xf7\x1c\xce\xf7\x48\xb1\x9d\x77\x4a\xf3\xea\x9f\xba\x91\x12\xe4\x8e\x5a\x96\x9e\x56\x32\xa2\x4b\xfa\x94\xb1\x2f\x4a\x28\x1c\x4e\x56\x55\x9d\xf3\xc1\x82\x91\xbc\xec\x69\xa8\x85\xc0\xd3\x4b\x83\xdd\x6a\xb9\x90\xce\xe2\x61\xf3\xe9\x22\x2e\x36\x9f\x76\x97\x81\xcd\xa7\xae\xb0\x45\x61\x49\x81\xe8\xc7\x5e\xfc\x00\x52\x23\x21\x67\x77\x75\x04\x07\xe4\x9d\x63\x0a\x88\x8c\x74\xac\x65\x56\x9a\x10\xc9\xb4\x82\x63\xc0\xa0\x3e\xc3\x37\x86\x94\xfa\x66\x11\xff\x00\xce\x89\x64\xb9\x2b\x2b\xc1\x67\xa7\x23\xde\xb5\xe6\xde\x8f\xd6\x99\xe4\x1e\x30\xf4\xa2\xc4\xce\x70\xf4\x03\x84\xbc\x13\xde\x97\xba\x26\xe3\x80\x27\x89\xd1\x28\x40\x79\x71\xc5\x15\x7a\xea\xbc\xc4\x76\x56\x1b\x37\x57\x67\x98\x38\xbb\x1e\xee\xa4\x01\x44\xfd\xd7\xe8\x00\x71\x8b\x1f\xb1\x16\x30\x44\x2d\x20\x2e\xbb\x73\x51\xad\xdc\x99\x94\x2d\xd9\x79\xf6\x62\xe4\xd2\xb4\xdf\x58\x62\x19\x3b\x9d\xd6\x73\xe8\xa1\xb1\xa7\x22\xab\x51\xde\x3d\x7f\xeb\x08\x87\xf8\xb9\x8b\x9c\x8f\x28\x3e\x02\x3c\x3a\x95\x4b\xf7\xcf\x72\x35\x3b\x58\x2c\x19\x41\x69\x1b\xd4\x07\x23\xc5\xb2\x90\xe9\xa9\x2b\x25\x2d\x84\xc4\x02\x72\xba\x87\xb5\x71\x74\x0f\x15\x46\x2b\x45\x44\x77\xc5\x2a\x32\xb9\xef\x2c\x37\xec\x54\xe5\xe8\x3e\x75\x8e\xec\x06\xc2\xca\xaf\xbb\xee\x22\xb9\x67\xd9\x22\x12\xb1\xa6\xdd\x0a\xa1\xd4\xf6\xd4\x8d\x14\xea\xbc\x27\x33\x96\x53\xcc\xe1\xe7\x97\x67\xa9\xcc\x9d\xe2\xc6\x30\xcc\xa5\xc4\x54\xae\x89\x9c\xf4\x6a\x77\x06\x07\xf3\xd7\x07\xbb\x94\x83\xb9\x67\xc5\x1e\x52\xed\xc2\x1e\x80\x71\x5d\x13\xd9\x2c\x5e\x83\x2e\x91\x41\xe2\x4d\xd1\x30\x48\x58\x06\x33\x47\xe8\x3d\xfa\xc2\xf7\xa1\x47\xed\xaa\x3f\xf5\x82\xc0\xf0\xa2\x3f\xbd\xe8\x4f\x7b\xd1\x9f\x22\xc6\xe2\x09\xce\x0a\x5d\x2a\x76\x18\xf6\x0a\x55\x15\xc8\x14\x25\xe0\xb1\xa8\xe9\x55\x29\xa9\xea\x16\x37\xab\x0f\x1d\x7a\x05\xcb\xe1\x71\x69\x26\xfd\xdf\x10\x26\x12\x99\xe2\xe6\xdb\xf1\x95\x36\x20\xda\x54\x3a\x49\x3c\x97\xdc\x7f\x2b\xb6\xda\xc1\xd8\xbb\x6e\xdd\x4e\x74\xc0\x5f\x05\xbe\xd9\x13\x83\xaf\xd8\x7a\x08\x26\xf6\xb5\xb2\x7d\xae\x01\xc7\xdf\xab\x4b\x48\x2c\x2b\x0d\xc8\xed\x2b\xe6\x92\x23\x7c\x39\x48\x8a\xb2\xe7\x1a\x0c\x72\x96\x4b\xb5\xe8\x85\x46\xf6\xc7\x5a\x2f\xd7\xe2\x18\x64\x82\xa4\x54\x56\x03\xcc\x16\x5f\xaa\x74\xe0\x01\xf4\xc8\xc2\x41\xd8\xa7\x6e\x45\x83\xe2\xa7\x8e\x12\x55\x52\x31\xd0\xef\xab\x22\x4a\x93\x90\xf2\x50\xf7\x2a\xb5\xd3\xbe\x65\x62\x4e\xe6\x54\x75\xa8\x82\x1e\x3f\xf7\x94\x07\x52\x3e\xe7\x7a\xb7\x7a\x87\x8d\xa5\x8f\x1c\xd3\x40\xbb\x8e\x2c\x4d\x51\x1a\x47\x29\xfd\xa9\xf0\x21\xf3\xe1\x34\x34\x84\xa2\xd7\x07\x3b\x4d\xe3\x8b\xa9\x2f\x8c\xcf\x8e\x55\x86\xf1\xb9\x6f\xad\xe1\xfa\x28\x3b\xa3\xcd\x5e\x2b\x87\xfb\xc7\xa3\xc5\x3e\xce\x61\xc5\x22\xab\x3c\x0f\x5e\x38\x7d\xa4\x83\x86\xee\x26\x3b\xd9\x6d\x5c\x86\xfa\xd5\x26\x1b\xf7\xe3\x8f\xd8\x5a\xb3\xdf\x3b\x5b\x17\x5f\xf8\x13\xbf\xb0\x1d\xb9\x7a\x06\x2f\xb7\xb5\xad\x50\xf0\xe5\xb6\xf6\xe5\xb6\xf6\xe5\xb6\xf6\xc5\xda\xf0\x62\x6d\x78\xb9\xad\x25\x2f\xb7\xb5\x7b\x81\xe1\xfe\x6e\x6b\x51\xd4\x5b\x75\x67\xeb\x84\xbd\xea\xc2\xf6\x51\xef\x6b\x5d\xe1\x9e\xb3\x24\x91\xa5\x30\x37\xf2\x96\xb5\xbe\x74\x68\xc8\xff\x4b\xe3\x40\x02\x84\x35\xfa\xc0\x72\xe3\x47\x53\x0e\xba\x4b\x25\x9d\x64\x8b\x5d\xa4\x0a\x5a\xa6\xdc\x4a\xfe\x3b\xa3\x99\x1f\x20\x4e\x4e\x24\x52\x96\x56\x3f\xb8\xa3\x6c\x2c\xac\x07\xe4\x8c\x28\x96\xf0\x82\xbb\x32\xf2\x14\xdf\x23\xe2\x85\xda\x08\xdc\x68\x96\x4d\x5c\x8e\x7a\x11\xd7\xfa\xa9\xe4\x77\x47\x07\x57\x7e\x06\x39\x94\xf4\x99\xcc\x7d\x2d\x24\xc5\xbe\xf7\xac\xcd\xcd\xe6\x26\x1e\x21\x36\xaf\xc0\x52\x6a\x25\x86\xe0\x63\x05\x77\x01\xd6\x0f\x7d\xfc\xd9\xe7\x82\x2b\x40\xde\x11\x4b\xa4\x68\x53\x53\x75\xcd\x06\x2d\x8d\x54\xf1\x27\xb0\x8d\xb2\x94\xa4\xa5\x0a\x35\x53\xe7\x34\xe3\x29\x37\x8b\x70\x6b\xe7\xca\x6b\x51\x3c\x31\x61\x1b\x75\x05\x46\x42\x8b\x42\x49\x9a\xcc\x98\x8e\xbe\x86\x02\x8a\x0b\x22\x0b\xbe\xef\x58\x02\x0e\x64\x14\xe8\x63\x19\x64\xb6\x20\x4a\x1a\x7f\xf1\xbe\xe6\x83\x37\xd1\x60\xd0\x1d\xb9\x9c\x51\x0b\xb8\x9d\x97\xf1\x10\x38\x2b\x3e\x89\xff\xd0\x44\x66\xa9\x4f\x61\xf2\x9b\x57\x56\x28\x4c\x1c\x0e\x5a\xe2\x07\x09\x2e\x8c\x24\x99\x65\xd8\x96\x20\xae\xef\xfc\xcb\xaf\xc9\x4c\x96\x4a\x0f\xe2\xa4\x03\xaf\xe1\x1d\xea\x77\x5e\xa8\x34\x24\x63\x54\x1b\xf2\xfa\x15\xc9\xb9\x28\x2d\x9f\xea\x8c\x36\xdd\xe5\xa0\x48\x02\xfa\xd5\xd7\xad\xfb\x75\x95\x7d\xd6\x4a\x3d\x05\xe6\x46\x76\xa2\x8f\x3b\x49\x18\x18\x87\x99\xc5\x1b\x82\x90\x23\xba\x31\xb4\x85\x91\x0f\x70\xbe\x7e\x28\xe5\x78\x61\xba\x04\x51\xba\x1e\xf5\xe8\xc9\xff\x75\x2f\xdb\x24\x4f\xa9\x72\xa7\x6c\xfc\xe8\x83\x54\xb8\x98\x72\x6d\xb6\xd4\xb7\xa8\xe2\x2b\x37\x36\x6b\xcf\x56\xa6\x56\x3b\xe8\x18\x2b\x03\x7d\xbc\x44\xec\x6d\x4b\x49\xc2\xb0\x98\xe5\x45\x55\x29\x49\x48\x6c\xbb\x75\xf8\x27\x4e\x38\xe6\x11\x64\x0f\x59\xd3\x5b\x2e\xb5\x9d\xd0\xe5\x51\xa2\xf3\x5a\xb1\x5b\xfd\x14\x68\x2e\xa6\x98\xe4\x3c\x2f\x33\xc3\x8b\xac\x5a\xf7\x07\xdf\xc1\x11\xf2\xd8\xe6\x46\x23\x33\x11\xc5\xc0\x62\xcc\x36\x05\xf6\xc9\xa3\x30\x16\x13\x06\x73\x75\x2b\xcb\x0f\x0a\xaa\x68\x00\x1e\x54\xd2\xd5\xc7\xce\x7c\x47\xe1\x46\xd1\xa5\xc3\xb4\xbd\x68\x56\xcd\x38\xba\x45\xda\x27\xd2\x18\x26\xa8\x68\x61\xaa\xae\xa7\xe7\x82\x4e\x44\xde\x05\x67\x32\x2c\x83\xd2\xc0\x16\x27\xd4\x7c\x43\x93\x5b\x26\x52\x2c\x1a\x05\xcb\x4e\x17\x82\xe6\x2e\xdb\x56\x54\x8f\xbb\xd1\x5f\xf7\x9c\x61\x02\xc3\xf7\x7c\x98\x31\x72\xdd\x7d\xc2\xa0\xd4\x9d\x53\xd9\xd8\x2e\xdb\xce\xb9\x46\x93\x8d\xe2\xf3\x84\x79\xfe\x6f\xfb\xed\x73\xea\xf3\x16\xb1\xf4\x4b\x93\xf7\xdb\x13\xe1\x2f\x90\xfb\x60\x39\x87\xa4\x5a\x34\xb3\x47\x7b\x11\x62\x46\x1b\x9b\x3b\x5e\xec\xb7\xea\x8d\x1a\x77\x89\xfc\x3d\x54\xe3\xb4\x7e\x88\x3f\xd0\x54\x6a\xf2\x4d\x26\x93\x5b\x72\xc1\x40\xe8\x7a\xc8\xf2\x2c\x6a\x9c\x3e\x65\x0a\xef\x9c\x4e\xb7\xdd\xb3\xf5\x49\x2e\x05\x37\x52\x6d\xa6\x17\x8f\x57\x76\xf2\x25\xdd\xf3\xda\x0c\x55\x16\x9b\x9f\x73\xb2\x67\x8b\x6e\x5d\x37\x1e\x3a\x05\xf5\x0c\x4e\x27\xbe\x72\x55\xc0\x76\x3c\x6b\x3f\x9b\xc9\xbb\xbe\x91\xfd\x52\xb3\x3e\x6f\x71\xa1\xdb\x61\x99\xb7\x6c\x01\xb7\xd8\x1d\x17\xea\xba\xd5\x74\x06\x23\xc1\x02\x05\xef\x2d\xe7\xfe\xf0\xcd\xc5\x47\xcd\xd4\x20\x96\x01\x4f\x98\x49\x4e\x12\x56\xcc\x4e\xdc\x08\xcf\x12\x28\x9e\x88\x74\x85\x8a\xef\x87\x6c\x26\x91\x59\xe6\x02\xb3\xe5\x84\x9c\xb3\x62\x16\x06\x7e\xec\x55\x3f\x5d\x46\xe0\x42\xca\xae\x89\x50\x0f\x6d\x9f\xfa\x21\x82\x37\x78\x86\x22\x64\x52\xe3\x6e\x45\x28\x1e\x0b\x7d\x9e\x75\xa9\xcd\x07\x04\xce\xc3\xa6\x53\x3e\xac\xe5\x53\x8e\xfd\x3d\xeb\xc9\x92\xbd\xc7\x48\x8d\x04\x0d\x27\x28\x74\xa7\x2c\x25\x72\xce\x94\xe2\x29\xd3\x24\xd0\xa0\x58\x4b\xe5\xd9\x63\xc3\xed\x25\x6f\xf3\x93\xe7\x6d\xde\x41\x1d\x3a\x04\x7d\xa8\x46\xa6\xe0\xcd\x12\x99\xa2\x69\xce\xc5\xb3\x23\x54\x3a\xa1\x19\x1b\xbe\xef\xa0\x7f\xb8\x1e\x75\x15\x64\xe4\x5e\x46\xf9\xd3\xb6\x64\x25\xfb\x36\xe0\x0d\x11\x32\xdd\x66\x52\x7d\x00\x45\x62\x4a\x0d\xbb\xdb\xca\x0e\xfb\x15\xa1\xda\xde\x12\x84\xd3\xa7\x54\x39\x9e\x45\x8e\xc0\x08\xe7\x31\xe9\xd9\x3e\x99\xaa\xdb\xb5\xae\xc6\x49\xec\x15\xa7\xdf\x6d\x26\xdd\xf5\x18\x7c\x76\x3d\x24\x7f\xc0\xe6\xfb\xcd\x5e\xa8\xa4\x41\x31\xf0\x42\xe6\x94\x77\x2d\xb2\xd1\xec\xde\xcc\xbe\x1a\x2f\xe1\x3a\xb4\x25\xae\x71\x54\xc0\x65\xc2\xa7\xa5\xd5\xe9\x9c\x1e\xf6\xac\x12\xcc\x2d\x89\x2e\xcf\x37\xc1\xdc\xfd\xab\x41\x44\x26\x27\xef\x17\x59\x49\x2c\x7e\x2b\x81\x95\x84\x3b\x50\xa2\x99\xd0\x1c\x2e\x64\xa2\x5b\x71\x57\xe9\x0f\x4b\x4b\xa2\x13\x24\x8a\x38\x3d\xf2\x56\x4e\xb9\xf0\xa7\x57\xba\xfb\xba\x09\xe5\x59\x5b\x60\xbc\xc8\x24\x4f\x2e\x93\x68\x9d\x5d\x0a\x3a\xce\xda\xb8\x1b\xd4\x51\x2d\x74\x24\x6f\x32\x3a\x25\x0c\xfe\x38\x49\xb9\xb6\xff\x27\xa3\xd1\x5b\x30\xc2\x97\xc2\x4b\xcc\x60\xa0\x76\xb4\x2f\x04\x29\xe0\x41\xdc\xef\xd9\x41\xd2\xb3\x43\xf6\xbf\xa8\x27\xe1\x22\xb5\x13\x8f\x4a\xc1\xa1\x93\x14\xb4\xc0\x7c\x88\xc1\xe7\x17\xdd\x06\xc6\x8c\xdc\xcc\x78\x72\x7b\x1d\xd9\xdd\xa5\xb2\xef\x44\xf4\xaa\xc6\xc0\x9a\xbf\xed\x93\x5a\xba\xa9\x5e\x77\x57\x8d\xa3\x9e\x9e\x0f\x78\x82\x31\x72\xeb\x87\xdf\xa8\xd6\x32\xe1\xd5\x9d\x0b\xd8\x68\x2a\xe6\x90\x02\x73\xd8\xef\x9a\x40\x3c\xe8\xba\x1c\x94\x3f\x56\x70\x34\xbf\x9b\xbe\x3a\xae\x8e\x39\x18\x17\x7e\xd5\x7b\x5d\x02\xe2\xcc\x0e\xa9\xd1\xab\x8e\xcb\xa9\xd1\xbd\x30\xdc\xb8\x58\xf0\x6e\xea\x6e\xf3\xbc\x20\xe6\x6b\x73\x2e\x6d\x5f\x48\x91\xee\x52\x13\xee\x6d\xe1\x6d\xc2\x36\x56\xa9\xe1\x8d\xdb\x44\x7c\xe7\xae\x1a\xe0\xcc\x15\xb2\x28\x33\xf4\xe7\xb8\x7f\x7e\x77\x6f\x33\xc6\xef\xec\xe9\xea\xe1\x31\xb2\x96\x1e\xc6\x8e\xbd\xdd\x3d\x9d\x7f\x1c\xb9\x4b\x23\xe1\xee\xd5\xaf\xbe\xfe\xfa\x4b\xcf\x66\xda\x56\x05\x7f\x88\x74\xa6\x2d\x4d\xb4\x2b\xe2\x8b\x86\x2f\xf1\x45\x3f\xdd\xf8\xa2\x87\xcf\x42\xbb\xe7\x08\xa2\x8e\xbe\xb9\xdd\xfc\x72\xdb\xc7\x08\xb5\xf6\xde\xed\xea\xb9\xdb\x21\x0a\x68\xbf\xb1\x3f\x9d\x7d\x59\xbb\xc4\xf9\xbc\x44\xf7\xfc\x58\xa3\x7b\x76\xf1\x65\xed\x1e\xc9\xd3\xc5\x87\xf5\xc7\x18\xb5\xd3\xe1\x70\xb6\x8f\x2e\xb9\x77\x4c\x49\xf7\x24\x80\xdd\xed\x69\xbb\x14\xa4\xaa\x7a\xae\xd4\x20\x7d\x50\xb9\xcf\x3d\x76\x78\xa8\xa3\xd4\x62\x46\xda\x13\xf8\x28\x0a\x09\xe9\xa0\x8d\xe1\xf0\xb2\x4b\x6d\x48\xd7\xe7\xfd\xa8\x71\x31\x13\x5e\x3f\xcd\x7d\xcc\x4f\xe1\xc2\xe3\xa5\xa6\xcb\x17\x62\x72\xd7\xb5\x6c\x2d\xde\x5a\x01\x24\x00\x18\xb9\x1c\xc7\x59\x22\xab\xa3\x73\x76\x3d\xb4\x3a\x38\x84\x11\xd1\x4c\x0f\xc8\x0a\x3e\xef\xcd\xa5\x4e\x2e\xf0\xfc\x9d\x1a\xc3\xf2\xc2\xb4\xdf\xf5\x17\x8b\xfb\x93\x5b\xdc\xf7\x68\x01\x9c\x95\x39\x15\x7d\x7b\xa2\xc0\xe6\x5e\xbb\xad\x6b\x50\xe6\x01\x71\x67\x07\xd9\x13\x58\x40\x20\xb8\xa0\x5e\xd8\x98\x46\x65\x2e\x1f\xc6\xec\x09\x63\xef\xbc\x72\xe4\xab\x8d\x93\x96\xc8\x25\x87\x57\xb7\x9c\x00\x05\x7f\xa8\x22\xe6\x5c\x53\xc3\xcd\x8c\x21\x0f\xbf\x86\x80\x9c\xaa\x55\x5d\x92\x46\x51\x9a\x66\x99\xbc\xc3\x6f\xc7\x7c\xcd\x42\xdf\xce\xc5\x45\x9a\x8d\x19\xc9\xb9\xd5\xd1\x9d\x81\x35\x9e\x0e\x5e\x99\x5a\x89\x9c\x29\x14\x78\x95\xbb\x6c\x1b\x31\xe3\x36\x0a\x36\xda\xea\xb7\x02\x1d\xc2\xed\xbf\xbd\x57\x11\x7c\xdb\xd3\x84\x31\x9b\xd1\x39\x97\xa5\xc2\xde\x46\x92\x03\xf7\x13\xf0\x86\x85\x2c\x83\xbd\x0b\x8b\x61\x86\xd5\xe9\x15\x70\xba\xaa\x7e\x04\x55\x20\x95\xde\x34\xd1\x67\x9f\xb9\x36\xcb\x6b\xf1\x20\xf2\x69\xf0\xf6\x85\x37\x73\x5d\x58\xb6\xd0\xb9\xaa\x5d\xad\x5f\x5d\x5e\x99\x8f\xe0\xa7\x2f\xa8\xa6\xdd\xd6\xec\xae\x8f\x26\x02\xfd\x04\xc5\x9f\x70\x13\x96\xf1\x64\xd1\xb9\xdc\x5b\xa3\xb7\x27\xda\x3a\xdc\xa1\xd9\xf7\xe4\x1b\xaa\x59\x4a\xde\x51\x41\xa7\xa8\xef\x1d\x8d\xae\xbf\x79\x77\x6c\xf7\x15\xf4\xc9\xe1\xc5\xca\x8b\xb6\x51\x3c\xf8\xd5\x3e\xe3\x45\x96\x16\xbe\x03\xab\x5a\xea\xbf\xe3\xe2\xf7\x1a\x08\x43\x02\x1f\x6a\x97\xac\x77\x05\x0b\xba\x6e\x86\xb0\x36\x6b\x7e\x36\x08\xcc\x3c\x4f\xef\x59\xe5\x93\x0b\x6d\x68\x96\x5d\x67\x54\x9c\x15\x85\x92\xf3\xd5\xda\x78\x6d\xae\xbe\xa1\x9f\x29\xba\x79\xf8\x97\x05\x82\x1e\xae\xb0\x05\x19\x56\xe3\x0f\xc8\xd0\x04\x2d\x5c\x0a\x60\xa9\x07\x67\xa5\x91\x39\x35\x3c\x39\xb0\xca\xfa\xc1\x3b\x2a\x4a\x9a\xad\x74\xba\xda\xb8\x8c\x75\x22\xe2\xc6\x4e\xeb\x53\xd7\xb5\xe8\xb6\x51\xd6\xd8\xdc\xdf\x50\x65\xa9\xd3\xf9\xe8\x53\xa7\xbe\xda\x50\x53\x2e\x51\xe1\x0d\x9c\x61\x3d\x2f\xe8\x93\x8c\x6a\xf3\xb1\x48\xed\xa1\x6f\xfc\xba\x89\xe0\x27\xd4\xd0\x4c\x4e\xff\xc8\x68\xb6\x1a\xc3\x6b\x78\x72\x1e\xb7\xf6\x06\x28\x77\xe1\x5f\x8e\x43\xc3\x43\x4d\xac\x80\xed\x63\xe0\x15\xcb\xd8\x9c\x0a\xe3\xbb\x63\x71\x75\x7d\xe8\xd6\x0f\x58\xc4\x2b\xe3\x6b\xca\x0c\x53\x39\x17\xf5\x31\x47\xd0\xf6\x5c\x8a\x94\xa3\xd9\x11\x0c\x6a\xd8\xa3\x3e\xee\x7a\x54\x5b\x77\xd3\xb0\xe1\x6e\xa1\x9e\x5d\x33\x9a\x4f\x1d\x14\xd8\x6c\xec\xe4\xcb\x19\xbe\x84\x9b\xf6\xda\xdc\x96\x20\x45\x6e\x85\x15\x0c\x21\x8f\xc8\x6a\xb2\xb5\x55\x4e\xd8\x26\x1f\xf4\xfd\x1e\xe3\x14\xd6\x3b\x8e\xf6\xdd\xbc\xd7\xdd\x41\x6c\x42\x31\x7c\xb6\x4b\x16\xcd\xa9\xac\xa7\xa9\xab\xf0\x2e\x74\xc3\x48\x96\x46\x41\xfe\x5a\xa3\xf5\x3c\xa0\x95\xe0\xd5\x4e\x46\x6a\x9b\xd5\xbe\x4e\x6b\xab\x1c\xec\x4b\xaa\x6c\x0b\x89\x71\x2b\xd3\x6a\x99\x5c\xbe\xae\x58\x0f\x9d\xff\x9f\x72\xaa\x08\x25\x05\x67\x98\xfc\x84\x0a\x07\x2c\xe0\x2c\x8c\xa6\xee\xa5\xe5\x60\x56\x25\x84\xdf\x7a\xee\x32\x1c\x8d\xcb\xce\xd7\xc2\x1b\xa8\x29\x26\xff\x80\x8b\x8b\x93\x3f\x48\x67\xe4\x75\x41\xba\x96\x06\x00\x27\xef\x11\x5d\x26\x33\x42\xb5\x9d\x9a\x45\x68\x7b\xe2\xd9\x20\xa7\x82\x4f\x98\x36\x83\x90\x25\x58\xff\xf9\x97\x7f\x1d\x90\x37\x52\x11\xe7\xa8\xde\xf3\x59\x35\xdc\x3c\x2b\xbc\xe0\x1a\x17\x13\xfa\x56\x5a\x6b\x21\x53\x37\xe9\x3b\x98\xac\xa1\xb7\x96\x87\xe1\x64\x4b\x06\x57\x17\xa7\xe4\xc0\x8a\x89\xd1\xa7\xff\x69\xd9\xd2\xbf\x0f\xc8\xd1\x1d\x30\xed\x03\xfb\xe7\x01\x7e\x30\xb8\x4d\xc6\x4a\x75\xf5\x61\x0c\x96\x54\x7c\x3a\x65\x0a\xd5\x47\x02\x41\x85\xc7\x2e\x2b\x88\x90\x51\x63\x7f\x29\x5d\xa9\x9b\xcd\x89\xfc\xf9\x97\x7f\x3d\x20\x47\xf5\x75\x11\x2e\x52\xf6\x99\xfc\x12\xad\xcb\x5c\xdb\x35\x1e\xbb\xcb\x1c\xbd\x10\x86\x7e\xb6\x63\x26\x33\xa9\x99\x40\x55\xde\x48\x32\xa3\x73\x46\xb4\xb4\x1a\x30\xcb\xb2\xbe\xb3\xa5\x93\x3b\x0a\x99\x5a\x3c\x28\x21\xb0\x9e\x14\x54\x99\x1a\x4a\x0c\x9c\x85\x04\xbe\x66\xb7\x6d\x2a\xfc\xcd\xf4\x84\x0b\x77\x7f\xe5\x6e\xce\xec\x9e\x43\x60\x28\x6e\x92\x91\x24\x99\x51\x31\x0d\xb1\xe9\x93\xd2\x94\x8a\x6d\xb9\xfa\x69\x79\x06\x6e\xb9\xe8\x14\xc2\xfc\x2d\x17\x4d\xa7\x82\xd5\x76\xa5\x29\x37\x3e\x2a\xc2\xf9\x2a\x9a\xc5\x89\xdd\x05\xc5\xc7\xa5\x91\x4a\x9f\xa4\x6c\xce\xb2\x13\xcd\xa7\x7d\xaa\x92\x19\x37\x2c\xb1\xcb\x3a\xa1\x05\xef\x27\x52\xd8\x1d\x87\xac\x0c\x79\xfa\x33\x28\x6f\xda\xb7\x53\xdd\x92\x75\xba\xe5\xa2\xb7\x1b\xd5\x9e\xd4\x98\xb6\xb7\x35\xb6\xb0\x07\x2d\x2f\x14\x6d\x33\x8f\xb0\x5a\x30\x84\x9c\xec\x65\xb1\x3e\x69\x72\x77\x1e\x73\xe8\xf2\x80\x27\xcd\x31\xec\xb1\x43\x07\x12\x38\x95\x35\x4a\x99\xd3\x14\x49\x29\x15\x8b\x07\x47\x7e\x0b\x52\x48\x97\x9f\x2c\xfa\x30\x84\xcc\xfa\x54\xa4\xf6\xdf\x18\xb0\x93\x2c\xf6\x02\xc3\x92\x77\x22\x04\x1f\x87\x17\x8f\x73\x24\x4a\xbe\x87\x53\xef\xe4\xb5\x96\x42\x14\x8a\xaa\xe8\xa8\xa1\x4a\xe6\x99\x66\x5d\x40\xe5\xda\x8f\xfa\xdf\xee\xfe\x25\x64\x3b\xdb\x26\x52\x6d\xbe\x35\x89\x64\xc7\x96\xf3\x7d\x5b\xf5\x88\x6d\x72\xe0\x78\x45\xb5\x71\xa9\xb5\x7c\x0e\x82\xda\x32\xbc\x82\x02\x0c\x66\xfd\xc5\x70\x2b\x1c\xf2\xfe\x02\x76\x22\xfd\x95\x39\x97\x92\xa0\x94\x6c\x57\xa0\x2a\xfd\xa5\x56\x07\x0d\x17\x65\x98\x36\x84\xce\x29\xcf\xc0\x3a\x2f\xc7\x9a\xa9\x39\x16\xa4\x72\xa9\x06\x69\x53\xcf\x72\x35\x27\x50\x8c\x7a\x24\xcd\xc7\xaf\x61\x79\x57\x36\x2d\x00\xb4\xa1\xc6\xec\xd7\xce\x7a\x2f\x7a\x0f\xaa\x97\x6b\x7f\xb6\x5f\xd8\x51\x8d\xb1\xf8\xf7\x47\x46\x95\x19\x33\x6a\x6e\xf8\x26\xbe\xbb\x84\xd2\xb5\x7e\xa1\x94\x7b\x40\xe8\x3b\x46\xa6\xd2\x58\x11\xab\x04\xdc\x47\x99\x14\x93\xfa\x04\x44\x7b\x68\x8c\xae\x56\x79\xa3\x28\x84\xf8\x48\xd1\x71\x99\xf5\x8e\xcb\xeb\x74\xd2\xb1\xc3\x24\x83\xad\x31\x91\x86\x14\xcc\xed\x1d\xde\x66\x00\x05\x7a\x9c\x25\xe7\x4c\xeb\x8d\x09\x36\xea\xde\x85\xd8\x1a\x8f\x72\xe3\x6a\x2d\xf7\xbf\x61\x58\x88\x15\xa0\x53\x66\x28\xcf\xfc\x51\x46\x50\x04\x28\x6d\xa3\xae\x1b\x17\xa8\x18\xd5\x9b\x04\x84\xda\xac\x3f\x40\x63\x9c\xb4\x14\xac\x7f\x27\x55\x4a\xce\x69\xce\xb2\x73\xaa\x99\x1b\x2b\x0e\xd1\xc3\x3d\x3a\xd4\x7b\x9d\xf2\x6a\xdb\xd7\x9a\x29\xa3\xf1\xa7\x32\x09\xc3\x5f\x95\x8a\x85\x13\xec\x79\x13\xe4\x8d\x2a\x59\x8f\xbc\xb1\xdc\xab\x47\x3e\x8a\x5b\x21\xef\xee\x37\x57\xb3\xf1\x16\xa4\x36\xd3\xd8\xfd\xc3\xa7\xd5\xa9\x19\x7c\xc2\x74\x77\x9c\x91\x23\xf8\x6b\x4c\x8d\x75\x66\x13\x9a\xfa\x19\xd9\x7f\x2e\x99\xa0\xac\xa2\xa8\xe4\x54\x31\x8d\x99\x6b\x56\x26\x49\x6c\x6b\x72\xfe\x03\x13\x2e\xb8\x6f\xeb\xf4\x86\xab\x7a\xf9\x99\x7a\xbe\x36\xad\x7e\x71\xfb\xed\x3e\x56\x64\x2b\x45\x8d\xcd\x1e\x81\xd1\x44\xd7\x18\x9f\xd6\xcd\x70\xb5\xd1\x29\xe2\x7a\x51\x5b\x14\x4a\x36\x59\x47\xfd\xea\xce\x47\x9f\xd6\x03\x7b\x2d\xef\xdb\xc6\x9f\xb6\x9b\xa5\xee\x6b\x90\xda\x7a\x66\xb6\x1a\xa1\x5e\xcc\x4f\x2f\xe6\xa7\x2f\xc9\xfc\xb4\x15\xe3\x37\x99\x9c\xbe\x0c\x63\xd3\xd6\x25\x6e\x32\x30\x3d\x4b\xd3\x52\xab\x15\x6d\x34\x27\x3d\x5b\x43\xd2\xd6\xa5\xb5\x34\x1e\xfd\x74\xcc\x46\x5b\x21\xb6\xc1\x54\xf4\x0c\x8d\x44\x6d\x04\x32\x96\xb6\x11\x13\x87\x51\xe3\x58\x50\xac\xca\x59\x86\xe1\xbc\x53\x4e\x2c\xce\xec\x2a\x2d\x5a\x01\x6e\xeb\xdc\x0e\xdd\xe4\xda\xcb\x5e\x4e\x60\x74\xc5\x1e\x97\x26\x4b\x2e\x2e\xaf\x3f\x5c\x9e\x9f\xdd\x5c\x5e\x34\xe5\xbb\x55\x90\xde\x22\x89\x6d\xb6\x41\xf4\x23\x49\x6c\x4d\x03\x4b\x90\xd7\xfc\x64\x71\x60\xcd\x4f\x65\xc9\x57\xf5\xba\xbf\x5c\x78\x2f\x2e\x77\x2f\xfe\xb1\xfd\x74\xb6\x3d\x9e\x1f\xd1\x71\x8a\x3a\x9f\x33\x2b\xf7\xcc\x64\x96\x6a\xef\xb7\x3a\xbc\x08\x91\x54\x5c\x24\x59\x99\x5a\xe1\xe2\xe3\xc7\xe1\x85\x1e\x10\xf2\x0d\x4b\x68\xa9\xc1\x0a\x93\x4a\x71\x68\xc8\xfb\xab\xb7\x7f\x02\x7f\x6c\x68\xd1\x0b\x79\x4d\x20\x2b\x2f\xa7\x98\x58\xd8\x60\xba\x36\xf2\x0d\x43\x41\x05\xbe\x9c\xd0\xc2\x52\x31\x8d\x95\x2b\x0c\xc8\x22\x33\x96\x15\x96\x62\xde\x32\x52\x65\x50\xb5\x03\x57\x15\xe6\xbd\xfb\xe4\x94\x19\x8c\xba\xda\xe4\x21\xb9\x11\x6a\x5b\x2c\xae\xf7\xb0\xb5\xd6\xd4\x47\xa7\x8d\xdf\x51\xed\x2c\x56\x2b\x67\xbb\x65\x7f\xb7\xdb\x67\xd6\x9b\x38\xd6\x18\x37\x90\x3c\xc3\x5f\x4b\x73\xb6\x93\xad\xec\x18\xe8\x44\xc2\x4d\x6b\x6b\xea\x7a\x37\xa0\xd5\x75\x00\x96\x6c\x19\xac\x09\xe4\xda\x87\x83\x47\x76\x34\xe5\x76\x73\x81\x22\x22\x69\xad\xf6\xa7\xf3\x9f\xab\xbf\x2b\xc7\xa1\xfa\x6b\x35\x5f\x67\x91\x21\xff\xfc\xf7\x57\xff\x3f\x00\x00\xff\xff\xbb\x99\xbb\xd7\xde\xb1\x01\x00") +var _operatorsCoreosCom_subscriptionsYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\xbd\x6b\x77\xe3\xb6\xd5\x28\xfc\x3d\xbf\x02\xcb\xed\x5a\xb6\x5b\x49\x9e\xe9\xd3\xd3\xf6\xf8\xe9\x6a\x97\x63\x7b\x52\x9f\xcc\xc5\x67\xec\x24\xeb\x79\xd3\x9c\x16\x22\x21\x09\x35\x09\x30\x00\x28\x8f\x7a\xf9\xef\xef\xc2\xde\x00\x08\x52\x37\x52\x96\x2f\x93\x90\x1f\x92\x31\x05\x80\xc0\xc6\xc6\xbe\x61\x5f\x68\xc1\xbf\x65\x4a\x73\x29\x4e\x09\x2d\x38\xfb\x64\x98\xb0\x7f\xe9\xd1\xdd\x1f\xf4\x88\xcb\x93\xf9\xeb\x2f\xee\xb8\x48\x4f\xc9\x79\xa9\x8d\xcc\x3f\x32\x2d\x4b\x95\xb0\x0b\x36\xe1\x82\x1b\x2e\xc5\x17\x39\x33\x34\xa5\x86\x9e\x7e\x41\x08\x15\x42\x1a\x6a\x5f\x6b\xfb\x27\x21\x89\x14\x46\xc9\x2c\x63\x6a\x38\x65\x62\x74\x57\x8e\xd9\xb8\xe4\x59\xca\x14\x0c\xee\x3f\x3d\x7f\x35\xfa\xc3\xe8\xd5\x17\x84\x24\x8a\x41\xf7\x5b\x9e\x33\x6d\x68\x5e\x9c\x12\x51\x66\xd9\x17\x84\x08\x9a\xb3\x53\xa2\xcb\xb1\x4e\x14\x2f\xe0\x13\x23\x59\x30\x45\x8d\x54\x7a\x94\x48\xc5\xa4\xfd\x5f\xfe\x85\x2e\x58\x62\x3f\x3e\x55\xb2\x2c\x4e\xc9\xca\x36\x38\x9c\x9f\x23\x35\x6c\x2a\x15\xf7\x7f\x13\x32\x24\x32\xcb\xe1\xdf\xb8\xf6\x9b\xe8\xab\xf0\x3a\xe3\xda\x7c\xbd\xf4\xd3\x5b\xae\x0d\xfc\x5c\x64\xa5\xa2\x59\x63\xb6\xf0\x8b\x9e\x49\x65\xde\x57\xdf\xb6\xdf\xd2\xe5\x38\xfe\xb7\x6b\xc8\xc5\xb4\xcc\xa8\xaa\x0f\xf2\x05\x21\x3a\x91\x05\x3b\x25\x30\x46\x41\x13\x96\x7e\x41\x88\x83\xa3\x1b\x73\x48\x68\x9a\xc2\xde\xd0\xec\x5a\x71\x61\x98\x3a\x97\x59\x99\x8b\xf0\x4d\xdb\x26\x65\x61\xd4\x53\x72\x3b\x63\xa4\xa0\xc9\x1d\x9d\x32\xff\xbd\x31\x4b\x89\x91\xa1\x03\x21\xff\xd0\x52\x5c\x53\x33\x3b\x25\x23\x0b\xe2\x91\x85\x60\xf4\x33\xee\xcf\x35\x0e\x12\xbd\x37\x0b\x3b\x5d\x6d\x14\x17\xd3\x4d\x9f\x4f\xa8\xa1\x99\x9c\x12\xc4\x2f\x32\x91\x8a\x98\x19\x23\xf6\x53\x7c\xc2\x59\xea\xe7\xb7\x61\x46\xd8\x75\x69\x4e\x37\xcd\xd7\xad\xa7\x34\xa3\x42\xb0\x8c\xc8\x09\x29\x8b\x94\x1a\xa6\x89\x91\x15\x7c\x36\x83\xc7\x75\x5e\x9a\xcd\xf9\xd2\xfb\x15\xd3\xc1\xa6\xf3\xd7\x34\x2b\x66\xf4\xb5\x7b\xa9\x93\x19\xcb\x69\xb5\x87\xb2\x60\xe2\xec\xfa\xea\xdb\xff\xba\x69\xfc\x40\xea\x4b\x89\x51\x94\xdc\x31\x56\xe8\xea\x50\x90\xb2\xb0\x6b\xb2\x8b\x23\xe3\x05\x31\x8a\x26\x77\x5c\x4c\x61\xe9\x53\x5c\xef\x39\x6e\x8c\x1e\x2d\x4d\x59\x8e\xff\xc1\x12\x13\xbd\x56\xec\xc7\x92\x2b\x96\xc6\x53\xb1\x90\xf5\x24\xa2\xf1\xda\xc2\x29\x7a\x55\x28\x3b\x2d\x13\x9d\x43\x7c\x22\x1a\x55\x7b\xdf\x58\xe6\xa1\x85\x05\xb6\x23\xa9\x25\x4f\x76\xfa\x33\xe6\x0f\x07\x4b\x1d\x00\xed\x76\x9a\x19\xd7\x44\xb1\x42\x31\xcd\x04\x12\x2c\xfb\x9a\x0a\xb7\xa6\x11\xb9\x61\xca\x76\xb4\x07\xb6\xcc\x52\x4b\xc7\xe6\x4c\x19\xa2\x58\x22\xa7\x82\xff\x33\x8c\x06\x20\xb2\x9f\xc9\x2c\x7e\x18\x02\xc7\x4d\xd0\x8c\xcc\x69\x56\xb2\x01\xa1\x22\x25\x39\x5d\x10\xc5\xec\xb8\xa4\x14\xd1\x08\xd0\x44\x8f\xc8\x3b\xa9\x18\xe1\x62\x22\x4f\xc9\xcc\x98\x42\x9f\x9e\x9c\x4c\xb9\xf1\x14\x38\x91\x79\x5e\x0a\x6e\x16\x27\x40\x4c\xf9\xb8\xb4\x1b\x77\x92\xb2\x39\xcb\x4e\x34\x9f\x0e\xa9\x4a\x66\xdc\xb0\xc4\x94\x8a\x9d\xd0\x82\x0f\x61\xb2\x02\x49\x64\x9e\xfe\x42\x39\x9a\xad\x0f\x1b\xe0\x5b\x79\x0e\x88\xa7\x7a\x1b\x61\x6d\x89\x1f\xe1\x9a\x50\xd7\x1d\xd7\x52\x81\xd4\xbe\xb2\x50\xf9\x78\x79\x73\x4b\xfc\x04\x10\xec\x08\xe1\xaa\xa9\xae\x80\x6d\x01\xc5\xc5\x84\x29\x6c\x39\x51\x32\x87\x51\x98\x48\x0b\xc9\x85\x81\x3f\x92\x8c\x33\x61\xec\x31\xcc\xb9\xd1\x80\x73\x4c\x1b\xbb\x0f\x23\x72\x0e\x0c\x88\x8c\x99\x3b\xb0\xe9\x88\x5c\x09\x72\x4e\x73\x96\x9d\x53\xcd\x1e\x1d\xd4\x16\xa2\x7a\x68\xc1\xd7\x1e\xd8\x31\xff\x5c\xee\xb0\x74\xc6\x08\xf1\x0c\x6e\xed\xee\xc4\x07\xfe\xa6\x60\x49\x38\x0e\x54\x90\xb3\xa2\xc8\x78\x82\x18\x6f\x66\xd4\x90\x84\x0a\x0b\x2f\x2e\xb4\xa1\x59\x06\xec\xa4\xd5\x2c\xd6\x9d\x76\x02\x47\xbb\xc1\x1c\xfc\xeb\x25\x0a\x5d\xff\x21\x30\xb5\x46\x8b\x75\x94\xc1\x3e\x8e\xce\x2e\xff\xb0\x01\xe4\x04\x25\x93\x09\x9f\xae\xea\xb6\x16\x96\xe7\xd0\x05\x64\x1a\xca\x85\x76\x43\x94\x0a\xa1\x59\x71\x2a\xcb\xbb\x68\x8d\x6f\x8f\xd6\xce\x6e\x25\x64\xb7\xad\xd9\x3e\x4c\xcc\x57\xff\xd0\x58\xc0\xa5\x98\xe3\x41\xb5\x32\x8b\x25\x72\x4c\xcc\xb9\x92\x22\xb7\x87\x68\x4e\x15\xa7\xe3\xcc\x31\x36\x66\xc9\x17\x9e\x31\x5c\x22\x53\xab\x8e\xd4\x9a\xaf\xe2\x7a\xa8\x52\x74\xb1\xa6\x05\x37\x2c\x5f\xb3\x9a\x55\xd3\xfe\x96\xaa\x88\x4a\x58\xe4\x5d\x35\x75\xe2\x1a\xd8\xa9\x53\x72\x1e\x26\xbe\xf6\x33\x5b\xe0\x8e\xcf\x7a\xdc\xae\x9e\x35\x58\xee\x9f\x6d\x1b\x88\x0f\x70\xfa\x0d\xbf\x37\xc0\x62\x4f\x08\x32\x30\xb6\x12\x1a\x23\xf2\xae\xd4\xb0\x5b\x94\x9c\xff\xed\xea\xe2\xf2\xfd\xed\xd5\x9b\xab\xcb\x8f\xeb\xc1\x41\xb6\x1d\x94\xea\x01\x1a\xdf\x61\xb2\x87\xdf\xfa\x3d\x52\x6c\xc2\x14\x13\x09\xd3\xe4\x97\x47\xdf\x9e\x7d\xfc\xdb\xfb\xb3\x77\x97\xc7\x84\x2a\x46\xd8\xa7\x82\x8a\x94\xa5\xa4\xd4\x9e\x69\x14\x8a\xcd\xb9\x2c\x75\xb6\x70\x94\x2b\x5d\x83\xb4\x4d\x6c\x05\x6e\x4b\xc5\x82\x68\xa6\xe6\x3c\x59\x0d\x22\x3d\x22\x57\x13\x42\x2b\x04\x4a\x02\x86\x5b\x46\x95\xcd\x59\x3a\x80\x61\xc3\xa4\xfd\x77\xb8\x28\x4a\xe3\x19\xde\x3d\xcf\x32\x38\x15\x02\x65\xa5\x74\x44\x2e\x64\x69\xc7\xfb\xe5\x2f\x61\x61\x8a\xa5\x65\x02\x42\xb4\x25\x06\x5c\x4c\xed\x4f\x03\x72\x3f\xe3\xc9\x8c\xd0\x2c\x93\xf7\x1a\x28\x05\xd3\x09\x2d\xfc\xd2\x63\xe8\xe8\x85\x30\xf4\xd3\x29\xe1\x23\x36\x22\x07\xbf\x8c\x7e\x3a\xc0\xaf\x17\x4a\xda\x4f\xa0\x9c\x8c\xb3\xca\xb8\x61\x8a\x66\xe4\x20\x6e\x3d\x22\x97\xf6\x1b\x2c\x8d\xf7\x01\x46\x10\x6c\xce\x94\x5d\x85\xdf\x85\x01\x51\x6c\x4a\x55\x9a\x31\xad\x2d\x9e\xdd\xcf\x98\x99\x31\x14\xc5\x03\xc0\xd8\x27\x6e\x19\xae\x54\x44\x48\x33\x22\x17\x6c\x42\xcb\x0c\x38\x30\x39\x38\x18\x35\x19\xdf\xee\xa8\xf6\x46\xc9\xbc\x03\xba\xdd\xd4\x35\x87\x55\x7b\x7f\xa8\x71\xe4\x1a\x59\xd3\x2c\x25\x7c\xe2\x24\x18\xae\xed\xa2\x08\xcb\x0b\xb3\x68\x73\x68\xb6\xd0\x11\xd2\x9a\x10\x90\xc0\x93\xde\xd1\xe2\x6b\xb6\xf8\xc8\x26\xdb\x9a\x37\xd7\xcf\x32\x96\x58\x42\x49\xee\xd8\x02\xc4\x59\x72\xee\x07\xdc\xbc\x94\x4e\xcb\x21\x2d\xc9\xa3\x7f\x86\x76\x3a\x5b\xdb\xb5\x07\x92\x7d\xee\xd8\xa2\x4d\x33\xb2\xac\xd3\x59\xd0\x00\xaf\xb3\xb0\xda\x0e\x15\xd2\x1e\x65\xfd\xb3\x9d\xa2\xaf\x9c\xdc\x61\x4c\xda\xdd\x39\x35\x2b\x05\xd6\xbb\x72\xcc\x94\x60\x86\x81\xcc\x9a\xca\x44\x5b\x71\x35\x61\x85\xd1\x27\x72\x6e\x29\x1f\xbb\x3f\xb9\x97\xca\x2a\x72\xc3\x7b\x6e\x66\x43\xdc\x55\x7d\x02\x46\x8f\x93\x5f\xc0\xff\xc8\xed\x87\x8b\x0f\xa7\xe4\x2c\x4d\x89\x84\x23\x5e\x6a\x36\x29\x33\x32\xe1\x2c\x4b\xf5\x28\xd2\xba\x06\xa0\x0f\x0c\x48\xc9\xd3\x3f\x6f\x3e\xdc\x3b\x42\x4c\x16\x68\xac\xd8\x01\x6a\x37\x20\x74\x2d\x6a\x74\x2a\x20\xbd\xa5\x50\x56\x45\xb0\x7b\x9e\x3b\xb6\xe8\x18\x4a\x87\x65\x8c\xa5\xcc\x18\x15\x5b\x7a\x00\xd8\xba\x9f\xd9\xc3\xea\xd0\xc2\x08\x1e\x01\x0a\x99\x9e\x12\x5d\x16\x85\x54\x46\x07\x15\x01\x6c\x2e\x83\xfa\x9f\x20\x2f\x0f\xc8\xdf\xc3\xcb\x8c\x8e\x59\xa6\xbf\x3f\x3c\xfc\xe3\xd7\x97\xff\xf3\xa7\xc3\xc3\x1f\xfe\x1e\xff\x1a\x59\xe8\xea\x4d\xd0\xa6\x23\x53\x10\xc2\xdd\x9f\x8e\x8d\x9e\x25\x89\x2c\x85\x71\x3f\x18\x6a\x4a\x3d\x9a\x49\x6d\xae\xae\xc3\x9f\x85\x4c\x9b\x7f\xe9\x2d\x9c\x80\x3c\x2e\xd1\x01\x70\x5e\x53\x33\xdb\x33\xe9\x59\x6f\x8d\x58\xfd\xd4\xb6\xdb\xdb\x27\xdc\x2e\x3b\x83\x84\xfd\xe7\x1b\x3f\x5d\xcb\x81\xee\x15\x37\x86\x09\x90\x3b\x98\xca\x2d\x27\x1e\x58\xcc\xad\xd8\xec\xfc\xf5\xc1\xa3\x10\xaf\x00\xb5\x1d\x16\x07\xb3\x77\x2b\x43\x64\x0e\x84\xd6\x4b\x50\x95\x8e\x74\x76\x7d\xe5\x2d\x33\x7b\x5f\x88\xb7\x37\xbc\x79\xf0\x99\x0c\x96\x0b\xb7\xac\x20\x69\x9e\x12\x29\xb2\x45\xf8\x5d\x93\x8c\x83\x35\xc2\x0a\xa0\xc1\x22\x71\x84\x2f\x47\x49\x51\x0e\x5c\x83\x51\xce\x72\xa9\x16\xe1\x4f\x56\xcc\x58\x6e\x25\xb6\xa1\x36\x52\xd1\x29\x1b\x84\xee\xd8\x2d\xfc\x85\x1d\x6b\x1f\x58\xee\x8d\x22\x75\x52\x2a\xcb\x3c\xb2\x85\xa7\x20\x2c\x7d\xde\xb3\xe8\xc1\xb4\xe7\xa3\x18\x76\xe3\xfd\x8e\x2c\x37\x68\x8b\xce\xe0\xea\x57\x05\x32\xe4\x5c\x66\x65\xce\xf4\x20\xb0\x27\x94\xd6\xc5\xdc\x4a\x93\x4b\xe6\x9d\xd5\x4f\xc7\xd3\x97\xf2\x39\xd7\x52\xed\xcc\x07\xb9\x33\x79\xca\xd2\x58\x4d\x65\x22\x55\x4e\x4d\x50\x17\x3f\x15\x52\x83\x0e\xe0\x70\xb6\x41\x52\x5e\x1f\xb4\xfa\x6c\x41\x8d\x61\x4a\x9c\x92\xff\x77\xf4\xd7\x5f\xff\x7b\x78\xfc\xe7\xa3\xa3\xef\x5f\x0d\xff\xf7\x0f\xbf\x3e\xfa\xeb\x08\xfe\xf1\xab\xe3\x3f\x1f\xff\xdb\xff\xf1\xeb\xe3\xe3\xa3\xa3\xef\xbf\x7e\xf7\xd5\xed\xf5\xe5\x0f\xfc\xf8\xdf\xdf\x8b\x32\xbf\xc3\xbf\xfe\x7d\xf4\x3d\xbb\xfc\xa1\xe5\x20\xc7\xc7\x7f\xfe\x65\xab\xe9\x51\xb1\xf8\xd0\xe2\xc0\xe3\x33\x74\x1b\xc4\x85\x61\x53\xa6\x3a\xf6\x6a\xbd\xad\x84\x7c\x1a\x56\x42\xdb\x90\x0b\x33\x94\x6a\x88\xdd\x4f\x89\x51\xe5\xf6\x83\x51\x11\xb5\x5d\xf0\xfc\xa3\x3f\xad\x91\x29\xd6\x93\xe6\xbd\x23\xb2\x66\x89\x62\x66\x5f\x1a\x0c\x8e\xe6\xf9\x47\x21\xd3\x43\x4d\xc4\x1a\x33\xe1\xba\x69\xff\x2c\x94\x1a\x2f\x52\x20\xbc\x2a\xce\x3b\x51\x32\x1f\x91\xc8\x2c\x34\xa7\x19\x4f\x7d\xbb\x3b\xb6\x45\xcb\xf5\x4f\xaf\x04\x7d\x5e\x4a\xd0\x0d\xee\xef\xa3\x6b\x40\x4c\xcc\x37\x99\x69\x9a\x36\x5d\xdb\xb6\x6e\x8e\xf6\x02\x94\x91\xa4\x90\x45\x99\x51\xb3\xc6\x6c\xb7\xc2\x36\xed\x70\x5f\x07\x33\xa1\xdd\x68\xb0\x03\x3b\x2a\x97\xaf\x36\x86\x92\xb3\x2c\x23\x5c\xe0\x49\x80\x01\xbc\x35\x4f\x31\x94\x97\x08\x45\x83\xf3\xdc\x4e\xe1\x7e\xc6\x9a\x86\x46\xae\xad\xae\xa3\x0c\x17\xd3\x11\xf9\xce\xfe\x8e\x34\xcb\x99\xc6\xb8\x20\x79\x99\x19\x5e\x64\x8c\x04\x6e\x8b\x36\xb4\xac\x64\x84\x6a\x2d\x13\x4e\x8d\x9b\xb1\xbb\x3f\xd4\xc6\x4f\x1b\x66\x63\xe8\x1d\x98\x42\x13\x96\x32\x91\xb0\x11\xf9\x16\xae\x0b\xc3\x5a\xc7\x56\x18\x04\xf3\x3e\x8c\x41\x49\x5a\xe2\xd5\x0e\xd2\x83\xd5\x63\x5c\xe5\x79\x69\xc0\x50\xfc\x54\x56\x7c\xbb\xe3\xce\x32\x17\x19\xf3\x81\x54\x05\xd1\x9a\xc2\xdd\x83\x9c\x54\xaa\xbb\x7e\x98\xf9\xbe\x1d\xe1\x0d\xe6\xb6\xad\x9c\x6a\x89\xe2\x56\x36\x86\x3a\xa5\x7d\x6a\x8b\x61\x3b\x3a\xfb\x93\xa4\xb1\x1d\xe8\x6b\x7b\xda\xda\xc1\xb8\xd4\x95\x9e\xb6\xb5\x26\x15\x8a\x4d\xf8\xa7\x0e\xf8\x78\x26\x2a\x15\x85\xa7\x4c\x18\xab\x08\x28\x20\xa8\x8a\x15\x4c\x80\x1e\xce\x68\x32\x03\xba\xe0\xa8\x68\x65\x19\x7e\xcc\x1b\x23\x94\x32\xba\x1f\xaf\x9b\x55\x52\x4c\x7f\xb6\x7e\xe2\x67\xcb\xed\xfa\xfe\x0f\x96\x90\x29\x3b\x9b\x80\xc7\xe2\x5a\x11\xbb\x36\xbb\x0b\x86\x2e\x5e\x1a\xba\x12\xea\xfa\x82\xc1\x2e\x2d\x33\x2e\xa6\x44\x95\x56\x26\xf1\x97\x4d\x85\xdc\x72\x2f\xbe\x11\x33\xdb\xe0\x64\x01\xe8\xa4\x58\x7a\x51\xda\x5d\xb9\x09\x33\xb9\x9a\x0a\x19\x5e\x5f\x7e\x62\x49\x69\xb6\x18\x27\x97\x8e\x9b\x5b\x16\x53\xfe\x5e\x91\x4d\x90\x80\xf8\x1f\xec\xfa\x40\x44\xb3\xe0\xd0\xe8\x38\xa2\xa9\xe1\x7a\xb2\x80\xe5\x07\x00\xb1\x4f\x96\xc5\x83\x33\x62\x64\xec\x1b\x2f\x9c\x43\x8f\x45\xcb\x01\x19\x97\x86\x70\x03\xde\x3e\xc9\x4c\x4a\x6d\x49\x0f\xc0\x19\xc6\x9d\x73\x09\xbe\x54\x44\x0a\x66\xe5\xd7\xdc\x1e\x9e\xca\x86\xe1\x87\x47\xe9\xaf\xea\xc6\x35\xc9\xa5\x36\x15\x9c\xec\x1b\x30\x86\x08\x56\x49\x59\x53\xc5\xd0\x4f\x4b\x97\x39\xdc\x6f\x32\x3e\x9d\x19\x3d\xc0\x4b\x56\x30\xf0\x58\x42\x59\x0d\x9b\x33\x66\x15\xd2\x2c\x8b\x6d\xb6\x1e\x05\x50\x61\xcc\x41\xa2\x39\x0a\xaa\xb5\x33\xcf\x0d\x82\x42\xd9\xdc\xb1\x95\xe0\x1a\x10\x66\x92\xd1\xf1\x80\x24\x32\x2f\x4a\xc3\xc0\x83\x24\xb7\xa0\x83\x2b\x5d\xe7\x51\xa5\x64\x39\xc5\x95\xb0\xcc\x7d\xd8\xbb\xb3\xa1\xc9\x15\x6e\xc0\xd3\xd4\xb6\x3e\xc0\xc5\x1d\x78\x0f\x35\x3b\x1c\xc7\x45\xc0\xfa\x72\x6a\x92\x99\xb3\x18\x25\x52\x29\xa6\x0b\x29\xa0\x27\xfc\x72\x59\xcd\xed\xbf\x43\xa7\x23\x7d\x5c\x01\x73\xc6\xa7\x33\x0f\x4b\xaa\xf0\x1e\xba\xbe\x07\x9b\x98\xc8\x76\x49\x93\x6c\x97\x36\x97\xd0\xf9\x4c\xe0\xdd\x6d\x84\x07\xd1\x8e\x19\xa6\xf2\xb0\x6e\xd8\x54\x24\xaa\xb8\x26\x9e\x5b\x01\x9a\x1b\x87\x15\xe4\x15\x39\x02\xb4\xe0\xe6\x50\x03\x8a\x0e\x65\x71\x3c\x22\x67\xe0\x92\xdc\xe2\x03\x42\x86\xf1\xdd\x40\xf6\xa3\x5a\x56\x63\xed\x87\xa5\xb5\x35\x5c\x0c\xdd\x9c\xad\x2a\xb0\xb5\x29\xc2\x60\x4f\xac\xb4\xfa\x6e\x47\x36\x71\x86\xa8\x8a\x52\x80\xa5\xb5\x4c\xe5\x83\x95\xfa\x53\x1d\x83\x71\xf6\x7b\xbe\xf5\xee\x66\xce\x69\x1e\xa2\x1d\x14\xfb\xb3\xa0\x25\xd7\xa1\x50\x23\x3c\xe3\x05\xfc\x7a\xa8\x09\xde\xfc\x75\xb1\xe7\x6c\x3b\x7d\xd5\xd3\xe2\x1c\xae\x5d\xc4\xda\xc9\x3b\x0f\xd2\xb0\xb9\xe0\x8f\xe8\xbd\xeb\xd0\x3b\x76\x80\x8a\xf5\xc0\xb9\xf6\x04\xcf\x65\x6c\xac\x18\xb2\x0a\xe3\x8c\x60\xb6\x91\xf3\xaa\x6d\x39\xd5\x4e\x08\x80\x4f\x17\x3b\x21\x3e\xed\xac\x85\x55\x6b\xbf\xc8\x96\x5d\xba\xe1\x25\x3e\xad\x8d\x8d\xf8\x2c\x89\x0c\x80\x6b\xe8\x4d\x61\x37\x02\x4d\x8f\x6e\x1f\x69\x51\x64\x70\x15\x21\xdb\xee\x02\xe9\x6e\x2f\xc3\xc7\x43\x6a\xe7\xb5\x7c\x8c\x1c\x0c\xed\x72\x0e\x35\x22\x95\x3d\xb1\x33\x5e\x38\xef\x2d\xb4\x4e\x78\x7f\xed\x6f\xc1\x6e\x54\xf9\xd0\x5b\xde\x77\x25\x06\xe4\xbd\x34\xf6\x7f\x97\x60\x03\x1a\x90\x0b\xc9\xf4\x7b\x69\xe0\xcf\x11\xf9\xca\x20\x0e\xbf\x6d\xe9\x75\xf2\x00\xa0\xe0\x3c\x77\x06\xc9\x99\x40\xba\x00\xd6\xb9\xc8\xbb\x1b\x1d\xe7\x40\xa4\xf2\x87\x90\x6b\x72\x25\xac\x90\xe6\x96\x1e\x4c\x5c\xda\x0d\xe1\x65\x79\x21\xc5\x10\x7d\xaa\x56\x8d\x71\x19\x1c\xca\x62\x98\x6d\x18\x6e\xfd\x50\x5f\x81\xcd\xf3\xed\xda\xce\x33\x3a\x67\x95\x3f\x9e\x13\xa2\xbc\x57\x9e\xb7\x02\x82\x13\x7f\xa1\x58\x65\x08\x74\x37\x44\x56\xe8\xe4\x7e\x3c\x0c\x21\xc8\x68\xc2\x52\x92\x82\x88\x87\xee\xf0\xd4\xb0\x29\x4f\x48\xce\xd4\x94\x91\xc2\x72\x81\xee\x3b\xde\x9e\x30\xe3\xd3\x89\x3c\xc7\x1f\x6a\x8d\x5a\xc0\xce\xe0\x46\xfd\x09\x38\x99\xd3\x5f\x7b\x4e\xd6\x73\xb2\xad\x4f\xcf\xc9\x7a\x4e\xb6\x06\x24\x3d\x27\xeb\x39\x59\xfd\x41\xbd\xb0\xa3\x12\xfa\x1d\x9a\x03\x9a\x5a\x27\x70\x44\xef\xb8\x5f\x57\x3f\x2d\x9f\xb8\x71\x44\xe4\x16\x54\x56\x67\x76\x57\x54\x4c\x19\x79\x3d\x7c\xfd\xea\x55\x5b\xe5\xb4\xad\x73\x0a\x7a\xfb\x40\xfb\xff\xfa\xcd\xda\xd6\xeb\x6c\x52\x0f\xb4\x22\x3a\xfc\x0d\x86\xad\x1a\x5f\x5f\x63\x08\x04\x6a\x23\xa4\x21\x39\x33\x84\x9a\x9a\x19\x85\xe7\x6c\xe0\x0d\xab\x2e\x54\x01\xbd\xf5\xbd\x45\x32\x25\x52\x38\xbb\x96\x05\xf6\x68\xb7\x19\x24\x8c\x6a\xf0\x85\x19\xb3\x30\x0b\x99\xdb\xaf\x72\x61\xfc\x51\xb0\x53\x60\x1e\x22\xe4\x88\x8d\xa6\x23\x92\x96\xd0\x8d\x0a\x17\x15\x75\x8c\xb3\xd5\x0b\x6d\x58\x0e\x96\x4d\xa9\xe0\x7f\x76\xda\x46\x81\xcf\x39\x5c\x26\x97\x34\xcb\x16\x84\xcd\x79\x62\xc2\xfa\x20\xce\x91\x1b\x34\x36\x6f\x37\x99\x6d\x65\xf1\xed\xd8\xfa\x70\x09\x4b\xd7\x5f\xba\xb6\xe7\xcc\x4b\x63\x6e\x3b\x6b\x0d\x1e\x86\x33\x1f\xad\x15\x18\xc1\x1f\x16\x6d\xbf\xe8\x1a\x6b\x91\xe8\xc3\xc7\xcd\xa6\x46\xd2\x89\x1a\xb5\xa4\x40\x4d\xd1\xb0\xcc\x32\xbb\xe9\x68\x7d\x5c\x9e\xf4\x0a\xab\x20\x2e\xa3\x86\xa8\x68\x64\x46\x73\xea\xd9\xfb\x0b\x0b\x09\xdb\xe6\x56\x16\x32\x93\xd3\x45\x0c\x59\x58\x11\xd8\x2c\x5d\x5f\x0c\x39\x64\xc1\xe1\xef\x7d\x63\x2b\x7a\x6b\xd8\x96\x85\xf7\x3a\x44\xaf\x43\xb4\x7a\x7a\x1d\xa2\xd7\x21\x7a\x1d\xe2\xe7\xaa\x43\x90\xde\x1a\xd6\x73\x32\x78\x7a\x4e\xd6\xe2\xe9\x39\xd9\xbe\x80\xd2\x73\xb2\x9e\x93\xb5\xfd\xd0\x06\xd4\x8a\x55\xf4\x56\xde\x70\x87\xb1\x26\xd9\xa0\xed\x08\x60\xbf\x7f\x46\x95\x2c\xf6\x89\xb3\xc7\x6c\xc2\x0d\x91\xc2\xb9\x78\x8d\xc8\xcd\x8a\x9e\xc0\x4d\x5d\x8b\xc3\xa0\xba\x35\x07\x6a\x58\x7f\x90\x40\xe1\xa0\x1d\x1d\x2c\x6b\x89\x7b\x4e\xa8\xd6\x7c\x2a\x86\x85\x4c\x87\x76\xb4\x93\x75\xee\x91\x2d\x58\x4a\x9c\x78\x6f\x3b\xed\xde\xba\x53\x85\x4c\x77\x74\x5b\xb4\x20\x5b\xef\xb5\x88\x36\xac\x44\x0e\x33\x09\xf1\x02\x60\x11\xb3\x5d\x7c\x98\x2e\xcd\xd1\xac\x36\x20\xff\x94\x82\xa1\x6b\x9a\x3d\x31\x60\x1c\x43\x4f\xd3\x42\xa6\x47\xfa\x78\xad\x0b\x53\xef\xf5\xd8\x7b\x3d\xbe\x48\xaf\xc7\x19\xd5\xb8\xaf\x8e\xfe\xac\x75\x82\x8c\x0e\xdf\x2d\x53\xf9\x67\xe4\x03\x69\x51\xc4\x6d\x31\x44\xd7\x54\xdb\x88\xab\x4d\xdd\x8d\x06\x4b\xaf\xeb\x6b\x74\x9a\x06\x2c\x84\xa6\x29\x4b\x49\xc1\xd4\x10\xd1\xc2\x12\x72\x91\xae\x58\x9f\x87\xc9\x93\xfb\x32\xd6\xe7\xfe\xc4\x0e\x8d\xf5\x8f\x77\xb4\x16\xc7\x66\xee\x1a\xa5\x7e\x56\xf7\xc6\x6e\xf1\xaf\xc6\x99\xa4\xbf\xde\x7b\x1c\x2c\x70\xff\x6d\x02\x4a\xfd\x69\x6a\xd7\xa0\xc4\xfc\x58\x32\xb5\x20\x72\xce\x54\x25\xea\x47\xc1\xef\xc0\xeb\xb8\x26\x09\xd5\x48\xe9\xbb\x28\xd8\x1d\x14\xcb\xee\x5a\xdc\x6e\xb6\x72\xd2\x84\x43\x73\x98\x7a\xdc\x25\xc2\x68\xa5\xe9\x61\xc5\xbd\x44\x75\x1f\xd1\x7a\x2e\xbb\x08\xbc\x9d\xc5\xdd\x95\x1b\xff\x42\x4d\x12\x64\x37\xb3\x04\xd9\xc9\x34\x41\x3a\x9b\x27\xc8\x2e\x26\x0a\xb2\xa3\x99\x82\x74\x37\x55\x90\xe6\x76\x43\x34\x9b\x76\xc1\xb3\xfb\xb6\x5a\x90\x5d\x95\x74\xb2\xa3\xf5\x62\x69\x79\x01\xfd\xd4\x63\x99\x32\x00\x87\x6b\xd6\x8c\xa7\x02\x50\x77\x4b\xc6\x12\x78\x9c\x09\x80\x83\x1a\xff\x99\xd8\x35\x1e\xdd\xc8\x40\x76\x36\x34\x90\xdd\x8c\x0d\x64\x37\x2c\x00\xd6\xf4\x16\xb4\xfc\x87\x30\x37\x1c\x01\x49\x7b\x4e\x0b\x8b\x00\xff\xb2\x14\x1c\xf6\xe0\x3f\xa4\xa0\x5c\x69\x2b\x63\x39\xab\x50\xfc\x9b\xd3\x74\xe3\x61\xec\x08\x5c\x13\x4b\x6a\xe7\x34\xb3\x3c\x03\x3d\x3c\x9c\xce\x61\x47\x6f\xb2\xd4\x01\xb9\x9f\x59\x4d\xce\x52\x1e\xd4\x44\xb8\x26\x07\x77\x6c\x71\x30\x58\x42\x9a\x83\x2b\x71\x80\xbc\x65\x09\x4d\x02\x23\x82\xa4\x52\x07\xf0\xdb\xc1\x3e\xb9\x70\x47\x86\xd3\xcd\x8c\xb1\xee\xa3\x9d\x92\x85\x40\x3e\x97\xfd\x0a\x7d\xc8\x05\xf0\x9a\xc5\x7f\x41\x57\x0c\x02\x9c\x32\x22\xe6\x10\x7c\x4a\x00\x9f\xe0\x7d\xea\x95\xc8\x52\x44\x59\xdb\xa2\xc1\x90\xc9\x2c\x3b\x36\xb9\x4d\x96\x02\x32\x83\x69\xdb\xc2\x21\x5c\xd4\x19\xda\x8e\xd0\x71\xa4\xe2\x56\x22\x6d\xba\x92\x54\x3d\x40\x76\xcb\x19\x15\x9a\x1c\x78\x9b\x4d\x9c\x0f\xe7\x60\x54\xc5\xbf\x85\x11\x8f\xfe\xf5\x9f\xe3\x5a\xcc\x5b\x35\x60\x2f\xf1\xf6\x12\x6f\x2f\xf1\xf6\x12\x6f\x78\x7a\x89\xf7\xb1\x00\xd4\x4b\xbc\xbd\xc4\xdb\x4b\xbc\xbd\xc4\x8b\x4f\x25\x82\xed\x20\xea\xc6\xf2\x67\x48\xfb\x49\x21\xf7\x32\x4f\x2a\xcf\x22\xdf\x0a\xff\xb5\x5f\xb9\x37\x96\x69\x57\x4b\xbd\xb1\x64\xbc\x24\xdf\x8f\xb6\x88\xb8\x41\x08\x5e\xea\xb9\x59\xfa\x7d\x7e\x0f\xa9\x8e\x78\x10\x19\xd1\x77\x4a\xfd\xe8\xae\x6d\x5d\x91\xaa\x31\xab\xee\x74\x53\x72\xe4\x6f\x15\x8e\x5d\xa5\x86\xfa\x8f\xc2\xf0\x61\xd5\x22\xdc\x33\xc0\xd5\x58\x2d\xb2\xa5\x66\x8e\x5f\x4e\xe4\x5c\xed\x9d\x25\x0d\x4c\xd5\xe6\xc0\xab\x74\x75\x54\x13\x55\x0a\x61\x47\x0d\xde\x00\x8e\x96\x60\x52\x3c\x87\x65\x28\xd8\xc0\x7c\x30\x57\x7f\x80\x50\x74\x57\x87\x59\x6d\xa9\x70\x8e\xf6\x52\xf8\xb2\x1a\x22\x4a\x84\xe9\x10\x10\x56\xc4\xc3\xd7\x47\xe4\x12\x70\x2e\x1e\xd8\x15\x7d\x80\xa2\x1c\x6d\x49\xcd\x63\x07\x1d\xdd\x77\x0e\x3a\x6a\xdc\x49\xf5\x31\x47\x3f\xd1\x98\x23\xf8\x11\x8f\xc9\xde\x83\x8f\x30\x97\xa5\x81\x73\x6c\x41\x15\xb2\x58\xfa\x8b\x77\xfc\x54\x86\xd2\xe0\xc4\x79\x46\xd4\xf1\xd0\x67\x9b\x6b\xe0\x23\x8c\x07\x1e\x58\x1a\x0e\xa6\xf3\x3e\xa0\x59\xe6\x22\x79\xbc\xe8\x88\x2e\x16\xfc\x39\x6e\xce\x2f\x7c\xa1\x34\xaf\x5d\x00\xf1\x38\xb2\x34\x2e\xb3\x9b\x68\xa9\xd5\x06\xe2\x88\x4a\xca\x9c\x79\xf6\x39\xe5\x73\x26\x2a\x0a\x79\xa4\x8f\x8f\x3d\x1f\xde\x2b\xe5\x7e\x14\xca\xfb\xc7\x88\x42\xfe\xa9\x0d\xed\x85\x05\x05\xea\x5b\x81\xaf\xa2\xbd\x4f\xed\x22\xd0\xf6\x8e\xba\xbd\x3e\xdf\xf1\x6e\xfa\x89\xee\xa5\x5f\x76\xdc\xd6\x33\x5a\xe5\x9e\xd2\x1b\xfe\x45\x5b\xe2\x7a\x77\xf8\x56\xcf\xd3\x59\xdb\x9e\xc7\x2b\xfe\x85\x5b\xd8\x9e\xc3\x2b\xbe\xb7\xaa\xad\xdd\x88\x97\xe0\xac\x5e\x7f\x3a\x5b\xd1\x7a\x0b\xda\x4e\x1c\xb3\x03\xa3\x78\x88\xe5\xac\xc3\xee\xef\x70\x47\xdc\xdf\x0f\x3f\xfe\xfd\x70\x2f\x79\x6e\x04\x4c\x2f\x79\xf6\x92\x67\xbb\xa7\x97\x3c\x7b\xc9\xb3\x97\x3c\x7b\xc9\xb3\x97\x3c\x5f\xac\xe4\xd9\x35\x27\x54\x7f\x4f\xbb\xf3\x3d\x6d\x17\x2a\xd0\xfa\xec\x77\xd8\xf3\x4e\xf7\xb2\xfd\x9d\xec\x4b\xb8\x93\x6d\x15\x4c\x2d\x0c\x7f\x48\x40\x75\xbc\x3f\xeb\xa2\xaa\xe9\x5c\xf2\x94\x14\xa5\x71\xb1\xab\x7d\x64\xf5\x2e\x91\xd5\x35\x48\xf7\xe1\xd5\xad\xc2\xab\xd7\xc1\xac\x8f\xb1\xee\x63\xac\x6b\x4f\x1f\x63\xdd\xc7\x58\xf7\x31\xd6\x7d\xc4\xc9\x2e\x0b\x7e\xe1\xd6\x46\xd2\x47\x9c\xd4\x9e\x3e\xe2\x64\xe3\xf2\x5e\xb8\x55\xf2\x41\x00\xea\x23\x4e\xfa\x88\x93\x3e\xe2\xa4\x8f\x38\xc1\xa7\x8f\xb1\x7e\xb1\x77\xe8\xa4\x97\x78\x7b\x89\xb7\x97\x78\x1b\x4f\x2f\xf1\x36\x9f\x5e\xe2\xdd\xf2\xf4\x12\x6f\x2f\xf1\xf6\x12\x6f\x2f\xf1\xe2\xd3\xc7\x58\xf7\x31\xd6\xa4\x8f\xb1\xfe\x5c\xef\xf3\x3b\xee\x74\x1f\x63\xfd\xa8\x31\xd6\xb5\xbb\xe5\xe7\x0b\xb4\xee\x3e\x8d\x3e\xda\xba\x8f\xb6\xee\xa3\xad\xd7\xed\x68\x1f\x6d\xdd\x47\x5b\xf7\x31\x2f\x7d\xcc\xcb\x8a\xa7\x8f\x79\xe9\x63\x5e\x56\x3c\x7d\xcc\x4b\x1f\xf3\xb2\xf6\xe9\x6d\x69\x3f\xb5\x98\x97\x3e\xda\xfa\x25\xdd\x14\xf7\x92\xe7\x46\xc0\xf4\x92\x67\x2f\x79\xb6\x7b\x7a\xc9\xb3\x97\x3c\x7b\xc9\xb3\x97\x3c\x7b\xc9\xf3\xc5\x4a\x9e\x7d\xb4\x75\x1f\x6d\xbd\xea\xe9\x6f\x67\x5f\xc2\xed\xec\xd6\xdd\x0d\x26\xf6\x56\x71\xd6\x87\x1f\x7d\xf3\x58\x62\xf1\xf1\xaa\x2a\xfa\x11\x65\xd5\xa0\xe1\x39\xea\xc8\xd4\x88\x5c\xe5\x79\x69\xe8\x38\x7b\x68\x39\xf0\x9c\x0a\x3a\x65\x43\xf7\xf1\x61\xf8\xf8\x30\x7c\xeb\x21\x15\xc2\xdb\x08\xb7\x19\xcf\xb9\xd9\x78\xc8\xea\xc0\x7b\x0b\xed\xdd\xcb\xb1\xd3\x1f\x72\xfa\x89\xe7\x65\x4e\x68\x2e\x4b\x64\x50\xcb\xe0\xf4\xdb\xbd\x17\x80\xad\x00\x94\x5e\x0b\xa9\x96\xd0\x22\x3b\x31\x9e\x82\x1a\xc3\x94\x38\x25\xff\xef\xe8\xaf\xbf\xfe\xf7\xf0\xf8\xcf\x47\x47\xdf\xbf\x1a\xfe\xef\x1f\x7e\x7d\xf4\xd7\x11\xfc\xe3\x57\xc7\x7f\x3e\xfe\xb7\xff\xe3\xd7\xc7\xc7\x47\x47\xdf\x7f\xfd\xee\xab\xdb\xeb\xcb\x1f\xf8\xf1\xbf\xbf\x17\x65\x7e\x87\x7f\xfd\xfb\xe8\x7b\x76\xf9\x43\xcb\x41\x8e\x8f\xff\xfc\xcb\x8d\xd3\xa2\x62\xf1\x61\xd2\xe2\x1a\xad\x83\x77\xc0\xb0\x3d\x99\xfd\x34\xac\x76\x74\xc8\x85\x19\x4a\x35\xc4\x6e\xa7\x50\xb6\x7f\xa3\x67\x01\xd3\x5d\xf0\xf1\xa3\xeb\xd1\xc4\x48\x2e\xb6\x62\xa4\x0a\x51\xbb\x57\x13\x12\xc6\xe1\x9a\xc8\x9c\x1b\x4b\xcb\x26\x56\x13\xab\x8e\xfd\x80\x70\x63\x09\x2c\x2d\x33\x03\x09\x05\xdc\x59\x80\x68\x74\x0c\xe0\x67\x9f\x8a\x8c\x27\xdc\x64\x8b\x8a\x66\x0f\x30\xd5\xc2\x3d\x47\xdf\x00\x2a\x08\xcf\x0b\x14\xe5\x00\xa7\x87\x9e\x66\x03\x61\xee\xcf\x47\x7f\x3e\x56\x9f\x0f\xbd\xc5\x3c\x5a\x3b\x17\x95\x04\x11\x1b\x1b\x82\x7d\xc1\x62\xb6\x4f\x8b\x01\x72\x0c\xe2\x90\x3d\x0b\xa0\x2e\x5a\xb9\xe1\x23\xb3\xb8\x4c\x6f\x98\xd1\x4e\x72\x80\x1e\x56\xf6\x5f\x32\x7e\x82\x63\xcd\x98\x55\xc2\x27\x9d\x4c\xea\x2d\x52\x56\x64\x72\x61\x91\x7e\x44\xae\x0c\x2a\x9f\x20\x61\x04\x77\x15\xc3\xf2\x22\xa3\x86\x1d\x6a\x9c\xed\x5a\x3b\xd4\x9e\x38\x5f\x17\x2b\xe4\xf3\xda\x1e\x1f\xc7\x23\xe6\x45\x5a\x17\x1f\xc1\x55\x64\xbb\xfd\xb0\xa5\xd5\xb0\xbd\xad\xb0\x95\x85\xf0\xb1\xed\x82\x1d\x94\xa2\xf6\x36\xc0\x97\x6f\xf9\xeb\xb0\xec\xb6\x56\xbe\xde\xb6\xb7\x09\xd4\xcf\xa1\xcb\xb7\xb4\xd9\xf5\x96\xba\x0e\xfc\xe5\x11\x84\xbf\xad\x7b\x69\x64\xc6\x50\x72\x6d\xa7\xbb\xdf\x56\xed\x43\x76\x26\xb4\x41\x45\x23\x6d\x96\x1b\x36\xa1\xeb\x16\x24\x5d\x4a\xca\x04\x62\x8b\x3d\x5b\xd5\xbc\x00\xb5\x8c\xa1\x90\x96\xc9\x48\x3f\x2f\xbb\x71\x62\x41\xec\x9e\x19\x97\x97\x2b\x4a\x54\x65\x14\x78\xe2\xfe\x31\x60\xdb\x80\x81\xfc\xf4\x27\x52\x6a\x6f\x18\x0a\x56\xa2\x80\x21\x7f\xf4\xff\xfa\xd3\xfa\xcd\x6d\xb5\xb5\xed\x18\x1b\x4e\xa9\x83\x80\x71\x09\x1d\x08\x17\x29\x4f\x82\x30\x80\x10\xc0\xb1\x2c\x7c\x60\x59\xde\x4a\x84\xa6\x45\x14\x0b\xc1\x7b\x38\x6a\xac\x9d\x07\x73\xa4\x57\x39\x93\x42\x75\x32\x18\x79\x2f\x9d\x3b\x3a\x1b\x90\x6b\xc8\x68\x55\xbd\x81\x93\xf4\x5e\xa2\x63\x3a\x6b\x23\x87\x6c\xe5\x22\x5b\x19\x7d\x0d\x20\x5f\x57\x4c\x1e\x57\x56\x63\xf2\x15\x06\xd7\x6c\xc3\x9b\x20\x73\xc7\x16\x15\xb3\x71\x22\x04\x90\xfc\x41\x85\x25\x9e\x15\x20\xef\xf8\x6f\x6f\xca\xca\xc7\x5c\xe0\xc7\x70\x68\xbf\x15\x30\xba\x07\xa8\x95\xec\xb2\x0c\x3f\xb3\x0f\x70\xb5\x93\x33\x6a\x30\xfb\xd0\x41\xc6\x08\x54\x72\xb5\x74\x11\x89\x14\x97\x3f\x96\x34\x1b\x91\x8b\x48\x99\x77\xaf\x5c\xa3\x25\xaa\x7e\xcf\xb3\x34\xa1\x0a\x8d\x02\x78\x46\x89\x96\xb8\x7b\xe8\x1f\x9d\x50\x11\x4e\x7b\xb5\x47\x98\xb1\x8d\x14\x54\x19\x9e\x94\x19\x55\xc4\x9e\x85\xa9\x54\x8b\xbd\x40\xb4\x42\x9a\x1b\x96\x48\x91\x76\x4a\x2b\xd7\xec\x1b\xc3\x18\x28\x2b\x53\xdc\x39\x7e\xf3\x9c\x35\x91\xf4\xc8\x25\xdc\x73\xf8\x25\x27\xfe\x54\x87\x23\x56\xb3\x7c\x54\xb7\x14\x5c\x13\x8e\x91\x22\xc7\x11\x79\x0c\xa7\x62\x44\xbe\x5c\x78\x33\x0b\x98\x5c\x9c\xbd\x58\x33\x33\xf0\x49\xfe\x1c\xca\x3a\x60\x57\x07\x6a\x22\x15\x9b\x33\x45\x8e\x52\x09\x7d\x20\x20\xe2\x78\x44\xfe\x3f\xa6\x24\xde\x69\xb0\x29\xfa\xf1\x3b\x14\x0f\x8a\x2b\xa4\x55\x04\xbb\xf9\x2b\x72\x84\x71\x14\x3c\xcf\x59\xca\xa9\x61\xd9\xe2\x18\xf5\x58\x1f\x89\xd1\x66\xeb\xda\x18\x0d\xa2\x70\x9b\xdf\xfd\x76\x43\x4b\x98\x6c\x87\x9d\xfd\x16\x4c\xfc\x35\x52\x83\x56\xff\xc6\x16\x06\x1e\x24\x37\x88\x9b\x91\x78\x19\x5d\x7d\x78\x32\x13\x36\xf8\x1f\x16\x0f\x28\x51\x6c\x0a\x58\x8e\x98\xfb\x40\x1c\x9f\xcb\xac\xcc\xd9\x3b\x59\x8a\xf5\x26\xc1\xda\xc2\xdf\x3a\x25\xfc\xdb\xa8\x23\xe4\x02\x65\xc6\xcb\x6f\x95\x15\xff\x49\xc4\x84\x68\x26\x91\x89\x92\x12\xb0\x4b\x02\x3b\xb7\xe4\x01\x5b\xc1\x3d\x0c\x17\xb1\xcd\xf1\x81\x9c\xbd\x8d\x96\x3c\xc4\xb9\x5c\x53\x33\xdb\xd8\x4a\xd0\x7c\xbd\xe1\xb6\x9d\x08\x11\x3e\xd4\x01\x97\x6d\x73\x0f\x98\xda\xfe\x11\x6a\x1c\x39\x00\xfc\x44\x08\x56\x08\x0a\xdf\x62\xe9\x88\x90\x77\x16\x33\xf1\x46\x0e\xba\x92\xc3\xd3\xc3\xbd\x10\x5f\x5c\x8e\x92\x05\x9d\xd2\x6d\x91\x6e\x4d\x65\xa4\xd1\x95\xa4\xcc\x30\x95\x43\x88\xd2\x4c\xde\xe3\xef\xc8\xb6\x0a\xd7\x8a\xb9\x88\x2e\xc8\x52\x2a\x35\x70\xa5\x08\x18\xfe\xea\x17\xd2\xfa\xde\xd3\x05\xa1\x4a\x96\x22\x75\x52\x53\x20\xa0\xef\x1a\x1f\x7e\x2f\x05\x50\x8a\x52\x5b\x58\xdd\xd6\xa8\xf4\x98\x19\x6a\x8f\xcd\xeb\xd1\xeb\x2d\x91\x86\x2d\x01\x66\x51\xa8\x53\xde\x53\xae\x9b\x96\xc2\xf7\x34\x67\xf1\x99\xd9\xcb\xbc\x14\xa3\xe9\x07\x91\x75\x91\xe5\xde\x21\x7a\x41\xd7\x21\x28\x61\x7c\x02\xb6\xdb\x01\xbe\xba\x57\xdc\xb0\x88\x3c\x1e\x4d\x68\xa6\x21\x1d\x70\x29\x82\x08\x7b\x5c\x17\x41\xa0\x49\x9b\x05\x8d\xa5\xcc\x18\x15\x1b\x5a\xea\x72\xfc\xc0\x73\xe6\x0e\x14\xa0\x5c\x75\xcc\x02\xc2\x1d\xea\x0d\x47\x2e\x5e\xd4\xc1\x01\x39\xc2\x96\x56\x62\x93\xd2\xac\x4d\x36\x1d\xaf\x70\xeb\x96\xb9\x05\x5a\xcd\xba\x8b\x4a\xf2\xa9\xa0\x02\xf2\xe0\xee\x71\xb5\x5f\xb2\x19\x9d\x33\x4d\x34\xcf\x79\x46\x55\x06\x51\x99\x37\x38\x3f\x48\x15\xcd\xc4\x9c\x2b\x29\xc0\x24\x30\xa7\x8a\xd3\x71\x66\xd5\xf4\x09\x53\x4c\x24\x4c\x93\x5f\x1e\x7d\x7b\xf6\xf1\x6f\xef\xcf\xde\x5d\x1e\xc3\x89\x67\x7e\x96\x95\xf6\x17\xcf\x24\x1a\x6e\x2b\xa8\xfd\x3c\x2c\x9c\x80\x46\xf8\x79\x61\x08\xa8\x8f\x1b\xfd\x94\x64\xa5\xe6\xf3\x87\x9e\x26\xfc\xf8\x2e\xac\xba\xc9\xa5\x0b\x99\xde\x14\x2c\x79\x4a\x1e\x5d\xd7\x30\x2c\xa9\x4a\xfd\xa6\x03\x4f\x46\x65\x9f\x62\xda\xef\x31\x23\x34\x49\x98\xd6\x78\xc5\x61\x75\xfb\x8a\x16\x57\x6b\x78\x12\xf6\xbd\x07\xc6\x4c\xef\xf5\x65\x46\xb5\xe1\xc9\x97\x99\x4c\xee\x6e\x8c\x54\x5d\x08\xf5\xe1\xaa\xfe\x35\x78\x0a\x72\xf6\xdd\x0d\xb9\xe0\xfa\x2e\x5c\xc0\x86\x4b\xd3\xd8\x5c\x42\xc9\x5d\x39\x66\x19\x33\x87\x87\x1a\xb9\x5c\x4e\x93\x19\x17\xcc\x33\x38\x61\x4f\x87\xd4\x95\x83\x94\x85\x72\xd7\x3b\x53\x6d\xa4\xa2\x53\x76\xe2\xf0\xf5\x17\xf4\x5e\x33\x9c\xfe\xd8\x4e\xdf\xfe\xcc\x36\xdd\x96\x3e\xca\x3d\x05\x4e\xe6\xea\x62\x4f\x77\x10\x13\x7d\x6b\xe7\xd8\xcd\xb8\x7d\x88\xbd\xbc\xea\x30\xe1\x19\x73\xb1\xe7\x76\xc1\xde\xd9\xc7\x9d\x0a\xd8\xbf\x85\x2c\xc9\x3d\x45\x1d\x19\x28\xe2\x88\xdc\xf2\xe2\x94\x5c\x0a\x5d\x2a\x56\x59\x37\x9a\x43\x71\x4d\x74\x59\x14\x52\x85\x4b\x42\x27\xd5\xa0\x02\x62\xe9\x9e\xd3\xb5\xc8\xe5\x27\x9a\x17\x19\xd3\xa7\xe4\x80\x7d\x32\xbf\x3d\x18\x90\x83\x4f\x13\x6d\xff\x27\xcc\x44\x1f\x8c\xc8\x55\x1e\x6e\xdd\xb9\x70\x49\xcc\xf1\x62\x13\x3b\x58\xd6\x1c\x71\xdd\x47\x41\x17\x72\xfb\xe1\xe2\xc3\x29\xc8\x6e\xa9\x24\xf7\x56\x6c\x83\xc0\x7c\xc2\x94\x92\x4a\x7b\x9a\x10\x81\x01\x78\x4d\x22\xf3\x42\xc9\x9c\x47\x66\x3e\x40\xf7\xcd\xd8\x47\xba\xdd\x73\x80\xf1\x61\xbb\x80\xba\x8c\x0d\xa1\xa3\x47\x88\xe8\x85\x68\x83\x0a\x57\x13\xef\x4c\x81\x5a\xa4\x53\xeb\x61\x38\xd7\xc8\x6e\xbe\x1b\xc5\x12\xb2\x78\xbb\xdf\x48\xe5\x7f\x3a\x49\xd9\xfc\x44\xa7\xf4\xf5\x00\x3e\x83\x7b\xb9\x68\xcc\x89\x6a\x72\xf0\xfa\x60\x44\x6e\x3c\x23\x1e\xc4\x73\xac\xda\x4d\xa4\x0a\x03\x82\x9d\xfd\xd5\x01\x39\x92\x0a\x46\x4e\xa8\x20\x19\xa3\x73\x67\x5b\xc6\xe3\xb6\x40\x75\xf7\x78\xd4\x76\x5b\xf6\x9b\x6f\x03\x9f\x76\x42\xea\xf2\x26\xfa\x7e\xde\x04\xa0\x4a\x86\x66\x8f\x89\x44\x2a\xcc\xc2\xd0\x96\x03\xc3\xd1\xe3\xa2\xa6\x42\x3f\x03\x81\x25\x1d\x84\x5d\x12\x44\x8f\xab\x8b\xae\xd0\xf1\xfd\x40\x07\x12\xfc\xc7\x92\x91\xab\x0b\x4f\xe8\x0a\xa6\x34\xd7\xc6\x1e\xe3\xb4\xc6\xba\x38\xf2\xb3\xa3\xb3\x9c\xfe\x53\x0a\x72\xf9\xe5\x8d\x9b\xc0\xf1\xb3\x82\x6a\x2b\x35\xa0\xff\x2c\x15\xb3\x5c\xb8\x03\x73\x0f\x7d\x9a\x0c\xdd\xbe\x27\x17\xd4\x50\xe4\xeb\xce\xd3\x4a\x54\xa4\xdc\xb2\xec\x31\x17\xa9\xfb\x29\x62\xd8\x4f\xcd\x5b\xed\xee\xbd\xdf\x24\x26\xc5\x0d\xbf\xf9\x78\xb5\x27\x1e\x9c\x00\x31\x9f\xbe\x93\x69\x67\x46\x1c\x75\xf5\xc4\xf7\x2f\x16\xa6\xe7\xf8\x9e\xe4\x76\x4c\xf2\x1e\xea\xfa\x7c\x64\x34\x25\xf6\xfc\xba\x7f\x7e\x67\x75\xcf\xd6\xb4\xaa\x15\x0b\xf1\x00\xec\xb8\x0c\xdf\xcd\x2f\xc1\x6b\xef\xc0\x0b\x2c\xe6\xc0\xb1\x72\xbc\x64\x9c\xc9\x31\x71\xc7\x61\xdf\x73\xff\xe6\xe3\xd5\x0e\x53\xff\xe6\xe3\x95\x9f\xb9\xfd\xa7\x9c\x3c\xdd\xa4\x77\x12\xdf\x2a\xe9\xed\x4d\x43\xdc\xaa\x58\xf2\x3b\x67\xaf\xa7\x4b\x22\x59\x7b\x79\x6c\xb4\x2f\x49\x6c\x9f\x10\xbb\xe3\xa2\x45\x5c\x61\xfd\x94\xd9\x3e\x56\xa1\x40\x5f\xb5\xe8\x1e\xf1\x66\x46\x2d\x61\xa9\xb2\x24\xc1\x3e\xdb\x8d\xd7\x96\x2b\xf8\x1d\xb7\x4a\x20\xd0\x36\x72\xc1\xf0\x96\x33\x3d\xf5\xbe\x03\xa1\xc7\xea\x0e\xef\xc0\x53\x33\x75\xf4\x95\xa0\xe3\x66\x1a\x21\xd8\x11\x5a\x95\x44\xf8\x89\xce\x29\xcf\xe8\x98\x67\x50\x11\x8c\x59\xed\x3e\xf6\x46\xd5\x30\xe5\xbd\x9e\xfa\x1d\x45\x8e\x20\x4e\x2c\x19\xb7\xc8\x91\xfd\xed\x04\x8c\x63\xc7\x23\xa0\x56\xd0\x10\x22\x19\x1a\x42\xc9\xc7\x6d\x42\xc9\xde\xe4\x07\xd8\x01\x7b\x62\xba\x72\x45\xdb\x67\x25\x57\x84\x1f\x6e\x98\x9a\xf3\x84\xbd\x68\xc6\xa8\x59\xa2\x98\x69\xc5\x1a\x01\xbf\xb6\xb6\x6c\xcf\x1c\x1f\x8a\x5c\xe9\xe7\x81\x5c\x04\x5c\x77\x3d\x94\x3b\x2e\xb6\xea\xe8\xf9\x10\x28\x49\xe0\x71\x06\x3f\x35\x5c\x33\x11\xfb\x6e\x1c\xad\x39\x73\xb4\x06\xfa\x5b\x9c\x6b\x53\xdb\xa9\x03\x79\x08\x18\xd1\x75\x55\xbe\x9f\x5f\x14\x92\x40\x78\x4d\x5a\xe0\x62\xeb\x49\x26\xac\x98\x4d\xba\x5c\x89\xdb\x0e\x6f\x6e\xea\x96\xc0\x73\x56\xcc\xc8\x9b\x9b\x15\xc7\x18\x4b\x09\xda\x59\x6b\xb4\x0f\x1e\x6a\x92\xf1\x09\x33\x7c\xcb\x12\x1e\xe1\x20\xe7\x52\x70\x23\x95\xde\xd3\xe1\xf4\xc3\x75\x65\xa8\xbe\x9f\xdd\x59\x5f\x15\xed\x94\xbc\x8b\xde\x52\x92\xc8\x2c\x63\x89\x71\x71\x8d\x00\xde\xd0\x6d\x85\xf2\xc4\x9c\x3d\x60\x74\xf7\x07\x50\x9f\x9c\xa2\x74\x82\x9b\x7b\xf2\xf1\xf2\xec\xe2\xdd\xe5\x28\x4f\x7f\x31\x93\xf7\x43\x23\x87\xa5\x66\x43\x6e\xda\xf2\xc1\xe7\x8b\x44\x2c\xb6\xde\xcf\x90\x15\x06\x19\x33\xb3\x40\xfc\x50\xa0\x23\xde\x29\xf9\x46\xa3\xd7\x02\xd8\x8e\xfc\x9d\x94\x94\x66\x40\x14\x85\xab\x40\x33\xa3\xce\xf4\x54\x66\x19\x42\xdb\x28\xc6\x06\xb1\x2d\x66\x63\x68\x48\xe7\x85\x3d\xd8\x50\x51\x5b\xe0\xe3\xca\x10\x4f\x8f\x70\x5d\x38\xc6\x76\x99\x64\x19\x8a\x55\xcf\x3a\x1c\x6f\x6a\xef\xd1\x70\x66\x66\x16\xaa\x77\x6c\x41\xc0\x11\x78\x22\x95\xc5\x27\x55\xc7\x0d\x66\x12\x58\xfa\x49\xa9\x99\x1a\x39\xb6\xf3\xe4\x60\x6b\xc7\x90\x60\x72\x1f\xd9\xd6\xc8\x9e\xd5\x40\xfb\xc8\x26\xab\x60\xe6\x5e\x87\x0b\x3b\x2f\xaf\xd1\xd2\xcc\x98\x30\x56\xec\xb7\xb4\xcc\x41\x66\x25\x10\x9d\x1f\xf6\x93\x43\xed\x51\xd2\xf7\x6c\xbf\xc5\x5f\x0d\xe4\x58\xf9\x77\xc0\x34\x9d\xcd\x65\x72\x6e\xa5\x6a\x76\x7f\x72\x2f\xd5\x1d\x17\xd3\xe1\x3d\x37\xb3\x21\xae\x53\x9f\x40\x78\xf4\xc9\x2f\x30\xde\x1e\x2d\xf2\x67\x69\xea\x9c\x22\x4a\xcd\x26\x65\xe6\x6a\xa2\x8e\x08\x2d\xf8\xb7\x4c\x69\x2e\xc5\x00\x74\xc7\x01\x29\x79\xfa\xe7\xed\x90\x25\xdd\x70\xd2\x9e\x9a\xae\xe8\x68\xfb\x40\x20\x62\x4c\xe6\x43\x2c\x97\xa2\xa9\x04\x87\x0d\x05\x5b\x51\x43\x34\x9a\xe6\x5c\xbc\xc0\xd3\x99\x70\x91\x6e\x83\x43\xc3\x00\x06\x3d\xea\xa2\x98\x7b\xe7\x0c\xfa\xe1\xde\x90\x7a\x4d\x0a\x92\x39\xfb\x1b\xc4\xfa\xfd\x61\xab\xc3\x97\x2f\xf4\x8f\xd9\x10\xbf\x32\x2c\xd2\x0a\x2a\xfd\x65\xe0\xf2\x0d\xde\x7e\x4d\x4a\x4f\x70\xc5\xb7\xa7\xdd\x26\x4f\x2c\x0d\x3d\xae\x9e\xfb\x24\x80\xea\x22\xf3\x3c\x94\x7b\x57\x34\x13\xd2\xae\x6b\x1f\x7c\x06\xcc\x19\xcf\xa8\xd7\x97\x21\x1d\x3b\x55\x34\x67\x86\x29\x74\x81\x73\x4e\x75\xc2\x45\x27\x7c\x28\x98\xb8\x31\x34\xb9\x6b\x6d\x4d\xef\x39\xee\xb3\x73\xdc\x07\x5f\x05\x7a\x44\xe0\xa9\x15\xef\xdc\x35\x73\xe5\x0a\x84\x07\xe1\x85\x90\x18\x0c\xdd\x7e\x47\x8b\x2e\x56\x0e\xdf\xa7\xc1\x5d\xc3\x6b\x67\xd8\x00\x4f\xb7\x42\x16\x65\x86\x5e\xf6\xdc\x7b\xc1\xed\x87\x1b\xb6\x3f\x03\x8e\x04\xee\x72\x8f\x16\x75\xad\x53\x87\xdc\xbe\x19\x73\x53\x9d\x7b\xcd\x0c\x29\x98\xca\xb9\x0b\xeb\x96\x82\x24\x2e\x2c\x00\xf8\x9a\xe5\x61\x6e\xb8\x88\xe7\x09\x22\x13\x43\x5d\xcc\x0c\x19\x33\x73\xcf\x98\x20\xaf\x5e\xbd\x7a\x05\x72\xc9\xab\xdf\xff\xfe\xf7\x04\xf2\x48\xa4\x2c\xe1\xf9\x72\x43\x68\xf5\xbf\x5e\xbf\x1e\x91\xff\x39\x7b\xf7\x16\xbc\xca\x0a\xa3\xc9\x58\x9a\x99\x1b\xd9\x36\xa8\x75\xd6\x03\xf2\x7f\x6e\x3e\xbc\xf7\xe2\x84\x6e\xfc\x0a\x2a\x48\x58\x5e\xdd\x45\xf0\xd5\xef\x7e\xfb\xdb\x11\xb9\xe0\x0a\xe2\x89\x39\x44\x40\x04\x27\xc8\xc2\x3b\x06\x42\x7a\x9e\x66\x04\xbf\xe3\x20\xce\x49\x38\x87\x6a\x26\x63\x3c\x10\x52\x4c\x32\x9e\x18\xcc\x23\x84\x47\x1f\x01\xed\xb2\x07\x51\x17\xee\xe5\xa4\x08\x98\xdc\x80\x64\xfc\x8e\x91\x89\xfe\x4a\xc9\xb2\xa8\xc2\x1c\x15\xd3\x56\x96\x4d\xa8\x80\xa8\x12\x18\xac\xda\x2b\xcd\xcc\xb3\x3a\x61\xb4\x34\x04\xd5\x70\x10\xfa\x34\x04\x94\x01\x16\xd2\xb8\x63\x8b\x21\xe2\x43\x41\x79\x70\x1c\x84\x3b\x75\xf4\xc2\xae\x13\xef\x84\xa5\xe4\x3c\x9c\x52\x1f\xbb\x52\x28\xf9\x0f\xdc\x2a\xee\x2b\x99\x78\x09\x59\x3b\x99\xcc\x05\x9d\x8a\xc8\xe6\xea\xa3\xf2\x2d\x2f\x74\x11\xff\x51\xfc\xd4\xd5\x24\x0e\xb4\x33\xae\x30\x08\x4b\x21\x16\x6c\xd3\x97\xab\x54\x55\x16\x9b\x34\xee\x6b\x29\x96\x7a\xbb\x2a\x2c\x8e\xfc\xc0\x07\xa9\x0f\x61\xab\xc6\x40\x57\x5c\x17\x00\xe4\xda\x7a\x28\x05\x40\xd4\xbc\x7c\x34\x33\xa5\x03\x0d\x78\x5e\xd9\x6f\x33\xad\x5d\x1c\x51\x4e\xd5\x9d\x55\x12\x1c\x15\x18\x81\xd7\x73\x55\x9f\x24\x54\xf9\x00\x8d\xc2\x95\x59\xf1\x51\x03\xf6\x23\x87\xa3\xd1\x21\x1e\x13\xa9\x88\x36\x54\x39\x9c\xb7\xef\x9f\x29\x5e\xba\xee\x95\x4e\x0b\x4c\x44\x07\xf6\x1c\xcc\xe8\x05\xd1\x67\x95\xb7\x33\x75\x90\x6a\x93\xba\xaf\x63\xe2\xbe\x6e\xd9\x5d\xdb\x67\x76\x1d\xc2\x02\x5a\x34\xed\x9a\xcd\xb5\x43\x26\xd7\x75\xd9\x1a\x1c\x8c\xdd\x49\xe8\x96\x3a\xb7\x43\x52\xd2\xbc\x15\xeb\x5b\x31\xd5\xc3\xdc\x71\xbe\x0f\xdd\x38\x9f\x8b\xd7\x83\x0c\x67\x9f\x0f\xab\xbb\x9a\x60\xa4\x4b\x9d\x74\x39\xd2\x10\x8b\x02\x9e\x82\x45\x61\x2f\x2f\x9a\xa3\xc5\x68\xd3\x96\xaf\xe1\xd3\x85\xbb\xe1\xd3\xee\x62\x02\x9f\x1a\xae\xf9\xdb\x09\x5c\xb4\x23\xa5\x48\x2d\x27\x15\xa8\x20\xd2\xb8\x88\x0e\xcf\x88\xbc\x73\xa4\x16\x91\x8c\x8e\xb5\xcc\x4a\x83\x5d\xab\x1f\x63\x3a\x0c\x83\xfa\x2c\x0b\x40\x7c\x43\xb3\x88\x2a\x03\x3f\x42\x52\xd8\x8e\x40\xe3\xd3\x31\x83\x68\x57\x89\xf4\x27\xa2\x94\x75\x4a\x2f\xe3\x48\x4f\x37\x48\xf9\x6e\xc1\xdb\xf7\x7e\xc6\xdc\x95\x56\xc4\xfd\x2d\xc5\xb1\xe7\x08\x44\x0b\xcf\xc8\x5d\x4a\xb5\xbd\x99\x27\x12\xcd\xbb\xe8\x57\x9a\x93\xa3\xf3\x10\x0e\xe2\xaf\xe3\xaf\x84\x61\x6a\x42\x13\x76\x1c\xeb\x5d\xac\x98\xb1\x9c\x29\xbb\x4c\xd7\xce\xc7\x45\xcc\xa8\x48\x33\x14\xc0\x13\xa6\x00\xf7\xd9\x27\xc3\x94\x05\xc9\xf9\xcd\x15\x49\x15\x9f\x33\xa5\xc9\xd1\x97\xcc\xca\x8b\x8c\x9a\x52\xb1\x56\xd1\x55\xfb\xf5\xad\x84\x69\xec\x4b\xd3\x83\xc1\xba\xba\xea\x41\x27\x4f\x79\x44\x74\xbe\x2a\x30\x21\x54\x11\xa4\x3a\xd6\x65\x47\x16\x95\x80\x40\x03\xcd\x58\xc8\x52\x39\x2b\xfa\x44\x2a\x17\x7b\xa5\xac\xba\x84\x03\x53\x4d\x14\x9b\x5a\x69\x56\x55\xa5\x1d\x92\xac\xb4\x2f\xf6\xea\xce\xf6\x10\x07\xc0\xca\x34\xbb\xc9\x57\x6f\xe2\xa4\x6a\x39\xe7\xa9\x67\x95\x98\x0d\x78\xee\xe3\xc7\x0b\xaa\xa3\x50\x9b\xa8\x76\x65\x04\x58\x94\xd1\x81\xa1\x86\x20\xd6\x9a\xb3\x7f\x6c\x14\x96\x90\xdb\x62\x4b\xee\x83\x8e\x90\x12\x32\x65\xd7\xe5\x38\xe3\x7a\x76\xb3\xa3\x09\x71\xd5\x10\xe8\xac\xb0\x74\xeb\xb7\xd6\x92\xa8\x99\xd0\x1c\x58\x9e\x25\xe3\x96\xe9\x72\x2b\x47\x49\x00\xa2\xef\x1d\x23\xa4\x84\xe8\x8f\x8c\xb9\x0c\x06\xf6\xa7\xf7\xd5\x3c\x5c\x50\x1a\xe6\x2c\x49\xd9\x37\xa2\xa8\xbd\x4f\x68\x96\xe9\x66\xc0\xae\xa7\x98\x28\x7b\xf8\x40\x35\xdc\x53\x6e\xb7\xdb\xcf\x9e\x37\xb2\x5f\xae\x5d\x98\x26\xb9\xc4\x30\x1e\x41\xa4\xf0\x8d\x20\xf5\x8a\xef\x10\x05\x32\x42\xb8\x32\xa0\xcc\xb3\xd6\x17\xe9\xcd\xa5\x4f\xe9\xe4\x19\x67\x40\xaf\xa2\xa1\x6b\x69\x49\x03\x29\xf5\x24\x77\x8b\x53\xc7\x5e\xaf\x15\xf0\x9b\x67\xc6\x28\x3e\x2e\x4d\xf7\x7c\x6f\x8d\xee\xc0\xa6\xad\x22\x02\xa7\x78\xe8\x56\x9f\x44\x28\xea\x34\x84\x70\x16\x96\xcf\x7e\xc5\x73\x80\xdd\xe0\xcb\x43\x4d\x52\x99\x94\x21\x2f\x2c\x00\xad\xba\x40\x6b\x5b\x9b\xa5\xd3\xb9\xda\x35\xd1\x7e\x4b\xf4\x4a\xe5\xbd\xb8\xa7\x2a\x3d\xbb\xde\xe2\x7d\x5f\x67\xe7\x55\xaf\x58\x50\xf2\xaf\x89\x7d\x4f\xc7\xb2\xac\x2a\xdd\xfe\x84\xec\xd5\xab\xd4\x74\x23\x2d\x69\x68\x69\x8f\xee\xaa\xe8\xf7\x26\xee\xde\xc4\x5d\x7b\x76\x31\x71\x5f\xa1\x89\x3b\xce\x83\x5b\x3b\xae\x3e\xbd\x02\xcf\xda\xfa\xf6\x3e\xa6\x95\xf4\xa2\x22\x30\x28\x4d\x35\xfd\xf8\x1b\x02\x1c\x1e\x91\x6a\x6f\x23\xa1\xcf\x53\x20\xe0\xd9\xcf\x6f\x51\x7d\x24\x3b\x29\xac\xae\x95\x54\x8d\xcf\x72\x8a\x76\xf4\x03\xc6\xac\xd4\x78\x29\x11\xdd\x6e\x14\x32\x3d\xc5\x44\x96\x54\x08\x89\xdc\x4f\x0f\x5c\x16\xe8\x81\xd3\xbb\x44\x54\xfc\x02\x93\x50\x7b\xd6\xd8\xd1\x7c\xf6\xe8\x05\xcb\x60\x6d\x5b\xd2\x29\xc5\xcf\x2e\x35\xc8\x2a\xd9\x70\xe7\x22\x55\xae\x7f\xa8\xe0\x91\xcc\x58\x4e\xe1\x9f\x6f\xfc\x02\xec\x89\xb6\x22\x99\x61\x18\xf0\x0d\xc5\xdc\xe5\x64\x50\xf3\x49\x39\x98\xbf\x6e\x51\xf7\xa5\x7a\x76\x2a\xc8\x15\x60\xba\xf3\x72\xaf\x6b\x76\x48\x8b\x7d\xc0\x0f\x33\x4c\x51\xd9\xb8\xbb\x02\x9a\x85\xf0\x79\xd4\xa5\xed\x6e\xd6\xdf\xd5\x9c\x3f\x08\x36\xb2\xcf\x80\xad\xf7\xe6\xfc\xa5\xe7\x09\xcd\xf9\x11\xe1\xf6\xc4\x60\x85\x69\x3f\x36\xb7\x79\xfb\xfe\x98\x79\xb1\x72\x54\x65\x5f\xb3\x28\xe7\x2d\xfb\x52\xd5\xaf\x55\x0f\x47\xa3\xc3\x43\x6f\xef\x77\xf8\x59\x9a\xc9\xf0\x0f\x84\x89\x44\xa6\xb8\xa9\x76\x7c\xa5\x0d\x30\xfd\x4a\x4d\x8f\xe7\x92\xfb\x6f\xc5\x57\xb3\x30\x76\xb7\x2d\xe9\x70\x82\x7d\x4a\x80\x37\x0f\x62\x91\x15\x63\x0c\x29\x06\xdc\x02\x43\x56\x21\xc7\x21\xab\xf2\x25\x58\xb9\x07\xd0\xd2\x97\x4d\x21\x47\xf8\x72\x94\x14\xe5\xc0\x35\x18\xe5\x2c\x97\x6a\x31\x08\x8d\xec\x8f\xb5\x5e\xae\x05\xe6\x9e\x4a\x4a\xa5\x98\x80\x02\x26\x2f\x95\xbf\x7a\x10\x3c\x22\x7b\x0d\x50\x6f\x17\xdd\x56\x3d\xf5\x6d\xad\xee\x00\xc0\x24\x55\x95\x94\x9a\x84\xcc\x26\x7a\x50\xdd\x73\xd8\xb7\x4c\xcc\xc9\x9c\x2a\xdd\x16\xe6\x64\x57\x8e\x9a\xf2\x39\xd7\x0f\x28\xfb\x79\x13\xcc\x3e\x90\x76\xb0\x34\x45\x69\x1c\x75\xf2\xb8\xeb\x33\x35\x05\x9c\x6d\x08\x0e\xaf\x0f\x3a\x7c\xfc\x85\x16\x92\xa9\x3f\xad\xca\xca\xd4\x9f\x6e\x45\x66\x56\xf7\xed\xb8\xf5\x0f\x28\xd0\xd4\x7c\xfc\xd6\xee\x7e\x46\x2a\x26\x53\x25\x06\xf3\x82\xd9\x23\x1c\x02\x30\x86\x5f\xf0\x4e\xa1\x08\xbe\x4f\xdd\x5d\xd2\xb0\xbc\x90\x8a\xaa\x05\x49\x9d\xad\x61\xb1\x22\x22\x34\x0a\x09\x7d\x70\x6a\x18\x98\x47\xca\xd5\x9e\xa2\x11\x3a\x44\x83\xb2\x94\x97\x79\xe7\x58\x50\xe8\x15\x03\xed\x1e\xb2\x81\xb9\x4c\x62\xfe\xba\xd3\x35\xf3\x89\x15\x69\x72\xe7\x2a\x06\x79\xa8\x22\xef\x8f\x82\x5c\x0e\x0e\x1a\x79\xa0\xc1\x3c\x06\x77\x7f\x32\x65\x16\xe4\xbe\x31\x8e\x5d\x33\x65\xb9\x1a\xe9\xe8\x16\x70\xe4\x1a\x42\xd1\xc6\x77\xc0\x06\x9f\x68\x97\x48\xc7\xc8\x36\xfe\x4f\x06\xe5\xc6\x3a\xfb\xc6\xfb\x8e\x21\x1d\xb4\x04\xc9\x3c\xd4\x45\xcb\x64\x12\xdd\x3d\xd7\x38\x14\x6c\xc3\xa5\x47\x7e\x6f\xbb\xb7\x9b\x61\x47\x45\xf9\x02\x8c\x3e\x99\xc6\x7b\x3d\x9e\x40\x6a\x4b\x90\xe2\x01\x98\x61\x03\x6e\xa3\x2a\x81\xa5\xb6\x5f\x82\xcc\xf3\x51\x9b\xea\x43\xf7\x3e\xc3\xa6\x89\x0a\xb9\xd5\x75\x0f\xfb\xcb\x4d\x58\x59\xa5\xb7\x41\x08\x84\x17\xd4\x75\x09\x62\xa2\xfb\x8a\x13\x97\xe4\x04\xee\xae\xaa\xb2\x68\x21\xb9\xe3\x12\x9a\x09\x9e\xd5\xf1\xcc\xe7\xb2\x0b\x0b\x2f\x85\x73\x34\x58\x42\x9a\xd5\x38\x53\x6a\xa6\x86\xd3\x92\xa7\xbb\x60\xcb\x0b\x66\x80\xad\xd9\x5e\x77\x66\xd7\x91\xc5\x3d\x80\xb1\x05\x47\x8c\x0e\xac\xe1\xa0\xf2\xde\xa8\xf1\x86\x38\x2d\x5e\xdd\x93\x83\x7a\x67\x81\x70\xe4\xfc\x95\xd0\x6d\x50\x6d\x1d\xcf\x48\x16\x89\x0b\xd6\xe5\xb5\x74\x97\x38\x2c\x62\x1e\x38\xb6\x0e\xed\x7f\xbc\x0a\xec\xed\xf9\x63\x36\x91\x55\x85\x14\xd4\x88\x9c\x3b\x6e\xca\x32\x66\xc0\xbb\x96\x85\x4c\xa5\x78\x25\x9c\xcb\xb9\x45\xe6\xbf\x0a\xf2\x8d\xcf\xd9\xcf\x27\xa7\x84\x1e\xd7\x42\x20\x5c\xd5\x19\xc1\x58\x8a\x3e\xba\x59\xf5\x1d\x55\x0a\x3d\x20\xe3\x63\xef\x8f\x02\x27\x4e\x58\xb1\x30\xf3\x12\x2f\xea\xd5\x8a\x59\x00\x40\xd8\xb1\x92\x39\xd1\x82\x16\x7a\x26\x0d\xa8\x86\xb4\xa0\x09\x37\x0b\x62\x14\x4d\xee\xa0\x44\x91\x62\xee\x73\x03\x92\x1c\x3b\xc7\xae\x18\x7c\x75\xb7\x61\x33\x53\xb2\x9c\xce\xc0\x13\x16\x5b\x25\x19\xd5\x7e\xf5\x2b\xfb\x3b\x6d\x47\x93\x74\x21\x68\xce\x93\x90\x35\x50\xc9\x39\xd7\x5c\x3a\x6b\xaf\x1f\xf7\x3a\x64\x86\x43\x0b\xf2\x79\x46\x79\x4e\x8e\x34\x63\xe4\xd2\xa3\x04\xfe\x72\x83\x32\x0d\x5a\x36\x54\xdd\x39\x40\x86\x94\xe6\xc2\x25\x44\xa8\x08\x5c\xb8\xbc\x42\x86\x69\x67\xbe\xf2\xa3\xc7\x61\xbb\x56\xcf\x49\x2a\xb8\xb8\xf7\xa9\x3b\x99\x48\x65\x74\x6b\x79\x76\x7d\xa5\x63\x6d\x04\x71\xcb\xe5\xbd\x83\x1f\x32\x29\xa6\x71\x1a\x81\x0a\x33\xa1\x26\x30\x94\x77\x99\xf3\xb4\xa4\x19\x12\x51\x37\x99\xf3\x9b\x2b\xec\xce\xa7\x33\x33\xbc\x67\x60\x8d\x41\x5e\x53\x9d\x19\xff\x51\xbe\xe4\xad\xc3\x35\x10\x5d\xe3\xac\x09\x68\xd9\xb2\x53\xbb\xa7\x0b\x48\x5b\xe3\x5c\x4c\x6a\x17\xa6\x3e\xb1\x18\x0e\xb1\x0a\xe2\x30\xbd\xb3\x50\xae\xc3\x8a\x0d\x60\xae\xb2\x20\x06\x4c\x5d\x9e\x9b\x05\x7c\x94\x07\x30\xbc\x76\x95\xd9\xa8\xdd\x20\x2b\xdc\x6d\xd6\x65\x1e\x41\x28\x9b\x57\x9b\x7c\xeb\x4a\x27\x76\x14\x0e\x0e\xbe\x8b\xcc\x66\xd1\x45\x07\x54\x32\x17\xe9\x90\x66\x16\x73\xae\xbf\x3d\x77\x1e\xce\x78\x10\x6a\x17\xf9\xbe\x0a\x12\x17\x21\x6d\xb6\x95\x19\x56\x1e\x01\x88\x83\x1f\xb3\x14\x88\x46\x5c\x30\xf2\xde\x6a\xc8\x6e\xf3\xae\xbf\x3d\x1f\x10\x3e\x62\x23\xff\x57\x68\xea\xa9\x96\x91\x53\x74\x03\x8c\xab\x68\x8f\x08\x4c\x25\x36\x46\xc5\x7d\xff\xfe\x47\x3b\x49\xfb\xeb\x9f\x86\x7f\x8c\xb2\x8d\xfe\xe9\xef\xae\x8a\xf6\xdf\x1b\x6f\x63\x5f\xb2\x90\x75\xff\xef\xd7\x2e\x2b\xb5\xcb\x59\xfd\x77\x57\x8c\x8b\x09\x63\xe5\xc6\x6b\x09\xb7\xf4\x3c\x45\x6c\x84\x6f\x2b\xf6\x0f\x6f\x58\x04\x30\x05\xa3\x4e\x42\x0d\x13\x40\xa8\x7d\x50\x86\x90\x06\xbb\xbb\xba\xb3\x76\xfe\x47\x60\x12\xc0\xa0\xb2\x01\x31\x52\xc2\x71\xc4\x23\x7f\x26\x08\xf3\xb5\x3a\x71\xad\x00\x0e\xea\x1c\xd5\x3c\xef\xb1\xc3\x5a\x08\x87\x10\x5c\x3b\x0f\x98\xdb\xaf\x84\x34\xbf\x0a\xdb\xef\x5d\x34\x80\xc1\x48\x42\xe7\x92\xfb\x04\xe4\xf6\xa4\x08\xac\xe8\x18\x52\x62\x8f\x17\x24\xe7\xda\xd0\x3b\x36\x22\x37\x96\xb7\xc4\xb7\x61\x08\x3d\x41\x20\x83\x25\x4b\x49\x29\x0c\xcf\xe0\xd7\x6a\x1c\x3b\xe5\x98\xe7\x5c\x4d\x88\x2e\x13\x4b\x5b\x0b\xc5\x86\x9e\x8b\xb9\x56\x4b\xb4\xa0\x5a\xcb\x20\x6c\xf6\x8c\xa2\x2e\x50\xa4\xd0\x15\xe0\x41\x85\x43\xaf\x25\x3f\x2e\x3b\x4f\x29\x92\x8a\x73\x01\x30\xf5\x88\xbc\x07\x66\x95\xf9\x2b\x61\x54\x4b\x9c\x01\x53\xb0\x84\x69\x4d\xd5\x62\x00\x89\xdd\x79\x48\x06\xee\x5c\x77\x80\xa3\xe6\x54\x60\x5a\x75\xc5\x12\x29\xb4\x51\x65\x62\xb0\xce\xde\x58\xc9\x3b\x26\x82\xbb\xa0\xdd\xc5\xba\x03\x57\xe5\x3f\x03\xf7\x5d\x92\x24\x33\x2a\xa6\x51\x9d\x9a\x9c\xa6\x00\xfb\xaf\x83\x94\xe3\xd7\x63\x21\x40\x27\x56\xb0\xe0\x06\x40\x31\xb6\x7c\x24\x98\x61\xff\x2a\x42\x3e\x9e\x41\x65\x27\xb5\x4b\xe2\xd9\x16\xda\xd5\x89\x7e\x91\x8e\x46\xbd\x21\xb0\xed\x3d\x3b\x80\xe5\xcc\xd0\x94\x1a\xba\x83\x13\xd8\xbb\xaa\xb8\x9e\xbb\x80\x74\x05\x4e\xc3\xc5\xa4\xe3\x43\x5e\xdc\x92\x05\x8f\xe3\x9f\xe0\x24\xce\x3c\xe4\x21\xe2\xda\x58\x9c\x72\x17\x05\xe8\xdb\x05\xf2\x8c\xaf\x5e\x66\x87\xf7\xa3\x21\xb9\xa8\x4a\x33\x56\xe4\xa4\xdd\x35\x54\x47\x0b\xac\x05\xfd\x0e\x30\xba\xad\xee\xca\x92\xba\x7f\xd7\x4a\x11\x04\xb9\x04\x13\x86\x2b\x16\x87\x9b\x39\xd0\x95\x02\x91\xbc\x01\x44\x80\xf2\x94\x19\x5d\x79\xa8\x20\x1d\xb6\xc4\xc5\xf1\x3b\xa7\x8c\x02\x91\x76\x80\x75\xfa\xdc\x6a\x59\x08\xc1\xae\xa5\xa3\xb3\x96\xf2\x3f\x0a\x5c\x77\x31\x3a\x63\x39\x81\x77\x32\xed\x62\xa7\x6e\x64\xe1\xaf\x86\xa8\xfc\x37\xd1\x13\x57\x83\x52\x8f\x0d\xe0\xb6\x4a\xd7\x82\xe6\x90\xc8\xcd\xe8\x7c\x77\x23\x55\x25\x23\x0d\x43\x2a\x63\xf8\xdc\x10\x3e\x37\x7c\xdd\xde\x98\xd7\xc5\x03\xc4\x3f\xad\x3d\x41\xea\x1f\xe9\x64\x39\xb5\x24\xe5\xa6\xa3\xb9\xb3\x11\x8d\x1c\x46\x70\x34\xdf\xdd\x22\x86\x9b\x5b\x17\xe9\xc0\xb8\xa5\x16\xa7\xe4\x57\x35\x2e\xef\xa4\xa9\xa0\x29\xa1\xa7\xee\x91\x57\x9d\x46\x6e\x2b\x7c\xf0\x79\xbd\xf9\x71\x63\x30\x10\x2f\x56\x6b\x14\xde\x23\x38\x88\x7c\x56\x3c\x53\x60\x3c\xf3\xf1\x07\x16\xbd\x94\xcc\x32\xa6\x60\x09\x4e\x7b\x6a\xdc\xa2\x43\x2e\x53\xb4\xe9\x0e\x82\x8a\x1a\x64\x4c\xc1\xee\x83\x30\x41\x35\xa6\x6e\xf1\x37\x5e\xcc\x15\xce\x5b\x3b\x5e\xf0\x5a\x3e\x13\x0b\x9c\xfa\x45\x04\x5a\x54\x3d\xc9\xd4\x7e\xc8\x4a\x9d\x82\x8e\x33\xbc\x3d\x0e\xcc\x16\xe6\x42\xb3\x7b\xba\xd0\x80\xf7\x95\x34\x1f\xbe\xef\xb2\xaa\x55\x03\x7f\x64\x13\xec\xdd\xfa\x46\x6c\xa7\x3b\xb1\x5d\x6e\xc5\x20\x9c\x92\x8b\x36\x2e\x48\x55\x87\x8d\x85\x43\x9a\xcf\x2e\xd7\x68\xe0\xa7\x02\xd7\xe7\xdd\xee\x44\xea\x75\xca\xaf\xaf\x60\x08\x2f\x93\x4f\xe1\x0f\xcf\x71\xc2\xa5\xc1\x98\x59\xac\xae\x02\xa5\x01\x43\xe2\xbe\x2b\x3c\x09\x2a\xd4\xfa\x1a\xb2\xb1\x3a\x2b\x71\xa8\x34\xa6\x18\x78\x82\xc0\x17\x47\x50\x8e\x80\x8a\x85\xe3\xe4\x66\xc6\x55\x3a\x2c\xa8\x32\x0b\x54\x1f\x07\xb5\xaf\x05\xf7\xfa\x4e\x0b\xdf\xf1\x3a\xa7\x5d\xea\xe3\xb5\x10\x86\xc5\x7b\xf3\xb0\xb3\xce\xaf\x85\xeb\x53\xac\xa7\xbd\x03\xff\xca\xf5\xc4\xa9\x45\xbd\x46\xf8\x6c\xeb\x49\x63\xf2\xf1\x70\xbe\x61\x69\x90\xae\x5f\xbd\x22\x1b\x88\x4b\x57\xc9\xd8\x0b\x3a\x70\x79\x50\x88\xec\x48\x03\xab\x87\xd2\xaa\xd6\x78\x64\xd8\x73\x92\x82\xf7\xa1\x71\x95\x8e\xc4\xc2\x99\x6e\xe2\x6f\xc5\x03\x84\x53\x42\x8e\x84\x14\x78\x72\xb0\xed\x31\xba\x10\xad\xb1\x4d\x41\x13\x57\xa2\xae\x5e\x21\x34\x3a\xa9\x9e\x49\x70\x91\xda\xad\x03\xca\x0d\x3a\x92\x2e\x93\x84\xb1\xa0\x55\xc7\x25\x6a\xaa\x93\xed\xa6\xec\x4b\x5d\x6a\x09\x49\x5c\xb4\xa1\x59\x56\x69\xb3\x0e\x5c\x12\xf8\x9c\xb7\x00\x46\xec\xaf\x16\x68\xe3\x14\x7b\x28\xa2\x8e\x6e\x2f\xa5\x48\xf0\x0a\x9f\x9b\x85\x9f\xc1\x45\x93\xd5\x83\x1a\xa1\x51\xc9\xe5\x13\xb4\x3b\x45\xea\x40\x00\x26\x90\x26\x57\xc2\xbd\xce\x99\x5c\x6e\x06\x4b\x87\xc6\x34\xb9\xbb\xa7\x2a\x85\x52\xbe\x05\x35\x1c\xd3\x82\x0f\x6a\xc3\x1e\x45\x73\x80\x42\xfa\x31\x16\x1d\x07\xa5\x43\xb3\x90\x82\xba\xfa\x0c\xa1\xa5\x91\x39\x35\x3c\x01\x55\x96\x4f\x22\x2b\x62\x1e\x52\x1a\x36\xca\x0e\x02\x95\x0d\x05\xec\x6f\xf1\x36\x46\x31\x62\xee\x25\xe1\xb9\x95\x10\x28\x94\xd2\x98\x84\x88\x21\x6f\xef\xdc\x34\x53\x2b\x06\x7d\x07\x46\xe6\xa8\x15\x2a\xc9\x56\x85\xd2\x30\x7c\xb0\x68\x06\x53\x9e\x0b\xb9\x19\x34\x18\xb8\xeb\x63\x71\xda\xce\x35\x42\xd5\x81\xdd\x9e\x7b\x66\xe5\x02\xbd\x11\x61\xf5\x68\xd5\x8c\xb0\xa6\xad\x26\x29\xd7\x8d\xc2\xd4\x47\xa9\x92\x45\xe1\x0c\x24\xf9\x71\x73\x46\x70\x6f\xa0\xe6\x4c\x47\xb5\x97\xd1\x54\x3d\x65\x22\x14\x0f\x77\xe9\x2c\xe0\xe4\x36\x3f\x51\x3b\x30\x23\x0c\x08\x3d\x26\xdf\xb8\xa2\x42\x01\x71\x83\xd7\x5d\x2b\xc1\x09\xad\x2d\x4e\x76\xea\x25\x9e\xb6\x4f\x2f\xf1\xf4\x12\xcf\xcf\x5b\xe2\x09\xee\x5e\xbb\x4a\x3b\x95\x8f\x63\xa3\x20\xb9\x77\x06\xa8\x1a\xac\x33\x62\x5c\x4d\xc8\x47\x96\xc8\x39\x53\x48\xe4\xa0\xf0\xa7\xe5\xe5\x6f\x28\xcf\x2c\x89\xf3\xa4\xae\x52\x0f\x21\xa3\x6a\xdd\x34\x17\x69\xe4\x01\x9a\x0e\xcd\x73\x37\x29\x17\xe9\x67\xdb\xbb\x4b\xb2\x42\xb1\x39\x97\xa5\xf6\x2e\x0b\xa5\xc1\x63\xa6\x8d\xe3\xb7\x33\x3e\x0d\x89\xb9\xc3\x55\xa7\x62\x89\x54\x69\x15\x52\xae\x0d\x35\xa5\xae\xc7\x49\x24\x68\x4d\xdb\x9f\x81\x26\xc0\xf1\x91\xa9\xfb\x6e\x94\x14\x3d\x36\x1e\x70\x2a\x0e\xdf\xa2\xcf\x47\x55\x77\xdb\x44\x6e\x28\x95\x0b\x8c\x15\xa1\x4a\xc3\x22\xb4\x72\x08\xd0\x19\xd6\xb5\xa8\xd7\x13\x2c\xdc\x32\x0c\xc3\x0e\x2b\xaf\x93\x16\x19\xd7\xe3\x67\x27\xa8\x93\x07\x04\x78\xc6\xcf\x0b\x76\x3c\x69\x2c\xb6\xbb\xf7\x25\x79\xa0\x07\x26\x79\x88\x17\x26\xd9\xa7\x27\x26\x09\xfe\xdc\x0f\x39\x31\x1f\xbd\x27\x79\xe3\xcc\x38\xc2\xbb\xe9\xcc\xd4\x12\x0a\x84\x71\xb8\xf6\x15\x20\xdd\xb5\x66\x38\x03\x60\x12\x8c\xfd\x81\xdd\x69\x05\x6d\x0e\xef\x2e\xd9\xa7\x90\xf5\x37\x92\x63\xaa\xa2\xda\x46\x82\x07\x42\x5e\x60\x26\x20\x38\x75\x43\xe7\x92\xe5\xb5\xa5\xfe\x04\xf7\x27\xb8\x6d\xff\xe7\x3c\xc1\xe8\xf1\xdc\xc5\x21\xbf\x51\x29\x08\xbb\xbb\x20\x5c\x3a\x66\x19\xf9\xb1\x64\x6a\x41\xac\x10\x54\xb9\xf7\x40\x7a\x63\xcd\x53\xe7\x20\xe3\x8c\x2a\xed\x65\xf6\x27\xe4\xff\x60\xb2\xb9\xfc\x64\x25\x40\x88\x63\x7b\x00\x5d\x6b\x0e\x55\x0f\x55\x46\x68\x05\x08\xc6\x12\x1e\xde\x30\xd6\x64\x3e\x2b\xee\x9d\xbd\xbf\xd8\x4d\xd1\xe9\x76\xa9\x45\x76\xb9\xd8\x5a\x5a\xfc\xd9\x86\x05\x22\x20\xc2\x2f\xf5\x6a\x52\xc1\x14\x41\xee\xd8\x62\xe0\xee\xc1\x5d\xf6\x76\xdf\x18\xdd\x39\xea\x29\x45\xdb\xa6\xaa\x58\x05\xa0\x1d\x28\xe4\x6e\xd6\x03\x7c\xda\x27\xa1\xac\xf7\xf2\x40\xe8\x4a\x88\x77\x26\xe1\x9d\x92\x55\xc6\xcf\xba\xc4\x95\x88\x13\x90\x81\xcf\xfb\x35\x07\x34\x00\x5f\x6e\xa0\x16\x5d\x37\x91\xec\xae\x02\xe3\xe3\x01\xfb\xe0\xa5\x06\x34\xad\x39\xe6\xde\xb1\xc5\xa1\x76\x51\x83\x52\xe8\x19\x2f\x7c\x7e\x78\xa0\x04\x0e\x73\xc9\xb7\xe0\x1f\xe0\x87\xc0\x33\x7f\x25\x06\xe4\xbd\x34\xf6\x7f\x97\xe0\x2a\x84\x96\x4a\xc9\xf4\x7b\x69\xe0\xcd\x93\x03\x0b\xa7\xfb\x60\x50\x39\x33\x25\x07\x33\x23\xba\xb4\x41\x7c\x86\x77\x41\x01\x90\xb8\xfb\xd6\x00\x56\xae\xc9\x95\x20\x52\x79\x98\x18\x9f\x3c\x58\xbb\x21\xbc\x6d\x29\xb2\x08\xaf\x18\xc3\x81\x52\xaa\x1a\x24\x37\x0c\x17\x8c\xcb\xdc\xff\x02\xb6\x27\xb0\xc6\x07\xbf\x19\x48\x81\x4b\x0d\x9b\xf2\x84\xe4\x4c\x4d\x21\x3e\x34\x99\xed\xbe\x41\xdd\xe9\x36\x3e\x3b\x51\xef\xf8\xc3\x9d\x31\x03\x58\xdd\x5b\xf0\x5c\x7a\x28\xc3\xc4\x51\x90\x45\xe4\xb4\xb0\x48\xf1\x2f\xcb\x09\x60\x5f\xfe\x03\x29\xab\xf5\x88\x9c\xf9\x82\xa7\xf1\x6f\xce\x8a\x11\x0f\x63\x47\xb0\x32\xfd\x8f\x25\x9f\xd3\x8c\xa1\x3f\x1f\x15\x21\x8d\xa7\x9c\x2c\xb1\xe9\x81\xcb\x5b\x6d\xa9\x54\xb8\x19\x3a\xb8\x63\x8b\x83\xc1\x12\x22\x1d\x5c\x89\x83\x2a\x48\xbb\x86\x3a\x81\xa1\xc1\xa5\xc1\x01\xfc\x76\xb0\x6f\xce\xfe\x4c\xa2\xfd\x0e\x58\xe2\x0c\x42\xe7\x19\xd5\xba\x5b\x7c\x6b\x23\xb4\xa8\x31\xce\xaa\x04\x8c\x37\x51\x9b\x2a\xb8\xc8\x79\x6f\xee\xdd\x9e\x05\x5e\xfe\xdd\x3d\x8d\x3a\x41\x6f\xee\xaa\xa7\xb4\x4f\xdc\xb0\x32\xa1\x18\xa4\x2d\xf0\x31\x1c\xb5\xb8\xb8\xea\x32\x76\x0d\xbc\xbe\x05\xbb\xa2\x9c\xc4\x45\x9e\xb9\x06\x35\x98\xfb\xa8\x0e\x21\x0d\xe1\x22\xc9\x4a\x67\x52\x84\xae\xa0\x44\x77\x15\xf5\x77\x00\xce\x03\x90\xaa\x1a\xc0\x63\x93\xbf\xf6\x5d\x72\xe0\x6d\xde\xd0\xc1\x9d\x68\xb8\xf1\x42\x58\xed\x7b\xad\x93\x2d\xee\x92\xf5\x64\x9c\x49\x5d\xf6\x78\xc3\xc7\x8a\x91\xf3\x19\x15\x82\x65\x51\xb4\xab\x33\x76\x84\x72\x56\x20\x90\xb8\x22\x56\x87\xf5\x2a\x56\x9e\xbe\x89\x10\x5b\xbd\xf7\xda\xc1\x3f\xa5\xa2\x52\x7b\xab\x53\xee\x52\x35\xce\xe4\x3d\x49\x25\xb9\x87\xba\x05\x73\xcb\xb4\xe0\x52\x56\x7b\x76\x17\xcd\x14\x5c\x24\x12\x99\x17\x4a\xe6\x5c\x7b\xe7\x78\xb7\x8d\x7b\x0d\x0d\xcd\xca\x16\x39\x80\xea\x7b\x90\x95\xa2\x9e\x12\xfe\xcd\x39\x31\x54\x4d\x99\xb1\xa3\x11\x51\xe6\x63\xd6\x3a\x7e\xf5\x31\x72\x90\x7d\x4e\x25\x44\xf7\x5b\x04\x0b\xb7\xe1\xbb\xef\xde\x77\x2e\xbd\x5b\xf5\x5c\xb7\xb7\xf7\x52\x65\xe9\x3d\x4f\x91\x45\x6b\x72\x64\x1b\x1f\xbf\xfc\x4a\xb9\xf7\xf7\x3c\xed\x0c\x0e\xe8\x54\x07\x83\xf7\x83\xb2\x60\x20\x00\x07\x57\xe1\x89\x43\x1a\x6d\xe8\x71\x4c\x2e\x39\x46\x17\x41\x7f\x48\x54\x93\x8f\xb9\xa8\x22\xcc\x2a\x30\x5b\x62\x6c\xcf\x8b\x57\x4d\x34\x33\x18\x17\x02\xa1\x15\xd2\xcc\x88\xe6\x79\x99\x19\x2a\x98\x2c\x75\xb6\x68\x8d\x2a\xcf\x03\xea\x49\xc6\x3e\x21\x66\x77\x61\x72\xa1\x53\x9d\xd9\x81\xeb\x4a\x15\x46\xb9\xc4\xed\x2a\xe7\xaa\xf4\x24\x70\xbe\x10\x6e\xc4\x3e\xb1\xc4\x79\x05\x17\x59\x39\xe5\x5b\xc2\x1f\x7e\x66\x59\xcd\xab\x04\xd2\xa5\x66\x55\xa4\x7e\xdb\xba\x2e\x4f\x94\x84\xfc\x79\x39\xfc\xed\xea\x04\xe4\x29\x2b\x98\x48\x21\x25\xda\x9b\x0a\x73\x71\xf2\x7b\x85\x9c\x4b\x2f\xd6\x95\x6a\xf9\xac\x64\x35\x0a\x1e\xb9\x70\xcd\x64\x96\x6a\xc2\x3e\x19\x45\x2d\x61\xca\x2d\x09\x0a\x7d\x26\x84\x8a\xf6\x44\xe6\x65\xa4\x08\x26\x7b\xe7\xf6\x8f\x5b\x2f\xf3\x25\x96\xbc\xac\xd6\xae\x37\x16\xac\x7e\x58\xea\x7a\x24\xc4\xee\xac\xe8\xba\x87\xf0\x8a\x14\xf3\xee\x2b\x75\xcf\xc4\x87\xa5\x9a\xd7\x2b\x92\x6a\x37\x66\xd5\x97\xe9\xfc\x2c\xf2\xce\x4f\x20\x30\xb8\x4b\x12\x26\xd7\xa3\xa1\x51\xbb\x97\xcd\x82\xd0\x1b\x34\x68\x87\xb7\x11\x1f\x80\x8c\xa7\x6e\x20\x17\xd6\x44\xb4\x85\x65\xe5\x3a\x57\x0a\xb1\x8d\x8a\x3d\x46\x16\x71\x6a\xa8\x66\xa6\x9d\x35\xa5\x2e\x3a\x54\x3d\xed\x01\x8c\xf1\xcb\xfd\x84\x59\xec\xc1\x21\xdd\x07\xcb\x92\xe1\x9f\x9c\x94\x21\x6a\x2d\xad\x7c\xe1\xe1\xe3\x93\x34\xb1\x70\x8b\x8c\x63\xa4\x76\x57\x12\x6a\x5a\x97\xdc\x69\xc5\x17\xdc\x0c\xbe\xf9\xa6\x73\x2d\xd7\xa8\xa7\x97\x43\xe0\xdf\x75\x20\x38\x5c\x80\x44\x3e\xfc\xc7\x32\x56\x07\x20\xb9\x45\x58\xb6\x6b\xbf\xaf\xb5\x4d\x13\x56\x19\xaf\x2e\xb8\xbe\xeb\x92\x8c\x6c\xa9\x73\xfd\x48\x7c\x75\x7e\x49\xdc\xdb\x56\xf6\xa5\x2e\x06\xa6\x87\x66\xc6\x9a\x26\xac\x32\xda\xa6\x5c\xdf\x3d\x79\x59\xf5\x22\x7d\xbf\xcd\x03\xfc\xe9\xec\x5f\x4d\xa9\xd7\xa7\x68\x89\x72\x07\x2d\x64\x49\xee\x5d\xea\x03\x27\x35\xdf\xf2\xe2\x94\x5c\x0a\x5d\x2a\x56\xdd\xdc\x36\x87\xb2\x5c\xf7\x25\x95\x5e\x7f\x10\x96\xbc\x64\xe3\x5b\x41\x95\x01\xf1\xb8\x2b\x1a\x84\x8e\x9e\x3e\x45\x2f\x44\x1b\x3c\xb8\x9a\x78\xc7\xba\x81\x8b\xf1\x0e\x89\xcb\x7c\x23\xbb\xf3\x51\x5a\x93\x78\xaf\xdf\x84\x94\x3f\xe4\x24\x65\xf3\x13\x9d\xd2\xd7\x03\xf8\x8c\x77\x78\xae\xcf\x89\x6a\x72\xf0\xfa\x60\x44\x6e\x78\xce\x33\xaa\xb2\x45\x2d\x15\x73\xd5\xce\x32\x0b\x3f\x20\xdc\xca\xbd\x3a\x20\x47\x52\xc1\xc8\x09\x15\x24\x63\x3e\xa2\xc9\x9d\xb3\x05\xca\x8e\xc7\x4f\x4d\x5c\xc8\xa3\xda\x2f\x91\xce\x74\xc6\x89\xd4\x73\x6c\xc7\x8f\x6a\xe9\x6c\x2e\x2a\x92\xce\x85\xa5\xf3\x23\xf2\xcd\xaa\x42\xe5\x70\x64\x7c\x8b\xe7\x02\xea\xd3\xe8\x7d\x3b\x69\x70\xcb\xe6\xe0\xe7\x03\xd3\x76\x2d\x71\xca\xcd\x47\x56\xc8\x4e\x12\x02\x76\x69\xd8\xe3\xb8\xb1\x2f\xa4\xe6\x90\xa8\x94\x1a\x28\x0b\xac\x0c\x4f\xca\x8c\x5a\xb1\x1a\xad\x71\x23\x72\x71\x79\xfd\xf1\xf2\xfc\xec\xf6\xf2\xe2\x94\x7c\xe5\x46\xe2\xb1\x84\x37\x22\xb7\x71\x36\xa8\xc8\xa3\xd7\xa5\xdc\x09\xdf\x1a\x38\x32\x44\x45\x95\xdc\x11\x72\x7c\x50\x41\xae\x04\x37\x55\x7a\x64\xf4\x3b\xcb\xa4\x60\xbe\x7a\x68\x21\x9d\x35\x70\xca\xd1\x1b\x44\xb8\xc1\xec\xcf\xf5\xd1\xe0\x74\x60\xaa\xd5\x30\x95\x2d\x8a\xe0\x23\x88\x16\x15\x70\xf7\x25\xfe\xfb\xfc\xa7\x5d\x65\xdf\x90\x8d\xd6\x07\x38\xa1\xf5\xbf\x7a\x8f\xcc\x20\x24\x66\xf7\xe9\x6e\x56\x94\xb4\x26\x96\xcd\x1c\x8e\x0e\xbd\x40\x91\x2d\x25\xe1\x0f\x83\xc6\x19\xbd\xea\xc8\x36\x22\xe4\x83\x77\xd9\x86\xd0\xe3\xd5\xf9\xfc\x31\x3b\x44\x94\x15\xbe\x81\xb2\x3e\x30\xa6\x1c\xc7\x1f\x75\x29\xc0\xa6\x7c\xce\x04\x2e\x6c\xbf\x14\xca\x7f\xbe\x73\x75\xb4\x6a\xde\x4e\xff\xf8\xf8\x76\xbf\x33\xc3\xf3\xd7\x79\x5e\xee\xd8\xba\x59\x25\x32\xcf\x31\x5f\xd4\x2c\x04\x18\x56\x31\x82\x81\x2a\xec\x4d\xf3\xc1\xcc\x57\x93\x2d\xc8\xdf\xa0\x67\xbe\x53\x43\xd3\x09\xaf\x5d\x50\x82\xa8\xc4\xdc\xee\x79\x98\x5d\x92\x35\xed\x93\xa7\x38\xd2\x7e\x12\x3e\x7e\xf2\xf1\xf2\xec\xe2\xdd\xe5\x28\x4f\x9f\x9c\xb4\x30\x91\x16\x92\x0b\xa3\xb7\xeb\x37\xdb\xaa\xce\xb4\x27\x3f\xe1\xa3\x5d\xb9\x73\xe8\xe8\x71\xcc\xbf\x88\xf2\xd2\xa5\xcc\x50\x9e\xe9\x68\x0f\x8d\x2c\x64\x26\xa7\xab\xd3\x2f\x77\xd8\x9c\x5f\x60\x7e\x99\x21\x1d\xda\x5d\xdf\xaf\xa8\xdf\xa6\x8e\x46\x53\xca\xaf\x2a\x62\x57\x6b\x0d\x52\x33\x94\xbb\x78\xa1\xcb\x7d\x14\xe1\x6c\x09\x06\xa8\x48\xc2\x01\xf6\x29\xfb\xaa\x1c\x78\x51\x0d\x9b\xb6\x52\xdb\x63\x83\x6e\xbb\xc0\x66\xe9\xcf\xf6\x42\x45\x75\x98\xf9\x3e\x75\x02\x57\x28\x36\x0c\xe9\x9a\xa0\xb4\x8a\x54\x11\xc3\x8d\xe9\x9d\xb7\xde\x78\x5b\x0f\xb6\xca\x16\x4d\x2b\x4e\x25\x1f\x05\xd3\x17\xe6\x18\xc8\xb2\x45\x95\x06\xd2\x69\xd1\x74\x8a\x69\x98\x94\x33\x13\x17\x8a\xcf\x79\xc6\xa6\x90\x8a\x95\x8b\x69\x14\xfe\x1a\x07\xcc\xba\xd4\xac\x75\xa3\xeb\x3b\xfb\x57\x94\x74\x1b\xf0\xe2\xfd\x87\x5b\xc8\xea\x0b\x17\x5c\x0f\x16\xc2\xed\x07\xe1\xbc\x0d\x87\x43\x30\x19\x1c\xfd\xc3\xca\x93\x69\x76\x4c\xbe\x63\xee\x3b\x12\xd2\x0e\x2b\x28\x05\x34\x93\x21\x07\x2c\xcc\xb5\x82\x2c\xa0\x23\x5e\xef\xbb\x56\x27\xb6\xa5\x95\x95\x90\xd5\xd4\xda\x43\xe5\x53\x4c\xdd\x88\x77\x4c\x4f\x2f\x7b\xee\x91\xec\xef\x4c\xe5\xbc\x69\x75\x15\x7e\x86\x8b\x1f\x4f\x0f\x29\xd1\x8b\x3c\xe3\xe2\xae\xca\x0b\x36\x91\x16\x87\x30\x34\x81\x8b\x3b\x8f\xb1\x8a\xd1\x6c\x3d\xa5\xdc\x05\x3f\xf6\x4a\x25\xcd\x0e\x16\x40\xb0\xd0\xd9\x73\xf6\x17\x7f\xec\xdd\x35\x74\x4c\xe2\x0e\x0e\x5e\xdc\x7a\xb9\xee\x56\x06\xff\x10\x3a\xd4\x68\x9a\x20\x57\x37\xe7\x37\x57\x4f\x6a\xa1\x5e\xc7\x12\x60\x76\xcf\x28\xd5\xf1\x1f\xb7\xdd\x0e\x0f\x49\x56\x6e\x6f\x83\xea\xdd\xb5\x54\x86\x66\x7b\x22\x02\xc9\x8c\x16\x67\xa5\x99\x5d\x70\x0d\x39\x14\xba\x0a\x01\x4b\xfd\x23\x4f\x67\xcc\xdd\xec\x13\x06\x72\x8f\x0e\xae\xdd\xf9\x5f\xce\xae\x09\x2d\xed\xfe\x1a\x97\x5c\x74\xaf\x17\xee\x7e\x66\x37\x18\x61\xb0\xe3\xba\x5c\xef\x2d\xab\xf2\xad\x1e\x7b\x4d\x8f\xe1\x87\xdb\xdf\x45\x00\x0d\x45\x0a\xf6\x82\xef\x1f\xb8\xe0\x86\x53\x23\x5b\x16\x2a\xab\xa1\x40\xad\x6f\x30\x08\x94\xda\xc8\xdc\x61\xf0\x95\x6f\x01\x57\xc8\xc0\xc5\x97\x3a\x55\xd6\x02\x90\xde\x01\x62\x57\xc2\xca\xda\x34\x61\x0d\x07\xc8\x01\x24\xfd\xc4\xb1\x79\x68\xf3\x47\x67\xa0\x82\xfc\x60\xd9\x9f\x4e\x6b\xa9\xd8\x97\xea\x5a\x78\x2b\x45\x55\x34\x61\xaf\x16\x1f\xfe\x63\x57\xa2\xc0\x7f\x14\x0d\x4b\x1b\x2e\xf0\xff\x96\x34\x43\xc0\xbc\xdf\xb7\x59\xaa\x0e\xe4\xae\xf3\xad\xef\x90\x9b\x7a\xb5\x1d\xef\x83\x96\x5e\x6a\xcc\x3c\x86\xeb\x31\x8a\x0a\x6d\xf7\xa8\xae\x8b\x1d\xba\x8b\xa7\x43\x72\x64\x92\xa2\x75\xed\xfe\x47\x72\x6d\xcf\x4a\x51\x2b\xe4\x0c\x33\xbf\xc5\x6d\x79\x1b\x5c\xdb\xdb\x4e\xf2\x51\xae\x86\x00\xcb\xbb\x5a\x55\x5c\xaf\xb0\x5b\xf1\xba\x90\xf5\x93\xb7\x5c\x1b\x5f\x90\x01\x5e\x70\xed\xf2\x08\x83\xdc\x75\x6d\x15\x39\x5e\xfc\x8d\xa6\xa9\x3a\x45\x2e\xe5\xab\x2f\x2b\x90\xbe\x7c\x92\x2f\x2a\xc2\x5d\xe2\x91\x59\x14\x2e\x01\xe0\xed\xf9\x35\xc1\x02\x29\x7f\xf8\x1d\x56\x7e\xfd\xaf\xdf\xfc\xee\x55\xeb\xed\x7e\x3e\xe7\xf1\x1d\xed\x18\x7b\xbf\x63\x7a\x11\x7e\x83\x35\xff\x40\xbb\x12\x90\x4d\x6e\xd0\x1d\xcf\x52\x56\x77\xd4\x11\xb1\xec\x2e\x07\x7a\xbf\x9b\x04\xd3\xfb\xd9\x3d\xab\x9f\x1d\x09\x11\x25\x48\x24\x3a\xa2\x4b\xdc\x15\x42\x0c\x97\xc9\x0e\x52\x9c\xeb\x97\x47\x71\xb6\xc2\x66\x3b\x16\xd5\xb1\x27\xbe\x8c\xf7\xe5\x6f\x2a\x17\xf6\x8b\xf7\x37\x7f\x7b\x7b\xf6\xe5\xe5\x5b\x98\xa9\xbb\xbf\xb7\xa8\xc1\xc5\xce\xfe\x53\xed\x51\xad\x8d\xf2\xba\x1d\x20\xdd\xae\x65\x44\xe3\x42\x46\x90\xf7\x6f\x6e\xba\xde\xc5\x3c\x54\x40\x17\x93\x56\x6b\x7f\x5a\x6b\x1b\x54\x35\x61\x6a\x7f\xf1\x23\x3b\x1b\xe5\xa2\x44\x5a\x35\xfd\xcb\xee\x14\xce\xf0\xc1\x2a\xd2\xd6\x1d\x20\x2f\xe0\xde\xc1\xae\x17\x61\xb0\xf7\x1b\x87\x47\x82\x55\x5b\x39\x40\x75\x0f\x2c\x3a\xc4\x5e\x5e\x04\xb0\x87\x14\x69\x9b\xb2\x34\xdb\x52\x6b\xa6\x43\xf5\x85\x17\x8a\x29\xc5\xaa\xf4\xcc\x5d\xa8\xd7\xca\x01\x6a\xe5\xca\x6a\x77\x31\xb5\x58\x8a\x75\xe9\xcc\xbd\x87\x02\x75\xca\xab\x2e\x68\xb2\xd7\x82\x2a\xd5\x2b\x7c\x03\x41\xee\x4f\x4f\x00\xe1\xb3\x7b\x74\xa4\x0d\xe3\x75\x45\xe4\xd0\xb1\x19\x25\xd7\x69\x87\x7c\xa1\x8f\x42\xfa\x08\xc4\x38\x9c\xee\x99\xb7\x8f\x3c\xad\xb6\xf3\xdd\x8e\x8a\xce\xbe\x95\x9c\x62\x26\x8d\x14\x3b\x7b\xc9\xaf\xea\x5e\x3f\xd0\xd7\xd0\xe2\xbc\x2a\x63\x13\xd5\x78\x04\x0f\xca\x70\x19\x61\xe5\x39\xcf\x2e\xa4\xf0\xd7\x12\xf5\x4b\x89\x27\x17\x41\xd2\xab\x8b\x3d\x1d\xbe\xcf\x37\xc4\xb3\xab\x31\x78\xaf\xce\x20\x69\xe7\x98\x14\xdb\xc5\x43\xec\xea\xc2\x89\x66\x3e\xe0\x44\x3b\x84\x24\xeb\x31\x72\x6f\xac\x53\x2a\x73\x2f\x55\xf7\x50\xef\x7a\xc7\x86\xaf\x82\xfb\x6d\x29\x14\xeb\x25\x9e\x1e\x9c\xe3\x33\x9f\xa0\x1b\x38\x41\x8d\x04\xe7\xeb\x4e\xd2\x63\x1c\xa4\xe7\x3d\x40\x0f\x65\x54\x8f\x1b\xe5\xbb\x57\x21\xdd\xa3\x5b\xc7\xa5\xfa\x6e\xce\x98\x60\x37\xa9\xa2\x16\x14\x4c\x2e\xd1\x89\xdb\x1b\x75\x50\x12\x4b\x50\x76\x21\x0c\xbe\x0f\x1a\x70\x31\xd1\x73\x96\x59\xa8\x4a\x11\xa7\x88\x76\x61\xbc\x03\x82\x59\x96\x73\x5a\xf8\x9a\xdc\xf2\x5e\xdc\x53\x95\x92\xb3\xeb\xab\xfd\x50\x83\x0e\x7e\xd6\x88\x49\xed\x32\x7a\xd5\x3d\xad\xab\x9e\x58\xe6\x66\xc6\xa0\xb6\x22\x19\x73\xa3\xab\x9a\x7e\xcc\xc4\x7a\xa5\xa5\x82\xe1\x2e\xcb\x9e\x65\x7b\x6e\xdd\x48\x11\xc3\x14\x44\x26\x86\x66\xbe\x88\x80\x2b\x93\xf3\xea\xd5\x2b\x34\x85\xbd\xfa\xfd\xef\x7f\x8f\x95\x95\x52\x96\xf0\x7c\xb9\x21\xb4\xfa\x5f\xaf\x5f\x8f\xc8\xff\x9c\xbd\x7b\x0b\x95\x1f\x0b\xa3\x31\x2b\x09\x8e\x8c\x95\xe0\xa3\xce\x7a\x40\xfe\xcf\xcd\x87\xf7\x55\x99\x98\xfa\xaf\xae\xa0\xb6\x5b\xde\x88\x5c\x44\xfe\x4f\xb1\xa1\x8b\x9a\x99\x2b\x68\x64\x08\x9d\x4c\x10\x31\xc6\xbe\x9c\x2e\x1e\x38\x1f\x3d\x0e\x55\xc1\xb1\xfe\x88\x45\x89\x0c\x1c\xb3\xac\x4a\x8e\xa6\x41\x9f\xd9\x00\xfd\xcc\x60\xac\x40\x26\x61\x2a\x03\xac\x25\x3f\xd1\x50\x85\xa4\x4a\xff\xa7\x98\xb6\x42\xa9\xab\xae\x88\x83\x55\x3b\xa3\x59\xeb\x5c\x0f\x8f\x71\x03\xd4\xba\x3a\x46\xdd\x74\xef\xce\x90\x4f\xdf\xea\x72\x17\x57\x65\xea\xff\x81\xb7\xa1\xdb\x9c\x84\x1f\xe9\x46\xa6\x36\xd7\xeb\x30\x1b\xdc\x3a\x97\x25\xa0\xa2\x13\x34\x93\x50\xc9\x2b\xec\x74\xc5\xc5\xa2\xa2\xf7\xdb\x97\xd2\x39\xf9\x62\xd7\x04\xbc\x48\xa8\xde\xd1\xd6\xe5\x7c\xea\xfe\x22\xbe\x77\x2d\xaf\x02\x1d\xcb\xd2\xf8\x3b\x6c\xf7\x3b\x04\x60\x63\x95\xf5\x0e\x69\x24\x77\xc8\x3c\xb9\x4b\x06\xe2\xce\x49\x4c\xeb\xf7\xcd\xc0\x13\xea\xa2\xc4\x80\x30\x9a\xcc\xc8\x1d\x5b\x0c\x91\x6e\x15\x14\xa2\x79\x00\x2a\x17\x16\x16\xb5\xc2\x27\x55\xed\x1a\x2b\x1f\x3b\x90\x79\xc7\x80\x88\xfb\xf8\x68\x20\x2f\x84\x6a\x27\x2f\xb9\x34\xa2\x22\xb2\x14\xf8\x5c\xd5\x51\x3d\xe2\x90\x37\x14\x8b\x91\xd7\x83\x54\xec\x79\x63\xa9\xed\xa6\x37\x7d\xb9\xf2\x86\xb0\x74\xd0\x71\xb7\x52\x2c\xf5\x76\xc5\xb7\x9d\xf0\x07\x1f\xa4\x3e\x3b\x73\xe4\x51\x01\xe5\xfc\x5c\x25\x27\xd7\xd6\x43\x29\x00\xa2\x16\x44\xa3\x99\x29\x1d\x68\xb0\x5e\x58\x29\x32\xa6\x35\xe1\xb0\xc2\x9c\xaa\x3b\xe6\x13\xc6\xd0\x6c\x44\xae\xed\x24\x43\xfe\x2a\x4c\x8b\x3c\x47\x17\x3b\x7b\x66\xe3\xe8\x20\xfb\x91\xc3\xd1\xe8\x10\x09\xfc\x8a\x58\xa1\x0e\xf8\xb1\x5b\x4e\xdd\x1d\x72\xe9\x36\x4a\x7b\x17\x1a\x33\x03\x5b\x91\x0f\x32\x5f\x4b\x88\x82\x33\x33\xcf\xc0\x68\xeb\x24\x4a\xcb\xcb\xd9\x21\x01\xec\xae\x79\xcb\x77\xc9\x5a\xde\xea\xde\xa2\xfe\xec\x9e\xad\x7c\xa7\x5c\xe5\xeb\x32\x95\xbb\x9d\x72\xa7\xad\x7b\x0e\xe7\x07\xa4\xd8\xce\x3b\xa5\x79\xf5\x4f\xdd\x48\x09\x72\x47\x2d\x4b\x4f\x2b\x19\xd1\x25\x7d\xca\xd8\x67\x25\x14\x5e\x4d\x56\x55\x9d\xf3\xc1\x82\x91\xbc\xec\x69\xa8\x85\xc0\xf3\x4b\x83\xdd\x6a\xb9\x90\xce\xe2\x61\xf3\xe9\x22\x2e\x36\x9f\x76\x97\x81\xcd\xa7\xae\xb0\x45\x61\x49\x81\xe8\xc7\x5e\xfc\x00\x52\x23\x21\x67\x77\x75\x04\x47\xe4\x9d\x63\x0a\x88\x8c\x74\xac\x65\x56\x9a\x10\xc9\xb4\x82\x63\xc0\xa0\x3e\xc3\x37\x86\x94\xfa\x66\x11\xff\x00\xce\x89\x64\xb9\x2b\x2b\xc1\x67\xa7\x23\xde\xb5\xe6\xde\x4f\xd6\x99\xe4\x01\x30\xf4\xa2\xc4\xce\x70\xf4\x03\x84\xbc\x13\xde\x97\xba\x26\xe3\x80\x27\x89\xd1\x28\x40\x79\x71\xc5\x15\x7a\xea\xbc\xc4\x76\x56\x1b\x37\x57\x67\x98\x38\xbb\xbe\xda\x49\x03\x88\xfa\xaf\xd1\x01\xe2\x16\x3f\x61\x2d\xe0\x0a\xb5\x80\xb8\xec\xce\x45\xb5\x72\x67\x52\xb6\x64\xe7\xc5\x8b\x91\x4b\xd3\x7e\x63\x89\x65\xec\x74\x5a\xcf\xa1\x87\xc6\x9e\x8a\xac\x46\x79\xf7\xfc\xad\x23\x1c\xe2\x97\x2e\x72\x3e\xa1\xf8\x08\xf0\xe8\x54\x2e\xdd\x3f\xcb\xd5\xec\x60\xb1\xe4\x06\x4a\xdb\xa0\x3e\x18\x29\x96\x85\x4c\x4f\x5d\x29\x69\x21\x24\x16\x90\xd3\x03\xac\x8d\xa3\x07\xa8\x30\x5a\x29\x22\xba\x2b\x56\x91\xc9\x7d\x67\xb9\x61\xa7\x2a\x47\x0f\xa9\x73\x64\x37\x10\x56\x7e\xdd\x75\x17\xc9\x03\xcb\x16\x91\x88\x35\xed\x56\x08\xa5\xb6\xa7\x6e\xa4\x50\xe7\x3d\x99\xb1\x9c\x62\x0e\x3f\xbf\x3c\x4b\x65\xee\x15\x37\x86\x61\x2e\x25\xa6\x72\x4d\xe4\x64\x50\xbb\x33\x38\x98\xbf\x3e\xd8\xa5\x1c\xcc\x03\x2b\xf6\x90\x6a\x17\xf6\x00\x8c\xeb\x9a\xc8\x66\xf1\x1a\x74\x89\x0c\x12\x6f\x8a\x86\x41\xc2\x32\x98\x39\x42\xef\xc9\x17\xbe\x0f\x3d\x6a\x57\xfd\x69\x10\x04\x86\x5e\x7f\xea\xf5\xa7\xbd\xe8\x4f\x11\x63\xf1\x04\x67\x85\x2e\x15\x3b\x0c\x7b\x85\xaa\x0a\x64\x8a\x12\xf0\x58\xd4\xf4\xaa\x94\x54\x75\x8b\x9b\xd5\x87\x0e\xbd\x82\xe5\xf0\xb8\x34\x93\xe1\x1f\x08\x13\x89\x4c\x71\xf3\xed\xf8\x4a\x1b\x10\x6d\x2a\x9d\x24\x9e\x4b\xee\xbf\x15\x5b\xed\x60\xec\x5d\xb7\x6e\x27\x3a\xe0\xaf\x02\xdf\xec\x89\xc1\x57\x6c\x3d\x04\x13\xfb\x5a\xd9\x3e\xd7\x80\xe3\xef\xd5\x25\x24\x96\x95\x06\xe4\xf6\x15\x73\xc9\x11\xbe\x1c\x25\x45\x39\x70\x0d\x46\x39\xcb\xa5\x5a\x0c\x42\x23\xfb\x63\xad\x97\x6b\x71\x0c\x32\x41\x52\x2a\xab\x01\x66\x8b\xcf\x55\x3a\xf0\x00\x7a\x62\xe1\x20\xec\x53\xb7\xa2\x41\xf1\x53\x47\x89\x2a\xa9\x18\xe8\xf7\x55\x11\xa5\x49\x48\x79\xa8\x07\x95\xda\x69\xdf\x32\x31\x27\x73\xaa\x3a\x54\x41\x8f\x9f\x07\xca\x03\x29\x9f\x73\xbd\x5b\xbd\xc3\xc6\xd2\x6f\x1c\xd3\x40\xbb\x8e\x2c\x4d\x51\x1a\x47\x29\xfd\xa9\xf0\x21\xf3\xe1\x34\x34\x84\xa2\xd7\x07\x3b\x4d\xe3\xb3\xa9\x2f\x8c\xcf\x8e\x55\x86\xf1\x79\x68\xad\xe1\xfa\x28\x3b\xa3\xcd\x5e\x2b\x87\xfb\xc7\xa3\xc5\x3e\xce\x61\xc5\x22\xab\x3c\x0f\x5e\x38\x7d\xa2\x83\x86\xee\x26\x3b\xd9\x6d\x5c\x86\xfa\xd5\x26\x1b\xf7\xe3\x4f\xd8\x5a\xb3\xdf\x3b\x5b\x17\x5f\xf8\x33\xbf\xb0\xbd\x71\xf5\x0c\xfa\xdb\xda\x56\x28\xd8\xdf\xd6\xf6\xb7\xb5\xfd\x6d\x6d\x6f\x6d\xe8\xad\x0d\xfd\x6d\x2d\xe9\x6f\x6b\xf7\x02\xc3\xfd\xdd\xd6\xa2\xa8\xb7\xea\xce\xd6\x09\x7b\xd5\x85\xed\x93\xde\xd7\xba\xc2\x3d\x67\x49\x22\x4b\x61\x6e\xe5\x1d\x6b\x7d\xe9\xd0\x90\xff\x97\xc6\x81\x04\x08\x6b\xf4\x81\xe5\xc6\x4f\xa6\x1c\x74\x97\x4a\x3a\xc9\x16\xbb\x48\x15\xb4\x4c\xb9\x95\xfc\x77\x46\x33\x3f\x40\x9c\x9c\x48\xa4\x2c\xad\x7e\x70\x47\xd9\x58\x58\x8f\xc8\x19\x51\x2c\xe1\x05\x77\x65\xe4\x29\xbe\x47\xc4\x0b\xb5\x11\xb8\xd1\x2c\x9b\xb8\x1c\xf5\x22\xae\xf5\x53\xc9\xef\x8e\x0e\xae\xfc\x0c\x72\x28\xe9\x33\x99\xfb\x5a\x48\x8a\xfd\xc3\xb3\x36\x37\x9b\xdb\x78\x84\xd8\xbc\x02\x4b\xa9\x95\x18\x82\x8f\x15\xdc\x05\x58\x3f\xf6\xf1\x67\x9f\x0a\xae\x00\x79\x6f\x58\x22\x45\x9b\x9a\xaa\x6b\x36\x68\x69\xa4\x8a\x3f\x81\x6d\x94\xa5\x24\x2d\x55\xa8\x99\x3a\xa7\x19\x4f\xb9\x59\x84\x5b\x3b\x57\x5e\x8b\xe2\x89\x09\xdb\xa8\x2b\x30\x12\x5a\x14\x4a\xd2\x64\xc6\x74\xf4\x35\x14\x50\x5c\x10\x59\xf0\x7d\xc7\x12\x70\x20\xa3\x40\x1f\xcb\x20\xb3\x05\x51\xd2\xf8\x8b\xf7\x35\x1f\xbc\x8d\x06\x83\xee\xc8\xe5\x8c\x5a\xc0\xed\xbc\x8c\x87\xc0\x59\xf1\x49\xfc\x87\x26\x32\x4b\x7d\x0a\x93\x3f\xbc\xb2\x42\x61\xe2\x70\xd0\x12\x3f\x48\x70\x61\x24\xc9\x2c\xc3\xb6\x04\x71\x7d\xe7\xdf\xfc\x96\xcc\x64\xa9\xf4\x28\x4e\x3a\xf0\x1a\xde\xa1\x7e\xe7\x85\x4a\x43\x32\x46\xb5\x21\xaf\x5f\x91\x9c\x8b\xd2\xf2\xa9\xce\x68\xd3\x5d\x0e\x8a\x24\xa0\xdf\xfd\xb6\x75\xbf\xae\xb2\xcf\x5a\xa9\xa7\xc0\xdc\xc8\x4e\xf4\x71\x27\x09\x03\xe3\x30\xb3\x78\x43\x10\x72\x44\x37\x86\xb6\x30\xf2\x11\xce\xd7\x8f\xa5\x1c\x2f\x4c\x97\x20\x4a\xd7\xa3\x1e\x3d\xf9\x7f\xdd\xcb\x36\xc9\x53\xaa\xdc\x29\x1b\x3f\xfa\x28\x15\x2e\xa6\x5c\x9b\x2d\xf5\x2d\xaa\xf8\xca\x8d\xcd\xda\xb3\x95\xa9\xd5\x0e\x3a\xc6\xca\x40\x1f\x2f\x11\x7b\xdb\x52\x92\x30\x2c\x66\x79\x51\x55\x4a\x12\x12\xdb\x6e\x1d\xfe\x99\x13\x8e\x79\x04\xd9\x43\xd6\xf4\x96\x4b\x6d\x27\x74\x79\x94\xe8\xbc\x56\xec\x56\x3f\x05\x9a\x8b\x29\x26\x39\xcf\xcb\xcc\xf0\x22\xab\xd6\xfd\xd1\x77\x70\x84\x3c\xb6\xb9\xd1\xc8\x4c\x44\x31\xb0\x18\xb3\x4d\x81\x7d\xf2\x28\x8c\xc5\x84\xc1\x5c\xdd\xca\xf2\x83\x82\x2a\x1a\x80\x07\x95\x74\xf5\xb1\x33\xdf\x51\xb8\x51\x74\xe9\x30\x6d\x2f\x9a\x55\x33\x8e\x6e\x91\xf6\x89\x34\x86\x09\x2a\x5a\x98\xaa\xeb\xe9\xb9\xa0\x13\x91\xf7\xc1\x99\x0c\xcb\xa0\x34\xb0\xc5\x09\x35\x5f\xd2\xe4\x8e\x89\x14\x8b\x46\xc1\xb2\xd3\x85\xa0\xb9\xcb\xb6\x15\xd5\xe3\x6e\xf4\xd7\x03\x67\x98\xc0\xf0\x3d\x1f\x66\x8c\x5c\x77\x9f\x30\x28\x75\xe7\x54\x36\xb6\xcb\xb6\x73\xae\xd1\x64\xa3\xf8\x3c\x61\x9e\xff\xdb\x7e\xfb\x9c\xfa\xbc\x45\x2c\xfd\xd2\xe4\xfd\xf6\x44\xf8\x0b\xe4\x3e\x58\xce\x21\xa9\x16\xcd\xec\xd1\x5e\x84\x98\xd1\xc6\xe6\x8e\x17\xfb\xad\x7a\xa3\xc6\x5d\x22\x7f\x0f\xd5\x38\xad\x1f\xe2\x8f\x34\x95\x9a\x7c\x99\xc9\xe4\x8e\x5c\x30\x10\xba\x1e\xb3\x3c\x8b\x1a\xa7\xcf\x99\xc2\x3b\xa7\xd3\x6d\xf7\x6c\x43\x92\x4b\xc1\x8d\x54\x9b\xe9\xc5\xd3\x95\x9d\xec\xd3\x3d\xaf\xcd\x50\x65\xb1\xf9\x25\x27\x7b\xb6\xe8\xd6\x75\xe3\xa1\x53\x50\xcf\xe0\x74\xe2\x2b\x57\x05\x6c\xc7\xb3\xf6\x8b\x99\xbc\x1f\x1a\x39\x2c\x35\x1b\xf2\x16\x17\xba\x1d\x96\x79\xc7\x16\x70\x8b\xdd\x71\xa1\xae\x5b\x4d\x67\x30\x12\x2c\x50\xf0\xde\x72\xee\x8f\x5f\x5e\x7c\xa3\x99\x1a\xc5\x32\xe0\x09\x33\xc9\x49\xc2\x8a\xd9\x89\x1b\xe1\x45\x02\xc5\x13\x91\xae\x50\xf1\xfd\x90\xcd\x24\x32\xcb\x5c\x60\xb6\x9c\x90\x73\x56\xcc\xc2\xc0\x4f\xbd\xea\xe7\xcb\x08\x5c\x48\xd9\x35\x11\xea\xa1\xed\x53\x3f\x44\xf0\x06\xcf\x50\x84\x4c\x6a\xdc\xad\x08\xc5\x53\xa1\xcf\x8b\x2e\xb5\xf9\x88\xc0\x79\xdc\x74\xca\x87\xb5\x7c\xca\xb1\xbf\x67\x3d\x59\xb2\xf7\x18\xa9\x91\xa0\xab\x09\x0a\xdd\x29\x4b\x89\x9c\x33\xa5\x78\xca\x34\x09\x34\x28\xd6\x52\x79\xf6\xd4\x70\xeb\xf3\x36\x3f\x7b\xde\xe6\x1d\xd4\xa1\x43\xd0\x87\x6a\x64\x0a\xde\x2c\x91\x29\x9a\xe6\x5c\xbc\x38\x42\xa5\x13\x9a\xb1\xab\x0f\x1d\xf4\x0f\xd7\xa3\xae\x82\xdc\xb8\x97\x51\xfe\xb4\x2d\x59\xc9\xbe\x0e\x78\x43\x84\x4c\xb7\x99\x54\x1f\x41\x91\x98\x52\xc3\xee\xb7\xb2\xc3\x61\x45\xa8\xb6\xb7\x04\xe1\xf4\x39\x55\x8e\x17\x91\x23\x30\xc2\x79\x4c\x7a\xb6\x4f\xa6\xea\x76\xad\xab\x71\x12\x7b\xc5\xe9\x77\x9b\x49\x77\x3d\x06\x9f\x5d\x5f\x91\xaf\xb0\xf9\x7e\xb3\x17\x2a\x69\x50\x0c\xbc\x90\x39\xe5\x5d\x8b\x6c\x34\xbb\x37\xb3\xaf\xc6\x4b\xb8\x0e\x6d\x89\x6b\x1c\x15\x70\x99\xf0\x69\x69\x75\x3a\xa7\x87\xbd\xa8\x04\x73\x4b\xa2\xcb\xcb\x4d\x30\xf7\xf0\x6a\x10\x91\xc9\xc9\xfb\x45\x56\x12\x8b\xdf\x4a\x60\x25\xe1\x0e\x94\x68\x26\x34\x87\x0b\x99\xe8\x56\xdc\x55\xfa\xc3\xd2\x92\xe8\x04\x89\x22\xce\x80\xbc\x95\x53\x2e\xfc\xe9\x95\xee\xbe\x6e\x42\x79\xd6\x16\x18\xbd\x4c\xf2\xec\x32\x89\xd6\xd9\xa5\xa0\xe3\xac\x8d\xbb\x41\x1d\xd5\x42\x47\xf2\x26\xa3\x53\xc2\xe0\x8f\x93\x94\x6b\xfb\x7f\x72\x73\xf3\x16\x8c\xf0\xa5\xf0\x12\x33\x18\xa8\x1d\xed\x0b\x41\x0a\x78\x10\xf7\x7b\x76\x90\xf4\xec\x90\xfd\x2f\xea\x49\xb8\x48\xed\xc4\xa3\x52\x70\xe8\x24\x05\x2d\x30\x1f\x62\xf0\xf9\x45\xb7\x81\x31\x23\xb7\x33\x9e\xdc\x5d\x47\x76\x77\xa9\xec\x3b\x11\xbd\xaa\x31\xb0\xe6\x6f\xfb\xa4\x96\x6e\xaa\xd7\xdd\x55\xe3\xa8\xa7\xe7\x03\x9e\x60\xdc\xb8\xf5\xc3\x6f\x54\x6b\x99\xf0\xea\xce\x05\x6c\x34\x15\x73\x48\x81\x39\xec\x77\x4d\x20\x1e\x74\x5d\x0e\xca\x1f\x2b\x38\x9a\xdf\x4d\x5f\x1d\x57\xc7\x1c\x8c\x0b\xbf\xea\xbd\x2e\x01\x71\x66\x87\xd4\xe8\x55\xc7\xe5\xd4\xe8\x5e\x18\x6e\x5c\x2c\x78\x37\x75\xb7\x79\x5e\x10\xf3\xb5\x39\x97\xb6\x2f\xa4\x48\x77\xa9\x09\xf7\xb6\xf0\x36\x61\x1b\xab\xd4\xf0\xc6\x6d\x22\xbe\x73\x57\x0d\x70\xe6\x0a\x59\x94\x19\xfa\x73\x3c\x3c\xbf\xbb\xb7\x19\xe3\x77\xf6\x74\xf5\xf0\x14\x59\x4b\x0f\x63\xc7\xde\xee\x9e\xce\x3f\x8d\xdc\xa5\x91\x70\xf7\xea\x77\xbf\xfd\xed\xe7\x9e\xcd\xb4\xad\x0a\xfe\x18\xe9\x4c\x5b\x9a\x68\x57\xc4\x17\x5d\xf5\xf1\x45\x3f\xdf\xf8\xa2\xc7\xcf\x42\xbb\xe7\x08\xa2\x8e\xbe\xb9\xdd\xfc\x72\xdb\xc7\x08\xb5\xf6\xde\xed\xea\xb9\xdb\x21\x0a\x68\xbf\xb1\x3f\x9d\x7d\x59\xbb\xc4\xf9\xf4\xd1\x3d\x3f\xd5\xe8\x9e\x5d\x7c\x59\xbb\x47\xf2\x74\xf1\x61\xfd\x29\x46\xed\x74\x38\x9c\xed\xa3\x4b\x1e\x1c\x53\xd2\x3d\x09\x60\x77\x7b\xda\x2e\x05\xa9\xaa\x9e\x2b\x35\x48\x1f\x54\xee\x73\x8f\x1d\x1e\xea\x28\xb5\x98\x91\xf6\x04\x3e\x89\x42\x42\x3a\x68\x63\x38\xbc\xec\x52\x1b\xd2\xf5\xf9\x70\xd3\xb8\x98\x09\xaf\x9f\xe7\x3e\xe6\xe7\x70\xe1\xd1\xd7\x74\xf9\x4c\x4c\xee\xba\x96\xad\xc5\x5b\x2b\x80\x04\x00\x23\x97\xe3\x38\x4b\x64\x75\x74\xce\xae\xaf\xac\x0e\x0e\x61\x44\x34\xd3\x23\xb2\x82\xcf\x7b\x73\xa9\x93\x0b\x3c\x7f\xa7\xc6\xb0\xbc\x30\xed\x77\xbd\xb7\xb8\x3f\xbb\xc5\x7d\x8f\x16\xc0\x59\x99\x53\x31\xb4\x27\x0a\x6c\xee\xb5\xdb\xba\x06\x65\x1e\x11\x77\x76\x90\x3d\x81\x05\x04\x82\x0b\xea\x85\x8d\x69\x54\xe6\xf2\x71\xcc\x9e\x30\xf6\xce\x2b\x47\xbe\xda\x38\x69\x89\x5c\x72\x78\x75\xcb\x09\x50\xf0\x87\x2a\x62\xce\x35\x35\xdc\xcc\x18\xf2\xf0\x6b\x08\xc8\xa9\x5a\xd5\x25\x69\x14\xa5\x69\x96\xc9\x7b\xfc\x76\xcc\xd7\x2c\xf4\xed\x5c\x5c\xa4\xd9\x98\x91\x9c\x5b\x1d\xdd\x19\x58\xe3\xe9\xe0\x95\xa9\x95\xc8\x99\x42\x81\x57\xb9\xcb\xb6\x1b\x66\xdc\x46\xc1\x46\x5b\xfd\x56\xa0\x43\xb8\xfd\xb7\xf7\x2a\x82\x6f\x7b\x9a\x30\x66\x33\x3a\xe7\xb2\x54\xd8\xdb\x48\x72\xe0\x7e\x02\xde\xb0\x90\x65\xb0\x77\x61\x31\xcc\xb0\x3a\xbd\x02\x4e\xef\xab\x1f\x41\x15\x48\xa5\x37\x4d\x0c\xd9\x27\xae\xcd\xf2\x5a\x3c\x88\x7c\x1a\xbc\x7d\xe1\xcd\x5c\x17\x96\x2d\x74\xae\x6a\x57\xeb\x57\x97\x57\xe6\x37\xf0\xd3\x67\x54\xd3\x6e\x6b\x76\xd7\x27\x13\x81\x7e\x86\xe2\x4f\xb8\x09\xcb\x78\xb2\xe8\x5c\xee\xad\xd1\xdb\x13\x6d\x1d\xee\xd0\xec\x7b\xf2\x25\xd5\x2c\x25\xef\xa8\xa0\x53\xd4\xf7\x8e\x6e\xae\xbf\x7c\x77\x6c\xf7\x15\xf4\xc9\xab\x8b\x95\x17\x6d\x37\xf1\xe0\xef\xf7\x19\x2f\xb2\xb4\xf0\x1d\x58\xd5\x52\xff\x1d\x17\xbf\xd7\x40\x18\x12\xf8\x50\xbb\x64\xbd\x2b\x58\xd0\x75\x33\x84\xb5\x59\xf3\xb3\x41\x60\xe6\x79\xfa\xc0\x2a\x9f\x5c\x68\x43\xb3\xec\x3a\xa3\xe2\xac\x28\x94\x9c\xaf\xd6\xc6\x6b\x73\xf5\x0d\xfd\x4c\xd1\xcd\xc3\xbf\x2c\x10\xf4\x70\x85\x2d\xc8\x55\x35\xfe\x88\x5c\x99\xa0\x85\x4b\x01\x2c\xf5\xe0\xac\x34\x32\xa7\x86\x27\x07\x56\x59\x3f\x78\x47\x45\x49\xb3\x95\x4e\x57\x1b\x97\xb1\x4e\x44\xdc\xd8\x69\x7d\xea\xba\x16\xdd\x36\xca\x1a\x9b\xfb\x1b\xaa\x2c\x75\x3a\xbf\xf9\xb6\x53\x5f\x6d\xa8\x29\x97\xa8\xf0\x06\xce\xb0\x9e\x17\x0c\x49\x46\xb5\xf9\xa6\x48\xed\xa1\x6f\xfc\xba\x89\xe0\x27\xd4\xd0\x4c\x4e\xff\xc2\x68\xb6\x1a\xc3\x6b\x78\x72\x1e\xb7\xf6\x06\x28\x77\xe1\x5f\x8e\x43\xc3\x43\x4d\xac\x80\xed\x63\xe0\x15\xcb\xd8\x9c\x0a\xe3\xbb\x63\x71\x75\x7d\xe8\xd6\x0f\x58\xc4\x2b\xe3\x6b\xca\x0c\x53\x39\x17\xf5\x31\x6f\xa0\xed\xb9\x14\x29\x47\xb3\x23\x18\xd4\xb0\x47\x7d\xdc\xf5\xa8\xb6\xee\xa6\x61\xc3\xdd\x42\x3d\xbb\x66\x34\x9f\x3a\x28\xb0\xd9\xd8\xc9\x97\x33\x7c\x09\x37\xed\xb5\xb9\x2d\x41\x8a\xdc\x09\x2b\x18\x42\x1e\x91\xd5\x64\x6b\xab\x9c\xb0\x4d\x3e\x18\xfa\x3d\xc6\x29\xac\x77\x1c\x1d\xba\x79\xaf\xbb\x83\xd8\x84\x62\xf8\x6c\x97\x2c\x9a\x53\x59\x4f\x53\x57\xe1\x5d\xe8\x86\x91\x2c\x8d\x82\xfc\xb5\x46\xeb\x79\x40\x2b\xc1\xab\x9d\x8c\xd4\x36\xab\x7d\x9d\xd6\x56\x39\xd8\x97\x54\xd9\x16\x12\xe3\x56\xa6\xd5\x32\xb9\x7c\x5d\xb1\xbe\x72\xfe\x7f\xca\xa9\x22\x94\x14\x9c\x61\xf2\x13\x2a\x1c\xb0\x80\xb3\x30\x9a\xba\x97\x96\x83\x59\x95\x10\x7e\x1b\xb8\xcb\x70\x34\x2e\x3b\x5f\x0b\x6f\xa0\xa6\x98\xfc\x03\x2e\x2e\x4e\xbe\x92\xce\xc8\xeb\x82\x74\x2d\x0d\x00\x4e\x3e\x20\xba\x4c\x66\x84\x6a\x3b\x35\x8b\xd0\xf6\xc4\xb3\x51\x4e\x05\x9f\x30\x6d\x46\x21\x4b\xb0\xfe\xfe\x37\x3f\x8c\xc8\x1b\xa9\x88\x73\x54\x1f\xf8\xac\x1a\x6e\x9e\x15\x5e\x70\x8d\x8b\x09\x7d\x2b\xad\xb5\x90\xa9\x9b\xf4\x3d\x4c\xd6\xd0\x3b\xcb\xc3\x70\xb2\x25\x83\xab\x8b\x53\x72\x60\xc5\xc4\xe8\xd3\xff\xb2\x6c\xe9\x3f\x07\xe4\xe8\x1e\x98\xf6\x81\xfd\xf3\x00\x3f\x18\xdc\x26\x63\xa5\xba\xfa\x30\x06\x4b\x2a\x3e\x9d\x32\x85\xea\x23\x81\xa0\xc2\x63\x97\x15\x44\xc8\xa8\xb1\xbf\x94\xae\xd4\xcd\xe6\x44\xbe\xff\xcd\x0f\x07\xe4\xa8\xbe\x2e\xc2\x45\xca\x3e\x91\xdf\xa0\x75\x99\x6b\xbb\xc6\x63\x77\x99\xa3\x17\xc2\xd0\x4f\x76\xcc\x64\x26\x35\x13\xa8\xca\x1b\x49\x66\x74\xce\x88\x96\x56\x03\x66\x59\x36\x74\xb6\x74\x72\x4f\x21\x53\x8b\x07\x25\x04\xd6\x93\x82\x2a\x53\x43\x89\x91\xb3\x90\xc0\xd7\xec\xb6\x4d\x85\xbf\x99\x9e\x70\xe1\xee\xaf\xdc\xcd\x99\xdd\x73\x08\x0c\xc5\x4d\x32\x92\x24\x33\x2a\xa6\x21\x36\x7d\x52\x9a\x52\xb1\x2d\x57\x3f\x2d\xcf\xc0\x1d\x17\x9d\x42\x98\xbf\xe6\xa2\xe9\x54\xb0\xda\xae\x34\xe5\xc6\x47\x45\x38\x5f\x45\xb3\x38\xb1\xbb\xa0\xf8\xb8\x34\x52\xe9\x93\x94\xcd\x59\x76\xa2\xf9\x74\x48\x55\x32\xe3\x86\x25\x76\x59\x27\xb4\xe0\xc3\x44\x0a\xbb\xe3\x90\x95\x21\x4f\x7f\x01\xe5\x4d\x87\x76\xaa\x5b\xb2\x4e\xb7\x5c\xf4\x76\xa3\xda\xb3\x1a\xd3\xf6\xb6\xc6\x16\xf6\xa0\xe5\x85\xa2\x6d\xe6\x09\x56\x0b\x86\x90\x93\xbd\x2c\xd6\x27\x4d\xee\xce\x63\x0e\x5d\x1e\xf0\xa4\x39\x86\x3d\x76\xe8\x40\x02\xa7\xb2\x46\x29\x73\x9a\x22\x29\xa5\x62\xf1\xe8\xc8\x6f\x41\x0a\xe9\xf2\x93\xc5\x10\x86\x90\xd9\x90\x8a\xd4\xfe\x1b\x03\x76\x92\xc5\x5e\x60\x58\xf2\x4e\x84\xe0\x9b\xab\x8b\xa7\x39\x12\x25\xdf\xc3\xa9\x77\xf2\x5a\x4b\x21\x0a\x45\x55\x74\xd4\x50\x25\xf3\x4c\xb3\x2e\xa0\x72\xed\x47\xfd\x6f\x77\xff\x12\xb2\x9d\x6d\x13\xa9\x36\xdf\x9a\x44\xb2\x63\xcb\xf9\xbe\xad\x7a\xc4\x36\x39\x70\xbc\xa2\xda\xb8\xd4\x5a\x3e\x07\x41\x6d\x19\x5e\x41\x01\x06\xb3\xfe\x62\xb8\x15\x0e\x79\x7f\x01\x3b\x91\xe1\xca\x9c\x4b\x49\x50\x4a\xb6\x2b\x50\x95\xfe\x52\xab\x83\x86\x8b\x32\x4c\x1b\x42\xe7\x94\x67\x60\x9d\x97\x63\xcd\xd4\x1c\x0b\x52\xb9\x54\x83\xb4\xa9\x67\xb9\x9a\x13\x28\x46\x3d\x91\xe6\xe3\xd7\xb0\xbc\x2b\x9b\x16\x00\xda\x50\x63\xf6\x6b\x67\xbd\x17\xbd\x07\xd5\xcb\xb5\x3f\xdb\x2f\xec\xa8\xc6\x58\xfc\xfb\x0b\xa3\xca\x8c\x19\x35\xb7\x7c\x13\xdf\x5d\x42\xe9\x5a\xbf\x50\xca\x3d\x20\xf4\x3d\x23\x53\x69\xac\x88\x55\x02\xee\xa3\x4c\x8a\x49\x7d\x02\xa2\x3d\x36\x46\x57\xab\xbc\x55\x14\x42\x7c\xa4\xe8\xb8\xcc\x7a\xc7\xe5\x75\x3a\xe9\xd8\x61\x92\xc1\xd6\x98\x48\x43\x0a\xe6\xf6\x0e\x6f\x33\x80\x02\x3d\xcd\x92\x73\xa6\xf5\xc6\x04\x1b\x75\xef\x42\x6c\x8d\x47\xb9\x71\xb5\x96\xfb\xdf\x30\x2c\xc4\x0a\xd0\x29\x33\x94\x67\xfe\x28\x23\x28\x02\x94\xb6\x51\xd7\x8d\x0b\x54\x8c\xea\x4d\x02\x42\x6d\xd6\x1f\xa1\x31\x4e\x5a\x0a\x36\xbc\x97\x2a\x25\xe7\x34\x67\xd9\x39\xd5\xcc\x8d\x15\x87\xe8\xe1\x1e\x1d\xea\xbd\x4e\x79\xb5\xed\x6b\xcd\x94\xd1\xf8\x53\x99\x84\xe1\xaf\x4a\xc5\xc2\x09\x0e\xbc\x09\xf2\x56\x95\x6c\x40\xde\x58\xee\x35\x20\xdf\x88\x3b\x21\xef\x1f\x36\x57\xb3\xf1\x16\xa4\x36\xd3\xd8\xfd\xc3\xa7\xd5\xa9\x19\x7c\xc2\x74\x77\x9c\x91\x23\xf8\x6b\x4c\x8d\x75\x66\x13\x9a\xfa\x19\xd9\x7f\x2e\x99\xa0\xac\xa2\xa8\xe4\x54\x31\x8d\x99\x6b\x56\x26\x49\x6c\x6b\x72\xfe\x8a\x09\x17\xdc\xb7\x75\x7a\x57\xab\x7a\xf9\x99\x7a\xbe\x36\xad\x7e\x71\xfb\xed\x3e\x56\x64\x2b\x45\x8d\xcd\x1e\x81\xd1\x44\xd7\x18\x9f\xd6\xcd\x70\xb5\xd1\x29\xe2\x7a\x51\x5b\x14\x4a\x36\x59\x47\xfd\xea\xce\x6f\xbe\x5d\x0f\xec\xb5\xbc\x6f\x1b\x7f\xda\x6e\x96\x7a\xa8\x41\x6a\xeb\x99\xd9\x6a\x84\xea\xcd\x4f\xbd\xf9\xe9\x73\x32\x3f\x6d\xc5\xf8\x4d\x26\xa7\xcf\xc3\xd8\xb4\x75\x89\x9b\x0c\x4c\x2f\xd2\xb4\xd4\x6a\x45\x1b\xcd\x49\x2f\xd6\x90\xb4\x75\x69\x2d\x8d\x47\x3f\x1f\xb3\xd1\x56\x88\x6d\x30\x15\xbd\x40\x23\x51\x1b\x81\x8c\xa5\x6d\xc4\xc4\xab\xa8\x71\x2c\x28\x56\xe5\x2c\xc3\x70\xde\x29\x27\x16\x67\x76\x95\x16\xad\x00\xb7\x75\x6e\x87\x6e\x72\xed\x65\x2f\x27\x30\xba\x62\x8f\x4b\x93\x25\x17\x97\xd7\x1f\x2f\xcf\xcf\x6e\x2f\x2f\x9a\xf2\xdd\x2a\x48\x6f\x91\xc4\x36\xdb\x20\x86\x91\x24\xb6\xa6\x81\x25\xc8\x6b\x7e\xb2\x38\xb0\xe6\xa7\xb2\xe4\xab\x7a\x3d\x5c\x2e\x7c\x10\x97\x7b\x10\xff\xd8\x7e\x3a\xdb\x1e\xcf\x6f\xd0\x71\x8a\x3a\x9f\x33\x2b\xf7\xcc\x64\x96\x6a\xef\xb7\x7a\x75\x11\x22\xa9\xb8\x48\xb2\x32\xb5\xc2\xc5\x37\xdf\x5c\x5d\xe8\x11\x21\x5f\xb2\x84\x96\x1a\xac\x30\xa9\x14\x87\x86\x7c\x78\xff\xf6\x7f\xc0\x1f\x1b\x5a\x0c\x42\x5e\x13\xc8\xca\xcb\x29\x26\x16\x36\x98\xae\x8d\x7c\xc9\x50\x50\x81\x2f\x27\xb4\xb0\x54\x4c\x63\xe5\x0a\x03\xb2\xc8\x8c\x65\x85\xa5\x98\x77\x8c\x54\x19\x54\xed\xc0\x55\x85\x79\xef\x3e\x39\x65\x06\xa3\xae\x36\x79\x48\x6e\x84\xda\x16\x8b\xeb\x03\x6c\xad\x35\xf5\xd1\x69\xe3\xf7\x54\x3b\x8b\xd5\xca\xd9\x6e\xd9\xdf\xed\xf6\x99\xf5\x26\x8e\x35\xc6\x0d\x24\xcf\xf0\xd7\xd2\x9c\xed\x64\x2b\x3b\x06\x3a\x91\x70\xd3\xda\x9a\xba\xde\x0d\x68\x75\x1d\x80\x25\x5b\x06\x6b\x02\xb9\xf6\xe1\xe0\x91\x1d\x4d\xb9\xdd\x5c\xa0\x88\x48\x5a\xab\xfd\xe9\xfc\xe7\xea\xef\xca\x71\xa8\xfe\x5a\xcd\xd7\x59\x64\xc8\xbf\xfe\xf3\xc5\xff\x1f\x00\x00\xff\xff\x9d\xd9\x48\xd2\xa7\x53\x02\x00") func operatorsCoreosCom_subscriptionsYamlBytes() ([]byte, error) { return bindataRead( diff --git a/pkg/operators/v1alpha1/subscription_types.go b/pkg/operators/v1alpha1/subscription_types.go index e048d4988..b203d9a18 100644 --- a/pkg/operators/v1alpha1/subscription_types.go +++ b/pkg/operators/v1alpha1/subscription_types.go @@ -84,6 +84,18 @@ type SubscriptionConfig struct { // List of VolumeMounts to set in the container. // +optional VolumeMounts []corev1.VolumeMount `json:"volumeMounts,omitempty"` + + // Describes node affinity scheduling rules for the pod. + // +optional + NodeAffinity *corev1.NodeAffinity `json:"nodeAffinity,omitempty" protobuf:"bytes,1,opt,name=nodeAffinity"` + + // Describes pod affinity scheduling rules (e.g. co-locate this pod in the same node, zone, etc. as some other pod(s)). + // +optional + PodAffinity *corev1.PodAffinity `json:"podAffinity,omitempty" protobuf:"bytes,2,opt,name=podAffinity"` + + // Describes pod anti-affinity scheduling rules (e.g. avoid putting this pod in the same node, zone, etc. as some other pod(s)). + // +optional + PodAntiAffinity *corev1.PodAntiAffinity `json:"podAntiAffinity,omitempty" protobuf:"bytes,3,opt,name=podAntiAffinity"` } // SubscriptionConditionType indicates an explicit state condition about a Subscription in "abnormal-true" diff --git a/pkg/operators/v1alpha1/zz_generated.deepcopy.go b/pkg/operators/v1alpha1/zz_generated.deepcopy.go index c094738ee..8b9a73696 100644 --- a/pkg/operators/v1alpha1/zz_generated.deepcopy.go +++ b/pkg/operators/v1alpha1/zz_generated.deepcopy.go @@ -1394,6 +1394,21 @@ func (in *SubscriptionConfig) DeepCopyInto(out *SubscriptionConfig) { (*in)[i].DeepCopyInto(&(*out)[i]) } } + if in.NodeAffinity != nil { + in, out := &in.NodeAffinity, &out.NodeAffinity + *out = new(v1.NodeAffinity) + (*in).DeepCopyInto(*out) + } + if in.PodAffinity != nil { + in, out := &in.PodAffinity, &out.PodAffinity + *out = new(v1.PodAffinity) + (*in).DeepCopyInto(*out) + } + if in.PodAntiAffinity != nil { + in, out := &in.PodAntiAffinity, &out.PodAntiAffinity + *out = new(v1.PodAntiAffinity) + (*in).DeepCopyInto(*out) + } } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SubscriptionConfig.