text
stringlengths
1
22.8M
```raw token data ============================================================================ Services: Service Destination Points ============================================================================ SdpId AdmMTU OprMTU Far End Adm Opr Del LSP Sig your_sha256_hash------------ 1 0 9170 192.168.0.1 Down Down GRE n/a TLDP 31 0 0 10.10.10.1 Up Down MPLS R TLDP 32 0 0 10.10.10.2 Up Down MPLS R TLDP 34 0 0 10.10.10.4 Up Down MPLS R TLDP 38 0 492 10.10.10.8 Up Down MPLS R TLDP 2000 0 0 Down Down GRE n/a TLDP your_sha256_hash------------ Number of SDPs : 6 your_sha256_hash------------ Legend: R = RSVP, L = LDP, B = BGP, M = MPLS-TP, n/a = Not Applicable I = SR-ISIS, O = SR-OSPF, T = SR-TE, F = FPE ============================================================================ ```
```javascript function static() { "use strict"; } ```
```smalltalk using System; using System.Collections.Generic; using AutoMapper; using Volo.CmsKit.Contents; using Volo.CmsKit.Public.Pages; namespace Volo.CmsKit.Public.Web.Pages.Public.CmsKit.Pages; [AutoMap(typeof(PageDto), ReverseMap = true)] public class PageViewModel { public Guid Id { get; set; } public string Title { get; set; } public List<ContentFragment> ContentFragments { get; set; } public string Script { get; set; } public string Style { get; set; } } ```
```python # coding: utf-8 """ Kubernetes No description provided (generated by Openapi Generator path_to_url # noqa: E501 The version of the OpenAPI document: release-1.30 Generated by: path_to_url """ import pprint import re # noqa: F401 import six from kubernetes.client.configuration import Configuration class V1APIServiceSpec(object): """NOTE: This class is auto generated by OpenAPI Generator. Ref: path_to_url Do not edit the class manually. """ """ Attributes: openapi_types (dict): The key is attribute name and the value is attribute type. attribute_map (dict): The key is attribute name and the value is json key in definition. """ openapi_types = { 'ca_bundle': 'str', 'group': 'str', 'group_priority_minimum': 'int', 'insecure_skip_tls_verify': 'bool', 'service': 'ApiregistrationV1ServiceReference', 'version': 'str', 'version_priority': 'int' } attribute_map = { 'ca_bundle': 'caBundle', 'group': 'group', 'group_priority_minimum': 'groupPriorityMinimum', 'insecure_skip_tls_verify': 'insecureSkipTLSVerify', 'service': 'service', 'version': 'version', 'version_priority': 'versionPriority' } def __init__(self, ca_bundle=None, group=None, group_priority_minimum=None, insecure_skip_tls_verify=None, service=None, version=None, version_priority=None, local_vars_configuration=None): # noqa: E501 """V1APIServiceSpec - a model defined in OpenAPI""" # noqa: E501 if local_vars_configuration is None: local_vars_configuration = Configuration() self.local_vars_configuration = local_vars_configuration self._ca_bundle = None self._group = None self._group_priority_minimum = None self._insecure_skip_tls_verify = None self._service = None self._version = None self._version_priority = None self.discriminator = None if ca_bundle is not None: self.ca_bundle = ca_bundle if group is not None: self.group = group self.group_priority_minimum = group_priority_minimum if insecure_skip_tls_verify is not None: self.insecure_skip_tls_verify = insecure_skip_tls_verify if service is not None: self.service = service if version is not None: self.version = version self.version_priority = version_priority @property def ca_bundle(self): """Gets the ca_bundle of this V1APIServiceSpec. # noqa: E501 CABundle is a PEM encoded CA bundle which will be used to validate an API server's serving certificate. If unspecified, system trust roots on the apiserver are used. # noqa: E501 :return: The ca_bundle of this V1APIServiceSpec. # noqa: E501 :rtype: str """ return self._ca_bundle @ca_bundle.setter def ca_bundle(self, ca_bundle): """Sets the ca_bundle of this V1APIServiceSpec. CABundle is a PEM encoded CA bundle which will be used to validate an API server's serving certificate. If unspecified, system trust roots on the apiserver are used. # noqa: E501 :param ca_bundle: The ca_bundle of this V1APIServiceSpec. # noqa: E501 :type: str """ if (self.local_vars_configuration.client_side_validation and ca_bundle is not None and not re.search(r'^(?:[A-Za-z0-9+\/]{4})*(?:[A-Za-z0-9+\/]{2}==|[A-Za-z0-9+\/]{3}=)?$', ca_bundle)): # noqa: E501 raise ValueError(r"Invalid value for `ca_bundle`, must be a follow pattern or equal to `/^(?:[A-Za-z0-9+\/]{4})*(?:[A-Za-z0-9+\/]{2}==|[A-Za-z0-9+\/]{3}=)?$/`") # noqa: E501 self._ca_bundle = ca_bundle @property def group(self): """Gets the group of this V1APIServiceSpec. # noqa: E501 Group is the API group name this server hosts # noqa: E501 :return: The group of this V1APIServiceSpec. # noqa: E501 :rtype: str """ return self._group @group.setter def group(self, group): """Sets the group of this V1APIServiceSpec. Group is the API group name this server hosts # noqa: E501 :param group: The group of this V1APIServiceSpec. # noqa: E501 :type: str """ self._group = group @property def group_priority_minimum(self): """Gets the group_priority_minimum of this V1APIServiceSpec. # noqa: E501 GroupPriorityMinimum is the priority this group should have at least. Higher priority means that the group is preferred by clients over lower priority ones. Note that other versions of this group might specify even higher GroupPriorityMinimum values such that the whole group gets a higher priority. The primary sort is based on GroupPriorityMinimum, ordered highest number to lowest (20 before 10). The secondary sort is based on the alphabetical comparison of the name of the object. (v1.bar before v1.foo) We'd recommend something like: *.k8s.io (except extensions) at 18000 and PaaSes (OpenShift, Deis) are recommended to be in the 2000s # noqa: E501 :return: The group_priority_minimum of this V1APIServiceSpec. # noqa: E501 :rtype: int """ return self._group_priority_minimum @group_priority_minimum.setter def group_priority_minimum(self, group_priority_minimum): """Sets the group_priority_minimum of this V1APIServiceSpec. GroupPriorityMinimum is the priority this group should have at least. Higher priority means that the group is preferred by clients over lower priority ones. Note that other versions of this group might specify even higher GroupPriorityMinimum values such that the whole group gets a higher priority. The primary sort is based on GroupPriorityMinimum, ordered highest number to lowest (20 before 10). The secondary sort is based on the alphabetical comparison of the name of the object. (v1.bar before v1.foo) We'd recommend something like: *.k8s.io (except extensions) at 18000 and PaaSes (OpenShift, Deis) are recommended to be in the 2000s # noqa: E501 :param group_priority_minimum: The group_priority_minimum of this V1APIServiceSpec. # noqa: E501 :type: int """ if self.local_vars_configuration.client_side_validation and group_priority_minimum is None: # noqa: E501 raise ValueError("Invalid value for `group_priority_minimum`, must not be `None`") # noqa: E501 self._group_priority_minimum = group_priority_minimum @property def insecure_skip_tls_verify(self): """Gets the insecure_skip_tls_verify of this V1APIServiceSpec. # noqa: E501 InsecureSkipTLSVerify disables TLS certificate verification when communicating with this server. This is strongly discouraged. You should use the CABundle instead. # noqa: E501 :return: The insecure_skip_tls_verify of this V1APIServiceSpec. # noqa: E501 :rtype: bool """ return self._insecure_skip_tls_verify @insecure_skip_tls_verify.setter def insecure_skip_tls_verify(self, insecure_skip_tls_verify): """Sets the insecure_skip_tls_verify of this V1APIServiceSpec. InsecureSkipTLSVerify disables TLS certificate verification when communicating with this server. This is strongly discouraged. You should use the CABundle instead. # noqa: E501 :param insecure_skip_tls_verify: The insecure_skip_tls_verify of this V1APIServiceSpec. # noqa: E501 :type: bool """ self._insecure_skip_tls_verify = insecure_skip_tls_verify @property def service(self): """Gets the service of this V1APIServiceSpec. # noqa: E501 :return: The service of this V1APIServiceSpec. # noqa: E501 :rtype: ApiregistrationV1ServiceReference """ return self._service @service.setter def service(self, service): """Sets the service of this V1APIServiceSpec. :param service: The service of this V1APIServiceSpec. # noqa: E501 :type: ApiregistrationV1ServiceReference """ self._service = service @property def version(self): """Gets the version of this V1APIServiceSpec. # noqa: E501 Version is the API version this server hosts. For example, \"v1\" # noqa: E501 :return: The version of this V1APIServiceSpec. # noqa: E501 :rtype: str """ return self._version @version.setter def version(self, version): """Sets the version of this V1APIServiceSpec. Version is the API version this server hosts. For example, \"v1\" # noqa: E501 :param version: The version of this V1APIServiceSpec. # noqa: E501 :type: str """ self._version = version @property def version_priority(self): """Gets the version_priority of this V1APIServiceSpec. # noqa: E501 VersionPriority controls the ordering of this API version inside of its group. Must be greater than zero. The primary sort is based on VersionPriority, ordered highest to lowest (20 before 10). Since it's inside of a group, the number can be small, probably in the 10s. In case of equal version priorities, the version string will be used to compute the order inside a group. If the version string is \"kube-like\", it will sort above non \"kube-like\" version strings, which are ordered lexicographically. \"Kube-like\" versions start with a \"v\", then are followed by a number (the major version), then optionally the string \"alpha\" or \"beta\" and another number (the minor version). These are sorted first by GA > beta > alpha (where GA is a version with no suffix such as beta or alpha), and then by comparing major version, then minor version. An example sorted list of versions: v10, v2, v1, v11beta2, v10beta3, v3beta1, v12alpha1, v11alpha2, foo1, foo10. # noqa: E501 :return: The version_priority of this V1APIServiceSpec. # noqa: E501 :rtype: int """ return self._version_priority @version_priority.setter def version_priority(self, version_priority): """Sets the version_priority of this V1APIServiceSpec. VersionPriority controls the ordering of this API version inside of its group. Must be greater than zero. The primary sort is based on VersionPriority, ordered highest to lowest (20 before 10). Since it's inside of a group, the number can be small, probably in the 10s. In case of equal version priorities, the version string will be used to compute the order inside a group. If the version string is \"kube-like\", it will sort above non \"kube-like\" version strings, which are ordered lexicographically. \"Kube-like\" versions start with a \"v\", then are followed by a number (the major version), then optionally the string \"alpha\" or \"beta\" and another number (the minor version). These are sorted first by GA > beta > alpha (where GA is a version with no suffix such as beta or alpha), and then by comparing major version, then minor version. An example sorted list of versions: v10, v2, v1, v11beta2, v10beta3, v3beta1, v12alpha1, v11alpha2, foo1, foo10. # noqa: E501 :param version_priority: The version_priority of this V1APIServiceSpec. # noqa: E501 :type: int """ if self.local_vars_configuration.client_side_validation and version_priority is None: # noqa: E501 raise ValueError("Invalid value for `version_priority`, must not be `None`") # noqa: E501 self._version_priority = version_priority def to_dict(self): """Returns the model properties as a dict""" result = {} for attr, _ in six.iteritems(self.openapi_types): value = getattr(self, attr) if isinstance(value, list): result[attr] = list(map( lambda x: x.to_dict() if hasattr(x, "to_dict") else x, value )) elif hasattr(value, "to_dict"): result[attr] = value.to_dict() elif isinstance(value, dict): result[attr] = dict(map( lambda item: (item[0], item[1].to_dict()) if hasattr(item[1], "to_dict") else item, value.items() )) else: result[attr] = value return result def to_str(self): """Returns the string representation of the model""" return pprint.pformat(self.to_dict()) def __repr__(self): """For `print` and `pprint`""" return self.to_str() def __eq__(self, other): """Returns true if both objects are equal""" if not isinstance(other, V1APIServiceSpec): return False return self.to_dict() == other.to_dict() def __ne__(self, other): """Returns true if both objects are not equal""" if not isinstance(other, V1APIServiceSpec): return True return self.to_dict() != other.to_dict() ```
```c++ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "test/cctest/compiler/codegen-tester.h" #include "src/base/overflowing-math.h" #include "src/objects-inl.h" #include "test/cctest/cctest.h" #include "test/cctest/compiler/value-helper.h" namespace v8 { namespace internal { namespace compiler { TEST(CompareWrapper) { // Who tests the testers? // If CompareWrapper is broken, then test expectations will be broken. CompareWrapper wWord32Equal(IrOpcode::kWord32Equal); CompareWrapper wInt32LessThan(IrOpcode::kInt32LessThan); CompareWrapper wInt32LessThanOrEqual(IrOpcode::kInt32LessThanOrEqual); CompareWrapper wUint32LessThan(IrOpcode::kUint32LessThan); CompareWrapper wUint32LessThanOrEqual(IrOpcode::kUint32LessThanOrEqual); FOR_INT32_INPUTS(a) { FOR_INT32_INPUTS(b) { CHECK_EQ(a == b, wWord32Equal.Int32Compare(a, b)); CHECK_EQ(a < b, wInt32LessThan.Int32Compare(a, b)); CHECK_EQ(a <= b, wInt32LessThanOrEqual.Int32Compare(a, b)); } } FOR_UINT32_INPUTS(a) { FOR_UINT32_INPUTS(b) { CHECK_EQ(a == b, wWord32Equal.Int32Compare(a, b)); CHECK_EQ(a < b, wUint32LessThan.Int32Compare(a, b)); CHECK_EQ(a <= b, wUint32LessThanOrEqual.Int32Compare(a, b)); } } CHECK_EQ(true, wWord32Equal.Int32Compare(0, 0)); CHECK_EQ(true, wWord32Equal.Int32Compare(257, 257)); CHECK_EQ(true, wWord32Equal.Int32Compare(65539, 65539)); CHECK_EQ(true, wWord32Equal.Int32Compare(-1, -1)); CHECK_EQ(true, wWord32Equal.Int32Compare(0xFFFFFFFF, 0xFFFFFFFF)); CHECK_EQ(false, wWord32Equal.Int32Compare(0, 1)); CHECK_EQ(false, wWord32Equal.Int32Compare(257, 256)); CHECK_EQ(false, wWord32Equal.Int32Compare(65539, 65537)); CHECK_EQ(false, wWord32Equal.Int32Compare(-1, -2)); CHECK_EQ(false, wWord32Equal.Int32Compare(0xFFFFFFFF, 0xFFFFFFFE)); CHECK_EQ(false, wInt32LessThan.Int32Compare(0, 0)); CHECK_EQ(false, wInt32LessThan.Int32Compare(357, 357)); CHECK_EQ(false, wInt32LessThan.Int32Compare(75539, 75539)); CHECK_EQ(false, wInt32LessThan.Int32Compare(-1, -1)); CHECK_EQ(false, wInt32LessThan.Int32Compare(0xFFFFFFFF, 0xFFFFFFFF)); CHECK_EQ(true, wInt32LessThan.Int32Compare(0, 1)); CHECK_EQ(true, wInt32LessThan.Int32Compare(456, 457)); CHECK_EQ(true, wInt32LessThan.Int32Compare(85537, 85539)); CHECK_EQ(true, wInt32LessThan.Int32Compare(-2, -1)); CHECK_EQ(true, wInt32LessThan.Int32Compare(0xFFFFFFFE, 0xFFFFFFFF)); CHECK_EQ(false, wInt32LessThan.Int32Compare(1, 0)); CHECK_EQ(false, wInt32LessThan.Int32Compare(457, 456)); CHECK_EQ(false, wInt32LessThan.Int32Compare(85539, 85537)); CHECK_EQ(false, wInt32LessThan.Int32Compare(-1, -2)); CHECK_EQ(false, wInt32LessThan.Int32Compare(0xFFFFFFFF, 0xFFFFFFFE)); CHECK_EQ(true, wInt32LessThanOrEqual.Int32Compare(0, 0)); CHECK_EQ(true, wInt32LessThanOrEqual.Int32Compare(357, 357)); CHECK_EQ(true, wInt32LessThanOrEqual.Int32Compare(75539, 75539)); CHECK_EQ(true, wInt32LessThanOrEqual.Int32Compare(-1, -1)); CHECK_EQ(true, wInt32LessThanOrEqual.Int32Compare(0xFFFFFFFF, 0xFFFFFFFF)); CHECK_EQ(true, wInt32LessThanOrEqual.Int32Compare(0, 1)); CHECK_EQ(true, wInt32LessThanOrEqual.Int32Compare(456, 457)); CHECK_EQ(true, wInt32LessThanOrEqual.Int32Compare(85537, 85539)); CHECK_EQ(true, wInt32LessThanOrEqual.Int32Compare(-2, -1)); CHECK_EQ(true, wInt32LessThanOrEqual.Int32Compare(0xFFFFFFFE, 0xFFFFFFFF)); CHECK_EQ(false, wInt32LessThanOrEqual.Int32Compare(1, 0)); CHECK_EQ(false, wInt32LessThanOrEqual.Int32Compare(457, 456)); CHECK_EQ(false, wInt32LessThanOrEqual.Int32Compare(85539, 85537)); CHECK_EQ(false, wInt32LessThanOrEqual.Int32Compare(-1, -2)); CHECK_EQ(false, wInt32LessThanOrEqual.Int32Compare(0xFFFFFFFF, 0xFFFFFFFE)); // Unsigned comparisons. CHECK_EQ(false, wUint32LessThan.Int32Compare(0, 0)); CHECK_EQ(false, wUint32LessThan.Int32Compare(357, 357)); CHECK_EQ(false, wUint32LessThan.Int32Compare(75539, 75539)); CHECK_EQ(false, wUint32LessThan.Int32Compare(-1, -1)); CHECK_EQ(false, wUint32LessThan.Int32Compare(0xFFFFFFFF, 0xFFFFFFFF)); CHECK_EQ(false, wUint32LessThan.Int32Compare(0xFFFFFFFF, 0)); CHECK_EQ(false, wUint32LessThan.Int32Compare(-2999, 0)); CHECK_EQ(true, wUint32LessThan.Int32Compare(0, 1)); CHECK_EQ(true, wUint32LessThan.Int32Compare(456, 457)); CHECK_EQ(true, wUint32LessThan.Int32Compare(85537, 85539)); CHECK_EQ(true, wUint32LessThan.Int32Compare(-11, -10)); CHECK_EQ(true, wUint32LessThan.Int32Compare(0xFFFFFFFE, 0xFFFFFFFF)); CHECK_EQ(true, wUint32LessThan.Int32Compare(0, 0xFFFFFFFF)); CHECK_EQ(true, wUint32LessThan.Int32Compare(0, -2996)); CHECK_EQ(false, wUint32LessThan.Int32Compare(1, 0)); CHECK_EQ(false, wUint32LessThan.Int32Compare(457, 456)); CHECK_EQ(false, wUint32LessThan.Int32Compare(85539, 85537)); CHECK_EQ(false, wUint32LessThan.Int32Compare(-10, -21)); CHECK_EQ(false, wUint32LessThan.Int32Compare(0xFFFFFFFF, 0xFFFFFFFE)); CHECK_EQ(true, wUint32LessThanOrEqual.Int32Compare(0, 0)); CHECK_EQ(true, wUint32LessThanOrEqual.Int32Compare(357, 357)); CHECK_EQ(true, wUint32LessThanOrEqual.Int32Compare(75539, 75539)); CHECK_EQ(true, wUint32LessThanOrEqual.Int32Compare(-1, -1)); CHECK_EQ(true, wUint32LessThanOrEqual.Int32Compare(0xFFFFFFFF, 0xFFFFFFFF)); CHECK_EQ(true, wUint32LessThanOrEqual.Int32Compare(0, 1)); CHECK_EQ(true, wUint32LessThanOrEqual.Int32Compare(456, 457)); CHECK_EQ(true, wUint32LessThanOrEqual.Int32Compare(85537, 85539)); CHECK_EQ(true, wUint32LessThanOrEqual.Int32Compare(-300, -299)); CHECK_EQ(true, wUint32LessThanOrEqual.Int32Compare(-300, -300)); CHECK_EQ(true, wUint32LessThanOrEqual.Int32Compare(0xFFFFFFFE, 0xFFFFFFFF)); CHECK_EQ(true, wUint32LessThanOrEqual.Int32Compare(0, -2995)); CHECK_EQ(false, wUint32LessThanOrEqual.Int32Compare(1, 0)); CHECK_EQ(false, wUint32LessThanOrEqual.Int32Compare(457, 456)); CHECK_EQ(false, wUint32LessThanOrEqual.Int32Compare(85539, 85537)); CHECK_EQ(false, wUint32LessThanOrEqual.Int32Compare(-130, -170)); CHECK_EQ(false, wUint32LessThanOrEqual.Int32Compare(0xFFFFFFFF, 0xFFFFFFFE)); CHECK_EQ(false, wUint32LessThanOrEqual.Int32Compare(-2997, 0)); CompareWrapper wFloat64Equal(IrOpcode::kFloat64Equal); CompareWrapper wFloat64LessThan(IrOpcode::kFloat64LessThan); CompareWrapper wFloat64LessThanOrEqual(IrOpcode::kFloat64LessThanOrEqual); // Check NaN handling. double nan = std::numeric_limits<double>::quiet_NaN(); double inf = V8_INFINITY; CHECK_EQ(false, wFloat64Equal.Float64Compare(nan, 0.0)); CHECK_EQ(false, wFloat64Equal.Float64Compare(nan, 1.0)); CHECK_EQ(false, wFloat64Equal.Float64Compare(nan, inf)); CHECK_EQ(false, wFloat64Equal.Float64Compare(nan, -inf)); CHECK_EQ(false, wFloat64Equal.Float64Compare(nan, nan)); CHECK_EQ(false, wFloat64Equal.Float64Compare(0.0, nan)); CHECK_EQ(false, wFloat64Equal.Float64Compare(1.0, nan)); CHECK_EQ(false, wFloat64Equal.Float64Compare(inf, nan)); CHECK_EQ(false, wFloat64Equal.Float64Compare(-inf, nan)); CHECK_EQ(false, wFloat64Equal.Float64Compare(nan, nan)); CHECK_EQ(false, wFloat64LessThan.Float64Compare(nan, 0.0)); CHECK_EQ(false, wFloat64LessThan.Float64Compare(nan, 1.0)); CHECK_EQ(false, wFloat64LessThan.Float64Compare(nan, inf)); CHECK_EQ(false, wFloat64LessThan.Float64Compare(nan, -inf)); CHECK_EQ(false, wFloat64LessThan.Float64Compare(nan, nan)); CHECK_EQ(false, wFloat64LessThan.Float64Compare(0.0, nan)); CHECK_EQ(false, wFloat64LessThan.Float64Compare(1.0, nan)); CHECK_EQ(false, wFloat64LessThan.Float64Compare(inf, nan)); CHECK_EQ(false, wFloat64LessThan.Float64Compare(-inf, nan)); CHECK_EQ(false, wFloat64LessThan.Float64Compare(nan, nan)); CHECK_EQ(false, wFloat64LessThanOrEqual.Float64Compare(nan, 0.0)); CHECK_EQ(false, wFloat64LessThanOrEqual.Float64Compare(nan, 1.0)); CHECK_EQ(false, wFloat64LessThanOrEqual.Float64Compare(nan, inf)); CHECK_EQ(false, wFloat64LessThanOrEqual.Float64Compare(nan, -inf)); CHECK_EQ(false, wFloat64LessThanOrEqual.Float64Compare(nan, nan)); CHECK_EQ(false, wFloat64LessThanOrEqual.Float64Compare(0.0, nan)); CHECK_EQ(false, wFloat64LessThanOrEqual.Float64Compare(1.0, nan)); CHECK_EQ(false, wFloat64LessThanOrEqual.Float64Compare(inf, nan)); CHECK_EQ(false, wFloat64LessThanOrEqual.Float64Compare(-inf, nan)); CHECK_EQ(false, wFloat64LessThanOrEqual.Float64Compare(nan, nan)); // Check inf handling. CHECK_EQ(false, wFloat64Equal.Float64Compare(inf, 0.0)); CHECK_EQ(false, wFloat64Equal.Float64Compare(inf, 1.0)); CHECK_EQ(true, wFloat64Equal.Float64Compare(inf, inf)); CHECK_EQ(false, wFloat64Equal.Float64Compare(inf, -inf)); CHECK_EQ(false, wFloat64Equal.Float64Compare(0.0, inf)); CHECK_EQ(false, wFloat64Equal.Float64Compare(1.0, inf)); CHECK_EQ(true, wFloat64Equal.Float64Compare(inf, inf)); CHECK_EQ(false, wFloat64Equal.Float64Compare(-inf, inf)); CHECK_EQ(false, wFloat64LessThan.Float64Compare(inf, 0.0)); CHECK_EQ(false, wFloat64LessThan.Float64Compare(inf, 1.0)); CHECK_EQ(false, wFloat64LessThan.Float64Compare(inf, inf)); CHECK_EQ(false, wFloat64LessThan.Float64Compare(inf, -inf)); CHECK_EQ(true, wFloat64LessThan.Float64Compare(0.0, inf)); CHECK_EQ(true, wFloat64LessThan.Float64Compare(1.0, inf)); CHECK_EQ(false, wFloat64LessThan.Float64Compare(inf, inf)); CHECK_EQ(true, wFloat64LessThan.Float64Compare(-inf, inf)); CHECK_EQ(false, wFloat64LessThanOrEqual.Float64Compare(inf, 0.0)); CHECK_EQ(false, wFloat64LessThanOrEqual.Float64Compare(inf, 1.0)); CHECK_EQ(true, wFloat64LessThanOrEqual.Float64Compare(inf, inf)); CHECK_EQ(false, wFloat64LessThanOrEqual.Float64Compare(inf, -inf)); CHECK_EQ(true, wFloat64LessThanOrEqual.Float64Compare(0.0, inf)); CHECK_EQ(true, wFloat64LessThanOrEqual.Float64Compare(1.0, inf)); CHECK_EQ(true, wFloat64LessThanOrEqual.Float64Compare(inf, inf)); CHECK_EQ(true, wFloat64LessThanOrEqual.Float64Compare(-inf, inf)); // Check -inf handling. CHECK_EQ(false, wFloat64Equal.Float64Compare(-inf, 0.0)); CHECK_EQ(false, wFloat64Equal.Float64Compare(-inf, 1.0)); CHECK_EQ(false, wFloat64Equal.Float64Compare(-inf, inf)); CHECK_EQ(true, wFloat64Equal.Float64Compare(-inf, -inf)); CHECK_EQ(false, wFloat64Equal.Float64Compare(0.0, -inf)); CHECK_EQ(false, wFloat64Equal.Float64Compare(1.0, -inf)); CHECK_EQ(false, wFloat64Equal.Float64Compare(inf, -inf)); CHECK_EQ(true, wFloat64Equal.Float64Compare(-inf, -inf)); CHECK_EQ(true, wFloat64LessThan.Float64Compare(-inf, 0.0)); CHECK_EQ(true, wFloat64LessThan.Float64Compare(-inf, 1.0)); CHECK_EQ(true, wFloat64LessThan.Float64Compare(-inf, inf)); CHECK_EQ(false, wFloat64LessThan.Float64Compare(-inf, -inf)); CHECK_EQ(false, wFloat64LessThan.Float64Compare(0.0, -inf)); CHECK_EQ(false, wFloat64LessThan.Float64Compare(1.0, -inf)); CHECK_EQ(false, wFloat64LessThan.Float64Compare(inf, -inf)); CHECK_EQ(false, wFloat64LessThan.Float64Compare(-inf, -inf)); CHECK_EQ(true, wFloat64LessThanOrEqual.Float64Compare(-inf, 0.0)); CHECK_EQ(true, wFloat64LessThanOrEqual.Float64Compare(-inf, 1.0)); CHECK_EQ(true, wFloat64LessThanOrEqual.Float64Compare(-inf, inf)); CHECK_EQ(true, wFloat64LessThanOrEqual.Float64Compare(-inf, -inf)); CHECK_EQ(false, wFloat64LessThanOrEqual.Float64Compare(0.0, -inf)); CHECK_EQ(false, wFloat64LessThanOrEqual.Float64Compare(1.0, -inf)); CHECK_EQ(false, wFloat64LessThanOrEqual.Float64Compare(inf, -inf)); CHECK_EQ(true, wFloat64LessThanOrEqual.Float64Compare(-inf, -inf)); // Check basic values. CHECK_EQ(true, wFloat64Equal.Float64Compare(0, 0)); CHECK_EQ(true, wFloat64Equal.Float64Compare(257.1, 257.1)); CHECK_EQ(true, wFloat64Equal.Float64Compare(65539.1, 65539.1)); CHECK_EQ(true, wFloat64Equal.Float64Compare(-1.1, -1.1)); CHECK_EQ(false, wFloat64Equal.Float64Compare(0, 1)); CHECK_EQ(false, wFloat64Equal.Float64Compare(257.2, 256.2)); CHECK_EQ(false, wFloat64Equal.Float64Compare(65539.2, 65537.2)); CHECK_EQ(false, wFloat64Equal.Float64Compare(-1.2, -2.2)); CHECK_EQ(false, wFloat64LessThan.Float64Compare(0, 0)); CHECK_EQ(false, wFloat64LessThan.Float64Compare(357.3, 357.3)); CHECK_EQ(false, wFloat64LessThan.Float64Compare(75539.3, 75539.3)); CHECK_EQ(false, wFloat64LessThan.Float64Compare(-1.3, -1.3)); CHECK_EQ(true, wFloat64LessThan.Float64Compare(0, 1)); CHECK_EQ(true, wFloat64LessThan.Float64Compare(456.4, 457.4)); CHECK_EQ(true, wFloat64LessThan.Float64Compare(85537.4, 85539.4)); CHECK_EQ(true, wFloat64LessThan.Float64Compare(-2.4, -1.4)); CHECK_EQ(false, wFloat64LessThan.Float64Compare(1, 0)); CHECK_EQ(false, wFloat64LessThan.Float64Compare(457.5, 456.5)); CHECK_EQ(false, wFloat64LessThan.Float64Compare(85539.5, 85537.5)); CHECK_EQ(false, wFloat64LessThan.Float64Compare(-1.5, -2.5)); CHECK_EQ(true, wFloat64LessThanOrEqual.Float64Compare(0, 0)); CHECK_EQ(true, wFloat64LessThanOrEqual.Float64Compare(357.6, 357.6)); CHECK_EQ(true, wFloat64LessThanOrEqual.Float64Compare(75539.6, 75539.6)); CHECK_EQ(true, wFloat64LessThanOrEqual.Float64Compare(-1.6, -1.6)); CHECK_EQ(true, wFloat64LessThanOrEqual.Float64Compare(0, 1)); CHECK_EQ(true, wFloat64LessThanOrEqual.Float64Compare(456.7, 457.7)); CHECK_EQ(true, wFloat64LessThanOrEqual.Float64Compare(85537.7, 85539.7)); CHECK_EQ(true, wFloat64LessThanOrEqual.Float64Compare(-2.7, -1.7)); CHECK_EQ(false, wFloat64LessThanOrEqual.Float64Compare(1, 0)); CHECK_EQ(false, wFloat64LessThanOrEqual.Float64Compare(457.8, 456.8)); CHECK_EQ(false, wFloat64LessThanOrEqual.Float64Compare(85539.8, 85537.8)); CHECK_EQ(false, wFloat64LessThanOrEqual.Float64Compare(-1.8, -2.8)); } void Int32BinopInputShapeTester::TestAllInputShapes() { Vector<const int32_t> inputs = ValueHelper::int32_vector(); int num_int_inputs = static_cast<int>(inputs.size()); if (num_int_inputs > 16) num_int_inputs = 16; // limit to 16 inputs for (int i = -2; i < num_int_inputs; i++) { // for all left shapes for (int j = -2; j < num_int_inputs; j++) { // for all right shapes if (i >= 0 && j >= 0) break; // No constant/constant combos RawMachineAssemblerTester<int32_t> m(MachineType::Int32(), MachineType::Int32()); Node* p0 = m.Parameter(0); Node* p1 = m.Parameter(1); Node* n0; Node* n1; // left = Parameter | Load | Constant if (i == -2) { n0 = p0; } else if (i == -1) { n0 = m.LoadFromPointer(&input_a, MachineType::Int32()); } else { n0 = m.Int32Constant(inputs[i]); } // right = Parameter | Load | Constant if (j == -2) { n1 = p1; } else if (j == -1) { n1 = m.LoadFromPointer(&input_b, MachineType::Int32()); } else { n1 = m.Int32Constant(inputs[j]); } gen->gen(&m, n0, n1); if (i >= 0) { input_a = inputs[i]; RunRight(&m); } else if (j >= 0) { input_b = inputs[j]; RunLeft(&m); } else { Run(&m); } } } } void Int32BinopInputShapeTester::Run(RawMachineAssemblerTester<int32_t>* m) { FOR_INT32_INPUTS(pl) { FOR_INT32_INPUTS(pr) { input_a = pl; input_b = pr; int32_t expect = gen->expected(input_a, input_b); CHECK_EQ(expect, m->Call(input_a, input_b)); } } } void Int32BinopInputShapeTester::RunLeft( RawMachineAssemblerTester<int32_t>* m) { FOR_UINT32_INPUTS(i) { input_a = i; int32_t expect = gen->expected(input_a, input_b); CHECK_EQ(expect, m->Call(input_a, input_b)); } } void Int32BinopInputShapeTester::RunRight( RawMachineAssemblerTester<int32_t>* m) { FOR_UINT32_INPUTS(i) { input_b = i; int32_t expect = gen->expected(input_a, input_b); CHECK_EQ(expect, m->Call(input_a, input_b)); } } TEST(ParametersEqual) { RawMachineAssemblerTester<int32_t> m(MachineType::Int32(), MachineType::Int32()); Node* p1 = m.Parameter(1); CHECK(p1); Node* p0 = m.Parameter(0); CHECK(p0); CHECK_EQ(p0, m.Parameter(0)); CHECK_EQ(p1, m.Parameter(1)); } void RunSmiConstant(int32_t v) { // TODO(dcarney): on x64 Smis are generated with the SmiConstantRegister #if !V8_TARGET_ARCH_X64 if (Smi::IsValid(v)) { RawMachineAssemblerTester<Object> m; m.Return(m.NumberConstant(v)); CHECK_EQ(Smi::FromInt(v), m.Call()); } #endif } void RunNumberConstant(double v) { RawMachineAssemblerTester<Object> m; #if V8_TARGET_ARCH_X64 // TODO(dcarney): on x64 Smis are generated with the SmiConstantRegister Handle<Object> number = m.isolate()->factory()->NewNumber(v); if (number->IsSmi()) return; #endif m.Return(m.NumberConstant(v)); Object result = m.Call(); m.CheckNumber(v, result); } TEST(RunEmpty) { RawMachineAssemblerTester<int32_t> m; m.Return(m.Int32Constant(0)); CHECK_EQ(0, m.Call()); } TEST(RunInt32Constants) { FOR_INT32_INPUTS(i) { RawMachineAssemblerTester<int32_t> m; m.Return(m.Int32Constant(i)); CHECK_EQ(i, m.Call()); } } TEST(RunSmiConstants) { for (int32_t i = 1; i < Smi::kMaxValue && i != 0; i = base::ShlWithWraparound(i, 1)) { RunSmiConstant(i); RunSmiConstant(base::MulWithWraparound(3, i)); RunSmiConstant(base::MulWithWraparound(5, i)); RunSmiConstant(base::NegateWithWraparound(i)); RunSmiConstant(i | 1); RunSmiConstant(i | 3); } RunSmiConstant(Smi::kMaxValue); RunSmiConstant(Smi::kMaxValue - 1); RunSmiConstant(Smi::kMinValue); RunSmiConstant(Smi::kMinValue + 1); FOR_INT32_INPUTS(i) { RunSmiConstant(i); } } TEST(RunNumberConstants) { FOR_FLOAT64_INPUTS(i) { RunNumberConstant(i); } FOR_INT32_INPUTS(i) { RunNumberConstant(i); } for (int32_t i = 1; i < Smi::kMaxValue && i != 0; i = base::ShlWithWraparound(i, 1)) { RunNumberConstant(i); RunNumberConstant(base::NegateWithWraparound(i)); RunNumberConstant(i | 1); RunNumberConstant(i | 3); } RunNumberConstant(Smi::kMaxValue); RunNumberConstant(Smi::kMaxValue - 1); RunNumberConstant(Smi::kMinValue); RunNumberConstant(Smi::kMinValue + 1); } TEST(RunEmptyString) { RawMachineAssemblerTester<Object> m; m.Return(m.StringConstant("empty")); m.CheckString("empty", m.Call()); } TEST(RunHeapConstant) { RawMachineAssemblerTester<Object> m; m.Return(m.StringConstant("empty")); m.CheckString("empty", m.Call()); } TEST(RunHeapNumberConstant) { RawMachineAssemblerTester<void*> m; Handle<HeapObject> number = m.isolate()->factory()->NewHeapNumber(100.5); m.Return(m.HeapConstant(number)); HeapObject result = HeapObject::cast(Object(reinterpret_cast<Address>(m.Call()))); CHECK_EQ(result, *number); } TEST(RunParam1) { RawMachineAssemblerTester<int32_t> m(MachineType::Int32()); m.Return(m.Parameter(0)); FOR_INT32_INPUTS(i) { int32_t result = m.Call(i); CHECK_EQ(i, result); } } TEST(RunParam2_1) { RawMachineAssemblerTester<int32_t> m(MachineType::Int32(), MachineType::Int32()); Node* p0 = m.Parameter(0); Node* p1 = m.Parameter(1); m.Return(p0); USE(p1); FOR_INT32_INPUTS(i) { int32_t result = m.Call(i, -9999); CHECK_EQ(i, result); } } TEST(RunParam2_2) { RawMachineAssemblerTester<int32_t> m(MachineType::Int32(), MachineType::Int32()); Node* p0 = m.Parameter(0); Node* p1 = m.Parameter(1); m.Return(p1); USE(p0); FOR_INT32_INPUTS(i) { int32_t result = m.Call(-7777, i); CHECK_EQ(i, result); } } TEST(RunParam3) { for (int i = 0; i < 3; i++) { RawMachineAssemblerTester<int32_t> m( MachineType::Int32(), MachineType::Int32(), MachineType::Int32()); Node* nodes[] = {m.Parameter(0), m.Parameter(1), m.Parameter(2)}; m.Return(nodes[i]); int p[] = {-99, -77, -88}; FOR_INT32_INPUTS(j) { p[i] = j; int32_t result = m.Call(p[0], p[1], p[2]); CHECK_EQ(j, result); } } } TEST(RunBinopTester) { { RawMachineAssemblerTester<int32_t> m; Int32BinopTester bt(&m); bt.AddReturn(bt.param0); FOR_INT32_INPUTS(i) { CHECK_EQ(i, bt.call(i, 777)); } } { RawMachineAssemblerTester<int32_t> m; Int32BinopTester bt(&m); bt.AddReturn(bt.param1); FOR_INT32_INPUTS(i) { CHECK_EQ(i, bt.call(666, i)); } } { RawMachineAssemblerTester<int32_t> m; Float64BinopTester bt(&m); bt.AddReturn(bt.param0); FOR_FLOAT64_INPUTS(i) { CHECK_DOUBLE_EQ(i, bt.call(i, 9.0)); } } { RawMachineAssemblerTester<int32_t> m; Float64BinopTester bt(&m); bt.AddReturn(bt.param1); FOR_FLOAT64_INPUTS(i) { CHECK_DOUBLE_EQ(i, bt.call(-11.25, i)); } } } #if V8_TARGET_ARCH_64_BIT // TODO(ahaas): run int64 tests on all platforms when supported. namespace { int64_t Add4(int64_t a, int64_t b, int64_t c, int64_t d) { // Operate on uint64_t values to avoid undefined behavior. return static_cast<int64_t>( static_cast<uint64_t>(a) + static_cast<uint64_t>(b) + static_cast<uint64_t>(c) + static_cast<uint64_t>(d)); } int64_t Add3(int64_t a, int64_t b, int64_t c) { return Add4(a, b, c, 0); } } // namespace TEST(RunBufferedRawMachineAssemblerTesterTester) { { BufferedRawMachineAssemblerTester<int64_t> m; m.Return(m.Int64Constant(0x12500000000)); CHECK_EQ(0x12500000000, m.Call()); } { BufferedRawMachineAssemblerTester<double> m(MachineType::Float64()); m.Return(m.Parameter(0)); FOR_FLOAT64_INPUTS(i) { CHECK_DOUBLE_EQ(i, m.Call(i)); } } { BufferedRawMachineAssemblerTester<int64_t> m(MachineType::Int64(), MachineType::Int64()); m.Return(m.Int64Add(m.Parameter(0), m.Parameter(1))); FOR_INT64_INPUTS(i) { FOR_INT64_INPUTS(j) { CHECK_EQ(base::AddWithWraparound(i, j), m.Call(i, j)); CHECK_EQ(base::AddWithWraparound(j, i), m.Call(j, i)); } } } { BufferedRawMachineAssemblerTester<int64_t> m( MachineType::Int64(), MachineType::Int64(), MachineType::Int64()); m.Return( m.Int64Add(m.Int64Add(m.Parameter(0), m.Parameter(1)), m.Parameter(2))); FOR_INT64_INPUTS(i) { FOR_INT64_INPUTS(j) { CHECK_EQ(Add3(i, i, j), m.Call(i, i, j)); CHECK_EQ(Add3(i, j, i), m.Call(i, j, i)); CHECK_EQ(Add3(j, i, i), m.Call(j, i, i)); } } } { BufferedRawMachineAssemblerTester<int64_t> m( MachineType::Int64(), MachineType::Int64(), MachineType::Int64(), MachineType::Int64()); m.Return(m.Int64Add( m.Int64Add(m.Int64Add(m.Parameter(0), m.Parameter(1)), m.Parameter(2)), m.Parameter(3))); FOR_INT64_INPUTS(i) { FOR_INT64_INPUTS(j) { CHECK_EQ(Add4(i, i, i, j), m.Call(i, i, i, j)); CHECK_EQ(Add4(i, i, j, i), m.Call(i, i, j, i)); CHECK_EQ(Add4(i, j, i, i), m.Call(i, j, i, i)); CHECK_EQ(Add4(j, i, i, i), m.Call(j, i, i, i)); } } } { BufferedRawMachineAssemblerTester<void> m; int64_t result; m.Store(MachineTypeForC<int64_t>().representation(), m.PointerConstant(&result), m.Int64Constant(0x12500000000), kNoWriteBarrier); m.Return(m.Int32Constant(0)); m.Call(); CHECK_EQ(0x12500000000, result); } { BufferedRawMachineAssemblerTester<void> m(MachineType::Float64()); double result; m.Store(MachineTypeForC<double>().representation(), m.PointerConstant(&result), m.Parameter(0), kNoWriteBarrier); m.Return(m.Int32Constant(0)); FOR_FLOAT64_INPUTS(i) { m.Call(i); CHECK_DOUBLE_EQ(i, result); } } { BufferedRawMachineAssemblerTester<void> m(MachineType::Int64(), MachineType::Int64()); int64_t result; m.Store(MachineTypeForC<int64_t>().representation(), m.PointerConstant(&result), m.Int64Add(m.Parameter(0), m.Parameter(1)), kNoWriteBarrier); m.Return(m.Int32Constant(0)); FOR_INT64_INPUTS(i) { FOR_INT64_INPUTS(j) { m.Call(i, j); CHECK_EQ(base::AddWithWraparound(i, j), result); m.Call(j, i); CHECK_EQ(base::AddWithWraparound(j, i), result); } } } { BufferedRawMachineAssemblerTester<void> m( MachineType::Int64(), MachineType::Int64(), MachineType::Int64()); int64_t result; m.Store( MachineTypeForC<int64_t>().representation(), m.PointerConstant(&result), m.Int64Add(m.Int64Add(m.Parameter(0), m.Parameter(1)), m.Parameter(2)), kNoWriteBarrier); m.Return(m.Int32Constant(0)); FOR_INT64_INPUTS(i) { FOR_INT64_INPUTS(j) { m.Call(i, i, j); CHECK_EQ(Add3(i, i, j), result); m.Call(i, j, i); CHECK_EQ(Add3(i, j, i), result); m.Call(j, i, i); CHECK_EQ(Add3(j, i, i), result); } } } { BufferedRawMachineAssemblerTester<void> m( MachineType::Int64(), MachineType::Int64(), MachineType::Int64(), MachineType::Int64()); int64_t result; m.Store(MachineTypeForC<int64_t>().representation(), m.PointerConstant(&result), m.Int64Add(m.Int64Add(m.Int64Add(m.Parameter(0), m.Parameter(1)), m.Parameter(2)), m.Parameter(3)), kNoWriteBarrier); m.Return(m.Int32Constant(0)); FOR_INT64_INPUTS(i) { FOR_INT64_INPUTS(j) { m.Call(i, i, i, j); CHECK_EQ(Add4(i, i, i, j), result); m.Call(i, i, j, i); CHECK_EQ(Add4(i, i, j, i), result); m.Call(i, j, i, i); CHECK_EQ(Add4(i, j, i, i), result); m.Call(j, i, i, i); CHECK_EQ(Add4(j, i, i, i), result); } } } } #endif } // namespace compiler } // namespace internal } // namespace v8 ```
```java /* * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * * path_to_url * * Unless required by applicable law or agreed to in writing, software * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. */ package org.apache.shardingsphere.sql.parser.statement.postgresql.ddl; import org.apache.shardingsphere.sql.parser.statement.core.statement.ddl.DropTypeStatement; import org.apache.shardingsphere.sql.parser.statement.postgresql.PostgreSQLStatement; /** * PostgreSQL drop type statement. */ public final class PostgreSQLDropTypeStatement extends DropTypeStatement implements PostgreSQLStatement { } ```
```html <html lang="en"> <head> <title>Type encoding - Using the GNU Compiler Collection (GCC)</title> <meta http-equiv="Content-Type" content="text/html"> <meta name="description" content="Using the GNU Compiler Collection (GCC)"> <meta name="generator" content="makeinfo 4.8"> <link title="Top" rel="start" href="index.html#Top"> <link rel="up" href="Objective_002dC.html#Objective_002dC" title="Objective-C"> <link rel="prev" href="Executing-code-before-main.html#Executing-code-before-main" title="Executing code before main"> <link rel="next" href="Garbage-Collection.html#Garbage-Collection" title="Garbage Collection"> <link href="path_to_url" rel="generator-home" title="Texinfo Homepage"> <!-- Permission is granted to copy, distribute and/or modify this document any later version published by the Free Software Foundation; with the Invariant Sections being ``Funding Free Software'', the Front-Cover Texts being (a) (see below), and with the Back-Cover Texts being (b) (see below). A copy of the license is included in the section entitled (a) The FSF's Front-Cover Text is: A GNU Manual (b) The FSF's Back-Cover Text is: You have freedom to copy and modify this GNU Manual, like GNU software. Copies published by the Free Software Foundation raise funds for GNU development.--> <meta http-equiv="Content-Style-Type" content="text/css"> <style type="text/css"><!-- pre.display { font-family:inherit } pre.format { font-family:inherit } pre.smalldisplay { font-family:inherit; font-size:smaller } pre.smallformat { font-family:inherit; font-size:smaller } pre.smallexample { font-size:smaller } pre.smalllisp { font-size:smaller } span.sc { font-variant:small-caps } span.roman { font-family:serif; font-weight:normal; } span.sansserif { font-family:sans-serif; font-weight:normal; } --></style> </head> <body> <div class="node"> <p> <a name="Type-encoding"></a> Next:&nbsp;<a rel="next" accesskey="n" href="Garbage-Collection.html#Garbage-Collection">Garbage Collection</a>, Previous:&nbsp;<a rel="previous" accesskey="p" href="Executing-code-before-main.html#Executing-code-before-main">Executing code before main</a>, Up:&nbsp;<a rel="up" accesskey="u" href="Objective_002dC.html#Objective_002dC">Objective-C</a> <hr> </div> <h3 class="section">8.3 Type Encoding</h3> <p>This is an advanced section. Type encodings are used extensively by the compiler and by the runtime, but you generally do not need to know about them to use Objective-C. <p>The Objective-C compiler generates type encodings for all the types. These type encodings are used at runtime to find out information about selectors and methods and about objects and classes. <p>The types are encoded in the following way: <!-- @sp 1 --> <p><table summary=""><tr align="left"><td valign="top" width="25%"><code>_Bool</code> </td><td valign="top" width="75%"><code>B</code> <br></td></tr><tr align="left"><td valign="top" width="25%"><code>char</code> </td><td valign="top" width="75%"><code>c</code> <br></td></tr><tr align="left"><td valign="top" width="25%"><code>unsigned char</code> </td><td valign="top" width="75%"><code>C</code> <br></td></tr><tr align="left"><td valign="top" width="25%"><code>short</code> </td><td valign="top" width="75%"><code>s</code> <br></td></tr><tr align="left"><td valign="top" width="25%"><code>unsigned short</code> </td><td valign="top" width="75%"><code>S</code> <br></td></tr><tr align="left"><td valign="top" width="25%"><code>int</code> </td><td valign="top" width="75%"><code>i</code> <br></td></tr><tr align="left"><td valign="top" width="25%"><code>unsigned int</code> </td><td valign="top" width="75%"><code>I</code> <br></td></tr><tr align="left"><td valign="top" width="25%"><code>long</code> </td><td valign="top" width="75%"><code>l</code> <br></td></tr><tr align="left"><td valign="top" width="25%"><code>unsigned long</code> </td><td valign="top" width="75%"><code>L</code> <br></td></tr><tr align="left"><td valign="top" width="25%"><code>long long</code> </td><td valign="top" width="75%"><code>q</code> <br></td></tr><tr align="left"><td valign="top" width="25%"><code>unsigned long long</code> </td><td valign="top" width="75%"><code>Q</code> <br></td></tr><tr align="left"><td valign="top" width="25%"><code>float</code> </td><td valign="top" width="75%"><code>f</code> <br></td></tr><tr align="left"><td valign="top" width="25%"><code>double</code> </td><td valign="top" width="75%"><code>d</code> <br></td></tr><tr align="left"><td valign="top" width="25%"><code>long double</code> </td><td valign="top" width="75%"><code>D</code> <br></td></tr><tr align="left"><td valign="top" width="25%"><code>void</code> </td><td valign="top" width="75%"><code>v</code> <br></td></tr><tr align="left"><td valign="top" width="25%"><code>id</code> </td><td valign="top" width="75%"><code>@</code> <br></td></tr><tr align="left"><td valign="top" width="25%"><code>Class</code> </td><td valign="top" width="75%"><code>#</code> <br></td></tr><tr align="left"><td valign="top" width="25%"><code>SEL</code> </td><td valign="top" width="75%"><code>:</code> <br></td></tr><tr align="left"><td valign="top" width="25%"><code>char*</code> </td><td valign="top" width="75%"><code>*</code> <br></td></tr><tr align="left"><td valign="top" width="25%"><code>enum</code> </td><td valign="top" width="75%">an <code>enum</code> is encoded exactly as the integer type that the compiler uses for it, which depends on the enumeration values. Often the compiler users <code>unsigned int</code>, which is then encoded as <code>I</code>. <br></td></tr><tr align="left"><td valign="top" width="25%">unknown type </td><td valign="top" width="75%"><code>?</code> <br></td></tr><tr align="left"><td valign="top" width="25%">Complex types </td><td valign="top" width="75%"><code>j</code> followed by the inner type. For example <code>_Complex double</code> is encoded as "jd". <br></td></tr><tr align="left"><td valign="top" width="25%">bit-fields </td><td valign="top" width="75%"><code>b</code> followed by the starting position of the bit-field, the type of the bit-field and the size of the bit-field (the bit-fields encoding was changed from the NeXT's compiler encoding, see below) <br></td></tr></table> <!-- @sp 1 --> <p>The encoding of bit-fields has changed to allow bit-fields to be properly handled by the runtime functions that compute sizes and alignments of types that contain bit-fields. The previous encoding contained only the size of the bit-field. Using only this information it is not possible to reliably compute the size occupied by the bit-field. This is very important in the presence of the Boehm's garbage collector because the objects are allocated using the typed memory facility available in this collector. The typed memory allocation requires information about where the pointers are located inside the object. <p>The position in the bit-field is the position, counting in bits, of the bit closest to the beginning of the structure. <p>The non-atomic types are encoded as follows: <!-- @sp 1 --> <p><table summary=""><tr align="left"><td valign="top" width="20%">pointers </td><td valign="top" width="80%">`<samp><span class="samp">^</span></samp>' followed by the pointed type. <br></td></tr><tr align="left"><td valign="top" width="20%">arrays </td><td valign="top" width="80%">`<samp><span class="samp">[</span></samp>' followed by the number of elements in the array followed by the type of the elements followed by `<samp><span class="samp">]</span></samp>' <br></td></tr><tr align="left"><td valign="top" width="20%">structures </td><td valign="top" width="80%">`<samp><span class="samp">{</span></samp>' followed by the name of the structure (or `<samp><span class="samp">?</span></samp>' if the structure is unnamed), the `<samp><span class="samp">=</span></samp>' sign, the type of the members and by `<samp><span class="samp">}</span></samp>' <br></td></tr><tr align="left"><td valign="top" width="20%">unions </td><td valign="top" width="80%">`<samp><span class="samp">(</span></samp>' followed by the name of the structure (or `<samp><span class="samp">?</span></samp>' if the union is unnamed), the `<samp><span class="samp">=</span></samp>' sign, the type of the members followed by `<samp><span class="samp">)</span></samp>' <br></td></tr><tr align="left"><td valign="top" width="20%">vectors </td><td valign="top" width="80%">`<samp><span class="samp">![</span></samp>' followed by the vector_size (the number of bytes composing the vector) followed by a comma, followed by the alignment (in bytes) of the vector, followed by the type of the elements followed by `<samp><span class="samp">]</span></samp>' <br></td></tr></table> <p>Here are some types and their encodings, as they are generated by the compiler on an i386 machine: <pre class="sp"> </pre> <p><table summary=""><tr align="left"><td valign="top" width="25%">Objective-C type </td><td valign="top" width="75%">Compiler encoding <br></td></tr><tr align="left"><td valign="top" width="25%"> <pre class="smallexample"> int a[10]; </pre> <p></td><td valign="top" width="75%"><code>[10i]</code> <br></td></tr><tr align="left"><td valign="top" width="25%"> <pre class="smallexample"> struct { int i; float f[3]; int a:3; int b:2; char c; } </pre> <p></td><td valign="top" width="75%"><code>{?=i[3f]b128i3b131i2c}</code> <br></td></tr><tr align="left"><td valign="top" width="25%"> <pre class="smallexample"> int a __attribute__ ((vector_size (16))); </pre> <p></td><td valign="top" width="75%"><code>![16,16i]</code> (alignment would depend on the machine) <br></td></tr></table> <pre class="sp"> </pre> In addition to the types the compiler also encodes the type specifiers. The table below describes the encoding of the current Objective-C type specifiers: <pre class="sp"> </pre> <p><table summary=""><tr align="left"><td valign="top" width="25%">Specifier </td><td valign="top" width="75%">Encoding <br></td></tr><tr align="left"><td valign="top" width="25%"><code>const</code> </td><td valign="top" width="75%"><code>r</code> <br></td></tr><tr align="left"><td valign="top" width="25%"><code>in</code> </td><td valign="top" width="75%"><code>n</code> <br></td></tr><tr align="left"><td valign="top" width="25%"><code>inout</code> </td><td valign="top" width="75%"><code>N</code> <br></td></tr><tr align="left"><td valign="top" width="25%"><code>out</code> </td><td valign="top" width="75%"><code>o</code> <br></td></tr><tr align="left"><td valign="top" width="25%"><code>bycopy</code> </td><td valign="top" width="75%"><code>O</code> <br></td></tr><tr align="left"><td valign="top" width="25%"><code>byref</code> </td><td valign="top" width="75%"><code>R</code> <br></td></tr><tr align="left"><td valign="top" width="25%"><code>oneway</code> </td><td valign="top" width="75%"><code>V</code> <br></td></tr></table> <pre class="sp"> </pre> The type specifiers are encoded just before the type. Unlike types however, the type specifiers are only encoded when they appear in method argument types. <p>Note how <code>const</code> interacts with pointers: <pre class="sp"> </pre> <p><table summary=""><tr align="left"><td valign="top" width="25%">Objective-C type </td><td valign="top" width="75%">Compiler encoding <br></td></tr><tr align="left"><td valign="top" width="25%"> <pre class="smallexample"> const int </pre> <p></td><td valign="top" width="75%"><code>ri</code> <br></td></tr><tr align="left"><td valign="top" width="25%"> <pre class="smallexample"> const int* </pre> <p></td><td valign="top" width="75%"><code>^ri</code> <br></td></tr><tr align="left"><td valign="top" width="25%"> <pre class="smallexample"> int *const </pre> <p></td><td valign="top" width="75%"><code>r^i</code> <br></td></tr></table> <pre class="sp"> </pre> <code>const int*</code> is a pointer to a <code>const int</code>, and so is encoded as <code>^ri</code>. <code>int* const</code>, instead, is a <code>const</code> pointer to an <code>int</code>, and so is encoded as <code>r^i</code>. <p>Finally, there is a complication when encoding <code>const char *</code> versus <code>char * const</code>. Because <code>char *</code> is encoded as <code>*</code> and not as <code>^c</code>, there is no way to express the fact that <code>r</code> applies to the pointer or to the pointee. <p>Hence, it is assumed as a convention that <code>r*</code> means <code>const char *</code> (since it is what is most often meant), and there is no way to encode <code>char *const</code>. <code>char *const</code> would simply be encoded as <code>*</code>, and the <code>const</code> is lost. <ul class="menu"> <li><a accesskey="1" href="Legacy-type-encoding.html#Legacy-type-encoding">Legacy type encoding</a> <li><a accesskey="2" href="_0040encode.html#g_t_0040encode">@encode</a> <li><a accesskey="3" href="Method-signatures.html#Method-signatures">Method signatures</a> </ul> </body></html> ```
Budgetpromenaden, or the budget walk, is a traditional biannual procession when the Swedish finance minister walk with a copy of the budget bill from the Ministry of Finance to the Riksdag (the Parliament), a distance of . The minister is followed by a large gathering of journalists and various political activists and is usually given extensive media coverage. Sometime minor incidents occur, like in April 2001 when a 21-year-old threw a cake on then finance minister Bosse Ringholm. The physical budget bill has traditionally been delivered in paper form, called "den nådiga luntan" (English: "the gracious tome"). Later social democratic governments have made a point of using digital storage media such as CD's from 1996, and later flash drives. When Sweden got a center-right government in 2006 the new finance minister Anders Borg returned to paper tomes. During 2017's budget walk, finance minister Magdalena Andersson carried a tome of 3 906 pages that weighed . Notable budget walks 20 September 1999 - Bosse Ringholm's first budget bill delivered as both CD and paper tome. 17 April 2001 - A 21-year-old throws a cake on Bosse Ringholm. 14 April 2005 - Pär Nuder's first budget walk, the budget bill is delivered as CD. 20 September 2005 - The CD is replaced with a USB flash drive, that Nuder carries in a blue ribbon around his neck. 16 October 2006 - Anders Borg delivers his first budget bill as paper tomes in purple binders. 23 October 2014 - Magdalena Andersson delivers her first budget bill. References Government of Sweden
```haskell {-# LANGUAGE DeriveFunctor #-} {-# LANGUAGE DeriveGeneric #-} {-# LANGUAGE LambdaCase #-} {-# LANGUAGE OverloadedLists #-} module Cardano.Wallet.API.Response ( Metadata (..) , ResponseStatus(..) , APIResponse(..) , JSONValidationError(..) , UnsupportedMimeTypeError(..) -- * Generating responses for collections , respondWith , fromSlice -- * Generating responses for single resources , single -- * A slice of a collection , SliceOf(..) , ValidJSON ) where import Prelude import Universum (Buildable, Exception, Text) import Data.Aeson (FromJSON (..), ToJSON (..)) import Formatting (bprint, build) import qualified Formatting.Buildable import Generics.SOP.TH (deriveGeneric) import GHC.Generics (Generic) import Servant (err400, err415) import Test.QuickCheck import Cardano.Wallet.API.Indices (Indexable, IxSet) import Cardano.Wallet.API.Request (RequestParams (..)) import Cardano.Wallet.API.Request.Filter (FilterOperations (..)) import Cardano.Wallet.API.Request.Pagination (Page (..), PaginationMetadata (..), PaginationParams (..), PerPage (..)) import Cardano.Wallet.API.Request.Sort (SortOperations (..)) import Cardano.Wallet.API.Response.Filter.IxSet as FilterBackend import Cardano.Wallet.API.Response.JSend (HasDiagnostic (..), ResponseStatus (..)) import Cardano.Wallet.API.Response.Sort.IxSet as SortBackend import Cardano.Wallet.API.V1.Errors (ToServantError (..)) import Cardano.Wallet.API.V1.Generic (jsendErrorGenericParseJSON, jsendErrorGenericToJSON) import Pos.Util.Servant as ServantUtil data SliceOf a = SliceOf { paginatedSlice :: [a] -- ^ A paginated fraction of the resource , paginatedTotal :: Int -- ^ The total number of entries } instance Arbitrary a => Arbitrary (SliceOf a) where arbitrary = SliceOf <$> arbitrary <*> arbitrary -- | Inefficient function to build a response out of a @generator@ function. When the data layer will -- be rewritten the obvious solution is to slice & dice the data as soon as possible (aka out of the DB), in this order: -- -- 1. Query/Filtering operations (affects the number of total entries for pagination); -- 2. Sorting operations -- 3. Pagination -- -- See also <path_to_url this document>, which -- states: -- "Paginating responses should be done after applying the filters in a query, because its possible for there -- to be no matches in the first page of results, and returning an empty page is a poor API when the user explicitly -- requested a number of results." -- -- NOTE: We have chosen have an approach such that we are sorting the whole dataset after filtering and using -- lazyness to avoid work. This might not be optimal in terms of performances and we might need to swap sorting -- and pagination. -- respondWith :: (Monad m, Indexable a) => RequestParams -> FilterOperations ixs a -- ^ Filtering operations to perform on the data. -> SortOperations a -- ^ Sorting operations to perform on the data. -> m (IxSet a) -- ^ The monadic action which produces the results. -> m (APIResponse [a]) respondWith RequestParams{..} fops sorts generator = do (theData, paginationMetadata) <- paginate rpPaginationParams . sortData sorts . applyFilters fops <$> generator return APIResponse { wrData = theData , wrStatus = SuccessStatus , wrMeta = Metadata paginationMetadata } paginate :: PaginationParams -> [a] -> ([a], PaginationMetadata) paginate params@PaginationParams{..} rawResultSet = let totalEntries = length rawResultSet (PerPage pp) = ppPerPage (Page cp) = ppPage metadata = paginationParamsToMeta params totalEntries slice = take pp . drop ((cp - 1) * pp) in (slice rawResultSet, metadata) paginationParamsToMeta :: PaginationParams -> Int -> PaginationMetadata paginationParamsToMeta PaginationParams{..} totalEntries = let perPage@(PerPage pp) = ppPerPage currentPage = ppPage totalPages = max 1 $ ceiling (fromIntegral totalEntries / (fromIntegral pp :: Double)) in PaginationMetadata { metaTotalPages = totalPages , metaPage = currentPage , metaPerPage = perPage , metaTotalEntries = totalEntries } fromSlice :: PaginationParams -> SliceOf a -> APIResponse [a] fromSlice params (SliceOf theData totalEntries) = APIResponse { wrData = theData , wrStatus = SuccessStatus , wrMeta = Metadata (paginationParamsToMeta params totalEntries) } -- -- Creating a better user experience when it comes to errors. -- -- -- Error from parsing / validating JSON inputs -- newtype JSONValidationError = JSONValidationFailed Text deriving (Eq, Show, Generic) deriveGeneric ''JSONValidationError instance ToJSON JSONValidationError where toJSON = jsendErrorGenericToJSON instance FromJSON JSONValidationError where parseJSON = jsendErrorGenericParseJSON instance Exception JSONValidationError instance Arbitrary JSONValidationError where arbitrary = pure (JSONValidationFailed "JSON validation failed.") instance Buildable JSONValidationError where build _ = bprint "Couldn't decode a JSON input." instance HasDiagnostic JSONValidationError where getDiagnosticKey _ = "validationError" instance ToServantError JSONValidationError where declareServantError _ = err400 newtype UnsupportedMimeTypeError = UnsupportedMimeTypePresent Text deriving (Eq, Show, Generic) deriveGeneric ''UnsupportedMimeTypeError instance ToJSON UnsupportedMimeTypeError where toJSON = jsendErrorGenericToJSON instance FromJSON UnsupportedMimeTypeError where parseJSON = jsendErrorGenericParseJSON instance Exception UnsupportedMimeTypeError instance Arbitrary UnsupportedMimeTypeError where arbitrary = pure (UnsupportedMimeTypePresent "Delivered MIME-type is not supported.") instance Buildable UnsupportedMimeTypeError where build (UnsupportedMimeTypePresent txt) = bprint build txt instance HasDiagnostic UnsupportedMimeTypeError where getDiagnosticKey _ = "mimeContentTypeError" instance ToServantError UnsupportedMimeTypeError where declareServantError _ = err415 ```
```python #!/usr/bin/env python # # or more contributor license agreements. See the NOTICE file # distributed with this work for additional information # regarding copyright ownership. The ASF licenses this file # # path_to_url # # Unless required by applicable law or agreed to in writing, # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY # specific language governing permissions and limitations """ Simple script which performs some sanity checks on the built thirdparty/. """ import argparse import os import subprocess import sys TP_DIR = os.path.dirname(os.path.realpath(__file__)) def shell(status_msg, script): to_print = status_msg + " ..." p = subprocess.Popen(["/bin/bash"], stderr=subprocess.PIPE, stdout=subprocess.PIPE, stdin=subprocess.PIPE, universal_newlines=True) stdout, _ = p.communicate(input=script) if p.returncode != 0: to_print += " FAILED\n" for line in stdout.strip().split("\n"): to_print += "==> " + line + "\n" else: to_print += " PASSED" print(to_print) if p.returncode != 0: sys.exit(1) def check_tsan_dependencies(): shell( "Checking that no TSAN dependency depends on libstdc++", """ if [[ "$OSTYPE" == "darwin"* ]]; then echo No TSAN support on macOS, skipping test exit 0 fi lib_dir="{tp_dir}/installed/tsan/lib" echo Looking for TSAN dependencies directory $lib_dir if [ ! -d "$lib_dir" ]; then echo Could not find TSAN dependencies directory $lib_dir, skipping test exit 0 fi echo Found TSAN dependencies directory $lib_dir echo Looking for ldd if ! $(which ldd > /dev/null 2>&1); then echo Could not find ldd exit 1 fi echo Found ldd echo Checking dependencies for so in $lib_dir/*.so; do found=$(ldd $so 2>/dev/null | grep -q libstdc++ && echo $so) if [ -n "$found" ]; then echo Found bad dependency: $found exit 1 fi done echo All TSAN dependencies checked """.format(tp_dir=TP_DIR)) def main(argv): p = argparse.ArgumentParser() p.add_argument("--tsan", dest="tsan", action="store_true", help="Whether the thirdparty is built in TSAN configuration", default=False, required=False) args = p.parse_args(argv) print("Running post-flight checks") print("-------------------------") if args.tsan: check_tsan_dependencies() else: print("Skipping the check of TSAN dependencies") print("-------------------------") print("Post-flight checks succeeded.") return 0 if __name__ == "__main__": sys.exit(main(sys.argv[1:])) ```
```javascript class A {set constructor(m){}} ```
Zenobia was a merchant ship launched in 1815 at Calcutta, India. She traded with India under license from the British East India Company (EIC), and made one voyage for the EIC. She then became a Free Trader (i.e., no longer required a license). In 1852 the P&O company purchased Zenobia to use her as a coal hulk. She was broken up in 1871. Career Zenobia first appears in Lloyd's Register in 1816 as a one-year old ship. G. Pelly is her master and owner, and her trade is London—India. On 25 August 1827 Zenobia sailed for Bengal. Between 9 July 1829 and 14 June 1830, Zenobia made a return voyage from London to Bengal for the EIC. Lloyd's Register for 1830 shows Zenobia with Douglas as master & owner, and trade London—India. The Indian businessman and industrialist Dwarkanath Tagore purchased Zenobia (or more likely a share in her), in 1833 for Rupees 55,000 from the estate of James Calder after the failure of the firm Mackingtosh & Co. In August 1835 Zenobia was sold to J. Owen & Co. The following advertisement soliciting outbound passengers from England appeared in "The Indian Mail" in 1843: For CALCUTTA, calling at MADRAS, to land Passengers only, the Teak Ship ZENOBIA, 600 Tons, S.H. Owen, Commander. To leave the St. Catherine Docks the 15th December, calling at Portsmouth to embark Passengers. — For Freight or Passage, apply to Messrs. BARING, BROTHERS, and Co., S. Bishopsgate Street; or to JAMES BARBER and Co., 17, St. Mary Ave. In 1852 the Peninsular & Oriental Steam Navigation Co. (P&0) purchased Zenobia to use her as a hulk. Zenobia is last listed in Lloyd's Register (1852) with Saxon, owner and master, and no trade. Fate In 1871 Zenobia was sold for breaking up. See also Dwarkanath Tagore Citations References 1815 ships Merchant ships of the United Kingdom Ships of the British East India Company Individual sailing vessels British ships built in India Coal hulks
Remise may refer to: Remise (architecture) Remise (fencing)
The 2022 Canadian Open championships (branded as the 2022 National Bank Open presented by Rogers for sponsorship reasons) were outdoor hard court tennis tournaments played from August 8 to August 14, 2022, as part of the 2022 US Open Series. The men's tournament took place at the IGA Stadium in Montreal and the women's event took place at the Sobeys Stadium in Toronto. It was the 132nd edition of the men's tournament—a Masters 1000 event on the 2022 ATP Tour, and the 120th edition of the women's tournament—a WTA 1000 event on the 2022 WTA Tour. Points and prize money Point distribution Prize money *per team Champions Men's singles Pablo Carreño Busta def. Hubert Hurkacz, 3–6, 6–3, 6–3 Women's singles Simona Halep def. Beatriz Haddad Maia 6–3, 2–6, 6–3 This was Halep's second title of the year and 24th of her career. Men's doubles Wesley Koolhof / Neal Skupski def. Dan Evans / John Peers, 6–2, 4–6, [10–6] Women's doubles Coco Gauff / Jessica Pegula def. Nicole Melichar-Martinez / Ellen Perez, 6–4, 6–7(5–7), [10–5]. By winning the title, Gauff gained the No. 1 WTA doubles ranking for the first time. References External links 2022 ATP Tour 2022 in Canadian tennis 2022 in Quebec 2022 in Toronto August 2022 sports events in Canada 2022
```smalltalk using UnityEngine; using System.Collections.Generic; public class CharCampingSkillPanel : MonoBehaviour { [SerializeField] private List<CampingSkillSlot> skillSlots; private Hero currentHero; private bool interactable; private void Awake() { for (int i = 0; i < skillSlots.Count; i++) { skillSlots[i].EventSkillSelected += CharCampingSkillPanelSkillSelected; skillSlots[i].EventSkillDeselected += CharCampingSkillPanelSkillDeselected; } } private void CharCampingSkillPanelSkillDeselected(CampingSkillSlot slot) { if (currentHero.SelectedCampingSkills.Count == 3) for (int i = 0; i < skillSlots.Count; i++) if (!skillSlots[i].Selected && !skillSlots[i].Locked) { skillSlots[i].Available = true; skillSlots[i].SkillIcon.material = skillSlots[i].Highlighted ? DarkestDungeonManager.HighlightMaterial : skillSlots[i].SkillIcon.defaultMaterial; } } private void CharCampingSkillPanelSkillSelected(CampingSkillSlot slot) { if (currentHero.SelectedCampingSkills.Count != 4) return; for (int i = 0; i < skillSlots.Count; i++) if (!skillSlots[i].Selected) { skillSlots[i].Available = false; skillSlots[i].SkillIcon.material = skillSlots[i].Highlighted ? DarkestDungeonManager.GrayHighlightMaterial : DarkestDungeonManager.GrayMaterial; } } public void UpdateCampingSkillPanel(Hero hero, bool allowedInteraction) { interactable = allowedInteraction; currentHero = hero; for (int i = 0; i < skillSlots.Count; i++) { skillSlots[i].UpdateSkill(hero, i); skillSlots[i].Interactable = interactable; skillSlots[i].Available = true; } if (currentHero.SelectedCampingSkills.Count == 4) foreach (CampingSkillSlot slot in skillSlots) { if (!slot.Selected) { slot.Available = false; slot.SkillIcon.material = slot.Highlighted ? DarkestDungeonManager.GrayHighlightMaterial : DarkestDungeonManager.GrayMaterial; } else { slot.Available = true; slot.SkillIcon.material = slot.Highlighted ? DarkestDungeonManager.HighlightMaterial : slot.SkillIcon.defaultMaterial; } } else foreach (CampingSkillSlot slot in skillSlots) { if (!slot.Locked) slot.SkillIcon.material = slot.Highlighted ? DarkestDungeonManager.HighlightMaterial : slot.SkillIcon.defaultMaterial; else slot.SkillIcon.material = slot.Highlighted ? DarkestDungeonManager.GrayHighlightMaterial : DarkestDungeonManager.GrayMaterial; } } } ```
Eikesdalsvatnet is a lake in Molde Municipality in Møre og Romsdal county, Norway. The lake is long and narrow, roughly in length, and it is the largest lake in Møre og Romsdal county. The village of Eikesdalen is located at the southern end of the lake. Average depth is 89 meters (which is 67 meters below sea level) such that most of the lake's volume is below sea level. Its main inflows are the river Aura, flowing northwest from the lake Aursjøen, and the river Mardøla with the famous waterfall Mardalsfossen. The lake flows out through the River Eira which flows into the Eresfjorden. The lake is surrounded by tall mountains like Juratinden and Fløtatinden. See also List of lakes in Norway References Molde Lakes of Møre og Romsdal
```smalltalk using System.Collections.Generic; using System.Runtime.CompilerServices; using AdaptiveExpressions; using Microsoft.Bot.Builder.Dialogs; using Microsoft.Bot.Builder.Dialogs.Adaptive.Conditions; using Microsoft.Bot.Schema; using Newtonsoft.Json; namespace MemberUpdates { /// <summary> /// Actions triggered when ConversationUpdateActivity is received with Activity.MembersRemoved > 0. /// </summary> public class OnMembersRemoved : OnActivity { /// <summary> /// Gets the unique name (class identifier) of this trigger. /// </summary> /// <remarks> /// There should be at least a .schema file of the same name. There can optionally be a /// .uischema file of the same name that describes how Composer displays this trigger. /// </remarks> [JsonProperty("$kind")] public new const string Kind = "OnMembersRemoved"; /// <summary> /// Initializes a new instance of the <see cref="OnMembersRemoved"/> class. /// </summary> /// <param name="actions">Optional, list of <see cref="Dialog"/> actions.</param> /// <param name="condition">Optional, condition which needs to be met for the actions to be executed.</param> /// <param name="callerPath">Optional, source file full path.</param> /// <param name="callerLine">Optional, line number in source file.</param> [JsonConstructor] public OnMembersRemoved(List<Dialog> actions = null, string condition = null, [CallerFilePath] string callerPath = "", [CallerLineNumber] int callerLine = 0) : base(type: ActivityTypes.ConversationUpdate, actions: actions, condition: condition, callerPath: callerPath, callerLine: callerLine) { } /// <inheritdoc/> protected override Expression CreateExpression() { // The Activity.MembersRemoved list must have more than 0 items. return Expression.AndExpression(Expression.Parse($"count({TurnPath.Activity}.MembersRemoved) > 0"), base.CreateExpression()); } } } ```
```objective-c #pragma once #include <vector> #include "envoy/buffer/buffer.h" #include "envoy/common/pure.h" #include "absl/container/fixed_array.h" namespace Envoy { namespace Extensions { namespace NetworkFilters { namespace Kafka { /** * Kafka message decoder. */ class MessageDecoder { public: virtual ~MessageDecoder() = default; /** * Processes given buffer attempting to decode messages contained within. * @param data buffer instance. */ virtual void onData(Buffer::Instance& data) PURE; }; template <typename MessageType, typename ParseFailureType> class MessageCallback { public: virtual ~MessageCallback() = default; /** * Callback method invoked when message is successfully decoded. * @param message message that has been decoded. */ virtual void onMessage(MessageType message) PURE; /** * Callback method invoked when message could not be decoded. * Invoked after all message's bytes have been consumed. */ virtual void onFailedParse(ParseFailureType failure_data) PURE; }; /** * Abstract message decoder, that resolves messages from Buffer instances provided. * When the message has been parsed, notify the callbacks. */ template <typename ParserType, typename CallbackType> class AbstractMessageDecoder : public MessageDecoder { public: ~AbstractMessageDecoder() override = default; /** * Creates a decoder that will invoke given callbacks when a message has been parsed. * @param callbacks callbacks to be invoked (in order). */ AbstractMessageDecoder(const std::vector<CallbackType> callbacks) : callbacks_{callbacks} {}; /** * Consumes all data present in a buffer. * If a message can be successfully parsed, then callbacks get notified with parsed response. * Updates decoder state. * Can throw if codec's state does not permit usage, or there there were parse failures. * Impl note: similar to redis codec, which also keeps state. */ void onData(Buffer::Instance& data) override { // Pass slices to `doParse`. for (const Buffer::RawSlice& slice : data.getRawSlices()) { doParse(slice); } } /** * Erases codec state. */ virtual void reset() { current_parser_ = nullptr; } ParserType getCurrentParserForTest() const { return current_parser_; } protected: /** * Create a start parser for a new message. */ virtual ParserType createStartParser() PURE; private: /** * Main parse loop. * * If there is data to process, and the current parser is not present, * create a new one with `createStartParser`. * Feed data to a current parser until it returns a parse result. * If the parse result is a parsed message, notify callbacks and reset current parser. * If the parse result is another parser, update current parser, and keep feeding. */ void doParse(const Buffer::RawSlice& slice) { const char* bytes = reinterpret_cast<const char*>(slice.mem_); absl::string_view data = {bytes, slice.len_}; while (!data.empty()) { // Re-initialize the parser. if (!current_parser_) { current_parser_ = createStartParser(); } // Feed the data to the parser. auto result = current_parser_->parse(data); // This loop guarantees that parsers consuming 0 bytes also get processed in this invocation. while (result.hasData()) { if (!result.next_parser_) { // Next parser is not present, so we have finished parsing a message. // Depending on whether the parse was successful, invoke the correct callback. if (result.message_) { for (auto& callback : callbacks_) { callback->onMessage(result.message_); } } else { for (auto& callback : callbacks_) { callback->onFailedParse(result.failure_data_); } } // As we finished parsing this response, return to outer loop. // If there is more data, the parser will be re-initialized. current_parser_ = nullptr; break; } else { // The next parser that's supposed to consume the rest of payload was given. current_parser_ = result.next_parser_; } // Keep parsing the data. result = current_parser_->parse(data); } } } const std::vector<CallbackType> callbacks_; ParserType current_parser_; }; /** * Kafka message encoder. * @param MessageType encoded message type (request or response). */ template <typename MessageType> class MessageEncoder { public: virtual ~MessageEncoder() = default; /** * Encodes given message. * @param message message to be encoded. */ virtual void encode(const MessageType& message) PURE; }; } // namespace Kafka } // namespace NetworkFilters } // namespace Extensions } // namespace Envoy ```
```emacs lisp ;;; nxml-maint.el --- commands for maintainers of nxml-*.el -*- lexical-binding:t -*- ;; Author: James Clark ;; Keywords: wp, hypermedia, languages, XML ;; This file is part of GNU Emacs. ;; GNU Emacs is free software: you can redistribute it and/or modify ;; (at your option) any later version. ;; GNU Emacs is distributed in the hope that it will be useful, ;; but WITHOUT ANY WARRANTY; without even the implied warranty of ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ;; along with GNU Emacs. If not, see <path_to_url ;;; Commentary: ;;; Code: ;;; Parsing target repertoire files from ucs-fonts. ;; This is for converting the TARGET? files in ;; path_to_url~mgk25/download/ucs-fonts.tar.gz ;; into a glyph set. (defun nxml-insert-target-repertoire-glyph-set (file var) (interactive "fTarget file: \nSVariable name: ") (let (lst head) (with-current-buffer (find-file-noselect file) (goto-char (point-min)) (while (re-search-forward "^ *\\([a-FA-F0-9]\\{2\\}\\)[ \t]+" nil t) (let ((row (match-string 1)) (eol (line-end-position))) (while (re-search-forward "\\([a-FA-F0-9]\\{2\\}\\)-\\([a-FA-F0-9]\\{2\\}\\)\\|\\([a-FA-F0-9]\\{2\\}\\)" eol t) (setq lst (cons (if (match-beginning 3) (concat "#x" row (match-string 3)) (concat "(#x" row (match-string 1) " . #x" row (match-string 2) ")")) lst)))))) (setq lst (nreverse lst)) (insert (format "(defconst %s\n [" var)) (while lst (setq head (car lst)) (setq lst (cdr lst)) (insert head) (when (= (length head) 6) (while (and lst (= (length (car lst)) 6)) (insert " ") (insert (car lst)) (setq lst (cdr lst)))) (when lst (insert "\n "))) (insert "])\n"))) (provide 'nxml-maint) ;;; nxml-maint.el ends here ```
The following is a list of typefaces designed by Frederic Goudy. Goudy was one of America's most prolific designers of metal type. He worked under the influence of the Arts and Crafts movement, and many of his designs are old-style serif designs inspired by the relatively organic structure of typefaces created between the fifteenth and eighteenth centuries, following the lead of earlier revivalist printers such as William Morris. Eric Sloane, who was his neighbour as a boy, recalled that he also took inspiration from hand-painted signs. He also developed a number of typefaces influenced by blackletter medieval manuscripts, illuminated manuscript capitals and Roman square capitals carved into stone. This means that several of his most famous designs such as Copperplate Gothic and Goudy Stout are unusual deviations from his normal style. Goudy's taste matched a trend of the period, in which a preference for using mechanical, geometric Didone fonts introduced in the eighteenth and nineteenth century was being displaced by a revival of interest in the 'old-style' serif fonts (preferred by Goudy) developed before this, a change that has proved to be lasting, especially in book body text. Again unusually for type designers of the period, Goudy wrote extensively on his work and ambitions, partly in order to publicise his work as an independent artisan. He completed A Half-Century of Type Design and Typography, a two-volume survey of all his designs, late in life, in which he discussed all of his work. Not all Goudy's designs survive or have been digitised: several, often designs never cut into metal, were lost in fires which burned down his studio in 1908 and again in 1939. Indeed, in his autobiography Goudy sometimes said he had little memory of some of his earlier designs. He worked extensively with his wife Bertha, who particularly collaborated with him on printing projects. He listed his typefaces with numbers in a similar way to the opus numbers used by composers. Career Unlike most type designers of the metal type era, Goudy worked as an independent designer not permanently employed by any one company, giving him particular latitude to work on his own projects. He generally avoided sans-serif designs, though he did create the nearly sans-serif Copperplate Gothic, inspired by engraved letters, early in his career and a few others later. As an independent artist and consultant, Goudy needed to undertake a large range of commissions to survive, and sought patronage from companies (and, especially later in life, universities) who would commission a typeface for their own printing and advertising. This led to him producing a large range of designs on commission, and promoting his career through talks and teaching. As a result, many of his designs may look somewhat similar to modern readers. Goudy's career took place at a time of progress in printing technology. New pantograph engraving technology made it easier to rapidly engrave matrices), the moulds in which metal type would be cast or the punches used to stamp them in copper. This gave much cleaner results than pre-pantograph punches, which had to be carefully hand-carved at the size of the desired letter, with less difficulty and the ability to prepare designs more easily from large plan drawings. During the early years of Goudy's career, hand typesetting was being superseded, especially for body text composition, by hot metal typesetting, and his client Monotype was one of the most popular manufacturers of these systems, in competition with that of Linotype. Both allowed metal type to be quickly cast under the control of a keyboard, eliminating the need to manually cast metal type and slot it into place into a printing press. With no need to keep type in stock, just the matrices used as moulds to cast the type, printers could use a wider range of fonts and there was increasing demand for varied typefaces. However, many of Goudy’s designs were used in hand-setting also. While most of Goudy's designs are 'old-style' serif faces, they do still explore a wide range of aspects of the genre, with Deepdene offering a strikingly upright italic, Goudy Modern merging traditional old-style letters with the insistent, horizontal serifs of Didone faces of the eighteenth and nineteenth centuries and several such as Goudy Old Style being sold with a swash italic for display use. His sans-serif series, Goudy Sans, adopts an eccentric humanist style with a calligraphic italic. Quite unlike most sans-serif types of the period, it was unpopular in his lifetime but has been revived several times since by both LTC and ITC. Goudy started his career as a full-time type designer later in life, creating his first font in his early thirties. In his earlier career he had worked first as a bookkeeper, and then as a printer and lettering artist. Critical assessment The printer Daniel Berkeley Updike, while respecting some of his work, echoed Goudy's student Dwiggins' comment that his work lacked 'a certain snap and acidity'. He also wrote that Goudy had "never gotten over" a desire to imitate medieval books. The British printer Stanley Morison, also a veteran of fine book printing whose career at Monotype had moved in the direction of blending tradition with practicality, admired much of Goudy's work and ethos but wrote that Goudy had "designed a whole century of very peculiar looking types", and that he was glad that his company's Times New Roman did not look "as if it has been designed by somebody in particular — Mr. Goudy for instance." Goudy felt in his later life that his career had been overshadowed by new trends, with modernism and a trend towards sans-serifs and sharp geometric type leaving his work out of favor. Walter Tracy, a leading historian of type design, devoted a section of his book Letters of Credit to a critical assessment of Goudy's work. He was impressed by Goudy Old Style, the blackletter Goudy Text, Goudy Heavy and to a certain extent Deepdene, but felt that Goudy was over-fond of eccentric detailing, such as a "restless" tilted 'e' common in early printing, and felt that Goudy's prolific work rate had prevented him from critically assessing his designs. He noted as an example how his "Bertham" type, named in memory of his late wife ("Bertha M."), was drawn and engraved in sixteen working days: "there cannot have been much time for the objective scrutiny which every design should undergo before it is allowed to emerge from the workshop." Goudy gave his blackletter designs the adjective text, short for 'textura'. This designation was common in Goudy's time; it is now avoided due to confusion with fonts intended for body text. Typefaces designed by Goudy 1896 to 1904 Camelot (1896, Dickinson Type Foundry), Goudy designed only the capitals, lower-case letters were later added, presumably by Dickinson's type designer Joseph W. Phinney or his team. A delicate Art Nouveau-inspired display face with small wedge serifs. Unnamed (1896) this was a second set of drawings sent to Dickinson Type Foundry that he sent them after they had accepted Camelot. It was neither accepted nor cast, but Goudy numbered it among his faces. Display Roman (1897, nc), based on some lettering in an issue of the British magazine The Studio. Goudy numbered it among his designs, though even he was unsure of what exactly it was beyond being "a display letter leaning to the bold side" or if it had ever been manufactured. DeVinne Roman (1898, Central Type Foundry, ATF), a book face based on a display type that had been earlier commissioned by Theodore Low De Vinne. Pabst Old Style or Pabst Roman (1902, ATF), based on hand lettering done by Goudy for advertisements for the Pabst Brewing Company, though commissioned by Schlesinger & Mayer, a Chicago department store. Cast by ATF with the proviso that the department store would have the exclusive use of the font for a time before it would be offered to the public. The design had a strikingly low x-height. Pabst Roman Italic (1903, ATF), a companion to the above. Cut by Robert Wiebking, who would work extensively with Goudy in the following years. Powell (1903, Keystone Foundry), commissioned by one Mr. Powell, then advertising manager for Mandel Brothers department store (earlier he had commissioned Pabst Old Style for another store), and named after him. Another display type, partially inspired by lettering Goudy had done for the children's book Mother Goose, a design which Goudy felt had been pirated by the Inland Type Foundry as their font 'Hearst'. To give the font a different colour to Pabst or the 'Hearst' font, Goudy attempted to balance the x-height and height of the ascenders and descenders differently. Goudy reported in his autobiography that Keystone later created a matching italic. The Village series was a family named after Goudy's own Village Press, which came to use it. Village (1903, Wiebking, Harding & Co.), cut by Wiebking. It was originally designed for Kuppenheimer & Company for advertising use, who later decided it would be too expensive to cast, and later bought by Frederick Sherman. The design was very much under the influence of William Morris's 'Golden' type, itself influenced by the 1470s printing of Nicolas Jenson, as well as other (mostly British) fine printers such as the Doves, Montaigne and Merrymount presses. The matrices are still extant and cast by Dale Guild Foundry. Village No. 2 (1932, Continental, later Lanston Monotype), cut by Goudy for an edition of Theodore Low De Vinne's The Old and the New, later marketed by Monotype. Village Italic (1934, Continental + Lanston Monotype), cut by Goudy. A companion to the No. 2 face. Cushing Italic Goudy thought that Clarence C. Marder asked him to draw an italic to complement ATF's existing Cushing Roman sometime after 1904. However, Goudy was unsure whether they ultimately used his design, and ATF catalogs show it as existing as early as 1898. Barron's Boston News Letter (1904, ATF), a private face cut for Clarence W. Barron's financial newsletter, matrices cut by Wiebking. Goudy wrote in 1946 that he had no knowledge of what became of the design and little memory of what it was. Engravers' Roman (1904, nc), inspired by copperplate engraving. Goudy was uncertain if this type had ever been cast. Copperplate Gothic (1905, ATF), originally designed for Marder, Luse, & Co., ATF immediately adopted it and made it the first in a hugely successful series: Clarence C. Marder and Morris Fuller Benton later cut dozens of variations for ATF. 'Gothic' was a contemporary term for sans-serif typefaces; it has nothing to do with 'gothic' or blackletter writing.Master printer J.L. Frazier, no great fan of sans-serif types, wrote of it in 1925 that it was a popular choice for the stationery of professionals such as lawyers and doctors: "a certain dignity of effect accompanies...due to the absence of anything in the way of frills." Caxton Initials (1905, ATF), a font included twenty-six 'Lombard capitals' and one leaf ornament only. Globe Gothic Bold (1905, ATF), a companion to Morris Fuller Benton's 'Globe Gothic'. Sans-serif design with variable stroke width. Utterly unlike Goudy's normal work, and created on commission. Goudy wrote that it "is the least satisfactory (to me) of all my types. Phinney paid me a sum that at that time I considered liberal, and I have never been able to free my mind from the suspicion that he wished to help me financially more than he required such a type for his foundry…Gerry Powell of A.T.F. insists that it sold in considerable quantities, but I have never come across many pieces of printing showing it." Caslon Revised (1905, never cast), for A.T.F. Caslon was a very popular typeface in the American printing of the period, becoming almost a genre with many derivatives and expansions. Clarence Marder of A.T.F. asked Goudy to draw a more regular version of the design, intended to have a more even colour on the page than the original design. Ultimately never cast. Goudy Light Roman + Italic (1908, Lanston Monotype), originally made for use in Life magazine (who, Goudy reported, ultimately never used it) and initially called "Monotype 38E" after its order number. Sometimes known as Gimbel because of its use in ads for Gimbel's Department Store. An elegant design, which Goudy described as better-adapted for advertising and display use than for body text. Norman Capitals (1910, privately cast by ATF), cut for Munder-Thompson Company, a Baltimore printing firm, and named for Norman Munder. Goudy was unsure what became of the font, although he held a specimen of it and reproduced it in his memoir. 1911 to 1926 From 1911 to 1926 (with a few exceptions) Goudy's designs were cut by Robert Wiebking. Some were private commissions, others were cut first and then offered for sale. Kennerley series The Kennerley Series, named for New York publisher Mitchell Kennerley, was Goudy's first major success in his own style.Goudy described the design as extremely loosely suggested by the 'Fell Types', a set of type in the Dutch style collected by Bishop John Fell of Oxford for the Oxford University Press: "comparison of my type with the Fell letter will disclose little more than an identity of spirit." Others have compared it in some details, notably the tilted understroke on the 'e' of which Goudy was fond, to the type of late 15th century Venetian printer Nicolas Jenson. Many revivals and digitisations have been released since. Kennerley Old Style (1911, Village Letter Foundry + 1920, Lanston Monotype + 1927 Continental) Kennerley Italic (1918, Village Letter Foundry + 1920, Lanston Monotype + 1927 Continental) Kennerley Bold + Bold Italic (1924, Lanston Monotype + Continental) Forum Title (1911, Lanston Monotype), capitals only, based on the lettering on the Arch of Titus in the Roman Forum. Distinguishable from some of Goudy's other Roman-inspired fonts by the Greek-inspired curving capital 'Y' in the tradition of the Greek letter upsilon. Quite soft in appearance, which Tracy found "too much of a good thing". Sherman (1910), privately cast for publisher Frederick Sherman who never used it. After the death of Sherman and new ownership by his niece, Elizabeth Sherman Engelhardt, original proofs and remaining metal type were donated to Syracuse University for use exclusively by its faculty and students. The Sherman typeface was brought back to life and digitally redrawn by Chester Jenkins in 2016. Goudy Lanston (1912, Village Letter Foundry) Initially named 'Goudy Old Style', but in 1915, when ATF requested this name for his new face for them, Goudy agreed and renamed it. 26 Lead Soldiers noted that "Goudy's own Village Foundry was long the sole source of this face, 14-point roman only". When Lanston Monotype bought and issued the face, it was again renamed, in honour of Tolbert Lanston; it was originally called Goudy Antique. Issued in England, with some alterations, by Caslon under the name Ratdolt. Evidently, this altered English version, was issued under the names Foster and Moore by Barnhart Brothers & Spindler along with a "matching" italic (see below). Goudy Roman (1914), originally designed for Louis Orr of the Bartlett Press who was supposed to have them cast by Caslon Foundry, but Caslon refused to take on new work due to a "war scare". Later, Barnhart Brothers & Spindler expressed interest in the project cut trial matrices, which Goudy did not like, so he eventually cut the matrices himself. It is unclear if the type was ever cast in quantity. Klaxon (1914, cut for Klaxon Auto Warning Signal Company), the matrices, which were cut by Wiebking, were lost in Goudy's 1939 studio fire. Goudy Italic, a companion to Goudy Roman which never progressed past initial drawings which were then destroyed in Goudy's 1939 studio fire. 1915 to 1926: Cut by ATF In 1915 and 1916, Goudy was on retainer for American Type Founders and all of his matrices were cut in house by ATF. Goudy Old Style Described as 'an instant best-seller' by Lawson in Anatomy of a Typeface, Goudy Old Style (1915) has remained popular since its creation for ATF as a body text and display face. Goudy described the design as influenced by capitals on a painting, but later said he was unable to find which, although he thought it was by Hans Holbein (Goudy did not say which). The dots (tittles) on the 'i' and 'j' are diamond-pattern, and the descenders were kept short at ATF's insistence to allow tight line setting on their common line system. Many revivals have been released. Goudy later also designed an italic, and A.T.F. a bold weight and a medium, named 'Goudy Catalogue'. Goudy Old Style became particularly commonly used for display and advertising use. Indeed, in 1937, the printing textbook 26 Lead Soldiers described the bold as 'better known' than the regular. Goudy Cursive (1916, ATF): a set of swash capitals and other alternate characters for Goudy Old Style. Booklet Old Style (1916, ATF), apparently never marketed. Proof shown in Goudy's memoir. National Old Style (1916, ATF), quite similar to his Nabisco. Unnamed (1917), Goudy had zinc etchings made of this face and pulled proofs, which dissatisfied him. He scrapped the face and the drawings are now in the Library of Congress. Advertiser's Roman (1917, nc), patterns were cut but never cast, all traces lost in Goudy's 1939 studio fire. Cloister Initials (1918, ATF), a set of floral initials designed to be used with Morris Fuller Benton's Cloister Old Style. Hadriano Title (1918, Lanston Monotype + 1927, Continental), matrices cut by Wiebking. Based on the appearance of worn stone capitals. Hadriano Lower Case (1930, nc), designed by Goudy for Monotype but never cut. In 1932 Monotype released a full-font that consisted of Hadriano Title matched with Kennerley Bold lower case letters. Goudy Open and Goudy Modern Goudy Open (1918, Village Letter Foundry + 1924, Monotype Ltd. + 1927, Continental), matrices cut by Wiebking. An open face design (similar to Imprint Shadowed) but influenced by Didone or Modern serif fonts, such as Didot and Bodoni. The influence is visible in exactly horizontal serifs on letters with ascenders, very different to other Goudy 'open face' designs. Goudy's aim was to 'redeem' the Didone letterform by letting more white space into it, in order to preserve the outline area and bulk of the letterforms while reducing the area of ink on the page. Goudy Modern (1918, Village Letter Foundry + 1924, Monotype Ltd. + 1927, Continental), basically a "filled in" version of Goudy Open, matrices cut by Wiebking. Used in the Arion Press's 1980 edition of Moby Dick, typeset by Andrew Hoyem. Goudy Open Italic + Modern Italic (1919, Village Letter Foundry + 1924, Monotype Ltd.), matrices cut by Wiebking. The normal italic was this time made first, then the open design. Collier Old Style (1919, ATF), a private type for Proctor & Collier, a Cincinnati advertising agency, matrices cut by Wiebking. Lining Gothic (1921, nc), a caps-only, almost sans-serif design with small wedge serifs on the stroke ends. Drawings for this face were complete, but when Wiebking was late in cutting the matrices, the order was cancelled and Goudy lost interest in the design. Example prints are shown in Goudy's autobiography and Elements of Lettering. Writing in 1946, he noted that had he resumed work, he could have anticipated Kabel and Futura with the design. It is also strikingly similar to Albertus of over a decade later. Nabisco (1921, privately cast), cut for the National Biscuit Company based on the hand-lettered logotype he had done for them twenty years ago, matrices cut by Wiebking. Garamont One of Goudy's most popular typefaces in his lifetime, Garamont (1921, Lanston Monotype + 1927, Continental) was loosely based on metal types in the Imprimerie nationale, the French government printing-office, that were at the time thought to be the work of Claude Garamont. Research by Beatrice Warde, published in 1926, revealed that actually these designs were the work of Jean Jannon, working more than fifty years after Garamond's death. An elegant sample created by Bruce Rogers was shown in a spring 1923 issue of Monotype's magazine. Garamont features a large range of swash characters. Mosley has described it as "a lively type, underappreciated I think." LTC's digitisation deliberately maintained its eccentricity and irregularity true to period printing, something Goudy had insisted on in his original design, avoiding perfect verticals. Goudy Newstyle (1921, Village Letter Foundry + 1927, Continental + 1941 Lanston Monotype), re-cut in 1935 and sold to Monotype who then marketed it as Goudy Bible. It was also used by the Grabhorn Press, who used it in an edition of Leaves of Grass. This face was then adapted by Bruce Rogers and Sol Hess for the famous Oxford Lectern Bible of 1948. Italian Old Style + Italic (1924, Lanston Monotype + 1927, Continental) Often confused with some other faces of the same name, it is notable for its 'A' with serifs on either side of the top. It was used to set Goudy's autobiography. Goudy Heavy Face + Italic (1925, Lanston Monotype + 1927, Continental), intended to compete with Cooper Black. An ultra-bold typeface with minimal stress in the old-style pattern; Walter Tracy, not always a fan of Goudy's type designs, thought it "one of Goudy's best" and "superior" to its competitors. Marlborough (1925, Village Letter Foundry + 1927, Continental), a private face designed for a printer who lost interest in the project before completion. The matrices were cut by Wiebking and a few fonts were cast by Goudy, and these were destroyed in Goudy's studio fire of 1939. A revised version of this design was sold to Lanston Monotype in 1942, but Monotype apparently did not release it. A picture is shown in Goudy's 1946 memoir. Venezia Italic (1925, Monotype Ltd.), made at the request of type designer George W. Jones to accompany his Venezia Roman. 1926 to 1929 From 1926 until his death, Goudy cut all of his own faces (at least in the pilot sizes). From 1927-1929, Goudy cast type at his own Village Letter Foundry and marketed them through the Continental Type Founders Association. After 1929 he ceased casting his own fonts and they were cast for Continental by the New England Type Foundry. Goudy Antique (1926, privately cast by Village Letter Foundry + 1927, Continental), the first type matrices actually cut by Goudy himself. Aries (1926), privately cast for Spencer Kellogg's Aries Press. A medieval-inspired design with upper- and lower-case. Goudy Uncials (1927, nc), drawings were completed, all traces lost in Goudy's 1939 studio fire. Companion Old Style + Italic (1927, Lanston Monotype), a private face cut for the Woman's Home Companion magazine. Created with a very full character set, including italic swash caps and small capitals. A set of matrices survives in the collection of the Tampa Book Arts Studio. A favourite of Goudy's, who felt it showed more 'consistent original features than any other face I have ever made' (Tracy did not like it). (The Companion would later become one of the first magazines in the USA to switch to Times New Roman in 1943.) 2021 digitization by Steve Matteson. Deepdene series A crisp design inspired by a typeface designed in the Netherlands, which Goudy's Paul Bennett wrote was Jan van Krimpen's Lutetia. One of Goudy's more popular designs, with several digital revivals, although as of 2016 only LTC's includes the swash capitals and small caps of Goudy's original design conception. Named after Goudy's home in Marlborough. Deepdene (1927, Continental, later Lanston Monotype) Changes were made to fit Monotype's machine composition system. Deepdene Italic (1928, Continental, later Lanston Monotype), matrices cut by Bertha M. Goudy. Notable for a nearly-upright italic. Deepdene Medium (1931, nc), designed for Lanston Monotype but evidently never cast. Deepdene Bold + Bold Italic (1934, Lanston Monotype) Remington Typewriter (1927, Lanston Monotype) Though intended to be used on Remington typewriters, it was eventually picked up by Monotype. An attempt to avoid the feeling of unevenness of monospaced typefaces (which tend to make letters like 'i' seem too wide and 'W' too squashed) through creating an italic design. Goudy wrote that although he was paid well for the design, he did not know if it had ever been used by Remington. Record Title (1927), inspired by Roman capitals, privately cast for Architectural Record magazine at the commission of Charles DeVinne, grandson of the famous printer and type designer, Theodore Low De Vinne. Goudy Dutch (1927, nc), designs complete but never cut, all traces lost in Goudy's 1939 studio fire. Based on the handwriting of a letter from a correspondent in the Netherlands, rather than on Dutch printing styles. Goudytype (1928, ATF), designed and cut in 1916, not cast and sold until later. Goudy Text (1928, Continental, later Lanston Monotype) Originally named 'Goudy Black'. A blackletter design, "text" is short for textura, another term for blackletter. Tracy admired it as "wholly admirable...the letters are very well matched to each other and produce a fine result when composed in text." Inscription Greek (1929, nc), a font of the eleven Greek capitals not found in the Roman alphabet. These were intended to be used with Kennerley Old Style small caps to form a Greek font. Lombardic Capitals (1929, Continental + Lanston Monotype), capitals only, intended to serve as alternate, decorative capitals for Goudy Text. Goudy Sans Serif series An eccentric display-oriented sans-serif design with a highly calligraphic italic. Considered little-used by Goudy in his memoir, although digitised and revived several times since. Goudy Sans Serif Heavy or Sans Serif Bold (1929, Lanston Monotype) Goudy Sans Serif Light (1930, Lanston Monotype) Goudy Sans Serif Light Italic (1931, Lanston Monotype) Kaatskill (1929, Continental), a private face cut for the Limited Editions Club edition of Rip Van Winkle. Strathmore Title (1929), designed as part of a project for Strathmore Paper Company, only fourteen letters were cut before the project was abandoned. 1930 to 1934 Unnamed (two faces) (1930), two designs with job numbers from 1930 were destroyed in the fire of 1939. Nothing else known. Trajan Title (1930, Continental, later Monotype Ltd.), a private face in the U.S., it was marketed in England and Europe by British Monotype. Mediaeval (1930, Continental). A free, romanised blackletter, inspired by 'a twelfth-century South German manuscript hand', and popular in Goudy's lifetime. Advertisers Modern (1930, privately cast), cut for the Manuel Rosenberg, publisher of The Advertiser. Apparently little-used, but Goudy retained a proof, shown in his autobiography. Goudy Stout, only cut in 24 pt. capitals. Quirky typeface in the fat face genre. Goudy described it as unpopular in his lifetime, but revived several times since. Published 1939, Continental. Digital revivals by Castle Type, Rimmer and by Vincent Connare for Microsoft. Truesdell + Italic (1930, Continental), first used for a preface published in the Colophon No. 5 and named for Goudy's mother. Truesdell Italic (1931, Continental) Goudy Ornate or Ornate Title (1930, Continental), capitals only. Deepdene Open Text (1931, Continental), cut as headings for a book by Edmund G. Greiss. A blackletter font for titles and headings, intended to complement but not match Deepdene. Deepdene Text (1931, Continental), basically just a "filled-in" version of Deepdene Open Text. Goethe (1932, Continental), basically a lighter version of Goudy Modern, cut for the Goethe Centenary Exhibition in Leipzig. Goethe Italic (1932, Continental), cut for the Limited Editions Club edition of Frankenstein. Quinian Old Style (1932, nc), named for the editor of American Mercury who commissioned the type, however the drawings were rejected and subsequently perished in Goudy's studio fire of 1939. Mostert (1932, nc), inspired by the calligraphy of Annelise Mostert. Project never progressed beyond first round of proofs. Goudy donated Mostert's text sample to the Library of Congress. Aries (re-cut) (1932, Continental), later sold to Edwin Grabhorn, a San Francisco printer, who had it cast by Lanston Monotype and renamed it Franciscan. Subsequently cast by McKenzie & Harris. Goudy Boldface (1932, nc), level of completion uncertain, records lost in Goudy's 1939 studio fire. Goudy Book (1933, nc), designs complete but never cut, all traces lost in Goudy's 1939 studio fire. Mercury (1933, nc), designs complete but never cut, all traces lost in Goudy's 1939 studio fire. Saks Goudy, Italic & Bold Caps (1934), a private type cast for Saks Fifth Avenue department store. Saks Goudy Bold Caps actually consists of the small capitals of larger sizes cast on larger bodies. Hasbrouck (1934, nc), designs complete but never cut, all traces lost in Goudy's 1939 studio fire Textbook Old Style (1934, nc), designs complete but never cut, all traces lost in Goudy's 1939 studio fire.. 1935 to 1938 Tory Text (1935, Continental), blackletter based on the letters of Geoffroy Tory. Used only for one book, though one of Goudy's favorites. Capitals later cannibalized for New Village Text. Atlantis (1935, nc), designs complete but never cut, all traces lost in Goudy's 1939 studio fire. Millvale (1935, nc), designs complete but never cut, all traces lost in Goudy's 1939 studio fire. Bertham (1936, Continental), named in memory of Goudy's wife, Bertha M. Goudy, who had died the year before. Goudy's 100th typeface, done by request for American Printer Magazine. Based on Leonard Holle's 1482 design. Pax (1936, nc), matrices were cut, but Goudy was disappointed with the results and never cast the type. Ampersands (1936, nc), a collection of 65 ampersands engraved for the Typophiles club in New York for an article on the topic. A reproduction is in Goudy's 1946 memoirs. Most digitised. Friar (1937, Continental), designed for his own amusement, Goudy only cast a few fonts of this face in 12 point. Inspired by uncial script but with an upper and lower case. University of California Old Style Goudy's 'California' font (1938, Continental) was cut for the University of California Press. It is a 'Venetian' typeface, loosely inspired by the work of Nicolas Jenson. One of Goudy's most popular designs, several releases exist. After the original type was commissioned for private use, 'California' was released publicly by different companies, first in 1958, by Lanston Monotype as 'Californian' and then famously under the name of 'Berkeley Old Style' by ITC. In digital versions, 'California' was released by ITC under its pre-existing brand, as 'Californian' by LTC and Font Bureau (in different digitisations) and by Richard Beatty under the name of 'University Old Style'. Late designs, 1938 to 1945 New Village Text (1938, Continental), not a new face but a mongrel cast by Goudy's son consisting of capitals from Tory Text and lower-case letters from Deepdene Text. Murchison (1938, Photostat Corporation): an experimental design in the new technology of cold type or phototypesetting, which did not become popular until after the end of Goudy's life. Named for the president of Photostat Corporation. Bulmer (1939, nc), an attempt to design a lower-case for fine capitals by William Bulmer, never completed. Scripps College Old Style (1941), a private face cast for Scripps College. Commissioned by college librarian Dorothy Drake, it was intended for the use of students interested in book making. Later released by Monotype. Scrips College Italic (1944) Spencer Old Style + Italic (1943, nc), commissioned for a large book printing firm but never accepted due to wartime restrictions. Later the design was given to Syracuse University and named for H. Lyle Spencer, dean of the School of Journalism. Marlborough Text (1944, Continental), a private face for International Printing Company. Though a complete design, only the letters to print "Certificate of Honor" were ever cut. Hebrew University (1945, nc), a font of Hebrew letters commissioned by the American Friends of the Hebrew University in Jerusalem]]. No casting information available. Goudy Thirty (1953, Lanston Monotype), cut with the intention of being issued after Goudy's death, "thirty" being a newspaper term for the end of the story. Goudy finished work on it in 1942 and Monotype waited several years after his death in 1947 before issuing the font. The font is inspired by 'rotunda', a style of blackletter handwriting popular in southern Europe in the medieval period. Lawson reports that it was not a great financial success for Monotype, as blackletter type was unfashionable at the time, but that Bruce Rogers was a great admirer of the design. "Goudy" faces designed by others Hearst (1902, Inland Type Foundry). Goudy claimed that this had been copied from lettering he had done for a book of verses for children. It is similar to his Pabst Roman. Powell Italic (1908, Keystone Foundry), designed in-house by Keystone. Has the distinction of being the first "non-kerning" italic where no character overhangs the body, an idea that proved quite popular. This is accomplished through the use of reverse curves in the taller letters, which first ascend to the right and then curve back to the left to avoid overhanging the next character. Goudy Bold (1916, ATF) and Goudy Bold Italic (1919, ATF), were designed by Morris Fuller Benton as companions to Goudy Old Style. The Lanston Monotype version of the italic includes cursive capitals by Sol Hess. There are some detail differences compared to Goudy Old Style Roman: the 'W' has three terminals not four and there is no serif at bottom right of the 'C'. Goudy Title (1918, ATF) is a full size variation on Goudy's small capitals from his Goudy Old Style and was designed by Morris Fuller Benton. Goudy Catalog (1919, ATF) and Goudy Catalog Italic (1921, ATF), were designed by Morris Fuller Benton as medium weight companions to Goudy Old Style. Goudy Handtooled + Italic (1922, ATF), were in-line versions of Goudy Bold + Italic and were probably designed by Charles H. Becker, though other authorities credit either Morris Fuller Benton or Wadsworth A. Parker. Again, the Lanston Monotype version of the italic includes cursive capitals by Sol Hess. The 1937 textbook 26 Lead Soldiers called it "Goudy Bold in a tuxedo." Morison was notably unimpressed by it. Italian Old Style Wide (1924, Lanston Monotype), designed by Sol Hess as a companion to Goudy's Italian Old Style. Number Eleven series (1924, Ludlow), are out-and-out copies of the Goudy Old Style series. Kennerley Open Capitals (1925, Lanston Monotype), were designed by Sol Hess. Goudy Heavy Face Open (1926, Lanston Monotype) and Goudy Heavy Face Condensed (1927, Lanston Monotype), were designed by Sol Hess. Goudy Extra Bold + Italic (1927, ATF), were a further extension of the Goudy Old Style series by Morris Fuller Benton. Foster Italic and Moore Italic (1927, BB&S), were designed by Richard N. McArthur, and based on the English alteration of Goudy Lanston mentioned above. Hadriano Stone Cut (1932, Lanston Monotype), was an in-line version of Hadriano Title designed by Sol Hess. Goudy Text Shaded (Lanston Monotype), was designed in house by Monotype. Pabst Old Style Condensed (Mergenthaler Linotype), was designed in house by Linotype. Pabst Extra Bold, though also cast by Linotype, has no relation to Goudy's face and is actually a knock-off of Cooper Black. Goudy Fancy (1970s), italic-only, origin uncertain but resembles a more condensed version of Goudy Heavy italic so may be based on that or one of Goudy's lettering projects. Has been digitised by Canada Type as 'Goudy Two Shoes'. Berkeley Old Style (1983, ITC), adaptation of Goudy's University of California Old Style (1938). See above. Daylilies, floral capitals based on Goudy Old Style by Judith Sutcliff. Goudy Swash, a URW++ release of Goudy Old Style Italic (only) with swash caps. Goudy also cut the matrices for Foster Abstract, an ultra-bold Art Deco block letter designed by his friend Robert Foster. 1931, Continental with matrices cut by Goudy and cast privately. Goudy personally felt that the design 'violated every canon of type design'. Considering digital revivals of Goudy's non-character typefaces, P22 has also published an anthology of Goudy's ornament designs, released along with their collection of Goudy's ampersands; Parachute Fonts has also released adaptations of Goudy's initials for Greek and Cyrillic. Notes References External links Writings by Goudy "A half-century of type design and typography:" volumes 1 and 2, The Typophiles, New York, 1946. A complete list of Goudy's type designs with commentary. "The Alphabet: Fifteen Interpretive Designs" Mitchell Kennerley, N.Y.C, 1918. (alternative digitisation) Elements of Lettering (with Bertha Goudy), Mitchell Kennerley, N.Y.C, 1922 Hello To Those Who Retain Their Sanity, essay, Monotype magazine, 1928 Ars Typographisch, (Vol. 1, No. 4, 1934): an occasional journal guest-edited by Goudy for one issue in 1934. Contains Goudy's article Type Design: A Homily "The Trajan Capitals," Oxford University Press, New York, 1936 "Typologia" University of California Press, Berkeley, Los Angeles, London, 1940 Additional sources Orton, Vrest "Goudy, Master of Letters", Black Cat Press, Chicago, 1939. A festschrift with an introduction by Goudy. Lewis, Bernard: Behind the Type: The Life Story of Frederic W. Goudy, Carnegie Institute of Technology, 1941. An extensive survey of Goudy's work. Goudy's 1938 talk on printing, The Ethics and Aesthetics of Type, is printed at the end. Rollins, Carl Purlington "American Type Designers and Their Work" in Print, V. 4, #1. MacGrew, Mac, "American Metal Typefaces of the Twentieth Century," Oak Knoll Books, New Castle Delaware, 1993, . Bruckner, D.J.R., "Frederic Goudy," Documents of American Design series, Harry N. Abrams, Inc., Publishers, New York City, 1990, . Type By Goudy (Popular Mechanics article by Andrew R. Boone, April 1942. Many pictures of Goudy at work.) Frederic Goudy - Pantagraph (Bloomington, IL newspaper) Typographer's Digest, No. 27 (1967): issue dedicated to Goudy's memory. Collects some of Goudy's more obscure writings and fonts, which are shown in a sample at the end. Frederick W. Goudy Collection Archives and Special Collections, Ball State University Libraries (PDF) The Frederick W. Goudy Collection From the Rare Book and Special Collections Division at the Library of Congress Goudy type designs at Lanston Type Co. Goudy’s Matrices (Circuitous Root) The Deepdene Pantograph (Circuitous Root) Frederic W. Goudy Collection, McLean County Museum of History Goudy, Frederic Arts and Crafts movement
```javascript "use strict"; module.exports = function (h) { var _this = this; return function (right) { var that = _this; var sortControl = require("./sort-control")(h, right); var headings = []; if (_this.hasChildRow && _this.opts.childRowTogglerFirst && _this.opts.showChildRowToggler) headings.push(h("th")); _this.allColumns.map(function (column) { headings.push(h("th", { on: { "keypress": function keypress(e) { if (e.key === "Enter") { that.orderByColumn.bind(that, column, e)(); } }, "click": function click(e) { if (e.target.className !== "resize-handle") { that.orderByColumn.bind(that, column, e)(); } } }, attrs: { id: "VueTables_th--".concat(column), tabindex: "0" }, "class": this.sortableClass(column) }, [h("span", { "class": "VueTables__heading", attrs: { title: this.getHeadingTooltip(column, h) } }, [this.getHeading(column, h)]), sortControl.call(this, column)])); }.bind(_this)); if (_this.hasChildRow && !_this.opts.childRowTogglerFirst && _this.opts.showChildRowToggler) headings.push(h("th")); return headings; }; }; ```
```xml import { ActivatedRouteSnapshot, RouterStateSnapshot } from "@angular/router"; import { ProductTierType, ProductType } from "@bitwarden/common/billing/enums"; import { freeTrialTextResolver } from "./free-trial-text.resolver"; const route = { queryParams: {}, } as ActivatedRouteSnapshot; const routerStateSnapshot = {} as RouterStateSnapshot; describe("freeTrialTextResolver", () => { [ { param: ProductType.PasswordManager, keyBase: "startYour7DayFreeTrialOfBitwardenPasswordManager", }, { param: ProductType.SecretsManager, keyBase: "startYour7DayFreeTrialOfBitwardenSecretsManager", }, { param: `${ProductType.PasswordManager},${ProductType.SecretsManager}`, keyBase: "startYour7DayFreeTrialOfBitwarden", }, ].forEach(({ param, keyBase }) => { describe(`when product is ${param}`, () => { beforeEach(() => { route.queryParams.product = `${param}`; }); it("returns teams trial text", () => { route.queryParams.productTier = ProductTierType.Teams; expect(freeTrialTextResolver(route, routerStateSnapshot)).toBe(`${keyBase}ForTeams`); }); it("returns enterprise trial text", () => { route.queryParams.productTier = ProductTierType.Enterprise; expect(freeTrialTextResolver(route, routerStateSnapshot)).toBe(`${keyBase}ForEnterprise`); }); it("returns families trial text", () => { route.queryParams.productTier = ProductTierType.Families; expect(freeTrialTextResolver(route, routerStateSnapshot)).toBe(`${keyBase}ForFamilies`); }); it("returns default trial text", () => { route.queryParams.productTier = ""; expect(freeTrialTextResolver(route, routerStateSnapshot)).toBe(keyBase); }); }); }); }); ```
```makefile ################################################################################ # # python-scandir # ################################################################################ PYTHON_SCANDIR_VERSION = 1.10.0 PYTHON_SCANDIR_SOURCE = scandir-$(PYTHON_SCANDIR_VERSION).tar.gz PYTHON_SCANDIR_SITE = path_to_url PYTHON_SCANDIR_LICENSE = BSD-3-Clause PYTHON_SCANDIR_LICENSE_FILES = LICENSE.txt PYTHON_SCANDIR_SETUP_TYPE = setuptools $(eval $(python-package)) ```
```python # # # path_to_url # # Unless required by applicable law or agreed to in writing, software # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # ============================================================================== """Embedding layer. """ from __future__ import absolute_import from __future__ import division from __future__ import print_function from tensorflow.python.framework import tensor_shape from tensorflow.python.keras._impl.keras import backend as K from tensorflow.python.keras._impl.keras import constraints from tensorflow.python.keras._impl.keras import initializers from tensorflow.python.keras._impl.keras import regularizers from tensorflow.python.keras._impl.keras.engine import Layer class Embedding(Layer): """Turns positive integers (indexes) into dense vectors of fixed size. eg. [[4], [20]] -> [[0.25, 0.1], [0.6, -0.2]] This layer can only be used as the first layer in a model. Example: ```python model = Sequential() model.add(Embedding(1000, 64, input_length=10)) # the model will take as input an integer matrix of size (batch, input_length). # the largest integer (i.e. word index) in the input should be no larger than 999 (vocabulary size). # now model.output_shape == (None, 10, 64), where None is the batch dimension. input_array = np.random.randint(1000, size=(32, 10)) model.compile('rmsprop', 'mse') output_array = model.predict(input_array) assert output_array.shape == (32, 10, 64) ``` Arguments: input_dim: int > 0. Size of the vocabulary, i.e. maximum integer index + 1. output_dim: int >= 0. Dimension of the dense embedding. embeddings_initializer: Initializer for the `embeddings` matrix. embeddings_regularizer: Regularizer function applied to the `embeddings` matrix. embeddings_constraint: Constraint function applied to the `embeddings` matrix. mask_zero: Whether or not the input value 0 is a special "padding" value that should be masked out. This is useful when using recurrent layers, which may take variable length inputs. If this is `True` then all subsequent layers in the model need to support masking or an exception will be raised. If mask_zero is set to True, as a consequence, index 0 cannot be used in the vocabulary (input_dim should equal size of vocabulary + 1). input_length: Length of input sequences, when it is constant. This argument is required if you are going to connect `Flatten` then `Dense` layers upstream (without it, the shape of the dense outputs cannot be computed). Input shape: 2D tensor with shape: `(batch_size, sequence_length)`. Output shape: 3D tensor with shape: `(batch_size, sequence_length, output_dim)`. References: - [A Theoretically Grounded Application of Dropout in Recurrent Neural Networks](path_to_url """ def __init__(self, input_dim, output_dim, embeddings_initializer='uniform', embeddings_regularizer=None, activity_regularizer=None, embeddings_constraint=None, mask_zero=False, input_length=None, **kwargs): if 'input_shape' not in kwargs: if input_length: kwargs['input_shape'] = (input_length,) else: kwargs['input_shape'] = (None,) super(Embedding, self).__init__( activity_regularizer=regularizers.get(activity_regularizer), **kwargs) self.input_dim = input_dim self.output_dim = output_dim self.embeddings_initializer = initializers.get(embeddings_initializer) self.embeddings_regularizer = regularizers.get(embeddings_regularizer) self.embeddings_constraint = constraints.get(embeddings_constraint) self.mask_zero = mask_zero self.input_length = input_length def build(self, input_shape): input_shape = tensor_shape.TensorShape(input_shape).as_list() self.embeddings = self.add_weight( shape=(self.input_dim, self.output_dim), initializer=self.embeddings_initializer, name='embeddings', regularizer=self.embeddings_regularizer, constraint=self.embeddings_constraint, dtype=self.dtype) self.built = True def compute_mask(self, inputs, mask=None): if not self.mask_zero: return None else: return K.not_equal(inputs, 0) def _compute_output_shape(self, input_shape): input_shape = tensor_shape.TensorShape(input_shape).as_list() if self.input_length is None: return tensor_shape.TensorShape(input_shape + [self.output_dim]) else: # input_length can be tuple if input is 3D or higher if isinstance(self.input_length, (list, tuple)): in_lens = list(self.input_length) else: in_lens = [self.input_length] if len(in_lens) != len(input_shape) - 1: ValueError('"input_length" is %s, but received input has shape %s' % (str(self.input_length), str(input_shape))) else: for i, (s1, s2) in enumerate(zip(in_lens, input_shape[1:])): if s1 is not None and s2 is not None and s1 != s2: ValueError('"input_length" is %s, but received input has shape %s' % (str(self.input_length), str(input_shape))) elif s1 is None: in_lens[i] = s2 return tensor_shape.TensorShape( (input_shape[0],) + tuple(in_lens) + (self.output_dim,)) def call(self, inputs): if K.dtype(inputs) != 'int32': inputs = K.cast(inputs, 'int32') out = K.gather(self.embeddings, inputs) return out def get_config(self): config = { 'input_dim': self.input_dim, 'output_dim': self.output_dim, 'embeddings_initializer': initializers.serialize(self.embeddings_initializer), 'embeddings_regularizer': regularizers.serialize(self.embeddings_regularizer), 'activity_regularizer': regularizers.serialize(self.activity_regularizer), 'embeddings_constraint': constraints.serialize(self.embeddings_constraint), 'mask_zero': self.mask_zero, 'input_length': self.input_length } base_config = super(Embedding, self).get_config() return dict(list(base_config.items()) + list(config.items())) ```
Daniel Katz (July 19, 1903 – February 28, 1998) was an American psychologist, Emeritus Professor in Psychology at the University of Michigan and an expert on organizational psychology. Biography Born in Trenton, New Jersey, Katz received his MA from the University of Buffalo in 1925, and his PhD from the Syracuse University in 1928 under Floyd Henry Allport, founder of the American experimental social psychology. In 1928 Katz started his academic career at the faculty of Princeton University. In World War II Katz did government research in Washington with a group of social scientist under Rensis Likert, who eventually founded the Institute for Social Research at the University of Michigan. In 1943 Katz went to the Brooklyn College, where he headed the psychology department. From 1947 to 1974 his academic career culminated at the University of Michigan where he was Professor in the Department of Psychology and fellow at the Institute for Social Research. Here Katz cooperated with Theodore Newcomb, who founded Michigan's doctoral program in social psychology and he chaired the program from 1947 to 1953. In honor of both since 1970 the University of Michigan organizes an annual Katz-Newcomb Lecture. Katz was awarded the Gold Medal of the American Psychological Association, the Lewin Award of the Society for the Psychological Study of Social Issues, the Award of the American Association for Public Opinion Research, the Award of the American Association for Public Opinion Research, and was elected to the American Academy of Arts and Sciences. Work Katz produced classic studies of racial stereotyping and prejudice, and attitude change, and his pursuit of the connections between individual psychology and social systems helped to found the field of organizational psychology. An important methodological contribution was his open system theory, presented in The Social Psychology of Organizations (1966, later revised), which was co-authored by Robert L. Kahn. Publications Books, a selection: 1931. Students' attitudes, a report of the Syracuse University reaction study, With Floyd Henry Allport and margaret Babcock Jenness. 1938. Social Psychology, co-authored with Abigail Ayckbourn & Richard L. Schanck 1951. Productivity, supervision, and morale among railroad workers, by Daniel Katz [and others] 1953. Research methods in the behavioral sciences, edited by Leon Festinger and Daniel Katz. 1964. Political parties in Norway; a community study. by Henry Valen and Daniel Katz. 1966. The Social Psychology of Organizations, co-authored with Robert L. Kahn 1966. Motivation and aspiration in the Negro college. With Patricia Gurin 1975. Bureaucratic encounters : a pilot study in the evaluation of government services. Daniel Katz et al. Most cited articles, a selection: 1933. "Racial stereotypes of one hundred college students." With K. Braly. In: The Journal of Abnormal and Social Psychology, 1933 1935. "Racial prejudice and racial stereotypes". With K.W. Braly. In: Journal of Abnormal and Social Psychology, 1935 1959. "A preliminary statement to a theory of attitude structure and change". With E. Stotland. In: Psychology: A study of a science, 1959 1960. "The functional approach to the study of attitudes". In: Public opinion quarterly, 1960 1964. "The motivational basis of organizational behavior". In: Behavioral science, 1964 References External links Obituary Institute for Social Research, University of Michigan 1903 births 1998 deaths 20th-century American psychologists University of Michigan faculty Brooklyn College faculty University at Buffalo alumni
Trypeticus is a genus of beetles belonging to the family Histeridae. Taxonomy In 1984, Marseul described the genus as a division of the Neotropical genus Trypanaeus described by Eschscholtz in 1829. Then he included many Indo-malayan Archipelago species based on differently shaped mesosternum. However his most works were described by stating the genus as a subgenus within Trypanaeus. Then in 1916, Bickhardt gave a solid basis for Trypeticus as separate genus and formed the separate subfamily Trypeticinae. Between 1920 and 1930, the forestry entomologist L.G.E. Kalshoven collected several species of the genus on Java and Sumatra which are currently preserved in The Nationaal Natuurhistorisch Museum at Leiden. In 1999, Slipinski and Mazur removed the subfamily Trypeticinae into the synonymy of Trypanaeinae. Distribution The species are distributed throughout Indo-China, Malayan peninsula, the entire Indo-Malayan Archipelago including the Philippines, New Guinea, Northern Queensland, Taiwan, Southeast China, Korea, and Japan as well as Indian subcontinent, Sri Lanka and Nepal. Description Primarily oligophagous, if not monophagous, the beetles depend on xylophagous prey species. Adults show strong sexual dimorphism. The males show great variations with a more or less thick-set body form. However, females are fairly uniform in body form, so can be detect possible patterns of distribution or patterns of diversification. Adults have a cylindrical body form, peculiar tibiae with very long tarsi. The clypeus is more or less prolonged into a rostrum. The antennal flagellum consists of six segments of more or less subconical form. In the resting position, beetle laid down through deep incisions in the anterior prosternal margin of the antennal flagelli. They also can deflect the head and retract it for the greater part into the prothorax. The posterior margin of the prosternum is transverse or at most slightly emarginate. Biology Adult beetles live in the burrows of bark beetles and other wood-boring insects. They can be collected easily by using flight interception traps. Species Trypeticus adebratti Kanaar, 2003 Trypeticus albertisii (Gestro, 1875) Trypeticus alticola Kanaar, 2003 Trypeticus andaiensis (Gestro, 1875) Trypeticus angustifrons Kanaar, 2003 Trypeticus arriagadai Kanaar, 2003 Trypeticus aukei Kanaar, 2003 Trypeticus beesoni Desbordes, 1922 Trypeticus bertiae Kanaar, 2003 Trypeticus bombacis (Lewis, 1885) Trypeticus boukei Kanaar, 2003 Trypeticus brevis Kanaar, 2003 Trypeticus canalifrons Bickhardt, 1913 Trypeticus capillatus Kanaar, 2003 Trypeticus carinifrons Kanaar, 2003 Trypeticus carinipygus Kanaar, 2003 Trypeticus caterinoi Kanaar, 2003 Trypeticus cinctipygus (Marseul, 1864) Trypeticus clarus Kanaar, 2003 Trypeticus convexicollis Kanaar, 2003 Trypeticus coomani Kanaar, 2003 Trypeticus crassus Schmidt, 1892 Trypeticus danielssoni Kanaar, 2003 Trypeticus degallieri Kanaar, 2003 Trypeticus deoudei Kanaar, 2003 Trypeticus dohertyi (Lewis, 1891) Trypeticus fagi (Lewis, 1884) Trypeticus ferrarii (Gestro, 1875) Trypeticus fissirostrum Zhang & Zhou, 2007 Trypeticus foveicollis Kanaar, 2003 Trypeticus frontalis Schmidt, 1897 Trypeticus gestroi (Marseul, 1879) Trypeticus gibberosus Kanaar, 2003 Trypeticus gilolous (Marseul, 1864) Trypeticus gomyi Kanaar, 2003 Trypeticus gracilis Kanaar, 2003 Trypeticus gratus Kanaar, 2003 Trypeticus grouvellei Marseul, 1883 Trypeticus hamatipygus Kanaar, 2003 Trypeticus helleri Bickhardt, 1918 Trypeticus hielkemaorum Kanaar, 2003 Trypeticus hinei Kanaar, 2003 Trypeticus houseae Kanaar, 2003 Trypeticus huijbregtsi Kanaar, 2003 Trypeticus immanis Kanaar, 2003 Trypeticus incilis Lewis, 1897 Trypeticus indicus Lewis, 1893 Trypeticus jaegeri Kanaar, 2003 Trypeticus jelmeri Kanaar, 2003 Trypeticus jorisi Kanaar, 2003 Trypeticus kalemantanus (Marseul, 1864) Trypeticus kalshoveni Kanaar, 2003 Trypeticus kapleri Kanaar, 2003 Trypeticus kirtoni Kanaar, 2003 Trypeticus lackneri Kanaar, 2003 Trypeticus latilabris Kanaar, 2003 Trypeticus latirostrum Kanaar, 2003 Trypeticus latisternum Kanaar, 2003 Trypeticus loebli Kanaar, 2003 Trypeticus longicollis Heller, 1915 Trypeticus mazuri Kanaar, 2003 Trypeticus merkli Kanaar, 2003 Trypeticus minutissimus Kanaar, 2003 Trypeticus minutulus Lewis, 1891 Trypeticus mirandus Kanaar, 2003 Trypeticus monteithi Kanaar, 2003 Trypeticus nasicus Kanaar, 2003 Trypeticus nemorivagus Lewis, 1892 Trypeticus nepalensis Kanaar, 2003 Trypeticus nitens Kanaar, 2003 Trypeticus obeliscus Lewis, 1891 Trypeticus parilloi Kanaar, 2003 Trypeticus parobeliscus Kanaar, 2003 Trypeticus pederseni Kanaar, 2003 Trypeticus penatii Kanaar, 2003 Trypeticus penicillicauda Kanaar, 2003 Trypeticus planisternus Lewis, 1897 Trypeticus poggii Kanaar, 2003 Trypeticus pooti Kanaar, 2003 Trypeticus protractus Kanaar, 2003 Trypeticus rectangulus Kanaar, 2003 Trypeticus riedeli Kanaar, 2003 Trypeticus rombauti Kanaar, 2003 Trypeticus rostricauda Kanaar, 2003 Trypeticus rostripygus Bickhardt, 1912 Trypeticus sanneae Kanaar, 2003 Trypeticus sauteri Bickhardt, 1913 Trypeticus schawalleri Kanaar, 2003 Trypeticus silvicola Schmidt, 1897 Trypeticus smetanai Kanaar, 2003 Trypeticus subobeliscus Kanaar, 2003 Trypeticus sulcisternum Kanaar, 2003 Trypeticus tabacigliscens Marseul, 1883 Trypeticus therondi Kanaar, 2003 Trypeticus trigonifrons Kanaar, 2003 Trypeticus tuberculinotum Kanaar, 2003 Trypeticus uhligi Kanaar, 2003 Trypeticus valens Kanaar, 2003 Trypeticus vanasseni Kanaar, 2003 Trypeticus veda (Lewis, 1885) Trypeticus venator (Lewis, 1884) Trypeticus viennai Kanaar, 2003 Trypeticus yunnanensis Zhang & Zhou, 2007 References Histeridae Beetle genera
This is a List of A1 Grand Prix seasons, that is a list of the A1 Grand Prix championship seasons since the inaugural 2005–06 season. This list is accurate up to and including the 2008–09 season. Summary * Switzerland scored 99 points in total, but due to the lack of cars available at the opening round at Zandvoort, only the best six rounds counted towards the championship. Champions The champion's trophy is awarded to the most successful A1 Grand Prix team over a season, as determined by a pointscoring system based on results. The teams' championship was first awarded in 2005–06, to A1 Team France. References Seasons
```php <?php namespace Phphub\Creators; use Phphub\Core\CreatorListener; use Phphub\Core\Robot; use Phphub\Notification\Mention; use App\Models\Reply; use Auth; use App\Models\Topic; use App\Models\Notification; use Carbon\Carbon; use App; use Phphub\Markdown\Markdown; use App\Jobs\SendReplyNotifyMail; use Illuminate\Support\MessageBag; use App\Activities\UserRepliedTopic; class ReplyCreator { protected $mentionParser; public function __construct(Mention $mentionParser) { $this->mentionParser = $mentionParser; } public function create(CreatorListener $observer, $data) { // if ($this->isDuplicateReply($data)) { $errorMessages = new MessageBag; $errorMessages->add('duplicated', ''); return $observer->creatorFailed($errorMessages); } $data['user_id'] = Auth::id(); $data['body'] = $this->mentionParser->parse($data['body']); $markdown = new Markdown; $data['body_original'] = $data['body']; $data['body'] = $markdown->convertMarkdownToHtml($data['body']); $data['source'] = get_platform(); $reply = Reply::create($data); if (! $reply) { return $observer->creatorFailed($reply->getErrors()); } // Add the reply user $topic = Topic::find($data['topic_id']); $topic->last_reply_user_id = Auth::id(); $topic->reply_count++; $topic->updated_at = Carbon::now()->toDateTimeString(); $topic->save(); Auth::user()->increment('reply_count', 1); app('Phphub\Notification\Notifier')->newReplyNotify(Auth::user(), $this->mentionParser, $topic, $reply); app(UserRepliedTopic::class)->generate(Auth::user(), $topic, $reply); return $observer->creatorSucceed($reply); } public function isDuplicateReply($data) { $last_reply = Reply::where('user_id', Auth::id()) ->where('topic_id', $data['topic_id']) ->orderBy('id', 'desc') ->first(); return count($last_reply) && strcmp($last_reply->body_original, $data['body']) === 0; } } ```
The music of Saudi Arabia includes both Western and traditional music. The most distinguished musician in recent Saudi history is Tariq Abdulhakeem, who composed hundreds of famous Saudi songs for himself as well as for other singers; Saraj Omar has become a very prominent composer after writing the music for the Saudi national anthem; Mohammed Abdu, the most famous singer in the Arab world; Talal Maddah who died in August 2000 while singing in the summer festival on the stage of Al-Muftaha Theatre in the southern region of Saudi Arabia. The 1st Arab Pioneers Festival, which was held in Cairo under the patronage of the Arab League, honored four of the lead composers in Saudi Arabia: Tariq Abdulhakeem, Ghazi Ali, Mohamed Alsenan, and Mohammed Shafiq. Of the same generation are the oud virtuoso Abadi al Johar, Rabeh Saqer and Abdul-Majeed Abdullah. Overview Saudi traditional music is quite limited. However, the migratory lifestyle of the bedouin militated against carrying excess baggage, including musical instruments. Simple rhythms, with the beat counted by clapping or striking together everyday implements formed the basis of the music. Instruments like the double-reeded ney or the stringed rababa were sometimes used, after being obtained in cosmopolitan cities such as Jeddah. However, music is considered "sinful" or "haram" by Wahhabi Muslims, including Salah Al Budair who is the Imam of the Grand mosque in Medina. This is based in part on certain Ahadith which speak negatively of non-percussion musical instruments and the idea that music and art are distractions from God. Some Muslims also believe it is sinful for songs to make any mention of women and for women to be involved in the composition of music. Particularly in the early days of the current Saudi state, religious authorities were quick to repress music other than the rhythmic percussion that still dominates contemporary Saudi music. Samri is a popular traditional music and dance in Najd Region. Omar Basaad was chosen as the best Saudi DJ and Electronic Dance Music Producer in 2012, by Saudi Gazette. He became the first official Saudi EDM (Electronic Dance Music) producer to represent Saudi Arabia internationally. Etab was the first female singer from Saudi Arabia. Dance Ardah Ardah, a type of folkloric dance, is the most popular dance in Saudi Arabia, and also the national dance. It is performed with two rows of men opposite of one another, each of whom may or may not be wielding a sword or cane, and is accompanied by drums and spoken poetry. Najdi ardah is the most common variant of ardah in Saudi Arabia. It is also the most practiced and highly televised male folkloric dance in the entire country. The Saudi government changed its name to 'Saudi ardah' in the 21st century. However, there are numerous variations of ardah distinct from Najdi ardah throughout the country, notably in the regions of Najran, Asir and Jizan. Rock/metal music Rock and metal artists from Saudi Arabia include: Music institutions Pursuant to the order of the Saudi Crown Prince, the first music teaching institute was established in Riyadh in 2019. The Institute was launched by the Egyptian violinist Mahmoud Sorour. Sorour plans to train around 50 violinists to enable them to perform in Jeddah opera house that is planned to be launched in 2022. See also Arabic music Arabic pop music Notes and references Sources Urkevich, Lisa (2015). Music and Traditions of the Arabian Peninsula: Saudi Arabia, Kuwait, Bahrain, and Qatar. New York: Routledge Badley, Bill (2000). "Sounds of the Arabian Peninsula". In Broughton, Simon and Ellingham, Mark with McConnachie, James and Duane, Orla (Ed.), World Music, Vol. 1: Africa, Europe and the Middle East, pp 351–354. Rough Guides Ltd, Penguin Books. External links Saudi Music Examples Music and Traditions of the Arabian Peninsula: Saudi Arabia, Kuwait, Bahrain, and Qatar by L. Urkevich. New York: Routledge, 2015. Audio clip: traditional Saudi Arabian music. Musée d'ethnographie de Genève. Accessed November 25, 2010. Saudi Arabia Rock and Metal Society. Arabic music Music Music
```turing #!./perl -w no strict; BEGIN { if ($ENV{PERL_CORE}) { @INC = '../lib'; chdir 't'; } } use Getopt::Long qw(GetOptionsFromString :config no_ignore_case); my $want_version="2.3501"; die("Getopt::Long version $want_version required--this is only version ". $Getopt::Long::VERSION) unless $Getopt::Long::VERSION ge $want_version; print "1..14\n"; my $args = "-Foo -baR --foo"; @ARGV = qw(foo bar); undef $opt_baR; undef $opt_bar; print (GetOptionsFromString($args, "foo", "Foo=s") ? "" : "not ", "ok 1\n"); print ((defined $opt_foo) ? "" : "not ", "ok 2\n"); print (($opt_foo == 1) ? "" : "not ", "ok 3\n"); print ((defined $opt_Foo) ? "" : "not ", "ok 4\n"); print (($opt_Foo eq "-baR") ? "" : "not ", "ok 5\n"); print (!(defined $opt_baR) ? "" : "not ", "ok 6\n"); print (!(defined $opt_bar) ? "" : "not ", "ok 7\n"); print ("@ARGV" eq "foo bar" ? "" : "not ", "ok 8\n"); $args = "-Foo -baR blech --foo bar"; @ARGV = qw(foo bar); undef $opt_baR; undef $opt_bar; { my $msg = ""; local $SIG{__WARN__} = sub { $msg .= "@_" }; my $ret = GetOptionsFromString($args, "foo", "Foo=s"); print ($ret ? "not " : "ok 9\n"); print ($msg =~ /^GetOptionsFromString: Excess data / ? "" : "$msg\nnot ", "ok 10\n"); } print ("@ARGV" eq "foo bar" ? "" : "not ", "ok 11\n"); $args = "-Foo -baR blech --foo bar"; @ARGV = qw(foo bar); undef $opt_baR; undef $opt_bar; { my $ret; ($ret, $args) = GetOptionsFromString($args, "foo", "Foo=s"); print ($ret ? "" : "not ", "ok 12\n"); print ("@$args" eq "blech bar" ? "" : "@$args\nnot ", "ok 13\n"); } print ("@ARGV" eq "foo bar" ? "" : "not ", "ok 14\n"); ```
RISAT-2BR1 is a synthetic-aperture radar (SAR) imaging satellite built by Indian Space Research Organisation (ISRO). It is part of India's RISAT series of SAR imaging satellite and fourth satellite in the series. RISAT-2BR1 was launched on 11 December 2019 at 09:55 UTC aboard Polar Satellite Launch Vehicle PSLV-C48 from First Launch Pad (FLP) of Satish Dhawan Space Centre. It was the 50th launch of Polar Satellite Launch Vehicle and 75th launch from Satish Dhawan Space Centre. Overview The RISAT-2BR1 is follow on to RISAT-2B and has an X-band SAR with unfurlable radial rib reflector antenna of 3.6 meter diameter. RISAT-2BR1 can operate in different modes including Very High Resolution imaging modes of 1 x 0.5 m resolution and 0.5 x 0.3 m resolution with swath of 5 to 10 km. Mass: Orbit: (circular) at inclination of 37.0° Mission life: 5 years Launch RISAT-2BR1 was launched aboard PSLV-C48 on 11 December 2019 at 09:55 UTC with nine other ride-sharing commercial satellites from First Launch Pad of Satish Dhawan Space Centre, SHAR. Launch vehicle used was -QL variant of Polar Satellite Launch Vehicle with four PSOM-XL strap-ons and employed a 195 kg Dual Launch Adapter (DLA) to accommodate primary and secondary payloads. After a flight of 16 minutes 27 seconds, RISAT-2BR1 was separated from PSLV fourth stage (PS4) and injected into 576 km circular orbit with 37.0° inclination. After primary payload, DLA and subsequently nine other co-passenger satellites were separated. RISAT-2BR1 deployed it solar panels within 3 minutes after separation and deployed its 3.6 meter antenna on 08:30 UTC, on 12 December 2019. Secondary payloads Nine commercial ridesharing satellites weighed 157.6 kg cumulatively. QPS SAR-1 "Izanagi"「イザナギ」(~100 kg) X-band SAR imaging satellite with 3.6 m antenna by iQPS. Four Lemur-2 cubesats by Spire Global. Duchifat-3 (2.3 kg) by Sha'ar Hanegev High School students built at Herzliya Science Center. 1HOPSAT (22 kg) high resolution video and imaging satellite by Hera systems for Seguritech of Mexico. Tyvak-0129 (11 kg) Tyvak-0092 (5 kg) (NANOVA) See also List of Indian satellites References Spacecraft launched by India in 2019 Earth observation satellites of India Space synthetic aperture radar Spacecraft launched by PSLV rockets December 2019 events in India Imaging reconnaissance satellites
```c /** * @license Apache-2.0 * * * * path_to_url * * Unless required by applicable law or agreed to in writing, software * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. */ #include "stdlib/stats/base/svariancewd.h" #include <stdint.h> /** * Computes the variance of a single-precision floating-point strided array using Welford's algorithm. * * ## Method * * - This implementation uses Welford's algorithm for efficient computation, which can be derived as follows. Let * * ```tex * \begin{align*} * S_n &= n \sigma_n^2 \\ * &= \sum_{i=1}^{n} (x_i - \mu_n)^2 \\ * &= \biggl(\sum_{i=1}^{n} x_i^2 \biggr) - n\mu_n^2 * \end{align*} * ``` * * Accordingly, * * ```tex * \begin{align*} * S_n - S_{n-1} &= \sum_{i=1}^{n} x_i^2 - n\mu_n^2 - \sum_{i=1}^{n-1} x_i^2 + (n-1)\mu_{n-1}^2 \\ * &= x_n^2 - n\mu_n^2 + (n-1)\mu_{n-1}^2 \\ * &= x_n^2 - \mu_{n-1}^2 + n(\mu_{n-1}^2 - \mu_n^2) \\ * &= x_n^2 - \mu_{n-1}^2 + n(\mu_{n-1} - \mu_n)(\mu_{n-1} + \mu_n) \\ * &= x_n^2 - \mu_{n-1}^2 + (\mu_{n-1} - x_n)(\mu_{n-1} + \mu_n) \\ * &= x_n^2 - \mu_{n-1}^2 + \mu_{n-1}^2 - x_n\mu_n - x_n\mu_{n-1} + \mu_n\mu_{n-1} \\ * &= x_n^2 - x_n\mu_n - x_n\mu_{n-1} + \mu_n\mu_{n-1} \\ * &= (x_n - \mu_{n-1})(x_n - \mu_n) \\ * &= S_{n-1} + (x_n - \mu_{n-1})(x_n - \mu_n) * \end{align*} * ``` * * where we use the identity * * ```tex * x_n - \mu_{n-1} = n (\mu_n - \mu_{n-1}) * ``` * * ## References * * - Welford, B. P. 1962. "Note on a Method for Calculating Corrected Sums of Squares and Products." _Technometrics_ 4 (3). Taylor & Francis: 41920. doi:[10.1080/00401706.1962.10490022](path_to_url * - van Reeken, A. J. 1968. "Letters to the Editor: Dealing with Neely's Algorithms." _Communications of the ACM_ 11 (3): 14950. doi:[10.1145/362929.362961](path_to_url * * @param N number of indexed elements * @param correction degrees of freedom adjustment * @param X input array * @param stride stride length * @return output value */ float stdlib_strided_svariancewd( const int64_t N, const float correction, const float *X, const int64_t stride ) { float delta; int64_t ix; int64_t i; double n; float mu; float M2; float v; n = (double)N - (double)correction; if ( N <= 0 || n <= 0.0f ) { return 0.0f / 0.0f; // NaN } if ( N == 1 || stride == 0 ) { return 0.0f; } if ( stride < 0 ) { ix = (1-N) * stride; } else { ix = 0; } M2 = 0.0f; mu = 0.0f; for ( i = 0; i < N; i++ ) { v = X[ ix ]; delta = v - mu; mu += (float)((double)delta / (double)(i+1)); M2 += delta * ( v - mu ); ix += stride; } return (double)M2 / n; } ```
```kotlin package kotlinx.coroutines.test import kotlinx.coroutines.* import kotlinx.coroutines.internal.* import kotlinx.coroutines.test.internal.* import kotlin.coroutines.* import kotlin.time.* /** * A coroutine scope that for launching test coroutines. * * The scope provides the following functionality: * - The [coroutineContext] includes a [coroutine dispatcher][TestDispatcher] that supports delay-skipping, using * a [TestCoroutineScheduler] for orchestrating the virtual time. * This scheduler is also available via the [testScheduler] property, and some helper extension * methods are defined to more conveniently interact with it: see [TestScope.currentTime], [TestScope.runCurrent], * [TestScope.advanceTimeBy], and [TestScope.advanceUntilIdle]. * - When inside [runTest], uncaught exceptions from the child coroutines of this scope will be reported at the end of * the test. * It is invalid for child coroutines to throw uncaught exceptions when outside the call to [TestScope.runTest]: * the only guarantee in this case is the best effort to deliver the exception. * * The usual way to access a [TestScope] is to call [runTest], but it can also be constructed manually, in order to * use it to initialize the components that participate in the test. * * #### Differences from the deprecated [TestCoroutineScope] * * - This doesn't provide an equivalent of [TestCoroutineScope.cleanupTestCoroutines], and so can't be used as a * standalone mechanism for writing tests: it does require that [runTest] is eventually called. * The reason for this is that a proper cleanup procedure that supports using non-test dispatchers and arbitrary * coroutine suspensions would be equivalent to [runTest], but would also be more error-prone, due to the potential * for forgetting to perform the cleanup. * - [TestCoroutineScope.advanceTimeBy] also calls [TestCoroutineScheduler.runCurrent] after advancing the virtual time. * - No support for dispatcher pausing, like [DelayController] allows. [TestCoroutineDispatcher], which supported * pausing, is deprecated; now, instead of pausing a dispatcher, one can use [withContext] to run a dispatcher that's * paused by default, like [StandardTestDispatcher]. * - No access to the list of unhandled exceptions. */ public sealed interface TestScope : CoroutineScope { /** * The delay-skipping scheduler used by the test dispatchers running the code in this scope. */ public val testScheduler: TestCoroutineScheduler /** * A scope for background work. * * This scope is automatically cancelled when the test finishes. * The coroutines in this scope are run as usual when using [advanceTimeBy] and [runCurrent]. * [advanceUntilIdle], on the other hand, will stop advancing the virtual time once only the coroutines in this * scope are left unprocessed. * * Failures in coroutines in this scope do not terminate the test. * Instead, they are reported at the end of the test. * Likewise, failure in the [TestScope] itself will not affect its [backgroundScope], * because there's no parent-child relationship between them. * * A typical use case for this scope is to launch tasks that would outlive the tested code in * the production environment. * * In this example, the coroutine that continuously sends new elements to the channel will get * cancelled: * ``` * @Test * fun testExampleBackgroundJob() = runTest { * val channel = Channel<Int>() * backgroundScope.launch { * var i = 0 * while (true) { * channel.send(i++) * } * } * repeat(100) { * assertEquals(it, channel.receive()) * } * } * ``` */ public val backgroundScope: CoroutineScope } /** * The current virtual time on [testScheduler][TestScope.testScheduler]. * @see TestCoroutineScheduler.currentTime */ @ExperimentalCoroutinesApi public val TestScope.currentTime: Long get() = testScheduler.currentTime /** * Advances the [testScheduler][TestScope.testScheduler] to the point where there are no tasks remaining. * @see TestCoroutineScheduler.advanceUntilIdle */ @ExperimentalCoroutinesApi public fun TestScope.advanceUntilIdle(): Unit = testScheduler.advanceUntilIdle() /** * Run any tasks that are pending at the current virtual time, according to * the [testScheduler][TestScope.testScheduler]. * * @see TestCoroutineScheduler.runCurrent */ @ExperimentalCoroutinesApi public fun TestScope.runCurrent(): Unit = testScheduler.runCurrent() /** * Moves the virtual clock of this dispatcher forward by [the specified amount][delayTimeMillis], running the * scheduled tasks in the meantime. * * In contrast with `TestCoroutineScope.advanceTimeBy`, this function does not run the tasks scheduled at the moment * [currentTime] + [delayTimeMillis]. * * @throws IllegalStateException if passed a negative [delay][delayTimeMillis]. * @see TestCoroutineScheduler.advanceTimeBy */ @ExperimentalCoroutinesApi public fun TestScope.advanceTimeBy(delayTimeMillis: Long): Unit = testScheduler.advanceTimeBy(delayTimeMillis) /** * Moves the virtual clock of this dispatcher forward by [the specified amount][delayTime], running the * scheduled tasks in the meantime. * * @throws IllegalStateException if passed a negative [delay][delayTime]. * @see TestCoroutineScheduler.advanceTimeBy */ @ExperimentalCoroutinesApi public fun TestScope.advanceTimeBy(delayTime: Duration): Unit = testScheduler.advanceTimeBy(delayTime) /** * The [test scheduler][TestScope.testScheduler] as a [TimeSource]. * @see TestCoroutineScheduler.timeSource */ @ExperimentalCoroutinesApi public val TestScope.testTimeSource: TimeSource.WithComparableMarks get() = testScheduler.timeSource /** * Creates a [TestScope]. * * It ensures that all the test module machinery is properly initialized. * - If [context] doesn't provide a [TestCoroutineScheduler] for orchestrating the virtual time used for delay-skipping, * a new one is created, unless either * - a [TestDispatcher] is provided, in which case [TestDispatcher.scheduler] is used; * - at the moment of the creation of the scope, [Dispatchers.Main] is delegated to a [TestDispatcher], in which case * its [TestCoroutineScheduler] is used. * - If [context] doesn't have a [TestDispatcher], a [StandardTestDispatcher] is created. * - A [CoroutineExceptionHandler] is created that makes [TestCoroutineScope.cleanupTestCoroutines] throw if there were * any uncaught exceptions, or forwards the exceptions further in a platform-specific manner if the cleanup was * already performed when an exception happened. Passing a [CoroutineExceptionHandler] is illegal, unless it's an * [UncaughtExceptionCaptor], in which case the behavior is preserved for the time being for backward compatibility. * If you need to have a specific [CoroutineExceptionHandler], please pass it to [launch] on an already-created * [TestCoroutineScope] and share your use case at * [our issue tracker](path_to_url * - If [context] provides a [Job], that job is used as a parent for the new scope. * * @throws IllegalArgumentException if [context] has both [TestCoroutineScheduler] and a [TestDispatcher] linked to a * different scheduler. * @throws IllegalArgumentException if [context] has a [ContinuationInterceptor] that is not a [TestDispatcher]. * @throws IllegalArgumentException if [context] has an [CoroutineExceptionHandler] that is not an * [UncaughtExceptionCaptor]. */ @Suppress("FunctionName") public fun TestScope(context: CoroutineContext = EmptyCoroutineContext): TestScope { val ctxWithDispatcher = context.withDelaySkipping() var scope: TestScopeImpl? = null val exceptionHandler = when (ctxWithDispatcher[CoroutineExceptionHandler]) { null -> CoroutineExceptionHandler { _, exception -> scope!!.reportException(exception) } else -> throw IllegalArgumentException( "A CoroutineExceptionHandler was passed to TestScope. " + "Please pass it as an argument to a `launch` or `async` block on an already-created scope " + "if uncaught exceptions require special treatment." ) } return TestScopeImpl(ctxWithDispatcher + exceptionHandler).also { scope = it } } /** * Adds a [TestDispatcher] and a [TestCoroutineScheduler] to the context if there aren't any already. * * @throws IllegalArgumentException if both a [TestCoroutineScheduler] and a [TestDispatcher] are passed. * @throws IllegalArgumentException if a [ContinuationInterceptor] is passed that is not a [TestDispatcher]. */ internal fun CoroutineContext.withDelaySkipping(): CoroutineContext { val dispatcher: TestDispatcher = when (val dispatcher = get(ContinuationInterceptor)) { is TestDispatcher -> { val ctxScheduler = get(TestCoroutineScheduler) if (ctxScheduler != null) { require(dispatcher.scheduler === ctxScheduler) { "Both a TestCoroutineScheduler $ctxScheduler and TestDispatcher $dispatcher linked to " + "another scheduler were passed." } } dispatcher } null -> StandardTestDispatcher(get(TestCoroutineScheduler)) else -> throw IllegalArgumentException("Dispatcher must implement TestDispatcher: $dispatcher") } return this + dispatcher + dispatcher.scheduler } internal class TestScopeImpl(context: CoroutineContext) : AbstractCoroutine<Unit>(context, initParentJob = true, active = true), TestScope { override val testScheduler get() = context[TestCoroutineScheduler]!! private var entered = false private var finished = false private val uncaughtExceptions = mutableListOf<Throwable>() private val lock = SynchronizedObject() override val backgroundScope: CoroutineScope = CoroutineScope(coroutineContext + BackgroundWork + ReportingSupervisorJob { if (it !is CancellationException) reportException(it) }) /** Called upon entry to [runTest]. Will throw if called more than once. */ fun enter() { val exceptions = synchronized(lock) { if (entered) throw IllegalStateException("Only a single call to `runTest` can be performed during one test.") entered = true check(!finished) /** the order is important: [reportException] is only guaranteed not to throw if [entered] is `true` but * [finished] is `false`. * However, we also want [uncaughtExceptions] to be queried after the callback is registered, * because the exception collector will be able to report the exceptions that arrived before this test but * after the previous one, and learning about such exceptions as soon is possible is nice. */ @Suppress("INVISIBLE_REFERENCE", "INVISIBLE_MEMBER") // do not remove the INVISIBLE_REFERENCE suppression: required in K2 run { ensurePlatformExceptionHandlerLoaded(ExceptionCollector) } if (catchNonTestRelatedExceptions) { ExceptionCollector.addOnExceptionCallback(lock, this::reportException) } uncaughtExceptions } if (exceptions.isNotEmpty()) { ExceptionCollector.removeOnExceptionCallback(lock) throw UncaughtExceptionsBeforeTest().apply { for (e in exceptions) addSuppressed(e) } } } /** Called at the end of the test. May only be called once. Returns the list of caught unhandled exceptions. */ fun leave(): List<Throwable> = synchronized(lock) { check(entered && !finished) /** After [finished] becomes `true`, it is no longer valid to have [reportException] as the callback. */ ExceptionCollector.removeOnExceptionCallback(lock) finished = true uncaughtExceptions } /** Called at the end of the test. May only be called once. */ fun legacyLeave(): List<Throwable> { val exceptions = synchronized(lock) { check(entered && !finished) /** After [finished] becomes `true`, it is no longer valid to have [reportException] as the callback. */ ExceptionCollector.removeOnExceptionCallback(lock) finished = true uncaughtExceptions } val activeJobs = children.filter { it.isActive }.toList() // only non-empty if used with `runBlockingTest` if (exceptions.isEmpty()) { if (activeJobs.isNotEmpty()) throw UncompletedCoroutinesError( "Active jobs found during the tear-down. " + "Ensure that all coroutines are completed or cancelled by your test. " + "The active jobs: $activeJobs" ) if (!testScheduler.isIdle()) throw UncompletedCoroutinesError( "Unfinished coroutines found during the tear-down. " + "Ensure that all coroutines are completed or cancelled by your test." ) } return exceptions } /** Stores an exception to report after [runTest], or rethrows it if not inside [runTest]. */ fun reportException(throwable: Throwable) { synchronized(lock) { if (finished) { throw throwable } else { @Suppress("INVISIBLE_MEMBER", "INVISIBLE_REFERENCE") // do not remove the INVISIBLE_REFERENCE suppression: required in K2 for (existingThrowable in uncaughtExceptions) { // avoid reporting exceptions that already were reported. if (unwrap(throwable) == unwrap(existingThrowable)) return } uncaughtExceptions.add(throwable) if (!entered) throw UncaughtExceptionsBeforeTest().apply { addSuppressed(throwable) } } } } /** Throws an exception if the coroutine is not completing. */ fun tryGetCompletionCause(): Throwable? = completionCause override fun toString(): String = "TestScope[" + (if (finished) "test ended" else if (entered) "test started" else "test not started") + "]" } /** Use the knowledge that any [TestScope] that we receive is necessarily a [TestScopeImpl]. */ @Suppress("NO_ELSE_IN_WHEN") // TODO: a problem with `sealed` in MPP not allowing total pattern-matching internal fun TestScope.asSpecificImplementation(): TestScopeImpl = when (this) { is TestScopeImpl -> this } internal class UncaughtExceptionsBeforeTest : IllegalStateException( "There were uncaught exceptions before the test started. Please avoid this," + " as such exceptions are also reported in a platform-dependent manner so that they are not lost." ) /** * Thrown when a test has completed and there are tasks that are not completed or cancelled. */ @ExperimentalCoroutinesApi internal class UncompletedCoroutinesError(message: String) : AssertionError(message) /** * A flag that controls whether [TestScope] should attempt to catch arbitrary exceptions flying through the system. * If it is enabled, then any exception that is not caught by the user code will be reported as a test failure. * By default, it is enabled, but some tests may want to disable it to test the behavior of the system when they have * their own exception handling procedures. */ @PublishedApi internal var catchNonTestRelatedExceptions: Boolean = true ```
Aquamicrobium soli is a Gram-negative, aerobic, short rod-shaped non-spore-forming and non-motile bacteria from the genus of Aquamicrobium which has been isolated from soil which was contaminated with chlorobenzoate in China. References Phyllobacteriaceae Bacteria described in 2017
```sourcepawn --require r/lowercase2.require --disable_query_log show variables like 'lower_case_table_names'; --enable_query_log ```
```go package lockup import ( "testing" "github.com/stretchr/testify/suite" ) func TestE2ETestSuite(t *testing.T) { suite.Run(t, NewE2ETestSuite()) } ```
```c++ // This file was automatically generated on Fri Dec 03 18:04:02 2004 // by libs/config/tools/generate.cpp // Use, modification and distribution are subject to the // LICENSE_1_0.txt or copy at path_to_url // See path_to_url for the most recent version. // Test file for macro BOOST_NO_STD_WSTRING // This file should not compile, if it does then // BOOST_NO_STD_WSTRING should not be defined. // See file boost_no_std_wstring.ipp for details // Must not have BOOST_ASSERT_CONFIG set; it defeats // the objective of this file: #ifdef BOOST_ASSERT_CONFIG # undef BOOST_ASSERT_CONFIG #endif #include <boost/config.hpp> #include "test.hpp" #ifdef BOOST_NO_STD_WSTRING #include "boost_no_std_wstring.ipp" #else #error "this file should not compile" #endif int main( int, char *[] ) { return boost_no_std_wstring::test(); } ```
```c /* $OpenBSD: agp.c,v 1.51 2024/05/24 06:02:53 jsg Exp $ */ /*- * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * * $FreeBSD: src/sys/pci/agp.c,v 1.12 2001/05/19 01:28:07 alfred Exp $ */ #include <sys/param.h> #include <sys/systm.h> #include <sys/malloc.h> #include <uvm/uvm_extern.h> #include <dev/pci/pcivar.h> #include <dev/pci/agpvar.h> #include <dev/pci/agpreg.h> void agp_attach(struct device *, struct device *, void *); int agp_probe(struct device *, void *, void *); int agpvga_match(struct pci_attach_args *); int agpdev_print(void *aux, const char *pnp) { if (pnp) { printf("agp at %s", pnp); } return (UNCONF); } int agpbus_probe(struct agp_attach_args *aa) { struct pci_attach_args *pa = aa->aa_pa; if (strncmp(aa->aa_busname, "agp", 3) == 0 && PCI_CLASS(pa->pa_class) == PCI_CLASS_BRIDGE && PCI_SUBCLASS(pa->pa_class) == PCI_SUBCLASS_BRIDGE_HOST) return (1); return (0); } /* * Find the video card hanging off the agp bus XXX assumes only one bus */ int agpvga_match(struct pci_attach_args *pa) { if (PCI_CLASS(pa->pa_class) == PCI_CLASS_DISPLAY && PCI_SUBCLASS(pa->pa_class) == PCI_SUBCLASS_DISPLAY_VGA) { if (pci_get_capability(pa->pa_pc, pa->pa_tag, PCI_CAP_AGP, NULL, NULL)) return (1); } return (0); } struct device * agp_attach_bus(struct pci_attach_args *pa, const struct agp_methods *methods, bus_addr_t apaddr, bus_size_t apsize, struct device *dev) { struct agpbus_attach_args arg; arg.aa_methods = methods; arg.aa_pa = pa; arg.aa_apaddr = apaddr; arg.aa_apsize = apsize; printf("\n"); /* newline from the driver that called us */ return (config_found(dev, &arg, agpdev_print)); } int agp_probe(struct device *parent, void *match, void *aux) { /* * we don't do any checking here, driver we're attaching this * interface to should have already done it. */ return (1); } void agp_attach(struct device *parent, struct device *self, void *aux) { struct agpbus_attach_args *aa = aux; struct pci_attach_args *pa = aa->aa_pa; struct agp_softc *sc = (struct agp_softc *)self; u_int memsize; int i; sc->sc_chipc = parent; sc->sc_methods = aa->aa_methods; sc->sc_apaddr = aa->aa_apaddr; sc->sc_apsize = aa->aa_apsize; static const int agp_max[][2] = { {0, 0}, {32, 4}, {64, 28}, {128, 96}, {256, 204}, {512, 440}, {1024, 942}, {2048, 1920}, {4096, 3932} }; /* * Work out an upper bound for agp memory allocation. This * uses a heuristic table from the Linux driver. */ memsize = ptoa(physmem) >> 20; for (i = 0; i < nitems(agp_max) && memsize > agp_max[i][0]; i++) ; if (i == nitems(agp_max)) i = nitems(agp_max) - 1; sc->sc_maxmem = agp_max[i][1] << 20; sc->sc_pcitag = pa->pa_tag; sc->sc_pc = pa->pa_pc; sc->sc_id = pa->pa_id; sc->sc_dmat = pa->pa_dmat; sc->sc_memt = pa->pa_memt; pci_get_capability(sc->sc_pc, sc->sc_pcitag, PCI_CAP_AGP, &sc->sc_capoff, NULL); printf(": aperture at 0x%lx, size 0x%lx\n", (u_long)sc->sc_apaddr, (u_long)sc->sc_apsize); } const struct cfattach agp_ca = { sizeof(struct agp_softc), agp_probe, agp_attach, NULL, NULL }; struct cfdriver agp_cd = { NULL, "agp", DV_DULL }; struct agp_gatt * agp_alloc_gatt(bus_dma_tag_t dmat, u_int32_t apsize) { struct agp_gatt *gatt; u_int32_t entries = apsize >> AGP_PAGE_SHIFT; gatt = malloc(sizeof(*gatt), M_AGP, M_NOWAIT | M_ZERO); if (!gatt) return (NULL); gatt->ag_entries = entries; gatt->ag_size = entries * sizeof(u_int32_t); if (agp_alloc_dmamem(dmat, gatt->ag_size, &gatt->ag_dmamap, &gatt->ag_physical, &gatt->ag_dmaseg) != 0) { free(gatt, M_AGP, sizeof *gatt); return (NULL); } if (bus_dmamem_map(dmat, &gatt->ag_dmaseg, 1, gatt->ag_size, (caddr_t *)&gatt->ag_virtual, BUS_DMA_NOWAIT) != 0) { agp_free_dmamem(dmat, gatt->ag_size, gatt->ag_dmamap, &gatt->ag_dmaseg); free(gatt, M_AGP, sizeof *gatt); return (NULL); } agp_flush_cache(); return (gatt); } void agp_free_gatt(bus_dma_tag_t dmat, struct agp_gatt *gatt) { bus_dmamem_unmap(dmat, (caddr_t)gatt->ag_virtual, gatt->ag_size); agp_free_dmamem(dmat, gatt->ag_size, gatt->ag_dmamap, &gatt->ag_dmaseg); free(gatt, M_AGP, sizeof *gatt); } int agp_generic_enable(struct agp_softc *sc, u_int32_t mode) { struct pci_attach_args pa; pcireg_t tstatus, mstatus, command; int rq, sba, fw, rate, capoff; if (pci_find_device(&pa, agpvga_match) == 0 || pci_get_capability(pa.pa_pc, pa.pa_tag, PCI_CAP_AGP, &capoff, NULL) == 0) { printf("agp_generic_enable: not an AGP capable device\n"); return (-1); } tstatus = pci_conf_read(sc->sc_pc, sc->sc_pcitag, sc->sc_capoff + AGP_STATUS); /* display agp mode */ mstatus = pci_conf_read(pa.pa_pc, pa.pa_tag, capoff + AGP_STATUS); /* Set RQ to the min of mode, tstatus and mstatus */ rq = AGP_MODE_GET_RQ(mode); if (AGP_MODE_GET_RQ(tstatus) < rq) rq = AGP_MODE_GET_RQ(tstatus); if (AGP_MODE_GET_RQ(mstatus) < rq) rq = AGP_MODE_GET_RQ(mstatus); /* Set SBA if all three can deal with SBA */ sba = (AGP_MODE_GET_SBA(tstatus) & AGP_MODE_GET_SBA(mstatus) & AGP_MODE_GET_SBA(mode)); /* Similar for FW */ fw = (AGP_MODE_GET_FW(tstatus) & AGP_MODE_GET_FW(mstatus) & AGP_MODE_GET_FW(mode)); /* Figure out the max rate */ rate = (AGP_MODE_GET_RATE(tstatus) & AGP_MODE_GET_RATE(mstatus) & AGP_MODE_GET_RATE(mode)); if (rate & AGP_MODE_RATE_4x) rate = AGP_MODE_RATE_4x; else if (rate & AGP_MODE_RATE_2x) rate = AGP_MODE_RATE_2x; else rate = AGP_MODE_RATE_1x; /* Construct the new mode word and tell the hardware */ command = AGP_MODE_SET_RQ(0, rq); command = AGP_MODE_SET_SBA(command, sba); command = AGP_MODE_SET_FW(command, fw); command = AGP_MODE_SET_RATE(command, rate); command = AGP_MODE_SET_AGP(command, 1); pci_conf_write(sc->sc_pc, sc->sc_pcitag, sc->sc_capoff + AGP_COMMAND, command); pci_conf_write(pa.pa_pc, pa.pa_tag, capoff + AGP_COMMAND, command); return (0); } /* * Allocates a single-segment block of zeroed, wired dma memory. */ int agp_alloc_dmamem(bus_dma_tag_t tag, size_t size, bus_dmamap_t *mapp, bus_addr_t *baddr, bus_dma_segment_t *seg) { int error, level = 0, nseg; if ((error = bus_dmamem_alloc(tag, size, PAGE_SIZE, 0, seg, 1, &nseg, BUS_DMA_NOWAIT | BUS_DMA_ZERO)) != 0) goto out; level++; if ((error = bus_dmamap_create(tag, size, nseg, size, 0, BUS_DMA_NOWAIT, mapp)) != 0) goto out; level++; if ((error = bus_dmamap_load_raw(tag, *mapp, seg, nseg, size, BUS_DMA_NOWAIT)) != 0) goto out; *baddr = (*mapp)->dm_segs[0].ds_addr; return (0); out: switch (level) { case 2: bus_dmamap_destroy(tag, *mapp); /* FALLTHROUGH */ case 1: bus_dmamem_free(tag, seg, nseg); break; default: break; } return (error); } void agp_free_dmamem(bus_dma_tag_t tag, size_t size, bus_dmamap_t map, bus_dma_segment_t *seg) { bus_dmamap_unload(tag, map); bus_dmamap_destroy(tag, map); bus_dmamem_free(tag, seg, 1); } /* Implementation of the kernel api */ void * agp_find_device(int unit) { if (unit >= agp_cd.cd_ndevs || unit < 0) return (NULL); return (agp_cd.cd_devs[unit]); } enum agp_acquire_state agp_state(void *dev) { struct agp_softc *sc = (struct agp_softc *) dev; return (sc->sc_state); } void agp_get_info(void *dev, struct agp_info *info) { struct agp_softc *sc = (struct agp_softc *)dev; if (sc->sc_capoff != 0) info->ai_mode = pci_conf_read(sc->sc_pc, sc->sc_pcitag, AGP_STATUS + sc->sc_capoff); else info->ai_mode = 0; /* i810 doesn't have real AGP */ info->ai_aperture_base = sc->sc_apaddr; info->ai_aperture_size = sc->sc_apsize; info->ai_memory_allowed = sc->sc_maxmem; info->ai_memory_used = sc->sc_allocated; info->ai_devid = sc->sc_id; } int agp_acquire(void *dev) { struct agp_softc *sc = (struct agp_softc *)dev; if (sc->sc_chipc == NULL) return (EINVAL); if (sc->sc_state != AGP_ACQUIRE_FREE) return (EBUSY); sc->sc_state = AGP_ACQUIRE_KERNEL; return (0); } int agp_release(void *dev) { struct agp_softc *sc = (struct agp_softc *)dev; if (sc->sc_state == AGP_ACQUIRE_FREE) return (0); if (sc->sc_state != AGP_ACQUIRE_KERNEL) return (EBUSY); sc->sc_state = AGP_ACQUIRE_FREE; return (0); } int agp_enable(void *dev, u_int32_t mode) { struct agp_softc *sc = dev; int ret; if (sc->sc_methods->enable != NULL) { ret = sc->sc_methods->enable(sc->sc_chipc, mode); } else { ret = agp_generic_enable(sc, mode); } return (ret); } paddr_t agp_mmap(struct agp_softc *sc, off_t off, int prot) { if (sc->sc_chipc == NULL) return (-1); if (off >= sc->sc_apsize) return (-1); if (sc->sc_apaddr == 0) return (-1); return bus_space_mmap(sc->sc_memt, sc->sc_apaddr, off, prot, 0); } ```
The qualification for 2004 Men's Olympic Volleyball Tournament was held from 7 September 2003 to 30 May 2004. Means of qualification Host country FIVB reserved a vacancy for the 2004 Summer Olympics host country to participate in the tournament. 2003 World Cup Venues: Dates: 16–29 November 2003 The top three teams qualified for the 2004 Summer Olympics. Continental qualification tournaments Africa Venue: El Menzah Sports Palace, Tunis, Tunisia Dates: 5–10 January 2004 The winners qualified for the 2004 Summer Olympics. The runners-up qualified for the 2004 World Olympic Qualification Tournaments. Asia and Oceania The 2004 Asian Olympic Qualification Tournament combined with 2004 2nd World Olympic Qualification Tournament. The hosts Japan and the top four ranked teams except Japan from the 2003 Asian Championship competed in the tournament. The top ranked among the five teams except the 2004 2nd World Olympic Qualification Tournament winners qualified for the 2004 Summer Olympics as the 2004 Asian Olympic Qualification Tournament winners. Europe Venue: Arena Leipzig, Leipzig, Germany Dates: 5–10 January 2004 The winners qualified for the 2004 Summer Olympics. North America Venue: Coliseo Héctor Solá Bezares, Caguas, Puerto Rico Dates: 4–10 January 2004 The winners qualified for the 2004 Summer Olympics. The second and third ranked teams qualified for the 2004 World Olympic Qualification Tournaments. South America Venue: Poliedro de Caracas, Caracas, Venezuela Dates: 9–11 January 2004 The winners qualified for the 2004 Summer Olympics. The runners-up qualified for the 2004 World Olympic Qualification Tournaments. World qualification tournaments Qualified teams Hosts Qualified through the 2003 Asian Championship. * * * * Qualified through the Continental Olympic Qualification Tournament or the FIVB World Ranking as of January 2004. (as African Olympic Qualification Tournament 2nd place) (as World Ranking for European Team) (as World Ranking for European Team) (as World Ranking for European Team) (as North American Olympic Qualification Tournament 2nd place) (as North American Olympic Qualification Tournament 3rd place) (as South American Olympic Qualification Tournament 2nd place) * The top four teams from 2003 Asian Championship were predetermined to be in 2nd tournament in Japan. – and replaced Chinese Taipei and Egypt, who withdrew from the tournament. 1st tournament Venue: Centro de Desportos e Congressos de Matosinhos, Matosinhos, Portugal Dates: 21–23 May 2004 All times are Western European Summer Time (UTC+01:00). The winners qualified for the 2004 Summer Olympics. 2nd tournament Venue: Tokyo Metropolitan Gymnasium, Tokyo, Japan Dates: 22–30 May 2004 All times are Japan Standard Time (UTC+09:00). The winners and the best Asian team except the winners qualified for the 2004 Summer Olympics. 3rd tournament Venue: Madrid Arena, Madrid, Spain Dates: 28–30 May 2004 All times are Central European Summer Time (UTC+02:00). The winners qualified for the 2004 Summer Olympics. External links Results of the 2004 African Olympic Qualification Tournament at FIVB.org Official website of the 2004 European Olympic Qualification Tournament Results of the 2004 North American Olympic Qualification Tournament at FIVB.org Results of the 2004 South American Olympic Qualification Tournament at FIVB.org Official website of the 2004 1st World Olympic Qualification Tournament Official website of the 2004 2nd World Olympic Qualification Tournament Official website of the 2004 3rd World Olympic Qualification Tournament M Olympic Qualification Men 2004
```smalltalk Extension { #name : 'MethodDictionary' } { #category : '*Reflectivity' } MethodDictionary >> metaLinkOptions [ ^{ #scanFor: -> #( + optionCompileOnLinkInstallation). #at:put: -> #( + optionCompileOnLinkInstallation). #metaLinkOptions -> #( + optionCompileOnLinkInstallation) } ] ```
Kalaj (, also Romanized as Kālaj; also known as Kālach and Kelaj) is a village in Mian Band Rural District, in the Central District of Nur County, Mazandaran Province, Iran. At the 2006 census, its population was 53, in 16 families. References Populated places in Nur County
Robert Budreau is a Canadian film director, screenwriter and producer. Budreau was born in London, Ontario, and raised in Ingersoll. He made a number of short films before releasing his feature debut, That Beautiful Somewhere, in 2006. His second feature film, Born to Be Blue, followed in 2015. In 2018 he released Stockholm, for which he won the award for Best Adapted Screenplay at the 7th Canadian Screen Awards and the Directors Guild of Canada's DGC Award for Best Direction in a Feature Film. His fourth feature film, Delia's Gone, entered production in 2020 and is slated for future release. Through his production firm Lumanity Productions, Budreau has also produced short and feature films by other directors. Filmography Dylanology (2002) The Multiple Selves of Hannah Maynard (2003) Dream Recording (2003) Photographic Fate (2003) Do No Harm (2004) Judgment Call (2004) The Unfolding (2004) Yesteryears (2005) Welcome (2005) Dry Whiskey (2005) Drag (2006) Sunshine Swim Team (2006) The Secret Miracle (2006) The Unspoken Promise (2006) That Beautiful Somewhere (2006) Sunshine Swim Team (2008) As You Like It (2010) The Boss (2010) Bodyslam (2013) Solo (2013) Bank$tas / Cubicle Warriors (2014) Born to Be Blue (2015) Stockholm (2018) Delia's Gone (2022) Queen of Bones (TBA) References External links Living people Film directors from London, Ontario Writers from London, Ontario 1974 births Best Screenplay Genie and Canadian Screen Award winners 21st-century Canadian screenwriters Film producers from Ontario
```c++ // AMD AMDUtils code // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files(the "Software"), to deal // in the Software without restriction, including without limitation the rights // to use, copy, modify, merge, publish, distribute, sublicense, and / or sell // copies of the Software, and to permit persons to whom the Software is // furnished to do so, subject to the following conditions : // The above copyright notice and this permission notice shall be included in // all copies or substantial portions of the Software. // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.IN NO EVENT SHALL THE // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN // THE SOFTWARE. #pragma once #include "cmp_threadpool.h" static ThreadPool t; ThreadPool *GetThreadPool() { return &t; } //#define ENABLE_MULTI_THREADING ThreadPool::ThreadPool() { #ifdef ENABLE_MULTI_THREADING Num_Threads = std::thread::hardware_concurrency(); bExiting = false; for (int ii = 0; ii < Num_Threads; ii++) { Pool.push_back(std::thread(&ThreadPool::Infinite_loop_function, GetThreadPool())); } #endif } ThreadPool::~ThreadPool() { #ifdef ENABLE_MULTI_THREADING bExiting = true; condition.notify_all(); for (int ii = 0; ii < Num_Threads; ii++) { Pool[ii].join(); } #endif } void ThreadPool::Infinite_loop_function() { #ifdef ENABLE_MULTI_THREADING while (true) { std::function<void()> Job; { std::unique_lock<std::mutex> lock(Queue_Mutex); condition.wait(lock, [this] {return bExiting || (!Queue.empty()); }); if (bExiting) return; Job = Queue.front(); Queue.pop(); } Job(); // function<void()> type } #endif }; void ThreadPool::Add_Job(std::function<void()> New_Job) { #ifdef ENABLE_MULTI_THREADING if (bExiting == false) { { std::unique_lock<std::mutex> lock(Queue_Mutex); Queue.push(New_Job); } condition.notify_one(); } #else New_Job(); #endif } ```
Viremia is a medical condition where viruses enter the bloodstream and hence have access to the rest of the body. It is similar to bacteremia, a condition where bacteria enter the bloodstream. The name comes from combining the word "virus" with the Greek word for "blood" (haima). It usually lasts for 4 to 5 days in the primary condition. Primary versus secondary Primary viremia refers to the initial spread of virus in the blood from the first site of infection. Secondary viremia occurs when primary viremia has resulted in infection of additional tissues via bloodstream, in which the virus has replicated and once more entered the circulation. Usually secondary viremia results in higher viral shedding and viral loads within the bloodstream due to the possibility that the virus is able to reach its natural host cell from the bloodstream and replicate more efficiently than the initial site. An excellent example to profile this distinction is the rabies virus. Usually the virus will replicate briefly within the first site of infection, within the muscle tissues. Viral replication then leads to viremia and the virus spreads to its secondary site of infection, the central nervous system (CNS). Upon infection of the CNS, secondary viremia results and symptoms usually begin. Vaccination at this point is useless, as the spread to the brain is unstoppable. Vaccination must be done before secondary viremia takes place for the individual to avoid brain damage or death. Active versus passive Active viremia is caused by the replication of viruses which results in viruses being introduced into the bloodstream. Examples include the measles, in which primary viremia occurs in the epithelial lining of the respiratory tract before replicating and budding out of the cell basal layer (viral shedding), resulting in viruses budding into capillaries and blood vessels. Passive viremia is the introduction of viruses in the bloodstream without the need of active viral replication. Examples include direct inoculation from mosquitoes, through physical breaches or via blood transfusions. See also Septicemia References External links Virology Abnormal clinical and laboratory findings for blood
```python from itertools import product import numpy as np from numpy.testing import assert_almost_equal, assert_array_almost_equal from scipy import linalg import pytest from sklearn import neighbors, manifold from sklearn.manifold._locally_linear import barycenter_kneighbors_graph from sklearn.utils._testing import ignore_warnings from sklearn.utils._testing import assert_raise_message eigen_solvers = ['dense', 'arpack'] # your_sha256_hash------ # Test utility routines def test_barycenter_kneighbors_graph(): X = np.array([[0, 1], [1.01, 1.], [2, 0]]) A = barycenter_kneighbors_graph(X, 1) assert_array_almost_equal( A.toarray(), [[0., 1., 0.], [1., 0., 0.], [0., 1., 0.]]) A = barycenter_kneighbors_graph(X, 2) # check that columns sum to one assert_array_almost_equal(np.sum(A.toarray(), 1), np.ones(3)) pred = np.dot(A.toarray(), X) assert linalg.norm(pred - X) / X.shape[0] < 1 # your_sha256_hash------ # Test LLE by computing the reconstruction error on some manifolds. def test_lle_simple_grid(): # note: ARPACK is numerically unstable, so this test will fail for # some random seeds. We choose 2 because the tests pass. rng = np.random.RandomState(2) # grid of equidistant points in 2D, n_components = n_dim X = np.array(list(product(range(5), repeat=2))) X = X + 1e-10 * rng.uniform(size=X.shape) n_components = 2 clf = manifold.LocallyLinearEmbedding(n_neighbors=5, n_components=n_components, random_state=rng) tol = 0.1 N = barycenter_kneighbors_graph(X, clf.n_neighbors).toarray() reconstruction_error = linalg.norm(np.dot(N, X) - X, 'fro') assert reconstruction_error < tol for solver in eigen_solvers: clf.set_params(eigen_solver=solver) clf.fit(X) assert clf.embedding_.shape[1] == n_components reconstruction_error = linalg.norm( np.dot(N, clf.embedding_) - clf.embedding_, 'fro') ** 2 assert reconstruction_error < tol assert_almost_equal(clf.reconstruction_error_, reconstruction_error, decimal=1) # re-embed a noisy version of X using the transform method noise = rng.randn(*X.shape) / 100 X_reembedded = clf.transform(X + noise) assert linalg.norm(X_reembedded - clf.embedding_) < tol def test_lle_manifold(): rng = np.random.RandomState(0) # similar test on a slightly more complex manifold X = np.array(list(product(np.arange(18), repeat=2))) X = np.c_[X, X[:, 0] ** 2 / 18] X = X + 1e-10 * rng.uniform(size=X.shape) n_components = 2 for method in ["standard", "hessian", "modified", "ltsa"]: clf = manifold.LocallyLinearEmbedding(n_neighbors=6, n_components=n_components, method=method, random_state=0) tol = 1.5 if method == "standard" else 3 N = barycenter_kneighbors_graph(X, clf.n_neighbors).toarray() reconstruction_error = linalg.norm(np.dot(N, X) - X) assert reconstruction_error < tol for solver in eigen_solvers: clf.set_params(eigen_solver=solver) clf.fit(X) assert clf.embedding_.shape[1] == n_components reconstruction_error = linalg.norm( np.dot(N, clf.embedding_) - clf.embedding_, 'fro') ** 2 details = ("solver: %s, method: %s" % (solver, method)) assert reconstruction_error < tol, details assert (np.abs(clf.reconstruction_error_ - reconstruction_error) < tol * reconstruction_error), details # Test the error raised when parameter passed to lle is invalid def test_lle_init_parameters(): X = np.random.rand(5, 3) clf = manifold.LocallyLinearEmbedding(eigen_solver="error") msg = "unrecognized eigen_solver 'error'" assert_raise_message(ValueError, msg, clf.fit, X) clf = manifold.LocallyLinearEmbedding(method="error") msg = "unrecognized method 'error'" assert_raise_message(ValueError, msg, clf.fit, X) def test_pipeline(): # check that LocallyLinearEmbedding works fine as a Pipeline # only checks that no error is raised. # TODO check that it actually does something useful from sklearn import pipeline, datasets X, y = datasets.make_blobs(random_state=0) clf = pipeline.Pipeline( [('filter', manifold.LocallyLinearEmbedding(random_state=0)), ('clf', neighbors.KNeighborsClassifier())]) clf.fit(X, y) assert .9 < clf.score(X, y) # Test the error raised when the weight matrix is singular def test_singular_matrix(): M = np.ones((10, 3)) f = ignore_warnings with pytest.raises(ValueError): f(manifold.locally_linear_embedding(M, n_neighbors=2, n_components=1, method='standard', eigen_solver='arpack')) # regression test for #6033 def test_integer_input(): rand = np.random.RandomState(0) X = rand.randint(0, 100, size=(20, 3)) for method in ["standard", "hessian", "modified", "ltsa"]: clf = manifold.LocallyLinearEmbedding(method=method, n_neighbors=10) clf.fit(X) # this previously raised a TypeError ```
Dominic Newman (born 7 November 1996) is a field hockey player from New Zealand, who plays as a midfielder. Personal life Dominic Newman was born and raised in Christchurch, New Zealand. Career National teams Under-21 Newman debuted for the New Zealand U-21 team in 2016 at the Junior Oceania Cup held in the Gold Coast. He followed this up with an appearance at the FIH Junior World Cup in Lucknow. Black Sticks In 2016, Newman made his official debut for the Black Sticks during the Trans–Tasman Trophy in Auckland. Following his debut, Newman went on to represent New Zealand throughout 2017, most notably at the Sultan Azlan Shah Cup in Ipoh. 2018 was Newman's most notable year with the national team. In April, he won a silver medal with the side at the Commonwealth Games held in the Gold Coast. He continued representing the Black Sticks in international test matches throughout the year, culminating with an appearance at the FIH World Cup in Bhubaneswar. Newman has also appeared in the 2019 and 2020–21 editions of the FIH Pro League. International goals References External links 1996 births Living people New Zealand male field hockey players Male field hockey midfielders 2018 Men's Hockey World Cup players Commonwealth Games medallists in field hockey Sportspeople from Christchurch Field hockey players at the 2018 Commonwealth Games Commonwealth Games silver medallists for New Zealand Medallists at the 2018 Commonwealth Games
Shanxi Airlines was an airline based in Taiyuan in the People's Republic of China. It operated scheduled domestic passenger services. In Nov 29, 2007, it merged with China Xinhua Airlines and Chang An Airlines to form Grand China Air, a subsidiary of Hainan Airlines. History The airline was established in 1988 and started operations on 6 July 2001. Hainan Airlines owned a 92.51% stake in Shanxi Airlines, acquired in a deal approved by state authorities as part of China's airline consolidation. Hainan merged the airline into Hainan Airlines in 2009. Fleet The Shanxi Airlines fleet consisted of the following aircraft (at February 2006): Accidents and incidents On 7 October 1988, a Ilyushin Il-14 (registered B-2418) undergoing a sightseeing flight for workers at a local knitting factory crashed shortly after takeoff from Linfen Air Base. 44 of the 48 passengers and crew, as well as 2 pedestrians, were killed. References External links Shanxi Airlines Boeing Fleet Detail Defunct airlines of China Airlines established in 1998 Airlines disestablished in 2009 Transport in Shanxi Companies based in Shanxi Hainan Airlines Chinese companies established in 1998 2009 disestablishments in China
```objective-c //===- ObjectFileTransformer.h ----------------------------------*- C++ -*-===// // // See path_to_url for license information. // //===your_sha256_hash------===// #ifndef LLVM_DEBUGINFO_GSYM_OBJECTFILETRANSFORMER_H #define LLVM_DEBUGINFO_GSYM_OBJECTFILETRANSFORMER_H #include "llvm/Support/Error.h" namespace llvm { class raw_ostream; namespace object { class ObjectFile; } namespace gsym { class GsymCreator; class ObjectFileTransformer { public: /// Extract any object file data that is needed by the GsymCreator. /// /// The extracted information includes the UUID of the binary and converting /// all function symbols from any symbol tables into FunctionInfo objects. /// /// \param Obj The object file that contains the DWARF debug info. /// /// \param Log The stream to log warnings and non fatal issues to. /// /// \param Gsym The GSYM creator to populate with the function information /// from the debug info. /// /// \returns An error indicating any fatal issues that happen when parsing /// the DWARF, or Error::success() if all goes well. static llvm::Error convert(const object::ObjectFile &Obj, raw_ostream &Log, GsymCreator &Gsym); }; } // namespace gsym } // namespace llvm #endif // LLVM_DEBUGINFO_GSYM_OBJECTFILETRANSFORMER_H ```
```smalltalk using System; using System.Diagnostics; using System.IO; using System.Linq; using System.Text; using System.Threading; using System.Xml; using System.Xml.Linq; using Microsoft.Build.Utilities; using Microsoft.Build.Framework; using System.Text.RegularExpressions; using System.Collections.Generic; using Xamarin.Android.Tools; using Microsoft.Android.Build.Tasks; namespace Xamarin.Android.Tasks { public class Aapt : AsyncTask { public override string TaskPrefix => "APT"; public ITaskItem[] AdditionalAndroidResourcePaths { get; set; } public string AndroidComponentResgenFlagFile { get; set; } public ITaskItem AndroidManifestFile { get; set;} public bool NonConstantId { get; set; } public string AssetDirectory { get; set; } [Required] public ITaskItem[] ManifestFiles { get; set; } [Required] public string ResourceDirectory { get; set; } public string ResourceOutputFile { get; set; } [Required] public string JavaDesignerOutputDirectory { get; set; } [Required] public string JavaPlatformJarPath { get; set; } public string UncompressedFileExtensions { get; set; } public string PackageName { get; set; } public string ExtraPackages { get; set; } public ITaskItem [] AdditionalResourceDirectories { get; set; } public ITaskItem [] LibraryProjectJars { get; set; } public string ExtraArgs { get; set; } protected string ToolName { get { return OS.IsWindows ? "aapt.exe" : "aapt"; } } public string ToolPath { get; set; } public string ToolExe { get; set; } public string ApiLevel { get; set; } public bool AndroidUseLatestPlatformSdk { get; set; } public string [] SupportedAbis { get; set; } public bool CreatePackagePerAbi { get; set; } public string ImportsDirectory { get; set; } public string OutputImportDirectory { get; set; } public string AssemblyIdentityMapFile { get; set; } // pattern to use for the version code. Used in CreatePackagePerAbi // eg. {abi:00}{dd}{version} // known keyworks // {abi} the value for the current abi // {version} the version code from the manifest. public string VersionCodePattern { get; set; } // Name=Value pair seperated by ';' // e.g screen=21;abi=11 public string VersionCodeProperties { get; set; } public string AndroidSdkPlatform { get; set; } public string ResourceSymbolsTextFileDirectory { get; set; } Dictionary<string,string> _resource_name_case_map; AssemblyIdentityMap assemblyMap = new AssemblyIdentityMap (); string resourceDirectory; Dictionary<string, string> resource_name_case_map => _resource_name_case_map ??= MonoAndroidHelper.LoadResourceCaseMap (BuildEngine4, ProjectSpecificTaskObjectKey); bool ManifestIsUpToDate (string manifestFile) { return !String.IsNullOrEmpty (AndroidComponentResgenFlagFile) && File.Exists (AndroidComponentResgenFlagFile) && File.Exists (manifestFile) && File.GetLastWriteTime (AndroidComponentResgenFlagFile) > File.GetLastWriteTime (manifestFile); } bool RunAapt (string commandLine, IList<OutputLine> output) { var stdout_completed = new ManualResetEvent (false); var stderr_completed = new ManualResetEvent (false); var psi = new ProcessStartInfo () { FileName = GenerateFullPathToTool (), Arguments = commandLine, UseShellExecute = false, RedirectStandardOutput = true, RedirectStandardError = true, StandardOutputEncoding = Encoding.UTF8, CreateNoWindow = true, WindowStyle = ProcessWindowStyle.Hidden, WorkingDirectory = WorkingDirectory, }; object lockObject = new object (); using (var proc = new Process ()) { proc.OutputDataReceived += (sender, e) => { if (e.Data != null) lock (lockObject) output.Add (new OutputLine (e.Data, stdError: false)); else stdout_completed.Set (); }; proc.ErrorDataReceived += (sender, e) => { if (e.Data != null) lock (lockObject) output.Add (new OutputLine (e.Data, stdError: true)); else stderr_completed.Set (); }; proc.StartInfo = psi; LogDebugMessage ("Executing {0}", commandLine); proc.Start (); proc.BeginOutputReadLine (); proc.BeginErrorReadLine (); CancellationToken.Register (() => { try { proc.Kill (); } catch (Exception) { } }); proc.WaitForExit (); if (psi.RedirectStandardError) stderr_completed.WaitOne (TimeSpan.FromSeconds (30)); if (psi.RedirectStandardOutput) stdout_completed.WaitOne (TimeSpan.FromSeconds (30)); return proc.ExitCode == 0; } } bool ExecuteForAbi (string cmd, string currentResourceOutputFile) { var output = new List<OutputLine> (); var ret = RunAapt (cmd, output); var success = !string.IsNullOrEmpty (currentResourceOutputFile) ? File.Exists (Path.Combine (currentResourceOutputFile + ".bk")) : ret; foreach (var line in output) { if (line.StdError) { LogEventsFromTextOutput (line.Line, MessageImportance.Normal, success); } else { LogMessage (line.Line, MessageImportance.Normal); } } if (ret && !string.IsNullOrEmpty (currentResourceOutputFile)) { var tmpfile = currentResourceOutputFile + ".bk"; Files.CopyIfZipChanged (tmpfile, currentResourceOutputFile); File.Delete (tmpfile); } return ret; } void ProcessManifest (ITaskItem manifestFile) { var manifest = Path.IsPathRooted (manifestFile.ItemSpec) ? manifestFile.ItemSpec : Path.Combine (WorkingDirectory, manifestFile.ItemSpec); if (!File.Exists (manifest)) { LogDebugMessage ("{0} does not exists. Skipping", manifest); return; } bool upToDate = ManifestIsUpToDate (manifest); if (AdditionalAndroidResourcePaths != null) foreach (var dir in AdditionalAndroidResourcePaths) if (!string.IsNullOrEmpty (dir.ItemSpec)) upToDate = upToDate && ManifestIsUpToDate (string.Format ("{0}{1}{2}{3}{4}", dir, Path.DirectorySeparatorChar, "manifest", Path.DirectorySeparatorChar, "AndroidManifest.xml")); if (upToDate) { LogMessage (" Additional Android Resources manifsets files are unchanged. Skipping."); return; } var defaultAbi = new string [] { null }; var abis = CreatePackagePerAbi && SupportedAbis?.Length > 1 ? defaultAbi.Concat (SupportedAbis) : defaultAbi; foreach (var abi in abis) { var currentResourceOutputFile = abi != null ? string.Format ("{0}-{1}", ResourceOutputFile, abi) : ResourceOutputFile; if (!string.IsNullOrEmpty (currentResourceOutputFile) && !Path.IsPathRooted (currentResourceOutputFile)) currentResourceOutputFile = Path.Combine (WorkingDirectory, currentResourceOutputFile); string cmd = GenerateCommandLineCommands (manifest, abi, currentResourceOutputFile); if (string.IsNullOrWhiteSpace (cmd) || !ExecuteForAbi (cmd, currentResourceOutputFile)) { Cancel (); } } return; } public override System.Threading.Tasks.Task RunTaskAsync () { resourceDirectory = ResourceDirectory.TrimEnd ('\\'); if (!Path.IsPathRooted (resourceDirectory)) resourceDirectory = Path.Combine (WorkingDirectory, resourceDirectory); assemblyMap.Load (Path.Combine (WorkingDirectory, AssemblyIdentityMapFile)); return this.WhenAll (ManifestFiles, ProcessManifest); } protected string GenerateCommandLineCommands (string ManifestFile, string currentAbi, string currentResourceOutputFile) { // For creating Resource.designer.cs: // Running command: C:\Program Files (x86)\Android\android-sdk-windows\platform-tools\aapt // "package" // "-M" "C:\Users\Jonathan\AppData\Local\Temp\ryob4gaw.way\AndroidManifest.xml" // "-J" "C:\Users\Jonathan\AppData\Local\Temp\ryob4gaw.way" // "-F" "C:\Users\Jonathan\AppData\Local\Temp\ryob4gaw.way\resources.apk" // "-S" "c:\users\jonathan\documents\visual studio 2010\Projects\MonoAndroidApplication4\MonoAndroidApplication4\obj\Debug\res" // "-I" "C:\Program Files (x86)\Android\android-sdk-windows\platforms\android-8\android.jar" // "--max-res-version" "10" // For packaging: // Running command: C:\Program Files (x86)\Android\android-sdk-windows\platform-tools\aapt // "package" // "-f" // "-m" // "-M" "AndroidManifest.xml" // "-J" "src" // "--custom-package" "androidmsbuildtest.androidmsbuildtest" // "-F" "bin\packaged_resources" // "-S" "C:\Users\Jonathan\Documents\Visual Studio 2010\Projects\AndroidMSBuildTest\AndroidMSBuildTest\obj\Debug\res" // "-I" "C:\Program Files (x86)\Android\android-sdk-windows\platforms\android-8\android.jar" // "--extra-packages" "com.facebook.android:my.another.library" var cmd = new CommandLineBuilder (); cmd.AppendSwitch ("package"); if (MonoAndroidHelper.LogInternalExceptions) cmd.AppendSwitch ("-v"); if (NonConstantId) cmd.AppendSwitch ("--non-constant-id"); cmd.AppendSwitch ("-f"); cmd.AppendSwitch ("-m"); string manifestFile; string manifestDir = Path.Combine (Path.GetDirectoryName (ManifestFile), currentAbi != null ? currentAbi : "manifest"); Directory.CreateDirectory (manifestDir); manifestFile = Path.Combine (manifestDir, Path.GetFileName (ManifestFile)); ManifestDocument manifest = new ManifestDocument (ManifestFile); manifest.TargetSdkVersion = AndroidSdkPlatform; if (!string.IsNullOrEmpty (VersionCodePattern)) { try { manifest.CalculateVersionCode (currentAbi, VersionCodePattern, VersionCodeProperties); } catch (ArgumentOutOfRangeException ex) { LogCodedError ("XA0003", ManifestFile, 0, ex.Message); return string.Empty; } } if (currentAbi != null && string.IsNullOrEmpty (VersionCodePattern)) { manifest.SetAbi (currentAbi); } if (!manifest.ValidateVersionCode (out string error, out string errorCode)) { LogCodedError (errorCode, ManifestFile, 0, error); return string.Empty; } manifest.Save (LogCodedWarning, manifestFile); cmd.AppendSwitchIfNotNull ("-M ", manifestFile); var designerDirectory = Path.IsPathRooted (JavaDesignerOutputDirectory) ? JavaDesignerOutputDirectory : Path.Combine (WorkingDirectory, JavaDesignerOutputDirectory); Directory.CreateDirectory (designerDirectory); cmd.AppendSwitchIfNotNull ("-J ", JavaDesignerOutputDirectory); if (PackageName != null) cmd.AppendSwitchIfNotNull ("--custom-package ", PackageName.ToLowerInvariant ()); if (!string.IsNullOrEmpty (currentResourceOutputFile)) cmd.AppendSwitchIfNotNull ("-F ", currentResourceOutputFile + ".bk"); // The order of -S arguments is *important*, always make sure this one comes FIRST cmd.AppendSwitchIfNotNull ("-S ", resourceDirectory.TrimEnd ('\\')); if (AdditionalResourceDirectories != null) { foreach (var dir in AdditionalResourceDirectories) { var resdir = dir.ItemSpec.TrimEnd ('\\'); if (Directory.Exists (resdir)) { cmd.AppendSwitchIfNotNull ("-S ", resdir); } } } if (AdditionalAndroidResourcePaths != null) { foreach (var dir in AdditionalAndroidResourcePaths) { var resdir = Path.Combine (dir.ItemSpec, "res"); if (Directory.Exists (resdir)) { cmd.AppendSwitchIfNotNull ("-S ", resdir); } } } if (LibraryProjectJars != null) foreach (var jar in LibraryProjectJars) cmd.AppendSwitchIfNotNull ("-j ", jar); cmd.AppendSwitchIfNotNull ("-I ", JavaPlatformJarPath); // Add asset directory if it exists if (!string.IsNullOrWhiteSpace (AssetDirectory)) { var assetDir = AssetDirectory.TrimEnd ('\\'); if (!Path.IsPathRooted (assetDir)) assetDir = Path.Combine (WorkingDirectory, assetDir); if (!string.IsNullOrWhiteSpace (assetDir) && Directory.Exists (assetDir)) cmd.AppendSwitchIfNotNull ("-A ", assetDir); } if (!string.IsNullOrWhiteSpace (UncompressedFileExtensions)) foreach (var ext in UncompressedFileExtensions.Split (new char[] { ';', ','}, StringSplitOptions.RemoveEmptyEntries)) cmd.AppendSwitchIfNotNull ("-0 ", ext.StartsWith (".", StringComparison.OrdinalIgnoreCase) ? ext : $".{ext}"); if (!string.IsNullOrEmpty (ExtraPackages)) cmd.AppendSwitchIfNotNull ("--extra-packages ", ExtraPackages); cmd.AppendSwitch ("--auto-add-overlay"); if (!string.IsNullOrEmpty (ResourceSymbolsTextFileDirectory)) cmd.AppendSwitchIfNotNull ("--output-text-symbols ", ResourceSymbolsTextFileDirectory); if (!string.IsNullOrWhiteSpace (ExtraArgs)) cmd.AppendSwitch (ExtraArgs); if (!AndroidUseLatestPlatformSdk) cmd.AppendSwitchIfNotNull ("--max-res-version ", ApiLevel); return cmd.ToString (); } protected string GenerateFullPathToTool () { return Path.Combine (ToolPath, string.IsNullOrEmpty (ToolExe) ? ToolName : ToolExe); } protected void LogEventsFromTextOutput (string singleLine, MessageImportance messageImportance, bool apptResult) { if (string.IsNullOrEmpty (singleLine)) return; var match = AndroidRunToolTask.AndroidErrorRegex.Match (singleLine.Trim ()); if (match.Success) { var file = match.Groups["file"].Value; int line = 0; if (!string.IsNullOrEmpty (match.Groups["line"]?.Value)) line = int.Parse (match.Groups["line"].Value.Trim ()) + 1; var level = match.Groups["level"].Value.ToLowerInvariant (); var message = match.Groups ["message"].Value; if (message.Contains ("fakeLogOpen")) { LogMessage (singleLine, MessageImportance.Normal); return; } if (level.Contains ("warning")) { LogCodedWarning (GetErrorCode (singleLine), singleLine); return; } // Try to map back to the original resource file, so when the user // double clicks the error, it won't take them to the obj/Debug copy string newfile = MonoAndroidHelper.FixUpAndroidResourcePath (file, resourceDirectory, string.Empty, resource_name_case_map); if (!string.IsNullOrEmpty (newfile)) { file = newfile; } bool manifestError = false; if (AndroidManifestFile != null && string.Compare (Path.GetFileName (file), Path.GetFileName (AndroidManifestFile.ItemSpec), StringComparison.OrdinalIgnoreCase) == 0) { manifestError = true; } // Strip any "Error:" text from aapt's output if (message.StartsWith ("error: ", StringComparison.InvariantCultureIgnoreCase)) message = message.Substring ("error: ".Length); if (level.Contains ("error") || (line != 0 && !string.IsNullOrEmpty (file))) { if (manifestError) LogCodedError (GetErrorCode (message), string.Format (Xamarin.Android.Tasks.Properties.Resources.AAPTManifestError, message.TrimEnd('.')), AndroidManifestFile.ItemSpec, 0); else LogCodedError (GetErrorCode (message), message, file, line); return; } } if (!apptResult) { var message = string.Format ("{0} \"{1}\".", singleLine.Trim (), singleLine.Substring (singleLine.LastIndexOfAny (new char [] { '\\', '/' }) + 1)); LogCodedError (GetErrorCode (message), message, ToolName); } else { LogCodedWarning (GetErrorCode (singleLine), singleLine); } } static string GetErrorCode (string message) { foreach (var tuple in error_codes) if (message.IndexOf (tuple.Item2, StringComparison.OrdinalIgnoreCase) >= 0) return tuple.Item1; return "APT1000"; } static readonly List<Tuple<string, string>> error_codes = new List<Tuple<string, string>> () { Tuple.Create ("APT1001", "can't use '-u' with add"), Tuple.Create ("APT1002", "dump failed because assets could not be loaded"), Tuple.Create ("APT1003", "dump failed because no AndroidManifest.xml found"), Tuple.Create ("APT1004", "dump failed because the resource table is invalid/corrupt"), Tuple.Create ("APT1005", "during crunch - archive is toast"), Tuple.Create ("APT1006", "failed to get platform version code"), Tuple.Create ("APT1007", "failed to get platform version name"), Tuple.Create ("APT1008", "failed to get XML element name (bad string pool)"), Tuple.Create ("APT1009", "failed to write library table"), Tuple.Create ("APT1010", "getting resolved resource attribute"), Tuple.Create ("APT1011", "Key string data is corrupt"), Tuple.Create ("APT1012", "list -a failed because assets could not be loaded"), Tuple.Create ("APT1013", "manifest does not start with <manifest> tag"), Tuple.Create ("APT1014", "missing 'android:name' for permission"), Tuple.Create ("APT1015", "missing 'android:name' for uses-permission"), Tuple.Create ("APT1016", "missing 'android:name' for uses-permission-sdk-23"), Tuple.Create ("APT1017", "Missing entries, quit"), Tuple.Create ("APT1018", "must specify zip file name"), Tuple.Create ("APT1019", "No AndroidManifest.xml file found"), Tuple.Create ("APT1020", "No argument supplied for '-A' option"), Tuple.Create ("APT1021", "No argument supplied for '-c' option"), Tuple.Create ("APT1022", "No argument supplied for '--custom-package' option"), Tuple.Create ("APT1023", "No argument supplied for '-D' option"), Tuple.Create ("APT1024", "No argument supplied for '-e' option"), Tuple.Create ("APT1025", "No argument supplied for '--extra-packages' option"), Tuple.Create ("APT1026", "No argument supplied for '--feature-after' option"), Tuple.Create ("APT1027", "No argument supplied for '--feature-of' option"), Tuple.Create ("APT1028", "No argument supplied for '-F' option"), Tuple.Create ("APT1029", "No argument supplied for '-g' option"), Tuple.Create ("APT1030", "No argument supplied for '--ignore-assets' option"), Tuple.Create ("APT1031", "No argument supplied for '-I' option"), Tuple.Create ("APT1032", "No argument supplied for '-j' option"), Tuple.Create ("APT1033", "No argument supplied for '--max-res-version' option"), Tuple.Create ("APT1034", "No argument supplied for '--max-sdk-version' option"), Tuple.Create ("APT1035", "No argument supplied for '--min-sdk-version' option"), Tuple.Create ("APT1036", "No argument supplied for '-M' option"), Tuple.Create ("APT1037", "No argument supplied for '-o' option"), Tuple.Create ("APT1038", "No argument supplied for '-output-text-symbols' option"), Tuple.Create ("APT1039", "No argument supplied for '-P' option"), Tuple.Create ("APT1040", "No argument supplied for '--preferred-density' option"), Tuple.Create ("APT1041", "No argument supplied for '--private-symbols' option"), Tuple.Create ("APT1042", "No argument supplied for '--product' option"), Tuple.Create ("APT1043", "No argument supplied for '--rename-instrumentation-target-package' option"), Tuple.Create ("APT1044", "No argument supplied for '--rename-manifest-package' option"), Tuple.Create ("APT1045", "No argument supplied for '-S' option"), Tuple.Create ("APT1046", "No argument supplied for '--split' option"), Tuple.Create ("APT1047", "No argument supplied for '--target-sdk-version' option"), Tuple.Create ("APT1048", "No argument supplied for '--version-code' option"), Tuple.Create ("APT1049", "No argument supplied for '--version-name' option"), Tuple.Create ("APT1050", "no dump file specified"), Tuple.Create ("APT1051", "no dump option specified"), Tuple.Create ("APT1052", "no dump xmltree resource file specified"), Tuple.Create ("APT1053", "no input files"), Tuple.Create ("APT1054", "no <manifest> tag found in platform AndroidManifest.xml"), Tuple.Create ("APT1055", "out of memory creating package chunk for ResTable_header"), Tuple.Create ("APT1056", "out of memory creating ResTable_entry"), Tuple.Create ("APT1057", "out of memory creating ResTable_header"), Tuple.Create ("APT1058", "out of memory creating ResTable_package"), Tuple.Create ("APT1059", "out of memory creating ResTable_type"), Tuple.Create ("APT1060", "out of memory creating ResTable_typeSpec"), Tuple.Create ("APT1061", "out of memory creating Res_value"), Tuple.Create ("APT1062", "Out of memory for string pool"), Tuple.Create ("APT1063", "Out of memory padding string pool"), Tuple.Create ("APT1064", "parsing XML"), Tuple.Create ("APT1065", "Platform AndroidManifest.xml is corrupt"), Tuple.Create ("APT1066", "Platform AndroidManifest.xml not found"), Tuple.Create ("APT1067", "print resolved resource attribute"), Tuple.Create ("APT1068", "retrieving parent for item:"), Tuple.Create ("APT1069", "specify zip file name (only)"), Tuple.Create ("APT1070", "Type string data is corrupt"), Tuple.Create ("APT1071", "Unable to parse generated resources, aborting"), Tuple.Create ("APT1072", "Invalid BCP 47 tag in directory name"), // ERROR: Invalid BCP 47 tag in directory name: %s Tuple.Create ("APT1073", "parsing preferred density"), // Error parsing preferred density: %s Tuple.Create ("APT1074", "Asset package include"), // ERROR: Asset package include '%s' not found Tuple.Create ("APT1075", "base feature package"), // ERROR: base feature package '%s' not found Tuple.Create ("APT1076", "Split configuration"), // ERROR: Split configuration '%s' is already defined in another split Tuple.Create ("APT1077", "failed opening/creating"), // ERROR: failed opening/creating '%s' as Zip file Tuple.Create ("APT1078", "as Zip file for writing"), // ERROR: unable to open '%s' as Zip file for writing Tuple.Create ("APT1079", "as Zip file"), // ERROR: failed opening '%s' as Zip file Tuple.Create ("APT1080", "included asset path"), // ERROR: included asset path %s could not be loaded Tuple.Create ("APT1081", "getting 'android:name' attribute"), Tuple.Create ("APT1082", "getting 'android:name'"), Tuple.Create ("APT1083", "getting 'android:versionCode' attribute"), Tuple.Create ("APT1084", "getting 'android:versionName' attribute"), Tuple.Create ("APT1085", "getting 'android:compileSdkVersion' attribute"), Tuple.Create ("APT1086", "getting 'android:installLocation' attribute"), Tuple.Create ("APT1087", "getting 'android:icon' attribute"), Tuple.Create ("APT1088", "getting 'android:testOnly' attribute"), Tuple.Create ("APT1089", "getting 'android:banner' attribute"), Tuple.Create ("APT1090", "getting 'android:isGame' attribute"), Tuple.Create ("APT1091", "getting 'android:debuggable' attribute"), Tuple.Create ("APT1092", "getting 'android:minSdkVersion' attribute"), Tuple.Create ("APT1093", "getting 'android:targetSdkVersion' attribute"), Tuple.Create ("APT1094", "getting 'android:label' attribute"), Tuple.Create ("APT1095", "getting compatible screens"), Tuple.Create ("APT1096", "getting 'android:name' attribute for uses-library"), Tuple.Create ("APT1097", "getting 'android:name' attribute for receiver"), Tuple.Create ("APT1098", "getting 'android:permission' attribute for receiver"), Tuple.Create ("APT1099", "getting 'android:name' attribute for service"), Tuple.Create ("APT1100", "getting 'android:name' attribute for meta-data tag in service"), Tuple.Create ("APT1101", "getting 'android:name' attribute for meta-data"), Tuple.Create ("APT1102", "getting 'android:permission' attribute for service"), Tuple.Create ("APT1103", "getting 'android:permission' attribute for provider"), Tuple.Create ("APT1104", "getting 'android:exported' attribute for provider"), Tuple.Create ("APT1105", "getting 'android:grantUriPermissions' attribute for provider"), Tuple.Create ("APT1106", "getting 'android:value' or 'android:resource' attribute for meta-data"), Tuple.Create ("APT1107", "getting 'android:resource' attribute for meta-data tag in service"), Tuple.Create ("APT1108", "getting AID category for service"), Tuple.Create ("APT1109", "getting 'name' attribute"), Tuple.Create ("APT1110", "unknown dump option"), Tuple.Create ("APT1111", "failed opening Zip archive"), Tuple.Create ("APT1112", "exists but is not regular file"), // ERROR: output file '%s' exists but is not regular file Tuple.Create ("APT1113", "failed to parse split configuration"), Tuple.Create ("APT1114", "packaging of"), // ERROR: packaging of '%s' failed Tuple.Create ("APT1115", "9-patch image"), // ERROR: 9-patch image %s malformed Tuple.Create ("APT1116", "Failure processing PNG image"), Tuple.Create ("APT1117", "Unknown command"), Tuple.Create ("APT1118", "exists (use '-f' to force overwrite)"), Tuple.Create ("APT1119", "exists and is not a regular file"), Tuple.Create ("APT1120", "unable to process assets while packaging"), Tuple.Create ("APT1121", "unable to process jar files while packaging"), Tuple.Create ("APT1122", "Unknown option"), Tuple.Create ("APT1123", "Unknown flag"), Tuple.Create ("APT1124", "Zip flush failed, archive may be hosed"), Tuple.Create ("APT1125", "exists twice (check for with"), // ERROR: '%s' exists twice (check for with & w/o '.gz'?) Tuple.Create ("APT1126", "unable to uncompress entry"), Tuple.Create ("APT1127", "as a zip file"), // ERROR: unable to open '%s' as a zip file: %d Tuple.Create ("APT1128", "unable to process"), // ERROR: unable to process '%s' Tuple.Create ("APT1129", "malformed resource filename"), Tuple.Create ("APT1130", "AndroidManifest.xml already defines"), // Error: AndroidManifest.xml already defines %s (in %s); cannot insert new value %s Tuple.Create ("APT1131", "In <declare-styleable>"), // ERROR: In <declare-styleable> %s, unable to find attribute %s Tuple.Create ("APT1132", "Feature package"), // ERROR: Feature package '%s' not found Tuple.Create ("APT1133", "declaring public resource"), // Error declaring public resource %s/%s for included package %s Tuple.Create ("APT1134", "with value"), // Error: %s (at '%s' with value '%s') Tuple.Create ("APT1135", "is not a single item or a bag"), // Error: entry %s is not a single item or a bag Tuple.Create ("APT1136", "adding span for style tag"), Tuple.Create ("APT1137", "parsing XML"), Tuple.Create ("APT1138", "access denied"), // ERROR: '%s' access denied Tuple.Create ("APT1139", "included asset path"), // ERROR: included asset path %s could not be loaded Tuple.Create ("APT1140", "is corrupt"), // ERROR: Resource %s is corrupt Tuple.Create ("APT1141", "dump failed because resource"), // ERROR: dump failed because resource %s [not] found Tuple.Create ("APT1142", "not found"), // ERROR: '%s' not found Tuple.Create ("APT1043", "asset directory"), // ERROR: asset directory '%s' does not exist Tuple.Create ("APT1044", "input directory"), // ERROR: input directory '%s' does not exist Tuple.Create ("APT1045", "resource directory"), // ERROR: resource directory '%s' does not exist Tuple.Create ("APT1046", "is not a directory"), // ERROR: '%s' is not a directory Tuple.Create ("APT1047", "opening zip file"), // error opening zip file %s Tuple.Create ("APT1143", "AndroidManifest.xml is corrupt"), Tuple.Create ("APT1144", "Invalid file name: must contain only"), Tuple.Create ("APT1145", "has no default translation"), Tuple.Create ("APT1146", "max res"), }; } } ```
```java package com.ctrip.xpipe.redis.console.service.impl; import com.ctrip.xpipe.api.foundation.FoundationService; import com.ctrip.xpipe.api.monitor.EventMonitor; import com.ctrip.xpipe.redis.console.config.ConsoleConfig; import com.ctrip.xpipe.redis.console.dao.ConfigDao; import com.ctrip.xpipe.redis.console.election.CrossDcLeaderElectionAction; import com.ctrip.xpipe.redis.console.exception.DalUpdateException; import com.ctrip.xpipe.redis.console.healthcheck.nonredis.console.AlertSystemOffChecker; import com.ctrip.xpipe.redis.console.healthcheck.nonredis.console.AutoMigrationOffChecker; import com.ctrip.xpipe.redis.console.healthcheck.nonredis.console.KeeperBalanceInfoCollectOnChecker; import com.ctrip.xpipe.redis.console.healthcheck.nonredis.console.SentinelAutoProcessChecker; import com.ctrip.xpipe.redis.console.keeper.entity.KeeperContainerDiskType; import com.ctrip.xpipe.redis.console.model.ConfigModel; import com.ctrip.xpipe.redis.console.model.ConfigTbl; import com.ctrip.xpipe.redis.console.service.ConfigService; import com.ctrip.xpipe.utils.DateTimeUtils; import com.ctrip.xpipe.utils.StringUtil; import com.ctrip.xpipe.utils.VisibleForTesting; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; import org.unidal.dal.jdbc.DalException; import java.util.*; /** * @author chen.zhu * <p> * Nov 27, 2017 */ @Service public class ConfigServiceImpl implements ConfigService { @Autowired private ConfigDao configDao; @Autowired private ConsoleConfig consoleConfig; @Autowired private AlertSystemOffChecker alertSystemOffChecker; @Autowired private SentinelAutoProcessChecker sentinelAutoProcessChecker; @Autowired private AutoMigrationOffChecker autoMigrationOffChecker; @Autowired private KeeperBalanceInfoCollectOnChecker keeperBalanceInfoCollectOnChecker; private String crossDcLeaderLeaseName; private Logger logger = LoggerFactory.getLogger(ConfigServiceImpl.class); private static final String EVENT_CONFIG_CHANGE = "event_config_change"; @Autowired public ConfigServiceImpl(ConsoleConfig consoleConfig) { this.crossDcLeaderLeaseName = consoleConfig.getCrossDcLeaderLeaseName(); } @Override public void setKeyKeeperContainerStandard(ConfigModel config) throws Exception { if (!KEY_KEEPER_CONTAINER_STANDARD.equals(config.getKey())) { throw new RuntimeException(String.format("key should be %s !", KEY_KEEPER_CONTAINER_STANDARD)); } try { Long.parseLong(config.getVal()); } catch (NumberFormatException e) { throw new RuntimeException(String.format("value %s should be number ", config.getVal())); } configDao.setConfig(config); } @Override public void setKeyKeeperContainerIoRate(ConfigModel config) throws Exception { if (!KEY_KEEPER_CONTAINER_IO_RATE.equals(config.getKey())) { throw new RuntimeException(String.format("key should be %s !", KEY_KEEPER_CONTAINER_IO_RATE)); } List<ConfigModel> standardConfigs = getConfigs(KEY_KEEPER_CONTAINER_STANDARD); List<String> diskTypes = new ArrayList<>(); standardConfigs.forEach(configModel -> { diskTypes.add(configModel.getSubKey().split(KeeperContainerDiskType.DEFAULT.interval)[0]); }); if (!diskTypes.contains(config.getSubKey())) { throw new RuntimeException(String.format("subkey:%s should be in diskTypes %s !", config.getSubKey(), diskTypes)); } try { Long.parseLong(config.getVal()); } catch (NumberFormatException e) { throw new RuntimeException(String.format("value %s should be number ", config.getVal())); } configDao.setConfig(config); } @Override public void startAlertSystem(ConfigModel config) throws DalException { logger.info("[startAlertSystem] start alert system, config: {}", config); config.setKey(KEY_ALERT_SYSTEM_ON).setVal(String.valueOf(true)); configDao.setConfig(config); } @Override public void stopAlertSystem(ConfigModel config, int hours) throws DalException { Date date = DateTimeUtils.getHoursLaterDate(hours); boolean previousStateOn = isAlertSystemOn(); config.setKey(KEY_ALERT_SYSTEM_ON).setVal(String.valueOf(false)); logger.info("[stopAlertSystem] stop alert system, config: {}", config); configDao.setConfigAndUntil(config, date); if(previousStateOn) { logger.info("[stopAlertSystem] Alert System was On, alert this operation"); alertSystemOffChecker.startAlert(); } } @Override public void startSentinelAutoProcess(ConfigModel config) throws DalException { logger.info("[startSentinelAutoProcess] start sentinel auto process, config: {}", config); config.setKey(KEY_SENTINEL_AUTO_PROCESS).setVal(String.valueOf(true)); configDao.setConfig(config); } @Override public void stopSentinelAutoProcess(ConfigModel config, int hours) throws DalException { logger.info("[stopSentinelAutoProcess] stop sentinel auto process, config: {}", config); Date date = DateTimeUtils.getHoursLaterDate(hours); boolean previousStateOn = isSentinelAutoProcess(); config.setKey(KEY_SENTINEL_AUTO_PROCESS).setVal(String.valueOf(false)); configDao.setConfigAndUntil(config, date); if(previousStateOn) { sentinelAutoProcessChecker.startAlert(); } } @Override public void startKeeperBalanceInfoCollect(ConfigModel config, int hours) throws DalException { logger.info("[startKeeperBalanceInfoCollect] start keeper balance info collect, config: {}", config); Date date = DateTimeUtils.getHoursLaterDate(hours); boolean previousStateOff = !isKeeperBalanceInfoCollectOn(); config.setKey(KEY_KEEPER_BALANCE_INFO_COLLECT).setVal(String.valueOf(true)); configDao.setConfigAndUntil(config, date); if(previousStateOff) { keeperBalanceInfoCollectOnChecker.startAlert(); } } @Override public void stopKeeperBalanceInfoCollect(ConfigModel config) throws DalException { logger.info("[stopKeeperBalanceInfoCollect] stop keeper balance info collect, config: {}", config); config.setKey(KEY_KEEPER_BALANCE_INFO_COLLECT).setVal(String.valueOf(false)); configDao.setConfig(config); } @Override public void startClusterAlert(ConfigModel config) throws DalException { logger.info("[startClusterAlert][{}]", config.getSubKey()); config.setKey(KEY_CLUSTER_ALERT_EXCLUDE) .setVal(String.valueOf(false)); logChangeEvent(config, null); configDao.setConfig(config); } @Override public void stopClusterAlert(ConfigModel config, int minutes) throws DalException { logger.info("[stopClusterAlert][{}] for {}", config.getSubKey(), minutes); Date date = DateTimeUtils.getMinutesLaterThan(new Date(), minutes); config.setKey(KEY_CLUSTER_ALERT_EXCLUDE) .setVal(String.valueOf(true)); logChangeEvent(config, date); configDao.setConfigAndUntil(config, date); } @Override public void startSentinelCheck(ConfigModel config) throws DalException { logger.info("[startSentinelCheck] : turn off sentinel check exclude config {} for cluster {}", config, config.getSubKey()); config.setKey(KEY_SENTINEL_CHECK_EXCLUDE) .setVal(String.valueOf(false)); logChangeEvent(config, null); configDao.setConfig(config); } @Override public void stopSentinelCheck(ConfigModel config, int minutes) throws DalException { logger.info("[stopSentinelCheck] : turn on sentinel check exclude config {} for cluster {} till {} minutes later", config, config.getSubKey(), minutes); Date date = DateTimeUtils.getMinutesLaterThan(new Date(), minutes); config.setKey(KEY_SENTINEL_CHECK_EXCLUDE) .setVal(String.valueOf(true)); logChangeEvent(config, date); configDao.setConfigAndUntil(config, date); } @Override public void resetClusterWhitelist(String cluster) throws DalException { logger.info("[resetClusterWhitelist]: reset all whitelist for cluster {}", cluster); ConfigModel configModel = new ConfigModel().setSubKey(cluster) .setUpdateIP(FoundationService.DEFAULT.getLocalIp()).setUpdateUser("reset"); if (!shouldSentinelCheck(cluster)) { startSentinelCheck(configModel); } if (!shouldAlert(cluster)) { startClusterAlert(configModel); } } public void updateCrossDcLeader(ConfigModel config, Date until) throws DalException { logger.info("[updateCrossDcLeader] update lease to {} until {}", config.getVal(), until); config.setKey(CrossDcLeaderElectionAction.KEY_LEASE_CONFIG); config.setSubKey(crossDcLeaderLeaseName); configDao.setConfig(config, until); } public String getCrossDcLeader() throws DalException { ConfigTbl leaseConfig = configDao.getByKeyAndSubId(CrossDcLeaderElectionAction.KEY_LEASE_CONFIG, crossDcLeaderLeaseName); // only return when lease is active if (new Date().compareTo(leaseConfig.getUntil()) < 0) return leaseConfig.getValue(); else return null; } @Override public boolean shouldSentinelCheck(String cluster) { return !getConfigBooleanByKeyAndSubKey(KEY_SENTINEL_CHECK_EXCLUDE, cluster, false); } public boolean shouldAlert(String cluster) { return !getConfigBooleanByKeyAndSubKey(KEY_CLUSTER_ALERT_EXCLUDE, cluster, false); } private boolean getConfigBooleanByKeyAndSubKey(String key, String subKey, boolean defaultVal) { try { ConfigTbl config = configDao.getByKeyAndSubId(key, subKey); if (null == config || (new Date()).after(config.getUntil())) { return defaultVal; } return Boolean.parseBoolean(config.getValue()); } catch (Exception e) { return defaultVal; } } @Override public List<ConfigModel> getActiveSentinelCheckExcludeConfig() { return getActiveConfig(KEY_SENTINEL_CHECK_EXCLUDE, String.valueOf(true)); } @Override public List<ConfigModel> getActiveClusterAlertExcludeConfig() { return getActiveConfig(KEY_CLUSTER_ALERT_EXCLUDE, String.valueOf(true)); } private List<ConfigModel> getActiveConfig(String key, String val) { List<ConfigTbl> configTbls = configDao.findAllByKeyAndValueAndUntilAfter(key, val, new Date()); if (configTbls.isEmpty()) return Collections.emptyList(); List<ConfigModel> models = new ArrayList<>(); configTbls.forEach(configTbl -> models.add(new ConfigModel(configTbl))); return models; } @Override public boolean isAlertSystemOn() { return getAndResetTrueIfExpired(KEY_ALERT_SYSTEM_ON); } @Override public boolean isSentinelAutoProcess() { return getAndResetTrueIfExpired(KEY_SENTINEL_AUTO_PROCESS); } @Override public boolean isKeeperBalanceInfoCollectOn() { return getAndResetFalseIfExpired(KEY_KEEPER_BALANCE_INFO_COLLECT); } @Override public Date getAlertSystemRecoverTime() { try { return configDao.getByKey(KEY_ALERT_SYSTEM_ON).getUntil(); } catch (DalException e) { logger.error("[getAlertSystemRecovertIME]", e); return null; } } @Override public Date getSentinelAutoProcessRecoverTime() { try { return configDao.getByKey(KEY_SENTINEL_AUTO_PROCESS).getUntil(); } catch (DalException e) { logger.error("[getSentinelAutoProcessRecoverTime]", e); return null; } } @Override public Date getKeeperBalanceInfoCollectRecoverTime() { try { return configDao.getByKey(KEY_KEEPER_BALANCE_INFO_COLLECT).getUntil(); } catch (DalException e) { logger.error("[getKeeperBalanceInfoCollectRecoverTime]", e); return null; } } @Override public boolean ignoreMigrationSystemAvailability() { try { ConfigModel configModel = getOrCreate(KEY_IGNORE_MIGRATION_SYSTEM_AVAILABILITY, String.valueOf(false)); return Boolean.parseBoolean(configModel.getVal()); } catch (Exception e) { logger.error("[ignoreMigrationSystemAvailability]", e); return false; } } @Override public void doIgnoreMigrationSystemAvailability(boolean ignore) { try { ConfigModel configModel = getOrCreate(KEY_IGNORE_MIGRATION_SYSTEM_AVAILABILITY, String.valueOf(ignore)); configModel.setVal(String.valueOf(ignore)); configDao.setConfig(configModel); } catch (Exception e) { logger.error("[ignoreMigrationSystemAvailability]", e); throw new DalUpdateException(e.getMessage()); } } @Override public boolean allowAutoMigration() { try { ConfigModel configModel = getOrCreate(KEY_ALLOW_AUTO_MIGRATION, String.valueOf(true)); return Boolean.parseBoolean(configModel.getVal()); } catch (Exception e) { logger.error("[ignoreMigrationSystemAvailability]", e); return true; } } @Override public void setAllowAutoMigration(boolean allow) throws DalException { try { ConfigModel configModel = getOrCreate(KEY_ALLOW_AUTO_MIGRATION, String.valueOf(allow)); boolean origin = Boolean.parseBoolean(configModel.getVal()); configModel.setVal(String.valueOf(allow)); configDao.setConfig(configModel); if (origin && !allow) { logger.info("[setAllowAutoMigration] Auto Migration stop"); autoMigrationOffChecker.startAlert(); } } catch (Exception e) { logger.error("[setAllowAutoMigration]", e); throw new DalUpdateException(e.getMessage()); } } @Override public ConfigModel getConfig(String key) { return getConfig(key, ""); } @Override public ConfigModel getConfig(String key, String subId) { try { ConfigTbl configTbl = configDao.getByKeyAndSubId(key, subId); return new ConfigModel(configTbl); } catch (DalException e) { logger.error("[getConfig]", e); return null; } } @Override public List<ConfigModel> getConfigs(String key) { try { List<ConfigTbl> configTbl = configDao.getAllByKey(key); List<ConfigModel> configModels = new ArrayList<>(); configTbl.forEach(config -> configModels.add(new ConfigModel(config))); return configModels; } catch (DalException e) { logger.error("[getConfig]", e); return null; } } private ConfigModel getOrCreate(String key, String defaultValue) { ConfigTbl configTbl = null; try { configTbl = configDao.getByKey(key); } catch (DalException e) { logger.error("[getOrCreate]", e); } if(configTbl == null) { return createConfig(key, defaultValue); } ConfigModel config = new ConfigModel(); config.setKey(key); config.setVal(configTbl.getValue()); config.setUpdateIP(configTbl.getLatestUpdateIp()); config.setUpdateUser(configTbl.getLatestUpdateUser()); return config; } private ConfigModel createConfig(String key, String defaultValue) { ConfigModel config = new ConfigModel(); config.setKey(key); config.setVal(defaultValue); try { configDao.setConfig(config); } catch (DalException e) { logger.error("[createConfig]", e); } return config; } private boolean getAndResetTrueIfExpired(String key) { return getAndResetExpectIfExpired(key, true); } private boolean getAndResetFalseIfExpired(String key) { return getAndResetExpectIfExpired(key, false); } private boolean getAndResetExpectIfExpired(String key, boolean defaultVal) { try { ConfigTbl config = configDao.getByKey(key); boolean result = Boolean.parseBoolean(config.getValue()); if(result != defaultVal) { Date expireDate = config.getUntil(); Date currentDate = new Date(); ConfigModel configModel = new ConfigModel().setKey(key) .setVal(String.valueOf(defaultVal)).setUpdateUser("System"); if(currentDate.after(expireDate)) { logger.info("[getAndResetExpectIfExpired] time expired, reset to be {}", defaultVal); configDao.setConfig(configModel); result = defaultVal; } } return result; } catch (Exception e) { return true; } } private void logChangeEvent(ConfigModel configModel, Date recoveryDate) { StringBuilder sb = new StringBuilder(); if (!StringUtil.isEmpty(configModel.getKey())) sb.append(configModel.getKey()); if (!StringUtil.isEmpty(configModel.getSubKey())) sb.append(":").append(configModel.getSubKey()); sb.append(" is set"); if (!StringUtil.isEmpty(configModel.getVal())) sb.append(" to ").append(configModel.getVal()); if (!StringUtil.isEmpty(configModel.getUpdateUser())) sb.append(" by ").append(configModel.getUpdateUser()); if (!StringUtil.isEmpty(configModel.getUpdateIP())) sb.append(" ip ").append(configModel.getUpdateIP()); if (null != recoveryDate) sb.append(" until ").append(DateTimeUtils.timeAsString(recoveryDate)); EventMonitor.DEFAULT.logEvent(EVENT_CONFIG_CHANGE, sb.toString()); } @VisibleForTesting public void setAutoMigrationOffChecker(AutoMigrationOffChecker checker) { this.autoMigrationOffChecker = checker; } } ```
```c /* PR libgomp/29947 */ /* { dg-options "-O2 -fopenmp" } */ /* { dg-do run } */ extern void abort (void); int cnt; void test1 (long j1, long k1, long j2, long k2) { long i, e = 0, c = 0; #pragma omp parallel reduction (+:e,c) { #pragma omp for schedule (static) for (i = j1; i <= k1; ++i) { if (i < j2 || i > k2) ++e; ++c; } #pragma omp atomic ++cnt; } if (e || (c != j2 > k2 ? 0 : k2 - j2 + 1)) abort (); } void test2 (long j1, long k1, long j2, long k2) { long i, e = 0, c = 0; #pragma omp parallel reduction (+:e,c) { #pragma omp for schedule (static) for (i = k1; i >= j1; --i) { if (i < j2 || i > k2) ++e; ++c; } #pragma omp atomic ++cnt; } if (e || (c != j2 > k2 ? 0 : k2 - j2 + 1)) abort (); } void test3 (long j1, long k1, long j2, long k2) { long i, e = 0, c = 0; #pragma omp parallel reduction (+:e,c) { #pragma omp for schedule (static, 1) for (i = j1; i <= k1; ++i) { if (i < j2 || i > k2) ++e; ++c; } #pragma omp atomic ++cnt; } if (e || (c != j2 > k2 ? 0 : k2 - j2 + 1)) abort (); } void test4 (long j1, long k1, long j2, long k2) { long i, e = 0, c = 0; #pragma omp parallel reduction (+:e,c) { #pragma omp for schedule (static, 1) for (i = k1; i >= j1; --i) { if (i < j2 || i > k2) ++e; ++c; } #pragma omp atomic ++cnt; } if (e || (c != j2 > k2 ? 0 : k2 - j2 + 1)) abort (); } void test5 (long j1, long k1, long j2, long k2) { long i, e = 0, c = 0; #pragma omp parallel reduction (+:e,c) { #pragma omp for schedule (static) ordered for (i = j1; i <= k1; ++i) { if (i < j2 || i > k2) ++e; #pragma omp ordered ++c; } #pragma omp atomic ++cnt; } if (e || (c != j2 > k2 ? 0 : k2 - j2 + 1)) abort (); } void test6 (long j1, long k1, long j2, long k2) { long i, e = 0, c = 0; #pragma omp parallel reduction (+:e,c) { #pragma omp for schedule (static) ordered for (i = k1; i >= j1; --i) { if (i < j2 || i > k2) ++e; #pragma omp ordered ++c; } #pragma omp atomic ++cnt; } if (e || (c != j2 > k2 ? 0 : k2 - j2 + 1)) abort (); } void test7 (long j1, long k1, long j2, long k2) { long i, e = 0, c = 0; #pragma omp parallel reduction (+:e,c) { #pragma omp for schedule (static, 1) ordered for (i = j1; i <= k1; ++i) { if (i < j2 || i > k2) ++e; #pragma omp ordered ++c; } #pragma omp atomic ++cnt; } if (e || (c != j2 > k2 ? 0 : k2 - j2 + 1)) abort (); } void test8 (long j1, long k1, long j2, long k2) { long i, e = 0, c = 0; #pragma omp parallel reduction (+:e,c) { #pragma omp for schedule (static, 1) ordered for (i = k1; i >= j1; --i) { if (i < j2 || i > k2) ++e; #pragma omp ordered ++c; } #pragma omp atomic ++cnt; } if (e || (c != j2 > k2 ? 0 : k2 - j2 + 1)) abort (); } void test9 (long j1, long k1, long j2, long k2) { long i, e = 0, c = 0; #pragma omp parallel for reduction (+:e,c) schedule (static) for (i = j1; i <= k1; ++i) { if (i < j2 || i > k2) ++e; ++c; } if (e || (c != j2 > k2 ? 0 : k2 - j2 + 1)) abort (); } void test10 (long j1, long k1, long j2, long k2) { long i, e = 0, c = 0; #pragma omp parallel for reduction (+:e,c) schedule (static) for (i = k1; i >= j1; --i) { if (i < j2 || i > k2) ++e; ++c; } if (e || (c != j2 > k2 ? 0 : k2 - j2 + 1)) abort (); } void test11 (long j1, long k1, long j2, long k2) { long i, e = 0, c = 0; #pragma omp parallel for reduction (+:e,c) schedule (static, 1) for (i = j1; i <= k1; ++i) { if (i < j2 || i > k2) ++e; ++c; } if (e || (c != j2 > k2 ? 0 : k2 - j2 + 1)) abort (); } void test12 (long j1, long k1, long j2, long k2) { long i, e = 0, c = 0; #pragma omp parallel for reduction (+:e,c) schedule (static, 1) for (i = k1; i >= j1; --i) { if (i < j2 || i > k2) ++e; ++c; } if (e || (c != j2 > k2 ? 0 : k2 - j2 + 1)) abort (); } void test13 (long j1, long k1, long j2, long k2) { long i, e = 0, c = 0; #pragma omp parallel for reduction (+:e,c) schedule (static) ordered for (i = j1; i <= k1; ++i) { if (i < j2 || i > k2) ++e; #pragma omp ordered ++c; } if (e || (c != j2 > k2 ? 0 : k2 - j2 + 1)) abort (); } void test14 (long j1, long k1, long j2, long k2) { long i, e = 0, c = 0; #pragma omp parallel for reduction (+:e,c) schedule (static) ordered for (i = k1; i >= j1; --i) { if (i < j2 || i > k2) ++e; #pragma omp ordered ++c; } if (e || (c != j2 > k2 ? 0 : k2 - j2 + 1)) abort (); } void test15 (long j1, long k1, long j2, long k2) { long i, e = 0, c = 0; #pragma omp parallel for reduction (+:e,c) schedule (static, 1) ordered for (i = j1; i <= k1; ++i) { if (i < j2 || i > k2) ++e; #pragma omp ordered ++c; } if (e || (c != j2 > k2 ? 0 : k2 - j2 + 1)) abort (); } void test16 (long j1, long k1, long j2, long k2) { long i, e = 0, c = 0; #pragma omp parallel for reduction (+:e,c) schedule (static, 1) ordered for (i = k1; i >= j1; --i) { if (i < j2 || i > k2) ++e; #pragma omp ordered ++c; } if (e || (c != j2 > k2 ? 0 : k2 - j2 + 1)) abort (); } int __attribute__((noinline)) test (long j1, long k1, long j2, long k2) { test1 (j1, k1, j2, k2); test2 (j1, k1, j2, k2); test3 (j1, k1, j2, k2); test4 (j1, k1, j2, k2); test5 (j1, k1, j2, k2); test6 (j1, k1, j2, k2); test7 (j1, k1, j2, k2); test8 (j1, k1, j2, k2); test9 (j1, k1, j2, k2); test10 (j1, k1, j2, k2); test11 (j1, k1, j2, k2); test12 (j1, k1, j2, k2); test13 (j1, k1, j2, k2); test14 (j1, k1, j2, k2); test15 (j1, k1, j2, k2); test16 (j1, k1, j2, k2); return cnt; } int main (void) { test (1, 5, 1, 5); test (5, 5, 5, 5); test (5, 4, 5, 4); test (5, 1, 5, 1); return 0; } ```
```turing $ dune build Warning: Coq Language Versions lower than 0.8 have been deprecated in Dune 3.8 and will be removed in an upcoming Dune version. Hint: To disable this warning, add the following to your dune-project file: (warnings (deprecated_coq_lang_lt_08 disabled)) $ ls _build/default Datatypes.ml Datatypes.mli extraction my_coq_file.ml my_coq_file.mli my_prog.exe my_prog.ml my_prog.mli $ cat _build/default/Datatypes.ml type bool = | Coq_true | Coq_false $ dune exec -- ./my_prog.exe Warning: Coq Language Versions lower than 0.8 have been deprecated in Dune 3.8 and will be removed in an upcoming Dune version. Hint: To disable this warning, add the following to your dune-project file: (warnings (deprecated_coq_lang_lt_08 disabled)) Result: false ```
```python import functools import gymnasium as gym import logging import importlib.util import os from typing import ( Any, Callable, Collection, Dict, List, Optional, Tuple, Type, TYPE_CHECKING, TypeVar, Union, ) import ray from ray.actor import ActorHandle from ray.exceptions import RayActorError from ray.rllib.core import ( COMPONENT_ENV_TO_MODULE_CONNECTOR, COMPONENT_LEARNER, COMPONENT_MODULE_TO_ENV_CONNECTOR, COMPONENT_RL_MODULE, ) from ray.rllib.core.learner import LearnerGroup from ray.rllib.core.rl_module import validate_module_id from ray.rllib.core.rl_module.rl_module import RLModuleSpec from ray.rllib.evaluation.rollout_worker import RolloutWorker from ray.rllib.utils.actor_manager import RemoteCallResults from ray.rllib.env.base_env import BaseEnv from ray.rllib.env.env_context import EnvContext from ray.rllib.env.env_runner import EnvRunner from ray.rllib.offline import get_dataset_and_shards from ray.rllib.policy.policy import Policy, PolicyState from ray.rllib.utils.actor_manager import FaultTolerantActorManager from ray.rllib.utils.deprecation import ( Deprecated, deprecation_warning, DEPRECATED_VALUE, ) from ray.rllib.utils.framework import try_import_tf from ray.rllib.utils.metrics import NUM_ENV_STEPS_SAMPLED_LIFETIME from ray.rllib.utils.typing import ( AgentID, EnvCreator, EnvType, EpisodeID, PartialAlgorithmConfigDict, PolicyID, SampleBatchType, TensorType, ) from ray.util.annotations import DeveloperAPI if TYPE_CHECKING: from ray.rllib.algorithms.algorithm_config import AlgorithmConfig tf1, tf, tfv = try_import_tf() logger = logging.getLogger(__name__) # Generic type var for foreach_* methods. T = TypeVar("T") @DeveloperAPI class EnvRunnerGroup: """Set of EnvRunners with n @ray.remote workers and zero or one local worker. Where: n >= 0. """ def __init__( self, *, env_creator: Optional[EnvCreator] = None, validate_env: Optional[Callable[[EnvType], None]] = None, default_policy_class: Optional[Type[Policy]] = None, config: Optional["AlgorithmConfig"] = None, num_env_runners: int = 0, local_env_runner: bool = True, logdir: Optional[str] = None, _setup: bool = True, tune_trial_id: Optional[str] = None, # Deprecated args. num_workers=DEPRECATED_VALUE, local_worker=DEPRECATED_VALUE, ): """Initializes a EnvRunnerGroup instance. Args: env_creator: Function that returns env given env config. validate_env: Optional callable to validate the generated environment (only on worker=0). This callable should raise an exception if the environment is invalid. default_policy_class: An optional default Policy class to use inside the (multi-agent) `policies` dict. In case the PolicySpecs in there have no class defined, use this `default_policy_class`. If None, PolicySpecs will be using the Algorithm's default Policy class. config: Optional AlgorithmConfig (or config dict). num_env_runners: Number of remote EnvRunners to create. local_env_runner: Whether to create a local (non @ray.remote) EnvRunner in the returned set as well (default: True). If `num_env_runners` is 0, always create a local EnvRunner. logdir: Optional logging directory for workers. _setup: Whether to actually set up workers. This is only for testing. """ if num_workers != DEPRECATED_VALUE or local_worker != DEPRECATED_VALUE: deprecation_warning( old="WorkerSet(num_workers=... OR local_worker=...)", new="EnvRunnerGroup(num_env_runners=... AND local_env_runner=...)", error=True, ) from ray.rllib.algorithms.algorithm_config import AlgorithmConfig # Make sure `config` is an AlgorithmConfig object. if not config: config = AlgorithmConfig() elif isinstance(config, dict): config = AlgorithmConfig.from_dict(config) self._env_creator = env_creator self._policy_class = default_policy_class self._remote_config = config self._remote_args = { "num_cpus": self._remote_config.num_cpus_per_env_runner, "num_gpus": self._remote_config.num_gpus_per_env_runner, "resources": self._remote_config.custom_resources_per_env_runner, "max_restarts": config.max_num_env_runner_restarts, } self._tune_trial_id = tune_trial_id # Set the EnvRunner subclass to be used as "workers". Default: RolloutWorker. self.env_runner_cls = config.env_runner_cls if self.env_runner_cls is None: if config.enable_env_runner_and_connector_v2: # If experiences should be recorded, use the ` # OfflineSingleAgentEnvRunner`. if config.output: # No multi-agent support. if config.is_multi_agent(): raise ValueError("Multi-agent recording is not supported, yet.") # Otherwise, load the single-agent env runner for # recording. else: from ray.rllib.offline.offline_env_runner import ( OfflineSingleAgentEnvRunner, ) self.env_runner_cls = OfflineSingleAgentEnvRunner else: if config.is_multi_agent(): from ray.rllib.env.multi_agent_env_runner import ( MultiAgentEnvRunner, ) self.env_runner_cls = MultiAgentEnvRunner else: from ray.rllib.env.single_agent_env_runner import ( SingleAgentEnvRunner, ) self.env_runner_cls = SingleAgentEnvRunner else: self.env_runner_cls = RolloutWorker self._cls = ray.remote(**self._remote_args)(self.env_runner_cls).remote self._logdir = logdir self._ignore_env_runner_failures = config.ignore_env_runner_failures # Create remote worker manager. # Note(jungong) : ID 0 is used by the local worker. # Starting remote workers from ID 1 to avoid conflicts. self._worker_manager = FaultTolerantActorManager( max_remote_requests_in_flight_per_actor=( config["max_requests_in_flight_per_sampler_worker"] ), init_id=1, ) if _setup: try: self._setup( validate_env=validate_env, config=config, num_env_runners=num_env_runners, local_env_runner=local_env_runner, ) # EnvRunnerGroup creation possibly fails, if some (remote) workers cannot # be initialized properly (due to some errors in the EnvRunners's # constructor). except RayActorError as e: # In case of an actor (remote worker) init failure, the remote worker # may still exist and will be accessible, however, e.g. calling # its `sample.remote()` would result in strange "property not found" # errors. if e.actor_init_failed: # Raise the original error here that the EnvRunners raised # during its construction process. This is to enforce transparency # for the user (better to understand the real reason behind the # failure). # - e.args[0]: The RayTaskError (inside the caught RayActorError). # - e.args[0].args[2]: The original Exception (e.g. a ValueError due # to a config mismatch) thrown inside the actor. raise e.args[0].args[2] # In any other case, raise the RayActorError as-is. else: raise e def _setup( self, *, validate_env: Optional[Callable[[EnvType], None]] = None, config: Optional["AlgorithmConfig"] = None, num_env_runners: int = 0, local_env_runner: bool = True, ): """Sets up an EnvRunnerGroup instance. Args: validate_env: Optional callable to validate the generated environment (only on worker=0). config: Optional dict that extends the common config of the Algorithm class. num_env_runners: Number of remote EnvRunner workers to create. local_env_runner: Whether to create a local (non @ray.remote) EnvRunner in the returned set as well (default: True). If `num_env_runners` is 0, always create a local EnvRunner. """ # Force a local worker if num_env_runners == 0 (no remote workers). # Otherwise, this EnvRunnerGroup would be empty. self._local_env_runner = None if num_env_runners == 0: local_env_runner = True # Create a local (learner) version of the config for the local worker. # The only difference is the tf_session_args, which - for the local worker - # will be `config.tf_session_args` updated/overridden with # `config.local_tf_session_args`. local_tf_session_args = config.tf_session_args.copy() local_tf_session_args.update(config.local_tf_session_args) self._local_config = config.copy(copy_frozen=False).framework( tf_session_args=local_tf_session_args ) if config.input_ == "dataset": # Create the set of dataset readers to be shared by all the # rollout workers. self._ds, self._ds_shards = get_dataset_and_shards(config, num_env_runners) else: self._ds = None self._ds_shards = None # Create a number of @ray.remote workers. self.add_workers( num_env_runners, validate=config.validate_env_runners_after_construction, ) # If num_env_runners > 0 and we don't have an env on the local worker, # get the observation- and action spaces for each policy from # the first remote worker (which does have an env). if ( local_env_runner and self._worker_manager.num_actors() > 0 and not config.enable_env_runner_and_connector_v2 and not config.create_env_on_local_worker and (not config.observation_space or not config.action_space) ): spaces = self.get_spaces() else: spaces = None # Create a local worker, if needed. if local_env_runner: self._local_env_runner = self._make_worker( cls=self.env_runner_cls, env_creator=self._env_creator, validate_env=validate_env, worker_index=0, num_workers=num_env_runners, config=self._local_config, spaces=spaces, ) def get_spaces(self): """Infer observation and action spaces from one (local or remote) EnvRunner. Returns: A dict mapping from ModuleID to a 2-tuple containing obs- and action-space. """ # Get ID of the first remote worker. remote_worker_ids = ( [self._worker_manager.actor_ids()[0]] if self._worker_manager.actor_ids() else [] ) spaces = self.foreach_worker( lambda env_runner: env_runner.get_spaces(), remote_worker_ids=remote_worker_ids, local_env_runner=not remote_worker_ids, )[0] logger.info( "Inferred observation/action spaces from remote " f"worker (local worker has no env): {spaces}" ) return spaces @property def local_env_runner(self) -> EnvRunner: """Returns the local EnvRunner.""" return self._local_env_runner @DeveloperAPI def healthy_worker_ids(self) -> List[int]: """Returns the list of remote worker IDs.""" return self._worker_manager.healthy_actor_ids() @DeveloperAPI def num_remote_env_runners(self) -> int: """Returns the number of remote EnvRunners.""" return self._worker_manager.num_actors() @DeveloperAPI def num_remote_workers(self) -> int: """Returns the number of remote EnvRunners.""" return self._worker_manager.num_actors() @DeveloperAPI def num_healthy_remote_workers(self) -> int: """Returns the number of healthy remote workers.""" return self._worker_manager.num_healthy_actors() @DeveloperAPI def num_healthy_workers(self) -> int: """Returns the number of all healthy workers, including the local worker.""" return int(bool(self._local_env_runner)) + self.num_healthy_remote_workers() @DeveloperAPI def num_in_flight_async_reqs(self) -> int: """Returns the number of in-flight async requests.""" return self._worker_manager.num_outstanding_async_reqs() @DeveloperAPI def num_remote_worker_restarts(self) -> int: """Total number of times managed remote workers have been restarted.""" return self._worker_manager.total_num_restarts() @DeveloperAPI def sync_env_runner_states( self, *, config: "AlgorithmConfig", from_worker: Optional[EnvRunner] = None, env_steps_sampled: Optional[int] = None, connector_states: Optional[List[Dict[str, Any]]] = None, rl_module_state: Optional[Dict[str, Any]] = None, env_runner_indices_to_update: Optional[List[int]] = None, ) -> None: """Synchronizes the connectors of this EnvRunnerGroup's EnvRunners. The exact procedure works as follows: - If `from_worker` is None, set `from_worker=self.local_env_runner`. - If `config.use_worker_filter_stats` is True, gather all remote EnvRunners' ConnectorV2 states. Otherwise, only use the ConnectorV2 states of `from_worker`. - Merge all gathered states into one resulting state. - Broadcast the resulting state back to all remote EnvRunners AND the local EnvRunner. Args: config: The AlgorithmConfig object to use to determine, in which direction(s) we need to synch and what the timeouts are. from_worker: The EnvRunner from which to synch. If None, will use the local worker of this EnvRunnerGroup. env_steps_sampled: The total number of env steps taken thus far by all workers combined. Used to broadcast this number to all remote workers if `update_worker_filter_stats` is True in `config`. env_runner_indices_to_update: The indices of those EnvRunners to update with the merged state. Use None (default) to update all remote EnvRunners. """ from_worker = from_worker or self.local_env_runner # Early out if the number of (healthy) remote workers is 0. In this case, the # local worker is the only operating worker and thus of course always holds # the reference connector state. if self.num_healthy_remote_workers() == 0: self.local_env_runner.set_state( { **( {NUM_ENV_STEPS_SAMPLED_LIFETIME: env_steps_sampled} if env_steps_sampled is not None else {} ), **( {COMPONENT_RL_MODULE: rl_module_state} if rl_module_state is not None else {} ), } ) return # Also early out, if we a) don't use the remote states AND b) don't want to # broadcast back from `from_worker` to all remote workers. # TODO (sven): Rename these to proper "..env_runner_states.." containing names. if not config.update_worker_filter_stats and not config.use_worker_filter_stats: return # Use states from all remote EnvRunners. if config.use_worker_filter_stats: if connector_states == []: env_runner_states = {} else: if connector_states is None: connector_states = self.foreach_worker( lambda w: w.get_state( components=[ COMPONENT_ENV_TO_MODULE_CONNECTOR, COMPONENT_MODULE_TO_ENV_CONNECTOR, ] ), local_env_runner=False, timeout_seconds=( config.sync_filters_on_rollout_workers_timeout_s ), ) env_to_module_states = [ s[COMPONENT_ENV_TO_MODULE_CONNECTOR] for s in connector_states ] module_to_env_states = [ s[COMPONENT_MODULE_TO_ENV_CONNECTOR] for s in connector_states ] env_runner_states = { COMPONENT_ENV_TO_MODULE_CONNECTOR: ( self.local_env_runner._env_to_module.merge_states( env_to_module_states ) ), COMPONENT_MODULE_TO_ENV_CONNECTOR: ( self.local_env_runner._module_to_env.merge_states( module_to_env_states ) ), } # Ignore states from remote EnvRunners (use the current `from_worker` states # only). else: env_runner_states = from_worker.get_state( components=[ COMPONENT_ENV_TO_MODULE_CONNECTOR, COMPONENT_MODULE_TO_ENV_CONNECTOR, ] ) # Update the global number of environment steps, if necessary. if env_steps_sampled is not None: env_runner_states[NUM_ENV_STEPS_SAMPLED_LIFETIME] = env_steps_sampled # Update the rl_module component of the EnvRunner states, if necessary: if rl_module_state: env_runner_states[COMPONENT_RL_MODULE] = rl_module_state # If we do NOT want remote EnvRunners to get their Connector states updated, # only update the local worker here (with all state components) and then remove # the connector components. if not config.update_worker_filter_stats: self.local_env_runner.set_state(env_runner_states) del env_runner_states[COMPONENT_ENV_TO_MODULE_CONNECTOR] del env_runner_states[COMPONENT_MODULE_TO_ENV_CONNECTOR] # If there are components in the state left -> Update remote workers with these # state components (and maybe the local worker, if it hasn't been updated yet). if env_runner_states: # Put the state dictionary into Ray's object store to avoid having to make n # pickled copies of the state dict. ref_env_runner_states = ray.put(env_runner_states) def _update(_env_runner: EnvRunner) -> None: _env_runner.set_state(ray.get(ref_env_runner_states)) # Broadcast updated states back to all workers. self.foreach_worker( _update, remote_worker_ids=env_runner_indices_to_update, local_env_runner=config.update_worker_filter_stats, timeout_seconds=0.0, # This is a state update -> Fire-and-forget. ) @DeveloperAPI def sync_weights( self, policies: Optional[List[PolicyID]] = None, from_worker_or_learner_group: Optional[Union[EnvRunner, "LearnerGroup"]] = None, to_worker_indices: Optional[List[int]] = None, global_vars: Optional[Dict[str, TensorType]] = None, timeout_seconds: Optional[float] = 0.0, inference_only: Optional[bool] = False, ) -> None: """Syncs model weights from the given weight source to all remote workers. Weight source can be either a (local) rollout worker or a learner_group. It should just implement a `get_weights` method. Args: policies: Optional list of PolicyIDs to sync weights for. If None (default), sync weights to/from all policies. from_worker_or_learner_group: Optional (local) EnvRunner instance or LearnerGroup instance to sync from. If None (default), sync from this EnvRunnerGroup's local worker. to_worker_indices: Optional list of worker indices to sync the weights to. If None (default), sync to all remote workers. global_vars: An optional global vars dict to set this worker to. If None, do not update the global_vars. timeout_seconds: Timeout in seconds to wait for the sync weights calls to complete. Default is 0.0 (fire-and-forget, do not wait for any sync calls to finish). Setting this to 0.0 might significantly improve algorithm performance, depending on the algo's `training_step` logic. inference_only: Sync weights with workers that keep inference-only modules. This is needed for algorithms in the new stack that use inference-only modules. In this case only a part of the parameters are synced to the workers. Default is False. """ if self.local_env_runner is None and from_worker_or_learner_group is None: raise TypeError( "No `local_env_runner` in EnvRunnerGroup! Must provide " "`from_worker_or_learner_group` arg in `sync_weights()`!" ) # Only sync if we have remote workers or `from_worker_or_trainer` is provided. rl_module_state = None if self.num_remote_workers() or from_worker_or_learner_group is not None: weights_src = from_worker_or_learner_group or self.local_env_runner if weights_src is None: raise ValueError( "`from_worker_or_trainer` is None. In this case, EnvRunnerGroup " "should have local_env_runner. But local_env_runner is also None." ) modules = ( [COMPONENT_RL_MODULE + "/" + p for p in policies] if policies is not None else [COMPONENT_RL_MODULE] ) # LearnerGroup has-a Learner has-a RLModule. if isinstance(weights_src, LearnerGroup): rl_module_state = weights_src.get_state( components=[COMPONENT_LEARNER + "/" + m for m in modules], inference_only=inference_only, )[COMPONENT_LEARNER][COMPONENT_RL_MODULE] # EnvRunner has-a RLModule. elif self._remote_config.enable_env_runner_and_connector_v2: rl_module_state = weights_src.get_state( components=modules, inference_only=inference_only, )[COMPONENT_RL_MODULE] else: rl_module_state = weights_src.get_weights( policies=policies, inference_only=inference_only, ) # Move weights to the object store to avoid having to make n pickled copies # of the weights dict for each worker. rl_module_state_ref = ray.put(rl_module_state) if self._remote_config.enable_env_runner_and_connector_v2: def _set_weights(env_runner): _rl_module_state = ray.get(rl_module_state_ref) env_runner.set_state({COMPONENT_RL_MODULE: _rl_module_state}) else: def _set_weights(env_runner): _weights = ray.get(rl_module_state_ref) env_runner.set_weights(_weights, global_vars) # Sync to specified remote workers in this EnvRunnerGroup. self.foreach_worker( func=_set_weights, local_env_runner=False, # Do not sync back to local worker. remote_worker_ids=to_worker_indices, timeout_seconds=timeout_seconds, ) # If `from_worker_or_learner_group` is provided, also sync to this # EnvRunnerGroup's local worker. if self.local_env_runner is not None: if from_worker_or_learner_group is not None: if self._remote_config.enable_env_runner_and_connector_v2: self.local_env_runner.set_state( {COMPONENT_RL_MODULE: rl_module_state} ) else: self.local_env_runner.set_weights(rl_module_state) # If `global_vars` is provided and local worker exists -> Update its # global_vars. if global_vars is not None: self.local_env_runner.set_global_vars(global_vars) @DeveloperAPI def add_policy( self, policy_id: PolicyID, policy_cls: Optional[Type[Policy]] = None, policy: Optional[Policy] = None, *, observation_space: Optional[gym.spaces.Space] = None, action_space: Optional[gym.spaces.Space] = None, config: Optional[Union["AlgorithmConfig", PartialAlgorithmConfigDict]] = None, policy_state: Optional[PolicyState] = None, policy_mapping_fn: Optional[Callable[[AgentID, EpisodeID], PolicyID]] = None, policies_to_train: Optional[ Union[ Collection[PolicyID], Callable[[PolicyID, Optional[SampleBatchType]], bool], ] ] = None, module_spec: Optional[RLModuleSpec] = None, # Deprecated. workers: Optional[List[Union[EnvRunner, ActorHandle]]] = DEPRECATED_VALUE, ) -> None: """Adds a policy to this EnvRunnerGroup's workers or a specific list of workers. Args: policy_id: ID of the policy to add. policy_cls: The Policy class to use for constructing the new Policy. Note: Only one of `policy_cls` or `policy` must be provided. policy: The Policy instance to add to this EnvRunnerGroup. If not None, the given Policy object will be directly inserted into the local worker and clones of that Policy will be created on all remote workers. Note: Only one of `policy_cls` or `policy` must be provided. observation_space: The observation space of the policy to add. If None, try to infer this space from the environment. action_space: The action space of the policy to add. If None, try to infer this space from the environment. config: The config object or overrides for the policy to add. policy_state: Optional state dict to apply to the new policy instance, right after its construction. policy_mapping_fn: An optional (updated) policy mapping function to use from here on. Note that already ongoing episodes will not change their mapping but will use the old mapping till the end of the episode. policies_to_train: An optional list of policy IDs to be trained or a callable taking PolicyID and SampleBatchType and returning a bool (trainable or not?). If None, will keep the existing setup in place. Policies, whose IDs are not in the list (or for which the callable returns False) will not be updated. module_spec: In the new RLModule API we need to pass in the module_spec for the new module that is supposed to be added. Knowing the policy spec is not sufficient. workers: A list of EnvRunner/ActorHandles (remote EnvRunners) to add this policy to. If defined, will only add the given policy to these workers. Raises: KeyError: If the given `policy_id` already exists in this EnvRunnerGroup. """ if self.local_env_runner and policy_id in self.local_env_runner.policy_map: raise KeyError( f"Policy ID '{policy_id}' already exists in policy map! " "Make sure you use a Policy ID that has not been taken yet." " Policy IDs that are already in your policy map: " f"{list(self.local_env_runner.policy_map.keys())}" ) if workers is not DEPRECATED_VALUE: deprecation_warning( old="EnvRunnerGroup.add_policy(.., workers=..)", help=( "The `workers` argument to `EnvRunnerGroup.add_policy()` is " "deprecated! Please do not use it anymore." ), error=True, ) if (policy_cls is None) == (policy is None): raise ValueError( "Only one of `policy_cls` or `policy` must be provided to " "staticmethod: `EnvRunnerGroup.add_policy()`!" ) validate_module_id(policy_id, error=False) # Policy instance not provided: Use the information given here. if policy_cls is not None: new_policy_instance_kwargs = dict( policy_id=policy_id, policy_cls=policy_cls, observation_space=observation_space, action_space=action_space, config=config, policy_state=policy_state, policy_mapping_fn=policy_mapping_fn, policies_to_train=list(policies_to_train) if policies_to_train else None, module_spec=module_spec, ) # Policy instance provided: Create clones of this very policy on the different # workers (copy all its properties here for the calls to add_policy on the # remote workers). else: new_policy_instance_kwargs = dict( policy_id=policy_id, policy_cls=type(policy), observation_space=policy.observation_space, action_space=policy.action_space, config=policy.config, policy_state=policy.get_state(), policy_mapping_fn=policy_mapping_fn, policies_to_train=list(policies_to_train) if policies_to_train else None, module_spec=module_spec, ) def _create_new_policy_fn(worker): # `foreach_worker` function: Adds the policy the the worker (and # maybe changes its policy_mapping_fn - if provided here). worker.add_policy(**new_policy_instance_kwargs) if self.local_env_runner is not None: # Add policy directly by (already instantiated) object. if policy is not None: self.local_env_runner.add_policy( policy_id=policy_id, policy=policy, policy_mapping_fn=policy_mapping_fn, policies_to_train=policies_to_train, module_spec=module_spec, ) # Add policy by constructor kwargs. else: self.local_env_runner.add_policy(**new_policy_instance_kwargs) # Add the policy to all remote workers. self.foreach_worker(_create_new_policy_fn, local_env_runner=False) @DeveloperAPI def add_workers(self, num_workers: int, validate: bool = False) -> None: """Creates and adds a number of remote workers to this worker set. Can be called several times on the same EnvRunnerGroup to add more EnvRunners to the set. Args: num_workers: The number of remote Workers to add to this EnvRunnerGroup. validate: Whether to validate remote workers after their construction process. Raises: RayError: If any of the constructed remote workers is not up and running properly. """ old_num_workers = self._worker_manager.num_actors() new_workers = [ self._make_worker( cls=self._cls, env_creator=self._env_creator, validate_env=None, worker_index=old_num_workers + i + 1, num_workers=old_num_workers + num_workers, config=self._remote_config, ) for i in range(num_workers) ] self._worker_manager.add_actors(new_workers) # Validate here, whether all remote workers have been constructed properly # and are "up and running". Establish initial states. if validate: for result in self._worker_manager.foreach_actor( lambda w: w.assert_healthy() ): # Simiply raise the error, which will get handled by the try-except # clause around the _setup(). if not result.ok: raise result.get() @DeveloperAPI def reset(self, new_remote_workers: List[ActorHandle]) -> None: """Hard overrides the remote EnvRunners in this set with the provided ones. Args: new_remote_workers: A list of new EnvRunners (as `ActorHandles`) to use as new remote workers. """ self._worker_manager.clear() self._worker_manager.add_actors(new_remote_workers) @DeveloperAPI def stop(self) -> None: """Calls `stop` on all rollout workers (including the local one).""" try: # Make sure we stop all workers, include the ones that were just # restarted / recovered or that are tagged unhealthy (at least, we should # try). self.foreach_worker( lambda w: w.stop(), healthy_only=False, local_env_runner=True ) except Exception: logger.exception("Failed to stop workers!") finally: self._worker_manager.clear() @DeveloperAPI def is_policy_to_train( self, policy_id: PolicyID, batch: Optional[SampleBatchType] = None ) -> bool: """Whether given PolicyID (optionally inside some batch) is trainable.""" if self.local_env_runner: if self.local_env_runner.is_policy_to_train is None: return True return self.local_env_runner.is_policy_to_train(policy_id, batch) else: raise NotImplementedError @DeveloperAPI def foreach_worker( self, func: Callable[[EnvRunner], T], *, local_env_runner: bool = True, healthy_only: bool = True, remote_worker_ids: List[int] = None, timeout_seconds: Optional[float] = None, return_obj_refs: bool = False, mark_healthy: bool = False, # Deprecated args. local_worker=DEPRECATED_VALUE, ) -> List[T]: """Calls the given function with each EnvRunner as its argument. Args: func: The function to call for each worker (as only arg). local_env_runner: Whether to apply `func` to local EnvRunner, too. Default is True. healthy_only: Apply `func` on known-to-be healthy workers only. remote_worker_ids: Apply `func` on a selected set of remote workers. Use None (default) for all remote EnvRunners. timeout_seconds: Time to wait (in seconds) for results. Set this to 0.0 for fire-and-forget. Set this to None (default) to wait infinitely (i.e. for synchronous execution). return_obj_refs: whether to return ObjectRef instead of actual results. Note, for fault tolerance reasons, these returned ObjectRefs should never be resolved with ray.get() outside of this WorkerSet. mark_healthy: Whether to mark all those workers healthy again that are currently marked unhealthy AND that returned results from the remote call (within the given `timeout_seconds`). Note that workers are NOT set unhealthy, if they simply time out (only if they return a RayActorError). Also note that this setting is ignored if `healthy_only=True` (b/c `mark_healthy` only affects workers that are currently tagged as unhealthy). Returns: The list of return values of all calls to `func([worker])`. """ if local_worker != DEPRECATED_VALUE: deprecation_warning( old="foreach_worker(local_worker=..)", new="foreach_worker(local_env_runner=..)", error=True, ) assert ( not return_obj_refs or not local_env_runner ), "Can not return ObjectRef from local worker." local_result = [] if local_env_runner and self.local_env_runner is not None: local_result = [func(self.local_env_runner)] if not self._worker_manager.actor_ids(): return local_result remote_results = self._worker_manager.foreach_actor( func, healthy_only=healthy_only, remote_actor_ids=remote_worker_ids, timeout_seconds=timeout_seconds, return_obj_refs=return_obj_refs, mark_healthy=mark_healthy, ) _handle_remote_call_result_errors( remote_results, self._ignore_env_runner_failures ) # With application errors handled, return good results. remote_results = [r.get() for r in remote_results.ignore_errors()] return local_result + remote_results @DeveloperAPI def foreach_worker_with_id( self, func: Callable[[int, EnvRunner], T], *, local_env_runner: bool = True, healthy_only: bool = True, remote_worker_ids: List[int] = None, timeout_seconds: Optional[float] = None, return_obj_refs: bool = False, mark_healthy: bool = False, # Deprecated args. local_worker=DEPRECATED_VALUE, ) -> List[T]: """Calls the given function with each EnvRunner and its ID as its arguments. Args: func: The function to call for each worker (as only arg). local_env_runner: Whether to apply `func` tn local worker, too. Default is True. healthy_only: Apply `func` on known-to-be healthy workers only. remote_worker_ids: Apply `func` on a selected set of remote workers. timeout_seconds: Time to wait for results. Default is None. return_obj_refs: whether to return ObjectRef instead of actual results. Note, for fault tolerance reasons, these returned ObjectRefs should never be resolved with ray.get() outside of this WorkerSet. mark_healthy: Whether to mark all those workers healthy again that are currently marked unhealthy AND that returned results from the remote call (within the given `timeout_seconds`). Note that workers are NOT set unhealthy, if they simply time out (only if they return a RayActorError). Also note that this setting is ignored if `healthy_only=True` (b/c `mark_healthy` only affects workers that are currently tagged as unhealthy). Returns: The list of return values of all calls to `func([worker, id])`. """ if local_worker != DEPRECATED_VALUE: deprecation_warning( old="foreach_worker_with_id(local_worker=...)", new="foreach_worker_with_id(local_env_runner=...)", error=True, ) local_result = [] if local_env_runner and self.local_env_runner is not None: local_result = [func(0, self.local_env_runner)] if not remote_worker_ids: remote_worker_ids = self._worker_manager.actor_ids() funcs = [functools.partial(func, i) for i in remote_worker_ids] remote_results = self._worker_manager.foreach_actor( funcs, healthy_only=healthy_only, remote_actor_ids=remote_worker_ids, timeout_seconds=timeout_seconds, return_obj_refs=return_obj_refs, mark_healthy=mark_healthy, ) _handle_remote_call_result_errors( remote_results, self._ignore_env_runner_failures ) remote_results = [r.get() for r in remote_results.ignore_errors()] return local_result + remote_results @DeveloperAPI def foreach_worker_async( self, func: Callable[[EnvRunner], T], *, healthy_only: bool = True, remote_worker_ids: List[int] = None, ) -> int: """Calls the given function asynchronously with each worker as the argument. foreach_worker_async() does not return results directly. Instead, fetch_ready_async_reqs() can be used to pull results in an async manner whenever they are available. Args: func: The function to call for each worker (as only arg). healthy_only: Apply `func` on known-to-be healthy workers only. remote_worker_ids: Apply `func` on a selected set of remote workers. Returns: The number of async requests that have actually been made. This is the length of `remote_worker_ids` (or self.num_remote_workers()` if `remote_worker_ids` is None) minus the number of requests that were NOT made b/c a remote worker already had its `max_remote_requests_in_flight_per_actor` counter reached. """ return self._worker_manager.foreach_actor_async( func, healthy_only=healthy_only, remote_actor_ids=remote_worker_ids, ) @DeveloperAPI def fetch_ready_async_reqs( self, *, timeout_seconds: Optional[float] = 0.0, return_obj_refs: bool = False, mark_healthy: bool = True, ) -> List[Tuple[int, T]]: """Get esults from outstanding asynchronous requests that are ready. Args: timeout_seconds: Time to wait for results. Default is 0, meaning those requests that are already ready. return_obj_refs: Whether to return ObjectRef instead of actual results. mark_healthy: Whether to mark all those workers healthy again that are currently marked unhealthy AND that returned results from the remote call (within the given `timeout_seconds`). Note that workers are NOT set unhealthy, if they simply time out (only if they return a RayActorError). Also note that this setting is ignored if `healthy_only=True` (b/c `mark_healthy` only affects workers that are currently tagged as unhealthy). Returns: A list of results successfully returned from outstanding remote calls, paired with the indices of the callee workers. """ remote_results = self._worker_manager.fetch_ready_async_reqs( timeout_seconds=timeout_seconds, return_obj_refs=return_obj_refs, mark_healthy=mark_healthy, ) _handle_remote_call_result_errors( remote_results, self._ignore_env_runner_failures ) return [(r.actor_id, r.get()) for r in remote_results.ignore_errors()] @DeveloperAPI def foreach_policy(self, func: Callable[[Policy, PolicyID], T]) -> List[T]: """Calls `func` with each worker's (policy, PolicyID) tuple. Note that in the multi-agent case, each worker may have more than one policy. Args: func: A function - taking a Policy and its ID - that is called on all workers' Policies. Returns: The list of return values of func over all workers' policies. The length of this list is: (num_workers + 1 (local-worker)) * [num policies in the multi-agent config dict]. The local workers' results are first, followed by all remote workers' results """ results = [] for r in self.foreach_worker( lambda w: w.foreach_policy(func), local_env_runner=True ): results.extend(r) return results @DeveloperAPI def foreach_policy_to_train(self, func: Callable[[Policy, PolicyID], T]) -> List[T]: """Apply `func` to all workers' Policies iff in `policies_to_train`. Args: func: A function - taking a Policy and its ID - that is called on all workers' Policies, for which `worker.is_policy_to_train()` returns True. Returns: List[any]: The list of n return values of all `func([trainable policy], [ID])`-calls. """ results = [] for r in self.foreach_worker( lambda w: w.foreach_policy_to_train(func), local_env_runner=True ): results.extend(r) return results @DeveloperAPI def foreach_env(self, func: Callable[[EnvType], List[T]]) -> List[List[T]]: """Calls `func` with all workers' sub-environments as args. An "underlying sub environment" is a single clone of an env within a vectorized environment. `func` takes a single underlying sub environment as arg, e.g. a gym.Env object. Args: func: A function - taking an EnvType (normally a gym.Env object) as arg and returning a list of lists of return values, one value per underlying sub-environment per each worker. Returns: The list (workers) of lists (sub environments) of results. """ return list( self.foreach_worker( lambda w: w.foreach_env(func), local_env_runner=True, ) ) @DeveloperAPI def foreach_env_with_context( self, func: Callable[[BaseEnv, EnvContext], List[T]] ) -> List[List[T]]: """Calls `func` with all workers' sub-environments and env_ctx as args. An "underlying sub environment" is a single clone of an env within a vectorized environment. `func` takes a single underlying sub environment and the env_context as args. Args: func: A function - taking a BaseEnv object and an EnvContext as arg - and returning a list of lists of return values over envs of the worker. Returns: The list (1 item per workers) of lists (1 item per sub-environment) of results. """ return list( self.foreach_worker( lambda w: w.foreach_env_with_context(func), local_env_runner=True, ) ) @DeveloperAPI def probe_unhealthy_workers(self) -> List[int]: """Checks for unhealthy workers and tries restoring their states. Returns: List of IDs of the workers that were restored. """ return self._worker_manager.probe_unhealthy_actors( timeout_seconds=self._remote_config.env_runner_health_probe_timeout_s, mark_healthy=True, ) def _make_worker( self, *, cls: Callable, env_creator: EnvCreator, validate_env: Optional[Callable[[EnvType], None]], worker_index: int, num_workers: int, recreated_worker: bool = False, config: "AlgorithmConfig", spaces: Optional[ Dict[PolicyID, Tuple[gym.spaces.Space, gym.spaces.Space]] ] = None, ) -> Union[EnvRunner, ActorHandle]: worker = cls( env_creator=env_creator, validate_env=validate_env, default_policy_class=self._policy_class, config=config, worker_index=worker_index, num_workers=num_workers, recreated_worker=recreated_worker, log_dir=self._logdir, spaces=spaces, dataset_shards=self._ds_shards, tune_trial_id=self._tune_trial_id, ) return worker @classmethod def _valid_module(cls, class_path): del cls if ( isinstance(class_path, str) and not os.path.isfile(class_path) and "." in class_path ): module_path, class_name = class_path.rsplit(".", 1) try: spec = importlib.util.find_spec(module_path) if spec is not None: return True except (ModuleNotFoundError, ValueError): print( f"module {module_path} not found while trying to get " f"input {class_path}" ) return False @Deprecated(new="EnvRunnerGroup.local_env_runner", error=False) def local_worker(self) -> EnvRunner: return self._local_env_runner @Deprecated(new="EnvRunnerGroup.foreach_policy_to_train", error=True) def foreach_trainable_policy(self, func): pass @property @Deprecated( old="_remote_workers", new="Use either the `foreach_worker()`, `foreach_worker_with_id()`, or " "`foreach_worker_async()` APIs of `EnvRunnerGroup`, which all handle fault " "tolerance.", error=False, ) def _remote_workers(self) -> List[ActorHandle]: return list(self._worker_manager.actors().values()) @Deprecated( old="remote_workers()", new="Use either the `foreach_worker()`, `foreach_worker_with_id()`, or " "`foreach_worker_async()` APIs of `EnvRunnerGroup`, which all handle fault " "tolerance.", error=False, ) def remote_workers(self) -> List[ActorHandle]: return list(self._worker_manager.actors().values()) def _handle_remote_call_result_errors( results: RemoteCallResults, ignore_env_runner_failures: bool, ) -> None: """Checks given results for application errors and raises them if necessary. Args: results: The results to check. """ for r in results.ignore_ray_errors(): if r.ok: continue if ignore_env_runner_failures: logger.exception(r.get()) else: raise r.get() ```
```shell #!/usr/bin/env bash set -e # Router_check_tool binary path PATH_BIN="${TEST_SRCDIR}/envoy"/test/tools/router_check/router_check_tool # Config json path PATH_CONFIG="${TEST_SRCDIR}/envoy"/test/tools/router_check/test/config TESTS=("ContentType" "ClusterHeader" "DirectResponse" "HeaderMatchedRouting" "Redirect" "Redirect2" "Redirect3" "Redirect4" "Runtime" "TestRoutes" "Weighted") # Testing expected matches for t in "${TESTS[@]}" do "${PATH_BIN}" "-c" "${PATH_CONFIG}/${t}.yaml" "-t" "${PATH_CONFIG}/${t}.golden.proto.json" "--details" done # Testing coverage flag passes COVERAGE_CMD="${PATH_BIN} -c ${PATH_CONFIG}/Redirect.yaml -t ${PATH_CONFIG}/Redirect.golden.proto.json --details -f " COVERAGE_OUTPUT=$($COVERAGE_CMD "1.0" 2>&1) || echo "${COVERAGE_OUTPUT:-no-output}" if [[ "${COVERAGE_OUTPUT}" != *"Current route coverage: "* ]] ; then exit 1 fi COMP_COVERAGE_CMD="${PATH_BIN} -c ${PATH_CONFIG}/ComprehensiveRoutes.yaml -t ${PATH_CONFIG}/ComprehensiveRoutes.golden.proto.json --details -f " COVERAGE_OUTPUT=$($COMP_COVERAGE_CMD "100" "--covall" 2>&1) || echo "${COVERAGE_OUTPUT:-no-output}" if [[ "${COVERAGE_OUTPUT}" != *"Current route coverage: 100%"* ]] ; then exit 1 fi DIRECT_RESPONSE_COVERAGE_CMD="${PATH_BIN} -c ${PATH_CONFIG}/DirectResponse.yaml -t ${PATH_CONFIG}/DirectResponse.golden.proto.json --details -f " COVERAGE_OUTPUT=$($DIRECT_RESPONSE_COVERAGE_CMD "100" "--covall" 2>&1) || echo "${DIRECT_RESPONSE_COVERAGE_CMD:-no-output}" if [[ "${COVERAGE_OUTPUT}" != *"Current route coverage: 100%"* ]] ; then exit 1 fi RUNTIME_COVERAGE_OUTPUT=$("${PATH_BIN}" "-c" "${PATH_CONFIG}/Runtime.yaml" "-t" "${PATH_CONFIG}/Runtime.golden.proto.json" "--details" "--covall" 2>&1) || echo "${RUNTIME_COVERAGE_OUTPUT:-no-output}" if [[ "${RUNTIME_COVERAGE_OUTPUT}" != *"Current route coverage: 100%"* ]] ; then exit 1 fi # Testing coverage flag fails COVERAGE_OUTPUT=$($COVERAGE_CMD "100" 2>&1) || echo "${COVERAGE_OUTPUT:-no-output}" if [[ "${COVERAGE_OUTPUT}" != *"Failed to meet coverage requirement: 100%"* ]] ; then exit 1 fi # Test the yaml test file support "${PATH_BIN}" "-c" "${PATH_CONFIG}/Weighted.yaml" "-t" "${PATH_CONFIG}/Weighted.golden.proto.yaml" "--details" # Test the proto text test file support "${PATH_BIN}" "-c" "${PATH_CONFIG}/Weighted.yaml" "-t" "${PATH_CONFIG}/Weighted.golden.proto.pb_text" "--details" # Bad config file echo "testing bad config output" BAD_CONFIG_OUTPUT=$("${PATH_BIN}" "-c" "${PATH_CONFIG}/Redirect.golden.proto.json" "-t" "${PATH_CONFIG}/TestRoutes.yaml" 2>&1) || echo "${BAD_CONFIG_OUTPUT:-no-output}" if ! [[ "${BAD_CONFIG_OUTPUT}" =~ .*INVALID_ARGUMENT.*envoy.config.route.v3.RouteConfiguration.*tests.* ]]; then exit 1 fi # Failure output flag test cases echo "testing failure test cases" # Failure test case with only details flag set FAILURE_OUTPUT=$("${PATH_BIN}" "-c" "${PATH_CONFIG}/TestRoutes.yaml" "-t" "${PATH_CONFIG}/Weighted.golden.proto.json" "--details" 2>&1) || echo "${FAILURE_OUTPUT:-no-output}" if [[ "${FAILURE_OUTPUT}" != *"Test_1"*"Test_2"*"expected: [cluster1], actual: [instant-server], test type: cluster_name"*"expected: [test_virtual_cluster], actual: [other], test type: virtual_cluster_name"*"Test_3"* ]]; then exit 1 fi # Failure test case with details flag set and failures flag set FAILURE_OUTPUT=$("${PATH_BIN}" "-c" "${PATH_CONFIG}/TestRoutes.yaml" "-t" "${PATH_CONFIG}/Weighted.golden.proto.json" "--details" "--only-show-failures" 2>&1) || echo "${FAILURE_OUTPUT:-no-output}" if [[ "${FAILURE_OUTPUT}" != *"Test_2"*"expected: [cluster1], actual: [instant-server], test type: cluster_name"* ]] || [[ "${FAILURE_OUTPUT}" == *"Test_1"* ]]; then exit 1 fi # Failure test case with details flag unset and failures flag set FAILURE_OUTPUT=$("${PATH_BIN}" "-c" "${PATH_CONFIG}/TestRoutes.yaml" "-t" "${PATH_CONFIG}/Weighted.golden.proto.json" "--only-show-failures" 2>&1) || echo "${FAILURE_OUTPUT:-no-output}" if [[ "${FAILURE_OUTPUT}" != *"Test_2"*"expected: [cluster1], actual: [instant-server], test type: cluster_name"* ]] || [[ "${FAILURE_OUTPUT}" == *"Test_1"* ]]; then exit 1 fi # Failure test case to examine error strings echo "testing error strings" FAILURE_OUTPUT=$("${PATH_BIN}" "-c" "${PATH_CONFIG}/TestRoutes.yaml" "-t" "${PATH_CONFIG}/TestRoutesFailures.golden.proto.json" "--only-show-failures" 2>&1) || echo "${FAILURE_OUTPUT:-no-output}" if ! echo "${FAILURE_OUTPUT}" | grep -Fxq "expected: [content-type: text/plain], actual: NOT [content-type: text/plain], test type: response_header_matches.string_match.exact"; then exit 1 fi if ! echo "${FAILURE_OUTPUT}" | grep -Fxq "actual: [content-length: 25], test type: response_header_matches.range_match"; then exit 1 fi if ! echo "${FAILURE_OUTPUT}" | grep -Fxq "expected: [x-ping-response: pong], actual: [x-ping-response: yes], test type: response_header_matches.string_match.exact"; then exit 1 fi if ! echo "${FAILURE_OUTPUT}" | grep -Fxq "expected: [has(x-ping-response):false], actual: [has(x-ping-response):true], test type: response_header_matches.present_match"; then exit 1 fi if ! echo "${FAILURE_OUTPUT}" | grep -Fxq "expected: [has(x-pong-response):true], actual: [has(x-pong-response):false], test type: response_header_matches.present_match"; then exit 1 fi # Missing test results echo "testing missing tests output test cases" MISSING_OUTPUT=$("${PATH_BIN}" "-c" "${PATH_CONFIG}/TestRoutes.yaml" "-t" "${PATH_CONFIG}/TestRoutes.golden.proto.json" "--details" "--covall" 2>&1) || echo "${MISSING_OUTPUT:-no-output}" if [[ "${MISSING_OUTPUT}" != *"Missing test for host: www2_staging, route: prefix: \"/\""*"Missing test for host: default, route: prefix: \"/api/application_data\""* ]]; then exit 1 fi # Detaied coverage flag echo "test report should contain missing tests with detailed coverage flag" MISSING_OUTPUT=$("${PATH_BIN}" "-c" "${PATH_CONFIG}/DetailedCoverage.yaml" "-t" "${PATH_CONFIG}/DetailedCoverage.golden.proto.json" "--detailed-coverage" 2>&1) || echo "${MISSING_OUTPUT:-no-output}" if ! echo "${MISSING_OUTPUT}" | grep -qE "Missing test for host: localhost, route name: new_endpoint2-.+"; then exit 1 fi if ! echo "${MISSING_OUTPUT}" | grep -qE "Missing test for host: localhost, route name: -.+"; then exit 1 fi echo "test report shoud not contain missing tests without detailed coverage flag" MISSING_OUTPUT=$("${PATH_BIN}" "-c" "${PATH_CONFIG}/DetailedCoverage.yaml" "-t" "${PATH_CONFIG}/DetailedCoverage.golden.proto.json" 2>&1) || echo "${MISSING_OUTPUT:-no-output}" if echo "${MISSING_OUTPUT}" | grep -qE "Missing test for host:.+"; then exit 1 fi # Correctness of route coverage for weighted clusters echo "route coverage should be calculated correctly for weighted clusters" MISSING_OUTPUT=$("${PATH_BIN}" "-c" "${PATH_CONFIG}/Weighted.yaml" "-t" "${PATH_CONFIG}/Weighted.golden.proto.json" "--details" 2>&1) || echo "${MISSING_OUTPUT:-no-output}" if ! echo "${MISSING_OUTPUT}" | grep -Fxq "Current route coverage: 100%"; then echo "${MISSING_OUTPUT:-no-output}" exit 1 fi ```
```cuda // // // path_to_url // // Unless required by applicable law or agreed to in writing, software // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. #include "paddle/phi/kernels/l1_norm_kernel.h" #include "paddle/phi/kernels/funcs/eigen/common.h" #include "paddle/phi/kernels/funcs/eigen/eigen_function.h" namespace phi { // Out = sum(abs(X)) template <typename T, typename Context> void L1NormKernel(const Context& dev_ctx, const DenseTensor& x, DenseTensor* out) { dev_ctx.template Alloc<T>(out); auto x_tmp = phi::EigenVector<T>::Flatten(x); auto out_tmp = phi::EigenScalar<T>::From(*out); auto& dev = *dev_ctx.eigen_device(); phi::funcs::EigenL1Norm<std::decay_t<decltype(dev)>, T>::Eval( dev, out_tmp, x_tmp); } // dX = dout * sign(X) template <typename T, typename Context> void L1NormGradKernel(const Context& dev_ctx, const DenseTensor& x, const DenseTensor& out_grad, DenseTensor* x_grad) { PADDLE_ENFORCE_EQ(out_grad.numel(), 1, common::errors::InvalidArgument( "Input(GRAD@Out) of L1NormGradOp should be a scalar.")); dev_ctx.template Alloc<T>(x_grad); auto x_eigen = phi::EigenVector<T>::Flatten(x); auto d_out_eigen = phi::EigenVector<T>::Flatten(out_grad); auto dx_eigen = phi::EigenVector<T>::Flatten(*x_grad); auto& dev = *dev_ctx.eigen_device(); Eigen::DSizes<Eigen::DenseIndex, 1> x_dsize(x.numel()); phi::funcs::EigenL1NormGrad<std::decay_t<decltype(dev)>, T>::Eval( dev, dx_eigen, d_out_eigen, x_eigen, x_dsize); } } // namespace phi PD_REGISTER_KERNEL(l1_norm, GPU, ALL_LAYOUT, phi::L1NormKernel, float) {} ```
```xml <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "path_to_url"> <plist version="1.0"> <dict> <key>12</key> <string>Q</string> <key>13</key> <string>W</string> <key>14</key> <string>E</string> <key>15</key> <string>R</string> <key>17</key> <string>T</string> <key>16</key> <string>Y</string> <key>32</key> <string>U</string> <key>34</key> <string>I</string> <key>31</key> <string>O</string> <key>35</key> <string>P</string> <key>0</key> <string>A</string> <key>1</key> <string>S</string> <key>2</key> <string>D</string> <key>3</key> <string>F</string> <key>5</key> <string>G</string> <key>4</key> <string>H</string> <key>38</key> <string>J</string> <key>40</key> <string>K</string> <key>37</key> <string>L</string> <key>6</key> <string>Z</string> <key>7</key> <string>X</string> <key>8</key> <string>C</string> <key>9</key> <string>V</string> <key>11</key> <string>B</string> <key>45</key> <string>N</string> <key>46</key> <string>M</string> <key>18</key> <string>1</string> <key>19</key> <string>2</string> <key>20</key> <string>3</string> <key>21</key> <string>4</string> <key>23</key> <string>5</string> <key>22</key> <string>6</string> <key>26</key> <string>7</string> <key>28</key> <string>8</string> <key>25</key> <string>9</string> <key>29</key> <string>0</string> <key>122</key> <string>F1</string> <key>120</key> <string>F2</string> <key>99</key> <string>F3</string> <key>118</key> <string>F4</string> <key>96</key> <string>F5</string> <key>97</key> <string>F6</string> <key>98</key> <string>F7</string> <key>100</key> <string>F8</string> <key>101</key> <string>F9</string> <key>109</key> <string>F10</string> <key>103</key> <string>F11</string> <key>111</key> <string>F12</string> <key>105</key> <string>F13</string> <key>107</key> <string>F14</string> <key>113</key> <string>F15</string> <key>106</key> <string>F16</string> <key>64</key> <string>F17</string> <key>79</key> <string>F18</string> <key>80</key> <string>F19</string> <key>50</key> <string>` (Accent)</string> <key>27</key> <string>- (Dash)</string> <key>24</key> <string>=</string> <key>51</key> <string>Delete (Backspace)</string> <key>48</key> <string>Tab</string> <key>33</key> <string>[</string> <key>30</key> <string>]</string> <key>42</key> <string>\</string> <key>41</key> <string>; (Semicolon)</string> <key>39</key> <string>&apos; (Quote)</string> <key>36</key> <string>Return</string> <key>43</key> <string>, (Comma)</string> <key>47</key> <string>. (Period)</string> <key>44</key> <string>/</string> <key>49</key> <string>Space</string> <key>115</key> <string>Home</string> <key>119</key> <string>End</string> <key>116</key> <string>Page Up</string> <key>121</key> <string>Page Down</string> <key>117</key> <string>Forward Delete</string> <key>126</key> <string>Up Arrow</string> <key>125</key> <string>Down Arrow</string> <key>123</key> <string>Left Arrow</string> <key>124</key> <string>Right Arrow</string> <key>82</key> <string>NumPad 0</string> <key>83</key> <string>NumPad 1</string> <key>84</key> <string>NumPad 2</string> <key>85</key> <string>NumPad 3</string> <key>86</key> <string>NumPad 4</string> <key>87</key> <string>NumPad 5</string> <key>88</key> <string>NumPad 6</string> <key>89</key> <string>NumPad 7</string> <key>91</key> <string>NumPad 8</string> <key>92</key> <string>NumPad 9</string> <key>71</key> <string>NumPad Clear</string> <key>81</key> <string>NumPad =</string> <key>75</key> <string>NumPad /</string> <key>67</key> <string>NumPad *</string> <key>78</key> <string>NumPad -</string> <key>69</key> <string>NumPad +</string> <key>65</key> <string>NumPad .</string> <key>76</key> <string>NumPad Enter</string> <key>53</key> <string>Escape</string> </dict> </plist> ```
```go package imdb import ( "fmt" "net/url" "github.com/zquestz/s/providers" ) func init() { providers.AddProvider("imdb", &Provider{}) } // Provider merely implements the Provider interface. type Provider struct{} // BuildURI generates a search URL for IMDB. func (p *Provider) BuildURI(q string) string { return fmt.Sprintf("path_to_url", url.QueryEscape(q)) } // Tags returns the tags relevant to this provider. func (p *Provider) Tags() []string { return []string{"movies"} } ```
```javascript (function(){function o(n){var i=e;n&&(e[n]||(e[n]={}),i=e[n]);if(!i.define||!i.define.packaged)t.original=i.define,i.define=t,i.define.packaged=!0;if(!i.require||!i.require.packaged)r.original=i.require,i.require=r,i.require.packaged=!0}var ACE_NAMESPACE="",e=function(){return this}();!e&&typeof window!="undefined"&&(e=window);if(!ACE_NAMESPACE&&typeof requirejs!="undefined")return;var t=function(e,n,r){if(typeof e!="string"){t.original?t.original.apply(this,arguments):(console.error("dropping module because define wasn't a string."),console.trace());return}arguments.length==2&&(r=n),t.modules[e]||(t.payloads[e]=r,t.modules[e]=null)};t.modules={},t.payloads={};var n=function(e,t,n){if(typeof t=="string"){var i=s(e,t);if(i!=undefined)return n&&n(),i}else if(Object.prototype.toString.call(t)==="[object Array]"){var o=[];for(var u=0,a=t.length;u<a;++u){var f=s(e,t[u]);if(f==undefined&&r.original)return;o.push(f)}return n&&n.apply(null,o)||!0}},r=function(e,t){var i=n("",e,t);return i==undefined&&r.original?r.original.apply(this,arguments):i},i=function(e,t){if(t.indexOf("!")!==-1){var n=t.split("!");return i(e,n[0])+"!"+i(e,n[1])}if(t.charAt(0)=="."){var r=e.split("/").slice(0,-1).join("/");t=r+"/"+t;while(t.indexOf(".")!==-1&&s!=t){var s=t;t=t.replace(/\/\.\//,"/").replace(/[^\/]+\/\.\.\//,"")}}return t},s=function(e,r){r=i(e,r);var s=t.modules[r];if(!s){s=t.payloads[r];if(typeof s=="function"){var o={},u={id:r,uri:"",exports:o,packaged:!0},a=function(e,t){return n(r,e,t)},f=s(a,o,u);o=f||u.exports,t.modules[r]=o,delete t.payloads[r]}s=t.modules[r]=o||s}return s};o(ACE_NAMESPACE)})(),define("ace/lib/es6-shim",["require","exports","module"],function(e,t,n){function r(e,t,n){Object.defineProperty(e,t,{value:n,enumerable:!1,writable:!0,configurable:!0})}String.prototype.startsWith||r(String.prototype,"startsWith",function(e,t){return t=t||0,this.lastIndexOf(e,t)===t}),String.prototype.endsWith||r(String.prototype,"endsWith",function(e,t){var n=this;if(t===undefined||t>n.length)t=n.length;t-=e.length;var r=n.indexOf(e,t);return r!==-1&&r===t}),String.prototype.repeat||r(String.prototype,"repeat",function(e){var t="",n=this;while(e>0){e&1&&(t+=n);if(e>>=1)n+=n}return t}),String.prototype.includes||r(String.prototype,"includes",function(e,t){return this.indexOf(e,t)!=-1}),Object.assign||(Object.assign=function(e){if(e===undefined||e===null)throw new TypeError("Cannot convert undefined or null to object");var t=Object(e);for(var n=1;n<arguments.length;n++){var r=arguments[n];r!==undefined&&r!==null&&Object.keys(r).forEach(function(e){t[e]=r[e]})}return t}),Object.values||(Object.values=function(e){return Object.keys(e).map(function(t){return e[t]})}),Array.prototype.find||r(Array.prototype,"find",function(e){var t=this.length,n=arguments[1];for(var r=0;r<t;r++){var i=this[r];if(e.call(n,i,r,this))return i}}),Array.prototype.findIndex||r(Array.prototype,"findIndex",function(e){var t=this.length,n=arguments[1];for(var r=0;r<t;r++){var i=this[r];if(e.call(n,i,r,this))return r}}),Array.prototype.includes||r(Array.prototype,"includes",function(e,t){return this.indexOf(e,t)!=-1}),Array.prototype.fill||r(Array.prototype,"fill",function(e){var t=this,n=t.length>>>0,r=arguments[1],i=r>>0,s=i<0?Math.max(n+i,0):Math.min(i,n),o=arguments[2],u=o===undefined?n:o>>0,a=u<0?Math.max(n+u,0):Math.min(u,n);while(s<a)t[s]=e,s++;return t}),Array.of||r(Array,"of",function(){return Array.prototype.slice.call(arguments)})}),define("ace/lib/fixoldbrowsers",["require","exports","module","ace/lib/es6-shim"],function(e,t,n){"use strict";e("./es6-shim")}),define("ace/lib/deep_copy",["require","exports","module"],function(e,t,n){t.deepCopy=function r(e){if(typeof e!="object"||!e)return e;var t;if(Array.isArray(e)){t=[];for(var n=0;n<e.length;n++)t[n]=r(e[n]);return t}if(Object.prototype.toString.call(e)!=="[object Object]")return e;t={};for(var n in e)t[n]=r(e[n]);return t}}),define("ace/lib/lang",["require","exports","module","ace/lib/deep_copy"],function(e,t,n){"use strict";t.last=function(e){return e[e.length-1]},t.stringReverse=function(e){return e.split("").reverse().join("")},t.stringRepeat=function(e,t){var n="";while(t>0){t&1&&(n+=e);if(t>>=1)e+=e}return n};var r=/^\s\s*/,i=/\s\s*$/;t.stringTrimLeft=function(e){return e.replace(r,"")},t.stringTrimRight=function(e){return e.replace(i,"")},t.copyObject=function(e){var t={};for(var n in e)t[n]=e[n];return t},t.copyArray=function(e){var t=[];for(var n=0,r=e.length;n<r;n++)e[n]&&typeof e[n]=="object"?t[n]=this.copyObject(e[n]):t[n]=e[n];return t},t.deepCopy=e("./deep_copy").deepCopy,t.arrayToMap=function(e){var t={};for(var n=0;n<e.length;n++)t[e[n]]=1;return t},t.createMap=function(e){var t=Object.create(null);for(var n in e)t[n]=e[n];return t},t.arrayRemove=function(e,t){for(var n=0;n<=e.length;n++)t===e[n]&&e.splice(n,1)},t.escapeRegExp=function(e){return e.replace(/([.*+?^${}()|[\]\/\\])/g,"\\$1")},t.escapeHTML=function(e){return(""+e).replace(/&/g,"&#38;").replace(/"/g,"&#34;").replace(/'/g,"&#39;").replace(/</g,"&#60;")},t.getMatchOffsets=function(e,t){var n=[];return e.replace(t,function(e){n.push({offset:arguments[arguments.length-2],length:e.length})}),n},t.deferredCall=function(e){var t=null,n=function(){t=null,e()},r=function(e){return r.cancel(),t=setTimeout(n,e||0),r};return r.schedule=r,r.call=function(){return this.cancel(),e(),r},r.cancel=function(){return clearTimeout(t),t=null,r},r.isPending=function(){return t},r},t.delayedCall=function(e,t){var n=null,r=function(){n=null,e()},i=function(e){n==null&&(n=setTimeout(r,e||t))};return i.delay=function(e){n&&clearTimeout(n),n=setTimeout(r,e||t)},i.schedule=i,i.call=function(){this.cancel(),e()},i.cancel=function(){n&&clearTimeout(n),n=null},i.isPending=function(){return n},i},t.supportsLookbehind=function(){try{new RegExp("(?<=.)")}catch(e){return!1}return!0},t.skipEmptyMatch=function(e,t,n){return n&&e.codePointAt(t)>65535?2:1}}),define("ace/lib/useragent",["require","exports","module"],function(e,t,n){"use strict";t.OS={LINUX:"LINUX",MAC:"MAC",WINDOWS:"WINDOWS"},t.getOS=function(){return t.isMac?t.OS.MAC:t.isLinux?t.OS.LINUX:t.OS.WINDOWS};var r=typeof navigator=="object"?navigator:{},i=(/mac|win|linux/i.exec(r.platform)||["other"])[0].toLowerCase(),s=r.userAgent||"",o=r.appName||"";t.isWin=i=="win",t.isMac=i=="mac",t.isLinux=i=="linux",t.isIE=o=="Microsoft Internet Explorer"||o.indexOf("MSAppHost")>=0?parseFloat((s.match(/(?:MSIE |Trident\/[0-9]+[\.0-9]+;.*rv:)([0-9]+[\.0-9]+)/)||[])[1]):parseFloat((s.match(/(?:Trident\/[0-9]+[\.0-9]+;.*rv:)([0-9]+[\.0-9]+)/)||[])[1]),t.isOldIE=t.isIE&&t.isIE<9,t.isGecko=t.isMozilla=s.match(/ Gecko\/\d+/),t.isOpera=typeof opera=="object"&&Object.prototype.toString.call(window["opera"])=="[object Opera]",t.isWebKit=parseFloat(s.split("WebKit/")[1])||undefined,t.isChrome=parseFloat(s.split(" Chrome/")[1])||undefined,t.isSafari=parseFloat(s.split(" Safari/")[1])&&!t.isChrome||undefined,t.isEdge=parseFloat(s.split(" Edge/")[1])||undefined,t.isAIR=s.indexOf("AdobeAIR")>=0,t.isAndroid=s.indexOf("Android")>=0,t.isChromeOS=s.indexOf(" CrOS ")>=0,t.isIOS=/iPad|iPhone|iPod/.test(s)&&!window.MSStream,t.isIOS&&(t.isMac=!0),t.isMobile=t.isIOS||t.isAndroid}),define("ace/lib/dom",["require","exports","module","ace/lib/useragent"],function(e,t,n){"use strict";function u(){var e=o;o=null,e&&e.forEach(function(e){a(e[0],e[1])})}function a(e,n,r){if(typeof document=="undefined")return;if(o)if(r)u();else if(r===!1)return o.push([e,n]);if(s)return;var i=r;if(!r||!r.getRootNode)i=document;else{i=r.getRootNode();if(!i||i==r)i=document}var a=i.ownerDocument||i;if(n&&t.hasCssString(n,i))return null;n&&(e+="\n/*# sourceURL=ace/css/"+n+" */");var f=t.createElement("style");f.appendChild(a.createTextNode(e)),n&&(f.id=n),i==a&&(i=t.getDocumentHead(a)),i.insertBefore(f,i.firstChild)}var r=e("./useragent"),i="path_to_url";t.buildDom=function l(e,t,n){if(typeof e=="string"&&e){var r=document.createTextNode(e);return t&&t.appendChild(r),r}if(!Array.isArray(e))return e&&e.appendChild&&t&&t.appendChild(e),e;if(typeof e[0]!="string"||!e[0]){var i=[];for(var s=0;s<e.length;s++){var o=l(e[s],t,n);o&&i.push(o)}return i}var u=document.createElement(e[0]),a=e[1],f=1;a&&typeof a=="object"&&!Array.isArray(a)&&(f=2);for(var s=f;s<e.length;s++)l(e[s],u,n);return f==2&&Object.keys(a).forEach(function(e){var t=a[e];e==="class"?u.className=Array.isArray(t)?t.join(" "):t:typeof t=="function"||e=="value"||e[0]=="$"?u[e]=t:e==="ref"?n&&(n[t]=u):e==="style"?typeof t=="string"&&(u.style.cssText=t):t!=null&&u.setAttribute(e,t)}),t&&t.appendChild(u),u},t.getDocumentHead=function(e){return e||(e=document),e.head||e.getElementsByTagName("head")[0]||e.documentElement},t.createElement=function(e,t){return document.createElementNS?document.createElementNS(t||i,e):document.createElement(e)},t.removeChildren=function(e){e.innerHTML=""},t.createTextNode=function(e,t){var n=t?t.ownerDocument:document;return n.createTextNode(e)},t.createFragment=function(e){var t=e?e.ownerDocument:document;return t.createDocumentFragment()},t.hasCssClass=function(e,t){var n=(e.className+"").split(/\s+/g);return n.indexOf(t)!==-1},t.addCssClass=function(e,n){t.hasCssClass(e,n)||(e.className+=" "+n)},t.removeCssClass=function(e,t){var n=e.className.split(/\s+/g);for(;;){var r=n.indexOf(t);if(r==-1)break;n.splice(r,1)}e.className=n.join(" ")},t.toggleCssClass=function(e,t){var n=e.className.split(/\s+/g),r=!0;for(;;){var i=n.indexOf(t);if(i==-1)break;r=!1,n.splice(i,1)}return r&&n.push(t),e.className=n.join(" "),r},t.setCssClass=function(e,n,r){r?t.addCssClass(e,n):t.removeCssClass(e,n)},t.hasCssString=function(e,t){var n=0,r;t=t||document;if(r=t.querySelectorAll("style"))while(n<r.length)if(r[n++].id===e)return!0},t.removeElementById=function(e,t){t=t||document,t.getElementById(e)&&t.getElementById(e).remove()};var s,o=[];t.useStrictCSP=function(e){s=e,e==0?u():o||(o=[])},t.importCssString=a,t.importCssStylsheet=function(e,n){t.buildDom(["link",{rel:"stylesheet",href:e}],t.getDocumentHead(n))},t.scrollbarWidth=function(e){var n=t.createElement("ace_inner");n.style.width="100%",n.style.minWidth="0px",n.style.height="200px",n.style.display="block";var r=t.createElement("ace_outer"),i=r.style;i.position="absolute",i.left="-10000px",i.overflow="hidden",i.width="200px",i.minWidth="0px",i.height="150px",i.display="block",r.appendChild(n);var s=e&&e.documentElement||document&&document.documentElement;if(!s)return 0;s.appendChild(r);var o=n.offsetWidth;i.overflow="scroll";var u=n.offsetWidth;return o===u&&(u=r.clientWidth),s.removeChild(r),o-u},t.computedStyle=function(e,t){return window.getComputedStyle(e,"")||{}},t.setStyle=function(e,t,n){e[t]!==n&&(e[t]=n)},t.HAS_CSS_ANIMATION=!1,t.HAS_CSS_TRANSFORMS=!1,t.HI_DPI=r.isWin?typeof window!="undefined"&&window.devicePixelRatio>=1.5:!0,r.isChromeOS&&(t.HI_DPI=!1);if(typeof document!="undefined"){var f=document.createElement("div");t.HI_DPI&&f.style.transform!==undefined&&(t.HAS_CSS_TRANSFORMS=!0),!r.isEdge&&typeof f.style.animationName!="undefined"&&(t.HAS_CSS_ANIMATION=!0),f=null}t.HAS_CSS_TRANSFORMS?t.translate=function(e,t,n){e.style.transform="translate("+Math.round(t)+"px, "+Math.round(n)+"px)"}:t.translate=function(e,t,n){e.style.top=Math.round(n)+"px",e.style.left=Math.round(t)+"px"}}),define("ace/lib/net",["require","exports","module","ace/lib/dom"],function(e,t,n){"use strict";var r=e("./dom");t.get=function(e,t){var n=new XMLHttpRequest;n.open("GET",e,!0),n.onreadystatechange=function(){n.readyState===4&&t(n.responseText)},n.send(null)},t.loadScript=function(e,t){var n=r.getDocumentHead(),i=document.createElement("script");i.src=e,n.appendChild(i),i.onload=i.onreadystatechange=function(e,n){if(n||!i.readyState||i.readyState=="loaded"||i.readyState=="complete")i=i.onload=i.onreadystatechange=null,n||t()}},t.qualifyURL=function(e){var t=document.createElement("a");return t.href=e,t.href}}),define("ace/lib/oop",["require","exports","module"],function(e,t,n){"use strict";t.inherits=function(e,t){e.super_=t,e.prototype=Object.create(t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}})},t.mixin=function(e,t){for(var n in t)e[n]=t[n];return e},t.implement=function(e,n){t.mixin(e,n)}}),define("ace/lib/event_emitter",["require","exports","module"],function(e,t,n){"use strict";var r={},i=function(){this.propagationStopped=!0},s=function(){this.defaultPrevented=!0};r._emit=r._dispatchEvent=function(e,t){this._eventRegistry||(this._eventRegistry={}),this._defaultHandlers||(this._defaultHandlers={});var n=this._eventRegistry[e]||[],r=this._defaultHandlers[e];if(!n.length&&!r)return;if(typeof t!="object"||!t)t={};t.type||(t.type=e),t.stopPropagation||(t.stopPropagation=i),t.preventDefault||(t.preventDefault=s),n=n.slice();for(var o=0;o<n.length;o++){n[o](t,this);if(t.propagationStopped)break}if(r&&!t.defaultPrevented)return r(t,this)},r._signal=function(e,t){var n=(this._eventRegistry||{})[e];if(!n)return;n=n.slice();for(var r=0;r<n.length;r++)n[r](t,this)},r.once=function(e,t){var n=this;this.on(e,function r(){n.off(e,r),t.apply(null,arguments)});if(!t)return new Promise(function(e){t=e})},r.setDefaultHandler=function(e,t){var n=this._defaultHandlers;n||(n=this._defaultHandlers={_disabled_:{}});if(n[e]){var r=n[e],i=n._disabled_[e];i||(n._disabled_[e]=i=[]),i.push(r);var s=i.indexOf(t);s!=-1&&i.splice(s,1)}n[e]=t},r.removeDefaultHandler=function(e,t){var n=this._defaultHandlers;if(!n)return;var r=n._disabled_[e];if(n[e]==t)r&&this.setDefaultHandler(e,r.pop());else if(r){var i=r.indexOf(t);i!=-1&&r.splice(i,1)}},r.on=r.addEventListener=function(e,t,n){this._eventRegistry=this._eventRegistry||{};var r=this._eventRegistry[e];return r||(r=this._eventRegistry[e]=[]),r.indexOf(t)==-1&&r[n?"unshift":"push"](t),t},r.off=r.removeListener=r.removeEventListener=function(e,t){this._eventRegistry=this._eventRegistry||{};var n=this._eventRegistry[e];if(!n)return;var r=n.indexOf(t);r!==-1&&n.splice(r,1)},r.removeAllListeners=function(e){e||(this._eventRegistry=this._defaultHandlers=undefined),this._eventRegistry&&(this._eventRegistry[e]=undefined),this._defaultHandlers&&(this._defaultHandlers[e]=undefined)},t.EventEmitter=r}),define("ace/lib/report_error",["require","exports","module"],function(e,t,n){t.reportError=function(t,n){var r=new Error(t);r.data=n,typeof console=="object"&&console.error&&console.error(r),setTimeout(function(){throw r})}}),define("ace/lib/default_english_messages",["require","exports","module"],function(e,t,n){var r={"autocomplete.popup.aria-roledescription":"Autocomplete suggestions","autocomplete.popup.aria-label":"Autocomplete suggestions","autocomplete.popup.item.aria-roledescription":"item","autocomplete.loading":"Loading...","editor.scroller.aria-roledescription":"editor","editor.scroller.aria-label":"Editor content, press Enter to start editing, press Escape to exit","editor.gutter.aria-roledescription":"editor","editor.gutter.aria-label":"Editor gutter, press Enter to interact with controls using arrow keys, press Escape to exit","error-marker.good-state":"Looks good!","prompt.recently-used":"Recently used","prompt.other-commands":"Other commands","prompt.no-matching-commands":"No matching commands","search-box.find.placeholder":"Search for","search-box.find-all.text":"All","search-box.replace.placeholder":"Replace with","search-box.replace-next.text":"Replace","search-box.replace-all.text":"All","search-box.toggle-replace.title":"Toggle Replace mode","search-box.toggle-regexp.title":"RegExp Search","search-box.toggle-case.title":"CaseSensitive Search","search-box.toggle-whole-word.title":"Whole Word Search","search-box.toggle-in-selection.title":"Search In Selection","search-box.search-counter":"$0 of $1","text-input.aria-roledescription":"editor","text-input.aria-label":"Cursor at row $0","gutter.code-folding.range.aria-label":"Toggle code folding, rows $0 through $1","gutter.code-folding.closed.aria-label":"Toggle code folding, rows $0 through $1","gutter.code-folding.open.aria-label":"Toggle code folding, row $0","gutter.code-folding.closed.title":"Unfold code","gutter.code-folding.open.title":"Fold code","gutter.annotation.aria-label.error":"Error, read annotations row $0","gutter.annotation.aria-label.warning":"Warning, read annotations row $0","gutter.annotation.aria-label.info":"Info, read annotations row $0","inline-fold.closed.title":"Unfold code","gutter-tooltip.aria-label.error.singular":"error","gutter-tooltip.aria-label.error.plural":"errors","gutter-tooltip.aria-label.warning.singular":"warning","gutter-tooltip.aria-label.warning.plural":"warnings","gutter-tooltip.aria-label.info.singular":"information message","gutter-tooltip.aria-label.info.plural":"information messages"};t.defaultEnglishMessages=r}),define("ace/lib/app_config",["require","exports","module","ace/lib/oop","ace/lib/event_emitter","ace/lib/report_error","ace/lib/default_english_messages"],function(e,t,n){"no use strict";function a(e){typeof console!="undefined"&&console.warn&&console.warn.apply(console,arguments)}var r=e("./oop"),i=e("./event_emitter").EventEmitter,s=e("./report_error").reportError,o=e("./default_english_messages").defaultEnglishMessages,u={setOptions:function(e){Object.keys(e).forEach(function(t){this.setOption(t,e[t])},this)},getOptions:function(e){var t={};if(!e){var n=this.$options;e=Object.keys(n).filter(function(e){return!n[e].hidden})}else Array.isArray(e)||(t=e,e=Object.keys(t));return e.forEach(function(e){t[e]=this.getOption(e)},this),t},setOption:function(e,t){if(this["$"+e]===t)return;var n=this.$options[e];if(!n)return a('misspelled option "'+e+'"');if(n.forwardTo)return this[n.forwardTo]&&this[n.forwardTo].setOption(e,t);n.handlesSet||(this["$"+e]=t),n&&n.set&&n.set.call(this,t)},getOption:function(e){var t=this.$options[e];return t?t.forwardTo?this[t.forwardTo]&&this[t.forwardTo].getOption(e):t&&t.get?t.get.call(this):this["$"+e]:a('misspelled option "'+e+'"')}},f,l=function(){function e(){this.$defaultOptions={},f=o}return e.prototype.defineOptions=function(e,t,n){return e.$options||(this.$defaultOptions[t]=e.$options={}),Object.keys(n).forEach(function(t){var r=n[t];typeof r=="string"&&(r={forwardTo:r}),r.name||(r.name=t),e.$options[r.name]=r,"initialValue"in r&&(e["$"+r.name]=r.initialValue)}),r.implement(e,u),this},e.prototype.resetOptions=function(e){Object.keys(e.$options).forEach(function(t){var n=e.$options[t];"value"in n&&e.setOption(t,n.value)})},e.prototype.setDefaultValue=function(e,t,n){if(!e){for(e in this.$defaultOptions)if(this.$defaultOptions[e][t])break;if(!this.$defaultOptions[e][t])return!1}var r=this.$defaultOptions[e]||(this.$defaultOptions[e]={});r[t]&&(r.forwardTo?this.setDefaultValue(r.forwardTo,t,n):r[t].value=n)},e.prototype.setDefaultValues=function(e,t){Object.keys(t).forEach(function(n){this.setDefaultValue(e,n,t[n])},this)},e.prototype.setMessages=function(e){f=e},e.prototype.nls=function(e,t,n){f[e]||(a("No message found for the key '"+e+"' in the provided messages, trying to find a translation for the default string '"+t+"'."),f[t]||a("No message found for the default string '"+t+"' in the provided messages. Falling back to the default English message."));var r=f[e]||f[t]||t;return n&&(r=r.replace(/\$(\$|[\d]+)/g,function(e,t){return t=="$"?"$":n[t]})),r},e}();l.prototype.warn=a,l.prototype.reportError=s,r.implement(l.prototype,i),t.AppConfig=l}),define("ace/theme/textmate-css",["require","exports","module"],function(e,t,n){n.exports='.ace-tm .ace_gutter {\n background: #f0f0f0;\n color: #333;\n}\n\n.ace-tm .ace_print-margin {\n width: 1px;\n background: #e8e8e8;\n}\n\n.ace-tm .ace_fold {\n background-color: #6B72E6;\n}\n\n.ace-tm {\n background-color: #FFFFFF;\n color: black;\n}\n\n.ace-tm .ace_cursor {\n color: black;\n}\n \n.ace-tm .ace_invisible {\n color: rgb(191, 191, 191);\n}\n\n.ace-tm .ace_storage,\n.ace-tm .ace_keyword {\n color: blue;\n}\n\n.ace-tm .ace_constant {\n color: rgb(197, 6, 11);\n}\n\n.ace-tm .ace_constant.ace_buildin {\n color: rgb(88, 72, 246);\n}\n\n.ace-tm .ace_constant.ace_language {\n color: rgb(88, 92, 246);\n}\n\n.ace-tm .ace_constant.ace_library {\n color: rgb(6, 150, 14);\n}\n\n.ace-tm .ace_invalid {\n background-color: rgba(255, 0, 0, 0.1);\n color: red;\n}\n\n.ace-tm .ace_support.ace_function {\n color: rgb(60, 76, 114);\n}\n\n.ace-tm .ace_support.ace_constant {\n color: rgb(6, 150, 14);\n}\n\n.ace-tm .ace_support.ace_type,\n.ace-tm .ace_support.ace_class {\n color: rgb(109, 121, 222);\n}\n\n.ace-tm .ace_keyword.ace_operator {\n color: rgb(104, 118, 135);\n}\n\n.ace-tm .ace_string {\n color: rgb(3, 106, 7);\n}\n\n.ace-tm .ace_comment {\n color: rgb(76, 136, 107);\n}\n\n.ace-tm .ace_comment.ace_doc {\n color: rgb(0, 102, 255);\n}\n\n.ace-tm .ace_comment.ace_doc.ace_tag {\n color: rgb(128, 159, 191);\n}\n\n.ace-tm .ace_constant.ace_numeric {\n color: rgb(0, 0, 205);\n}\n\n.ace-tm .ace_variable {\n color: rgb(49, 132, 149);\n}\n\n.ace-tm .ace_xml-pe {\n color: rgb(104, 104, 91);\n}\n\n.ace-tm .ace_entity.ace_name.ace_function {\n color: #0000A2;\n}\n\n\n.ace-tm .ace_heading {\n color: rgb(12, 7, 255);\n}\n\n.ace-tm .ace_list {\n color:rgb(185, 6, 144);\n}\n\n.ace-tm .ace_meta.ace_tag {\n color:rgb(0, 22, 142);\n}\n\n.ace-tm .ace_string.ace_regex {\n color: rgb(255, 0, 0)\n}\n\n.ace-tm .ace_marker-layer .ace_selection {\n background: rgb(181, 213, 255);\n}\n.ace-tm.ace_multiselect .ace_selection.ace_start {\n box-shadow: 0 0 3px 0px white;\n}\n.ace-tm .ace_marker-layer .ace_step {\n background: rgb(252, 255, 0);\n}\n\n.ace-tm .ace_marker-layer .ace_stack {\n background: rgb(164, 229, 101);\n}\n\n.ace-tm .ace_marker-layer .ace_bracket {\n margin: -1px 0 0 -1px;\n border: 1px solid rgb(192, 192, 192);\n}\n\n.ace-tm .ace_marker-layer .ace_active-line {\n background: rgba(0, 0, 0, 0.07);\n}\n\n.ace-tm .ace_gutter-active-line {\n background-color : #dcdcdc;\n}\n\n.ace-tm .ace_marker-layer .ace_selected-word {\n background: rgb(250, 250, 255);\n border: 1px solid rgb(200, 200, 250);\n}\n\n.ace-tm .ace_indent-guide {\n background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAACCAYAAACZgbYnAAAAE0lEQVQImWP4////f4bLly//BwAmVgd1/w11/gAAAABJRU5ErkJggg==") right repeat-y;\n}\n\n.ace-tm .ace_indent-guide-active {\n background: url("data:image/png;base64,your_sha256_hashEwEAmpwYAAAAIGNIUk0AAHolAACAgwAA+f8AAIDpAAB1MAAA6mAAADqYAAAXb5JfxUYAAAAZSURBVHjaYvj///9/hivKyv8BAAAA//8DACLqBhbvk+/eAAAAAElFTkSuQmCC") right repeat-y;\n}\n'}),define("ace/theme/textmate",["require","exports","module","ace/theme/textmate-css","ace/lib/dom"],function(e,t,n){"use strict";t.isDark=!1,t.cssClass="ace-tm",t.cssText=e("./textmate-css"),t.$id="ace/theme/textmate";var r=e("../lib/dom");r.importCssString(t.cssText,t.cssClass,!1)}),define("ace/config",["require","exports","module","ace/lib/lang","ace/lib/net","ace/lib/dom","ace/lib/app_config","ace/theme/textmate"],function(e,t,n){"no use strict";var r=e("./lib/lang"),i=e("./lib/net"),s=e("./lib/dom"),o=e("./lib/app_config").AppConfig;n.exports=t=new o;var u={packaged:!1,workerPath:null,modePath:null,themePath:null,basePath:"",suffix:".js",$moduleUrls:{},loadWorkerFromBlob:!0,sharedPopups:!1,useStrictCSP:null};t.get=function(e){if(!u.hasOwnProperty(e))throw new Error("Unknown config key: "+e);return u[e]},t.set=function(e,t){if(u.hasOwnProperty(e))u[e]=t;else if(this.setDefaultValue("",e,t)==0)throw new Error("Unknown config key: "+e);e=="useStrictCSP"&&s.useStrictCSP(t)},t.all=function(){return r.copyObject(u)},t.$modes={},t.moduleUrl=function(e,t){if(u.$moduleUrls[e])return u.$moduleUrls[e];var n=e.split("/");t=t||n[n.length-2]||"";var r=t=="snippets"?"/":"-",i=n[n.length-1];if(t=="worker"&&r=="-"){var s=new RegExp("^"+t+"[\\-_]|[\\-_]"+t+"$","g");i=i.replace(s,"")}(!i||i==t)&&n.length>1&&(i=n[n.length-2]);var o=u[t+"Path"];return o==null?o=u.basePath:r=="/"&&(t=r=""),o&&o.slice(-1)!="/"&&(o+="/"),o+t+r+i+this.get("suffix")},t.setModuleUrl=function(e,t){return u.$moduleUrls[e]=t};var a=function(t,n){if(t==="ace/theme/textmate"||t==="./theme/textmate")return n(null,e("./theme/textmate"));if(f)return f(t,n);console.error("loader is not configured")},f;t.setLoader=function(e){f=e},t.dynamicModules=Object.create(null),t.$loading={},t.$loaded={},t.loadModule=function(e,n){var r;if(Array.isArray(e))var s=e[0],o=e[1];else if(typeof e=="string")var o=e;var u=function(e){if(e&&!t.$loading[o])return n&&n(e);t.$loading[o]||(t.$loading[o]=[]),t.$loading[o].push(n);if(t.$loading[o].length>1)return;var r=function(){a(o,function(e,n){n&&(t.$loaded[o]=n),t._emit("load.module",{name:o,module:n});var r=t.$loading[o];t.$loading[o]=null,r.forEach(function(e){e&&e(n)})})};if(!t.get("packaged"))return r();i.loadScript(t.moduleUrl(o,s),r),l()};if(t.dynamicModules[o])t.dynamicModules[o]().then(function(e){e.default?u(e.default):u(e)});else{try{r=this.$require(o)}catch(f){}u(r||t.$loaded[o])}},t.$require=function(e){if(typeof n["require"]=="function"){var t="require";return n[t](e)}},t.setModuleLoader=function(e,n){t.dynamicModules[e]=n};var l=function(){!u.basePath&&!u.workerPath&&!u.modePath&&!u.themePath&&!Object.keys(u.$moduleUrls).length&&(console.error("Unable to infer path to ace from script src,","use ace.config.set('basePath', 'path') to enable dynamic loading of modes and themes","or with webpack use ace/webpack-resolver"),l=function(){})};t.version="1.34.0"}),define("ace/loader_build",["require","exports","module","ace/lib/fixoldbrowsers","ace/config"],function(e,t,n){"use strict";function s(t){if(!i||!i.document)return;r.set("packaged",t||e.packaged||n.packaged||i.define&&define.packaged);var s={},u="",a=document.currentScript||document._currentScript,f=a&&a.ownerDocument||document;a&&a.src&&(u=a.src.split(/[?#]/)[0].split("/").slice(0,-1).join("/")||"");var l=f.getElementsByTagName("script");for(var c=0;c<l.length;c++){var h=l[c],p=h.src||h.getAttribute("src");if(!p)continue;var d=h.attributes;for(var v=0,m=d.length;v<m;v++){var g=d[v];g.name.indexOf("data-ace-")===0&&(s[o(g.name.replace(/^data-ace-/,""))]=g.value)}var y=p.match(/^(.*)\/ace([\-.]\w+)?\.js(\?|$)/);y&&(u=y[1])}u&&(s.base=s.base||u,s.packaged=!0),s.basePath=s.base,s.workerPath=s.workerPath||s.base,s.modePath=s.modePath||s.base,s.themePath=s.themePath||s.base,delete s.base;for(var b in s)typeof s[b]!="undefined"&&r.set(b,s[b])}function o(e){return e.replace(/-(.)/g,function(e,t){return t.toUpperCase()})}e("./lib/fixoldbrowsers");var r=e("./config");r.setLoader(function(t,n){e([t],function(e){n(null,e)})});var i=function(){return this||typeof window!="undefined"&&window}();n.exports=function(t){r.init=s,r.$require=e,t.require=e,typeof define=="function"&&(t.define=define)}}),define("ace/range",["require","exports","module"],function(e,t,n){"use strict";var r=function(){function e(e,t,n,r){this.start={row:e,column:t},this.end={row:n,column:r}}return e.prototype.isEqual=function(e){return this.start.row===e.start.row&&this.end.row===e.end.row&&this.start.column===e.start.column&&this.end.column===e.end.column},e.prototype.toString=function(){return"Range: ["+this.start.row+"/"+this.start.column+"] -> ["+this.end.row+"/"+this.end.column+"]"},e.prototype.contains=function(e,t){return this.compare(e,t)==0},e.prototype.compareRange=function(e){var t,n=e.end,r=e.start;return t=this.compare(n.row,n.column),t==1?(t=this.compare(r.row,r.column),t==1?2:t==0?1:0):t==-1?-2:(t=this.compare(r.row,r.column),t==-1?-1:t==1?42:0)},e.prototype.comparePoint=function(e){return this.compare(e.row,e.column)},e.prototype.containsRange=function(e){return this.comparePoint(e.start)==0&&this.comparePoint(e.end)==0},e.prototype.intersects=function(e){var t=this.compareRange(e);return t==-1||t==0||t==1},e.prototype.isEnd=function(e,t){return this.end.row==e&&this.end.column==t},e.prototype.isStart=function(e,t){return this.start.row==e&&this.start.column==t},e.prototype.setStart=function(e,t){typeof e=="object"?(this.start.column=e.column,this.start.row=e.row):(this.start.row=e,this.start.column=t)},e.prototype.setEnd=function(e,t){typeof e=="object"?(this.end.column=e.column,this.end.row=e.row):(this.end.row=e,this.end.column=t)},e.prototype.inside=function(e,t){return this.compare(e,t)==0?this.isEnd(e,t)||this.isStart(e,t)?!1:!0:!1},e.prototype.insideStart=function(e,t){return this.compare(e,t)==0?this.isEnd(e,t)?!1:!0:!1},e.prototype.insideEnd=function(e,t){return this.compare(e,t)==0?this.isStart(e,t)?!1:!0:!1},e.prototype.compare=function(e,t){return!this.isMultiLine()&&e===this.start.row?t<this.start.column?-1:t>this.end.column?1:0:e<this.start.row?-1:e>this.end.row?1:this.start.row===e?t>=this.start.column?0:-1:this.end.row===e?t<=this.end.column?0:1:0},e.prototype.compareStart=function(e,t){return this.start.row==e&&this.start.column==t?-1:this.compare(e,t)},e.prototype.compareEnd=function(e,t){return this.end.row==e&&this.end.column==t?1:this.compare(e,t)},e.prototype.compareInside=function(e,t){return this.end.row==e&&this.end.column==t?1:this.start.row==e&&this.start.column==t?-1:this.compare(e,t)},e.prototype.clipRows=function(t,n){if(this.end.row>n)var r={row:n+1,column:0};else if(this.end.row<t)var r={row:t,column:0};if(this.start.row>n)var i={row:n+1,column:0};else if(this.start.row<t)var i={row:t,column:0};return e.fromPoints(i||this.start,r||this.end)},e.prototype.extend=function(t,n){var r=this.compare(t,n);if(r==0)return this;if(r==-1)var i={row:t,column:n};else var s={row:t,column:n};return e.fromPoints(i||this.start,s||this.end)},e.prototype.isEmpty=function(){return this.start.row===this.end.row&&this.start.column===this.end.column},e.prototype.isMultiLine=function(){return this.start.row!==this.end.row},e.prototype.clone=function(){return e.fromPoints(this.start,this.end)},e.prototype.collapseRows=function(){return this.end.column==0?new e(this.start.row,0,Math.max(this.start.row,this.end.row-1),0):new e(this.start.row,0,this.end.row,0)},e.prototype.toScreenRange=function(t){var n=t.documentToScreenPosition(this.start),r=t.documentToScreenPosition(this.end);return new e(n.row,n.column,r.row,r.column)},e.prototype.moveBy=function(e,t){this.start.row+=e,this.start.column+=t,this.end.row+=e,this.end.column+=t},e}();r.fromPoints=function(e,t){return new r(e.row,e.column,t.row,t.column)},r.comparePoints=function(e,t){return e.row-t.row||e.column-t.column},t.Range=r}),define("ace/lib/keys",["require","exports","module","ace/lib/oop"],function(e,t,n){"use strict";var r=e("./oop"),i={MODIFIER_KEYS:{16:"Shift",17:"Ctrl",18:"Alt",224:"Meta",91:"MetaLeft",92:"MetaRight",93:"ContextMenu"},KEY_MODS:{ctrl:1,alt:2,option:2,shift:4,"super":8,meta:8,command:8,cmd:8,control:1},FUNCTION_KEYS:{8:"Backspace",9:"Tab",13:"Return",19:"Pause",27:"Esc",32:"Space",33:"PageUp",34:"PageDown",35:"End",36:"Home",37:"Left",38:"Up",39:"Right",40:"Down",44:"Print",45:"Insert",46:"Delete","-13":"NumpadEnter",144:"Numlock",145:"Scrolllock"},PRINTABLE_KEYS:{32:" ",59:";",61:"=",107:"+",109:"-",110:".",186:";",187:"=",188:",",189:"-",190:".",191:"/",192:"`",219:"[",220:"\\",221:"]",222:"'",111:"/",106:"*"}},s={Command:224,Backspace:8,Tab:9,Return:13,Enter:13,Pause:19,Escape:27,PageUp:33,PageDown:34,End:35,Home:36,Insert:45,Delete:46,ArrowLeft:37,ArrowUp:38,ArrowRight:39,ArrowDown:40,Backquote:192,Minus:189,Equal:187,BracketLeft:219,Backslash:220,BracketRight:221,Semicolon:186,Quote:222,Comma:188,Period:190,Slash:191,Space:32,NumpadAdd:107,NumpadDecimal:110,NumpadSubtract:109,NumpadDivide:111,NumpadMultiply:106};for(var o=0;o<10;o++)s["Digit"+o]=48+o,s["Numpad"+o]=96+o,i.PRINTABLE_KEYS[48+o]=""+o,i.FUNCTION_KEYS[96+o]="Numpad"+o;for(var o=65;o<91;o++){var u=String.fromCharCode(o+32);s["Key"+u.toUpperCase()]=o,i.PRINTABLE_KEYS[o]=u}for(var o=1;o<13;o++)s["F"+o]=111+o,i.FUNCTION_KEYS[111+o]="F"+o;var a={Shift:16,Control:17,Alt:18,Meta:224};for(var f in a)s[f]=s[f+"Left"]=s[f+"Right"]=a[f];t.$codeToKeyCode=s,i.PRINTABLE_KEYS[173]="-";for(var l in i.FUNCTION_KEYS){var c=i.FUNCTION_KEYS[l].toLowerCase();i[c]=parseInt(l,10)}for(var l in i.PRINTABLE_KEYS){var c=i.PRINTABLE_KEYS[l].toLowerCase();i[c]=parseInt(l,10)}r.mixin(i,i.MODIFIER_KEYS),r.mixin(i,i.PRINTABLE_KEYS),r.mixin(i,i.FUNCTION_KEYS),i.enter=i["return"],i.escape=i.esc,i.del=i["delete"],function(){var e=["cmd","ctrl","alt","shift"];for(var t=Math.pow(2,e.length);t--;)i.KEY_MODS[t]=e.filter(function(e){return t&i.KEY_MODS[e]}).join("-")+"-"}(),i.KEY_MODS[0]="",i.KEY_MODS[-1]="input-",r.mixin(t,i),t.default=t,t.keyCodeToString=function(e){var t=i[e];return typeof t!="string"&&(t=String.fromCharCode(e)),t.toLowerCase()}}),define("ace/lib/event",["require","exports","module","ace/lib/keys","ace/lib/useragent"],function(e,t,n){"use strict";function a(){u=!1;try{document.createComment("").addEventListener("test",function(){},{get passive(){return u={passive:!1},!0}})}catch(e){}}function f(){return u==undefined&&a(),u}function l(e,t,n){this.elem=e,this.type=t,this.callback=n}function p(e){return 0|(e.ctrlKey?1:0)|(e.altKey?2:0)|(e.shiftKey?4:0)|(e.metaKey?8:0)}function d(e,t,n){var u=p(t);!n&&t.code&&(n=r.$codeToKeyCode[t.code]||n);if(!i.isMac&&s){t.getModifierState&&(t.getModifierState("OS")||t.getModifierState("Win"))&&(u|=8);if(s.altGr){if((3&u)==3)return;s.altGr=0}if(n===18||n===17){var a=t.location;if(n===17&&a===1)s[n]==1&&(o=t.timeStamp);else if(n===18&&u===3&&a===2){var f=t.timeStamp-o;f<50&&(s.altGr=!0)}}}n in r.MODIFIER_KEYS&&(n=-1);if(!u&&n===13&&t.location===3){e(t,u,-n);if(t.defaultPrevented)return}if(i.isChromeOS&&u&8){e(t,u,n);if(t.defaultPrevented)return;u&=-9}return!!u||n in r.FUNCTION_KEYS||n in r.PRINTABLE_KEYS?e(t,u,n):!1}function v(){s=Object.create(null)}var r=e("./keys"),i=e("./useragent"),s=null,o=0,u;l.prototype.destroy=function(){h(this.elem,this.type,this.callback),this.elem=this.type=this.callback=undefined};var c=t.addListener=function(e,t,n,r){e.addEventListener(t,n,f()),r&&r.$toDestroy.push(new l(e,t,n))},h=t.removeListener=function(e,t,n){e.removeEventListener(t,n,f())};t.stopEvent=function(e){return t.stopPropagation(e),t.preventDefault(e),!1},t.stopPropagation=function(e){e.stopPropagation&&e.stopPropagation()},t.preventDefault=function(e){e.preventDefault&&e.preventDefault()},t.getButton=function(e){return e.type=="dblclick"?0:e.type=="contextmenu"||i.isMac&&e.ctrlKey&&!e.altKey&&!e.shiftKey?2:e.button},t.capture=function(e,t,n){function i(e){t&&t(e),n&&n(e),h(r,"mousemove",t),h(r,"mouseup",i),h(r,"dragstart",i)}var r=e&&e.ownerDocument||document;return c(r,"mousemove",t),c(r,"mouseup",i),c(r,"dragstart",i),i},t.addMouseWheelListener=function(e,t,n){c(e,"wheel",function(e){var n=.15,r=e.deltaX||0,i=e.deltaY||0;switch(e.deltaMode){case e.DOM_DELTA_PIXEL:e.wheelX=r*n,e.wheelY=i*n;break;case e.DOM_DELTA_LINE:var s=15;e.wheelX=r*s,e.wheelY=i*s;break;case e.DOM_DELTA_PAGE:var o=150;e.wheelX=r*o,e.wheelY=i*o}t(e)},n)},t.addMultiMouseDownListener=function(e,n,r,s,o){function p(e){t.getButton(e)!==0?u=0:e.detail>1?(u++,u>4&&(u=1)):u=1;if(i.isIE){var o=Math.abs(e.clientX-a)>5||Math.abs(e.clientY-f)>5;if(!l||o)u=1;l&&clearTimeout(l),l=setTimeout(function(){l=null},n[u-1]||600),u==1&&(a=e.clientX,f=e.clientY)}e._clicks=u,r[s]("mousedown",e);if(u>4)u=0;else if(u>1)return r[s](h[u],e)}var u=0,a,f,l,h={2:"dblclick",3:"tripleclick",4:"quadclick"};Array.isArray(e)||(e=[e]),e.forEach(function(e){c(e,"mousedown",p,o)})},t.getModifierString=function(e){return r.KEY_MODS[p(e)]},t.addCommandKeyListener=function(e,n,r){var i=null;c(e,"keydown",function(e){s[e.keyCode]=(s[e.keyCode]||0)+1;var t=d(n,e,e.keyCode);return i=e.defaultPrevented,t},r),c(e,"keypress",function(e){i&&(e.ctrlKey||e.altKey||e.shiftKey||e.metaKey)&&(t.stopEvent(e),i=null)},r),c(e,"keyup",function(e){s[e.keyCode]=null},r),s||(v(),c(window,"focus",v))};if(typeof window=="object"&&window.postMessage&&!i.isOldIE){var m=1;t.nextTick=function(e,n){n=n||window;var r="zero-timeout-message-"+m++,i=function(s){s.data==r&&(t.stopPropagation(s),h(n,"message",i),e())};c(n,"message",i),n.postMessage(r,"*")}}t.$idleBlocked=!1,t.onIdle=function(e,n){return setTimeout(function r(){t.$idleBlocked?setTimeout(r,100):e()},n)},t.$idleBlockId=null,t.blockIdle=function(e){t.$idleBlockId&&clearTimeout(t.$idleBlockId),t.$idleBlocked=!0,t.$idleBlockId=setTimeout(function(){t.$idleBlocked=!1},e||100)},t.nextFrame=typeof window=="object"&&(window.requestAnimationFrame||window.mozRequestAnimationFrame||window.webkitRequestAnimationFrame||window.msRequestAnimationFrame||window.oRequestAnimationFrame),t.nextFrame?t.nextFrame=t.nextFrame.bind(window):t.nextFrame=function(e){setTimeout(e,17)}}),define("ace/clipboard",["require","exports","module"],function(e,t,n){"use strict";var r;n.exports={lineMode:!1,pasteCancelled:function(){return r&&r>Date.now()-50?!0:r=!1},cancel:function(){r=Date.now()}}}),define("ace/keyboard/textinput",["require","exports","module","ace/lib/event","ace/config","ace/lib/useragent","ace/lib/dom","ace/lib/lang","ace/clipboard","ace/lib/keys"],function(e,t,n){"use strict";var r=e("../lib/event"),i=e("../config").nls,s=e("../lib/useragent"),o=e("../lib/dom"),u=e("../lib/lang"),a=e("../clipboard"),f=s.isChrome<18,l=s.isIE,c=s.isChrome>63,h=400,p=e("../lib/keys"),d=p.KEY_MODS,v=s.isIOS,m=v?/\s/:/\n/,g=s.isMobile,y;y=function(e,t){function Q(){T=!0,n.blur(),n.focus(),T=!1}function Y(e){e.keyCode==27&&n.value.length<n.selectionStart&&(w||(N=n.value),C=k=-1,H()),G()}function et(){clearTimeout(Z),Z=setTimeout(function(){S&&(n.style.cssText=S,S=""),t.renderer.$isMousePressed=!1,t.renderer.$keepTextAreaAtCursor&&t.renderer.$moveTextAreaToCursor()},0)}function nt(e,t,n){var r=null,i=!1;n.addEventListener("keydown",function(e){r&&clearTimeout(r),i=!0},!0),n.addEventListener("keyup",function(e){r=setTimeout(function(){i=!1},100)},!0);var s=function(e){if(document.activeElement!==n)return;if(i||w||t.$mouseHandler.isMousePressed)return;if(y)return;var r=n.selectionStart,s=n.selectionEnd,o=null,u=0;if(r==0)o=p.up;else if(r==1)o=p.home;else if(s>k&&N[s]=="\n")o=p.end;else if(r<C&&N[r-1]==" ")o=p.left,u=d.option;else if(r<C||r==C&&k!=C&&r==s)o=p.left;else if(s>k&&N.slice(0,s).split("\n").length>2)o=p.down;else if(s>k&&N[s-1]==" ")o=p.right,u=d.option;else if(s>k||s==k&&k!=C&&r==s)o=p.right;r!==s&&(u|=d.shift);if(o){var a=t.onCommandKey({},u,o);if(!a&&t.commands){o=p.keyCodeToString(o);var f=t.commands.findKeyCommand(u,o);f&&t.execCommand(f)}C=r,k=s,H("")}};document.addEventListener("selectionchange",s),t.on("destroy",function(){document.removeEventListener("selectionchange",s)})}var n=o.createElement("textarea");n.className="ace_text-input",n.setAttribute("wrap","off"),n.setAttribute("autocorrect","off"),n.setAttribute("autocapitalize","off"),n.setAttribute("spellcheck","false"),n.style.opacity="0",e.insertBefore(n,e.firstChild);var y=!1,b=!1,w=!1,E=!1,S="";g||(n.style.fontSize="1px");var x=!1,T=!1,N="",C=0,k=0,L=0,A=Number.MAX_SAFE_INTEGER,O=Number.MIN_SAFE_INTEGER,M=0;try{var _=document.activeElement===n}catch(D){}this.setNumberOfExtraLines=function(e){A=Number.MAX_SAFE_INTEGER,O=Number.MIN_SAFE_INTEGER;if(e<0){M=0;return}M=e},this.setAriaOptions=function(e){e.activeDescendant?(n.setAttribute("aria-haspopup","true"),n.setAttribute("aria-autocomplete",e.inline?"both":"list"),n.setAttribute("aria-activedescendant",e.activeDescendant)):(n.setAttribute("aria-haspopup","false"),n.setAttribute("aria-autocomplete","both"),n.removeAttribute("aria-activedescendant")),e.role&&n.setAttribute("role",e.role);if(e.setLabel){n.setAttribute("aria-roledescription",i("text-input.aria-roledescription","editor"));if(t.session){var r=t.session.selection.cursor.row,s="";t.$textInputAriaLabel&&(s+="".concat(t.$textInputAriaLabel,", ")),s+=i("text-input.aria-label","Cursor at row $0",[r+1]),n.setAttribute("aria-label",s)}}},this.setAriaOptions({role:"textbox"}),r.addListener(n,"blur",function(e){if(T)return;t.onBlur(e),_=!1},t),r.addListener(n,"focus",function(e){if(T)return;_=!0;if(s.isEdge)try{if(!document.hasFocus())return}catch(e){}t.onFocus(e),s.isEdge?setTimeout(H):H()},t),this.$focusScroll=!1,this.focus=function(){this.setAriaOptions({setLabel:t.renderer.enableKeyboardAccessibility});if(S||c||this.$focusScroll=="browser")return n.focus({preventScroll:!0});var e=n.style.top;n.style.position="fixed",n.style.top="0px";try{var r=n.getBoundingClientRect().top!=0}catch(i){return}var s=[];if(r){var o=n.parentElement;while(o&&o.nodeType==1)s.push(o),o.setAttribute("ace_nocontext","true"),!o.parentElement&&o.getRootNode?o=o.getRootNode().host:o=o.parentElement}n.focus({preventScroll:!0}),r&&s.forEach(function(e){e.removeAttribute("ace_nocontext")}),setTimeout(function(){n.style.position="",n.style.top=="0px"&&(n.style.top=e)},0)},this.blur=function(){n.blur()},this.isFocused=function(){return _},t.on("beforeEndOperation",function(){var e=t.curOp,r=e&&e.command&&e.command.name;if(r=="insertstring")return;var i=r&&(e.docChanged||e.selectionChanged);w&&i&&(N=n.value="",K()),H()});var P=function(e,n){var r=n;for(var i=1;i<=e-A&&i<2*M+1;i++)r+=t.session.getLine(e-i).length+1;return r},H=v?function(e){if(!_||y&&!e||E)return;e||(e="");var r="\n ab"+e+"cde fg\n";r!=n.value&&(n.value=N=r);var i=4,s=4+(e.length||(t.selection.isEmpty()?0:1));(C!=i||k!=s)&&n.setSelectionRange(i,s),C=i,k=s}:function(){if(w||E)return;if(!_&&!I)return;w=!0;var e=0,r=0,i="";if(t.session){var s=t.selection,o=s.getRange(),u=s.cursor.row;if(u===O+1)A=O+1,O=A+2*M;else if(u===A-1)O=A-1,A=O-2*M;else if(u<A-1||u>O+1)A=u>M?u-M:0,O=u>M?u+M:2*M;var a=[];for(var f=A;f<=O;f++)a.push(t.session.getLine(f));i=a.join("\n"),e=P(o.start.row,o.start.column),r=P(o.end.row,o.end.column);if(o.start.row<A){var l=t.session.getLine(A-1);e=o.start.row<A-1?0:e,r+=l.length+1,i=l+"\n"+i}else if(o.end.row>O){var c=t.session.getLine(O+1);r=o.end.row>O+1?c.length:o.end.column,r+=i.length+1,i=i+"\n"+c}else g&&u>0&&(i="\n"+i,r+=1,e+=1);i.length>h&&(e<h&&r<h?i=i.slice(0,h):(i="\n",e==r?e=r=0:(e=0,r=1)));var p=i+"\n\n";p!=N&&(n.value=N=p,C=k=p.length)}I&&(C=n.selectionStart,k=n.selectionEnd);if(k!=r||C!=e||n.selectionEnd!=k)try{n.setSelectionRange(e,r),C=e,k=r}catch(d){}w=!1};this.resetSelection=H,_&&t.onFocus();var B=function(e){return e.selectionStart===0&&e.selectionEnd>=N.length&&e.value===N&&N&&e.selectionEnd!==k},j=function(e){if(w)return;y?y=!1:B(n)?(t.selectAll(),H()):g&&n.selectionStart!=C&&H()},F=null;this.setInputHandler=function(e){F=e},this.getInputHandler=function(){return F};var I=!1,q=function(e,r){I&&(I=!1);if(b)return H(),e&&t.onPaste(e),b=!1,"";var i=n.selectionStart,o=n.selectionEnd,u=C,a=N.length-k,f=e,l=e.length-i,c=e.length-o,h=0;while(u>0&&N[h]==e[h])h++,u--;f=f.slice(h),h=1;while(a>0&&N.length-h>C-1&&N[N.length-h]==e[e.length-h])h++,a--;l-=h-1,c-=h-1;var p=f.length-h+1;p<0&&(u=-p,p=0),f=f.slice(0,p);if(!r&&!f&&!l&&!u&&!a&&!c)return"";E=!0;var d=!1;return s.isAndroid&&f==". "&&(f=" ",d=!0),f&&!u&&!a&&!l&&!c||x?t.onTextInput(f):t.onTextInput(f,{extendLeft:u,extendRight:a,restoreStart:l,restoreEnd:c}),E=!1,N=e,C=i,k=o,L=c,d?"\n":f},R=function(e){if(w)return J();if(e&&e.inputType){if(e.inputType=="historyUndo")return t.execCommand("undo");if(e.inputType=="historyRedo")return t.execCommand("redo")}var r=n.value,i=q(r,!0);(r.length>h+100||m.test(i)||g&&C<1&&C==k)&&H()},U=function(e,t,n){var r=e.clipboardData||window.clipboardData;if(!r||f)return;var i=l||n?"Text":"text/plain";try{return t?r.setData(i,t)!==!1:r.getData(i)}catch(e){if(!n)return U(e,t,!0)}},z=function(e,i){var s=t.getCopyText();if(!s)return r.preventDefault(e);U(e,s)?(v&&(H(s),y=s,setTimeout(function(){y=!1},10)),i?t.onCut():t.onCopy(),r.preventDefault(e)):(y=!0,n.value=s,n.select(),setTimeout(function(){y=!1,H(),i?t.onCut():t.onCopy()}))},W=function(e){z(e,!0)},X=function(e){z(e,!1)},V=function(e){var i=U(e);if(a.pasteCancelled())return;typeof i=="string"?(i&&t.onPaste(i,e),s.isIE&&setTimeout(H),r.preventDefault(e)):(n.value="",b=!0)};r.addCommandKeyListener(n,function(e,n,r){if(w)return;return t.onCommandKey(e,n,r)},t),r.addListener(n,"select",j,t),r.addListener(n,"input",R,t),r.addListener(n,"cut",W,t),r.addListener(n,"copy",X,t),r.addListener(n,"paste",V,t),(!("oncut"in n)||!("oncopy"in n)||!("onpaste"in n))&&r.addListener(e,"keydown",function(e){if(s.isMac&&!e.metaKey||!e.ctrlKey)return;switch(e.keyCode){case 67:X(e);break;case 86:V(e);break;case 88:W(e)}},t);var $=function(e){if(w||!t.onCompositionStart||t.$readOnly)return;w={};if(x)return;e.data&&(w.useTextareaForIME=!1),setTimeout(J,0),t._signal("compositionStart"),t.on("mousedown",Q);var r=t.getSelectionRange();r.end.row=r.start.row,r.end.column=r.start.column,w.markerRange=r,w.selectionStart=C,t.onCompositionStart(w),w.useTextareaForIME?(N=n.value="",C=0,k=0):(n.msGetInputContext&&(w.context=n.msGetInputContext()),n.getInputContext&&(w.context=n.getInputContext()))},J=function(){if(!w||!t.onCompositionUpdate||t.$readOnly)return;if(x)return Q();if(w.useTextareaForIME)t.onCompositionUpdate(n.value);else{var e=n.value;q(e),w.markerRange&&(w.context&&(w.markerRange.start.column=w.selectionStart=w.context.compositionStartOffset),w.markerRange.end.column=w.markerRange.start.column+k-w.selectionStart+L)}},K=function(e){if(!t.onCompositionEnd||t.$readOnly)return;w=!1,t.onCompositionEnd(),t.off("mousedown",Q),e&&R()},G=u.delayedCall(J,50).schedule.bind(null,null);r.addListener(n,"compositionstart",$,t),r.addListener(n,"compositionupdate",J,t),r.addListener(n,"keyup",Y,t),r.addListener(n,"keydown",G,t),r.addListener(n,"compositionend",K,t),this.getElement=function(){return n},this.setCommandMode=function(e){x=e,n.readOnly=!1},this.setReadOnly=function(e){x||(n.readOnly=e)},this.setCopyWithEmptySelection=function(e){},this.onContextMenu=function(e){I=!0,H(),t._emit("nativecontextmenu",{target:t,domEvent:e}),this.moveToMouse(e,!0)},this.moveToMouse=function(e,i){S||(S=n.style.cssText),n.style.cssText=(i?"z-index:100000;":"")+(s.isIE?"opacity:0.1;":"")+"text-indent: -"+(C+k)*t.renderer.characterWidth*.5+"px;";var u=t.container.getBoundingClientRect(),a=o.computedStyle(t.container),f=u.top+(parseInt(a.borderTopWidth)||0),l=u.left+(parseInt(u.borderLeftWidth)||0),c=u.bottom-f-n.clientHeight-2,h=function(e){o.translate(n,e.clientX-l-2,Math.min(e.clientY-f-2,c))};h(e);if(e.type!="mousedown")return;t.renderer.$isMousePressed=!0,clearTimeout(Z),s.isWin&&r.capture(t.container,h,et)},this.onContextMenuClose=et;var Z,tt=function(e){t.textInput.onContextMenu(e),et()};r.addListener(n,"mouseup",tt,t),r.addListener(n,"mousedown",function(e){e.preventDefault(),et()},t),r.addListener(t.renderer.scroller,"contextmenu",tt,t),r.addListener(n,"contextmenu",tt,t),v&&nt(e,t,n),this.destroy=function(){n.parentElement&&n.parentElement.removeChild(n)}},t.TextInput=y,t.$setUserAgentForTests=function(e,t){g=e,v=t}}),define("ace/mouse/default_handlers",["require","exports","module","ace/lib/useragent"],function(e,t,n){"use strict";function u(e,t,n,r){return Math.sqrt(Math.pow(n-e,2)+Math.pow(r-t,2))}function a(e,t){if(e.start.row==e.end.row)var n=2*t.column-e.start.column-e.end.column;else if(e.start.row==e.end.row-1&&!e.start.column&&!e.end.column)var n=t.column-4;else var n=2*t.row-e.start.row-e.end.row;return n<0?{cursor:e.start,anchor:e.end}:{cursor:e.end,anchor:e.start}}var r=e("../lib/useragent"),i=0,s=550,o=function(){function e(e){e.$clickSelection=null;var t=e.editor;t.setDefaultHandler("mousedown",this.onMouseDown.bind(e)),t.setDefaultHandler("dblclick",this.onDoubleClick.bind(e)),t.setDefaultHandler("tripleclick",this.onTripleClick.bind(e)),t.setDefaultHandler("quadclick",this.onQuadClick.bind(e)),t.setDefaultHandler("mousewheel",this.onMouseWheel.bind(e));var n=["select","startSelect","selectEnd","selectAllEnd","selectByWordsEnd","selectByLinesEnd","dragWait","dragWaitEnd","focusWait"];n.forEach(function(t){e[t]=this[t]},this),e.selectByLines=this.extendSelectionBy.bind(e,"getLineRange"),e.selectByWords=this.extendSelectionBy.bind(e,"getWordRange")}return e.prototype.onMouseDown=function(e){var t=e.inSelection(),n=e.getDocumentPosition();this.mousedownEvent=e;var i=this.editor,s=e.getButton();if(s!==0){var o=i.getSelectionRange(),u=o.isEmpty();(u||s==1)&&i.selection.moveToPosition(n),s==2&&(i.textInput.onContextMenu(e.domEvent),r.isMozilla||e.preventDefault());return}this.mousedownEvent.time=Date.now();if(t&&!i.isFocused()){i.focus();if(this.$focusTimeout&&!this.$clickSelection&&!i.inMultiSelectMode){this.setState("focusWait"),this.captureMouse(e);return}}return this.captureMouse(e),this.startSelect(n,e.domEvent._clicks>1),e.preventDefault()},e.prototype.startSelect=function(e,t){e=e||this.editor.renderer.screenToTextCoordinates(this.x,this.y);var n=this.editor;if(!this.mousedownEvent)return;this.mousedownEvent.getShiftKey()?n.selection.selectToPosition(e):t||n.selection.moveToPosition(e),t||this.select(),n.setStyle("ace_selecting"),this.setState("select")},e.prototype.select=function(){var e,t=this.editor,n=t.renderer.screenToTextCoordinates(this.x,this.y);if(this.$clickSelection){var r=this.$clickSelection.comparePoint(n);if(r==-1)e=this.$clickSelection.end;else if(r==1)e=this.$clickSelection.start;else{var i=a(this.$clickSelection,n);n=i.cursor,e=i.anchor}t.selection.setSelectionAnchor(e.row,e.column)}t.selection.selectToPosition(n),t.renderer.scrollCursorIntoView()},e.prototype.extendSelectionBy=function(e){var t,n=this.editor,r=n.renderer.screenToTextCoordinates(this.x,this.y),i=n.selection[e](r.row,r.column);if(this.$clickSelection){var s=this.$clickSelection.comparePoint(i.start),o=this.$clickSelection.comparePoint(i.end);if(s==-1&&o<=0){t=this.$clickSelection.end;if(i.end.row!=r.row||i.end.column!=r.column)r=i.start}else if(o==1&&s>=0){t=this.$clickSelection.start;if(i.start.row!=r.row||i.start.column!=r.column)r=i.end}else if(s==-1&&o==1)r=i.end,t=i.start;else{var u=a(this.$clickSelection,r);r=u.cursor,t=u.anchor}n.selection.setSelectionAnchor(t.row,t.column)}n.selection.selectToPosition(r),n.renderer.scrollCursorIntoView()},e.prototype.selectByLinesEnd=function(){this.$clickSelection=null,this.editor.unsetStyle("ace_selecting")},e.prototype.focusWait=function(){var e=u(this.mousedownEvent.x,this.mousedownEvent.y,this.x,this.y),t=Date.now();(e>i||t-this.mousedownEvent.time>this.$focusTimeout)&&this.startSelect(this.mousedownEvent.getDocumentPosition())},e.prototype.onDoubleClick=function(e){var t=e.getDocumentPosition(),n=this.editor,r=n.session,i=r.getBracketRange(t);i?(i.isEmpty()&&(i.start.column--,i.end.column++),this.setState("select")):(i=n.selection.getWordRange(t.row,t.column),this.setState("selectByWords")),this.$clickSelection=i,this.select()},e.prototype.onTripleClick=function(e){var t=e.getDocumentPosition(),n=this.editor;this.setState("selectByLines");var r=n.getSelectionRange();r.isMultiLine()&&r.contains(t.row,t.column)?(this.$clickSelection=n.selection.getLineRange(r.start.row),this.$clickSelection.end=n.selection.getLineRange(r.end.row).end):this.$clickSelection=n.selection.getLineRange(t.row),this.select()},e.prototype.onQuadClick=function(e){var t=this.editor;t.selectAll(),this.$clickSelection=t.getSelectionRange(),this.setState("selectAll")},e.prototype.onMouseWheel=function(e){if(e.getAccelKey())return;e.getShiftKey()&&e.wheelY&&!e.wheelX&&(e.wheelX=e.wheelY,e.wheelY=0);var t=this.editor;this.$lastScroll||(this.$lastScroll={t:0,vx:0,vy:0,allowed:0});var n=this.$lastScroll,r=e.domEvent.timeStamp,i=r-n.t,o=i?e.wheelX/i:n.vx,u=i?e.wheelY/i:n.vy;i<s&&(o=(o+n.vx)/2,u=(u+n.vy)/2);var a=Math.abs(o/u),f=!1;a>=1&&t.renderer.isScrollableBy(e.wheelX*e.speed,0)&&(f=!0),a<=1&&t.renderer.isScrollableBy(0,e.wheelY*e.speed)&&(f=!0);if(f)n.allowed=r;else if(r-n.allowed<s){var l=Math.abs(o)<=1.5*Math.abs(n.vx)&&Math.abs(u)<=1.5*Math.abs(n.vy);l?(f=!0,n.allowed=r):n.allowed=0}n.t=r,n.vx=o,n.vy=u;if(f)return t.renderer.scrollBy(e.wheelX*e.speed,e.wheelY*e.speed),e.stop()},e}();o.prototype.selectEnd=o.prototype.selectByLinesEnd,o.prototype.selectAllEnd=o.prototype.selectByLinesEnd,o.prototype.selectByWordsEnd=o.prototype.selectByLinesEnd,t.DefaultHandlers=o}),define("ace/lib/scroll",["require","exports","module"],function(e,t,n){t.preventParentScroll=function(t){t.stopPropagation();var n=t.currentTarget,r=n.scrollHeight>n.clientHeight;r||t.preventDefault()}}),define("ace/tooltip",["require","exports","module","ace/lib/dom","ace/lib/event","ace/range","ace/lib/scroll"],function(e,t,n){"use strict";var r=this&&this.__extends||function(){var e=function(t,n){return e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])},e(t,n)};return function(t,n){function r(){this.constructor=t}if(typeof n!="function"&&n!==null)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");e(t,n),t.prototype=n===null?Object.create(n):(r.prototype=n.prototype,new r)}}(),i=this&&this.__values||function(e){var t=typeof Symbol=="function"&&Symbol.iterator,n=t&&e[t],r=0;if(n)return n.call(e);if(e&&typeof e.length=="number")return{next:function(){return e&&r>=e.length&&(e=void 0),{value:e&&e[r++],done:!e}}};throw new TypeError(t?"Object is not iterable.":"Symbol.iterator is not defined.")},s=e("./lib/dom"),o=e("./lib/event"),u=e("./range").Range,a=e("./lib/scroll").preventParentScroll,f="ace_tooltip",l=function(){function e(e){this.isOpen=!1,this.$element=null,this.$parentNode=e}return e.prototype.$init=function(){return this.$element=s.createElement("div"),this.$element.className=f,this.$element.style.display="none",this.$parentNode.appendChild(this.$element),this.$element},e.prototype.getElement=function(){return this.$element||this.$init()},e.prototype.setText=function(e){this.getElement().textContent=e},e.prototype.setHtml=function(e){this.getElement().innerHTML=e},e.prototype.setPosition=function(e,t){this.getElement().style.left=e+"px",this.getElement().style.top=t+"px"},e.prototype.setClassName=function(e){s.addCssClass(this.getElement(),e)},e.prototype.setTheme=function(e){this.$element.className=f+" "+(e.isDark?"ace_dark ":"")+(e.cssClass||"")},e.prototype.show=function(e,t,n){e!=null&&this.setText(e),t!=null&&n!=null&&this.setPosition(t,n),this.isOpen||(this.getElement().style.display="block",this.isOpen=!0)},e.prototype.hide=function(e){this.isOpen&&(this.getElement().style.display="none",this.getElement().className=f,this.isOpen=!1)},e.prototype.getHeight=function(){return this.getElement().offsetHeight},e.prototype.getWidth=function(){return this.getElement().offsetWidth},e.prototype.destroy=function(){this.isOpen=!1,this.$element&&this.$element.parentNode&&this.$element.parentNode.removeChild(this.$element)},e}(),c=function(){function e(){this.popups=[]}return e.prototype.addPopup=function(e){this.popups.push(e),this.updatePopups()},e.prototype.removePopup=function(e){var t=this.popups.indexOf(e);t!==-1&&(this.popups.splice(t,1),this.updatePopups())},e.prototype.updatePopups=function(){var e,t,n,r;this.popups.sort(function(e,t){return t.priority-e.priority});var s=[];try{for(var o=i(this.popups),u=o.next();!u.done;u=o.next()){var a=u.value,f=!0;try{for(var l=(n=void 0,i(s)),c=l.next();!c.done;c=l.next()){var h=c.value;if(this.doPopupsOverlap(h,a)){f=!1;break}}}catch(p){n={error:p}}finally{try{c&&!c.done&&(r=l.return)&&r.call(l)}finally{if(n)throw n.error}}f?s.push(a):a.hide()}}catch(d){e={error:d}}finally{try{u&&!u.done&&(t=o.return)&&t.call(o)}finally{if(e)throw e.error}}},e.prototype.doPopupsOverlap=function(e,t){var n=e.getElement().getBoundingClientRect(),r=t.getElement().getBoundingClientRect();return n.left<r.right&&n.right>r.left&&n.top<r.bottom&&n.bottom>r.top},e}(),h=new c;t.popupManager=h,t.Tooltip=l;var p=function(e){function t(t){t===void 0&&(t=document.body);var n=e.call(this,t)||this;n.timeout=undefined,n.lastT=0,n.idleTime=350,n.lastEvent=undefined,n.onMouseOut=n.onMouseOut.bind(n),n.onMouseMove=n.onMouseMove.bind(n),n.waitForHover=n.waitForHover.bind(n),n.hide=n.hide.bind(n);var r=n.getElement();return r.style.whiteSpace="pre-wrap",r.style.pointerEvents="auto",r.addEventListener("mouseout",n.onMouseOut),r.tabIndex=-1,r.addEventListener("blur",function(){r.contains(document.activeElement)||this.hide()}.bind(n)),r.addEventListener("wheel",a),n}return r(t,e),t.prototype.addToEditor=function(e){e.on("mousemove",this.onMouseMove),e.on("mousedown",this.hide),e.renderer.getMouseEventTarget().addEventListener("mouseout",this.onMouseOut,!0)},t.prototype.removeFromEditor=function(e){e.off("mousemove",this.onMouseMove),e.off("mousedown",this.hide),e.renderer.getMouseEventTarget().removeEventListener("mouseout",this.onMouseOut,!0),this.timeout&&(clearTimeout(this.timeout),this.timeout=null)},t.prototype.onMouseMove=function(e,t){this.lastEvent=e,this.lastT=Date.now();var n=t.$mouseHandler.isMousePressed;if(this.isOpen){var r=this.lastEvent&&this.lastEvent.getDocumentPosition();(!this.range||!this.range.contains(r.row,r.column)||n||this.isOutsideOfText(this.lastEvent))&&this.hide()}if(this.timeout||n)return;this.lastEvent=e,this.timeout=setTimeout(this.waitForHover,this.idleTime)},t.prototype.waitForHover=function(){this.timeout&&clearTimeout(this.timeout);var e=Date.now()-this.lastT;if(this.idleTime-e>10){this.timeout=setTimeout(this.waitForHover,this.idleTime-e);return}this.timeout=null,this.lastEvent&&!this.isOutsideOfText(this.lastEvent)&&this.$gatherData(this.lastEvent,this.lastEvent.editor)},t.prototype.isOutsideOfText=function(e){var t=e.editor,n=e.getDocumentPosition(),r=t.session.getLine(n.row);if(n.column==r.length){var i=t.renderer.pixelToScreenCoordinates(e.clientX,e.clientY),s=t.session.documentToScreenPosition(n.row,n.column);if(s.column!=i.column||s.row!=i.row)return!0}return!1},t.prototype.setDataProvider=function(e){this.$gatherData=e},t.prototype.showForRange=function(e,t,n,r){var i=10;if(r&&r!=this.lastEvent)return;if(this.isOpen&&document.activeElement==this.getElement())return;var s=e.renderer;this.isOpen||(h.addPopup(this),this.$registerCloseEvents(),this.setTheme(s.theme)),this.isOpen=!0,this.addMarker(t,e.session),this.range=u.fromPoints(t.start,t.end);var o=s.textToScreenCoordinates(t.start.row,t.start.column),a=s.scroller.getBoundingClientRect();o.pageX<a.left&&(o.pageX=a.left);var f=this.getElement();f.innerHTML="",f.appendChild(n),f.style.maxHeight="",f.style.display="block";var l=f.clientHeight,c=f.clientWidth,p=window.innerHeight-o.pageY-s.lineHeight,d=!0;o.pageY-l<0&&o.pageY<p&&(d=!1),f.style.maxHeight=(d?o.pageY:p)-i+"px",f.style.top=d?"":o.pageY+s.lineHeight+"px",f.style.bottom=d?window.innerHeight-o.pageY+"px":"",f.style.left=Math.min(o.pageX,window.innerWidth-c-i)+"px"},t.prototype.addMarker=function(e,t){this.marker&&this.$markerSession.removeMarker(this.marker),this.$markerSession=t,this.marker=t&&t.addMarker(e,"ace_highlight-marker","text")},t.prototype.hide=function(e){if(!e&&document.activeElement==this.getElement())return;if(e&&e.target&&(e.type!="keydown"||e.ctrlKey||e.metaKey)&&this.$element.contains(e.target))return;this.lastEvent=null,this.timeout&&clearTimeout(this.timeout),this.timeout=null,this.addMarker(null),this.isOpen&&(this.$removeCloseEvents(),this.getElement().style.display="none",this.isOpen=!1,h.removePopup(this))},t.prototype.$registerCloseEvents=function(){window.addEventListener("keydown",this.hide,!0),window.addEventListener("wheel",this.hide,!0),window.addEventListener("mousedown",this.hide,!0)},t.prototype.$removeCloseEvents=function(){window.removeEventListener("keydown",this.hide,!0),window.removeEventListener("wheel",this.hide,!0),window.removeEventListener("mousedown",this.hide,!0)},t.prototype.onMouseOut=function(e){this.timeout&&(clearTimeout(this.timeout),this.timeout=null),this.lastEvent=null;if(!this.isOpen)return;if(!e.relatedTarget||this.getElement().contains(e.relatedTarget))return;if(e&&e.currentTarget.contains(e.relatedTarget))return;e.relatedTarget.classList.contains("ace_content")||this.hide()},t}(l);t.HoverTooltip=p}),define("ace/mouse/default_gutter_handler",["require","exports","module","ace/lib/dom","ace/lib/event","ace/tooltip","ace/config"],function(e,t,n){"use strict";function f(e){function a(){var i=u.getDocumentPosition().row,s=t.session.getLength();if(i==s){var o=t.renderer.pixelToScreenCoordinates(0,u.y).row,a=u.$pos;if(o>t.session.documentToScreenRow(a.row,a.column))return f()}r.showTooltip(i);if(!r.isOpen)return;t.on("mousewheel",f);if(e.$tooltipFollowsMouse)c(u);else{var l=u.getGutterRow(),h=n.$lines.get(l);if(h){var p=h.element.querySelector(".ace_gutter_annotation"),d=p.getBoundingClientRect(),v=r.getElement().style;v.left=d.right+"px",v.top=d.bottom+"px"}else c(u)}}function f(){i&&(i=clearTimeout(i)),r.isOpen&&(r.hideTooltip(),t.off("mousewheel",f))}function c(e){r.setPosition(e.x,e.y)}var t=e.editor,n=t.renderer.$gutterLayer,r=new l(t);e.editor.setDefaultHandler("guttermousedown",function(r){if(!t.isFocused()||r.getButton()!=0)return;var i=n.getRegion(r);if(i=="foldWidgets")return;var s=r.getDocumentPosition().row,o=t.session.selection;if(r.getShiftKey())o.selectTo(s,0);else{if(r.domEvent.detail==2)return t.selectAll(),r.preventDefault();e.$clickSelection=t.selection.getLineRange(s)}return e.setState("selectByLines"),e.captureMouse(r),r.preventDefault()});var i,u;e.editor.setDefaultHandler("guttermousemove",function(t){var n=t.domEvent.target||t.domEvent.srcElement;if(s.hasCssClass(n,"ace_fold-widget"))return f();r.isOpen&&e.$tooltipFollowsMouse&&c(t),u=t;if(i)return;i=setTimeout(function(){i=null,u&&!e.isMousePressed?a():f()},50)}),o.addListener(t.renderer.$gutter,"mouseout",function(e){u=null;if(!r.isOpen||i)return;i=setTimeout(function(){i=null,f()},50)},t),t.on("changeSession",f),t.on("input",f)}var r=this&&this.__extends||function(){var e=function(t,n){return e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])},e(t,n)};return function(t,n){function r(){this.constructor=t}if(typeof n!="function"&&n!==null)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");e(t,n),t.prototype=n===null?Object.create(n):(r.prototype=n.prototype,new r)}}(),i=this&&this.__values||function(e){var t=typeof Symbol=="function"&&Symbol.iterator,n=t&&e[t],r=0;if(n)return n.call(e);if(e&&typeof e.length=="number")return{next:function(){return e&&r>=e.length&&(e=void 0),{value:e&&e[r++],done:!e}}};throw new TypeError(t?"Object is not iterable.":"Symbol.iterator is not defined.")},s=e("../lib/dom"),o=e("../lib/event"),u=e("../tooltip").Tooltip,a=e("../config").nls;t.GutterHandler=f;var l=function(e){function t(t){var n=e.call(this,t.container)||this;return n.editor=t,n}return r(t,e),t.prototype.setPosition=function(e,t){var n=window.innerWidth||document.documentElement.clientWidth,r=window.innerHeight||document.documentElement.clientHeight,i=this.getWidth(),s=this.getHeight();e+=15,t+=15,e+i>n&&(e-=e+i-n),t+s>r&&(t-=20+s),u.prototype.setPosition.call(this,e,t)},Object.defineProperty(t,"annotationLabels",{get:function(){return{error:{singular:a("gutter-tooltip.aria-label.error.singular","error"),plural:a("gutter-tooltip.aria-label.error.plural","errors")},warning:{singular:a("gutter-tooltip.aria-label.warning.singular","warning"),plural:a("gutter-tooltip.aria-label.warning.plural","warnings")},info:{singular:a("gutter-tooltip.aria-label.info.singular","information message"),plural:a("gutter-tooltip.aria-label.info.plural","information messages")}}},enumerable:!1,configurable:!0}),t.prototype.showTooltip=function(e){var n=this.editor.renderer.$gutterLayer,r=n.$annotations[e],i;r?i={text:Array.from(r.text),type:Array.from(r.type)}:i={text:[],type:[]};var s=n.session.getFoldLine(e);if(s&&n.$showFoldedAnnotations){var o={error:[],warning:[],info:[]},u;for(var a=e+1;a<=s.end.row;a++){if(!n.$annotations[a])continue;for(var f=0;f<n.$annotations[a].text.length;f++){var l=n.$annotations[a].type[f];o[l].push(n.$annotations[a].text[f]);if(l==="error"){u="error_fold";continue}if(l==="warning"){u="warning_fold";continue}}}if(u==="error_fold"||u==="warning_fold"){var c="".concat(t.annotationsToSummaryString(o)," in folded code.");i.text.push(c),i.type.push(u)}}if(i.text.length===0)return this.hide();var h={error:[],warning:[],info:[]},p=n.$useSvgGutterIcons?"ace_icon_svg":"ace_icon";for(var a=0;a<i.text.length;a++){var d="<span class='ace_".concat(i.type[a]," ").concat(p,"' aria-label='").concat(t.annotationLabels[i.type[a].replace("_fold","")].singular,"' role=img> </span> ").concat(i.text[a]);h[i.type[a].replace("_fold","")].push(d)}var v=[].concat(h.error,h.warning,h.info).join("<br>");this.setHtml(v),this.$element.setAttribute("aria-live","polite"),this.isOpen||(this.setTheme(this.editor.renderer.theme),this.setClassName("ace_gutter-tooltip")),this.show(),this.editor._signal("showGutterTooltip",this)},t.prototype.hideTooltip=function(){this.$element.removeAttribute("aria-live"),this.hide(),this.editor._signal("hideGutterTooltip",this)},t.annotationsToSummaryString=function(e){var n,r,s=[],o=["error","warning","info"];try{for(var u=i(o),a=u.next();!a.done;a=u.next()){var f=a.value;if(!e[f].length)continue;var l=e[f].length===1?t.annotationLabels[f].singular:t.annotationLabels[f].plural;s.push("".concat(e[f].length," ").concat(l))}}catch(c){n={error:c}}finally{try{a&&!a.done&&(r=u.return)&&r.call(u)}finally{if(n)throw n.error}}return s.join(", ")},t}(u);t.GutterTooltip=l}),define("ace/mouse/mouse_event",["require","exports","module","ace/lib/event","ace/lib/useragent"],function(e,t,n){"use strict";var r=e("../lib/event"),i=e("../lib/useragent"),s=function(){function e(e,t){this.speed,this.wheelX,this.wheelY,this.domEvent=e,this.editor=t,this.x=this.clientX=e.clientX,this.y=this.clientY=e.clientY,this.$pos=null,this.$inSelection=null,this.propagationStopped=!1,this.defaultPrevented=!1}return e.prototype.stopPropagation=function(){r.stopPropagation(this.domEvent),this.propagationStopped=!0},e.prototype.preventDefault=function(){r.preventDefault(this.domEvent),this.defaultPrevented=!0},e.prototype.stop=function(){this.stopPropagation(),this.preventDefault()},e.prototype.getDocumentPosition=function(){return this.$pos?this.$pos:(this.$pos=this.editor.renderer.screenToTextCoordinates(this.clientX,this.clientY),this.$pos)},e.prototype.getGutterRow=function(){var e=this.getDocumentPosition().row,t=this.editor.session.documentToScreenRow(e,0),n=this.editor.session.documentToScreenRow(this.editor.renderer.$gutterLayer.$lines.get(0).row,0);return t-n},e.prototype.inSelection=function(){if(this.$inSelection!==null)return this.$inSelection;var e=this.editor,t=e.getSelectionRange();if(t.isEmpty())this.$inSelection=!1;else{var n=this.getDocumentPosition();this.$inSelection=t.contains(n.row,n.column)}return this.$inSelection},e.prototype.getButton=function(){return r.getButton(this.domEvent)},e.prototype.getShiftKey=function(){return this.domEvent.shiftKey},e.prototype.getAccelKey=function(){return i.isMac?this.domEvent.metaKey:this.domEvent.ctrlKey},e}();t.MouseEvent=s}),define("ace/mouse/dragdrop_handler",["require","exports","module","ace/lib/dom","ace/lib/event","ace/lib/useragent"],function(e,t,n){"use strict";function f(e){function T(e,n){var r=Date.now(),i=!n||e.row!=n.row,s=!n||e.column!=n.column;if(!S||i||s)t.moveCursorToPosition(e),S=r,x={x:p,y:d};else{var o=l(x.x,x.y,p,d);o>a?S=null:r-S>=u&&(t.renderer.scrollCursorIntoView(),S=null)}}function N(e,n){var r=Date.now(),i=t.renderer.layerConfig.lineHeight,s=t.renderer.layerConfig.characterWidth,u=t.renderer.scroller.getBoundingClientRect(),a={x:{left:p-u.left,right:u.right-p},y:{top:d-u.top,bottom:u.bottom-d}},f=Math.min(a.x.left,a.x.right),l=Math.min(a.y.top,a.y.bottom),c={row:e.row,column:e.column};f/s<=2&&(c.column+=a.x.left<a.x.right?-3:2),l/i<=1&&(c.row+=a.y.top<a.y.bottom?-1:1);var h=e.row!=c.row,v=e.column!=c.column,m=!n||e.row!=n.row;h||v&&!m?E?r-E>=o&&t.renderer.scrollCursorIntoView(c):E=r:E=null}function C(){var e=g;g=t.renderer.screenToTextCoordinates(p,d),T(g,e),N(g,e)}function k(){m=t.selection.toOrientedRange(),h=t.session.addMarker(m,"ace_selection",t.getSelectionStyle()),t.clearSelection(),t.isFocused()&&t.renderer.$cursorLayer.setBlinking(!1),clearInterval(v),C(),v=setInterval(C,20),y=0,i.addListener(document,"mousemove",O)}function L(){clearInterval(v),t.session.removeMarker(h),h=null,t.selection.fromOrientedRange(m),t.isFocused()&&!w&&t.$resetCursorStyle(),m=null,g=null,y=0,E=null,S=null,i.removeListener(document,"mousemove",O)}function O(){A==null&&(A=setTimeout(function(){A!=null&&h&&L()},20))}function M(e){var t=e.types;return!t||Array.prototype.some.call(t,function(e){return e=="text/plain"||e=="Text"})}function _(e){var t=["copy","copymove","all","uninitialized"],n=["move","copymove","linkmove","all","uninitialized"],r=s.isMac?e.altKey:e.ctrlKey,i="uninitialized";try{i=e.dataTransfer.effectAllowed.toLowerCase()}catch(e){}var o="none";return r&&t.indexOf(i)>=0?o="copy":n.indexOf(i)>=0?o="move":t.indexOf(i)>=0&&(o="copy"),o}var t=e.editor,n=r.createElement("div");n.style.cssText="top:-100px;position:absolute;z-index:2147483647;opacity:0.5",n.textContent="\u00a0";var f=["dragWait","dragWaitEnd","startDrag","dragReadyEnd","onMouseDrag"];f.forEach(function(t){e[t]=this[t]},this),t.on("mousedown",this.onMouseDown.bind(e));var c=t.container,h,p,d,v,m,g,y=0,b,w,E,S,x;this.onDragStart=function(e){if(this.cancelDrag||!c.draggable){var r=this;return setTimeout(function(){r.startSelect(),r.captureMouse(e)},0),e.preventDefault()}m=t.getSelectionRange();var i=e.dataTransfer;i.effectAllowed=t.getReadOnly()?"copy":"copyMove",t.container.appendChild(n),i.setDragImage&&i.setDragImage(n,0,0),setTimeout(function(){t.container.removeChild(n)}),i.clearData(),i.setData("Text",t.session.getTextRange()),w=!0,this.setState("drag")},this.onDragEnd=function(e){c.draggable=!1,w=!1,this.setState(null);if(!t.getReadOnly()){var n=e.dataTransfer.dropEffect;!b&&n=="move"&&t.session.remove(t.getSelectionRange()),t.$resetCursorStyle()}this.editor.unsetStyle("ace_dragging"),this.editor.renderer.setCursorStyle("")},this.onDragEnter=function(e){if(t.getReadOnly()||!M(e.dataTransfer))return;return p=e.clientX,d=e.clientY,h||k(),y++,e.dataTransfer.dropEffect=b=_(e),i.preventDefault(e)},this.onDragOver=function(e){if(t.getReadOnly()||!M(e.dataTransfer))return;return p=e.clientX,d=e.clientY,h||(k(),y++),A!==null&&(A=null),e.dataTransfer.dropEffect=b=_(e),i.preventDefault(e)},this.onDragLeave=function(e){y--;if(y<=0&&h)return L(),b=null,i.preventDefault(e)},this.onDrop=function(e){if(!g)return;var n=e.dataTransfer;if(w)switch(b){case"move":m.contains(g.row,g.column)?m={start:g,end:g}:m=t.moveText(m,g);break;case"copy":m=t.moveText(m,g,!0)}else{var r=n.getData("Text");m={start:g,end:t.session.insert(g,r)},t.focus(),b=null}return L(),i.preventDefault(e)},i.addListener(c,"dragstart",this.onDragStart.bind(e),t),i.addListener(c,"dragend",this.onDragEnd.bind(e),t),i.addListener(c,"dragenter",this.onDragEnter.bind(e),t),i.addListener(c,"dragover",this.onDragOver.bind(e),t),i.addListener(c,"dragleave",this.onDragLeave.bind(e),t),i.addListener(c,"drop",this.onDrop.bind(e),t);var A=null}function l(e,t,n,r){return Math.sqrt(Math.pow(n-e,2)+Math.pow(r-t,2))}var r=e("../lib/dom"),i=e("../lib/event"),s=e("../lib/useragent"),o=200,u=200,a=5;(function(){this.dragWait=function(){var e=Date.now()-this.mousedownEvent.time;e>this.editor.getDragDelay()&&this.startDrag()},this.dragWaitEnd=function(){var e=this.editor.container;e.draggable=!1,this.startSelect(this.mousedownEvent.getDocumentPosition()),this.selectEnd()},this.dragReadyEnd=function(e){this.editor.$resetCursorStyle(),this.editor.unsetStyle("ace_dragging"),this.editor.renderer.setCursorStyle(""),this.dragWaitEnd()},this.startDrag=function(){this.cancelDrag=!1;var e=this.editor,t=e.container;t.draggable=!0,e.renderer.$cursorLayer.setBlinking(!1),e.setStyle("ace_dragging");var n=s.isWin?"default":"move";e.renderer.setCursorStyle(n),this.setState("dragReady")},this.onMouseDrag=function(e){var t=this.editor.container;if(s.isIE&&this.state=="dragReady"){var n=l(this.mousedownEvent.x,this.mousedownEvent.y,this.x,this.y);n>3&&t.dragDrop()}if(this.state==="dragWait"){var n=l(this.mousedownEvent.x,this.mousedownEvent.y,this.x,this.y);n>0&&(t.draggable=!1,this.startSelect(this.mousedownEvent.getDocumentPosition()))}},this.onMouseDown=function(e){if(!this.$dragEnabled)return;this.mousedownEvent=e;var t=this.editor,n=e.inSelection(),r=e.getButton(),i=e.domEvent.detail||1;if(i===1&&r===0&&n){if(e.editor.inMultiSelectMode&&(e.getAccelKey()||e.getShiftKey()))return;this.mousedownEvent.time=Date.now();var o=e.domEvent.target||e.domEvent.srcElement;"unselectable"in o&&(o.unselectable="on");if(t.getDragDelay()){if(s.isWebKit){this.cancelDrag=!0;var u=t.container;u.draggable=!0}this.setState("dragWait")}else this.startDrag();this.captureMouse(e,this.onMouseDrag.bind(this)),e.defaultPrevented=!0}}}).call(f.prototype),t.DragdropHandler=f}),define("ace/mouse/touch_handler",["require","exports","module","ace/mouse/mouse_event","ace/lib/event","ace/lib/dom"],function(e,t,n){"use strict";var r=e("./mouse_event").MouseEvent,i=e("../lib/event"),s=e("../lib/dom");t.addTouchListeners=function(e,t){function b(){var e=window.navigator&&window.navigator.clipboard,r=!1,i=function(){var n=t.getCopyText(),i=t.session.getUndoManager().hasUndo();y.replaceChild(s.buildDom(r?["span",!n&&["span",{"class":"ace_mobile-button",action:"selectall"},"Select All"],n&&["span",{"class":"ace_mobile-button",action:"copy"},"Copy"],n&&["span",{"class":"ace_mobile-button",action:"cut"},"Cut"],e&&["span",{"class":"ace_mobile-button",action:"paste"},"Paste"],i&&["span",{"class":"ace_mobile-button",action:"undo"},"Undo"],["span",{"class":"ace_mobile-button",action:"find"},"Find"],["span",{"class":"ace_mobile-button",action:"openCommandPalette"},"Palette"]]:["span"]),y.firstChild)},o=function(n){var s=n.target.getAttribute("action");if(s=="more"||!r)return r=!r,i();if(s=="paste")e.readText().then(function(e){t.execCommand(s,e)});else if(s){if(s=="cut"||s=="copy")e?e.writeText(t.getCopyText()):document.execCommand("copy");t.execCommand(s)}y.firstChild.style.display="none",r=!1,s!="openCommandPalette"&&t.focus()};y=s.buildDom(["div",{"class":"ace_mobile-menu",ontouchstart:function(e){n="menu",e.stopPropagation(),e.preventDefault(),t.textInput.focus()},ontouchend:function(e){e.stopPropagation(),e.preventDefault(),o(e)},onclick:o},["span"],["span",{"class":"ace_mobile-button",action:"more"},"..."]],t.container)}function w(){y||b();var e=t.selection.cursor,n=t.renderer.textToScreenCoordinates(e.row,e.column),r=t.renderer.textToScreenCoordinates(0,0).pageX,i=t.renderer.scrollLeft,s=t.container.getBoundingClientRect();y.style.top=n.pageY-s.top-3+"px",n.pageX-s.left<s.width-70?(y.style.left="",y.style.right="10px"):(y.style.right="",y.style.left=r+i-s.left+"px"),y.style.display="",y.firstChild.style.display="none",t.on("input",E)}function E(e){y&&(y.style.display="none"),t.off("input",E)}function S(){l=null,clearTimeout(l);var e=t.selection.getRange(),r=e.contains(p.row,p.column);if(e.isEmpty()||!r)t.selection.moveToPosition(p),t.selection.selectWord();n="wait",w()}function x(){l=null,clearTimeout(l),t.selection.moveToPosition(p);var e=d>=2?t.selection.getLineRange(p.row):t.session.getBracketRange(p);e&&!e.isEmpty()?t.selection.setRange(e):t.selection.selectWord(),n="wait"}function T(){h+=60,c=setInterval(function(){h--<=0&&(clearInterval(c),c=null),Math.abs(v)<.01&&(v=0),Math.abs(m)<.01&&(m=0),h<20&&(v=.9*v),h<20&&(m=.9*m);var e=t.session.getScrollTop();t.renderer.scrollBy(10*v,10*m),e==t.session.getScrollTop()&&(h=0)},10)}var n="scroll",o,u,a,f,l,c,h=0,p,d=0,v=0,m=0,g,y;i.addListener(e,"contextmenu",function(e){if(!g)return;var n=t.textInput.getElement();n.focus()},t),i.addListener(e,"touchstart",function(e){var i=e.touches;if(l||i.length>1){clearTimeout(l),l=null,a=-1,n="zoom";return}g=t.$mouseHandler.isMousePressed=!0;var s=t.renderer.layerConfig.lineHeight,c=t.renderer.layerConfig.lineHeight,y=e.timeStamp;f=y;var b=i[0],w=b.clientX,E=b.clientY;Math.abs(o-w)+Math.abs(u-E)>s&&(a=-1),o=e.clientX=w,u=e.clientY=E,v=m=0;var T=new r(e,t);p=T.getDocumentPosition();if(y-a<500&&i.length==1&&!h)d++,e.preventDefault(),e.button=0,x();else{d=0;var N=t.selection.cursor,C=t.selection.isEmpty()?N:t.selection.anchor,k=t.renderer.$cursorLayer.getPixelPosition(N,!0),L=t.renderer.$cursorLayer.getPixelPosition(C,!0),A=t.renderer.scroller.getBoundingClientRect(),O=t.renderer.layerConfig.offset,M=t.renderer.scrollLeft,_=function(e,t){return e/=c,t=t/s-.75,e*e+t*t};if(e.clientX<A.left){n="zoom";return}var D=_(e.clientX-A.left-k.left+M,e.clientY-A.top-k.top+O),P=_(e.clientX-A.left-L.left+M,e.clientY-A.top-L.top+O);D<3.5&&P<3.5&&(n=D>P?"cursor":"anchor"),P<3.5?n="anchor":D<3.5?n="cursor":n="scroll",l=setTimeout(S,450)}a=y},t),i.addListener(e,"touchend",function(e){g=t.$mouseHandler.isMousePressed=!1,c&&clearInterval(c),n=="zoom"?(n="",h=0):l?(t.selection.moveToPosition(p),h=0,w()):n=="scroll"?(T(),E()):w(),clearTimeout(l),l=null},t),i.addListener(e,"touchmove",function(e){l&&(clearTimeout(l),l=null);var i=e.touches;if(i.length>1||n=="zoom")return;var s=i[0],a=o-s.clientX,c=u-s.clientY;if(n=="wait"){if(!(a*a+c*c>4))return e.preventDefault();n="cursor"}o=s.clientX,u=s.clientY,e.clientX=s.clientX,e.clientY=s.clientY;var h=e.timeStamp,p=h-f;f=h;if(n=="scroll"){var d=new r(e,t);d.speed=1,d.wheelX=a,d.wheelY=c,10*Math.abs(a)<Math.abs(c)&&(a=0),10*Math.abs(c)<Math.abs(a)&&(c=0),p!=0&&(v=a/p,m=c/p),t._emit("mousewheel",d),d.propagationStopped||(v=m=0)}else{var g=new r(e,t),y=g.getDocumentPosition();n=="cursor"?t.selection.moveCursorToPosition(y):n=="anchor"&&t.selection.setSelectionAnchor(y.row,y.column),t.renderer.scrollCursorIntoView(y),e.preventDefault()}},t)}}),define("ace/mouse/mouse_handler",["require","exports","module","ace/lib/event","ace/lib/useragent","ace/mouse/default_handlers","ace/mouse/default_gutter_handler","ace/mouse/mouse_event","ace/mouse/dragdrop_handler","ace/mouse/touch_handler","ace/config"],function(e,t,n){"use strict";var r=e("../lib/event"),i=e("../lib/useragent"),s=e("./default_handlers").DefaultHandlers,o=e("./default_gutter_handler").GutterHandler,u=e("./mouse_event").MouseEvent,a=e("./dragdrop_handler").DragdropHandler,f=e("./touch_handler").addTouchListeners,l=e("../config"),c=function(){function e(e){this.$dragDelay,this.$dragEnabled,this.$mouseMoved,this.mouseEvent,this.$focusTimeout;var t=this;this.editor=e,new s(this),new o(this),new a(this);var n=function(t){var n=!document.hasFocus||!document.hasFocus()||!e.isFocused()&&document.activeElement==(e.textInput&&e.textInput.getElement());n&&window.focus(),e.focus(),setTimeout(function(){e.isFocused()||e.focus()})},u=e.renderer.getMouseEventTarget();r.addListener(u,"click",this.onMouseEvent.bind(this,"click"),e),r.addListener(u,"mousemove",this.onMouseMove.bind(this,"mousemove"),e),r.addMultiMouseDownListener([u,e.renderer.scrollBarV&&e.renderer.scrollBarV.inner,e.renderer.scrollBarH&&e.renderer.scrollBarH.inner,e.textInput&&e.textInput.getElement()].filter(Boolean),[400,300,250],this,"onMouseEvent",e),r.addMouseWheelListener(e.container,this.onMouseWheel.bind(this,"mousewheel"),e),f(e.container,e);var l=e.renderer.$gutter;r.addListener(l,"mousedown",this.onMouseEvent.bind(this,"guttermousedown"),e),r.addListener(l,"click",this.onMouseEvent.bind(this,"gutterclick"),e),r.addListener(l,"dblclick",this.onMouseEvent.bind(this,"gutterdblclick"),e),r.addListener(l,"mousemove",this.onMouseEvent.bind(this,"guttermousemove"),e),r.addListener(u,"mousedown",n,e),r.addListener(l,"mousedown",n,e),i.isIE&&e.renderer.scrollBarV&&(r.addListener(e.renderer.scrollBarV.element,"mousedown",n,e),r.addListener(e.renderer.scrollBarH.element,"mousedown",n,e)),e.on("mousemove",function(n){if(t.state||t.$dragDelay||!t.$dragEnabled)return;var r=e.renderer.screenToTextCoordinates(n.x,n.y),i=e.session.selection.getRange(),s=e.renderer;!i.isEmpty()&&i.insideStart(r.row,r.column)?s.setCursorStyle("default"):s.setCursorStyle("")},e)}return e.prototype.onMouseEvent=function(e,t){if(!this.editor.session)return;this.editor._emit(e,new u(t,this.editor))},e.prototype.onMouseMove=function(e,t){var n=this.editor._eventRegistry&&this.editor._eventRegistry.mousemove;if(!n||!n.length)return;this.editor._emit(e,new u(t,this.editor))},e.prototype.onMouseWheel=function(e,t){var n=new u(t,this.editor);n.speed=this.$scrollSpeed*2,n.wheelX=t.wheelX,n.wheelY=t.wheelY,this.editor._emit(e,n)},e.prototype.setState=function(e){this.state=e},e.prototype.captureMouse=function(e,t){this.x=e.x,this.y=e.y,this.isMousePressed=!0;var n=this.editor,s=this.editor.renderer;s.$isMousePressed=!0;var o=this,a=function(e){if(!e)return;if(i.isWebKit&&!e.which&&o.releaseMouse)return o.releaseMouse();o.x=e.clientX,o.y=e.clientY,t&&t(e),o.mouseEvent=new u(e,o.editor),o.$mouseMoved=!0},f=function(e){n.off("beforeEndOperation",c),clearInterval(h),n.session&&l(),o[o.state+"End"]&&o[o.state+"End"](e),o.state="",o.isMousePressed=s.$isMousePressed=!1,s.$keepTextAreaAtCursor&&s.$moveTextAreaToCursor(),o.$onCaptureMouseMove=o.releaseMouse=null,e&&o.onMouseEvent("mouseup",e),n.endOperation()},l=function(){o[o.state]&&o[o.state](),o.$mouseMoved=!1};if(i.isOldIE&&e.domEvent.type=="dblclick")return setTimeout(function(){f(e)});var c=function(e){if(!o.releaseMouse)return;n.curOp.command.name&&n.curOp.selectionChanged&&(o[o.state+"End"]&&o[o.state+"End"](),o.state="",o.releaseMouse())};n.on("beforeEndOperation",c),n.startOperation({command:{name:"mouse"}}),o.$onCaptureMouseMove=a,o.releaseMouse=r.capture(this.editor.container,a,f);var h=setInterval(l,20)},e.prototype.cancelContextMenu=function(){var e=function(t){if(t&&t.domEvent&&t.domEvent.type!="contextmenu")return;this.editor.off("nativecontextmenu",e),t&&t.domEvent&&r.stopEvent(t.domEvent)}.bind(this);setTimeout(e,10),this.editor.on("nativecontextmenu",e)},e.prototype.destroy=function(){this.releaseMouse&&this.releaseMouse()},e}();c.prototype.releaseMouse=null,l.defineOptions(c.prototype,"mouseHandler",{scrollSpeed:{initialValue:2},dragDelay:{initialValue:i.isMac?150:0},dragEnabled:{initialValue:!0},focusTimeout:{initialValue:0},tooltipFollowsMouse:{initialValue:!0}}),t.MouseHandler=c}),define("ace/mouse/fold_handler",["require","exports","module","ace/lib/dom"],function(e,t,n){"use strict";var r=e("../lib/dom"),i=function(){function e(e){e.on("click",function(t){var n=t.getDocumentPosition(),i=e.session,s=i.getFoldAt(n.row,n.column,1);s&&(t.getAccelKey()?i.removeFold(s):i.expandFold(s),t.stop());var o=t.domEvent&&t.domEvent.target;o&&r.hasCssClass(o,"ace_inline_button")&&r.hasCssClass(o,"ace_toggle_wrap")&&(i.setOption("wrap",!i.getUseWrapMode()),e.renderer.scrollCursorIntoView())}),e.on("gutterclick",function(t){var n=e.renderer.$gutterLayer.getRegion(t);if(n=="foldWidgets"){var r=t.getDocumentPosition().row,i=e.session;i.foldWidgets&&i.foldWidgets[r]&&e.session.onFoldWidgetClick(r,t),e.isFocused()||e.focus(),t.stop()}}),e.on("gutterdblclick",function(t){var n=e.renderer.$gutterLayer.getRegion(t);if(n=="foldWidgets"){var r=t.getDocumentPosition().row,i=e.session,s=i.getParentFoldRangeData(r,!0),o=s.range||s.firstRange;if(o){r=o.start.row;var u=i.getFoldAt(r,i.getLine(r).length,1);u?i.removeFold(u):(i.addFold("...",o),e.renderer.scrollCursorIntoView({row:o.start.row,column:0}))}t.stop()}})}return e}();t.FoldHandler=i}),define("ace/keyboard/keybinding",["require","exports","module","ace/lib/keys","ace/lib/event"],function(e,t,n){"use strict";var r=e("../lib/keys"),i=e("../lib/event"),s=function(){function e(e){this.$editor=e,this.$data={editor:e},this.$handlers=[],this.setDefaultHandler(e.commands)}return e.prototype.setDefaultHandler=function(e){this.removeKeyboardHandler(this.$defaultHandler),this.$defaultHandler=e,this.addKeyboardHandler(e,0)},e.prototype.setKeyboardHandler=function(e){var t=this.$handlers;if(t[t.length-1]==e)return;while(t[t.length-1]&&t[t.length-1]!=this.$defaultHandler)this.removeKeyboardHandler(t[t.length-1]);this.addKeyboardHandler(e,1)},e.prototype.addKeyboardHandler=function(e,t){if(!e)return;typeof e=="function"&&!e.handleKeyboard&&(e.handleKeyboard=e);var n=this.$handlers.indexOf(e);n!=-1&&this.$handlers.splice(n,1),t==undefined?this.$handlers.push(e):this.$handlers.splice(t,0,e),n==-1&&e.attach&&e.attach(this.$editor)},e.prototype.removeKeyboardHandler=function(e){var t=this.$handlers.indexOf(e);return t==-1?!1:(this.$handlers.splice(t,1),e.detach&&e.detach(this.$editor),!0)},e.prototype.getKeyboardHandler=function(){return this.$handlers[this.$handlers.length-1]},e.prototype.getStatusText=function(){var e=this.$data,t=e.editor;return this.$handlers.map(function(n){return n.getStatusText&&n.getStatusText(t,e)||""}).filter(Boolean).join(" ")},e.prototype.$callKeyboardHandlers=function(e,t,n,r){var s,o=!1,u=this.$editor.commands;for(var a=this.$handlers.length;a--;){s=this.$handlers[a].handleKeyboard(this.$data,e,t,n,r);if(!s||!s.command)continue;s.command=="null"?o=!0:o=u.exec(s.command,this.$editor,s.args,r),o&&r&&e!=-1&&s["passEvent"]!=1&&s.command["passEvent"]!=1&&i.stopEvent(r);if(o)break}return!o&&e==-1&&(s={command:"insertstring"},o=u.exec("insertstring",this.$editor,t)),o&&this.$editor._signal&&this.$editor._signal("keyboardActivity",s),o},e.prototype.onCommandKey=function(e,t,n){var i=r.keyCodeToString(n);return this.$callKeyboardHandlers(t,i,n,e)},e.prototype.onTextInput=function(e){return this.$callKeyboardHandlers(-1,e)},e}();t.KeyBinding=s}),define("ace/lib/bidiutil",["require","exports","module"],function(e,t,n){"use strict";function F(e,t,n,r){var i=s?d:p,c=null,h=null,v=null,m=0,g=null,y=null,b=-1,w=null,E=null,T=[];if(!r)for(w=0,r=[];w<n;w++)r[w]=R(e[w]);o=s,u=!1,a=!1,f=!1,l=!1;for(E=0;E<n;E++){c=m,T[E]=h=q(e,r,T,E),m=i[c][h],g=m&240,m&=15,t[E]=v=i[m][5];if(g>0)if(g==16){for(w=b;w<E;w++)t[w]=1;b=-1}else b=-1;y=i[m][6];if(y)b==-1&&(b=E);else if(b>-1){for(w=b;w<E;w++)t[w]=v;b=-1}r[E]==S&&(t[E]=0),o|=v}if(l)for(w=0;w<n;w++)if(r[w]==x){t[w]=s;for(var C=w-1;C>=0;C--){if(r[C]!=N)break;t[C]=s}}}function I(e,t,n){if(o<e)return;if(e==1&&s==m&&!f){n.reverse();return}var r=n.length,i=0,u,a,l,c;while(i<r){if(t[i]>=e){u=i+1;while(u<r&&t[u]>=e)u++;for(a=i,l=u-1;a<l;a++,l--)c=n[a],n[a]=n[l],n[l]=c;i=u}i++}}function q(e,t,n,r){var i=t[r],o,c,h,p;switch(i){case g:case y:u=!1;case E:case w:return i;case b:return u?w:b;case T:return u=!0,a=!0,y;case N:return E;case C:if(r<1||r+1>=t.length||(o=n[r-1])!=b&&o!=w||(c=t[r+1])!=b&&c!=w)return E;return u&&(c=w),c==o?c:E;case k:o=r>0?n[r-1]:S;if(o==b&&r+1<t.length&&t[r+1]==b)return b;return E;case L:if(r>0&&n[r-1]==b)return b;if(u)return E;p=r+1,h=t.length;while(p<h&&t[p]==L)p++;if(p<h&&t[p]==b)return b;return E;case A:h=t.length,p=r+1;while(p<h&&t[p]==A)p++;if(p<h){var d=e[r],v=d>=1425&&d<=2303||d==64286;o=t[p];if(v&&(o==y||o==T))return y}if(r<1||(o=t[r-1])==S)return E;return n[r-1];case S:return u=!1,f=!0,s;case x:return l=!0,E;case O:case M:case D:case P:case _:u=!1;case H:return E}}function R(e){var t=e.charCodeAt(0),n=t>>8;return n==0?t>191?g:B[t]:n==5?/[\u0591-\u05f4]/.test(e)?y:g:n==6?/[\u0610-\u061a\u064b-\u065f\u06d6-\u06e4\u06e7-\u06ed]/.test(e)?A:/[\u0660-\u0669\u066b-\u066c]/.test(e)?w:t==1642?L:/[\u06f0-\u06f9]/.test(e)?b:T:n==32&&t<=8287?j[t&255]:n==254?t>=65136?T:E:E}function U(e){return e>="\u064b"&&e<="\u0655"}var r=["\u0621","\u0641"],i=["\u063a","\u064a"],s=0,o=0,u=!1,a=!1,f=!1,l=!1,c=!1,h=!1,p=[[0,3,0,1,0,0,0],[0,3,0,1,2,2,0],[0,3,0,17,2,0,1],[0,3,5,5,4,1,0],[0,3,21,21,4,0,1],[0,3,5,5,4,2,0]],d=[[2,0,1,1,0,1,0],[2,0,1,1,0,2,0],[2,0,2,1,3,2,0],[2,0,2,33,3,1,1]],v=0,m=1,g=0,y=1,b=2,w=3,E=4,S=5,x=6,T=7,N=8,C=9,k=10,L=11,A=12,O=13,M=14,_=15,D=16,P=17,H=18,B=[H,H,H,H,H,H,H,H,H,x,S,x,N,S,H,H,H,H,H,H,H,H,H,H,H,H,H,H,S,S,S,x,N,E,E,L,L,L,E,E,E,E,E,k,C,k,C,C,b,b,b,b,b,b,b,b,b,b,C,E,E,E,E,E,E,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,E,E,E,E,E,E,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,E,E,E,E,H,H,H,H,H,H,S,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,C,E,L,L,L,L,E,E,E,E,g,E,E,H,E,E,L,L,b,b,E,g,E,E,E,b,g,E,E,E,E,E],j=[N,N,N,N,N,N,N,N,N,N,N,H,H,H,g,y,E,E,E,E,E,E,E,E,E,E,E,E,E,E,E,E,E,E,E,E,E,E,E,E,N,S,O,M,_,D,P,C,L,L,L,L,L,E,E,E,E,E,E,E,E,E,E,E,E,E,E,E,C,E,E,E,E,E,E,E,E,E,E,E,E,E,E,E,E,E,E,E,E,E,E,E,E,E,E,N];t.L=g,t.R=y,t.EN=b,t.ON_R=3,t.AN=4,t.R_H=5,t.B=6,t.RLE=7,t.DOT="\u00b7",t.doBidiReorder=function(e,n,r){if(e.length<2)return{};var i=e.split(""),o=new Array(i.length),u=new Array(i.length),a=[];s=r?m:v,F(i,a,i.length,n);for(var f=0;f<o.length;o[f]=f,f++);I(2,a,o),I(1,a,o);for(var f=0;f<o.length-1;f++)n[f]===w?a[f]=t.AN:a[f]===y&&(n[f]>T&&n[f]<O||n[f]===E||n[f]===H)?a[f]=t.ON_R:f>0&&i[f-1]==="\u0644"&&/\u0622|\u0623|\u0625|\u0627/.test(i[f])&&(a[f-1]=a[f]=t.R_H,f++);i[i.length-1]===t.DOT&&(a[i.length-1]=t.B),i[0]==="\u202b"&&(a[0]=t.RLE);for(var f=0;f<o.length;f++)u[f]=a[o[f]];return{logicalFromVisual:o,bidiLevels:u}},t.hasBidiCharacters=function(e,t){var n=!1;for(var r=0;r<e.length;r++)t[r]=R(e.charAt(r)),!n&&(t[r]==y||t[r]==T||t[r]==w)&&(n=!0);return n},t.getVisualFromLogicalIdx=function(e,t){for(var n=0;n<t.logicalFromVisual.length;n++)if(t.logicalFromVisual[n]==e)return n;return 0}}),define("ace/bidihandler",["require","exports","module","ace/lib/bidiutil","ace/lib/lang"],function(e,t,n){"use strict";var r=e("./lib/bidiutil"),i=e("./lib/lang"),s=/[\u0590-\u05f4\u0600-\u06ff\u0700-\u08ac\u202B]/,o=function(){function e(e){this.session=e,this.bidiMap={},this.currentRow=null,this.bidiUtil=r,this.charWidths=[],this.EOL="\u00ac",this.showInvisibles=!0,this.isRtlDir=!1,this.$isRtl=!1,this.line="",this.wrapIndent=0,this.EOF="\u00b6",this.RLE="\u202b",this.contentWidth=0,this.fontMetrics=null,this.rtlLineOffset=0,this.wrapOffset=0,this.isMoveLeftOperation=!1,this.seenBidi=s.test(e.getValue())}return e.prototype.isBidiRow=function(e,t,n){return this.seenBidi?(e!==this.currentRow&&(this.currentRow=e,this.updateRowLine(t,n),this.updateBidiMap()),this.bidiMap.bidiLevels):!1},e.prototype.onChange=function(e){this.seenBidi?this.currentRow=null:e.action=="insert"&&s.test(e.lines.join("\n"))&&(this.seenBidi=!0,this.currentRow=null)},e.prototype.getDocumentRow=function(){var e=0,t=this.session.$screenRowCache;if(t.length){var n=this.session.$getRowCacheIndex(t,this.currentRow);n>=0&&(e=this.session.$docRowCache[n])}return e},e.prototype.getSplitIndex=function(){var e=0,t=this.session.$screenRowCache;if(t.length){var n,r=this.session.$getRowCacheIndex(t,this.currentRow);while(this.currentRow-e>0){n=this.session.$getRowCacheIndex(t,this.currentRow-e-1);if(n!==r)break;r=n,e++}}else e=this.currentRow;return e},e.prototype.updateRowLine=function(e,t){e===undefined&&(e=this.getDocumentRow());var n=e===this.session.getLength()-1,s=n?this.EOF:this.EOL;this.wrapIndent=0,this.line=this.session.getLine(e),this.isRtlDir=this.$isRtl||this.line.charAt(0)===this.RLE;if(this.session.$useWrapMode){var o=this.session.$wrapData[e];o&&(t===undefined&&(t=this.getSplitIndex()),t>0&&o.length?(this.wrapIndent=o.indent,this.wrapOffset=this.wrapIndent*this.charWidths[r.L],this.line=t<o.length?this.line.substring(o[t-1],o[t]):this.line.substring(o[o.length-1])):this.line=this.line.substring(0,o[t]),t==o.length&&(this.line+=this.showInvisibles?s:r.DOT))}else this.line+=this.showInvisibles?s:r.DOT;var u=this.session,a=0,f;this.line=this.line.replace(/\t|[\u1100-\u2029, \u202F-\uFFE6]/g,function(e,t){return e===" "||u.isFullWidth(e.charCodeAt(0))?(f=e===" "?u.getScreenTabSize(t+a):2,a+=f-1,i.stringRepeat(r.DOT,f)):e}),this.isRtlDir&&(this.fontMetrics.$main.textContent=this.line.charAt(this.line.length-1)==r.DOT?this.line.substr(0,this.line.length-1):this.line,this.rtlLineOffset=this.contentWidth-this.fontMetrics.$main.getBoundingClientRect().width)},e.prototype.updateBidiMap=function(){var e=[];r.hasBidiCharacters(this.line,e)||this.isRtlDir?this.bidiMap=r.doBidiReorder(this.line,e,this.isRtlDir):this.bidiMap={}},e.prototype.markAsDirty=function(){this.currentRow=null},e.prototype.updateCharacterWidths=function(e){if(this.characterWidth===e.$characterSize.width)return;this.fontMetrics=e;var t=this.characterWidth=e.$characterSize.width,n=e.$measureCharWidth("\u05d4");this.charWidths[r.L]=this.charWidths[r.EN]=this.charWidths[r.ON_R]=t,this.charWidths[r.R]=this.charWidths[r.AN]=n,this.charWidths[r.R_H]=n*.45,this.charWidths[r.B]=this.charWidths[r.RLE]=0,this.currentRow=null},e.prototype.setShowInvisibles=function(e){this.showInvisibles=e,this.currentRow=null},e.prototype.setEolChar=function(e){this.EOL=e},e.prototype.setContentWidth=function(e){this.contentWidth=e},e.prototype.isRtlLine=function(e){return this.$isRtl?!0:e!=undefined?this.session.getLine(e).charAt(0)==this.RLE:this.isRtlDir},e.prototype.setRtlDirection=function(e,t){var n=e.getCursorPosition();for(var r=e.selection.getSelectionAnchor().row;r<=n.row;r++)!t&&e.session.getLine(r).charAt(0)===e.session.$bidiHandler.RLE?e.session.doc.removeInLine(r,0,1):t&&e.session.getLine(r).charAt(0)!==e.session.$bidiHandler.RLE&&e.session.doc.insert({column:0,row:r},e.session.$bidiHandler.RLE)},e.prototype.getPosLeft=function(e){e-=this.wrapIndent;var t=this.line.charAt(0)===this.RLE?1:0,n=e>t?this.session.getOverwrite()?e:e-1:t,i=r.getVisualFromLogicalIdx(n,this.bidiMap),s=this.bidiMap.bidiLevels,o=0;!this.session.getOverwrite()&&e<=t&&s[i]%2!==0&&i++;for(var u=0;u<i;u++)o+=this.charWidths[s[u]];return!this.session.getOverwrite()&&e>t&&s[i]%2===0&&(o+=this.charWidths[s[i]]),this.wrapIndent&&(o+=this.isRtlDir?-1*this.wrapOffset:this.wrapOffset),this.isRtlDir&&(o+=this.rtlLineOffset),o},e.prototype.getSelections=function(e,t){var n=this.bidiMap,r=n.bidiLevels,i,s=[],o=0,u=Math.min(e,t)-this.wrapIndent,a=Math.max(e,t)-this.wrapIndent,f=!1,l=!1,c=0;this.wrapIndent&&(o+=this.isRtlDir?-1*this.wrapOffset:this.wrapOffset);for(var h,p=0;p<r.length;p++)h=n.logicalFromVisual[p],i=r[p],f=h>=u&&h<a,f&&!l?c=o:!f&&l&&s.push({left:c,width:o-c}),o+=this.charWidths[i],l=f;f&&p===r.length&&s.push({left:c,width:o-c});if(this.isRtlDir)for(var d=0;d<s.length;d++)s[d].left+=this.rtlLineOffset;return s},e.prototype.offsetToCol=function(e){this.isRtlDir&&(e-=this.rtlLineOffset);var t=0,e=Math.max(e,0),n=0,r=0,i=this.bidiMap.bidiLevels,s=this.charWidths[i[r]];this.wrapIndent&&(e-=this.isRtlDir?-1*this.wrapOffset:this.wrapOffset);while(e>n+s/2){n+=s;if(r===i.length-1){s=0;break}s=this.charWidths[i[++r]]}return r>0&&i[r-1]%2!==0&&i[r]%2===0?(e<n&&r--,t=this.bidiMap.logicalFromVisual[r]):r>0&&i[r-1]%2===0&&i[r]%2!==0?t=1+(e>n?this.bidiMap.logicalFromVisual[r]:this.bidiMap.logicalFromVisual[r-1]):this.isRtlDir&&r===i.length-1&&s===0&&i[r-1]%2===0||!this.isRtlDir&&r===0&&i[r]%2!==0?t=1+this.bidiMap.logicalFromVisual[r]:(r>0&&i[r-1]%2!==0&&s!==0&&r--,t=this.bidiMap.logicalFromVisual[r]),t===0&&this.isRtlDir&&t++,t+this.wrapIndent},e}();t.BidiHandler=o}),define("ace/selection",["require","exports","module","ace/lib/oop","ace/lib/lang","ace/lib/event_emitter","ace/range"],function(e,t,n){"use strict";var r=e("./lib/oop"),i=e("./lib/lang"),s=e("./lib/event_emitter").EventEmitter,o=e("./range").Range,u=function(){function e(e){this.session=e,this.doc=e.getDocument(),this.clearSelection(),this.cursor=this.lead=this.doc.createAnchor(0,0),this.anchor=this.doc.createAnchor(0,0),this.$silent=!1;var t=this;this.cursor.on("change",function(e){t.$cursorChanged=!0,t.$silent||t._emit("changeCursor"),!t.$isEmpty&&!t.$silent&&t._emit("changeSelection"),!t.$keepDesiredColumnOnChange&&e.old.column!=e.value.column&&(t.$desiredColumn=null)}),this.anchor.on("change",function(){t.$anchorChanged=!0,!t.$isEmpty&&!t.$silent&&t._emit("changeSelection")})}return e.prototype.isEmpty=function(){return this.$isEmpty||this.anchor.row==this.lead.row&&this.anchor.column==this.lead.column},e.prototype.isMultiLine=function(){return!this.$isEmpty&&this.anchor.row!=this.cursor.row},e.prototype.getCursor=function(){return this.lead.getPosition()},e.prototype.setAnchor=function(e,t){this.$isEmpty=!1,this.anchor.setPosition(e,t)},e.prototype.getAnchor=function(){return this.$isEmpty?this.getSelectionLead():this.anchor.getPosition()},e.prototype.getSelectionLead=function(){return this.lead.getPosition()},e.prototype.isBackwards=function(){var e=this.anchor,t=this.lead;return e.row>t.row||e.row==t.row&&e.column>t.column},e.prototype.getRange=function(){var e=this.anchor,t=this.lead;return this.$isEmpty?o.fromPoints(t,t):this.isBackwards()?o.fromPoints(t,e):o.fromPoints(e,t)},e.prototype.clearSelection=function(){this.$isEmpty||(this.$isEmpty=!0,this._emit("changeSelection"))},e.prototype.selectAll=function(){this.$setSelection(0,0,Number.MAX_VALUE,Number.MAX_VALUE)},e.prototype.setRange=function(e,t){var n=t?e.end:e.start,r=t?e.start:e.end;this.$setSelection(n.row,n.column,r.row,r.column)},e.prototype.$setSelection=function(e,t,n,r){if(this.$silent)return;var i=this.$isEmpty,s=this.inMultiSelectMode;this.$silent=!0,this.$cursorChanged=this.$anchorChanged=!1,this.anchor.setPosition(e,t),this.cursor.setPosition(n,r),this.$isEmpty=!o.comparePoints(this.anchor,this.cursor),this.$silent=!1,this.$cursorChanged&&this._emit("changeCursor"),(this.$cursorChanged||this.$anchorChanged||i!=this.$isEmpty||s)&&this._emit("changeSelection")},e.prototype.$moveSelection=function(e){var t=this.lead;this.$isEmpty&&this.setSelectionAnchor(t.row,t.column),e.call(this)},e.prototype.selectTo=function(e,t){this.$moveSelection(function(){this.moveCursorTo(e,t)})},e.prototype.selectToPosition=function(e){this.$moveSelection(function(){this.moveCursorToPosition(e)})},e.prototype.moveTo=function(e,t){this.clearSelection(),this.moveCursorTo(e,t)},e.prototype.moveToPosition=function(e){this.clearSelection(),this.moveCursorToPosition(e)},e.prototype.selectUp=function(){this.$moveSelection(this.moveCursorUp)},e.prototype.selectDown=function(){this.$moveSelection(this.moveCursorDown)},e.prototype.selectRight=function(){this.$moveSelection(this.moveCursorRight)},e.prototype.selectLeft=function(){this.$moveSelection(this.moveCursorLeft)},e.prototype.selectLineStart=function(){this.$moveSelection(this.moveCursorLineStart)},e.prototype.selectLineEnd=function(){this.$moveSelection(this.moveCursorLineEnd)},e.prototype.selectFileEnd=function(){this.$moveSelection(this.moveCursorFileEnd)},e.prototype.selectFileStart=function(){this.$moveSelection(this.moveCursorFileStart)},e.prototype.selectWordRight=function(){this.$moveSelection(this.moveCursorWordRight)},e.prototype.selectWordLeft=function(){this.$moveSelection(this.moveCursorWordLeft)},e.prototype.getWordRange=function(e,t){if(typeof t=="undefined"){var n=e||this.lead;e=n.row,t=n.column}return this.session.getWordRange(e,t)},e.prototype.selectWord=function(){this.setSelectionRange(this.getWordRange())},e.prototype.selectAWord=function(){var e=this.getCursor(),t=this.session.getAWordRange(e.row,e.column);this.setSelectionRange(t)},e.prototype.getLineRange=function(e,t){var n=typeof e=="number"?e:this.lead.row,r,i=this.session.getFoldLine(n);return i?(n=i.start.row,r=i.end.row):r=n,t===!0?new o(n,0,r,this.session.getLine(r).length):new o(n,0,r+1,0)},e.prototype.selectLine=function(){this.setSelectionRange(this.getLineRange())},e.prototype.moveCursorUp=function(){this.moveCursorBy(-1,0)},e.prototype.moveCursorDown=function(){this.moveCursorBy(1,0)},e.prototype.wouldMoveIntoSoftTab=function(e,t,n){var r=e.column,i=e.column+t;return n<0&&(r=e.column-t,i=e.column),this.session.isTabStop(e)&&this.doc.getLine(e.row).slice(r,i).split(" ").length-1==t},e.prototype.moveCursorLeft=function(){var e=this.lead.getPosition(),t;if(t=this.session.getFoldAt(e.row,e.column,-1))this.moveCursorTo(t.start.row,t.start.column);else if(e.column===0)e.row>0&&this.moveCursorTo(e.row-1,this.doc.getLine(e.row-1).length);else{var n=this.session.getTabSize();this.wouldMoveIntoSoftTab(e,n,-1)&&!this.session.getNavigateWithinSoftTabs()?this.moveCursorBy(0,-n):this.moveCursorBy(0,-1)}},e.prototype.moveCursorRight=function(){var e=this.lead.getPosition(),t;if(t=this.session.getFoldAt(e.row,e.column,1))this.moveCursorTo(t.end.row,t.end.column);else if(this.lead.column==this.doc.getLine(this.lead.row).length)this.lead.row<this.doc.getLength()-1&&this.moveCursorTo(this.lead.row+1,0);else{var n=this.session.getTabSize(),e=this.lead;this.wouldMoveIntoSoftTab(e,n,1)&&!this.session.getNavigateWithinSoftTabs()?this.moveCursorBy(0,n):this.moveCursorBy(0,1)}},e.prototype.moveCursorLineStart=function(){var e=this.lead.row,t=this.lead.column,n=this.session.documentToScreenRow(e,t),r=this.session.screenToDocumentPosition(n,0),i=this.session.getDisplayLine(e,null,r.row,r.column),s=i.match(/^\s*/);s[0].length!=t&&!this.session.$useEmacsStyleLineStart&&(r.column+=s[0].length),this.moveCursorToPosition(r)},e.prototype.moveCursorLineEnd=function(){var e=this.lead,t=this.session.getDocumentLastRowColumnPosition(e.row,e.column);if(this.lead.column==t.column){var n=this.session.getLine(t.row);if(t.column==n.length){var r=n.search(/\s+$/);r>0&&(t.column=r)}}this.moveCursorTo(t.row,t.column)},e.prototype.moveCursorFileEnd=function(){var e=this.doc.getLength()-1,t=this.doc.getLine(e).length;this.moveCursorTo(e,t)},e.prototype.moveCursorFileStart=function(){this.moveCursorTo(0,0)},e.prototype.moveCursorLongWordRight=function(){var e=this.lead.row,t=this.lead.column,n=this.doc.getLine(e),r=n.substring(t);this.session.nonTokenRe.lastIndex=0,this.session.tokenRe.lastIndex=0;var i=this.session.getFoldAt(e,t,1);if(i){this.moveCursorTo(i.end.row,i.end.column);return}this.session.nonTokenRe.exec(r)&&(t+=this.session.nonTokenRe.lastIndex,this.session.nonTokenRe.lastIndex=0,r=n.substring(t));if(t>=n.length){this.moveCursorTo(e,n.length),this.moveCursorRight(),e<this.doc.getLength()-1&&this.moveCursorWordRight();return}this.session.tokenRe.exec(r)&&(t+=this.session.tokenRe.lastIndex,this.session.tokenRe.lastIndex=0),this.moveCursorTo(e,t)},e.prototype.moveCursorLongWordLeft=function(){var e=this.lead.row,t=this.lead.column,n;if(n=this.session.getFoldAt(e,t,-1)){this.moveCursorTo(n.start.row,n.start.column);return}var r=this.session.getFoldStringAt(e,t,-1);r==null&&(r=this.doc.getLine(e).substring(0,t));var s=i.stringReverse(r);this.session.nonTokenRe.lastIndex=0,this.session.tokenRe.lastIndex=0,this.session.nonTokenRe.exec(s)&&(t-=this.session.nonTokenRe.lastIndex,s=s.slice(this.session.nonTokenRe.lastIndex),this.session.nonTokenRe.lastIndex=0);if(t<=0){this.moveCursorTo(e,0),this.moveCursorLeft(),e>0&&this.moveCursorWordLeft();return}this.session.tokenRe.exec(s)&&(t-=this.session.tokenRe.lastIndex,this.session.tokenRe.lastIndex=0),this.moveCursorTo(e,t)},e.prototype.$shortWordEndIndex=function(e){var t=0,n,r=/\s/,i=this.session.tokenRe;i.lastIndex=0;if(this.session.tokenRe.exec(e))t=this.session.tokenRe.lastIndex;else{while((n=e[t])&&r.test(n))t++;if(t<1){i.lastIndex=0;while((n=e[t])&&!i.test(n)){i.lastIndex=0,t++;if(r.test(n)){if(t>2){t--;break}while((n=e[t])&&r.test(n))t++;if(t>2)break}}}}return i.lastIndex=0,t},e.prototype.moveCursorShortWordRight=function(){var e=this.lead.row,t=this.lead.column,n=this.doc.getLine(e),r=n.substring(t),i=this.session.getFoldAt(e,t,1);if(i)return this.moveCursorTo(i.end.row,i.end.column);if(t==n.length){var s=this.doc.getLength();do e++,r=this.doc.getLine(e);while(e<s&&/^\s*$/.test(r));/^\s+/.test(r)||(r=""),t=0}var o=this.$shortWordEndIndex(r);this.moveCursorTo(e,t+o)},e.prototype.moveCursorShortWordLeft=function(){var e=this.lead.row,t=this.lead.column,n;if(n=this.session.getFoldAt(e,t,-1))return this.moveCursorTo(n.start.row,n.start.column);var r=this.session.getLine(e).substring(0,t);if(t===0){do e--,r=this.doc.getLine(e);while(e>0&&/^\s*$/.test(r));t=r.length,/\s+$/.test(r)||(r="")}var s=i.stringReverse(r),o=this.$shortWordEndIndex(s);return this.moveCursorTo(e,t-o)},e.prototype.moveCursorWordRight=function(){this.session.$selectLongWords?this.moveCursorLongWordRight():this.moveCursorShortWordRight()},e.prototype.moveCursorWordLeft=function(){this.session.$selectLongWords?this.moveCursorLongWordLeft():this.moveCursorShortWordLeft()},e.prototype.moveCursorBy=function(e,t){var n=this.session.documentToScreenPosition(this.lead.row,this.lead.column),r;t===0&&(e!==0&&(this.session.$bidiHandler.isBidiRow(n.row,this.lead.row)?(r=this.session.$bidiHandler.getPosLeft(n.column),n.column=Math.round(r/this.session.$bidiHandler.charWidths[0])):r=n.column*this.session.$bidiHandler.charWidths[0]),this.$desiredColumn?n.column=this.$desiredColumn:this.$desiredColumn=n.column);if(e!=0&&this.session.lineWidgets&&this.session.lineWidgets[this.lead.row]){var i=this.session.lineWidgets[this.lead.row];e<0?e-=i.rowsAbove||0:e>0&&(e+=i.rowCount-(i.rowsAbove||0))}var s=this.session.screenToDocumentPosition(n.row+e,n.column,r);e!==0&&t===0&&s.row===this.lead.row&&s.column===this.lead.column,this.moveCursorTo(s.row,s.column+t,t===0)},e.prototype.moveCursorToPosition=function(e){this.moveCursorTo(e.row,e.column)},e.prototype.moveCursorTo=function(e,t,n){var r=this.session.getFoldAt(e,t,1);r&&(e=r.start.row,t=r.start.column),this.$keepDesiredColumnOnChange=!0;var i=this.session.getLine(e);/[\uDC00-\uDFFF]/.test(i.charAt(t))&&i.charAt(t-1)&&(this.lead.row==e&&this.lead.column==t+1?t-=1:t+=1),this.lead.setPosition(e,t),this.$keepDesiredColumnOnChange=!1,n||(this.$desiredColumn=null)},e.prototype.moveCursorToScreen=function(e,t,n){var r=this.session.screenToDocumentPosition(e,t);this.moveCursorTo(r.row,r.column,n)},e.prototype.detach=function(){this.lead.detach(),this.anchor.detach()},e.prototype.fromOrientedRange=function(e){this.setSelectionRange(e,e.cursor==e.start),this.$desiredColumn=e.desiredColumn||this.$desiredColumn},e.prototype.toOrientedRange=function(e){var t=this.getRange();return e?(e.start.column=t.start.column,e.start.row=t.start.row,e.end.column=t.end.column,e.end.row=t.end.row):e=t,e.cursor=this.isBackwards()?e.start:e.end,e.desiredColumn=this.$desiredColumn,e},e.prototype.getRangeOfMovements=function(e){var t=this.getCursor();try{e(this);var n=this.getCursor();return o.fromPoints(t,n)}catch(r){return o.fromPoints(t,t)}finally{this.moveCursorToPosition(t)}},e.prototype.toJSON=function(){if(this.rangeCount)var e=this.ranges.map(function(e){var t=e.clone();return t.isBackwards=e.cursor==e.start,t});else{var e=this.getRange();e.isBackwards=this.isBackwards()}return e},e.prototype.fromJSON=function(e){if(e.start==undefined){if(this.rangeList&&e.length>1){this.toSingleRange(e[0]);for(var t=e.length;t--;){var n=o.fromPoints(e[t].start,e[t].end);e[t].isBackwards&&(n.cursor=n.start),this.addRange(n,!0)}return}e=e[0]}this.rangeList&&this.toSingleRange(e),this.setSelectionRange(e,e.isBackwards)},e.prototype.isEqual=function(e){if((e.length||this.rangeCount)&&e.length!=this.rangeCount)return!1;if(!e.length||!this.ranges)return this.getRange().isEqual(e);for(var t=this.ranges.length;t--;)if(!this.ranges[t].isEqual(e[t]))return!1;return!0},e}();u.prototype.setSelectionAnchor=u.prototype.setAnchor,u.prototype.getSelectionAnchor=u.prototype.getAnchor,u.prototype.setSelectionRange=u.prototype.setRange,r.implement(u.prototype,s),t.Selection=u}),define("ace/tokenizer",["require","exports","module","ace/lib/report_error"],function(e,t,n){"use strict";var r=e("./lib/report_error").reportError,i=2e3,s=function(){function e(e){this.splitRegex,this.states=e,this.regExps={},this.matchMappings={};for(var t in this.states){var n=this.states[t],r=[],i=0,s=this.matchMappings[t]={defaultToken:"text"},o="g",u=[];for(var a=0;a<n.length;a++){var f=n[a];f.defaultToken&&(s.defaultToken=f.defaultToken),f.caseInsensitive&&o.indexOf("i")===-1&&(o+="i"),f.unicode&&o.indexOf("u")===-1&&(o+="u");if(f.regex==null)continue;f.regex instanceof RegExp&&(f.regex=f.regex.toString().slice(1,-1));var l=f.regex,c=(new RegExp("(?:("+l+")|(.))")).exec("a").length-2;Array.isArray(f.token)?f.token.length==1||c==1?f.token=f.token[0]:c-1!=f.token.length?(this.reportError("number of classes and regexp groups doesn't match",{rule:f,groupCount:c-1}),f.token=f.token[0]):(f.tokenArray=f.token,f.token=null,f.onMatch=this.$arrayTokens):typeof f.token=="function"&&!f.onMatch&&(c>1?f.onMatch=this.$applyToken:f.onMatch=f.token),c>1&&(/\\\d/.test(f.regex)?l=f.regex.replace(/\\([0-9]+)/g,function(e,t){return"\\"+(parseInt(t,10)+i+1)}):(c=1,l=this.removeCapturingGroups(f.regex)),!f.splitRegex&&typeof f.token!="string"&&u.push(f)),s[i]=a,i+=c,r.push(l),f.onMatch||(f.onMatch=null)}r.length||(s[0]=0,r.push("$")),u.forEach(function(e){e.splitRegex=this.createSplitterRegexp(e.regex,o)},this),this.regExps[t]=new RegExp("("+r.join(")|(")+")|($)",o)}}return e.prototype.$setMaxTokenCount=function(e){i=e|0},e.prototype.$applyToken=function(e){var t=this.splitRegex.exec(e).slice(1),n=this.token.apply(this,t);if(typeof n=="string")return[{type:n,value:e}];var r=[];for(var i=0,s=n.length;i<s;i++)t[i]&&(r[r.length]={type:n[i],value:t[i]});return r},e.prototype.$arrayTokens=function(e){if(!e)return[];var t=this.splitRegex.exec(e);if(!t)return"text";var n=[],r=this.tokenArray;for(var i=0,s=r.length;i<s;i++)t[i+1]&&(n[n.length]={type:r[i],value:t[i+1]});return n},e.prototype.removeCapturingGroups=function(e){var t=e.replace(/\\.|\[(?:\\.|[^\\\]])*|\(\?[:=!<]|(\()/g,function(e,t){return t?"(?:":e});return t},e.prototype.createSplitterRegexp=function(e,t){if(e.indexOf("(?=")!=-1){var n=0,r=!1,i={};e.replace(/(\\.)|(\((?:\?[=!])?)|(\))|([\[\]])/g,function(e,t,s,o,u,a){return r?r=u!="]":u?r=!0:o?(n==i.stack&&(i.end=a+1,i.stack=-1),n--):s&&(n++,s.length!=1&&(i.stack=n,i.start=a)),e}),i.end!=null&&/^\)*$/.test(e.substr(i.end))&&(e=e.substring(0,i.start)+e.substr(i.end))}return e.charAt(0)!="^"&&(e="^"+e),e.charAt(e.length-1)!="$"&&(e+="$"),new RegExp(e,(t||"").replace("g",""))},e.prototype.getLineTokens=function(e,t){if(t&&typeof t!="string"){var n=t.slice(0);t=n[0],t==="#tmp"&&(n.shift(),t=n.shift())}else var n=[];var r=t||"start",s=this.states[r];s||(r="start",s=this.states[r]);var o=this.matchMappings[r],u=this.regExps[r];u.lastIndex=0;var a,f=[],l=0,c=0,h={type:null,value:""};while(a=u.exec(e)){var p=o.defaultToken,d=null,v=a[0],m=u.lastIndex;if(m-v.length>l){var g=e.substring(l,m-v.length);h.type==p?h.value+=g:(h.type&&f.push(h),h={type:p,value:g})}for(var y=0;y<a.length-2;y++){if(a[y+1]===undefined)continue;d=s[o[y]],d.onMatch?p=d.onMatch(v,r,n,e):p=d.token,d.next&&(typeof d.next=="string"?r=d.next:r=d.next(r,n),s=this.states[r],s||(this.reportError("state doesn't exist",r),r="start",s=this.states[r]),o=this.matchMappings[r],l=m,u=this.regExps[r],u.lastIndex=m),d.consumeLineEnd&&(l=m);break}if(v)if(typeof p=="string")!!d&&d.merge===!1||h.type!==p?(h.type&&f.push(h),h={type:p,value:v}):h.value+=v;else if(p){h.type&&f.push(h),h={type:null,value:""};for(var y=0;y<p.length;y++)f.push(p[y])}if(l==e.length)break;l=m;if(c++>i){c>2*e.length&&this.reportError("infinite loop with in ace tokenizer",{startState:t,line:e});while(l<e.length)h.type&&f.push(h),h={value:e.substring(l,l+=500),type:"overflow"};r="start",n=[];break}}return h.type&&f.push(h),n.length>1&&n[0]!==r&&n.unshift("#tmp",r),{tokens:f,state:n.length?n:r}},e}();s.prototype.reportError=r,t.Tokenizer=s}),define("ace/mode/text_highlight_rules",["require","exports","module","ace/lib/deep_copy"],function(e,t,n){"use strict";var r=e("../lib/deep_copy").deepCopy,i;i=function(){this.$rules={start:[{token:"empty_line",regex:"^$"},{defaultToken:"text"}]}},function(){this.addRules=function(e,t){if(!t){for(var n in e)this.$rules[n]=e[n];return}for(var n in e){var r=e[n];for(var i=0;i<r.length;i++){var s=r[i];if(s.next||s.onMatch)typeof s.next=="string"&&s.next.indexOf(t)!==0&&(s.next=t+s.next),s.nextState&&s.nextState.indexOf(t)!==0&&(s.nextState=t+s.nextState)}this.$rules[t+n]=r}},this.getRules=function(){return this.$rules},this.embedRules=function(e,t,n,i,s){var o=typeof e=="function"?(new e).getRules():e;if(i)for(var u=0;u<i.length;u++)i[u]=t+i[u];else{i=[];for(var a in o)i.push(t+a)}this.addRules(o,t);if(n){var f=Array.prototype[s?"push":"unshift"];for(var u=0;u<i.length;u++)f.apply(this.$rules[i[u]],r(n))}this.$embeds||(this.$embeds=[]),this.$embeds.push(t)},this.getEmbeds=function(){return this.$embeds};var e=function(e,t){return(e!="start"||t.length)&&t.unshift(this.nextState,e),this.nextState},t=function(e,t){return t.shift(),t.shift()||"start"};this.normalizeRules=function(){function i(s){var o=r[s];o.processed=!0;for(var u=0;u<o.length;u++){var a=o[u],f=null;Array.isArray(a)&&(f=a,a={}),!a.regex&&a.start&&(a.regex=a.start,a.next||(a.next=[]),a.next.push({defaultToken:a.token},{token:a.token+".end",regex:a.end||a.start,next:"pop"}),a.token=a.token+".start",a.push=!0);var l=a.next||a.push;if(l&&Array.isArray(l)){var c=a.stateName;c||(c=a.token,typeof c!="string"&&(c=c[0]||""),r[c]&&(c+=n++)),r[c]=l,a.next=c,i(c)}else l=="pop"&&(a.next=t);a.push&&(a.nextState=a.next||a.push,a.next=e,delete a.push);if(a.rules)for(var h in a.rules)r[h]?r[h].push&&r[h].push.apply(r[h],a.rules[h]):r[h]=a.rules[h];var p=typeof a=="string"?a:a.include;p&&(p==="$self"&&(p="start"),Array.isArray(p)?f=p.map(function(e){return r[e]}):f=r[p]);if(f){var d=[u,1].concat(f);a.noEscape&&(d=d.filter(function(e){return!e.next})),o.splice.apply(o,d),u--}a.keywordMap&&(a.token=this.createKeywordMapper(a.keywordMap,a.defaultToken||"text",a.caseInsensitive),delete a.defaultToken)}}var n=0,r=this.$rules;Object.keys(r).forEach(i,this)},this.createKeywordMapper=function(e,t,n,r){var i=Object.create(null);return this.$keywordList=[],Object.keys(e).forEach(function(t){var s=e[t],o=s.split(r||"|");for(var u=o.length;u--;){var a=o[u];this.$keywordList.push(a),n&&(a=a.toLowerCase()),i[a]=t}},this),e=null,n?function(e){return i[e.toLowerCase()]||t}:function(e){return i[e]||t}},this.getKeywords=function(){return this.$keywords}}.call(i.prototype),t.TextHighlightRules=i}),define("ace/mode/behaviour",["require","exports","module"],function(e,t,n){"use strict";var r;r=function(){this.$behaviours={}},function(){this.add=function(e,t,n){switch(undefined){case this.$behaviours:this.$behaviours={};case this.$behaviours[e]:this.$behaviours[e]={}}this.$behaviours[e][t]=n},this.addBehaviours=function(e){for(var t in e)for(var n in e[t])this.add(t,n,e[t][n])},this.remove=function(e){this.$behaviours&&this.$behaviours[e]&&delete this.$behaviours[e]},this.inherit=function(e,t){if(typeof e=="function")var n=(new e).getBehaviours(t);else var n=e.getBehaviours(t);this.addBehaviours(n)},this.getBehaviours=function(e){if(!e)return this.$behaviours;var t={};for(var n=0;n<e.length;n++)this.$behaviours[e[n]]&&(t[e[n]]=this.$behaviours[e[n]]);return t}}.call(r.prototype),t.Behaviour=r}),define("ace/token_iterator",["require","exports","module","ace/range"],function(e,t,n){"use strict";var r=e("./range").Range,i=function(){function e(e,t,n){this.$session=e,this.$row=t,this.$rowTokens=e.getTokens(t);var r=e.getTokenAt(t,n);this.$tokenIndex=r?r.index:-1}return e.prototype.stepBackward=function(){this.$tokenIndex-=1;while(this.$tokenIndex<0){this.$row-=1;if(this.$row<0)return this.$row=0,null;this.$rowTokens=this.$session.getTokens(this.$row),this.$tokenIndex=this.$rowTokens.length-1}return this.$rowTokens[this.$tokenIndex]},e.prototype.stepForward=function(){this.$tokenIndex+=1;var e;while(this.$tokenIndex>=this.$rowTokens.length){this.$row+=1,e||(e=this.$session.getLength());if(this.$row>=e)return this.$row=e-1,null;this.$rowTokens=this.$session.getTokens(this.$row),this.$tokenIndex=0}return this.$rowTokens[this.$tokenIndex]},e.prototype.getCurrentToken=function(){return this.$rowTokens[this.$tokenIndex]},e.prototype.getCurrentTokenRow=function(){return this.$row},e.prototype.getCurrentTokenColumn=function(){var e=this.$rowTokens,t=this.$tokenIndex,n=e[t].start;if(n!==undefined)return n;n=0;while(t>0)t-=1,n+=e[t].value.length;return n},e.prototype.getCurrentTokenPosition=function(){return{row:this.$row,column:this.getCurrentTokenColumn()}},e.prototype.getCurrentTokenRange=function(){var e=this.$rowTokens[this.$tokenIndex],t=this.getCurrentTokenColumn();return new r(this.$row,t,this.$row,t+e.value.length)},e}();t.TokenIterator=i}),define("ace/mode/behaviour/cstyle",["require","exports","module","ace/lib/oop","ace/mode/behaviour","ace/token_iterator","ace/lib/lang"],function(e,t,n){"use strict";var r=e("../../lib/oop"),i=e("../behaviour").Behaviour,s=e("../../token_iterator").TokenIterator,o=e("../../lib/lang"),u=["text","paren.rparen","rparen","paren","punctuation.operator"],a=["text","paren.rparen","rparen","paren","punctuation.operator","comment"],f,l={},c={'"':'"',"'":"'"},h=function(e){var t=-1;e.multiSelect&&(t=e.selection.index,l.rangeCount!=e.multiSelect.rangeCount&&(l={rangeCount:e.multiSelect.rangeCount}));if(l[t])return f=l[t];f=l[t]={autoInsertedBrackets:0,autoInsertedRow:-1,autoInsertedLineEnd:"",maybeInsertedBrackets:0,maybeInsertedRow:-1,maybeInsertedLineStart:"",maybeInsertedLineEnd:""}},p=function(e,t,n,r){var i=e.end.row-e.start.row;return{text:n+t+r,selection:[0,e.start.column+1,i,e.end.column+(i?0:1)]}},d;d=function(e){e=e||{},this.add("braces","insertion",function(t,n,r,i,s){var u=r.getCursorPosition(),a=i.doc.getLine(u.row);if(s=="{"){h(r);var l=r.getSelectionRange(),c=i.doc.getTextRange(l),v=i.getTokenAt(u.row,u.column);if(c!==""&&c!=="{"&&r.getWrapBehavioursEnabled())return p(l,c,"{","}");if(v&&/(?:string)\.quasi|\.xml/.test(v.type)){var m=[/tag\-(?:open|name)/,/attribute\-name/];if(m.some(function(e){return e.test(v.type)})||/(string)\.quasi/.test(v.type)&&v.value[u.column-v.start-1]!=="$")return;return d.recordAutoInsert(r,i,"}"),{text:"{}",selection:[1,1]}}if(d.isSaneInsertion(r,i))return/[\]\}\)]/.test(a[u.column])||r.inMultiSelectMode||e.braces?(d.recordAutoInsert(r,i,"}"),{text:"{}",selection:[1,1]}):(d.recordMaybeInsert(r,i,"{"),{text:"{",selection:[1,1]})}else if(s=="}"){h(r);var g=a.substring(u.column,u.column+1);if(g=="}"){var y=i.$findOpeningBracket("}",{column:u.column+1,row:u.row});if(y!==null&&d.isAutoInsertedClosing(u,a,s))return d.popAutoInsertedClosing(),{text:"",selection:[1,1]}}}else{if(s=="\n"||s=="\r\n"){h(r);var b="";d.isMaybeInsertedClosing(u,a)&&(b=o.stringRepeat("}",f.maybeInsertedBrackets),d.clearMaybeInsertedClosing());var g=a.substring(u.column,u.column+1);if(g==="}"){var w=i.findMatchingBracket({row:u.row,column:u.column+1},"}");if(!w)return null;var E=this.$getIndent(i.getLine(w.row))}else{if(!b){d.clearMaybeInsertedClosing();return}var E=this.$getIndent(a)}var S=E+i.getTabString();return{text:"\n"+S+"\n"+E+b,selection:[1,S.length,1,S.length]}}d.clearMaybeInsertedClosing()}}),this.add("braces","deletion",function(e,t,n,r,i){var s=r.doc.getTextRange(i);if(!i.isMultiLine()&&s=="{"){h(n);var o=r.doc.getLine(i.start.row),u=o.substring(i.end.column,i.end.column+1);if(u=="}")return i.end.column++,i;f.maybeInsertedBrackets--}}),this.add("parens","insertion",function(e,t,n,r,i){if(i=="("){h(n);var s=n.getSelectionRange(),o=r.doc.getTextRange(s);if(o!==""&&n.getWrapBehavioursEnabled())return p(s,o,"(",")");if(d.isSaneInsertion(n,r))return d.recordAutoInsert(n,r,")"),{text:"()",selection:[1,1]}}else if(i==")"){h(n);var u=n.getCursorPosition(),a=r.doc.getLine(u.row),f=a.substring(u.column,u.column+1);if(f==")"){var l=r.$findOpeningBracket(")",{column:u.column+1,row:u.row});if(l!==null&&d.isAutoInsertedClosing(u,a,i))return d.popAutoInsertedClosing(),{text:"",selection:[1,1]}}}}),this.add("parens","deletion",function(e,t,n,r,i){var s=r.doc.getTextRange(i);if(!i.isMultiLine()&&s=="("){h(n);var o=r.doc.getLine(i.start.row),u=o.substring(i.start.column+1,i.start.column+2);if(u==")")return i.end.column++,i}}),this.add("brackets","insertion",function(e,t,n,r,i){if(i=="["){h(n);var s=n.getSelectionRange(),o=r.doc.getTextRange(s);if(o!==""&&n.getWrapBehavioursEnabled())return p(s,o,"[","]");if(d.isSaneInsertion(n,r))return d.recordAutoInsert(n,r,"]"),{text:"[]",selection:[1,1]}}else if(i=="]"){h(n);var u=n.getCursorPosition(),a=r.doc.getLine(u.row),f=a.substring(u.column,u.column+1);if(f=="]"){var l=r.$findOpeningBracket("]",{column:u.column+1,row:u.row});if(l!==null&&d.isAutoInsertedClosing(u,a,i))return d.popAutoInsertedClosing(),{text:"",selection:[1,1]}}}}),this.add("brackets","deletion",function(e,t,n,r,i){var s=r.doc.getTextRange(i);if(!i.isMultiLine()&&s=="["){h(n);var o=r.doc.getLine(i.start.row),u=o.substring(i.start.column+1,i.start.column+2);if(u=="]")return i.end.column++,i}}),this.add("string_dquotes","insertion",function(e,t,n,r,i){var s=r.$mode.$quotes||c;if(i.length==1&&s[i]){if(this.lineCommentStart&&this.lineCommentStart.indexOf(i)!=-1)return;h(n);var o=i,u=n.getSelectionRange(),a=r.doc.getTextRange(u);if(a!==""&&(a.length!=1||!s[a])&&n.getWrapBehavioursEnabled())return p(u,a,o,o);if(!a){var f=n.getCursorPosition(),l=r.doc.getLine(f.row),d=l.substring(f.column-1,f.column),v=l.substring(f.column,f.column+1),m=r.getTokenAt(f.row,f.column),g=r.getTokenAt(f.row,f.column+1);if(d=="\\"&&m&&/escape/.test(m.type))return null;var y=m&&/string|escape/.test(m.type),b=!g||/string|escape/.test(g.type),w;if(v==o)w=y!==b,w&&/string\.end/.test(g.type)&&(w=!1);else{if(y&&!b)return null;if(y&&b)return null;var E=r.$mode.tokenRe;E.lastIndex=0;var S=E.test(d);E.lastIndex=0;var x=E.test(v),T=r.$mode.$pairQuotesAfter,N=T&&T[o]&&T[o].test(d);if(!N&&S||x)return null;if(v&&!/[\s;,.})\]\\]/.test(v))return null;var C=l[f.column-2];if(!(d!=o||C!=o&&!E.test(C)))return null;w=!0}return{text:w?o+o:"",selection:[1,1]}}}}),this.add("string_dquotes","deletion",function(e,t,n,r,i){var s=r.$mode.$quotes||c,o=r.doc.getTextRange(i);if(!i.isMultiLine()&&s.hasOwnProperty(o)){h(n);var u=r.doc.getLine(i.start.row),a=u.substring(i.start.column+1,i.start.column+2);if(a==o)return i.end.column++,i}}),e.closeDocComment!==!1&&this.add("doc comment end","insertion",function(e,t,n,r,i){if(e==="doc-start"&&(i==="\n"||i==="\r\n")&&n.selection.isEmpty()){var s=n.getCursorPosition(),o=r.doc.getLine(s.row),u=r.doc.getLine(s.row+1),a=this.$getIndent(o);if(/\s*\*/.test(u))return/^\s*\*/.test(o)?{text:i+a+"* ",selection:[1,3+a.length,1,3+a.length]}:{text:i+a+" * ",selection:[1,3+a.length,1,3+a.length]};if(/\/\*\*/.test(o.substring(0,s.column)))return{text:i+a+" * "+i+" "+a+"*/",selection:[1,4+a.length,1,4+a.length]}}})},d.isSaneInsertion=function(e,t){var n=e.getCursorPosition(),r=new s(t,n.row,n.column);if(!this.$matchTokenType(r.getCurrentToken()||"text",u)){if(/[)}\]]/.test(e.session.getLine(n.row)[n.column]))return!0;var i=new s(t,n.row,n.column+1);if(!this.$matchTokenType(i.getCurrentToken()||"text",u))return!1}return r.stepForward(),r.getCurrentTokenRow()!==n.row||this.$matchTokenType(r.getCurrentToken()||"text",a)},d.$matchTokenType=function(e,t){return t.indexOf(e.type||e)>-1},d.recordAutoInsert=function(e,t,n){var r=e.getCursorPosition(),i=t.doc.getLine(r.row);this.isAutoInsertedClosing(r,i,f.autoInsertedLineEnd[0])||(f.autoInsertedBrackets=0),f.autoInsertedRow=r.row,f.autoInsertedLineEnd=n+i.substr(r.column),f.autoInsertedBrackets++},d.recordMaybeInsert=function(e,t,n){var r=e.getCursorPosition(),i=t.doc.getLine(r.row);this.isMaybeInsertedClosing(r,i)||(f.maybeInsertedBrackets=0),f.maybeInsertedRow=r.row,f.maybeInsertedLineStart=i.substr(0,r.column)+n,f.maybeInsertedLineEnd=i.substr(r.column),f.maybeInsertedBrackets++},d.isAutoInsertedClosing=function(e,t,n){return f.autoInsertedBrackets>0&&e.row===f.autoInsertedRow&&n===f.autoInsertedLineEnd[0]&&t.substr(e.column)===f.autoInsertedLineEnd},d.isMaybeInsertedClosing=function(e,t){return f.maybeInsertedBrackets>0&&e.row===f.maybeInsertedRow&&t.substr(e.column)===f.maybeInsertedLineEnd&&t.substr(0,e.column)==f.maybeInsertedLineStart},d.popAutoInsertedClosing=function(){f.autoInsertedLineEnd=f.autoInsertedLineEnd.substr(1),f.autoInsertedBrackets--},d.clearMaybeInsertedClosing=function(){f&&(f.maybeInsertedBrackets=0,f.maybeInsertedRow=-1)},r.inherits(d,i),t.CstyleBehaviour=d}),define("ace/unicode",["require","exports","module"],function(e,t,n){"use strict";var r=[48,9,8,25,5,0,2,25,48,0,11,0,5,0,6,22,2,30,2,457,5,11,15,4,8,0,2,0,18,116,2,1,3,3,9,0,2,2,2,0,2,19,2,82,2,138,2,4,3,155,12,37,3,0,8,38,10,44,2,0,2,1,2,1,2,0,9,26,6,2,30,10,7,61,2,9,5,101,2,7,3,9,2,18,3,0,17,58,3,100,15,53,5,0,6,45,211,57,3,18,2,5,3,11,3,9,2,1,7,6,2,2,2,7,3,1,3,21,2,6,2,0,4,3,3,8,3,1,3,3,9,0,5,1,2,4,3,11,16,2,2,5,5,1,3,21,2,6,2,1,2,1,2,1,3,0,2,4,5,1,3,2,4,0,8,3,2,0,8,15,12,2,2,8,2,2,2,21,2,6,2,1,2,4,3,9,2,2,2,2,3,0,16,3,3,9,18,2,2,7,3,1,3,21,2,6,2,1,2,4,3,8,3,1,3,2,9,1,5,1,2,4,3,9,2,0,17,1,2,5,4,2,2,3,4,1,2,0,2,1,4,1,4,2,4,11,5,4,4,2,2,3,3,0,7,0,15,9,18,2,2,7,2,2,2,22,2,9,2,4,4,7,2,2,2,3,8,1,2,1,7,3,3,9,19,1,2,7,2,2,2,22,2,9,2,4,3,8,2,2,2,3,8,1,8,0,2,3,3,9,19,1,2,7,2,2,2,22,2,15,4,7,2,2,2,3,10,0,9,3,3,9,11,5,3,1,2,17,4,23,2,8,2,0,3,6,4,0,5,5,2,0,2,7,19,1,14,57,6,14,2,9,40,1,2,0,3,1,2,0,3,0,7,3,2,6,2,2,2,0,2,0,3,1,2,12,2,2,3,4,2,0,2,5,3,9,3,1,35,0,24,1,7,9,12,0,2,0,2,0,5,9,2,35,5,19,2,5,5,7,2,35,10,0,58,73,7,77,3,37,11,42,2,0,4,328,2,3,3,6,2,0,2,3,3,40,2,3,3,32,2,3,3,6,2,0,2,3,3,14,2,56,2,3,3,66,5,0,33,15,17,84,13,619,3,16,2,25,6,74,22,12,2,6,12,20,12,19,13,12,2,2,2,1,13,51,3,29,4,0,5,1,3,9,34,2,3,9,7,87,9,42,6,69,11,28,4,11,5,11,11,39,3,4,12,43,5,25,7,10,38,27,5,62,2,28,3,10,7,9,14,0,89,75,5,9,18,8,13,42,4,11,71,55,9,9,4,48,83,2,2,30,14,230,23,280,3,5,3,37,3,5,3,7,2,0,2,0,2,0,2,30,3,52,2,6,2,0,4,2,2,6,4,3,3,5,5,12,6,2,2,6,67,1,20,0,29,0,14,0,17,4,60,12,5,0,4,11,18,0,5,0,3,9,2,0,4,4,7,0,2,0,2,0,2,3,2,10,3,3,6,4,5,0,53,1,2684,46,2,46,2,132,7,6,15,37,11,53,10,0,17,22,10,6,2,6,2,6,2,6,2,6,2,6,2,6,2,6,2,31,48,0,470,1,36,5,2,4,6,1,5,85,3,1,3,2,2,89,2,3,6,40,4,93,18,23,57,15,513,6581,75,20939,53,1164,68,45,3,268,4,27,21,31,3,13,13,1,2,24,9,69,11,1,38,8,3,102,3,1,111,44,25,51,13,68,12,9,7,23,4,0,5,45,3,35,13,28,4,64,15,10,39,54,10,13,3,9,7,22,4,1,5,66,25,2,227,42,2,1,3,9,7,11171,13,22,5,48,8453,301,3,61,3,105,39,6,13,4,6,11,2,12,2,4,2,0,2,1,2,1,2,107,34,362,19,63,3,53,41,11,5,15,17,6,13,1,25,2,33,4,2,134,20,9,8,25,5,0,2,25,12,88,4,5,3,5,3,5,3,2],i=0,s=[];for(var o=0;o<r.length;o+=2)s.push(i+=r[o]),r[o+1]&&s.push(45,i+=r[o+1]);t.wordChars=String.fromCharCode.apply(null,s)}),define("ace/mode/text",["require","exports","module","ace/config","ace/tokenizer","ace/mode/text_highlight_rules","ace/mode/behaviour/cstyle","ace/unicode","ace/lib/lang","ace/token_iterator","ace/range"],function(e,t,n){"use strict";var r=e("../config"),i=e("../tokenizer").Tokenizer,s=e("./text_highlight_rules").TextHighlightRules,o=e("./behaviour/cstyle").CstyleBehaviour,u=e("../unicode"),a=e("../lib/lang"),f=e("../token_iterator").TokenIterator,l=e("../range").Range,c;c=function(){this.HighlightRules=s},function(){this.$defaultBehaviour=new o,this.tokenRe=new RegExp("^["+u.wordChars+"\\$_]+","g"),this.nonTokenRe=new RegExp("^(?:[^"+u.wordChars+"\\$_]|\\s])+","g"),this.getTokenizer=function(){return this.$tokenizer||(this.$highlightRules=this.$highlightRules||new this.HighlightRules(this.$highlightRuleConfig),this.$tokenizer=new i(this.$highlightRules.getRules())),this.$tokenizer},this.lineCommentStart="",this.blockComment="",this.toggleCommentLines=function(e,t,n,r){function w(e){for(var t=n;t<=r;t++)e(i.getLine(t),t)}var i=t.doc,s=!0,o=!0,u=Infinity,f=t.getTabSize(),l=!1;if(!this.lineCommentStart){if(!this.blockComment)return!1;var c=this.blockComment.start,h=this.blockComment.end,p=new RegExp("^(\\s*)(?:"+a.escapeRegExp(c)+")"),d=new RegExp("(?:"+a.escapeRegExp(h)+")\\s*$"),v=function(e,t){if(g(e,t))return;if(!s||/\S/.test(e))i.insertInLine({row:t,column:e.length},h),i.insertInLine({row:t,column:u},c)},m=function(e,t){var n;(n=e.match(d))&&i.removeInLine(t,e.length-n[0].length,e.length),(n=e.match(p))&&i.removeInLine(t,n[1].length,n[0].length)},g=function(e,n){if(p.test(e))return!0;var r=t.getTokens(n);for(var i=0;i<r.length;i++)if(r[i].type==="comment")return!0}}else{if(Array.isArray(this.lineCommentStart))var p=this.lineCommentStart.map(a.escapeRegExp).join("|"),c=this.lineCommentStart[0];else var p=a.escapeRegExp(this.lineCommentStart),c=this.lineCommentStart;p=new RegExp("^(\\s*)(?:"+p+") ?"),l=t.getUseSoftTabs();var m=function(e,t){var n=e.match(p);if(!n)return;var r=n[1].length,s=n[0].length;!b(e,r,s)&&n[0][s-1]==" "&&s--,i.removeInLine(t,r,s)},y=c+" ",v=function(e,t){if(!s||/\S/.test(e))b(e,u,u)?i.insertInLine({row:t,column:u},y):i.insertInLine({row:t,column:u},c)},g=function(e,t){return p.test(e)},b=function(e,t,n){var r=0;while(t--&&e.charAt(t)==" ")r++;if(r%f!=0)return!1;var r=0;while(e.charAt(n++)==" ")r++;return f>2?r%f!=f-1:r%f==0}}var E=Infinity;w(function(e,t){var n=e.search(/\S/);n!==-1?(n<u&&(u=n),o&&!g(e,t)&&(o=!1)):E>e.length&&(E=e.length)}),u==Infinity&&(u=E,s=!1,o=!1),l&&u%f!=0&&(u=Math.floor(u/f)*f),w(o?m:v)},this.toggleBlockComment=function(e,t,n,r){var i=this.blockComment;if(!i)return;!i.start&&i[0]&&(i=i[0]);var s=new f(t,r.row,r.column),o=s.getCurrentToken(),u=t.selection,a=t.selection.toOrientedRange(),c,h;if(o&&/comment/.test(o.type)){var p,d;while(o&&/comment/.test(o.type)){var v=o.value.indexOf(i.start);if(v!=-1){var m=s.getCurrentTokenRow(),g=s.getCurrentTokenColumn()+v;p=new l(m,g,m,g+i.start.length);break}o=s.stepBackward()}var s=new f(t,r.row,r.column),o=s.getCurrentToken();while(o&&/comment/.test(o.type)){var v=o.value.indexOf(i.end);if(v!=-1){var m=s.getCurrentTokenRow(),g=s.getCurrentTokenColumn()+v;d=new l(m,g,m,g+i.end.length);break}o=s.stepForward()}d&&t.remove(d),p&&(t.remove(p),c=p.start.row,h=-i.start.length)}else h=i.start.length,c=n.start.row,t.insert(n.end,i.end),t.insert(n.start,i.start);a.start.row==c&&(a.start.column+=h),a.end.row==c&&(a.end.column+=h),t.selection.fromOrientedRange(a)},this.getNextLineIndent=function(e,t,n){return this.$getIndent(t)},this.checkOutdent=function(e,t,n){return!1},this.autoOutdent=function(e,t,n){},this.$getIndent=function(e){return e.match(/^\s*/)[0]},this.createWorker=function(e){return null},this.createModeDelegates=function(e){this.$embeds=[],this.$modes={};for(var t in e)if(e[t]){var n=e[t],i=n.prototype.$id,s=r.$modes[i];s||(r.$modes[i]=s=new n),r.$modes[t]||(r.$modes[t]=s),this.$embeds.push(t),this.$modes[t]=s}var o=["toggleBlockComment","toggleCommentLines","getNextLineIndent","checkOutdent","autoOutdent","transformAction","getCompletions"],u=function(e){(function(t){var n=o[e],r=t[n];t[o[e]]=function(){return this.$delegator(n,arguments,r)}})(a)},a=this;for(var t=0;t<o.length;t++)u(t)},this.$delegator=function(e,t,n){var r=t[0]||"start";if(typeof r!="string"){if(Array.isArray(r[2])){var i=r[2][r[2].length-1],s=this.$modes[i];if(s)return s[e].apply(s,[r[1]].concat([].slice.call(t,1)))}r=r[0]||"start"}for(var o=0;o<this.$embeds.length;o++){if(!this.$modes[this.$embeds[o]])continue;var u=r.split(this.$embeds[o]);if(!u[0]&&u[1]){t[0]=u[1];var s=this.$modes[this.$embeds[o]];return s[e].apply(s,t)}}var a=n.apply(this,t);return n?a:undefined},this.transformAction=function(e,t,n,r,i){if(this.$behaviour){var s=this.$behaviour.getBehaviours();for(var o in s)if(s[o][t]){var u=s[o][t].apply(this,arguments);if(u)return u}}},this.getKeywords=function(e){if(!this.completionKeywords){var t=this.$tokenizer.rules,n=[];for(var r in t){var i=t[r];for(var s=0,o=i.length;s<o;s++)if(typeof i[s].token=="string")/keyword|support|storage/.test(i[s].token)&&n.push(i[s].regex);else if(typeof i[s].token=="object")for(var u=0,a=i[s].token.length;u<a;u++)if(/keyword|support|storage/.test(i[s].token[u])){var r=i[s].regex.match(/\(.+?\)/g)[u];n.push(r.substr(1,r.length-2))}}this.completionKeywords=n}return e?n.concat(this.$keywordList||[]):this.$keywordList},this.$createKeywordList=function(){return this.$highlightRules||this.getTokenizer(),this.$keywordList=this.$highlightRules.$keywordList||[]},this.getCompletions=function(e,t,n,r){var i=this.$keywordList||this.$createKeywordList();return i.map(function(e){return{name:e,value:e,score:0,meta:"keyword"}})},this.$id="ace/mode/text"}.call(c.prototype),t.Mode=c}),define("ace/apply_delta",["require","exports","module"],function(e,t,n){"use strict";function r(e,t){throw console.log("Invalid Delta:",e),"Invalid Delta: "+t}function i(e,t){return t.row>=0&&t.row<e.length&&t.column>=0&&t.column<=e[t.row].length}function s(e,t){t.action!="insert"&&t.action!="remove"&&r(t,"delta.action must be 'insert' or 'remove'"),t.lines instanceof Array||r(t,"delta.lines must be an Array"),(!t.start||!t.end)&&r(t,"delta.start/end must be an present");var n=t.start;i(e,t.start)||r(t,"delta.start must be contained in document");var s=t.end;t.action=="remove"&&!i(e,s)&&r(t,"delta.end must contained in document for 'remove' actions");var o=s.row-n.row,u=s.column-(o==0?n.column:0);(o!=t.lines.length-1||t.lines[o].length!=u)&&r(t,"delta.range must match delta lines")}t.applyDelta=function(e,t,n){var r=t.start.row,i=t.start.column,s=e[r]||"";switch(t.action){case"insert":var o=t.lines;if(o.length===1)e[r]=s.substring(0,i)+t.lines[0]+s.substring(i);else{var u=[r,1].concat(t.lines);e.splice.apply(e,u),e[r]=s.substring(0,i)+e[r],e[r+t.lines.length-1]+=s.substring(i)}break;case"remove":var a=t.end.column,f=t.end.row;r===f?e[r]=s.substring(0,i)+s.substring(a):e.splice(r,f-r+1,s.substring(0,i)+e[f].substring(a))}}}),define("ace/anchor",["require","exports","module","ace/lib/oop","ace/lib/event_emitter"],function(e,t,n){"use strict";function o(e,t,n){var r=n?e.column<=t.column:e.column<t.column;return e.row<t.row||e.row==t.row&&r}function u(e,t,n){var r=e.action=="insert",i=(r?1:-1)*(e.end.row-e.start.row),s=(r?1:-1)*(e.end.column-e.start.column),u=e.start,a=r?u:e.end;return o(t,u,n)?{row:t.row,column:t.column}:o(a,t,!n)?{row:t.row+i,column:t.column+(t.row==a.row?s:0)}:{row:u.row,column:u.column}}var r=e("./lib/oop"),i=e("./lib/event_emitter").EventEmitter,s=function(){function e(e,t,n){this.$onChange=this.onChange.bind(this),this.attach(e),typeof t!="number"?this.setPosition(t.row,t.column):this.setPosition(t,n)}return e.prototype.getPosition=function(){return this.$clipPositionToDocument(this.row,this.column)},e.prototype.getDocument=function(){return this.document},e.prototype.onChange=function(e){if(e.start.row==e.end.row&&e.start.row!=this.row)return;if(e.start.row>this.row)return;var t=u(e,{row:this.row,column:this.column},this.$insertRight);this.setPosition(t.row,t.column,!0)},e.prototype.setPosition=function(e,t,n){var r;n?r={row:e,column:t}:r=this.$clipPositionToDocument(e,t);if(this.row==r.row&&this.column==r.column)return;var i={row:this.row,column:this.column};this.row=r.row,this.column=r.column,this._signal("change",{old:i,value:r})},e.prototype.detach=function(){this.document.off("change",this.$onChange)},e.prototype.attach=function(e){this.document=e||this.document,this.document.on("change",this.$onChange)},e.prototype.$clipPositionToDocument=function(e,t){var n={};return e>=this.document.getLength()?(n.row=Math.max(0,this.document.getLength()-1),n.column=this.document.getLine(n.row).length):e<0?(n.row=0,n.column=0):(n.row=e,n.column=Math.min(this.document.getLine(n.row).length,Math.max(0,t))),t<0&&(n.column=0),n},e}();s.prototype.$insertRight=!1,r.implement(s.prototype,i),t.Anchor=s}),define("ace/document",["require","exports","module","ace/lib/oop","ace/apply_delta","ace/lib/event_emitter","ace/range","ace/anchor"],function(e,t,n){"use strict";var r=e("./lib/oop"),i=e("./apply_delta").applyDelta,s=e("./lib/event_emitter").EventEmitter,o=e("./range").Range,u=e("./anchor").Anchor,a=function(){function e(e){this.$lines=[""],e.length===0?this.$lines=[""]:Array.isArray(e)?this.insertMergedLines({row:0,column:0},e):this.insert({row:0,column:0},e)}return e.prototype.setValue=function(e){var t=this.getLength()-1;this.remove(new o(0,0,t,this.getLine(t).length)),this.insert({row:0,column:0},e||"")},e.prototype.getValue=function(){return this.getAllLines().join(this.getNewLineCharacter())},e.prototype.createAnchor=function(e,t){return new u(this,e,t)},e.prototype.$detectNewLine=function(e){var t=e.match(/^.*?(\r\n|\r|\n)/m);this.$autoNewLine=t?t[1]:"\n",this._signal("changeNewLineMode")},e.prototype.getNewLineCharacter=function(){switch(this.$newLineMode){case"windows":return"\r\n";case"unix":return"\n";default:return this.$autoNewLine||"\n"}},e.prototype.setNewLineMode=function(e){if(this.$newLineMode===e)return;this.$newLineMode=e,this._signal("changeNewLineMode")},e.prototype.getNewLineMode=function(){return this.$newLineMode},e.prototype.isNewLine=function(e){return e=="\r\n"||e=="\r"||e=="\n"},e.prototype.getLine=function(e){return this.$lines[e]||""},e.prototype.getLines=function(e,t){return this.$lines.slice(e,t+1)},e.prototype.getAllLines=function(){return this.getLines(0,this.getLength())},e.prototype.getLength=function(){return this.$lines.length},e.prototype.getTextRange=function(e){return this.getLinesForRange(e).join(this.getNewLineCharacter())},e.prototype.getLinesForRange=function(e){var t;if(e.start.row===e.end.row)t=[this.getLine(e.start.row).substring(e.start.column,e.end.column)];else{t=this.getLines(e.start.row,e.end.row),t[0]=(t[0]||"").substring(e.start.column);var n=t.length-1;e.end.row-e.start.row==n&&(t[n]=t[n].substring(0,e.end.column))}return t},e.prototype.insertLines=function(e,t){return console.warn("Use of document.insertLines is deprecated. Use the insertFullLines method instead."),this.insertFullLines(e,t)},e.prototype.removeLines=function(e,t){return console.warn("Use of document.removeLines is deprecated. Use the removeFullLines method instead."),this.removeFullLines(e,t)},e.prototype.insertNewLine=function(e){return console.warn("Use of document.insertNewLine is deprecated. Use insertMergedLines(position, ['', '']) instead."),this.insertMergedLines(e,["",""])},e.prototype.insert=function(e,t){return this.getLength()<=1&&this.$detectNewLine(t),this.insertMergedLines(e,this.$split(t))},e.prototype.insertInLine=function(e,t){var n=this.clippedPos(e.row,e.column),r=this.pos(e.row,e.column+t.length);return this.applyDelta({start:n,end:r,action:"insert",lines:[t]},!0),this.clonePos(r)},e.prototype.clippedPos=function(e,t){var n=this.getLength();e===undefined?e=n:e<0?e=0:e>=n&&(e=n-1,t=undefined);var r=this.getLine(e);return t==undefined&&(t=r.length),t=Math.min(Math.max(t,0),r.length),{row:e,column:t}},e.prototype.clonePos=function(e){return{row:e.row,column:e.column}},e.prototype.pos=function(e,t){return{row:e,column:t}},e.prototype.$clipPosition=function(e){var t=this.getLength();return e.row>=t?(e.row=Math.max(0,t-1),e.column=this.getLine(t-1).length):(e.row=Math.max(0,e.row),e.column=Math.min(Math.max(e.column,0),this.getLine(e.row).length)),e},e.prototype.insertFullLines=function(e,t){e=Math.min(Math.max(e,0),this.getLength());var n=0;e<this.getLength()?(t=t.concat([""]),n=0):(t=[""].concat(t),e--,n=this.$lines[e].length),this.insertMergedLines({row:e,column:n},t)},e.prototype.insertMergedLines=function(e,t){var n=this.clippedPos(e.row,e.column),r={row:n.row+t.length-1,column:(t.length==1?n.column:0)+t[t.length-1].length};return this.applyDelta({start:n,end:r,action:"insert",lines:t}),this.clonePos(r)},e.prototype.remove=function(e){var t=this.clippedPos(e.start.row,e.start.column),n=this.clippedPos(e.end.row,e.end.column);return this.applyDelta({start:t,end:n,action:"remove",lines:this.getLinesForRange({start:t,end:n})}),this.clonePos(t)},e.prototype.removeInLine=function(e,t,n){var r=this.clippedPos(e,t),i=this.clippedPos(e,n);return this.applyDelta({start:r,end:i,action:"remove",lines:this.getLinesForRange({start:r,end:i})},!0),this.clonePos(r)},e.prototype.removeFullLines=function(e,t){e=Math.min(Math.max(0,e),this.getLength()-1),t=Math.min(Math.max(0,t),this.getLength()-1);var n=t==this.getLength()-1&&e>0,r=t<this.getLength()-1,i=n?e-1:e,s=n?this.getLine(i).length:0,u=r?t+1:t,a=r?0:this.getLine(u).length,f=new o(i,s,u,a),l=this.$lines.slice(e,t+1);return this.applyDelta({start:f.start,end:f.end,action:"remove",lines:this.getLinesForRange(f)}),l},e.prototype.removeNewLine=function(e){e<this.getLength()-1&&e>=0&&this.applyDelta({start:this.pos(e,this.getLine(e).length),end:this.pos(e+1,0),action:"remove",lines:["",""]})},e.prototype.replace=function(e,t){e instanceof o||(e=o.fromPoints(e.start,e.end));if(t.length===0&&e.isEmpty())return e.start;if(t==this.getTextRange(e))return e.end;this.remove(e);var n;return t?n=this.insert(e.start,t):n=e.start,n},e.prototype.applyDeltas=function(e){for(var t=0;t<e.length;t++)this.applyDelta(e[t])},e.prototype.revertDeltas=function(e){for(var t=e.length-1;t>=0;t--)this.revertDelta(e[t])},e.prototype.applyDelta=function(e,t){var n=e.action=="insert";if(n?e.lines.length<=1&&!e.lines[0]:!o.comparePoints(e.start,e.end))return;n&&e.lines.length>2e4?this.$splitAndapplyLargeDelta(e,2e4):(i(this.$lines,e,t),this._signal("change",e))},e.prototype.$safeApplyDelta=function(e){var t=this.$lines.length;(e.action=="remove"&&e.start.row<t&&e.end.row<t||e.action=="insert"&&e.start.row<=t)&&this.applyDelta(e)},e.prototype.$splitAndapplyLargeDelta=function(e,t){var n=e.lines,r=n.length-t+1,i=e.start.row,s=e.start.column;for(var o=0,u=0;o<r;o=u){u+=t-1;var a=n.slice(o,u);a.push(""),this.applyDelta({start:this.pos(i+o,s),end:this.pos(i+u,s=0),action:e.action,lines:a},!0)}e.lines=n.slice(o),e.start.row=i+o,e.start.column=s,this.applyDelta(e,!0)},e.prototype.revertDelta=function(e){this.$safeApplyDelta({start:this.clonePos(e.start),end:this.clonePos(e.end),action:e.action=="insert"?"remove":"insert",lines:e.lines.slice()})},e.prototype.indexToPosition=function(e,t){var n=this.$lines||this.getAllLines(),r=this.getNewLineCharacter().length;for(var i=t||0,s=n.length;i<s;i++){e-=n[i].length+r;if(e<0)return{row:i,column:e+n[i].length+r}}return{row:s-1,column:e+n[s-1].length+r}},e.prototype.positionToIndex=function(e,t){var n=this.$lines||this.getAllLines(),r=this.getNewLineCharacter().length,i=0,s=Math.min(e.row,n.length);for(var o=t||0;o<s;++o)i+=n[o].length+r;return i+e.column},e.prototype.$split=function(e){return e.split(/\r\n|\r|\n/)},e}();a.prototype.$autoNewLine="",a.prototype.$newLineMode="auto",r.implement(a.prototype,s),t.Document=a}),define("ace/background_tokenizer",["require","exports","module","ace/lib/oop","ace/lib/event_emitter"],function(e,t,n){"use strict";var r=e("./lib/oop"),i=e("./lib/event_emitter").EventEmitter,s=function(){function e(e,t){this.running=!1,this.lines=[],this.states=[],this.currentLine=0,this.tokenizer=e;var n=this;this.$worker=function(){if(!n.running)return;var e=new Date,t=n.currentLine,r=-1,i=n.doc,s=t;while(n.lines[t])t++;var o=i.getLength(),u=0;n.running=!1;while(t<o){n.$tokenizeRow(t),r=t;do t++;while(n.lines[t]);u++;if(u%5===0&&new Date-e>20){n.running=setTimeout(n.$worker,20);break}}n.currentLine=t,r==-1&&(r=t),s<=r&&n.fireUpdateEvent(s,r)}}return e.prototype.setTokenizer=function(e){this.tokenizer=e,this.lines=[],this.states=[],this.start(0)},e.prototype.setDocument=function(e){this.doc=e,this.lines=[],this.states=[],this.stop()},e.prototype.fireUpdateEvent=function(e,t){var n={first:e,last:t};this._signal("update",{data:n})},e.prototype.start=function(e){this.currentLine=Math.min(e||0,this.currentLine,this.doc.getLength()),this.lines.splice(this.currentLine,this.lines.length),this.states.splice(this.currentLine,this.states.length),this.stop(),this.running=setTimeout(this.$worker,700)},e.prototype.scheduleStart=function(){this.running||(this.running=setTimeout(this.$worker,700))},e.prototype.$updateOnChange=function(e){var t=e.start.row,n=e.end.row-t;if(n===0)this.lines[t]=null;else if(e.action=="remove")this.lines.splice(t,n+1,null),this.states.splice(t,n+1,null);else{var r=Array(n+1);r.unshift(t,1),this.lines.splice.apply(this.lines,r),this.states.splice.apply(this.states,r)}this.currentLine=Math.min(t,this.currentLine,this.doc.getLength()),this.stop()},e.prototype.stop=function(){this.running&&clearTimeout(this.running),this.running=!1},e.prototype.getTokens=function(e){return this.lines[e]||this.$tokenizeRow(e)},e.prototype.getState=function(e){return this.currentLine==e&&this.$tokenizeRow(e),this.states[e]||"start"},e.prototype.$tokenizeRow=function(e){var t=this.doc.getLine(e),n=this.states[e-1],r=this.tokenizer.getLineTokens(t,n,e);return this.states[e]+""!=r.state+""?(this.states[e]=r.state,this.lines[e+1]=null,this.currentLine>e+1&&(this.currentLine=e+1)):this.currentLine==e&&(this.currentLine=e+1),this.lines[e]=r.tokens},e.prototype.cleanup=function(){this.running=!1,this.lines=[],this.states=[],this.currentLine=0,this.removeAllListeners()},e}();r.implement(s.prototype,i),t.BackgroundTokenizer=s}),define("ace/search_highlight",["require","exports","module","ace/lib/lang","ace/range"],function(e,t,n){"use strict";var r=e("./lib/lang"),i=e("./range").Range,s=function(){function e(e,t,n){n===void 0&&(n="text"),this.setRegexp(e),this.clazz=t,this.type=n}return e.prototype.setRegexp=function(e){if(this.regExp+""==e+"")return;this.regExp=e,this.cache=[]},e.prototype.update=function(e,t,n,s){if(!this.regExp)return;var o=s.firstRow,u=s.lastRow,a={};for(var f=o;f<=u;f++){var l=this.cache[f];l==null&&(l=r.getMatchOffsets(n.getLine(f),this.regExp),l.length>this.MAX_RANGES&&(l=l.slice(0,this.MAX_RANGES)),l=l.map(function(e){return new i(f,e.offset,f,e.offset+e.length)}),this.cache[f]=l.length?l:"");for(var c=l.length;c--;){var h=l[c].toScreenRange(n),p=h.toString();if(a[p])continue;a[p]=!0,t.drawSingleLineMarker(e,h,this.clazz,s)}}},e}();s.prototype.MAX_RANGES=500,t.SearchHighlight=s}),define("ace/undomanager",["require","exports","module","ace/range"],function(e,t,n){"use strict";function i(e,t){for(var n=t;n--;){var r=e[n];if(r&&!r[0].ignore){while(n<t-1){var i=d(e[n],e[n+1]);e[n]=i[0],e[n+1]=i[1],n++}return!0}}}function a(e){var t=e.action=="insert",n=e.start,r=e.end,i=(r.row-n.row)*(t?1:-1),s=(r.column-n.column)*(t?1:-1);t&&(r=n);for(var o in this.marks){var a=this.marks[o],f=u(a,n);if(f<0)continue;if(f===0&&t){if(a.bias!=1){a.bias==-1;continue}f=1}var l=t?f:u(a,r);if(l>0){a.row+=i,a.column+=a.row==r.row?s:0;continue}!t&&l<=0&&(a.row=n.row,a.column=n.column,l===0&&(a.bias=1))}}function f(e){return{row:e.row,column:e.column}}function l(e){return{start:f(e.start),end:f(e.end),action:e.action,lines:e.lines.slice()}}function c(e){e=e||this;if(Array.isArray(e))return e.map(c).join("\n");var t="";e.action?(t=e.action=="insert"?"+":"-",t+="["+e.lines+"]"):e.value&&(Array.isArray(e.value)?t=e.value.map(h).join("\n"):t=h(e.value)),e.start&&(t+=h(e));if(e.id||e.rev)t+=" ("+(e.id||e.rev)+")";return t}function h(e){return e.start.row+":"+e.start.column+"=>"+e.end.row+":"+e.end.column}function p(e,t){var n=e.action=="insert",r=t.action=="insert";if(n&&r)if(o(t.start,e.end)>=0)m(t,e,-1);else{if(!(o(t.start,e.start)<=0))return null;m(e,t,1)}else if(n&&!r)if(o(t.start,e.end)>=0)m(t,e,-1);else{if(!(o(t.end,e.start)<=0))return null;m(e,t,-1)}else if(!n&&r)if(o(t.start,e.start)>=0)m(t,e,1);else{if(!(o(t.start,e.start)<=0))return null;m(e,t,1)}else if(!n&&!r)if(o(t.start,e.start)>=0)m(t,e,1);else{if(!(o(t.end,e.start)<=0))return null;m(e,t,-1)}return[t,e]}function d(e,t){for(var n=e.length;n--;)for(var r=0;r<t.length;r++)if(!p(e[n],t[r])){while(n<e.length){while(r--)p(t[r],e[n]);r=t.length,n++}return[e,t]}return e.selectionBefore=t.selectionBefore=e.selectionAfter=t.selectionAfter=null,[t,e]}function v(e,t){var n=e.action=="insert",r=t.action=="insert";if(n&&r)o(e.start,t.start)<0?m(t,e,1):m(e,t,1);else if(n&&!r)o(e.start,t.end)>=0?m(e,t,-1):o(e.start,t.start)<=0?m(t,e,1):(m(e,s.fromPoints(t.start,e.start),-1),m(t,e,1));else if(!n&&r)o(t.start,e.end)>=0?m(t,e,-1):o(t.start,e.start)<=0?m(e,t,1):(m(t,s.fromPoints(e.start,t.start),-1),m(e,t,1));else if(!n&&!r)if(o(t.start,e.end)>=0)m(t,e,-1);else{if(!(o(t.end,e.start)<=0)){var i,u;return o(e.start,t.start)<0&&(i=e,e=y(e,t.start)),o(e.end,t.end)>0&&(u=y(e,t.end)),g(t.end,e.start,e.end,-1),u&&!i&&(e.lines=u.lines,e.start=u.start,e.end=u.end,u=e),[t,i,u].filter(Boolean)}m(e,t,-1)}return[t,e]}function m(e,t,n){g(e.start,t.start,t.end,n),g(e.end,t.start,t.end,n)}function g(e,t,n,r){e.row==(r==1?t:n).row&&(e.column+=r*(n.column-t.column)),e.row+=r*(n.row-t.row)}function y(e,t){var n=e.lines,r=e.end;e.end=f(t);var i=e.end.row-e.start.row,s=n.splice(i,n.length),o=i?t.column:t.column-e.start.column;n.push(s[0].substring(0,o)),s[0]=s[0].substr(o);var u={start:f(t),end:r,lines:s,action:e.action};return u}function b(e,t){t=l(t);for(var n=e.length;n--;){var r=e[n];for(var i=0;i<r.length;i++){var s=r[i],o=v(s,t);t=o[0],o.length!=2&&(o[2]?(r.splice(i+1,1,o[1],o[2]),i++):o[1]||(r.splice(i,1),i--))}r.length||e.splice(n,1)}return e}function w(e,t){for(var n=0;n<t.length;n++){var r=t[n];for(var i=0;i<r.length;i++)b(e,r[i])}}var r=function(){function e(){this.$keepRedoStack,this.$maxRev=0,this.$fromUndo=!1,this.$undoDepth=Infinity,this.reset()}return e.prototype.addSession=function(e){this.$session=e},e.prototype.add=function(e,t,n){if(this.$fromUndo)return;if(e==this.$lastDelta)return;this.$keepRedoStack||(this.$redoStack.length=0);if(t===!1||!this.lastDeltas){this.lastDeltas=[];var r=this.$undoStack.length;r>this.$undoDepth-1&&this.$undoStack.splice(0,r-this.$undoDepth+1),this.$undoStack.push(this.lastDeltas),e.id=this.$rev=++this.$maxRev}if(e.action=="remove"||e.action=="insert")this.$lastDelta=e;this.lastDeltas.push(e)},e.prototype.addSelection=function(e,t){this.selections.push({value:e,rev:t||this.$rev})},e.prototype.startNewGroup=function(){return this.lastDeltas=null,this.$rev},e.prototype.markIgnored=function(e,t){t==null&&(t=this.$rev+1);var n=this.$undoStack;for(var r=n.length;r--;){var i=n[r][0];if(i.id<=e)break;i.id<t&&(i.ignore=!0)}this.lastDeltas=null},e.prototype.getSelection=function(e,t){var n=this.selections;for(var r=n.length;r--;){var i=n[r];if(i.rev<e)return t&&(i=n[r+1]),i}},e.prototype.getRevision=function(){return this.$rev},e.prototype.getDeltas=function(e,t){t==null&&(t=this.$rev+1);var n=this.$undoStack,r=null,i=0;for(var s=n.length;s--;){var o=n[s][0];o.id<t&&!r&&(r=s+1);if(o.id<=e){i=s+1;break}}return n.slice(i,r)},e.prototype.getChangedRanges=function(e,t){t==null&&(t=this.$rev+1)},e.prototype.getChangedLines=function(e,t){t==null&&(t=this.$rev+1)},e.prototype.undo=function(e,t){this.lastDeltas=null;var n=this.$undoStack;if(!i(n,n.length))return;e||(e=this.$session),this.$redoStackBaseRev!==this.$rev&&this.$redoStack.length&&(this.$redoStack=[]),this.$fromUndo=!0;var r=n.pop(),s=null;return r&&(s=e.undoChanges(r,t),this.$redoStack.push(r),this.$syncRev()),this.$fromUndo=!1,s},e.prototype.redo=function(e,t){this.lastDeltas=null,e||(e=this.$session),this.$fromUndo=!0;if(this.$redoStackBaseRev!=this.$rev){var n=this.getDeltas(this.$redoStackBaseRev,this.$rev+1);w(this.$redoStack,n),this.$redoStackBaseRev=this.$rev,this.$redoStack.forEach(function(e){e[0].id=++this.$maxRev},this)}var r=this.$redoStack.pop(),i=null;return r&&(i=e.redoChanges(r,t),this.$undoStack.push(r),this.$syncRev()),this.$fromUndo=!1,i},e.prototype.$syncRev=function(){var e=this.$undoStack,t=e[e.length-1],n=t&&t[0].id||0;this.$redoStackBaseRev=n,this.$rev=n},e.prototype.reset=function(){this.lastDeltas=null,this.$lastDelta=null,this.$undoStack=[],this.$redoStack=[],this.$rev=0,this.mark=0,this.$redoStackBaseRev=this.$rev,this.selections=[]},e.prototype.canUndo=function(){return this.$undoStack.length>0},e.prototype.canRedo=function(){return this.$redoStack.length>0},e.prototype.bookmark=function(e){e==undefined&&(e=this.$rev),this.mark=e},e.prototype.isAtBookmark=function(){return this.$rev===this.mark},e.prototype.toJSON=function(){return{$redoStack:this.$redoStack,$undoStack:this.$undoStack}},e.prototype.fromJSON=function(e){this.reset(),this.$undoStack=e.$undoStack,this.$redoStack=e.$redoStack},e.prototype.$prettyPrint=function(e){return e?c(e):c(this.$undoStack)+"\n---\n"+c(this.$redoStack)},e}();r.prototype.hasUndo=r.prototype.canUndo,r.prototype.hasRedo=r.prototype.canRedo,r.prototype.isClean=r.prototype.isAtBookmark,r.prototype.markClean=r.prototype.bookmark;var s=e("./range").Range,o=s.comparePoints,u=s.comparePoints;t.UndoManager=r}),define("ace/edit_session/fold_line",["require","exports","module","ace/range"],function(e,t,n){"use strict";var r=e("../range").Range,i=function(){function e(e,t){this.foldData=e,Array.isArray(t)?this.folds=t:t=this.folds=[t];var n=t[t.length-1];this.range=new r(t[0].start.row,t[0].start.column,n.end.row,n.end.column),this.start=this.range.start,this.end=this.range.end,this.folds.forEach(function(e){e.setFoldLine(this)},this)}return e.prototype.shiftRow=function(e){this.start.row+=e,this.end.row+=e,this.folds.forEach(function(t){t.start.row+=e,t.end.row+=e})},e.prototype.addFold=function(e){if(e.sameRow){if(e.start.row<this.startRow||e.endRow>this.endRow)throw new Error("Can't add a fold to this FoldLine as it has no connection");this.folds.push(e),this.folds.sort(function(e,t){return-e.range.compareEnd(t.start.row,t.start.column)}),this.range.compareEnd(e.start.row,e.start.column)>0?(this.end.row=e.end.row,this.end.column=e.end.column):this.range.compareStart(e.end.row,e.end.column)<0&&(this.start.row=e.start.row,this.start.column=e.start.column)}else if(e.start.row==this.end.row)this.folds.push(e),this.end.row=e.end.row,this.end.column=e.end.column;else{if(e.end.row!=this.start.row)throw new Error("Trying to add fold to FoldRow that doesn't have a matching row");this.folds.unshift(e),this.start.row=e.start.row,this.start.column=e.start.column}e.foldLine=this},e.prototype.containsRow=function(e){return e>=this.start.row&&e<=this.end.row},e.prototype.walk=function(e,t,n){var r=0,i=this.folds,s,o,u,a=!0;t==null&&(t=this.end.row,n=this.end.column);for(var f=0;f<i.length;f++){s=i[f],o=s.range.compareStart(t,n);if(o==-1){e(null,t,n,r,a);return}u=e(null,s.start.row,s.start.column,r,a),u=!u&&e(s.placeholder,s.start.row,s.start.column,r);if(u||o===0)return;a=!s.sameRow,r=s.end.column}e(null,t,n,r,a)},e.prototype.getNextFoldTo=function(e,t){var n,r;for(var i=0;i<this.folds.length;i++){n=this.folds[i],r=n.range.compareEnd(e,t);if(r==-1)return{fold:n,kind:"after"};if(r===0)return{fold:n,kind:"inside"}}return null},e.prototype.addRemoveChars=function(e,t,n){var r=this.getNextFoldTo(e,t),i,s;if(r){i=r.fold;if(r.kind=="inside"&&i.start.column!=t&&i.start.row!=e)window.console&&window.console.log(e,t,i);else if(i.start.row==e){s=this.folds;var o=s.indexOf(i);o===0&&(this.start.column+=n);for(o;o<s.length;o++){i=s[o],i.start.column+=n;if(!i.sameRow)return;i.end.column+=n}this.end.column+=n}}},e.prototype.split=function(t,n){var r=this.getNextFoldTo(t,n);if(!r||r.kind=="inside")return null;var i=r.fold,s=this.folds,o=this.foldData,u=s.indexOf(i),a=s[u-1];this.end.row=a.end.row,this.end.column=a.end.column,s=s.splice(u,s.length-u);var f=new e(o,s);return o.splice(o.indexOf(this)+1,0,f),f},e.prototype.merge=function(e){var t=e.folds;for(var n=0;n<t.length;n++)this.addFold(t[n]);var r=this.foldData;r.splice(r.indexOf(e),1)},e.prototype.toString=function(){var e=[this.range.toString()+": ["];return this.folds.forEach(function(t){e.push(" "+t.toString())}),e.push("]"),e.join("\n")},e.prototype.idxToPosition=function(e){var t=0;for(var n=0;n<this.folds.length;n++){var r=this.folds[n];e-=r.start.column-t;if(e<0)return{row:r.start.row,column:r.start.column+e};e-=r.placeholder.length;if(e<0)return r.start;t=r.end.column}return{row:this.end.row,column:this.end.column+e}},e}();t.FoldLine=i}),define("ace/range_list",["require","exports","module","ace/range"],function(e,t,n){"use strict";var r=e("./range").Range,i=r.comparePoints,s=function(){function e(){this.ranges=[],this.$bias=1}return e.prototype.pointIndex=function(e,t,n){var r=this.ranges;for(var s=n||0;s<r.length;s++){var o=r[s],u=i(e,o.end);if(u>0)continue;var a=i(e,o.start);return u===0?t&&a!==0?-s-2:s:a>0||a===0&&!t?s:-s-1}return-s-1},e.prototype.add=function(e){var t=!e.isEmpty(),n=this.pointIndex(e.start,t);n<0&&(n=-n-1);var r=this.pointIndex(e.end,t,n);return r<0?r=-r-1:r++,this.ranges.splice(n,r-n,e)},e.prototype.addList=function(e){var t=[];for(var n=e.length;n--;)t.push.apply(t,this.add(e[n]));return t},e.prototype.substractPoint=function(e){var t=this.pointIndex(e);if(t>=0)return this.ranges.splice(t,1)},e.prototype.merge=function(){var e=[],t=this.ranges;t=t.sort(function(e,t){return i(e.start,t.start)});var n=t[0],r;for(var s=1;s<t.length;s++){r=n,n=t[s];var o=i(r.end,n.start);if(o<0)continue;if(o==0&&!r.isEmpty()&&!n.isEmpty())continue;i(r.end,n.end)<0&&(r.end.row=n.end.row,r.end.column=n.end.column),t.splice(s,1),e.push(n),n=r,s--}return this.ranges=t,e},e.prototype.contains=function(e,t){return this.pointIndex({row:e,column:t})>=0},e.prototype.containsPoint=function(e){return this.pointIndex(e)>=0},e.prototype.rangeAtPoint=function(e){var t=this.pointIndex(e);if(t>=0)return this.ranges[t]},e.prototype.clipRows=function(e,t){var n=this.ranges;if(n[0].start.row>t||n[n.length-1].start.row<e)return[];var r=this.pointIndex({row:e,column:0});r<0&&(r=-r-1);var i=this.pointIndex({row:t,column:0},r);i<0&&(i=-i-1);var s=[];for(var o=r;o<i;o++)s.push(n[o]);return s},e.prototype.removeAll=function(){return this.ranges.splice(0,this.ranges.length)},e.prototype.attach=function(e){this.session&&this.detach(),this.session=e,this.onChange=this.$onChange.bind(this),this.session.on("change",this.onChange)},e.prototype.detach=function(){if(!this.session)return;this.session.removeListener("change",this.onChange),this.session=null},e.prototype.$onChange=function(e){var t=e.start,n=e.end,r=t.row,i=n.row,s=this.ranges;for(var o=0,u=s.length;o<u;o++){var a=s[o];if(a.end.row>=r)break}if(e.action=="insert"){var f=i-r,l=-t.column+n.column;for(;o<u;o++){var a=s[o];if(a.start.row>r)break;a.start.row==r&&a.start.column>=t.column&&(a.start.column==t.column&&this.$bias<=0||(a.start.column+=l,a.start.row+=f));if(a.end.row==r&&a.end.column>=t.column){if(a.end.column==t.column&&this.$bias<0)continue;a.end.column==t.column&&l>0&&o<u-1&&a.end.column>a.start.column&&a.end.column==s[o+1].start.column&&(a.end.column-=l),a.end.column+=l,a.end.row+=f}}}else{var f=r-i,l=t.column-n.column;for(;o<u;o++){var a=s[o];if(a.start.row>i)break;if(a.end.row<i&&(r<a.end.row||r==a.end.row&&t.column<a.end.column))a.end.row=r,a.end.column=t.column;else if(a.end.row==i)if(a.end.column<=n.column){if(f||a.end.column>t.column)a.end.column=t.column,a.end.row=t.row}else a.end.column+=l,a.end.row+=f;else a.end.row>i&&(a.end.row+=f);if(a.start.row<i&&(r<a.start.row||r==a.start.row&&t.column<a.start.column))a.start.row=r,a.start.column=t.column;else if(a.start.row==i)if(a.start.column<=n.column){if(f||a.start.column>t.column)a.start.column=t.column,a.start.row=t.row}else a.start.column+=l,a.start.row+=f;else a.start.row>i&&(a.start.row+=f)}}if(f!=0&&o<u)for(;o<u;o++){var a=s[o];a.start.row+=f,a.end.row+=f}},e}();s.prototype.comparePoints=i,t.RangeList=s}),define("ace/edit_session/fold",["require","exports","module","ace/range_list"],function(e,t,n){"use strict";function o(e,t){e.row-=t.row,e.row==0&&(e.column-=t.column)}function u(e,t){o(e.start,t),o(e.end,t)}function a(e,t){e.row==0&&(e.column+=t.column),e.row+=t.row}function f(e,t){a(e.start,t),a(e.end,t)}var r=this&&this.__extends||function(){var e=function(t,n){return e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])},e(t,n)};return function(t,n){function r(){this.constructor=t}if(typeof n!="function"&&n!==null)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");e(t,n),t.prototype=n===null?Object.create(n):(r.prototype=n.prototype,new r)}}(),i=e("../range_list").RangeList,s=function(e){function t(t,n){var r=e.call(this)||this;return r.foldLine=null,r.placeholder=n,r.range=t,r.start=t.start,r.end=t.end,r.sameRow=t.start.row==t.end.row,r.subFolds=r.ranges=[],r}return r(t,e),t.prototype.toString=function(){return'"'+this.placeholder+'" '+this.range.toString()},t.prototype.setFoldLine=function(e){this.foldLine=e,this.subFolds.forEach(function(t){t.setFoldLine(e)})},t.prototype.clone=function(){var e=this.range.clone(),n=new t(e,this.placeholder);return this.subFolds.forEach(function(e){n.subFolds.push(e.clone())}),n.collapseChildren=this.collapseChildren,n},t.prototype.addSubFold=function(e){if(this.range.isEqual(e))return;u(e,this.start);var t=e.start.row,n=e.start.column;for(var r=0,i=-1;r<this.subFolds.length;r++){i=this.subFolds[r].range.compare(t,n);if(i!=1)break}var s=this.subFolds[r],o=0;if(i==0){if(s.range.containsRange(e))return s.addSubFold(e);o=1}var t=e.range.end.row,n=e.range.end.column;for(var a=r,i=-1;a<this.subFolds.length;a++){i=this.subFolds[a].range.compare(t,n);if(i!=1)break}i==0&&a++;var f=this.subFolds.splice(r,a-r,e),l=i==0?f.length-1:f.length;for(var c=o;c<l;c++)e.addSubFold(f[c]);return e.setFoldLine(this.foldLine),e},t.prototype.restoreRange=function(e){return f(e,this.start)},t}(i);t.Fold=s}),define("ace/edit_session/folding",["require","exports","module","ace/range","ace/edit_session/fold_line","ace/edit_session/fold","ace/token_iterator","ace/mouse/mouse_event"],function(e,t,n){"use strict";function a(){this.getFoldAt=function(e,t,n){var r=this.getFoldLine(e);if(!r)return null;var i=r.folds;for(var s=0;s<i.length;s++){var o=i[s].range;if(o.contains(e,t)){if(n==1&&o.isEnd(e,t)&&!o.isEmpty())continue;if(n==-1&&o.isStart(e,t)&&!o.isEmpty())continue;return i[s]}}},this.getFoldsInRange=function(e){var t=e.start,n=e.end,r=this.$foldData,i=[];t.column+=1,n.column-=1;for(var s=0;s<r.length;s++){var o=r[s].range.compareRange(e);if(o==2)continue;if(o==-2)break;var u=r[s].folds;for(var a=0;a<u.length;a++){var f=u[a];o=f.range.compareRange(e);if(o==-2)break;if(o==2)continue;if(o==42)break;i.push(f)}}return t.column-=1,n.column+=1,i},this.getFoldsInRangeList=function(e){if(Array.isArray(e)){var t=[];e.forEach(function(e){t=t.concat(this.getFoldsInRange(e))},this)}else var t=this.getFoldsInRange(e);return t},this.getAllFolds=function(){var e=[],t=this.$foldData;for(var n=0;n<t.length;n++)for(var r=0;r<t[n].folds.length;r++)e.push(t[n].folds[r]);return e},this.getFoldStringAt=function(e,t,n,r){r=r||this.getFoldLine(e);if(!r)return null;var i={end:{column:0}},s,o;for(var u=0;u<r.folds.length;u++){o=r.folds[u];var a=o.range.compareEnd(e,t);if(a==-1){s=this.getLine(o.start.row).substring(i.end.column,o.start.column);break}if(a===0)return null;i=o}return s||(s=this.getLine(o.start.row).substring(i.end.column)),n==-1?s.substring(0,t-i.end.column):n==1?s.substring(t-i.end.column):s},this.getFoldLine=function(e,t){var n=this.$foldData,r=0;t&&(r=n.indexOf(t)),r==-1&&(r=0);for(r;r<n.length;r++){var i=n[r];if(i.start.row<=e&&i.end.row>=e)return i;if(i.end.row>e)return null}return null},this.getNextFoldLine=function(e,t){var n=this.$foldData,r=0;t&&(r=n.indexOf(t)),r==-1&&(r=0);for(r;r<n.length;r++){var i=n[r];if(i.end.row>=e)return i}return null},this.getFoldedRowCount=function(e,t){var n=this.$foldData,r=t-e+1;for(var i=0;i<n.length;i++){var s=n[i],o=s.end.row,u=s.start.row;if(o>=t){u<t&&(u>=e?r-=t-u:r=0);break}o>=e&&(u>=e?r-=o-u:r-=o-e+1)}return r},this.$addFoldLine=function(e){return this.$foldData.push(e),this.$foldData.sort(function(e,t){return e.start.row-t.start.row}),e},this.addFold=function(e,t){var n=this.$foldData,r=!1,o;e instanceof s?o=e:(o=new s(t,e),o.collapseChildren=t.collapseChildren),this.$clipRangeToDocument(o.range);var u=o.start.row,a=o.start.column,f=o.end.row,l=o.end.column,c=this.getFoldAt(u,a,1),h=this.getFoldAt(f,l,-1);if(c&&h==c)return c.addSubFold(o);c&&!c.range.isStart(u,a)&&this.removeFold(c),h&&!h.range.isEnd(f,l)&&this.removeFold(h);var p=this.getFoldsInRange(o.range);p.length>0&&(this.removeFolds(p),o.collapseChildren||p.forEach(function(e){o.addSubFold(e)}));for(var d=0;d<n.length;d++){var v=n[d];if(f==v.start.row){v.addFold(o),r=!0;break}if(u==v.end.row){v.addFold(o),r=!0;if(!o.sameRow){var m=n[d+1];if(m&&m.start.row==f){v.merge(m);break}}break}if(f<=v.start.row)break}return r||(v=this.$addFoldLine(new i(this.$foldData,o))),this.$useWrapMode?this.$updateWrapData(v.start.row,v.start.row):this.$updateRowLengthCache(v.start.row,v.start.row),this.$modified=!0,this._signal("changeFold",{data:o,action:"add"}),o},this.addFolds=function(e){e.forEach(function(e){this.addFold(e)},this)},this.removeFold=function(e){var t=e.foldLine,n=t.start.row,r=t.end.row,i=this.$foldData,s=t.folds;if(s.length==1)i.splice(i.indexOf(t),1);else if(t.range.isEnd(e.end.row,e.end.column))s.pop(),t.end.row=s[s.length-1].end.row,t.end.column=s[s.length-1].end.column;else if(t.range.isStart(e.start.row,e.start.column))s.shift(),t.start.row=s[0].start.row,t.start.column=s[0].start.column;else if(e.sameRow)s.splice(s.indexOf(e),1);else{var o=t.split(e.start.row,e.start.column);s=o.folds,s.shift(),o.start.row=s[0].start.row,o.start.column=s[0].start.column}this.$updating||(this.$useWrapMode?this.$updateWrapData(n,r):this.$updateRowLengthCache(n,r)),this.$modified=!0,this._signal("changeFold",{data:e,action:"remove"})},this.removeFolds=function(e){var t=[];for(var n=0;n<e.length;n++)t.push(e[n]);t.forEach(function(e){this.removeFold(e)},this),this.$modified=!0},this.expandFold=function(e){this.removeFold(e),e.subFolds.forEach(function(t){e.restoreRange(t),this.addFold(t)},this),e.collapseChildren>0&&this.foldAll(e.start.row+1,e.end.row,e.collapseChildren-1),e.subFolds=[]},this.expandFolds=function(e){e.forEach(function(e){this.expandFold(e)},this)},this.unfold=function(e,t){var n,i;if(e==null)n=new r(0,0,this.getLength(),0),t==null&&(t=!0);else if(typeof e=="number")n=new r(e,0,e,this.getLine(e).length);else if("row"in e)n=r.fromPoints(e,e);else{if(Array.isArray(e))return i=[],e.forEach(function(e){i=i.concat(this.unfold(e))},this),i;n=e}i=this.getFoldsInRangeList(n);var s=i;while(i.length==1&&r.comparePoints(i[0].start,n.start)<0&&r.comparePoints(i[0].end,n.end)>0)this.expandFolds(i),i=this.getFoldsInRangeList(n);t!=0?this.removeFolds(i):this.expandFolds(i);if(s.length)return s},this.isRowFolded=function(e,t){return!!this.getFoldLine(e,t)},this.getRowFoldEnd=function(e,t){var n=this.getFoldLine(e,t);return n?n.end.row:e},this.getRowFoldStart=function(e,t){var n=this.getFoldLine(e,t);return n?n.start.row:e},this.getFoldDisplayLine=function(e,t,n,r,i){r==null&&(r=e.start.row),i==null&&(i=0),t==null&&(t=e.end.row),n==null&&(n=this.getLine(t).length);var s=this.doc,o="";return e.walk(function(e,t,n,u){if(t<r)return;if(t==r){if(n<i)return;u=Math.max(i,u)}e!=null?o+=e:o+=s.getLine(t).substring(u,n)},t,n),o},this.getDisplayLine=function(e,t,n,r){var i=this.getFoldLine(e);if(!i){var s;return s=this.doc.getLine(e),s.substring(r||0,t||s.length)}return this.getFoldDisplayLine(i,e,t,n,r)},this.$cloneFoldData=function(){var e=[];return e=this.$foldData.map(function(t){var n=t.folds.map(function(e){return e.clone()});return new i(e,n)}),e},this.toggleFold=function(e){var t=this.selection,n=t.getRange(),r,i;if(n.isEmpty()){var s=n.start;r=this.getFoldAt(s.row,s.column);if(r){this.expandFold(r);return}(i=this.findMatchingBracket(s))?n.comparePoint(i)==1?n.end=i:(n.start=i,n.start.column++,n.end.column--):(i=this.findMatchingBracket({row:s.row,column:s.column+1}))?(n.comparePoint(i)==1?n.end=i:n.start=i,n.start.column++):n=this.getCommentFoldRange(s.row,s.column)||n}else{var o=this.getFoldsInRange(n);if(e&&o.length){this.expandFolds(o);return}o.length==1&&(r=o[0])}r||(r=this.getFoldAt(n.start.row,n.start.column));if(r&&r.range.toString()==n.toString()){this.expandFold(r);return}var u="...";if(!n.isMultiLine()){u=this.getTextRange(n);if(u.length<4)return;u=u.trim().substring(0,2)+".."}this.addFold(u,n)},this.getCommentFoldRange=function(e,t,n){var i=new o(this,e,t),s=i.getCurrentToken(),u=s&&s.type;if(s&&/^comment|string/.test(u)){u=u.match(/comment|string/)[0],u=="comment"&&(u+="|doc-start|\\.doc");var a=new RegExp(u),f=new r;if(n!=1){do s=i.stepBackward();while(s&&a.test(s.type)&&!/^comment.end/.test(s.type));s=i.stepForward()}f.start.row=i.getCurrentTokenRow(),f.start.column=i.getCurrentTokenColumn()+(/^comment.start/.test(s.type)?s.value.length:2),i=new o(this,e,t);if(n!=-1){var l=-1;do{s=i.stepForward();if(l==-1){var c=this.getState(i.$row);a.test(c)||(l=i.$row)}else if(i.$row>l)break}while(s&&a.test(s.type)&&!/^comment.start/.test(s.type));s=i.stepBackward()}else s=i.getCurrentToken();return f.end.row=i.getCurrentTokenRow(),f.end.column=i.getCurrentTokenColumn(),/^comment.end/.test(s.type)||(f.end.column+=s.value.length-2),f}},this.foldAll=function(e,t,n,r){n==undefined&&(n=1e5);var i=this.foldWidgets;if(!i)return;t=t||this.getLength(),e=e||0;for(var s=e;s<t;s++){i[s]==null&&(i[s]=this.getFoldWidget(s));if(i[s]!="start")continue;if(r&&!r(s))continue;var o=this.getFoldWidgetRange(s);o&&o.isMultiLine()&&o.end.row<=t&&o.start.row>=e&&(s=o.end.row,o.collapseChildren=n,this.addFold("...",o))}},this.foldToLevel=function(e){this.foldAll();while(e-->0)this.unfold(null,!1)},this.foldAllComments=function(){var e=this;this.foldAll(null,null,null,function(t){var n=e.getTokens(t);for(var r=0;r<n.length;r++){var i=n[r];if(i.type=="text"&&/^\s+$/.test(i.value))continue;return/comment/.test(i.type)?!0:!1}})},this.$foldStyles={manual:1,markbegin:1,markbeginend:1},this.$foldStyle="markbegin",this.setFoldStyle=function(e){if(!this.$foldStyles[e])throw new Error("invalid fold style: "+e+"["+Object.keys(this.$foldStyles).join(", ")+"]");if(this.$foldStyle==e)return;this.$foldStyle=e,e=="manual"&&this.unfold();var t=this.$foldMode;this.$setFolding(null),this.$setFolding(t)},this.$setFolding=function(e){if(this.$foldMode==e)return;this.$foldMode=e,this.off("change",this.$updateFoldWidgets),this.off("tokenizerUpdate",this.$tokenizerUpdateFoldWidgets),this._signal("changeAnnotation");if(!e||this.$foldStyle=="manual"){this.foldWidgets=null;return}this.foldWidgets=[],this.getFoldWidget=e.getFoldWidget.bind(e,this,this.$foldStyle),this.getFoldWidgetRange=e.getFoldWidgetRange.bind(e,this,this.$foldStyle),this.$updateFoldWidgets=this.updateFoldWidgets.bind(this),this.$tokenizerUpdateFoldWidgets=this.tokenizerUpdateFoldWidgets.bind(this),this.on("change",this.$updateFoldWidgets),this.on("tokenizerUpdate",this.$tokenizerUpdateFoldWidgets)},this.getParentFoldRangeData=function(e,t){var n=this.foldWidgets;if(!n||t&&n[e])return{};var r=e-1,i;while(r>=0){var s=n[r];s==null&&(s=n[r]=this.getFoldWidget(r));if(s=="start"){var o=this.getFoldWidgetRange(r);i||(i=o);if(o&&o.end.row>=e)break}r--}return{range:r!==-1&&o,firstRange:i}},this.onFoldWidgetClick=function(e,t){t instanceof u&&(t=t.domEvent);var n={children:t.shiftKey,all:t.ctrlKey||t.metaKey,siblings:t.altKey},r=this.$toggleFoldWidget(e,n);if(!r){var i=t.target||t.srcElement;i&&/ace_fold-widget/.test(i.className)&&(i.className+=" ace_invalid")}},this.$toggleFoldWidget=function(e,t){if(!this.getFoldWidget)return;var n=this.getFoldWidget(e),r=this.getLine(e),i=n==="end"?-1:1,s=this.getFoldAt(e,i===-1?0:r.length,i);if(s)return t.children||t.all?this.removeFold(s):this.expandFold(s),s;var o=this.getFoldWidgetRange(e,!0);if(o&&!o.isMultiLine()){s=this.getFoldAt(o.start.row,o.start.column,1);if(s&&o.isEqual(s.range))return this.removeFold(s),s}if(t.siblings){var u=this.getParentFoldRangeData(e);if(u.range)var a=u.range.start.row+1,f=u.range.end.row;this.foldAll(a,f,t.all?1e4:0)}else t.children?(f=o?o.end.row:this.getLength(),this.foldAll(e+1,f,t.all?1e4:0)):o&&(t.all&&(o.collapseChildren=1e4),this.addFold("...",o));return o},this.toggleFoldWidget=function(e){var t=this.selection.getCursor().row;t=this.getRowFoldStart(t);var n=this.$toggleFoldWidget(t,{});if(n)return;var r=this.getParentFoldRangeData(t,!0);n=r.range||r.firstRange;if(n){t=n.start.row;var i=this.getFoldAt(t,this.getLine(t).length,1);i?this.removeFold(i):this.addFold("...",n)}},this.updateFoldWidgets=function(e){var t=e.start.row,n=e.end.row-t;if(n===0)this.foldWidgets[t]=null;else if(e.action=="remove")this.foldWidgets.splice(t,n+1,null);else{var r=Array(n+1);r.unshift(t,1),this.foldWidgets.splice.apply(this.foldWidgets,r)}},this.tokenizerUpdateFoldWidgets=function(e){var t=e.data;t.first!=t.last&&this.foldWidgets.length>t.first&&this.foldWidgets.splice(t.first,this.foldWidgets.length)}}var r=e("../range").Range,i=e("./fold_line").FoldLine,s=e("./fold").Fold,o=e("../token_iterator").TokenIterator,u=e("../mouse/mouse_event").MouseEvent;t.Folding=a}),define("ace/edit_session/bracket_match",["require","exports","module","ace/token_iterator","ace/range"],function(e,t,n){"use strict";function s(){this.findMatchingBracket=function(e,t){if(e.column==0)return null;var n=t||this.getLine(e.row).charAt(e.column-1);if(n=="")return null;var r=n.match(/([\(\[\{])|([\)\]\}])/);return r?r[1]?this.$findClosingBracket(r[1],e):this.$findOpeningBracket(r[2],e):null},this.getBracketRange=function(e){var t=this.getLine(e.row),n=!0,r,s=t.charAt(e.column-1),o=s&&s.match(/([\(\[\{])|([\)\]\}])/);o||(s=t.charAt(e.column),e={row:e.row,column:e.column+1},o=s&&s.match(/([\(\[\{])|([\)\]\}])/),n=!1);if(!o)return null;if(o[1]){var u=this.$findClosingBracket(o[1],e);if(!u)return null;r=i.fromPoints(e,u),n||(r.end.column++,r.start.column--),r.cursor=r.end}else{var u=this.$findOpeningBracket(o[2],e);if(!u)return null;r=i.fromPoints(u,e),n||(r.start.column++,r.end.column--),r.cursor=r.start}return r},this.getMatchingBracketRanges=function(e,t){var n=this.getLine(e.row),r=/([\(\[\{])|([\)\]\}])/,s=!t&&n.charAt(e.column-1),o=s&&s.match(r);o||(s=(t===undefined||t)&&n.charAt(e.column),e={row:e.row,column:e.column+1},o=s&&s.match(r));if(!o)return null;var u=new i(e.row,e.column-1,e.row,e.column),a=o[1]?this.$findClosingBracket(o[1],e):this.$findOpeningBracket(o[2],e);if(!a)return[u];var f=new i(a.row,a.column,a.row,a.column+1);return[u,f]},this.$brackets={")":"(","(":")","]":"[","[":"]","{":"}","}":"{","<":">",">":"<"},this.$findOpeningBracket=function(e,t,n){var i=this.$brackets[e],s=1,o=new r(this,t.row,t.column),u=o.getCurrentToken();u||(u=o.stepForward());if(!u)return;n||(n=new RegExp("(\\.?"+u.type.replace(".","\\.").replace("rparen",".paren").replace(/\b(?:end)\b/,"(?:start|begin|end)").replace(/-close\b/,"-(close|open)")+")+"));var a=t.column-o.getCurrentTokenColumn()-2,f=u.value;for(;;){while(a>=0){var l=f.charAt(a);if(l==i){s-=1;if(s==0)return{row:o.getCurrentTokenRow(),column:a+o.getCurrentTokenColumn()}}else l==e&&(s+=1);a-=1}do u=o.stepBackward();while(u&&!n.test(u.type));if(u==null)break;f=u.value,a=f.length-1}return null},this.$findClosingBracket=function(e,t,n){var i=this.$brackets[e],s=1,o=new r(this,t.row,t.column),u=o.getCurrentToken();u||(u=o.stepForward());if(!u)return;n||(n=new RegExp("(\\.?"+u.type.replace(".","\\.").replace("lparen",".paren").replace(/\b(?:start|begin)\b/,"(?:start|begin|end)").replace(/-open\b/,"-(close|open)")+")+"));var a=t.column-o.getCurrentTokenColumn();for(;;){var f=u.value,l=f.length;while(a<l){var c=f.charAt(a);if(c==i){s-=1;if(s==0)return{row:o.getCurrentTokenRow(),column:a+o.getCurrentTokenColumn()}}else c==e&&(s+=1);a+=1}do u=o.stepForward();while(u&&!n.test(u.type));if(u==null)break;a=0}return null},this.getMatchingTags=function(e){var t=new r(this,e.row,e.column),n=this.$findTagName(t);if(!n)return;var i=t.stepBackward();return i.value==="<"?this.$findClosingTag(t,n):this.$findOpeningTag(t,n)},this.$findTagName=function(e){var t=e.getCurrentToken(),n=!1,r=!1;if(t&&t.type.indexOf("tag-name")===-1)do r?t=e.stepBackward():t=e.stepForward(),t&&(t.value==="/>"?r=!0:t.type.indexOf("tag-name")!==-1&&(n=!0));while(t&&!n);return t},this.$findClosingTag=function(e,t){var n,r=t.value,s=t.value,o=0,u=new i(e.getCurrentTokenRow(),e.getCurrentTokenColumn(),e.getCurrentTokenRow(),e.getCurrentTokenColumn()+1);t=e.stepForward();var a=new i(e.getCurrentTokenRow(),e.getCurrentTokenColumn(),e.getCurrentTokenRow(),e.getCurrentTokenColumn()+t.value.length),f=!1;do{n=t;if(n.type.indexOf("tag-close")!==-1&&!f){var l=new i(e.getCurrentTokenRow(),e.getCurrentTokenColumn(),e.getCurrentTokenRow(),e.getCurrentTokenColumn()+1);f=!0}t=e.stepForward();if(t){if(t.value===">"&&!f){var l=new i(e.getCurrentTokenRow(),e.getCurrentTokenColumn(),e.getCurrentTokenRow(),e.getCurrentTokenColumn()+1);f=!0}if(t.type.indexOf("tag-name")!==-1){r=t.value;if(s===r)if(n.value==="<")o++;else if(n.value==="</"){o--;if(o<0){e.stepBackward();var c=new i(e.getCurrentTokenRow(),e.getCurrentTokenColumn(),e.getCurrentTokenRow(),e.getCurrentTokenColumn()+2);t=e.stepForward();var h=new i(e.getCurrentTokenRow(),e.getCurrentTokenColumn(),e.getCurrentTokenRow(),e.getCurrentTokenColumn()+t.value.length);t.type.indexOf("tag-close")===-1&&(t=e.stepForward());if(!t||t.value!==">")return;var p=new i(e.getCurrentTokenRow(),e.getCurrentTokenColumn(),e.getCurrentTokenRow(),e.getCurrentTokenColumn()+1)}}}else if(s===r&&t.value==="/>"){o--;if(o<0)var c=new i(e.getCurrentTokenRow(),e.getCurrentTokenColumn(),e.getCurrentTokenRow(),e.getCurrentTokenColumn()+2),h=c,p=h,l=new i(a.end.row,a.end.column,a.end.row,a.end.column+1)}}}while(t&&o>=0);if(u&&l&&c&&p&&a&&h)return{openTag:new i(u.start.row,u.start.column,l.end.row,l.end.column),closeTag:new i(c.start.row,c.start.column,p.end.row,p.end.column),openTagName:a,closeTagName:h}},this.$findOpeningTag=function(e,t){var n=e.getCurrentToken(),r=t.value,s=0,o=e.getCurrentTokenRow(),u=e.getCurrentTokenColumn(),a=u+2,f=new i(o,u,o,a);e.stepForward();var l=new i(e.getCurrentTokenRow(),e.getCurrentTokenColumn(),e.getCurrentTokenRow(),e.getCurrentTokenColumn()+t.value.length);t.type.indexOf("tag-close")===-1&&(t=e.stepForward());if(!t||t.value!==">")return;var c=new i(e.getCurrentTokenRow(),e.getCurrentTokenColumn(),e.getCurrentTokenRow(),e.getCurrentTokenColumn()+1);e.stepBackward(),e.stepBackward();do{t=n,o=e.getCurrentTokenRow(),u=e.getCurrentTokenColumn(),a=u+t.value.length,n=e.stepBackward();if(t)if(t.type.indexOf("tag-name")!==-1){if(r===t.value)if(n.value==="<"){s++;if(s>0){var h=new i(o,u,o,a),p=new i(e.getCurrentTokenRow(),e.getCurrentTokenColumn(),e.getCurrentTokenRow(),e.getCurrentTokenColumn()+1);do t=e.stepForward();while(t&&t.value!==">");var d=new i(e.getCurrentTokenRow(),e.getCurrentTokenColumn(),e.getCurrentTokenRow(),e.getCurrentTokenColumn()+1)}}else n.value==="</"&&s--}else if(t.value==="/>"){var v=0,m=n;while(m){if(m.type.indexOf("tag-name")!==-1&&m.value===r){s--;break}if(m.value==="<")break;m=e.stepBackward(),v++}for(var g=0;g<v;g++)e.stepForward()}}while(n&&s<=0);if(p&&d&&f&&c&&h&&l)return{openTag:new i(p.start.row,p.start.column,d.end.row,d.end.column),closeTag:new i(f.start.row,f.start.column,c.end.row,c.end.column),openTagName:h,closeTagName:l}}}var r=e("../token_iterator").TokenIterator,i=e("../range").Range;t.BracketMatch=s}),define("ace/edit_session",["require","exports","module","ace/lib/oop","ace/lib/lang","ace/bidihandler","ace/config","ace/lib/event_emitter","ace/selection","ace/mode/text","ace/range","ace/document","ace/background_tokenizer","ace/search_highlight","ace/undomanager","ace/edit_session/folding","ace/edit_session/bracket_match"],function(e,t,n){"use strict";function T(e){return e<4352?!1:e>=4352&&e<=4447||e>=4515&&e<=4519||e>=4602&&e<=4607||e>=9001&&e<=9002||e>=11904&&e<=11929||e>=11931&&e<=12019||e>=12032&&e<=12245||e>=12272&&e<=12283||e>=12288&&e<=12350||e>=12353&&e<=12438||e>=12441&&e<=12543||e>=12549&&e<=12589||e>=12593&&e<=12686||e>=12688&&e<=12730||e>=12736&&e<=12771||e>=12784&&e<=12830||e>=12832&&e<=12871||e>=12880&&e<=13054||e>=13056&&e<=19903||e>=19968&&e<=42124||e>=42128&&e<=42182||e>=43360&&e<=43388||e>=44032&&e<=55203||e>=55216&&e<=55238||e>=55243&&e<=55291||e>=63744&&e<=64255||e>=65040&&e<=65049||e>=65072&&e<=65106||e>=65108&&e<=65126||e>=65128&&e<=65131||e>=65281&&e<=65376||e>=65504&&e<=65510}var r=e("./lib/oop"),i=e("./lib/lang"),s=e("./bidihandler").BidiHandler,o=e("./config"),u=e("./lib/event_emitter").EventEmitter,a=e("./selection").Selection,f=e("./mode/text").Mode,l=e("./range").Range,c=e("./document").Document,h=e("./background_tokenizer").BackgroundTokenizer,p=e("./search_highlight").SearchHighlight,d=e("./undomanager").UndoManager,v=function(){function e(t,n){this.doc,this.$breakpoints=[],this.$decorations=[],this.$frontMarkers={},this.$backMarkers={},this.$markerId=1,this.$undoSelect=!0,this.$foldData=[],this.id="session"+ ++e.$uid,this.$foldData.toString=function(){return this.join("\n")},this.bgTokenizer=new h((new f).getTokenizer(),this);var r=this;this.bgTokenizer.on("update",function(e){r._signal("tokenizerUpdate",e)}),this.on("changeFold",this.onChangeFold.bind(this)),this.$onChange=this.onChange.bind(this);if(typeof t!="object"||!t.getLine)t=new c(t);this.setDocument(t),this.selection=new a(this),this.$bidiHandler=new s(this),o.resetOptions(this),this.setMode(n),o._signal("session",this),this.destroyed=!1}return e.prototype.setDocument=function(e){this.doc&&this.doc.off("change",this.$onChange),this.doc=e,e.on("change",this.$onChange,!0),this.bgTokenizer.setDocument(this.getDocument()),this.resetCaches()},e.prototype.getDocument=function(){return this.doc},e.prototype.$resetRowCache=function(e){if(!e){this.$docRowCache=[],this.$screenRowCache=[];return}var t=this.$docRowCache.length,n=this.$getRowCacheIndex(this.$docRowCache,e)+1;t>n&&(this.$docRowCache.splice(n,t),this.$screenRowCache.splice(n,t))},e.prototype.$getRowCacheIndex=function(e,t){var n=0,r=e.length-1;while(n<=r){var i=n+r>>1,s=e[i];if(t>s)n=i+1;else{if(!(t<s))return i;r=i-1}}return n-1},e.prototype.resetCaches=function(){this.$modified=!0,this.$wrapData=[],this.$rowLengthCache=[],this.$resetRowCache(0),this.destroyed||this.bgTokenizer.start(0)},e.prototype.onChangeFold=function(e){var t=e.data;this.$resetRowCache(t.start.row)},e.prototype.onChange=function(e){this.$modified=!0,this.$bidiHandler.onChange(e),this.$resetRowCache(e.start.row);var t=this.$updateInternalDataOnChange(e);!this.$fromUndo&&this.$undoManager&&(t&&t.length&&(this.$undoManager.add({action:"removeFolds",folds:t},this.mergeUndoDeltas),this.mergeUndoDeltas=!0),this.$undoManager.add(e,this.mergeUndoDeltas),this.mergeUndoDeltas=!0,this.$informUndoManager.schedule()),this.bgTokenizer.$updateOnChange(e),this._signal("change",e)},e.prototype.setValue=function(e){this.doc.setValue(e),this.selection.moveTo(0,0),this.$resetRowCache(0),this.setUndoManager(this.$undoManager),this.getUndoManager().reset()},e.fromJSON=function(t){typeof t=="string"&&(t=JSON.parse(t));var n=new d;n.$undoStack=t.history.undo,n.$redoStack=t.history.redo,n.mark=t.history.mark,n.$rev=t.history.rev;var r=new e(t.value);return t.folds.forEach(function(e){r.addFold("...",l.fromPoints(e.start,e.end))}),r.setAnnotations(t.annotations),r.setBreakpoints(t.breakpoints),r.setMode(t.mode),r.setScrollLeft(t.scrollLeft),r.setScrollTop(t.scrollTop),r.setUndoManager(n),r.selection.fromJSON(t.selection),r},e.prototype.toJSON=function(){return{annotations:this.$annotations,breakpoints:this.$breakpoints,folds:this.getAllFolds().map(function(e){return e.range}),history:this.getUndoManager(),mode:this.$mode.$id,scrollLeft:this.$scrollLeft,scrollTop:this.$scrollTop,selection:this.selection.toJSON(),value:this.doc.getValue()}},e.prototype.toString=function(){return this.doc.getValue()},e.prototype.getSelection=function(){return this.selection},e.prototype.getState=function(e){return this.bgTokenizer.getState(e)},e.prototype.getTokens=function(e){return this.bgTokenizer.getTokens(e)},e.prototype.getTokenAt=function(e,t){var n=this.bgTokenizer.getTokens(e),r,i=0;if(t==null){var s=n.length-1;i=this.getLine(e).length}else for(var s=0;s<n.length;s++){i+=n[s].value.length;if(i>=t)break}return r=n[s],r?(r.index=s,r.start=i-r.value.length,r):null},e.prototype.setUndoManager=function(e){this.$undoManager=e,this.$informUndoManager&&this.$informUndoManager.cancel();if(e){var t=this;e.addSession(this),this.$syncInformUndoManager=function(){t.$informUndoManager.cancel(),t.mergeUndoDeltas=!1},this.$informUndoManager=i.delayedCall(this.$syncInformUndoManager)}else this.$syncInformUndoManager=function(){}},e.prototype.markUndoGroup=function(){this.$syncInformUndoManager&&this.$syncInformUndoManager()},e.prototype.getUndoManager=function(){return this.$undoManager||this.$defaultUndoManager},e.prototype.getTabString=function(){return this.getUseSoftTabs()?i.stringRepeat(" ",this.getTabSize()):" "},e.prototype.setUseSoftTabs=function(e){this.setOption("useSoftTabs",e)},e.prototype.getUseSoftTabs=function(){return this.$useSoftTabs&&!this.$mode.$indentWithTabs},e.prototype.setTabSize=function(e){this.setOption("tabSize",e)},e.prototype.getTabSize=function(){return this.$tabSize},e.prototype.isTabStop=function(e){return this.$useSoftTabs&&e.column%this.$tabSize===0},e.prototype.setNavigateWithinSoftTabs=function(e){this.setOption("navigateWithinSoftTabs",e)},e.prototype.getNavigateWithinSoftTabs=function(){return this.$navigateWithinSoftTabs},e.prototype.setOverwrite=function(e){this.setOption("overwrite",e)},e.prototype.getOverwrite=function(){return this.$overwrite},e.prototype.toggleOverwrite=function(){this.setOverwrite(!this.$overwrite)},e.prototype.addGutterDecoration=function(e,t){this.$decorations[e]||(this.$decorations[e]=""),this.$decorations[e]+=" "+t,this._signal("changeBreakpoint",{})},e.prototype.removeGutterDecoration=function(e,t){this.$decorations[e]=(this.$decorations[e]||"").replace(" "+t,""),this._signal("changeBreakpoint",{})},e.prototype.getBreakpoints=function(){return this.$breakpoints},e.prototype.setBreakpoints=function(e){this.$breakpoints=[];for(var t=0;t<e.length;t++)this.$breakpoints[e[t]]="ace_breakpoint";this._signal("changeBreakpoint",{})},e.prototype.clearBreakpoints=function(){this.$breakpoints=[],this._signal("changeBreakpoint",{})},e.prototype.setBreakpoint=function(e,t){t===undefined&&(t="ace_breakpoint"),t?this.$breakpoints[e]=t:delete this.$breakpoints[e],this._signal("changeBreakpoint",{})},e.prototype.clearBreakpoint=function(e){delete this.$breakpoints[e],this._signal("changeBreakpoint",{})},e.prototype.addMarker=function(e,t,n,r){var i=this.$markerId++,s={range:e,type:n||"line",renderer:typeof n=="function"?n:null,clazz:t,inFront:!!r,id:i};return r?(this.$frontMarkers[i]=s,this._signal("changeFrontMarker")):(this.$backMarkers[i]=s,this._signal("changeBackMarker")),i},e.prototype.addDynamicMarker=function(e,t){if(!e.update)return;var n=this.$markerId++;return e.id=n,e.inFront=!!t,t?(this.$frontMarkers[n]=e,this._signal("changeFrontMarker")):(this.$backMarkers[n]=e,this._signal("changeBackMarker")),e},e.prototype.removeMarker=function(e){var t=this.$frontMarkers[e]||this.$backMarkers[e];if(!t)return;var n=t.inFront?this.$frontMarkers:this.$backMarkers;delete n[e],this._signal(t.inFront?"changeFrontMarker":"changeBackMarker")},e.prototype.getMarkers=function(e){return e?this.$frontMarkers:this.$backMarkers},e.prototype.highlight=function(e){if(!this.$searchHighlight){var t=new p(null,"ace_selected-word","text");this.$searchHighlight=this.addDynamicMarker(t)}this.$searchHighlight.setRegexp(e)},e.prototype.highlightLines=function(e,t,n,r){typeof t!="number"&&(n=t,t=e),n||(n="ace_step");var i=new l(e,0,t,Infinity);return i.id=this.addMarker(i,n,"fullLine",r),i},e.prototype.setAnnotations=function(e){this.$annotations=e,this._signal("changeAnnotation",{})},e.prototype.getAnnotations=function(){return this.$annotations||[]},e.prototype.clearAnnotations=function(){this.setAnnotations([])},e.prototype.$detectNewLine=function(e){var t=e.match(/^.*?(\r?\n)/m);t?this.$autoNewLine=t[1]:this.$autoNewLine="\n"},e.prototype.getWordRange=function(e,t){var n=this.getLine(e),r=!1;t>0&&(r=!!n.charAt(t-1).match(this.tokenRe)),r||(r=!!n.charAt(t).match(this.tokenRe));if(r)var i=this.tokenRe;else if(/^\s+$/.test(n.slice(t-1,t+1)))var i=/\s/;else var i=this.nonTokenRe;var s=t;if(s>0){do s--;while(s>=0&&n.charAt(s).match(i));s++}var o=t;while(o<n.length&&n.charAt(o).match(i))o++;return new l(e,s,e,o)},e.prototype.getAWordRange=function(e,t){var n=this.getWordRange(e,t),r=this.getLine(n.end.row);while(r.charAt(n.end.column).match(/[ \t]/))n.end.column+=1;return n},e.prototype.setNewLineMode=function(e){this.doc.setNewLineMode(e)},e.prototype.getNewLineMode=function(){return this.doc.getNewLineMode()},e.prototype.setUseWorker=function(e){this.setOption("useWorker",e)},e.prototype.getUseWorker=function(){return this.$useWorker},e.prototype.onReloadTokenizer=function(e){var t=e.data;this.bgTokenizer.start(t.first),this._signal("tokenizerUpdate",e)},e.prototype.setMode=function(e,t){if(e&&typeof e=="object"){if(e.getTokenizer)return this.$onChangeMode(e);var n=e,r=n.path}else r=e||"ace/mode/text";this.$modes["ace/mode/text"]||(this.$modes["ace/mode/text"]=new f);if(this.$modes[r]&&!n){this.$onChangeMode(this.$modes[r]),t&&t();return}this.$modeId=r,o.loadModule(["mode",r],function(e){if(this.$modeId!==r)return t&&t();this.$modes[r]&&!n?this.$onChangeMode(this.$modes[r]):e&&e.Mode&&(e=new e.Mode(n),n||(this.$modes[r]=e,e.$id=r),this.$onChangeMode(e)),t&&t()}.bind(this)),this.$mode||this.$onChangeMode(this.$modes["ace/mode/text"],!0)},e.prototype.$onChangeMode=function(e,t){t||(this.$modeId=e.$id);if(this.$mode===e)return;var n=this.$mode;this.$mode=e,this.$stopWorker(),this.$useWorker&&this.$startWorker();var r=e.getTokenizer();if(r.on!==undefined){var i=this.onReloadTokenizer.bind(this);r.on("update",i)}this.bgTokenizer.setTokenizer(r),this.bgTokenizer.setDocument(this.getDocument()),this.tokenRe=e.tokenRe,this.nonTokenRe=e.nonTokenRe,t||(e.attachToSession&&e.attachToSession(this),this.$options.wrapMethod.set.call(this,this.$wrapMethod),this.$setFolding(e.foldingRules),this.bgTokenizer.start(0),this._emit("changeMode",{oldMode:n,mode:e}))},e.prototype.$stopWorker=function(){this.$worker&&(this.$worker.terminate(),this.$worker=null)},e.prototype.$startWorker=function(){try{this.$worker=this.$mode.createWorker(this)}catch(e){o.warn("Could not load worker",e),this.$worker=null}},e.prototype.getMode=function(){return this.$mode},e.prototype.setScrollTop=function(e){if(this.$scrollTop===e||isNaN(e))return;this.$scrollTop=e,this._signal("changeScrollTop",e)},e.prototype.getScrollTop=function(){return this.$scrollTop},e.prototype.setScrollLeft=function(e){if(this.$scrollLeft===e||isNaN(e))return;this.$scrollLeft=e,this._signal("changeScrollLeft",e)},e.prototype.getScrollLeft=function(){return this.$scrollLeft},e.prototype.getScreenWidth=function(){return this.$computeWidth(),this.lineWidgets?Math.max(this.getLineWidgetMaxWidth(),this.screenWidth):this.screenWidth},e.prototype.getLineWidgetMaxWidth=function(){if(this.lineWidgetsWidth!=null)return this.lineWidgetsWidth;var e=0;return this.lineWidgets.forEach(function(t){t&&t.screenWidth>e&&(e=t.screenWidth)}),this.lineWidgetWidth=e},e.prototype.$computeWidth=function(e){if(this.$modified||e){this.$modified=!1;if(this.$useWrapMode)return this.screenWidth=this.$wrapLimit;var t=this.doc.getAllLines(),n=this.$rowLengthCache,r=0,i=0,s=this.$foldData[i],o=s?s.start.row:Infinity,u=t.length;for(var a=0;a<u;a++){if(a>o){a=s.end.row+1;if(a>=u)break;s=this.$foldData[i++],o=s?s.start.row:Infinity}n[a]==null&&(n[a]=this.$getStringScreenWidth(t[a])[0]),n[a]>r&&(r=n[a])}this.screenWidth=r}},e.prototype.getLine=function(e){return this.doc.getLine(e)},e.prototype.getLines=function(e,t){return this.doc.getLines(e,t)},e.prototype.getLength=function(){return this.doc.getLength()},e.prototype.getTextRange=function(e){return this.doc.getTextRange(e||this.selection.getRange())},e.prototype.insert=function(e,t){return this.doc.insert(e,t)},e.prototype.remove=function(e){return this.doc.remove(e)},e.prototype.removeFullLines=function(e,t){return this.doc.removeFullLines(e,t)},e.prototype.undoChanges=function(e,t){if(!e.length)return;this.$fromUndo=!0;for(var n=e.length-1;n!=-1;n--){var r=e[n];r.action=="insert"||r.action=="remove"?this.doc.revertDelta(r):r.folds&&this.addFolds(r.folds)}!t&&this.$undoSelect&&(e.selectionBefore?this.selection.fromJSON(e.selectionBefore):this.selection.setRange(this.$getUndoSelection(e,!0))),this.$fromUndo=!1},e.prototype.redoChanges=function(e,t){if(!e.length)return;this.$fromUndo=!0;for(var n=0;n<e.length;n++){var r=e[n];(r.action=="insert"||r.action=="remove")&&this.doc.$safeApplyDelta(r)}!t&&this.$undoSelect&&(e.selectionAfter?this.selection.fromJSON(e.selectionAfter):this.selection.setRange(this.$getUndoSelection(e,!1))),this.$fromUndo=!1},e.prototype.setUndoSelect=function(e){this.$undoSelect=e},e.prototype.$getUndoSelection=function(e,t){function n(e){return t?e.action!=="insert":e.action==="insert"}var r,i;for(var s=0;s<e.length;s++){var o=e[s];if(!o.start)continue;if(!r){n(o)?r=l.fromPoints(o.start,o.end):r=l.fromPoints(o.start,o.start);continue}n(o)?(i=o.start,r.compare(i.row,i.column)==-1&&r.setStart(i),i=o.end,r.compare(i.row,i.column)==1&&r.setEnd(i)):(i=o.start,r.compare(i.row,i.column)==-1&&(r=l.fromPoints(o.start,o.start)))}return r},e.prototype.replace=function(e,t){return this.doc.replace(e,t)},e.prototype.moveText=function(e,t,n){var r=this.getTextRange(e),i=this.getFoldsInRange(e),s=l.fromPoints(t,t);if(!n){this.remove(e);var o=e.start.row-e.end.row,u=o?-e.end.column:e.start.column-e.end.column;u&&(s.start.row==e.end.row&&s.start.column>e.end.column&&(s.start.column+=u),s.end.row==e.end.row&&s.end.column>e.end.column&&(s.end.column+=u)),o&&s.start.row>=e.end.row&&(s.start.row+=o,s.end.row+=o)}s.end=this.insert(s.start,r);if(i.length){var a=e.start,f=s.start,o=f.row-a.row,u=f.column-a.column;this.addFolds(i.map(function(e){return e=e.clone(),e.start.row==a.row&&(e.start.column+=u),e.end.row==a.row&&(e.end.column+=u),e.start.row+=o,e.end.row+=o,e}))}return s},e.prototype.indentRows=function(e,t,n){n=n.replace(/\t/g,this.getTabString());for(var r=e;r<=t;r++)this.doc.insertInLine({row:r,column:0},n)},e.prototype.outdentRows=function(e){var t=e.collapseRows(),n=new l(0,0,0,0),r=this.getTabSize();for(var i=t.start.row;i<=t.end.row;++i){var s=this.getLine(i);n.start.row=i,n.end.row=i;for(var o=0;o<r;++o)if(s.charAt(o)!=" ")break;o<r&&s.charAt(o)==" "?(n.start.column=o,n.end.column=o+1):(n.start.column=0,n.end.column=o),this.remove(n)}},e.prototype.$moveLines=function(e,t,n){e=this.getRowFoldStart(e),t=this.getRowFoldEnd(t);if(n<0){var r=this.getRowFoldStart(e+n);if(r<0)return 0;var i=r-e}else if(n>0){var r=this.getRowFoldEnd(t+n);if(r>this.doc.getLength()-1)return 0;var i=r-t}else{e=this.$clipRowToDocument(e),t=this.$clipRowToDocument(t);var i=t-e+1}var s=new l(e,0,t,Number.MAX_VALUE),o=this.getFoldsInRange(s).map(function(e){return e=e.clone(),e.start.row+=i,e.end.row+=i,e}),u=n==0?this.doc.getLines(e,t):this.doc.removeFullLines(e,t);return this.doc.insertFullLines(e+i,u),o.length&&this.addFolds(o),i},e.prototype.moveLinesUp=function(e,t){return this.$moveLines(e,t,-1)},e.prototype.moveLinesDown=function(e,t){return this.$moveLines(e,t,1)},e.prototype.duplicateLines=function(e,t){return this.$moveLines(e,t,0)},e.prototype.$clipRowToDocument=function(e){return Math.max(0,Math.min(e,this.doc.getLength()-1))},e.prototype.$clipColumnToRow=function(e,t){return t<0?0:Math.min(this.doc.getLine(e).length,t)},e.prototype.$clipPositionToDocument=function(e,t){t=Math.max(0,t);if(e<0)e=0,t=0;else{var n=this.doc.getLength();e>=n?(e=n-1,t=this.doc.getLine(n-1).length):t=Math.min(this.doc.getLine(e).length,t)}return{row:e,column:t}},e.prototype.$clipRangeToDocument=function(e){e.start.row<0?(e.start.row=0,e.start.column=0):e.start.column=this.$clipColumnToRow(e.start.row,e.start.column);var t=this.doc.getLength()-1;return e.end.row>t?(e.end.row=t,e.end.column=this.doc.getLine(t).length):e.end.column=this.$clipColumnToRow(e.end.row,e.end.column),e},e.prototype.setUseWrapMode=function(e){if(e!=this.$useWrapMode){this.$useWrapMode=e,this.$modified=!0,this.$resetRowCache(0);if(e){var t=this.getLength();this.$wrapData=Array(t),this.$updateWrapData(0,t-1)}this._signal("changeWrapMode")}},e.prototype.getUseWrapMode=function(){return this.$useWrapMode},e.prototype.setWrapLimitRange=function(e,t){if(this.$wrapLimitRange.min!==e||this.$wrapLimitRange.max!==t)this.$wrapLimitRange={min:e,max:t},this.$modified=!0,this.$bidiHandler.markAsDirty(),this.$useWrapMode&&this._signal("changeWrapMode")},e.prototype.adjustWrapLimit=function(e,t){var n=this.$wrapLimitRange;n.max<0&&(n={min:t,max:t});var r=this.$constrainWrapLimit(e,n.min,n.max);return r!=this.$wrapLimit&&r>1?(this.$wrapLimit=r,this.$modified=!0,this.$useWrapMode&&(this.$updateWrapData(0,this.getLength()-1),this.$resetRowCache(0),this._signal("changeWrapLimit")),!0):!1},e.prototype.$constrainWrapLimit=function(e,t,n){return t&&(e=Math.max(t,e)),n&&(e=Math.min(n,e)),e},e.prototype.getWrapLimit=function(){return this.$wrapLimit},e.prototype.setWrapLimit=function(e){this.setWrapLimitRange(e,e)},e.prototype.getWrapLimitRange=function(){return{min:this.$wrapLimitRange.min,max:this.$wrapLimitRange.max}},e.prototype.$updateInternalDataOnChange=function(e){var t=this.$useWrapMode,n=e.action,r=e.start,i=e.end,s=r.row,o=i.row,u=o-s,a=null;this.$updating=!0;if(u!=0)if(n==="remove"){this[t?"$wrapData":"$rowLengthCache"].splice(s,u);var f=this.$foldData;a=this.getFoldsInRange(e),this.removeFolds(a);var l=this.getFoldLine(i.row),c=0;if(l){l.addRemoveChars(i.row,i.column,r.column-i.column),l.shiftRow(-u);var h=this.getFoldLine(s);h&&h!==l&&(h.merge(l),l=h),c=f.indexOf(l)+1}for(c;c<f.length;c++){var l=f[c];l.start.row>=i.row&&l.shiftRow(-u)}o=s}else{var p=Array(u);p.unshift(s,0);var d=t?this.$wrapData:this.$rowLengthCache;d.splice.apply(d,p);var f=this.$foldData,l=this.getFoldLine(s),c=0;if(l){var v=l.range.compareInside(r.row,r.column);v==0?(l=l.split(r.row,r.column),l&&(l.shiftRow(u),l.addRemoveChars(o,0,i.column-r.column))):v==-1&&(l.addRemoveChars(s,0,i.column-r.column),l.shiftRow(u)),c=f.indexOf(l)+1}for(c;c<f.length;c++){var l=f[c];l.start.row>=s&&l.shiftRow(u)}}else{u=Math.abs(e.start.column-e.end.column),n==="remove"&&(a=this.getFoldsInRange(e),this.removeFolds(a),u=-u);var l=this.getFoldLine(s);l&&l.addRemoveChars(s,r.column,u)}return t&&this.$wrapData.length!=this.doc.getLength()&&console.error("doc.getLength() and $wrapData.length have to be the same!"),this.$updating=!1,t?this.$updateWrapData(s,o):this.$updateRowLengthCache(s,o),a},e.prototype.$updateRowLengthCache=function(e,t){this.$rowLengthCache[e]=null,this.$rowLengthCache[t]=null},e.prototype.$updateWrapData=function(e,t){var n=this.doc.getAllLines(),r=this.getTabSize(),i=this.$wrapData,s=this.$wrapLimit,o,u,a=e;t=Math.min(t,n.length-1);while(a<=t)u=this.getFoldLine(a,u),u?(o=[],u.walk(function(e,t,r,i){var s;if(e!=null){s=this.$getDisplayTokens(e,o.length),s[0]=y;for(var u=1;u<s.length;u++)s[u]=b}else s=this.$getDisplayTokens(n[t].substring(i,r),o.length);o=o.concat(s)}.bind(this),u.end.row,n[u.end.row].length+1),i[u.start.row]=this.$computeWrapSplits(o,s,r),a=u.end.row+1):(o=this.$getDisplayTokens(n[a]),i[a]=this.$computeWrapSplits(o,s,r),a++)},e.prototype.$computeWrapSplits=function(e,t,n){function l(){var t=0;if(f===0)return t;if(a)for(var r=0;r<e.length;r++){var i=e[r];if(i==E)t+=1;else{if(i!=S){if(i==x)continue;break}t+=n}}return u&&a!==!1&&(t+=n),Math.min(t,f)}function c(t){var n=t-s;for(var i=s;i<t;i++){var u=e[i];if(u===12||u===2)n-=1}r.length||(h=l(),r.indent=h),o+=n,r.push(o),s=t}if(e.length==0)return[];var r=[],i=e.length,s=0,o=0,u=this.$wrapAsCode,a=this.$indentedSoftWrap,f=t<=Math.max(2*n,8)||a===!1?0:Math.floor(t/2),h=0;while(i-s>t-h){var p=s+t-h;if(e[p-1]>=E&&e[p]>=E){c(p);continue}if(e[p]==y||e[p]==b){for(p;p!=s-1;p--)if(e[p]==y)break;if(p>s){c(p);continue}p=s+t;for(p;p<e.length;p++)if(e[p]!=b)break;if(p==e.length)break;c(p);continue}var d=Math.max(p-(t-(t>>2)),s-1);while(p>d&&e[p]<y)p--;if(u){while(p>d&&e[p]<y)p--;while(p>d&&e[p]==w)p--}else while(p>d&&e[p]<E)p--;if(p>d){c(++p);continue}p=s+t,e[p]==g&&p--,c(p-h)}return r},e.prototype.$getDisplayTokens=function(e,t){var n=[],r;t=t||0;for(var i=0;i<e.length;i++){var s=e.charCodeAt(i);if(s==9){r=this.getScreenTabSize(n.length+t),n.push(S);for(var o=1;o<r;o++)n.push(x)}else s==32?n.push(E):s>39&&s<48||s>57&&s<64?n.push(w):s>=4352&&T(s)?n.push(m,g):n.push(m)}return n},e.prototype.$getStringScreenWidth=function(e,t,n){if(t==0)return[0,0];t==null&&(t=Infinity),n=n||0;var r,i;for(i=0;i<e.length;i++){r=e.charCodeAt(i),r==9?n+=this.getScreenTabSize(n):r>=4352&&T(r)?n+=2:n+=1;if(n>t)break}return[n,i]},e.prototype.getRowLength=function(e){var t=1;return this.lineWidgets&&(t+=this.lineWidgets[e]&&this.lineWidgets[e].rowCount||0),!this.$useWrapMode||!this.$wrapData[e]?t:this.$wrapData[e].length+t},e.prototype.getRowLineCount=function(e){return!this.$useWrapMode||!this.$wrapData[e]?1:this.$wrapData[e].length+1},e.prototype.getRowWrapIndent=function(e){if(this.$useWrapMode){var t=this.screenToDocumentPosition(e,Number.MAX_VALUE),n=this.$wrapData[t.row];return n.length&&n[0]<t.column?n.indent:0}return 0},e.prototype.getScreenLastRowColumn=function(e){var t=this.screenToDocumentPosition(e,Number.MAX_VALUE);return this.documentToScreenColumn(t.row,t.column)},e.prototype.getDocumentLastRowColumn=function(e,t){var n=this.documentToScreenRow(e,t);return this.getScreenLastRowColumn(n)},e.prototype.getDocumentLastRowColumnPosition=function(e,t){var n=this.documentToScreenRow(e,t);return this.screenToDocumentPosition(n,Number.MAX_VALUE/10)},e.prototype.getRowSplitData=function(e){return this.$useWrapMode?this.$wrapData[e]:undefined},e.prototype.getScreenTabSize=function(e){return this.$tabSize-(e%this.$tabSize|0)},e.prototype.screenToDocumentRow=function(e,t){return this.screenToDocumentPosition(e,t).row},e.prototype.screenToDocumentColumn=function(e,t){return this.screenToDocumentPosition(e,t).column},e.prototype.screenToDocumentPosition=function(e,t,n){if(e<0)return{row:0,column:0};var r,i=0,s=0,o,u=0,a=0,f=this.$screenRowCache,l=this.$getRowCacheIndex(f,e),c=f.length;if(c&&l>=0)var u=f[l],i=this.$docRowCache[l],h=e>f[c-1];else var h=!c;var p=this.getLength()-1,d=this.getNextFoldLine(i),v=d?d.start.row:Infinity;while(u<=e){a=this.getRowLength(i);if(u+a>e||i>=p)break;u+=a,i++,i>v&&(i=d.end.row+1,d=this.getNextFoldLine(i,d),v=d?d.start.row:Infinity),h&&(this.$docRowCache.push(i),this.$screenRowCache.push(u))}if(d&&d.start.row<=i)r=this.getFoldDisplayLine(d),i=d.start.row;else{if(u+a<=e||i>p)return{row:p,column:this.getLine(p).length};r=this.getLine(i),d=null}var m=0,g=Math.floor(e-u);if(this.$useWrapMode){var y=this.$wrapData[i];y&&(o=y[g],g>0&&y.length&&(m=y.indent,s=y[g-1]||y[y.length-1],r=r.substring(s)))}return n!==undefined&&this.$bidiHandler.isBidiRow(u+g,i,g)&&(t=this.$bidiHandler.offsetToCol(n)),s+=this.$getStringScreenWidth(r,t-m)[1],this.$useWrapMode&&s>=o&&(s=o-1),d?d.idxToPosition(s):{row:i,column:s}},e.prototype.documentToScreenPosition=function(e,t){if(typeof t=="undefined")var n=this.$clipPositionToDocument(e.row,e.column);else n=this.$clipPositionToDocument(e,t);e=n.row,t=n.column;var r=0,i=null,s=null;s=this.getFoldAt(e,t,1),s&&(e=s.start.row,t=s.start.column);var o,u=0,a=this.$docRowCache,f=this.$getRowCacheIndex(a,e),l=a.length;if(l&&f>=0)var u=a[f],r=this.$screenRowCache[f],c=e>a[l-1];else var c=!l;var h=this.getNextFoldLine(u),p=h?h.start.row:Infinity;while(u<e){if(u>=p){o=h.end.row+1;if(o>e)break;h=this.getNextFoldLine(o,h),p=h?h.start.row:Infinity}else o=u+1;r+=this.getRowLength(u),u=o,c&&(this.$docRowCache.push(u),this.$screenRowCache.push(r))}var d="";h&&u>=p?(d=this.getFoldDisplayLine(h,e,t),i=h.start.row):(d=this.getLine(e).substring(0,t),i=e);var v=0;if(this.$useWrapMode){var m=this.$wrapData[i];if(m){var g=0;while(d.length>=m[g])r++,g++;d=d.substring(m[g-1]||0,d.length),v=g>0?m.indent:0}}return this.lineWidgets&&this.lineWidgets[u]&&this.lineWidgets[u].rowsAbove&&(r+=this.lineWidgets[u].rowsAbove),{row:r,column:v+this.$getStringScreenWidth(d)[0]}},e.prototype.documentToScreenColumn=function(e,t){return this.documentToScreenPosition(e,t).column},e.prototype.documentToScreenRow=function(e,t){return this.documentToScreenPosition(e,t).row},e.prototype.getScreenLength=function(){var e=0,t=null;if(!this.$useWrapMode){e=this.getLength();var n=this.$foldData;for(var r=0;r<n.length;r++)t=n[r],e-=t.end.row-t.start.row}else{var i=this.$wrapData.length,s=0,r=0,t=this.$foldData[r++],o=t?t.start.row:Infinity;while(s<i){var u=this.$wrapData[s];e+=u?u.length+1:1,s++,s>o&&(s=t.end.row+1,t=this.$foldData[r++],o=t?t.start.row:Infinity)}}return this.lineWidgets&&(e+=this.$getWidgetScreenLength()),e},e.prototype.$setFontMetrics=function(e){if(!this.$enableVarChar)return;this.$getStringScreenWidth=function(t,n,r){if(n===0)return[0,0];n||(n=Infinity),r=r||0;var i,s;for(s=0;s<t.length;s++){i=t.charAt(s),i===" "?r+=this.getScreenTabSize(r):r+=e.getCharacterWidth(i);if(r>n)break}return[r,s]}},e.prototype.getPrecedingCharacter=function(){var e=this.selection.getCursor();if(e.column===0)return e.row===0?"":this.doc.getNewLineCharacter();var t=this.getLine(e.row);return t[e.column-1]},e.prototype.destroy=function(){this.destroyed||(this.bgTokenizer.setDocument(null),this.bgTokenizer.cleanup(),this.destroyed=!0),this.$stopWorker(),this.removeAllListeners(),this.doc&&this.doc.off("change",this.$onChange),this.selection.detach()},e}();v.$uid=0,v.prototype.$modes=o.$modes,v.prototype.getValue=v.prototype.toString,v.prototype.$defaultUndoManager={undo:function(){},redo:function(){},hasUndo:function(){},hasRedo:function(){},reset:function(){},add:function(){},addSelection:function(){},startNewGroup:function(){},addSession:function(){}},v.prototype.$overwrite=!1,v.prototype.$mode=null,v.prototype.$modeId=null,v.prototype.$scrollTop=0,v.prototype.$scrollLeft=0,v.prototype.$wrapLimit=80,v.prototype.$useWrapMode=!1,v.prototype.$wrapLimitRange={min:null,max:null},v.prototype.lineWidgets=null,v.prototype.isFullWidth=T,r.implement(v.prototype,u);var m=1,g=2,y=3,b=4,w=9,E=10,S=11,x=12;e("./edit_session/folding").Folding.call(v.prototype),e("./edit_session/bracket_match").BracketMatch.call(v.prototype),o.defineOptions(v.prototype,"session",{wrap:{set:function(e){!e||e=="off"?e=!1:e=="free"?e=!0:e=="printMargin"?e=-1:typeof e=="string"&&(e=parseInt(e,10)||!1);if(this.$wrap==e)return;this.$wrap=e;if(!e)this.setUseWrapMode(!1);else{var t=typeof e=="number"?e:null;this.setWrapLimitRange(t,t),this.setUseWrapMode(!0)}},get:function(){return this.getUseWrapMode()?this.$wrap==-1?"printMargin":this.getWrapLimitRange().min?this.$wrap:"free":"off"},handlesSet:!0},wrapMethod:{set:function(e){e=e=="auto"?this.$mode.type!="text":e!="text",e!=this.$wrapAsCode&&(this.$wrapAsCode=e,this.$useWrapMode&&(this.$useWrapMode=!1,this.setUseWrapMode(!0)))},initialValue:"auto"},indentedSoftWrap:{set:function(){this.$useWrapMode&&(this.$useWrapMode=!1,this.setUseWrapMode(!0))},initialValue:!0},firstLineNumber:{set:function(){this._signal("changeBreakpoint")},initialValue:1},useWorker:{set:function(e){this.$useWorker=e,this.$stopWorker(),e&&this.$startWorker()},initialValue:!0},useSoftTabs:{initialValue:!0},tabSize:{set:function(e){e=parseInt(e),e>0&&this.$tabSize!==e&&(this.$modified=!0,this.$rowLengthCache=[],this.$tabSize=e,this._signal("changeTabSize"))},initialValue:4,handlesSet:!0},navigateWithinSoftTabs:{initialValue:!1},foldStyle:{set:function(e){this.setFoldStyle(e)},handlesSet:!0},overwrite:{set:function(e){this._signal("changeOverwrite")},initialValue:!1},newLineMode:{set:function(e){this.doc.setNewLineMode(e)},get:function(){return this.doc.getNewLineMode()},handlesSet:!0},mode:{set:function(e){this.setMode(e)},get:function(){return this.$modeId},handlesSet:!0}}),t.EditSession=v}),define("ace/search",["require","exports","module","ace/lib/lang","ace/lib/oop","ace/range"],function(e,t,n){"use strict";function u(e,t){function i(e,r){r===void 0&&(r=!0);var i=n&&t.$supportsUnicodeFlag?new RegExp("[\\p{L}\\p{N}_]","u"):new RegExp("\\w");if(i.test(e)||t.regExp)return n&&t.$supportsUnicodeFlag?r?"(?<=^|[^\\p{L}\\p{N}_])":"(?=[^\\p{L}\\p{N}_]|$)":"\\b";return""}var n=r.supportsLookbehind(),s=Array.from(e),o=s[0],u=s[s.length-1];return i(o)+e+i(u,!1)}var r=e("./lib/lang"),i=e("./lib/oop"),s=e("./range").Range,o=function(){function e(){this.$options={}}return e.prototype.set=function(e){return i.mixin(this.$options,e),this},e.prototype.getOptions=function(){return r.copyObject(this.$options)},e.prototype.setOptions=function(e){this.$options=e},e.prototype.find=function(e){var t=this.$options,n=this.$matchIterator(e,t);if(!n)return!1;var r=null;return n.forEach(function(e,n,i,o){return r=new s(e,n,i,o),n==o&&t.start&&t.start.start&&t.skipCurrent!=0&&r.isEqual(t.start)?(r=null,!1):!0}),r},e.prototype.findAll=function(e){var t=this.$options;if(!t.needle)return[];this.$assembleRegExp(t);var n=t.range,i=n?e.getLines(n.start.row,n.end.row):e.doc.getAllLines(),o=[],u=t.re;if(t.$isMultiLine){var a=u.length,f=i.length-a,l;e:for(var c=u.offset||0;c<=f;c++){for(var h=0;h<a;h++)if(i[c+h].search(u[h])==-1)continue e;var p=i[c],d=i[c+a-1],v=p.length-p.match(u[0])[0].length,m=d.match(u[a-1])[0].length;if(l&&l.end.row===c&&l.end.column>v)continue;o.push(l=new s(c,v,c+a-1,m)),a>2&&(c=c+a-2)}}else for(var g=0;g<i.length;g++){var y=r.getMatchOffsets(i[g],u);for(var h=0;h<y.length;h++){var b=y[h];o.push(new s(g,b.offset,g,b.offset+b.length))}}if(n){var w=n.start.column,E=n.end.column,g=0,h=o.length-1;while(g<h&&o[g].start.column<w&&o[g].start.row==0)g++;var S=n.end.row-n.start.row;while(g<h&&o[h].end.column>E&&o[h].end.row==S)h--;o=o.slice(g,h+1);for(g=0,h=o.length;g<h;g++)o[g].start.row+=n.start.row,o[g].end.row+=n.start.row}return o},e.prototype.replace=function(e,t){var n=this.$options,r=this.$assembleRegExp(n);if(n.$isMultiLine)return t;if(!r)return;var i=r.exec(e);if(!i||i[0].length!=e.length)return null;n.regExp||(t=t.replace(/\$/g,"$$$$")),t=e.replace(r,t);if(n.preserveCase){t=t.split("");for(var s=Math.min(e.length,e.length);s--;){var o=e[s];o&&o.toLowerCase()!=o?t[s]=t[s].toUpperCase():t[s]=t[s].toLowerCase()}t=t.join("")}return t},e.prototype.$assembleRegExp=function(e,t){if(e.needle instanceof RegExp)return e.re=e.needle;var n=e.needle;if(!e.needle)return e.re=!1;e.regExp||(n=r.escapeRegExp(n));var i=e.caseSensitive?"gm":"gmi";try{new RegExp(n,"u"),e.$supportsUnicodeFlag=!0,i+="u"}catch(s){e.$supportsUnicodeFlag=!1}e.wholeWord&&(n=u(n,e)),e.$isMultiLine=!t&&/[\n\r]/.test(n);if(e.$isMultiLine)return e.re=this.$assembleMultilineRegExp(n,i);try{var o=new RegExp(n,i)}catch(s){o=!1}return e.re=o},e.prototype.$assembleMultilineRegExp=function(e,t){var n=e.replace(/\r\n|\r|\n/g,"$\n^").split("\n"),r=[];for(var i=0;i<n.length;i++)try{r.push(new RegExp(n[i],t))}catch(s){return!1}return r},e.prototype.$matchIterator=function(e,t){var n=this.$assembleRegExp(t);if(!n)return!1;var i=t.backwards==1,s=t.skipCurrent!=0,o=n.unicode,u=t.range,a=t.start;a||(a=u?u[i?"end":"start"]:e.selection.getRange()),a.start&&(a=a[s!=i?"end":"start"]);var f=u?u.start.row:0,l=u?u.end.row:e.getLength()-1;if(i)var c=function(e){var n=a.row;if(p(n,a.column,e))return;for(n--;n>=f;n--)if(p(n,Number.MAX_VALUE,e))return;if(t.wrap==0)return;for(n=l,f=a.row;n>=f;n--)if(p(n,Number.MAX_VALUE,e))return};else var c=function(e){var n=a.row;if(p(n,a.column,e))return;for(n+=1;n<=l;n++)if(p(n,0,e))return;if(t.wrap==0)return;for(n=f,l=a.row;n<=l;n++)if(p(n,0,e))return};if(t.$isMultiLine)var h=n.length,p=function(t,r,s){var o=i?t-h+1:t;if(o<0||o+h>e.getLength())return;var u=e.getLine(o),a=u.search(n[0]);if(!i&&a<r||a===-1)return;for(var f=1;f<h;f++){u=e.getLine(o+f);if(u.search(n[f])==-1)return}var l=u.match(n[h-1])[0].length;if(i&&l>r)return;if(s(o,a,o+h-1,l))return!0};else if(i)var p=function(t,i,s){var u=e.getLine(t),a=[],f,l=0;n.lastIndex=0;while(f=n.exec(u)){var c=f[0].length;l=f.index;if(!c){if(l>=u.length)break;n.lastIndex=l+=r.skipEmptyMatch(u,l,o)}if(f.index+c>i)break;a.push(f.index,c)}for(var h=a.length-1;h>=0;h-=2){var p=a[h-1],c=a[h];if(s(t,p,t,p+c))return!0}};else var p=function(t,i,s){var u=e.getLine(t),a,f;n.lastIndex=i;while(f=n.exec(u)){var l=f[0].length;a=f.index;if(s(t,a,t,a+l))return!0;if(!l){n.lastIndex=a+=r.skipEmptyMatch(u,a,o);if(a>=u.length)return!1}}};return{forEach:c}},e}();t.Search=o}),define("ace/keyboard/hash_handler",["require","exports","module","ace/lib/keys","ace/lib/useragent"],function(e,t,n){"use strict";function a(e){return typeof e=="object"&&e.bindKey&&e.bindKey.position||(e.isDefault?-100:0)}var r=this&&this.__extends||function(){var e=function(t,n){return e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])},e(t,n)};return function(t,n){function r(){this.constructor=t}if(typeof n!="function"&&n!==null)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");e(t,n),t.prototype=n===null?Object.create(n):(r.prototype=n.prototype,new r)}}(),i=e("../lib/keys"),s=e("../lib/useragent"),o=i.KEY_MODS,u=function(){function e(e,t){this.$init(e,t,!1)}return e.prototype.$init=function(e,t,n){this.platform=t||(s.isMac?"mac":"win"),this.commands={},this.commandKeyBinding={},this.addCommands(e),this.$singleCommand=n},e.prototype.addCommand=function(e){this.commands[e.name]&&this.removeCommand(e),this.commands[e.name]=e,e.bindKey&&this._buildKeyHash(e)},e.prototype.removeCommand=function(e,t){var n=e&&(typeof e=="string"?e:e.name);e=this.commands[n],t||delete this.commands[n];var r=this.commandKeyBinding;for(var i in r){var s=r[i];if(s==e)delete r[i];else if(Array.isArray(s)){var o=s.indexOf(e);o!=-1&&(s.splice(o,1),s.length==1&&(r[i]=s[0]))}}},e.prototype.bindKey=function(e,t,n){typeof e=="object"&&e&&(n==undefined&&(n=e.position),e=e[this.platform]);if(!e)return;if(typeof t=="function")return this.addCommand({exec:t,bindKey:e,name:t.name||e});e.split("|").forEach(function(e){var r="";if(e.indexOf(" ")!=-1){var i=e.split(/\s+/);e=i.pop(),i.forEach(function(e){var t=this.parseKeys(e),n=o[t.hashId]+t.key;r+=(r?" ":"")+n,this._addCommandToBinding(r,"chainKeys")},this),r+=" "}var s=this.parseKeys(e),u=o[s.hashId]+s.key;this._addCommandToBinding(r+u,t,n)},this)},e.prototype._addCommandToBinding=function(e,t,n){var r=this.commandKeyBinding,i;if(!t)delete r[e];else if(!r[e]||this.$singleCommand)r[e]=t;else{Array.isArray(r[e])?(i=r[e].indexOf(t))!=-1&&r[e].splice(i,1):r[e]=[r[e]],typeof n!="number"&&(n=a(t));var s=r[e];for(i=0;i<s.length;i++){var o=s[i],u=a(o);if(u>n)break}s.splice(i,0,t)}},e.prototype.addCommands=function(e){e&&Object.keys(e).forEach(function(t){var n=e[t];if(!n)return;if(typeof n=="string")return this.bindKey(n,t);typeof n=="function"&&(n={exec:n});if(typeof n!="object")return;n.name||(n.name=t),this.addCommand(n)},this)},e.prototype.removeCommands=function(e){Object.keys(e).forEach(function(t){this.removeCommand(e[t])},this)},e.prototype.bindKeys=function(e){Object.keys(e).forEach(function(t){this.bindKey(t,e[t])},this)},e.prototype._buildKeyHash=function(e){this.bindKey(e.bindKey,e)},e.prototype.parseKeys=function(e){var t=e.toLowerCase().split(/[\-\+]([\-\+])?/).filter(function(e){return e}),n=t.pop(),r=i[n];if(i.FUNCTION_KEYS[r])n=i.FUNCTION_KEYS[r].toLowerCase();else{if(!t.length)return{key:n,hashId:-1};if(t.length==1&&t[0]=="shift")return{key:n.toUpperCase(),hashId:-1}}var s=0;for(var o=t.length;o--;){var u=i.KEY_MODS[t[o]];if(u==null)return typeof console!="undefined"&&console.error("invalid modifier "+t[o]+" in "+e),!1;s|=u}return{key:n,hashId:s}},e.prototype.findKeyCommand=function(e,t){var n=o[e]+t;return this.commandKeyBinding[n]},e.prototype.handleKeyboard=function(e,t,n,r){if(r<0)return;var i=o[t]+n,s=this.commandKeyBinding[i];e.$keyChain&&(e.$keyChain+=" "+i,s=this.commandKeyBinding[e.$keyChain]||s);if(s)if(s=="chainKeys"||s[s.length-1]=="chainKeys")return e.$keyChain=e.$keyChain||i,{command:"null"};if(e.$keyChain)if(!!t&&t!=4||n.length!=1){if(t==-1||r>0)e.$keyChain=""}else e.$keyChain=e.$keyChain.slice(0,-i.length-1);return{command:s}},e.prototype.getStatusText=function(e,t){return t.$keyChain||""},e}(),f=function(e){function t(t,n){var r=e.call(this,t,n)||this;return r.$singleCommand=!0,r}return r(t,e),t}(u);f.call=function(e,t,n){u.prototype.$init.call(e,t,n,!0)},u.call=function(e,t,n){u.prototype.$init.call(e,t,n,!1)},t.HashHandler=f,t.MultiHashHandler=u}),define("ace/commands/command_manager",["require","exports","module","ace/lib/oop","ace/keyboard/hash_handler","ace/lib/event_emitter"],function(e,t,n){"use strict";var r=this&&this.__extends||function(){var e=function(t,n){return e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])},e(t,n)};return function(t,n){function r(){this.constructor=t}if(typeof n!="function"&&n!==null)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");e(t,n),t.prototype=n===null?Object.create(n):(r.prototype=n.prototype,new r)}}(),i=e("../lib/oop"),s=e("../keyboard/hash_handler").MultiHashHandler,o=e("../lib/event_emitter").EventEmitter,u=function(e){function t(t,n){var r=e.call(this,n,t)||this;return r.byName=r.commands,r.setDefaultHandler("exec",function(e){return e.args?e.command.exec(e.editor,e.args,e.event,!1):e.command.exec(e.editor,{},e.event,!0)}),r}return r(t,e),t.prototype.exec=function(e,t,n){if(Array.isArray(e)){for(var r=e.length;r--;)if(this.exec(e[r],t,n))return!0;return!1}typeof e=="string"&&(e=this.commands[e]);if(!e)return!1;if(t&&t.$readOnly&&!e.readOnly)return!1;if(this.$checkCommandState!=0&&e.isAvailable&&!e.isAvailable(t))return!1;var i={editor:t,command:e,args:n};return i.returnValue=this._emit("exec",i),this._signal("afterExec",i),i.returnValue===!1?!1:!0},t.prototype.toggleRecording=function(e){if(this.$inReplay)return;return e&&e._emit("changeStatus"),this.recording?(this.macro.pop(),this.off("exec",this.$addCommandToMacro),this.macro.length||(this.macro=this.oldMacro),this.recording=!1):(this.$addCommandToMacro||(this.$addCommandToMacro=function(e){this.macro.push([e.command,e.args])}.bind(this)),this.oldMacro=this.macro,this.macro=[],this.on("exec",this.$addCommandToMacro),this.recording=!0)},t.prototype.replay=function(e){if(this.$inReplay||!this.macro)return;if(this.recording)return this.toggleRecording(e);try{this.$inReplay=!0,this.macro.forEach(function(t){typeof t=="string"?this.exec(t,e):this.exec(t[0],e,t[1])},this)}finally{this.$inReplay=!1}},t.prototype.trimMacro=function(e){return e.map(function(e){return typeof e[0]!="string"&&(e[0]=e[0].name),e[1]||(e=e[0]),e})},t}(s);i.implement(u.prototype,o),t.CommandManager=u}),define("ace/commands/default_commands",["require","exports","module","ace/lib/lang","ace/config","ace/range"],function(e,t,n){"use strict";function o(e,t){return{win:e,mac:t}}var r=e("../lib/lang"),i=e("../config"),s=e("../range").Range;t.commands=[{name:"showSettingsMenu",description:"Show settings menu",bindKey:o("Ctrl-,","Command-,"),exec:function(e){i.loadModule("ace/ext/settings_menu",function(t){t.init(e),e.showSettingsMenu()})},readOnly:!0},{name:"goToNextError",description:"Go to next error",bindKey:o("Alt-E","F4"),exec:function(e){i.loadModule("ace/ext/error_marker",function(t){t.showErrorMarker(e,1)})},scrollIntoView:"animate",readOnly:!0},{name:"goToPreviousError",description:"Go to previous error",bindKey:o("Alt-Shift-E","Shift-F4"),exec:function(e){i.loadModule("ace/ext/error_marker",function(t){t.showErrorMarker(e,-1)})},scrollIntoView:"animate",readOnly:!0},{name:"selectall",description:"Select all",bindKey:o("Ctrl-A","Command-A"),exec:function(e){e.selectAll()},readOnly:!0},{name:"centerselection",description:"Center selection",bindKey:o(null,"Ctrl-L"),exec:function(e){e.centerSelection()},readOnly:!0},{name:"gotoline",description:"Go to line...",bindKey:o("Ctrl-L","Command-L"),exec:function(e,t){typeof t=="number"&&!isNaN(t)&&e.gotoLine(t),e.prompt({$type:"gotoLine"})},readOnly:!0},{name:"fold",bindKey:o("Alt-L|Ctrl-F1","Command-Alt-L|Command-F1"),exec:function(e){e.session.toggleFold(!1)},multiSelectAction:"forEach",scrollIntoView:"center",readOnly:!0},{name:"unfold",bindKey:o("Alt-Shift-L|Ctrl-Shift-F1","Command-Alt-Shift-L|Command-Shift-F1"),exec:function(e){e.session.toggleFold(!0)},multiSelectAction:"forEach",scrollIntoView:"center",readOnly:!0},{name:"toggleFoldWidget",description:"Toggle fold widget",bindKey:o("F2","F2"),exec:function(e){e.session.toggleFoldWidget()},multiSelectAction:"forEach",scrollIntoView:"center",readOnly:!0},{name:"toggleParentFoldWidget",description:"Toggle parent fold widget",bindKey:o("Alt-F2","Alt-F2"),exec:function(e){e.session.toggleFoldWidget(!0)},multiSelectAction:"forEach",scrollIntoView:"center",readOnly:!0},{name:"foldall",description:"Fold all",bindKey:o(null,"Ctrl-Command-Option-0"),exec:function(e){e.session.foldAll()},scrollIntoView:"center",readOnly:!0},{name:"foldAllComments",description:"Fold all comments",bindKey:o(null,"Ctrl-Command-Option-0"),exec:function(e){e.session.foldAllComments()},scrollIntoView:"center",readOnly:!0},{name:"foldOther",description:"Fold other",bindKey:o("Alt-0","Command-Option-0"),exec:function(e){e.session.foldAll(),e.session.unfold(e.selection.getAllRanges())},scrollIntoView:"center",readOnly:!0},{name:"unfoldall",description:"Unfold all",bindKey:o("Alt-Shift-0","Command-Option-Shift-0"),exec:function(e){e.session.unfold()},scrollIntoView:"center",readOnly:!0},{name:"findnext",description:"Find next",bindKey:o("Ctrl-K","Command-G"),exec:function(e){e.findNext()},multiSelectAction:"forEach",scrollIntoView:"center",readOnly:!0},{name:"findprevious",description:"Find previous",bindKey:o("Ctrl-Shift-K","Command-Shift-G"),exec:function(e){e.findPrevious()},multiSelectAction:"forEach",scrollIntoView:"center",readOnly:!0},{name:"selectOrFindNext",description:"Select or find next",bindKey:o("Alt-K","Ctrl-G"),exec:function(e){e.selection.isEmpty()?e.selection.selectWord():e.findNext()},readOnly:!0},{name:"selectOrFindPrevious",description:"Select or find previous",bindKey:o("Alt-Shift-K","Ctrl-Shift-G"),exec:function(e){e.selection.isEmpty()?e.selection.selectWord():e.findPrevious()},readOnly:!0},{name:"find",description:"Find",bindKey:o("Ctrl-F","Command-F"),exec:function(e){i.loadModule("ace/ext/searchbox",function(t){t.Search(e)})},readOnly:!0},{name:"overwrite",description:"Overwrite",bindKey:"Insert",exec:function(e){e.toggleOverwrite()},readOnly:!0},{name:"selecttostart",description:"Select to start",bindKey:o("Ctrl-Shift-Home","Command-Shift-Home|Command-Shift-Up"),exec:function(e){e.getSelection().selectFileStart()},multiSelectAction:"forEach",readOnly:!0,scrollIntoView:"animate",aceCommandGroup:"fileJump"},{name:"gotostart",description:"Go to start",bindKey:o("Ctrl-Home","Command-Home|Command-Up"),exec:function(e){e.navigateFileStart()},multiSelectAction:"forEach",readOnly:!0,scrollIntoView:"animate",aceCommandGroup:"fileJump"},{name:"selectup",description:"Select up",bindKey:o("Shift-Up","Shift-Up|Ctrl-Shift-P"),exec:function(e){e.getSelection().selectUp()},multiSelectAction:"forEach",scrollIntoView:"cursor",readOnly:!0},{name:"golineup",description:"Go line up",bindKey:o("Up","Up|Ctrl-P"),exec:function(e,t){e.navigateUp(t.times)},multiSelectAction:"forEach",scrollIntoView:"cursor",readOnly:!0},{name:"selecttoend",description:"Select to end",bindKey:o("Ctrl-Shift-End","Command-Shift-End|Command-Shift-Down"),exec:function(e){e.getSelection().selectFileEnd()},multiSelectAction:"forEach",readOnly:!0,scrollIntoView:"animate",aceCommandGroup:"fileJump"},{name:"gotoend",description:"Go to end",bindKey:o("Ctrl-End","Command-End|Command-Down"),exec:function(e){e.navigateFileEnd()},multiSelectAction:"forEach",readOnly:!0,scrollIntoView:"animate",aceCommandGroup:"fileJump"},{name:"selectdown",description:"Select down",bindKey:o("Shift-Down","Shift-Down|Ctrl-Shift-N"),exec:function(e){e.getSelection().selectDown()},multiSelectAction:"forEach",scrollIntoView:"cursor",readOnly:!0},{name:"golinedown",description:"Go line down",bindKey:o("Down","Down|Ctrl-N"),exec:function(e,t){e.navigateDown(t.times)},multiSelectAction:"forEach",scrollIntoView:"cursor",readOnly:!0},{name:"selectwordleft",description:"Select word left",bindKey:o("Ctrl-Shift-Left","Option-Shift-Left"),exec:function(e){e.getSelection().selectWordLeft()},multiSelectAction:"forEach",scrollIntoView:"cursor",readOnly:!0},{name:"gotowordleft",description:"Go to word left",bindKey:o("Ctrl-Left","Option-Left"),exec:function(e){e.navigateWordLeft()},multiSelectAction:"forEach",scrollIntoView:"cursor",readOnly:!0},{name:"selecttolinestart",description:"Select to line start",bindKey:o("Alt-Shift-Left","Command-Shift-Left|Ctrl-Shift-A"),exec:function(e){e.getSelection().selectLineStart()},multiSelectAction:"forEach",scrollIntoView:"cursor",readOnly:!0},{name:"gotolinestart",description:"Go to line start",bindKey:o("Alt-Left|Home","Command-Left|Home|Ctrl-A"),exec:function(e){e.navigateLineStart()},multiSelectAction:"forEach",scrollIntoView:"cursor",readOnly:!0},{name:"selectleft",description:"Select left",bindKey:o("Shift-Left","Shift-Left|Ctrl-Shift-B"),exec:function(e){e.getSelection().selectLeft()},multiSelectAction:"forEach",scrollIntoView:"cursor",readOnly:!0},{name:"gotoleft",description:"Go to left",bindKey:o("Left","Left|Ctrl-B"),exec:function(e,t){e.navigateLeft(t.times)},multiSelectAction:"forEach",scrollIntoView:"cursor",readOnly:!0},{name:"selectwordright",description:"Select word right",bindKey:o("Ctrl-Shift-Right","Option-Shift-Right"),exec:function(e){e.getSelection().selectWordRight()},multiSelectAction:"forEach",scrollIntoView:"cursor",readOnly:!0},{name:"gotowordright",description:"Go to word right",bindKey:o("Ctrl-Right","Option-Right"),exec:function(e){e.navigateWordRight()},multiSelectAction:"forEach",scrollIntoView:"cursor",readOnly:!0},{name:"selecttolineend",description:"Select to line end",bindKey:o("Alt-Shift-Right","Command-Shift-Right|Shift-End|Ctrl-Shift-E"),exec:function(e){e.getSelection().selectLineEnd()},multiSelectAction:"forEach",scrollIntoView:"cursor",readOnly:!0},{name:"gotolineend",description:"Go to line end",bindKey:o("Alt-Right|End","Command-Right|End|Ctrl-E"),exec:function(e){e.navigateLineEnd()},multiSelectAction:"forEach",scrollIntoView:"cursor",readOnly:!0},{name:"selectright",description:"Select right",bindKey:o("Shift-Right","Shift-Right"),exec:function(e){e.getSelection().selectRight()},multiSelectAction:"forEach",scrollIntoView:"cursor",readOnly:!0},{name:"gotoright",description:"Go to right",bindKey:o("Right","Right|Ctrl-F"),exec:function(e,t){e.navigateRight(t.times)},multiSelectAction:"forEach",scrollIntoView:"cursor",readOnly:!0},{name:"selectpagedown",description:"Select page down",bindKey:"Shift-PageDown",exec:function(e){e.selectPageDown()},readOnly:!0},{name:"pagedown",description:"Page down",bindKey:o(null,"Option-PageDown"),exec:function(e){e.scrollPageDown()},readOnly:!0},{name:"gotopagedown",description:"Go to page down",bindKey:o("PageDown","PageDown|Ctrl-V"),exec:function(e){e.gotoPageDown()},readOnly:!0},{name:"selectpageup",description:"Select page up",bindKey:"Shift-PageUp",exec:function(e){e.selectPageUp()},readOnly:!0},{name:"pageup",description:"Page up",bindKey:o(null,"Option-PageUp"),exec:function(e){e.scrollPageUp()},readOnly:!0},{name:"gotopageup",description:"Go to page up",bindKey:"PageUp",exec:function(e){e.gotoPageUp()},readOnly:!0},{name:"scrollup",description:"Scroll up",bindKey:o("Ctrl-Up",null),exec:function(e){e.renderer.scrollBy(0,-2*e.renderer.layerConfig.lineHeight)},readOnly:!0},{name:"scrolldown",description:"Scroll down",bindKey:o("Ctrl-Down",null),exec:function(e){e.renderer.scrollBy(0,2*e.renderer.layerConfig.lineHeight)},readOnly:!0},{name:"selectlinestart",description:"Select line start",bindKey:"Shift-Home",exec:function(e){e.getSelection().selectLineStart()},multiSelectAction:"forEach",scrollIntoView:"cursor",readOnly:!0},{name:"selectlineend",description:"Select line end",bindKey:"Shift-End",exec:function(e){e.getSelection().selectLineEnd()},multiSelectAction:"forEach",scrollIntoView:"cursor",readOnly:!0},{name:"togglerecording",description:"Toggle recording",bindKey:o("Ctrl-Alt-E","Command-Option-E"),exec:function(e){e.commands.toggleRecording(e)},readOnly:!0},{name:"replaymacro",description:"Replay macro",bindKey:o("Ctrl-Shift-E","Command-Shift-E"),exec:function(e){e.commands.replay(e)},readOnly:!0},{name:"jumptomatching",description:"Jump to matching",bindKey:o("Ctrl-\\|Ctrl-P","Command-\\"),exec:function(e){e.jumpToMatching()},multiSelectAction:"forEach",scrollIntoView:"animate",readOnly:!0},{name:"selecttomatching",description:"Select to matching",bindKey:o("Ctrl-Shift-\\|Ctrl-Shift-P","Command-Shift-\\"),exec:function(e){e.jumpToMatching(!0)},multiSelectAction:"forEach",scrollIntoView:"animate",readOnly:!0},{name:"expandToMatching",description:"Expand to matching",bindKey:o("Ctrl-Shift-M","Ctrl-Shift-M"),exec:function(e){e.jumpToMatching(!0,!0)},multiSelectAction:"forEach",scrollIntoView:"animate",readOnly:!0},{name:"passKeysToBrowser",description:"Pass keys to browser",bindKey:o(null,null),exec:function(){},passEvent:!0,readOnly:!0},{name:"copy",description:"Copy",exec:function(e){},readOnly:!0},{name:"cut",description:"Cut",exec:function(e){var t=e.$copyWithEmptySelection&&e.selection.isEmpty(),n=t?e.selection.getLineRange():e.selection.getRange();e._emit("cut",n),n.isEmpty()||e.session.remove(n),e.clearSelection()},scrollIntoView:"cursor",multiSelectAction:"forEach"},{name:"paste",description:"Paste",exec:function(e,t){e.$handlePaste(t)},scrollIntoView:"cursor"},{name:"removeline",description:"Remove line",bindKey:o("Ctrl-D","Command-D"),exec:function(e){e.removeLines()},scrollIntoView:"cursor",multiSelectAction:"forEachLine"},{name:"duplicateSelection",description:"Duplicate selection",bindKey:o("Ctrl-Shift-D","Command-Shift-D"),exec:function(e){e.duplicateSelection()},scrollIntoView:"cursor",multiSelectAction:"forEach"},{name:"sortlines",description:"Sort lines",bindKey:o("Ctrl-Alt-S","Command-Alt-S"),exec:function(e){e.sortLines()},scrollIntoView:"selection",multiSelectAction:"forEachLine"},{name:"togglecomment",description:"Toggle comment",bindKey:o("Ctrl-/","Command-/"),exec:function(e){e.toggleCommentLines()},multiSelectAction:"forEachLine",scrollIntoView:"selectionPart"},{name:"toggleBlockComment",description:"Toggle block comment",bindKey:o("Ctrl-Shift-/","Command-Shift-/"),exec:function(e){e.toggleBlockComment()},multiSelectAction:"forEach",scrollIntoView:"selectionPart"},{name:"modifyNumberUp",description:"Modify number up",bindKey:o("Ctrl-Shift-Up","Alt-Shift-Up"),exec:function(e){e.modifyNumber(1)},scrollIntoView:"cursor",multiSelectAction:"forEach"},{name:"modifyNumberDown",description:"Modify number down",bindKey:o("Ctrl-Shift-Down","Alt-Shift-Down"),exec:function(e){e.modifyNumber(-1)},scrollIntoView:"cursor",multiSelectAction:"forEach"},{name:"replace",description:"Replace",bindKey:o("Ctrl-H","Command-Option-F"),exec:function(e){i.loadModule("ace/ext/searchbox",function(t){t.Search(e,!0)})}},{name:"undo",description:"Undo",bindKey:o("Ctrl-Z","Command-Z"),exec:function(e){e.undo()}},{name:"redo",description:"Redo",bindKey:o("Ctrl-Shift-Z|Ctrl-Y","Command-Shift-Z|Command-Y"),exec:function(e){e.redo()}},{name:"copylinesup",description:"Copy lines up",bindKey:o("Alt-Shift-Up","Command-Option-Up"),exec:function(e){e.copyLinesUp()},scrollIntoView:"cursor"},{name:"movelinesup",description:"Move lines up",bindKey:o("Alt-Up","Option-Up"),exec:function(e){e.moveLinesUp()},scrollIntoView:"cursor"},{name:"copylinesdown",description:"Copy lines down",bindKey:o("Alt-Shift-Down","Command-Option-Down"),exec:function(e){e.copyLinesDown()},scrollIntoView:"cursor"},{name:"movelinesdown",description:"Move lines down",bindKey:o("Alt-Down","Option-Down"),exec:function(e){e.moveLinesDown()},scrollIntoView:"cursor"},{name:"del",description:"Delete",bindKey:o("Delete","Delete|Ctrl-D|Shift-Delete"),exec:function(e){e.remove("right")},multiSelectAction:"forEach",scrollIntoView:"cursor"},{name:"backspace",description:"Backspace",bindKey:o("Shift-Backspace|Backspace","Ctrl-Backspace|Shift-Backspace|Backspace|Ctrl-H"),exec:function(e){e.remove("left")},multiSelectAction:"forEach",scrollIntoView:"cursor"},{name:"cut_or_delete",description:"Cut or delete",bindKey:o("Shift-Delete",null),exec:function(e){if(!e.selection.isEmpty())return!1;e.remove("left")},multiSelectAction:"forEach",scrollIntoView:"cursor"},{name:"removetolinestart",description:"Remove to line start",bindKey:o("Alt-Backspace","Command-Backspace"),exec:function(e){e.removeToLineStart()},multiSelectAction:"forEach",scrollIntoView:"cursor"},{name:"removetolineend",description:"Remove to line end",bindKey:o("Alt-Delete","Ctrl-K|Command-Delete"),exec:function(e){e.removeToLineEnd()},multiSelectAction:"forEach",scrollIntoView:"cursor"},{name:"removetolinestarthard",description:"Remove to line start hard",bindKey:o("Ctrl-Shift-Backspace",null),exec:function(e){var t=e.selection.getRange();t.start.column=0,e.session.remove(t)},multiSelectAction:"forEach",scrollIntoView:"cursor"},{name:"removetolineendhard",description:"Remove to line end hard",bindKey:o("Ctrl-Shift-Delete",null),exec:function(e){var t=e.selection.getRange();t.end.column=Number.MAX_VALUE,e.session.remove(t)},multiSelectAction:"forEach",scrollIntoView:"cursor"},{name:"removewordleft",description:"Remove word left",bindKey:o("Ctrl-Backspace","Alt-Backspace|Ctrl-Alt-Backspace"),exec:function(e){e.removeWordLeft()},multiSelectAction:"forEach",scrollIntoView:"cursor"},{name:"removewordright",description:"Remove word right",bindKey:o("Ctrl-Delete","Alt-Delete"),exec:function(e){e.removeWordRight()},multiSelectAction:"forEach",scrollIntoView:"cursor"},{name:"outdent",description:"Outdent",bindKey:o("Shift-Tab","Shift-Tab"),exec:function(e){e.blockOutdent()},multiSelectAction:"forEach",scrollIntoView:"selectionPart"},{name:"indent",description:"Indent",bindKey:o("Tab","Tab"),exec:function(e){e.indent()},multiSelectAction:"forEach",scrollIntoView:"selectionPart"},{name:"blockoutdent",description:"Block outdent",bindKey:o("Ctrl-[","Ctrl-["),exec:function(e){e.blockOutdent()},multiSelectAction:"forEachLine",scrollIntoView:"selectionPart"},{name:"blockindent",description:"Block indent",bindKey:o("Ctrl-]","Ctrl-]"),exec:function(e){e.blockIndent()},multiSelectAction:"forEachLine",scrollIntoView:"selectionPart"},{name:"insertstring",description:"Insert string",exec:function(e,t){e.insert(t)},multiSelectAction:"forEach",scrollIntoView:"cursor"},{name:"inserttext",description:"Insert text",exec:function(e,t){e.insert(r.stringRepeat(t.text||"",t.times||1))},multiSelectAction:"forEach",scrollIntoView:"cursor"},{name:"splitline",description:"Split line",bindKey:o(null,"Ctrl-O"),exec:function(e){e.splitLine()},multiSelectAction:"forEach",scrollIntoView:"cursor"},{name:"transposeletters",description:"Transpose letters",bindKey:o("Alt-Shift-X","Ctrl-T"),exec:function(e){e.transposeLetters()},multiSelectAction:function(e){e.transposeSelections(1)},scrollIntoView:"cursor"},{name:"touppercase",description:"To uppercase",bindKey:o("Ctrl-U","Ctrl-U"),exec:function(e){e.toUpperCase()},multiSelectAction:"forEach",scrollIntoView:"cursor"},{name:"tolowercase",description:"To lowercase",bindKey:o("Ctrl-Shift-U","Ctrl-Shift-U"),exec:function(e){e.toLowerCase()},multiSelectAction:"forEach",scrollIntoView:"cursor"},{name:"autoindent",description:"Auto Indent",bindKey:o(null,null),exec:function(e){e.autoIndent()},scrollIntoView:"animate"},{name:"expandtoline",description:"Expand to line",bindKey:o("Ctrl-Shift-L","Command-Shift-L"),exec:function(e){var t=e.selection.getRange();t.start.column=t.end.column=0,t.end.row++,e.selection.setRange(t,!1)},multiSelectAction:"forEach",scrollIntoView:"cursor",readOnly:!0},{name:"openlink",bindKey:o("Ctrl+F3","F3"),exec:function(e){e.openLink()}},{name:"joinlines",description:"Join lines",bindKey:o(null,null),exec:function(e){var t=e.selection.isBackwards(),n=t?e.selection.getSelectionLead():e.selection.getSelectionAnchor(),i=t?e.selection.getSelectionAnchor():e.selection.getSelectionLead(),o=e.session.doc.getLine(n.row).length,u=e.session.doc.getTextRange(e.selection.getRange()),a=u.replace(/\n\s*/," ").length,f=e.session.doc.getLine(n.row);for(var l=n.row+1;l<=i.row+1;l++){var c=r.stringTrimLeft(r.stringTrimRight(e.session.doc.getLine(l)));c.length!==0&&(c=" "+c),f+=c}i.row+1<e.session.doc.getLength()-1&&(f+=e.session.doc.getNewLineCharacter()),e.clearSelection(),e.session.doc.replace(new s(n.row,0,i.row+2,0),f),a>0?(e.selection.moveCursorTo(n.row,n.column),e.selection.selectTo(n.row,n.column+a)):(o=e.session.doc.getLine(n.row).length>o?o+1:o,e.selection.moveCursorTo(n.row,o))},multiSelectAction:"forEach",readOnly:!0},{name:"invertSelection",description:"Invert selection",bindKey:o(null,null),exec:function(e){var t=e.session.doc.getLength()-1,n=e.session.doc.getLine(t).length,r=e.selection.rangeList.ranges,i=[];r.length<1&&(r=[e.selection.getRange()]);for(var o=0;o<r.length;o++)o==r.length-1&&(r[o].end.row!==t||r[o].end.column!==n)&&i.push(new s(r[o].end.row,r[o].end.column,t,n)),o===0?(r[o].start.row!==0||r[o].start.column!==0)&&i.push(new s(0,0,r[o].start.row,r[o].start.column)):i.push(new s(r[o-1].end.row,r[o-1].end.column,r[o].start.row,r[o].start.column));e.exitMultiSelectMode(),e.clearSelection();for(var o=0;o<i.length;o++)e.selection.addRange(i[o],!1)},readOnly:!0,scrollIntoView:"none"},{name:"addLineAfter",description:"Add new line after the current line",exec:function(e){e.selection.clearSelection(),e.navigateLineEnd(),e.insert("\n")},multiSelectAction:"forEach",scrollIntoView:"cursor"},{name:"addLineBefore",description:"Add new line before the current line",exec:function(e){e.selection.clearSelection();var t=e.getCursorPosition();e.selection.moveTo(t.row-1,Number.MAX_VALUE),e.insert("\n"),t.row===0&&e.navigateUp()},multiSelectAction:"forEach",scrollIntoView:"cursor"},{name:"openCommandPallete",exec:function(e){console.warn("This is an obsolete command. Please use `openCommandPalette` instead."),e.prompt({$type:"commands"})},readOnly:!0},{name:"openCommandPalette",description:"Open command palette",bindKey:o("F1","F1"),exec:function(e){e.prompt({$type:"commands"})},readOnly:!0},{name:"modeSelect",description:"Change language mode...",bindKey:o(null,null),exec:function(e){e.prompt({$type:"modes"})},readOnly:!0}];for(var u=1;u<9;u++)t.commands.push({name:"foldToLevel"+u,description:"Fold To Level "+u,level:u,exec:function(e){e.session.foldToLevel(this.level)},scrollIntoView:"center",readOnly:!0})}),define("ace/line_widgets",["require","exports","module","ace/lib/dom"],function(e,t,n){"use strict";var r=e("./lib/dom"),i=function(){function e(e){this.session=e,this.session.widgetManager=this,this.session.getRowLength=this.getRowLength,this.session.$getWidgetScreenLength=this.$getWidgetScreenLength,this.updateOnChange=this.updateOnChange.bind(this),this.renderWidgets=this.renderWidgets.bind(this),this.measureWidgets=this.measureWidgets.bind(this),this.session._changedWidgets=[],this.$onChangeEditor=this.$onChangeEditor.bind(this),this.session.on("change",this.updateOnChange),this.session.on("changeFold",this.updateOnFold),this.session.on("changeEditor",this.$onChangeEditor)}return e.prototype.getRowLength=function(e){var t;return this.lineWidgets?t=this.lineWidgets[e]&&this.lineWidgets[e].rowCount||0:t=0,!this.$useWrapMode||!this.$wrapData[e]?1+t:this.$wrapData[e].length+1+t},e.prototype.$getWidgetScreenLength=function(){var e=0;return this.lineWidgets.forEach(function(t){t&&t.rowCount&&!t.hidden&&(e+=t.rowCount)}),e},e.prototype.$onChangeEditor=function(e){this.attach(e.editor)},e.prototype.attach=function(e){e&&e.widgetManager&&e.widgetManager!=this&&e.widgetManager.detach();if(this.editor==e)return;this.detach(),this.editor=e,e&&(e.widgetManager=this,e.renderer.on("beforeRender",this.measureWidgets),e.renderer.on("afterRender",this.renderWidgets))},e.prototype.detach=function(e){var t=this.editor;if(!t)return;this.editor=null,t.widgetManager=null,t.renderer.off("beforeRender",this.measureWidgets),t.renderer.off("afterRender",this.renderWidgets);var n=this.session.lineWidgets;n&&n.forEach(function(e){e&&e.el&&e.el.parentNode&&(e._inDocument=!1,e.el.parentNode.removeChild(e.el))})},e.prototype.updateOnFold=function(e,t){var n=t.lineWidgets;if(!n||!e.action)return;var r=e.data,i=r.start.row,s=r.end.row,o=e.action=="add";for(var u=i+1;u<s;u++)n[u]&&(n[u].hidden=o);n[s]&&(o?n[i]?n[s].hidden=o:n[i]=n[s]:(n[i]==n[s]&&(n[i]=undefined),n[s].hidden=o))},e.prototype.updateOnChange=function(e){var t=this.session.lineWidgets;if(!t)return;var n=e.start.row,r=e.end.row-n;if(r!==0)if(e.action=="remove"){var i=t.splice(n+1,r);!t[n]&&i[i.length-1]&&(t[n]=i.pop()),i.forEach(function(e){e&&this.removeLineWidget(e)},this),this.$updateRows()}else{var s=new Array(r);t[n]&&t[n].column!=null&&e.start.column>t[n].column&&n++,s.unshift(n,0),t.splice.apply(t,s),this.$updateRows()}},e.prototype.$updateRows=function(){var e=this.session.lineWidgets;if(!e)return;var t=!0;e.forEach(function(e,n){if(e){t=!1,e.row=n;while(e.$oldWidget)e.$oldWidget.row=n,e=e.$oldWidget}}),t&&(this.session.lineWidgets=null)},e.prototype.$registerLineWidget=function(e){this.session.lineWidgets||(this.session.lineWidgets=new Array(this.session.getLength()));var t=this.session.lineWidgets[e.row];return t&&(e.$oldWidget=t,t.el&&t.el.parentNode&&(t.el.parentNode.removeChild(t.el),t._inDocument=!1)),this.session.lineWidgets[e.row]=e,e},e.prototype.addLineWidget=function(e){this.$registerLineWidget(e),e.session=this.session;if(!this.editor)return e;var t=this.editor.renderer;e.html&&!e.el&&(e.el=r.createElement("div"),e.el.innerHTML=e.html),e.text&&!e.el&&(e.el=r.createElement("div"),e.el.textContent=e.text),e.el&&(r.addCssClass(e.el,"ace_lineWidgetContainer"),e.className&&r.addCssClass(e.el,e.className),e.el.style.position="absolute",e.el.style.zIndex="5",t.container.appendChild(e.el),e._inDocument=!0,e.coverGutter||(e.el.style.zIndex="3"),e.pixelHeight==null&&(e.pixelHeight=e.el.offsetHeight)),e.rowCount==null&&(e.rowCount=e.pixelHeight/t.layerConfig.lineHeight);var n=this.session.getFoldAt(e.row,0);e.$fold=n;if(n){var i=this.session.lineWidgets;e.row==n.end.row&&!i[n.start.row]?i[n.start.row]=e:e.hidden=!0}return this.session._emit("changeFold",{data:{start:{row:e.row}}}),this.$updateRows(),this.renderWidgets(null,t),this.onWidgetChanged(e),e},e.prototype.removeLineWidget=function(e){e._inDocument=!1,e.session=null,e.el&&e.el.parentNode&&e.el.parentNode.removeChild(e.el);if(e.editor&&e.editor.destroy)try{e.editor.destroy()}catch(t){}if(this.session.lineWidgets){var n=this.session.lineWidgets[e.row];if(n==e)this.session.lineWidgets[e.row]=e.$oldWidget,e.$oldWidget&&this.onWidgetChanged(e.$oldWidget);else while(n){if(n.$oldWidget==e){n.$oldWidget=e.$oldWidget;break}n=n.$oldWidget}}this.session._emit("changeFold",{data:{start:{row:e.row}}}),this.$updateRows()},e.prototype.getWidgetsAtRow=function(e){var t=this.session.lineWidgets,n=t&&t[e],r=[];while(n)r.push(n),n=n.$oldWidget;return r},e.prototype.onWidgetChanged=function(e){this.session._changedWidgets.push(e),this.editor&&this.editor.renderer.updateFull()},e.prototype.measureWidgets=function(e,t){var n=this.session._changedWidgets,r=t.layerConfig;if(!n||!n.length)return;var i=Infinity;for(var s=0;s<n.length;s++){var o=n[s];if(!o||!o.el)continue;if(o.session!=this.session)continue;if(!o._inDocument){if(this.session.lineWidgets[o.row]!=o)continue;o._inDocument=!0,t.container.appendChild(o.el)}o.h=o.el.offsetHeight,o.fixedWidth||(o.w=o.el.offsetWidth,o.screenWidth=Math.ceil(o.w/r.characterWidth));var u=o.h/r.lineHeight;o.coverLine&&(u-=this.session.getRowLineCount(o.row),u<0&&(u=0)),o.rowCount!=u&&(o.rowCount=u,o.row<i&&(i=o.row))}i!=Infinity&&(this.session._emit("changeFold",{data:{start:{row:i}}}),this.session.lineWidgetWidth=null),this.session._changedWidgets=[]},e.prototype.renderWidgets=function(e,t){var n=t.layerConfig,r=this.session.lineWidgets;if(!r)return;var i=Math.min(this.firstRow,n.firstRow),s=Math.max(this.lastRow,n.lastRow,r.length);while(i>0&&!r[i])i--;this.firstRow=n.firstRow,this.lastRow=n.lastRow,t.$cursorLayer.config=n;for(var o=i;o<=s;o++){var u=r[o];if(!u||!u.el)continue;if(u.hidden){u.el.style.top=-100-(u.pixelHeight||0)+"px";continue}u._inDocument||(u._inDocument=!0,t.container.appendChild(u.el));var a=t.$cursorLayer.getPixelPosition({row:o,column:0},!0).top;u.coverLine||(a+=n.lineHeight*this.session.getRowLineCount(u.row)),u.el.style.top=a-n.offset+"px";var f=u.coverGutter?0:t.gutterWidth;u.fixedWidth||(f-=t.scrollLeft),u.el.style.left=f+"px",u.fullWidth&&u.screenWidth&&(u.el.style.minWidth=n.width+2*n.padding+"px"),u.fixedWidth?u.el.style.right=t.scrollBar.getWidth()+"px":u.el.style.right=""}},e}();t.LineWidgets=i}),define("ace/keyboard/gutter_handler",["require","exports","module","ace/lib/keys","ace/mouse/default_gutter_handler"],function(e,t,n){"use strict";var r=e("../lib/keys"),i=e("../mouse/default_gutter_handler").GutterTooltip,s=function(){function e(e){this.editor=e,this.gutterLayer=e.renderer.$gutterLayer,this.element=e.renderer.$gutter,this.lines=e.renderer.$gutterLayer.$lines,this.activeRowIndex=null,this.activeLane=null,this.annotationTooltip=new i(this.editor)}return e.prototype.addListener=function(){this.element.addEventListener("keydown",this.$onGutterKeyDown.bind(this)),this.element.addEventListener("focusout",this.$blurGutter.bind(this)),this.editor.on("mousewheel",this.$blurGutter.bind(this))},e.prototype.removeListener=function(){this.element.removeEventListener("keydown",this.$onGutterKeyDown.bind(this)),this.element.removeEventListener("focusout",this.$blurGutter.bind(this)),this.editor.off("mousewheel",this.$blurGutter.bind(this))},e.prototype.$onGutterKeyDown=function(e){if(this.annotationTooltip.isOpen){e.preventDefault(),e.keyCode===r.escape&&this.annotationTooltip.hideTooltip();return}if(e.target===this.element){if(e.keyCode!=r["enter"])return;e.preventDefault();var t=this.editor.getCursorPosition().row;this.editor.isRowVisible(t)||this.editor.scrollToLine(t,!0,!0),setTimeout(function(){var e=this.$rowToRowIndex(this.gutterLayer.$cursorCell.row),t=this.$findNearestFoldWidget(e),n=this.$findNearestAnnotation(e);if(t===null&&n===null)return;if(t===null&&n!==null){this.activeRowIndex=n,this.activeLane="annotation",this.$focusAnnotation(this.activeRowIndex);return}if(t!==null&&n===null){this.activeRowIndex=t,this.activeLane="fold",this.$focusFoldWidget(this.activeRowIndex);return}if(Math.abs(n-e)<Math.abs(t-e)){this.activeRowIndex=n,this.activeLane="annotation",this.$focusAnnotation(this.activeRowIndex);return}this.activeRowIndex=t,this.activeLane="fold",this.$focusFoldWidget(this.activeRowIndex);return}.bind(this),10);return}this.$handleGutterKeyboardInteraction(e),setTimeout(function(){this.editor._signal("gutterkeydown",new o(e,this))}.bind(this),10)},e.prototype.$handleGutterKeyboardInteraction=function(e){if(e.keyCode===r.tab){e.preventDefault();return}if(e.keyCode===r.escape){e.preventDefault(),this.$blurGutter(),this.element.focus(),this.lane=null;return}if(e.keyCode===r.up){e.preventDefault();switch(this.activeLane){case"fold":this.$moveFoldWidgetUp();break;case"annotation":this.$moveAnnotationUp()}return}if(e.keyCode===r.down){e.preventDefault();switch(this.activeLane){case"fold":this.$moveFoldWidgetDown();break;case"annotation":this.$moveAnnotationDown()}return}if(e.keyCode===r.left){e.preventDefault(),this.$switchLane("annotation");return}if(e.keyCode===r.right){e.preventDefault(),this.$switchLane("fold");return}if(e.keyCode===r.enter||e.keyCode===r.space){e.preventDefault();switch(this.activeLane){case"fold":if(this.gutterLayer.session.foldWidgets[this.$rowIndexToRow(this.activeRowIndex)]==="start"){var t=this.$rowIndexToRow(this.activeRowIndex);this.editor.session.onFoldWidgetClick(this.$rowIndexToRow(this.activeRowIndex),e),setTimeout(function(){this.$rowIndexToRow(this.activeRowIndex)!==t&&(this.$blurFoldWidget(this.activeRowIndex),this.activeRowIndex=this.$rowToRowIndex(t),this.$focusFoldWidget(this.activeRowIndex))}.bind(this),10);break}if(this.gutterLayer.session.foldWidgets[this.$rowIndexToRow(this.activeRowIndex)]==="end")break;return;case"annotation":var n=this.lines.cells[this.activeRowIndex].element.childNodes[2],i=n.getBoundingClientRect(),s=this.annotationTooltip.getElement().style;s.left=i.right+"px",s.top=i.bottom+"px",this.annotationTooltip.showTooltip(this.$rowIndexToRow(this.activeRowIndex))}return}},e.prototype.$blurGutter=function(){if(this.activeRowIndex!==null)switch(this.activeLane){case"fold":this.$blurFoldWidget(this.activeRowIndex);break;case"annotation":this.$blurAnnotation(this.activeRowIndex)}this.annotationTooltip.isOpen&&this.annotationTooltip.hideTooltip();return},e.prototype.$isFoldWidgetVisible=function(e){var t=this.editor.isRowFullyVisible(this.$rowIndexToRow(e)),n=this.$getFoldWidget(e).style.display!=="none";return t&&n},e.prototype.$isAnnotationVisible=function(e){var t=this.editor.isRowFullyVisible(this.$rowIndexToRow(e)),n=this.$getAnnotation(e).style.display!=="none";return t&&n},e.prototype.$getFoldWidget=function(e){var t=this.lines.get(e),n=t.element;return n.childNodes[1]},e.prototype.$getAnnotation=function(e){var t=this.lines.get(e),n=t.element;return n.childNodes[2]},e.prototype.$findNearestFoldWidget=function(e){if(this.$isFoldWidgetVisible(e))return e;var t=0;while(e-t>0||e+t<this.lines.getLength()-1){t++;if(e-t>=0&&this.$isFoldWidgetVisible(e-t))return e-t;if(e+t<=this.lines.getLength()-1&&this.$isFoldWidgetVisible(e+t))return e+t}return null},e.prototype.$findNearestAnnotation=function(e){if(this.$isAnnotationVisible(e))return e;var t=0;while(e-t>0||e+t<this.lines.getLength()-1){t++;if(e-t>=0&&this.$isAnnotationVisible(e-t))return e-t;if(e+t<=this.lines.getLength()-1&&this.$isAnnotationVisible(e+t))return e+t}return null},e.prototype.$focusFoldWidget=function(e){if(e==null)return;var t=this.$getFoldWidget(e);t.classList.add(this.editor.renderer.keyboardFocusClassName),t.focus()},e.prototype.$focusAnnotation=function(e){if(e==null)return;var t=this.$getAnnotation(e);t.classList.add(this.editor.renderer.keyboardFocusClassName),t.focus()},e.prototype.$blurFoldWidget=function(e){var t=this.$getFoldWidget(e);t.classList.remove(this.editor.renderer.keyboardFocusClassName),t.blur()},e.prototype.$blurAnnotation=function(e){var t=this.$getAnnotation(e);t.classList.remove(this.editor.renderer.keyboardFocusClassName),t.blur()},e.prototype.$moveFoldWidgetUp=function(){var e=this.activeRowIndex;while(e>0){e--;if(this.$isFoldWidgetVisible(e)){this.$blurFoldWidget(this.activeRowIndex),this.activeRowIndex=e,this.$focusFoldWidget(this.activeRowIndex);return}}return},e.prototype.$moveFoldWidgetDown=function(){var e=this.activeRowIndex;while(e<this.lines.getLength()-1){e++;if(this.$isFoldWidgetVisible(e)){this.$blurFoldWidget(this.activeRowIndex),this.activeRowIndex=e,this.$focusFoldWidget(this.activeRowIndex);return}}return},e.prototype.$moveAnnotationUp=function(){var e=this.activeRowIndex;while(e>0){e--;if(this.$isAnnotationVisible(e)){this.$blurAnnotation(this.activeRowIndex),this.activeRowIndex=e,this.$focusAnnotation(this.activeRowIndex);return}}return},e.prototype.$moveAnnotationDown=function(){var e=this.activeRowIndex;while(e<this.lines.getLength()-1){e++;if(this.$isAnnotationVisible(e)){this.$blurAnnotation(this.activeRowIndex),this.activeRowIndex=e,this.$focusAnnotation(this.activeRowIndex);return}}return},e.prototype.$switchLane=function(e){switch(e){case"annotation":if(this.activeLane==="annotation")break;var t=this.$findNearestAnnotation(this.activeRowIndex);if(t==null)break;this.activeLane="annotation",this.$blurFoldWidget(this.activeRowIndex),this.activeRowIndex=t,this.$focusAnnotation(this.activeRowIndex);break;case"fold":if(this.activeLane==="fold")break;var n=this.$findNearestFoldWidget(this.activeRowIndex);if(n==null)break;this.activeLane="fold",this.$blurAnnotation(this.activeRowIndex),this.activeRowIndex=n,this.$focusFoldWidget(this.activeRowIndex)}return},e.prototype.$rowIndexToRow=function(e){var t=this.lines.get(e);return t?t.row:null},e.prototype.$rowToRowIndex=function(e){for(var t=0;t<this.lines.getLength();t++){var n=this.lines.get(t);if(n.row==e)return t}return null},e}();t.GutterKeyboardHandler=s;var o=function(){function e(e,t){this.gutterKeyboardHandler=t,this.domEvent=e}return e.prototype.getKey=function(){return r.keyCodeToString(this.domEvent.keyCode)},e.prototype.getRow=function(){return this.gutterKeyboardHandler.$rowIndexToRow(this.gutterKeyboardHandler.activeRowIndex)},e.prototype.isInAnnotationLane=function(){return this.gutterKeyboardHandler.activeLane==="annotation"},e.prototype.isInFoldLane=function(){return this.gutterKeyboardHandler.activeLane==="fold"},e}();t.GutterKeyboardEvent=o}),define("ace/editor",["require","exports","module","ace/lib/oop","ace/lib/dom","ace/lib/lang","ace/lib/useragent","ace/keyboard/textinput","ace/mouse/mouse_handler","ace/mouse/fold_handler","ace/keyboard/keybinding","ace/edit_session","ace/search","ace/range","ace/lib/event_emitter","ace/commands/command_manager","ace/commands/default_commands","ace/config","ace/token_iterator","ace/line_widgets","ace/keyboard/gutter_handler","ace/config","ace/clipboard","ace/lib/keys"],function(e,t,n){"use strict";var r=this&&this.__values||function(e){var t=typeof Symbol=="function"&&Symbol.iterator,n=t&&e[t],r=0;if(n)return n.call(e);if(e&&typeof e.length=="number")return{next:function(){return e&&r>=e.length&&(e=void 0),{value:e&&e[r++],done:!e}}};throw new TypeError(t?"Object is not iterable.":"Symbol.iterator is not defined.")},i=e("./lib/oop"),s=e("./lib/dom"),o=e("./lib/lang"),u=e("./lib/useragent"),a=e("./keyboard/textinput").TextInput,f=e("./mouse/mouse_handler").MouseHandler,l=e("./mouse/fold_handler").FoldHandler,c=e("./keyboard/keybinding").KeyBinding,h=e("./edit_session").EditSession,p=e("./search").Search,d=e("./range").Range,v=e("./lib/event_emitter").EventEmitter,m=e("./commands/command_manager").CommandManager,g=e("./commands/default_commands").commands,y=e("./config"),b=e("./token_iterator").TokenIterator,w=e("./line_widgets").LineWidgets,E=e("./keyboard/gutter_handler").GutterKeyboardHandler,S=e("./config").nls,x=e("./clipboard"),T=e("./lib/keys"),N=function(){function e(t,n,r){this.session,this.$toDestroy=[];var i=t.getContainerElement();this.container=i,this.renderer=t,this.id="editor"+ ++e.$uid,this.commands=new m(u.isMac?"mac":"win",g),typeof document=="object"&&(this.textInput=new a(t.getTextAreaContainer(),this),this.renderer.textarea=this.textInput.getElement(),this.$mouseHandler=new f(this),new l(this)),this.keyBinding=new c(this),this.$search=(new p).set({wrap:!0}),this.$historyTracker=this.$historyTracker.bind(this),this.commands.on("exec",this.$historyTracker),this.$initOperationListeners(),this._$emitInputEvent=o.delayedCall(function(){this._signal("input",{}),this.session&&!this.session.destroyed&&this.session.bgTokenizer.scheduleStart()}.bind(this)),this.on("change",function(e,t){t._$emitInputEvent.schedule(31)}),this.setSession(n||r&&r.session||new h("")),y.resetOptions(this),r&&this.setOptions(r),y._signal("editor",this)}return e.prototype.$initOperationListeners=function(){this.commands.on("exec",this.startOperation.bind(this),!0),this.commands.on("afterExec",this.endOperation.bind(this),!0),this.$opResetTimer=o.delayedCall(this.endOperation.bind(this,!0)),this.on("change",function(){this.curOp||(this.startOperation(),this.curOp.selectionBefore=this.$lastSel),this.curOp.docChanged=!0}.bind(this),!0),this.on("changeSelection",function(){this.curOp||(this.startOperation(),this.curOp.selectionBefore=this.$lastSel),this.curOp.selectionChanged=!0}.bind(this),!0)},e.prototype.startOperation=function(e){if(this.curOp){if(!e||this.curOp.command)return;this.prevOp=this.curOp}e||(this.previousCommand=null,e={}),this.$opResetTimer.schedule(),this.curOp=this.session.curOp={command:e.command||{},args:e.args,scrollTop:this.renderer.scrollTop},this.curOp.selectionBefore=this.selection.toJSON()},e.prototype.endOperation=function(e){if(this.curOp&&this.session){if(e&&e.returnValue===!1||!this.session)return this.curOp=null;if(e==1&&this.curOp.command&&this.curOp.command.name=="mouse")return;this._signal("beforeEndOperation");if(!this.curOp)return;var t=this.curOp.command,n=t&&t.scrollIntoView;if(n){switch(n){case"center-animate":n="animate";case"center":this.renderer.scrollCursorIntoView(null,.5);break;case"animate":case"cursor":this.renderer.scrollCursorIntoView();break;case"selectionPart":var r=this.selection.getRange(),i=this.renderer.layerConfig;(r.start.row>=i.lastRow||r.end.row<=i.firstRow)&&this.renderer.scrollSelectionIntoView(this.selection.anchor,this.selection.lead);break;default:}n=="animate"&&this.renderer.animateScrolling(this.curOp.scrollTop)}var s=this.selection.toJSON();this.curOp.selectionAfter=s,this.$lastSel=this.selection.toJSON(),this.session.getUndoManager().addSelection(s),this.prevOp=this.curOp,this.curOp=null}},e.prototype.$historyTracker=function(e){if(!this.$mergeUndoDeltas)return;var t=this.prevOp,n=this.$mergeableCommands,r=t.command&&e.command.name==t.command.name;if(e.command.name=="insertstring"){var i=e.args;this.mergeNextCommand===undefined&&(this.mergeNextCommand=!0),r=r&&this.mergeNextCommand&&(!/\s/.test(i)||/\s/.test(t.args)),this.mergeNextCommand=!0}else r=r&&n.indexOf(e.command.name)!==-1;this.$mergeUndoDeltas!="always"&&Date.now()-this.sequenceStartTime>2e3&&(r=!1),r?this.session.mergeUndoDeltas=!0:n.indexOf(e.command.name)!==-1&&(this.sequenceStartTime=Date.now())},e.prototype.setKeyboardHandler=function(e,t){if(e&&typeof e=="string"&&e!="ace"){this.$keybindingId=e;var n=this;y.loadModule(["keybinding",e],function(r){n.$keybindingId==e&&n.keyBinding.setKeyboardHandler(r&&r.handler),t&&t()})}else this.$keybindingId=null,this.keyBinding.setKeyboardHandler(e),t&&t()},e.prototype.getKeyboardHandler=function(){return this.keyBinding.getKeyboardHandler()},e.prototype.setSession=function(e){if(this.session==e)return;this.curOp&&this.endOperation(),this.curOp={};var t=this.session;if(t){this.session.off("change",this.$onDocumentChange),this.session.off("changeMode",this.$onChangeMode),this.session.off("tokenizerUpdate",this.$onTokenizerUpdate),this.session.off("changeTabSize",this.$onChangeTabSize),this.session.off("changeWrapLimit",this.$onChangeWrapLimit),this.session.off("changeWrapMode",this.$onChangeWrapMode),this.session.off("changeFold",this.$onChangeFold),this.session.off("changeFrontMarker",this.$onChangeFrontMarker),this.session.off("changeBackMarker",this.$onChangeBackMarker),this.session.off("changeBreakpoint",this.$onChangeBreakpoint),this.session.off("changeAnnotation",this.$onChangeAnnotation),this.session.off("changeOverwrite",this.$onCursorChange),this.session.off("changeScrollTop",this.$onScrollTopChange),this.session.off("changeScrollLeft",this.$onScrollLeftChange);var n=this.session.getSelection();n.off("changeCursor",this.$onCursorChange),n.off("changeSelection",this.$onSelectionChange)}this.session=e,e?(this.$onDocumentChange=this.onDocumentChange.bind(this),e.on("change",this.$onDocumentChange),this.renderer.setSession(e),this.$onChangeMode=this.onChangeMode.bind(this),e.on("changeMode",this.$onChangeMode),this.$onTokenizerUpdate=this.onTokenizerUpdate.bind(this),e.on("tokenizerUpdate",this.$onTokenizerUpdate),this.$onChangeTabSize=this.renderer.onChangeTabSize.bind(this.renderer),e.on("changeTabSize",this.$onChangeTabSize),this.$onChangeWrapLimit=this.onChangeWrapLimit.bind(this),e.on("changeWrapLimit",this.$onChangeWrapLimit),this.$onChangeWrapMode=this.onChangeWrapMode.bind(this),e.on("changeWrapMode",this.$onChangeWrapMode),this.$onChangeFold=this.onChangeFold.bind(this),e.on("changeFold",this.$onChangeFold),this.$onChangeFrontMarker=this.onChangeFrontMarker.bind(this),this.session.on("changeFrontMarker",this.$onChangeFrontMarker),this.$onChangeBackMarker=this.onChangeBackMarker.bind(this),this.session.on("changeBackMarker",this.$onChangeBackMarker),this.$onChangeBreakpoint=this.onChangeBreakpoint.bind(this),this.session.on("changeBreakpoint",this.$onChangeBreakpoint),this.$onChangeAnnotation=this.onChangeAnnotation.bind(this),this.session.on("changeAnnotation",this.$onChangeAnnotation),this.$onCursorChange=this.onCursorChange.bind(this),this.session.on("changeOverwrite",this.$onCursorChange),this.$onScrollTopChange=this.onScrollTopChange.bind(this),this.session.on("changeScrollTop",this.$onScrollTopChange),this.$onScrollLeftChange=this.onScrollLeftChange.bind(this),this.session.on("changeScrollLeft",this.$onScrollLeftChange),this.selection=e.getSelection(),this.selection.on("changeCursor",this.$onCursorChange),this.$onSelectionChange=this.onSelectionChange.bind(this),this.selection.on("changeSelection",this.$onSelectionChange),this.onChangeMode(),this.onCursorChange(),this.onScrollTopChange(),this.onScrollLeftChange(),this.onSelectionChange(),this.onChangeFrontMarker(),this.onChangeBackMarker(),this.onChangeBreakpoint(),this.onChangeAnnotation(),this.session.getUseWrapMode()&&this.renderer.adjustWrapLimit(),this.renderer.updateFull()):(this.selection=null,this.renderer.setSession(e)),this._signal("changeSession",{session:e,oldSession:t}),this.curOp=null,t&&t._signal("changeEditor",{oldEditor:this}),e&&e._signal("changeEditor",{editor:this}),e&&!e.destroyed&&e.bgTokenizer.scheduleStart()},e.prototype.getSession=function(){return this.session},e.prototype.setValue=function(e,t){return this.session.doc.setValue(e),t?t==1?this.navigateFileEnd():t==-1&&this.navigateFileStart():this.selectAll(),e},e.prototype.getValue=function(){return this.session.getValue()},e.prototype.getSelection=function(){return this.selection},e.prototype.resize=function(e){this.renderer.onResize(e)},e.prototype.setTheme=function(e,t){this.renderer.setTheme(e,t)},e.prototype.getTheme=function(){return this.renderer.getTheme()},e.prototype.setStyle=function(e){this.renderer.setStyle(e)},e.prototype.unsetStyle=function(e){this.renderer.unsetStyle(e)},e.prototype.getFontSize=function(){return this.getOption("fontSize")||s.computedStyle(this.container).fontSize},e.prototype.setFontSize=function(e){this.setOption("fontSize",e)},e.prototype.$highlightBrackets=function(){if(this.$highlightPending)return;var e=this;this.$highlightPending=!0,setTimeout(function(){e.$highlightPending=!1;var t=e.session;if(!t||t.destroyed)return;t.$bracketHighlight&&(t.$bracketHighlight.markerIds.forEach(function(e){t.removeMarker(e)}),t.$bracketHighlight=null);var n=e.getCursorPosition(),r=e.getKeyboardHandler(),i=r&&r.$getDirectionForHighlight&&r.$getDirectionForHighlight(e),s=t.getMatchingBracketRanges(n,i);if(!s){var o=new b(t,n.row,n.column),u=o.getCurrentToken();if(u&&/\b(?:tag-open|tag-name)/.test(u.type)){var a=t.getMatchingTags(n);a&&(s=[a.openTagName.isEmpty()?a.openTag:a.openTagName,a.closeTagName.isEmpty()?a.closeTag:a.closeTagName])}}!s&&t.$mode.getMatching&&(s=t.$mode.getMatching(e.session));if(!s){e.getHighlightIndentGuides()&&e.renderer.$textLayer.$highlightIndentGuide();return}var f="ace_bracket";Array.isArray(s)?s.length==1&&(f="ace_error_bracket"):s=[s],s.length==2&&(d.comparePoints(s[0].end,s[1].start)==0?s=[d.fromPoints(s[0].start,s[1].end)]:d.comparePoints(s[0].start,s[1].end)==0&&(s=[d.fromPoints(s[1].start,s[0].end)])),t.$bracketHighlight={ranges:s,markerIds:s.map(function(e){return t.addMarker(e,f,"text")})},e.getHighlightIndentGuides()&&e.renderer.$textLayer.$highlightIndentGuide()},50)},e.prototype.focus=function(){this.textInput.focus()},e.prototype.isFocused=function(){return this.textInput.isFocused()},e.prototype.blur=function(){this.textInput.blur()},e.prototype.onFocus=function(e){if(this.$isFocused)return;this.$isFocused=!0,this.renderer.showCursor(),this.renderer.visualizeFocus(),this._emit("focus",e)},e.prototype.onBlur=function(e){if(!this.$isFocused)return;this.$isFocused=!1,this.renderer.hideCursor(),this.renderer.visualizeBlur(),this._emit("blur",e)},e.prototype.$cursorChange=function(){this.renderer.updateCursor(),this.$highlightBrackets(),this.$updateHighlightActiveLine()},e.prototype.onDocumentChange=function(e){var t=this.session.$useWrapMode,n=e.start.row==e.end.row?e.end.row:Infinity;this.renderer.updateLines(e.start.row,n,t),this._signal("change",e),this.$cursorChange()},e.prototype.onTokenizerUpdate=function(e){var t=e.data;this.renderer.updateLines(t.first,t.last)},e.prototype.onScrollTopChange=function(){this.renderer.scrollToY(this.session.getScrollTop())},e.prototype.onScrollLeftChange=function(){this.renderer.scrollToX(this.session.getScrollLeft())},e.prototype.onCursorChange=function(){this.$cursorChange(),this._signal("changeSelection")},e.prototype.$updateHighlightActiveLine=function(){var e=this.getSession(),t;if(this.$highlightActiveLine){if(this.$selectionStyle!="line"||!this.selection.isMultiLine())t=this.getCursorPosition();this.renderer.theme&&this.renderer.theme.$selectionColorConflict&&!this.selection.isEmpty()&&(t=!1),this.renderer.$maxLines&&this.session.getLength()===1&&!(this.renderer.$minLines>1)&&(t=!1)}if(e.$highlightLineMarker&&!t)e.removeMarker(e.$highlightLineMarker.id),e.$highlightLineMarker=null;else if(!e.$highlightLineMarker&&t){var n=new d(t.row,t.column,t.row,Infinity);n.id=e.addMarker(n,"ace_active-line","screenLine"),e.$highlightLineMarker=n}else t&&(e.$highlightLineMarker.start.row=t.row,e.$highlightLineMarker.end.row=t.row,e.$highlightLineMarker.start.column=t.column,e._signal("changeBackMarker"))},e.prototype.onSelectionChange=function(e){var t=this.session;t.$selectionMarker&&t.removeMarker(t.$selectionMarker),t.$selectionMarker=null;if(!this.selection.isEmpty()){var n=this.selection.getRange(),r=this.getSelectionStyle();t.$selectionMarker=t.addMarker(n,"ace_selection",r)}else this.$updateHighlightActiveLine();var i=this.$highlightSelectedWord&&this.$getSelectionHighLightRegexp();this.session.highlight(i),this._signal("changeSelection")},e.prototype.$getSelectionHighLightRegexp=function(){var e=this.session,t=this.getSelectionRange();if(t.isEmpty()||t.isMultiLine())return;var n=t.start.column,r=t.end.column,i=e.getLine(t.start.row),s=i.substring(n,r);if(s.length>5e3||!/[\w\d]/.test(s))return;var o=this.$search.$assembleRegExp({wholeWord:!0,caseSensitive:!0,needle:s}),u=i.substring(n-1,r+1);if(!o.test(u))return;return o},e.prototype.onChangeFrontMarker=function(){this.renderer.updateFrontMarkers()},e.prototype.onChangeBackMarker=function(){this.renderer.updateBackMarkers()},e.prototype.onChangeBreakpoint=function(){this.renderer.updateBreakpoints()},e.prototype.onChangeAnnotation=function(){this.renderer.setAnnotations(this.session.getAnnotations())},e.prototype.onChangeMode=function(e){this.renderer.updateText(),this._emit("changeMode",e)},e.prototype.onChangeWrapLimit=function(){this.renderer.updateFull()},e.prototype.onChangeWrapMode=function(){this.renderer.onResize(!0)},e.prototype.onChangeFold=function(){this.$updateHighlightActiveLine(),this.renderer.updateFull()},e.prototype.getSelectedText=function(){return this.session.getTextRange(this.getSelectionRange())},e.prototype.getCopyText=function(){var e=this.getSelectedText(),t=this.session.doc.getNewLineCharacter(),n=!1;if(!e&&this.$copyWithEmptySelection){n=!0;var r=this.selection.getAllRanges();for(var i=0;i<r.length;i++){var s=r[i];if(i&&r[i-1].start.row==s.start.row)continue;e+=this.session.getLine(s.start.row)+t}}var o={text:e};return this._signal("copy",o),x.lineMode=n?o.text:!1,o.text},e.prototype.onCopy=function(){this.commands.exec("copy",this)},e.prototype.onCut=function(){this.commands.exec("cut",this)},e.prototype.onPaste=function(e,t){var n={text:e,event:t};this.commands.exec("paste",this,n)},e.prototype.$handlePaste=function(e){typeof e=="string"&&(e={text:e}),this._signal("paste",e);var t=e.text,n=t===x.lineMode,r=this.session;if(!this.inMultiSelectMode||this.inVirtualSelectionMode)n?r.insert({row:this.selection.lead.row,column:0},t):this.insert(t);else if(n)this.selection.rangeList.ranges.forEach(function(e){r.insert({row:e.start.row,column:0},t)});else{var i=t.split(/\r\n|\r|\n/),s=this.selection.rangeList.ranges,o=i.length==2&&(!i[0]||!i[1]);if(i.length!=s.length||o)return this.commands.exec("insertstring",this,t);for(var u=s.length;u--;){var a=s[u];a.isEmpty()||r.remove(a),r.insert(a.start,i[u])}}},e.prototype.execCommand=function(e,t){return this.commands.exec(e,this,t)},e.prototype.insert=function(e,t){var n=this.session,r=n.getMode(),i=this.getCursorPosition();if(this.getBehavioursEnabled()&&!t){var s=r.transformAction(n.getState(i.row),"insertion",this,n,e);s&&(e!==s.text&&(this.inVirtualSelectionMode||(this.session.mergeUndoDeltas=!1,this.mergeNextCommand=!1)),e=s.text)}e==" "&&(e=this.session.getTabString());if(!this.selection.isEmpty()){var o=this.getSelectionRange();i=this.session.remove(o),this.clearSelection()}else if(this.session.getOverwrite()&&e.indexOf("\n")==-1){var o=d.fromPoints(i,i);o.end.column+=e.length,this.session.remove(o)}if(e=="\n"||e=="\r\n"){var u=n.getLine(i.row);if(i.column>u.search(/\S|$/)){var a=u.substr(i.column).search(/\S|$/);n.doc.removeInLine(i.row,i.column,i.column+a)}}this.clearSelection();var f=i.column,l=n.getState(i.row),u=n.getLine(i.row),c=r.checkOutdent(l,u,e);n.insert(i,e),s&&s.selection&&(s.selection.length==2?this.selection.setSelectionRange(new d(i.row,f+s.selection[0],i.row,f+s.selection[1])):this.selection.setSelectionRange(new d(i.row+s.selection[0],s.selection[1],i.row+s.selection[2],s.selection[3])));if(this.$enableAutoIndent){if(n.getDocument().isNewLine(e)){var h=r.getNextLineIndent(l,u.slice(0,i.column),n.getTabString());n.insert({row:i.row+1,column:0},h)}c&&r.autoOutdent(l,n,i.row)}},e.prototype.autoIndent=function(){var e=this.session,t=e.getMode(),n=this.selection.isEmpty()?[new d(0,0,e.doc.getLength()-1,0)]:this.selection.getAllRanges(),r="",i="",s="",o=e.getTabString();for(var u=0;u<n.length;u++){var a=n[u].start.row,f=n[u].end.row;for(var l=a;l<=f;l++){l>0&&(r=e.getState(l-1),i=e.getLine(l-1),s=t.getNextLineIndent(r,i,o));var c=e.getLine(l),h=t.$getIndent(c);if(s!==h){if(h.length>0){var p=new d(l,0,l,h.length);e.remove(p)}s.length>0&&e.insert({row:l,column:0},s)}t.autoOutdent(r,e,l)}}},e.prototype.onTextInput=function(e,t){if(!t)return this.keyBinding.onTextInput(e);this.startOperation({command:{name:"insertstring"}});var n=this.applyComposition.bind(this,e,t);this.selection.rangeCount?this.forEachSelection(n):n(),this.endOperation()},e.prototype.applyComposition=function(e,t){if(t.extendLeft||t.extendRight){var n=this.selection.getRange();n.start.column-=t.extendLeft,n.end.column+=t.extendRight,n.start.column<0&&(n.start.row--,n.start.column+=this.session.getLine(n.start.row).length+1),this.selection.setRange(n),!e&&!n.isEmpty()&&this.remove()}(e||!this.selection.isEmpty())&&this.insert(e,!0);if(t.restoreStart||t.restoreEnd){var n=this.selection.getRange();n.start.column-=t.restoreStart,n.end.column-=t.restoreEnd,this.selection.setRange(n)}},e.prototype.onCommandKey=function(e,t,n){return this.keyBinding.onCommandKey(e,t,n)},e.prototype.setOverwrite=function(e){this.session.setOverwrite(e)},e.prototype.getOverwrite=function(){return this.session.getOverwrite()},e.prototype.toggleOverwrite=function(){this.session.toggleOverwrite()},e.prototype.setScrollSpeed=function(e){this.setOption("scrollSpeed",e)},e.prototype.getScrollSpeed=function(){return this.getOption("scrollSpeed")},e.prototype.setDragDelay=function(e){this.setOption("dragDelay",e)},e.prototype.getDragDelay=function(){return this.getOption("dragDelay")},e.prototype.setSelectionStyle=function(e){this.setOption("selectionStyle",e)},e.prototype.getSelectionStyle=function(){return this.getOption("selectionStyle")},e.prototype.setHighlightActiveLine=function(e){this.setOption("highlightActiveLine",e)},e.prototype.getHighlightActiveLine=function(){return this.getOption("highlightActiveLine")},e.prototype.setHighlightGutterLine=function(e){this.setOption("highlightGutterLine",e)},e.prototype.getHighlightGutterLine=function(){return this.getOption("highlightGutterLine")},e.prototype.setHighlightSelectedWord=function(e){this.setOption("highlightSelectedWord",e)},e.prototype.getHighlightSelectedWord=function(){return this.$highlightSelectedWord},e.prototype.setAnimatedScroll=function(e){this.renderer.setAnimatedScroll(e)},e.prototype.getAnimatedScroll=function(){return this.renderer.getAnimatedScroll()},e.prototype.setShowInvisibles=function(e){this.renderer.setShowInvisibles(e)},e.prototype.getShowInvisibles=function(){return this.renderer.getShowInvisibles()},e.prototype.setDisplayIndentGuides=function(e){this.renderer.setDisplayIndentGuides(e)},e.prototype.getDisplayIndentGuides=function(){return this.renderer.getDisplayIndentGuides()},e.prototype.setHighlightIndentGuides=function(e){this.renderer.setHighlightIndentGuides(e)},e.prototype.getHighlightIndentGuides=function(){return this.renderer.getHighlightIndentGuides()},e.prototype.setShowPrintMargin=function(e){this.renderer.setShowPrintMargin(e)},e.prototype.getShowPrintMargin=function(){return this.renderer.getShowPrintMargin()},e.prototype.setPrintMarginColumn=function(e){this.renderer.setPrintMarginColumn(e)},e.prototype.getPrintMarginColumn=function(){return this.renderer.getPrintMarginColumn()},e.prototype.setReadOnly=function(e){this.setOption("readOnly",e)},e.prototype.getReadOnly=function(){return this.getOption("readOnly")},e.prototype.setBehavioursEnabled=function(e){this.setOption("behavioursEnabled",e)},e.prototype.getBehavioursEnabled=function(){return this.getOption("behavioursEnabled")},e.prototype.setWrapBehavioursEnabled=function(e){this.setOption("wrapBehavioursEnabled",e)},e.prototype.getWrapBehavioursEnabled=function(){return this.getOption("wrapBehavioursEnabled")},e.prototype.setShowFoldWidgets=function(e){this.setOption("showFoldWidgets",e)},e.prototype.getShowFoldWidgets=function(){return this.getOption("showFoldWidgets")},e.prototype.setFadeFoldWidgets=function(e){this.setOption("fadeFoldWidgets",e)},e.prototype.getFadeFoldWidgets=function(){return this.getOption("fadeFoldWidgets")},e.prototype.remove=function(e){this.selection.isEmpty()&&(e=="left"?this.selection.selectLeft():this.selection.selectRight());var t=this.getSelectionRange();if(this.getBehavioursEnabled()){var n=this.session,r=n.getState(t.start.row),i=n.getMode().transformAction(r,"deletion",this,n,t);if(t.end.column===0){var s=n.getTextRange(t);if(s[s.length-1]=="\n"){var o=n.getLine(t.end.row);/^\s+$/.test(o)&&(t.end.column=o.length)}}i&&(t=i)}this.session.remove(t),this.clearSelection()},e.prototype.removeWordRight=function(){this.selection.isEmpty()&&this.selection.selectWordRight(),this.session.remove(this.getSelectionRange()),this.clearSelection()},e.prototype.removeWordLeft=function(){this.selection.isEmpty()&&this.selection.selectWordLeft(),this.session.remove(this.getSelectionRange()),this.clearSelection()},e.prototype.removeToLineStart=function(){this.selection.isEmpty()&&this.selection.selectLineStart(),this.selection.isEmpty()&&this.selection.selectLeft(),this.session.remove(this.getSelectionRange()),this.clearSelection()},e.prototype.removeToLineEnd=function(){this.selection.isEmpty()&&this.selection.selectLineEnd();var e=this.getSelectionRange();e.start.column==e.end.column&&e.start.row==e.end.row&&(e.end.column=0,e.end.row++),this.session.remove(e),this.clearSelection()},e.prototype.splitLine=function(){this.selection.isEmpty()||(this.session.remove(this.getSelectionRange()),this.clearSelection());var e=this.getCursorPosition();this.insert("\n"),this.moveCursorToPosition(e)},e.prototype.setGhostText=function(e,t){this.session.widgetManager||(this.session.widgetManager=new w(this.session),this.session.widgetManager.attach(this)),this.renderer.setGhostText(e,t)},e.prototype.removeGhostText=function(){if(!this.session.widgetManager)return;this.renderer.removeGhostText()},e.prototype.transposeLetters=function(){if(!this.selection.isEmpty())return;var e=this.getCursorPosition(),t=e.column;if(t===0)return;var n=this.session.getLine(e.row),r,i;t<n.length?(r=n.charAt(t)+n.charAt(t-1),i=new d(e.row,t-1,e.row,t+1)):(r=n.charAt(t-1)+n.charAt(t-2),i=new d(e.row,t-2,e.row,t)),this.session.replace(i,r),this.session.selection.moveToPosition(i.end)},e.prototype.toLowerCase=function(){var e=this.getSelectionRange();this.selection.isEmpty()&&this.selection.selectWord();var t=this.getSelectionRange(),n=this.session.getTextRange(t);this.session.replace(t,n.toLowerCase()),this.selection.setSelectionRange(e)},e.prototype.toUpperCase=function(){var e=this.getSelectionRange();this.selection.isEmpty()&&this.selection.selectWord();var t=this.getSelectionRange(),n=this.session.getTextRange(t);this.session.replace(t,n.toUpperCase()),this.selection.setSelectionRange(e)},e.prototype.indent=function(){var e=this.session,t=this.getSelectionRange();if(t.start.row<t.end.row){var n=this.$getSelectedRows();e.indentRows(n.first,n.last," ");return}if(t.start.column<t.end.column){var r=e.getTextRange(t);if(!/^\s+$/.test(r)){var n=this.$getSelectedRows();e.indentRows(n.first,n.last," ");return}}var i=e.getLine(t.start.row),s=t.start,u=e.getTabSize(),a=e.documentToScreenColumn(s.row,s.column);if(this.session.getUseSoftTabs())var f=u-a%u,l=o.stringRepeat(" ",f);else{var f=a%u;while(i[t.start.column-1]==" "&&f)t.start.column--,f--;this.selection.setSelectionRange(t),l=" "}return this.insert(l)},e.prototype.blockIndent=function(){var e=this.$getSelectedRows();this.session.indentRows(e.first,e.last," ")},e.prototype.blockOutdent=function(){var e=this.session.getSelection();this.session.outdentRows(e.getRange())},e.prototype.sortLines=function(){var e=this.$getSelectedRows(),t=this.session,n=[];for(var r=e.first;r<=e.last;r++)n.push(t.getLine(r));n.sort(function(e,t){return e.toLowerCase()<t.toLowerCase()?-1:e.toLowerCase()>t.toLowerCase()?1:0});var i=new d(0,0,0,0);for(var r=e.first;r<=e.last;r++){var s=t.getLine(r);i.start.row=r,i.end.row=r,i.end.column=s.length,t.replace(i,n[r-e.first])}},e.prototype.toggleCommentLines=function(){var e=this.session.getState(this.getCursorPosition().row),t=this.$getSelectedRows();this.session.getMode().toggleCommentLines(e,this.session,t.first,t.last)},e.prototype.toggleBlockComment=function(){var e=this.getCursorPosition(),t=this.session.getState(e.row),n=this.getSelectionRange();this.session.getMode().toggleBlockComment(t,this.session,n,e)},e.prototype.getNumberAt=function(e,t){var n=/[\-]?[0-9]+(?:\.[0-9]+)?/g;n.lastIndex=0;var r=this.session.getLine(e);while(n.lastIndex<t){var i=n.exec(r);if(i.index<=t&&i.index+i[0].length>=t){var s={value:i[0],start:i.index,end:i.index+i[0].length};return s}}return null},e.prototype.modifyNumber=function(e){var t=this.selection.getCursor().row,n=this.selection.getCursor().column,r=new d(t,n-1,t,n),i=this.session.getTextRange(r);if(!isNaN(parseFloat(i))&&isFinite(i)){var s=this.getNumberAt(t,n);if(s){var o=s.value.indexOf(".")>=0?s.start+s.value.indexOf(".")+1:s.end,u=s.start+s.value.length-o,a=parseFloat(s.value);a*=Math.pow(10,u),o!==s.end&&n<o?e*=Math.pow(10,s.end-n-1):e*=Math.pow(10,s.end-n),a+=e,a/=Math.pow(10,u);var f=a.toFixed(u),l=new d(t,s.start,t,s.end);this.session.replace(l,f),this.moveCursorTo(t,Math.max(s.start+1,n+f.length-s.value.length))}}else this.toggleWord()},e.prototype.toggleWord=function(){var e=this.selection.getCursor().row,t=this.selection.getCursor().column;this.selection.selectWord();var n=this.getSelectedText(),r=this.selection.getWordRange().start.column,i=n.replace(/([a-z]+|[A-Z]+)(?=[A-Z_]|$)/g,"$1 ").split(/\s/),s=t-r-1;s<0&&(s=0);var u=0,a=0,f=this;n.match(/[A-Za-z0-9_]+/)&&i.forEach(function(t,i){a=u+t.length,s>=u&&s<=a&&(n=t,f.selection.clearSelection(),f.moveCursorTo(e,u+r),f.selection.selectTo(e,a+r)),u=a});var l=this.$toggleWordPairs,c;for(var h=0;h<l.length;h++){var p=l[h];for(var d=0;d<=1;d++){var v=+!d,m=n.match(new RegExp("^\\s?_?("+o.escapeRegExp(p[d])+")\\s?$","i"));if(m){var g=n.match(new RegExp("([_]|^|\\s)("+o.escapeRegExp(m[1])+")($|\\s)","g"));g&&(c=n.replace(new RegExp(o.escapeRegExp(p[d]),"i"),function(e){var t=p[v];return e.toUpperCase()==e?t=t.toUpperCase():e.charAt(0).toUpperCase()==e.charAt(0)&&(t=t.substr(0,0)+p[v].charAt(0).toUpperCase()+t.substr(1)),t}),this.insert(c),c="")}}}},e.prototype.findLinkAt=function(e,t){var n,i,s=this.session.getLine(e),o=s.split(/((?:https?|ftp):\/\/[\S]+)/),u=t;u<0&&(u=0);var a=0,f=0,l;try{for(var c=r(o),h=c.next();!h.done;h=c.next()){var p=h.value;f=a+p.length;if(u>=a&&u<=f&&p.match(/((?:https?|ftp):\/\/[\S]+)/)){l=p.replace(/[\s:.,'";}\]]+$/,"");break}a=f}}catch(d){n={error:d}}finally{try{h&&!h.done&&(i=c.return)&&i.call(c)}finally{if(n)throw n.error}}return l},e.prototype.openLink=function(){var e=this.selection.getCursor(),t=this.findLinkAt(e.row,e.column);return t&&window.open(t,"_blank"),t!=null},e.prototype.removeLines=function(){var e=this.$getSelectedRows();this.session.removeFullLines(e.first,e.last),this.clearSelection()},e.prototype.duplicateSelection=function(){var e=this.selection,t=this.session,n=e.getRange(),r=e.isBackwards();if(n.isEmpty()){var i=n.start.row;t.duplicateLines(i,i)}else{var s=r?n.start:n.end,o=t.insert(s,t.getTextRange(n));n.start=s,n.end=o,e.setSelectionRange(n,r)}},e.prototype.moveLinesDown=function(){this.$moveLines(1,!1)},e.prototype.moveLinesUp=function(){this.$moveLines(-1,!1)},e.prototype.moveText=function(e,t,n){return this.session.moveText(e,t,n)},e.prototype.copyLinesUp=function(){this.$moveLines(-1,!0)},e.prototype.copyLinesDown=function(){this.$moveLines(1,!0)},e.prototype.$moveLines=function(e,t){var n,r,i=this.selection;if(!i.inMultiSelectMode||this.inVirtualSelectionMode){var s=i.toOrientedRange();n=this.$getSelectedRows(s),r=this.session.$moveLines(n.first,n.last,t?0:e),t&&e==-1&&(r=0),s.moveBy(r,0),i.fromOrientedRange(s)}else{var o=i.rangeList.ranges;i.rangeList.detach(this.session),this.inVirtualSelectionMode=!0;var u=0,a=0,f=o.length;for(var l=0;l<f;l++){var c=l;o[l].moveBy(u,0),n=this.$getSelectedRows(o[l]);var h=n.first,p=n.last;while(++l<f){a&&o[l].moveBy(a,0);var d=this.$getSelectedRows(o[l]);if(t&&d.first!=p)break;if(!t&&d.first>p+1)break;p=d.last}l--,u=this.session.$moveLines(h,p,t?0:e),t&&e==-1&&(c=l+1);while(c<=l)o[c].moveBy(u,0),c++;t||(u=0),a+=u}i.fromOrientedRange(i.ranges[0]),i.rangeList.attach(this.session),this.inVirtualSelectionMode=!1}},e.prototype.$getSelectedRows=function(e){return e=(e||this.getSelectionRange()).collapseRows(),{first:this.session.getRowFoldStart(e.start.row),last:this.session.getRowFoldEnd(e.end.row)}},e.prototype.onCompositionStart=function(e){this.renderer.showComposition(e)},e.prototype.onCompositionUpdate=function(e){this.renderer.setCompositionText(e)},e.prototype.onCompositionEnd=function(){this.renderer.hideComposition()},e.prototype.getFirstVisibleRow=function(){return this.renderer.getFirstVisibleRow()},e.prototype.getLastVisibleRow=function(){return this.renderer.getLastVisibleRow()},e.prototype.isRowVisible=function(e){return e>=this.getFirstVisibleRow()&&e<=this.getLastVisibleRow()},e.prototype.isRowFullyVisible=function(e){return e>=this.renderer.getFirstFullyVisibleRow()&&e<=this.renderer.getLastFullyVisibleRow()},e.prototype.$getVisibleRowCount=function(){return this.renderer.getScrollBottomRow()-this.renderer.getScrollTopRow()+1},e.prototype.$moveByPage=function(e,t){var n=this.renderer,r=this.renderer.layerConfig,i=e*Math.floor(r.height/r.lineHeight);t===!0?this.selection.$moveSelection(function(){this.moveCursorBy(i,0)}):t===!1&&(this.selection.moveCursorBy(i,0),this.selection.clearSelection());var s=n.scrollTop;n.scrollBy(0,i*r.lineHeight),t!=null&&n.scrollCursorIntoView(null,.5),n.animateScrolling(s)},e.prototype.selectPageDown=function(){this.$moveByPage(1,!0)},e.prototype.selectPageUp=function(){this.$moveByPage(-1,!0)},e.prototype.gotoPageDown=function(){this.$moveByPage(1,!1)},e.prototype.gotoPageUp=function(){this.$moveByPage(-1,!1)},e.prototype.scrollPageDown=function(){this.$moveByPage(1)},e.prototype.scrollPageUp=function(){this.$moveByPage(-1)},e.prototype.scrollToRow=function(e){this.renderer.scrollToRow(e)},e.prototype.scrollToLine=function(e,t,n,r){this.renderer.scrollToLine(e,t,n,r)},e.prototype.centerSelection=function(){var e=this.getSelectionRange(),t={row:Math.floor(e.start.row+(e.end.row-e.start.row)/2),column:Math.floor(e.start.column+(e.end.column-e.start.column)/2)};this.renderer.alignCursor(t,.5)},e.prototype.getCursorPosition=function(){return this.selection.getCursor()},e.prototype.getCursorPositionScreen=function(){return this.session.documentToScreenPosition(this.getCursorPosition())},e.prototype.getSelectionRange=function(){return this.selection.getRange()},e.prototype.selectAll=function(){this.selection.selectAll()},e.prototype.clearSelection=function(){this.selection.clearSelection()},e.prototype.moveCursorTo=function(e,t){this.selection.moveCursorTo(e,t)},e.prototype.moveCursorToPosition=function(e){this.selection.moveCursorToPosition(e)},e.prototype.jumpToMatching=function(e,t){var n=this.getCursorPosition(),r=new b(this.session,n.row,n.column),i=r.getCurrentToken(),s=0;i&&i.type.indexOf("tag-name")!==-1&&(i=r.stepBackward());var o=i||r.stepForward();if(!o)return;var u,a=!1,f={},l=n.column-o.start,c,h={")":"(","(":"(","]":"[","[":"[","{":"{","}":"{"};do{if(o.value.match(/[{}()\[\]]/g))for(;l<o.value.length&&!a;l++){if(!h[o.value[l]])continue;c=h[o.value[l]]+"."+o.type.replace("rparen","lparen"),isNaN(f[c])&&(f[c]=0);switch(o.value[l]){case"(":case"[":case"{":f[c]++;break;case")":case"]":case"}":f[c]--,f[c]===-1&&(u="bracket",a=!0)}}else o.type.indexOf("tag-name")!==-1&&(isNaN(f[o.value])&&(f[o.value]=0),i.value==="<"&&s>1?f[o.value]++:i.value==="</"&&f[o.value]--,f[o.value]===-1&&(u="tag",a=!0));a||(i=o,s++,o=r.stepForward(),l=0)}while(o&&!a);if(!u)return;var p,v;if(u==="bracket"){p=this.session.getBracketRange(n);if(!p){p=new d(r.getCurrentTokenRow(),r.getCurrentTokenColumn()+l-1,r.getCurrentTokenRow(),r.getCurrentTokenColumn()+l-1),v=p.start;if(t||v.row===n.row&&Math.abs(v.column-n.column)<2)p=this.session.getBracketRange(v)}}else if(u==="tag"){if(!o||o.type.indexOf("tag-name")===-1)return;p=new d(r.getCurrentTokenRow(),r.getCurrentTokenColumn()-2,r.getCurrentTokenRow(),r.getCurrentTokenColumn()-2);if(p.compare(n.row,n.column)===0){var m=this.session.getMatchingTags(n);m&&(m.openTag.contains(n.row,n.column)?(p=m.closeTag,v=p.start):(p=m.openTag,m.closeTag.start.row===n.row&&m.closeTag.start.column===n.column?v=p.end:v=p.start))}v=v||p.start}v=p&&p.cursor||v,v&&(e?p&&t?this.selection.setRange(p):p&&p.isEqual(this.getSelectionRange())?this.clearSelection():this.selection.selectTo(v.row,v.column):this.selection.moveTo(v.row,v.column))},e.prototype.gotoLine=function(e,t,n){this.selection.clearSelection(),this.session.unfold({row:e-1,column:t||0}),this.exitMultiSelectMode&&this.exitMultiSelectMode(),this.moveCursorTo(e-1,t||0),this.isRowFullyVisible(e-1)||this.scrollToLine(e-1,!0,n)},e.prototype.navigateTo=function(e,t){this.selection.moveTo(e,t)},e.prototype.navigateUp=function(e){if(this.selection.isMultiLine()&&!this.selection.isBackwards()){var t=this.selection.anchor.getPosition();return this.moveCursorToPosition(t)}this.selection.clearSelection(),this.selection.moveCursorBy(-e||-1,0)},e.prototype.navigateDown=function(e){if(this.selection.isMultiLine()&&this.selection.isBackwards()){var t=this.selection.anchor.getPosition();return this.moveCursorToPosition(t)}this.selection.clearSelection(),this.selection.moveCursorBy(e||1,0)},e.prototype.navigateLeft=function(e){if(!this.selection.isEmpty()){var t=this.getSelectionRange().start;this.moveCursorToPosition(t)}else{e=e||1;while(e--)this.selection.moveCursorLeft()}this.clearSelection()},e.prototype.navigateRight=function(e){if(!this.selection.isEmpty()){var t=this.getSelectionRange().end;this.moveCursorToPosition(t)}else{e=e||1;while(e--)this.selection.moveCursorRight()}this.clearSelection()},e.prototype.navigateLineStart=function(){this.selection.moveCursorLineStart(),this.clearSelection()},e.prototype.navigateLineEnd=function(){this.selection.moveCursorLineEnd(),this.clearSelection()},e.prototype.navigateFileEnd=function(){this.selection.moveCursorFileEnd(),this.clearSelection()},e.prototype.navigateFileStart=function(){this.selection.moveCursorFileStart(),this.clearSelection()},e.prototype.navigateWordRight=function(){this.selection.moveCursorWordRight(),this.clearSelection()},e.prototype.navigateWordLeft=function(){this.selection.moveCursorWordLeft(),this.clearSelection()},e.prototype.replace=function(e,t){t&&this.$search.set(t);var n=this.$search.find(this.session),r=0;return n?(this.$tryReplace(n,e)&&(r=1),this.selection.setSelectionRange(n),this.renderer.scrollSelectionIntoView(n.start,n.end),r):r},e.prototype.replaceAll=function(e,t){t&&this.$search.set(t);var n=this.$search.findAll(this.session),r=0;if(!n.length)return r;var i=this.getSelectionRange();this.selection.moveTo(0,0);for(var s=n.length-1;s>=0;--s)this.$tryReplace(n[s],e)&&r++;return this.selection.setSelectionRange(i),r},e.prototype.$tryReplace=function(e,t){var n=this.session.getTextRange(e);return t=this.$search.replace(n,t),t!==null?(e.end=this.session.replace(e,t),e):null},e.prototype.getLastSearchOptions=function(){return this.$search.getOptions()},e.prototype.find=function(e,t,n){t||(t={}),typeof e=="string"||e instanceof RegExp?t.needle=e:typeof e=="object"&&i.mixin(t,e);var r=this.selection.getRange();t.needle==null&&(e=this.session.getTextRange(r)||this.$search.$options.needle,e||(r=this.session.getWordRange(r.start.row,r.start.column),e=this.session.getTextRange(r)),this.$search.set({needle:e})),this.$search.set(t),t.start||this.$search.set({start:r});var s=this.$search.find(this.session);if(t.preventScroll)return s;if(s)return this.revealRange(s,n),s;t.backwards?r.start=r.end:r.end=r.start,this.selection.setRange(r)},e.prototype.findNext=function(e,t){this.find({skipCurrent:!0,backwards:!1},e,t)},e.prototype.findPrevious=function(e,t){this.find(e,{skipCurrent:!0,backwards:!0},t)},e.prototype.revealRange=function(e,t){this.session.unfold(e),this.selection.setSelectionRange(e);var n=this.renderer.scrollTop;this.renderer.scrollSelectionIntoView(e.start,e.end,.5),t!==!1&&this.renderer.animateScrolling(n)},e.prototype.undo=function(){this.session.getUndoManager().undo(this.session),this.renderer.scrollCursorIntoView(null,.5)},e.prototype.redo=function(){this.session.getUndoManager().redo(this.session),this.renderer.scrollCursorIntoView(null,.5)},e.prototype.destroy=function(){this.$toDestroy&&(this.$toDestroy.forEach(function(e){e.destroy()}),this.$toDestroy=null),this.$mouseHandler&&this.$mouseHandler.destroy(),this.renderer.destroy(),this._signal("destroy",this),this.session&&this.session.destroy(),this._$emitInputEvent&&this._$emitInputEvent.cancel(),this.removeAllListeners()},e.prototype.setAutoScrollEditorIntoView=function(e){if(!e)return;var t,n=this,r=!1;this.$scrollAnchor||(this.$scrollAnchor=document.createElement("div"));var i=this.$scrollAnchor;i.style.cssText="position:absolute",this.container.insertBefore(i,this.container.firstChild);var s=this.on("changeSelection",function(){r=!0}),o=this.renderer.on("beforeRender",function(){r&&(t=n.renderer.container.getBoundingClientRect())}),u=this.renderer.on("afterRender",function(){if(r&&t&&(n.isFocused()||n.searchBox&&n.searchBox.isFocused())){var e=n.renderer,s=e.$cursorLayer.$pixelPos,o=e.layerConfig,u=s.top-o.offset;s.top>=0&&u+t.top<0?r=!0:s.top<o.height&&s.top+t.top+o.lineHeight>window.innerHeight?r=!1:r=null,r!=null&&(i.style.top=u+"px",i.style.left=s.left+"px",i.style.height=o.lineHeight+"px",i.scrollIntoView(r)),r=t=null}});this.setAutoScrollEditorIntoView=function(e){if(e)return;delete this.setAutoScrollEditorIntoView,this.off("changeSelection",s),this.renderer.off("afterRender",u),this.renderer.off("beforeRender",o)}},e.prototype.$resetCursorStyle=function(){var e=this.$cursorStyle||"ace",t=this.renderer.$cursorLayer;if(!t)return;t.setSmoothBlinking(/smooth/.test(e)),t.isBlinking=!this.$readOnly&&e!="wide",s.setCssClass(t.element,"ace_slim-cursors",/slim/.test(e))},e.prototype.prompt=function(e,t,n){var r=this;y.loadModule("ace/ext/prompt",function(i){i.prompt(r,e,t,n)})},e}();N.$uid=0,N.prototype.curOp=null,N.prototype.prevOp={},N.prototype.$mergeableCommands=["backspace","del","insertstring"],N.prototype.$toggleWordPairs=[["first","last"],["true","false"],["yes","no"],["width","height"],["top","bottom"],["right","left"],["on","off"],["x","y"],["get","set"],["max","min"],["horizontal","vertical"],["show","hide"],["add","remove"],["up","down"],["before","after"],["even","odd"],["in","out"],["inside","outside"],["next","previous"],["increase","decrease"],["attach","detach"],["&&","||"],["==","!="]],i.implement(N.prototype,v),y.defineOptions(N.prototype,"editor",{selectionStyle:{set:function(e){this.onSelectionChange(),this._signal("changeSelectionStyle",{data:e})},initialValue:"line"},highlightActiveLine:{set:function(){this.$updateHighlightActiveLine()},initialValue:!0},highlightSelectedWord:{set:function(e){this.$onSelectionChange()},initialValue:!0},readOnly:{set:function(e){this.textInput.setReadOnly(e),this.$resetCursorStyle()},initialValue:!1},copyWithEmptySelection:{set:function(e){this.textInput.setCopyWithEmptySelection(e)},initialValue:!1},cursorStyle:{set:function(e){this.$resetCursorStyle()},values:["ace","slim","smooth","wide"],initialValue:"ace"},mergeUndoDeltas:{values:[!1,!0,"always"],initialValue:!0},behavioursEnabled:{initialValue:!0},wrapBehavioursEnabled:{initialValue:!0},enableAutoIndent:{initialValue:!0},autoScrollEditorIntoView:{set:function(e){this.setAutoScrollEditorIntoView(e)}},keyboardHandler:{set:function(e){this.setKeyboardHandler(e)},get:function(){return this.$keybindingId},handlesSet:!0},value:{set:function(e){this.session.setValue(e)},get:function(){return this.getValue()},handlesSet:!0,hidden:!0},session:{set:function(e){this.setSession(e)},get:function(){return this.session},handlesSet:!0,hidden:!0},showLineNumbers:{set:function(e){this.renderer.$gutterLayer.setShowLineNumbers(e),this.renderer.$loop.schedule(this.renderer.CHANGE_GUTTER),e&&this.$relativeLineNumbers?C.attach(this):C.detach(this)},initialValue:!0},relativeLineNumbers:{set:function(e){this.$showLineNumbers&&e?C.attach(this):C.detach(this)}},placeholder:{set:function(e){this.$updatePlaceholder||(this.$updatePlaceholder=function(){var e=this.session&&(this.renderer.$composition||this.session.getLength()>1||this.session.getLine(0).length>0);if(e&&this.renderer.placeholderNode)this.renderer.off("afterRender",this.$updatePlaceholder),s.removeCssClass(this.container,"ace_hasPlaceholder"),this.renderer.placeholderNode.remove(),this.renderer.placeholderNode=null;else if(!e&&!this.renderer.placeholderNode){this.renderer.on("afterRender",this.$updatePlaceholder),s.addCssClass(this.container,"ace_hasPlaceholder");var t=s.createElement("div");t.className="ace_placeholder",t.textContent=this.$placeholder||"",this.renderer.placeholderNode=t,this.renderer.content.appendChild(this.renderer.placeholderNode)}else!e&&this.renderer.placeholderNode&&(this.renderer.placeholderNode.textContent=this.$placeholder||"")}.bind(this),this.on("input",this.$updatePlaceholder)),this.$updatePlaceholder()}},enableKeyboardAccessibility:{set:function(e){var t={name:"blurTextInput",description:"Set focus to the editor content div to allow tabbing through the page",bindKey:"Esc",exec:function(e){e.blur(),e.renderer.scroller.focus()},readOnly:!0},n=function(e){if(e.target==this.renderer.scroller&&e.keyCode===T.enter){e.preventDefault();var t=this.getCursorPosition().row;this.isRowVisible(t)||this.scrollToLine(t,!0,!0),this.focus()}},r;e?(this.renderer.enableKeyboardAccessibility=!0,this.renderer.keyboardFocusClassName="ace_keyboard-focus",this.textInput.getElement().setAttribute("tabindex",-1),this.textInput.setNumberOfExtraLines(u.isWin?3:0),this.renderer.scroller.setAttribute("tabindex",0),this.renderer.scroller.setAttribute("role","group"),this.renderer.scroller.setAttribute("aria-roledescription",S("editor.scroller.aria-roledescription","editor")),this.renderer.scroller.classList.add(this.renderer.keyboardFocusClassName),this.renderer.scroller.setAttribute("aria-label",S("editor.scroller.aria-label","Editor content, press Enter to start editing, press Escape to exit")),this.renderer.scroller.addEventListener("keyup",n.bind(this)),this.commands.addCommand(t),this.renderer.$gutter.setAttribute("tabindex",0),this.renderer.$gutter.setAttribute("aria-hidden",!1),this.renderer.$gutter.setAttribute("role","group"),this.renderer.$gutter.setAttribute("aria-roledescription",S("editor.gutter.aria-roledescription","editor")),this.renderer.$gutter.setAttribute("aria-label",S("editor.gutter.aria-label","Editor gutter, press Enter to interact with controls using arrow keys, press Escape to exit")),this.renderer.$gutter.classList.add(this.renderer.keyboardFocusClassName),this.renderer.content.setAttribute("aria-hidden",!0),r||(r=new E(this)),r.addListener()):(this.renderer.enableKeyboardAccessibility=!1,this.textInput.getElement().setAttribute("tabindex",0),this.textInput.setNumberOfExtraLines(0),this.renderer.scroller.setAttribute("tabindex",-1),this.renderer.scroller.removeAttribute("role"),this.renderer.scroller.removeAttribute("aria-roledescription"),this.renderer.scroller.classList.remove(this.renderer.keyboardFocusClassName),this.renderer.scroller.removeAttribute("aria-label"),this.renderer.scroller.removeEventListener("keyup",n.bind(this)),this.commands.removeCommand(t),this.renderer.content.removeAttribute("aria-hidden"),this.renderer.$gutter.setAttribute("tabindex",-1),this.renderer.$gutter.setAttribute("aria-hidden",!0),this.renderer.$gutter.removeAttribute("role"),this.renderer.$gutter.removeAttribute("aria-roledescription"),this.renderer.$gutter.removeAttribute("aria-label"),this.renderer.$gutter.classList.remove(this.renderer.keyboardFocusClassName),r&&r.removeListener())},initialValue:!1},textInputAriaLabel:{set:function(e){this.$textInputAriaLabel=e},initialValue:""},customScrollbar:"renderer",hScrollBarAlwaysVisible:"renderer",vScrollBarAlwaysVisible:"renderer",highlightGutterLine:"renderer",animatedScroll:"renderer",showInvisibles:"renderer",showPrintMargin:"renderer",printMarginColumn:"renderer",printMargin:"renderer",fadeFoldWidgets:"renderer",showFoldWidgets:"renderer",displayIndentGuides:"renderer",highlightIndentGuides:"renderer",showGutter:"renderer",fontSize:"renderer",fontFamily:"renderer",maxLines:"renderer",minLines:"renderer",scrollPastEnd:"renderer",fixedWidthGutter:"renderer",theme:"renderer",hasCssTransforms:"renderer",maxPixelHeight:"renderer",useTextareaForIME:"renderer",useResizeObserver:"renderer",useSvgGutterIcons:"renderer",showFoldedAnnotations:"renderer",scrollSpeed:"$mouseHandler",dragDelay:"$mouseHandler",dragEnabled:"$mouseHandler",focusTimeout:"$mouseHandler",tooltipFollowsMouse:"$mouseHandler",firstLineNumber:"session",overwrite:"session",newLineMode:"session",useWorker:"session",useSoftTabs:"session",navigateWithinSoftTabs:"session",tabSize:"session",wrap:"session",indentedSoftWrap:"session",foldStyle:"session",mode:"session"});var C={getText:function(e,t){return(Math.abs(e.selection.lead.row-t)||t+1+(t<9?"\u00b7":""))+""},getWidth:function(e,t,n){return Math.max(t.toString().length,(n.lastRow+1).toString().length,2)*n.characterWidth},update:function(e,t){t.renderer.$loop.schedule(t.renderer.CHANGE_GUTTER)},attach:function(e){e.renderer.$gutterLayer.$renderer=this,e.on("changeSelection",this.update),this.update(null,e)},detach:function(e){e.renderer.$gutterLayer.$renderer==this&&(e.renderer.$gutterLayer.$renderer=null),e.off("changeSelection",this.update),this.update(null,e)}};t.Editor=N}),define("ace/layer/lines",["require","exports","module","ace/lib/dom"],function(e,t,n){"use strict";var r=e("../lib/dom"),i=function(){function e(e,t){this.element=e,this.canvasHeight=t||5e5,this.element.style.height=this.canvasHeight*2+"px",this.cells=[],this.cellCache=[],this.$offsetCoefficient=0}return e.prototype.moveContainer=function(e){r.translate(this.element,0,-(e.firstRowScreen*e.lineHeight%this.canvasHeight)-e.offset*this.$offsetCoefficient)},e.prototype.pageChanged=function(e,t){return Math.floor(e.firstRowScreen*e.lineHeight/this.canvasHeight)!==Math.floor(t.firstRowScreen*t.lineHeight/this.canvasHeight)},e.prototype.computeLineTop=function(e,t,n){var r=t.firstRowScreen*t.lineHeight,i=Math.floor(r/this.canvasHeight),s=n.documentToScreenRow(e,0)*t.lineHeight;return s-i*this.canvasHeight},e.prototype.computeLineHeight=function(e,t,n){return t.lineHeight*n.getRowLineCount(e)},e.prototype.getLength=function(){return this.cells.length},e.prototype.get=function(e){return this.cells[e]},e.prototype.shift=function(){this.$cacheCell(this.cells.shift())},e.prototype.pop=function(){this.$cacheCell(this.cells.pop())},e.prototype.push=function(e){if(Array.isArray(e)){this.cells.push.apply(this.cells,e);var t=r.createFragment(this.element);for(var n=0;n<e.length;n++)t.appendChild(e[n].element);this.element.appendChild(t)}else this.cells.push(e),this.element.appendChild(e.element)},e.prototype.unshift=function(e){if(Array.isArray(e)){this.cells.unshift.apply(this.cells,e);var t=r.createFragment(this.element);for(var n=0;n<e.length;n++)t.appendChild(e[n].element);this.element.firstChild?this.element.insertBefore(t,this.element.firstChild):this.element.appendChild(t)}else this.cells.unshift(e),this.element.insertAdjacentElement("afterbegin",e.element)},e.prototype.last=function(){return this.cells.length?this.cells[this.cells.length-1]:null},e.prototype.$cacheCell=function(e){if(!e)return;e.element.remove(),this.cellCache.push(e)},e.prototype.createCell=function(e,t,n,i){var s=this.cellCache.pop();if(!s){var o=r.createElement("div");i&&i(o),this.element.appendChild(o),s={element:o,text:"",row:e}}return s.row=e,s},e}();t.Lines=i}),define("ace/layer/gutter",["require","exports","module","ace/lib/dom","ace/lib/oop","ace/lib/lang","ace/lib/event_emitter","ace/layer/lines","ace/config"],function(e,t,n){"use strict";function l(e){var t=document.createTextNode("");e.appendChild(t);var n=r.createElement("span");e.appendChild(n);var i=r.createElement("span");e.appendChild(i);var s=r.createElement("span");return i.appendChild(s),e}var r=e("../lib/dom"),i=e("../lib/oop"),s=e("../lib/lang"),o=e("../lib/event_emitter").EventEmitter,u=e("./lines").Lines,a=e("../config").nls,f=function(){function e(e){this.element=r.createElement("div"),this.element.className="ace_layer ace_gutter-layer",e.appendChild(this.element),this.setShowFoldWidgets(this.$showFoldWidgets),this.gutterWidth=0,this.$annotations=[],this.$updateAnnotations=this.$updateAnnotations.bind(this),this.$lines=new u(this.element),this.$lines.$offsetCoefficient=1}return e.prototype.setSession=function(e){this.session&&this.session.off("change",this.$updateAnnotations),this.session=e,e&&e.on("change",this.$updateAnnotations)},e.prototype.addGutterDecoration=function(e,t){window.console&&console.warn&&console.warn("deprecated use session.addGutterDecoration"),this.session.addGutterDecoration(e,t)},e.prototype.removeGutterDecoration=function(e,t){window.console&&console.warn&&console.warn("deprecated use session.removeGutterDecoration"),this.session.removeGutterDecoration(e,t)},e.prototype.setAnnotations=function(e){this.$annotations=[];for(var t=0;t<e.length;t++){var n=e[t],r=n.row,i=this.$annotations[r];i||(i=this.$annotations[r]={text:[],type:[]});var o=n.text,u=n.type;o=o?s.escapeHTML(o):n.html||"",i.text.indexOf(o)===-1&&(i.text.push(o),i.type.push(u));var a=n.className;a?i.className=a:u=="error"?i.className=" ace_error":u=="warning"&&i.className!=" ace_error"?i.className=" ace_warning":u=="info"&&!i.className&&(i.className=" ace_info")}},e.prototype.$updateAnnotations=function(e){if(!this.$annotations.length)return;var t=e.start.row,n=e.end.row-t;if(n!==0)if(e.action=="remove")this.$annotations.splice(t,n+1,null);else{var r=new Array(n+1);r.unshift(t,1),this.$annotations.splice.apply(this.$annotations,r)}},e.prototype.update=function(e){this.config=e;var t=this.session,n=e.firstRow,r=Math.min(e.lastRow+e.gutterOffset,t.getLength()-1);this.oldLastRow=r,this.config=e,this.$lines.moveContainer(e),this.$updateCursorRow();var i=t.getNextFoldLine(n),s=i?i.start.row:Infinity,o=null,u=-1,a=n;for(;;){a>s&&(a=i.end.row+1,i=t.getNextFoldLine(a,i),s=i?i.start.row:Infinity);if(a>r){while(this.$lines.getLength()>u+1)this.$lines.pop();break}o=this.$lines.get(++u),o?o.row=a:(o=this.$lines.createCell(a,e,this.session,l),this.$lines.push(o)),this.$renderCell(o,e,i,a),a++}this._signal("afterRender"),this.$updateGutterWidth(e)},e.prototype.$updateGutterWidth=function(e){var t=this.session,n=t.gutterRenderer||this.$renderer,r=t.$firstLineNumber,i=this.$lines.last()?this.$lines.last().text:"";if(this.$fixedWidth||t.$useWrapMode)i=t.getLength()+r-1;var s=n?n.getWidth(t,i,e):i.toString().length*e.characterWidth,o=this.$padding||this.$computePadding();s+=o.left+o.right,s!==this.gutterWidth&&!isNaN(s)&&(this.gutterWidth=s,this.element.parentNode.style.width=this.element.style.width=Math.ceil(this.gutterWidth)+"px",this._signal("changeGutterWidth",s))},e.prototype.$updateCursorRow=function(){if(!this.$highlightGutterLine)return;var e=this.session.selection.getCursor();if(this.$cursorRow===e.row)return;this.$cursorRow=e.row},e.prototype.updateLineHighlight=function(){if(!this.$highlightGutterLine)return;var e=this.session.selection.cursor.row;this.$cursorRow=e;if(this.$cursorCell&&this.$cursorCell.row==e)return;this.$cursorCell&&(this.$cursorCell.element.className=this.$cursorCell.element.className.replace("ace_gutter-active-line ",""));var t=this.$lines.cells;this.$cursorCell=null;for(var n=0;n<t.length;n++){var r=t[n];if(r.row>=this.$cursorRow){if(r.row>this.$cursorRow){var i=this.session.getFoldLine(this.$cursorRow);if(!(n>0&&i&&i.start.row==t[n-1].row))break;r=t[n-1]}r.element.className="ace_gutter-active-line "+r.element.className,this.$cursorCell=r;break}}},e.prototype.scrollLines=function(e){var t=this.config;this.config=e,this.$updateCursorRow();if(this.$lines.pageChanged(t,e))return this.update(e);this.$lines.moveContainer(e);var n=Math.min(e.lastRow+e.gutterOffset,this.session.getLength()-1),r=this.oldLastRow;this.oldLastRow=n;if(!t||r<e.firstRow)return this.update(e);if(n<t.firstRow)return this.update(e);if(t.firstRow<e.firstRow)for(var i=this.session.getFoldedRowCount(t.firstRow,e.firstRow-1);i>0;i--)this.$lines.shift();if(r>n)for(var i=this.session.getFoldedRowCount(n+1,r);i>0;i--)this.$lines.pop();e.firstRow<t.firstRow&&this.$lines.unshift(this.$renderLines(e,e.firstRow,t.firstRow-1)),n>r&&this.$lines.push(this.$renderLines(e,r+1,n)),this.updateLineHighlight(),this._signal("afterRender"),this.$updateGutterWidth(e)},e.prototype.$renderLines=function(e,t,n){var r=[],i=t,s=this.session.getNextFoldLine(i),o=s?s.start.row:Infinity;for(;;){i>o&&(i=s.end.row+1,s=this.session.getNextFoldLine(i,s),o=s?s.start.row:Infinity);if(i>n)break;var u=this.$lines.createCell(i,e,this.session,l);this.$renderCell(u,e,s,i),r.push(u),i++}return r},e.prototype.$renderCell=function(e,t,n,i){var s=e.element,o=this.session,u=s.childNodes[0],f=s.childNodes[1],l=s.childNodes[2],c=l.firstChild,h=o.$firstLineNumber,p=o.$breakpoints,d=o.$decorations,v=o.gutterRenderer||this.$renderer,m=this.$showFoldWidgets&&o.foldWidgets,g=n?n.start.row:Number.MAX_VALUE,y=t.lineHeight+"px",b=this.$useSvgGutterIcons?"ace_gutter-cell_svg-icons ":"ace_gutter-cell ",w=this.$useSvgGutterIcons?"ace_icon_svg":"ace_icon",E=(v?v.getText(o,i):i+h).toString();this.$highlightGutterLine&&(i==this.$cursorRow||n&&i<this.$cursorRow&&i>=g&&this.$cursorRow<=n.end.row)&&(b+="ace_gutter-active-line ",this.$cursorCell!=e&&(this.$cursorCell&&(this.$cursorCell.element.className=this.$cursorCell.element.className.replace("ace_gutter-active-line ","")),this.$cursorCell=e)),p[i]&&(b+=p[i]),d[i]&&(b+=d[i]),this.$annotations[i]&&i!==g&&(b+=this.$annotations[i].className);if(m){var S=m[i];S==null&&(S=m[i]=o.getFoldWidget(i))}if(S){var x="ace_fold-widget ace_"+S,T=S=="start"&&i==g&&i<n.end.row;if(T){x+=" ace_closed";var N="",C=!1;for(var k=i+1;k<=n.end.row;k++){if(!this.$annotations[k])continue;if(this.$annotations[k].className===" ace_error"){C=!0,N=" ace_error_fold";break}if(this.$annotations[k].className===" ace_warning"){C=!0,N=" ace_warning_fold";continue}}b+=N}else x+=" ace_open";f.className!=x&&(f.className=x),r.setStyle(f.style,"height",y),r.setStyle(f.style,"display","inline-block"),f.setAttribute("role","button"),f.setAttribute("tabindex","-1");var L=o.getFoldWidgetRange(i);L?f.setAttribute("aria-label",a("gutter.code-folding.range.aria-label","Toggle code folding, rows $0 through $1",[L.start.row+1,L.end.row+1])):n?f.setAttribute("aria-label",a("gutter.code-folding.closed.aria-label","Toggle code folding, rows $0 through $1",[n.start.row+1,n.end.row+1])):f.setAttribute("aria-label",a("gutter.code-folding.open.aria-label","Toggle code folding, row $0",[i+1])),T?(f.setAttribute("aria-expanded","false"),f.setAttribute("title",a("gutter.code-folding.closed.title","Unfold code"))):(f.setAttribute("aria-expanded","true"),f.setAttribute("title",a("gutter.code-folding.open.title","Fold code")))}else f&&(r.setStyle(f.style,"display","none"),f.setAttribute("tabindex","0"),f.removeAttribute("role"),f.removeAttribute("aria-label"));if(C&&this.$showFoldedAnnotations){l.className="ace_gutter_annotation",c.className=w,c.className+=N,r.setStyle(c.style,"height",y),r.setStyle(l.style,"display","block"),r.setStyle(l.style,"height",y);var A;switch(N){case" ace_error_fold":A=a("gutter.annotation.aria-label.error","Read annotations row $0",[E]);break;case" ace_warning_fold":A=a("gutter.annotation.aria-label.warning","Read annotations row $0",[E])}l.setAttribute("aria-label",A),l.setAttribute("tabindex","-1"),l.setAttribute("role","button")}else if(this.$annotations[i]){l.className="ace_gutter_annotation",c.className=w,this.$useSvgGutterIcons?c.className+=this.$annotations[i].className:s.classList.add(this.$annotations[i].className.replace(" ","")),r.setStyle(c.style,"height",y),r.setStyle(l.style,"display","block"),r.setStyle(l.style,"height",y);var A;switch(this.$annotations[i].className){case" ace_error":A=a("gutter.annotation.aria-label.error","Read annotations row $0",[E]);break;case" ace_warning":A=a("gutter.annotation.aria-label.warning","Read annotations row $0",[E]);break;case" ace_info":A=a("gutter.annotation.aria-label.info","Read annotations row $0",[E])}l.setAttribute("aria-label",A),l.setAttribute("tabindex","-1"),l.setAttribute("role","button")}else r.setStyle(l.style,"display","none"),l.removeAttribute("aria-label"),l.removeAttribute("role"),l.setAttribute("tabindex","0");return E!==u.data&&(u.data=E),s.className!=b&&(s.className=b),r.setStyle(e.element.style,"height",this.$lines.computeLineHeight(i,t,o)+"px"),r.setStyle(e.element.style,"top",this.$lines.computeLineTop(i,t,o)+"px"),e.text=E,l.style.display==="none"&&f.style.display==="none"?e.element.setAttribute("aria-hidden",!0):e.element.setAttribute("aria-hidden",!1),e},e.prototype.setHighlightGutterLine=function(e){this.$highlightGutterLine=e},e.prototype.setShowLineNumbers=function(e){this.$renderer=!e&&{getWidth:function(){return 0},getText:function(){return""}}},e.prototype.getShowLineNumbers=function(){return this.$showLineNumbers},e.prototype.setShowFoldWidgets=function(e){e?r.addCssClass(this.element,"ace_folding-enabled"):r.removeCssClass(this.element,"ace_folding-enabled"),this.$showFoldWidgets=e,this.$padding=null},e.prototype.getShowFoldWidgets=function(){return this.$showFoldWidgets},e.prototype.$computePadding=function(){if(!this.element.firstChild)return{left:0,right:0};var e=r.computedStyle(this.element.firstChild);return this.$padding={},this.$padding.left=(parseInt(e.borderLeftWidth)||0)+(parseInt(e.paddingLeft)||0)+1,this.$padding.right=(parseInt(e.borderRightWidth)||0)+(parseInt(e.paddingRight)||0),this.$padding},e.prototype.getRegion=function(e){var t=this.$padding||this.$computePadding(),n=this.element.getBoundingClientRect();if(e.x<t.left+n.left)return"markers";if(this.$showFoldWidgets&&e.x>n.right-t.right)return"foldWidgets"},e}();f.prototype.$fixedWidth=!1,f.prototype.$highlightGutterLine=!0,f.prototype.$renderer="",f.prototype.$showLineNumbers=!0,f.prototype.$showFoldWidgets=!0,i.implement(f.prototype,o),t.Gutter=f}),define("ace/layer/marker",["require","exports","module","ace/range","ace/lib/dom"],function(e,t,n){"use strict";function o(e,t,n,r){return(e?1:0)|(t?2:0)|(n?4:0)|(r?8:0)}var r=e("../range").Range,i=e("../lib/dom"),s=function(){function e(e){this.element=i.createElement("div"),this.element.className="ace_layer ace_marker-layer",e.appendChild(this.element)}return e.prototype.setPadding=function(e){this.$padding=e},e.prototype.setSession=function(e){this.session=e},e.prototype.setMarkers=function(e){this.markers=e},e.prototype.elt=function(e,t){var n=this.i!=-1&&this.element.childNodes[this.i];n?this.i++:(n=document.createElement("div"),this.element.appendChild(n),this.i=-1),n.style.cssText=t,n.className=e},e.prototype.update=function(e){if(!e)return;this.config=e,this.i=0;var t;for(var n in this.markers){var r=this.markers[n];if(!r.range){r.update(t,this,this.session,e);continue}var i=r.range.clipRows(e.firstRow,e.lastRow);if(i.isEmpty())continue;i=i.toScreenRange(this.session);if(r.renderer){var s=this.$getTop(i.start.row,e),o=this.$padding+i.start.column*e.characterWidth;r.renderer(t,i,o,s,e)}else r.type=="fullLine"?this.drawFullLineMarker(t,i,r.clazz,e):r.type=="screenLine"?this.drawScreenLineMarker(t,i,r.clazz,e):i.isMultiLine()?r.type=="text"?this.drawTextMarker(t,i,r.clazz,e):this.drawMultiLineMarker(t,i,r.clazz,e):this.drawSingleLineMarker(t,i,r.clazz+" ace_start"+" ace_br15",e)}if(this.i!=-1)while(this.i<this.element.childElementCount)this.element.removeChild(this.element.lastChild)},e.prototype.$getTop=function(e,t){return(e-t.firstRowScreen)*t.lineHeight},e.prototype.drawTextMarker=function(e,t,n,i,s){var u=this.session,a=t.start.row,f=t.end.row,l=a,c=0,h=0,p=u.getScreenLastRowColumn(l),d=new r(l,t.start.column,l,h);for(;l<=f;l++)d.start.row=d.end.row=l,d.start.column=l==a?t.start.column:u.getRowWrapIndent(l),d.end.column=p,c=h,h=p,p=l+1<f?u.getScreenLastRowColumn(l+1):l==f?0:t.end.column,this.drawSingleLineMarker(e,d,n+(l==a?" ace_start":"")+" ace_br"+o(l==a||l==a+1&&t.start.column,c<h,h>p,l==f),i,l==f?0:1,s)},e.prototype.drawMultiLineMarker=function(e,t,n,r,i){var s=this.$padding,o=r.lineHeight,u=this.$getTop(t.start.row,r),a=s+t.start.column*r.characterWidth;i=i||"";if(this.session.$bidiHandler.isBidiRow(t.start.row)){var f=t.clone();f.end.row=f.start.row,f.end.column=this.session.getLine(f.start.row).length,this.drawBidiSingleLineMarker(e,f,n+" ace_br1 ace_start",r,null,i)}else this.elt(n+" ace_br1 ace_start","height:"+o+"px;"+"right:0;"+"top:"+u+"px;left:"+a+"px;"+(i||""));if(this.session.$bidiHandler.isBidiRow(t.end.row)){var f=t.clone();f.start.row=f.end.row,f.start.column=0,this.drawBidiSingleLineMarker(e,f,n+" ace_br12",r,null,i)}else{u=this.$getTop(t.end.row,r);var l=t.end.column*r.characterWidth;this.elt(n+" ace_br12","height:"+o+"px;"+"width:"+l+"px;"+"top:"+u+"px;"+"left:"+s+"px;"+(i||""))}o=(t.end.row-t.start.row-1)*r.lineHeight;if(o<=0)return;u=this.$getTop(t.start.row+1,r);var c=(t.start.column?1:0)|(t.end.column?0:8);this.elt(n+(c?" ace_br"+c:""),"height:"+o+"px;"+"right:0;"+"top:"+u+"px;"+"left:"+s+"px;"+(i||""))},e.prototype.drawSingleLineMarker=function(e,t,n,r,i,s){if(this.session.$bidiHandler.isBidiRow(t.start.row))return this.drawBidiSingleLineMarker(e,t,n,r,i,s);var o=r.lineHeight,u=(t.end.column+(i||0)-t.start.column)*r.characterWidth,a=this.$getTop(t.start.row,r),f=this.$padding+t.start.column*r.characterWidth;this.elt(n,"height:"+o+"px;"+"width:"+u+"px;"+"top:"+a+"px;"+"left:"+f+"px;"+(s||""))},e.prototype.drawBidiSingleLineMarker=function(e,t,n,r,i,s){var o=r.lineHeight,u=this.$getTop(t.start.row,r),a=this.$padding,f=this.session.$bidiHandler.getSelections(t.start.column,t.end.column);f.forEach(function(e){this.elt(n,"height:"+o+"px;"+"width:"+(e.width+(i||0))+"px;"+"top:"+u+"px;"+"left:"+(a+e.left)+"px;"+(s||""))},this)},e.prototype.drawFullLineMarker=function(e,t,n,r,i){var s=this.$getTop(t.start.row,r),o=r.lineHeight;t.start.row!=t.end.row&&(o+=this.$getTop(t.end.row,r)-s),this.elt(n,"height:"+o+"px;"+"top:"+s+"px;"+"left:0;right:0;"+(i||""))},e.prototype.drawScreenLineMarker=function(e,t,n,r,i){var s=this.$getTop(t.start.row,r),o=r.lineHeight;this.elt(n,"height:"+o+"px;"+"top:"+s+"px;"+"left:0;right:0;"+(i||""))},e}();s.prototype.$padding=0,t.Marker=s}),define("ace/layer/text_util",["require","exports","module"],function(e,t,n){var r=new Set(["text","rparen","lparen"]);t.isTextToken=function(e){return r.has(e)}}),define("ace/layer/text",["require","exports","module","ace/lib/oop","ace/lib/dom","ace/lib/lang","ace/layer/lines","ace/lib/event_emitter","ace/config","ace/layer/text_util"],function(e,t,n){"use strict";var r=e("../lib/oop"),i=e("../lib/dom"),s=e("../lib/lang"),o=e("./lines").Lines,u=e("../lib/event_emitter").EventEmitter,a=e("../config").nls,f=e("./text_util").isTextToken,l=function(){function e(e){this.dom=i,this.element=this.dom.createElement("div"),this.element.className="ace_layer ace_text-layer",e.appendChild(this.element),this.$updateEolChar=this.$updateEolChar.bind(this),this.$lines=new o(this.element)}return e.prototype.$updateEolChar=function(){var e=this.session.doc,t=e.getNewLineCharacter()=="\n"&&e.getNewLineMode()!="windows",n=t?this.EOL_CHAR_LF:this.EOL_CHAR_CRLF;if(this.EOL_CHAR!=n)return this.EOL_CHAR=n,!0},e.prototype.setPadding=function(e){this.$padding=e,this.element.style.margin="0 "+e+"px"},e.prototype.getLineHeight=function(){return this.$fontMetrics.$characterSize.height||0},e.prototype.getCharacterWidth=function(){return this.$fontMetrics.$characterSize.width||0},e.prototype.$setFontMetrics=function(e){this.$fontMetrics=e,this.$fontMetrics.on("changeCharacterSize",function(e){this._signal("changeCharacterSize",e)}.bind(this)),this.$pollSizeChanges()},e.prototype.checkForSizeChanges=function(){this.$fontMetrics.checkForSizeChanges()},e.prototype.$pollSizeChanges=function(){return this.$pollSizeChangesTimer=this.$fontMetrics.$pollSizeChanges()},e.prototype.setSession=function(e){this.session=e,e&&this.$computeTabString()},e.prototype.setShowInvisibles=function(e){return this.showInvisibles==e?!1:(this.showInvisibles=e,typeof e=="string"?(this.showSpaces=/tab/i.test(e),this.showTabs=/space/i.test(e),this.showEOL=/eol/i.test(e)):this.showSpaces=this.showTabs=this.showEOL=e,this.$computeTabString(),!0)},e.prototype.setDisplayIndentGuides=function(e){return this.displayIndentGuides==e?!1:(this.displayIndentGuides=e,this.$computeTabString(),!0)},e.prototype.setHighlightIndentGuides=function(e){return this.$highlightIndentGuides===e?!1:(this.$highlightIndentGuides=e,e)},e.prototype.$computeTabString=function(){var e=this.session.getTabSize();this.tabSize=e;var t=this.$tabStrings=[0];for(var n=1;n<e+1;n++)if(this.showTabs){var r=this.dom.createElement("span");r.className="ace_invisible ace_invisible_tab",r.textContent=s.stringRepeat(this.TAB_CHAR,n),t.push(r)}else t.push(this.dom.createTextNode(s.stringRepeat(" ",n),this.element));if(this.displayIndentGuides){this.$indentGuideRe=/\s\S| \t|\t |\s$/;var i="ace_indent-guide",o=this.showSpaces?" ace_invisible ace_invisible_space":"",u=this.showSpaces?s.stringRepeat(this.SPACE_CHAR,this.tabSize):s.stringRepeat(" ",this.tabSize),a=this.showTabs?" ace_invisible ace_invisible_tab":"",f=this.showTabs?s.stringRepeat(this.TAB_CHAR,this.tabSize):u,r=this.dom.createElement("span");r.className=i+o,r.textContent=u,this.$tabStrings[" "]=r;var r=this.dom.createElement("span");r.className=i+a,r.textContent=f,this.$tabStrings[" "]=r}},e.prototype.updateLines=function(e,t,n){if(this.config.lastRow!=e.lastRow||this.config.firstRow!=e.firstRow)return this.update(e);this.config=e;var r=Math.max(t,e.firstRow),i=Math.min(n,e.lastRow),s=this.element.childNodes,o=0;for(var u=e.firstRow;u<r;u++){var a=this.session.getFoldLine(u);if(a){if(a.containsRow(r)){r=a.start.row;break}u=a.end.row}o++}var f=!1,u=r,a=this.session.getNextFoldLine(u),l=a?a.start.row:Infinity;for(;;){u>l&&(u=a.end.row+1,a=this.session.getNextFoldLine(u,a),l=a?a.start.row:Infinity);if(u>i)break;var c=s[o++];if(c){this.dom.removeChildren(c),this.$renderLine(c,u,u==l?a:!1),f&&(c.style.top=this.$lines.computeLineTop(u,e,this.session)+"px");var h=e.lineHeight*this.session.getRowLength(u)+"px";c.style.height!=h&&(f=!0,c.style.height=h)}u++}if(f)while(o<this.$lines.cells.length){var p=this.$lines.cells[o++];p.element.style.top=this.$lines.computeLineTop(p.row,e,this.session)+"px"}},e.prototype.scrollLines=function(e){var t=this.config;this.config=e;if(this.$lines.pageChanged(t,e))return this.update(e);this.$lines.moveContainer(e);var n=e.lastRow,r=t?t.lastRow:-1;if(!t||r<e.firstRow)return this.update(e);if(n<t.firstRow)return this.update(e);if(!t||t.lastRow<e.firstRow)return this.update(e);if(e.lastRow<t.firstRow)return this.update(e);if(t.firstRow<e.firstRow)for(var i=this.session.getFoldedRowCount(t.firstRow,e.firstRow-1);i>0;i--)this.$lines.shift();if(t.lastRow>e.lastRow)for(var i=this.session.getFoldedRowCount(e.lastRow+1,t.lastRow);i>0;i--)this.$lines.pop();e.firstRow<t.firstRow&&this.$lines.unshift(this.$renderLinesFragment(e,e.firstRow,t.firstRow-1)),e.lastRow>t.lastRow&&this.$lines.push(this.$renderLinesFragment(e,t.lastRow+1,e.lastRow)),this.$highlightIndentGuide()},e.prototype.$renderLinesFragment=function(e,t,n){var r=[],s=t,o=this.session.getNextFoldLine(s),u=o?o.start.row:Infinity;for(;;){s>u&&(s=o.end.row+1,o=this.session.getNextFoldLine(s,o),u=o?o.start.row:Infinity);if(s>n)break;var a=this.$lines.createCell(s,e,this.session),f=a.element;this.dom.removeChildren(f),i.setStyle(f.style,"height",this.$lines.computeLineHeight(s,e,this.session)+"px"),i.setStyle(f.style,"top",this.$lines.computeLineTop(s,e,this.session)+"px"),this.$renderLine(f,s,s==u?o:!1),this.$useLineGroups()?f.className="ace_line_group":f.className="ace_line",r.push(a),s++}return r},e.prototype.update=function(e){this.$lines.moveContainer(e),this.config=e;var t=e.firstRow,n=e.lastRow,r=this.$lines;while(r.getLength())r.pop();r.push(this.$renderLinesFragment(e,t,n))},e.prototype.$renderToken=function(e,t,n,r){var i=this,o=/(\t)|( +)|([\x00-\x1f\x80-\xa0\xad\u1680\u180E\u2000-\u200f\u2028\u2029\u202F\u205F\uFEFF\uFFF9-\uFFFC\u2066\u2067\u2068\u202A\u202B\u202D\u202E\u202C\u2069]+)|(\u3000)|([\u1100-\u115F\u11A3-\u11A7\u11FA-\u11FF\u2329-\u232A\u2E80-\u2E99\u2E9B-\u2EF3\u2F00-\u2FD5\u2FF0-\u2FFB\u3001-\u303E\u3041-\u3096\u3099-\u30FF\u3105-\u312D\u3131-\u318E\u3190-\u31BA\u31C0-\u31E3\u31F0-\u321E\u3220-\u3247\u3250-\u32FE\u3300-\u4DBF\u4E00-\uA48C\uA490-\uA4C6\uA960-\uA97C\uAC00-\uD7A3\uD7B0-\uD7C6\uD7CB-\uD7FB\uF900-\uFAFF\uFE10-\uFE19\uFE30-\uFE52\uFE54-\uFE66\uFE68-\uFE6B\uFF01-\uFF60\uFFE0-\uFFE6]|[\uD800-\uDBFF][\uDC00-\uDFFF])/g,u=this.dom.createFragment(this.element),l,c=0;while(l=o.exec(r)){var h=l[1],p=l[2],d=l[3],v=l[4],m=l[5];if(!i.showSpaces&&p)continue;var g=c!=l.index?r.slice(c,l.index):"";c=l.index+l[0].length,g&&u.appendChild(this.dom.createTextNode(g,this.element));if(h){var y=i.session.getScreenTabSize(t+l.index);u.appendChild(i.$tabStrings[y].cloneNode(!0)),t+=y-1}else if(p)if(i.showSpaces){var b=this.dom.createElement("span");b.className="ace_invisible ace_invisible_space",b.textContent=s.stringRepeat(i.SPACE_CHAR,p.length),u.appendChild(b)}else u.appendChild(this.dom.createTextNode(p,this.element));else if(d){var b=this.dom.createElement("span");b.className="ace_invisible ace_invisible_space ace_invalid",b.textContent=s.stringRepeat(i.SPACE_CHAR,d.length),u.appendChild(b)}else if(v){t+=1;var b=this.dom.createElement("span");b.style.width=i.config.characterWidth*2+"px",b.className=i.showSpaces?"ace_cjk ace_invisible ace_invisible_space":"ace_cjk",b.textContent=i.showSpaces?i.SPACE_CHAR:v,u.appendChild(b)}else if(m){t+=1;var b=this.dom.createElement("span");b.style.width=i.config.characterWidth*2+"px",b.className="ace_cjk",b.textContent=m,u.appendChild(b)}}u.appendChild(this.dom.createTextNode(c?r.slice(c):r,this.element));if(!f(n.type)){var w="ace_"+n.type.replace(/\./g," ace_"),b=this.dom.createElement("span");n.type=="fold"&&(b.style.width=n.value.length*this.config.characterWidth+"px",b.setAttribute("title",a("inline-fold.closed.title","Unfold code"))),b.className=w,b.appendChild(u),e.appendChild(b)}else e.appendChild(u);return t+r.length},e.prototype.renderIndentGuide=function(e,t,n){var r=t.search(this.$indentGuideRe);if(r<=0||r>=n)return t;if(t[0]==" "){r-=r%this.tabSize;var i=r/this.tabSize;for(var s=0;s<i;s++)e.appendChild(this.$tabStrings[" "].cloneNode(!0));return this.$highlightIndentGuide(),t.substr(r)}if(t[0]==" "){for(var s=0;s<r;s++)e.appendChild(this.$tabStrings[" "].cloneNode(!0));return this.$highlightIndentGuide(),t.substr(r)}return this.$highlightIndentGuide(),t},e.prototype.$highlightIndentGuide=function(){if(!this.$highlightIndentGuides||!this.displayIndentGuides)return;this.$highlightIndentGuideMarker={indentLevel:undefined,start:undefined,end:undefined,dir:undefined};var e=this.session.doc.$lines;if(!e)return;var t=this.session.selection.getCursor(),n=/^\s*/.exec(this.session.doc.getLine(t.row))[0].length,r=Math.floor(n/this.tabSize);this.$highlightIndentGuideMarker={indentLevel:r,start:t.row};var i=this.session.$bracketHighlight;if(i){var s=this.session.$bracketHighlight.ranges;for(var o=0;o<s.length;o++)if(t.row!==s[o].start.row){this.$highlightIndentGuideMarker.end=s[o].start.row,t.row>s[o].start.row?this.$highlightIndentGuideMarker.dir=-1:this.$highlightIndentGuideMarker.dir=1;break}}if(!this.$highlightIndentGuideMarker.end&&e[t.row]!==""&&t.column===e[t.row].length){this.$highlightIndentGuideMarker.dir=1;for(var o=t.row+1;o<e.length;o++){var u=e[o],a=/^\s*/.exec(u)[0].length;if(u!==""){this.$highlightIndentGuideMarker.end=o;if(a<=n)break}}}this.$renderHighlightIndentGuide()},e.prototype.$clearActiveIndentGuide=function(){var e=this.$lines.cells;for(var t=0;t<e.length;t++){var n=e[t],r=n.element.childNodes;if(r.length>0)for(var i=0;i<r.length;i++)if(r[i].classList&&r[i].classList.contains("ace_indent-guide-active")){r[i].classList.remove("ace_indent-guide-active");break}}},e.prototype.$setIndentGuideActive=function(e,t){var n=this.session.doc.getLine(e.row);if(n!==""){var r=e.element.childNodes;if(r){var i=r[t-1];i&&i.classList&&i.classList.contains("ace_indent-guide")&&i.classList.add("ace_indent-guide-active")}}},e.prototype.$renderHighlightIndentGuide=function(){if(!this.$lines)return;var e=this.$lines.cells;this.$clearActiveIndentGuide();var t=this.$highlightIndentGuideMarker.indentLevel;if(t!==0)if(this.$highlightIndentGuideMarker.dir===1)for(var n=0;n<e.length;n++){var r=e[n];if(this.$highlightIndentGuideMarker.end&&r.row>=this.$highlightIndentGuideMarker.start+1){if(r.row>=this.$highlightIndentGuideMarker.end)break;this.$setIndentGuideActive(r,t)}}else for(var n=e.length-1;n>=0;n--){var r=e[n];if(this.$highlightIndentGuideMarker.end&&r.row<this.$highlightIndentGuideMarker.start){if(r.row<=this.$highlightIndentGuideMarker.end)break;this.$setIndentGuideActive(r,t)}}},e.prototype.$createLineElement=function(e){var t=this.dom.createElement("div");return t.className="ace_line",t.style.height=this.config.lineHeight+"px",t},e.prototype.$renderWrappedLine=function(e,t,n){var r=0,i=0,o=n[0],u=0,a=this.$createLineElement();e.appendChild(a);for(var f=0;f<t.length;f++){var l=t[f],c=l.value;if(f==0&&this.displayIndentGuides){r=c.length,c=this.renderIndentGuide(a,c,o);if(!c)continue;r-=c.length}if(r+c.length<o)u=this.$renderToken(a,u,l,c),r+=c.length;else{while(r+c.length>=o)u=this.$renderToken(a,u,l,c.substring(0,o-r)),c=c.substring(o-r),r=o,a=this.$createLineElement(),e.appendChild(a),a.appendChild(this.dom.createTextNode(s.stringRepeat("\u00a0",n.indent),this.element)),i++,u=0,o=n[i]||Number.MAX_VALUE;c.length!=0&&(r+=c.length,u=this.$renderToken(a,u,l,c))}}n[n.length-1]>this.MAX_LINE_LENGTH&&this.$renderOverflowMessage(a,u,null,"",!0)},e.prototype.$renderSimpleLine=function(e,t){var n=0;for(var r=0;r<t.length;r++){var i=t[r],s=i.value;if(r==0&&this.displayIndentGuides){s=this.renderIndentGuide(e,s);if(!s)continue}if(n+s.length>this.MAX_LINE_LENGTH)return this.$renderOverflowMessage(e,n,i,s);n=this.$renderToken(e,n,i,s)}},e.prototype.$renderOverflowMessage=function(e,t,n,r,i){n&&this.$renderToken(e,t,n,r.slice(0,this.MAX_LINE_LENGTH-t));var s=this.dom.createElement("span");s.className="ace_inline_button ace_keyword ace_toggle_wrap",s.textContent=i?"<hide>":"<click to see more...>",e.appendChild(s)},e.prototype.$renderLine=function(e,t,n){!n&&n!=0&&(n=this.session.getFoldLine(t));if(n)var r=this.$getFoldLineTokens(t,n);else var r=this.session.getTokens(t);var i=e;if(r.length){var s=this.session.getRowSplitData(t);if(s&&s.length){this.$renderWrappedLine(e,r,s);var i=e.lastChild}else{var i=e;this.$useLineGroups()&&(i=this.$createLineElement(),e.appendChild(i)),this.$renderSimpleLine(i,r)}}else this.$useLineGroups()&&(i=this.$createLineElement(),e.appendChild(i));if(this.showEOL&&i){n&&(t=n.end.row);var o=this.dom.createElement("span");o.className="ace_invisible ace_invisible_eol",o.textContent=t==this.session.getLength()-1?this.EOF_CHAR:this.EOL_CHAR,i.appendChild(o)}},e.prototype.$getFoldLineTokens=function(e,t){function i(e,t,n){var i=0,s=0;while(s+e[i].value.length<t){s+=e[i].value.length,i++;if(i==e.length)return}if(s!=t){var o=e[i].value.substring(t-s);o.length>n-t&&(o=o.substring(0,n-t)),r.push({type:e[i].type,value:o}),s=t+o.length,i+=1}while(s<n&&i<e.length){var o=e[i].value;o.length+s>n?r.push({type:e[i].type,value:o.substring(0,n-s)}):r.push(e[i]),s+=o.length,i+=1}}var n=this.session,r=[],s=n.getTokens(e);return t.walk(function(e,t,o,u,a){e!=null?r.push({type:"fold",value:e}):(a&&(s=n.getTokens(t)),s.length&&i(s,u,o))},t.end.row,this.session.getLine(t.end.row).length),r},e.prototype.$useLineGroups=function(){return this.session.getUseWrapMode()},e}();l.prototype.EOF_CHAR="\u00b6",l.prototype.EOL_CHAR_LF="\u00ac",l.prototype.EOL_CHAR_CRLF="\u00a4",l.prototype.EOL_CHAR=l.prototype.EOL_CHAR_LF,l.prototype.TAB_CHAR="\u2014",l.prototype.SPACE_CHAR="\u00b7",l.prototype.$padding=0,l.prototype.MAX_LINE_LENGTH=1e4,l.prototype.showInvisibles=!1,l.prototype.showSpaces=!1,l.prototype.showTabs=!1,l.prototype.showEOL=!1,l.prototype.displayIndentGuides=!0,l.prototype.$highlightIndentGuides=!0,l.prototype.$tabStrings=[],l.prototype.destroy={},l.prototype.onChangeTabSize=l.prototype.$computeTabString,r.implement(l.prototype,u),t.Text=l}),define("ace/layer/cursor",["require","exports","module","ace/lib/dom"],function(e,t,n){"use strict";var r=e("../lib/dom"),i=function(){function e(e){this.element=r.createElement("div"),this.element.className="ace_layer ace_cursor-layer",e.appendChild(this.element),this.isVisible=!1,this.isBlinking=!0,this.blinkInterval=1e3,this.smoothBlinking=!1,this.cursors=[],this.cursor=this.addCursor(),r.addCssClass(this.element,"ace_hidden-cursors"),this.$updateCursors=this.$updateOpacity.bind(this)}return e.prototype.$updateOpacity=function(e){var t=this.cursors;for(var n=t.length;n--;)r.setStyle(t[n].style,"opacity",e?"":"0")},e.prototype.$startCssAnimation=function(){var e=this.cursors;for(var t=e.length;t--;)e[t].style.animationDuration=this.blinkInterval+"ms";this.$isAnimating=!0,setTimeout(function(){this.$isAnimating&&r.addCssClass(this.element,"ace_animate-blinking")}.bind(this))},e.prototype.$stopCssAnimation=function(){this.$isAnimating=!1,r.removeCssClass(this.element,"ace_animate-blinking")},e.prototype.setPadding=function(e){this.$padding=e},e.prototype.setSession=function(e){this.session=e},e.prototype.setBlinking=function(e){e!=this.isBlinking&&(this.isBlinking=e,this.restartTimer())},e.prototype.setBlinkInterval=function(e){e!=this.blinkInterval&&(this.blinkInterval=e,this.restartTimer())},e.prototype.setSmoothBlinking=function(e){e!=this.smoothBlinking&&(this.smoothBlinking=e,r.setCssClass(this.element,"ace_smooth-blinking",e),this.$updateCursors(!0),this.restartTimer())},e.prototype.addCursor=function(){var e=r.createElement("div");return e.className="ace_cursor",this.element.appendChild(e),this.cursors.push(e),e},e.prototype.removeCursor=function(){if(this.cursors.length>1){var e=this.cursors.pop();return e.parentNode.removeChild(e),e}},e.prototype.hideCursor=function(){this.isVisible=!1,r.addCssClass(this.element,"ace_hidden-cursors"),this.restartTimer()},e.prototype.showCursor=function(){this.isVisible=!0,r.removeCssClass(this.element,"ace_hidden-cursors"),this.restartTimer()},e.prototype.restartTimer=function(){var e=this.$updateCursors;clearInterval(this.intervalId),clearTimeout(this.timeoutId),this.$stopCssAnimation(),this.smoothBlinking&&(this.$isSmoothBlinking=!1,r.removeCssClass(this.element,"ace_smooth-blinking")),e(!0);if(!this.isBlinking||!this.blinkInterval||!this.isVisible){this.$stopCssAnimation();return}this.smoothBlinking&&(this.$isSmoothBlinking=!0,setTimeout(function(){this.$isSmoothBlinking&&r.addCssClass(this.element,"ace_smooth-blinking")}.bind(this)));if(r.HAS_CSS_ANIMATION)this.$startCssAnimation();else{var t=function(){this.timeoutId=setTimeout(function(){e(!1)},.6*this.blinkInterval)}.bind(this);this.intervalId=setInterval(function(){e(!0),t()},this.blinkInterval),t()}},e.prototype.getPixelPosition=function(e,t){if(!this.config||!this.session)return{left:0,top:0};e||(e=this.session.selection.getCursor());var n=this.session.documentToScreenPosition(e),r=this.$padding+(this.session.$bidiHandler.isBidiRow(n.row,e.row)?this.session.$bidiHandler.getPosLeft(n.column):n.column*this.config.characterWidth),i=(n.row-(t?this.config.firstRowScreen:0))*this.config.lineHeight;return{left:r,top:i}},e.prototype.isCursorInView=function(e,t){return e.top>=0&&e.top<t.maxHeight},e.prototype.update=function(e){this.config=e;var t=this.session.$selectionMarkers,n=0,i=0;if(t===undefined||t.length===0)t=[{cursor:null}];for(var n=0,s=t.length;n<s;n++){var o=this.getPixelPosition(t[n].cursor,!0);if((o.top>e.height+e.offset||o.top<0)&&n>1)continue;var u=this.cursors[i++]||this.addCursor(),a=u.style;this.drawCursor?this.drawCursor(u,o,e,t[n],this.session):this.isCursorInView(o,e)?(r.setStyle(a,"display","block"),r.translate(u,o.left,o.top),r.setStyle(a,"width",Math.round(e.characterWidth)+"px"),r.setStyle(a,"height",e.lineHeight+"px")):r.setStyle(a,"display","none")}while(this.cursors.length>i)this.removeCursor();var f=this.session.getOverwrite();this.$setOverwrite(f),this.$pixelPos=o,this.restartTimer()},e.prototype.$setOverwrite=function(e){e!=this.overwrite&&(this.overwrite=e,e?r.addCssClass(this.element,"ace_overwrite-cursors"):r.removeCssClass(this.element,"ace_overwrite-cursors"))},e.prototype.destroy=function(){clearInterval(this.intervalId),clearTimeout(this.timeoutId)},e}();i.prototype.$padding=0,i.prototype.drawCursor=null,t.Cursor=i}),define("ace/scrollbar",["require","exports","module","ace/lib/oop","ace/lib/dom","ace/lib/event","ace/lib/event_emitter"],function(e,t,n){"use strict";var r=this&&this.__extends||function(){var e=function(t,n){return e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])},e(t,n)};return function(t,n){function r(){this.constructor=t}if(typeof n!="function"&&n!==null)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");e(t,n),t.prototype=n===null?Object.create(n):(r.prototype=n.prototype,new r)}}(),i=e("./lib/oop"),s=e("./lib/dom"),o=e("./lib/event"),u=e("./lib/event_emitter").EventEmitter,a=32768,f=function(){function e(e,t){this.element=s.createElement("div"),this.element.className="ace_scrollbar ace_scrollbar"+t,this.inner=s.createElement("div"),this.inner.className="ace_scrollbar-inner",this.inner.textContent="\u00a0",this.element.appendChild(this.inner),e.appendChild(this.element),this.setVisible(!1),this.skipEvent=!1,o.addListener(this.element,"scroll",this.onScroll.bind(this)),o.addListener(this.element,"mousedown",o.preventDefault)}return e.prototype.setVisible=function(e){this.element.style.display=e?"":"none",this.isVisible=e,this.coeff=1},e}();i.implement(f.prototype,u);var l=function(e){function t(t,n){var r=e.call(this,t,"-v")||this;return r.scrollTop=0,r.scrollHeight=0,n.$scrollbarWidth=r.width=s.scrollbarWidth(t.ownerDocument),r.inner.style.width=r.element.style.width=(r.width||15)+5+"px",r.$minWidth=0,r}return r(t,e),t.prototype.onScroll=function(){if(!this.skipEvent){this.scrollTop=this.element.scrollTop;if(this.coeff!=1){var e=this.element.clientHeight/this.scrollHeight;this.scrollTop=this.scrollTop*(1-e)/(this.coeff-e)}this._emit("scroll",{data:this.scrollTop})}this.skipEvent=!1},t.prototype.getWidth=function(){return Math.max(this.isVisible?this.width:0,this.$minWidth||0)},t.prototype.setHeight=function(e){this.element.style.height=e+"px"},t.prototype.setScrollHeight=function(e){this.scrollHeight=e,e>a?(this.coeff=a/e,e=a):this.coeff!=1&&(this.coeff=1),this.inner.style.height=e+"px"},t.prototype.setScrollTop=function(e){this.scrollTop!=e&&(this.skipEvent=!0,this.scrollTop=e,this.element.scrollTop=e*this.coeff)},t}(f);l.prototype.setInnerHeight=l.prototype.setScrollHeight;var c=function(e){function t(t,n){var r=e.call(this,t,"-h")||this;return r.scrollLeft=0,r.height=n.$scrollbarWidth,r.inner.style.height=r.element.style.height=(r.height||15)+5+"px",r}return r(t,e),t.prototype.onScroll=function(){this.skipEvent||(this.scrollLeft=this.element.scrollLeft,this._emit("scroll",{data:this.scrollLeft})),this.skipEvent=!1},t.prototype.getHeight=function(){return this.isVisible?this.height:0},t.prototype.setWidth=function(e){this.element.style.width=e+"px"},t.prototype.setInnerWidth=function(e){this.inner.style.width=e+"px"},t.prototype.setScrollWidth=function(e){this.inner.style.width=e+"px"},t.prototype.setScrollLeft=function(e){this.scrollLeft!=e&&(this.skipEvent=!0,this.scrollLeft=this.element.scrollLeft=e)},t}(f);t.ScrollBar=l,t.ScrollBarV=l,t.ScrollBarH=c,t.VScrollBar=l,t.HScrollBar=c}),define("ace/scrollbar_custom",["require","exports","module","ace/lib/oop","ace/lib/dom","ace/lib/event","ace/lib/event_emitter"],function(e,t,n){"use strict";var r=this&&this.__extends||function(){var e=function(t,n){return e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])},e(t,n)};return function(t,n){function r(){this.constructor=t}if(typeof n!="function"&&n!==null)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");e(t,n),t.prototype=n===null?Object.create(n):(r.prototype=n.prototype,new r)}}(),i=e("./lib/oop"),s=e("./lib/dom"),o=e("./lib/event"),u=e("./lib/event_emitter").EventEmitter;s.importCssString(".ace_editor>.ace_sb-v div, .ace_editor>.ace_sb-h div{\n position: absolute;\n background: rgba(128, 128, 128, 0.6);\n -moz-box-sizing: border-box;\n box-sizing: border-box;\n border: 1px solid #bbb;\n border-radius: 2px;\n z-index: 8;\n}\n.ace_editor>.ace_sb-v, .ace_editor>.ace_sb-h {\n position: absolute;\n z-index: 6;\n background: none;\n overflow: hidden!important;\n}\n.ace_editor>.ace_sb-v {\n z-index: 6;\n right: 0;\n top: 0;\n width: 12px;\n}\n.ace_editor>.ace_sb-v div {\n z-index: 8;\n right: 0;\n width: 100%;\n}\n.ace_editor>.ace_sb-h {\n bottom: 0;\n left: 0;\n height: 12px;\n}\n.ace_editor>.ace_sb-h div {\n bottom: 0;\n height: 100%;\n}\n.ace_editor>.ace_sb_grabbed {\n z-index: 8;\n background: #000;\n}","ace_scrollbar.css",!1);var a=function(){function e(e,t){this.element=s.createElement("div"),this.element.className="ace_sb"+t,this.inner=s.createElement("div"),this.inner.className="",this.element.appendChild(this.inner),this.VScrollWidth=12,this.HScrollHeight=12,e.appendChild(this.element),this.setVisible(!1),this.skipEvent=!1,o.addMultiMouseDownListener(this.element,[500,300,300],this,"onMouseDown")}return e.prototype.setVisible=function(e){this.element.style.display=e?"":"none",this.isVisible=e,this.coeff=1},e}();i.implement(a.prototype,u);var f=function(e){function t(t,n){var r=e.call(this,t,"-v")||this;return r.scrollTop=0,r.scrollHeight=0,r.parent=t,r.width=r.VScrollWidth,r.renderer=n,r.inner.style.width=r.element.style.width=(r.width||15)+"px",r.$minWidth=0,r}return r(t,e),t.prototype.onMouseDown=function(e,t){if(e!=="mousedown")return;if(o.getButton(t)!==0||t.detail===2)return;if(t.target===this.inner){var n=this,r=t.clientY,i=function(e){r=e.clientY},s=function(){clearInterval(l)},u=t.clientY,a=this.thumbTop,f=function(){if(r===undefined)return;var e=n.scrollTopFromThumbTop(a+r-u);if(e===n.scrollTop)return;n._emit("scroll",{data:e})};o.capture(this.inner,i,s);var l=setInterval(f,20);return o.preventDefault(t)}var c=t.clientY-this.element.getBoundingClientRect().top-this.thumbHeight/2;return this._emit("scroll",{data:this.scrollTopFromThumbTop(c)}),o.preventDefault(t)},t.prototype.getHeight=function(){return this.height},t.prototype.scrollTopFromThumbTop=function(e){var t=e*(this.pageHeight-this.viewHeight)/(this.slideHeight-this.thumbHeight);return t>>=0,t<0?t=0:t>this.pageHeight-this.viewHeight&&(t=this.pageHeight-this.viewHeight),t},t.prototype.getWidth=function(){return Math.max(this.isVisible?this.width:0,this.$minWidth||0)},t.prototype.setHeight=function(e){this.height=Math.max(0,e),this.slideHeight=this.height,this.viewHeight=this.height,this.setScrollHeight(this.pageHeight,!0)},t.prototype.setScrollHeight=function(e,t){if(this.pageHeight===e&&!t)return;this.pageHeight=e,this.thumbHeight=this.slideHeight*this.viewHeight/this.pageHeight,this.thumbHeight>this.slideHeight&&(this.thumbHeight=this.slideHeight),this.thumbHeight<15&&(this.thumbHeight=15),this.inner.style.height=this.thumbHeight+"px",this.scrollTop>this.pageHeight-this.viewHeight&&(this.scrollTop=this.pageHeight-this.viewHeight,this.scrollTop<0&&(this.scrollTop=0),this._emit("scroll",{data:this.scrollTop}))},t.prototype.setScrollTop=function(e){this.scrollTop=e,e<0&&(e=0),this.thumbTop=e*(this.slideHeight-this.thumbHeight)/(this.pageHeight-this.viewHeight),this.inner.style.top=this.thumbTop+"px"},t}(a);f.prototype.setInnerHeight=f.prototype.setScrollHeight;var l=function(e){function t(t,n){var r=e.call(this,t,"-h")||this;return r.scrollLeft=0,r.scrollWidth=0,r.height=r.HScrollHeight,r.inner.style.height=r.element.style.height=(r.height||12)+"px",r.renderer=n,r}return r(t,e),t.prototype.onMouseDown=function(e,t){if(e!=="mousedown")return;if(o.getButton(t)!==0||t.detail===2)return;if(t.target===this.inner){var n=this,r=t.clientX,i=function(e){r=e.clientX},s=function(){clearInterval(l)},u=t.clientX,a=this.thumbLeft,f=function(){if(r===undefined)return;var e=n.scrollLeftFromThumbLeft(a+r-u);if(e===n.scrollLeft)return;n._emit("scroll",{data:e})};o.capture(this.inner,i,s);var l=setInterval(f,20);return o.preventDefault(t)}var c=t.clientX-this.element.getBoundingClientRect().left-this.thumbWidth/2;return this._emit("scroll",{data:this.scrollLeftFromThumbLeft(c)}),o.preventDefault(t)},t.prototype.getHeight=function(){return this.isVisible?this.height:0},t.prototype.scrollLeftFromThumbLeft=function(e){var t=e*(this.pageWidth-this.viewWidth)/(this.slideWidth-this.thumbWidth);return t>>=0,t<0?t=0:t>this.pageWidth-this.viewWidth&&(t=this.pageWidth-this.viewWidth),t},t.prototype.setWidth=function(e){this.width=Math.max(0,e),this.element.style.width=this.width+"px",this.slideWidth=this.width,this.viewWidth=this.width,this.setScrollWidth(this.pageWidth,!0)},t.prototype.setScrollWidth=function(e,t){if(this.pageWidth===e&&!t)return;this.pageWidth=e,this.thumbWidth=this.slideWidth*this.viewWidth/this.pageWidth,this.thumbWidth>this.slideWidth&&(this.thumbWidth=this.slideWidth),this.thumbWidth<15&&(this.thumbWidth=15),this.inner.style.width=this.thumbWidth+"px",this.scrollLeft>this.pageWidth-this.viewWidth&&(this.scrollLeft=this.pageWidth-this.viewWidth,this.scrollLeft<0&&(this.scrollLeft=0),this._emit("scroll",{data:this.scrollLeft}))},t.prototype.setScrollLeft=function(e){this.scrollLeft=e,e<0&&(e=0),this.thumbLeft=e*(this.slideWidth-this.thumbWidth)/(this.pageWidth-this.viewWidth),this.inner.style.left=this.thumbLeft+"px"},t}(a);l.prototype.setInnerWidth=l.prototype.setScrollWidth,t.ScrollBar=f,t.ScrollBarV=f,t.ScrollBarH=l,t.VScrollBar=f,t.HScrollBar=l}),define("ace/renderloop",["require","exports","module","ace/lib/event"],function(e,t,n){"use strict";var r=e("./lib/event"),i=function(){function e(e,t){this.onRender=e,this.pending=!1,this.changes=0,this.$recursionLimit=2,this.window=t||window;var n=this;this._flush=function(e){n.pending=!1;var t=n.changes;t&&(r.blockIdle(100),n.changes=0,n.onRender(t));if(n.changes){if(n.$recursionLimit--<0)return;n.schedule()}else n.$recursionLimit=2}}return e.prototype.schedule=function(e){this.changes=this.changes|e,this.changes&&!this.pending&&(r.nextFrame(this._flush),this.pending=!0)},e.prototype.clear=function(e){var t=this.changes;return this.changes=0,t},e}();t.RenderLoop=i}),define("ace/layer/font_metrics",["require","exports","module","ace/lib/oop","ace/lib/dom","ace/lib/lang","ace/lib/event","ace/lib/useragent","ace/lib/event_emitter"],function(e,t,n){var r=e("../lib/oop"),i=e("../lib/dom"),s=e("../lib/lang"),o=e("../lib/event"),u=e("../lib/useragent"),a=e("../lib/event_emitter").EventEmitter,f=512,l=typeof ResizeObserver=="function",c=200,h=function(){function e(e){this.el=i.createElement("div"),this.$setMeasureNodeStyles(this.el.style,!0),this.$main=i.createElement("div"),this.$setMeasureNodeStyles(this.$main.style),this.$measureNode=i.createElement("div"),this.$setMeasureNodeStyles(this.$measureNode.style),this.el.appendChild(this.$main),this.el.appendChild(this.$measureNode),e.appendChild(this.el),this.$measureNode.textContent=s.stringRepeat("X",f),this.$characterSize={width:0,height:0},l?this.$addObserver():this.checkForSizeChanges()}return e.prototype.$setMeasureNodeStyles=function(e,t){e.width=e.height="auto",e.left=e.top="0px",e.visibility="hidden",e.position="absolute",e.whiteSpace="pre",u.isIE<8?e["font-family"]="inherit":e.font="inherit",e.overflow=t?"hidden":"visible"},e.prototype.checkForSizeChanges=function(e){e===undefined&&(e=this.$measureSizes());if(e&&(this.$characterSize.width!==e.width||this.$characterSize.height!==e.height)){this.$measureNode.style.fontWeight="bold";var t=this.$measureSizes();this.$measureNode.style.fontWeight="",this.$characterSize=e,this.charSizes=Object.create(null),this.allowBoldFonts=t&&t.width===e.width&&t.height===e.height,this._emit("changeCharacterSize",{data:e})}},e.prototype.$addObserver=function(){var e=this;this.$observer=new window.ResizeObserver(function(t){e.checkForSizeChanges()}),this.$observer.observe(this.$measureNode)},e.prototype.$pollSizeChanges=function(){if(this.$pollSizeChangesTimer||this.$observer)return this.$pollSizeChangesTimer;var e=this;return this.$pollSizeChangesTimer=o.onIdle(function t(){e.checkForSizeChanges(),o.onIdle(t,500)},500)},e.prototype.setPolling=function(e){e?this.$pollSizeChanges():this.$pollSizeChangesTimer&&(clearInterval(this.$pollSizeChangesTimer),this.$pollSizeChangesTimer=0)},e.prototype.$measureSizes=function(e){var t={height:(e||this.$measureNode).clientHeight,width:(e||this.$measureNode).clientWidth/f};return t.width===0||t.height===0?null:t},e.prototype.$measureCharWidth=function(e){this.$main.textContent=s.stringRepeat(e,f);var t=this.$main.getBoundingClientRect();return t.width/f},e.prototype.getCharacterWidth=function(e){var t=this.charSizes[e];return t===undefined&&(t=this.charSizes[e]=this.$measureCharWidth(e)/this.$characterSize.width),t},e.prototype.destroy=function(){clearInterval(this.$pollSizeChangesTimer),this.$observer&&this.$observer.disconnect(),this.el&&this.el.parentNode&&this.el.parentNode.removeChild(this.el)},e.prototype.$getZoom=function(e){return!e||!e.parentElement?1:(window.getComputedStyle(e).zoom||1)*this.$getZoom(e.parentElement)},e.prototype.$initTransformMeasureNodes=function(){var e=function(e,t){return["div",{style:"position: absolute;top:"+e+"px;left:"+t+"px;"}]};this.els=i.buildDom([e(0,0),e(c,0),e(0,c),e(c,c)],this.el)},e.prototype.transformCoordinates=function(e,t){function r(e,t,n){var r=e[1]*t[0]-e[0]*t[1];return[(-t[1]*n[0]+t[0]*n[1])/r,(+e[1]*n[0]-e[0]*n[1])/r]}function i(e,t){return[e[0]-t[0],e[1]-t[1]]}function s(e,t){return[e[0]+t[0],e[1]+t[1]]}function o(e,t){return[e*t[0],e*t[1]]}function u(e){var t=e.getBoundingClientRect();return[t.left,t.top]}if(e){var n=this.$getZoom(this.el);e=o(1/n,e)}this.els||this.$initTransformMeasureNodes();var a=u(this.els[0]),f=u(this.els[1]),l=u(this.els[2]),h=u(this.els[3]),p=r(i(h,f),i(h,l),i(s(f,l),s(h,a))),d=o(1+p[0],i(f,a)),v=o(1+p[1],i(l,a));if(t){var m=t,g=p[0]*m[0]/c+p[1]*m[1]/c+1,y=s(o(m[0],d),o(m[1],v));return s(o(1/g/c,y),a)}var b=i(e,a),w=r(i(d,o(p[0],b)),i(v,o(p[1],b)),b);return o(c,w)},e}();h.prototype.$characterSize={width:0,height:0},r.implement(h.prototype,a),t.FontMetrics=h}),define("ace/css/editor-css",["require","exports","module"],function(e,t,n){n.exports='\n.ace_br1 {border-top-left-radius : 3px;}\n.ace_br2 {border-top-right-radius : 3px;}\n.ace_br3 {border-top-left-radius : 3px; border-top-right-radius: 3px;}\n.ace_br4 {border-bottom-right-radius: 3px;}\n.ace_br5 {border-top-left-radius : 3px; border-bottom-right-radius: 3px;}\n.ace_br6 {border-top-right-radius : 3px; border-bottom-right-radius: 3px;}\n.ace_br7 {border-top-left-radius : 3px; border-top-right-radius: 3px; border-bottom-right-radius: 3px;}\n.ace_br8 {border-bottom-left-radius : 3px;}\n.ace_br9 {border-top-left-radius : 3px; border-bottom-left-radius: 3px;}\n.ace_br10{border-top-right-radius : 3px; border-bottom-left-radius: 3px;}\n.ace_br11{border-top-left-radius : 3px; border-top-right-radius: 3px; border-bottom-left-radius: 3px;}\n.ace_br12{border-bottom-right-radius: 3px; border-bottom-left-radius: 3px;}\n.ace_br13{border-top-left-radius : 3px; border-bottom-right-radius: 3px; border-bottom-left-radius: 3px;}\n.ace_br14{border-top-right-radius : 3px; border-bottom-right-radius: 3px; border-bottom-left-radius: 3px;}\n.ace_br15{border-top-left-radius : 3px; border-top-right-radius: 3px; border-bottom-right-radius: 3px; border-bottom-left-radius: 3px;}\n\n\n.ace_editor {\n position: relative;\n overflow: hidden;\n padding: 0;\n font: 12px/normal \'Monaco\', \'Menlo\', \'Ubuntu Mono\', \'Consolas\', \'Source Code Pro\', \'source-code-pro\', monospace;\n direction: ltr;\n text-align: left;\n -webkit-tap-highlight-color: rgba(0, 0, 0, 0);\n}\n\n.ace_scroller {\n position: absolute;\n overflow: hidden;\n top: 0;\n bottom: 0;\n background-color: inherit;\n -ms-user-select: none;\n -moz-user-select: none;\n -webkit-user-select: none;\n user-select: none;\n cursor: text;\n}\n\n.ace_content {\n position: absolute;\n box-sizing: border-box;\n min-width: 100%;\n contain: style size layout;\n font-variant-ligatures: no-common-ligatures;\n}\n\n.ace_keyboard-focus:focus {\n box-shadow: inset 0 0 0 2px #5E9ED6;\n outline: none;\n}\n\n.ace_dragging .ace_scroller:before{\n position: absolute;\n top: 0;\n left: 0;\n right: 0;\n bottom: 0;\n content: \'\';\n background: rgba(250, 250, 250, 0.01);\n z-index: 1000;\n}\n.ace_dragging.ace_dark .ace_scroller:before{\n background: rgba(0, 0, 0, 0.01);\n}\n\n.ace_gutter {\n position: absolute;\n overflow : hidden;\n width: auto;\n top: 0;\n bottom: 0;\n left: 0;\n cursor: default;\n z-index: 4;\n -ms-user-select: none;\n -moz-user-select: none;\n -webkit-user-select: none;\n user-select: none;\n contain: style size layout;\n}\n\n.ace_gutter-active-line {\n position: absolute;\n left: 0;\n right: 0;\n}\n\n.ace_scroller.ace_scroll-left:after {\n content: "";\n position: absolute;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n box-shadow: 17px 0 16px -16px rgba(0, 0, 0, 0.4) inset;\n pointer-events: none;\n}\n\n.ace_gutter-cell, .ace_gutter-cell_svg-icons {\n position: absolute;\n top: 0;\n left: 0;\n right: 0;\n padding-left: 19px;\n padding-right: 6px;\n background-repeat: no-repeat;\n}\n\n.ace_gutter-cell_svg-icons .ace_gutter_annotation {\n margin-left: -14px;\n float: left;\n}\n\n.ace_gutter-cell .ace_gutter_annotation {\n margin-left: -19px;\n float: left;\n}\n\n.ace_gutter-cell.ace_error, .ace_icon.ace_error, .ace_icon.ace_error_fold {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAABOFBMVEX/////////QRswFAb/Ui4wFAYwFAYwFAaWGAfDRymzOSH/PxswFAb/SiUwFAYwFAbUPRvjQiDllog5HhHdRybsTi3/Tyv9Tir+Syj/UC3////XurebMBIwFAb/RSHbPx/gUzfdwL3kzMivKBAwFAbbvbnhPx66NhowFAYwFAaZJg8wFAaxKBDZurf/RB6mMxb/SCMwFAYwFAbxQB3+RB4wFAb/Qhy4Oh+4QifbNRcwFAYwFAYwFAb/QRzdNhgwFAYwFAbav7v/Uy7oaE68MBK5LxLewr/r2NXewLswFAaxJw4wFAbkPRy2PyYwFAaxKhLm1tMwFAazPiQwFAaUGAb/QBrfOx3bvrv/VC/your_sha512_hash/bo8eAA4InH3+DwoN7j4eLi4xP99Nfg4your_sha512_hash+y13sRqwAAADLSURBVHjaZc/XDsFgGIBhtDrshlitmk2IrbHFqL2pvXf/+78DPokj7+Fz9qpU/9UXJIlhmPaTaQ6QPaz0mm+your_sha256_hashfASilxOLyiV5UVUyVAfbG0cCPHig+your_sha256_hashdBQgZE2nPR6CICZhawjA4Fb/chv+399kfR+MMMDGOQAAAABJRU5ErkJggg==");\n background-repeat: no-repeat;\n background-position: 2px center;\n}\n\n.ace_gutter-cell.ace_warning, .ace_icon.ace_warning, .ace_icon.ace_warning_fold {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAAmVBMVEX///8AAAD///8AAAAAAABPSzb/5sAAAAB/blH/73z/ulkAAAAAAAD85pkAAAAAAAACAgP/vGz/rkDerGbGrV7/pkQICAf////e0IsAAAD/oED/qTvhrnUAAAD/yHD/njcAAADuv2r/nz//oTj/p064oGf/zHAAAAA9Nir/tFIAAAD/tlTiuWf/tkIAAACynXEAAAAAAAAtIRW7zBpBAAAAM3RSTlMAABR1m7RXO8Ln31Z36zT+neXe5OzooRDfn+TZ4p3h2hTf4t3k3ucyrN1K5+Xaks52Sfs9CXgrAAAAjklEQVR42o3PbQ+CIBQFYEwboPhSYgoYunIqqLn6/z8uYdH8Vmdnu9vz4WwXgN/xTPRD2+sgOcZjsge/whXZgUaYYvT8QnuJaUrjrHUQreGczuEafQCO/your_sha256_hash5fS++NV8AbOZgnsC7BpEAAAAABJRU5ErkJggg==");\n background-repeat: no-repeat;\n background-position: 2px center;\n}\n\n.ace_gutter-cell.ace_info, .ace_icon.ace_info {\n background-image: url("data:image/png;base64,your_sha256_hashyour_sha256_hashyour_sha256_hashL2OgGgAAIKkRQap2htgAAAAASUVORK5CYII=");\n background-repeat: no-repeat;\n background-position: 2px center;\n}\n.ace_dark .ace_gutter-cell.ace_info, .ace_dark .ace_icon.ace_info {\n background-image: url("data:image/png;base64,your_sha256_hashgIAqKiq+your_sha256_hasheNpjYMAPdsMYHegyJZFQBlsUlMFVCWUYKkAZMxZAGdxlDMQBAG+TBP4B6RyJAAAAAElFTkSuQmCC");\n}\n\n.ace_icon_svg.ace_error {\n -webkit-mask-image: url("data:image/svg+xml;base64,your_sha256_hashIjAgMCAyMCAxNiI+your_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashPSIxMSIgeDI9IjUiIHkyPSI1Ii8+CjwvZz4KPC9zdmc+");\n background-color: crimson;\n}\n.ace_icon_svg.ace_warning {\n -webkit-mask-image: url("data:image/svg+xml;base64,your_sha256_hashIjAgMCAyMCAxNiI+your_sha256_hashZW5kZXJpbmc9Imdlb21ldHJpY1ByZWNpc2lvbiI+your_sha256_hashaW50cz0iOCAxIDE1IDE1IDEgMTUgOCAxIi8+CjxyZWN0IHg9IjgiIHk9IjEyIiB3aWR0aD0iMC4wMSIgaGVpZ2h0PSIwLjAxIi8+CjxsaW5lIHgxPSI4IiB5MT0iNiIgeDI9IjgiIHkyPSIxMCIvPgo8L2c+Cjwvc3ZnPg==");\n background-color: darkorange;\n}\n.ace_icon_svg.ace_info {\n -webkit-mask-image: url("data:image/svg+xml;base64,your_sha256_hashIjAgMCAyMCAxNiI+your_sha256_hashbmc9Imdlb21ldHJpY1ByZWNpc2lvbiI+your_sha256_hashbGluZWpvaW49InJvdW5kIi8+Cjxwb2x5bGluZSBwb2ludHM9IjggMTEgOCA4Ii8+your_sha256_hashyour_sha256_hashMDEiIGhlaWdodD0iMC4wMSIvPgo8L2c+Cjwvc3ZnPg==");\n background-color: royalblue;\n}\n\n.ace_icon_svg.ace_error_fold {\n -webkit-mask-image: url("data:image/svg+xml;base64,your_sha256_hashIjAgMCAyMCAxNiIgZmlsbD0ibm9uZSI+your_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashMDY2IFoiIGZpbGw9ImNyaW1zb24iIHN0cm9rZS13aWR0aD0iMiIvPgo8L3N2Zz4=");\n background-color: crimson;\n}\n.ace_icon_svg.ace_warning_fold {\n -webkit-mask-image: url("data:image/svg+xml;base64,your_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashPSIjRUM3MjExIi8+your_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashLjE1NTVMMTEuMTk5MSAyLjk1MjM4WiIgZmlsbD0iI0VDNzIxMSIvPgo8L3N2Zz4=");\n background-color: darkorange;\n}\n\n.ace_scrollbar {\n contain: strict;\n position: absolute;\n right: 0;\n bottom: 0;\n z-index: 6;\n}\n\n.ace_scrollbar-inner {\n position: absolute;\n cursor: text;\n left: 0;\n top: 0;\n}\n\n.ace_scrollbar-v{\n overflow-x: hidden;\n overflow-y: scroll;\n top: 0;\n}\n\n.ace_scrollbar-h {\n overflow-x: scroll;\n overflow-y: hidden;\n left: 0;\n}\n\n.ace_print-margin {\n position: absolute;\n height: 100%;\n}\n\n.ace_text-input {\n position: absolute;\n z-index: 0;\n width: 0.5em;\n height: 1em;\n opacity: 0;\n background: transparent;\n -moz-appearance: none;\n appearance: none;\n border: none;\n resize: none;\n outline: none;\n overflow: hidden;\n font: inherit;\n padding: 0 1px;\n margin: 0 -1px;\n contain: strict;\n -ms-user-select: text;\n -moz-user-select: text;\n -webkit-user-select: text;\n user-select: text;\n /*with `pre-line` chrome inserts &nbsp; instead of space*/\n white-space: pre!important;\n}\n.ace_text-input.ace_composition {\n background: transparent;\n color: inherit;\n z-index: 1000;\n opacity: 1;\n}\n.ace_composition_placeholder { color: transparent }\n.ace_composition_marker { \n border-bottom: 1px solid;\n position: absolute;\n border-radius: 0;\n margin-top: 1px;\n}\n\n[ace_nocontext=true] {\n transform: none!important;\n filter: none!important;\n clip-path: none!important;\n mask : none!important;\n contain: none!important;\n perspective: none!important;\n mix-blend-mode: initial!important;\n z-index: auto;\n}\n\n.ace_layer {\n z-index: 1;\n position: absolute;\n overflow: hidden;\n /* workaround for chrome bug path_to_url word-wrap: normal;\n white-space: pre;\n height: 100%;\n width: 100%;\n box-sizing: border-box;\n /* setting pointer-events: auto; on node under the mouse, which changes\n during scroll, will break mouse wheel scrolling in Safari */\n pointer-events: none;\n}\n\n.ace_gutter-layer {\n position: relative;\n width: auto;\n text-align: right;\n pointer-events: auto;\n height: 1000000px;\n contain: style size layout;\n}\n\n.ace_text-layer {\n font: inherit !important;\n position: absolute;\n height: 1000000px;\n width: 1000000px;\n contain: style size layout;\n}\n\n.ace_text-layer > .ace_line, .ace_text-layer > .ace_line_group {\n contain: style size layout;\n position: absolute;\n top: 0;\n left: 0;\n right: 0;\n}\n\n.ace_hidpi .ace_text-layer,\n.ace_hidpi .ace_gutter-layer,\n.ace_hidpi .ace_content,\n.ace_hidpi .ace_gutter {\n contain: strict;\n}\n.ace_hidpi .ace_text-layer > .ace_line, \n.ace_hidpi .ace_text-layer > .ace_line_group {\n contain: strict;\n}\n\n.ace_cjk {\n display: inline-block;\n text-align: center;\n}\n\n.ace_cursor-layer {\n z-index: 4;\n}\n\n.ace_cursor {\n z-index: 4;\n position: absolute;\n box-sizing: border-box;\n border-left: 2px solid;\n /* workaround for smooth cursor repaintng whole screen in chrome */\n transform: translatez(0);\n}\n\n.ace_multiselect .ace_cursor {\n border-left-width: 1px;\n}\n\n.ace_slim-cursors .ace_cursor {\n border-left-width: 1px;\n}\n\n.ace_overwrite-cursors .ace_cursor {\n border-left-width: 0;\n border-bottom: 1px solid;\n}\n\n.ace_hidden-cursors .ace_cursor {\n opacity: 0.2;\n}\n\n.ace_hasPlaceholder .ace_hidden-cursors .ace_cursor {\n opacity: 0;\n}\n\n.ace_smooth-blinking .ace_cursor {\n transition: opacity 0.18s;\n}\n\n.ace_animate-blinking .ace_cursor {\n animation-duration: 1000ms;\n animation-timing-function: step-end;\n animation-name: blink-ace-animate;\n animation-iteration-count: infinite;\n}\n\n.ace_animate-blinking.ace_smooth-blinking .ace_cursor {\n animation-duration: 1000ms;\n animation-timing-function: ease-in-out;\n animation-name: blink-ace-animate-smooth;\n}\n \n@keyframes blink-ace-animate {\n from, to { opacity: 1; }\n 60% { opacity: 0; }\n}\n\n@keyframes blink-ace-animate-smooth {\n from, to { opacity: 1; }\n 45% { opacity: 1; }\n 60% { opacity: 0; }\n 85% { opacity: 0; }\n}\n\n.ace_marker-layer .ace_step, .ace_marker-layer .ace_stack {\n position: absolute;\n z-index: 3;\n}\n\n.ace_marker-layer .ace_selection {\n position: absolute;\n z-index: 5;\n}\n\n.ace_marker-layer .ace_bracket {\n position: absolute;\n z-index: 6;\n}\n\n.ace_marker-layer .ace_error_bracket {\n position: absolute;\n border-bottom: 1px solid #DE5555;\n border-radius: 0;\n}\n\n.ace_marker-layer .ace_active-line {\n position: absolute;\n z-index: 2;\n}\n\n.ace_marker-layer .ace_selected-word {\n position: absolute;\n z-index: 4;\n box-sizing: border-box;\n}\n\n.ace_line .ace_fold {\n box-sizing: border-box;\n\n display: inline-block;\n height: 11px;\n margin-top: -2px;\n vertical-align: middle;\n\n background-image:\n url("data:image/png;base64,your_sha256_hashZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAJpJREFUeNpi/P//your_sha256_hashvCLkfKBaMSClBlR7BOQikCFGQEErIH0VqkabiGCAqwUadAzZJRxQr/your_sha256_hashLT2KIfIMAAQsdgGiXvgnYAAAAASUVORK5CYII="),\n url("data:image/png;base64,your_sha256_hashZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAACJJREFUeNpi+P//fxgTAwPDBxDxD078RSX+YeEyDFMCIMAAI3INmXiwf2YAAAAASUVORK5CYII=");\n background-repeat: no-repeat, repeat-x;\n background-position: center center, top left;\n color: transparent;\n\n border: 1px solid black;\n border-radius: 2px;\n\n cursor: pointer;\n pointer-events: auto;\n}\n\n.ace_dark .ace_fold {\n}\n\n.ace_fold:hover{\n background-image:\n url("data:image/png;base64,your_sha256_hashZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAJpJREFUeNpi/P//your_sha256_hashvCLkfKBaMSClBlR7BOQikCFGQEErIH0VqkabiGCAqwUadAzZJRxQr/your_sha256_hashLT2KIfIMAAQsdgGiXvgnYAAAAASUVORK5CYII="),\n url("data:image/png;base64,your_sha256_hashZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAACBJREFUeNpi+P//fz4TAwPDZxDxD5X4i5fLMEwJgAADAEPVDbjNw87ZAAAAAElFTkSuQmCC");\n}\n\n.ace_tooltip {\n background-color: #f5f5f5;\n border: 1px solid gray;\n border-radius: 1px;\n box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);\n color: black;\n max-width: 100%;\n padding: 3px 4px;\n position: fixed;\n z-index: 999999;\n box-sizing: border-box;\n cursor: default;\n white-space: pre-wrap;\n word-wrap: break-word;\n line-height: normal;\n font-style: normal;\n font-weight: normal;\n letter-spacing: normal;\n pointer-events: none;\n overflow: auto;\n max-width: min(60em, 66vw);\n overscroll-behavior: contain;\n}\n.ace_tooltip pre {\n white-space: pre-wrap;\n}\n\n.ace_tooltip.ace_dark {\n background-color: #636363;\n color: #fff;\n}\n\n.ace_tooltip:focus {\n outline: 1px solid #5E9ED6;\n}\n\n.ace_icon {\n display: inline-block;\n width: 18px;\n vertical-align: top;\n}\n\n.ace_icon_svg {\n display: inline-block;\n width: 12px;\n vertical-align: top;\n -webkit-mask-repeat: no-repeat;\n -webkit-mask-size: 12px;\n -webkit-mask-position: center;\n}\n\n.ace_folding-enabled > .ace_gutter-cell, .ace_folding-enabled > .ace_gutter-cell_svg-icons {\n padding-right: 13px;\n}\n\n.ace_fold-widget {\n box-sizing: border-box;\n\n margin: 0 -12px 0 1px;\n display: none;\n width: 11px;\n vertical-align: top;\n\n background-image: url("data:image/png;base64,your_sha256_hashyour_sha256_hashKAAAAABJRU5ErkJggg==");\n background-repeat: no-repeat;\n background-position: center;\n\n border-radius: 3px;\n \n border: 1px solid transparent;\n cursor: pointer;\n}\n\n.ace_folding-enabled .ace_fold-widget {\n display: inline-block; \n}\n\n.ace_fold-widget.ace_end {\n background-image: url("data:image/png;base64,your_sha256_hashMAhD0YzsRchFKI7sAikeWkrxwScEB0nh5e7KTPWimZki4tYfVbX+MNl4pyZXejUO1QAAAABJRU5ErkJggg==");\n}\n\n.ace_fold-widget.ace_closed {\n background-image: url("data:image/png;base64,your_sha256_hashyour_sha256_hashL+l0YWnZAAAAAElFTkSuQmCCXA==");\n}\n\n.ace_fold-widget:hover {\n border: 1px solid rgba(0, 0, 0, 0.3);\n background-color: rgba(255, 255, 255, 0.2);\n box-shadow: 0 1px 1px rgba(255, 255, 255, 0.7);\n}\n\n.ace_fold-widget:active {\n border: 1px solid rgba(0, 0, 0, 0.4);\n background-color: rgba(0, 0, 0, 0.05);\n box-shadow: 0 1px 1px rgba(255, 255, 255, 0.8);\n}\n/**\n * Dark version for fold widgets\n */\n.ace_dark .ace_fold-widget {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAYAAACNbyblAAAAHklEQVQIW2P4//8/AzoGEQ7oGCaLLAhWiSwB146BAQCSTPYocqT0AAAAAElFTkSuQmCC");\n}\n.ace_dark .ace_fold-widget.ace_end {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAYAAACNbyblAAAAH0lEQVQIW2P4//8/AxQ7wNjIAjDMgC4AxjCVKBirIAAF0kz2rlhxpAAAAABJRU5ErkJggg==");\n}\n.ace_dark .ace_fold-widget.ace_closed {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAMAAAAFCAYAAACAcVaiAAAAHElEQVQIW2P4//+/AxAzgDADlOOAznHAKgPWAwARji8UIDTfQQAAAABJRU5ErkJggg==");\n}\n.ace_dark .ace_fold-widget:hover {\n box-shadow: 0 1px 1px rgba(255, 255, 255, 0.2);\n background-color: rgba(255, 255, 255, 0.1);\n}\n.ace_dark .ace_fold-widget:active {\n box-shadow: 0 1px 1px rgba(255, 255, 255, 0.2);\n}\n\n.ace_inline_button {\n border: 1px solid lightgray;\n display: inline-block;\n margin: -1px 8px;\n padding: 0 5px;\n pointer-events: auto;\n cursor: pointer;\n}\n.ace_inline_button:hover {\n border-color: gray;\n background: rgba(200,200,200,0.2);\n display: inline-block;\n pointer-events: auto;\n}\n\n.ace_fold-widget.ace_invalid {\n background-color: #FFB4B4;\n border-color: #DE5555;\n}\n\n.ace_fade-fold-widgets .ace_fold-widget {\n transition: opacity 0.4s ease 0.05s;\n opacity: 0;\n}\n\n.ace_fade-fold-widgets:hover .ace_fold-widget {\n transition: opacity 0.05s ease 0.05s;\n opacity:1;\n}\n\n.ace_underline {\n text-decoration: underline;\n}\n\n.ace_bold {\n font-weight: bold;\n}\n\n.ace_nobold .ace_bold {\n font-weight: normal;\n}\n\n.ace_italic {\n font-style: italic;\n}\n\n\n.ace_error-marker {\n background-color: rgba(255, 0, 0,0.2);\n position: absolute;\n z-index: 9;\n}\n\n.ace_highlight-marker {\n background-color: rgba(255, 255, 0,0.2);\n position: absolute;\n z-index: 8;\n}\n\n.ace_mobile-menu {\n position: absolute;\n line-height: 1.5;\n border-radius: 4px;\n -ms-user-select: none;\n -moz-user-select: none;\n -webkit-user-select: none;\n user-select: none;\n background: white;\n box-shadow: 1px 3px 2px grey;\n border: 1px solid #dcdcdc;\n color: black;\n}\n.ace_dark > .ace_mobile-menu {\n background: #333;\n color: #ccc;\n box-shadow: 1px 3px 2px grey;\n border: 1px solid #444;\n\n}\n.ace_mobile-button {\n padding: 2px;\n cursor: pointer;\n overflow: hidden;\n}\n.ace_mobile-button:hover {\n background-color: #eee;\n opacity:1;\n}\n.ace_mobile-button:active {\n background-color: #ddd;\n}\n\n.ace_placeholder {\n font-family: arial;\n transform: scale(0.9);\n transform-origin: left;\n white-space: pre;\n opacity: 0.7;\n margin: 0 10px;\n}\n\n.ace_ghost_text {\n opacity: 0.5;\n font-style: italic;\n}\n\n.ace_ghost_text > div {\n white-space: pre;\n}\n\n.ghost_text_line_wrapped::after {\n content: "\u21a9";\n position: absolute;\n}\n\n.ace_lineWidgetContainer.ace_ghost_text {\n margin: 0px 4px\n}\n\n.ace_screenreader-only {\n position:absolute;\n left:-10000px;\n top:auto;\n width:1px;\n height:1px;\n overflow:hidden;\n}'}),define("ace/layer/decorators",["require","exports","module","ace/lib/dom","ace/lib/oop","ace/lib/event_emitter"],function(e,t,n){"use strict";var r=e("../lib/dom"),i=e("../lib/oop"),s=e("../lib/event_emitter").EventEmitter,o=function(){function e(e,t){this.canvas=r.createElement("canvas"),this.renderer=t,this.pixelRatio=1,this.maxHeight=t.layerConfig.maxHeight,this.lineHeight=t.layerConfig.lineHeight,this.canvasHeight=e.parent.scrollHeight,this.heightRatio=this.canvasHeight/this.maxHeight,this.canvasWidth=e.width,this.minDecorationHeight=2*this.pixelRatio|0,this.halfMinDecorationHeight=this.minDecorationHeight/2|0,this.canvas.width=this.canvasWidth,this.canvas.height=this.canvasHeight,this.canvas.style.top="0px",this.canvas.style.right="0px",this.canvas.style.zIndex="7px",this.canvas.style.position="absolute",this.colors={},this.colors.dark={error:"rgba(255, 18, 18, 1)",warning:"rgba(18, 136, 18, 1)",info:"rgba(18, 18, 136, 1)"},this.colors.light={error:"rgb(255,51,51)",warning:"rgb(32,133,72)",info:"rgb(35,68,138)"},e.element.appendChild(this.canvas)}return e.prototype.$updateDecorators=function(e){function i(e,t){return e.priority<t.priority?-1:e.priority>t.priority?1:0}var t=this.renderer.theme.isDark===!0?this.colors.dark:this.colors.light;if(e){this.maxHeight=e.maxHeight,this.lineHeight=e.lineHeight,this.canvasHeight=e.height;var n=(e.lastRow+1)*this.lineHeight;n<this.canvasHeight?this.heightRatio=1:this.heightRatio=this.canvasHeight/this.maxHeight}var r=this.canvas.getContext("2d"),s=this.renderer.session.$annotations;r.clearRect(0,0,this.canvas.width,this.canvas.height);if(s){var o={info:1,warning:2,error:3};s.forEach(function(e){e.priority=o[e.type]||null}),s=s.sort(i);var u=this.renderer.session.$foldData;for(var a=0;a<s.length;a++){var f=s[a].row,l=this.compensateFoldRows(f,u),c=Math.round((f-l)*this.lineHeight*this.heightRatio),h=Math.round((f-l)*this.lineHeight*this.heightRatio),p=Math.round(((f-l)*this.lineHeight+this.lineHeight)*this.heightRatio),d=p-h;if(d<this.minDecorationHeight){var v=(h+p)/2|0;v<this.halfMinDecorationHeight?v=this.halfMinDecorationHeight:v+this.halfMinDecorationHeight>this.canvasHeight&&(v=this.canvasHeight-this.halfMinDecorationHeight),h=Math.round(v-this.halfMinDecorationHeight),p=Math.round(v+this.halfMinDecorationHeight)}r.fillStyle=t[s[a].type]||null,r.fillRect(0,c,this.canvasWidth,p-h)}}var m=this.renderer.session.selection.getCursor();if(m){var l=this.compensateFoldRows(m.row,u),c=Math.round((m.row-l)*this.lineHeight*this.heightRatio);r.fillStyle="rgba(0, 0, 0, 0.5)",r.fillRect(0,c,this.canvasWidth,2)}},e.prototype.compensateFoldRows=function(e,t){var n=0;if(t&&t.length>0)for(var r=0;r<t.length;r++)e>t[r].start.row&&e<t[r].end.row?n+=e-t[r].start.row:e>=t[r].end.row&&(n+=t[r].end.row-t[r].start.row);return n},e}();i.implement(o.prototype,s),t.Decorator=o}),define("ace/virtual_renderer",["require","exports","module","ace/lib/oop","ace/lib/dom","ace/lib/lang","ace/config","ace/layer/gutter","ace/layer/marker","ace/layer/text","ace/layer/cursor","ace/scrollbar","ace/scrollbar","ace/scrollbar_custom","ace/scrollbar_custom","ace/renderloop","ace/layer/font_metrics","ace/lib/event_emitter","ace/css/editor-css","ace/layer/decorators","ace/lib/useragent"],function(e,t,n){"use strict";var r=e("./lib/oop"),i=e("./lib/dom"),s=e("./lib/lang"),o=e("./config"),u=e("./layer/gutter").Gutter,a=e("./layer/marker").Marker,f=e("./layer/text").Text,l=e("./layer/cursor").Cursor,c=e("./scrollbar").HScrollBar,h=e("./scrollbar").VScrollBar,p=e("./scrollbar_custom").HScrollBar,d=e("./scrollbar_custom").VScrollBar,v=e("./renderloop").RenderLoop,m=e("./layer/font_metrics").FontMetrics,g=e("./lib/event_emitter").EventEmitter,y=e("./css/editor-css"),b=e("./layer/decorators").Decorator,w=e("./lib/useragent");i.importCssString(y,"ace_editor.css",!1);var E=function(){function e(e,t){var n=this;this.container=e||i.createElement("div"),i.addCssClass(this.container,"ace_editor"),i.HI_DPI&&i.addCssClass(this.container,"ace_hidpi"),this.setTheme(t),o.get("useStrictCSP")==null&&o.set("useStrictCSP",!1),this.$gutter=i.createElement("div"),this.$gutter.className="ace_gutter",this.container.appendChild(this.$gutter),this.$gutter.setAttribute("aria-hidden","true"),this.scroller=i.createElement("div"),this.scroller.className="ace_scroller",this.container.appendChild(this.scroller),this.content=i.createElement("div"),this.content.className="ace_content",this.scroller.appendChild(this.content),this.$gutterLayer=new u(this.$gutter),this.$gutterLayer.on("changeGutterWidth",this.onGutterResize.bind(this)),this.$markerBack=new a(this.content);var r=this.$textLayer=new f(this.content);this.canvas=r.element,this.$markerFront=new a(this.content),this.$cursorLayer=new l(this.content),this.$horizScroll=!1,this.$vScroll=!1,this.scrollBar=this.scrollBarV=new h(this.container,this),this.scrollBarH=new c(this.container,this),this.scrollBarV.on("scroll",function(e){n.$scrollAnimation||n.session.setScrollTop(e.data-n.scrollMargin.top)}),this.scrollBarH.on("scroll",function(e){n.$scrollAnimation||n.session.setScrollLeft(e.data-n.scrollMargin.left)}),this.scrollTop=0,this.scrollLeft=0,this.cursorPos={row:0,column:0},this.$fontMetrics=new m(this.container),this.$textLayer.$setFontMetrics(this.$fontMetrics),this.$textLayer.on("changeCharacterSize",function(e){n.updateCharacterSize(),n.onResize(!0,n.gutterWidth,n.$size.width,n.$size.height),n._signal("changeCharacterSize",e)}),this.$size={width:0,height:0,scrollerHeight:0,scrollerWidth:0,$dirty:!0},this.layerConfig={width:1,padding:0,firstRow:0,firstRowScreen:0,lastRow:0,lineHeight:0,characterWidth:0,minHeight:1,maxHeight:1,offset:0,height:1,gutterOffset:1},this.scrollMargin={left:0,right:0,top:0,bottom:0,v:0,h:0},this.margin={left:0,right:0,top:0,bottom:0,v:0,h:0},this.$keepTextAreaAtCursor=!w.isIOS,this.$loop=new v(this.$renderChanges.bind(this),this.container.ownerDocument.defaultView),this.$loop.schedule(this.CHANGE_FULL),this.updateCharacterSize(),this.setPadding(4),this.$addResizeObserver(),o.resetOptions(this),o._signal("renderer",this)}return e.prototype.updateCharacterSize=function(){this.$textLayer.allowBoldFonts!=this.$allowBoldFonts&&(this.$allowBoldFonts=this.$textLayer.allowBoldFonts,this.setStyle("ace_nobold",!this.$allowBoldFonts)),this.layerConfig.characterWidth=this.characterWidth=this.$textLayer.getCharacterWidth(),this.layerConfig.lineHeight=this.lineHeight=this.$textLayer.getLineHeight(),this.$updatePrintMargin(),i.setStyle(this.scroller.style,"line-height",this.lineHeight+"px")},e.prototype.setSession=function(e){this.session&&this.session.doc.off("changeNewLineMode",this.onChangeNewLineMode),this.session=e,e&&this.scrollMargin.top&&e.getScrollTop()<=0&&e.setScrollTop(-this.scrollMargin.top),this.$cursorLayer.setSession(e),this.$markerBack.setSession(e),this.$markerFront.setSession(e),this.$gutterLayer.setSession(e),this.$textLayer.setSession(e);if(!e)return;this.$loop.schedule(this.CHANGE_FULL),this.session.$setFontMetrics(this.$fontMetrics),this.scrollBarH.scrollLeft=this.scrollBarV.scrollTop=null,this.onChangeNewLineMode=this.onChangeNewLineMode.bind(this),this.onChangeNewLineMode(),this.session.doc.on("changeNewLineMode",this.onChangeNewLineMode)},e.prototype.updateLines=function(e,t,n){t===undefined&&(t=Infinity),this.$changedLines?(this.$changedLines.firstRow>e&&(this.$changedLines.firstRow=e),this.$changedLines.lastRow<t&&(this.$changedLines.lastRow=t)):this.$changedLines={firstRow:e,lastRow:t};if(this.$changedLines.lastRow<this.layerConfig.firstRow){if(!n)return;this.$changedLines.lastRow=this.layerConfig.lastRow}if(this.$changedLines.firstRow>this.layerConfig.lastRow)return;this.$loop.schedule(this.CHANGE_LINES)},e.prototype.onChangeNewLineMode=function(){this.$loop.schedule(this.CHANGE_TEXT),this.$textLayer.$updateEolChar(),this.session.$bidiHandler.setEolChar(this.$textLayer.EOL_CHAR)},e.prototype.onChangeTabSize=function(){this.$loop.schedule(this.CHANGE_TEXT|this.CHANGE_MARKER),this.$textLayer.onChangeTabSize()},e.prototype.updateText=function(){this.$loop.schedule(this.CHANGE_TEXT)},e.prototype.updateFull=function(e){e?this.$renderChanges(this.CHANGE_FULL,!0):this.$loop.schedule(this.CHANGE_FULL)},e.prototype.updateFontSize=function(){this.$textLayer.checkForSizeChanges()},e.prototype.$updateSizeAsync=function(){this.$loop.pending?this.$size.$dirty=!0:this.onResize()},e.prototype.onResize=function(e,t,n,r){if(this.resizing>2)return;this.resizing>0?this.resizing++:this.resizing=e?1:0;var i=this.container;r||(r=i.clientHeight||i.scrollHeight),n||(n=i.clientWidth||i.scrollWidth);var s=this.$updateCachedSize(e,t,n,r);this.$resizeTimer&&this.$resizeTimer.cancel();if(!this.$size.scrollerHeight||!n&&!r)return this.resizing=0;e&&(this.$gutterLayer.$padding=null),e?this.$renderChanges(s|this.$changes,!0):this.$loop.schedule(s|this.$changes),this.resizing&&(this.resizing=0),this.scrollBarH.scrollLeft=this.scrollBarV.scrollTop=null,this.$customScrollbar&&this.$updateCustomScrollbar(!0)},e.prototype.$updateCachedSize=function(e,t,n,r){r-=this.$extraHeight||0;var s=0,o=this.$size,u={width:o.width,height:o.height,scrollerHeight:o.scrollerHeight,scrollerWidth:o.scrollerWidth};r&&(e||o.height!=r)&&(o.height=r,s|=this.CHANGE_SIZE,o.scrollerHeight=o.height,this.$horizScroll&&(o.scrollerHeight-=this.scrollBarH.getHeight()),this.scrollBarV.setHeight(o.scrollerHeight),this.scrollBarV.element.style.bottom=this.scrollBarH.getHeight()+"px",s|=this.CHANGE_SCROLL);if(n&&(e||o.width!=n)){s|=this.CHANGE_SIZE,o.width=n,t==null&&(t=this.$showGutter?this.$gutter.offsetWidth:0),this.gutterWidth=t,i.setStyle(this.scrollBarH.element.style,"left",t+"px"),i.setStyle(this.scroller.style,"left",t+this.margin.left+"px"),o.scrollerWidth=Math.max(0,n-t-this.scrollBarV.getWidth()-this.margin.h),i.setStyle(this.$gutter.style,"left",this.margin.left+"px");var a=this.scrollBarV.getWidth()+"px";i.setStyle(this.scrollBarH.element.style,"right",a),i.setStyle(this.scroller.style,"right",a),i.setStyle(this.scroller.style,"bottom",this.scrollBarH.getHeight()),this.scrollBarH.setWidth(o.scrollerWidth);if(this.session&&this.session.getUseWrapMode()&&this.adjustWrapLimit()||e)s|=this.CHANGE_FULL}return o.$dirty=!n||!r,s&&this._signal("resize",u),s},e.prototype.onGutterResize=function(e){var t=this.$showGutter?e:0;t!=this.gutterWidth&&(this.$changes|=this.$updateCachedSize(!0,t,this.$size.width,this.$size.height)),this.session.getUseWrapMode()&&this.adjustWrapLimit()?this.$loop.schedule(this.CHANGE_FULL):this.$size.$dirty?this.$loop.schedule(this.CHANGE_FULL):this.$computeLayerConfig()},e.prototype.adjustWrapLimit=function(){var e=this.$size.scrollerWidth-this.$padding*2,t=Math.floor(e/this.characterWidth);return this.session.adjustWrapLimit(t,this.$showPrintMargin&&this.$printMarginColumn)},e.prototype.setAnimatedScroll=function(e){this.setOption("animatedScroll",e)},e.prototype.getAnimatedScroll=function(){return this.$animatedScroll},e.prototype.setShowInvisibles=function(e){this.setOption("showInvisibles",e),this.session.$bidiHandler.setShowInvisibles(e)},e.prototype.getShowInvisibles=function(){return this.getOption("showInvisibles")},e.prototype.getDisplayIndentGuides=function(){return this.getOption("displayIndentGuides")},e.prototype.setDisplayIndentGuides=function(e){this.setOption("displayIndentGuides",e)},e.prototype.getHighlightIndentGuides=function(){return this.getOption("highlightIndentGuides")},e.prototype.setHighlightIndentGuides=function(e){this.setOption("highlightIndentGuides",e)},e.prototype.setShowPrintMargin=function(e){this.setOption("showPrintMargin",e)},e.prototype.getShowPrintMargin=function(){return this.getOption("showPrintMargin")},e.prototype.setPrintMarginColumn=function(e){this.setOption("printMarginColumn",e)},e.prototype.getPrintMarginColumn=function(){return this.getOption("printMarginColumn")},e.prototype.getShowGutter=function(){return this.getOption("showGutter")},e.prototype.setShowGutter=function(e){return this.setOption("showGutter",e)},e.prototype.getFadeFoldWidgets=function(){return this.getOption("fadeFoldWidgets")},e.prototype.setFadeFoldWidgets=function(e){this.setOption("fadeFoldWidgets",e)},e.prototype.setHighlightGutterLine=function(e){this.setOption("highlightGutterLine",e)},e.prototype.getHighlightGutterLine=function(){return this.getOption("highlightGutterLine")},e.prototype.$updatePrintMargin=function(){if(!this.$showPrintMargin&&!this.$printMarginEl)return;if(!this.$printMarginEl){var e=i.createElement("div");e.className="ace_layer ace_print-margin-layer",this.$printMarginEl=i.createElement("div"),this.$printMarginEl.className="ace_print-margin",e.appendChild(this.$printMarginEl),this.content.insertBefore(e,this.content.firstChild)}var t=this.$printMarginEl.style;t.left=Math.round(this.characterWidth*this.$printMarginColumn+this.$padding)+"px",t.visibility=this.$showPrintMargin?"visible":"hidden",this.session&&this.session.$wrap==-1&&this.adjustWrapLimit()},e.prototype.getContainerElement=function(){return this.container},e.prototype.getMouseEventTarget=function(){return this.scroller},e.prototype.getTextAreaContainer=function(){return this.container},e.prototype.$moveTextAreaToCursor=function(){if(this.$isMousePressed)return;var e=this.textarea.style,t=this.$composition;if(!this.$keepTextAreaAtCursor&&!t){i.translate(this.textarea,-100,0);return}var n=this.$cursorLayer.$pixelPos;if(!n)return;t&&t.markerRange&&(n=this.$cursorLayer.getPixelPosition(t.markerRange.start,!0));var r=this.layerConfig,s=n.top,o=n.left;s-=r.offset;var u=t&&t.useTextareaForIME||w.isMobile?this.lineHeight:1;if(s<0||s>r.height-u){i.translate(this.textarea,0,0);return}var a=1,f=this.$size.height-u;if(!t)s+=this.lineHeight;else if(t.useTextareaForIME){var l=this.textarea.value;a=this.characterWidth*this.session.$getStringScreenWidth(l)[0]}else s+=this.lineHeight+2;o-=this.scrollLeft,o>this.$size.scrollerWidth-a&&(o=this.$size.scrollerWidth-a),o+=this.gutterWidth+this.margin.left,i.setStyle(e,"height",u+"px"),i.setStyle(e,"width",a+"px"),i.translate(this.textarea,Math.min(o,this.$size.scrollerWidth-a),Math.min(s,f))},e.prototype.getFirstVisibleRow=function(){return this.layerConfig.firstRow},e.prototype.getFirstFullyVisibleRow=function(){return this.layerConfig.firstRow+(this.layerConfig.offset===0?0:1)},e.prototype.getLastFullyVisibleRow=function(){var e=this.layerConfig,t=e.lastRow,n=this.session.documentToScreenRow(t,0)*e.lineHeight;return n-this.session.getScrollTop()>e.height-e.lineHeight?t-1:t},e.prototype.getLastVisibleRow=function(){return this.layerConfig.lastRow},e.prototype.setPadding=function(e){this.$padding=e,this.$textLayer.setPadding(e),this.$cursorLayer.setPadding(e),this.$markerFront.setPadding(e),this.$markerBack.setPadding(e),this.$loop.schedule(this.CHANGE_FULL),this.$updatePrintMargin()},e.prototype.setScrollMargin=function(e,t,n,r){var i=this.scrollMargin;i.top=e|0,i.bottom=t|0,i.right=r|0,i.left=n|0,i.v=i.top+i.bottom,i.h=i.left+i.right,i.top&&this.scrollTop<=0&&this.session&&this.session.setScrollTop(-i.top),this.updateFull()},e.prototype.setMargin=function(e,t,n,r){var i=this.margin;i.top=e|0,i.bottom=t|0,i.right=r|0,i.left=n|0,i.v=i.top+i.bottom,i.h=i.left+i.right,this.$updateCachedSize(!0,this.gutterWidth,this.$size.width,this.$size.height),this.updateFull()},e.prototype.getHScrollBarAlwaysVisible=function(){return this.$hScrollBarAlwaysVisible},e.prototype.setHScrollBarAlwaysVisible=function(e){this.setOption("hScrollBarAlwaysVisible",e)},e.prototype.getVScrollBarAlwaysVisible=function(){return this.$vScrollBarAlwaysVisible},e.prototype.setVScrollBarAlwaysVisible=function(e){this.setOption("vScrollBarAlwaysVisible",e)},e.prototype.$updateScrollBarV=function(){var e=this.layerConfig.maxHeight,t=this.$size.scrollerHeight;!this.$maxLines&&this.$scrollPastEnd&&(e-=(t-this.lineHeight)*this.$scrollPastEnd,this.scrollTop>e-t&&(e=this.scrollTop+t,this.scrollBarV.scrollTop=null)),this.scrollBarV.setScrollHeight(e+this.scrollMargin.v),this.scrollBarV.setScrollTop(this.scrollTop+this.scrollMargin.top)},e.prototype.$updateScrollBarH=function(){this.scrollBarH.setScrollWidth(this.layerConfig.width+2*this.$padding+this.scrollMargin.h),this.scrollBarH.setScrollLeft(this.scrollLeft+this.scrollMargin.left)},e.prototype.freeze=function(){this.$frozen=!0},e.prototype.unfreeze=function(){this.$frozen=!1},e.prototype.$renderChanges=function(e,t){this.$changes&&(e|=this.$changes,this.$changes=0);if(!this.session||!this.container.offsetWidth||this.$frozen||!e&&!t){this.$changes|=e;return}if(this.$size.$dirty)return this.$changes|=e,this.onResize(!0);this.lineHeight||this.$textLayer.checkForSizeChanges(),this._signal("beforeRender",e),this.session&&this.session.$bidiHandler&&this.session.$bidiHandler.updateCharacterWidths(this.$fontMetrics);var n=this.layerConfig;if(e&this.CHANGE_FULL||e&this.CHANGE_SIZE||e&this.CHANGE_TEXT||e&this.CHANGE_LINES||e&this.CHANGE_SCROLL||e&this.CHANGE_H_SCROLL){e|=this.$computeLayerConfig()|this.$loop.clear();if(n.firstRow!=this.layerConfig.firstRow&&n.firstRowScreen==this.layerConfig.firstRowScreen){var r=this.scrollTop+(n.firstRow-Math.max(this.layerConfig.firstRow,0))*this.lineHeight;r>0&&(this.scrollTop=r,e|=this.CHANGE_SCROLL,e|=this.$computeLayerConfig()|this.$loop.clear())}n=this.layerConfig,this.$updateScrollBarV(),e&this.CHANGE_H_SCROLL&&this.$updateScrollBarH(),i.translate(this.content,-this.scrollLeft,-n.offset);var s=n.width+2*this.$padding+"px",o=n.minHeight+"px";i.setStyle(this.content.style,"width",s),i.setStyle(this.content.style,"height",o)}e&this.CHANGE_H_SCROLL&&(i.translate(this.content,-this.scrollLeft,-n.offset),this.scroller.className=this.scrollLeft<=0?"ace_scroller ":"ace_scroller ace_scroll-left ",this.enableKeyboardAccessibility&&(this.scroller.className+=this.keyboardFocusClassName));if(e&this.CHANGE_FULL){this.$changedLines=null,this.$textLayer.update(n),this.$showGutter&&this.$gutterLayer.update(n),this.$customScrollbar&&this.$scrollDecorator.$updateDecorators(n),this.$markerBack.update(n),this.$markerFront.update(n),this.$cursorLayer.update(n),this.$moveTextAreaToCursor(),this._signal("afterRender",e);return}if(e&this.CHANGE_SCROLL){this.$changedLines=null,e&this.CHANGE_TEXT||e&this.CHANGE_LINES?this.$textLayer.update(n):this.$textLayer.scrollLines(n),this.$showGutter&&(e&this.CHANGE_GUTTER||e&this.CHANGE_LINES?this.$gutterLayer.update(n):this.$gutterLayer.scrollLines(n)),this.$customScrollbar&&this.$scrollDecorator.$updateDecorators(n),this.$markerBack.update(n),this.$markerFront.update(n),this.$cursorLayer.update(n),this.$moveTextAreaToCursor(),this._signal("afterRender",e);return}e&this.CHANGE_TEXT?(this.$changedLines=null,this.$textLayer.update(n),this.$showGutter&&this.$gutterLayer.update(n),this.$customScrollbar&&this.$scrollDecorator.$updateDecorators(n)):e&this.CHANGE_LINES?((this.$updateLines()||e&this.CHANGE_GUTTER&&this.$showGutter)&&this.$gutterLayer.update(n),this.$customScrollbar&&this.$scrollDecorator.$updateDecorators(n)):e&this.CHANGE_TEXT||e&this.CHANGE_GUTTER?(this.$showGutter&&this.$gutterLayer.update(n),this.$customScrollbar&&this.$scrollDecorator.$updateDecorators(n)):e&this.CHANGE_CURSOR&&(this.$highlightGutterLine&&this.$gutterLayer.updateLineHighlight(n),this.$customScrollbar&&this.$scrollDecorator.$updateDecorators(n)),e&this.CHANGE_CURSOR&&(this.$cursorLayer.update(n),this.$moveTextAreaToCursor()),e&(this.CHANGE_MARKER|this.CHANGE_MARKER_FRONT)&&this.$markerFront.update(n),e&(this.CHANGE_MARKER|this.CHANGE_MARKER_BACK)&&this.$markerBack.update(n),this._signal("afterRender",e)},e.prototype.$autosize=function(){var e=this.session.getScreenLength()*this.lineHeight,t=this.$maxLines*this.lineHeight,n=Math.min(t,Math.max((this.$minLines||1)*this.lineHeight,e))+this.scrollMargin.v+(this.$extraHeight||0);this.$horizScroll&&(n+=this.scrollBarH.getHeight()),this.$maxPixelHeight&&n>this.$maxPixelHeight&&(n=this.$maxPixelHeight);var r=n<=2*this.lineHeight,i=!r&&e>t;if(n!=this.desiredHeight||this.$size.height!=this.desiredHeight||i!=this.$vScroll){i!=this.$vScroll&&(this.$vScroll=i,this.scrollBarV.setVisible(i));var s=this.container.clientWidth;this.container.style.height=n+"px",this.$updateCachedSize(!0,this.$gutterWidth,s,n),this.desiredHeight=n,this._signal("autosize")}},e.prototype.$computeLayerConfig=function(){var e=this.session,t=this.$size,n=t.height<=2*this.lineHeight,r=this.session.getScreenLength(),i=r*this.lineHeight,s=this.$getLongestLine(),o=!n&&(this.$hScrollBarAlwaysVisible||t.scrollerWidth-s-2*this.$padding<0),u=this.$horizScroll!==o;u&&(this.$horizScroll=o,this.scrollBarH.setVisible(o));var a=this.$vScroll;this.$maxLines&&this.lineHeight>1&&this.$autosize();var f=t.scrollerHeight+this.lineHeight,l=!this.$maxLines&&this.$scrollPastEnd?(t.scrollerHeight-this.lineHeight)*this.$scrollPastEnd:0;i+=l;var c=this.scrollMargin;this.session.setScrollTop(Math.max(-c.top,Math.min(this.scrollTop,i-t.scrollerHeight+c.bottom))),this.session.setScrollLeft(Math.max(-c.left,Math.min(this.scrollLeft,s+2*this.$padding-t.scrollerWidth+c.right)));var h=!n&&(this.$vScrollBarAlwaysVisible||t.scrollerHeight-i+l<0||this.scrollTop>c.top),p=a!==h;p&&(this.$vScroll=h,this.scrollBarV.setVisible(h));var d=this.scrollTop%this.lineHeight,v=Math.ceil(f/this.lineHeight)-1,m=Math.max(0,Math.round((this.scrollTop-d)/this.lineHeight)),g=m+v,y,b,w=this.lineHeight;m=e.screenToDocumentRow(m,0);var E=e.getFoldLine(m);E&&(m=E.start.row),y=e.documentToScreenRow(m,0),b=e.getRowLength(m)*w,g=Math.min(e.screenToDocumentRow(g,0),e.getLength()-1),f=t.scrollerHeight+e.getRowLength(g)*w+b,d=this.scrollTop-y*w;var S=0;if(this.layerConfig.width!=s||u)S=this.CHANGE_H_SCROLL;if(u||p)S|=this.$updateCachedSize(!0,this.gutterWidth,t.width,t.height),this._signal("scrollbarVisibilityChanged"),p&&(s=this.$getLongestLine());return this.layerConfig={width:s,padding:this.$padding,firstRow:m,firstRowScreen:y,lastRow:g,lineHeight:w,characterWidth:this.characterWidth,minHeight:f,maxHeight:i,offset:d,gutterOffset:w?Math.max(0,Math.ceil((d+t.height-t.scrollerHeight)/w)):0,height:this.$size.scrollerHeight},this.session.$bidiHandler&&this.session.$bidiHandler.setContentWidth(s-this.$padding),S},e.prototype.$updateLines=function(){if(!this.$changedLines)return;var e=this.$changedLines.firstRow,t=this.$changedLines.lastRow;this.$changedLines=null;var n=this.layerConfig;if(e>n.lastRow+1)return;if(t<n.firstRow)return;if(t===Infinity){this.$showGutter&&this.$gutterLayer.update(n),this.$textLayer.update(n);return}return this.$textLayer.updateLines(n,e,t),!0},e.prototype.$getLongestLine=function(){var e=this.session.getScreenWidth();return this.showInvisibles&&!this.session.$useWrapMode&&(e+=1),this.$textLayer&&e>this.$textLayer.MAX_LINE_LENGTH&&(e=this.$textLayer.MAX_LINE_LENGTH+30),Math.max(this.$size.scrollerWidth-2*this.$padding,Math.round(e*this.characterWidth))},e.prototype.updateFrontMarkers=function(){this.$markerFront.setMarkers(this.session.getMarkers(!0)),this.$loop.schedule(this.CHANGE_MARKER_FRONT)},e.prototype.updateBackMarkers=function(){this.$markerBack.setMarkers(this.session.getMarkers()),this.$loop.schedule(this.CHANGE_MARKER_BACK)},e.prototype.addGutterDecoration=function(e,t){this.$gutterLayer.addGutterDecoration(e,t)},e.prototype.removeGutterDecoration=function(e,t){this.$gutterLayer.removeGutterDecoration(e,t)},e.prototype.updateBreakpoints=function(e){this._rows=e,this.$loop.schedule(this.CHANGE_GUTTER)},e.prototype.setAnnotations=function(e){this.$gutterLayer.setAnnotations(e),this.$loop.schedule(this.CHANGE_GUTTER)},e.prototype.updateCursor=function(){this.$loop.schedule(this.CHANGE_CURSOR)},e.prototype.hideCursor=function(){this.$cursorLayer.hideCursor()},e.prototype.showCursor=function(){this.$cursorLayer.showCursor()},e.prototype.scrollSelectionIntoView=function(e,t,n){this.scrollCursorIntoView(e,n),this.scrollCursorIntoView(t,n)},e.prototype.scrollCursorIntoView=function(e,t,n){if(this.$size.scrollerHeight===0)return;var r=this.$cursorLayer.getPixelPosition(e),i=r.left,s=r.top,o=n&&n.top||0,u=n&&n.bottom||0;this.$scrollAnimation&&(this.$stopAnimation=!0);var a=this.$scrollAnimation?this.session.getScrollTop():this.scrollTop;a+o>s?(t&&a+o>s+this.lineHeight&&(s-=t*this.$size.scrollerHeight),s===0&&(s=-this.scrollMargin.top),this.session.setScrollTop(s)):a+this.$size.scrollerHeight-u<s+this.lineHeight&&(t&&a+this.$size.scrollerHeight-u<s-this.lineHeight&&(s+=t*this.$size.scrollerHeight),this.session.setScrollTop(s+this.lineHeight+u-this.$size.scrollerHeight));var f=this.scrollLeft,l=2*this.layerConfig.characterWidth;i-l<f?(i-=l,i<this.$padding+l&&(i=-this.scrollMargin.left),this.session.setScrollLeft(i)):(i+=l,f+this.$size.scrollerWidth<i+this.characterWidth?this.session.setScrollLeft(Math.round(i+this.characterWidth-this.$size.scrollerWidth)):f<=this.$padding&&i-f<this.characterWidth&&this.session.setScrollLeft(0))},e.prototype.getScrollTop=function(){return this.session.getScrollTop()},e.prototype.getScrollLeft=function(){return this.session.getScrollLeft()},e.prototype.getScrollTopRow=function(){return this.scrollTop/this.lineHeight},e.prototype.getScrollBottomRow=function(){return Math.max(0,Math.floor((this.scrollTop+this.$size.scrollerHeight)/this.lineHeight)-1)},e.prototype.scrollToRow=function(e){this.session.setScrollTop(e*this.lineHeight)},e.prototype.alignCursor=function(e,t){typeof e=="number"&&(e={row:e,column:0});var n=this.$cursorLayer.getPixelPosition(e),r=this.$size.scrollerHeight-this.lineHeight,i=n.top-r*(t||0);return this.session.setScrollTop(i),i},e.prototype.$calcSteps=function(e,t){var n=0,r=this.STEPS,i=[],s=function(e,t,n){return n*(Math.pow(e-1,3)+1)+t};for(n=0;n<r;++n)i.push(s(n/this.STEPS,e,t-e));return i},e.prototype.scrollToLine=function(e,t,n,r){var i=this.$cursorLayer.getPixelPosition({row:e,column:0}),s=i.top;t&&(s-=this.$size.scrollerHeight/2);var o=this.scrollTop;this.session.setScrollTop(s),n!==!1&&this.animateScrolling(o,r)},e.prototype.animateScrolling=function(e,t){function o(){r.$timer=clearInterval(r.$timer),r.$scrollAnimation=null,r.$stopAnimation=!1,t&&t()}var n=this.scrollTop;if(!this.$animatedScroll)return;var r=this;if(e==n)return;if(this.$scrollAnimation){var i=this.$scrollAnimation.steps;if(i.length){e=i[0];if(e==n)return}}var s=r.$calcSteps(e,n);this.$scrollAnimation={from:e,to:n,steps:s},clearInterval(this.$timer),r.session.setScrollTop(s.shift()),r.session.$scrollTop=n,this.$timer=setInterval(function(){if(r.$stopAnimation){o();return}if(!r.session)return clearInterval(r.$timer);s.length?(r.session.setScrollTop(s.shift()),r.session.$scrollTop=n):n!=null?(r.session.$scrollTop=-1,r.session.setScrollTop(n),n=null):o()},10)},e.prototype.scrollToY=function(e){this.scrollTop!==e&&(this.$loop.schedule(this.CHANGE_SCROLL),this.scrollTop=e)},e.prototype.scrollToX=function(e){this.scrollLeft!==e&&(this.scrollLeft=e),this.$loop.schedule(this.CHANGE_H_SCROLL)},e.prototype.scrollTo=function(e,t){this.session.setScrollTop(t),this.session.setScrollLeft(e)},e.prototype.scrollBy=function(e,t){t&&this.session.setScrollTop(this.session.getScrollTop()+t),e&&this.session.setScrollLeft(this.session.getScrollLeft()+e)},e.prototype.isScrollableBy=function(e,t){if(t<0&&this.session.getScrollTop()>=1-this.scrollMargin.top)return!0;if(t>0&&this.session.getScrollTop()+this.$size.scrollerHeight-this.layerConfig.maxHeight<-1+this.scrollMargin.bottom)return!0;if(e<0&&this.session.getScrollLeft()>=1-this.scrollMargin.left)return!0;if(e>0&&this.session.getScrollLeft()+this.$size.scrollerWidth-this.layerConfig.width<-1+this.scrollMargin.right)return!0},e.prototype.pixelToScreenCoordinates=function(e,t){var n;if(this.$hasCssTransforms){n={top:0,left:0};var r=this.$fontMetrics.transformCoordinates([e,t]);e=r[1]-this.gutterWidth-this.margin.left,t=r[0]}else n=this.scroller.getBoundingClientRect();var i=e+this.scrollLeft-n.left-this.$padding,s=i/this.characterWidth,o=Math.floor((t+this.scrollTop-n.top)/this.lineHeight),u=this.$blockCursor?Math.floor(s):Math.round(s);return{row:o,column:u,side:s-u>0?1:-1,offsetX:i}},e.prototype.screenToTextCoordinates=function(e,t){var n;if(this.$hasCssTransforms){n={top:0,left:0};var r=this.$fontMetrics.transformCoordinates([e,t]);e=r[1]-this.gutterWidth-this.margin.left,t=r[0]}else n=this.scroller.getBoundingClientRect();var i=e+this.scrollLeft-n.left-this.$padding,s=i/this.characterWidth,o=this.$blockCursor?Math.floor(s):Math.round(s),u=Math.floor((t+this.scrollTop-n.top)/this.lineHeight);return this.session.screenToDocumentPosition(u,Math.max(o,0),i)},e.prototype.textToScreenCoordinates=function(e,t){var n=this.scroller.getBoundingClientRect(),r=this.session.documentToScreenPosition(e,t),i=this.$padding+(this.session.$bidiHandler.isBidiRow(r.row,e)?this.session.$bidiHandler.getPosLeft(r.column):Math.round(r.column*this.characterWidth)),s=r.row*this.lineHeight;return{pageX:n.left+i-this.scrollLeft,pageY:n.top+s-this.scrollTop}},e.prototype.visualizeFocus=function(){i.addCssClass(this.container,"ace_focus")},e.prototype.visualizeBlur=function(){i.removeCssClass(this.container,"ace_focus")},e.prototype.showComposition=function(e){this.$composition=e,e.cssText||(e.cssText=this.textarea.style.cssText),e.useTextareaForIME==undefined&&(e.useTextareaForIME=this.$useTextareaForIME),this.$useTextareaForIME?(i.addCssClass(this.textarea,"ace_composition"),this.textarea.style.cssText="",this.$moveTextAreaToCursor(),this.$cursorLayer.element.style.display="none"):e.markerId=this.session.addMarker(e.markerRange,"ace_composition_marker","text")},e.prototype.setCompositionText=function(e){var t=this.session.selection.cursor;this.addToken(e,"composition_placeholder",t.row,t.column),this.$moveTextAreaToCursor()},e.prototype.hideComposition=function(){if(!this.$composition)return;this.$composition.markerId&&this.session.removeMarker(this.$composition.markerId),i.removeCssClass(this.textarea,"ace_composition"),this.textarea.style.cssText=this.$composition.cssText;var e=this.session.selection.cursor;this.removeExtraToken(e.row,e.column),this.$composition=null,this.$cursorLayer.element.style.display=""},e.prototype.setGhostText=function(e,t){var n=this.session.selection.cursor,r=t||{row:n.row,column:n.column};this.removeGhostText();var i=this.$calculateWrappedTextChunks(e,r);this.addToken(i[0].text,"ghost_text",r.row,r.column),this.$ghostText={text:e,position:{row:r.row,column:r.column}};if(i.length>1){var s=i.slice(1).map(function(e){return"<div".concat(e.wrapped?' class="ghost_text_line_wrapped"':"",">").concat(e.text,"</div>")});this.$ghostTextWidget={html:s.join(""),row:r.row,column:r.column,className:"ace_ghost_text"},this.session.widgetManager.addLineWidget(this.$ghostTextWidget);var o=this.$cursorLayer.getPixelPosition(r,!0),u=this.container,a=u.getBoundingClientRect().height,f=i.length*this.lineHeight,l=f<a-o.top;if(l)return;f<a?this.scrollBy(0,(i.length-1)*this.lineHeight):this.scrollToRow(r.row)}},e.prototype.$calculateWrappedTextChunks=function(e,t){var n=this.$size.scrollerWidth-this.$padding*2,r=Math.floor(n/this.characterWidth)-2;r=r<=0?60:r;var i=e.split(/\r?\n/),s=[];for(var o=0;o<i.length;o++){var u=this.session.$getDisplayTokens(i[o],t.column),a=this.session.$computeWrapSplits(u,r,this.session.$tabSize);if(a.length>0){var f=0;a.push(i[o].length);for(var l=0;l<a.length;l++){var c=i[o].slice(f,a[l]);s.push({text:c,wrapped:!0}),f=a[l]}}else s.push({text:i[o],wrapped:!1})}return s},e.prototype.removeGhostText=function(){if(!this.$ghostText)return;var e=this.$ghostText.position;this.removeExtraToken(e.row,e.column),this.$ghostTextWidget&&(this.session.widgetManager.removeLineWidget(this.$ghostTextWidget),this.$ghostTextWidget=null),this.$ghostText=null},e.prototype.addToken=function(e,t,n,r){var i=this.session;i.bgTokenizer.lines[n]=null;var s={type:t,value:e},o=i.getTokens(n);if(r==null||!o.length)o.push(s);else{var u=0;for(var a=0;a<o.length;a++){var f=o[a];u+=f.value.length;if(r<=u){var l=f.value.length-(u-r),c=f.value.slice(0,l),h=f.value.slice(l);o.splice(a,1,{type:f.type,value:c},s,{type:f.type,value:h});break}}}this.updateLines(n,n)},e.prototype.removeExtraToken=function(e,t){this.session.bgTokenizer.lines[e]=null,this.updateLines(e,e)},e.prototype.setTheme=function(e,t){function s(r){if(n.$themeId!=e)return t&&t();if(!r||!r.cssClass)throw new Error("couldn't load module "+e+" or it didn't call define");r.$id&&(n.$themeId=r.$id),i.importCssString(r.cssText,r.cssClass,n.container),n.theme&&i.removeCssClass(n.container,n.theme.cssClass);var s="padding"in r?r.padding:"padding"in(n.theme||{})?4:n.$padding;n.$padding&&s!=n.$padding&&n.setPadding(s),n.$theme=r.cssClass,n.theme=r,i.addCssClass(n.container,r.cssClass),i.setCssClass(n.container,"ace_dark",r.isDark),n.$size&&(n.$size.width=0,n.$updateSizeAsync()),n._dispatchEvent("themeLoaded",{theme:r}),t&&t()}var n=this;this.$themeId=e,n._dispatchEvent("themeChange",{theme:e});if(!e||typeof e=="string"){var r=e||this.$options.theme.initialValue;o.loadModule(["theme",r],s)}else s(e)},e.prototype.getTheme=function(){return this.$themeId},e.prototype.setStyle=function(e,t){i.setCssClass(this.container,e,t!==!1)},e.prototype.unsetStyle=function(e){i.removeCssClass(this.container,e)},e.prototype.setCursorStyle=function(e){i.setStyle(this.scroller.style,"cursor",e)},e.prototype.setMouseCursor=function(e){i.setStyle(this.scroller.style,"cursor",e)},e.prototype.attachToShadowRoot=function(){i.importCssString(y,"ace_editor.css",this.container)},e.prototype.destroy=function(){this.freeze(),this.$fontMetrics.destroy(),this.$cursorLayer.destroy(),this.removeAllListeners(),this.container.textContent="",this.setOption("useResizeObserver",!1)},e.prototype.$updateCustomScrollbar=function(e){var t=this;this.$horizScroll=this.$vScroll=null,this.scrollBarV.element.remove(),this.scrollBarH.element.remove(),this.$scrollDecorator&&delete this.$scrollDecorator,e===!0?(this.scrollBarV=new d(this.container,this),this.scrollBarH=new p(this.container,this),this.scrollBarV.setHeight(this.$size.scrollerHeight),this.scrollBarH.setWidth(this.$size.scrollerWidth),this.scrollBarV.addEventListener("scroll",function(e){t.$scrollAnimation||t.session.setScrollTop(e.data-t.scrollMargin.top)}),this.scrollBarH.addEventListener("scroll",function(e){t.$scrollAnimation||t.session.setScrollLeft(e.data-t.scrollMargin.left)}),this.$scrollDecorator=new b(this.scrollBarV,this),this.$scrollDecorator.$updateDecorators()):(this.scrollBarV=new h(this.container,this),this.scrollBarH=new c(this.container,this),this.scrollBarV.addEventListener("scroll",function(e){t.$scrollAnimation||t.session.setScrollTop(e.data-t.scrollMargin.top)}),this.scrollBarH.addEventListener("scroll",function(e){t.$scrollAnimation||t.session.setScrollLeft(e.data-t.scrollMargin.left)}))},e.prototype.$addResizeObserver=function(){if(!window.ResizeObserver||this.$resizeObserver)return;var e=this;this.$resizeTimer=s.delayedCall(function(){e.destroyed||e.onResize()},50),this.$resizeObserver=new window.ResizeObserver(function(t){var n=t[0].contentRect.width,r=t[0].contentRect.height;Math.abs(e.$size.width-n)>1||Math.abs(e.$size.height-r)>1?e.$resizeTimer.delay():e.$resizeTimer.cancel()}),this.$resizeObserver.observe(this.container)},e}();E.prototype.CHANGE_CURSOR=1,E.prototype.CHANGE_MARKER=2,E.prototype.CHANGE_GUTTER=4,E.prototype.CHANGE_SCROLL=8,E.prototype.CHANGE_LINES=16,E.prototype.CHANGE_TEXT=32,E.prototype.CHANGE_SIZE=64,E.prototype.CHANGE_MARKER_BACK=128,E.prototype.CHANGE_MARKER_FRONT=256,E.prototype.CHANGE_FULL=512,E.prototype.CHANGE_H_SCROLL=1024,E.prototype.$changes=0,E.prototype.$padding=null,E.prototype.$frozen=!1,E.prototype.STEPS=8,r.implement(E.prototype,g),o.defineOptions(E.prototype,"renderer",{useResizeObserver:{set:function(e){!e&&this.$resizeObserver?(this.$resizeObserver.disconnect(),this.$resizeTimer.cancel(),this.$resizeTimer=this.$resizeObserver=null):e&&!this.$resizeObserver&&this.$addResizeObserver()}},animatedScroll:{initialValue:!1},showInvisibles:{set:function(e){this.$textLayer.setShowInvisibles(e)&&this.$loop.schedule(this.CHANGE_TEXT)},initialValue:!1},showPrintMargin:{set:function(){this.$updatePrintMargin()},initialValue:!0},printMarginColumn:{set:function(){this.$updatePrintMargin()},initialValue:80},printMargin:{set:function(e){typeof e=="number"&&(this.$printMarginColumn=e),this.$showPrintMargin=!!e,this.$updatePrintMargin()},get:function(){return this.$showPrintMargin&&this.$printMarginColumn}},showGutter:{set:function(e){this.$gutter.style.display=e?"block":"none",this.$loop.schedule(this.CHANGE_FULL),this.onGutterResize()},initialValue:!0},useSvgGutterIcons:{set:function(e){this.$gutterLayer.$useSvgGutterIcons=e},initialValue:!1},showFoldedAnnotations:{set:function(e){this.$gutterLayer.$showFoldedAnnotations=e},initialValue:!1},fadeFoldWidgets:{set:function(e){i.setCssClass(this.$gutter,"ace_fade-fold-widgets",e)},initialValue:!1},showFoldWidgets:{set:function(e){this.$gutterLayer.setShowFoldWidgets(e),this.$loop.schedule(this.CHANGE_GUTTER)},initialValue:!0},displayIndentGuides:{set:function(e){this.$textLayer.setDisplayIndentGuides(e)&&this.$loop.schedule(this.CHANGE_TEXT)},initialValue:!0},highlightIndentGuides:{set:function(e){this.$textLayer.setHighlightIndentGuides(e)==1?this.$textLayer.$highlightIndentGuide():this.$textLayer.$clearActiveIndentGuide(this.$textLayer.$lines.cells)},initialValue:!0},highlightGutterLine:{set:function(e){this.$gutterLayer.setHighlightGutterLine(e),this.$loop.schedule(this.CHANGE_GUTTER)},initialValue:!0},hScrollBarAlwaysVisible:{set:function(e){(!this.$hScrollBarAlwaysVisible||!this.$horizScroll)&&this.$loop.schedule(this.CHANGE_SCROLL)},initialValue:!1},vScrollBarAlwaysVisible:{set:function(e){(!this.$vScrollBarAlwaysVisible||!this.$vScroll)&&this.$loop.schedule(this.CHANGE_SCROLL)},initialValue:!1},fontSize:{set:function(e){typeof e=="number"&&(e+="px"),this.container.style.fontSize=e,this.updateFontSize()},initialValue:12},fontFamily:{set:function(e){this.container.style.fontFamily=e,this.updateFontSize()}},maxLines:{set:function(e){this.updateFull()}},minLines:{set:function(e){this.$minLines<562949953421311||(this.$minLines=0),this.updateFull()}},maxPixelHeight:{set:function(e){this.updateFull()},initialValue:0},scrollPastEnd:{set:function(e){e=+e||0;if(this.$scrollPastEnd==e)return;this.$scrollPastEnd=e,this.$loop.schedule(this.CHANGE_SCROLL)},initialValue:0,handlesSet:!0},fixedWidthGutter:{set:function(e){this.$gutterLayer.$fixedWidth=!!e,this.$loop.schedule(this.CHANGE_GUTTER)}},customScrollbar:{set:function(e){this.$updateCustomScrollbar(e)},initialValue:!1},theme:{set:function(e){this.setTheme(e)},get:function(){return this.$themeId||this.theme},initialValue:"./theme/textmate",handlesSet:!0},hasCssTransforms:{},useTextareaForIME:{initialValue:!w.isMobile&&!w.isIE}}),t.VirtualRenderer=E}),define("ace/worker/worker_client",["require","exports","module","ace/lib/oop","ace/lib/net","ace/lib/event_emitter","ace/config"],function(e,t,n){"use strict";function u(e){var t="importScripts('"+i.qualifyURL(e)+"');";try{return new Blob([t],{type:"application/javascript"})}catch(n){var r=window.BlobBuilder||window.WebKitBlobBuilder||window.MozBlobBuilder,s=new r;return s.append(t),s.getBlob("application/javascript")}}function a(e){if(typeof Worker=="undefined")return{postMessage:function(){},terminate:function(){}};if(o.get("loadWorkerFromBlob")){var t=u(e),n=window.URL||window.webkitURL,r=n.createObjectURL(t);return new Worker(r)}return new Worker(e)}var r=e("../lib/oop"),i=e("../lib/net"),s=e("../lib/event_emitter").EventEmitter,o=e("../config"),f=function(e){e.postMessage||(e=this.$createWorkerFromOldConfig.apply(this,arguments)),this.$worker=e,this.$sendDeltaQueue=this.$sendDeltaQueue.bind(this),this.changeListener=this.changeListener.bind(this),this.onMessage=this.onMessage.bind(this),this.callbackId=1,this.callbacks={},this.$worker.onmessage=this.onMessage};(function(){r.implement(this,s),this.$createWorkerFromOldConfig=function(t,n,r,i,s){e.nameToUrl&&!e.toUrl&&(e.toUrl=e.nameToUrl);if(o.get("packaged")||!e.toUrl)i=i||o.moduleUrl(n,"worker");else{var u=this.$normalizePath;i=i||u(e.toUrl("ace/worker/worker.js",null,"_"));var f={};t.forEach(function(t){f[t]=u(e.toUrl(t,null,"_").replace(/(\.js)?(\?.*)?$/,""))})}return this.$worker=a(i),s&&this.send("importScripts",s),this.$worker.postMessage({init:!0,tlns:f,module:n,classname:r}),this.$worker},this.onMessage=function(e){var t=e.data;switch(t.type){case"event":this._signal(t.name,{data:t.data});break;case"call":var n=this.callbacks[t.id];n&&(n(t.data),delete this.callbacks[t.id]);break;case"error":this.reportError(t.data);break;case"log":window.console&&console.log&&console.log.apply(console,t.data)}},this.reportError=function(e){window.console&&console.error&&console.error(e)},this.$normalizePath=function(e){return i.qualifyURL(e)},this.terminate=function(){this._signal("terminate",{}),this.deltaQueue=null,this.$worker.terminate(),this.$worker.onerror=function(e){e.preventDefault()},this.$worker=null,this.$doc&&this.$doc.off("change",this.changeListener),this.$doc=null},this.send=function(e,t){this.$worker.postMessage({command:e,args:t})},this.call=function(e,t,n){if(n){var r=this.callbackId++;this.callbacks[r]=n,t.push(r)}this.send(e,t)},this.emit=function(e,t){try{t.data&&t.data.err&&(t.data.err={message:t.data.err.message,stack:t.data.err.stack,code:t.data.err.code}),this.$worker&&this.$worker.postMessage({event:e,data:{data:t.data}})}catch(n){console.error(n.stack)}},this.attachToDocument=function(e){this.$doc&&this.terminate(),this.$doc=e,this.call("setValue",[e.getValue()]),e.on("change",this.changeListener,!0)},this.changeListener=function(e){this.deltaQueue||(this.deltaQueue=[],setTimeout(this.$sendDeltaQueue,0)),e.action=="insert"?this.deltaQueue.push(e.start,e.lines):this.deltaQueue.push(e.start,e.end)},this.$sendDeltaQueue=function(){var e=this.deltaQueue;if(!e)return;this.deltaQueue=null,e.length>50&&e.length>this.$doc.getLength()>>1?this.call("setValue",[this.$doc.getValue()]):this.emit("change",{data:e})}}).call(f.prototype);var l=function(e,t,n){var r=null,i=!1,u=Object.create(s),a=[],l=new f({messageBuffer:a,terminate:function(){},postMessage:function(e){a.push(e);if(!r)return;i?setTimeout(c):c()}});l.setEmitSync=function(e){i=e};var c=function(){var e=a.shift();e.command?r[e.command].apply(r,e.args):e.event&&u._signal(e.event,e.data)};return u.postMessage=function(e){l.onMessage({data:e})},u.callback=function(e,t){this.postMessage({type:"call",id:t,data:e})},u.emit=function(e,t){this.postMessage({type:"event",name:e,data:t})},o.loadModule(["worker",t],function(e){r=new e[n](u);while(a.length)c()}),l};t.UIWorkerClient=l,t.WorkerClient=f,t.createWorker=a}),define("ace/placeholder",["require","exports","module","ace/range","ace/lib/event_emitter","ace/lib/oop"],function(e,t,n){"use strict";var r=e("./range").Range,i=e("./lib/event_emitter").EventEmitter,s=e("./lib/oop"),o=function(){function e(e,t,n,r,i,s){var o=this;this.length=t,this.session=e,this.doc=e.getDocument(),this.mainClass=i,this.othersClass=s,this.$onUpdate=this.onUpdate.bind(this),this.doc.on("change",this.$onUpdate,!0),this.$others=r,this.$onCursorChange=function(){setTimeout(function(){o.onCursorChange()})},this.$pos=n;var u=e.getUndoManager().$undoStack||e.getUndoManager().$undostack||{length:-1};this.$undoStackDepth=u.length,this.setup(),e.selection.on("changeCursor",this.$onCursorChange)}return e.prototype.setup=function(){var e=this,t=this.doc,n=this.session;this.selectionBefore=n.selection.toJSON(),n.selection.inMultiSelectMode&&n.selection.toSingleRange(),this.pos=t.createAnchor(this.$pos.row,this.$pos.column);var i=this.pos;i.$insertRight=!0,i.detach(),i.markerId=n.addMarker(new r(i.row,i.column,i.row,i.column+this.length),this.mainClass,null,!1),this.others=[],this.$others.forEach(function(n){var r=t.createAnchor(n.row,n.column);r.$insertRight=!0,r.detach(),e.others.push(r)}),n.setUndoSelect(!1)},e.prototype.showOtherMarkers=function(){if(this.othersActive)return;var e=this.session,t=this;this.othersActive=!0,this.others.forEach(function(n){n.markerId=e.addMarker(new r(n.row,n.column,n.row,n.column+t.length),t.othersClass,null,!1)})},e.prototype.hideOtherMarkers=function(){if(!this.othersActive)return;this.othersActive=!1;for(var e=0;e<this.others.length;e++)this.session.removeMarker(this.others[e].markerId)},e.prototype.onUpdate=function(e){if(this.$updating)return this.updateAnchors(e);var t=e;if(t.start.row!==t.end.row)return;if(t.start.row!==this.pos.row)return;this.$updating=!0;var n=e.action==="insert"?t.end.column-t.start.column:t.start.column-t.end.column,i=t.start.column>=this.pos.column&&t.start.column<=this.pos.column+this.length+1,s=t.start.column-this.pos.column;this.updateAnchors(e),i&&(this.length+=n);if(i&&!this.session.$fromUndo)if(e.action==="insert")for(var o=this.others.length-1;o>=0;o--){var u=this.others[o],a={row:u.row,column:u.column+s};this.doc.insertMergedLines(a,e.lines)}else if(e.action==="remove")for(var o=this.others.length-1;o>=0;o--){var u=this.others[o],a={row:u.row,column:u.column+s};this.doc.remove(new r(a.row,a.column,a.row,a.column-n))}this.$updating=!1,this.updateMarkers()},e.prototype.updateAnchors=function(e){this.pos.onChange(e);for(var t=this.others.length;t--;)this.others[t].onChange(e);this.updateMarkers()},e.prototype.updateMarkers=function(){if(this.$updating)return;var e=this,t=this.session,n=function(n,i){t.removeMarker(n.markerId),n.markerId=t.addMarker(new r(n.row,n.column,n.row,n.column+e.length),i,null,!1)};n(this.pos,this.mainClass);for(var i=this.others.length;i--;)n(this.others[i],this.othersClass)},e.prototype.onCursorChange=function(e){if(this.$updating||!this.session)return;var t=this.session.selection.getCursor();t.row===this.pos.row&&t.column>=this.pos.column&&t.column<=this.pos.column+this.length?(this.showOtherMarkers(),this._emit("cursorEnter",e)):(this.hideOtherMarkers(),this._emit("cursorLeave",e))},e.prototype.detach=function(){this.session.removeMarker(this.pos&&this.pos.markerId),this.hideOtherMarkers(),this.doc.off("change",this.$onUpdate),this.session.selection.off("changeCursor",this.$onCursorChange),this.session.setUndoSelect(!0),this.session=null},e.prototype.cancel=function(){if(this.$undoStackDepth===-1)return;var e=this.session.getUndoManager(),t=(e.$undoStack||e.$undostack).length-this.$undoStackDepth;for(var n=0;n<t;n++)e.undo(this.session,!0);this.selectionBefore&&this.session.selection.fromJSON(this.selectionBefore)},e}();s.implement(o.prototype,i),t.PlaceHolder=o}),define("ace/mouse/multi_select_handler",["require","exports","module","ace/lib/event","ace/lib/useragent"],function(e,t,n){function s(e,t){return e.row==t.row&&e.column==t.column}function o(e){var t=e.domEvent,n=t.altKey,o=t.shiftKey,u=t.ctrlKey,a=e.getAccelKey(),f=e.getButton();u&&i.isMac&&(f=t.button);if(e.editor.inMultiSelectMode&&f==2){e.editor.textInput.onContextMenu(e.domEvent);return}if(!u&&!n&&!a){f===0&&e.editor.inMultiSelectMode&&e.editor.exitMultiSelectMode();return}if(f!==0)return;var l=e.editor,c=l.selection,h=l.inMultiSelectMode,p=e.getDocumentPosition(),d=c.getCursor(),v=e.inSelection()||c.isEmpty()&&s(p,d),m=e.x,g=e.y,y=function(e){m=e.clientX,g=e.clientY},b=l.session,w=l.renderer.pixelToScreenCoordinates(m,g),E=w,S;if(l.$mouseHandler.$enableJumpToDef)u&&n||a&&n?S=o?"block":"add":n&&l.$blockSelectEnabled&&(S="block");else if(a&&!n){S="add";if(!h&&o)return}else n&&l.$blockSelectEnabled&&(S="block");S&&i.isMac&&t.ctrlKey&&l.$mouseHandler.cancelContextMenu();if(S=="add"){if(!h&&v)return;if(!h){var x=c.toOrientedRange();l.addSelectionMarker(x)}var T=c.rangeList.rangeAtPoint(p);l.inVirtualSelectionMode=!0,o&&(T=null,x=c.ranges[0]||x,l.removeSelectionMarker(x)),l.once("mouseup",function(){var e=c.toOrientedRange();T&&e.isEmpty()&&s(T.cursor,e.cursor)?c.substractPoint(e.cursor):(o?c.substractPoint(x.cursor):x&&(l.removeSelectionMarker(x),c.addRange(x)),c.addRange(e)),l.inVirtualSelectionMode=!1})}else if(S=="block"){e.stop(),l.inVirtualSelectionMode=!0;var N,C=[],k=function(){var e=l.renderer.pixelToScreenCoordinates(m,g),t=b.screenToDocumentPosition(e.row,e.column,e.offsetX);if(s(E,e)&&s(t,c.lead))return;E=e,l.selection.moveToPosition(t),l.renderer.scrollCursorIntoView(),l.removeSelectionMarkers(C),C=c.rectangularRangeBlock(E,w),l.$mouseHandler.$clickSelection&&C.length==1&&C[0].isEmpty()&&(C[0]=l.$mouseHandler.$clickSelection.clone()),C.forEach(l.addSelectionMarker,l),l.updateSelectionMarkers()};h&&!a?c.toSingleRange():!h&&a&&(N=c.toOrientedRange(),l.addSelectionMarker(N)),o?w=b.documentToScreenPosition(c.lead):c.moveToPosition(p),E={row:-1,column:-1};var L=function(e){k(),clearInterval(O),l.removeSelectionMarkers(C),C.length||(C=[c.toOrientedRange()]),N&&(l.removeSelectionMarker(N),c.toSingleRange(N));for(var t=0;t<C.length;t++)c.addRange(C[t]);l.inVirtualSelectionMode=!1,l.$mouseHandler.$clickSelection=null},A=k;r.capture(l.container,y,L);var O=setInterval(function(){A()},20);return e.preventDefault()}}var r=e("../lib/event"),i=e("../lib/useragent");t.onMouseDown=o}),define("ace/commands/multi_select_commands",["require","exports","module","ace/keyboard/hash_handler"],function(e,t,n){t.defaultCommands=[{name:"addCursorAbove",description:"Add cursor above",exec:function(e){e.selectMoreLines(-1)},bindKey:{win:"Ctrl-Alt-Up",mac:"Ctrl-Alt-Up"},scrollIntoView:"cursor",readOnly:!0},{name:"addCursorBelow",description:"Add cursor below",exec:function(e){e.selectMoreLines(1)},bindKey:{win:"Ctrl-Alt-Down",mac:"Ctrl-Alt-Down"},scrollIntoView:"cursor",readOnly:!0},{name:"addCursorAboveSkipCurrent",description:"Add cursor above (skip current)",exec:function(e){e.selectMoreLines(-1,!0)},bindKey:{win:"Ctrl-Alt-Shift-Up",mac:"Ctrl-Alt-Shift-Up"},scrollIntoView:"cursor",readOnly:!0},{name:"addCursorBelowSkipCurrent",description:"Add cursor below (skip current)",exec:function(e){e.selectMoreLines(1,!0)},bindKey:{win:"Ctrl-Alt-Shift-Down",mac:"Ctrl-Alt-Shift-Down"},scrollIntoView:"cursor",readOnly:!0},{name:"selectMoreBefore",description:"Select more before",exec:function(e){e.selectMore(-1)},bindKey:{win:"Ctrl-Alt-Left",mac:"Ctrl-Alt-Left"},scrollIntoView:"cursor",readOnly:!0},{name:"selectMoreAfter",description:"Select more after",exec:function(e){e.selectMore(1)},bindKey:{win:"Ctrl-Alt-Right",mac:"Ctrl-Alt-Right"},scrollIntoView:"cursor",readOnly:!0},{name:"selectNextBefore",description:"Select next before",exec:function(e){e.selectMore(-1,!0)},bindKey:{win:"Ctrl-Alt-Shift-Left",mac:"Ctrl-Alt-Shift-Left"},scrollIntoView:"cursor",readOnly:!0},{name:"selectNextAfter",description:"Select next after",exec:function(e){e.selectMore(1,!0)},bindKey:{win:"Ctrl-Alt-Shift-Right",mac:"Ctrl-Alt-Shift-Right"},scrollIntoView:"cursor",readOnly:!0},{name:"toggleSplitSelectionIntoLines",description:"Split selection into lines",exec:function(e){e.multiSelect.rangeCount>1?e.multiSelect.joinSelections():e.multiSelect.splitIntoLines()},bindKey:{win:"Ctrl-Alt-L",mac:"Ctrl-Alt-L"},readOnly:!0},{name:"splitSelectionIntoLines",description:"Split into lines",exec:function(e){e.multiSelect.splitIntoLines()},readOnly:!0},{name:"alignCursors",description:"Align cursors",exec:function(e){e.alignCursors()},bindKey:{win:"Ctrl-Alt-A",mac:"Ctrl-Alt-A"},scrollIntoView:"cursor"},{name:"findAll",description:"Find all",exec:function(e){e.findAll()},bindKey:{win:"Ctrl-Alt-K",mac:"Ctrl-Alt-G"},scrollIntoView:"cursor",readOnly:!0}],t.multiSelectCommands=[{name:"singleSelection",description:"Single selection",bindKey:"esc",exec:function(e){e.exitMultiSelectMode()},scrollIntoView:"cursor",readOnly:!0,isAvailable:function(e){return e&&e.inMultiSelectMode}}];var r=e("../keyboard/hash_handler").HashHandler;t.keyboardHandler=new r(t.multiSelectCommands)}),define("ace/multi_select",["require","exports","module","ace/range_list","ace/range","ace/selection","ace/mouse/multi_select_handler","ace/lib/event","ace/lib/lang","ace/commands/multi_select_commands","ace/search","ace/edit_session","ace/editor","ace/config"],function(e,t,n){function h(e,t,n){return c.$options.wrap=!0,c.$options.needle=t,c.$options.backwards=n==-1,c.find(e)}function v(e,t){return e.row==t.row&&e.column==t.column}function m(e){if(e.$multiselectOnSessionChange)return;e.$onAddRange=e.$onAddRange.bind(e),e.$onRemoveRange=e.$onRemoveRange.bind(e),e.$onMultiSelect=e.$onMultiSelect.bind(e),e.$onSingleSelect=e.$onSingleSelect.bind(e),e.$multiselectOnSessionChange=t.onSessionChange.bind(e),e.$checkMultiselectChange=e.$checkMultiselectChange.bind(e),e.$multiselectOnSessionChange(e),e.on("changeSession",e.$multiselectOnSessionChange),e.on("mousedown",o),e.commands.addCommands(f.defaultCommands),g(e)}function g(e){function r(t){n&&(e.renderer.setMouseCursor(""),n=!1)}if(!e.textInput)return;var t=e.textInput.getElement(),n=!1;u.addListener(t,"keydown",function(t){var i=t.keyCode==18&&!(t.ctrlKey||t.shiftKey||t.metaKey);e.$blockSelectEnabled&&i?n||(e.renderer.setMouseCursor("crosshair"),n=!0):n&&r()},e),u.addListener(t,"keyup",r,e),u.addListener(t,"blur",r,e)}var r=e("./range_list").RangeList,i=e("./range").Range,s=e("./selection").Selection,o=e("./mouse/multi_select_handler").onMouseDown,u=e("./lib/event"),a=e("./lib/lang"),f=e("./commands/multi_select_commands");t.commands=f.defaultCommands.concat(f.multiSelectCommands);var l=e("./search").Search,c=new l,p=e("./edit_session").EditSession;(function(){this.getSelectionMarkers=function(){return this.$selectionMarkers}}).call(p.prototype),function(){this.ranges=null,this.rangeList=null,this.addRange=function(e,t){if(!e)return;if(!this.inMultiSelectMode&&this.rangeCount===0){var n=this.toOrientedRange();this.rangeList.add(n),this.rangeList.add(e);if(this.rangeList.ranges.length!=2)return this.rangeList.removeAll(),t||this.fromOrientedRange(e);this.rangeList.removeAll(),this.rangeList.add(n),this.$onAddRange(n)}e.cursor||(e.cursor=e.end);var r=this.rangeList.add(e);return this.$onAddRange(e),r.length&&this.$onRemoveRange(r),this.rangeCount>1&&!this.inMultiSelectMode&&(this._signal("multiSelect"),this.inMultiSelectMode=!0,this.session.$undoSelect=!1,this.rangeList.attach(this.session)),t||this.fromOrientedRange(e)},this.toSingleRange=function(e){e=e||this.ranges[0];var t=this.rangeList.removeAll();t.length&&this.$onRemoveRange(t),e&&this.fromOrientedRange(e)},this.substractPoint=function(e){var t=this.rangeList.substractPoint(e);if(t)return this.$onRemoveRange(t),t[0]},this.mergeOverlappingRanges=function(){var e=this.rangeList.merge();e.length&&this.$onRemoveRange(e)},this.$onAddRange=function(e){this.rangeCount=this.rangeList.ranges.length,this.ranges.unshift(e),this._signal("addRange",{range:e})},this.$onRemoveRange=function(e){this.rangeCount=this.rangeList.ranges.length;if(this.rangeCount==1&&this.inMultiSelectMode){var t=this.rangeList.ranges.pop();e.push(t),this.rangeCount=0}for(var n=e.length;n--;){var r=this.ranges.indexOf(e[n]);this.ranges.splice(r,1)}this._signal("removeRange",{ranges:e}),this.rangeCount===0&&this.inMultiSelectMode&&(this.inMultiSelectMode=!1,this._signal("singleSelect"),this.session.$undoSelect=!0,this.rangeList.detach(this.session)),t=t||this.ranges[0],t&&!t.isEqual(this.getRange())&&this.fromOrientedRange(t)},this.$initRangeList=function(){if(this.rangeList)return;this.rangeList=new r,this.ranges=[],this.rangeCount=0},this.getAllRanges=function(){return this.rangeCount?this.rangeList.ranges.concat():[this.getRange()]},this.splitIntoLines=function(){var e=this.ranges.length?this.ranges:[this.getRange()],t=[];for(var n=0;n<e.length;n++){var r=e[n],s=r.start.row,o=r.end.row;if(s===o)t.push(r.clone());else{t.push(new i(s,r.start.column,s,this.session.getLine(s).length));while(++s<o)t.push(this.getLineRange(s,!0));t.push(new i(o,0,o,r.end.column))}n==0&&!this.isBackwards()&&(t=t.reverse())}this.toSingleRange();for(var n=t.length;n--;)this.addRange(t[n])},this.joinSelections=function(){var e=this.rangeList.ranges,t=e[e.length-1],n=i.fromPoints(e[0].start,t.end);this.toSingleRange(),this.setSelectionRange(n,t.cursor==t.start)},this.toggleBlockSelection=function(){if(this.rangeCount>1){var e=this.rangeList.ranges,t=e[e.length-1],n=i.fromPoints(e[0].start,t.end);this.toSingleRange(),this.setSelectionRange(n,t.cursor==t.start)}else{var r=this.session.documentToScreenPosition(this.cursor),s=this.session.documentToScreenPosition(this.anchor),o=this.rectangularRangeBlock(r,s);o.forEach(this.addRange,this)}},this.rectangularRangeBlock=function(e,t,n){var r=[],s=e.column<t.column;if(s)var o=e.column,u=t.column,a=e.offsetX,f=t.offsetX;else var o=t.column,u=e.column,a=t.offsetX,f=e.offsetX;var l=e.row<t.row;if(l)var c=e.row,h=t.row;else var c=t.row,h=e.row;o<0&&(o=0),c<0&&(c=0),c==h&&(n=!0);var p;for(var d=c;d<=h;d++){var m=i.fromPoints(this.session.screenToDocumentPosition(d,o,a),this.session.screenToDocumentPosition(d,u,f));if(m.isEmpty()){if(p&&v(m.end,p))break;p=m.end}m.cursor=s?m.start:m.end,r.push(m)}l&&r.reverse();if(!n){var g=r.length-1;while(r[g].isEmpty()&&g>0)g--;if(g>0){var y=0;while(r[y].isEmpty())y++}for(var b=g;b>=y;b--)r[b].isEmpty()&&r.splice(b,1)}return r}}.call(s.prototype);var d=e("./editor").Editor;(function(){this.updateSelectionMarkers=function(){this.renderer.updateCursor(),this.renderer.updateBackMarkers()},this.addSelectionMarker=function(e){e.cursor||(e.cursor=e.end);var t=this.getSelectionStyle();return e.marker=this.session.addMarker(e,"ace_selection",t),this.session.$selectionMarkers.push(e),this.session.selectionMarkerCount=this.session.$selectionMarkers.length,e},this.removeSelectionMarker=function(e){if(!e.marker)return;this.session.removeMarker(e.marker);var t=this.session.$selectionMarkers.indexOf(e);t!=-1&&this.session.$selectionMarkers.splice(t,1),this.session.selectionMarkerCount=this.session.$selectionMarkers.length},this.removeSelectionMarkers=function(e){var t=this.session.$selectionMarkers;for(var n=e.length;n--;){var r=e[n];if(!r.marker)continue;this.session.removeMarker(r.marker);var i=t.indexOf(r);i!=-1&&t.splice(i,1)}this.session.selectionMarkerCount=t.length},this.$onAddRange=function(e){this.addSelectionMarker(e.range),this.renderer.updateCursor(),this.renderer.updateBackMarkers()},this.$onRemoveRange=function(e){this.removeSelectionMarkers(e.ranges),this.renderer.updateCursor(),this.renderer.updateBackMarkers()},this.$onMultiSelect=function(e){if(this.inMultiSelectMode)return;this.inMultiSelectMode=!0,this.setStyle("ace_multiselect"),this.keyBinding.addKeyboardHandler(f.keyboardHandler),this.commands.setDefaultHandler("exec",this.$onMultiSelectExec),this.renderer.updateCursor(),this.renderer.updateBackMarkers()},this.$onSingleSelect=function(e){if(this.session.multiSelect.inVirtualMode)return;this.inMultiSelectMode=!1,this.unsetStyle("ace_multiselect"),this.keyBinding.removeKeyboardHandler(f.keyboardHandler),this.commands.removeDefaultHandler("exec",this.$onMultiSelectExec),this.renderer.updateCursor(),this.renderer.updateBackMarkers(),this._emit("changeSelection")},this.$onMultiSelectExec=function(e){var t=e.command,n=e.editor;if(!n.multiSelect)return;if(!t.multiSelectAction){var r=t.exec(n,e.args||{});n.multiSelect.addRange(n.multiSelect.toOrientedRange()),n.multiSelect.mergeOverlappingRanges()}else t.multiSelectAction=="forEach"?r=n.forEachSelection(t,e.args):t.multiSelectAction=="forEachLine"?r=n.forEachSelection(t,e.args,!0):t.multiSelectAction=="single"?(n.exitMultiSelectMode(),r=t.exec(n,e.args||{})):r=t.multiSelectAction(n,e.args||{});return r},this.forEachSelection=function(e,t,n){if(this.inVirtualSelectionMode)return;var r=n&&n.keepOrder,i=n==1||n&&n.$byLines,o=this.session,u=this.selection,a=u.rangeList,f=(r?u:a).ranges,l;if(!f.length)return e.exec?e.exec(this,t||{}):e(this,t||{});var c=u._eventRegistry;u._eventRegistry={};var h=new s(o);this.inVirtualSelectionMode=!0;for(var p=f.length;p--;){if(i)while(p>0&&f[p].start.row==f[p-1].end.row)p--;h.fromOrientedRange(f[p]),h.index=p,this.selection=o.selection=h;var d=e.exec?e.exec(this,t||{}):e(this,t||{});!l&&d!==undefined&&(l=d),h.toOrientedRange(f[p])}h.detach(),this.selection=o.selection=u,this.inVirtualSelectionMode=!1,u._eventRegistry=c,u.mergeOverlappingRanges(),u.ranges[0]&&u.fromOrientedRange(u.ranges[0]);var v=this.renderer.$scrollAnimation;return this.onCursorChange(),this.onSelectionChange(),v&&v.from==v.to&&this.renderer.animateScrolling(v.from),l},this.exitMultiSelectMode=function(){if(!this.inMultiSelectMode||this.inVirtualSelectionMode)return;this.multiSelect.toSingleRange()},this.getSelectedText=function(){var e="";if(this.inMultiSelectMode&&!this.inVirtualSelectionMode){var t=this.multiSelect.rangeList.ranges,n=[];for(var r=0;r<t.length;r++)n.push(this.session.getTextRange(t[r]));var i=this.session.getDocument().getNewLineCharacter();e=n.join(i),e.length==(n.length-1)*i.length&&(e="")}else this.selection.isEmpty()||(e=this.session.getTextRange(this.getSelectionRange()));return e},this.$checkMultiselectChange=function(e,t){if(this.inMultiSelectMode&&!this.inVirtualSelectionMode){var n=this.multiSelect.ranges[0];if(this.multiSelect.isEmpty()&&t==this.multiSelect.anchor)return;var r=t==this.multiSelect.anchor?n.cursor==n.start?n.end:n.start:n.cursor;r.row!=t.row||this.session.$clipPositionToDocument(r.row,r.column).column!=t.column?this.multiSelect.toSingleRange(this.multiSelect.toOrientedRange()):this.multiSelect.mergeOverlappingRanges()}},this.findAll=function(e,t,n){t=t||{},t.needle=e||t.needle;if(t.needle==undefined){var r=this.selection.isEmpty()?this.selection.getWordRange():this.selection.getRange();t.needle=this.session.getTextRange(r)}this.$search.set(t);var i=this.$search.findAll(this.session);if(!i.length)return 0;var s=this.multiSelect;n||s.toSingleRange(i[0]);for(var o=i.length;o--;)s.addRange(i[o],!0);return r&&s.rangeList.rangeAtPoint(r.start)&&s.addRange(r,!0),i.length},this.selectMoreLines=function(e,t){var n=this.selection.toOrientedRange(),r=n.cursor==n.end,s=this.session.documentToScreenPosition(n.cursor);this.selection.$desiredColumn&&(s.column=this.selection.$desiredColumn);var o=this.session.screenToDocumentPosition(s.row+e,s.column);if(!n.isEmpty())var u=this.session.documentToScreenPosition(r?n.end:n.start),a=this.session.screenToDocumentPosition(u.row+e,u.column);else var a=o;if(r){var f=i.fromPoints(o,a);f.cursor=f.start}else{var f=i.fromPoints(a,o);f.cursor=f.end}f.desiredColumn=s.column;if(!this.selection.inMultiSelectMode)this.selection.addRange(n);else if(t)var l=n.cursor;this.selection.addRange(f),l&&this.selection.substractPoint(l)},this.transposeSelections=function(e){var t=this.session,n=t.multiSelect,r=n.ranges;for(var i=r.length;i--;){var s=r[i];if(s.isEmpty()){var o=t.getWordRange(s.start.row,s.start.column);s.start.row=o.start.row,s.start.column=o.start.column,s.end.row=o.end.row,s.end.column=o.end.column}}n.mergeOverlappingRanges();var u=[];for(var i=r.length;i--;){var s=r[i];u.unshift(t.getTextRange(s))}e<0?u.unshift(u.pop()):u.push(u.shift());for(var i=r.length;i--;){var s=r[i],a=s.clone();t.replace(s,u[i]),s.start.row=a.start.row,s.start.column=a.start.column}n.fromOrientedRange(n.ranges[0])},this.selectMore=function(e,t,n){var r=this.session,i=r.multiSelect,s=i.toOrientedRange();if(s.isEmpty()){s=r.getWordRange(s.start.row,s.start.column),s.cursor=e==-1?s.start:s.end,this.multiSelect.addRange(s);if(n)return}var o=r.getTextRange(s),u=h(r,o,e);u&&(u.cursor=e==-1?u.start:u.end,this.session.unfold(u),this.multiSelect.addRange(u),this.renderer.scrollCursorIntoView(null,.5)),t&&this.multiSelect.substractPoint(s.cursor)},this.alignCursors=function(){var e=this.session,t=e.multiSelect,n=t.ranges,r=-1,s=n.filter(function(e){if(e.cursor.row==r)return!0;r=e.cursor.row});if(!n.length||s.length==n.length-1){var o=this.selection.getRange(),u=o.start.row,f=o.end.row,l=u==f;if(l){var c=this.session.getLength(),h;do h=this.session.getLine(f);while(/[=:]/.test(h)&&++f<c);do h=this.session.getLine(u);while(/[=:]/.test(h)&&--u>0);u<0&&(u=0),f>=c&&(f=c-1)}var p=this.session.removeFullLines(u,f);p=this.$reAlignText(p,l),this.session.insert({row:u,column:0},p.join("\n")+"\n"),l||(o.start.column=0,o.end.column=p[p.length-1].length),this.selection.setRange(o)}else{s.forEach(function(e){t.substractPoint(e.cursor)});var d=0,v=Infinity,m=n.map(function(t){var n=t.cursor,r=e.getLine(n.row),i=r.substr(n.column).search(/\S/g);return i==-1&&(i=0),n.column>d&&(d=n.column),i<v&&(v=i),i});n.forEach(function(t,n){var r=t.cursor,s=d-r.column,o=m[n]-v;s>o?e.insert(r,a.stringRepeat(" ",s-o)):e.remove(new i(r.row,r.column,r.row,r.column-s+o)),t.start.column=t.end.column=d,t.start.row=t.end.row=r.row,t.cursor=t.end}),t.fromOrientedRange(n[0]),this.renderer.updateCursor(),this.renderer.updateBackMarkers()}},this.$reAlignText=function(e,t){function u(e){return a.stringRepeat(" ",e)}function f(e){return e[2]?u(i)+e[2]+u(s-e[2].length+o)+e[4].replace(/^([=:])\s+/,"$1 "):e[0]}function l(e){return e[2]?u(i+s-e[2].length)+e[2]+u(o)+e[4].replace(/^([=:])\s+/,"$1 "):e[0]}function c(e){return e[2]?u(i)+e[2]+u(o)+e[4].replace(/^([=:])\s+/,"$1 "):e[0]}var n=!0,r=!0,i,s,o;return e.map(function(e){var t=e.match(/(\s*)(.*?)(\s*)([=:].*)/);return t?i==null?(i=t[1].length,s=t[2].length,o=t[3].length,t):(i+s+o!=t[1].length+t[2].length+t[3].length&&(r=!1),i!=t[1].length&&(n=!1),i>t[1].length&&(i=t[1].length),s<t[2].length&&(s=t[2].length),o>t[3].length&&(o=t[3].length),t):[e]}).map(t?f:n?r?l:f:c)}}).call(d.prototype),t.onSessionChange=function(e){var t=e.session;t&&!t.multiSelect&&(t.$selectionMarkers=[],t.selection.$initRangeList(),t.multiSelect=t.selection),this.multiSelect=t&&t.multiSelect;var n=e.oldSession;n&&(n.multiSelect.off("addRange",this.$onAddRange),n.multiSelect.off("removeRange",this.$onRemoveRange),n.multiSelect.off("multiSelect",this.$onMultiSelect),n.multiSelect.off("singleSelect",this.$onSingleSelect),n.multiSelect.lead.off("change",this.$checkMultiselectChange),n.multiSelect.anchor.off("change",this.$checkMultiselectChange)),t&&(t.multiSelect.on("addRange",this.$onAddRange),t.multiSelect.on("removeRange",this.$onRemoveRange),t.multiSelect.on("multiSelect",this.$onMultiSelect),t.multiSelect.on("singleSelect",this.$onSingleSelect),t.multiSelect.lead.on("change",this.$checkMultiselectChange),t.multiSelect.anchor.on("change",this.$checkMultiselectChange)),t&&this.inMultiSelectMode!=t.selection.inMultiSelectMode&&(t.selection.inMultiSelectMode?this.$onMultiSelect():this.$onSingleSelect())},t.MultiSelect=m,e("./config").defineOptions(d.prototype,"editor",{enableMultiselect:{set:function(e){m(this),e?this.on("mousedown",o):this.off("mousedown",o)},value:!0},enableBlockSelect:{set:function(e){this.$blockSelectEnabled=e},value:!0}})}),define("ace/mode/folding/fold_mode",["require","exports","module","ace/range"],function(e,t,n){"use strict";var r=e("../../range").Range,i=t.FoldMode=function(){};(function(){this.foldingStartMarker=null,this.foldingStopMarker=null,this.getFoldWidget=function(e,t,n){var r=e.getLine(n);return this.foldingStartMarker.test(r)?"start":t=="markbeginend"&&this.foldingStopMarker&&this.foldingStopMarker.test(r)?"end":""},this.getFoldWidgetRange=function(e,t,n){return null},this.indentationBlock=function(e,t,n){var i=/\S/,s=e.getLine(t),o=s.search(i);if(o==-1)return;var u=n||s.length,a=e.getLength(),f=t,l=t;while(++t<a){var c=e.getLine(t).search(i);if(c==-1)continue;if(c<=o){var h=e.getTokenAt(t,0);if(!h||h.type!=="string")break}l=t}if(l>f){var p=e.getLine(l).length;return new r(f,u,l,p)}},this.openingBracketBlock=function(e,t,n,i,s){var o={row:n,column:i+1},u=e.$findClosingBracket(t,o,s);if(!u)return;var a=e.foldWidgets[u.row];return a==null&&(a=e.getFoldWidget(u.row)),a=="start"&&u.row>o.row&&(u.row--,u.column=e.getLine(u.row).length),r.fromPoints(o,u)},this.closingBracketBlock=function(e,t,n,i,s){var o={row:n,column:i},u=e.$findOpeningBracket(t,o);if(!u)return;return u.column++,o.column--,r.fromPoints(u,o)}}).call(i.prototype)}),define("ace/ext/error_marker",["require","exports","module","ace/line_widgets","ace/lib/dom","ace/range","ace/config"],function(e,t,n){"use strict";function u(e,t,n){var r=0,i=e.length-1;while(r<=i){var s=r+i>>1,o=n(t,e[s]);if(o>0)r=s+1;else{if(!(o<0))return s;i=s-1}}return-(r+1)}function a(e,t,n){var r=e.getAnnotations().sort(s.comparePoints);if(!r.length)return;var i=u(r,{row:t,column:-1},s.comparePoints);i<0&&(i=-i-1),i>=r.length?i=n>0?0:r.length-1:i===0&&n<0&&(i=r.length-1);var o=r[i];if(!o||!n)return;if(o.row===t){do o=r[i+=n];while(o&&o.row===t);if(!o)return r.slice()}var a=[];t=o.row;do a[n<0?"unshift":"push"](o),o=r[i+=n];while(o&&o.row==t);return a.length&&a}var r=e("../line_widgets").LineWidgets,i=e("../lib/dom"),s=e("../range").Range,o=e("../config").nls;t.showErrorMarker=function(e,t){var n=e.session;n.widgetManager||(n.widgetManager=new r(n),n.widgetManager.attach(e));var s=e.getCursorPosition(),u=s.row,f=n.widgetManager.getWidgetsAtRow(u).filter(function(e){return e.type=="errorMarker"})[0];f?f.destroy():u-=t;var l=a(n,u,t),c;if(l){var h=l[0];s.column=(h.pos&&typeof h.column!="number"?h.pos.sc:h.column)||0,s.row=h.row,c=e.renderer.$gutterLayer.$annotations[s.row]}else{if(f)return;c={text:[o("error-marker.good-state","Looks good!")],className:"ace_ok"}}e.session.unfold(s.row),e.selection.moveToPosition(s);var p={row:s.row,fixedWidth:!0,coverGutter:!0,el:i.createElement("div"),type:"errorMarker"},d=p.el.appendChild(i.createElement("div")),v=p.el.appendChild(i.createElement("div"));v.className="error_widget_arrow "+c.className;var m=e.renderer.$cursorLayer.getPixelPosition(s).left;v.style.left=m+e.renderer.gutterWidth-5+"px",p.el.className="error_widget_wrapper",d.className="error_widget "+c.className,d.innerHTML=c.text.join("<br>"),d.appendChild(i.createElement("div"));var g=function(e,t,n){if(t===0&&(n==="esc"||n==="return"))return p.destroy(),{command:"null"}};p.destroy=function(){if(e.$mouseHandler.isMousePressed)return;e.keyBinding.removeKeyboardHandler(g),n.widgetManager.removeLineWidget(p),e.off("changeSelection",p.destroy),e.off("changeSession",p.destroy),e.off("mouseup",p.destroy),e.off("change",p.destroy)},e.keyBinding.addKeyboardHandler(g),e.on("changeSelection",p.destroy),e.on("changeSession",p.destroy),e.on("mouseup",p.destroy),e.on("change",p.destroy),e.session.widgetManager.addLineWidget(p),p.el.onmousedown=e.focus.bind(e),e.renderer.scrollCursorIntoView(null,.5,{bottom:p.el.offsetHeight})},i.importCssString("\n .error_widget_wrapper {\n background: inherit;\n color: inherit;\n border:none\n }\n .error_widget {\n border-top: solid 2px;\n border-bottom: solid 2px;\n margin: 5px 0;\n padding: 10px 40px;\n white-space: pre-wrap;\n }\n .error_widget.ace_error, .error_widget_arrow.ace_error{\n border-color: #ff5a5a\n }\n .error_widget.ace_warning, .error_widget_arrow.ace_warning{\n border-color: #F1D817\n }\n .error_widget.ace_info, .error_widget_arrow.ace_info{\n border-color: #5a5a5a\n }\n .error_widget.ace_ok, .error_widget_arrow.ace_ok{\n border-color: #5aaa5a\n }\n .error_widget_arrow {\n position: absolute;\n border: solid 5px;\n border-top-color: transparent!important;\n border-right-color: transparent!important;\n border-left-color: transparent!important;\n top: -5px;\n }\n","error_marker.css",!1)}),define("ace/ace",["require","exports","module","ace/lib/dom","ace/range","ace/editor","ace/edit_session","ace/undomanager","ace/virtual_renderer","ace/worker/worker_client","ace/keyboard/hash_handler","ace/placeholder","ace/multi_select","ace/mode/folding/fold_mode","ace/theme/textmate","ace/ext/error_marker","ace/config","ace/loader_build"],function(e,t,n){"use strict";e("./loader_build")(t);var r=e("./lib/dom"),i=e("./range").Range,s=e("./editor").Editor,o=e("./edit_session").EditSession,u=e("./undomanager").UndoManager,a=e("./virtual_renderer").VirtualRenderer;e("./worker/worker_client"),e("./keyboard/hash_handler"),e("./placeholder"),e("./multi_select"),e("./mode/folding/fold_mode"),e("./theme/textmate"),e("./ext/error_marker"),t.config=e("./config"),t.edit=function(e,n){if(typeof e=="string"){var i=e;e=document.getElementById(i);if(!e)throw new Error("ace.edit can't find div #"+i)}if(e&&e.env&&e.env.editor instanceof s)return e.env.editor;var o="";if(e&&/input|textarea/i.test(e.tagName)){var u=e;o=u.value,e=r.createElement("pre"),u.parentNode.replaceChild(e,u)}else e&&(o=e.textContent,e.innerHTML="");var f=t.createEditSession(o),l=new s(new a(e),f,n),c={document:f,editor:l,onResize:l.resize.bind(l,null)};return u&&(c.textarea=u),l.on("destroy",function(){c.editor.container.env=null}),l.container.env=l.env=c,l},t.createEditSession=function(e,t){var n=new o(e,t);return n.setUndoManager(new u),n},t.Range=i,t.Editor=s,t.EditSession=o,t.UndoManager=u,t.VirtualRenderer=a,t.version=t.config.version}); (function() { window.require(["ace/ace"], function(a) { if (a) { a.config.init(true); a.define = window.define; } var global = (function () { return this; })(); if (!global && typeof window != "undefined") global = window; // can happen in strict mode if (!global && typeof self != "undefined") global = self; // can happen in webworker if (!global.ace) global.ace = a; for (var key in a) if (a.hasOwnProperty(key)) global.ace[key] = a[key]; global.ace["default"] = global.ace; if (typeof module == "object" && typeof exports == "object" && module) { module.exports = global.ace; } }); })(); ```
```php <?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\HttpFoundation; /** * Represents an Accept-* header item. * * @author Jean-Franois Simon <contact@jfsimon.fr> */ class AcceptHeaderItem { /** * @var string */ private $value; /** * @var float */ private $quality = 1.0; /** * @var int */ private $index = 0; /** * @var array */ private $attributes = array(); /** * Constructor. * * @param string $value * @param array $attributes */ public function __construct($value, array $attributes = array()) { $this->value = $value; foreach ($attributes as $name => $value) { $this->setAttribute($name, $value); } } /** * Builds an AcceptHeaderInstance instance from a string. * * @param string $itemValue * * @return AcceptHeaderItem */ public static function fromString($itemValue) { $bits = preg_split('/\s*(?:;*("[^"]+");*|;*(\'[^\']+\');*|;+)\s*/', $itemValue, 0, PREG_SPLIT_NO_EMPTY | PREG_SPLIT_DELIM_CAPTURE); $value = array_shift($bits); $attributes = array(); $lastNullAttribute = null; foreach ($bits as $bit) { if (($start = substr($bit, 0, 1)) === ($end = substr($bit, -1)) && ($start === '"' || $start === '\'')) { $attributes[$lastNullAttribute] = substr($bit, 1, -1); } elseif ('=' === $end) { $lastNullAttribute = $bit = substr($bit, 0, -1); $attributes[$bit] = null; } else { $parts = explode('=', $bit); $attributes[$parts[0]] = isset($parts[1]) && strlen($parts[1]) > 0 ? $parts[1] : ''; } } return new self(($start = substr($value, 0, 1)) === ($end = substr($value, -1)) && ($start === '"' || $start === '\'') ? substr($value, 1, -1) : $value, $attributes); } /** * Returns header value's string representation. * * @return string */ public function __toString() { $string = $this->value.($this->quality < 1 ? ';q='.$this->quality : ''); if (count($this->attributes) > 0) { $string .= ';'.implode(';', array_map(function ($name, $value) { return sprintf(preg_match('/[,;=]/', $value) ? '%s="%s"' : '%s=%s', $name, $value); }, array_keys($this->attributes), $this->attributes)); } return $string; } /** * Set the item value. * * @param string $value * * @return AcceptHeaderItem */ public function setValue($value) { $this->value = $value; return $this; } /** * Returns the item value. * * @return string */ public function getValue() { return $this->value; } /** * Set the item quality. * * @param float $quality * * @return AcceptHeaderItem */ public function setQuality($quality) { $this->quality = $quality; return $this; } /** * Returns the item quality. * * @return float */ public function getQuality() { return $this->quality; } /** * Set the item index. * * @param int $index * * @return AcceptHeaderItem */ public function setIndex($index) { $this->index = $index; return $this; } /** * Returns the item index. * * @return int */ public function getIndex() { return $this->index; } /** * Tests if an attribute exists. * * @param string $name * * @return bool */ public function hasAttribute($name) { return isset($this->attributes[$name]); } /** * Returns an attribute by its name. * * @param string $name * @param mixed $default * * @return mixed */ public function getAttribute($name, $default = null) { return isset($this->attributes[$name]) ? $this->attributes[$name] : $default; } /** * Returns all attributes. * * @return array */ public function getAttributes() { return $this->attributes; } /** * Set an attribute. * * @param string $name * @param string $value * * @return AcceptHeaderItem */ public function setAttribute($name, $value) { if ('q' === $name) { $this->quality = (float) $value; } else { $this->attributes[$name] = (string) $value; } return $this; } } ```
```c++ /******************************************************************************* * * * path_to_url * * Unless required by applicable law or agreed to in writing, software * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. *******************************************************************************/ #include <cstdint> #include <vector> namespace dnnl { namespace impl { namespace gpu { namespace intel { namespace jit { // clang-format off static const uint64_t _data[] = { 0x000000133dcccccd, 0x0000000100000000, 0x4000000000000000, 0x0000000000000043, 0x3be000003b800000, 0x3c4000003c000000, 0x3c8000003c600000, 0x3cc000003ca00000, 0x3d0000003ce00000, 0x3d2000003d180000, 0x3d4000003d300000, 0x3d6000003d500000, 0x3d9000003d800000, 0x3dab00003da00000, 0x3dc000003db80000, 0x3dd800003dc80000, 0x3df000003de00000, 0x3e0c00003e000000, 0x3e1c00003e100000, 0x3e2800003e200000, 0x3e4000003e340000, 0x3e5700003e480000, 0x3e7000003e600000, 0x3e8c00003e800000, 0x3e9800003e900000, 0x3ea800003ea00000, 0x3eb800003eb00000, 0x3ec400003ec00000, 0x3ed800003ec80000, 0x3ef000003ee00000, 0x3f0a00003f000000, 0x3f1600003f100000, 0x3f2800003f200000, 0x3f3800003f300000, 0x3f4400003f400000, 0x3f5800003f480000, 0x3f7000003f600000, 0x000000023f800000, 0x0000000000000000, 0x000000363f800000, 0x3bc0000000000000, 0x3c4000003c000000, 0x3cc000003c800000, 0x3d0000003ce00000, 0x3d4000003d200000, 0x3d8000003d600000, 0x3da000003d900000, 0x3dc000003db00000, 0x3de000003dd00000, 0x3e1000003e000000, 0x3e2800003e200000, 0x3e4000003e380000, 0x3e5800003e480000, 0x3e7000003e600000, 0x3e8c00003e800000, 0x3e9c00003e900000, 0x3ea800003ea00000, 0x3ec000003eb40000, 0x3ed800003ec80000, 0x3ef000003ee00000, 0x3f0c00003f000000, 0x3f1800003f100000, 0x3f2800003f200000, 0x3f3800003f300000, 0x3f4400003f400000, 0x3f5800003f480000, 0x3f7000003f600000, 0x000000ce3f800000, 0x49b4000000000000, 0x4a3400004a000000, 0x4a8000004a580000, 0x4ab000004a960000, 0x4adc80004ac40000, 0x4b03d6004afc0000, 0x4b2800004b130000, 0x4b4400004b3d0000, 0x4b6a00004b580000, 0x4b8400004b7c0000, 0x4b9d80004b900000, 0x4bb400004ba80000, 0x4bc800004bc00000, 0x4be100004bd80000, 0x4bff00004bf00000, 0x4c0800004c000000, 0x4c1600004c100000, 0x4c2800004c200000, 0x4c3400004c2fc800, 0x4c460c004c400000, 0x4c5c00004c4f0000, 0x4c7000004c600000, 0x4c8000004c7c0000, 0x4c9000004c870000, 0x4ca000004c960000, 0x4caec0004ca8c000, 0x4cbf40004cb40000, 0x4cd000004cc40000, 0x4ce100004cdc8000, 0x4cfc00004cf00000, 0x4d0700004d000000, 0x4d1000004d0e9800, 0x4d2000004d160000, 0x4d2b80004d280000, 0x4d3d00004d340000, 0x4d4600004d41e000, 0x4d54b2004d4b1000, 0x4d6100004d5c8000, 0x4d7500004d6f4200, 0x4d8000004d7c0000, 0x4d9000004d87d800, 0x4da000004d960000, 0x4dafc8004da8c000, 0x4dc000004db64000, 0x4dce40004dc71000, 0x4de100004ddc8000, 0x4df600004dec4000, 0x4e0000004dff3c00, 0x4e0940004e05c000, 0x4e1600004e100000, 0x4e2900004e220000, 0x4e3b80004e340000, 0x4e4800004e400000, 0x4e6100004e59f000, 0x4e7d20004e700000, 0x4e88b0004e800000, 0x4e9600004e900000, 0x4ea203004e9e0000, 0x4eb480004eab8000, 0x4ec400004ebdd800, 0x4edc80004eccc000, 0x4ef000004ee3d000, 0x4f0000004efc0000, 0x4f0880004f059800, 0x4f1600004f100000, 0x4f2800004f1f6000, 0x4f37c0004f2fc800, 0x4f4400004f425800, 0x4f5800004f4b1000, 0x4f68c0004f5c8000, 0x4f7d20004f700000, 0x4f86c0004f800000, 0x4f9000004f8dc000, 0x4f9c40004f960000, 0x4fa900004fa20000, 0x4fbd00004fb40000, 0x4fca80004fc40000, 0x4fe100004fd80000, 0x500000004ff30000, 0x5010000050070000, 0x5017e00050130000, 0x5028c000501d8000, 0x5042100050340000, 0x5050000050440000, 0x5061000050580000, 0x507c0000506d4e00, 0x508ed28050800000, 0x5093000050900000, 0x50a56000509ab000, 0x50b6d00050ab0000, 0x50cb100050c40000, 0x50dc800050d80000, 0x5101600050f00000, 0x5122000051100000, 0x5144000051336000, 0x515c800051580000, 0x517d2000516a6000, 0x51a8c00051900000, 0x51c8000051c06000, 0x51f0000051d80000, 0x5228c000520dc000, 0x525c800052440000, 0x52a8c000527d2000, 0x0000009753256000, 0x3f80000000000000, 0x4040000040000000, 0x40c0000040800000, 0x4100000040e00000, 0x4130000041100000, 0x4160000041400000, 0x4190000041800000, 0x41b0000041a00000, 0x41d0000041c00000, 0x4200000041e00000, 0x4220000042100000, 0x4238000042280000, 0x4248000042400000, 0x4260000042580000, 0x4280000042700000, 0x42900000428c0000, 0x42a00000429c0000, 0x42b4000042a80000, 0x42c6000042c00000, 0x42d8000042c80000, 0x42f0000042e00000, 0x430c000043000000, 0x4318000043100000, 0x4328000043200000, 0x4338000043300000, 0x4344000043400000, 0x4358000043480000, 0x4370000043600000, 0x438a000043800000, 0x4396000043900000, 0x43a8000043a00000, 0x43b8000043b00000, 0x43c4000043c00000, 0x43d8000043c80000, 0x43f0000043e00000, 0x440a000044000000, 0x4416000044100000, 0x4428c00044200000, 0x4438000044300000, 0x4444000044400000, 0x4458000044480000, 0x4470000044600000, 0x448a000044800000, 0x4496000044900000, 0x44a9000044a00000, 0x44bb800044b40000, 0x44c4000044c00000, 0x44dd000044c80000, 0x44f0000044e10000, 0x450a000045000000, 0x4516000045100000, 0x4529000045200000, 0x4540000045348000, 0x4548000045440000, 0x4570000045600000, 0x458c000045800000, 0x459c000045930000, 0x45aa000045a20000, 0x45c0000045b50000, 0x45cc000045c40000, 0x45f0000045e00000, 0x4610000046000000, 0x4624000046190000, 0x463e0000462fe000, 0x4652000046440000, 0x467a800046672000, 0x4693000046800000, 0x46b2200046a00000, 0x46db600046c40000, 0x4700000046f00000, 0x472fc80047160000, 0x4761000047440000, 0x47a9000047800000, 0x47f78f0047c40000, 0x4859e20048298000, 0x4948000048c00000, 0x000000000000001a, 0x404000003f800000, 0x4100000040800000, 0x4180000041600000, 0x4200000041c00000, 0x4270000042440000, 0x42c8000042800000, 0x4300000042f00000, 0x4360000043440000, 0x43c4000043800000, 0x4444000044000000, 0x44c4000044800000, 0x4560000045000000, 0x4680000045e00000, 0x0000000000000004, 0x400000003f800000, 0x4100000040800000, 0x0000000000000004, 0x400000003f800000, 0x4100000040800000, 0x0000000000000004, 0x400000003f800000, 0x4100000040800000, 0x0000000000000001, 0x000000163f800000, 0x4080000000000000, 0x40e0000040c00000, 0x4110000041000000, 0x4130000041200000, 0x4150000041400000, 0x4170000041600000, 0x4190000041800000, 0x41a0000041980000, 0x41c0000041b00000, 0x41d8000041c80000, 0x41f0000041e00000, 0x0000000342000000, 0x4180000000000000, 0x4280000042000000, 0x0000000000000009, 0x40e0000040c00000, 0x4120000041000000, 0x4170000041400000, 0x4200000041800000, 0x0000003742800000, 0x3f80000000000000, 0x4040000040000000, 0x40a0000040800000, 0x40e0000040c00000, 0x4110000041000000, 0x4140000041200000, 0x4170000041600000, 0x4190000041800000, 0x41a8000041a00000, 0x41c0000041b80000, 0x41d8000041c80000, 0x41f0000041e00000, 0x4208000042000000, 0x4220000042100000, 0x4240000042300000, 0x424c000042440000, 0x4260000042580000, 0x4280000042700000, 0x42a0000042900000, 0x42c0000042ae0000, 0x42d8000042c40000, 0x4300000042ea0000, 0x4322000043100000, 0x4350000043400000, 0x4380000043610000, 0x43bd000043900000, 0x4410000043e00000, 0x45000000447a0000, 0x0000000000000002, 0x3f80000000000000, 0x0000000000000001, 0x0000000300000000, 0x3f80000000000000, 0x4040000040000000, 0x0000000000000003, 0x400000003f800000, 0x3e3556d140400000, 0x00000000000000c8, 0x0000000800000013, 0x00000001000003e8, 0x00000000000011fc, 0x04842c010900000f, 0x012c0a0102481601, 0x005c020100a00501, 0x002e070b003c0001, 0x2fc77dff00291c0e, 0x030dbe3210fcffbe, 0xffbe2eda52ff0037, 0x004e080bbe2cabf1, 0x30090dff0049010b, 0x030dbe2a0ed9ffbe, 0xffbe2724d4ff0057, 0x0080080bbe224f13, 0x006d04010072030d, 0xd516ffbe275477ff, 0x6eff007b0804be22, 0xbe1c13f5ffbe21ec, 0x008d04010092000c, 0x4016ffbe2697bcff, 0xecff009b030dbe20, 0xbe109df7ffbe19fe, 0x00c8030d00e8050b, 0x00b5000c00ba0801, 0x347affbe270fc1ff, 0x6cff00c3000cbe1a, 0xbe100339ffbe2186, 0x00d5050400da0801, 0x434fffbe198edeff, 0x02ff00e3000cbe0c, 0xbdfd1d82ffbe1888, 0x00fe030d010c0801, 0x1cbbd6ff00f9000c, 0x000cbe08bfa1ffbe, 0xffbe16d78eff0107, 0x011e030dbdf1c832, 0x148122ff0119000c, 0x0305bdef926effbe, 0xffbe02452eff0127, 0x01bc1001bdbef979, 0x0158040d0178070b, 0x0145070e014a0804, 0x46edffbe0afd37ff, 0x09ff0153030bbe1f, 0xbdccc770ffbdf07f, 0x01650404016a0f04, 0x3b35ffbe0c707bff, 0x69ff01730f01bdde, 0xbd867a20ffbdb985, 0x018e000c019c1104, 0x341287ff01890111, 0x0904be0b8105ffbe, 0xffbde8bdabff0197, 0x01ae030dbdb3921d, 0x9c2b88ff01a90006, 0x0905bddf31edffbd, 0xffbdac06f1ff01b7, 0x0204030dbd0ec1f6, 0x01d6000c01e4050b, 0x1e5eeaff01d10404, 0x1704be05a4faffbe, 0xffbdda5990ff01df, 0x01f61104bda891f1, 0x10e210ff01f10704, 0x0006bdbf0d6cffbe, 0xffbcdfed24ff01ff, 0x0228050bbda67448, 0x02150b04021a1e04, 0x0d08ffbdd750acff, 0x67ff0223000cbd84, 0xbcf7b948ffbdcdaa, 0x0235000c023a1504, 0x01e1ffbde2e2a1ff, 0xf0ff02430c05bd42, 0x3d0e8fcaffbd2ed6, 0x02dc040b03682001, 0x02780e040298030d, 0x0265000d026a0604, 0xc867ffbe1daaa3ff, 0x14ff0273070ebe07, 0xbe066101ffbdc0e1, 0x0285010b028a000c, 0xc022ffbe052128ff, 0xb5ff02931901bdc8, 0xbcdc622dffbd787d, 0x02ae090402bc1504, 0x024360ff02a9000c, 0x000cbdc0b293ffbe, 0xffbdbf5fc5ff02b7, 0x02ce000cbd1f66a8, 0x8a23afff02c91c01, 0x1901bd52c135ffbd, 0xff3ada8d43ff02d7, 0x03242a043d4b6648, 0x02f6060403041104, 0x011130ff02f10006, 0x030ebe1ac51fffbe, 0xffbd70fea8ff02ff, 0x03160006bddc109f, 0x36b216ff03111f04, 0x1e043d59b281ff3c, 0xffbdb0a5fbff031f, 0x03481105bd675a3f, 0x0335030d033a000c, 0x6620ffbd58df53ff, 0xc2ff03430c05bbeb, 0x3d6c724cff3c2a59, 0x03551901035a030d, 0x0aeaff3ccb40bbff, 0xfeff03631a013da3, 0x3e36061bff3de148, 0x03b4150403f82b04, 0x0386060403940c04, 0x33bdcfff03810112, 0x020ebe0516deffbe, 0xffbd9ba505ff038f, 0x03a60006bdeb14c3, 0x18c7bdff03a1050e, 0x0b06bd8e2bd0ffbc, 0xffbdc8a0a3ff03af, 0x03d80006bdf80caf, 0x03c5040e03ca1f04, 0xa3a7ff3d7e45a2ff, 0x6eff03d3070e3bcf, 0x3d3698a1ff3df672, 0x03e5220403ea0d06, 0x180affbd67f7a6ff, 0xa9ff03f31b04bcf2, 0xbda1dee3ffbdfad7, 0x0420030b0440000c, 0x040d010b0412030d, 0x0705ffbdc937e8ff, 0xacff041b000bbd04, 0x3cb5002effbe09ca, 0x042d25010432030d, 0x00aeff3b6231beff, 0x4aff043b65043d59, 0x3e16e34fff3d874c, 0x0456030d0464040b, 0x302490ff04512501, 0x24013df2e5a1ff3d, 0xff3e0e7592ff045f, 0x047625013e4e7856, 0x1dec9eff0471030d, 0x41043e5d14cfff3e, 0xff3e40b03dff047f, 0x06c441013e8079f8, 0x051c000605a83304, 0x04b80e0404d81c04, 0x04a5000d04aa0111, 0x8743ffbe33eaa1ff, 0x26ff04b3000dbe31, 0xbd640b8dffbde875, 0x04c5160404ca070e, 0xc897ff3c17d5acff, 0xd2ff04d301113d87, 0xbd2a1d21ffbe302c, 0x04ee070e04fc2504, 0x2ca259ff04e90112, 0x23043e01bca4ffbe, 0xff3cd40d4bff04f7, 0x050e070e3da1c3d1, 0x4b4962ff0509070d, 0x0d0ebe2cb500ff3e, 0xff3e04df03ff0517, 0x05642104bd21f6fd, 0x0536130405440906, 0xf120c5ff05310d04, 0x040ebdba81d1ffbd, 0xffbd0bfe74ff053f, 0x0556010ebdb64c99, 0x0adcaaff0551000e, 0x3301bdf32a12ffbe, 0xffbdd0d7c9ff055f, 0x05880e06bd9fffdb, 0x0575040e057a2804, 0xcd76ffbc94ef84ff, 0x73ff05833301bd2e, 0x3cbb039dff3adad9, 0x05952a04059a1106, 0x4f06ffbd9f1533ff, 0x55ff05a31206bd04, 0xbe04075bffbdc749, 0x05f43b0106380006, 0x05c63a0405d45104, 0x6fa145ff05c1070e, 0x170e3e3df28dff3e, 0xff3e8696a3ff05cf, 0x05e6080b3e2a201a, 0x52b4c0ff05e1010d, 0x3a013e91a0faff3e, 0xff3eac7731ff05ef, 0x0618040b3ed44e51, 0x0605000d060a3d01, 0x854fff3e5ace3cff, 0x14ff06134a043ea1, 0x3ed60b2fff3ea333, 0x06254404062a5b04, 0x0742ff3ea68fd3ff, 0xccff06333f013ecd, 0x3f0b190fff3ee29c, 0x06604c0406807204, 0x064d010606521106, 0xc163ffbd392dc8ff, 0x10ff065b14063db3, 0xbdb50f60ffbc283f, 0x066d000b06723c01, 0x76afffbdbd588eff, 0xaaff067b14063e08, 0xbb02bb12ff3e6b0d, 0x0696000b06a4030b, 0xf956d4ff06911005, 0x000cbcd96b0bffbd, 0xff3de23be8ff069f, 0x06b63b013e4ee1eb, 0x694cb4ff06b1000c, 0x12063e8f09d5ff3e, 0xff3ecb2cf6ff06bf, 0x07e4000c3da657e5, 0x0714140607587504, 0x06e6000606f43404, 0x2dfd98ff06e10112, 0x10063de88116ffbe, 0xffbcee63cdff06ef, 0x07060006bdd40fa0, 0x2a9966ff07010112, 0x5b043eade176ffbe, 0xff3dca9403ff070f, 0x073817063e796b0e, 0x07254504072a5704, 0xa7e5ffbdfeaf6eff, 0xa2ff07336704bd58, 0x3e05444bff3d19ed, 0x07456504074a1806, 0xae9cffbde7d18bff, 0x7eff07536404bce7, 0xbdef1a99ffbe19b1, 0x0780000b07a0070b, 0x076d100507723205, 0xe12fffbdb01460ff, 0x24ff077b00063c4d, 0xbdee3d85ffbe2cc7, 0x078d030e07921906, 0xe415ff3e3078d3ff, 0xf6ff079ba3043ea0, 0x3de2851affbd9fdf, 0x07b6020d07c4020e, 0xb7d17eff07b1000e, 0x000e3e72c879ff3d, 0xff3e7b854dff07bf, 0x07d617063ecf8d2b, 0x01422cff07d1020d, 0x9c043f178079ff3f, 0xff3e1972aeff07df, 0x0874010e3ed7d644, 0x0810000e0830030d, 0x07fd010808020905, 0x5885ffbdd14965ff, 0xcbff080b3a043d7d, 0x3e0654f8ff3ce8dc, 0x081d010808220905, 0x8aa5ffbce3fcc0ff, 0x6aff082b31043e66, 0x3e9b5ee1ff3d94a4, 0x084609050854000e, 0xef6e3fff08410108, 0x74053e73373effbc, 0xff3e96518aff084f, 0x086609053ed91da4, 0x33f147ff08617304, 0x44043eae2106ff3c, 0xff3eb6c54cff086f, 0x08bc65043f046080, 0x088e4d04089c0006, 0x5a06e2ff0889000d, 0x070e3eccd527ff3e, 0xff3f0e9fbfff0897, 0x08ae13063eea26ce, 0x184f92ff08a95b04, 0x16063eb1eff5ff3e, 0xff3cd76786ff08b7, 0x08e00006bdc81bc5, 0x08cd2c0e08d2030b, 0x9fd9ff3f1fc3c5ff, 0x54ff08db2b0e3f01, 0x3f2575cdff3f343f, 0x08ed030b08f29a04, 0xb98fff3ecbb810ff, 0x33ff08fb030b3f01, 0x3f27fdf3ff3eecc0, 0x0b4451040d807904, 0x099c18010a282d04, 0x09380a0109581704, 0x09250304092a0d04, 0xd6ffffbe3414beff, 0x32ff0933120ebe32, 0xbe32a1adffbe2fc6, 0x09450604094a0d04, 0x3425ffbe323f1cff, 0xa2ff09530011be30, 0xbe2c0b72ffbe2e89, 0x096e120e097c0d01, 0x2d1703ff09690011, 0x240ebe28f688ffbe, 0xffbe2f24eaff0977, 0x098e0f0ebe323bb1, 0x28686aff09890011, 0x120ebe231e29ffbe, 0xffbe27b0e2ff0997, 0x09e41b04be2bc3fb, 0x09b60d0409c41404, 0x3088deff09b10704, 0x0011be2dde56ffbe, 0xffbe2d0a95ff09bf, 0x09d60011be2864c8, 0x287dcaff09d1030e, 0x070ebe2c3720ffbe, 0xffbe21c561ff09df, 0x0a080011be27ce3d, 0x09f5050e09fa2504, 0x475affbe243f41ff, 0x85ff0a03070ebe29, 0xbe25b6e8ffbe1e2c, 0x0a15070e0a1a0006, 0x6fd8ffbe16142bff, 0x55ff0a230c06be20, 0xbe2ef78effbe284d, 0x0a7410010ab81c01, 0x0a4607010a540d01, 0x2bb0cbff0a41300e, 0x190ebe3307d1ffbe, 0xffbe234c27ff0a4f, 0x0a660b0bbe2839fc, 0x26efe1ff0a61080b, 0x010cbe211630ffbe, 0xffbe1fe456ff0a6f, 0x0a984104be14768e, 0x0a853a040a8a0f0e, 0x64fcffbe19dd36ff, 0xceff0a931a0ebe0f, 0xbe24f1c6ffbe1cb0, 0x0aa5080b0aaa200e, 0x62c3ffbe17c866ff, 0x66ff0ab3220ebe08, 0xbe20d393ffbe1423, 0x0ae0070e0b004304, 0x0acd00110ad20006, 0x2500ffbe0ef7beff, 0x7cff0adb000ebdfe, 0xbe1dad7bffbe2740, 0x0aed3c040af20011, 0xeb28ffbe1df2f2ff, 0xd7ff0afb0f0ebe14, 0xbe15564effbe0590, 0x0b16020e0b24120e, 0x09a392ff0b11000c, 0x0012bded0f86ffbe, 0xffbdfc8155ff0b1f, 0x0b361c0ebdcc1a44, 0x14144eff0b310011, 0x220ebdfa4bf7ffbe, 0xffbe0e726cff0b3f, 0x0c646504be1c0adc, 0x0b9400060bd81c0e, 0x0b66100e0b740012, 0xe2aa65ff0b615904, 0x5804bdbe74d0ffbd, 0xffbe0b7a7bff0b6f, 0x0b86000cbdf560d1, 0xedc69cff0b81030b, 0x5804bdb4e46fffbd, 0xffbdb0fa3bff0b8f, 0x0bb8020ebd7cfcc7, 0x0ba5000e0baa0306, 0xd38effbe2c7754ff, 0x92ff0bb31506be21, 0xbe2f73baffbe1e1b, 0x0bc512050bca1206, 0x2c7bffbe03d347ff, 0xaaff0bd31406be15, 0xbe2b0b29ffbe1b21, 0x0c0000110c20260e, 0x0bed10010bf25b04, 0xd2bdffbe206317ff, 0xa6ff0bfb1001be18, 0xbe0f8739ffbe19ce, 0x0c0d01110c125604, 0xd110ffbe08d145ff, 0x35ff0c1b0007bd9f, 0xbde87718ffbe002f, 0x0c362d0e0c441501, 0x1b8adbff0c31060d, 0x320ebe266d16ffbe, 0xffbe280f15ff0c3f, 0x0c562d0ebe316ae4, 0x14ac86ff0c510208, 0x5e04be0be39fffbe, 0xffbe27af1dff0c5f, 0x0cf4180ebe1f5353, 0x0c90050b0cb0000c, 0x0c7d080e0c820006, 0x190fffbdf22171ff, 0xd6ff0c8b020ebdc8, 0xbe17b684ffbe26de, 0x0c9d01120ca2020e, 0x01eeffbdd88643ff, 0x0dff0cab0108be1d, 0xbd1f8ca5ffbd962a, 0x0cc601120cd4020e, 0xcc3ee4ff0cc1000e, 0x0111bd598faeffbd, 0xffbe1b9cf0ff0ccf, 0x0ce60006be046e1c, 0x37ec90ff0ce1090b, 0x3b05bc1fe5e8ffbd, 0xffbde8f5ecff0cef, 0x0d3c280ebe1102a6, 0x0d0e000c0d1c050b, 0xee5977ff0d090208, 0x3601bdcb403effbd, 0xffbdd59842ff0d17, 0x0d2e0011bd99d901, 0x8b9a14ff0d291f0e, 0x6b04bde181afffbd, 0xffbd95d136ff0d37, 0x0d602c0ebd1db221, 0x0d4d00110d527504, 0xb4d8ffbe1228d1ff, 0x46ff0d5b060dbde9, 0xbe04c5ddffbdab73, 0x0d6d6e040d72310e, 0x6162ffbe15caeeff, 0xc3ff0d7b7304be04, 0xbe16ffe2ffbe26b9, 0x0ea4010c0fc00a0b, 0x0dd400060e18000c, 0x0da601080db4050b, 0xe38b23ff0da10007, 0x190ebdc16e43ffbd, 0xffbda186c2ff0daf, 0x0dc60011bdbb6bbc, 0xb05d5bff0dc1070d, 0x060dbd4dc68fffbd, 0xffbd895d92ff0dcf, 0x0df8010ebcb048f3, 0x0de518060dea000e, 0x7ee1ffbe234b7aff, 0xdcff0df31806be28, 0xbe21149fffbe19d8, 0x0e0533010e0a0002, 0xeb92ffbe2db862ff, 0x8eff0e131206be18, 0xbe0cb881ffbdf56d, 0x0e4000070e600006, 0x0e2d190e0e320009, 0x5d69ffbcddc282ff, 0xc6ff0e3b050bbd8b, 0xbd534673ffbdb302, 0x0e4d01070e52050b, 0x91f4ffbd1af867ff, 0x8eff0e5b3e01bca5, 0x3cc6a263ffbd5941, 0x0e76010e0e84030e, 0x1bb360ff0e71000e, 0x1806be0e0463ffbe, 0xffbdf241ecff0e7f, 0x0e960002be096cb0, 0x0b2187ff0e910007, 0x0007bde355a9ffbe, 0xffbddca2d4ff0e9f, 0x0f340006bd9f4973, 0x0ed0040b0ef00007, 0x0ebd27010ec23301, 0xf9b2ffbe0e1a7cff, 0x2dff0ecb6505bde5, 0xbcc3b057ffbd723f, 0x0edd3a010ee20009, 0xa248ffbd7f8274ff, 0xc8ff0eeb02093d42, 0xbd76496cffbbe839, 0x0f0630010f143901, 0xde0ccbff0f012601, 0x050bbd8c1b6effbd, 0xffbd360f9cff0f0f, 0x0f26020b3c8dc822, 0x9df67dff0f21190e, 0x8a04bc1e40dfff3c, 0xff3cee421aff0f2f, 0x0f7c030e3da61135, 0x0f4e000e0f5c010e, 0x219089ff0f490305, 0x0002be116463ffbe, 0xffbe0b6c6aff0f57, 0x0f6e0007bdf7577f, 0x00428cff0f690002, 0x0606bdd7d549ffbe, 0xffbdec845dff0f77, 0x0fa00007bdb35422, 0x0f8d300e0f920002, 0xb37bffbdeaa9d5ff, 0xb3ff0f9b2905be0c, 0xbdac0929ffbdd1af, 0x0fad00020fb20107, 0x0893ffbdb0feaeff, 0x5eff0fbb090ebd62, 0xbc96d03fffbd75ab, 0x1054000c10e00006, 0x0ff0020e10100b0e, 0x0fdd0e0b0fe2000e, 0xadd4ffbe09fdb6ff, 0xf6ff0feb9e04bdf7, 0xbdde170effbdb0b5, 0x0ffd0e0b10020008, 0x756affbd9163a3ff, 0xbcff100b0e0bbd51, 0xba692361ffbd3089, 0x1026a0041034140b, 0x3d7c80ff10210008, 0x0009bc20ed99ffbd, 0xff3bfcf08cff102f, 0x10460008bd81fdba, 0xb89831ff1041a304, 0x99043cef2075ffbc, 0xff3d18d701ff104f, 0x109c9b043dfbe01b, 0x106e3201107c0008, 0x620058ff10690107, 0x010c3c9cc068ffbd, 0xff3c0322ddff1077, 0x108e35013d96b744, 0x7716c0ff10892501, 0x8a043ca41884ffbd, 0xff3d95bd1fff1097, 0x10c0030e3e0659ef, 0x10ad000e10b2020e, 0x4544ffbdce51ddff, 0x6aff10bb060dbd42, 0x3d8fc6b6ffbd1de2, 0x10cd000810d2010c, 0x55ccff3da04319ff, 0xafff10db00073e36, 0x3e8ef0e0ff3e17b9, 0x112c010e1170040e, 0x10fe000c110c000e, 0x1bcabfff10f90b0b, 0x8c04be122ebcffbe, 0xffbe177d81ff1107, 0x111e000cbe0a9885, 0x0cb51bff11190e0b, 0x8f04bdfa7f8fffbe, 0xffbe05a564ff1127, 0x1150010cbdd992a7, 0x113d0b0b1142000c, 0xb88fffbdf449a7ff, 0x95ff114b0e0bbdc6, 0xbd881980ffbdbb2f, 0x115d030611620706, 0xc47cffbe0b35c3ff, 0x1dff116b0107bdcf, 0xbd2b2449ffbd8155, 0x11989d0411b8000c, 0x11852501118a3f01, 0x3ab4ffbe214068ff, 0xccff11930008bdee, 0xbd88cb02ffbdd261, 0x11a5110611aa130b, 0xab8effbd7a161cff, 0x4fff11b31506bdbb, 0xbd9925fcffbcc7e2, 0x11ce320111dc0107, 0x165f59ff11c91101, 0x0007bda42e62ffbe, 0xffbcff3d56ff11d7, 0x11ee130e3c8697b9, 0x690400ff11e9010c, 0x33013d0f5014ffbc, 0xffbd7bf1dbff11f7, 0x000000133da309f3, 0x000003e800000008, 0x000011fc00000001, 0x0900000f00000000, 0x0248160104842c01, 0x00a00601012c0a01, 0x003c0101005c0301, 0x0029070b002e0001, 0x4c83ffbe1f52ecff, 0xb6ff0037050bbe1c, 0xbe16cb53ffbe1bc1, 0x0049010b004e030b, 0xb4d7ffbe1d4e8bff, 0x60ff0057020dbe16, 0xbe0e3d94ffbe139a, 0x0072030d0080040b, 0x1a39bdff006d000c, 0x000bbe12de23ffbe, 0xffbe1986cdff007b, 0x0092030dbe0b22e8, 0x148d54ff008d000c, 0x000cbe07b023ffbe, 0xffbe0effdcff009b, 0x00e8060bbdfb4a4f, 0x00ba000c00c8030d, 0x172d7fff00b50a04, 0x0801be112fa0ffbe, 0xffbe094794ff00c3, 0x00da0504be019ba6, 0x0ebf65ff00d50204, 0x0801be02296effbe, 0xffbdf786d1ff00e3, 0x010c030dbde39c08, 0x00f9070400fe1104, 0x3754ffbe0621c8ff, 0x2eff01070801bdf3, 0xbdd5ecc4ffbdef2e, 0x01190404011e0804, 0x160affbe0501fbff, 0x8aff01270405bde8, 0xbdb6fb37ffbde9e1, 0x0178030b01bc1001, 0x014a0e010158030d, 0x0d8d76ff0145000c, 0x010dbdefcbf2ffbe, 0xffbdf42cfeff0153, 0x016a0f04bdce8071, 0xf57d39ff01650504, 0x0d01bdcc3ea5ffbd, 0xffbdc3e141ff0173, 0x019c030dbd958ee7, 0x01890404018e0b04, 0xc07affbe0e3491ff, 0x62ff01970d01bdeb, 0xbd925a2cffbdbd6a, 0x01a9090401ae1c04, 0xf424ffbdd5b5c1ff, 0x66ff01b70d01bd8e, 0xbceb57dcffbd7b2e, 0x01e4050b0204030d, 0x01d1080401d6000c, 0xf48affbe08c425ff, 0x41ff01df1301bdeb, 0xbd8e7c1bffbdafd9, 0x01f1000c01f61104, 0x0b5affbdf2090dff, 0xa3ff01ff0006bda1, 0xbd95cf15ffbcc988, 0x021a17040228040b, 0xe8c322ff0215000c, 0x1301bd925cd0ffbd, 0xffbd4947dcff0223, 0x023a1304bcb640cd, 0xcc2cd8ff0235000c, 0x0b05bd4588b2ffbd, 0xffbd45df80ff0243, 0x036820013ccc41e0, 0x0298030d02dc040b, 0x026a090402780f04, 0x081cadff0265000c, 0x000cbddb331fffbe, 0xffbddd5651ff0273, 0x028a0006bd9aec99, 0x5e871eff02851901, 0x000cbcb6000cffbd, 0xffbdb84adeff0293, 0x02bc1e04bd7576d7, 0x02a9060402ae0e04, 0x4a19ffbddedd1eff, 0x3eff02b7000cbd87, 0xbc47871fffbd953d, 0x02c9000c02ce1c01, 0x33bcffbd709a63ff, 0xf1ff02d7000c3cb4, 0x3d9dd868ffbd3b5b, 0x0304150403242a04, 0x02f1060402f60d04, 0xbaa1ffbdf3895eff, 0x4fff02ff0006bd98, 0xbdb53497ffbcaf5e, 0x03111c010316000c, 0x463affbd7a7a52ff, 0xa1ff031f030dbd0d, 0x3d5e190fff3b0211, 0x033a000c03481105, 0x432f5eff0335030d, 0x0c05bbd3dbe4ffbd, 0xff3c1950bbff0343, 0x035a030d3d54cd4b, 0x35b88aff03551c01, 0x1c013db8991cff3d, 0xff3ddf81b6ff0363, 0x03f82a043e37124c, 0x03940d0403b41504, 0x0381000c03860604, 0x5300ffbe07351eff, 0xf8ff038f030ebddd, 0xbddc8306ffbd83ca, 0x03a1030e03a60006, 0xdc3bffbb595459ff, 0x2cff03af0b06bd43, 0xbddd721fffbdb176, 0x03ca1f0403d80006, 0x64d83dff03c5040e, 0x070e3bbae03bff3d, 0xff3dd95179ff03d3, 0x03ea21043d0083e8, 0x8a1809ff03e52801, 0x0d06bd08d89bffbd, 0xffbce587d2ff03f3, 0x04401205bd8d58b8, 0x0412030b0420000c, 0xfa7137ff040d000b, 0x030dbc20b692ffbd, 0xff3ceef450ff041b, 0x043252043dbdaad0, 0xac6d48ff042d0006, 0x070b3c88d5c3ff3d, 0xff3daeb073ff043b, 0x0464030b3e15b700, 0x045125010456030d, 0x80e3ff3d1edda6ff, 0x34ff045f25013dda, 0x3e3b4936ff3e05a9, 0x047124010476030d, 0xbb26ff3e0e6ad6ff, 0x59ff047f42043e41, 0x3e6e10d5ff3e2ffd, 0x05a8310406c44001, 0x04d81c04051c0006, 0x04aa011104b80e04, 0x21ecc3ff04a5000d, 0x0c04be1fc689ffbe, 0xffbda752baff04b3, 0x04ca1504bcf1764d, 0x088bcaff04c5030e, 0x0012bd6948c8ff3b, 0xffbe28f7c8ff04d3, 0x04fc23043d4ca3c3, 0x04e9000804ee050e, 0xe759ff3dbdc518ff, 0x0bff04f7070e3e07, 0x3cc673c7ff3d81f2, 0x05092b04050e070e, 0xac0fff3e13225dff, 0xffff05172a043e3f, 0x3dee8c40ff3d8a52, 0x0544010e05642104, 0x0531000c05360906, 0xb836ffbdc9c5cbff, 0x85ff053f0d04bd1d, 0xbde21187ffbe05e0, 0x05511a0405560806, 0xc032ffbdbc8ee5ff, 0x08ff055f3301bd0d, 0xbd8e62c3ffbdb880, 0x057a250405881006, 0xab8a6bff05750906, 0x0d06bd649b61ffbc, 0xff3c215064ff0583, 0x059a1206bcd7bd66, 0x8ef127ff0595030e, 0x000cbdc20b18ffbd, 0xffbddc8168ff05a3, 0x06380006bdf9c293, 0x05d4040b05f43d01, 0x05c1010d05c6050d, 0xf181ff3e2d649fff, 0x7bff05cf49043e68, 0x3e8a8692ff3e63cf, 0x05e14d0405e63a01, 0x6287ff3e6e295cff, 0x23ff05ef61043e97, 0x3ec29e06ff3e9f9b, 0x060a3a040618050b, 0x5b797bff06050008, 0x00073e8e932bff3e, 0xff3ea5ae38ff0613, 0x062a61043ec01e62, 0x8e0025ff06253804, 0x3f013ec26131ff3e, 0xff3edc981dff0633, 0x068056043ef5b696, 0x0652410406600f06, 0x203feeff064d0106, 0x3f013d7de866ffbd, 0xff3de49358ff065b, 0x067213063e698b61, 0x6fbfa5ff066d4b04, 0x40043d85848cff3b, 0xffbdb09d14ff067b, 0x06a4030bbc970192, 0x069110050696000b, 0x5828ffbde143c8ff, 0x2aff069f000cbd29, 0x3e2fb641ff3dbe60, 0x06b1730406b63b01, 0xf1c4ff3e15051dff, 0x7dff06bf6f043e6b, 0x3eb3a966ff3e5195, 0x0758750407e4000c, 0x06f4000607143704, 0x06e1001206e60111, 0xa99effbe1e6094ff, 0x02ff06ef000dbe18, 0x3e1bfadfff3c8717, 0x0701210407061006, 0xd905ffbda44c1aff, 0xfdff070f1206bc49, 0xbdf6bce6ffbd99ac, 0x072a5b0407381406, 0x652f58ff07250006, 0x000b3dc39950ff3e, 0xffbdf0a5e3ff0733, 0x074a17063e87a5f1, 0x00d456ff07456404, 0x18063dd4a63affbd, 0xffbd90a16dff0753, 0x07a0030bbdfbcccb, 0x0772000b0780010b, 0x88aff3ff076d3205, 0x0111be13ab41ffbc, 0xffbe4324cbff077b, 0x0792010e3e13473d, 0x19cfd9ff078d020d, 0x020d3e1f96b0ff3d, 0xff3e5a682cff079b, 0x07c4010e3eac02bb, 0x07b1000e07b6040d, 0xfc48ff3daa1529ff, 0xc9ff07bf00063e62, 0x3e9796e9ff3ba59a, 0x07d1011207d6030d, 0xa5e9ffbe4a8cf7ff, 0xc7ff07df9b043ee4, 0x3f12d609ff3ee7e1, 0x0830030d0874010e, 0x080204050810000e, 0xf284f5ff07fd0108, 0x28043cec7ecbffbd, 0xffbcd7ff8dff080b, 0x082209053dd89851, 0x4e14b4ff081d7304, 0x2a043e183a23ffbd, 0xff3cc7d695ff082b, 0x0854000e3e8a851f, 0x0841370408460006, 0x2c12ff3e6a4480ff, 0xb9ff084f75043ecd, 0x3e878b00ff3d17dd, 0x0861000608663c04, 0x7720ff3e9a6ac7ff, 0x25ff086f04053c82, 0x3ee96a0bff3df9b8, 0x089c000608bc6704, 0x0889010d088e4504, 0xc094ff3e2ffb2aff, 0xdbff0897010d3ea4, 0x3ef46c4bff3ea47e, 0x08a9410408ae1306, 0x291affba6facf7ff, 0xfdff08b716063e66, 0xbdb75cfeff3cb60d, 0x08d2000608e0030b, 0x1854baff08cd190e, 0x000b3f00d230ff3f, 0xff3d07ca72ff08db, 0x08f200063ecf9a90, 0x06366aff08ed000d, 0x9b043f213db2ff3f, 0xff3ee96228ff08fb, 0x0d8079043f17a550, 0x0a282d040b445104, 0x09581104099c1c01, 0x092a020109380701, 0x2280a1ff09250304, 0x0604be21c4d5ffbe, 0xffbe21ab86ff0933, 0x094a0904be208513, 0x210026ff09450404, 0x1101be1f823affbe, 0xffbe1e71e3ff0953, 0x097c0d01be1c2f47, 0x09690201096e0501, 0xefbcffbe20b789ff, 0xacff0977030bbe1e, 0xbe1b4d78ffbe1e90, 0x09892504098e0d0e, 0xe402ffbe1708cdff, 0xcfff09972104be0f, 0xbe182e00ffbe1bdb, 0x09c40f0409e41b04, 0x09b1060409b60a04, 0x5034ffbe1f33dcff, 0xf5ff09bf0011be1d, 0xbe195038ffbe1d23, 0x09d1150409d60011, 0xc37fffbe1ae269ff, 0x54ff09df1504be17, 0xbe11e791ffbe168f, 0x09fa2a040a080012, 0x15310fff09f52204, 0x050ebe119eaeffbe, 0xffbe0b8b33ff0a03, 0x0a1a070ebe120d74, 0x06c1e2ff0a150006, 0x2504be1829c4ffbe, 0xffbe128b5eff0a23, 0x0ab81d01be0d8f4a, 0x0a540d010a741501, 0x0a412b0e0a460701, 0x543effbe1a683cff, 0xf3ff0a4f0b0bbe20, 0xbe138fefffbe1814, 0x0a61030b0a660b0b, 0x3a3fffbe162726ff, 0xa9ff0a6f000cbe10, 0xbe06df00ffbe1334, 0x0a8a030b0a984604, 0x1508c6ff0a85010c, 0x000cbe0b8506ffbe, 0xffbe0d9ba7ff0a93, 0x0aaa080bbe0253c4, 0x127857ff0aa5010c, 0x000cbe054b2fffbe, 0xffbe0542faff0ab3, 0x0b004404bde6c377, 0x0ad200110ae03c04, 0x04a9f7ff0acd070e, 0x0e0ebe0de015ffbe, 0xffbdf4f509ff0adb, 0x0af20f0ebe0a030e, 0xf5a96cff0aed0011, 0x1c0ebdd6004affbd, 0xffbe001d8fff0afb, 0x0b24000cbe0e8199, 0x0b1133010b16050b, 0x1312ffbe0b3d98ff, 0xcbff0b1f3201bdf2, 0xbdd2369effbded71, 0x0b31070e0b360012, 0xdad3ffbdccee55ff, 0xc5ff0b3f140ebdf0, 0xbde7fe96ffbdb1ba, 0x0bd81b0e0c646504, 0x0b7400060b94000c, 0x0b61020e0b66040b, 0x8baeffbe055b11ff, 0xe5ff0b6f0011bddb, 0xbda1f156ffbdc87d, 0x0b81000e0b86030e, 0xe60effbe1757daff, 0x07ff0b8f1206be0e, 0xbe166071ffbe006a, 0x0baa00120bb80006, 0xa5c12aff0ba50f0e, 0x5904bde8823dffbd, 0xffbd975e90ff0bb3, 0x0bca020ebd5e1661, 0x13996dff0bc50706, 0x0406be081ae5ffbe, 0xffbe0514d9ff0bd3, 0x0c20230ebde9649d, 0x0bf260040c000011, 0x0ecdd4ff0bed5604, 0x0007be079690ffbe, 0xffbe02e4fcff0bfb, 0x0c125904bde9e68f, 0xf4c3c1ff0c0d0008, 0x200ebde52d6affbd, 0xffbdb89cc1ff0c1b, 0x0c44260ebdd6ec2e, 0x0c315c040c360011, 0xc368ffbe17ed3cff, 0x18ff0c3f5b04be0a, 0xbde8381cffbdfe89, 0x0c5156040c562d0e, 0xe703ffbe10a398ff, 0x7fff0c5f320ebe04, 0xbe1f3582ffbe1507, 0x0cb0000c0cf4180e, 0x0c82030b0c900a0b, 0xd14807ff0c7d0112, 0x020ebe0d455cffbd, 0xffbde9cdd3ff0c8b, 0x0ca2020ebd9c6ec8, 0xc0bdefff0c9d0112, 0x0112be0d8562ffbd, 0xffbd4f782eff0cab, 0x0cd4020ebdf7153b, 0x0cc1000e0cc60112, 0xcdf8ffbdb7d23dff, 0x89ff0ccf000ebd43, 0xbe018bc4ffbe1079, 0x0ce1090b0ce60006, 0xe81dffbd2588c1ff, 0x49ff0cef2b05bc0f, 0xbdfa4ed8ffbdcbdd, 0x0d1c070b0d3c280e, 0x0d0900070d0e000c, 0xfff8ffbddb8329ff, 0x48ff0d172b01bdc8, 0xbd92ae52ffbdd6b4, 0x0d296e040d2e0012, 0xf24bffbdd2235cff, 0x2aff0d376b04bd82, 0xbd0ada71ffbd85cf, 0x0d526e040d602c0e, 0x083034ff0d4d0011, 0x060dbddb7727ffbe, 0xffbdaf1512ff0d5b, 0x0d72310ebdf278be, 0x045f5cff0d6d7304, 0x7304bde8f793ffbe, 0xffbe160d93ff0d7b, 0x0fc00f0bbe07e645, 0x0e18070b0ea4000c, 0x0db400080dd40006, 0x0da1050b0da60009, 0x2842ffbdbbfd98ff, 0xcaff0daf0209bd94, 0xbdf2f39dffbdd503, 0x0dc102080dc6060d, 0xd9f5ffbdb744ecff, 0x37ff0dcf0012bd8a, 0xbd155c2effbdb528, 0x0dea010e0df8030e, 0x145a8eff0de5000e, 0x1906be0c84a9ffbe, 0xffbe0233c5ff0df3, 0x0e0a0002be0ff120, 0x103e40ff0e050007, 0x0007be039e9bffbe, 0xffbdf810ebff0e13, 0x0e60060ebdda0c83, 0x0e3200060e40020e, 0xf962fdff0e2d000e, 0x000ebdc307b0ffbd, 0xffbe0c48a3ff0e3b, 0x0e520006bdfb905e, 0x43c87fff0e4d9c04, 0x040ebd93c7a8ffbd, 0xffbddbff65ff0e5b, 0x0e840006bdb70b35, 0x0e710b0e0e760008, 0x7636ffbd7e5874ff, 0xa7ff0e7f9d04bd00, 0x3bef2c78ffbc9b8d, 0x0e911d010e963101, 0xd9a9ffbe185e64ff, 0xdcff0e9f0f06be03, 0xbda57c34ffbd67e9, 0x0ef000060f34050b, 0x0ec200070ed0010c, 0x5f21e6ff0ebd0109, 0x1c0ebdb4bfb4ffbd, 0xffbc6f9b86ff0ecb, 0x0ee20007bd1021ba, 0x5fdbd4ff0edd6a05, 0x3c01bc83917fffbd, 0xffbd46ef7cff0eeb, 0x0f14010e3d303f38, 0x0f01010c0f06000e, 0x6547ffbe0c1652ff, 0x71ff0f0f010cbe03, 0xbde2bc01ffbdff55, 0x0f2124050f260007, 0xdf52ffbdec686cff, 0xaeff0f2f010cbdb8, 0xbd299a9bffbda127, 0x0f5c55050f7c0107, 0x0f4901120f4e080e, 0x6d1cff3d52b87eff, 0x13ff0f570007bdb2, 0x3d1b503effbcd11b, 0x0f69010c0f6e0009, 0x9c84ff3d4ffb9aff, 0x7eff0f77010c3dfa, 0x3bf8b129ffbd0b56, 0x0f92010c0fa00006, 0xa954e9ff0f8d0b0e, 0x98043dd13b12ff3a, 0xff3dbe8ab0ff0f9b, 0x0fb2090e3e5f77c1, 0xe40bedff0fad010e, 0x010cbd455094ffbd, 0xff3b414567ff0fbb, 0x10e0000c3d8273e8, 0x1010020e1054080e, 0x0fe2000e0ff00006, 0xd00fc8ff0fdd8d04, 0xa004bde9d02affbd, 0xffbd875e31ff0feb, 0x1002000ebdb8ef62, 0x021603ff0ffd1906, 0x8b04be0ddd2fffbe, 0xffbe0ab930ff100b, 0x10340006bddb91d7, 0x1021001210260008, 0x8486ffbd4efce7ff, 0xaaff102f070ebd30, 0xbd3a19a3ff3c5966, 0x10418f0410460606, 0xe1e2ffbe007f27ff, 0x57ff104f1706bdce, 0xbdc79f4fffbd8704, 0x107c4d05109c0008, 0x10690007106e1105, 0x4f58ffbe016dcfff, 0xecff10770007bdb0, 0xbd0b4e8cffbd9cb4, 0x10894001108e9304, 0x7850ffbd8bb1d3ff, 0xc7ff10971d0ebd04, 0x3d0a746dffbb9689, 0x10b2a20410c00006, 0x4517e5ff10ad3c01, 0x140b3d206a55ffbd, 0xff3c1fd034ff10bb, 0x10d23d013de9e4b7, 0xe7fea6ff10cd2d01, 0x130bbd737e7dffbd, 0xffbded100dff10db, 0x1170060ebc2c6257, 0x110c020e112c0006, 0x10f9070d10fe000e, 0xc408ffbdb40084ff, 0x50ff1107af04bc70, 0xbd6c8cfcff3b4b4d, 0x1119060d111e010c, 0x068cff39ffcd8dff, 0xa6ff1127060d3d45, 0x3e0396f6ff3d0fc5, 0x1142000e1150010e, 0x04900dff113d8f04, 0x8b04bdf41d50ffbe, 0xffbdffa91aff114b, 0x1162040ebdb80288, 0xa6e0f6ff115d0a06, 0x9b04bd363d91ffbd, 0xffbd6b523aff116b, 0x11b899043b200c9c, 0x118a180111982801, 0x03fff5ff11851401, 0x010cbdc971f1ffbe, 0xffbd8836b2ff1193, 0x11aa0008bc805961, 0x90c235ff11a5010c, 0x37013da1f72bff3c, 0xff3d52b32fff11b3, 0x11dc01123dfd1239, 0x11c9010c11ce0008, 0xe258ff3dc7d0cdff, 0xfbff11d73c013e55, 0x3e87d976ff3db917, 0x11e90a0511ee0007, 0xa85affbd84cc55ff, 0x2bff11f700063c8b, 0x3d8a6436ff3e26de, 0x0000000800000013, 0x00000001000003e8, 0x00000000000011fc, 0x048429010900000f, 0x012c0b0102481701, 0x005c020100a00501, 0x002e050b003c0001, 0x0e201eff0029180e, 0x300ebe1033b3ffbe, 0xffbe0c4fbdff0037, 0x004e050bbe0f62a5, 0x0fe033ff0049000b, 0x000cbe0a4df4ffbe, 0xffbe0ca06eff0057, 0x0080050bbe04ef2a, 0x006d04010072030d, 0x7719ffbe081520ff, 0x09ff007b0401be04, 0xbdfac3c1ffbe02e0, 0x008d000c0092030d, 0x45bdffbe077efbff, 0x12ff009b0604bdfa, 0xbde9bed7ffbdfec4, 0x00c8050b00e80801, 0x00b5020400ba030d, 0xf4a4ffbe08156cff, 0xacff00c3000cbdf9, 0xbde43c16ffbe04da, 0x00d50d0400da000c, 0x85a1ffbe03d280ff, 0xf9ff00e3030dbdf5, 0xbdc470b0ffbddd12, 0x00fe030d010c050b, 0x02c65eff00f9000c, 0x0704bde71438ffbe, 0xffbde888d7ff0107, 0x011e030dbdc701af, 0xf3ca36ff0119000c, 0x0405bdbe181affbd, 0xffbdd1e6b1ff0127, 0x01bc1101bd94a7d6, 0x0158070b0178030d, 0x01450704014a0c04, 0xe6c6ffbdedc00fff, 0x9eff01530f01bdd2, 0xbda94914ffbdc64f, 0x01651304016a000c, 0xe917ffbdf25901ff, 0xd0ff01730f01bdc8, 0xbd4296ccffbd8e6c, 0x018e1104019c040b, 0xe663a8ff01890404, 0x0f01bdb498dbffbd, 0xffbd9e499fff0197, 0x01ae1504bd6793f0, 0xd6f508ff01a9000c, 0x0705bd81e63fffbd, 0xffbd97cb4fff01b7, 0x0204050bbcc8b749, 0x01d6110401e4030d, 0xef9acfff01d10604, 0x020bbdb5233bffbd, 0xffbda2c35eff01df, 0x01f61304bd6cd779, 0xceee31ff01f10604, 0x010bbd814b8affbd, 0xffbd4d3dbcff01ff, 0x02281b04bc854f37, 0x02150604021a000c, 0x25c9ffbdec22cfff, 0x3dff02230a04bdb0, 0xbceaa6d3ffbdb2aa, 0x02350006023a030d, 0xc6e9ffbb864f44ff, 0x2eff02430c05bd76, 0x3d4d6c7effbd06ec, 0x02dc240403681f01, 0x0278060402981104, 0x02650111026a0204, 0x29bfffbe170247ff, 0x0aff02730006bdfc, 0xbdf99a62ffbdc8d0, 0x02850112028a000c, 0x0c46ffbe1b375cff, 0xd3ff0293030dbdb1, 0xbd2b72a3ffbd8845, 0x02ae0c0502bc070e, 0x0204b7ff02a90606, 0x050bbd9676ffffbd, 0xffbb5978f8ff02b7, 0x02ce1d043d141524, 0x54d4dfff02c90006, 0x0006bda886c2ffbd, 0xffbc8c7977ff02d7, 0x0324050bbd8209ba, 0x02f6030b0304030d, 0xa25984ff02f1000c, 0x1b01bce88da5ffbd, 0xffbc678804ff02ff, 0x03161a013caf30b1, 0x097646ff03111005, 0x000c3cae5807ffbd, 0xffbd253d47ff031f, 0x034800063d810141, 0x03351a01033a020d, 0xec97ff3d083f0dff, 0x5bff034319013d94, 0x3e01ece4ff3d8fab, 0x0355030d035a000c, 0x532cffbd31be1aff, 0x4aff03634304bb55, 0x3d11796fffbcbe41, 0x03b4130403f82e04, 0x0386060403940d04, 0xcfd39aff03810006, 0x0006be026fc9ffbd, 0xffbd7adeb3ff038f, 0x03a60006bde3b132, 0x2f716eff03a1030e, 0x1104bd53f360ffbc, 0xffbdb38725ff03af, 0x03d80006bd933075, 0x03c5070e03ca1f04, 0xf234ff3d184527ff, 0x74ff03d3090ebce7, 0x3ceffa9eff3dc883, 0x03e50d0603ea2104, 0x0e9affbd72b73dff, 0x9aff03f30e06bdc9, 0xbda1ec45ffbcde4f, 0x0420040b04400006, 0x040d24010412020d, 0x6171ff3cead797ff, 0x44ff041b24013dad, 0x3e215b87ff3de06f, 0x042d010d0432020d, 0xbaadff3dda9eadff, 0x4fff043b4b043e28, 0x3e527657ff3e25c4, 0x04564b0404647504, 0x297f30ff04510f06, 0x2b0ebd42d583ff3b, 0xff3d771a5dff045f, 0x0476330ebc42d999, 0x2ac467ff04712f0e, 0x000c3df9724bff3e, 0xff3c85b7f4ff047f, 0x06c441013dd8bbd6, 0x051c000605a82a04, 0x04b80e0404d81c04, 0x04a5011204aa0504, 0x7924ffbe124e71ff, 0x55ff04b3010ebde2, 0xbdaac526ffbd25bd, 0x04c5160404ca070e, 0x0433ff3c182865ff, 0xcdff04d301113d56, 0xbd20368bffbe1b9d, 0x04ee220404fc050e, 0xbf9f2eff04e9060d, 0x0007be24dbf8ff3d, 0xff3de7aa05ff04f7, 0x050e24043e19a343, 0x71b240ff0509070e, 0x0f0e3cb52bb8ff3d, 0xff3da25801ff0517, 0x05640906bdb4b54a, 0x0536150405442804, 0xc08666ff05311104, 0x0106bd8456feffbd, 0xffbda036eaff053f, 0x05560306bc94629e, 0x71d16eff0551090e, 0x3c01bced68f5ff3b, 0xff3c8f6574ff055f, 0x0588010e3cf51eba, 0x0575030d057a000e, 0xa946ffbdefa296ff, 0xf5ff0583030dbdcf, 0xbd9a1a07ffbdcc7b, 0x05952404059a0f06, 0x9d5affbd69c59cff, 0x31ff05a31206bc9d, 0xbddde617ffbd96e6, 0x05f4000606384d04, 0x05c6410405d43c01, 0x1ddb65ff05c1050b, 0x0d0e3e424bfaff3e, 0xff3e68489cff05cf, 0x05e63a043e29e666, 0x4bb4b4ff05e10008, 0x0e0e3e868960ff3e, 0xff3e9b4c32ff05ef, 0x06180f063dcd8317, 0x06050106060a4104, 0x363effbd0ff3d1ff, 0xa6ff0613030b3d24, 0x3ded0c8aff3d901d, 0x06253304062a1406, 0xa644ffbd5a0193ff, 0x89ff06334404baa2, 0xbd3b87cdffbdc26f, 0x06601c0506803c01, 0x064d000c0652030b, 0x8acbff3d50ddb6ff, 0xebff065b000c3e1b, 0x3e61890aff3e27b2, 0x066d31010672030b, 0x14e1ff3e32cc97ff, 0x64ff067b37013e6b, 0x3e9cacccff3e81b2, 0x0696030b06a40406, 0x99fcfaff06913f01, 0x3f013eb68185ff3e, 0xff3ebe7cffff069f, 0x06b6030b3ed7decf, 0x2cd03cff06b1000b, 0x6f043e168524ffbd, 0xff3e465c27ff06bf, 0x07e4040e3eaa00ae, 0x071404050758000c, 0x06e6010e06f47204, 0xb79207ff06e11806, 0x1606bdfd2566ffbd, 0xffbc67b6f6ff06ef, 0x07061806bdb43be8, 0xccfceeff07011606, 0x9c043e1eea53ff3e, 0xffbdd4df4fff070f, 0x0738040b3de5fb53, 0x07255b04072a050d, 0x9f13ffbc425609ff, 0x6fff0733000b3db2, 0x3e34d2b5ffbdd25b, 0x0745040d074a000e, 0xb0a3ff3d42c39eff, 0x22ff0753030d3e38, 0x3eb36e7cff3e5dc8, 0x0780050d07a0000e, 0x076d010807720405, 0x4c4fffbdda0e12ff, 0xb3ff077b3a043d14, 0x3dea37c6ff3c9dfc, 0x078d010807920405, 0xf53effbd96a99eff, 0x7cff079b30043e26, 0x3e916528ff3e2089, 0x07b6440407c40006, 0x2df6d4ff07b13104, 0x57043ea05ec1ff3e, 0xff3ed7aee1ff07bf, 0x07d675043f04bc32, 0x157376ff07d11306, 0x020dbd571dffff3e, 0xff3e8c581bff07df, 0x0874000c3ecaed63, 0x0810010b0830090b, 0x07fd7b040802000b, 0x8ac0ffbd93753fff, 0x29ff080b020d3716, 0x3e5bc949ff3d13d5, 0x081d01110822020d, 0x17efffbe37b17aff, 0x5fff082b03053e3e, 0x3e9c2871ff3dbda0, 0x0846011108546b04, 0x0d971fff08412704, 0x1306be2e10d3ffbe, 0xff3e516a4aff084f, 0x08669b043d444a9c, 0xc726deff08611706, 0x14063db6a412ff3e, 0xff3efdc7cfff086f, 0x08bc040b3ed21e83, 0x088e0009089c0006, 0x9eb333ff0889000d, 0x1a0e3eff3430ff3e, 0xff3ed6f858ff0897, 0x08ae75043eac5d96, 0x2b6ca1ff08a95804, 0x000b3e37d51cff3c, 0xff3d13b959ff08b7, 0x08e079043ec2cfea, 0x08cd000d08d20006, 0xf043ff3eab4382ff, 0xa4ff08db03063efa, 0x3eb5a136ff3dfce7, 0x08ed230e08f20006, 0x754cff3f17d076ff, 0x33ff08fb04063f0b, 0x3f07c277ff3ed0cd, 0x0b4452040d807f04, 0x099c19010a282c04, 0x09380f0109581504, 0x09250504092a0501, 0xf5a5ffbe11ee3bff, 0x0cff09330c04be10, 0xbe0e6155ffbe105b, 0x09450404094a0d04, 0x8c5bffbe108649ff, 0xc0ff09530011be0e, 0xbe0ad678ffbe0d8b, 0x096e1a0e097c0901, 0x0ddde0ff09690701, 0x0011be0b75f4ffbe, 0xffbe110cf3ff0977, 0x098e120ebe0f15fa, 0x08d0d3ff09892204, 0x2304be0465daffbe, 0xffbe0d540bff0997, 0x09e41804be0a77d8, 0x09b60a0409c40e04, 0x0fea19ff09b10012, 0x0011be0de332ffbe, 0xffbe0d98dbff09bf, 0x09d60011be0a629d, 0x0bc086ff09d11504, 0x0006be095918ffbe, 0xffbe05d9daff09df, 0x0a080011be108f9c, 0x09f5070e09fa2504, 0x4b1bffbe059759ff, 0xc8ff0a03070ebe0b, 0xbe06b121ffbe001f, 0x0a15070e0a1a2804, 0x3b23ffbdfb6d55ff, 0xf3ff0a230006be04, 0xbe07bce4ffbdee10, 0x0a7415010ab82101, 0x0a4607010a540d01, 0x0e96a6ff0a410301, 0x030bbe0ae0cfffbe, 0xffbe0b7a66ff0a4f, 0x0a660c0bbe060b07, 0x077bf3ff0a61010c, 0x000cbdfe9bd5ffbe, 0xffbe04be58ff0a6f, 0x0a983d04bdf26c14, 0x0a8500120a8a170e, 0x4342ffbdfdf9e7ff, 0x6eff0a930011bdef, 0xbe055ad2ffbe09d0, 0x0aa5010c0aaa0b0b, 0x9dbdffbdf9692fff, 0x72ff0ab3000cbde1, 0xbdcae2f4ffbde96b, 0x0ae000110b003c04, 0x0acd060e0ad23304, 0xa048ffbdf84ecbff, 0xc5ff0adb050ebe01, 0xbdf8aafdffbde754, 0x0aed070e0af20006, 0x4af5ffbdd541dcff, 0xdaff0afb0111bde9, 0xbdf165d9ffbe069f, 0x0b1600120b244104, 0xdc5ff4ff0b11070e, 0x0006bdf07f24ffbd, 0xffbdc8e95fff0b1f, 0x0b36000cbe0ca719, 0xe1ba7bff0b31040b, 0x0112bdc5f360ffbd, 0xffbdb01079ff0b3f, 0x0c646b04bdf887fb, 0x0b9400060bd81b0e, 0x0b6660040b740012, 0xa67981ff0b610a0e, 0x000cbdc70fafffbd, 0xffbda9b7b3ff0b6f, 0x0b86000cbd7c3f37, 0xab758bff0b810008, 0x0008bd7a9658ffbd, 0xffbd6a4355ff0b8f, 0x0bb8020ebd0f73ce, 0x0ba504060baa000e, 0xf402ffbe0c8c32ff, 0x66ff0bb31506be03, 0xbe0bd5faffbdfa98, 0x0bc510060bca1e05, 0x9244ffbdd6f9dbff, 0x28ff0bd30206bdfe, 0xbdec2a02ffbe01b7, 0x0c0012010c201f01, 0x0bed350e0bf20901, 0x8018ffbe07c0a8ff, 0x01ff0bfb2d0ebe12, 0xbe08347bffbdf48b, 0x0c0d00110c12240e, 0x2fadffbdea5bc3ff, 0x04ff0c1b0011bdca, 0xbdee7907ffbe02be, 0x0c3600120c44230e, 0xe52c16ff0c316904, 0x6004bdbabe6affbd, 0xffbdc7e25fff0c3f, 0x0c566604bda2b440, 0xd6554fff0c51260e, 0x0007bded840effbd, 0xffbddb5fcfff0c5f, 0x0cf4070bbdc03aca, 0x0c9000060cb0000c, 0x0c7d02080c82030b, 0xe970ffbdbd29d4ff, 0xe4ff0c8b020ebd91, 0xbd8caba9ffbdce0c, 0x0c9d78040ca20002, 0x922affbe087ae7ff, 0xf2ff0cab010ebdf9, 0xbde286d0ffbe06fe, 0x0cc6020e0cd4250e, 0xde36d8ff0cc1060d, 0x030bbd6c3e00ffbd, 0xffbd3c4983ff0ccf, 0x0ce62801bc78aaaa, 0xd7cacfff0ce1320e, 0x0107be07a66dffbd, 0xffbdb2a481ff0cef, 0x0d3c000cbd798bdd, 0x0d0e00080d1c0112, 0xaf0625ff0d09020e, 0x020ebd7ac546ffbd, 0xffbd981f2aff0d17, 0x0d2e320ebce4cbbd, 0x909d63ff0d293403, 0x350ebde0bfb9ffbd, 0xffbdf5ea52ff0d37, 0x0d602b01be0fa1bd, 0x0d4d320e0d521701, 0x2aa0ffbdd366a9ff, 0x7eff0d5b0007be09, 0xbd1566ecffbd8e3c, 0x0d6d00080d720112, 0x08c9ffbc80c3c9ff, 0xf8ff0d7b010e3ccc, 0xbdb11c00ffbdf03a, 0x0ea40a0b0fc0010c, 0x0dd400060e18000c, 0x0da600070db4060b, 0xb6d5c6ff0da10208, 0x0208bd8d0d6cffbd, 0xffbd9877e1ff0daf, 0x0dc60011bd53f8aa, 0x914aa1ff0dc1070d, 0x060dbd1dbc8cffbd, 0xffbd666a62ff0dcf, 0x0df80002bc37cbd6, 0x0de5000b0dea0007, 0x6ec2ffbe0a98f2ff, 0xf7ff0df38004bdfe, 0xbdef999bffbdb20f, 0x0e05000e0e0a040e, 0x8fa8ffbe0506c2ff, 0x97ff0e131506bdf2, 0xbde87e32ffbdc495, 0x0e4000080e600006, 0x0e2d00070e320109, 0x8829ffbd3ee6a5ff, 0xd8ff0e3b070dbcd4, 0xbded3e52ffbd970f, 0x0e4d190e0e52020b, 0x220effbd0eeba3ff, 0xa5ff0e5b060dbd81, 0x3c192415ffbcb86d, 0x0e76000e0e84030e, 0xf9cb29ff0e711906, 0x010ebe05c927ffbd, 0xffbde56a00ff0e7f, 0x0e960007bdcd04fd, 0xe286e5ff0e910002, 0x090ebdb2cb99ffbd, 0xffbdaa2032ff0e9f, 0x0f34080ebd7c4c6e, 0x0ed0060d0ef0020e, 0x0ebd130b0ec2000e, 0x70a4ffbdf69534ff, 0x0aff0ecb0009bde1, 0xbd86846fffbdc70c, 0x0edd110b0ee2000e, 0xcd4bffbdd77953ff, 0x40ff0eeb000cbdb1, 0xbd07d347ffbd95b9, 0x0f0600060f14000c, 0xbdf780ff0f01070e, 0x130bbd6b0116ffbc, 0xffbdb7d26fff0f0f, 0x0f26060dbd837816, 0x0f3443ff0f210006, 0x0008bd4d823affbb, 0xff3c242841ff0f2f, 0x0f7c000c3d9fcc58, 0x0f4e00080f5c120b, 0xd71e27ff0f490006, 0x0006bd98d144ffbc, 0xff3bc14335ff0f57, 0x0f6e0008bd4741e6, 0xe45f64ff0f690006, 0x0006bd549b17ff3b, 0xff3da12c6aff0f77, 0x0fa00006bc74bea2, 0x0f8d38010f92a704, 0x1755ffbcfbf616ff, 0xafff0f9b01073d88, 0x3e3d5c40ff3dd364, 0x0fad20010fb23601, 0xf79cffbdeede9dff, 0x17ff0fbb0007bd6d, 0x3cab9d3bffbcd34f, 0x10540a0b10e00006, 0x0ff0010910100107, 0x0fdd030b0fe2230e, 0xf21dff3bb48101ff, 0x06ff0feb33013d41, 0xbcd6e23effbdbed5, 0x0ffd0a0e1002030b, 0xe522ffbd6a5160ff, 0x00ff100b0209bda8, 0xbd591aaeffbcbc84, 0x10269d041034020b, 0x98e62bff10213601, 0x060dba5cfd02ffbd, 0xff3c10ad08ff102f, 0x1046a8043d51d3e7, 0x1dae63ff10413601, 0x060d3d6a6d30ffbd, 0xff3d8cff8eff104f, 0x109c00093e00e9c5, 0x106e3001107c3e01, 0x9e87bfff10692101, 0x140b3c07f11effbd, 0xff3d4a6881ff1077, 0x108e070e3df27572, 0x1c00c4ff1089060e, 0x00083e19e796ff3d, 0xff3e2940caff1097, 0x10c001093e68ff41, 0x10ad0b0b10b2210e, 0xf51bff3d714f81ff, 0x0eff10bb3b01bb95, 0xbc737671ffbd95ad, 0x10cd140e10d20209, 0xcfcfff3c2aa6c8ff, 0x18ff10db0b0ebd0e, 0xbd6034abffbcea4c, 0x112c000e1170040e, 0x10fe0007110c0c0b, 0x0104b6ff10f90e06, 0x1906bdf040d2ffbe, 0xffbde3eb60ff1107, 0x111e0b06bdf573db, 0xf6d3f4ff11190806, 0x1906bde90bf3ffbd, 0xffbdd6e50eff1127, 0x1150020ebdefc5c8, 0x113d9a041142030b, 0xf092ffbddb1e51ff, 0x94ff114b0906bdc2, 0xbda1637dffbdddea, 0x115d09061162030b, 0xd790ffbdd66e00ff, 0x33ff116b0806bd99, 0xbd26d73fffbdba77, 0x1198030b11b80107, 0x11850002118a0007, 0x8126ffbdc82c50ff, 0x5aff11930a05bd91, 0xbd3debb6ffbda48d, 0x11a51c0111aa4101, 0x6cc3ffbdc807ddff, 0xbeff11b30007bd2c, 0x3d072835ffbc7984, 0x11ce090e11dc030b, 0xb6754dff11c90606, 0x0206bd25bd0cffbd, 0xffbd682aacff11d7, 0x11ee2501bb85956c, 0x0107a8ff11e91101, 0x9c04bd83c3c8ffbe, 0xff3c5c7efbff11f7, 0x000000133dacea6e, 0x000003e800000008, 0x000011fc00000001, 0x0900000f00000000, 0x0248170104842901, 0x00a00501012c0b01, 0x003c0001005c0201, 0x0029000b002e050b, 0xbcb2ffbe037615ff, 0x8aff0037030dbe00, 0xbdfb9731ffbdff73, 0x0049030d004e050b, 0xcb10ffbdfe33cbff, 0xa6ff0057030dbdf6, 0xbdecbc30ffbdf4d7, 0x0072030d0080070b, 0xf62f79ff006d0301, 0x010bbdef2d2affbd, 0xffbdf8f683ff007b, 0x0092000cbde54cb3, 0xf501a3ff008d0401, 0x030dbde9dc19ffbd, 0xffbde0c83aff009b, 0x00e80801bdd2d930, 0x00ba030d00c8060b, 0xf54153ff00b5000c, 0x000cbde09034ffbd, 0xffbdef233eff00c3, 0x00da0701bdcd4871, 0xe37bfdff00d5000c, 0x0d04bdc2b6bcffbd, 0xffbdc7484cff00e3, 0x010c050bbdaa2925, 0x00f9000c00fe030d, 0xf88effbdeb6510ff, 0x32ff0107000cbdcf, 0xbdb40290ffbde3f1, 0x0119000c011e0d04, 0xfcfdffbde7e9b6ff, 0x2fff0127020dbdbb, 0xbd87aeb6ffbdad21, 0x0178070b01bc1101, 0x014a11040158030d, 0xd5f99dff01450704, 0x000cbdbbd559ffbd, 0xffbdde4c3dff0153, 0x016a0b04bda0f3dd, 0xd00106ff01650404, 0x0f01bdaa8f3fffbd, 0xffbd895cddff0173, 0x019c000cbd457ef3, 0x01890111018e0904, 0xa4acffbe0a07daff, 0x22ff0197040dbdd7, 0xbda2187effbdb945, 0x01a90f0101ae040d, 0x9701ffbd766d40ff, 0x5fff01b70f01bd22, 0xbbd1dc92ffbd1c56, 0x01e4030d0204050b, 0x01d10b0401d61f04, 0xb151ffbdc323e7ff, 0x32ff01df000cbd8f, 0xbd5700fbffbdbf36, 0x01f1060401f61404, 0xfa4cffbdba3cc0ff, 0x23ff01ff0a05bd65, 0xbc7d1a76ffbd7ba2, 0x021a110402282d04, 0xcb9b52ff02150604, 0x0b05bd5b46e2ffbd, 0xffbd67aab6ff0223, 0x023a0006bb663f4e, 0x489f47ff0235030d, 0x06053d5f0157ff3a, 0xffbcf3309cff0243, 0x03681f01bd8c774e, 0x0298130402dc2404, 0x026a000c02780804, 0x0b00a5ff02650111, 0x030ebdce0d3fffbe, 0xffbd9ce086ff0273, 0x028a030ebde80b2c, 0x512cc6ff02850d04, 0x0d04bcbf7135ffbd, 0xffbdb4505dff0293, 0x02bc070ebd752daa, 0x02a91e0402ae0006, 0x3a92ff3c09d50eff, 0x74ff02b701063d67, 0xbd68c396ffbdbd8b, 0x02c91d0402ce0006, 0xda97ffbd37ccc1ff, 0x2dff02d7030bbc7c, 0xbd57c18bffbd85eb, 0x0304030d0324040b, 0x02f11d0102f6000c, 0xe668ffbd9c64a0ff, 0xcfff02ff1901bd61, 0xbc78d7d1ffbd3186, 0x0311000b0316000c, 0x9dc4ffbe109963ff, 0x3dff031f1901bd31, 0x3d322af9ff3aa635, 0x033a00060348030d, 0xce02cbff0335090b, 0x000c3d718be4ff3c, 0xffbd1ff7e6ff0343, 0x035a0d05bb633454, 0xfe0542ff03554604, 0x000c3cce1b1effbb, 0xffbcfc2d87ff0363, 0x03f82e043ddbb6a4, 0x0394060403b41104, 0x0381011203860009, 0x2cdfffbe09b899ff, 0xa1ff038f0304bdcb, 0xbd947771ffbdbd51, 0x03a1030e03a60006, 0x56e8ffbd088c50ff, 0x44ff03af0d04bda9, 0xbda19340ffbdccec, 0x03ca1c0403d80006, 0xe1718dff03c5040e, 0x070ebc5a78ddff3c, 0xff3db4032bff03d3, 0x03ea21043d0025cb, 0x835a78ff03e5030d, 0x0d06bd2bb3efffbd, 0xffbcbf935fff03f3, 0x04400006bd646172, 0x0412030d0420040b, 0xe01d1cff040d2401, 0x25013da1b99eff3c, 0xff3dd4478eff041b, 0x0432030d3e18551a, 0xe93b16ff042d2401, 0x11053e23d03aff3d, 0xff3d872d7dff043b, 0x04646b043e36c951, 0x04510e0604564b04, 0x9656ff3b26d7e7ff, 0x3cff045f220ebd26, 0x3c4f1779ff3d919a, 0x0471000c0476350e, 0x3c7dff3d96a6a4ff, 0xc4ff047f000c3e09, 0x3d9bbd45ffbc39d6, 0x05a82a0406c44101, 0x04d81c04051c0006, 0x04aa050404b80d04, 0x03acffff04a50112, 0x010ebdcbd36bffbe, 0xffbd2daed0ff04b3, 0x04ca0111bda0b2a9, 0x0aff19ff04c5020d, 0x1504be336fc3ffbe, 0xffbad72cd2ff04d3, 0x04fc050e3d23c1b7, 0x04e9240404ee0008, 0x24aaff3d9baa2eff, 0x55ff04f724043de2, 0x3e187fbdff3de5f3, 0x05090112050e2404, 0xa71affbe35bf82ff, 0x95ff05170d0e3d07, 0xbd8d4bb0ff3d925f, 0x0544280405640906, 0x05310d0405361a04, 0x847dffbdcbb725ff, 0xccff053f030bbd8b, 0xbc0c4ccdffbccc92, 0x05510f050556040e, 0x20e6ff3cc65895ff, 0x4bff055f02063bfa, 0x3b3efb32ffbca74d, 0x057a000e0588010e, 0xd7abdeff0575030d, 0x030dbdbae528ffbd, 0xffbdb80929ff0583, 0x059a0f06bd8ab107, 0x4fa8e0ff05952504, 0x1106bc6c2147ffbd, 0xffbd82964eff05a3, 0x06384c04bdb29b3d, 0x05d4370105f40006, 0x05c1070e05c63a04, 0xfaf2ff3e1d66a2ff, 0xb1ff05cf0f0e3de1, 0x3dfc410aff3e4136, 0x05e1000805e64504, 0x5cc1ff3e344204ff, 0xb6ff05ef070e3e5c, 0x3e603de8ff3e94e8, 0x060a410406180e06, 0x018ea3ff06050106, 0x090e3d208f51ffbd, 0xff3debe8f7ff0613, 0x062a39043da5614d, 0xc8094aff06251206, 0x1306bda94352ffbc, 0xff3ca2cd2fff0633, 0x06800006bcfedb19, 0x0652030b06603a01, 0x2ccb59ff064d050d, 0x33013e585802ff3e, 0xff3e5fae81ff065b, 0x0672050b3e813dd5, 0x805e61ff066d3e01, 0x3e013ea2ff65ff3e, 0xff3ea029dcff067b, 0x06a4030b3ec2af70, 0x069112050696000b, 0x2dc2ffbdca5b7dff, 0x09ff069f000cbcfb, 0x3e06d2feff3d8d9c, 0x06b1720406b63b01, 0x8561ff3dcab62cff, 0xa9ff06bf6f043e3d, 0x3e93fb79ff3e20e6, 0x0758000607e4050e, 0x06f401120714000c, 0x06e1030b06e63504, 0x75b5ffbe0d8954ff, 0x81ff06ef000bbe18, 0xbe405c99ffbe15e8, 0x0701020d0706060d, 0x3d53ff3d89ab17ff, 0xecff070f5a043e53, 0x3f017918ff3ebc87, 0x072a230407384204, 0xa2f4ddff07251704, 0x31043da5efdbffbd, 0xff3e38a0f1ff0733, 0x074a5c043e8ac323, 0x4f7221ff0745000d, 0x020e3ec0aba3ff3e, 0xff3ed7b34aff0753, 0x07a075043ef7d7e4, 0x0772410407801606, 0x1ce003ff076d0e06, 0x010ebd9da911ffbc, 0xff3d9d5d73ff077b, 0x079218063e33ea4b, 0xa394c4ff078d6f04, 0x000c3d08b263ffbd, 0xffbddfd810ff079b, 0x07c4000ebe0a68b0, 0x07b1180607b6020d, 0x3dcbff3d8dac2fff, 0x2eff07bf1806bca5, 0x3d60ece9ff3e4c97, 0x07d1020d07d61706, 0x7b58ff3e7cbfdcff, 0xacff07df9c043eb4, 0x3e56694eff3c6394, 0x0830030b0874000c, 0x08027b040810000b, 0x18064dff07fd0012, 0x9404bd7096cfffbe, 0xff3d12220cff080b, 0x0822020dbcd42fd1, 0x60b366ff081d5d04, 0x7f043e2f52b0ff3d, 0xff3e23577eff082b, 0x08547e043e90c5d4, 0x08413d0408466b04, 0x923effbc9cf701ff, 0x8eff084f7a043e32, 0x3e07265dff3ea7eb, 0x0861170608669b04, 0xf2bcff3eba9c48ff, 0x58ff086f030d3dc2, 0x3ef3f5e6ff3ecc57, 0x089c010d08bc040b, 0x08894304088e7304, 0x0bb4ff3d414fd7ff, 0xbcff0897000b3e54, 0x3ea28a0aff3c7a99, 0x08a9000708ae0006, 0x56f0ff3ec7a63fff, 0x16ff08b77e043ef1, 0x3eb22ae8ff3e2ecf, 0x08d2010d08e06504, 0xfc3d5cff08cd4804, 0x00063e94dfd1ff3d, 0xff3eccf124ff08db, 0x08f29b043e2f397f, 0xf93d8dff08ed0006, 0x230e3ebef140ff3e, 0xff3f097d8fff08fb, 0x0d806f043efa6b96, 0x0a282e040b444504, 0x09580f01099c1b04, 0x092a0c0409380701, 0x03847dff09250204, 0x120ebe02b47cffbe, 0xffbe00c36bff0933, 0x094a0d04be026195, 0x02abbfff09450404, 0x000cbe014af9ffbe, 0xffbe00c57eff0953, 0x097c1304bdfd1c27, 0x09690604096e0d04, 0xfff5ffbe018973ff, 0xb1ff09770011bdfe, 0xbdf7aec7ffbdfd87, 0x0989070e098e2101, 0x432dffbdf4f910ff, 0x3cff09970011bdfa, 0xbdec3ebdffbdf603, 0x09c40d0e09e41b01, 0x09b10e0109b60012, 0xb584ffbdf8d3f7ff, 0x87ff09bf2504bdf2, 0xbde1999cffbdecd3, 0x09d11c0e09d60d01, 0xa191ffbdfce7f8ff, 0x61ff09df120ebe00, 0xbdfa1986ffbdf29c, 0x09fa030b0a082701, 0xf6af45ff09f5000c, 0x0012bdea440effbd, 0xffbdec8054ff0a03, 0x0a1a2404bde203d0, 0xef46e3ff0a150011, 0x0012bde37e99ffbd, 0xffbde5a573ff0a23, 0x0ab82101bdd6ab36, 0x0a5412010a74190e, 0x0a4100120a463d04, 0x905affbdf1b863ff, 0x60ff0a4f0012bde6, 0xbdd321a7ffbde445, 0x0a610d0e0a663a04, 0xa453ffbddc4647ff, 0x51ff0a6f120ebde5, 0xbdda94aaffbdcbf2, 0x0a8a12010a983904, 0xfa4cb8ff0a852b0e, 0x0208be03a68affbd, 0xffbdf5d5dbff0a93, 0x0aaa1b0ebdec6aa3, 0xf4e578ff0aa50011, 0x0e01bdd57fceffbd, 0xffbdf734efff0ab3, 0x0b000011bdee1567, 0x0ad2070e0ae03e04, 0xde1c51ff0acd3404, 0x110ebdce3980ffbd, 0xffbde1d0deff0adb, 0x0af2070ebdf36a22, 0xb8a288ff0aed4101, 0x100ebdcb33e6ffbd, 0xffbdd1ee32ff0afb, 0x0b240006bdea01cf, 0x0b1138040b160f0e, 0x450affbdc48557ff, 0xe8ff0b1f1a0ebdad, 0xbde6d8b9ffbdd016, 0x0b3110060b360111, 0x7881ffbdefbdc4ff, 0xe2ff0b3f0a06be05, 0xbdecca13ffbdd2f9, 0x0bd8180e0c645604, 0x0b74070e0b940012, 0x0b6100090b665a05, 0xcf3effbd9e5f9fff, 0xcfff0b6f000cbdc2, 0xbdb14899ffbdccd7, 0x0b81120e0b865204, 0x5aa3ffbdc77914ff, 0x86ff0b8f140ebdd6, 0xbdcfb0c1ffbdb923, 0x0baa000c0bb80112, 0xb1ee90ff0ba50008, 0x110ebd92370affbd, 0xffbd810564ff0bb3, 0x0bca0006bdac352f, 0xbe9089ff0bc50d0e, 0x000ebd56a47fffbd, 0xffbe0209d6ff0bd3, 0x0c20220ebddea9d0, 0x0bf21c0e0c000011, 0xe978acff0bed4f04, 0x5004bdda852bffbd, 0xffbdf7d56eff0bfb, 0x0c124a04bde8f0f8, 0xc638bcff0c0d1e0e, 0x0111bde38f9cffbd, 0xffbdc017a2ff0c1b, 0x0c441a01bd8eb25a, 0x0c3100110c362b0e, 0xc5c5ffbdf3e2e2ff, 0xbeff0c3f320ebde8, 0xbe03f2e4ffbdfa28, 0x0c5150040c56270e, 0x8612ffbde320c8ff, 0xc1ff0c5f000bbdcc, 0xbdea32abffbe0744, 0x0cb0000c0cf4190e, 0x0c82020e0c90030b, 0xf38d69ff0c7d000e, 0x0208bdd946b8ffbd, 0xffbdb4ae99ff0c8b, 0x0ca2020ebd925424, 0xd7e429ff0c9d000e, 0x0108bda90306ffbd, 0xffbd886c82ff0cab, 0x0cd46a04bd2ccbc6, 0x0cc100110cc60006, 0xb985ffbd7cc125ff, 0xecff0ccf020ebd24, 0xbdc9eb9affbdeadb, 0x0ce101120ce6020e, 0xdb9dffbd6e9832ff, 0x3bff0cef0008bdd9, 0xbbafd58bffbd0c92, 0x0d1c250e0d3c6704, 0x0d0960040d0e0011, 0xc558ffbddbce0aff, 0x83ff0d170007bdc8, 0xbda1daa3ffbdba0f, 0x0d2920010d2e2b0e, 0x9586ffbdd9d0e6ff, 0x50ff0d372d0ebdc4, 0xbdf3b831ffbdde97, 0x0d5230030d601b0e, 0xbd569aff0d4d060d, 0x6804bdaa4fc4ff3c, 0xffbd837b92ff0d5b, 0x0d72230ebc879e30, 0xaef939ff0d6d0011, 0x2d0ebd5bde10ffbd, 0xffbdb555d3ff0d7b, 0x0fc0000cbde9b9ef, 0x0e1803060ea4050b, 0x0db402070dd40208, 0x0da1000e0da60008, 0x0373ffbdebe0c2ff, 0xc6ff0daf190ebda4, 0xbd9f214dffbd8489, 0x0dc1020e0dc60b0e, 0x5af7ffbdd60869ff, 0x3cff0dcf060dbda1, 0xbd4acf6effbd8f9d, 0x0dea030e0df8230e, 0xc2039eff0de5020e, 0x020bbd903e30ffbd, 0xffbd866889ff0df3, 0x0e0a0007bd33bb19, 0xc0a90fff0e054005, 0x3901bd992266ffbd, 0xffbdc281acff0e13, 0x0e60040ebd61075c, 0x0e32000e0e40010e, 0xfb10bfff0e2d7c04, 0x1806bdeff61fffbd, 0xffbde0e73fff0e3b, 0x0e521806bdecbf53, 0xdb38f0ff0e4d0b06, 0x0007bdccf81effbd, 0xffbdf25c3dff0e5b, 0x0e840002bdda8197, 0x0e713e010e760007, 0x8385ffbe002044ff, 0x23ff0e7f2f0ebde6, 0xbde15cc2ffbdc7c6, 0x0e9100070e96020b, 0xcdc4ffbdfab985ff, 0x49ff0e9f1306bdea, 0xbdc6329bffbdaf71, 0x0ef0020e0f340b0e, 0x0ec2000e0ed00006, 0xd0109bff0ebd0d0b, 0x0e0bbdb657d3ffbd, 0xffbd9f1b41ff0ecb, 0x0ee2000ebd6f04d2, 0xe53f37ff0edd0e0b, 0x0e0bbdd6d62effbd, 0xffbdcfb9ffff0eeb, 0x0f14060dbdb62640, 0x0f0100060f06140b, 0xd450ffbd5bf124ff, 0x3fff0f0f0108bd9d, 0xbcda8cddffbd3540, 0x0f2100120f260008, 0x6083ffbd528fc9ff, 0xb4ff0f2f0012bcdc, 0x3d1cec72ffbcad1a, 0x0f5cb0040f7c0108, 0x0f491c0e0f4e8f04, 0x4a54ffbcfedc28ff, 0xf5ff0f570006bd7b, 0xbd5b40b3ffbbbf02, 0x0f69140b0f6e0006, 0x3c3dffbbe93e31ff, 0x9eff0f7713063d42, 0xbd97ec90ffbcfabd, 0x0f923f050fa0110b, 0xa78d7cff0f8d3c01, 0x0a0bbcd8592dffbd, 0xffbcfbeab7ff0f9b, 0x0fb24c053c2fe79f, 0xa6f688ff0fad3201, 0xb1043d099cb2ffbd, 0xff3d95d664ff0fbb, 0x10e0090b3de30450, 0x1010010710540006, 0x0fe231010ff04101, 0xac39b6ff0fdd2f0e, 0x040bbdd5feb4ffbd, 0xffbd84243aff0feb, 0x1002010cbd0af012, 0xf76e09ff0ffd0009, 0x0109bd805472ffbc, 0xff3bf1a4ceff100b, 0x1034010cbd5dd85c, 0x1021001110268a04, 0x3351ffbd52807fff, 0x99ff102f060dbcf8, 0x3c9621cdffbc9610, 0x1041370110469704, 0x39b6ffbd3229adff, 0x35ff104f070d3cc7, 0x3e0ea403ff3d77a7, 0x107c010e109c040e, 0x10698004106e000e, 0xea63ffbdf30986ff, 0xe0ff1077010cbddb, 0xbdbac1d9ffbdd18c, 0x10890406108e0906, 0x2596ffbdfa3209ff, 0xc0ff1097010cbdca, 0xbd8d6884ffbdb6a9, 0x10b2000210c00107, 0xcad282ff10ad010c, 0x0007bda71373ffbd, 0xffbd95a95eff10bb, 0x10d2010cbd5a383b, 0xa851d7ff10cd0002, 0x0002bd505a27ffbd, 0xffbd5133aeff10db, 0x1170060ebc2e3f84, 0x110c020e112c0006, 0x10f9070d10fe000e, 0x0ba1ffbdae3ff2ff, 0x24ff1107010cbce5, 0xb9b37609ffbd16d7, 0x1119010c111e0009, 0x9c32ff3c4e2d4cff, 0x49ff112702093d80, 0xbd04b716ffbb6470, 0x1142000e1150010e, 0xe66349ff113d8004, 0x8f04bdce311affbd, 0xffbdca50a0ff114b, 0x11620706bd9f1930, 0xec21e4ff115d0306, 0x040ebdabc4f6ffbd, 0xffbd447df2ff116b, 0x11b8140bbc8ec217, 0x118a490511980107, 0x5a1bcdff11853601, 0x00083c1d64f6ffbd, 0xff3d01a000ff1193, 0x11aa8a043db4830b, 0x57c85fff11a52801, 0x00063cf2d9a5ffbd, 0xff3e04627eff11b3, 0x11dcb5043c9fa32c, 0x11c9210111ce3701, 0xef0fffbd8124f3ff, 0xf0ff11d700083c8e, 0x3e0f7380ff3d8579, 0x11e9740511ee0112, 0x15b3ff3e8cc7a6ff, 0x6aff11f700073e19, 0x3dbb796bff3c7721, 0x0000000800000013, 0x00000001000003e8, 0x00000000000011fc, 0x04842c010900000f, 0x012c0a0102481601, 0x005c030100a00601, 0x002e0001003c0101, 0xe87a86ff00290304, 0x070bbde42b59ffbd, 0xffbde3485cff0037, 0x004e030bbddc5b56, 0xea5d8dff0049000b, 0x030dbddc0411ffbd, 0xffbdd75885ff0057, 0x0080040bbdced85c, 0x006d010b0072020d, 0x16c4ffbde26cb3ff, 0xb1ff007b000cbdd7, 0xbdcb1c6affbde030, 0x008d000c0092030d, 0xeeafffbdd941f7ff, 0xaaff009b0904bdc5, 0xbdb47561ffbdc7f7, 0x00c8030d00e8050b, 0x00b5020400ba0504, 0x3c19ffbdde2113ff, 0x01ff00c30801bdce, 0xbdbd1f9bffbdc72e, 0x00d5020400da0b04, 0x09cdffbdd3e630ff, 0x44ff00e30405bdbc, 0xbda7df29ffbdc049, 0x00fe000c010c030d, 0xdbee1cff00f9090e, 0x1104bdc983c1ffbd, 0xffbdb8cb03ff0107, 0x011e0d04bda0a73f, 0xc74117ff01190404, 0x0405bda87cddffbd, 0xffbdabdd51ff0127, 0x01bc1201bd8145f2, 0x0158070401781704, 0x0145040e014a0204, 0x6378ffbdd1c638ff, 0xbfff0153030dbded, 0xbda555e6ffbdbcc7, 0x0165000c016a030d, 0x1c69ffbdbf9f34ff, 0x6fff01730805bd9a, 0xbd6255d8ffbda67e, 0x018e020d019c040b, 0xab4020ff01890f01, 0x0f01bd8cd044ffbd, 0xffbd84c9b9ff0197, 0x01ae030dbd323dc6, 0xa36fa3ff01a9000c, 0x0e01bd45e79bffbd, 0xffbd2c814aff01b7, 0x0204040bbc472d7d, 0x01d6000c01e4030d, 0xd83891ff01d10404, 0x010dbdb0e3f7ffbd, 0xffbd8ed53cff01df, 0x01f61204bd47c1c2, 0xac52e8ff01f1000c, 0x020bbd592a85ffbd, 0xffbd1856fcff01ff, 0x0228000cbc40df5f, 0x02150404021a1b04, 0x794dffbdca7679ff, 0xfcff02230306bd93, 0xbd2ea6ebffbd8e90, 0x02352d04023a030d, 0x16bdffbd0b7133ff, 0x48ff02432e04bb15, 0x3d42a053ffb9e431, 0x02dc050b03682001, 0x0278000c0298030d, 0x0265000d026a1304, 0x4085ffbdd6c17bff, 0xe5ff0273010bbdb0, 0xbd838b5fffbdc0c8, 0x02850a04028a1504, 0xc0a7ffbda33af9ff, 0xc4ff02931c01bd48, 0x3acce1d2ffbcebba, 0x02ae0e0402bc1e04, 0x9e6948ff02a9000c, 0x000cbd3bd305ffbd, 0xffbd62005eff02b7, 0x02ce1105bc06e5f7, 0xb286e7ff02c90006, 0x1c01bd17cf3effbb, 0xff3ca2c413ff02d7, 0x0324000c3d847a18, 0x02f60d0403041c04, 0xcdbfa9ff02f10404, 0x0306bda06e1dffbd, 0xffbd514f33ff02ff, 0x03160605bd840a1f, 0xdcdcfeff0311030d, 0x17013c069fb5ffbc, 0xffbdabaf96ff031f, 0x03482d04bd2a335f, 0x03350d04033a1504, 0x4404ffbd805d04ff, 0x14ff03431005bc89, 0x3d11d588ffbcd08c, 0x0355030d035a1105, 0x00acffbb68c72eff, 0x83ff0363030d3cf5, 0x3dd79d9dff3d51b4, 0x03b4110403f82b04, 0x0386060403940c04, 0xc82dfbff0381000c, 0x010ebda01343ffbd, 0xffbd49f43bff038f, 0x03a60006bd97ea4b, 0xccf151ff03a1010e, 0x0906bd253879ffbb, 0xffbd86e318ff03af, 0x03d80006bda50d46, 0x03c5070e03ca1c04, 0xfa26ff3ca667aaff, 0xc4ff03d3050ebd24, 0x3d0c25eaff3daad8, 0x03e5060603ea2104, 0xa2a1ffbd027e88ff, 0x42ff03f3090ebd62, 0xbd1317aaffbc781f, 0x0420030b0440000c, 0x040d2e040412000b, 0x683bffbd20eb69ff, 0x49ff041b030dbdfe, 0x3b5e6d2affbd08de, 0x042d43040432030d, 0x013affbca05b58ff, 0xbfff043b65043ce4, 0x3dd3284bff3d0e7c, 0x0456030d0464070b, 0x0d0cb2ff04512501, 0x25013da9beeeff3d, 0xff3dce6170ff045f, 0x047613053e103404, 0x60d4bdff04716c04, 0x4e043df3a03aff3d, 0xff3e07a494ff047f, 0x06c440013e2f2a6f, 0x051c000605a83104, 0x04b8120404d81b04, 0x04a5011104aa0c04, 0xd3f0ffbdf00c80ff, 0x6aff04b3010ebd77, 0xbd29f0cdffbc1025, 0x04c5060d04ca050e, 0xcaefff3d0fd5e0ff, 0x97ff04d30112be1b, 0xbd009706ffbde90b, 0x04ee070e04fc2204, 0x965322ff04e9060d, 0x0112be1ccc31ff3d, 0xffbe160270ff04f7, 0x050e00083c9c167e, 0xd46ac6ff0509070e, 0x070e3d7223b8ff3d, 0xff3e0d6349ff0517, 0x056421043d9e2c5d, 0x053609060544010e, 0x912e63ff0531000c, 0x0d04bd020f88ffbd, 0xffbdc6ab0cff053f, 0x05560806bda39e86, 0xc9794eff0551040e, 0x3301bd818d0cffbc, 0xffbd8cd805ff055f, 0x05881006bd4e3486, 0x05750d06057a2e04, 0x61bcffbb8156baff, 0x54ff05831205bd04, 0x3aa6b280ff3d1acc, 0x0595030e059a1206, 0x6da2ffbd4c7c2aff, 0x49ff05a31406bd96, 0xbdd49f33ffbdad95, 0x05f4000606385704, 0x05c6030b05d43901, 0x07c737ff05c1030d, 0x3a043e23861dff3e, 0xff3e1715bbff05cf, 0x05e643043e41e2ca, 0x25e527ff05e10007, 0x190e3e4e0cd0ff3e, 0xff3e74b227ff05ef, 0x061856043d50a4d7, 0x06050106060a0f06, 0x03c2ffbcbd03e6ff, 0x29ff061313063d8d, 0xbd11723dff3c9426, 0x0625000c062a170e, 0x201dff3e4d0a2eff, 0x12ff0633030b3e17, 0x3e18d429ff3db6ee, 0x0660030b0680000c, 0x064d05060652000b, 0x14f2ffbccc2a8aff, 0x8eff065b1306bdc0, 0xbd241ca0ff3d99ea, 0x066d021206723b01, 0x5e76ff3e06f20fff, 0x76ff067b0f063ee5, 0x3db33ab7ff3e61e0, 0x0696030b06a43c01, 0x232cbdff0691040d, 0x38013e482a49ff3e, 0xff3e570e4eff069f, 0x06b6050b3e8330d5, 0x87de7cff06b10006, 0x61043e0c240fff3e, 0xff3e87117cff06bf, 0x07e4010e3ea707fd, 0x071409050758040d, 0x06e6010706f49b04, 0xcef9caff06e10208, 0x04053d04ae40ffbd, 0xffbd674b0bff06ef, 0x070618063d489614, 0xa9cb04ff07010208, 0x19063e980d34ff3e, 0xff3e84a0b1ff070f, 0x0738000e3ce0c119, 0x07250a0b072a000c, 0x206effbca9c0e2ff, 0xbcff073300093d4f, 0x3e384264ff3d79fb, 0x07450009074a050b, 0xd7f7ff3d65cb45ff, 0x88ff07535b043e5f, 0x3e51f170ff3d96dd, 0x07809c0407a00405, 0x076d180607720107, 0x0f30ffbd68191bff, 0x5fff077b0105bdde, 0x3d44a7b2ffbd38f2, 0x078da50407921906, 0xe932ff3ea9202bff, 0x0bff079b03053ee8, 0xbe3b9100ff3e0a31, 0x07b6070b07c4000c, 0x121315ff07b10012, 0x000e3dcd017dffbe, 0xff3e1972fbff07bf, 0x07d6000e3e827100, 0x301976ff07d1050b, 0x3c043e778114ff3e, 0xff3e5e7e44ff07df, 0x0874000c3eab1f61, 0x0810020b08300a0b, 0x07fd7b040802000b, 0xf0c9ffbd7f1482ff, 0x29ff080b030dbbc9, 0x3e2618c6ff3caeee, 0x081d01110822030d, 0x56a2ffbe3ed689ff, 0x28ff082b19053e12, 0x3e911e75ff3e2f3f, 0x0846130608547f04, 0x01831eff08415b04, 0x72043e89cf22ff3e, 0xffbc21e428ff084f, 0x086616063e27ac4f, 0xab32dbff08619704, 0x19063ec90924ff3e, 0xff3e89baa7ff086f, 0x08bc6a043c7b5456, 0x088e4b04089c0006, 0x7e3fb6ff0889070e, 0x070e3dda1cd6ff3e, 0xff3ebe29e0ff0897, 0x08ae12063e9967d3, 0x498ec3ff08a90306, 0x15063e302b17ffbc, 0xff3cde8b21ff08b7, 0x08e00006bd7a4ce6, 0x08cd230e08d2030b, 0xd750ff3eddaf99ff, 0x08ff08db2d0e3ead, 0x3ed4862dff3eee83, 0x08ed890408f20306, 0xfb2eff3e2f7d5eff, 0x22ff08fb030b3ea2, 0x3ed2a0efff3e95e9, 0x0b4456040d807f04, 0x099c18010a283004, 0x0938090109581904, 0x09250301092a0904, 0xffbcffbdec8c43ff, 0xf4ff0933120ebdea, 0xbdeb033affbde7a6, 0x09450604094a0d04, 0x3120ffbdea08f4ff, 0x3fff09530011bde7, 0xbde11b7bffbde59a, 0x096e170e097c0e01, 0xe34c70ff09690012, 0x190ebddd4312ffbd, 0xffbde37320ff0977, 0x098e140ebde72af9, 0xdcdaabff09890012, 0x000cbdd34f0bffbd, 0xffbde2371dff0997, 0x09e41c04bdddc5c4, 0x09b60d0409c41504, 0xe7b364ff09b10704, 0x0011bde41b09ffbd, 0xffbde30363ff09bf, 0x09d60011bddcb366, 0xdcfdaeff09d1040e, 0x070ebde43460ffbd, 0xffbdd2f290ff09df, 0x0a082504bddc5414, 0x09f5070e09fa0012, 0xbfa2ffbdd78d1fff, 0xb4ff0a03070ebde1, 0xbdd6b958ffbdcb81, 0x0a1500120a1a070e, 0xad9bffbdcd636aff, 0x45ff0a23110ebdbd, 0xbddbb587ffbdcf88, 0x0a740f010ab82101, 0x0a4640040a541a0e, 0xda220aff0a410012, 0x0007bdd111b1ffbd, 0xffbdcec55aff0a4f, 0x0a664c04bdc3c86f, 0xe3e109ff0a610601, 0x200ebddd308affbd, 0xffbdbf4ff0ff0a6f, 0x0a98170ebdda2edb, 0x0a8500120a8a3a04, 0x6842ffbdcf5f0fff, 0xd4ff0a934904bdc1, 0xbda93f7affbdbb4b, 0x0aa5220e0aaa3d04, 0xcf87ffbdd83ee2ff, 0x35ff0ab3240ebddf, 0xbdd86901ffbdc3dc, 0x0ae000060b004104, 0x0acd000c0ad20011, 0x7c21ffbdc45e73ff, 0xd7ff0adb0d0ebdb8, 0xbdbee2e6ffbda67c, 0x0aed10060af2020d, 0x89e8ffbdc0641bff, 0xc2ff0afb1006bde6, 0xbdf01577ffbdd795, 0x0b16070e0b240012, 0x8d8355ff0b113905, 0x4f04bda5893effbd, 0xffbdbc3b80ff0b1f, 0x0b36170ebdacb3f6, 0xada99bff0b31020e, 0x220ebd82e405ffbd, 0xffbdadbd21ff0b3f, 0x0c646504bdc52855, 0x0b94020e0bd8180e, 0x0b66070d0b74000e, 0xb8e3a3ff0b610006, 0x010cbddb1f0dffbd, 0xffbd9a30ddff0b6f, 0x0b86010cbd431822, 0xb75600ff0b81070b, 0x0006bd8984adffbd, 0xffbd2fb1ceff0b8f, 0x0bb8030bbdc6c8f3, 0x0ba5080e0baa000c, 0x9708ffbdb0d162ff, 0x46ff0bb30009bd99, 0xbd9ed00dffbd6b24, 0x0bc501080bca000c, 0x96b9ffbd84f9e0ff, 0x6cff0bd32801bd32, 0xbd12a009ffbd80d3, 0x0c0000120c20210e, 0x0bed14010bf20007, 0x293bffbdd46f2bff, 0xebff0bfb6004bdbd, 0xbd9782d4ffbdb7a6, 0x0c0d00070c126404, 0xe0cbffbd9d6161ff, 0x5eff0c1b190ebd84, 0xbdb43224ffbcdc86, 0x0c36260e0c441a01, 0xc6c378ff0c310012, 0x2d0ebdad2821ffbd, 0xffbdc9eac6ff0c3f, 0x0c56230ebddeb3cc, 0xb98862ff0c510012, 0x0006bd99b2c7ffbd, 0xffbdb53c48ff0c5f, 0x0cf4010cbdd7b44e, 0x0c90000c0cb0050b, 0x0c7d020e0c820006, 0xf96dffbdbfae67ff, 0x55ff0c8b0002bd8e, 0xbdc4847cffbdd799, 0x0c9d2d010ca23a01, 0x77a1ffbdc02261ff, 0xfdff0cab0009bd99, 0xbd95b52cffbd41ae, 0x0cc6000c0cd40008, 0x667066ff0cc10112, 0x2b01bdd25d7effbd, 0xffbd9d4a64ff0ccf, 0x0ce60112bd108b13, 0x69a320ff0ce12e01, 0x0b0ebc79dd65ffbd, 0xffbdc08e10ff0cef, 0x0d3c1a0ebd9c59c7, 0x0d0e00090d1c0006, 0x242bdeff0d090011, 0x49053ceb7b5bffbc, 0xffbd8be978ff0d17, 0x0d2e0b0ebd05aa82, 0xbc6287ff0d291406, 0x0106bde78a28ffbd, 0xffbdd56c79ff0d37, 0x0d601f01bd7df8c2, 0x0d4d0d0b0d521401, 0x909affbddab554ff, 0xb0ff0d5b120bbdb9, 0xbd41736bffbda714, 0x0d6d33010d72090b, 0xee4bffbd8bdefaff, 0x27ff0d7b0007bd09, 0xbbbc1c0affbd2435, 0x0ea40a0b0fc0010c, 0x0dd400060e18000c, 0x0da601120db4050b, 0x87b2baff0da10208, 0x0007bd3e87a7ffbd, 0xffbd793965ff0daf, 0x0dc60108bd08c59f, 0x653fb7ff0dc10008, 0x190ebd2a1df2ffbd, 0xffbc9952f2ff0dcf, 0x0df80002bd442552, 0x0de51c010dea3201, 0x673fffbdf7d2c8ff, 0x0fff0df3020bbdeb, 0xbdc484bdffbddc0b, 0x0e05010e0e0a030e, 0x52f1ffbdd277bdff, 0xfaff0e131606bdbe, 0xbdc3dbafffbda10d, 0x0e4000080e600006, 0x0e2d01070e32050b, 0xb915ffbd40ae4aff, 0x4dff0e3b3e01bcb8, 0xbc1ad6afffbd86e7, 0x0e4d060d0e522b0e, 0x8216ffbc95986fff, 0x28ff0e5b01073bb1, 0xbcbb2f1effbd7ae7, 0x0e76000e0e84030e, 0xc9eac9ff0e711806, 0x1906bdd55e35ffbd, 0xffbdacdc83ff0e7f, 0x0e960007bdcc0251, 0xd1c8e3ff0e91020b, 0x020bbd9634d7ffbd, 0xffbdc73eb8ff0e9f, 0x0f34080ebd57c524, 0x0ed0060d0ef0020e, 0x0ebd130b0ec2000e, 0x41b6ffbdc881eeff, 0x4dff0ecb100bbdb6, 0xbd89dbacffbda982, 0x0edd00120ee28405, 0xe086ffbd47a41dff, 0x01ff0eeb000e3c6f, 0xbd5f1ed0ffbda606, 0x0f0600060f14060d, 0x21a32bff0f01000c, 0x0906bbef0d25ffbd, 0xffbda5e71dff0f0f, 0x0f26000cbd4ea2b2, 0xdaac40ff0f210208, 0x00083cd5b25cffbc, 0xff3b883677ff0f2f, 0x0f7c000c3d7e2be7, 0x0f4e00080f5c140b, 0x2552c9ff0f490007, 0x4805bc5212f6ffbd, 0xffbcde9d2aff0f57, 0x0f6e01083bf8f96c, 0x986df3ff0f690007, 0x00063d077b23ffbb, 0xff3da956faff0f77, 0x0fa00008bbc72f92, 0x0f8d67050f920007, 0x20fdffbd1606edff, 0x0aff0f9b4e053ce3, 0x3da0d880ff3ba48f, 0x0fad00060fb2110b, 0xeda9ff3d8a672eff, 0x05ff0fbb3e05bc36, 0x3e2c84c7ff3d967a, 0x10540a0b10e00006, 0x0ff0040b10100107, 0x0fdd280e0fe20009, 0xf7a2ff3c11768dff, 0xf2ff0feb140ebd24, 0xbd8cbfe3ffbd1bad, 0x0ffd3c0110020009, 0xa71affbd01da6eff, 0x59ff100b02093d43, 0xbd2d4d9bffbb4a78, 0x1026aa041034040b, 0x3cd4faff10218a04, 0x060d3ce10496ffbc, 0xff3d1ea161ff102f, 0x10468e043dac8ce2, 0xeb4676ff10413c01, 0x070d3d427f41ffbb, 0xff3da9b43aff104f, 0x109c00073e2ee555, 0x106e2a01107c3a01, 0xbd9053ff10691c01, 0x120bbd22c282ffbd, 0xffbc8a28f5ff1077, 0x108e120b3d19ca43, 0xa4691aff10890009, 0x030e3b251d41ff3d, 0xff3d1e8ecbff1097, 0x10c0a2043e1d310e, 0x10ad290110b23801, 0x2e29ffbc25de97ff, 0x64ff10bb060e3d71, 0x3dfedd84ff3d5ce2, 0x10cd7b0510d2070e, 0x83d7ff3e01c239ff, 0x28ff10db0e0bb90f, 0x3e87d3daff3e3942, 0x112c000e1170040e, 0x10fe0d06110c0b0b, 0xc728d8ff10f95305, 0x0107bdd7d5f5ffbd, 0xffbdbf1175ff1107, 0x111e0b06bdb52161, 0xca5f7dff11198704, 0x1906bdbd2ac7ffbd, 0xffbdace528ff1127, 0x1150020ebdc32d13, 0x113d090611420b0b, 0x6cf4ffbdbe14acff, 0x95ff114b1906bd90, 0xbdca2de1ffbd74c3, 0x115d0b061162030b, 0x0770ffbd9b1453ff, 0xb8ff116b0b06bd70, 0xbce7f278ffbd7669, 0x1198130b11b80107, 0x11851905118a0007, 0xc7e8ffbd8c875bff, 0x42ff1193030bbd2b, 0x39bf4f5dffbd1f33, 0x11a59a0411aab504, 0x10e6ffbd405868ff, 0x51ff11b300073bb4, 0x3d95458aff3caae9, 0x11ce090e11dc030b, 0x8ec3e7ff11c90906, 0x0206bd02a88fffbd, 0xffbd44b1aeff11d7, 0x11ee090ebae58d0e, 0x6c6ce9ff11e90a06, 0x28013c76c18bffbd, 0xffbd4f0ed3ff11f7, 0x000000133da1277f, 0x000003e800000008, 0x000011fc00000001, 0x0900000f00000000, 0x0248190104842b01, 0x00a00601012c0d01, 0x003c0101005c0301, 0x00290001002e070b, 0x8df4ffbdd13e7eff, 0xc1ff00370001bdcc, 0xbdc65235ffbdcce4, 0x0049010b004e040b, 0xa3a9ffbdcfce3bff, 0xe1ff0057000cbdc5, 0xbdbc3767ffbdca21, 0x0072040d0080030b, 0xcd5ac1ff006d000c, 0x0c04bdc09ee9ffbd, 0xffbdbcbef4ff007b, 0x0092020dbdb26a0f, 0xcca781ff008d0204, 0x000cbdb3d35cffbd, 0xffbdbeb2eaff009b, 0x00e80901bda525e9, 0x00ba040d00c8030b, 0xc1b1d2ff00b50404, 0x000cbdb0d980ffbd, 0xffbdbf99d0ff00c3, 0x00da030dbd9e4ff3, 0xb5c316ff00d50704, 0x0b04bd9a240effbd, 0xffbda32d3aff00e3, 0x010c000cbd80c947, 0x00f9010b00fe090b, 0x34fbffbdcc60e0ff, 0x8cff01070404bdbc, 0xbda63458ffbdc08d, 0x0119030d011e040b, 0xda78ffbda344acff, 0x45ff0127020dbd85, 0xbd3a6d3effbd811c, 0x0178130101bc040b, 0x014a000c0158020d, 0xcfbb5aff0145010b, 0x010dbdb6d923ffbd, 0xffbd9bfd8eff0153, 0x016a000cbd802467, 0xcb611aff0165010b, 0x1a04bdae9ea9ffbd, 0xffbd69f240ff0173, 0x019c040dbd1cf01e, 0x01890404018e000c, 0x3380ffbdc69f1dff, 0xebff0197010dbd9a, 0xbd184263ffbd770a, 0x01a9011201ae000c, 0xb2f2ffbdfa214fff, 0xabff01b71a04bd89, 0xba46e0f5ffbd0eb1, 0x01e4000c02041201, 0x01d1011101d60d04, 0x682fffbde5be81ff, 0xbfff01df0605bda9, 0xbd9a7821ffbd7e30, 0x01f1000d01f6030d, 0x501dffbd707368ff, 0xb9ff01ff0d04bd15, 0xbc27b5afffbd5d61, 0x021a110402281e04, 0x367f46ff02150006, 0x060ebda30d35ffbd, 0xff3b8b419cff0223, 0x023a030dbd03ab66, 0x89776bff02350006, 0x0c05bd20e63bff3a, 0xffbc99017eff0243, 0x03683e043d2e1ece, 0x02980f0402dc1b04, 0x026a040e02780604, 0x899e27ff02650006, 0x0111bdbd9162ffbd, 0xffbde1d2f2ff0273, 0x028a030ebdc2c8b8, 0x0880c7ff02850006, 0x0d04bda76e52ffbd, 0xffbd960633ff0293, 0x02bc0006bd66835c, 0x02a9160402ae050e, 0xad04ff3a1c55e0ff, 0x01ff02b7070e3ce4, 0xbd2b273dffbc74ab, 0x02c90b0602ce1a04, 0xe9c1ffbd6be6d5ff, 0x12ff02d70606bd99, 0xbd75c704ffbcab9b, 0x030437040324000c, 0x02f1011102f6030e, 0x2dc7ffbe4c8b38ff, 0x55ff02ff0e0ebbfd, 0xbd3ebb06ffbcb90a, 0x0311030603162501, 0xd334ffbd3bcbc3ff, 0x86ff031f0006bc23, 0x3cafd141ff3d9b0d, 0x033a040d03481e01, 0x738a56ff0335050b, 0x0c053cbb326bffbc, 0xffbc91317fff0343, 0x035a00063d32a814, 0x4986c3ff0355080b, 0x10063dc035c3ff3d, 0xffbc83909fff0363, 0x03f8070bbd997e88, 0x0394240103b4030d, 0x0381000b0386000c, 0xc75fffbdfc3325ff, 0xcfff038f010dbd58, 0x3cc9404cffbc7c16, 0x03a1010d03a60106, 0xd0f8ff3d0477e8ff, 0xeeff03af010b3dbe, 0xbc0f029fffbda270, 0x03ca220103d8000c, 0xed25b3ff03c5000b, 0x010bbd01b050ffbd, 0xffbd2a0174ff03d3, 0x03ea24013c6dc94f, 0x3de5d9ff03e51d01, 0x1d053db949c7ff3d, 0xff3dc43346ff03f3, 0x044013053e0f4fae, 0x0412000c04202401, 0x95c0c9ff040d0605, 0x040dbcc0ab04ff3c, 0xff3d04d591ff041b, 0x0432000c3d931609, 0x0f687dff042d030d, 0x65043db71ccfff3d, 0xff3da10034ff043b, 0x04641d013dff92e3, 0x0451000c0456020d, 0xb41effbd5fc5efff, 0xb5ff045f00063d67, 0x3d03fb2eff3ddca2, 0x0471000c0476030d, 0xf48eff3cc0ef1eff, 0x6bff047f2b033e01, 0x3e0f639fff3e2f0a, 0x05a8000606c47e04, 0x04d82704051c4404, 0x04aa000d04b81504, 0xb891d0ff04a50009, 0x0d04bcbb71f7ffbd, 0xffbd2be5cdff04b3, 0x04ca0112bbd07375, 0x10cbeeff04c52f03, 0x070ebdf799f2ffbe, 0xff3d89ca4bff04d3, 0x04fc34043c573f01, 0x04e93f0104ee0112, 0x1cd0ffbe5f03d7ff, 0x3aff04f7010dbe09, 0x3e04543aff3d15b0, 0x05093e01050e070e, 0x28a3ff3e25e31aff, 0xeaff051702123e62, 0x3e9ce99fff3ded1c, 0x0544030b05643e01, 0x053132010536010d, 0xd074ff3d51fc32ff, 0xa3ff053f33013e05, 0x3e3bef08ff3e15de, 0x0551021205563901, 0xd90bff3e408955ff, 0xd5ff055f64043ea4, 0x3e823c04ff3e601f, 0x057a000c0588010d, 0x2940ffff05750111, 0x060b3abe8dd2ffbe, 0xff3e2ab944ff0583, 0x059a000c3e81f01d, 0x27af2fff05950112, 0x62043e878d29ffbe, 0xff3e96be84ff05a3, 0x063858043eb56115, 0x05d43a0405f41206, 0x05c11a0405c62504, 0x3368ffbda13953ff, 0xdeff05cf2905bd2f, 0xbd7f808bffb98b68, 0x05e1030b05e62905, 0x19ecff3d7af126ff, 0xccff05ef53043ddd, 0xbd646788ff3d620a, 0x060a150606185204, 0xa01888ff06054504, 0x4b04bc7800a1ffbd, 0xffbdd4fa9eff0613, 0x062a1406bda361d5, 0x5f6698ff06255404, 0x16063d81712eff3c, 0xffbc7e4a36ff0633, 0x06801606bd8b0ef0, 0x0652030b06603705, 0x45240bff064d0007, 0x6d043e21b27cff3d, 0xff3e0fc741ff065b, 0x067200023e765c7f, 0x13e238ff066d7704, 0x000e3de8b035ff3d, 0xff3d7b8916ff067b, 0x06a418063e239620, 0x0691000706966f04, 0x7f4affbd84b5e8ff, 0x6eff069f000bbd15, 0x3ce92561ffbd6763, 0x06b1000c06b61906, 0x845bffbda9b424ff, 0x98ff06bf7504bdef, 0xbe0caf63ffbde9bf, 0x07580a0b07e4000c, 0x06f4011207141606, 0x06e1020d06e6000b, 0xbd9effbe0a7d35ff, 0x2fff06ef020ebdce, 0xbe4dac9effbe2bd2, 0x0701020d0706010e, 0xd07fff3d00c4a6ff, 0x4cff070f020d3de7, 0x3e71f200ff3e20a4, 0x072a010b07381906, 0x6ed928ff0725b704, 0x030d3d4dc8cfffbc, 0xff3d98b26fff0733, 0x074a9c043e0f9786, 0x1e50b3ff07458704, 0x090ebda99ff6ffbe, 0xff3b1791b5ff0753, 0x07a0020e3def999d, 0x0772020d07801806, 0xa048c9ff076d000e, 0x000e3e2311e1ff3d, 0xff3e32ca94ff077b, 0x079297043e8c94c7, 0x6c8468ff078d1906, 0x1906be18b0b7ffbd, 0xff3e400590ff079b, 0x07c4030d3d977210, 0x07b1320107b63f01, 0x9a99ff3d5e6f1aff, 0xdbff07bf16063e10, 0x3e41db25ff3e9f67, 0x07d10e0607d63c01, 0xbdf2ff3e327335ff, 0x4fff07df9b043d15, 0x3ec70445ff3ea091, 0x0830360108743f01, 0x0802020d0810070b, 0x75b8b4ff07fd010b, 0x00063e07648eff3d, 0xff3e2c172fff080b, 0x082215033ded4558, 0x63b520ff081d3101, 0x040d3db11e7fff3e, 0xff3e3588ecff082b, 0x0854050b3e5a67f8, 0x0841000b0846010b, 0x6f4affbc9518deff, 0xaeff084f2d053e0b, 0x3e54ecdaff3e2dc9, 0x0861050d08663c01, 0x6baaff3e6190c0ff, 0xb9ff086f030d3e83, 0x3e98b86eff3e851f, 0x089c020e08bc1806, 0x0889000e088e030d, 0x86a8ff3db7a902ff, 0x92ff089700093e54, 0x3ec330fdff3e7c4f, 0x08a9000908ae0006, 0x838dff3ecd77daff, 0x0fff08b7030b3eaa, 0x3ebf91b7ff3e8c6e, 0x08d2190608e09b04, 0x422ba4ff08cd9704, 0x010e3d31b936ffbd, 0xffbde043b9ff08db, 0x08f21906be37c9ae, 0x1330fcff08ed030b, 0x000b3e94b252ff3e, 0xffbdc0401fff08fb, 0x0d807e043da9c430, 0x0a2821010b444004, 0x09580e01099c2204, 0x092a050109380e04, 0xd4f0b7ff09250201, 0x0604bdd3b202ffbd, 0xffbdd39e0cff0933, 0x094a120ebdd17c75, 0xcf3060ff09451504, 0x0012bdcc79fdffbd, 0xffbdd45198ff0953, 0x097c0d04bdd15db3, 0x09690904096e0011, 0xaf49ffbdd32b4eff, 0x49ff09770404bdd0, 0xbdce14adffbdd284, 0x0989070e098e1704, 0xb75cffbdc99d60ff, 0xc5ff0997070ebdcd, 0xbdc93c0fffbdc2ee, 0x09c4300409e40e0e, 0x09b1070e09b60012, 0xe676ffbdbf2618ff, 0x1cff09bf060dbdc6, 0xbda8e8d8ffbdb97c, 0x09d1070e09d60012, 0xb1e5ffbdada7afff, 0x59ff09df3604bdbb, 0xbd9871aaffbdab66, 0x09fa09010a081001, 0xd15e83ff09f50301, 0x000cbdcbc9ccffbd, 0xffbdcca893ff0a03, 0x0a1a3404bdc464e3, 0xcd83abff0a150012, 0x190ebdc3b543ffbd, 0xffbdb2ecc0ff0a23, 0x0ab82e04bdc24a74, 0x0a5417040a742104, 0x0a4100120a460d04, 0x8abbffbdd0b019ff, 0xbdff0a4f0011bdcc, 0xbdc4b70cffbdcad9, 0x0a6100070a660011, 0x51c8ffbdc6cef1ff, 0x4cff0a6f0006bdc3, 0xbdce3546ffbdbaac, 0x0a8a00120a980006, 0xbeb393ff0a852a04, 0x070ebdb7612bffbd, 0xffbda9bea7ff0a93, 0x0aaa2b04bdb9c70b, 0xce3734ff0aa50c06, 0x2c04bdd93ddaffbd, 0xffbdc35504ff0ab3, 0x0b000012bde52246, 0x0ad23d040ae0070e, 0xb43172ff0acd3404, 0x0008bda7f043ffbd, 0xffbda6d1ebff0adb, 0x0af23e04bd9185ab, 0xbf6377ff0aed3404, 0x0a0ebdb6db12ffbd, 0xffbd9e12a4ff0afb, 0x0b243d04bdb5455a, 0x0b11070e0b160006, 0xdeb4ffbd98a9daff, 0x2fff0b1f3804bda9, 0xbdb7eadbffbdce23, 0x0b3100080b36170e, 0x1327ffbd9531a1ff, 0x60ff0b3f180ebd79, 0xbdb5928fffbd94b8, 0x0bd821010c646504, 0x0b74240e0b941501, 0x0b6100120b660901, 0xfaa5ffbdc59271ff, 0x8cff0b6f0011bdbc, 0xbdab2076ffbdb61b, 0x0b812c0e0b865e04, 0x210fffbdc40bcfff, 0xb2ff0b8f300ebdcf, 0xbdc44e18ffbdaf94, 0x0baa040b0bb80b0b, 0xc0bc87ff0ba5010c, 0x000cbdb0fcdfffbd, 0xffbdbbfd46ff0bb3, 0x0bca010cbd9e2dd8, 0xa9c00eff0bc5000c, 0x1901bd943c1bffbd, 0xffbd9740c5ff0bd3, 0x0c205804bd6e402d, 0x0bf2040b0c00000c, 0xb2bda8ff0bed3b01, 0x020ebda38bc9ffbd, 0xffbda4bcabff0bfb, 0x0c12060bbd88cc39, 0xa6b782ff0c0d2c01, 0x0012bd85c35cffbd, 0xffbd825e70ff0c1b, 0x0c440112bd55f765, 0x0c31010c0c36030b, 0x195effbd8f21eeff, 0x14ff0c3f000cbd51, 0xbd159cebffbd63eb, 0x0c513c010c560006, 0x81deffbde2be74ff, 0x13ff0c5f0306bd81, 0xbdb3e6d2ffbdc75a, 0x0cb0050b0cf4010c, 0x0c8200110c900112, 0x8daa88ff0c7d030b, 0x1a0ebd654435ffbd, 0xffbd3c4277ff0c8b, 0x0ca20002bd83c54d, 0xcd54feff0c9d7804, 0x020ebdb8dbfdffbd, 0xffbdc6b833ff0cab, 0x0cd4230ebd9fb2ae, 0x0cc1000e0cc60112, 0x2dc7ffbd9d7cafff, 0x10ff0ccf1506bccf, 0xbdd89284ffbda0f1, 0x0ce112010ce61c01, 0x831affbdd68ae8ff, 0x9fff0cef0007bdb0, 0xbd4e3e87ffbd913f, 0x0d1c19010d3c2e01, 0x0d090b010d0e1001, 0xa7c6ffbdd47d32ff, 0xdfff0d170f0bbdb3, 0xbd87c687ffbda939, 0x0d290a0b0d2e0f0b, 0xdc9dffbd8a0547ff, 0x4fff0d370007bd27, 0xbc199b17ffbd0ca3, 0x0d5201120d60040b, 0x87ea5fff0d4d0009, 0x7a04bd5daadaffbc, 0xffbdb1eb63ff0d5b, 0x0d720112bd809310, 0xc163bfff0d6d0009, 0x000ebced7ebfff3c, 0xffbdc230eeff0d7b, 0x0fc0110bbd94a6d3, 0x0e18070b0ea4000c, 0x0db400080dd40306, 0x0da100120da60107, 0xfc38ffbd973b2bff, 0xdaff0daf020bbd81, 0xbd4ea450ffbd8c75, 0x0dc1040b0dc69a04, 0x3ba3ffbd6f6ed3ff, 0x92ff0dcf060dbd24, 0xbd151595ffbd6ad6, 0x0dea000e0df8010e, 0xc15046ff0de51906, 0x1906bdccebf7ffbd, 0xffbdb56945ff0df3, 0x0e0a0002bdc5112d, 0xbdc73eff0e050007, 0x1206bda9669effbd, 0xffbd9002d3ff0e13, 0x0e60080ebda820c8, 0x0e32000e0e40020e, 0xa8aadbff0e2d0006, 0x060dbdb828c6ffbd, 0xffbda33743ff0e3b, 0x0e520006bd7ea4fb, 0xd65fd6ff0e4d070e, 0x1706bd6cb8f0ffbc, 0xffbd8312e6ff0e5b, 0x0e84060dbdaa000c, 0x0e710b0e0e760006, 0x7ea8ffbd584e40ff, 0x9dff0e7f3b01bc27, 0xbd2acfd2ffbdca41, 0x0e9100080e960007, 0xbd57ffbd104be7ff, 0xeaff0e9f0012ba9d, 0x3d5f9adcff3b89ff, 0x0ef000060f34030b, 0x0ec22b0e0ed00007, 0xc4e4a3ff0ebd0109, 0x3801bd699aecffbc, 0xffbdaecb6eff0ecb, 0x0ee2010cbd80fbde, 0xe9f6c0ff0edd060d, 0xa704bb96c650ffbc, 0xff3bfc1296ff0eeb, 0x0f14040e3d2a2681, 0x0f01010c0f06000e, 0xa7cbffbdb7f63cff, 0x9bff0f0f010cbdab, 0xbd84506dffbd9d6c, 0x0f2124050f260007, 0x750cffbd9d8cdcff, 0x09ff0f2f010cbd69, 0xbcab72a6ffbd44e1, 0x0f5c010e0f7c060e, 0x0f4900090f4e000e, 0xa742ffbdb54f6eff, 0xf2ff0f57060dbd81, 0xbcc598d3ffbd82ee, 0x0f6900090f6e060d, 0x8ccdffbd192c0bff, 0xc0ff0f77010cbbc5, 0x3d3a2eaaffbbd9eb, 0x0f929d040fa00009, 0x327e23ff0f8d1b0e, 0x010cbb549811ff3d, 0xff3d3780e2ff0f9b, 0x0fb2010c3dd68d7e, 0x61f6b7ff0fad0109, 0x7605bd3a357fffbc, 0xffbc5cd30dff0fbb, 0x10e00b0e3cb8237e, 0x1010060d1054010e, 0x0fe200090ff0000e, 0xc8aafaff0fdd0806, 0x000cbda42609ffbd, 0xffbd896e87ff0feb, 0x10020109bd380200, 0x91bff7ff0ffd000c, 0x000cbd6ba036ffbd, 0xffbd605983ff100b, 0x10348a05bc94df28, 0x1021000c1026000e, 0x94a6ffbd8af935ff, 0x14ff102f000cbd3a, 0x3c898178ffbd0984, 0x104100091046000e, 0xca41ffbd9f3390ff, 0x46ff104fab04bd61, 0xbd52ed82ffbc9dea, 0x107c000c109c060d, 0x10690006106e040e, 0xa10bffbd337e15ff, 0xeeff10770006bd79, 0xbd073184ffbca20b, 0x10890006108ea604, 0x912aff3d3ac93dff, 0xdfff1097040ebd11, 0xbaaf37a8ffbd1701, 0x10b2010810c0010c, 0xad2c99ff10ad000c, 0x000c3cc0a88dffbc, 0xff3d0bbdcfff10bb, 0x10d200083deadbd7, 0x94644eff10cd070d, 0x8b043e388049ff3d, 0xff3dbe6cceff10db, 0x1170000c3e3932c2, 0x110c0107112c0008, 0x10f9120510fe6805, 0xb197ffbda55630ff, 0xccff11071e0ebd13, 0x3c98efa1ffbc1a90, 0x11194f05111e5a05, 0x6f7effbc9c2b6eff, 0xf7ff1127220e3c6c, 0x3db7e729ff3c9b7e, 0x1142a70411500006, 0x380913ff113d3d01, 0x200e3d102c29ffbd, 0xff3d719a08ff114b, 0x116236013dd4d50d, 0xe7f54cff115d2001, 0x0007bd788b6affbd, 0xffbcfe1880ff116b, 0x11b801073b6a9a34, 0x118a2a0111983b01, 0x6b974eff11852c0e, 0x010cbd8a524fffbc, 0xffbc14b4a3ff1193, 0x11aa01123d2d72bc, 0xc40140ff11a5010c, 0x01083e28135eff3d, 0xff3bf165acff11b3, 0x11dcb3043d5681f3, 0x11c9970411ce0006, 0xe7d0ff3db08ca8ff, 0x0dff11d704063e2f, 0x3d6e65b0ffbc62b8, 0x11e91d0e11ee0112, 0xce4aff3e467eccff, 0x0dff11f7350e3e99, 0xbd19494dff3dd643, 0x0000000800000013, 0x00000001000003e8, 0x00000000000011fc, 0x048436010900000f, 0x012c0d0102481a01, 0x005c030100a00701, 0x002e040b003c0101, 0xb9e072ff0029280e, 0x0001bdbe2357ffbd, 0xffbdb89d3dff0037, 0x004e030bbdb2cc7c, 0xb8486eff0049020d, 0x0604bdb068b2ffbd, 0xffbdb1c6d0ff0057, 0x0080030bbda8bc8f, 0x006d010b0072040d, 0x7af6ffbdb68abfff, 0x81ff007b0c04bdab, 0xbd9df12bffbda9b3, 0x008d0b040092000c, 0xb835ffbdb45442ff, 0x04ff009b020dbda7, 0xbd9103e0ffbd9f15, 0x00c8030d00e8040b, 0x00b5020b00ba010d, 0x1dc4ffbdac0cbeff, 0xf1ff00c3000cbda2, 0xbd95c9c6ffbdadfb, 0x00d5000c00da1504, 0xc54affbdae55dbff, 0x8dff00e3000cbd90, 0xbd776294ffbda7f0, 0x00fe0604010c000c, 0xb98959ff00f90104, 0x0c01bdadd391ffbd, 0xffbda1c700ff0107, 0x011e1a04bd8e1496, 0x94bfb1ff01190704, 0x030dbd7344ecffbd, 0xffbd679741ff0127, 0x01bc1201bd24f1bf, 0x0158040d0178070b, 0x0145170e014a1404, 0xe1f2ffbd88f217ff, 0x84ff0153030bbdcb, 0xbd332aaaffbd671a, 0x0165030b016a000c, 0x65baffbda2ef9aff, 0x8bff01731e04bd86, 0xbcdc66b7ffbd4171, 0x018e0b04019c000c, 0xcec510ff01890112, 0x0605bd9bf47effbd, 0xffbd65df8cff0197, 0x01ae040dbd8b36e6, 0x59f9faff01a91504, 0x0a05bce17432ffbd, 0xffbd3d2179ff01b7, 0x02042504bb7f7323, 0x01d6060401e40d04, 0xaa534bff01d10404, 0x050ebd8c7acfffbd, 0xffbd3dfb91ff01df, 0x01f60006bd8b43c8, 0x0ef824ff01f1020d, 0x1901bc1dcc83ffbd, 0xffbd85feddff01ff, 0x0228040dbd523c50, 0x0215020b021a080b, 0x9692ffbd33e338ff, 0x58ff02230006bcbe, 0xbce44610ff3c9d75, 0x0235000c023a070b, 0x7a3cffbd472ed6ff, 0xc8ff02430c053c0f, 0x3d64863fffbb276b, 0x02dc1c0403683004, 0x0278060402980f04, 0x02650006026a040e, 0x6bbbffbd7902b1ff, 0x93ff02730112bdad, 0xbdb0218bffbdc6f6, 0x0285070e028a0006, 0x8e33ffbcf59c84ff, 0x43ff02930c04bd85, 0xbd8cfd7effbdabdb, 0x02ae040e02bc0006, 0x8a8f24ff02a91604, 0x070e3d0ac450ff3b, 0xffbbb3a7c8ff02b7, 0x02ce0906bd0a28e3, 0x4d1bd2ff02c91a04, 0x0d06bc9f31f7ffbd, 0xffbd5cc00dff02d7, 0x03240006bd90a9f1, 0x02f624040304070e, 0x7b3a44ff02f1040e, 0x00093ce3b21fff3d, 0xff3dbc268eff02ff, 0x031623043d67a515, 0x1c5534ff03110111, 0x120ebbb2380cffbe, 0xff3d11f04fff031f, 0x03480e06bd373a2f, 0x0335090e033a2804, 0x32fdffbcb0c613ff, 0x2cff03430d0ebd21, 0xbcb62e39ff3b168a, 0x03551106035a0211, 0xa04bffbd61de07ff, 0x9aff03632504bd97, 0x3d4bc3eaffbcdcbc, 0x03b4050b03f82501, 0x0386010d0394050d, 0x1dc57cff0381020b, 0x000cbc79f2c4ffbd, 0xffbd3942fbff038f, 0x03a6000c3cc587c6, 0x116c26ff03a10705, 0x010bbd2b9b69ffbc, 0xff3cd7e7c5ff03af, 0x03d800063d9e6cc3, 0x03c5070b03ca010d, 0x42aaff3c058021ff, 0x98ff03d309033d1a, 0x3ddf0f64ff3d0ff6, 0x03e5030d03ea0605, 0x72a0ff3ca9d0a9ff, 0x83ff03f365043d89, 0x3cb809b4ffbcebdf, 0x0420040b04400006, 0x040d030d04122b01, 0xbe16ff3d73e884ff, 0x3aff041b000d3de0, 0x3e077fc3ff3d982b, 0x042d02120432030d, 0x8d7cff3e0d9745ff, 0xa2ff043b2a013e79, 0x3e32173fff3e14ee, 0x0456480404647504, 0x765482ff04511106, 0x000bbd10a51cff3c, 0xffbdecec99ff045f, 0x0476030b3d42aed1, 0x8574e0ff0471350e, 0x040dbade59b2ff3d, 0xff3dce9f1eff047f, 0x06c46a043e0cd57a, 0x051c011205a80006, 0x04b8270404d82e04, 0x04a5010b04aa0a0b, 0xdee9ffbddfd194ff, 0x80ff04b3000ebdcc, 0xbdfbb83dffbdf14b, 0x04c5000e04ca000b, 0x0baaffbdb3d358ff, 0xc0ff04d3050bbdf0, 0xbe0b6c59ffbdf75b, 0x04ee570404fc000b, 0x499e37ff04e93e01, 0x010ebe08bbe9ffbe, 0xffbda7903fff04f7, 0x050e3c01be02ced9, 0x4576a9ff05092f04, 0x2f04be515d4effbe, 0xffbe02e98bff0517, 0x05644504be17d77a, 0x0536160405442804, 0xa78411ff0531000d, 0x000dbc3abaa8ffbd, 0xff3b294038ff053f, 0x0556010d3d98afaa, 0x1df34eff05513b04, 0x37043ddfd840ff3d, 0xff3e0e7f02ff055f, 0x0588070e3e400e65, 0x05758805057a5d04, 0x538aff3e8876b0ff, 0xa1ff05838f053dfc, 0x3b96e28dff3ea9af, 0x0595010d059a5c04, 0x8145ff3df1ce51ff, 0x4aff05a3120e3e42, 0x3e445eedff3e8c48, 0x05f4440406381206, 0x05c60d0605d42504, 0x958b1aff05c11a04, 0x010ebd060c28ffbd, 0xffbda596d5ff05cf, 0x05e60406bd747ceb, 0xb45baeff05e13f01, 0x2e04bdb35258ff3c, 0xffbc714e41ff05ef, 0x06181c053ced3fdb, 0x06055a04060a090e, 0x4854ff3deeb0f5ff, 0x8eff06130f063e61, 0x3d171879ff3e0574, 0x0625000e062a3705, 0x247cff3b08d155ff, 0xd1ff0633010d3da8, 0x3c1bf88dffbdea27, 0x0660150606805204, 0x064d2b0406523a04, 0x191effbdb65e63ff, 0x23ff065b4804bd84, 0xbc0c06bfffbd32fd, 0x066d170606724c04, 0x3701ffbdaf059eff, 0xc8ff067b1706bdcd, 0xbdaa50b1ffbd625e, 0x0696000b06a41506, 0xac0b4fff0691000c, 0x1306be04ee87ffbd, 0xff3db07fa7ff069f, 0x06b617063d1ca9ab, 0x5f5727ff06b11606, 0x1806bd25c598ffbc, 0xffbd68b9b9ff06bf, 0x07e41506bdbb95f4, 0x0714410107580006, 0x06e6050b06f43e01, 0x05a0deff06e1010b, 0x040d3e3f7571ff3e, 0xff3e4f605aff06ef, 0x0706050b3e7465d0, 0x45a741ff07010007, 0x050d3e81a5d9ff3e, 0xff3e896d55ff070f, 0x0738000c3e9e40bd, 0x07250a0b072a0111, 0xb2f9ffbe1b93cbff, 0x7cff0733010ebe90, 0x3e8fafbaffbcb9f3, 0x0745190e074a040b, 0x116bff3ebb4a49ff, 0x17ff075344053e93, 0x3ec272aeff3ea366, 0x0780010b07a0030b, 0x076d340e07720002, 0x6935ffbbff0162ff, 0xd4ff077b1206bd8b, 0x3c9d9525ff3e196b, 0x078d020d0792010e, 0xdffeff3d3fe2adff, 0xbbff079b000c3dfb, 0x3e8169deff3e31b0, 0x07b6300507c4010e, 0x3a837eff07b1020d, 0x7b043e860eadff3e, 0xff3d6853ffff07bf, 0x07d699043e250b29, 0x452dbcff07d10606, 0x2e0e3e99b3c5ff3e, 0xff3eb37225ff07df, 0x087418063e802bb9, 0x0810000b0830030b, 0x07fd2a0e0802b704, 0x1895ffbd12f7f3ff, 0x79ff080bbd04bddc, 0xbcddee42ff3d6958, 0x081d010e0822030d, 0xb877ff3d0d73eeff, 0x87ff082b7f043de3, 0x3e3cc31fff3d2125, 0x0846160608548004, 0x1cc0e0ff0841170e, 0x7f04bdbc9b0dff3e, 0xff3c5bb606ff084f, 0x0866010e3ddf4345, 0x0a3912ff0861040d, 0x000c3e6e992dff3e, 0xff3e807513ff086f, 0x08bc9a043ea7ec4e, 0x088e8b04089c1906, 0xae566dff08898104, 0x9604bd2b0ab4ffbd, 0xff3d4f1353ff0897, 0x08ae0205bbbac805, 0xdc6a5fff08a9010e, 0x090ebe27b5d0ffbd, 0xffbddc6af3ff08b7, 0x08e01906bd1b8c57, 0x08cd110508d2030b, 0x82d6ff3e128b6aff, 0x27ff08db020d3d89, 0x3e852acaff3e3a0d, 0x08ed010e08f2010b, 0x5cf3ffbdfb3bbdff, 0x95ff08fba704bc62, 0x3d9298e4ffbd134f, 0x0b4451040d807904, 0x099c1c010a282d04, 0x0938060109581104, 0x0925030b092a0101, 0x9986ffbdc09cfcff, 0x2cff0933030bbdbf, 0xbdbdf581ffbdbf91, 0x09450204094a0904, 0xcb32ffbdbf6c34ff, 0x6eff09530d0ebdbc, 0xbdbe469dffbdb9a0, 0x096e0301097c0d01, 0xc069caff09690001, 0x2904bdbd9befffbd, 0xffbdb9978dff0977, 0x098e030bbdb5ad2e, 0xb915e4ff0989010c, 0x1c04bdb1fe30ffbd, 0xffbdb4028fff0997, 0x09e41e04bdadb01b, 0x09b60a0409c41104, 0xbe408dff09b10404, 0x0011bdba09f6ffbd, 0xffbdb98ffaff09bf, 0x09d60011bdb4a923, 0xb2f81cff09d1050e, 0x0006bdba7b48ffbd, 0xffbdac1c28ff09df, 0x0a080011bdbb248c, 0x09f5050e09fa2b04, 0x07c6ffbdabca46ff, 0x57ff0a03070ebdb2, 0xbdb11ed0ffbda377, 0x0a15070e0a1a0112, 0x3185ffbd9c2d7aff, 0x29ff0a232b04bda9, 0xbdae23cbffbdba47, 0x0a741c0e0ab82501, 0x0a4614010a543a04, 0xab9f34ff0a41100e, 0x000cbdb228f2ffbd, 0xffbda9924fff0a4f, 0x0a660011bd9f2e4b, 0x9668f8ff0a61110e, 0x4604bdaa4cceffbd, 0xffbd922083ff0a6f, 0x0a984904bd7f1903, 0x0a852a0e0a8a3d04, 0xb322ffbdb51910ff, 0xe8ff0a930011bdbf, 0xbdadede4ffbdb851, 0x0aa500110aaa220e, 0x9167ffbdb4324fff, 0xc6ff0ab3020dbd90, 0xbdaf9c6effbd8074, 0x0ae0000c0b003f04, 0x0acd020e0ad2030b, 0xc4f5ffbdb1421cff, 0x6eff0adb000ebda0, 0xbd9272e2ffbda70e, 0x0aed00080af20011, 0x992affbd9ba6eeff, 0xebff0afb0006bd8f, 0xbda7dafeffbd82e7, 0x0b1600060b245004, 0x8cfb0eff0b110012, 0x020dbd698ea8ffbd, 0xffbd97b876ff0b1f, 0x0b36000cbdc8369f, 0x8be639ff0b310008, 0x0009bd46d05fffbd, 0xffbd12e1e7ff0b3f, 0x0c646e04bd715e5a, 0x0b9415010bd82101, 0x0b662c0e0b740d01, 0xa76e54ff0b61060d, 0x340ebdb2e081ffbd, 0xffbdb58f35ff0b6f, 0x0b862b0ebdc3fd4e, 0xa2f741ff0b810007, 0x310ebd9837bbffbd, 0xffbdac0483ff0b8f, 0x0bb80b0bbdb8d2c2, 0x0ba5080b0baa0007, 0x75e4ffbda8ce7aff, 0xc3ff0bb3010cbd97, 0xbd823f07ffbd9b47, 0x0bc5000c0bca010c, 0x7055ffbd99b431ff, 0x14ff0bd31e01bd80, 0xbd297266ffbd6e22, 0x0c00000c0c200a0b, 0x0bed000e0bf2020e, 0x19d2ffbdb5ba38ff, 0xeaff0bfb0006bda1, 0xbdae287cffbd8158, 0x0c0d01070c123501, 0xc3aeffbd8b31eaff, 0xbdff0c1b0009bd4d, 0xbd7c0fc0ffbd2276, 0x0c3601120c44000c, 0x6ed4edff0c310008, 0x0006bd1db402ffbd, 0xffbd7581b4ff0c3f, 0x0c560112bdaae2d4, 0x19c2b3ff0c510008, 0x030ebc84126cffbd, 0xffbda90468ff0c5f, 0x0cf4000cbd907977, 0x0c9000060cb00a0b, 0x0c7d030b0c820008, 0x4e06ffbd890f38ff, 0xc0ff0c8b7004bd69, 0xbd6a748effbd41d2, 0x0c9d030e0ca27204, 0x4edbffbda6c18dff, 0xb9ff0cab7804bd93, 0xbda6c725ffbdb794, 0x0cc600080cd40108, 0x5f01f7ff0cc1080e, 0x080ebd336d53ffbd, 0xffbd4ad603ff0ccf, 0x0ce60006bccaef7c, 0xc8158eff0ce1140b, 0x0b053b2d5cacffbc, 0xffbd0e21e6ff0cef, 0x0d3c220ebda7abaa, 0x0d0e00070d1c0006, 0x66f951ff0d090009, 0x0a0bbd21ba0effbc, 0xffbc88e79dff0d17, 0x0d2e03053c15c85e, 0xda2634ff0d290d06, 0x3b05bd10c7d9ff3c, 0xffbd8d8958ff0d37, 0x0d60280ebdb1a745, 0x0d4d230e0d520011, 0xfc1bffbd6dea7dff, 0x74ff0d5b0007bd9e, 0xbb8d2a1fffbd222e, 0x0d6d060d0d722c0e, 0x0e42ffbd4f8f09ff, 0x54ff0d7b1d01bd9e, 0xbd94921cffbdae04, 0x0ea4010c0fc0140b, 0x0dd4000c0e18050b, 0x0da600120db40006, 0x88a2f0ff0da1070d, 0x060dbd32c3b3ffbd, 0xffbd608fc7ff0daf, 0x0dc6040ebcbe600b, 0xafef6fff0dc1000e, 0x0007bda0cf1bffbd, 0xffbd9f69cbff0dcf, 0x0df8010ebd8315f8, 0x0de501120dea000e, 0xa965ffbdbbcd9fff, 0xe3ff0df3060dbda6, 0xbd2fb0f5ffbd96ba, 0x0e0500110e0a020e, 0x8630ffbdcc8b46ff, 0xd0ff0e130006bd7e, 0xbd541d21ffbcbb88, 0x0e40060d0e60010e, 0x0e2d0a0b0e32000e, 0x24daffbdd11348ff, 0x35ff0e3b0009bda4, 0xbd561955ffbd9252, 0x0e4d00120e52000e, 0xb75effbd9ca31eff, 0xd6ff0e5b0011bd7c, 0xbc471808ffbd5368, 0x0e76060d0e840b0e, 0xf4c4dcff0e71a004, 0x0011bd474a13ffbc, 0xffbcbe30f0ff0e7f, 0x0e96000c3d0b4dc4, 0xe60218ff0e910006, 0x0007bd3180cbffbb, 0xff3b24a873ff0e9f, 0x0f34040b3d3f2f7d, 0x0ed058050ef00107, 0x0ebd22010ec23201, 0xae31ffbdbfc404ff, 0x17ff0ecb040ebd8d, 0xbd0c6728ffbd8c3f, 0x0edd280e0ee20209, 0x0a8dff3a589521ff, 0xf9ff0eeb090ebd05, 0xbd98502cffbd67d7, 0x0f06020e0f14050e, 0xa5eb34ff0f01000e, 0x060dbd59b310ffbd, 0xffbd30e57eff0f0f, 0x0f26060d3d3778b4, 0x56da76ff0f213601, 0x00113c3999e5ffbd, 0xff3c6a54ddff0f2f, 0x0f7c01123dbf5ee0, 0x0f4e31010f5c9d04, 0x665881ff0f492901, 0x0009bb979edfffbd, 0xff3d6a4ba4ff0f57, 0x0f6e0007bbfd8312, 0x766b5aff0f692a0e, 0x030ebc47684dff3d, 0xffbc7ccc0eff0f77, 0x0fa00b0e3e0c2a86, 0x0f8d000e0f92020e, 0xbaf0ffbd957543ff, 0x15ff0f9b0606bd5c, 0xbcac0845ffbd3498, 0x0fad00070fb20107, 0x007effbd25d92aff, 0x57ff0fbb3b013bb8, 0x3d85483effbd402f, 0x1054010c10e00006, 0x0ff0020e10100b0e, 0x0fddab040fe2000c, 0x690fffbd3c0b20ff, 0x87ff0feb000ebd85, 0xbc6d1323ffbd4e89, 0x0ffd000c10020108, 0x037fffbcae301eff, 0x60ff100b000c3c49, 0x3db33363ff3cb97c, 0x1026000710340108, 0x54e194ff10216805, 0x9a043cf537a1ffbc, 0xff3c8a29baff102f, 0x1046000c3dbb2368, 0x76d117ff10418f04, 0xa2043d9f85f8ff3c, 0xff3db1a156ff104f, 0x109c3d013e45fbfb, 0x106e1c01107c2a01, 0x0a6360ff10698204, 0x2905bd95f52bffbd, 0xff3cd8a283ff1077, 0x108e0008bc28c01e, 0x8b7d4bff10890107, 0x00073d8fc6e3ff3c, 0xff3d7d314eff1097, 0x10c0080e3ddb798f, 0x10ad020e10b28505, 0x1606ff3c52ec16ff, 0x62ff10bb060d3ddb, 0x3cbd30aeffbd500b, 0x10cd010710d20008, 0xe797ff3dfb7147ff, 0x29ff10db01073e46, 0x3e90463eff3e3787, 0x112c010e1170090e, 0x10fe1906110c000e, 0x9b3f87ff10f9000c, 0xaa04bd8ed305ffbd, 0xffbdd055c8ff1107, 0x111e000cbda36dff, 0xaf260fff11198b04, 0x9a04bd840259ffbd, 0xffbd857989ff1127, 0x11500706bd4e693c, 0x113d070e11420506, 0x04e7ffbda455b4ff, 0x5cff114bb104bde4, 0xbcfb2a76ffbd67ca, 0x115d030e1162000c, 0x549affbd5b7eaeff, 0x3aff116b1706bd0a, 0xbd45df58ffbc05a7, 0x11989f0411b8010c, 0x11850007118a0002, 0xdb30ffbd964146ff, 0x57ff11939804bd2e, 0xbba5d329ffbd1507, 0x11a5000c11aa350e, 0xffeaffbc28a30dff, 0x9cff11b31c013cad, 0xbd55c8e0ffbdd178, 0x11ce3d0111dc0107, 0xb3a669ff11c91201, 0x0007bce12c30ffbd, 0xff3ba3fe2dff11d7, 0x11ee04063d66d01e, 0x35410eff11e9ad04, 0x130e3d8c1b11ffbc, 0xff3d5255c9ff11f7, 0x000000133dfc7059, 0x000003e800000008, 0x000011fc00000001, 0x0900000f00000000, 0x0248130104842801, 0x00a00301012c0801, 0x003c030b005c0101, 0x0029170e002e000b, 0x2f06ffbdaacd52ff, 0x9eff0037000cbdae, 0xbda6f3b8ffbdad5d, 0x0049000c004e0001, 0x8c44ffbdabb79aff, 0x5eff0057000cbda5, 0xbd9fcf16ffbdab3c, 0x0072000b00800c04, 0xa89122ff006d160e, 0x020dbdadb33affbd, 0xffbda36decff007b, 0x0092030dbd9dc807, 0xa3450eff008d040b, 0x040bbd9c1fb6ffbd, 0xffbd9a0912ff009b, 0x00e80601bd91bcf2, 0x00ba020d00c8030b, 0xae3332ff00b5000b, 0x000cbd9dcd9dffbd, 0xffbda65d1bff00c3, 0x00da0804bd94341c, 0xa44c1aff00d50204, 0x040dbd933f6fffbd, 0xffbd8eaedcff00e3, 0x010c030bbd826567, 0x00f9000d00fe020d, 0x2299ffbd9b808eff, 0xb3ff01071304bd92, 0xbd82841affbd8e98, 0x0119000c011e030d, 0xc047ffbd9aba5eff, 0x18ff01270504bd82, 0xbd627f01ffbd8c27, 0x0178050b01bc0f01, 0x014a0c010158030d, 0x9e33d1ff0145010b, 0x000cbd88de51ffbd, 0xffbd9d03cbff0153, 0x016a0c01bd742280, 0x87b9a7ff01650c04, 0x0b04bd65ad5bffbd, 0xffbd80f435ff0173, 0x019c0705bd34f174, 0x01890604018e1104, 0x360dffbda173b7ff, 0x4cff01970505bd8a, 0xbd562ce3ffbd81d0, 0x01a9070e01ae0b04, 0x1fe7ffbd731776ff, 0xadff01b7030dbda7, 0xbcee3369ffbd39f9, 0x01e4040d0204030b, 0x01d1000d01d6000c, 0xe230ffbda82a9dff, 0xb2ff01df010dbd94, 0xbd3b1832ffbd7d2d, 0x01f1010b01f6000c, 0x666affbdaaabb8ff, 0x33ff01ff2d04bd8c, 0xbca5160bffbd169e, 0x021a06040228000c, 0x9489a1ff0215060d, 0x0605bd5f8957ffbd, 0xffbd49f05bff0223, 0x023a0905bd781fcc, 0x7e69eaff02352404, 0x040dbd301024ffbd, 0xffbccaf9e0ff0243, 0x03682a0439b79271, 0x0298090402dc1204, 0x026a010402780404, 0xa4d5e8ff0265020e, 0x0506bdb5c7ffffbd, 0xffbd88b443ff0273, 0x028a010ebda83e66, 0x32f514ff02850006, 0x0112bd969cdcffbd, 0xffbdccf987ff0293, 0x02bc030ebd7f9ab1, 0x02a9010802ae0905, 0x357dffbd811ab1ff, 0xfdff02b70d04bd43, 0xbc486306ffbce744, 0x02c9000602ce070e, 0xac3bffbd219470ff, 0x2cff02d70c04bd6d, 0xbd6b47b3ffbd8712, 0x03041c040324070e, 0x02f1060602f60c05, 0xff20ffbcdb5eabff, 0xb0ff02ff030ebd47, 0xbbcca12bff3cad31, 0x03110b0603160f05, 0x8b45ffbc2a994cff, 0x9aff031f050ebd1a, 0x3cf50a8eff3d68ce, 0x033a0e0e03482004, 0x30ae13ff03351804, 0x1a0ebcc4cc44ffbd, 0xffbd47b20eff0343, 0x035a0e0ebdbe6f93, 0xeda3f8ff03550006, 0x1c0ebce45a12ff3b, 0xffbd08211fff0363, 0x03f81e01bd9027ea, 0x0394040d03b4060b, 0x0381010d03861901, 0x4028ffbd3ea7f3ff, 0x75ff038f0106bccb, 0xbd2e3e83ffbbc040, 0x03a1010b03a61801, 0x3b2fffbd05b10eff, 0x89ff03af0c053b57, 0x3d17e86effbc976e, 0x03ca040d03d80c05, 0x76bee4ff03c5350e, 0x0605bd2359fdffbc, 0xff3c78916aff03d3, 0x03ea020dbc2c2e05, 0x662fb2ff03e5010d, 0x19013d03ece8ffbb, 0xff3d355f7eff03f3, 0x0440040b3d9fc9e1, 0x041222010420040d, 0xbc0823ff040d010d, 0x010d3c3e368dffbc, 0xff3a6f7395ff041b, 0x0432000c3d3c794d, 0x8078a1ff042d010b, 0x020b3940185dffbd, 0xff3d5e892bff043b, 0x046413053db9e18c, 0x0451000604564304, 0x8736ff3d33b6d5ff, 0xbfff045f040dbb92, 0x3d9a2dc2ff3d1e31, 0x047124010476010d, 0x6e22ff3cfd3177ff, 0xf5ff047f4c043d95, 0x3df2fabeff3dae6c, 0x05a8000606c46104, 0x04d82104051c3704, 0x04aa000d04b81404, 0x9b2537ff04a50009, 0x000cbceca0d1ffbd, 0xffbd08c5e4ff04b3, 0x04ca0012bb0cb71d, 0x005bd9ff04c53401, 0x0008bdbb01b2ffbe, 0xff3cb2666eff04d3, 0x04fc01113d710507, 0x04e92f0404ee4001, 0x438cffbe32a6e5ff, 0x0eff04f7000bbe3e, 0xbdd9bdd6ffbdbe5c, 0x05092d04050e070e, 0x8fbfff3da71932ff, 0x36ff051741013df9, 0xbc21f350ff3d5c04, 0x0544010d05643f01, 0x0531010b05363201, 0x3088ffbc9c2f12ff, 0xbeff053f54043d62, 0x3deb1a2dff3dadad, 0x055131010556020b, 0x32f5ff3d937102ff, 0x44ff055f00093df2, 0x3ddd0f2bff3e1325, 0x057a580405880111, 0x03be80ff05750a0b, 0x000bbe161efdffbe, 0xffbd9721feff0583, 0x059a070ebe01642a, 0x717403ff05958c05, 0x55043d8ef27eff3e, 0xff3e039327ff05a3, 0x063813063e54c769, 0x05d4230405f43a04, 0x05c11a0405c60d06, 0xc76cffbd65f7dfff, 0x46ff05cf010ebcf7, 0xbd531ac0ffbd9275, 0x05e1290505e60e06, 0x5ea9ff3b3d60deff, 0x65ff05ef0211bd52, 0xbc32c1ebffbd475e, 0x060a5b0406183905, 0x95a5b0ff06051006, 0x02113d21ff18ff3d, 0xff3dd738d5ff0613, 0x062a010d3e62a5e1, 0xceaf66ff0625000e, 0x5304bdd7171fffbd, 0xff3d4733eeff0633, 0x06801706bc5bb208, 0x0652390406605404, 0xaba5b4ff064d2a04, 0x1506bd8a111dffbd, 0xffbcdd3c3dff065b, 0x06721406bd7bdb89, 0x1a96afff066d0211, 0x01073def08c5ff3d, 0xffbcd6d092ff067b, 0x06a4040e3c91f416, 0x0691000c06964b04, 0x0340ffbdb21b41ff, 0x90ff069f1806bdc0, 0xbda8076bffbd7a05, 0x06b1400406b61806, 0x36c6ffbe06e070ff, 0x9aff06bf1906bdb8, 0xbe1435c6ffbdf88a, 0x07583e0107e41306, 0x06f4030b07142105, 0x06e1030d06e62f03, 0x48efff3d933b65ff, 0x10ff06ef000b3dec, 0x3d0529faffbd9ca1, 0x070100070706000c, 0xe708ff3d8e03fcff, 0x92ff070f12033df8, 0x3e12b4a5ff3de57b, 0x072a33010738050d, 0x5dbab5ff0725020b, 0x02113dfab183ff3d, 0xff3e1e559cff0733, 0x074a3a013eb2ee8d, 0x1879ddff0745050b, 0x050b3e36a6caff3e, 0xff3e437d79ff0753, 0x07a0000c3e6969d9, 0x0772010e0780060b, 0x8baa1fff076d8905, 0x020dbcfd3f3fff3d, 0xff3df43d19ff077b, 0x0792030e3e4798e1, 0xb2e98fff078d000e, 0x9d043e3fa9f8ff3d, 0xff3e694592ff079b, 0x07c4040b3e976062, 0x07b1190e07b60006, 0x7778ff3ea41ab7ff, 0xd7ff07bf010e3e82, 0x3e63591fff3dbaa7, 0x07d1020d07d6000e, 0x555fff3d7ec151ff, 0x57ff07df62053e33, 0x3eb0bb49ff3e99e2, 0x08307f0408741806, 0x0802750408101506, 0x04d67fff07fd030b, 0x220e3dbbb4eeff3d, 0xff3e32b7b3ff080b, 0x08227204bd12f05c, 0xc194d0ff081d1706, 0x1606bd4d2b1fffbb, 0xff3dc1a0d4ff082b, 0x0854030b3ba28f06, 0x0841b7040846010b, 0x39c0ffbcee0ce3ff, 0xc3ff084f010e3cb9, 0x3e231ad7ff3d9346, 0x0861040d0866010e, 0x957bff3e0ef32fff, 0x15ff086f030d3e56, 0x3e9d00e4ff3e7813, 0x089c190608bc9b04, 0x08890107088e8404, 0xf6baffbd9db4f0ff, 0x80ff08978b04bd55, 0x3c9933d9ffbcf896, 0x08a90f0e08ae0008, 0xddb3ffbde5a0cdff, 0xb5ff08b79704bd15, 0xbd0eca6cffbd9dfc, 0x08d2030b08e01906, 0x0be40dff08cd010b, 0x020d3dcaf2e5ffbc, 0xff3e2a986cff08db, 0x08f2090e3e75f5a3, 0x0015dfff08ed070b, 0x010b3da348a6ff3b, 0xff3d0411b2ff08fb, 0x0d807f043e0036c1, 0x0a283c040b446004, 0x09581001099c1e04, 0x092a020109380601, 0xad20c0ff0925030b, 0x040bbdac093effbd, 0xffbdac28d1ff0933, 0x094a060bbdaa1a3c, 0xac5e1aff0945000c, 0x000cbda94514ffbd, 0xffbda8fdc3ff0953, 0x097c1004bda5a4b5, 0x09690304096e0904, 0x5106ffbdab45adff, 0x24ff09770011bda8, 0xbda3a12cffbda7eb, 0x09890011098e070e, 0x3a7fffbda2528bff, 0x98ff09970011bd9b, 0xbda2aa53ffbdaaa2, 0x09c4090109e41501, 0x09b1070109b6240e, 0x1b83ffbda728b4ff, 0xb2ff09bf3404bda3, 0xbda6f2d0ffbdabc7, 0x09d1000c09d63404, 0x91b3ffbda59cefff, 0x12ff09df140ebd9e, 0xbda008c0ffbd94fe, 0x09fa00120a083404, 0x972d21ff09f5070e, 0x070ebda06912ffbd, 0xffbd8be4e1ff0a03, 0x0a1a070ebd97b3b5, 0x91921bff0a15000e, 0x0011bd7726edffbd, 0xffbd988993ff0a23, 0x0ab82701bd8b047a, 0x0a5400120a74170e, 0x0a41070e0a464904, 0x4ae0ffbd7d9769ff, 0x07ff0a4f0d0ebd93, 0xbd8480f9ffbd6542, 0x0a610d0e0a664d04, 0x178effbd5a0c88ff, 0xd1ff0a6f0d0ebd81, 0xbd521bb5ffbd0833, 0x0a8a1c0e0a984b04, 0xa0a3b2ff0a850011, 0x0011bd8a3737ffbd, 0xffbda5c6ccff0a93, 0x0aaa250ebd9d4809, 0x7f5418ff0aa5060d, 0x0e01bd943438ffbd, 0xffbda34614ff0ab3, 0x0b00000cbd990d0c, 0x0ad2020e0ae0030b, 0xa2b4ffff0acd070d, 0x0208bd884c9effbd, 0xffbd86c2f6ff0adb, 0x0af2020ebd58b3ec, 0x97a625ff0aed000e, 0x0008bd790ff6ffbd, 0xffbd7160b4ff0afb, 0x0b240006bd373ee0, 0x0b1100110b164904, 0xaef9ffbd788dc5ff, 0xdfff0b1f040bbd4b, 0xbd0f45cdffbd4a0b, 0x0b3145040b364b04, 0xa6ebffbdab682aff, 0x47ff0b3f000ebdce, 0xbd96d9adffbdaa11, 0x0bd81b0e0c647404, 0x0b740b0b0b94000c, 0x0b61020e0b66080e, 0xef0fffbd904f4bff, 0xeaff0b6f030bbd58, 0xbd0ee05fffbd5a88, 0x0b8100110b860008, 0x8d9fffbd6202a2ff, 0x22ff0b8f020ebd18, 0xbc815f49ffbd5bb7, 0x0baa010c0bb80008, 0x632b1eff0ba5040b, 0x0009bd104e20ffbd, 0xffbc72b313ff0bb3, 0x0bca0112bd1ca55e, 0xb99802ff0bc50012, 0x060e3b2f241dffbc, 0xffbd973c2aff0bd3, 0x0c20230ebd63d5b3, 0x0bf200070c000012, 0x947641ff0bed0008, 0x1c0ebd84e6c1ffbd, 0xffbd2ca0c7ff0bfb, 0x0c123d05bd75d8fa, 0x37587eff0c0d6b04, 0x6e04bc813601ffbd, 0xffbd66c2adff0c1b, 0x0c440011bd35ffa6, 0x0c31050b0c367204, 0xb979ffbda0bbb0ff, 0x29ff0c3f0007bdaa, 0xbd47e53effbd9b51, 0x0c5100070c562b0e, 0x4b23ffbd815750ff, 0x36ff0c5f310ebd55, 0xbdaa7083ffbd95c2, 0x0cb0000c0cf4040b, 0x0c82020e0c900006, 0xb058edff0c7d060d, 0x0011bd8b2b55ffbd, 0xffbd65ec97ff0c8b, 0x0ca2350ebd39462c, 0x9f9f04ff0c9d040e, 0x2401bd8bd503ffbd, 0xffbdc33ff0ff0cab, 0x0cd40006bdaba657, 0x0cc101070cc63c01, 0x4115ffbd75ec16ff, 0xacff0ccf0007bcd0, 0xbc29cc09ffbd0632, 0x0ce1340e0ce60002, 0xe0fcffbd9c2fbfff, 0x3cff0cef070ebdc7, 0xbd186ef3ffbd8b1e, 0x0d1c01080d3c000c, 0x0d09310e0d0e3201, 0xd8a6ffbd63f5f1ff, 0xd0ff0d170112bdb6, 0xbd8f9c22ffbd01b4, 0x0d290e0b0d2e0112, 0x8433ffbcc11193ff, 0xe2ff0d371c053c0d, 0xbd994350ffbd3cd2, 0x0d52020e0d60190e, 0x8080a5ff0d4d060d, 0x0008bca001eeffbd, 0xff3a068256ff0d5b, 0x0d72260e3d1542c2, 0xdf3749ff0d6d0107, 0x2c0e3c0bb47bffbc, 0xffbd2a155cff0d7b, 0x0fc0010cbd9e4f49, 0x0e18000c0ea4090b, 0x0db4020b0dd40006, 0x0da1070d0da60011, 0x7ac5ffbd8ff4cdff, 0x0eff0daf060dbd5e, 0xbd0fc409ffbd7ea0, 0x0dc1020e0dc60b0e, 0x480dffbd9a20c6ff, 0x89ff0dcf190ebd43, 0xbd3c30e0ffbce879, 0x0dea33010df80002, 0xc565e8ff0de50306, 0x020bbdb1c677ffbd, 0xffbda401deff0df3, 0x0e0a050ebd902732, 0x9d5091ff0e05000e, 0x1306bd8f59efffbd, 0xffbd62a443ff0e13, 0x0e600306bd8870c0, 0x0e32190e0e400007, 0x7da7bfff0e2d0109, 0x2b0ebd46ead9ffbc, 0xffbd25bae6ff0e3b, 0x0e520012bd7ccea6, 0x42c099ff0e4d070d, 0x060d3c883624ffbd, 0xffbca82e60ff0e5b, 0x0e84090e3d6317a9, 0x0e71000e0e76010e, 0x16c0ffbd950893ff, 0x1bff0e7f1606bd89, 0xbd898adcffbd594c, 0x0e910e060e96020b, 0x2c9dffbdb057f5ff, 0xd1ff0e9f0107bd9b, 0xbccfd75cffbd40f5, 0x0ef0140e0f34000c, 0x0ec2020e0ed0060e, 0x58590aff0ebd0006, 0x9604bd882f9bffbd, 0xffbcc87d8eff0ecb, 0x0ee20e0bbd33e590, 0xe81701ff0edd0108, 0x0108bbacd8a7ffbc, 0xffbc423e78ff0eeb, 0x0f14110b3cfc2ce6, 0x0f014c050f060007, 0x7f21ffbd63c720ff, 0xa1ff0f0faf04bc93, 0x3c87fc83ffbbe404, 0x0f2138010f26a104, 0xff9fffbd8f2d5dff, 0xd8ff0f2f00083b5a, 0x3d629fa7ff3c20b7, 0x0f5c020e0f7c0b0e, 0x0f49000e0f4e0006, 0x2116ffbd5de858ff, 0xbdff0f57000ebccb, 0xbd5ebb67ffbd89dc, 0x0f690b0b0f6e060d, 0x6706ffbcd726c8ff, 0x8aff0f770008bc0c, 0x3d58935cff3b4c29, 0x0f92a3040fa00006, 0x0f5d0fff0f8d3801, 0x00073d035b23ffbd, 0xff3d36628aff0f9b, 0x0fb202063de091b9, 0xda34eeff0fad1e0e, 0x0007bd39c3daffbd, 0xffbd0b0639ff0fbb, 0x10e000063bba317a, 0x1010010710540a0b, 0x0fe2190e0ff00109, 0x32d123ff0fdd020b, 0x2b0e3ce1e9e8ffbc, 0xffbbfb7921ff0feb, 0x1002070dbd3505ed, 0xe52244ff0ffd140e, 0x9904bd7158baffbc, 0xffbd8441ffff100b, 0x1034020bbdb77710, 0x102100121026070d, 0x4c18ffbd1635aeff, 0x19ff102f02073bc1, 0x3db3167eff3cdb5e, 0x104100121046070d, 0x84c6ffbb0ccb8fff, 0x4cff104f02073d4a, 0x3e0b2072ff3d9a68, 0x107c0009109c0107, 0x10698e04106e280e, 0x9502ff3d03c433ff, 0x7dff107735013dda, 0x3d3d9194ffbce063, 0x10891c0e108e0109, 0x56d0ff3d0c8d7bff, 0x04ff10970209bcb8, 0xbd15023fffbbb970, 0x10b2660510c00b0e, 0x5969f2ff10ad8f04, 0x060d3de81b8eff3d, 0xffbd254300ff10bb, 0x10d2a6043cf478ea, 0x16a592ff10cd3501, 0x140b3de1c55cff3d, 0xff3e3249e0ff10db, 0x1170070e3e7d07e9, 0x110c000e112c010e, 0x10f9190610fe5505, 0x70e1ffbd830ab6ff, 0x62ff1107030bbd95, 0xbda96a9bffbd9891, 0x11190007111e030b, 0x0b3bffbd8b8a10ff, 0xecff11271906bd6e, 0xbd9c7ed5ffbd3fd5, 0x1142050611500706, 0x869f12ff113d060e, 0xad04bdbcb78effbd, 0xffbd4fcd60ff114b, 0x11620b0bbce8e90a, 0xc8ae6bff115d1606, 0x0107bd47f598ffbc, 0xffbc5d49e7ff116b, 0x11b801073c41f06f, 0x118a00071198130b, 0xad592dff11853d01, 0x3d01bd221b86ffbd, 0xffbd7eaab5ff1193, 0x11aab304bbd192ea, 0xf8023cff11a5020d, 0x2e0ebc69e42dff3c, 0xff3d6ab38aff11b3, 0x11dc0b0bbc35d9ff, 0x11c91a0111ce3401, 0x49bbffbdccedecff, 0xbaff11d7030bbd05, 0x3d1a036fffbb879c, 0x11e91a0111ee3b01, 0x90b8ffbd876fb6ff, 0x43ff11f7ad043ca6, 0x3de41223ff3d30d0, 0x0000000800000013, 0x00000001000003e8, 0x00000000000011fc, 0x048439010900000f, 0x012c0d0102481a01, 0x005c040100a00701, 0x002e0001003c0201, 0x991c9bff00290304, 0x080bbd956660ffbd, 0xffbd939c09ff0037, 0x004e080bbd8df820, 0x9b82bcff0049000c, 0x000cbd8d330fffbd, 0xffbd92fea8ff0057, 0x0080060bbd847243, 0x006d020b0072020d, 0x5f75ffbd911831ff, 0x06ff007b000cbd89, 0xbd80643bffbd938f, 0x008d000300920205, 0xb0cdffbd934f89ff, 0xbfff009b000cbd86, 0xbd680538ffbd8ca4, 0x00c8030b00e81e04, 0x00b5020400ba050d, 0x3312ffbd94bf41ff, 0xbdff00c30604bd7e, 0xbd5ca3a6ffbd8127, 0x00d5040400da0d04, 0x3f6bffbd890118ff, 0x98ff00e30405bd5f, 0xbd3b8f87ffbd8050, 0x00fe240e010c040b, 0x569695ff00f9040d, 0x000cbd333c30ffbd, 0xffbd8d48aaff0107, 0x011e0405bd649ef7, 0x78aa37ff01190306, 0x040dbd608b99ffbd, 0xffbd30a460ff0127, 0x01bc1301bcf2498c, 0x0158040d0178040b, 0x01451001014a000c, 0x29e9ffbd8fcc4cff, 0x57ff0153010dbd82, 0xbd3361a4ffbd69da, 0x01650404016a0d04, 0x9d1fffbd85534dff, 0xccff01730805bd44, 0xbcd958feffbd5f3f, 0x018e0604019c0f04, 0x84419bff01890606, 0x070ebdc08712ffbd, 0xffbd224f37ff0197, 0x01ae0805bd8b2419, 0x59da72ff01a92204, 0x020dbd2a7c48ffbd, 0xffbcdc3f00ff01b7, 0x02042e04bb803b0c, 0x01d6060401e40d04, 0x946c88ff01d10204, 0x030ebd71ac3dffbd, 0xffbd179de6ff01df, 0x01f60a05bd5ffa05, 0x53e658ff01f11304, 0x0f0ebd21a595ffbd, 0xffbbbfd76bff01ff, 0x0228060bbd04b7c2, 0x0215010d021a050d, 0xe0caffbd256f29ff, 0x7aff02231005bc8a, 0x3c75722effbc915b, 0x02350b05023a000c, 0x6415ffbcaa4c5eff, 0x17ff0243030dbd5c, 0x3d39f311ff3c3e99, 0x02dc000c03682a04, 0x0278000d02980111, 0x0265020e026a2a01, 0x6c57ffbdb5473bff, 0x00ff0273020ebda6, 0xbd9d91dbffbda256, 0x0285020d028a2a01, 0xb4e7ffbe13a84aff, 0x86ff0293020dbe3c, 0xbdf714deffbdc4c4, 0x02ae070402bc1104, 0x63c4eaff02a90606, 0x0006bd8ce300ffbd, 0xffbd009caaff02b7, 0x02ce0212bd522c9a, 0xe21066ff02c9030d, 0x000dbc12f5aeffbc, 0xff3d01dd6eff02d7, 0x03241b043df88ac1, 0x02f6090403040f04, 0x2be254ff02f1020e, 0x0006bd84f7b0ffbd, 0xffbc9e873eff02ff, 0x03160006bd8329fd, 0x885d6fff0311030e, 0x0a06bc1e7011ff3c, 0xffbccc62b1ff031f, 0x03480006bd580740, 0x03350009033a050e, 0x2668ff3d81c749ff, 0xd8ff03430a0e3d03, 0xbbbab8deff3cd401, 0x03552001035a0d06, 0x33e0ffbd260b9dff, 0xafff03630205bbcc, 0xbd009150ffbd532e, 0x03b4050b03f82a01, 0x038622010394030d, 0xec4c0aff0381020b, 0x00063b7ae49effbc, 0xff3d316963ff038f, 0x03a62201bc81c985, 0x4b9fb3ff03a11205, 0x01063d37aa63ffbc, 0xff3da72c9cff03af, 0x03d8030d3c74dd67, 0x03c5240103ca0206, 0x42b5ff3d64298aff, 0x01ff03d321013dbe, 0x3cb3bfeaffbc64c7, 0x03e5240103ea000c, 0xe1f9ff3bc3386bff, 0xd6ff03f311053d5b, 0x3dd647d3ff3d4e97, 0x0420070b0440000c, 0x040d360e04123101, 0xc23affbc5eaf57ff, 0x50ff041b000bbd81, 0x3cac8cb9ffbd98b3, 0x042d650404320212, 0x3701ff3d0476caff, 0x31ff043b4f043db7, 0x3eaa1cc4ff3e0bdd, 0x04564d040464040b, 0xa869f2ff04510006, 0x02113c9b61ebff3d, 0xff3de0685dff045f, 0x047600063ebbc3cb, 0xd9e7a4ff04714904, 0x64043e11867dff3d, 0xff3ce88604ff047f, 0x06c450043debd62c, 0x051c2e0405a80006, 0x04b8610504d8000d, 0x04a5000904aa1304, 0x2af1ffbda24e69ff, 0x77ff04b34101bc33, 0x3b96e91dff3d2b4b, 0x04c5010704ca7905, 0x98fdffbceb85beff, 0x37ff04d3020ebd86, 0xbdb23dfaffbd845e, 0x04ee030b04fc0011, 0xb6e91aff04e9020e, 0x020dbd9ecc10ffbd, 0xffbde5f9feff04f7, 0x050e2304bdc52c03, 0x408de9ff05091704, 0x01123d33ba59ffbc, 0xffbdc68da0ff0517, 0x056483053dca9de2, 0x0536070e0544010d, 0x8125b7ff0531020e, 0x120e3e31c334ff3d, 0xff3d8b3690ff053f, 0x05563a04bcbf536e, 0xd6067bff05510111, 0x030e3e03f629ffbd, 0xff3e50b46dff055f, 0x0588000d3e1a5153, 0x0575000e057a080e, 0x90dbffbdb6ea34ff, 0x73ff0583030bbceb, 0xbdd660e7ffbe0217, 0x0595000b059a0112, 0x1807ffbdf11835ff, 0x24ff05a34b04bde0, 0x3e1a36adff3d1849, 0x05f43a0406381206, 0x05c60d0605d42504, 0x34da2dff05c12204, 0x040ebcac996affbd, 0xffbd8823c1ff05cf, 0x05e63904bd21a8c1, 0xb15f89ff05e1010d, 0x0d063b3723cbffbd, 0xffbda321edff05ef, 0x0618030bbd3fa624, 0x0605170e060a000b, 0xfbaaffbc6749bdff, 0x68ff06131006bd8b, 0x3c00ef5eff3d5a12, 0x06250f06062a4504, 0xa8b7ff3d65e743ff, 0xb7ff0633000ebc41, 0x3deaa352ff3d8628, 0x0660150606804b04, 0x064d2b0406522e04, 0xb0ebffbd95849fff, 0x29ff065b3f01bd5d, 0xbd472c31ffbbcdc8, 0x066d3c0106723e01, 0x4722ffbd8a8911ff, 0x7aff067b1706bc88, 0xbda7f7fdffbd95da, 0x0696021106a41506, 0xe81909ff06910007, 0x07053b9c9795ffbc, 0xff3dbb00f3ff069f, 0x06b617063ca62e38, 0x3c27fbff06b10211, 0x02113c0769e0ffbd, 0xffbd9034b2ff06bf, 0x07e41506bd150470, 0x0714020d0758000e, 0x06e6000906f40c06, 0xa7952cff06e19305, 0x9704bda31625ffbb, 0xff3e151f3aff06ef, 0x0706030b3d9c1f59, 0x0e03f3ff0701000c, 0x50053d143f32ff3b, 0xff3d895219ff070f, 0x0738000c3d25aff5, 0x0725000b072a0112, 0x0fabffbdaaa1bfff, 0xcfff07330806be10, 0x3de4f9c2ff3d34fa, 0x07456d04074a0006, 0xc9d9ff3e76bc78ff, 0x81ff075308063e25, 0x3e1d256fff3c26d1, 0x0780060b07a0000c, 0x076d000b0772010b, 0x8f16ffbd395d06ff, 0x52ff077b020d3db2, 0x3e2cf54aff3dd781, 0x078d580407920111, 0x7001ffbe008abeff, 0x75ff079b6b04be84, 0x3e6d9cdaff3e0490, 0x07b6020b07c4010d, 0xfbfcebff07b1170e, 0x80043d5d3739ff3d, 0xff3e1aa474ff07bf, 0x07d679043e57ecbd, 0x6e71a2ff07d10006, 0x260e3e105956ff3e, 0xff3e99352fff07df, 0x087480043e7614db, 0x0810670408301706, 0x07fd040508025c04, 0xbd33ffbd1aa63bff, 0x19ff080b0207bd74, 0x3d402021ffbc90aa, 0x081d770408220d0e, 0x517cff3d47d75dff, 0xe9ff082b7f043e13, 0x3e05cd4dffbc88ae, 0x0846180608541906, 0x384aebff08417604, 0x000cbc0317a4ffbd, 0xffbd81b973ff084f, 0x08667b04bdae3c13, 0xb9dcd2ff08610007, 0x7f04bd90c5e9ffbd, 0xffbe12cfd3ff086f, 0x08bc1806bdd3835a, 0x088e010b089c070b, 0x383c27ff0889000c, 0x010ebd555b51ffbb, 0xff3d618b1aff0897, 0x08ae000e3e0654ec, 0x742665ff08a9020d, 0x9b043e11fb52ff3d, 0xff3e20fd8aff08b7, 0x08e09b043e790a01, 0x08cd8b0408d21906, 0xe1d3ffbd0c42e0ff, 0x4aff08db0f0e3c89, 0xbc92f7d8ffbdaea6, 0x08ed030b08f21906, 0x0f48ff3d9e890bff, 0x6fff08fb010b3e39, 0x3d4259bdffbd2c40, 0x0b4449040d808a04, 0x099c22010a283004, 0x0938090109581604, 0x09250001092a0301, 0xb349ffbd9bba42ff, 0x84ff0933030bbd9a, 0xbd98c293ffbd9ab9, 0x09450011094a0e04, 0x2108ffbd997606ff, 0xd8ff0953030bbd97, 0xbd938fa4ffbd9763, 0x096e0f0e097c1001, 0x942bb9ff09690011, 0x190ebd8dc1e3ffbd, 0xffbd951c34ff0977, 0x098e040bbd985bdf, 0x977ad8ff0989000c, 0x2a04bd8ef6dbffbd, 0xffbd8c814cff0997, 0x09e41e04bd86d2cc, 0x09b60a0409c41404, 0x99d151ff09b10011, 0x0006bd95d6adffbd, 0xffbd91db78ff09bf, 0x09d60806bda05580, 0x900165ff09d10011, 0x020dbd89e32fffbd, 0xffbd9586deff09df, 0x0a082904bda2895f, 0x09f5001109fa0006, 0x3b1fffbd8bea5dff, 0x5bff0a03000ebd83, 0xbd9948d1ffbda13e, 0x0a1500110a1a0006, 0xf8f6ffbd8632beff, 0x0dff0a230c06bd74, 0xbda57da2ffbd9496, 0x0a7415010ab82801, 0x0a463c040a54190e, 0x8f00c3ff0a410011, 0x0011bd852652ffbd, 0xffbd864dd4ff0a4f, 0x0a66000cbd78900b, 0x9377e9ff0a610107, 0x0701bd98ebdeffbd, 0xffbd94e447ff0a6f, 0x0a98110ebd8e8988, 0x0a85070e0a8a0011, 0x3631ffbd6f5ae2ff, 0x9cff0a930112bd84, 0xbd9095deffbd5b87, 0x0aa51b0e0aaa060d, 0xd05bffbd7b9e3eff, 0xa4ff0ab30011bd8c, 0xbd78a8f0ffbd930b, 0x0ae0030b0b00000c, 0x0acd070d0ad2020e, 0x8279ffbd94835dff, 0x99ff0adb0008bd81, 0xbd746dfaffbd85df, 0x0aed000e0af2020e, 0xc5c5ffbd87de98ff, 0x45ff0afb0008bd70, 0xbd4d0819ffbd736e, 0x0b16050b0b24000e, 0x8ef4feff0b11010c, 0x0006bd7ce066ffbd, 0xffbd6ec926ff0b1f, 0x0b360009bd994b35, 0x57b84cff0b310012, 0x030bbd362757ffbd, 0xffbd842aadff0b3f, 0x0c646804bd631874, 0x0b94000e0bd8170e, 0x0b6600060b74070d, 0x8dbb17ff0b61110b, 0x5004bd6b389effbd, 0xffbdae9acdff0b6f, 0x0b86010cbd95b8cc, 0x779287ff0b81040b, 0x0009bd442eccffbd, 0xffbcdcdbc2ff0b8f, 0x0bb8000cbd4f6955, 0x0ba500120baa0108, 0x4d0bffbd62f404ff, 0x07ff0bb3080bbd33, 0xbcee073affbd4089, 0x0bc51b010bca2701, 0x2cd0ffbd67f5e5ff, 0x34ff0bd30008bd3a, 0xbcb81ad8ffbd18af, 0x0c0015010c202701, 0x0bed340e0bf20901, 0x9cbbffbd9224f0ff, 0xdcff0bfb030bbd9f, 0xbd826354ffbd907a, 0x0c0d00070c12040b, 0x535dffbd8c70a1ff, 0x50ff0c1b000cbd7b, 0xbd5835a2ffbd781f, 0x0c3632030c446004, 0x70d50fff0c312e01, 0x2e01bd4761ecffbd, 0xffbd8565e6ff0c3f, 0x0c563403bd6d2b61, 0xf42379ff0c511c0e, 0x1c0ebd36ce9bffbc, 0xffbd39de86ff0c5f, 0x0cf4220ebd6ba790, 0x0c900a0b0cb0000c, 0x0c7d080e0c820208, 0x639affbd5e41b9ff, 0x06ff0c8b040ebd33, 0xbce4cb8fffbd4d73, 0x0c9d00060ca2020e, 0x83f9ffbd3c241dff, 0xffff0cab0108bd93, 0xbb817903ffbcec61, 0x0cc6010c0cd4030b, 0x11fccbff0cc10006, 0x0006bd8b814fffbd, 0xffbc804635ff0ccf, 0x0ce60008bd75b679, 0xd07c3eff0ce10011, 0x000ebb9790afffbc, 0xffbd850770ff0cef, 0x0d3c240e3c847e67, 0x0d0e87040d1c0011, 0x64b21cff0d090007, 0x3103bd2221ceffbd, 0xff3b56f1ebff0d17, 0x0d2e2703bcf324d2, 0x4ec2beff0d297404, 0x41013cfcba29ffbc, 0xffbc61f3aeff0d37, 0x0d602b0ebd05dff6, 0x0d4d89040d520011, 0x6e31ffbd919217ff, 0xffff0d5b7404bd44, 0xbd05ef56ffbd4f4a, 0x0d6d060d0d72310e, 0x319dffbd745f74ff, 0xb9ff0d7b7b04bda3, 0xbdac022dffbd9a14, 0x0ea4010c0fc00e0b, 0x0dd4060e0e180a0b, 0x0da6000e0db4020e, 0xabb992ff0da10112, 0x8d04bd8a4490ffbd, 0xffbd393c33ff0daf, 0x0dc6060dbd7fd90b, 0x238b75ff0dc10112, 0x050ebd605989ffbd, 0xffbc61fa70ff0dcf, 0x0df8000cbdc6c5c3, 0x0de500060dea0007, 0x7d31ffbd3a8992ff, 0x01ff0df3060dbd81, 0xbcae80d2ffbd2789, 0x0e05050b0e0a0007, 0xcf23ffbd097669ff, 0xa9ff0e13060dbb9f, 0x3c629158ffbc8746, 0x0e4001090e600006, 0x0e2d0c0e0e32000c, 0x6ddcffbd02a367ff, 0x7cff0e3b00083baf, 0x3d44b511ff3c82ef, 0x0e4d0c0e0e520209, 0xf8a8ffbcfa0f78ff, 0xf2ff0e5b0b0ebd4b, 0xbd8679a2ffbd4bee, 0x0e761a010e843201, 0xcf085eff0e71000c, 0x3303bdf6b17fffbd, 0xffbd9add15ff0e7f, 0x0e96040ebdbf9b47, 0x84532dff0e91000e, 0x1306bd5fa25bffbd, 0xffbcc9a0ceff0e9f, 0x0f34050bbd4bc3e8, 0x0ed001120ef00107, 0x0ebd230e0ec20009, 0xddfeff3c90f82cff, 0x2bff0ecb1e0ebcad, 0xbd7a2844ffbcd3b9, 0x0edd300e0ee20111, 0x3864ffbd40876dff, 0xdcff0eeb0007bd8e, 0xbc92d38dffbd1d4e, 0x0f0600020f140006, 0x008910ff0f012a0e, 0x030eba935776ff3d, 0xffbd203861ff0f0f, 0x0f26090e3d67fe53, 0x665fa4ff0f21010e, 0x0002bd0a8dfcffbd, 0xffbd011899ff0f2f, 0x0f7c01123b6aa67e, 0x0f4e01090f5c0007, 0x78689fff0f49290e, 0x0209bc82b9d0ff3d, 0xff3a8c34a4ff0f57, 0x0f6e3c01bd02da48, 0x036a0fff0f692d0e, 0x0b0ebcf8d162ff3d, 0xff3d06df30ff0f77, 0x0fa0050e3df8419a, 0x0f8d00090f92000e, 0x4670ffbd702fa0ff, 0x6cff0f9b0109bcbf, 0x3c1904d2ffbd20c6, 0x0fad00070fb20107, 0xb5d3ffbd04df3cff, 0x33ff0fbb00063aa4, 0x3cac1708ff3db023, 0x10540b0e10e0010c, 0x0ff0020e1010030e, 0x0fdd00090fe2060d, 0x6127ffbd5eebceff, 0xf9ff0feb000cbced, 0xbc5dd48cffbd2af1, 0x0ffda0041002060d, 0xab29ffbc96fb9cff, 0x3eff100bb704bd28, 0xbce64e13ff3d02f7, 0x1026000c10340108, 0xe4c561ff1021060d, 0x060dbc2ce563ffbc, 0xffbc304b88ff102f, 0x1046060d3cb98689, 0x5134a5ff1041000c, 0x000c3cb71e0bffbc, 0xff3d1a7cb0ff104f, 0x109c00083debda6e, 0x106e5905107c0107, 0x85cbd8ff10691905, 0x000cbcc22abfffbd, 0xffbbb2f150ff1077, 0x108e000c3d116b81, 0xc3d25eff10890006, 0x4e05bcd9edc3ff3c, 0xff3ce0e01dff1097, 0x10c0000c3dae1342, 0x10ad140b10b20006, 0x1569ff3b50c9e9ff, 0x56ff10bb40013d64, 0xbc2dc6a5ffbd6a01, 0x10cd140b10d20006, 0x7ef9ff3d1bea91ff, 0xdaff10dbad043e06, 0x3d270750ffbbe72f, 0x112c060d11700b0e, 0x10fe020e110c030e, 0x4092d4ff10f98b05, 0xa004bdd52e37ffbd, 0xff3c069b52ff1107, 0x111e0008bd076177, 0x606078ff11198b05, 0x0112bd835edfff3b, 0xff3daed10eff1127, 0x1150020e3c8e6eea, 0x113d000e1142ab04, 0xa061ffbd4ee6bbff, 0x07ff114b000e3d54, 0xbd5f3ffdffbdb636, 0x115d070d11620008, 0x85b8ff3d5e4059ff, 0x47ff116bc2043e16, 0x3d5d0026ff3e2078, 0x11982d0e11b83f01, 0x11850008118a0007, 0x9955ffbb545419ff, 0x92ff119300083d34, 0x3db45eb5ff3d2605, 0x11a5140111aa2101, 0xc44effbdb92d1cff, 0xe1ff11b30007bd27, 0x3cca4771ffbcedfc, 0x11ce000711dc0006, 0xff96ceff11c9280e, 0x00083d233cc8ff3d, 0xff3e132ed1ff11d7, 0x11ee01073e55f496, 0xcd9c21ff11e90007, 0x130e3d5552f1ff3a, 0xff3c314c3bff11f7, 0x000000133dc9bc22, 0x000003e800000008, 0x000011fc00000001, 0x0900000f00000000, 0x02481a0104843901, 0x00a00701012c0e01, 0x003c0504005c0401, 0x00290104002e120e, 0xce4fffbd86bfa7ff, 0x80ff00371c0ebd80, 0xbd8d9e73ffbd8923, 0x00492c0e004e0201, 0x416dffbd809497ff, 0x9bff0057030dbd88, 0xbd6dece7ffbd7d76, 0x0072030d0080090b, 0x81b892ff006d000d, 0x010bbd742a26ffbd, 0xffbd84a99fff007b, 0x00920205bd628aba, 0x83de43ff008d0003, 0x020dbd72716fffbd, 0xffbd604d6bff009b, 0x00e8030bbd472dd4, 0x00ba010d00c8030d, 0x78b3ecff00b50c01, 0x000bbd655406ffbd, 0xffbda2e888ff00c3, 0x00da000cbd5b6fc1, 0x8250a3ff00d5070d, 0x000bbd0acaf5ffbd, 0xffbdae1b08ff00e3, 0x010c000cbd3c3f2c, 0x00f9020d00fe0405, 0xf644ffbd6e2e9dff, 0x55ff01070a01bd53, 0xbd6bece4ffbd8723, 0x01190704011e2d04, 0x9a21ffbd5a596fff, 0x4dff0127030dbd26, 0xbcc84f6dffbd1f58, 0x01781e0401bc1201, 0x014a030401580b04, 0x8c8c82ff01450204, 0x0006bd742be1ffbd, 0xffbd484459ff0153, 0x016a070ebd8ee0c6, 0x4ad41bff01650905, 0x190ebca76786ffbd, 0xffbd1b5d62ff0173, 0x019c050bbd91ac50, 0x0189000c018e050d, 0xac70ffbd7645daff, 0xa5ff01970805bd10, 0xbc8541a0ffbd44c7, 0x01a9090501ae0a05, 0xadb6ffbd1e149cff, 0xcdff01b70006bc79, 0xbd5d825fffbb14f4, 0x01e4030d0204090b, 0x01d10b0401d61504, 0x86cbffbd606020ff, 0x9cff01df000dbd1e, 0xbc9b9d3bffbd2b68, 0x01f1000c01f63404, 0x539cffbd37fbccff, 0xa4ff01ff000cbc48, 0x3c44caadffbd2faf, 0x021a17010228000c, 0x103007ff02150605, 0x3004bd6b0f87ffbd, 0xffbd19f510ff0223, 0x023a2b04bc834363, 0xeb1df0ff02351104, 0x010d3b9626e5ffbc, 0xffbc5cbb37ff0243, 0x03683d043d0b03c6, 0x0298030d02dc1604, 0x026a040e02780804, 0x427c69ff02650706, 0x0404bd86c881ffbd, 0xffbd90dc14ff0273, 0x028a0006bd80c9ac, 0x874539ff0285070e, 0x2703bd30cb02ffbc, 0xffbd1ebe20ff0293, 0x02bc0006bd52a42e, 0x02a9090402ae0c04, 0xdcd0ffbd0e4e82ff, 0xafff02b7010ebc94, 0xbc14d69fff3c162d, 0x02c90c0402ce0d04, 0x31f9ffbd794884ff, 0x42ff02d70b06bd4b, 0xbd33758cffbd005a, 0x0304260103240006, 0x02f1010d02f6050b, 0x7d15ffbd0ca5b7ff, 0x72ff02ff000c3c7d, 0x3d2f6c4dffbcc446, 0x0311011103162404, 0x3354ffbdd24dbeff, 0x77ff031f00093d0f, 0x3d2d1d6bff3d925f, 0x033a060e03480106, 0x9d220eff03351c01, 0x3101bd498a34ffbd, 0xffbd137d97ff0343, 0x035a10063d084012, 0x974702ff03552804, 0x39043a3bf71bffbc, 0xffbd4631a8ff0363, 0x03f82601ba61ef4c, 0x0394030d03b4060b, 0x03811f010386010d, 0x5a41ffbcd632d9ff, 0xe7ff038f000cbbde, 0x3cc65834ffbd2752, 0x03a10b0503a6000c, 0x5a01ffbb072e0cff, 0xa8ff03af2101bd38, 0x3d94701eff3d308f, 0x03ca250103d81305, 0x7a73fbff03c5000c, 0x360e3d1e69feff3a, 0xff3d969566ff03d3, 0x03ea000d3bffaf06, 0xa67e13ff03e52101, 0x050d3d685929ff3c, 0xff3d9a94c6ff03f3, 0x0440000c3dce261a, 0x0412000b0420030b, 0xaa4443ff040d0b06, 0x030dbe3c3292ffbd, 0xffbc360fadff041b, 0x043231013cc7b070, 0x78773dff042d3103, 0x0e063bfd45ccff3d, 0xff3db4e3f9ff043b, 0x0464010d3cbb6507, 0x0451030b04563201, 0x953dff3c415553ff, 0xd7ff045f000d3d83, 0x3d82c60dff3db937, 0x047102110476030b, 0xfd03ff3dc29742ff, 0x1eff047f1e053ea8, 0x3e009657ff3db8b2, 0x05a8550406c48a04, 0x04d8010d051c0006, 0x04aa2e0404b87905, 0x895e70ff04a51404, 0x120e3b18cc3effbd, 0xff3dc887fbff04b3, 0x04ca080e3b54a0eb, 0x2ac815ff04c58605, 0x4304bd4bbceeff3c, 0xffbda1e2eaff04d3, 0x04fc3804bddf1c5d, 0x04e9030b04ee0111, 0x1606ffbda6c3e7ff, 0x06ff04f72304bdc0, 0x3dd3d574ff3cdbf7, 0x0509000e050e0011, 0xd285ffbdd7847cff, 0x3eff0517070ebe00, 0x3dfcef54ff3e2fd9, 0x05443a0405641106, 0x05311a0405362204, 0x9abaffbd7a6b34ff, 0xc9ff053f010dbd1d, 0xbbbcd3e3ffbd9fa2, 0x055101060556010d, 0xf787ffbde4435bff, 0x13ff055f030bbdbc, 0x3d9f8dcbff3d1ae4, 0x057a3a0405881506, 0x84d828ff05752b04, 0x0211bd2d1d7dffbd, 0xffbcad6dc1ff0583, 0x059a4b043cd0bb7b, 0xee5dbcff05953e01, 0x1706bd8fb728ffbc, 0xffbd253066ff05a3, 0x06380006bd7b5b7d, 0x05d4910505f40e0e, 0x05c1070e05c66a04, 0x7fe0ff3e713c05ff, 0x09ff05cf01093e44, 0x3e63325cff3e8e9a, 0x05e1000d05e6000c, 0xd456ffbdc1683aff, 0x9cff05ef7f043bb9, 0x3e80f8f1ff3c974e, 0x060a021106187504, 0x2b0f7dff0605190e, 0x00023dd68f98ff3e, 0xff3ec25dbdff0613, 0x062a190e3f0ada38, 0xfd0720ff0625000d, 0x250e3e81fef0ff3d, 0xff3e517410ff0633, 0x068016063e11465d, 0x06526b0406603905, 0xba245fff064d1306, 0x000b3c60e783ff3d, 0xffbd28cf3aff065b, 0x06727b043e2cc297, 0xf17158ff066d0002, 0x060e3d89c9fdffbb, 0xff3d67fbadff067b, 0x06a417063e0dede4, 0x06916f0406967f04, 0x6ea5ffbce3a44dff, 0x35ff069f0c053ca3, 0x3d3ed810ff3e03be, 0x06b1820406b61806, 0xaf9fffbcd76400ff, 0x18ff06bf19063d3d, 0xbdb02d72ffbd59d5, 0x0758040d07e4040e, 0x06f419060714070b, 0x06e1000606e60009, 0x215affbda2f120ff, 0xcdff06ef92053d72, 0x3db8b1e7ff3e5552, 0x0701110507060007, 0x886bffbdd54f94ff, 0xfeff070f010ebd12, 0x3d0ea172ffbc896c, 0x072a000e0738020e, 0x63c422ff0725010d, 0x000c3d8081c7ff3c, 0xff3db9c848ff0733, 0x074a0a063e222c88, 0xb8d353ff07459005, 0x000cbd102289ff3d, 0xff3e16cdc8ff0753, 0x07a0000e3e60904c, 0x077219060780050b, 0xd5d90eff076d0111, 0x00083d9ba620ffbd, 0xffbd8f96ddff077b, 0x07920112b8bdd2e3, 0x011d59ff078d060b, 0x1906be2f5d55ffbe, 0xff3e1b68dfff079b, 0x07c40a0b3d5c4ef4, 0x07b1000607b69004, 0x7942ff3ea19daeff, 0xf7ff07bf010e3e16, 0x3e38fb48ff3dbaac, 0x07d14f0507d6000c, 0xff68ff3e6b606cff, 0xa1ff07df9c043e18, 0x3e8fd739ff3e5ee6, 0x083012060874310e, 0x0802010d0810280e, 0xd3676fff07fd000c, 0x000c3e5242a9ff3d, 0xff3e74480bff080b, 0x0822030b3e92e556, 0x02d524ff081d0007, 0xa9043e68daffff3e, 0xff3e5dbba8ff082b, 0x0854030b3e8cd979, 0x0841b7040846010b, 0x32a6ffbcecae96ff, 0x38ff084f000c3cd8, 0x3e3afb06ff3db2aa, 0x0861a10408660007, 0x3341ff3db39af0ff, 0xa0ff086f000c3e54, 0x3e9394e8ff3e6807, 0x089c000608bc030b, 0x0889ba04088e0007, 0xa123ff3dfc4219ff, 0xa8ff0897a4043c7d, 0x3e40b63dff3dca88, 0x08a9b70408ae020b, 0x3ba7ffbda7522cff, 0x00ff08b7350ebb8e, 0x3c32221dff3d8813, 0x08d20a0608e0a904, 0x0bfae0ff08cd0002, 0x0d063e318b02ff3e, 0xff3da4fa8fff08db, 0x08f2340ebd56ddfa, 0x4d7d90ff08ed0007, 0xb8043e7b42c4ff3e, 0xff3e03c1f4ff08fb, 0x0d808a043e36575d, 0x0a282b040b444704, 0x09581004099c1201, 0x092a000409380204, 0x8d6166ff0925000b, 0x0d0ebd8c9a75ffbd, 0xffbd8bacebff0933, 0x094a070ebd8cd1bc, 0x8a5f03ff09450012, 0x0011bd87d531ffbd, 0xffbd8c0b8fff0953, 0x097c070ebd8a70cc, 0x09691b04096e0011, 0xa6bbffbd86f1b6ff, 0xe3ff09771c04bd81, 0xbd71e5ceffbd80bf, 0x09890011098e2604, 0x36efffbd8ac4bcff, 0x71ff0997060dbd87, 0xbd86f730ffbd82e1, 0x09c40c0409e41604, 0x09b1010409b60404, 0x4320ffbd8cceafff, 0x02ff09bf0011bd8a, 0xbd861fc0ffbd89d2, 0x09d1001109d60006, 0xdfb1ffbd86ce44ff, 0xe7ff09df0b06bd81, 0xbd9387d9ffbd8ecd, 0x09fa22040a080011, 0x818f71ff09f5040e, 0x050ebd8703d8ffbd, 0xffbd78bc2cff0a03, 0x0a1a070ebd829de3, 0x6c3900ff0a150006, 0x120ebd8a708effbd, 0xffbd7abf26ff0a23, 0x0ab80d0ebd854d2a, 0x0a5400110a743d04, 0x0a4155050a46060e, 0x56d8ffbd6343a1ff, 0x1cff0a4f3a04bd77, 0xbd656427ffbd79bf, 0x0a6134040a660006, 0x1adfffbd597f83ff, 0x07ff0a6f020dbd40, 0xbd86526fffbd633b, 0x0a8a00080a980011, 0x58f9e9ff0a850009, 0x070ebd7487cdffbd, 0xffbd3dc8d3ff0a93, 0x0aaa0112bd60291f, 0x3ab166ff0aa50008, 0x0111bd102da8ffbd, 0xffbd8f780eff0ab3, 0x0b001701bd5456f2, 0x0ad2020d0ae00e01, 0x3df8aeff0acd220e, 0x230ebd902605ffbd, 0xffbd8342e0ff0adb, 0x0af2000cbd87757b, 0x881a21ff0aed0b0b, 0x030bbd807d97ffbd, 0xffbd833f88ff0afb, 0x0b24030bbd6f33c4, 0x0b11000c0b163501, 0x7fc7ffbd840f5fff, 0xc7ff0b1f0208bd74, 0xbd206477ffbd5e45, 0x0b3100110b361b0e, 0x3bb6ffbd77205aff, 0x62ff0b3f020dbd5d, 0xbd781ee3ffbd381e, 0x0bd81c0e0c646a04, 0x0b74000e0b94020e, 0x0b6100060b66070d, 0x5812ffbd7507b6ff, 0x78ff0b6f010cbd8d, 0xbcf0ddd5ffbd3be9, 0x0b810b0b0b86010c, 0xb9d6ffbd5c0437ff, 0x84ff0b8f0006bd1f, 0xbd806a47ffbce62f, 0x0baa070e0bb86304, 0xe65565ff0ba50009, 0x0012bd362642ffbc, 0xffbd4d82b2ff0bb3, 0x0bca030bbd1078b8, 0x364a15ff0bc5010c, 0x0011bccff4e2ffbd, 0xffbcf6fa08ff0bd3, 0x0c200011bc50ed2b, 0x0bf2220e0c00230e, 0x904924ff0bed1e0e, 0x6204bd7e0d3bffbd, 0xffbd6ef647ff0bfb, 0x0c126804bd43c3d8, 0x8ccb01ff0c0d5e04, 0x260ebd83309bffbd, 0xffbda6a3feff0c1b, 0x0c44260ebd7c3de6, 0x0c3101110c365804, 0x59fbffbd5cd42dff, 0xa6ff0c3f6004bce5, 0xbd253210ffbd48c3, 0x0c512c0e0c565e04, 0x3155ffbd799e9bff, 0xc5ff0c5f2b0ebd8b, 0xbd7ed157ffbd4c14, 0x0cb0120b0cf4000c, 0x0c82190e0c900a0b, 0x6f02dcff0c7d020e, 0x1d0ebd188c29ffbd, 0xffbd8b2d6aff0c8b, 0x0ca20112bd44dada, 0x64c31dff0c9d3901, 0x0006bccc27a4ffbd, 0xffbce6718dff0cab, 0x0cd40108bd842c11, 0x0cc17b040cc62801, 0x6671ffbd6fe04fff, 0x2eff0ccf0006bda4, 0xbd7181f1ffbcada3, 0x0ce132010ce60006, 0x4239ffbd361febff, 0xadff0cef090e3c1b, 0xbcf66079ffbd77ba, 0x0d1c00060d3c1c0e, 0x0d0901090d0e0008, 0xf7c4ffbbb6ce61ff, 0x10ff0d176b05bd0c, 0xbc8f5be4ff3c9e81, 0x0d2900020d2e0111, 0x3f7bffbd8d4324ff, 0x61ff0d37030ebd65, 0xbcf7e5f7ffbd5cbc, 0x0d5200110d601d0e, 0xe9a12aff0d4d4e05, 0x0605bdcd737cffbd, 0xffbc1f3f29ff0d5b, 0x0d720007bd8cab22, 0x201552ff0d6d2b0e, 0x2c0ebd845ffcffbd, 0xffbc8a0ebdff0d7b, 0x0fc0100bbd6c4738, 0x0e18000c0ea4010c, 0x0db405060dd4090b, 0x0da1020e0da60b0e, 0x78d3ffbd8474f3ff, 0x8eff0daf190ebd24, 0xbd1e9ff9ffbcb971, 0x0dc1010e0dc6030e, 0x7519ffbd7ba55dff, 0xfdff0dcf020bbd63, 0xbd482e2fffbd89ad, 0x0dea060e0df80b0e, 0x5d978aff0de5020e, 0x070ebd227af0ffbd, 0xffbc289fdcff0df3, 0x0e0a0008bd1425a0, 0xc2bef7ff0e050107, 0x0b0bb9f05cddffbc, 0xff3c0169ccff0e13, 0x0e600006bc5cde7c, 0x0e3200120e40080b, 0x1f5c7cff0e2d070d, 0x060dbbaae5afffbd, 0xffbca38948ff0e3b, 0x0e520b0e3cdecbbe, 0x16a123ff0e4d9005, 0x0009bd210310ff3b, 0xff3d2973ccff0e5b, 0x0e84030ebd05456b, 0x0e7119060e76000e, 0x0f2bffbd68bc80ff, 0x38ff0e7f1806bd85, 0xbd719b6bffbd3967, 0x0e9100080e960007, 0x88f6ffbd709632ff, 0x23ff0e9f340ebd19, 0xbd4f1477ffbc9d73, 0x0ef000070f340112, 0x0ec200090ed0280e, 0x658546ff0ebd0a0b, 0x050b3d83e40aff3c, 0xffbcdea6d0ff0ecb, 0x0ee22f0e3b79da15, 0x6eefd3ff0edd0009, 0x330ebd56c654ff3b, 0xffbd2b7521ff0eeb, 0x0f14070bbd90af2c, 0x0f01190e0f06020b, 0xd865ff3c116981ff, 0xa8ff0f0f190ebca4, 0x3c869823ff3d468c, 0x0f2185050f26020e, 0xca08ffbcdcb5ebff, 0xe7ff0f2f0b0ebdb3, 0x3dd21b12ff3d3e71, 0x0f5c300e0f7c0007, 0x0f4901090f4e010e, 0x7060ffbd69b1d0ff, 0x78ff0f579704bc29, 0xbceb1976ffbd313f, 0x0f6910010f6e6d05, 0x5329ffbddc8104ff, 0xdfff0f77030bbd81, 0xbdfc4a79ffbdac92, 0x0f92050e0fa0070e, 0x20ec24ff0f8d5e05, 0x0006bda082c6ffbd, 0xff3c9807a9ff0f9b, 0x0fb29a04bca6cb11, 0x17f8c5ff0fad0111, 0x00063c71fae6ffbd, 0xff3d31e566ff0fbb, 0x10e0000c3c4333c0, 0x10101c0e10541d0e, 0x0fe2020e0ff0060e, 0x6187cfff0fdd000e, 0x9604bd22159fffbd, 0xffbc330105ff0feb, 0x10020108bcf610ec, 0x4c5ab0ff0ffd0d0e, 0x00063c5b7ba1ffbc, 0xff3d5507beff100b, 0x10340006bc99931f, 0x1021bc0410260008, 0x9008ffbd92eb2fff, 0x31ff102fb904bdb6, 0xbe0a7b56ffbddb53, 0x1041010610461006, 0xf032ffbd6dbdadff, 0x16ff104fb3043c20, 0xbc5fe5e0ffbd89fa, 0x107c310e109c0007, 0x10690f06106e5b05, 0x09feffbc23d702ff, 0x61ff10770008bd72, 0x3d294945ff3b11a5, 0x10892401108e4001, 0x009fffbdd27ffeff, 0x05ff10970a06bd98, 0xbda87c84ffbd03bb, 0x10b23c0110c0b004, 0xa30d26ff10ad2d01, 0x0006bd1a406cffbd, 0xff3d07a86aff10bb, 0x10d20006bc0c34c2, 0x68041bff10cd0008, 0x330e3dcc459aff3d, 0xff3c64a498ff10db, 0x11700b0ebcf36af3, 0x110c030e112c060d, 0x10f9000910fe020e, 0x1005ffbd372402ff, 0x90ff11078d05bc70, 0xbd45b8cbffbc978f, 0x11198705111e1606, 0x7faaff3c6ae6c4ff, 0x84ff1127b304bcbf, 0xbc39ccccffbd7cbc, 0x1142a3041150020e, 0xf89e02ff113d000e, 0x00093ce12d20ffbc, 0xffbd388866ff114b, 0x11620008bc2f3268, 0x1934feff115d0109, 0x010cbca585e3ff3d, 0xff3d88f451ff116b, 0x11b801123e037626, 0x118a010711980008, 0x68d393ff11850009, 0xb404bbe53bf7ff3d, 0xff3d8e938fff1193, 0x11aaa7043e0b495c, 0xcfbf3aff11a5170e, 0x01073d612fd9ff3d, 0xff3dfbf79aff11b3, 0x11dc00073e477bc7, 0x11c9010811ce0a05, 0xbc8cffbd88a174ff, 0x14ff11d73f01bc91, 0x3bc86c27ffbd3cb3, 0x11e9000811ee330e, 0x73ecff3c62a145ff, 0xa3ff11f733013d80, 0x3c4593e3ffbd54fb, 0x0000000800000013, 0x00000001000003e8, 0x00000000000011fc, 0x04842b010900000f, 0x012c0c0102481901, 0x005c020100a00501, 0x002e220e003c0001, 0x762a51ff00290304, 0x0704bd6d4048ffbd, 0xffbd7f4ee0ff0037, 0x004e030dbd759997, 0x7682b0ff0049060b, 0x0604bd6cc3ecffbd, 0xffbd6c3c29ff0057, 0x0080050bbd60b35d, 0x006d000b0072010b, 0x248dffbd814f35ff, 0x46ff007b040dbd71, 0xbd5a83dfffbd67c9, 0x008d010d0092030d, 0x5a7cffbd67167bff, 0xc2ff009b0304bd57, 0xbd488bd7ffbd69fa, 0x00c8070b00e80901, 0x00b5000d00ba040d, 0xf796ffbd658287ff, 0xaeff00c3000bbd51, 0xbd3e68c5ffbd968c, 0x00d5010d00da030d, 0x5022ffbd5e96b5ff, 0x41ff00e3000cbd37, 0xbd19dd12ffbd604c, 0x00fe040d010c070b, 0x5b685bff00f9000d, 0x000cbd3b15dcffbd, 0xffbd6547d5ff0107, 0x011e000cbd171b8b, 0x54dfb0ff01196304, 0x010dbd836a05ffbd, 0xffbd3ea8d9ff0127, 0x01bc1301bcee025a, 0x0158000c0178080b, 0x0145000b014a010b, 0xb4a5ffbdc27baaff, 0x94ff01531001bd79, 0xbd48e73fffbd65b6, 0x01651a04016a040d, 0x68d6ffbd31345cff, 0x7cff01731304bd09, 0xbca1e59bffbd1458, 0x018e0605019c000c, 0x451848ff01891b04, 0x0111bd106396ffbd, 0xffbd93a145ff0197, 0x01ae0905bd4e4df6, 0x3db477ff01a92404, 0x1404bcf69128ffbd, 0xffbcf2e3e3ff01b7, 0x0204070bbbaac520, 0x01d6011101e4000c, 0x908d9fff01d1000d, 0x000bbda994d5ffbd, 0xffbde3afabff01df, 0x01f6040dbd3f81ad, 0x18ca6dff01f11904, 0x1504bcabe61effbd, 0xffbcd0dfaaff01ff, 0x0228000cba4c8525, 0x02151b04021a0605, 0x1d8cffbd29dca8ff, 0xe6ff0223080bbca0, 0xbd3c541affbdcc1b, 0x02354e04023a0e05, 0x4ea2ffbcff1d01ff, 0x4aff0243030dbbfb, 0x3cfb1f47ff3b1791, 0x02dc170403683d04, 0x02780c040298030d, 0x02650006026a030e, 0xd292ffbd17350aff, 0x68ff02730504bd6b, 0xbd47d318ffbd73ab, 0x0285050e028a0006, 0x78a3ffbbf21e19ff, 0x44ff02930f04bcec, 0xbd192cffffbd3fcf, 0x02ae140402bc000c, 0x292f0eff02a90b04, 0x2401bcf0e73affbd, 0xffbcfc04e2ff02b7, 0x02ce0b04bb891a6e, 0xa003e0ff02c90009, 0x0009bd011607ffbc, 0xff3b9d3ab6ff02d7, 0x03240006bc638481, 0x02f623010304070b, 0xd5d69fff02f1050d, 0x040d3c938130ffbb, 0xff3c824008ff02ff, 0x0316000c3d235f36, 0x1c9108ff03110111, 0x2501bc883f79ffbe, 0xff3d17cd03ff031f, 0x034817053d839e84, 0x03352001033a0e06, 0x5d39ffbcd83b9cff, 0x48ff03431106bc11, 0xbd97e4beffbd2448, 0x03550206035a1f01, 0x149fffbd48324dff, 0xc9ff03630106bd9d, 0xbcd74a9cffbd28ad, 0x03b4030d03f82501, 0x038600060394070b, 0x7c2566ff03811f01, 0x360e3c96d288ffbb, 0xffbce00745ff038f, 0x03a61305bd644689, 0x67061cff03a1350e, 0x1f01bd0260b9ff3c, 0xff3d167b05ff03af, 0x03d812053d8c81cd, 0x03c5100503ca070b, 0xa16cffbc1b3b99ff, 0x97ff03d308033d03, 0x3d2dd301ff3ab16c, 0x03e5050d03ea040b, 0xa6cfff3caaf25dff, 0xeeff03f323033d52, 0x3d68290aff3dc592, 0x0420000b0440010b, 0x040d000c04122801, 0x38a0ffbdd53b3cff, 0x27ff041b0006be35, 0xbd90a47effbdd2fa, 0x042d0f060432000c, 0x2524ffbd80a0f1ff, 0x7bff043b040dbc78, 0x3d52d8ecffbc0283, 0x0456040b0464010d, 0x477f71ff0451000c, 0x060b3c32b790ffbd, 0xff3c75e9a2ff045f, 0x047600063d79c234, 0x946e57ff0471030b, 0x75043dc3e0b0ff3d, 0xff3c614c0fff047f, 0x06c47c043d57aa33, 0x051c4d0405a80006, 0x04b81b0404d83104, 0x04a5140404aa000d, 0xe9cdffbd63286cff, 0xc7ff04b3000cbc3b, 0x3c540166ffbc8805, 0x04c53e0104ca0111, 0x4ffdffbdd7e934ff, 0x8eff04d3070ebd9d, 0x3c2b15a2ff3d7c64, 0x04ee830504fc030e, 0xe97f5cff04e93d04, 0x89053e26ca63ff3d, 0xff3cc5b9b0ff04f7, 0x050e8105bd29a0a0, 0x963bffff05090008, 0x000d3dcca463ff3d, 0xffbd8a154aff0517, 0x056441013dd9de42, 0x0536080b05443c01, 0xaef4bcff0531040d, 0x010d3ddf1247ff3d, 0xff3daa0497ff053f, 0x055600093e019fb5, 0x0f84eeff0551040d, 0x030b3e2c0dd0ff3e, 0xff3d94dbddff055f, 0x058801123e0cbae3, 0x0575000b057a6104, 0xd28fffbdc9c4eaff, 0x3aff0583000bbe02, 0xbe554461ffbdc787, 0x0595010d059a170e, 0xf513ff3deba99bff, 0xd5ff05a3010d3e53, 0x3e15f0caff3d6890, 0x05f4120606385c04, 0x05c63a0405d44504, 0x043c53ff05c12504, 0x3b04bbb7e043ffbd, 0xff3d7ad3f7ff05cf, 0x05e629053c912ee5, 0x9e2629ff05e1150e, 0x010d3cd024c6ff3d, 0xffbdc672c0ff05ef, 0x061815063a598b95, 0x06052b04060a4804, 0x3894ffbd70d7ffff, 0x4eff06131406bd1d, 0xbcc6c965ff3c2932, 0x06254b04062a1706, 0x4d29ffbd69c9d6ff, 0x99ff0633050ebd0f, 0xbdbb3948ffbd765a, 0x0660390506801506, 0x064d1e050652150e, 0x0726ff3e162a94ff, 0x33ff065b000b3da8, 0x3d948d1bffbdad00, 0x066d470506720002, 0x904fff3d00ab81ff, 0x9eff067b020dbc8f, 0x3dceba04ff3d06ad, 0x0696670406a41706, 0xeba56fff06910007, 0x0007bb7aa382ffbc, 0xff3b9bc4c6ff069f, 0x06b618063d8219b8, 0x0df73eff06b17704, 0x000c3bd2e62effbd, 0xffbd593a65ff06bf, 0x07e41606bda06776, 0x0714000c0758300e, 0x06e6011206f4040b, 0xd6efbbff06e1000b, 0x010ebe31a4a0ffbd, 0xff3d378960ff06ef, 0x0706030e3e02b902, 0x06db32ff07019005, 0x0306bd519c78ff3e, 0xff3e1b759aff070f, 0x07383d013e5d9f27, 0x07253101072a1203, 0x127cff3e46a603ff, 0x27ff073300063d0c, 0x3dd2cdf6ff3e0a10, 0x0745020d074a000e, 0x81d2ff3d242fdcff, 0x29ff0753010e3df5, 0x3e721dc6ff3e1a23, 0x0780050607a09c04, 0x076d97040772310e, 0x6371ff3dcef89eff, 0xa7ff077b020b3e0f, 0x3db1031cff3cd8ff, 0x078d120507929904, 0x849cff3d3759b6ff, 0x00ff079b3f01bc9a, 0xbdcc38ccffbcec90, 0x07b6030b07c42805, 0x031951ff07b1020b, 0x330e3d1acdcdffbd, 0xff3e213e25ff07bf, 0x07d600073ddd56d0, 0xa5c122ff07d1050b, 0x02083e34522fff3d, 0xff3e50aa21ff07df, 0x0874030b3e00244e, 0x0810040e0830010b, 0x07fd020d0802000c, 0x8d06ffbda030d1ff, 0x3eff080b010ebd2a, 0xbdae616dffbde83d, 0x081d000c0822b704, 0xcbc4ffbc8119e3ff, 0xa5ff082b1e05bd7f, 0xbcc65796ff3d1e0f, 0x0846030d08541906, 0x1abab3ff0841010e, 0x000e3d6566a2ff3c, 0xff3d07d62dff084f, 0x0866a7043df5c892, 0x9deba2ff08610705, 0x010ebcb86e09ffbd, 0xffbb46869dff086f, 0x08bc9c043d8a206c, 0x088e8504089c1806, 0xeecf0bff0889170e, 0x120ebe3477b0ff3c, 0xff3e03c135ff0897, 0x08ae1906baaf2b6c, 0x33367cff08a99704, 0x00083d38508effbd, 0xffbdffbca9ff08b7, 0x08e01906bd8f8783, 0x08cd010e08d2000c, 0xc3a0ff3dc6aa82ff, 0x47ff08db19053e1f, 0x3e1c8a09ff3e6ea9, 0x08ed000808f2a704, 0xb08dffbdb1b967ff, 0x19ff08fb030dbab9, 0x3e0209fdff3d689b, 0x0b4449040d808a04, 0x099c15010a283404, 0x09380b0409581a04, 0x09250104092a0404, 0xa4dbffbd7c984aff, 0xeeff09330d0ebd7a, 0xbd7b972dffbd77a6, 0x09450011094a0d0e, 0x68caffbd76417dff, 0x33ff09530011bd6d, 0xbd780f09ffbd7c43, 0x096e0012097c0d0e, 0x6eacbbff09692804, 0x2604bd657e78ffbd, 0xffbd630549ff0977, 0x098e0011bd562519, 0x7731a9ff09891c0e, 0x170ebd7df8feffbd, 0xffbd672112ff0997, 0x09e41c04bd7384a2, 0x09b60a0409c41304, 0x79a90dff09b10011, 0x0011bd74092dffbd, 0xffbd734978ff09bf, 0x09d60011bd6c7536, 0x6c274bff09d1040e, 0x070ebd762e36ffbd, 0xffbd604b18ff09df, 0x0a082a04bd6bb91d, 0x09f5001109fa0006, 0xd6f7ffbd65d41fff, 0xbfff0a031006bd57, 0xbd88e375ffbd7962, 0x0a1500110a1a0a0e, 0xfe7cffbd599951ff, 0x35ff0a23170ebd42, 0xbd7280c0ffbd5e32, 0x0a74120e0ab82401, 0x0a46070e0a540011, 0x4f93ecff0a410007, 0x4504bd35140bffbd, 0xffbd59ac69ff0a4f, 0x0a663904bd43f8eb, 0x407678ff0a610112, 0x070ebd76dd7effbd, 0xffbcffc6adff0a6f, 0x0a980011bd2e4fc9, 0x0a8546040a8a0207, 0x325cffbd70fb0bff, 0x27ff0a931301bd6a, 0xbd7e5b43ffbd768f, 0x0aa51b010aaa240e, 0xa353ffbd59c3cbff, 0xe2ff0ab30208bd4c, 0xbd650482ffbd7249, 0x0ae032030b00000c, 0x0acd120e0ad23701, 0xdb10ffbd39dbb3ff, 0xe0ff0adb0011bd58, 0xbd0e4507ffbd353a, 0x0aed000e0af2030b, 0xc036ffbd823e37ff, 0xaeff0afb000ebd56, 0xbd3d7761ffbd5ec8, 0x0b1600070b240008, 0x53393bff0b11030b, 0x010cbd353b31ffbd, 0xffbd307998ff0b1f, 0x0b36000ebd0cc8b1, 0x465b2eff0b310006, 0x0112bd785880ffbd, 0xffbd0d1da7ff0b3f, 0x0c646704bd5a3060, 0x0b94170e0bd82e01, 0x0b6600070b740011, 0x3d84ecff0b610009, 0x5704bd7130a7ffbd, 0xffbd34c7c5ff0b6f, 0x0b865e04bce70bb9, 0xe96ad3ff0b81120e, 0x120ebd28a3d4ffbc, 0xffbabecf7aff0b8f, 0x0bb85f04bcd7e1d6, 0x0ba5230e0baa0011, 0x65bfffbd6084f2ff, 0xe8ff0bb3260ebd7d, 0xbd65f09bffbd3cd1, 0x0bc500110bca0007, 0x6825ffbd6208f4ff, 0x71ff0bd3230ebd42, 0xbd43a2cbffbd11f7, 0x0c0000060c20010c, 0x0bed020e0bf2030b, 0xb835ffbd67d936ff, 0x43ff0bfb0012bd2d, 0xbcc8a5eaffbd1976, 0x0c0d1c050c121306, 0x4e52ffbd65ea70ff, 0x86ff0c1b5504bd85, 0xbd931b76ffbdaf34, 0x0c3658040c440112, 0xa2a1a3ff0c310009, 0x0009bd290683ffbc, 0xffbb6f82beff0c3f, 0x0c560111bd07b47c, 0x82dc64ff0c510406, 0x020dbd556bcfffbd, 0xffbd4b3c9dff0c5f, 0x0cf4040bbcaf3720, 0x0c9002080cb0000c, 0x0c7d060d0c82020e, 0xbe3effbd821045ff, 0x91ff0c8b190ebd4f, 0xbd44a08effbd2214, 0x0c9d000e0ca2030e, 0x76f2ffbd83056dff, 0xf2ff0cab020bbd24, 0xbcc4e3dbffbd0ddb, 0x0cc657050cd40007, 0x673204ff0cc13d05, 0x010cbd35f2ecffbd, 0xffbd13c793ff0ccf, 0x0ce6010cbc7bfd20, 0x6a1850ff0ce1020e, 0x3701bce638d9ffbd, 0xffbd09fd4dff0cef, 0x0d3c1a0ebba64909, 0x0d0e00080d1c010c, 0xfb8d66ff0d09000c, 0x0006bc924f9cffbc, 0xffba7be820ff0d17, 0x0d2e0112bd613ace, 0x0dacedff0d290011, 0x00063cfc3af9ffba, 0xff3c347b28ff0d37, 0x0d601b0ebd635da1, 0x0d4d7e040d528204, 0xc179ff3b9f5039ff, 0xd3ff0d5b36013d61, 0xbd8d7a84ff3bae8e, 0x0d6d00070d722b0e, 0x3136ffbd156ffbff, 0xc4ff0d7b310ebc95, 0xbd8b45ddffbd5e0b, 0x0ea400060fc00e0b, 0x0dd4090b0e18000c, 0x0da6170e0db40007, 0xe77248ff0da10009, 0x190ebd46fe68ffbc, 0xffbd05dd0bff0daf, 0x0dc6020bbd3646c2, 0x5c2ff4ff0dc10011, 0x0012bd18ab48ffbd, 0xffbd119824ff0dcf, 0x0df8080ebc872a62, 0x0de5070e0dea8d05, 0xaaeeffbc3c95ecff, 0x8bff0df3030ebd1a, 0xbd050c65ffbd3956, 0x0e0500090e0a0007, 0xd75fffbbd8eefcff, 0x5bff0e130b0bbd1e, 0xbcaa0971ff3c6708, 0x0e4000070e60080b, 0x0e2d1c0e0e320109, 0x06bdff396e6fa1ff, 0x1aff0e3b0209bce7, 0xbd4283fdffbce6e8, 0x0e4d00120e52070d, 0x7b3dffbcd894b8ff, 0x28ff0e5b010c3c6c, 0x3d7bc0cdff3c81fd, 0x0e762d0e0e840007, 0x025520ff0e710009, 0x320ebc3b776eff3d, 0xffbd1ef7a8ff0e7f, 0x0e960b0ebd985b0c, 0x20d81bff0e917905, 0x010cbcb6beeaff3d, 0xff3d49f049ff0e9f, 0x0f3442053dbbb966, 0x0ed0340e0ef00f06, 0x0ebd01070ec20c05, 0x0c8affbc8374f3ff, 0xebff0ecbb2043d06, 0x3b46e56affbcd4de, 0x0edd360e0ee23201, 0x9e3cffbd864f46ff, 0xe8ff0eeb0002bdb5, 0xbccb5fecffbd4220, 0x0f0617060f14010c, 0x169790ff0f01280e, 0x9704bd59a1d9ffbd, 0xffbd940e1dff0f0f, 0x0f26010ebd573e60, 0x48b11fff0f21000e, 0x1406bd15a316ffbd, 0xffbc153f97ff0f2f, 0x0f7c0002bd078904, 0x0f4e50050f5c0007, 0x50a151ff0f49a804, 0x5505bc530065ffbd, 0xffbd4dc5c0ff0f57, 0x0f6e4505bd942710, 0xa32bc8ff0f69060e, 0x4705bdfe4af0ffbd, 0xffbd28ac15ff0f77, 0x0fa0030ebd9a853e, 0x0f8d55050f92000e, 0xe176ffbd5427efff, 0x9fff0f9b0906bd62, 0xbd38559fffbd5f3a, 0x0fad01110fb29a04, 0x0049ffbd62ebb5ff, 0x01ff0fbb5505bd12, 0xbd2a05e5ffbcf376, 0x10540c0e10e0010c, 0x0ff07c0510100006, 0x0fdd070e0fe20108, 0x8505ff3c75e0ceff, 0xf6ff0feb000cbc3e, 0x3daf2dd1ff3cba50, 0x0ffd010710029005, 0xecd0ff3af15fbaff, 0x1cff100b090ebcdf, 0xbd86c495ffbcf400, 0x102617061034090e, 0x5219ebff10210a06, 0x9b04bcd86e76ffbd, 0xffbdb2ea83ff102f, 0x10461406bd3a1f87, 0xc3c941ff10411e05, 0xb3043a96d9eaff3c, 0xffbd70b5a8ff104f, 0x109c0108bba833b0, 0x106e0006107c000c, 0x8230b7ff10690009, 0x130bbcc6f972ff3c, 0xffbda8b7ebff1077, 0x108e0107bcd1de35, 0x5232a0ff10895b05, 0x140b3d2d596effbc, 0xff3c1bdba2ff1097, 0x10c0000c3d9e89c9, 0x10ad190e10b2130b, 0xaafaff3d1ce5b6ff, 0x11ff10bb0006bcae, 0xbb3b273eff3d56d5, 0x10cd2e0110d23305, 0xfd7affbd86129fff, 0x09ff10db00073d6b, 0x3e1591faff3d9b07, 0x112c060e11700b0e, 0x10fe000e110c020e, 0x3f6fd3ff10f98b05, 0x060dbda4c872ffbd, 0xffbcfe51b6ff1107, 0x111e060d3be46636, 0xf4dab3ff11198505, 0xba04bd588fa6ffb9, 0xff3db9313bff1127, 0x1150060dbd26855d, 0x113d01121142a604, 0xbd96ff3d9962f8ff, 0x22ff114b0706bc82, 0x3cf10900ffbcfdef, 0x115d070e11620008, 0xf9c8ff3d9f0b52ff, 0x82ff116bc2043d0c, 0x3d8b4723ff3e12cf, 0x1198210111b83f01, 0x11850f01118a1401, 0x87b2ffbdc8d6d1ff, 0x10ff11939904bd89, 0xbd4e95f1ffbcd064, 0x11a5000811aa0107, 0xcd5effbbfdf7abff, 0xdfff11b33a013d10, 0x3dd0ec8fff3d40f0, 0x11ce000711dc0012, 0x1f5c58ff11c91c0e, 0xb4043d815fc6ff3e, 0xff3df44eedff11d7, 0x11ee01073e5abe20, 0xea7364ff11e94005, 0x01123db2c025ff3c, 0xff3e1e2b24ff11f7, 0x000000133d8e4a4a, 0x000003e800000008, 0x000011fc00000001, 0x0900000f00000000, 0x02481a0104843901, 0x00a00701012c0d01, 0x003c0101005c0401, 0x0029120e002e0304, 0x3266ffbd599e13ff, 0x44ff00371c0ebd64, 0xbd5b250bffbd51c8, 0x00490104004e0c04, 0x2bb0ffbd5c0b3bff, 0x20ff00570006bd50, 0xbd59de95ffbd43fc, 0x0072000b0080040b, 0x66e1f7ff006d0501, 0x000cbd7e761dffbd, 0xffbd6085cfff007b, 0x0092020dbd41935e, 0x5886c4ff008d000c, 0x0205bd39031affbd, 0xffbd50c7c7ff009b, 0x00e81e04bd23ad5a, 0x00ba010400c80304, 0x74a7f7ff00b50004, 0x030ebd6012b1ffbd, 0xffbd407d14ff00c3, 0x00da050dbd55fcd9, 0x47f160ff00d5010d, 0x030bbd29f5b2ffbd, 0xffbd247953ff00e3, 0x010c020dbd04d521, 0x00f9020b00fe090b, 0x026cffbd4a10bdff, 0x0bff01070006bd29, 0xbd438922ffbd001b, 0x01190203011e0405, 0x7350ffbd463239ff, 0x33ff01270c01bd2a, 0xbc75698effbcedd3, 0x0178110401bc2b04, 0x014a020401580604, 0x5d18bcff0145000c, 0x0506bd7b2fc8ffbd, 0xffbd34c024ff0153, 0x016a040ebd79831c, 0x0bdeceff01650a04, 0x070ebc9e049cffbd, 0xffbd0818f3ff0173, 0x019c070ebd377739, 0x01890b05018e1b04, 0x5928ffbd00b3aaff, 0xa2ff01970b05bba6, 0x3c8bca9fffbcc45b, 0x01a91e0401ae190e, 0x0416ffbcf4b651ff, 0x1eff01b71c04bc75, 0xbd1c79a1ffbd8a29, 0x01e4050d02041801, 0x01d1000c01d6040b, 0x4843ffbd489c15ff, 0x2dff01df1001bccb, 0xbb82798fffbca98d, 0x01f1080b01f60c05, 0xb908ffbcee6ea9ff, 0x29ff01ff070bbc68, 0x3cbc62a5ffbb883a, 0x021a050b0228040d, 0x24c592ff0215000c, 0x0b05bbf4bde5ffbd, 0xffbc657937ff0223, 0x023a0b053cc8ae69, 0x71e5c6ff02350603, 0x080b3c063b45ffbc, 0xff3cb44ec0ff0243, 0x03682a043d45cb41, 0x0298011102dc000c, 0x026a020e0278000d, 0x8f1f63ff02652e01, 0x050bbd79714dffbd, 0xffbd6b35fdff0273, 0x028a030bbd7b734d, 0xb817a4ff0285020e, 0x050bbd7fc7f0ffbd, 0xffbddf669bff0293, 0x02bc1104be0b4ab8, 0x02a9020402ae0904, 0x3374ffbd6a090cff, 0x31ff02b70006bd2a, 0xbd1a5c55ffbcbf22, 0x02c90f0e02ce0212, 0x08ccffbc52d48fff, 0xa8ff02d7000dbd37, 0x3dc82b66ff3cb59b, 0x0304010d03241b04, 0x02f1070e02f60f04, 0x88ebffbd026799ff, 0x4fff02ff0006bd35, 0xbd6858f3ffbca16b, 0x0311130403160606, 0xac96ffbc1359baff, 0x41ff031f0d043c33, 0xbd14e0d0ffbd6ca5, 0x033a00060348070e, 0x2639b3ff03350009, 0x0b063c83ddbdff3d, 0xffbb449be1ff0343, 0x035a0d0ebce882dd, 0xed2910ff03550006, 0x170ebc9509b5ff3b, 0xffbcab4126ff0363, 0x03f82b01bdbeb5c7, 0x0394030b03b4030d, 0x0381020b03862201, 0x0c77ffbcd8dd87ff, 0x25ff038f010db9f1, 0x3ce61f83ffbb8f9b, 0x03a1000603a61f01, 0xd9aaff3ccedb6fff, 0x9dff03af000cbc96, 0x3d698663ffbba5f4, 0x03ca000603d85404, 0x1b6c20ff03c5030b, 0x28033d709ee3ff3d, 0xff3c076a7aff03d3, 0x03ea000cbca894c5, 0x4c3affff03e52703, 0x1d01bb5c06a1ff3d, 0xff3d3ad599ff03f3, 0x044004063da7259b, 0x0412400404205b04, 0x475a4dff040d0008, 0x1c0e3d8e5e92ff3d, 0xff3dad064bff041b, 0x043202113d276feb, 0xaa0ec8ff042d040d, 0x030b3ddffe3bff3d, 0xff3ebda1ccff043b, 0x046400073e8d4684, 0x0451000b0456030b, 0x4010ffbd965397ff, 0x3fff045f0d06bbb6, 0x3a9b35b0ff3d401f, 0x0471520404766f04, 0xe977ff3ca8ee6fff, 0x6cff047f030b3d50, 0x3db67d58ff3d3b6a, 0x05a8000c06c48f04, 0x04d81106051c7f04, 0x04aa030d04b83a04, 0x8fdbfeff04a50112, 0x3404bc4e7151ffbd, 0xff3be5b18eff04b3, 0x04ca01123d933764, 0xda6411ff04c56104, 0x000ebe27d22cffbd, 0xff3be94ad2ff04d3, 0x04fc16063dc188ae, 0x04e92a0404ee5304, 0xa7ecffbd4b359bff, 0xc3ff04f7030bbcc8, 0x3daf5502ff3c6476, 0x05096504050e7e04, 0xe5e2ffbd4d215dff, 0x99ff0517030bbc97, 0xbe12f81affbdd361, 0x0544060e05641706, 0x0531020d05363905, 0x9428ff3d93efd2ff, 0xe8ff053f000e3e21, 0x3d66dac7ff3ac931, 0x0551030d0556290e, 0x5acfff3e132b61ff, 0xc8ff055f00063e42, 0x3d3cd4b1ff3e2093, 0x057a000e05881806, 0xdae200ff0575040d, 0x8404bd93fb63ffb9, 0xff3cc26385ff0583, 0x059a19063d8cae3b, 0x27b422ff05958704, 0x0005bb8efcc1ffbd, 0xffbe15bf82ff05a3, 0x06380006bd8369d5, 0x05d43e0405f45904, 0x05c1140405c6000d, 0xe15effbd889b65ff, 0xd8ff05cf00083cb3, 0x3df27ccfff3d8c6d, 0x05e1010905e6070e, 0x1c25ff3e2691b0ff, 0xd4ff05ef0e0e3de5, 0x3d7042ffff3ddb91, 0x060a690406180d0e, 0x025345ff0605000d, 0x00093e420077ff3e, 0xff3e74e11bff0613, 0x062a230e3e47c6b8, 0xf2f186ff06257304, 0x010b3e3efc72ff3d, 0xff3d4618adff0633, 0x068071043df53ce3, 0x06525d0406601106, 0x7042abff064d3a04, 0x6d043d38b6a8ffbc, 0xff3e21ba37ff065b, 0x06721406bcb1a1f1, 0x59fc4bff066d4804, 0x67043d2518aaffbd, 0xffbd32e597ff067b, 0x06a42b05bdd86372, 0x06910b0506961606, 0x98a6ff3e3cd62bff, 0xc9ff069f17063e03, 0xbce107dbff3d8e5d, 0x06b1140e06b60106, 0x510cffbd79e112ff, 0x0dff06bf090ebbb5, 0x3e00e8caff3d0c43, 0x0758030b07e4010e, 0x06f4020d07141906, 0x06e1000c06e6000e, 0x8911ffbc37a5a8ff, 0x81ff06efae043cb1, 0x3c82e7fbff3d5ef4, 0x070191040706010b, 0x847fffbe315679ff, 0x1bff070f0109bd21, 0x3e45ed9dff3d9415, 0x072a110507380007, 0x073c02ff07250008, 0x010bbd4565a1ffbe, 0xffbda3c54aff0733, 0x074aa704bc9751ad, 0x9c2ab0ff07450008, 0x020dbd20cc3dffbd, 0xffbc40ea0cff0753, 0x07a039053d6ca10c, 0x0772020d07801906, 0x50e458ff076d000e, 0x000e3df50d11ff3d, 0xff3e0b8a59ff077b, 0x0792a1043e4ff65e, 0x3bc202ff078d9f04, 0x070bbe323471ffbd, 0xffbe3b57f3ff079b, 0x07c401093d78ddf5, 0x07b1000907b60006, 0x2d2effbde92d31ff, 0x3eff07bf040d3db7, 0x3de50c2eff3d4e73, 0x07d1000207d6000c, 0xd8c0ff3cf569b0ff, 0xe9ff07df000ebae9, 0x3e83d7f2ff3e5be1, 0x0830050b08740007, 0x0802020b08103305, 0x819d89ff07fd000c, 0x320ebd8b26ebffbc, 0xff3d8bde4aff080b, 0x0822be043c78b9dc, 0xfddec5ff081d8205, 0x230e3e46ceb9ff3d, 0xff3dc2bb31ff082b, 0x08540111ba5503f5, 0x0841020d0846020e, 0xc964ffbe1ad94cff, 0x33ff084f0a0bbe9a, 0xbeb092b3ffbe656b, 0x0861a10408660705, 0x4118ffbc3e7754ff, 0x79ff086f6d053de1, 0x3e6a1104ff3e3bb3, 0x089c300e08bc0006, 0x0889110e088e000d, 0xd161ffbde36d28ff, 0x1dff0897030e3e2c, 0x3e8210d6ff3e04ee, 0x08a9310e08aea404, 0x3739ff3e0faf26ff, 0x98ff08b702083db3, 0x3deab5fbff3e516b, 0x08d2030d08e0030b, 0x9baec8ff08cd000c, 0x280e3e10e843ff3d, 0xff3e49d67bff08db, 0x08f2340e3dd445d5, 0x5cf3d2ff08ed3f05, 0xc3043e355278ff3e, 0xff3dd7b114ff08fb, 0x0d807e043e30b740, 0x0a283f040b445a04, 0x09580f01099c1e04, 0x092a030b09380301, 0x6326c3ff0925260e, 0x0001bd65fe52ffbd, 0xffbd6318ecff0933, 0x094a000cbd6110a8, 0x6230e6ff09450b0b, 0x030bbd5daa9bffbd, 0xffbd5fe5c4ff0953, 0x097c1404bd5afa45, 0x09690011096e0a04, 0x7d8effbd60eb49ff, 0x98ff0977070ebd5c, 0xbd5f628dffbd5690, 0x0989030e098e0011, 0x6595ffbd52ef89ff, 0x48ff09970a0ebd5e, 0xbd587c9fffbd4b26, 0x09c4120e09e41701, 0x09b1070e09b62604, 0xae37ffbd4d066bff, 0xfbff09bf0011bd56, 0xbd3f4340ffbd4e24, 0x09d1360409d60012, 0x685bffbd6006f2ff, 0xc3ff09df3d04bd59, 0xbd41d3cbffbd56ce, 0x09fa00060a083404, 0x3d76f9ff09f50c0e, 0x0b06bd4ee722ffbd, 0xffbd603c57ff0a03, 0x0a1a170ebd7678d0, 0x38b837ff0a150011, 0x020dbd2035edffbd, 0xffbd2e861cff0a23, 0x0ab8120ebd518332, 0x0a5400120a740112, 0x0a4100070a460008, 0xab6effbd3c8981ff, 0xa0ff0a4f070ebd24, 0xbd2739f7ffbd0743, 0x0a6100090a665305, 0x9342ffbcb645a0ff, 0xe2ff0a6f000ebd24, 0xbd07805dffbd4eaa, 0x0a8a01110a981206, 0x776ad4ff0a855204, 0x0009bd532edaffbd, 0xffbd3fc055ff0a93, 0x0aaa5104bcb17186, 0x882550ff0aa54004, 0x1506bda01c37ffbd, 0xffbd8477a5ff0ab3, 0x0b00200ebd93f637, 0x0ad24e040ae00011, 0x540adfff0acd2001, 0x5904bd5c7974ffbd, 0xffbd417286ff0adb, 0x0af25604bd08dd8a, 0x3876e1ff0aed4904, 0x0007bd216c77ffbd, 0xffbd2fc46bff0afb, 0x0b240111bcd90706, 0x0b112b0e0b164e04, 0xae47ffbd524253ff, 0x4dff0b1f260ebd6b, 0xbd4f7688ffbd369f, 0x0b3100070b364e04, 0x3461ffbd115315ff, 0xf7ff0b3f5204bcd3, 0x3bcfabd5ffbc5d58, 0x0bd8000c0c640008, 0x0b7400120b940006, 0x0b6167040b66090b, 0x7362ffbd51309eff, 0x80ff0b6f0109bd3b, 0xbd3da084ffbd1ceb, 0x0b81070b0b86190e, 0x7838ffbd0d3f89ff, 0xc5ff0b8f7504bcc1, 0xbcfeb363ffbd2c4a, 0x0baa03060bb81606, 0x79b8b8ff0ba50002, 0x0105bd53deb4ffbd, 0xffbd776b2fff0bb3, 0x0bca0105bd58e316, 0x8a63efff0bc5010e, 0x030bbd9be8d4ffbd, 0xffbd7840b6ff0bd3, 0x0c20010cbd8a4657, 0x0bf200110c000006, 0x27a84aff0bed0007, 0x1a0ebcfe486effbd, 0xffbc86c51eff0bfb, 0x0c121206bd0bec0c, 0x58d29aff0c0d7c04, 0x6b04bd9c63ddffbd, 0xffbd7ecaf3ff0c1b, 0x0c440107bd982340, 0x0c313c050c365905, 0x8ee7ffbd39e7efff, 0xcfff0c3f020ebcaf, 0x3c1b86aaffbcd8fa, 0x0c5129010c560112, 0x0273ffbc99c1e4ff, 0x97ff0c5f01113c21, 0xbc9d421bffbd490b, 0x0cb0020e0cf4000c, 0x0c82070d0c90000e, 0x5c244cff0c7d6704, 0x100bbd78d527ffbd, 0xffbd28ffd1ff0c8b, 0x0ca2060dbd0b7b11, 0x5be5bcff0c9d110b, 0x0011bd277663ffbd, 0xffbd20b7e3ff0cab, 0x0cd40f0bbae248dd, 0x0cc1030b0cc61c0e, 0x1744ffbd06474aff, 0x60ff0ccf1d0ebca1, 0xbd0e422affbd9078, 0x0ce12e010ce63701, 0xdc29ffbd199b58ff, 0x49ff0cef2703bc8a, 0xbb77c53fff3c936c, 0x0d1c1d010d3c2e01, 0x0d09340e0d0e0805, 0x0f56ffbd5335c7ff, 0x77ff0d171701bd88, 0xbd127304ffbd3809, 0x0d29010c0d2e0f0b, 0xee82ffbd1cb4d1ff, 0xb6ff0d370e05bce1, 0xbbe73e5dffbcf78c, 0x0d520a0b0d600112, 0xc6c7bfff0d4d0011, 0x020ebc0a86a5ffbc, 0xffbca6a0c4ff0d5b, 0x0d720b0e3c968f10, 0x5cbef2ff0d6d0111, 0x0605bd2896c4ffbd, 0xffbc969125ff0d7b, 0x0fc0110bbd3128a7, 0x0e18050b0ea4010c, 0x0db4000c0dd4060d, 0x0da1070e0da60b0e, 0xc7b9ffbd385e4eff, 0x15ff0daf0111bd64, 0xbc9f99c2ffbd1792, 0x0dc101080dc6020b, 0xdb42ffbd41f37bff, 0x09ff0dcf0b0ebcf3, 0xbc8aab1fffbd22c7, 0x0dea070d0df80011, 0x565b60ff0de5080e, 0x0007bd17a982ffbd, 0xffbd1e9782ff0df3, 0x0e0a0007bad304ff, 0x0fe5e9ff0e050009, 0x040ebd22879bffbc, 0xffbd04251fff0e13, 0x0e60060d3ceddd2d, 0x0e320c060e40000c, 0x0940caff0e2d0b0e, 0x1506bc137649ffbd, 0xffbd0e652fff0e3b, 0x0e520b0ebd4ac14c, 0x35bb13ff0e4d020e, 0x0108bca78518ffbd, 0xff3ae4e723ff0e5b, 0x0e84a7043cb29957, 0x0e713f010e760012, 0xd457ffbd50c52bff, 0x00ff0e7f0008bc50, 0x3d690dacffba670b, 0x0e9100070e967c05, 0x7901ff3ac31a82ff, 0xc7ff0e9f080e3d6e, 0x3cad4011ffbca003, 0x0ef000070f340006, 0x0ec23c010ed05f05, 0x39e60aff0ebd3301, 0x0008bcb0c281ffbd, 0xffbcd7f066ff0ecb, 0x0ee2070b3c4cbbd2, 0xdd5d4eff0edd020b, 0x020eba6999a4ffbc, 0xffbd0db965ff0eeb, 0x0f140a0b3d13a985, 0x0f012d0e0f063e01, 0xc068ffbc32e5aaff, 0x46ff0f0f190ebd23, 0x3c53ddd8ff3cfc2c, 0x0f2138010f26a804, 0x91deffbbf1b7a5ff, 0xd2ff0f2f7e053d4e, 0x3d257e13ff3ddd4c, 0x0f5c15060f7c9804, 0x0f49320e0f4e1c05, 0x31e0ffbc93b277ff, 0xefff0f570111bd86, 0xbcccbba9ffbd54c2, 0x0f6900080f6e0305, 0xe387ffbdbd6ccbff, 0x7dff0f771706bd83, 0xbd8a626affbd36e3, 0x0f92020e0fa00b0e, 0x37cd7eff0f8d000e, 0x090ebd0b09b8ffbd, 0xffbca0f0f7ff0f9b, 0x0fb20107bb1812e0, 0xe536e0ff0fad0007, 0x1e05bb0e83a2ffbc, 0xff3cf29391ff0fbb, 0x10e00b0ebc1da055, 0x101081041054010e, 0x0fe200090ff0000e, 0x245ac5ff0fdd1106, 0x0111bd7c889dffbd, 0xffbcc98da3ff0feb, 0x1002060d3ce0d6d6, 0x502a2dff0ffd0006, 0x0009bd673a15ffbc, 0xff3dc1734aff100b, 0x1034000ebcd6de05, 0x10218d0510260009, 0xe430ffbd36848eff, 0xe8ff102f000cbd66, 0xbca46543ffbd1f4d, 0x104119061046060d, 0x585fffbcfe0d24ff, 0xcfff104faf04bd69, 0xbd0ef81eff3bb556, 0x107c000c109c060d, 0x1069a004106e030e, 0xfcacffbcb2ea26ff, 0xd3ff10770a0ebd15, 0xbd0efeaeffbc39a3, 0x10890006108e9a04, 0x5adaff3d131fddff, 0xf5ff10978b05bd14, 0xbd059febffba61fb, 0x10b2000810c0000c, 0xe9759fff10ad060e, 0x0011bc5a1f80ffbc, 0xff3bae0e70ff10bb, 0x10d200083d68e262, 0xf79ab7ff10cd010c, 0x010c3d3bdbe2ff3b, 0xff3d543cd2ff10db, 0x117000083dc75ddb, 0x110c4001112c010c, 0x10f9000710fe310e, 0x25f2ffbd082fb9ff, 0x36ff11072e01bbbd, 0xbd7084a5ffbd9903, 0x1119000c111e0007, 0xa250ffbc35cc3eff, 0xd8ff1127b3043c55, 0x3d32e818ff3c36b0, 0x1142260111504001, 0x844324ff113d310e, 0x0107bd699dffffbc, 0xffb983b993ff114b, 0x116201123d29375a, 0x8f40e5ff115d0007, 0x05053de5579dff3d, 0xffbd4ab51cff116b, 0x11b8000c3c9722c9, 0x118a000711982705, 0x95ee85ff11850a05, 0x3b01bc8963b5ffbd, 0xffbd1285e4ff1193, 0x11aabc043c625153, 0x4f4d5cff11a59504, 0x1d0e3d04cd84ff3b, 0xff3ca45be4ff11b3, 0x11dc4d053d94516f, 0x11c92f0111ce0107, 0x363effbc738c29ff, 0x65ff11d73b053d11, 0x3e1bf825ff3dab07, 0x11e9260e11ee0007, 0x01a1ff3dd0f0a9ff, 0x71ff11f7010c3ceb, 0x3e401158ff3df19e, 0x0000000800000013, 0x00000001000003e8, 0x00000000000011fc, 0x04843b010900000f, 0x012c0f0102481d01, 0x005c040100a00801, 0x002e120e003c0c04, 0x40f2beff00290404, 0x0204bd33b5b7ffbd, 0xffbd4f9a76ff0037, 0x004e2a0ebd44b6f9, 0x349136ff00491504, 0x000cbd27c3e2ffbd, 0xffbd4c7ed7ff0057, 0x0080060bbd3eb41e, 0x006d07010072000b, 0xf99fffbd55d7c6ff, 0x1aff007b0404bd87, 0xbd28d8d3ffbd3e2f, 0x008d03050092000c, 0x1dc6ffbd32b7a8ff, 0xe3ff009b0305bd45, 0xbd1210e9ffbd3135, 0x00c8020d00e8080b, 0x00b5000b00ba020b, 0x38e9ffbd7f3ea4ff, 0xbfff00c30d04bd2e, 0xbd149c65ffbd2cde, 0x00d5000b00da010b, 0x12c1ffbd86a762ff, 0xecff00e30605bd2c, 0xbcec69a6ffbd2933, 0x00fe0505010c0705, 0x31a7f9ff00f93804, 0x0006bd11d1fbffbd, 0xffbcddeda5ff0107, 0x011e010dbd47de5b, 0x5624f3ff01190704, 0x000cbd1a93f1ffbd, 0xffbd3cf22eff0127, 0x01bc3d04bc9aae2b, 0x0158090401781204, 0x01450606014a0404, 0x4b82ffbd3d4158ff, 0xe5ff0153070ebd78, 0xbd60a9aaffbd0ac5, 0x01650006016a030e, 0xd1e2ffbc68e832ff, 0xb7ff01730006bd46, 0xbd2cdd11ffbceae0, 0x018e000d019c030d, 0x43bf06ff0189010b, 0x1501bd03c148ffbd, 0xffbcb3af00ff0197, 0x01ae1501bc11db1a, 0x0d41fbff01a90705, 0x060bbc10aa40ffbd, 0xffbaf4d94dff01b7, 0x0204220e3c764db5, 0x01d6190e01e44804, 0x846f13ff01d10c05, 0x0a053d028ae9ffbc, 0xffbccd0cacff01df, 0x01f607033c058e38, 0xe6252bff01f10503, 0x55043a964f6dffbc, 0xff3d2720e6ff01ff, 0x022801063d8cecfb, 0x0215020b021a080b, 0x47a6ffbcd528a9ff, 0xaeff0223020dbba4, 0x3d12aa8bff3bda6d, 0x02356b04023a350e, 0xa4d6ffbcda6c6eff, 0x61ff0243000b3bc1, 0xbd155e54ffbdbe93, 0x02dc1e0403683104, 0x0278030d02981104, 0x02650504026a0111, 0x034cffbd6401ccff, 0x9aff02730006bdc3, 0xbd20c664ffbcc9a2, 0x02850b04028a0006, 0x6c97ffbcc02357ff, 0xc3ff02930d04bb65, 0xbcf9bcd0ffbd2dd9, 0x02ae030e02bc0006, 0xcd13e3ff02a90007, 0x070e3cdbd26fff3b, 0xffbaecf281ff02b7, 0x02ce0906bcab429a, 0xe0b44dff02c9050e, 0x030bbd0b135bffba, 0xffbc9b22e3ff02d7, 0x03240006bd1db576, 0x02f600090304070e, 0x1272c7ff02f12604, 0x040b3d619063ff3d, 0xff3c337bcbff02ff, 0x03161a0e3ce76114, 0x4ea178ff03112204, 0x00093c90662cffbc, 0xffbdb7a14cff031f, 0x03480d06bd3dd4bb, 0x03352804033a090e, 0x1c6effbbab034eff, 0x80ff034306053c07, 0xbcbe64ecffbba1b0, 0x03550e06035a0211, 0xd24bffbc9fab7cff, 0x12ff0363070ebd20, 0xbd32ced7ff3cf8d7, 0x03b4050b03f82401, 0x0386010b0394050d, 0xb2bc1bff0381000b, 0x010dbcf31c14ffbd, 0xffbc70525aff038f, 0x03a611053c6e7e96, 0x83e3bfff03a1360e, 0x010bbd481dcbff39, 0xffbb86f9b2ff03af, 0x03d8000c3d495913, 0x03c5350e03ca0605, 0x30c2ff3cde034bff, 0x40ff03d36e04bcc4, 0xbc1cfea2ffbd4454, 0x03e5470403ea010d, 0xc0ffffbbe2218cff, 0x10ff03f32d033c81, 0x3d121e9eff3d9057, 0x042000070440000c, 0x040d320104120008, 0x063dffbcb5868aff, 0x55ff041b030b3bb3, 0x3d1c235bffbbd148, 0x042d030b04320212, 0x58baff3c0d6cfdff, 0x7fff043b34013d3f, 0xbd1c192cff3e2c51, 0x0456000b0464010b, 0x244883ff04512801, 0x040dbdb47d11ffbe, 0xff3bc9e505ff045f, 0x0476010d3d6cb206, 0xdc171eff04713201, 0x1e053d6cb6efff3c, 0xff3d53652cff047f, 0x06c467043daaf80c, 0x051c410405a80006, 0x04b85f0504d82804, 0x04a5130404aa1d04, 0x6dccffbceba6f1ff, 0xfcff04b300083c85, 0x3d8e416eff3d14e5, 0x04c56d0504ca000d, 0x8fd2ffbce50dfaff, 0x56ff04d30112bd6a, 0x3c3670d0ffbd8379, 0x04ee011204fc0008, 0x126a9bff04e93f01, 0x010dbd8d57b9ffbe, 0xff3c467ed1ff04f7, 0x050e030d3d9cfe16, 0xb34f0eff0509000c, 0x41013da22e7eff3e, 0xff3def9c4fff0517, 0x0564000d3e165a7c, 0x05361c0e05447e05, 0x9dd7dfff05315504, 0x41013e1f9d5cff3d, 0xff3d366abaff053f, 0x05568705bd2b5c6e, 0x8c5913ff05510007, 0x8c05bd336157ff3d, 0xffbcec83f3ff055f, 0x0588070ebda8e9e5, 0x05750011057a0111, 0xd7e1ffbda8dfe7ff, 0x50ff05835204bded, 0x3e2f6650ff3e07ff, 0x05950111059a5c04, 0x93aeffbde09fa4ff, 0x20ff05a30f0e3dcb, 0x3dc30bf1ff3e227f, 0x05f404060638000e, 0x05c63a0405d45504, 0x7d3ee5ff05c11c04, 0x000cbd87219dffbd, 0xffbd8fff88ff05cf, 0x05e63905bdaafd31, 0xde8cc4ff05e10107, 0x010dbe04e1edffbd, 0xffbda6a7a9ff05ef, 0x06181306bdd13368, 0x06050b06060a2804, 0x50c6ffbcaf47d7ff, 0xebff06131c05bd52, 0xbc7ae690ff3c6ca2, 0x06250007062a0211, 0xcdd5ffbd637197ff, 0x34ff06333504bd26, 0x3c83f858ffbd4dbe, 0x0660410406801106, 0x064d000c06520106, 0xe9cbffbdabcfefff, 0x41ff065b2e04bd65, 0x3cbb2a53ffbc53f0, 0x066d060e06720206, 0xe1d3ffbdec2ca3ff, 0x92ff067b0211bc3f, 0x3e260d56ff3d9063, 0x0696450406a41406, 0x225bd0ff06910211, 0x0211bc89d471ffbd, 0xff3b974ce7ff069f, 0x06b600073ddee177, 0x736b08ff06b10005, 0x6004bd1fc873ffbd, 0xffbcf111f2ff06bf, 0x07e40006bbc5ae8e, 0x07140a0b07580112, 0x06e6000b06f40a0e, 0x7f1761ff06e19504, 0x000ebde91187ffbd, 0xffbdd15e4fff06ef, 0x0706000bbe201077, 0xf51393ff0701000d, 0x060bbe16f63affbd, 0xffbe4b0612ff070f, 0x0738a404be7e42a2, 0x0725020d072a020e, 0x27b8ffbe4152a5ff, 0x6bff07337b04be1b, 0xbe9e768effbe575b, 0x0745020d074a0007, 0x4edaffbea686e6ff, 0xc6ff0753020dbe8b, 0xbea19e7bffbec543, 0x0780010d07a02b0e, 0x076d870407729105, 0xfb0dff3daa8736ff, 0xadff077b9a043e1b, 0x3d97d7c5ffbdc37d, 0x078d190e07929b04, 0xa16cff3e496699ff, 0x60ff079b00093e1c, 0x3e0cf46aff3e660f, 0x07b6020b07c4050b, 0x1982a5ff07b10107, 0x01073dcb1ed0ff3d, 0xff3ddc55e6ff07bf, 0x07d6a6043e2ce8af, 0xd2e47dff07d13f01, 0x070b3e16df19ff3d, 0xff3e24035aff07df, 0x08749a043e52eecf, 0x0810390508301706, 0x07fd030b0802200e, 0x3067ff3dd45cc1ff, 0x0fff080b00073e1b, 0x3db2dbb0ff3c641c, 0x081d060e0822020d, 0x5fe2ff3c0d005bff, 0x10ff082b03063d62, 0x3db9d5cfff3d2f75, 0x0846180608541906, 0x7b88acff08418204, 0x81043d2a4619ffbc, 0xffbd4e5da5ff084f, 0x08660f0ebc8c0df4, 0x98666dff08610008, 0x130ebd33cbdbffbd, 0xff3d4779acff086f, 0x08bc030bbd1f36f0, 0x088e010b089c0007, 0x6f7980ff0889b704, 0x030eba9685e1ffbd, 0xff3c54cb65ff0897, 0x08ae030d3d92139a, 0xe20df3ff08a91106, 0x000c3d5405f5ff3d, 0xff3dfcc75eff08b7, 0x08e0020e3e475e40, 0x08cd000e08d2030d, 0x889bff3cbd6e77ff, 0xdfff08db000e3daf, 0x3e324d94ff3dd929, 0x08ed9b0408f20007, 0xe603ffbd0868beff, 0x43ff08fb2e0e3e22, 0x3e0ae815ff3e4bf4, 0x0b4448040d808a04, 0x099c21040a281901, 0x0938050109580d01, 0x09250c04092a1c0e, 0x1d30ffbd4b488bff, 0x96ff0933240ebd49, 0xbd4f28e8ffbd4c6a, 0x0945000c094a030b, 0x27fcffbd4ce853ff, 0x4bff09530804bd49, 0xbd4463acffbd4a26, 0x096e000c097c0b0b, 0x491126ff09690111, 0x0111bd34cc1effbd, 0xffbd427f4dff0977, 0x098e0011bd1c03db, 0x486fdfff09890f04, 0x1304bd42c0d8ffbd, 0xffbd41aac8ff0997, 0x09e40d01bd372add, 0x09b6000609c40405, 0x3ee970ff09b1100e, 0x4004bd473a56ffbd, 0xffbd54ce3bff09bf, 0x09d6120ebd3b574d, 0x410731ff09d10801, 0x3504bd37bee5ffbd, 0xffbd43e73eff09df, 0x0a08030bbd3e2af9, 0x09f5020809fa0007, 0xc426ffbd465f50ff, 0x8dff0a031701bd38, 0xbd31ccb3ffbd3df3, 0x0a150b0b0a1a000c, 0xe624ffbd44f9d2ff, 0xbcff0a23010cbd38, 0xbd2794c2ffbd31d8, 0x0a7414040ab83004, 0x0a4600110a540006, 0x494293ff0a410c04, 0x0c04bd448445ffbd, 0xffbd442903ff0a4f, 0x0a66000ebd3ceec3, 0x5f473cff0a610106, 0x000bbd55ba4dffbd, 0xffbd5c1a8aff0a6f, 0x0a982504bd510906, 0x0a8525010a8a0006, 0x5f0dffbd3c1491ff, 0xdcff0a93020dbd34, 0xbd50f4dcffbd3856, 0x0aa5000c0aaa0008, 0x6e5affbd392730ff, 0x4aff0ab30112bd2a, 0xbd499188ffbd23dc, 0x0ae0000e0b00070e, 0x0acd010c0ad2050b, 0xac1dffbd500664ff, 0x92ff0adb000cbd28, 0xbd215b3cffbd34bb, 0x0aed00110af20008, 0x9501ffbd24f78cff, 0x3cff0afb0011bd08, 0xbcd7cea1ffbd0dc8, 0x0b16030b0b240108, 0x2fd772ff0b11170e, 0x0011bd43fa2bffbd, 0xffbd3387b0ff0b1f, 0x0b363401bd1d5c9b, 0x292c68ff0b310b0b, 0x080ebd106287ffbd, 0xffbd3481e7ff0b3f, 0x0c646f04bd004459, 0x0b94010c0bd8170e, 0x0b66000e0b74020e, 0x4c55f8ff0b61070d, 0x0b0bbd07c399ffbd, 0xffbd2700daff0b6f, 0x0b860008bce8714c, 0x1c1ac6ff0b810012, 0x5904bcdc6fd5ffbd, 0xffbcd32565ff0b8f, 0x0bb82a01bc5e6f2a, 0x0ba500090baa0007, 0xce45ffbd12de92ff, 0x8eff0bb31901bd42, 0xbcb38305ffbd1bea, 0x0bc501120bca0009, 0xf097ffbbac5010ff, 0x4fff0bd34405bd3d, 0xbcc4bf0dffbd2c60, 0x0c0060040c206e04, 0x0bed00110bf2240e, 0xda27ffbd373d1eff, 0x89ff0bfb2d0ebd16, 0xbd4e90b3ffbd36cb, 0x0c0d00110c121e0e, 0x3bbcffbd219d2eff, 0x21ff0c1b0011bc8d, 0xbd10e0f5ffbd37af, 0x0c36060d0c440007, 0x715b41ff0c31210e, 0x070dbcf33dc0ffbb, 0xffbd1025caff0c3f, 0x0c562301bd7581f3, 0xb060b3ff0c51310e, 0x050bbd65aca8ffbc, 0xffbc89b486ff0c5f, 0x0cf4010c3b01053a, 0x0c90240e0cb0120b, 0x0c7d060d0c82020e, 0x18faffbd52e43fff, 0x2aff0c8b080bbd06, 0xbc305fd3ffbccbcb, 0x0c9d060d0ca22f0e, 0x823bffbcfe276aff, 0x4eff0cab3b01bd48, 0xbd21e363ffbd6df3, 0x0cc600060cd40108, 0x9a11fcff0cc10011, 0x0306bb2dd22affbc, 0xffbd714040ff0ccf, 0x0ce61a0ebd31deab, 0xd5e735ff0ce10006, 0x280ebd290b16ff3c, 0xff3bb0c1bbff0cef, 0x0d3c000ebcdd50f9, 0x0d0e87050d1c070d, 0x389c48ff0d094505, 0x0009bd71e63bffbd, 0xffbdbe3919ff0d17, 0x0d2e0e0bbd7b4125, 0x7de2a4ff0d290209, 0x0009bd2ec038ffbc, 0xff3cb59c68ff0d37, 0x0d601c0ebd2e2ec8, 0x0d4d00070d520006, 0xfc95ff3b4eb2c4ff, 0x9fff0d5b03063cdc, 0xbd181e67ffbd79d4, 0x0d6d1d0e0d720011, 0xcb02ffbdc6acddff, 0x11ff0d7b2b0ebd10, 0xbd24e2b2ffbc011c, 0x0ea4010c0fc0100b, 0x0dd40a0b0e18000c, 0x0da6000e0db4020e, 0x832617ff0da10112, 0x010ebd40003cffbd, 0xffbd32519cff0daf, 0x0dc68b04bd57007e, 0x5fae49ff0dc1040b, 0x00073c4da839ffbc, 0xffbd0b4428ff0dcf, 0x0df80b0ebcbefb9b, 0x0de59c040dea060e, 0x72cdffbcf59ee7ff, 0x34ff0df3070ebd1e, 0xbce1d2d3ffbba443, 0x0e0500070e0a0006, 0x54f9ffbc3153b3ff, 0x61ff0e1337013c2e, 0xbcc1002effbd84dc, 0x0e40060b0e600006, 0x0e2d070d0e320012, 0xe5d9ffbcfe8b98ff, 0xc6ff0e3b060dbba9, 0x3ca4deb4ffbc8c3d, 0x0e4d00070e520108, 0x7ed0ffbb8a0b4fff, 0x61ff0e5b00073cae, 0x3d4ec956ff3c9bfb, 0x0e7615060e849b04, 0x05f535ff0e712905, 0x030bbd3ee085ffbd, 0xffbd5f93dfff0e7f, 0x0e96030ebd9c880a, 0x1fb9e1ff0e91010e, 0x0107bcfc9a08ffbd, 0xffbce61551ff0e9f, 0x0f340207bbdec1cb, 0x0ed00a0b0ef00112, 0x0ebd2e0e0ec20009, 0xd1d1ff3c82594aff, 0x72ff0ecb0e0ebcf3, 0xbd07efb4ffbc114c, 0x0edd3b010ee29005, 0x3aafffbcc40ee2ff, 0x5eff0eeb0d0e3d4b, 0x3d76f4e7ffbd2bfc, 0x0f06200e0f140007, 0x16ceafff0f01040e, 0x7b05bc91af9fffbd, 0xffbd0e4beaff0f0f, 0x0f26090ebd8f340c, 0x12e994ff0f21010e, 0x0008bc9ebff4ffbd, 0xffbc2eed27ff0f2f, 0x0f7c0c0e3c3840bd, 0x0f4e7b050f5c020e, 0x733b75ff0f490011, 0x000ebd002956ffbd, 0xffbdf3f8deff0f57, 0x0f6e060dbda4aada, 0x9cadc4ff0f696d05, 0x0011bd981fe3ffbb, 0xff3c48e2e0ff0f77, 0x0fa0040b3dba5c38, 0x0f8d01110f92060d, 0x19aaff3c468007ff, 0x59ff0f9b00113d2d, 0x3dee7ed3ff3ceb2c, 0x0fad00060fb2b304, 0x3a54ff3d9f2112ff, 0xf0ff0fbb1d0e3cda, 0x3e2e1a0bff3dad8b, 0x10541e0e10e0000c, 0x0ff0020e1010060e, 0x0fdd00090fe2000e, 0x5006ffbd32f28dff, 0xadff0feb060dbd0f, 0xbcd1f38fffbd112e, 0x0ffd01121002c104, 0xfa15ffbc4c1673ff, 0x45ff100b050ebcd6, 0xbd8ef960ffbd1ae7, 0x102601081034190e, 0xabb2f4ff1021180e, 0x060d3cf487f1ffbb, 0xff3c186527ff102f, 0x10461c0e3d5e8b62, 0x98b029ff10410008, 0x02063d2ef25bffba, 0xffbdc64db6ff104f, 0x109c0107bc0c5956, 0x106e0007107c3e05, 0xbcd49fff10692f0e, 0x3c01bd623d97ffbc, 0xffbd4ef2c9ff1077, 0x108e02083af9ef68, 0x4e7c8bff10895a05, 0x00073c9951e4ffbc, 0xff3cec6950ff1097, 0x10c001123d99b840, 0x10ad010810b2b504, 0x72f1ff3cd24299ff, 0x0eff10bb140b3d60, 0x3dc46b66ffbc0900, 0x10cd000810d2330e, 0x3f6fffbc4cc4ffff, 0x7eff10db360e3cf7, 0xbda17393ffbcb558, 0x112c9d0411700112, 0x10fe0108110c010c, 0x93dbacff10f92801, 0x2f013c47c1a3ffbd, 0xffbd56fc08ff1107, 0x111e00083d72de4d, 0x52c8f8ff11190007, 0x35013d11ed8dff3c, 0xff3cd00510ff1127, 0x115000083d9ebfd6, 0x113d8e0511420d0e, 0x8b41ff3c51c50fff, 0x29ff114b0107bcb3, 0x3dc9c881ff3d368b, 0x115d000711628605, 0xcfacff3d9851b5ff, 0xdfff116b0d0e3df0, 0x3dc2bc75ffbc502d, 0x1198010e11b80a0e, 0x11850009118a000e, 0x434fffbd1c2718ff, 0x40ff119319063bbb, 0xbd5a0da0ffbcc28e, 0x11a5011111aa0a06, 0x7dc1ffbd37e404ff, 0xabff11b30007bc02, 0x3b67acb2ffbc9fc8, 0x11ce0a0511dc0007, 0x75cbfdff11c90108, 0x290ebca2294affbd, 0xff3b004f7dff11d7, 0x11ee3c01bc97692a, 0xa931a6ff11e90a03, 0x0008bc6ac27dffbd, 0xff3c02d690ff11f7, 0x000000133d34ffb9, 0x000003e800000008, 0x000011fc00000001, 0x0900000f00000000, 0x02481a0104842b01, 0x00a00601012c0c01, 0x003c0304005c0d04, 0x00290004002e0d0e, 0xd1eeffbd35b4b6ff, 0x38ff00371c0ebd2b, 0xbd3c87f6ffbd36e7, 0x0049070e004e120e, 0xc934ffbd17a3e6ff, 0x7eff00571f0ebd22, 0xbd36164fffbd2bac, 0x0072050d00802a0e, 0x1f7e6cff006d1f04, 0x0401bd0f0b7cffbd, 0xffbd15b23aff007b, 0x00920301bd05516f, 0x3826baff008d000c, 0x030bbd2c6297ffbd, 0xffbd2a63aeff009b, 0x00e81304bd17f6f1, 0x00ba010400c80404, 0x590741ff00b5000e, 0x0006bd3b0932ffbd, 0xffbd20cb96ff00c3, 0x00da000cbd495769, 0x3a78bdff00d50901, 0x050dbd26d69fffbd, 0xffbd1682ceff00e3, 0x010c040dbcff1bcc, 0x00f9090b00fe010d, 0x995cffbd250411ff, 0x81ff01070006bd13, 0xbd24e9b5ffbcf961, 0x0119000b011e020b, 0x00a8ffbd7c1a7cff, 0x41ff0127000cbd0f, 0xbcbbd83effbd24e5, 0x01780d0401bc3404, 0x014a050601580404, 0x3c9ffaff01450204, 0x000cbd1eeea6ffbd, 0xffbd332969ff0153, 0x016a070ebd7bde8e, 0xf886c9ff01650b04, 0x0904bcaf2b36ffbc, 0xffbd46e616ff0173, 0x019c050dbd1cb6fb, 0x0189120e018e010d, 0x6445ffbce8c81cff, 0x7cff01970805bd11, 0xbc93c7f9ffbd0638, 0x01a9060501ae1101, 0xae8bffbd1219e6ff, 0x73ff01b70b05bc6c, 0x3a9b98ddffbcd450, 0x01e40b050204000c, 0x01d1170101d6350e, 0xd59dffbcdd7527ff, 0x2bff01df2203bbde, 0xbd34a755ffbd0401, 0x01f1030b01f6320e, 0x27cfffbd3441f7ff, 0x0bff01ff360ebd86, 0xbd66581dffbcf0cb, 0x021a030d02281301, 0x016112ff0215010d, 0x0805bc840cedffbd, 0xffbcd69dedff0223, 0x023a050d38df6331, 0x15533cff0235090b, 0x030b3c653e44ffbc, 0xff3c129428ff0243, 0x036843043d052fa3, 0x0298000c02dc2404, 0x026a050402780111, 0x704e6bff0265020e, 0x020dbd48176dffbd, 0xffbdd15139ff0273, 0x028a0f04be111c96, 0x42f395ff02850204, 0x2901bcfc8768ffbd, 0xffbcac946bff0293, 0x02bc1704baf98033, 0x02a90c0402ae050d, 0x6ec1ffbceccf3dff, 0x19ff02b70007bc50, 0x3bf3233affbbfb71, 0x02c9100502ce040e, 0x95d0ffbc866782ff, 0xf7ff02d700063ce0, 0xbcf415f3ff395b23, 0x0304170e03240006, 0x02f1360402f60d0e, 0x2108ff3cf95264ff, 0xf7ff02ff34043d6d, 0x3cc30de0ffbbf5c4, 0x031134040316000d, 0x681affbd6ea3e8ff, 0xb7ff031f000bbca7, 0x3a93d346ffbe132a, 0x033a120503481106, 0x4b4aebff0335170e, 0x2a04bcc517e6ffbb, 0xffbc52e5eaff0343, 0x035a000cbd2f92a9, 0x1cb0dbff03551206, 0x2a04bd532469ffbd, 0xffbd1f9ea8ff0363, 0x03f8030bbdb81771, 0x0394020d03b40006, 0x0381000b0386010b, 0xea1bffbdecc230ff, 0x3eff038f2001bcbf, 0x3cbf957dffbbde49, 0x03a1020b03a62101, 0xcdbaffb9b97041ff, 0x98ff03af000c3cf9, 0x3d64f4a8ffbd470e, 0x03ca020b03d8020d, 0x3d3cddff03c50405, 0xa104bdb0d04fffbd, 0xffbca48a7dff03d3, 0x03ea000bbd6b6474, 0x98abc6ff03e5000c, 0x2501be1cb086ffbd, 0xffbc518262ff03f3, 0x0440000c3c70357d, 0x0412330e04200605, 0x6ef48aff040d0f06, 0x09063c49fb4dff3d, 0xff3c5083c6ff041b, 0x04322501bcdce9bf, 0x30459cff042d2001, 0x0306bc7088a3ffbd, 0xff3d0cc732ff043b, 0x0464040dbc591aff, 0x0451010d04562401, 0x8fa7ff3c0832c9ff, 0x14ff045f1e053d2d, 0x3d884599ff3d2d28, 0x0471000604766004, 0x1bdaff3d72a995ff, 0xd4ff047f0a033c2b, 0x3da9f803ff3cbdd6, 0x05a84b0406c47e04, 0x04d83104051c0006, 0x04aa140404b82004, 0x37dde4ff04a55d05, 0x0008bd43a15fffbc, 0xff3be8cf2cff04b3, 0x04ca01113d222e63, 0x1cd2feff04c53e01, 0x070ebd768ce5ffbe, 0xff3d498cc2ff04d3, 0x04fc070e3c068e05, 0x04e9000704ee0008, 0xe2c7ff3d8497feff, 0xe3ff04f73e013dca, 0x3e00b92aff3d9fb3, 0x05096105050e0211, 0xe0d1ff3d51d291ff, 0x10ff0517080e3c21, 0x3e5c49c6ff3df396, 0x05441c0505641006, 0x0531220405362e04, 0x9d1bffbcd72686ff, 0x12ff053f000bbb08, 0x3d021b17ffbd4d3f, 0x05513c0105560406, 0x8977ffbc59c5a5ff, 0xaeff055f3604bd6a, 0x3c3d9bbeffbc71c0, 0x057a2e0405881406, 0x3536a1ff05750211, 0x0211bce8b91bffbd, 0xffbcb10fcdff0583, 0x059a17063c80ee0c, 0x4e30d6ff05953004, 0x050ebd1fdc05ffbd, 0xffbd485a5bff05a3, 0x06380006bda38e5e, 0x05d4900505f40e0e, 0x05c1011105c66304, 0x98bbffbdb96963ff, 0xcaff05cf000d3dfb, 0x3e304c1aff3d7d9f, 0x05e1780405e6000d, 0xbc3bffbdd41e93ff, 0xabff05ef7c043d47, 0x3e0a4fd1ffbcbbcf, 0x060a650406188005, 0xa0bb73ff06051a0e, 0x230e3d56aba0ff3d, 0xff3de2f4f3ff0613, 0x062a000d3d83cf6b, 0x5d83d6ff06258a05, 0x190ebe2f3e4fffbd, 0xff3e331521ff0633, 0x068014063da5fab6, 0x0652030b06602905, 0x610e12ff064d0007, 0x65043d89af1affbc, 0xff3d80073bff065b, 0x067201063def636b, 0x65659aff066d140e, 0x010e3d145203ffbd, 0xffbbdaf312ff067b, 0x06a417063d4fbcde, 0x0691010706967004, 0xf9bfffbc9acca6ff, 0x52ff069f0f053b9d, 0xbc1c85cbff3d6934, 0x06b1780406b61806, 0x5cc4ffbcefbdc7ff, 0xafff06bf00073c9e, 0xbd147fe8ffbd5074, 0x0758070b07e4010e, 0x06f4190607140109, 0x06e1020d06e69105, 0x0c86ff3befeca4ff, 0x49ff06ef00093d53, 0x3d83755effbd9af2, 0x0701110507060008, 0xb7e9ffbda652e2ff, 0x65ff070f020dbce1, 0x3ccd9b7cffbcaca1, 0x072a94040738020d, 0x37751eff07250209, 0x96053ddbb848ff3e, 0xff3d7c4bf2ff0733, 0x074a000e3d0ced88, 0xd7ab14ff07450002, 0x02093e137a67ff3d, 0xff3e4b6f7bff0753, 0x07a0020d3e1c34da, 0x07728e050780000e, 0x8f640cff076d010d, 0x7f043cd3d68affbb, 0xffbd901543ff077b, 0x0792000cbdd6f847, 0x581bcfff078d1806, 0x0007ba8ad775ff3d, 0xff3d2881d8ff079b, 0x07c4000e3de31f3f, 0x07b1070507b6000c, 0x4736ffbcf59f66ff, 0x4eff07bf8b043d83, 0x3deea1c8ff3d78d6, 0x07d1000607d6000c, 0x70c6ffbe0c9d9eff, 0xfdff07dfa7043deb, 0x3e410980ff3e0d26, 0x08300a0b0874000c, 0x080201110810020b, 0xe5fa37ff07fd000b, 0x0006be269507ffbd, 0xff3dff8049ff080b, 0x0822040dbc25fe77, 0x9fba95ff081d0f06, 0x00063d17da06ff3d, 0xff3e41a082ff082b, 0x0854030d3dda27fd, 0x084101110846000d, 0xa1e9ffbe8181a1ff, 0x56ff084f16063d33, 0x3d793c70ff3e02e1, 0x086104060866290e, 0x59aeff3e068cd7ff, 0x64ff086fa9043e41, 0x3e147dfbff3d9234, 0x089c000708bc2b0e, 0x08896905088e030b, 0xfef3ff3d8b673dff, 0xd6ff08975e053e0a, 0x3e3b3f81ff3e18ee, 0x08a9980408ae6305, 0x8bbbff3e1826a3ff, 0x77ff08b7030e3e3f, 0x3e5c7d23ff3e1fcb, 0x08d2020b08e09904, 0xd54d35ff08cd000b, 0x0b063d0c51f4ffbd, 0xff3d93c397ff08db, 0x08f2010b3c887459, 0x3a7410ff08ed0107, 0x00073dbd5d87ff3b, 0xff3dd03a3fff08fb, 0x0d807e043e1aca88, 0x0a284d040b445b04, 0x09581601099c2b04, 0x092a070109380901, 0x35d651ff0925220e, 0x1704bd39342dffbd, 0xffbd34bea5ff0933, 0x094a1404bd2f84eb, 0x351184ff09450b04, 0x000cbd318693ffbd, 0xffbd321549ff0953, 0x097c1704bd29bfbf, 0x09690006096e0d04, 0x750fffbd31b688ff, 0x6eff09770006bd3f, 0xbd41cf13ffbd2c08, 0x09892204098e0006, 0x0d26ffbd25bbbeff, 0x69ff09970f06bd1d, 0xbd49f820ffbd33d3, 0x09c4000609e40d0e, 0x09b1360409b60012, 0x9334ffbd204356ff, 0xc3ff09bf3c04bd0e, 0xbcd0f39effbd0553, 0x09d1080609d6020d, 0xbe49ffbd0b7a83ff, 0xf7ff09df1106bd32, 0xbd7797e3ffbd41dd, 0x09fa0d060a080905, 0x2ed744ff09f50006, 0x4004bd4258cbffbd, 0xffbd5c3a93ff0a03, 0x0a1a3d04bd81269e, 0x20ef37ff0a15170e, 0x0007bd2e4cb3ffbd, 0xffbd2170c5ff0a23, 0x0ab8120ebd105e52, 0x0a5400110a743403, 0x0a4159040a46070e, 0xbf78ffbcb00134ff, 0x06ff0a4f5704bbeb, 0xbcbfa8bfffbd0d6c, 0x0a6101120a660009, 0xa774ffbbb1ace3ff, 0x03ff0a6f090bbd31, 0xbd13d95cffbd5809, 0x0a8a00120a980006, 0x12bdb5ff0a85000c, 0x020ebcf3864affbd, 0xffbd0cb752ff0a93, 0x0aaa0306bca27eb9, 0x695abaff0aa50206, 0x1006bd5296a0ffbd, 0xffbd2830f4ff0ab3, 0x0b000007bd695145, 0x0ad200090ae00008, 0x33183bff0acd2a05, 0x070bbd1fdeb5ffbd, 0xffbd402939ff0adb, 0x0af2080bbd2c80d6, 0x298706ff0aed2e01, 0x1001bd12176fffbd, 0xffbd25ce26ff0afb, 0x0b242001bd04d046, 0x0b1104030b161501, 0xc4c4ffbd33903dff, 0x94ff0b1f000cbd19, 0xbcfcc051ffbd1f2b, 0x0b3127030b36150e, 0xde4bffbcaa1fd1ff, 0x49ff0b3f0011bcf0, 0xbcfaad30ffbd21a9, 0x0bd800110c640006, 0x0b74010c0b941c0e, 0x0b61140b0b660108, 0x0b2effbcfcb968ff, 0x5bff0b6f130bbca2, 0xbabb57abffbca79b, 0x0b810e0e0b860007, 0xff44ffbc975d75ff, 0xc2ff0b8f2a01bd28, 0xbb03f031ffbc9fb4, 0x0baa040b0bb81e0e, 0x6a3f63ff0ba51d0e, 0x6804bd2d4afdffbd, 0xffbd676699ff0bb3, 0x0bca7704bd93975b, 0x1b6f7cff0bc5230e, 0x230ebd3b0f90ffbd, 0xffbcd40c7cff0bd3, 0x0c20230ebd4050f9, 0x0bf2040b0c007404, 0xd3f1dbff0bed060d, 0x010ebbaff51effbc, 0xffbcd45979ff0bfb, 0x0c123705bbd7d56d, 0xa0d4e4ff0c0d110e, 0x120e3cc8bebaff3d, 0xff3bff89aaff0c1b, 0x0c447504bc2590c6, 0x0c3101070c362b0e, 0x4ee3ffbd081b39ff, 0x43ff0c3f070bbcd9, 0xbd379384ffbd2579, 0x0c51310e0c560007, 0xec86ffbcfdf04eff, 0xc0ff0c5f280ebd55, 0xbcacc968ff3c1867, 0x0cb0130e0cf40106, 0x0c82030b0c907904, 0x94a978ff0c7d060e, 0x6304bd68f237ffbd, 0xffbd779614ff0c8b, 0x0ca22b05bd9696ca, 0xeb4dadff0c9d0b0b, 0x030bbe05f9c4ffbd, 0xffbdaea0b3ff0cab, 0x0cd47904bde4bc9f, 0x0cc1280e0cc66b04, 0x625cffbd7cd055ff, 0xd0ff0ccf7504bd4a, 0xbd49b444ffbd240d, 0x0ce101030ce6000c, 0x5316ffbd8afdc4ff, 0x99ff0cef0b0bbd78, 0xbd7b9229ffbdacfc, 0x0d1c13060d3c4905, 0x0d09090e0d0e0306, 0xa82bffbd4fc6cbff, 0x92ff0d170007bd30, 0xbd0b001fffbd38dc, 0x0d2916060d2e020e, 0xed1effbd2ca6bfff, 0xc1ff0d37000cbd64, 0xbd8df719ffbd6594, 0x0d52090e0d600206, 0x69c59aff0d4d030b, 0x0f0ebd8e7fe9ffbd, 0xffbd2f1371ff0d5b, 0x0d720111bce4b9c7, 0x4ef92fff0d6d0506, 0x030ebd38bb05ffbd, 0xffbd1485b1ff0d7b, 0x0fc0110bbcd484f6, 0x0e18070b0ea4000c, 0x0db4070d0dd40012, 0x0da1070e0da6080e, 0xb937ffbd0faa8dff, 0x37ff0daf0d0ebd66, 0xbd128662ffbc521b, 0x0dc101070dc60008, 0x578effbd346ba1ff, 0xabff0dcf0107bc63, 0x3ac954beffbc7e1a, 0x0dea0b0e0df8060d, 0x2d18fdff0de50111, 0x0d0ebd04d459ffbd, 0xffbc4e6f25ff0df3, 0x0e0a0008bcee7354, 0xdc9ce9ff0e050107, 0x050e3b3d6193ffbc, 0xffbcdb3e18ff0e13, 0x0e60080e3c58b4ba, 0x0e32020e0e40060e, 0x2ea304ff0e2d000e, 0x9c04bd0ea35bffbd, 0xffbca28ad5ff0e3b, 0x0e52070ebcf8d2de, 0xb2a452ff0e4d0006, 0x070dbd1f32f2ff3b, 0xffbd26ec5dff0e5b, 0x0e84060d3c8215bd, 0x0e712d010e763b01, 0x9e3affbd98c648ff, 0xb9ff0e7f0b0bbd70, 0xbcca0250ffbbbfec, 0x0e911c0e0e960007, 0xe46bff3a79051eff, 0x24ff0e9f0011bcc0, 0x3d37a6ceff3b22bf, 0x0ef0060d0f340a0b, 0x0ec2010c0ed00006, 0xbab461ff0ebd0002, 0x040bbbac2ee1ffbc, 0xffbbca4737ff0ecb, 0x0ee201073c30d687, 0xe8bc36ff0edd1406, 0x070ebd245159ffbc, 0xffbcfbec90ff0eeb, 0x0f140011bc461185, 0x0f0102080f06070d, 0x8062ffbcd68c95ff, 0x27ff0f0f0009bbe3, 0xbd4ef532ff3ca117, 0x0f2100090f260107, 0x8a54ff3c9b386aff, 0x06ff0f2f020ebcb5, 0x3d8f7ebbffbd4abc, 0x0f5c020e0f7c0b0e, 0x0f4901120f4e000e, 0x49faffbd80f500ff, 0x9fff0f579105bd17, 0xbd59d3c4ffbccfa3, 0x0f69c1040f6e060d, 0xd7e3ffbc27363eff, 0x70ff0f770008bd31, 0x3d33ef6fff3ba56a, 0x0f92a3040fa00112, 0xd32ac9ff0f8d1c0e, 0x0007bc26ab65ff3c, 0xff3cb73a30ff0f9b, 0x0fb200073d8a1f3d, 0xcf07e0ff0fad2a0e, 0x3b01bd4ab369ffbc, 0xffbd4f3137ff0fbb, 0x10e00d0e3c362bd1, 0x1010000e1054020e, 0x0fe279050ff00109, 0x14da37ff0fdd070d, 0x060d3ca74643ffbd, 0xffbd7d3284ff0feb, 0x1002000cbd205d04, 0x1827b4ff0ffd0012, 0x0012bcda6aeeffbd, 0xffbccf0e8bff100b, 0x1034a004bc050c67, 0x102118061026060d, 0x3226ffbcd93fd5ff, 0xb6ff102f0011bd8a, 0x3d567618ffbc1cae, 0x1041800510460009, 0x913dffbcce1d46ff, 0x04ff104f000cbd10, 0xbad73938ffbcae81, 0x107c060d109c010c, 0x10690006106eab04, 0x9d8aff3c5fc5f7ff, 0xebff1077000cbcde, 0xbc7ae9eeffbcc1b4, 0x10890008108e0108, 0x180effbb70c8a1ff, 0x99ff1097000c3cb3, 0x3d9451a2ff3ce6b0, 0x10b2000810c00112, 0x0658c5ff10ad8b05, 0x7e05bca131a7ff3d, 0xff3dbc5f33ff10bb, 0x10d206063c6ac7f4, 0x80dd56ff10cd0506, 0xb504bd0d1866ffbd, 0xffbae50bceff10db, 0x1170010c3cb80eb8, 0x110c000c112c0108, 0x10f9000710fea204, 0x1a60ffbc9384a5ff, 0x34ff11070112bbb6, 0xbc997d2dff3ca9f0, 0x1119310e111e3801, 0xfb59ffbc7d155dff, 0xa6ff11270007bd82, 0x3d5b582fff3c6478, 0x1142010711504805, 0xbf105fff113d3c01, 0x000c3c7399b6ffbc, 0xff3d1300f7ff114b, 0x1162000c3db81633, 0xdde869ff115d0007, 0x00073d5f6730ff3c, 0xff3d92d56eff116b, 0x11b83c013e107c91, 0x118a140111981c01, 0x4d4a17ff11859904, 0x8204bd99d36affbd, 0xffbc8bc44dff1193, 0x11aa2d0ebd1f1942, 0x0c031cff11a50008, 0x00073d1eb8eeff3c, 0xffbcfb84c4ff11b3, 0x11dc01073b20aee2, 0x11c9a30411ce1c0e, 0x12f8ff3d24aeedff, 0xd7ff11d71d0e3e08, 0x3d6e2699ffbcd69b, 0x11e9b40411ee0112, 0xaa1bff3dd7c27dff, 0xf4ff11f704063e2e, 0x3da3a922ffbafb67, 0x0000000800000013, 0x00000001000003e8, 0x00000000000011fc, 0x04843b010900000f, 0x012c0f0102481d01, 0x005c030100a00801, 0x002e030d003c0101, 0x21f8f6ff0029310e, 0x0a04bd292000ffbd, 0xffbd1eb574ff0037, 0x004e090bbd16b05c, 0x2af15bff0049000b, 0x030dbd18f900ffbd, 0xffbd16ab71ff0057, 0x0080030bbd0a93d2, 0x006d6f040072000c, 0xa6a8ffbd256842ff, 0x5eff007b010bbd33, 0xbd0bc4f2ffbd2140, 0x008d020400920404, 0xa7dcffbd26df4cff, 0x62ff009b040dbd11, 0xbce52889ffbd04b9, 0x00c8050d00e8090b, 0x00b5080400ba010d, 0x43caffbd20a767ff, 0xc5ff00c3050bbd10, 0xbcbfd53affbcfb92, 0x00d5011100da000c, 0xe6a5ffbd7803b1ff, 0x0cff00e3010bbd23, 0xbcb226f6ffbd1970, 0x00fe0203010c0705, 0x1e0f7aff00f90b01, 0x0006bd0fecc8ffbd, 0xffbcb2c8efff0107, 0x011e000cbd03e765, 0x0f94f4ff01190d0e, 0x020dbd36f22bffbd, 0xffbcb63a70ff0127, 0x01bc080bbc4136c0, 0x0158040d01781501, 0x01450904014a000d, 0x47a9ffbd2dce0eff, 0xcaff0153010bbd01, 0xbc9f7a87ffbd0771, 0x0165080e016a000c, 0xb71affbcfca538ff, 0x83ff01730905bd24, 0xbc057a33ffbd0314, 0x018e0111019c000c, 0x53431eff0189020d, 0x070dbd87b06effbd, 0xffbd00667eff0197, 0x01ae020dba90d455, 0xd04d6fff01a9010d, 0x020bbc2714ecffbc, 0xffbc51ccc2ff01b7, 0x0204000c3bb93b0d, 0x01d62c0401e40605, 0x15bd3eff01d10d04, 0x040dbcc84ea9ffbd, 0xffbca4262cff01df, 0x01f60d0ebb5e7cf0, 0x0eb895ff01f1020d, 0x320ebcdca8c4ffbd, 0xffbd40199bff01ff, 0x02280c05bcf839bb, 0x02150406021a2404, 0xda4bffbc962c42ff, 0x4cff02230503bd26, 0xbb9e686dffbcf361, 0x02350d04023a2404, 0x5d3affbccb26faff, 0xd7ff0243010d3b1c, 0x3ccb0facffbc45b5, 0x02dc1e0403683104, 0x02780b0402981304, 0x02652d03026a0504, 0x466cffbd034150ff, 0xf3ff02730006bd27, 0xbd236e01ffbcb505, 0x0285010e028a0006, 0x965aff3b110bd9ff, 0x35ff02932803bc84, 0xbd02fd2cffbcb56a, 0x02ae030e02bc0006, 0xdeaba9ff02a90007, 0x070e3cd0a487ff3b, 0xffb9d337ceff02b7, 0x02ce0906bc917afe, 0x4db99eff02c9040e, 0x030bbcd0c4f3ff3b, 0xffbc7805a9ff02d7, 0x03240006bd0db43b, 0x02f600110304070e, 0xe8707eff02f13401, 0x0009be1978f3ffbd, 0xff3d1c26d4ff02ff, 0x0316000c3c66c79d, 0x628db4ff03110e0e, 0x010dbd7d4903ffbc, 0xffbb8f34a2ff031f, 0x03480d063c8e375a, 0x03352901033a030b, 0x9adeffbc75d32dff, 0xcbff03432801bb17, 0x3c33174effbabf1d, 0x03550e06035a0211, 0x8e4effbc8c505bff, 0xb3ff0363070ebd06, 0xbd163b43ff3ce385, 0x03b4080b03f82401, 0x0386010d0394050d, 0xbe7d81ff0381020b, 0x0006bc0159aaffbc, 0xff3c6e4acfff038f, 0x03a61105bcd4ef99, 0xf671a5ff03a1360e, 0x010bbd284495ffba, 0xffbb91c216ff03af, 0x03d800063d2c5ff5, 0x03c5090303ca3305, 0xbfa8ff3bb347d2ff, 0x46ff03d320013d8d, 0x3d07ef61ff3d4b9b, 0x03e5350e03ea0605, 0x73cbff3ceeb019ff, 0xd6ff03f36504bc96, 0x3bfe413fffbd06f9, 0x042000070440000c, 0x040d000b04120008, 0xcdffffbd803e7cff, 0xffff041b3101bc1a, 0x3d145af4ff3b5ff4, 0x042d020d04320212, 0x3e46ff3c4cb99dff, 0xd7ff043b34013d21, 0xbd21f49cff3e0c32, 0x045631010464020b, 0x48aa9fff0451030d, 0x1c053d0dec83ffbc, 0xffbcf095a6ff045f, 0x0476040d3d55ab4e, 0x43c8cbff0471090b, 0x5d043d825d61ff3d, 0xff3d70da64ff047f, 0x06c467043da54f30, 0x051c3a0405a80006, 0x04b82e0404d8000d, 0x04a5130404aa6205, 0x07fbffbd2ad0faff, 0x5fff04b379053c10, 0xbd61be76ffbd088a, 0x04c5000c04ca5d05, 0x125aff3c631663ff, 0xd4ff04d300083d6e, 0xbd469169ff3c2c81, 0x04ee000804fc3004, 0x6574f6ff04e90111, 0x030d3d04eeb9ffbd, 0xff3d66ee4cff04f7, 0x050e00073dc93ddf, 0x97ad8dff0509010e, 0x010e3d152a8fff3d, 0xff3de8501dff0517, 0x056401113d8dc923, 0x05364d0405448205, 0xe4ce88ff05310a0b, 0x000bbe08f1f3ffbd, 0xffbd82b33bff053f, 0x05560012bdb41b98, 0x90badcff0551040d, 0x4d04bd52bc4bffbd, 0xffbd915860ff055f, 0x0588010dbdc3dbc6, 0x05758405057a050b, 0x327eff3d32e65eff, 0x63ff0583000cbd5d, 0x3dc86945ff3bba94, 0x0595050d059a030b, 0x9a41ff3dabcc35ff, 0x17ff05a341013dee, 0x3e0c47c2ff3dbd40, 0x05f404060638000e, 0x05c63a0405d45504, 0x69d71fff05c11e05, 0x3605bd5506d2ffbd, 0xffbdc19466ff05cf, 0x05e63905bd8704c0, 0xdfeae8ff05e10207, 0x5704bdfcc005ffbd, 0xffbd92a3bbff05ef, 0x06181306bdb926e4, 0x06050b06060a2e04, 0x5e1bffbc63d0a9ff, 0xf9ff06131205bd2f, 0xbc23229dff3d0703, 0x06250007062a0211, 0x880fffbd3a4380ff, 0x9fff06335004bd08, 0x3d1d3aebffbd0faf, 0x0660450406801106, 0x064d00020652030b, 0x83a1ffbc8db65aff, 0x00ff065b01063c4a, 0x3cc386cbffbd878a, 0x066d060e06720206, 0x2d05ffbdc97dddff, 0x5cff067b000bbc1e, 0x3d8ea35bffbddbdd, 0x0696010706a40905, 0xad8341ff06911706, 0x5304bd21ac2affbc, 0xffbc8c76a3ff069f, 0x06b602113cacc7e3, 0x049a71ff06b1030b, 0x50043c83086effbd, 0xffbc25b527ff06bf, 0x07e4010e3dcc7692, 0x0714030d0758000e, 0x06e6090606f4000c, 0x0b1ea8ff06e1000d, 0x030bbd833904ffbe, 0xffbcf2c1ccff06ef, 0x070691043ba51d23, 0xa68430ff07010009, 0x00073d6ad935ffbb, 0xff3b4061f6ff070f, 0x0738050b3d0f9b36, 0x07250009072a0002, 0x3304ffbd0eee08ff, 0x77ff073315063db7, 0x3ae22a67ff3d29c1, 0x07451706074a9904, 0x5258ff3d58caa3ff, 0x9aff0753000cbd44, 0x3ddfa794ff3d8d25, 0x0780180607a0020d, 0x076d010907720d06, 0x2d5effbccd4abcff, 0xb9ff077b030b3de7, 0x3d94bc3cff3cd769, 0x078d110507920007, 0x137dffbd8d7362ff, 0x8bff079ba904bcb7, 0x3d2395c6ffbc5d09, 0x07b68e0507c40009, 0x63b0abff07b10007, 0x90053de11749ff3d, 0xff3d560b9dff07bf, 0x07d6000cbd9f1e2b, 0x845968ff07d16b04, 0x030bbdc6a512ff3e, 0xff3e13618bff07df, 0x0874000c3e3f87ce, 0x081001120830050b, 0x07fd7b040802000b, 0xfaccffbd8d8896ff, 0x83ff080ba404bdce, 0xbe4677d5ffbe18a1, 0x081d2c0e08220f06, 0xc43aff3dd0adb8ff, 0x56ff082b00073cd2, 0x3d7f30f7ff3c4c2e, 0x0846a40408540111, 0x1529e2ff0841020e, 0x0a0bbe53e14dffbe, 0xffbe651f3dff084f, 0x08661406bea792fb, 0x0b9d86ff0861320e, 0x00083d9a35c3ff3e, 0xff3d17a204ff086f, 0x08bc00073de247cf, 0x088eb504089c080b, 0x6a8fb7ff08896a05, 0x010b3e0dc0d8ff3d, 0xffbd3acf28ff0897, 0x08ae70053d7e5078, 0x5fb58aff08a90905, 0xc4043e0f2671ff3d, 0xff3e3ea3b4ff08b7, 0x08e06b053e0fae11, 0x08cd040b08d23303, 0x0559ff3dae46bcff, 0xc5ff08db98043df8, 0x3e27deb0ff3e0aa9, 0x08ed000d08f20006, 0x1fc0ff3da7933eff, 0xb6ff08fb00023e42, 0x3dc7892dffbdda42, 0x0b4449040d808a04, 0x099c1e010a283404, 0x09380d0409581604, 0x09250104092a0404, 0xbd20ffbd266e24ff, 0x3cff09330011bd24, 0xbd218831ffbd2492, 0x09450011094a0e0e, 0x4136ffbd220d5dff, 0x07ff09530011bd1b, 0xbd23bc51ffbd2658, 0x096e0011097c120e, 0x18c91bff0969070e, 0x2504bd2113d4ffbd, 0xffbd14ce82ff0977, 0x098e0011bd0a57a9, 0x258bcfff09890208, 0x1c0ebd2215e1ffbd, 0xffbd1b2ce4ff0997, 0x09e42404bd22c620, 0x09b6001109c41404, 0x219a33ff09b11104, 0x0006bd1d2c01ffbd, 0xffbd1a4c3cff09bf, 0x09d60b06bd2cb42f, 0x12c25bff09d10009, 0x0d06bd1cca30ffbd, 0xffbd29f18eff09df, 0x0a080009bd38bc55, 0x09f5030e09fa0011, 0x6598ffbd0ac0ccff, 0x8aff0a030112bd17, 0xbd26ad15ffbcfe76, 0x0a15000c0a1a040b, 0x1751ffbd2afce2ff, 0xc8ff0a230011bd1d, 0xbd0d0510ffbd1b62, 0x0a74120e0ab82401, 0x0a4606050a540009, 0x21a425ff0a410305, 0x000cbd15c736ffbd, 0xffbd0b54c0ff0a4f, 0x0a66060dbcf82bff, 0x091f2aff0a612201, 0x030bbd1e947bffbd, 0xffbd30abc8ff0a6f, 0x0a980011bd1d3f88, 0x0a8548040a8a2f03, 0xadf2ffbd20f092ff, 0x88ff0a93030bbd14, 0xbd1acc0effbd2b75, 0x0aa535040aaa1c0e, 0x866bffbd1c4d69ff, 0xcdff0ab30111bd02, 0xbcec57bbffbd196a, 0x0ae032030b00000c, 0x0acd2e010ad23701, 0x0748ffbd0ae879ff, 0x1fff0adb0b0bbce6, 0xbc96fed1ffbcdcf6, 0x0aed050b0af20108, 0x6ff0ffbd170912ff, 0x89ff0afb000ebd05, 0xbcdd7166ffbd21d4, 0x0b16070e0b240008, 0xc5dc40ff0b110009, 0x080ebd00499affbc, 0xffbd15e697ff0b1f, 0x0b36030bbd051e79, 0x00e12fff0b313501, 0x000ebcc5966cffbd, 0xffbd03943eff0b3f, 0x0c646704bc96dda3, 0x0b9428010bd80006, 0x0b660d050b740d0e, 0x2257ebff0b610803, 0x0007bcee52feffbd, 0xffbcf0eaa4ff0b6f, 0x0b861501bc8f2b71, 0x172837ff0b811001, 0x0011bd086c4fffbd, 0xffbd0991a2ff0b8f, 0x0bb80007bce90dec, 0x0ba502090baa030b, 0xd40affbd00adf9ff, 0x27ff0bb30011bd37, 0xbc8f9f03ffbcda10, 0x0bc50a0b0bca000c, 0xc6dcffbcf743beff, 0x68ff0bd3070bbca1, 0xbbcfde2fffbc9556, 0x0c00060e0c200106, 0x0bed000c0bf2030b, 0x18c8ffbd7c539cff, 0x9bff0bfb2801bd81, 0xbd857924ffbd8c0a, 0x0c0d000c0c120b0e, 0x3b54ffbd63945aff, 0xdfff0c1b1001bd4c, 0xbd40dcefffbd25b6, 0x0c3604060c441106, 0x0a39aaff0c31020d, 0x050bbd364957ffbd, 0xffbd2cf294ff0c3f, 0x0c565104bd0eaeb0, 0x57804eff0c51000e, 0x0305bd820afeffbd, 0xffbd55b4e1ff0c5f, 0x0cf4040bbd30476d, 0x0c90010c0cb0190e, 0x0c7d020e0c820009, 0xe000ffbd230506ff, 0xd0ff0c8b0209bca6, 0xbd37971dffbd0694, 0x0c9d020e0ca20109, 0xa382ffbd05d0f3ff, 0xbeff0cab0209bb2b, 0xbd38b001ffbcca95, 0x0cc634010cd40007, 0x252ddbff0cc1350e, 0x020bbd60b794ffbd, 0xffbd21e073ff0ccf, 0x0ce60002bcf8eb04, 0xb3fd12ff0ce13403, 0x010cbcfb4807ffbc, 0xffbc9a2fcdff0cef, 0x0d3c00073ca2f9f7, 0x0d0e020e0d1c1b0e, 0x2633faff0d09000e, 0x0008bc7c73d0ffbd, 0xffbc46c136ff0d17, 0x0d2e00063bb85f3d, 0xd6caa3ff0d292c0e, 0x0108bd3ae5f4ffbc, 0xffbd50ade2ff0d37, 0x0d60010cbcc1dd23, 0x0d4d45050d520006, 0x88cfffba095d2dff, 0x3eff0d5b0306bc46, 0xbd0a2cbcffbd5095, 0x0d6d070d0d72000e, 0x0cd0ffbd512805ff, 0x34ff0d7b2a013aea, 0x3cc590baffbc4a6f, 0x0ea400060fc00e0b, 0x0dd4090b0e18000c, 0x0da600120db40009, 0x09006cff0da1070d, 0x060dbc5f78baffbd, 0xffbcb9dfb0ff0daf, 0x0dc6070d3b6d2342, 0xfd4e09ff0dc10209, 0x080ebd26d6f0ffbc, 0xffbd368073ff0dcf, 0x0df84001bd8b4885, 0x0de52e010dea3f01, 0x6f62ffbdffedaaff, 0xb7ff0df30107bda8, 0x3d9de49fffbcfc03, 0x0e0589050e0a030e, 0x7d3dffbc9b6daeff, 0x61ff0e130108bcfb, 0x3c2e0ce7ffbbdd0f, 0x0e402d0e0e60060b, 0x0e2d1c0e0e320007, 0x2e46ffbbf2ba72ff, 0xe8ff0e3b060ebcab, 0x3c305573ffbd09bc, 0x0e4d340e0e520107, 0x9c1effbd08a215ff, 0x78ff0e5b9c04bd5c, 0xbb037752ffbd1fbf, 0x0e762b0e0e840007, 0xad88e5ff0e710109, 0xcc04bcbcce40ff3c, 0xffbd1452beff0e7f, 0x0e96030ebdbbf6ec, 0x109d93ff0e918305, 0x0008bd3e3b3eff3b, 0xff3ccf129aff0e9f, 0x0f349a043d55a560, 0x0ed034030ef02e0e, 0x0ebd94040ec20605, 0xd16cff3cb8ec2aff, 0x75ff0ecb1e0e3da3, 0xbbed1bc5ffbd82d3, 0x0edd1c050ee21506, 0x4572ffbc9f31fcff, 0x70ff0eeb050bbd18, 0xbd80680bffbd32f4, 0x0f0604050f140008, 0x534868ff0f01050b, 0x9704bd95e140ffbd, 0xffbd4b6fe3ff0f0f, 0x0f261a01bdb0265f, 0xa8a061ff0f211001, 0x0007bd625dd9ffbd, 0xffbd341c4aff0f2f, 0x0f7c0007bcb9105f, 0x0f4e01080f5c1905, 0x4df9d6ff0f490b05, 0x4001bd29354dffbd, 0xffbd5a996dff0f57, 0x0f6e0008bce916de, 0x16ed6bff0f69010c, 0x030ebccfa05fffbd, 0xffbd055c4fff0f77, 0x0fa0170ebc9c356e, 0x0f8d000e0f92030e, 0xb14bffbd0d7154ff, 0x40ff0f9b0806bcd0, 0xbc29dbb2ffbd237e, 0x0fad0f060fb2c104, 0x6accff3b89839dff, 0x19ff0fbbc404bcd0, 0xbc992152ffbd8441, 0x1054000810e0010c, 0x0ff00d0e10100112, 0x0fdd020e0fe2000c, 0x28d3ffbcf86b0dff, 0x9bff0febc304bc8c, 0xbc9ca70bff3b2930, 0x0ffd730510020007, 0x9140ffbc5e5f26ff, 0x8dff100ba6043c0e, 0x3d244cf8ff3b8659, 0x1026010710341105, 0x842195ff10210a05, 0x0405bd3e190dffbd, 0xffbd6dadc6ff102f, 0x10462f0ebc9b6aef, 0xac5da7ff10410111, 0x0111bc0a3751ffbc, 0xffbd39af95ff104f, 0x109c0006bc5a14ee, 0x106e2a0e107ca704, 0x61ba63ff1069000c, 0x01073d214184ff3c, 0xffbd149ba1ff1077, 0x108e7d053ce1ef7a, 0xb08f9aff1089140b, 0x8c053d95c2d9ff3b, 0xff3ce4a71aff1097, 0x10c0ad04bc07a4fa, 0x10ad1e0e10b20406, 0x70beffbd987719ff, 0xddff10bb0f0ebcd4, 0xbba7c7a2ffbcc56b, 0x10cd010710d20505, 0x4f98ffbd793e61ff, 0x75ff10db0f06bcef, 0xbc6c4a53ff3c9931, 0x112c060e11700b0e, 0x10fe000e110c020e, 0xf02884ff10f97005, 0x8d04bd659831ffbc, 0xff3d152e9fff1107, 0x111e060dbc818c8c, 0xec3cdcff11198505, 0xb704bd3dbeb2ffba, 0xff3d80029bff1127, 0x1150060dbd176158, 0x113d0a0e11420008, 0xfbaeff3b9cd36eff, 0x52ff114ba504bd19, 0x3c1b8f60ff3d8c90, 0x115dc2041162070e, 0xbc7cff3dc1db92ff, 0xfaff116b070d3ca1, 0x3e3b772cff3c5a53, 0x11982c0e11b83f01, 0x11853501118a3403, 0x5af4ff3cad1095ff, 0xecff119300083d86, 0x3cfd9fd0ff38d6f9, 0x11a5140111aa2501, 0x94b1ffbd73f714ff, 0x52ff11b33403bce2, 0xbccbbdb0ff3c1dc6, 0x11ce140b11dc0012, 0xe7c60cff11c9070d, 0xa5043d8a2975ffbb, 0xff3d6a5934ff11d7, 0x11ee01073e0bf172, 0x51a192ff11e92f0e, 0x01123b442d42ff3d, 0xff3dd5c42eff11f7, 0x000000133d45949a, 0x000003e800000008, 0x000011fc00000001, 0x0900000f00000000, 0x02481d0104843b01, 0x00a00701012c1001, 0x003c0204005c0d04, 0x00290501002e000e, 0x40c3ffbd37f6a5ff, 0x3dff00370b0ebd46, 0xbd164db2ffbd0eff, 0x0049070e004e190e, 0x8951ffbcfb2831ff, 0xa4ff0057230ebd06, 0xbd18728bffbd1040, 0x00722a0e0080050d, 0x01f2c7ff006d1a04, 0x0201bce59678ffbd, 0xffbd133354ff007b, 0x00920205bd09449a, 0x0dd380ff008d0501, 0x0401bd04b89effbd, 0xffbcf65871ff009b, 0x00e82304bccc3591, 0x00ba010400c80504, 0x3183eeff00b5000e, 0x070ebd1c32f7ffbd, 0xffbd00054dff00c3, 0x00da000dbd20d300, 0xfed43cff00d51c0e, 0x050dbd120ba1ffbc, 0xffbcd66738ff00e3, 0x010c190ebcac7ce8, 0x00f9060500fe3804, 0x3225ffbcdd14f4ff, 0x43ff01070f01bbec, 0x3c93c514ffbcac0c, 0x01190605011e000c, 0x4584ffbcf147bcff, 0x49ff0127090bbd1e, 0xbc482988ffbcb0c0, 0x0178150401bc3204, 0x014a040401580904, 0x140fd8ff0145060d, 0x070ebca9e865ffbd, 0xffbcd03c15ff0153, 0x016a070ebd206f7c, 0x39482aff01650006, 0x0f04bcfedad3ffbc, 0xffbd067fc9ff0173, 0x019c070ebccfaffd, 0x01892204018e0006, 0xe9aaff3bb2c7bcff, 0xffff01970f053cea, 0xbd5be25affbcd564, 0x01a90f0e01ae2504, 0x406effbc597579ff, 0xe3ff01b7120ebcd9, 0xbc81c8bfff3b6ad7, 0x01e4040d0204030b, 0x01d1020b01d62a0e, 0xf586ffbc87e72fff, 0xacff01df020bbb91, 0xbc7be79effbceff3, 0x01f1000b01f6010b, 0x1974ffbdb38526ff, 0x62ff01ff0d05bcbe, 0x3c141df4ffbc83a5, 0x021a010d0228030d, 0xa92d6cff02151801, 0x0006bb9af29dffbc, 0xff3c4584d9ff0223, 0x023a0e05bc8fdf7b, 0xb6e9deff02350603, 0x000c3b4e783bffbc, 0xffbd291d5cff0243, 0x03682e043ce3da25, 0x02980d0402dc1704, 0x026a000d02780706, 0x05c1b2ff02650009, 0x0804bca24330ffbd, 0xffbcbbd133ff0273, 0x028a0906bc3967b1, 0x0c6499ff02850c04, 0x0c04bcd6cbaaffbd, 0xffbd29ee62ff0293, 0x02bc0006bd0fa1f5, 0x02a9000702ae010e, 0x9849ffb98a6c5dff, 0xdfff02b701123ca3, 0xbbe6aa98ffbdba2f, 0x02c9000c02ce2b03, 0xdfb6ffbc8b43b8ff, 0x76ff02d71504bcc1, 0xbd3a2aadffbcd6a7, 0x030401110324000c, 0x02f1020e02f62a01, 0xed97ffbe01566bff, 0xdaff02ff020ebdb9, 0xbd616654ffbdaea0, 0x0311021103160f0e, 0xd4f3ffbbeb6bd5ff, 0x64ff031f12053ce5, 0xbd73bf8cffbcc07d, 0x033a080603481505, 0x5cd712ff03350903, 0x24043c27edb9ffbc, 0xffbccac281ff0343, 0x035a030ebc40a1f8, 0xa0efc5ff03550007, 0x21043d2b8598ff3c, 0xffba1254fdff0363, 0x03f84c043ca355e3, 0x0394170e03b40006, 0x0381070e03860009, 0x3822ff3d5c2b66ff, 0xf7ff038f070b3d1d, 0x3d083588ff3c3c19, 0x03a1000c03a64204, 0x8294ffbdc0ac8dff, 0x7bff03af1c0ebc24, 0x3b4977d7ff3cd8c5, 0x03ca370103d81006, 0x29ffe6ff03c51205, 0x030bbcb92f36ff3b, 0xff3bf75271ff03d3, 0x03ea2d013d08bf97, 0x116484ff03e51206, 0x1106bd7c4163ffbd, 0xffb99af0d5ff03f3, 0x0440040dbcd440ba, 0x0412000c04203201, 0x982dceff040d350e, 0x080bbd178509ff3a, 0xff3cbd2143ff041b, 0x043202123d51ae86, 0xd43befff042d1f05, 0x4f043d82c4e0ff3c, 0xffbd11c28cff043b, 0x0464000c3e726f58, 0x04517f0404560008, 0xfb1fffbaea4544ff, 0xdeff045f6f043cee, 0x3d6f00bfff3cf109, 0x04711d050476090b, 0xdba6ff3cede3a8ff, 0xbaff047f00063d7b, 0x3d3d9563ff3d9cac, 0x05a8000606c46704, 0x04d82d04051c5504, 0x04aa620504b8000d, 0x0404beff04a51c04, 0x02123c689d34ffbd, 0xffbd2a9cf0ff04b3, 0x04ca0008bb69462d, 0x2896cdff04c51e04, 0x030d3ce6aab2ffbc, 0xff3d4023bbff04d3, 0x04fc010d3da9bf0e, 0x04e90e0e04ee6f05, 0xebe2ff3d60d92aff, 0xd2ff04f75304bca8, 0xbdf0a6d6ffbc1240, 0x05092f04050e0111, 0x0d11ffbd4e3a4fff, 0xf2ff05170008bd91, 0x3dd2f199ff3d9339, 0x05448a050564070e, 0x0531000e05360009, 0x762bff3dbfe91eff, 0x65ff053f02093e1a, 0x3d93ee4fff3defa4, 0x0551000c0556030d, 0xa6abffbd42aeb8ff, 0xc1ff055f5f043d7b, 0x3e233222ff3d2735, 0x057a170e0588010d, 0xe2cbd2ff0575080e, 0x41013de69da7ff3c, 0xff3d320f53ff0583, 0x059a0211bd13d2ab, 0xab6311ff05950011, 0x00023dbecc4effbd, 0xff3d786dacff05a3, 0x0638000e3ed0ea8e, 0x05d4550405f40406, 0x05c11e0505c63a04, 0xb94affbd5274cfff, 0xd4ff05cf000cbd3f, 0xbd8aa760ffbd64f7, 0x05e1010705e63905, 0x3797ffbdb088e2ff, 0x79ff05ef010dbdd8, 0xbda865a7ffbd8511, 0x060a280406181306, 0x90a22dff06050c06, 0x050dbd25c12cffbc, 0xffbc4306e0ff0613, 0x062a16063c637d94, 0x096865ff06255804, 0x04053c3fa8c2ffbd, 0xffbd0b4953ff0633, 0x06801106bd588a55, 0x0652010606605904, 0x8df291ff064d060e, 0x4804bca7a64bffbd, 0xff3bdddde4ff065b, 0x06720f0e3d452521, 0x8be3f6ff066d0706, 0x0a063dd06dffff3c, 0xff3d0d0d57ff067b, 0x06a40905bd82ca11, 0x0691170606960107, 0x8156ffbc9c2948ff, 0x7bff069f5304bd11, 0x3c9b80aeffbc7cd5, 0x06b1000c06b6000b, 0xed4fffbcf6245cff, 0x0aff06bf0211bdc4, 0x3d6df8beffbb89c2, 0x0758070b07e40006, 0x06f4230e07140009, 0x06e1011106e6000c, 0xf3d6ffbdef6f05ff, 0x91ff06ef7b043dc5, 0x3e2a3a2fff3deaa7, 0x070101070706020b, 0xa5d9ff3cbf74c7ff, 0xc1ff070f02083da4, 0x3d1f6996ff3df882, 0x072a020907380e0e, 0x02645cff07250d0e, 0x080e3e3c72ebff3e, 0xff3d9ad696ff0733, 0x074a02093c5ba5a6, 0x937e22ff0745bd04, 0xbd04bd150f69ff3d, 0xffbc7b9e93ff0753, 0x07a0ac04be122607, 0x0772400107809505, 0xb1e12bff076d3f01, 0x010d3dde10a0ff3d, 0xff3dc3cf32ff077b, 0x0792000d3e1977f2, 0xfcdbc5ff078d000e, 0xa404be417f03ffbd, 0xffbd5f85c2ff079b, 0x07c4000cbe398b13, 0x07b10a0b07b60111, 0xd116ffbe6e000eff, 0xc4ff07bf000dbe96, 0x3de66669ff3d1e25, 0x07d1010907d6330e, 0xb8dfff3e3eba4cff, 0xb0ff07df8a053e0f, 0xbd99b121ff3e0c60, 0x0830160608749704, 0x0802000b08104705, 0x1631a2ff07fd000c, 0x220ebdc4b6e1ffbd, 0xff3dc40a87ff080b, 0x082200023d2c2a10, 0x0a224bff081d7b04, 0x020d39ac3a33ffbd, 0xff3b89e72eff082b, 0x085418063d3641bb, 0x0841000808468404, 0x422fffbc835a21ff, 0x74ff084f96043c2d, 0xbd113643ff3d5679, 0x0861020e08660005, 0x065effbd391219ff, 0x81ff086f0f0ebdce, 0x3cf8731cffbd3af0, 0x089c000708bc070b, 0x0889b704088e010b, 0xd22fffbd5b0506ff, 0x41ff0897030ebafb, 0x3d5d9689ff3bbf05, 0x08a9050e08ae030d, 0xc8a4ff3c93a07dff, 0xffff08b72b0e3d8d, 0x3d469b5cff3e037a, 0x08d2030d08e0070e, 0x97d0caff08cd000e, 0x000e3d9b5a77ff3c, 0xff3da11246ff08db, 0x08f22f0e3e1580ac, 0xc20fe8ff08ed010d, 0x0d063e19cb06ff3d, 0xff3db8b3a6ff08fb, 0x0d809504bc4c9e78, 0x0a2841040b445704, 0x09581601099c2804, 0x092a050109381c04, 0x153befff0925030b, 0x030bbd13aabbffbd, 0xffbd13dc85ff0933, 0x094a070ebd0f9994, 0x09b75bff09450011, 0x0011bcf7f14bffbd, 0xffbd1379daff0953, 0x097c2601bd0dce3d, 0x09690b0b096e000c, 0x13c5ffbd10d70eff, 0xe6ff09771804bd09, 0xbd048dbbffbd0bf8, 0x09890006098e000e, 0xb0b9ffbd0abf9bff, 0x11ff09972104bd1f, 0xbcf9668bffbd0432, 0x09c4070e09e4170e, 0x09b1070b09b6000e, 0x0732ffbd0fc957ff, 0x69ff09bf0011bcfb, 0xbcc634b2ffbcf113, 0x09d1400409d6080e, 0x4117ffbd0df2a4ff, 0x1dff09df3604bce9, 0xbce6b7beffbd0539, 0x09fa00060a083d04, 0x0d5f05ff09f51901, 0x0405bd1333eeffbd, 0xffbd1f55f1ff0a03, 0x0a1a0111bd2f6975, 0x029aa0ff0a15220e, 0x1e01bd0df19effbd, 0xffbc4f6bedff0a23, 0x0ab8150ebca0c571, 0x0a54070e0a740011, 0x0a41000e0a460009, 0xb6f9ffbd062c1bff, 0x84ff0a4f050bbcaf, 0xbd006a68ffbd164b, 0x0a61070d0a66080e, 0x239fffbd24b183ff, 0x9eff0a6f0a0ebcd2, 0xbcfb838affbcbd07, 0x0a8a00080a980112, 0xaa2a9bff0a850009, 0x5305bce5d858ffbc, 0xffbc4af2c2ff0a93, 0x0aaa0e06bcca4368, 0x22afa1ff0aa50111, 0x5104bcfbe965ffbd, 0xffbd5e5ed6ff0ab3, 0x0b000111bd352454, 0x0ad24e040ae00011, 0x119fc9ff0acd2401, 0x230ebd2224efffbd, 0xffbd05315eff0adb, 0x0af2280ebd1eaa2e, 0xe87864ff0aed0009, 0x2b0ebd137b69ffbc, 0xffbd0b0bd1ff0afb, 0x0b244e04bd1941a0, 0x0b1145040b160006, 0xa083ff3a976e9aff, 0x06ff0b1f0b0bbc84, 0xbd2ea972ffbd0580, 0x0b311d030b365004, 0x52abff3b4eb181ff, 0xcbff0b3f0d05bbfe, 0x3c9ef551ffbab92a, 0x0bd80a0b0c647604, 0x0b74070d0b94020e, 0x0b6101120b66000e, 0x0bb7ffbd4138f9ff, 0xfdff0b6f010ebd1d, 0xbd33d9bfffbcdc89, 0x0b816d040b860009, 0xfddaffbc93ae8cff, 0xe0ff0b8f010bbae1, 0xbcef006affbd34b6, 0x0baa00080bb8010c, 0x060d46ff0ba50011, 0x0011bcc7b10fffbd, 0xffbcd15159ff0bb3, 0x0bca3501bc96b5ee, 0x103f53ff0bc50007, 0x0007bcaec691ffbd, 0xffbc4a158cff0bd3, 0x0c2029013b6b980b, 0x0bf210010c001d01, 0x07ed85ff0bed070d, 0x0007bd2b72a2ffbd, 0xffbd0057dbff0bfb, 0x0c12010cbcc90256, 0xef396eff0c0d0008, 0x0007bcb588ddffbc, 0xffbcbffedfff0c1b, 0x0c440008bc214eda, 0x0c3100060c36010c, 0xc913ffbca06c1dff, 0xb7ff0c3f000ebd1c, 0x3ad2cf9cffbd026a, 0x0c51060e0c56000c, 0x0d98ffbcc511d6ff, 0x5bff0c5f000ebbed, 0x3bd806cbffbd09cc, 0x0cb0010c0cf40006, 0x0c8200080c901a0e, 0x1285fbff0c7d0109, 0x5c05bcdba56fffbc, 0xff3c6e0196ff0c8b, 0x0ca20011bb2ecbcc, 0x8e480eff0c9d1d0e, 0x2c0ebcdcce4affbd, 0xffbc4c9d83ff0cab, 0x0cd4120ebd2a86d9, 0x0cc100090cc60008, 0xd194ff3c997638ff, 0xa3ff0ccf000ebc2f, 0x3d2a6879ffbd8843, 0x0ce187040ce6130e, 0x7d94ffbd938f2aff, 0x03ff0cef0107be07, 0x3c849348ffbc0a14, 0x0d1c7c040d3c020d, 0x0d09030b0d0e0d0e, 0x1492ffbd28b530ff, 0xacff0d170007bd3c, 0xbd4acfcdffbd368d, 0x0d2991040d2e060e, 0x243effbcda0ae0ff, 0x7eff0d370106bc39, 0xbba5d59fffbd2c42, 0x0d521a0e0d600306, 0x267009ff0d4d030b, 0x350ebd8332a4ffbd, 0xffbd0dea16ff0d5b, 0x0d720008bd6f7a8a, 0x3eb2e1ff0d6d1005, 0x0d0ebd0db191ffbd, 0xffbd0519e3ff0d7b, 0x0fc0010cbc8a96fe, 0x0e18060d0ea40b0e, 0x0db4130b0dd40009, 0x0da10a0e0da60002, 0x9a6effbd0062d9ff, 0xd1ff0daf0b0bbdaf, 0xbd299ef4ffbcd943, 0x0dc109060dc6030e, 0x1a7dffbd17bc27ff, 0x51ff0dcf070ebcc2, 0xbca666edffbabb1b, 0x0dea050e0df8000c, 0xdb70e0ff0de50111, 0x0209bc394434ffbc, 0xffbc1877c3ff0df3, 0x0e0a0209bcb19e59, 0xa08c43ff0e05020e, 0x0b0b3c36b1a3ffbc, 0xffbcaf5685ff0e13, 0x0e600208bb9d58de, 0x0e3200120e407605, 0x97dc91ff0e2d070d, 0x00093d393d23ffbc, 0xff3d9556bbff0e3b, 0x0e52060ebcde51da, 0x96460fff0e4d050e, 0x070ebdb2eee0ffbc, 0xff3c8d82e3ff0e5b, 0x0e84030ebc9c511d, 0x0e71a7040e76ab04, 0xaac6ffbbc2baf9ff, 0x57ff0e7f020e3d7c, 0xbc862200ffbd1c4d, 0x0e91000c0e960b0b, 0x35d0ff3c0d6d38ff, 0x84ff0e9fc2043d13, 0x3c45519fff3d9061, 0x0ef001070f34070b, 0x0ec200090ed0190e, 0x3d2fc0ff0ebd0006, 0x070dbcdae695ffbb, 0xffbcdc5196ff0ecb, 0x0ee21d0ebd855717, 0x3777d9ff0edd0406, 0x020bbcc7319effbd, 0xffbd1cd8e7ff0eeb, 0x0f14060dbcb42605, 0x0f01020b0f060111, 0x1ebbffbd1536e2ff, 0x63ff0f0f020dbc81, 0x3cd3f9b1ffbc82a7, 0x0f21070d0f260011, 0x7392ffbce76fd0ff, 0x86ff0f2f000c3c9b, 0x3d84f2ccff3cd002, 0x0f5c01120f7c060d, 0x0f491c0e0f4e210e, 0x0442ff3c4a6998ff, 0x33ff0f570107bd82, 0x3d619d44ff3c3ac6, 0x0f690a050f6e0007, 0x2e71ffbd748a82ff, 0xb5ff0f770108bc9e, 0x3c3d59b7ffbbf717, 0x0f9200090fa00008, 0x1695c2ff0f8d000c, 0x070d3d019125ff39, 0xffbcd4a49cff0f9b, 0x0fb2140bbdce7532, 0xaabdc0ff0fad0011, 0xa8043d8a36eaff3c, 0xff3d06349fff0fbb, 0x10e001123d9d6956, 0x10103a0110540008, 0x0fe201070ff02d0e, 0xbc76a4ff0fdd060d, 0x3901bd04663dff3b, 0xff3cfcc364ff0feb, 0x1002310ebd5aebec, 0xc761ecff0ffd060d, 0x3105bd8badfbffbc, 0xffbdc029daff100b, 0x10340d0ebd604482, 0x1021110b10268605, 0x340cff3b28a310ff, 0xe1ff102f000e3cdf, 0xbbadb59effbd8c2f, 0x104100091046140b, 0x745fff3d21a0faff, 0x1eff104f0e0ebc85, 0x3d8521a2ff3e15c5, 0x107c280e109c110b, 0x1069000e106e010e, 0x84b5ffbdbc8af6ff, 0x3dff10778c05bd68, 0x3cc8eba1ff3d8265, 0x10890107108e0207, 0xab1cffbbe4b54fff, 0x40ff10970a0b3d09, 0x3e243041ff3d0c0d, 0x10b2960410c03001, 0x657276ff10ad0007, 0x2e013e0bf857ff3d, 0xffbca6f5dfff10bb, 0x10d2030e3d0c9ca4, 0x126f1aff10cdb204, 0x0007bd14e88fff3d, 0xff3d8a891dff10db, 0x11700b0e3de95fdd, 0x110c050e112c090e, 0x10f9970410fe090b, 0x3feeffbd7c9f3fff, 0xf5ff11070009bce7, 0x3c998d59ffbc9986, 0x11190111111e0a06, 0xb9d6ffbd28ca95ff, 0xc0ff112717063bc3, 0xbd154022ff3b40e2, 0x1142130511501606, 0x3e5a37ff113d1406, 0x6305bac1e0abff3d, 0xff3be01608ff114b, 0x1162b804bdc7a870, 0x5366a0ff115d0007, 0xbc04bda86f6effbd, 0xffbce10c2eff116b, 0x11b800073b758251, 0x118a00091198200e, 0x27b26aff11859b04, 0x0e0ebb3c17b4ffbd, 0xffbcf1e55bff1193, 0x11aa020dbd681f64, 0x3e2cacff11a50006, 0x7905bbc1a961ff3d, 0xffbd000fb4ff11b3, 0x11dc0008bd74f5e6, 0x11c9ab0411ce0505, 0x5292ffbd1db107ff, 0xa6ff11d7350ebda8, 0xbd3b86efff3c3697, 0x11e9030b11ee0207, 0xb9c9ffbafe11c0ff, 0xf8ff11f7130e3ced, 0x3d781667ffba30e5, 0x0000000800000013, 0x00000001000003e8, 0x00000000000011fc, 0x04842b010900000f, 0x012c0c0102481901, 0x005c060400a00501, 0x002e0004003c160e, 0x03c2d1ff00290301, 0x000cbd0e8546ffbd, 0xffbd08883bff0037, 0x004e1c0ebcf54a62, 0x0c16d8ff00490004, 0x0201bd035b80ffbd, 0xffbd0916ebff0057, 0x0080000cbd15bfbe, 0x006d020b0072050b, 0xa466ffbd13c229ff, 0xffff007b0201bd0c, 0xbd0115adffbd08da, 0x008d090b0092030d, 0xa69cffbcfc1e70ff, 0xf3ff009b0105bcea, 0xbcdb8194ffbd01e2, 0x00c8040400e81604, 0x00b5000e00ba0104, 0x4fa2ffbd275c41ff, 0x15ff00c30006bd0b, 0xbd19f29cffbcef8e, 0x00d5030500da070e, 0xdcdfffbd0fccb6ff, 0xd2ff00e30c04bcbb, 0xbcd62debffbcf7d9, 0x00fe020b010c090b, 0x39e0a3ff00f9000b, 0x050dbce75259ffbd, 0xffbcd11f43ff0107, 0x011e0006bc9fc5fe, 0xb0a503ff0119020d, 0x0605bc69b65effbc, 0xffbcd79084ff0127, 0x01bc1101bd2d5f83, 0x0158010d0178020d, 0x0145070e014a0804, 0xbabaffbcf17c61ff, 0x9bff0153090bbd2c, 0xbcb9b445ffbce52c, 0x0165000b016a050b, 0xf873ffbd5ba19eff, 0x66ff01730705bcb7, 0xbc2fbf35ffbcd9d3, 0x018e0b04019c3104, 0x019cd5ff01890404, 0x0805bcb9e5f8ffbd, 0xffbcdcbb32ff0197, 0x01ae0705bc450468, 0x8c43e7ff01a90305, 0x080bbcdeb54cffbc, 0xffbc259f6dff01b7, 0x0204000c3bc5ad27, 0x01d6030b01e40605, 0xff41e8ff01d1020d, 0x3904bcba81a3ffbc, 0xffbca1de1cff01df, 0x01f6190ebbf35171, 0x445226ff01f10111, 0x0c05bcd86ff5ffbd, 0xffbcd7e9edff01ff, 0x0228020dbd473c3a, 0x0215090b021a010d, 0x6509ffbcc827bfff, 0x12ff0223070bbc91, 0x3a918570ffbc584d, 0x02350c04023a2104, 0x007dffbcacc3d2ff, 0x3aff0243080bbbc5, 0x3c8f3b30ff3907a6, 0x02dc150403684404, 0x027801110298000c, 0x0265020e026a000d, 0xe133ffbd3b5f88ff, 0x68ff02730c04bd16, 0xbdc1cb1dffbd9912, 0x02850204028a0b04, 0xad16ffbd0f6d19ff, 0x45ff02932401bccc, 0xbc744e50ffbca796, 0x02ae000602bc050e, 0x2dc0ceff02a90009, 0x0d04bc7b212aff3a, 0xffbd251300ff02b7, 0x02ce0d04bccb5699, 0x0c1a1bff02c92401, 0x0009bceb77d8ffbd, 0xffbc8fcf8fff02d7, 0x0324000cbcded100, 0x02f6020d03040111, 0x9003b9ff02f11a04, 0x0011bdb553e6ffbd, 0xffbdddabf4ff02ff, 0x0316190ebdf3f18c, 0xc61787ff03111205, 0x0306bc89d004ffbb, 0xffbd463d82ff031f, 0x0348040bbca61906, 0x0335010d033a050d, 0x93b9ffbca34cd5ff, 0xd3ff034321013a1a, 0x3caaaa63ff3b92a9, 0x03551106035a0f05, 0xb66effbc6133b8ff, 0x30ff03630006bd8a, 0xbd058964ff3cce5d, 0x03b4010b03f8040b, 0x0386000c0394000b, 0x8b42f6ff03810706, 0x0009bd5d4203ffbd, 0xffbe140369ff038f, 0x03a6220ebdad359a, 0x8eadfaff03a12101, 0x020d3cc19e01ffbb, 0xffbccfbad2ff03af, 0x03d80006bc0b2b5f, 0x03c5010d03ca020d, 0xb92cffbb9e984aff, 0x44ff03d325013c87, 0x3d479780ff3cdacc, 0x03e5a40403ea020d, 0xf387ffbc9ee50fff, 0xfdff03f32301bd67, 0x3bca7493ffbc50f2, 0x0420020d04402401, 0x040d06050412000c, 0xac08ffbb9c8790ff, 0x2cff041b010dbd05, 0x3ce5d326ff3b512c, 0x042d060504321005, 0xf88dff3cd8a711ff, 0xdeff043b2303bb7c, 0x3cd397ddff3d7746, 0x0456340304642105, 0xc41abaff04512701, 0x26013d707d97ff3c, 0xff3ce8d2a1ff045f, 0x04762c03bb89b496, 0x97854dff04712801, 0x5c043d553f0cff3d, 0xff3cf77097ff047f, 0x06c453043d450435, 0x051c2c0405a80006, 0x04b8011104d80008, 0x04a5000d04aa040d, 0x35e0ffbd2d752dff, 0x91ff04b30012bd55, 0xbdbe05c1ffbd8249, 0x04c5160404ca2004, 0x69e2ffbc2cd38fff, 0xe3ff04d3010e3bea, 0x3c197355ff3d0ca6, 0x04ee170404fc030d, 0x082799ff04e9000d, 0x3201baf4433fffbd, 0xff3c8dde76ff04f7, 0x050e3d013d1372d8, 0x12660fff0509050b, 0x000c3d5e9500ff3d, 0xff3e277aaaff0517, 0x0564070e3da33ac3, 0x0536000e0544040d, 0xbe55b6ff05310009, 0x41043d391760ffbc, 0xff3d1d104fff053f, 0x055649043dc02aad, 0x450087ff05513e01, 0x040e3d9e30a6ff3d, 0xff3df535d9ff055f, 0x058802113d91a430, 0x0575190e057a7905, 0x6796ff3d208965ff, 0x52ff0583080ebcac, 0xbd9b8582ff3b748e, 0x0595170e059a4f04, 0x730eff3e0c903bff, 0x6fff05a3030bbd41, 0x3ee25db6ff3ec8a3, 0x05f4410406380e06, 0x05c6410105d42504, 0xfab376ff05c10906, 0x1a04bc9cb40affba, 0xffbd25cfe0ff05cf, 0x05e63705bca81cd5, 0x53b69dff05e1010d, 0x020d3c05b141ffbd, 0xffbd2c9bfcff05ef, 0x0618030bbbcda7b9, 0x0605000c060a0b05, 0xff23ff3c6c61e1ff, 0x6bff06130c0e3d92, 0xbd026435ff3bbec5, 0x06253c01062a0905, 0x139aff3d27b4efff, 0x77ff06330a0e3db5, 0x3c7443fbff3d328d, 0x06602a0406802b04, 0x064d1b0406524001, 0x7607ffbd0db311ff, 0xc7ff065b000cbcb8, 0xbd44fd75ffbd0d42, 0x066d000c06723d01, 0x4135ffbd1fb108ff, 0xbeff067b000cbd3b, 0xbdc2b8f4ffbd8b18, 0x0696021106a41406, 0xa6b8ecff06914504, 0x3504bb0a89c9ffbc, 0xff3b6531eeff069f, 0x06b600073cdac034, 0x148e13ff06b10211, 0x1606bc2eae98ffbd, 0xffbc9ac395ff06bf, 0x07e45805bced372c, 0x0714180507580007, 0x06e6a30406f40108, 0xdda6baff06e10008, 0x030e3c80b974ffbc, 0xffbd6c5e98ff06ef, 0x0706030b3d235a53, 0x92cbc9ff0701020b, 0x2d0e3ceb993cffbc, 0xff3de84f56ff070f, 0x0738070b3d4d4390, 0x0725000b072a0008, 0xfd63ffbd5a7002ff, 0x6bff0733010e3c87, 0x3d66267aff3acf14, 0x0745010e074a040e, 0x7f8cff3d0f1176ff, 0x2dff075305063da3, 0x3dfe7d53ff3d9ff5, 0x0780070b07a0020e, 0x076d000c0772000e, 0x6b6fffbc6993e6ff, 0xa0ff077b030d3c6c, 0x3d89f46fff3c8afb, 0x078d020d07929104, 0x1a36ff3b1ffc99ff, 0x79ff079b030d3d52, 0x3de1433bff3d6e72, 0x07b6090b07c4040d, 0x90b2a3ff07b1310e, 0x3f013cf1f83cff3d, 0xff3d75454dff07bf, 0x07d63f013dddab32, 0x3fc262ff07d11f05, 0x05063d9a79a7ff3d, 0xff3ddb6173ff07df, 0x087400063e0cdb9a, 0x0810230e08300007, 0x07fd0a0e08020111, 0xe5a5ffbdbcd766ff, 0xa3ff080b3f01be1a, 0x3df06a62ff3d52a3, 0x081dbd040822080b, 0x6a1fff3d95a951ff, 0x2bff082b4001bccf, 0x3e027f46ff3d80cc, 0x084684050854000d, 0x72b4e7ff0841a604, 0x9a043e1a5b5fff3d, 0xffbda5e8dfff084f, 0x0866000c3d07dda5, 0xd50351ff08610111, 0x020e3dca2c00ffbd, 0xff3dc85f5eff086f, 0x08bc96043e1ac642, 0x088e0206089c0002, 0x389fbbff08896a05, 0x130ebd992760ffbd, 0xffbcd35cfbff0897, 0x08ae91043de87c3d, 0x5f89edff08a9060e, 0x000c3c9724d1ffbc, 0xff3d37e00aff08b7, 0x08e0030e3be16a1b, 0x08cd030d08d21206, 0xf495ff3cbb1592ff, 0xb6ff08db000d3d6a, 0xbbacba48ffbd4e4e, 0x08edb00408f20002, 0x0ee2ff3d7bb8a7ff, 0x7bff08fb010bbd69, 0x3dcd9086ff3b90f5, 0x0b4461040d809d04, 0x099c4b040a283301, 0x0938210109582104, 0x09250111092a1001, 0xad2cffbd03d7b6ff, 0x9dff0933030bbcd8, 0xbcfa7b57ffbd0350, 0x0945000c094a0008, 0x53e8ffbd010533ff, 0x4eff09531204bcf7, 0xbced038dffbcfdc2, 0x096e2e01097c030b, 0x05c7f0ff09690007, 0x3003bcf464e8ffbd, 0xffbccbbe8bff0977, 0x098e3d04bcf8daae, 0xfbbd8fff09891001, 0x070ebce0239dffbc, 0xffbca0a554ff0997, 0x09e4150ebcd9c566, 0x09b6001109c40009, 0x87c3b8ff09b1070e, 0x5504bcbe8d3effbc, 0xffbc8d298eff09bf, 0x09d6070dbb84cf89, 0x2135c4ff09d1030b, 0x050ebcf11251ffbd, 0xffbd02f844ff09df, 0x0a080011bd3af57c, 0x09f5230109fa5504, 0x4efaffbcf70dd9ff, 0x64ff0a033305bd09, 0xbd041182ffbce1f1, 0x0a1560040a1a260e, 0x6024ffbcc6744fff, 0xaaff0a230208bc73, 0xbce036acffbcfc01, 0x0a74020e0ab80a0b, 0x0a46070d0a54000c, 0xfe56f1ff0a412c04, 0x0009bd102bd4ffbc, 0xffbcd61a28ff0a4f, 0x0a66000ebd06bd04, 0x03826bff0a61070d, 0x010cbcb18baaffbd, 0xffbcddbec7ff0a6f, 0x0a98000cbca52f02, 0x0a8500060a8a0208, 0xcad6ffbcd40c6bff, 0x3fff0a93060ebd1c, 0xbc757362ffbcc6be, 0x0aa501090aaa0007, 0x57afffbc9b9c05ff, 0x94ff0ab3010cbcff, 0xbb36e46cffbc7bc5, 0x0ae0000e0b005504, 0x0acd00060ad2070d, 0x3e34ffbce8df58ff, 0xeaff0adb3c04bd15, 0xbc8cff8cffbcd275, 0x0aed000c0af20008, 0x4bd6ffbcd46488ff, 0x2cff0afb000cbc85, 0xbbdb4ddfffbc8aa8, 0x0b16000e0b24020e, 0xfb943cff0b11070d, 0x000cbc82f33cffbc, 0xffbcd533acff0b1f, 0x0b360112bc62d216, 0x63d2e7ff0b310008, 0x01113a615442ffbc, 0xffbd0e5458ff0b3f, 0x0c64090bbc77b14b, 0x0b94020e0bd8010c, 0x0b6604060b74000e, 0x49dbaaff0b61070d, 0x7a04bcfb2c9affbd, 0xffbd1740d5ff0b6f, 0x0b86010ebd009312, 0x08fb26ff0b81060d, 0x070dbc8f0b6dffbd, 0xffbd3894faff0b8f, 0x0bb80002bc2744a1, 0x0ba502080baa040b, 0xd39cffbcce9e30ff, 0xaaff0bb30011bc33, 0xbc00e6a5ffbcc9d7, 0x0bc5020b0bca000c, 0x86bdffbcd9742cff, 0x3dff0bd3030bbc60, 0x3c7065fdffbba142, 0x0c0024010c203a01, 0x0bed00070bf27b04, 0x844affbd0a8835ff, 0x10ff0bfb0107bccf, 0xbd8d6915ffbd483d, 0x0c0d00090c120207, 0x641affbcb7cd8aff, 0xedff0c1b2c0ebd2f, 0xbd006356ffb843b6, 0x0c3600020c44030b, 0xafc40cff0c310011, 0x060ebc111cadffbc, 0xffbc99d50bff0c3f, 0x0c56020e3c869a3a, 0x317329ff0c51000e, 0x0008bc223dc7ffbd, 0xff3bb0cf8dff0c5f, 0x0cf4010c3cb68543, 0x0c90140b0cb00006, 0x0c7d000e0c822c0e, 0xbf88ffbd21ca4dff, 0xa9ff0c8b320ebbe5, 0xbda03352ffbd2326, 0x0c9d00080ca20108, 0x3dfaffbc0dd46fff, 0x0fff0cab1c0e3b98, 0x3bbb8dceff3cc3d7, 0x0cc60c050cd40008, 0x162911ff0cc17c04, 0x020dbd52f80dffbd, 0xffbc7b232eff0ccf, 0x0ce63705bd11be3b, 0xbfacc0ff0ce19c04, 0x0506bd940c2affbc, 0xffbd40a8ccff0cef, 0x0d3c2901bcfd0924, 0x0d0e81040d1c1b01, 0x0101aeff0d091501, 0x120bbcb6011fffbd, 0xffbd7f54bdff0d17, 0x0d2e120bbd13d384, 0x9cdaaeff0d298304, 0x0d05bd30f999ffbc, 0xffbd0acb52ff0d37, 0x0d600006ba16917a, 0x0d4d00120d520008, 0x3855ffbbb28aedff, 0x85ff0d5b010e3c7a, 0x3d1469e0ffbc4653, 0x0d6d12060d721205, 0x3a07ffbb92910eff, 0xf6ff0d7b0111bd19, 0xbc14fe41ffbd1d41, 0x0ea4020e0fc0060e, 0x0dd400090e189205, 0x0da687050db48c05, 0xef8383ff0da1000e, 0x0007bcb6f464ffbc, 0xff3c115b02ff0daf, 0x0dc6010cbd2adfe0, 0x335b23ff0dc1110b, 0x0e0bbce60936ffbd, 0xffbd96af8cff0dcf, 0x0df80012bd2e0c24, 0x0de5a3040dea100b, 0x03baffbd0a6f08ff, 0x86ff0df3010ebca6, 0x3ad782caffbc7751, 0x0e057a050e0a8a05, 0xa340ff3db96452ff, 0x3dff0e13a8043c65, 0xb99678efffbc6426, 0x0e40010c0e600009, 0x0e2d000e0e32070b, 0x8740ffbd9259f1ff, 0xf4ff0e3b010ebd42, 0xbd4dfd30ffbd1097, 0x0e4d000e0e520e0b, 0xc207ffbddeaaf6ff, 0x25ff0e5bb904bdae, 0xbd40bec1ffbd894d, 0x0e76000e0e840b0b, 0x4bd25eff0e710109, 0x0111bd0bd620ffbd, 0xffbcd9920fff0e7f, 0x0e960111bc6d902c, 0xcc03fcff0e91000e, 0xb304bc7a7dacffbc, 0xffbbb2792eff0e9f, 0x0f34c2043c1874ed, 0x0ed008060ef0060d, 0x0ebd010c0ec20009, 0xcfe7ffbd140d86ff, 0x22ff0ecb000cbd87, 0x3bc1fe50ffbca226, 0x0edd0b0b0ee2000c, 0xe7beffbcbfd74bff, 0xa3ff0eeb1806bc4e, 0xbd079d58ffbbb405, 0x0f06b7040f14050e, 0x45c4e6ff0f01a704, 0xbd043d23751aff3a, 0xffbcc40d82ff0f0f, 0x0f26000c3c3de78d, 0x9ba05cff0f210011, 0x00093d069b58ffbd, 0xffbdfc354bff0f2f, 0x0f7c0011bd6c2ac3, 0x0f4e00080f5c050e, 0xf7d052ff0f49cb04, 0x000cbd6b9ac0ffbc, 0xffbd1c6ec7ff0f57, 0x0f6e000cbd5a50a9, 0x8769bfff0f690008, 0x0009bdb2a273ffbd, 0xffbdf41557ff0f77, 0x0fa0040eb9b91200, 0x0f8d19060f920108, 0xd519ffbcca056bff, 0x16ff0f9b1106bd14, 0xbcad87b7ffbd233d, 0x0fad02090fb21306, 0xef74ffbd4a3b41ff, 0xafff0fbb0c0b3bfc, 0x3c8b41d0ffbc8272, 0x1054140b10e0010c, 0x0ff0060d1010000c, 0x0fdd01110fe2050b, 0x242cffbcdd8619ff, 0x90ff0feb1d0ebc3a, 0x3a350639ffbc9ed3, 0x0ffd000910020008, 0x3044ffbc1f8a11ff, 0x30ff100b0011bd05, 0x3ce1e566ff37ba1e, 0x10261f0e1034060d, 0xa33a70ff1021190e, 0x0007bd389ee2ffbb, 0xffbc585b88ff102f, 0x104600093c85fc63, 0x24b125ff1041190e, 0x070d3c4c92d6ff3d, 0xffbcae840dff104f, 0x109c000cbd843f4a, 0x106e1d0e107c060d, 0x71e964ff10691c0e, 0x0112bd8fc40effbb, 0xff3d03c5caff1077, 0x108e0008bba11f77, 0xeb4a97ff10890011, 0x0007bcd0cd88ff3b, 0xff3ccf071aff1097, 0x10c000083d2d6847, 0x10ad011210b20009, 0xf2f2ff3d17c9bfff, 0x83ff10bb0109bbfa, 0xbcb15532ff3b92d4, 0x10cdb50410d20112, 0x6e37ff3d5c89c3ff, 0x0eff10db34013da8, 0x3c947876ffbd3b43, 0x112c120b11700207, 0x10fe180e110c1a0e, 0x5e2399ff10f90011, 0x00093c3ff95aff3d, 0xff3dee7fb1ff1107, 0x111e2f0ebc698ffd, 0x112e2dff11191d0e, 0x01073cc8f5faffbd, 0xffbd0dce88ff1127, 0x115000083bcf6782, 0x113d000711425205, 0x3136ffbcd6b850ff, 0x72ff114b00123c1c, 0x3d0e2a5bff3d8e94, 0x115d000711624005, 0x6927ffbb05e00aff, 0xefff116b00073d49, 0x3de972a5ff3d8842, 0x1198060d11b80d0e, 0x11850006118a6105, 0x3e54ff3d3640baff, 0x9aff1193ba043c23, 0xbda4b1e1ffbcddf9, 0x11a5080e11aa0008, 0x8823ff3c872ce2ff, 0x82ff11b3c2043d61, 0x3d1e6b41ff3db4c1, 0x11ce060d11dc050b, 0x1c2a4cff11c90111, 0x00113d159920ff3c, 0xff3d2a5842ff11d7, 0x11eeb5043dd6608f, 0x90f0eaff11e9330e, 0x1d0ebd21d48bff3d, 0xff3da2aa44ff11f7, 0x000000133e194ba0, 0x000003e800000008, 0x000011fc00000001, 0x0900000f00000000, 0x02481a0104842b01, 0x00a00501012c0901, 0x003c000c005c0201, 0x0029060d002e0008, 0xcedaffbcfabb49ff, 0x7aff0037030dbcd1, 0xbcec9821ffbcf532, 0x0049080b004e030d, 0x09daffbcf03276ff, 0x83ff00570904bce6, 0xbcd4eeb5ffbce39a, 0x0072010400800d04, 0xeea06aff006d070e, 0x0006bd05bb7effbc, 0xffbcd7433fff007b, 0x00920105bd035feb, 0xf93a61ff008d0006, 0x050bbce26f46ffbc, 0xffbcd5b6b4ff009b, 0x00e8070bbcbb3c92, 0x00ba340e00c8000b, 0x068807ff00b5170e, 0x4e04bd227364ffbd, 0xffbd5308f9ff00c3, 0x00da000cbd15c582, 0xf70f30ff00d56f04, 0x050dbd0a6260ffbc, 0xffbccf183dff00e3, 0x010c050dbcb25749, 0x00f9080100fe010d, 0x2b0effbcde9fddff, 0xeeff01070006bd06, 0xbce754b2ffbca74c, 0x01190701011e0103, 0xb79fffbd0dd691ff, 0x63ff0127000cbcf5, 0xbc8253a8ffbce30b, 0x0178150101bc2d04, 0x014a090b0158000c, 0xec8b15ff0145070d, 0x0111bc1e9119ffbc, 0xffbd2ce4e8ff0153, 0x016a020bbcc24cc0, 0x6a080fff0165000b, 0x0206bcbb8885ffbd, 0xffbc5d2d52ff0173, 0x019c1704bcf83fe6, 0x01890111018e0904, 0x2afaffbd30b056ff, 0x31ff0197050ebcbc, 0xbca64f8dffbc06b2, 0x01a90b0501ae070e, 0xb3aaffbc99c103ff, 0x80ff01b7000c3c77, 0xbb6a03e9ffbcb36e, 0x01e42a0e02041101, 0x01d1020b01d6050b, 0x97e9ffbcb57662ff, 0x91ff01df0805bc2a, 0xb9a2d061ffbc9aaa, 0x01f14b0401f6360e, 0x2d79ffbcb6d24dff, 0xf5ff01ff9904bc5d, 0xbd22f8f4ffbcfac2, 0x021a010d0228020d, 0x5ead98ff02152f0e, 0x030bbcce354fffbc, 0xffbc337388ff0223, 0x023a0b053b41d1a6, 0x9f68d3ff02350603, 0x0006bac34620ffbc, 0xff3c564d92ff0243, 0x03684304bd0e9ab6, 0x0298100402dc2504, 0x026a000c0278040d, 0x468fa4ff02650112, 0x070ebcbce1faffbd, 0xffbc66fc30ff0273, 0x028a000cbcde5147, 0x91f4c9ff0285070d, 0x08043b865d7affbc, 0xffbc91cc15ff0293, 0x02bc0006bab6c39c, 0x02a9000902ae040e, 0x15f1ff3c872345ff, 0xd2ff02b7020bbb75, 0xbab27270ffbc6e4a, 0x02c9060e02ce0106, 0x7e6affbd254cc0ff, 0xceff02d70a06bcac, 0xbcb684d1ffbc20fe, 0x0304000603240e0e, 0x02f1100502f62501, 0xf440ffbca22cf2ff, 0xdeff02ff010b3c9a, 0x3d0b48caff393ec7, 0x0311120503161006, 0xcb42ff3ad3f16eff, 0x17ff031f1206bca5, 0xbd8d8b61ffbd0ac9, 0x033a3d040348190e, 0xe65f62ff03352701, 0x1205bce0955fffba, 0xffbc109638ff0343, 0x035a260e3ca37a8c, 0x1186deff03553604, 0x290ebc1026e0ffbd, 0xffbcddabefff0363, 0x03f8030bbdd0621e, 0x0394000703b41205, 0x0381000c0386000b, 0x9825ffbd6ae90aff, 0x23ff038f050dbdf3, 0xbb102e0dffbcc01e, 0x03a1880403a62101, 0x1b50ffbc1db25bff, 0xccff03af350ebd5f, 0xbca37e5fff3c4c14, 0x03ca020b03d8050d, 0x3cdc7bff03c52a01, 0x26013cb04446ffbc, 0xff3c1e5154ff03d3, 0x03ea000c3d037208, 0x0f7b6eff03e54a05, 0x010bbd71e31effbd, 0xff3b3e1a3fff03f3, 0x0440000c3d23c8f0, 0x0412330e04200605, 0x3cd2ceff040d0f06, 0x0e063c081841ff3d, 0xff3bcc862eff041b, 0x04322101bd2da0d4, 0xc4c779ff042d1205, 0x0506bd453aa9ffbc, 0xff3c884cf6ff043b, 0x0464010dbcd59945, 0x045127010456070b, 0x33b6ffbbc65f1cff, 0xdeff045f24013c61, 0x3cefa1acff3bfacb, 0x0471090304761e05, 0x519dffbb014893ff, 0xc1ff047f2c033d0b, 0x3d04f1b9ff3d57d5, 0x05a8000606c48004, 0x04d83804051c4001, 0x04aa010704b80008, 0x4f68b5ff04a5000c, 0x000c3c2b7768ffbc, 0xffbafd8b0bff04b3, 0x04ca010d3d18acc0, 0x50db27ff04c5000d, 0x090bbce27889ff3c, 0xff3d0adf41ff04d3, 0x04fc010d3d5a601a, 0x04e92e0104ee010b, 0xc49bffbd41172dff, 0x44ff04f73201bcb4, 0x3d0e2756ff3c432b, 0x05093d05050e3301, 0x5601ff3d6d84feff, 0xc6ff051702113d0c, 0x3e0d31d7ff3d69b3, 0x054401110564000c, 0x0531000b05366104, 0x73adffbd29b17aff, 0x7fff053f000bbd6d, 0xbe0e8581ffbd2c76, 0x05518a050556000d, 0xa967ffbca823f4ff, 0xdeff055f0212bdb8, 0x3e45ac2dff3d5eff, 0x057a060b0588010d, 0xdc0f58ff05757c05, 0x4304bcdb8b35ff3c, 0xff3c460a7eff0583, 0x059a00093da21930, 0xe1770bff05950d0e, 0x67053da48bd0ff3d, 0xff3d20a6a5ff05a3, 0x063801063dad9921, 0x05d4750405f4140e, 0x05c1060e05c6030b, 0xb608ffbd59f701ff, 0xffff05cf3705bc94, 0xbd658defffbda519, 0x05e1360505e63905, 0xcb6effbe4e0c0bff, 0xd7ff05ef5205be22, 0xbdbc719cffbdf015, 0x060a120506180002, 0x371e5bff0605270e, 0x7104bd931a9dffbd, 0xffbcac894cff0613, 0x062a030b3bf34432, 0x9cb0c5ff06251c05, 0x020d3d17f9d8ff3d, 0xffbcba409bff0633, 0x0680030b3d0cf161, 0x0652550406601406, 0x44771bff064d4504, 0x1d0e3ae123fbffbc, 0xff3d076319ff065b, 0x06721806bc88e619, 0x9dc6a8ff066d7f04, 0x7e043d638039ffbc, 0xffbd1759f1ff067b, 0x06a4040ebd9de561, 0x0691080606961606, 0xed12ffbb24e551ff, 0x89ff069f18063cf6, 0xbd1463b3ffbc9575, 0x06b1021106b66b04, 0x201dff3ca88feaff, 0xa6ff06bf05063df8, 0x3db85548ff3c8a0c, 0x0758280e07e40006, 0x06f4060b07140111, 0x06e1000206e6020e, 0x2c69ffbd7b315dff, 0x63ff06ef000bbe0c, 0xbe0d63bfffbd9ac0, 0x0701020e0706a404, 0xc84effbe0daf5bff, 0x2aff070f0a0bbe4d, 0xbe81feeaffbe499d, 0x072a000d07380009, 0xba9507ff07258b05, 0x93053be82a3dff3d, 0xff3e0fdd3dff0733, 0x074abd043dd80e09, 0x8cdd2bff0745030b, 0x140e3e00ac6fff3d, 0xff3d95c153ff0753, 0x07a08b05bce8396f, 0x0772310e07809604, 0x21cdb0ff076d8604, 0x41013d7fc1d3ff3d, 0xff3cef31e1ff077b, 0x0792010bbd9bd00f, 0x2c199fff078d0208, 0x300ebd228531ff3d, 0xff3dff9668ff079b, 0x07c4040b3dadcaa2, 0x07b1000c07b6350e, 0xd691ff3e05c1efff, 0xc1ff07bf0007bc0a, 0xbe4ef05cffbea2a1, 0x07d1930507d6000d, 0x1bf0ffbcf3c071ff, 0x62ff07df340ebe8f, 0xbe20e705ff3dbb1a, 0x0830020d0874030b, 0x0802320e08101106, 0x986d9dff07fd060e, 0x07063d848494ff3c, 0xff3bfb4048ff080b, 0x0822020bbd0d36be, 0xf0c96dff081d000c, 0x010dbd807a20ffbc, 0xffbc62ff0aff082b, 0x085400073d04be5c, 0x0841000c0846020b, 0xd09bffbb1a4e1aff, 0x98ff084f030ebd91, 0x3d6a852fff3c8804, 0x0861030e08662a0e, 0x748eff3d52c068ff, 0xecff086f330e3de2, 0xbb9a2c89ff3d3ac2, 0x089c180608bca904, 0x08892e0e088e4f05, 0x0473ff3dbe5c5cff, 0x7dff0897090e3cea, 0x3d5301a9ff3c2fe7, 0x08a9970408ae1906, 0x82eaffbd1b23f3ff, 0x4fff08b7010e3c55, 0xbe073011ffbd600d, 0x08d2040d08e0040e, 0x901ccaff08cd000c, 0x000e3d844afaff3c, 0xff3d71163bff08db, 0x08f2330e3df5c3c7, 0x90624fff08ed010d, 0x000c3e03ed77ff3d, 0xff3d13b15dff08fb, 0x0d8095043d976705, 0x0a2841040b445704, 0x09582601099c2d04, 0x092a0f0e09382a04, 0xedc40fff09250f04, 0x0011bcdfe7f9ffbc, 0xffbcf34ee0ff0933, 0x094a100ebced4b3d, 0xce4df2ff09452501, 0x0011bcaf0098ffbc, 0xffbcf37477ff0953, 0x097c030bbce18a25, 0x0969000c096e000e, 0xeb46ffbcf614d4ff, 0xa2ff0977000cbcdd, 0xbcc79ec8ffbcde9e, 0x09892804098e0011, 0xf9aaffbcde9eadff, 0x70ff09970112bccf, 0xbcef3c21ffbcc061, 0x09c40a0609e41005, 0x09b1000c09b60905, 0xa50affbcfc5c5fff, 0x4aff09bf170ebce5, 0xbcdf09d7ffbccb74, 0x09d1000e09d61006, 0xc5c9ffbceb89c7ff, 0x4fff09df1306bd10, 0xbd2cd6dcffbd1dab, 0x09fa000c0a080108, 0xdf8d39ff09f53301, 0x1901bccbe691ffbc, 0xffbcd79e38ff0a03, 0x0a1a0d0ebcb118ae, 0xb846c0ff0a15020e, 0x3101bc8b4401ffbc, 0xffbcc8be42ff0a23, 0x0ab8070ebc97fa57, 0x0a54000e0a74020e, 0x0a410b0b0a46070d, 0x4918ffbd07ac5bff, 0x57ff0a4f0009bcdc, 0xbcd66936ffbc74ae, 0x0a61010c0a660a0b, 0xd6afffbce2b802ff, 0x45ff0a6f010ebc8a, 0xbcbc48d7ffbc6b1e, 0x0a8a00090a980011, 0x7196d7ff0a85070d, 0x070dbcb10202ffbc, 0xffbcd9487fff0a93, 0x0aaa0112bd168523, 0x36617dff0aa50009, 0x0111bc9f7b0bffbb, 0xffbd1a4103ff0ab3, 0x0b00110ebcc07231, 0x0ad243050ae0080e, 0xc17118ff0acd4c04, 0x0009bd00eff4ffbc, 0xffbd142d2dff0adb, 0x0af20007bca4f3c2, 0xd44690ff0aed0008, 0x0011bc9f8e61ffbc, 0xffbcadf201ff0afb, 0x0b240011bc4ff9a0, 0x0b1150040b16130e, 0x8c85ffbce84cb2ff, 0x58ff0b1f190ebc90, 0xbcef4eecffbcd888, 0x0b3101110b36250e, 0x146dffbcbb5a28ff, 0x85ff0b3f0111bbc0, 0xbc4856caffbce715, 0x0bd800110c640112, 0x0b741c0e0b94120b, 0x0b61070d0b66020e, 0x79e4ffbd07b017ff, 0x60ff0b6f0009bc28, 0xbce7c3baffbc4300, 0x0b81050b0b861d0e, 0x8235ffbd74e9d2ff, 0x31ff0b8f280ebdc1, 0xbd28709affbcc469, 0x0baa74040bb8190e, 0xcc5c97ff0ba51e01, 0x3a05bc4381fbffbc, 0xff3ca0ac67ff0bb3, 0x0bca1c0ebb5a6adb, 0xe6fadaff0bc56f04, 0x1d0e3bcc3866ffbc, 0xffbde0fc64ff0bd3, 0x0c201c0ebc82f576, 0x0bf2060d0c00000c, 0x9dcf66ff0bed080e, 0x0008bba33bfdffbc, 0xffbb86b52fff0bfb, 0x0c12060d3cd0065d, 0x03258bff0c0d020e, 0x00093be080d9ffbd, 0xff3d419d88ff0c1b, 0x0c441d0ebc631bc8, 0x0c317d040c36090b, 0x25cdffbd3ae370ff, 0x05ff0c3f0008bd56, 0xbda1e12affbd608f, 0x0c5100070c566c04, 0xa4d2ffbcd375cfff, 0x31ff0c5f280ebc9e, 0xbca52e1cffbafdcf, 0x0cb003060cf40111, 0x0c8279040c901e0e, 0x2c45c3ff0c7d0206, 0x0206bd0e8a03ffbd, 0xffbd91303aff0c8b, 0x0ca2350ebd40a17e, 0x308138ff0c9d280e, 0x7e04bcbe9dc8ffbd, 0xffbd269f13ff0cab, 0x0cd40107bd82372b, 0x0cc100080cc61106, 0x8772ffbd092b7eff, 0xf1ff0ccf0405bcce, 0xbd0ce43effbd437d, 0x0ce112050ce60f0e, 0x0a31ffbca92c32ff, 0x30ff0cef6b04bcfd, 0xbacc1740ffbceb0f, 0x0d1c01060d3c020d, 0x0d09080b0d0e1d0e, 0x734fffbd20b605ff, 0x00ff0d170b0bbd72, 0xbd057cf9ff392c93, 0x0d2912050d2e7c04, 0x5d44ffbd0d81bbff, 0xceff0d37060ebc92, 0xbb4f4fbdffbca21c, 0x0d52010e0d607d04, 0x4ec387ff0d4d6e04, 0x030ebd5fe1aaffbc, 0xff3c5c0560ff0d5b, 0x0d728004bc52ff38, 0x86456cff0d6d020b, 0x58053d9af564ff3c, 0xff3d1da830ff0d7b, 0x0fc0010cba183b65, 0x0e18060d0ea40b0e, 0x0db401120dd40009, 0x0da1aa040da60a0e, 0xe6b7ffba268fd2ff, 0x7bff0daf000cbd09, 0xbdd59b76ffbd95ad, 0x0dc10a060dc6030e, 0x06e3ffbcf8885cff, 0x45ff0dcf1606bcb7, 0xbcf4ef92ffbc09a4, 0x0dea050e0df8000c, 0x85a6e0ff0de59405, 0x0209bcd096f5ffbc, 0xffbbe5bd86ff0df3, 0x0e0a0209bc9567f6, 0x46df37ff0e059105, 0x0b0bbbd1be5cff3c, 0xffbc96b80aff0e13, 0x0e600208bb63a8cd, 0x0e3200110e407305, 0x9ba478ff0e2d070d, 0x00023d312558ffbc, 0xff3dafa2f9ff0e3b, 0x0e52060e3d17c5a0, 0x75648eff0e4d050e, 0x070ebd9433c3ffbc, 0xff3c77baa3ff0e5b, 0x0e84030ebc8f0bd2, 0x0e71a7040e76ab04, 0x4079ffbba32f40ff, 0x19ff0e7fae043d56, 0xbc9b9eb9ffbd6080, 0x0e91040b0e960d0b, 0xac8bffbbbf5382ff, 0x2dff0e9fc2043cc5, 0x3ba7b982ff3d81c0, 0x0ef0190e0f340a0b, 0x0ec2060d0ed0000c, 0xadc230ff0ebd0111, 0x0011bb3fa6edffbc, 0xffbc8ac0e2ff0ecb, 0x0ee2020b3c47dcba, 0xe51e3aff0edd0007, 0x0009bc5b0eebffbc, 0xff3c708705ff0eeb, 0x0f14200ebca062af, 0x0f01020b0f06050b, 0x0781ffbd5b9279ff, 0xb0ff0f0f0011bcf2, 0xbd422d79ffbd9fca, 0x0f21230e0f260107, 0xa502ffbc1931cbff, 0x6cff0f2f230ebcd7, 0xbc116d16ff3c3a12, 0x0f5c00080f7c060d, 0x0f49310e0f4ec204, 0x9120ff3b134ba2ff, 0x20ff0f571f0ebd14, 0x3b862a9fffbcfc07, 0x0f690b0b0f6e140b, 0x62a2ff3c1c86adff, 0xe0ff0f770006bcd7, 0xbac17ab2ff3d151b, 0x0f9200080fa0000c, 0x15f38cff0f8d070d, 0x0107bd2d983dffb8, 0xff3c8ca8f7ff0f9b, 0x0fb200083d004152, 0xdaa9deff0fad0009, 0x0107bcd2d708ff3c, 0xff3d32e66fff0fbb, 0x10e001123d9e2670, 0x10103a0110540008, 0x0fe201070ff02d0e, 0x5c057cff0fdd060d, 0x2b05bcf5c109ff3b, 0xff3d78d516ff0feb, 0x1002310e3b866739, 0xb15f3eff0ffd060d, 0x3105bd768e47ffbc, 0xffbda8f6dcff100b, 0x10340b0ebd3f4e2d, 0x1021020e10260a0e, 0xe496ffbcf71242ff, 0x0dff102f00113bf5, 0xbdf28445ff3d3695, 0x1041190e10460009, 0xb0c9ff3d794a48ff, 0x56ff104f190e3cb3, 0xbd190d80ffbbd902, 0x107c2f0e109c140b, 0x1069020b106e070b, 0xed0effbc5cfa24ff, 0x29ff107702083cc3, 0x3bda767eff3d81d8, 0x10890107108e0207, 0xe70bffbcdec895ff, 0x84ff10970a0b3c31, 0x3e133506ff3ca668, 0x10b23e0110c0cb04, 0x3eed57ff10ad2e01, 0x7e053d128baeffbc, 0xff3daeeb26ff10bb, 0x10d201073ca12f48, 0x0c5d0fff10cd280e, 0x170ebac3ccecff3e, 0xff3e0f1da7ff10db, 0x117001073e601e03, 0x110c0305112c0108, 0x10f9360e10fe3201, 0xc3e1ffbcfdd685ff, 0xe3ff11070105bd85, 0xbd63bf04ffbdae87, 0x11192a0e111e0007, 0x6e73ffbc845ab6ff, 0xcfff11272601bd04, 0xbb973253ffbd1b49, 0x1142010511501305, 0x95a354ff113d0208, 0x00073c999248ffbd, 0xffbc104368ff114b, 0x1162020d3caa8807, 0x264e02ff115d130e, 0x02083cad1216ffbc, 0xffbc41de00ff116b, 0x11b80d0ebce2186b, 0x118a011111980706, 0xe0e93fff11850b0e, 0x050ebd914433ffbc, 0xffbd8a7fa5ff1193, 0x11aa030e3be71d17, 0xb07813ff11a5000e, 0x030bbbd57b8fffbc, 0xffbc1de1d9ff11b3, 0x11dc340e3cb2b1cd, 0x11c9130e11ce1206, 0x3506ffbd0ac694ff, 0x7fff11d705053d15, 0x3b8d541cffbd9621, 0x11e9020611ee360e, 0x5da5ffbd41581fff, 0xa6ff11f70006bc84, 0xbd993f3bffbe51d4, 0x0000000800000013, 0x00000001000003e8, 0x00000000000011fc, 0x04843b010900000f, 0x012c0f0102481d01, 0x005c020100a00601, 0x002e0604003c2a0e, 0xcb57acff00290f0e, 0x030dbcd85d58ffbc, 0xffbccee82aff0037, 0x004e1004bcbffe9a, 0xe3504eff0049070b, 0x310ebcf2223dffbc, 0xffbcca75b1ff0057, 0x0080000cbcdc0f6a, 0x006d63040072070b, 0xdcb4ffbce56721ff, 0x52ff007b7a04bcf5, 0xbd03759dffbcd35e, 0x008d020b0092090b, 0x4326ffbcd2d188ff, 0x17ff009b010dbcbc, 0xbca3ebd4ffbcccac, 0x00c8010b00e8080b, 0x00b50d0100ba000b, 0x7e51ffbd15d1beff, 0x0eff00c30f03bd79, 0xbce0b13fffbcc419, 0x00d5000d00da050d, 0x0906ffbccb52c4ff, 0x71ff00e30b04bca7, 0xbc7ae788ffbcb6d2, 0x00fe1404010c0c01, 0xa9bd13ff00f9170e, 0x0405bd2585e4ffbc, 0xffbcb5c908ff0107, 0x011e0505bc6270f9, 0x89ea11ff01190305, 0x0006bcd14541ffbc, 0xffbbf13f93ff0127, 0x01bc060bbd178c86, 0x0158000b0178010b, 0x0145220e014a020d, 0x61c2ffbcee5d8aff, 0x80ff01531204bd58, 0xbd96d90dffbd188b, 0x0165000d016a6e04, 0xca4bffbcfb5c00ff, 0x1dff0173340ebcac, 0xbd14a40affbd9694, 0x018e0b04019c2504, 0xe8f381ff01890304, 0x0006bca05ac8ffbc, 0xffbc2ade59ff0197, 0x01ae050dbce20076, 0x58d9cbff01a91401, 0x1801bbcb5139ffbc, 0xffba8b1748ff01b7, 0x0204000c3c44b9b0, 0x01d68b0401e41205, 0x979113ff01d11401, 0x0406bc18a416ffbc, 0xffbcf184c8ff01df, 0x01f60d0ebd4f9c3d, 0x82f46bff01f1030e, 0xb804bcbbec0fffbc, 0xffbd13817bff01ff, 0x02284404bdab9b61, 0x0215000d021a0006, 0xc2a3ffbca39481ff, 0x92ff02230b053bba, 0xbd430285ffbcb009, 0x02351801023a050d, 0xdaa4ffba2e842dff, 0x58ff0243340e3c8e, 0xbc41aeebff3ce6ae, 0x02dc560403681105, 0x0278010e02982104, 0x02650906026a0d04, 0x308bffbcc6465eff, 0x40ff02730b06bd03, 0xbcc1d355ffbc3bb2, 0x0285000c028a020e, 0xd3b4ff3c97d6bcff, 0xd5ff0293010739ca, 0xbc23c3caffbc85b0, 0x02ae080302bc0d06, 0x8a4278ff02a9150e, 0x3101bbea9002ffbc, 0xff3a98cf4cff02b7, 0x02ce11063c570d0f, 0x926aa3ff02c93704, 0x000cbb6df989ffbc, 0xffbc8f9f16ff02d7, 0x0324350ebd0f4b5d, 0x02f6570403047f04, 0x8729c3ff02f1200e, 0x2b033ce0e3a7ff3d, 0xff3cb51c73ff02ff, 0x03161206bb34bca7, 0x46dbb5ff0311330e, 0x15063cca155aff3d, 0xffbda7a22cff031f, 0x0348030dbe2f4983, 0x0335000d033a000c, 0xabe4ffbd7989f6ff, 0xacff03432601bcd4, 0x3c7c22b4ffbcad77, 0x03550f06035a010b, 0xedb2ffbd14f900ff, 0xc7ff036326013b93, 0x3ce56620ff3a55d1, 0x03b4220403f84404, 0x0386000d03940111, 0x12468dff0381020e, 0x2a01bcf24933ffbd, 0xffbda7d962ff038f, 0x03a60e04bd644adb, 0x315ab1ff03a1030e, 0x030ebcc9e9beffbc, 0xff3c28e024ff03af, 0x03d80d0ebb96109c, 0x03c5000803ca3904, 0xf5daff3c69b83aff, 0xe6ff03d329033ce5, 0x3d025d76ff3d4753, 0x03e52e0403ea010d, 0xff57ffbd3ad7e3ff, 0x9aff03f3000cbc6a, 0x3c0c430effbd04d1, 0x042031010440020b, 0x040d010b0412050d, 0x360bffbc93f3a3ff, 0x4aff041b000b3b6e, 0x3ccfefedffbdf3dd, 0x042d6a0404321a05, 0x7d20ffbd3e99e5ff, 0xcaff043b000bbda0, 0x3d0d664affbda918, 0x0456040d04642601, 0x4c15b8ff0451080b, 0x0f033d0901c2ff3c, 0xff3d991501ff045f, 0x04762e033d174c27, 0x43e760ff0471080b, 0x3f053d71f50cff3d, 0xff3c256684ff047f, 0x06c46c043d275ab4, 0x051c510405a80006, 0x04b8320404d80008, 0x04a5000904aa000d, 0x046fffbcad4a4eff, 0x66ff04b301123d06, 0x3c9c0923ffbd3741, 0x04c57e0504ca0111, 0x42e5ffbdcd4614ff, 0xa7ff04d3070ebd44, 0x3cb32d41ff3d571d, 0x04ee020e04fc000d, 0x42457bff04e90002, 0x070ebb836947ffbd, 0xff3e118a2bff04f7, 0x050e020b3b9c7421, 0xed8dcfff0509050d, 0x000c3d8f6e6aff3c, 0xff3e5f20b2ff0517, 0x0564070e3da07cbd, 0x0536000e05448d05, 0x8fab05ff0531050d, 0x01123d898e01ffbc, 0xffbd5d4307ff053f, 0x0556030d3dd43277, 0x087533ff0551000d, 0x0002bd5131aaffbe, 0xffbd020658ff055f, 0x05880e0e3e073568, 0x05756304057a7b05, 0x3f35ff3d8a16deff, 0xd0ff05838b053dc5, 0xbd9c0fbdff3d0bf8, 0x0595190e059a0211, 0xa128ff3d4e5531ff, 0x8fff05a3000239d4, 0x3eae2664ff3e8056, 0x05f404060638000e, 0x05c63a0405d45504, 0x308067ff05c11e05, 0x3605bd1a5664ffbd, 0xffbda18cacff05cf, 0x05e63905bd53f4dc, 0xefaf40ff05e12905, 0x5704bdb9d142ffbd, 0xffbd7602aeff05ef, 0x06181506bd97d5c9, 0x06050b06060a2e04, 0xdb06ffbc319f1dff, 0x12ff06131205bd00, 0xbc3e9504ff3ca947, 0x06250405062a0211, 0x0fc1ffbcd23767ff, 0x21ff06335004bd34, 0x3cb6cadcffbcc4cf, 0x0660020606801006, 0x064d55040652060e, 0x6cf6ffbd381566ff, 0xb1ff065b2b05bdb6, 0xbbbece64ffbd179c, 0x066d250406723304, 0x77baffbca56a08ff, 0x0cff067b000b3b9b, 0x3d3273edffbd6a0d, 0x0696021106a44b04, 0x8014e6ff06914001, 0x2504bd0388ffffbb, 0xffbcef54aeff069f, 0x06b61306ba80ad55, 0x3ef712ff06b10b0e, 0x0107bcbf5c42ff3d, 0xffbc93b191ff06bf, 0x07e41406ba30c4d1, 0x0714000b0758010b, 0x06e6100506f4000c, 0xaa7bf0ff06e17504, 0x020dbd714a97ffbd, 0xffbd04eff8ff06ef, 0x070624053b0199b0, 0x8b54e7ff07013d01, 0x8f04bdc7e397ffbc, 0xffbeba7d2eff070f, 0x0738230ebe709577, 0x0725190e072a9605, 0x3d77ff3dcc9e2bff, 0x44ff0733c9043d59, 0xbe8e9613ffbd627a, 0x0745a604074abb04, 0x7c3cff3c9f19f8ff, 0xc8ff075301073d7c, 0x3d15bc3affbd9fa0, 0x0780080e07a0010d, 0x076d120507729305, 0xc401ff3d819ff2ff, 0xceff077b98043b67, 0x3d6ad9b5ffbe0024, 0x078d090b07928d05, 0xc0b4ff3d3cc62dff, 0xcaff079b95043da4, 0x3be4bc8fffbdecdc, 0x07b6010907c40006, 0xf4d2ceff07b1230e, 0x160e3dbc5b96ff3d, 0xff3db15292ff07bf, 0x07d604063c08e3cb, 0x7b42aeff07d19804, 0x040e3d9e8616ff3c, 0xff3d497d57ff07df, 0x0874070b3dc47629, 0x081000070830030d, 0x07fd07050802090e, 0x0ae0ffbd9d9e5dff, 0x20ff080b000bbcc3, 0x3c8d18eeffbd2212, 0x081daf040822000c, 0x330cff3c6c60e2ff, 0xd6ff082b040ebc74, 0x3d74edf6ff3c7227, 0x084618060854000c, 0xe12529ff0841020b, 0x090e3d284196ff3b, 0xffbc6efffcff084f, 0x0866010e3d18f7d0, 0x32282fff08610107, 0x020b3d47c02fffbc, 0xffbc0d993eff086f, 0x08bc18063df18802, 0x088e190e089c0007, 0x283736ff0889020e, 0xa7043d641799ff3c, 0xffbd9ffb7fff0897, 0x08ae86043d88cd9f, 0xd3d5d1ff08a91606, 0x000cbbf8cad7ff3d, 0xff3d8cb62fff08b7, 0x08e0a7043df2f9c1, 0x08cd190608d20008, 0xe235ffbd3e62a7ff, 0x29ff08db1906bdc0, 0xbd2d878fffbc44a7, 0x08ed000708f2010d, 0xbeb0ffbd1f8799ff, 0x22ff08fb1c053c96, 0x3c8ef510ff3da164, 0x0b445d040d80b604, 0x099c14040a282a04, 0x0938001109580604, 0x09250501092a0304, 0x2733ffbcdc6a0aff, 0xd9ff0933070dbcdf, 0xbcd88dcaffbcdb64, 0x0945000e094a0204, 0x4789ffbce08148ff, 0x64ff0953070ebcda, 0xbcda1aefffbcd4f0, 0x096e160e097c1501, 0xd7d1a3ff09690011, 0x210ebccf19a8ffbc, 0xffbcd942afff0977, 0x098e0011bcde0e93, 0xd8cb4fff09890007, 0x0006bcd21eb9ffbc, 0xffbcc9c783ff0997, 0x09e4070ebce918f9, 0x09b6000909c40011, 0xc9adf4ff09b12804, 0x020ebcbc9d1cffbc, 0xffbcd5cb8eff09bf, 0x09d6060dbce26a76, 0xce9801ff09d1000e, 0x2504bcb5b03fffbc, 0xffbcb0d120ff09df, 0x0a080012bc74f4d3, 0x09f5001109fa2404, 0x7bffffbcdbbc20ff, 0xf1ff0a031c0ebcae, 0xbce02999ffbcd300, 0x0a1500080a1a190e, 0xe1e5ffbccb3d0fff, 0x56ff0a231801bcc4, 0xbcf95c7dffbcd7da, 0x0a74070e0ab84f04, 0x0a4662050a54000e, 0xb755fcff0a410006, 0x070bbcfa8cbfffbc, 0xffbcfe7f3cff0a4f, 0x0a663d04bccaef48, 0x9808f4ff0a610009, 0x060dbcc85d2bffbc, 0xffbc35d295ff0a6f, 0x0a980011bc92cabb, 0x0a85080e0a8a110e, 0x6922ffbce0ce4cff, 0x37ff0a934e04bcbc, 0xbcdddcc7ffbcd982, 0x0aa51c0e0aaa140b, 0x1c23ffbca4138bff, 0x9dff0ab33601bcce, 0xbc9fb1d7ffbcc490, 0x0ae000060b00170e, 0x0acd02090ad2030b, 0x5e21ffbca21b55ff, 0x3cff0adb0012bd01, 0xbc11d87effbc8e2a, 0x0aed02060af20406, 0x0817ffbd144748ff, 0xadff0afb1006bcf8, 0xbd18319bffbcb91d, 0x0b16220e0b245104, 0xa1f0d0ff0b110007, 0x260ebc4b7936ffbc, 0xffbcb0fb72ff0b1f, 0x0b360011bcd4e7b3, 0xd06444ff0b310108, 0x0009bcc1f112ffbc, 0xffbca91051ff0b3f, 0x0c64010cbcea5b94, 0x0b94020b0bd80a0b, 0x0b6600110b74010b, 0xfb9c21ff0b617e05, 0x060dbd12ce96ffbc, 0xffbce8d4aaff0b6f, 0x0b860011bc00cc1b, 0xb6fd57ff0b81190e, 0x010ebd052487ffbc, 0xffbd0e5f77ff0b8f, 0x0bb8080ebc80724d, 0x0ba5000e0baa060e, 0xe00fffbd06d1c8ff, 0x56ff0bb3070ebca3, 0xbd07ae05ff3ba0be, 0x0bc5100e0bca0107, 0x0ca6ffbba9c6ccff, 0xbeff0bd30002bc91, 0x3b327387ffbc09c5, 0x0c002b0e0c20b204, 0x0bed00080bf20006, 0xe75effbc0d3d92ff, 0x56ff0bfb05063be7, 0xbc90ebdeffbd13be, 0x0c0d88040c120011, 0xaa83ffbd43ccf4ff, 0xb7ff0c1b0107bdbe, 0xbc315f92ffbd0df8, 0x0c36050e0c440d0e, 0xb586faff0c31020e, 0x0011bc6428dcffbc, 0xff3c572d20ff0c3f, 0x0c56b504bc005688, 0x87e588ff0c510c06, 0x0006bd0c72eeff3c, 0xff3dabc9e1ff0c5f, 0x0cf4070b3d086626, 0x0c90140e0cb0020b, 0x0c7d020e0c820009, 0x9f75ffbd044aa3ff, 0x36ff0c8b0209bba5, 0xbd42a5cdffbcbc5a, 0x0c9dae040ca20207, 0xf3c4ffbcefc314ff, 0xc3ff0cab0011bc3e, 0x3b641d2fffbcb242, 0x0cc601070cd43801, 0xb3b42aff0cc1060d, 0x310ebce91528ffbc, 0xffbc039857ff0ccf, 0x0ce6010ebd35bd00, 0x040828ff0ce1000e, 0x020ebc2e476dffbd, 0xffbd003938ff0cef, 0x0d3c32013b97d25b, 0x0d0e25010d1c280e, 0xb003a9ff0d091e01, 0x0009bc185bdfffbc, 0xff39aef14bff0d17, 0x0d2e060dbd17d5c7, 0x40b144ff0d29320e, 0x2d0ebd25616cffbc, 0xffbcfc0c6bff0d37, 0x0d600006bd7cd46d, 0x0d4d00080d52a304, 0x8520ff3bf6684eff, 0x05ff0d5b86053d01, 0xbc260198ff3d3ba5, 0x0d6d05060d721e0e, 0xf56effbd2de6e5ff, 0xadff0d7b0e06bbd3, 0xbd69a9d7ff3c778d, 0x0ea4210e0fc0010c, 0x0dd4120e0e181c0e, 0x0da601120db4060d, 0xa3cabcff0da10007, 0x1806bd3cabd1ffbc, 0xffbc58c9b6ff0daf, 0x0dc6c304bcdf7a9d, 0xbf3ae3ff0dc1080e, 0x080e3d0e9729ffbb, 0xffbce8215eff0dcf, 0x0df8060dbb60bef1, 0x0de5170e0dea000c, 0xf2a1ffbc296c48ff, 0x3eff0df301093c13, 0xbd2142f8ff3cc1fd, 0x0e056b050e0a180e, 0xc948ff3d8cc3b4ff, 0x42ff0e1300093c9a, 0xbd0d1c9dff3dbdc5, 0x0e4000060e601d0e, 0x0e2d070d0e32070b, 0x9bd4ffbd4455b3ff, 0x3bff0e3b000c3bec, 0xbe05ee2dffbdc248, 0x0e4d000c0e520b0b, 0x3c9cffbc9208ddff, 0x21ff0e5b10063af7, 0xbc40fbbaff3cd55b, 0x0e76060d0e84090b, 0x1c82baff0e711f0e, 0x0002bc948000ffbd, 0xffbd00f4c1ff0e7f, 0x0e96000c3911406a, 0x2cb0dfff0e910011, 0x1f0e3c1be3ffff3d, 0xff3db4b038ff0e9f, 0x0f3400073d09dbdf, 0x0ed000090ef02d0e, 0x0ebd070d0ec20112, 0x932aff3ca96926ff, 0xbeff0ecb290ebd5f, 0xbd3688baffbca894, 0x0edd00110ee2c804, 0xc427ffbc91c43dff, 0x29ff0eeb000cbd0b, 0xbd8a29dbffbd2c0e, 0x0f06330e0f14cc04, 0xab870dff0f01c704, 0x050bbd1b4363ffbc, 0xffbd02afd3ff0f0f, 0x0f26000cbd44a90e, 0x7d3b10ff0f21070d, 0x320ebdf4c490ffbd, 0xffbda608dfff0f2f, 0x0f7c0112bddea446, 0x0f4e090b0f5c110b, 0x9883e7ff0f49230e, 0x0207bc46ba55ff3c, 0xff3d12cf84ff0f57, 0x0f6e000c3d8b75bb, 0x89ccfaff0f697405, 0x02073d15349aff3d, 0xff3dc6d90fff0f77, 0x0fa000063e198bf0, 0x0f8d00080f920107, 0x65b8ffbce9f5adff, 0xacff0f9b01113828, 0x3d0b5b8dffbe5c27, 0x0fad350e0fb20206, 0xb276ffbddc37daff, 0x5aff0fbbc004bd5e, 0xbcd93cd8ff3b5c74, 0x1054001210e00107, 0x0ff0080e1010190e, 0x0fddba040fe2030e, 0x5ab8ff3c0d90f7ff, 0x8dff0febbd04bd27, 0x3b953308ff3dbd02, 0x0ffd180e10020009, 0x7601ff3dd6a711ff, 0x14ff100b01093e51, 0xbd1d2b39ff3ce794, 0x10261c0e10341d0e, 0x73467dff10210009, 0x070dbbecc34bff3e, 0xffbdf60989ff102f, 0x1046290e3d34f455, 0x079554ff10411f0e, 0xcc043d2e85a5ff3e, 0xff3bc6188eff104f, 0x109c0e0bbd982461, 0x106e180e107c290e, 0x85400dff1069c304, 0x0009bcbdbdefffb8, 0xff3d22861eff1077, 0x108ecc04bd1315f7, 0x07a8bbff10890007, 0x2f0ebc0d8288ffbd, 0xffbd6eab95ff1097, 0x10c0060dbdc103f9, 0x10ad7b0510b20d0e, 0x3950ff399dbec5ff, 0xd1ff10bb2d0ebd67, 0xbc4bbe53ff3d5cc0, 0x10cd070e10d20002, 0x99c6ff3a81ece5ff, 0x31ff10dbca04bdba, 0xbe19f46cff3bd319, 0x112c890511700d0e, 0x10fe0112110c060d, 0x43c240ff10f9ba04, 0x010ebdcd7687ffbd, 0xffbc5ed6aeff1107, 0x111e080e3c2882e2, 0x0b3004ff1119030e, 0x070d3cbebe0effbd, 0xff3d86ff48ff1127, 0x1150060dbd315a62, 0x113dc4041142030b, 0x382effbcf5e9a3ff, 0x97ff114b0b0b3c9e, 0xbd42544bffbdbd89, 0x115d030e1162060e, 0x84efffbd576e2eff, 0xc2ff116b080ebdd0, 0x3d1ae705ffbc8914, 0x1198060d11b8070b, 0x11851206118a0505, 0xc1bcffbd9bfd5bff, 0x9eff11930207bd24, 0x3c8cec6effba35a6, 0x11a5070d11aa0012, 0x1d26ffbcba968fff, 0x63ff11b302073d8f, 0x3dd2752bff3d1b69, 0x11ce000811dc0012, 0x1f5f3fff11c91c0e, 0x41053d8d5e82ff3e, 0xff3dd10ed3ff11d7, 0x11ee1d0e3e22a6e9, 0x777282ff11e91b0e, 0x0112bd4969eaff3d, 0xff3dec491aff11f7, 0x000000133d2911fb, 0x000003e800000008, 0x000011fc00000001, 0x0900000f00000000, 0x02481d0104843b01, 0x00a00901012c0e01, 0x003c0101005c0401, 0x00290504002e220e, 0xa29fffbcbd70a6ff, 0x52ff00370a04bcb2, 0xbcbf8b4bffbcc9ef, 0x0049010d004e020d, 0x2a43ffbcc639d2ff, 0xe7ff0057000cbcb6, 0xbca87b3fffbcc74b, 0x0072000300800305, 0xbead56ff006d030d, 0x0801bcde3f0affbc, 0xffbcaaba6cff007b, 0x0092040dbcc0c889, 0xbf1908ff008d010d, 0x0d04bc9ae14cffbc, 0xffbca530a4ff009b, 0x00e8050bbc6f5256, 0x00ba060d00c8000c, 0xc6af07ff00b50a01, 0x070dbce55cffffbc, 0xffbc80aa97ff00c3, 0x00da020dbb3ad4a8, 0xc094e6ff00d5020b, 0x1704bc97077affbc, 0xffbc95e564ff00e3, 0x010c010dbc4eb550, 0x00f9070400fe0007, 0xf517ffbcecc93eff, 0xf3ff01070604bcb5, 0xbc96da1fffbce130, 0x01190306011e0605, 0x13fcffbccc720cff, 0x6eff0127000cbc94, 0xbbe96638ffbcbb02, 0x0178050d01bc1201, 0x014a120e01580e04, 0xec354dff01450304, 0x010bbca82d05ffbc, 0xffbd4c5149ff0153, 0x016a0006bd20b42f, 0x60d411ff0165090b, 0x9504bb72598effbc, 0xffbca583d7ff0173, 0x019c2504bd112c52, 0x01890604018e0d04, 0x02a0ffbcaa1b15ff, 0x34ff01970006bc4f, 0xbcbd24e9ffbbf213, 0x01a9000b01ae030b, 0xb84affbd6d6e43ff, 0x76ff01b70705bc05, 0x3bedc44bffbc4fac, 0x01e4170402043404, 0x01d10c0401d6040d, 0x1e4affbcaf24f7ff, 0xa9ff01df0804bc6e, 0xbbc422c4ffbc9460, 0x01f10f0501f6070e, 0x2ab6ffbc493032ff, 0xd0ff01ff0f053c4c, 0xbb939925ffbc80c2, 0x021a050d0228030b, 0x7f17cfff02152a0e, 0x0e05bc5eaa03ffbb, 0xffbc70dab9ff0223, 0x023a00063be672a7, 0x9fe896ff02350c05, 0x0b053c78e2f2ffbc, 0xffbad8acccff0243, 0x03681105bce5728f, 0x02980d0602dc4d04, 0x026a110402782704, 0xd4ba38ff02650c04, 0x2701bc88a54dffbc, 0xffbc41c509ff0273, 0x028a2401b9b10bd2, 0x37acd8ff02850803, 0x0d0ebace34c3ffbc, 0xff3c520c30ff0293, 0x02bc1106baf1a34f, 0x02a9070b02ae2b04, 0xf1e7ffbc718090ff, 0x6eff02b72601bccd, 0xbb065eafffbcb811, 0x02c92a0102ce4404, 0xa588ffbd2c2381ff, 0xe7ff02d72e01bce8, 0xbc29f8ebffbce6b1, 0x0304130603240605, 0x02f1030b02f6350e, 0x9fb7ff3c598d65ff, 0x72ff02ff030d3d27, 0x3c205b97ffbca823, 0x0311610403167204, 0x2f34ffbd194652ff, 0xe3ff031f2701bc86, 0xbde7d587ffbd34fc, 0x033a090503480007, 0xb5c38eff0335030b, 0x0b05bd5f7b10ff39, 0xff3ce8ce67ff0343, 0x035a3101bca83e87, 0x1e4deeff03558504, 0x11033ccf8195ffbb, 0xffbd1e83caff0363, 0x03f844043d0f2a27, 0x0394070e03b42404, 0x0381080403860e04, 0x5578ffbc9139e0ff, 0x98ff038f0007bbe9, 0x3c6b1fdbffb93dc5, 0x03a1000903a61a04, 0x54ebffbcb5e7d8ff, 0xc1ff03af0112bbc5, 0xbbddc1a0ffbd67fa, 0x03ca000603d80d0e, 0xab2f3dff03c53a04, 0x01063d19ab30ff3c, 0xffbcf9bce7ff03d3, 0x03ea190ebb751d9d, 0x74b3e5ff03e53d04, 0x25013c7f77c8ffbb, 0xffbbe244a2ff03f3, 0x0440020bbd41c28b, 0x041231010420010d, 0x0e8473ff040d010b, 0x000dbc704af5ffbd, 0xff3c59d210ff041b, 0x0432000bbcc9091e, 0x8a4e7dff042d350e, 0x2a01bdcc83deffbd, 0xff3b8a7fa1ff043b, 0x046426013cdceef3, 0x0451080b0456040d, 0x9cb9ff3c37ad22ff, 0x20ff045f0f033cf6, 0x3d082af6ff3d89c6, 0x04711f0504762e03, 0x9477ff3ccbc85eff, 0xfdff047f30013d59, 0x3d2afb8cff3c8d30, 0x05a8050d06c4020e, 0x04d8000c051c000e, 0x04aa030b04b88105, 0xd45456ff04a5bf04, 0x8204bd613ba4ffbc, 0xffbca888f6ff04b3, 0x04ca5c04bb1e03e2, 0xdad078ff04c50107, 0x8804bd8313b7ffbc, 0xffbdce6d83ff04d3, 0x04fc8004bcf6acdb, 0x04e9010b04ee0009, 0x69faffbd84bb90ff, 0x1dff04f74d05bc8a, 0x3cbf195dffbc0ea2, 0x0509010d050e020d, 0x5623ffbc89df54ff, 0x1fff051700073bdd, 0x3d2bead6ff3b5465, 0x0544030d0564000c, 0x0531550405360111, 0x2156ffbd2dbeadff, 0xb6ff053f030bbdc1, 0x3bed4028ffbc1dbc, 0x0551b50405561706, 0x779aff3dad52a3ff, 0xefff055fa7043cb6, 0x3d18d661ffbb99ca, 0x057a010b0588030b, 0xf940a0ff0575000d, 0x000dbd32f0d7ffbd, 0xffbd1b108dff0583, 0x059a000d3c91b8fc, 0x00b46dff05950009, 0x02053dce8fd1ffbd, 0xffbcc55117ff05a3, 0x0638000e3d6bbb5f, 0x05d48f0505f4000c, 0x05c1000205c6030b, 0xc6b1ffbcbfb544ff, 0xf8ff05cf09053b5a, 0x3cf51acaffbc97cf, 0x05e1000205e66f04, 0xa2a1ffbcd3b057ff, 0x7cff05ef010b3d1f, 0xbdc0cb7fffbcd8fd, 0x060a190506180008, 0x8b75fdff06050007, 0x2d043b9f9f49ffbd, 0xff3c283320ff0613, 0x062a8a053d2917ae, 0xaca1c5ff06250006, 0x00023d1595adff3d, 0xffbe2e9975ff0633, 0x0680000c3e333ad8, 0x0652820406609505, 0xfe315bff064d9005, 0x010ebdf60d4bff3c, 0xff3d72549cff065b, 0x0672bc043e0867af, 0xe4d52bff066d010e, 0x0007bd80189affbd, 0xff3e6bb0c4ff067b, 0x06a491053e854422, 0x0691000706966d05, 0x8b31ff3d20b6a9ff, 0xc3ff069fa5043da8, 0xbd460da2ff3dd81b, 0x06b1820406b60009, 0x583cff3e6c1ee5ff, 0x85ff06bfa704be3d, 0x3e0617dcff3d8e7c, 0x07587f0407e4000c, 0x06f402120714040b, 0x06e1000d06e6060d, 0xdc40ffbd43928dff, 0x79ff06ef000239a1, 0x3e5bac38ff3e21d0, 0x0701000207065a04, 0x16ceffbccc7aefff, 0x46ff070f00023df7, 0x3eba3342ff3e1ba2, 0x072a670407387a04, 0x93fe23ff0725050d, 0x02113d41cfd1ff3c, 0xff3d8f6bb6ff0733, 0x074a7b043e332665, 0xf1ee33ff07450211, 0x1a0e3e94a723ffbd, 0xffbcffea7eff0753, 0x07a0020dbdec4235, 0x077289040780010d, 0xff4413ff076d030b, 0x95053d8c7784ff3c, 0xffbbd9e72aff077b, 0x07921106bdd1bded, 0x56d494ff078d060e, 0x00073d8e633fff3c, 0xff3bf81c1fff079b, 0x07c4030b3d378082, 0x07b1060d07b62e0e, 0x1882ff3d7bf9c9ff, 0xa8ff07bf00063e55, 0xbbd47ffcff3e20e6, 0x07d1030607d6290e, 0xbd50ff3d6e3273ff, 0xc3ff07dfac043de5, 0x3da3fe3dff3cd9ae, 0x0830190e08748a04, 0x08020b0608104c04, 0x1de48cff07fd0f0e, 0x3a04bdc36810ff3d, 0xffbd2ab9a4ff080b, 0x08226404bc2a8f4c, 0xc192b8ff081d040e, 0x00063d69b599ff3d, 0xff3dc354fbff082b, 0x085400023d6941f1, 0x0841410108467304, 0x5bf1ff3d0b6866ff, 0xd5ff084f8505bcd9, 0xbe1b3f4dff3d1b76, 0x086100070866010b, 0x9c8cffbdf556dcff, 0x49ff086f27033d5d, 0x3d84a385ff3dc307, 0x089c030e08bc2b0e, 0x08890906088e030d, 0x0f51ffbdc3d4b9ff, 0x7cff089792043d3f, 0x3dada6a6ff3e118f, 0x08a9000908ae1806, 0x542dff3ddd1d78ff, 0x0fff08b79b043d71, 0x3d550b4effbdd2b6, 0x08d2010708e0050b, 0x2e328eff08cdbe04, 0x4705bcb7af97ff3d, 0xff3d18ced7ff08db, 0x08f2aa043db2e388, 0x6b7101ff08ed0c06, 0xcd04bb0980bcff3d, 0xff3dd4c6e4ff08fb, 0x0d809504bd825552, 0x0a2841040b445704, 0x09583001099c3704, 0x092a090509381005, 0xc127b0ff09250006, 0x2e04bcd2a25affbc, 0xffbcba8959ff0933, 0x094a0008bcaf148b, 0xbb89d6ff09450107, 0x2304bcae4cfbffbc, 0xffbcb3f01fff0953, 0x097c0006bca0c823, 0x09690009096e3705, 0x4cddffbc8e09afff, 0x6aff0977000cbcb5, 0xbc9b68c6ffbcb3ec, 0x09890d06098e2c04, 0xbd0affbcc80087ff, 0x67ff0997000ebce7, 0xbd001b44ffbce215, 0x09c4070e09e40006, 0x09b1010c09b6060b, 0xe45cffbca2e779ff, 0x61ff09bf0012bc41, 0xbc265029ffbc8a9a, 0x09d1001109d60111, 0xbfddffbcb81627ff, 0x0fff09df3804bc98, 0x3a06d1a3ffbce6b7, 0x09fa0d060a080111, 0xdd99c1ff09f54004, 0x0f06bd020dcbffbc, 0xffbce6007aff0a03, 0x0a1a3904bd0fa7f2, 0xbc16adff0a15010e, 0x010ebc9068ddffbc, 0xffbd14f642ff0a23, 0x0ab8060bbcda5c35, 0x0a54010c0a74020e, 0x0a41010b0a46060d, 0x287affbd18030fff, 0x23ff0a4f070dbcf1, 0xbc8f638fffbcce21, 0x0a61070d0a66000e, 0x4b93ffbccb7e23ff, 0x5eff0a6f020bbc25, 0xbc4ea60cffbcabbc, 0x0a8a010c0a98070e, 0x896fadff0a850006, 0x0109bd13ca17ffbc, 0xffbbba0cf3ff0a93, 0x0aaa0108bcacc1dc, 0xbd5bb0ff0aa50107, 0x0002bc9a7030ffbc, 0xffbc9b3d5fff0ab3, 0x0b001b01bac560a2, 0x0ad201080ae00605, 0xc1c6f5ff0acd0901, 0x0106bca313cfffbc, 0xffbcd0213eff0adb, 0x0af2210ebc5e368c, 0xaca806ff0aed0007, 0x0111bc847ed6ffbc, 0xffbcb04e62ff0afb, 0x0b240008bbdbaaa5, 0x0b115f050b16000c, 0x60ffffbcb37ba5ff, 0xf9ff0b1f010cbc92, 0xbc21db13ffbc84db, 0x0b31000e0b36020e, 0xe242ffbcbe0fd6ff, 0x2bff0b3f3501bc55, 0xbb87e56effbc6130, 0x0bd802080c64000c, 0x0b74140b0b940012, 0x0b61250e0b668804, 0x9c3bffbcb3480fff, 0x12ff0b6f9404bd05, 0xbd155b18ffbc7a12, 0x0b8131010b860008, 0x5f2effbce8ecb6ff, 0x02ff0b8f080ebc95, 0xbb8a9c4bffbc592f, 0x0baa130b0bb8060d, 0xb4f3f6ff0ba5030b, 0x3801bc6761b8ffbc, 0xffbca15a4bff0bb3, 0x0bca0008bbafe36d, 0xdbddacff0bc50e0e, 0x230ebc8921b4ffb9, 0xff3cb5ba50ff0bd3, 0x0c200d0bbc245402, 0x0bf2000e0c00060e, 0x102df1ff0bed0112, 0x5705bcc56e00ffbd, 0xffbcb7ad19ff0bfb, 0x0c124805bc588aa0, 0xb687deff0c0d3b01, 0x080bbbe9c997ffbc, 0xffbb394491ff0c1b, 0x0c4432013c3712f0, 0x0c310b030c367f04, 0x49bcffbcd26d16ff, 0x2fff0c3f0006bc8c, 0xbc454d18ffbd74be, 0x0c51000e0c56040e, 0x8891ffbd058f4eff, 0x00ff0c5f5605bbbb, 0x3d454010ff3c6efa, 0x0cb0020b0cf4030b, 0x0c8291040c900012, 0xda1f17ff0c7d070d, 0x010bbca2cf19ffbc, 0xffbd26dad9ff0c8b, 0x0ca2130ebd92002d, 0xa22843ff0c9d050e, 0x0107bba14964ffbc, 0xffbcc84fbaff0cab, 0x0cd40109bc2b59d6, 0x0cc1020e0cc6120e, 0xb550ffbcb8f64bff, 0xa9ff0ccf0002bb21, 0x3c1906e8ffbc8a7b, 0x0ce13f050ce65005, 0x2ad3ffbd31c1d0ff, 0xc3ff0cef0209bd04, 0xbcf579bfffbc642f, 0x0d1c79040d3c190e, 0x0d09000e0d0e020e, 0xa7a3ffbccf68a2ff, 0x10ff0d173701bc21, 0x3b89aeddffbc48ea, 0x0d29000e0d2e020e, 0x7279ffbd0d38dcff, 0x6eff0d370006bbf5, 0xbcd1d336ff3c899b, 0x0d522a010d60060d, 0x5bc4deff0d4d310e, 0x0207bd1b7370ffbc, 0xffbb81194aff0d5b, 0x0d722c033cbb1215, 0x921d36ff0d6d3801, 0x1d0e3c021e00ffbc, 0xffbd66979dff0d7b, 0x0fc0010cbc9cf982, 0x0e18000c0ea40b0e, 0x0db4020e0dd4060e, 0x0da1000e0da60207, 0x52c8ffbcd04cffff, 0x8fff0daf8105bca3, 0xbd0c4296ffbcbc19, 0x0dc1070d0dc60209, 0x8793ffbc817bb4ff, 0x46ff0dcf060d3c32, 0xbd2e7dd5ffbcb406, 0x0dea00060df8070e, 0xacfe23ff0de5b204, 0x1606bb98f1faff3c, 0xffbc9ba336ff0df3, 0x0e0a070dbceb90b9, 0xcb7b83ff0e050606, 0x0109bb55959fffbc, 0xff3cf5935cff0e13, 0x0e60030ebd7767ce, 0x0e3294050e40010e, 0xb5f82eff0e2d0e0b, 0x0009bc4d3274ffbc, 0xffbd3bedf9ff0e3b, 0x0e52ab04bcb1ba00, 0x5dc835ff0e4d060d, 0x070d3cd609efffbc, 0xffbc827526ff0e5b, 0x0e840108bdb00ddc, 0x0e71070e0e76110b, 0x768affba6b6654ff, 0xa5ff0e7f070dbce6, 0x3d909e45ff3a1855, 0x0e91af040e960006, 0x20e7ff3d6d873cff, 0x11ff0e9f08063c8c, 0x3ab3e793ffbcfc5f, 0x0ef001070f34090b, 0x0ec200080ed0190e, 0x2cb147ff0ebd0109, 0x0006bce99f75ffbc, 0xff3b4bdaf6ff0ecb, 0x0ee20208bc98cf14, 0x9bf6fdff0edd310e, 0x030bbcfe244bffbc, 0xffbb9bd3b6ff0eeb, 0x0f14060dbc6379f7, 0x0f0102080f060111, 0x9719ffbc85140dff, 0x36ff0f0f020d3b88, 0x3cd4b883ffbc545f, 0x0f21070d0f260011, 0x498affbcc8e0acff, 0x7fff0f2f000c3c8c, 0x3d7cc467ff3cc451, 0x0f5c00070f7c140b, 0x0f4901090f4e280e, 0xecd7ff3b8d10ddff, 0x05ff0f57310ebd1d, 0xbd38e7e3ffbc9b77, 0x0f692d010f6e3c01, 0xc411ffbda0e5bcff, 0xbfff0f77060dbd35, 0x3cb00a8aff3bc1a6, 0x0f9201120fa0000c, 0x11b11cff0f8d0107, 0x11063ce1891cff3c, 0xffbb5edce9ff0f9b, 0x0fb22d0ebcdb04b4, 0xe0da0aff0fad0108, 0x01073d85809cff3c, 0xffbcae0903ff0fbb, 0x10e001123d75078e, 0x10103a0110540008, 0x0fe2120b0ff09b04, 0xd4034fff0fdd1d0e, 0x0007bcb3d33bffbd, 0xffbacff1aaff0feb, 0x100202073d2b21dc, 0x049846ff0ffd070d, 0x2e05bd97d2efffbd, 0xff3cda8fa9ff100b, 0x10342b0ebe0990c1, 0x102101091026140b, 0xe452ff3c951ae3ff, 0x2cff102f0d0ebc91, 0x3d5e46a3ff3c0f65, 0x1041840510460207, 0x90e5ffbc61beb2ff, 0x24ff104f0a0bbd8c, 0x3de340bdffbbd2a4, 0x107c030e109c2d0e, 0x10690e0b106e010e, 0xbdb1ffbd88a26bff, 0xd5ff1077060dbcfa, 0x3cdb9d56ffbd7a92, 0x10890208108e050b, 0x78aeff3ca35e2aff, 0x0cff10970208bc80, 0x3c2d12fdff3d87bf, 0x10b2010710c00207, 0x8a5ad5ff10adcd04, 0xb504bd957890ffbc, 0xffbcff9bc1ff10bb, 0x10d2bd043d64e1fa, 0xc41b27ff10cdb504, 0x070b3d7d5552ffbb, 0xff3ccc5600ff10db, 0x117001073e1d6c23, 0x110c0505112c0108, 0x10f9340110feb304, 0x0756ffbd183614ff, 0xbfff11070007bd72, 0xbd331a49ffbc0c23, 0x11190605111e0008, 0xe506ffbd43372bff, 0x53ff1127070ebc75, 0x3aeb133dffbc5ce3, 0x1142010511501305, 0x819e72ff113d0208, 0x00073c90bc70ffbd, 0xffbc00f909ff114b, 0x116204063c977301, 0x9db11aff115d0d0e, 0x130ebcff0cecff3c, 0xffbc54dccdff116b, 0x11b80d0e3c6ecb90, 0x118a011111980806, 0xc8c636ff11850b0e, 0x050ebd79f4ceffbc, 0xffbd7a3c14ff1193, 0x11aa030e3bbac229, 0x93557dff11a5000e, 0x1606bbaa1740ffbc, 0xff3c8666dcff11b3, 0x11dc330ebcdf93df, 0x11c90c0511ce0f06, 0x110fff3d6e637aff, 0x88ff11d705053caf, 0x3c8e1f29ffbd4af1, 0x11e9410111ee360e, 0x886cffbce633e3ff, 0x7aff11f700063ba7, 0xbd897411ffbe4007, 0x0000000800000013, 0x00000001000003e8, 0x00000000000011fc, 0x04843b010900000f, 0x012c100102481d01, 0x005c0d0400a00901, 0x002e010e003c0404, 0xa4c746ff00290009, 0x050dbcd7a830ffbc, 0xffbcb057aeff0037, 0x004e0e0ebca51cf2, 0x879562ff0049070e, 0x0801bc9aadb0ffbc, 0xffbca81f41ff0057, 0x00800401bceb6a8a, 0x006d16040072230e, 0xd3c3ffbc977f28ff, 0x3eff007b0006bc80, 0xbcb149ccffbca153, 0x008d2a0e0092050d, 0x9472ffbc894a67ff, 0xe9ff009b340ebca2, 0xbcc0643dffbc5aae, 0x00c8010d00e8040d, 0x00b5070e00ba0704, 0x49d5ffbca85dfaff, 0x1dff00c30007bcff, 0xbc948115ffbcad55, 0x00d50a0400da1f04, 0x1a04ffbca151fbff, 0x57ff00e3090bbc73, 0xbbcf5155ffbc596e, 0x00fe000c010c080b, 0x9b4e99ff00f9060e, 0x000bbce00987ffbc, 0xffbd4b90c3ff0107, 0x011e000cbc298a07, 0x370b93ff01190605, 0x0805bcb4a4d8ffbc, 0xffbc766234ff0127, 0x01bc020db903c1e4, 0x01580a0b0178010d, 0x0145010b014a2f0e, 0xac75ffbcd274d2ff, 0x3eff01534904bc88, 0xbcb37ea7ffbd1cfd, 0x0165240e016a4104, 0xd37effbc7d0945ff, 0x21ff01731801bdb4, 0x3b6d09e6ffbc5093, 0x018e090b019c0006, 0x7e0843ff0189020b, 0x1801bbaf5cfbffbc, 0xff3b26f053ff0197, 0x01ae0b053c8c33ff, 0xba16dbff01a92304, 0x7504bc649e88ffbc, 0xffbd0279b3ff01b7, 0x02040c05bc9b362d, 0x01d60f0401e44b04, 0xae7d2dff01d10706, 0x0b05bd13c16effbc, 0xffbc807ba5ff01df, 0x01f60605bc0036b6, 0x2ce450ff01f1350e, 0x0a05bc876cb3ff3c, 0xffbcb8f481ff01ff, 0x0228070bbb8bd7f1, 0x0215020b021a3d04, 0xb5f1ffbc4840cbff, 0x17ff0223020bbb04, 0x3c1de666ffbc54e9, 0x02350008023a0006, 0xfe29ff3bf71b26ff, 0x28ff024365043cce, 0xbbc42c51ffbd44d8, 0x02dc560403681105, 0x0278000802980007, 0x02650205026a0211, 0x7214ffbcfa757bff, 0xb9ff0273010bbc99, 0x3c4ce04effbcb004, 0x02850905028a1b04, 0xd8edffbcab740aff, 0x4dff0293020b3bb5, 0xbba86ab4ffbca937, 0x02ae160402bc2704, 0xb3daf1ff02a9000e, 0x2701bc400ce5ffbc, 0xffbc34a025ff02b7, 0x02ce110639b6074d, 0x4ba4b0ff02c92501, 0x000c3c066b33ffbb, 0xffbb5eb6fbff02d7, 0x03241306bcf2e448, 0x02f62e0103041103, 0x992413ff02f12601, 0x32013d54e275ff3a, 0xffbd8619ceff02ff, 0x03160605bd119789, 0x3078b4ff0311330e, 0x29033be729c5ff3d, 0xff3ce21923ff031f, 0x03486f04bbbb1066, 0x0335000c033a6104, 0x9e7fffbca807c0ff, 0xd0ff0343000cbd4b, 0x3ce730daffbbf2d6, 0x03551406035a2a01, 0x2712ffbd02f588ff, 0x77ff0363030bbd5f, 0xbdf9a81bffbd81fb, 0x03b4050d03f83e04, 0x0386120403942804, 0x13e5bbff03810111, 0x070ebc4658e0ffbd, 0xff3b88fdc8ff038f, 0x03a60d0ebc010b22, 0x7b09d5ff03a10211, 0x020b3dbbb8d7ff3c, 0xffbcdd9dadff03af, 0x03d8000cbb10e3fb, 0x03c51f0403ca0112, 0x398fffbda354c9ff, 0x93ff03d3020ebe17, 0xbc3b1945ffba2983, 0x03e5260103ea0009, 0x9156ff3c84b399ff, 0x07ff03f3070b3cf2, 0x3c5892bbffbb3b04, 0x04202e010440050d, 0x040d010d0412080b, 0x37fcffbc1cfbb3ff, 0x82ff041b000c3c69, 0x3d01ba68ffbcb4cf, 0x042d0f0304321103, 0xc835ff3dbe3ba6ff, 0x04ff043b0211bd28, 0x3df9c24bff3d06d3, 0x04561d0504640009, 0x86c2e9ff04510f03, 0x0006bb0a3585ff3d, 0xff3d312ed8ff045f, 0x0476070b3be021ca, 0x546d9bff0471000c, 0x25013be8c312ffbd, 0xff3b4549e5ff047f, 0x06c4020e3d1907e9, 0x051c000e05a8050d, 0x04b8810504d8000c, 0x04a5000204aa030b, 0xfa3dffbcfed9edff, 0xc7ff04b38004bca3, 0xbb1d0f9cffbc9c24, 0x04c5010704ca5c04, 0xf047ffbcc4eeceff, 0xf7ff04d38804bd6b, 0xbcde01feffbdb9c8, 0x04ee000904fc7b04, 0x6eeb38ff04e9010b, 0x4e05bc78e9f5ffbd, 0xffbbf7880eff04f7, 0x050e020d3cac9582, 0xe6e86bff05090107, 0x030b3c462f2cffbb, 0xff3c3216c9ff0517, 0x0564000c3d3457f9, 0x053601110544030d, 0x1c5ed4ff05315504, 0x030bbdadd136ffbd, 0xffbc0df69cff053f, 0x055617063bd586a0, 0x9ce6aeff0551af04, 0x97043ced157fff3d, 0xffbbd472c2ff055f, 0x0588030b3d004ca6, 0x05750009057a000d, 0xbac5ffbd5e2293ff, 0xf7ff0583010b3ca2, 0x3c832670ffbd210b, 0x05950009059a000d, 0xe7d6ffbce7ab30ff, 0x26ff05a39a043db9, 0x3d87ced6ff3d214e, 0x05f4040b0638000e, 0x05c6190605d4000c, 0x99d2dbff05c10002, 0x00083b9d16abffbc, 0xffbd715e11ff05cf, 0x05e60006bc5c3596, 0x214ea5ff05e17304, 0x0806bcb9cc56ff3d, 0xffbd136a28ff05ef, 0x061892053c4cf832, 0x06051506060a8b04, 0x7001ff3d03fc50ff, 0x9aff0613000cbcbe, 0x3d837881ff3d0911, 0x0625000c062a0109, 0xaf61ffbd921163ff, 0x80ff06339c04be86, 0x3e04be14ffbc69e1, 0x066095050680000c, 0x064d510506528504, 0x4245ff3c3a1dd8ff, 0x66ff065b060d3d2d, 0x3e37ce31ff3d6c2d, 0x066d010e0672bc04, 0x92b1ffbdcdf30fff, 0x08ff067b9605bd66, 0x3e541f18ff3e6fe1, 0x0696a50406a4a704, 0x267047ff06913904, 0x00093d9ac536ff3d, 0xffbe05b00aff069f, 0x06b6030b3d865c04, 0x1eebd8ff06b1000b, 0x00073d72ea86ffbe, 0xff3db5aa26ff06bf, 0x07e413063e0898d2, 0x0714400407587e04, 0x06e6300406f40212, 0x6d92e5ff06e10d06, 0x040ebcab3f8dff3a, 0xff3d00a4b0ff06ef, 0x0706000d3aa91480, 0x927603ff07011f04, 0x3b043d6b8462ffbc, 0xff3e322bd5ff070f, 0x07380e0e3d718f04, 0x07250209072a0006, 0xe92cff3d98a33bff, 0xf7ff073306063cb3, 0x3d8eabd6ffbc7d01, 0x07450006074a0002, 0xf2a4ff3d074354ff, 0x30ff075302123aeb, 0x3ea545b0ff3d835e, 0x0780011107a02b0e, 0x076d000b0772060b, 0xc7eaffbd8291bbff, 0xc0ff077b000dbe00, 0xbe6eafefffbe28b2, 0x078d070b07920007, 0xb430ff3d68882cff, 0xd5ff079b99043dba, 0x3dd2af3aff3da0c8, 0x07b6040b07c40706, 0x4a0c71ff07b1330e, 0x00073c3bb30aff3d, 0xff3d7147cdff07bf, 0x07d6030b3dab3145, 0x1e382bff07d1bb04, 0xae0438014348ffbd, 0xffbc6d342fff07df, 0x08747f043d8c536b, 0x0810750408307e04, 0x07fd01070802000c, 0xac76ffbca6544bff, 0xc6ff080b67043ab2, 0xbd9ced3cffbca3bc, 0x081d000808220007, 0x1b80ffbce766caff, 0x1fff082b17063d00, 0xbc63fc51ff3da694, 0x084616060854030b, 0xfda92fff08411406, 0x0007be3f5cceffbd, 0xffbda3330bff084f, 0x08661a0ebde1d40c, 0x1587c9ff0861090e, 0x1706be00addeffbe, 0xffbe40b33aff086f, 0x08bc020dbd849f66, 0x088e020b089c070b, 0x2651bdff0889ba04, 0x010dbba54598ffbd, 0xffbca427f3ff0897, 0x08ae000c3ce5338d, 0xe99613ff08a9200e, 0x1706bd4907e9ff3c, 0xff3dbebdd2ff08b7, 0x08e000073cd04bd9, 0x08cdb50408d20108, 0x2b96ff3c1fa842ff, 0x40ff08db030b3d55, 0x3dd10578ff3d3e31, 0x08ed030b08f2000c, 0xc2ceff3d31445fff, 0x78ff08fb01053dd5, 0x3dfc0c3aff3d915c, 0x0b4460040d80b404, 0x099c34040a284b04, 0x0938090109581701, 0x09250501092a0111, 0xd568ffbcb00243ff, 0x31ff09330006bcab, 0xbcb808ddffbc6a04, 0x0945000c094a0b0b, 0x35aeffbcb16f0bff, 0x4bff0953140bbca6, 0xbca807e4ffbc9732, 0x096e0008097c0b0b, 0xaecc92ff0969000c, 0x2e01bc9da51fffbc, 0xffbca09f7fff0977, 0x098e0011bc8e0ee0, 0xa684d7ff09892501, 0x2404bc9a783affbc, 0xffbc9787c2ff0997, 0x09e4070ebc7e490a, 0x09b65f0509c4020e, 0x822c2fff09b10006, 0x6d05bcd73698ffbc, 0xffbc9e4e46ff09bf, 0x09d60012bccbddb6, 0x9bdcabff09d10007, 0x0112bc6208a3ffbc, 0xffbbca50e5ff09df, 0x0a08080ebccd614a, 0x09f5480409fa4105, 0x7766ffbcaad4d9ff, 0x86ff0a034504bc3f, 0xbcea1a8cffbcb3c7, 0x0a1500090a1a0c0e, 0xde6fffbc45b585ff, 0x66ff0a230008bcb5, 0xbc92d21affbca29d, 0x0a74100e0ab80006, 0x0a4600120a540009, 0xb77ef6ff0a41010b, 0x3705bc56c5edffbc, 0xff3bb5419eff0a4f, 0x0a667f05bc0153f6, 0xae2d3eff0a610011, 0x000ebc8490edffbc, 0xffbd069d01ff0a6f, 0x0a98120ebcd4aad2, 0x0a8500020a8a5804, 0xcba4ffbc89dc40ff, 0x75ff0a9300123c3f, 0x3bc5ab63ffbc8d9d, 0x0aa536010aaa3705, 0xa8b7ffbc8cecbdff, 0x4dff0ab35104bbed, 0xbcac22e8ffbc9343, 0x0ae0060e0b000106, 0x0acd000c0ad2030b, 0xed91ffbd218b69ff, 0x0cff0adb0008bd35, 0xbd48e629ffbd397b, 0x0aed350e0af21001, 0x9416ffbca873eaff, 0xf8ff0afb5b04bccc, 0xbd1db6fdffbd01d6, 0x0b16070e0b240406, 0x0239c3ff0b110206, 0x0b05bce0eaedffbd, 0xffbc9cc4daff0b1f, 0x0b361006bcca76aa, 0xc658baff0b315204, 0x5104bc9a8c0cffbc, 0xffbd2aab64ff0b3f, 0x0c648f04bcf68f73, 0x0b9400110bd80112, 0x0b6672040b74250e, 0x65a36cff0b610009, 0x130bbcc9b778ffbc, 0xffbc4ca619ff0b6f, 0x0b862d0ebb07a838, 0xc145e3ff0b81050b, 0x300ebd110df9ffbc, 0xffbd7144c6ff0b8f, 0x0bb81c0ebd18365b, 0x0ba5020e0baa060d, 0x961dffbce7e761ff, 0x50ff0bb300093b13, 0xbc553260ff3cfe6e, 0x0bc5050b0bca1d0e, 0x4d66ffbd1e37a5ff, 0x0eff0bd3260ebd65, 0xbc892393ffbba516, 0x0c0000070c200111, 0x0bed100b0bf20008, 0xe84effbd0d9f32ff, 0x8cff0bfb0303bce4, 0xbcdb8cf4ffbd6077, 0x0c0d02060c120606, 0x6a32ffbd1069bdff, 0x58ff0c1b1306bcd7, 0xbcfc7016ffbc6ee0, 0x0c3600060c44020d, 0x845f07ff0c317c05, 0x7c04bd2167bdffbd, 0xffbca56050ff0c3f, 0x0c567d04bbe4d5a2, 0x56d830ff0c51000e, 0x8004bb6ad608ffbd, 0xff3d74b5c4ff0c5f, 0x0cf4130b3c65c1a3, 0x0c90010c0cb00006, 0x0c7d0b0b0c820108, 0x7678ffbbbcb5a0ff, 0xc3ff0c8b1b0ebc62, 0xbbd72833ff3c8374, 0x0c9d00090ca2010e, 0x6a86ffbd63e34eff, 0x62ff0cab190ebc2e, 0xba92ab7bff3cb990, 0x0cc601070cd42905, 0x032319ff0cc10008, 0x0c06bc6148d0ffbd, 0xff3b91176dff0ccf, 0x0ce60111bc229ede, 0x05ca89ff0ce10606, 0x130ebc9a8c82ffbd, 0xffbc59bbbcff0cef, 0x0d3c0006bb9c3986, 0x0d0e00080d1c000c, 0xce203fff0d090107, 0x220eba87ac78ffbb, 0xff3c7bd657ff0d17, 0x0d2e0108ba8c3cdd, 0x8f0270ff0d290008, 0x3e013cfcf3b0ff3c, 0xff3c1eedd6ff0d37, 0x0d6002063d64eb76, 0x0d4d000c0d52220e, 0x6474ffbd4c6787ff, 0xb6ff0d5b360ebdb2, 0xbd8e5c89ffbc9211, 0x0d6d00080d721c05, 0xfcd6ffbc894f47ff, 0x21ff0d7b05063ad3, 0xbc4e17d3ffbcff5f, 0x0ea41c0e0fc01d0e, 0x0dd4060e0e18180e, 0x0da601120db4c104, 0x03072eff0da1020e, 0x030ebc5f856dffbd, 0xffbc6ebf27ff0daf, 0x0dc6030eb91bbddd, 0xf50299ff0dc10011, 0x060dbca267a9ffbc, 0xffbc864e2cff0dcf, 0x0df8060dbd9126b7, 0x0de508060dea0f0e, 0xe654ffbcda4721ff, 0x80ff0df3010cbbb1, 0x3caa240fffbbc853, 0x0e0500090e0a8605, 0xa55dff3d36c555ff, 0x3aff0e13010cbd21, 0x3d03bf53ff3a0609, 0x0e40010c0e600009, 0x0e2d0e0b0e32000c, 0x4709ff3c9949daff, 0xaeff0e3b0a0b3d5d, 0x3dd3ddcaff3c503e, 0x0e4d060d0e520a0b, 0x89cfff3c3876abff, 0xc0ff0e5b00113d87, 0x3e01917bff3e4a5e, 0x0e7601090e84070d, 0xe77eb2ff0e71060d, 0xbd04bc39c497ff3c, 0xffbcd08077ff0e7f, 0x0e96b904bd247e12, 0x979a8aff0e91010c, 0x8a05bd165562ffbd, 0xffbe067984ff0e9f, 0x0f340006bda4141d, 0x0ed0010c0ef0090b, 0x0ebd060d0ec2070d, 0x2f14ffbd14ec1cff, 0xc9ff0ecb0009bd4c, 0xbd2704e3ff3cb78d, 0x0edd070d0ee20107, 0x4d02ffbd79a622ff, 0xaeff0eeb00113ca9, 0xbda1380affbe011f, 0x0f0600080f14000c, 0x700100ff0f01060d, 0x140bbd99706effbd, 0xffbdb53313ff0f0f, 0x0f260107bdf4a3e7, 0xa90eedff0f210008, 0x0011be02848fffbd, 0xffbe3bd0c6ff0f2f, 0x0f7c010cbdfda0e1, 0x0f4e000c0f5c0b0b, 0xb9b426ff0f490007, 0x0107bc52b92fffbc, 0xffbbe9e03fff0f57, 0x0f6e10063c4a6593, 0x1a2327ff0f692b05, 0x03053bea31fdff3d, 0xffbd118155ff0f77, 0x0fa0030bbb4ae3b1, 0x0f8d01110f920007, 0x7e36ffbd037d35ff, 0xa8ff0f9b0506bc25, 0x3c714e0cffbbdebb, 0x0fad01080fb20007, 0x37c8ffbc1356f3ff, 0x99ff0fbb12063d23, 0xbd23f3a7ff3d8e71, 0x1054020710e0070b, 0x0ff000091010230e, 0x0fdd020b0fe2220e, 0x4a85ffbd04354aff, 0xceff0feb000cbc03, 0x3cb71106ffbb6337, 0x0ffd01111002060d, 0x5b7cffbcc44a06ff, 0xf0ff100b010cbd4d, 0xbd8b7829ffbd3574, 0x1026000710340108, 0xabf181ff1021bc04, 0x1105bd0006a0ffbc, 0xffbd1dcf96ff102f, 0x10460007bc766d43, 0x2ccbbaff1041bb04, 0x0208bcd72e07ffbc, 0xffbc2a04cfff104f, 0x109c000c3ba6d19e, 0x106e0111107c060d, 0x024ca0ff1069bf04, 0x0006bcad4593ffbc, 0xff3c3b1f56ff1077, 0x108e0011bca93a85, 0xc08452ff1089070d, 0x1f0e3c4c7709ffbc, 0xffbccc06bcff1097, 0x10c0060d3d130157, 0x10ad790510b20111, 0xe3f3ff3c30eccaff, 0x2dff10bb4005bcd0, 0x3d389521ffba286b, 0x10cd070d10d20012, 0xd361ffbb4f0c15ff, 0xdaff10db2d0e3dbc, 0xbd46f179ff3dd6a9, 0x112c280e11700007, 0x10fe070d110c0009, 0x2bd3ebff10f90112, 0xcb04bc0a2ca2ff3d, 0xffbd7af6b4ff1107, 0x111ecc043d8ebeb8, 0x01a8daff1119070d, 0x000cbdca48cfffbd, 0xffbd3d509cff1127, 0x1150cd04bd972c1a, 0x113d060d11422f0e, 0x077dff391cdf65ff, 0xc4ff114bc704bcbc, 0xbd4c7e97ffbcc351, 0x115d000c1162310e, 0x5e83ffbd0a752dff, 0x1cff116b000cbd88, 0xbdd5540cffbd8652, 0x1198020711b80112, 0x1185130b118a2b0e, 0x8bf7ff3d3b6ab8ff, 0x2eff1193310e3d99, 0xbc825c01ff3d26ef, 0x11a5110b11aa000c, 0xa3acff3d016d43ff, 0xf4ff11b3be043d7f, 0x3e03a05fff3db2da, 0x11ce000c11dc330e, 0x02c27fff11c90f06, 0x0008bcb7a3ebff3c, 0xff3bf1ded0ff11d7, 0x11ee00063d2a9d5d, 0x49a8f3ff11e91d03, 0x0206bdf921ddffbe, 0xffbd5c6970ff11f7, 0x00000013bc82336c, 0x000003e800000008, 0x000011fc00000001, 0x0900000f00000000, 0x02481a0104842b01, 0x00a01404012c0c01, 0x003c0007005c0504, 0x00290104002e000e, 0xa55cffbcea3696ff, 0xf8ff0037010ebd1c, 0xbc9d4755ffbcb396, 0x00490006004e0a01, 0xd7d4ffbc92475cff, 0x5cff0057050ebcbc, 0xbc8d5b00ffbc51bc, 0x0072000600800e0e, 0x7e6fe4ff006d0d04, 0x040ebc4e9f4dffbc, 0xffbcf96e88ff007b, 0x00921c0ebcc3c28b, 0x921e8aff008d0d04, 0x0801bc8579baffbc, 0xffbc9daba5ff009b, 0x00e80405bd0e8277, 0x00ba010800c8350e, 0x5eaa77ff00b50006, 0x0207bc8d5ebaffbc, 0xffbc8909ddff00c3, 0x00da0007bcb06199, 0xa43d18ff00d56f04, 0x030dbcb85de2ffbc, 0xffbc9a6282ff00e3, 0x010c240ebc823eb3, 0x00f90d0e00fe2804, 0xfa6dffbbd3585aff, 0xe9ff01073a04bc5b, 0x3b10434cffbc01dc, 0x01192d0e011e2b04, 0xac40ffbc8ff9fcff, 0x3aff0127340ebcab, 0xbcbd475affbc4dd3, 0x0178140401bc3404, 0x014a040401580b04, 0x99df2aff0145000c, 0x0111bccb4b1effbc, 0xffbd22510aff0153, 0x016a050ebc7a18df, 0xbaa8f1ff01650805, 0x070ebb89461bffbc, 0xffbc399d1fff0173, 0x019c0d0ebc8ae532, 0x01890d06018e0b05, 0x979fffbc5485acff, 0x8dff0197040ebd56, 0x38e368f3ff3c78a0, 0x01a9000b01ae010b, 0xc095ffbd479bccff, 0x57ff01b72804bcb0, 0xbbebf2f6ffbc4b9b, 0x01e40b050204000c, 0x01d1030b01d6360e, 0x457affbc938459ff, 0x65ff01df3403bba7, 0xbd371d07ffbcc5fd, 0x01f1270301f6320e, 0x2c06ffbd135b33ff, 0xb3ff01ff330ebd5c, 0xbcdbd435ff3c757b, 0x021a18010228050d, 0x765539ff0215000d, 0x060bbb8b72ceffbc, 0xffb9a79312ff0223, 0x023a14013c41d617, 0xaf8fd1ff02350303, 0x06033b4db939ffbc, 0xffbc7f38b3ff0243, 0x036843043c7bceba, 0x0298000c02dc2204, 0x026a050402780111, 0xe033c9ff0265020e, 0x020dbc9fdf60ffbc, 0xffbd73d7d1ff0273, 0x028a030dbdb5bbfb, 0x6df9c4ff02850f0e, 0x2901bcff4774ffbc, 0xffbc31e65bff0293, 0x02bc030b3ba432d1, 0x02a9000702ae2401, 0x570affbc5604a6ff, 0xe8ff02b70009bbc5, 0xbbc4007eff3bbecc, 0x02c9010d02ce040d, 0x9bcdffbc4a45bcff, 0x59ff02d700093b22, 0xba629758ff3c8a52, 0x0304000b0324010b, 0x02f1020d02f60006, 0x6c50ffbdcc306eff, 0x37ff02ff2601be07, 0xbd9b7097ffbc7e4a, 0x0311210103162a01, 0x1369ffbcd13c55ff, 0x7bff031f0e0ebbcd, 0xbd4e890affbca4e4, 0x033a070e03480006, 0xd5ad47ff03350009, 0x010d3c1b16f4ff3c, 0xffbc4827fcff0343, 0x035a0f053c317e3d, 0x1a945dff03550f06, 0x2a04bcdcac50ffbb, 0xffbc4be85fff0363, 0x03f82c03bce0625e, 0x0394210103b4060b, 0x0381010b0386040d, 0x40deffbcc45dd9ff, 0x29ff038f0f05bb79, 0x3c54dcf4ffbc35ab, 0x03a1880403a6010d, 0xfc16ffbb9f462fff, 0xefff03af020dbcbf, 0x3ce13fb9ff3c73e1, 0x03ca1c0503d8040d, 0x79e208ff03c51905, 0x2101bc8a1314ff3c, 0xff3c93d01cff03d3, 0x03ea0a033d1c3e25, 0xe814ddff03e50803, 0x22013c2e01a2ffbb, 0xff3d5bfebcff03f3, 0x044041053d095ea2, 0x0412040d04202d03, 0x82d51dff040d030b, 0x030b3ca8c5b4ff3a, 0xff3ca0af8fff041b, 0x0432350e3dadabd4, 0x3741fcff042d6504, 0x040d3ba11272ffbc, 0xffbcf3574dff043b, 0x0464080bbb8ab4f5, 0x04514a050456000c, 0x57aeffbd45542aff, 0x6fff045f010dbd80, 0x3c5c57d1ffbc218c, 0x04714c0504762301, 0x0c25ff3cc13b8fff, 0x8bff047f5d04bc1f, 0x3d0c8da3ff3c9624, 0x05a8000606c49b04, 0x04d84104051c4001, 0x04aa011104b82104, 0xfe4e34ff04a5020d, 0x0007bd72927effbc, 0xffbb3977b0ff04b3, 0x04ca00073c3fb496, 0x8b5db7ff04c50008, 0x070e3cdc568dff3b, 0xff3d04b6bcff04d3, 0x04fc00073c9d2098, 0x04e95d0504ee0008, 0x6a8aff3c38697cff, 0x79ff04f730013cdf, 0x3d29e8d4ff3c8fad, 0x0509010b050e010d, 0x7c51ffbcf5ace1ff, 0x44ff05171d053c96, 0x3d3311b9ff3c41bf, 0x0544000d05644504, 0x0531000905364304, 0x19e1ffbc920b35ff, 0x8dff053f070e3cfe, 0xbbd88686ff3df53f, 0x0551011105560008, 0x9e2bffbd111042ff, 0x70ff055f02113cc9, 0x3e2aa4b5ff3d694b, 0x057a000b05880112, 0x3de82dff0575000e, 0x5504bd241b01ffbc, 0xffbd4e61c2ff0583, 0x059a9405bdc8565f, 0x902fcaff0595240e, 0x000c3d10679fff3d, 0xffbd87a208ff05a3, 0x06380106be41877a, 0x05d4050d05f41e0e, 0x05c1030b05c65b04, 0x4759ffbd013a1bff, 0xd2ff05cf3905bd69, 0xbd995630ffbe05ce, 0x05e1790405e60002, 0x7221ffbd05ec13ff, 0xa6ff05ef000cbe06, 0xbcc41635ff3c9a75, 0x060a3c0106180002, 0x32a54dff06057104, 0x020d3bc9ac4effbd, 0xffbd80fce6ff0613, 0x062a240ebc86f564, 0x87cf47ff0625000c, 0x8604bd3e25b4ff3a, 0xff3c41ddf6ff0633, 0x06807e043d28b18e, 0x0652030d0660010e, 0x1b9a14ff064d1c05, 0x0806bce626c5ffbc, 0xffbc96c87bff065b, 0x067200083c0db8c7, 0x991ef7ff066d0007, 0x4c043c8f8c0effbc, 0xff3b445f68ff067b, 0x06a417063d269dd1, 0x0691200e06961e05, 0xa32fff3da382feff, 0x6fff069f000b3bf7, 0x3ce9d83affbd0712, 0x06b1010806b60105, 0x60ebffbdae5065ff, 0x7bff06bf0f0ebc91, 0x3d0dffcaffbce0a1, 0x0758120607e4040d, 0x06f4010d0714330e, 0x06e1000c06e68b05, 0x89d8ff3c7cd370ff, 0x41ff06ef250e3d73, 0xbda0b7a0ff3c79d8, 0x070107060706070e, 0xcd20ffbd14ffd8ff, 0xbbff070f000c3d2e, 0x3db4e921ff3d842d, 0x072a350e07380906, 0x577ecbff0725a904, 0x8a053d55bf14ff3c, 0xff3ba7e093ff0733, 0x074a350ebe412a17, 0x1301acff07450d06, 0x4001bd48de91ffba, 0xffbbbaa327ff0753, 0x07a0030bbda9af33, 0x0772000d0780af04, 0x831e42ff076d010e, 0x0007bd6fb3daffbc, 0xff3cb0093dff077b, 0x0792010d3d5aa468, 0x341eb8ff078d000c, 0x020bbca8282affbd, 0xffbcf28c81ff079b, 0x07c4000c3bc3f48c, 0x07b1000807b6000d, 0xca2affbd920fc6ff, 0xefff07bf0007bd4d, 0x3d04e3c2ff3b39b4, 0x07d1190607d62b05, 0x1a4fff3daa48eeff, 0xd1ff07df0a0e3a56, 0x3dcd415bff3c70a0, 0x0830050b08740007, 0x080202090810190e, 0xae2150ff07fd1406, 0x080e3c940326ff3d, 0xff3cb23b95ff080b, 0x0822010bbdf40d0f, 0x5988f6ff081d000c, 0xbe04bdba3131ff3c, 0xff3cb94be0ff082b, 0x08540705bd12a725, 0x08419f040846a104, 0xb86dff3c611616ff, 0x74ff084f070ebdcd, 0x3d99c71effbd4d28, 0x0861010e08662b0e, 0x9b26ff3d111a02ff, 0x46ff086fcd043dc2, 0xbe864cbbff3d6008, 0x089c010e08bc2a0e, 0x08899005088e0006, 0x3f47ffbe26e937ff, 0xc2ff0897000ebdf4, 0x3da98c4bff3d2901, 0x08a9060e08ae070e, 0xe16bff3dab3053ff, 0xe7ff08b71d0e3dd9, 0x3dc370f1ff3def82, 0x08d2350508e00208, 0xa1547aff08cd0a0b, 0x010b3d6512a2ff3c, 0xff3cdada10ff08db, 0x08f2070b3db78ebb, 0x83b876ff08ed3e05, 0x6505bde999aaffbc, 0xff3d5bd867ff08fb, 0x0d80b604bd0cbd0c, 0x0a28a6040b443001, 0x09586a04099c6d04, 0x092a220409382a04, 0x9c2162ff09251504, 0x0c0ebc95d3e2ffbc, 0xffbc8700bbff0933, 0x094a3504bc97f0ae, 0x86ff39ff0945100e, 0x0d0ebc9b4c41ffbc, 0xffbc482ab2ff0953, 0x097c2b01bc8836d4, 0x0969230e096e2503, 0xd967ffbc523ab1ff, 0xecff0977070dbcac, 0xbd258a53ffbccd4d, 0x0989060d098e2c01, 0x3b57ff3d13d534ff, 0x51ff09972e013b99, 0x3bea7109ffbcc215, 0x09c4000709e42c0e, 0x09b1000809b6060d, 0xb965ffbc6f63bbff, 0xaeff09bf240e3ace, 0xbd017913ffbc981c, 0x09d1140b09d60012, 0x8e5effbc7a865cff, 0x18ff09df280e3b97, 0xbb4535cbff3ca280, 0x09fa320e0a088004, 0x20b78fff09f50011, 0x350ebc8343e2ffbd, 0xffbcc406d7ff0a03, 0x0a1a310ebd0548d8, 0xa8e18aff0a15060d, 0x0006bd5b8a88ffbc, 0xffbd7bd23fff0a23, 0x0ab8a704bcef656b, 0x0a540f050a74310e, 0x0a4102080a460012, 0x0ea3ffbe03f1f1ff, 0x72ff0a4f0208be12, 0xbdfc5166ffbdd9e9, 0x0a6100070a660107, 0x2affffbcc33659ff, 0x05ff0a6f0207bd48, 0xbd334b58ffbda918, 0x0a8a00080a980107, 0xe3dd0dff0a852e03, 0x2101bde8462effbd, 0xffbe0ad104ff0a93, 0x0aaa0008be246a24, 0x268342ff0aa50b0b, 0x2101be1749faffbe, 0xffbe32387dff0ab3, 0x0b00360ebe4b0f4c, 0x0ad22b0e0ae0140b, 0xb222abff0acd3005, 0x0006bd76ce75ff3d, 0xffbd76bd6aff0adb, 0x0af22a0ebd125717, 0x2906bcff0aed3f05, 0x0011bdff1230ffbe, 0xff3c7cf010ff0afb, 0x0b240006bcb5ec01, 0x0b1105010b160305, 0x7a48ffbe860dc6ff, 0xf7ff0b1f000cbe63, 0xbe4085a8ffbdf4a7, 0x0b311a010b360107, 0x1792ffbd634bfaff, 0x28ff0b3f1a01bd30, 0xbd692672ffbda376, 0x0bd80d0b0c649a04, 0x0b74010c0b948a04, 0x0b6185040b66080e, 0x511fffbc856553ff, 0x78ff0b6f7d05bc1c, 0xbb42fa90ffbc2e93, 0x0b8100020b86060b, 0x219effbc14c7beff, 0x7dff0b8f00023b05, 0x3c49fbb1ff3b0689, 0x0baa010e0bb88b04, 0xcae27eff0ba50002, 0x1905bd1428acff3b, 0xffbc8f4e33ff0bb3, 0x0bca030b3c87b585, 0xc69762ff0bc5020b, 0x0006bc100c5fffbc, 0xff3aedbc1bff0bd3, 0x0c200012bc9c5087, 0x0bf28e040c00140b, 0x23fee2ff0bed070e, 0x070dbc95b264ffbc, 0xffbd664408ff0bfb, 0x0c1298043c001db5, 0x2576ceff0c0d7304, 0x070d3a8cacc9ffbc, 0xff3a81f1bbff0c1b, 0x0c445d043d86476f, 0x0c31020e0c360112, 0x10d8ffbc587915ff, 0x30ff0c3f0111bb3f, 0xbc7f79c3ffbcbbd2, 0x0c5101080c56000c, 0x9aa9ffbbca22dfff, 0x4aff0c5f060d3c0e, 0x3d589e3dff3c27ef, 0x0cb0010b0cf4050b, 0x0c8202080c90060d, 0xce2494ff0c7da004, 0x010cbd0409c1ffbc, 0xffbbb1172cff0c8b, 0x0ca20012bcf12889, 0x621eb1ff0c9d060e, 0x0002bcba0b7fffbd, 0xff3c9639e7ff0cab, 0x0cd40b0ebcbc4eb5, 0x0cc101120cc6020e, 0xbad8ffbd13c696ff, 0x6eff0ccf070ebc8b, 0xbcc8813dffbbc9b4, 0x0ce101090ce60e0e, 0xc1f7ff3c53a09eff, 0x45ff0cef000cbcb5, 0xb88daae4ffbc21c2, 0x0d1cb5040d3c060d, 0x0d09310e0d0e000c, 0x994dffbbbf9b7fff, 0x9aff0d170006bcbe, 0xbbdd159bff3c718e, 0x0d2901120d2e0b0e, 0x0ea9ffbd17d1b5ff, 0x36ff0d372b0e3c02, 0x3c7a412dff3d8e38, 0x0d522b0e0d600008, 0x0d1505ff0d4d000c, 0xa7043c4ea9e3ffbc, 0xffbd24534eff0d5b, 0x0d720012bdcc8d4c, 0xdee0e6ff0d6d000c, 0x230e3ccc4624ff3a, 0xff3d6926dfff0d7b, 0x0fc0010cbca975a5, 0x0e1800120ea40107, 0x0db491050dd4070d, 0x0da11c0e0da6000c, 0xd4acff3cb8d139ff, 0x6dff0daf300e3c2c, 0xbcad3f7aff3d32ae, 0x0dc194050dc60b0e, 0xbc6cffbc32505aff, 0x2cff0dcf190ebcd1, 0xbcb993eaff3c62df, 0x0deabd040df80008, 0xebfaf3ff0de5bb04, 0x8c053d45c15fffbc, 0xffbdc7b0b6ff0df3, 0x0e0a230ebd34c485, 0x2d5a1dff0e050d0b, 0x37053cffa85effbc, 0xff3de78733ff0e13, 0x0e60100bbd2b6570, 0x0e3201120e400108, 0xcfd808ff0e2d0109, 0x2a0ebcc8115bffbb, 0xffbca009b1ff0e3b, 0x0e526105bcfd9951, 0x2c4573ff0e4d310e, 0x2b0ebcc3674fffbc, 0xff3bc19dd8ff0e5b, 0x0e84c204bc81b22b, 0x0e71060d0e760d0e, 0xbf83ffbc1f6fabff, 0x5bff0e7f01093c9a, 0xbcfc8e43ff3c808f, 0x0e9101120e96060d, 0x4283ffbb1a43a9ff, 0x7dff0e9f2b0ebca5, 0xbe2a9db3ffbc9267, 0x0ef01b0e0f341d0e, 0x0ec28d050ed0140e, 0xa3fe3fff0ebd060d, 0xcb043bbb58e4ffbc, 0xffbcb92c45ff0ecb, 0x0ee2060dbd1af526, 0x5374b9ff0eddb704, 0x000c3bb4ef20ff3d, 0xff3cecb911ff0eeb, 0x0f141c0e3d8f68fc, 0x0f010b0b0f06000c, 0x7cb7ff3d219250ff, 0x47ff0f0f0b0b3db0, 0x3e2fafd0ff3dd674, 0x0f210a0b0f260006, 0x217cffbd3319e7ff, 0xd1ff0f2f000cbdd2, 0x3c865c73ffbb317a, 0x0f5c2d0e0f7c0a0b, 0x0f49000c0f4e060d, 0xbddeffbc3f8161ff, 0x48ff0f5700123b1c, 0x3d4190e1ffbac407, 0x0f6911050f6eca04, 0x6cbfffbcf8adddff, 0xfaff0f77050bbbb7, 0xbdb0bad8ffbce228, 0x0f923d050fa0000c, 0xa8a0c3ff0f8dc104, 0x140bbd084d98ff3b, 0xff3cc0e663ff0f9b, 0x0fb201123d45a5a3, 0x81d37dff0fad130b, 0x310e3dda2e38ff3d, 0xff3d046543ff0fbb, 0x10e00107bc83d0ec, 0x1010190e10540012, 0x0fe287050ff0080e, 0xa9deddff0fdd0009, 0x030ebd0a75bbff3d, 0xffbcdd26c3ff0feb, 0x100200093c5835ee, 0xeadd5eff0ffd070d, 0x01093cc655adff3d, 0xff3cc9d86bff100b, 0x10341d0ebd00900a, 0x1021000910261c0e, 0x3f85ff3e41ea37ff, 0xa4ff102f070dbb94, 0x3d2c1ca7ffbdd35d, 0x1041070d10461f0e, 0xd90aff3e185046ff, 0x53ff104f00073bb8, 0x3d2a9c76ffbbaa8b, 0x107c290e109c060d, 0x10690009106e170e, 0x6f9affbc179f08ff, 0xb6ff1077110b3c3c, 0x3d8ebfeaff3cb419, 0x1089c204108e0007, 0xda9effbc1d46ffff, 0x29ff10970e0bbd3a, 0x3d32e7a4ffbc1d72, 0x10b2ca0410c0070b, 0x5477e0ff10ad230e, 0x7e05bcd36e5dff3c, 0xff3cab315dff10bb, 0x10d2280ebd9f3763, 0x491b66ff10cd0002, 0xbc04bb31c9cdffbd, 0xffbd3cea73ff10db, 0x11700d0ebded3aa3, 0x110c060d112c8a05, 0x10f9ba0410fe0112, 0xb7b0ffbd343813ff, 0xeeff1107b704bdba, 0x3b99dfefffbd9da0, 0x1119070d111e070e, 0x38bcffbb6dfc61ff, 0x6eff1127c304be48, 0x3ca4184eff3d7ef9, 0x114201111150060d, 0xba18efff113d0b0b, 0x030bbd2cd3edffbd, 0xffbbd703eaff114b, 0x1162080ebd47a309, 0x14e0d9ff115dcb04, 0x0a0ebdbb950effbd, 0xff3db14552ff116b, 0x11b8090b3cd5734e, 0x118a060d1198310e, 0xfe8776ff1185200e, 0x00123c3d5a05ffbb, 0xff3c80a5abff1193, 0x11aa69053d68ff45, 0x764ec6ff11a50505, 0x330e3a2eb2bdffbd, 0xffbde7686aff11b3, 0x11dc0112bcaa09a2, 0x11c9be0411ce9005, 0x3e3bff3d809dd3ff, 0x4dff11d71d0e3dca, 0x3e2b33bbffbdd615, 0x11e9010811ee0305, 0x76acffbd425b5cff, 0xc2ff11f700083b12, 0x3d5ac141ff3c8736, 0x0000000800000013, 0x00000001000003e8, 0x00000000000011fc, 0x04842b010900000f, 0x012c090102481a01, 0x005c110400a00601, 0x002e0401003c0004, 0x8c7179ff0029090e, 0x050bbc99b943ffbc, 0xffbca3d6d7ff0037, 0x004e1c0ebcc831bc, 0x8490cbff00490804, 0x010bbc70e6c6ffbc, 0xffbc9d537aff0057, 0x00800105bc8e57fe, 0x006d00030072160e, 0xadfeffbcbe3228ff, 0x46ff007b1c0ebc92, 0xbc8c7fe1ffbc9b95, 0x008d050d00920006, 0xc24dffbc71e41cff, 0x26ff009b9504bc49, 0xbce58ad3ffbc9648, 0x00c8030500e8000c, 0x00b56f0400ba050b, 0xdd0effbc99c476ff, 0xe5ff00c3030dbcc5, 0xbc327cf0ffbc861e, 0x00d5010700da0504, 0x7b11ffbc9d4911ff, 0x73ff00e30b05bc8e, 0xbcc766c5ffbca745, 0x00fe000b010c090b, 0x16144fff00f90009, 0x020bbcb07079ffbd, 0xffbc8450d0ff0107, 0x011e010dbc5a679b, 0x853df9ff01190801, 0x0305bcb542cdffbc, 0xffbc8e8ee6ff0127, 0x01bc2104bc10acea, 0x0158080401781404, 0x0145000e014a0007, 0x2987ffbcc3a5a9ff, 0x83ff01530006bc91, 0xbcca3eeeffbc5714, 0x01650009016a070e, 0x684effbbe79213ff, 0x84ff0173080ebc6f, 0xbc6b7ec1ffbca839, 0x018e0b05019c070e, 0x2c31f5ff01890a06, 0x0009bcd078fbffbc, 0xff3bd46034ff0197, 0x01ae000cbc23676e, 0x635d3bff01a90705, 0x220ebcb766a5ffbc, 0xffbc1fec61ff01b7, 0x02041801bcd38006, 0x01d6000b01e4010b, 0xc70579ff01d10b01, 0x1601bd295ba4ffbc, 0xffbc941d41ff01df, 0x01f6050dbd2cc167, 0x914fb2ff01f1000c, 0x0006bbcb3180ffbc, 0xff3b346189ff01ff, 0x02280b05bc72af8e, 0x02156f04021a360e, 0x0d39ffbbf1b648ff, 0xedff0223030d3c3c, 0xbc52c094ffbcd514, 0x0235a504023a000c, 0x768cffbc9e15ddff, 0x0aff0243060bbd6b, 0x3ca52d9bff3bbf10, 0x02dc050d03684304, 0x027801120298000c, 0x0265020e026a000d, 0xe2a2ffbcc9c835ff, 0xf2ff02732601bc8f, 0xbd369385ffbd6ff2, 0x02850211028a170e, 0xd1a1ffbc46fa1aff, 0x5bff029303063c12, 0xbc5cebc7ffbd1f00, 0x02ae021202bc010d, 0x6d12fcff02a93e04, 0x1d04b850041affbc, 0xff3c98e419ff02b7, 0x02ce020b3d7efc0e, 0x47a29fff02c9250e, 0x0006bdb25fd1ffbc, 0xff3bdc6356ff02d7, 0x0324040bbc51fd9a, 0x02f6260103043404, 0xc24440ff02f10007, 0x00073b1dfa17ffbb, 0xff3b675c8fff02ff, 0x0316120e3c91489c, 0xc43d4eff03111e05, 0x000b3cb56c3bff3a, 0xffbdf764ddff031f, 0x0348000c3b1fb592, 0x03350b05033a060d, 0xa2caff3b89680eff, 0x95ff03430112bbc0, 0xbbaef4b0ffbda38f, 0x03552804035a1205, 0xf709ffbc85cc4dff, 0xd0ff03630008bbc1, 0x3d012f0aff3c6844, 0x03b4060b03f82c03, 0x0386050d03942101, 0x86d015ff0381020b, 0x0803baae5605ffbc, 0xffbc5bdcfaff038f, 0x03a6010d3c4b01c1, 0x0ee38aff03a1000c, 0x020dbba05b30ffbd, 0xff3c5b7e82ff03af, 0x03d8040d3ccab956, 0x03c5270103ca1e05, 0xb24fff3bc7cf69ff, 0x8eff03d3010d3d09, 0x3d02d464ff3becc8, 0x03e5000603ea1e01, 0xa449ff3ccb496eff, 0xa8ff03f32201bbb8, 0x3cedf522ff3d8230, 0x0420020d04404105, 0x040d000604129504, 0x99ffff3ba3677aff, 0x2bff041b000dbc66, 0xbcf84954ffbd819b, 0x042d080b04322d03, 0x355cff3c8fb929ff, 0xfeff043b24013d8b, 0x3bffa51bffbc1c26, 0x0456000b0464020b, 0xd8d718ff0451020d, 0x000cbe0dc6dcffbd, 0xffbd5945d9ff045f, 0x0476010dbacc2f33, 0xd82a72ff0471090b, 0x23013bc120e8ffbb, 0xff3c0dc849ff047f, 0x06c453043cbc361d, 0x051c2c0405a80006, 0x04b8130404d85705, 0x04a5410104aa0904, 0xf36affbcb4eb7aff, 0xd0ff04b34001bd69, 0xbcb635f4ffbb01bd, 0x04c5030e04ca0009, 0xe72eff3cc467f4ff, 0xdfff04d3010b3ba2, 0x3b105a6cffbcf706, 0x04ee3e0104fc1604, 0xfb04f0ff04e90904, 0x000dbc4592d0ffbc, 0xffbd03c595ff04f7, 0x050e010ebd5603e1, 0x7792ccff05092004, 0x62053c7a540cffbb, 0xffbb4ae321ff0517, 0x05640e0ebcb3477f, 0x0536040e05448305, 0x4d6eaeff05310009, 0x00023cc60746ff3d, 0xff3cb7ed37ff053f, 0x05564d043d3fee07, 0x33513bff05510002, 0x030dbc3c7bf4ffbd, 0xffbc9224fdff055f, 0x05881c0e3d420fc1, 0x05754804057a4101, 0xf7fbff3b8799a7ff, 0x74ff0583010b3cc4, 0xbd36cdf1ffbe1c34, 0x05954904059a3101, 0x299dffbdca5988ff, 0xe0ff05a33401bbdb, 0xbd69d876ffbdb6f5, 0x05f4450406380f06, 0x05c60d0605d41c05, 0xd47910ff05c12804, 0x3c043c238f83ffbb, 0xffbc973c00ff05cf, 0x05e604063b7e806f, 0xd0b698ff05e1030d, 0x33043b82fd50ffbc, 0xffbc1e2157ff05ef, 0x0618030b3b971668, 0x0605000c060a0b05, 0x6aa5ff3ba83fd2ff, 0x63ff06130c0e3d5b, 0xbd0e6c30ff3abeeb, 0x06250406062a0f05, 0xd869ff3c903e23ff, 0xa2ff063338013d77, 0x3cd3c489ff390d21, 0x0660440406800211, 0x064d300406524001, 0x34ebffbcc05762ff, 0x90ff065b0008bc0c, 0xbcb1effdffbd0921, 0x066d390106724101, 0xa98affbc0663f3ff, 0xa9ff067b00073c4a, 0xbc6874e8ffbccb90, 0x0696000c06a42504, 0x368b97ff06911206, 0x3c01bcd7a9b3ffbc, 0xff3b3c0c97ff069f, 0x06b63504bd6ba6bb, 0x4eb99aff06b11006, 0x3b04bc08e2d8ff3c, 0xff3cd5c375ff06bf, 0x07e4010b3b99123e, 0x0714bf0407580007, 0x06e6000b06f47805, 0xd254e9ff06e1000c, 0x010dbd9ec361ffbc, 0xffbd36c64eff06ef, 0x0706190e3a93c635, 0x596b15ff07010111, 0x220e3d87b107ffbd, 0xffbda9dcd4ff070f, 0x0738020d3d03de2c, 0x0725cb04072a0002, 0x639bffbcc87a16ff, 0x5bff07339505be7b, 0x3cf3bd8bffbdb852, 0x0745c904074a190e, 0xb99fff3b5b3031ff, 0x1aff07532b0ebe94, 0xbd9cdbc0ffbe3df3, 0x0780050d07a0c004, 0x076da6040772010d, 0xfb0bffbd4cf919ff, 0xf3ff077b5b053b24, 0x3d1cd70bff3c0e24, 0x078d020807925505, 0x142cff3d2212acff, 0xebff079b0011bc9b, 0x3daacd5fffbd2346, 0x07b6040d07c40207, 0x4ea7c6ff07b1220e, 0x0208bb8d58eaffbd, 0xffbd32fe7dff07bf, 0x07d66105be2b66f4, 0xebcbbcff07d10806, 0xcb04bd5f3625ff38, 0xff3d88b90bff07df, 0x0874010dbd39a49d, 0x0810290e0830000c, 0x07fd000d0802090e, 0xf899ffbd31b9c0ff, 0xe9ff080b0e06bc3e, 0xbc35e869ff3d1579, 0x081d0a0608229205, 0x700fffbbfe6f7cff, 0x5eff082b070bbd80, 0xbea0a230ffbe8da2, 0x084600090854060e, 0x68f7a4ff08410706, 0x000dba5e5e08ffbd, 0xff3d77c7edff084f, 0x08660002bd7f4f97, 0xc0945aff08618705, 0x8c05bd013bb3ff3c, 0xff3d730c34ff086f, 0x08bc000cbc08bb23, 0x088e060e089c030d, 0x3452a6ff08890906, 0x2a0e3bd68fe8ffbd, 0xff3d30287fff0897, 0x08ae000e3c4f0c40, 0x0dadcfff08a90806, 0x00073c49d57dffbd, 0xff3d067b5eff08b7, 0x08e040013d87338c, 0x08cd130308d22d03, 0x4185ff3c21e5c4ff, 0x40ff08db02123d3d, 0x3e222348ff3ce880, 0x08ed560508f20209, 0x43c2ff3d69302aff, 0x83ff08fb030b3d9c, 0x3d96b8cdffbc890a, 0x0b446b040d80b304, 0x099c5f040a286a04, 0x09384d0409583301, 0x09254b04092a1501, 0xc1feffbc8a28fdff, 0x68ff09333904bc78, 0xbc5e6745ffbc80b0, 0x09450009094a4205, 0x8c61ffbc4b6b3dff, 0x7aff09534405bcad, 0xbc87444bffbca6cb, 0x096e020e097c000c, 0x9607c5ff09690c0b, 0x0006bc6b98d7ffbc, 0xffbc3c999eff0977, 0x098e020ebcbc0a4f, 0x83adfbff0989000e, 0x040bbc338fd1ffbc, 0xffbc1af8b0ff0997, 0x09e43103b983eb52, 0x09b63c0109c40107, 0xf4abd0ff09b10d0e, 0x0e0bbc80db0bffbb, 0xffbbab1dffff09bf, 0x09d610053cd27870, 0xafbd12ff09d10b05, 0x230ebc2524c1ffbc, 0xff3b45be11ff09df, 0x0a08010cbc57d93d, 0x09f5650409fa6604, 0x14abffbc541e35ff, 0xf2ff0a036704bb3a, 0xbc5687d1ffbcd460, 0x0a1566040a1a3a01, 0x58abffbc0f74bfff, 0x03ff0a23030bbca2, 0x3a8bb82effbc25da, 0x0a74020e0ab80d0e, 0x0a4600020a54060d, 0x0b14d6ff0a410009, 0x000ebc92318affbd, 0xffbce47551ff0a4f, 0x0a66000ebc510e6e, 0xcbbd9cff0a61070d, 0x0b0bbc2782b7ffbc, 0xffbc46cb2dff0a6f, 0x0a9800063ac30b47, 0x0a8500020a8a3005, 0xd004ff3cdd11d4ff, 0xb8ff0a933f053d94, 0x3b18f946ff3cab0e, 0x0aa500020aaa030b, 0x1c8dffbcf8ccd7ff, 0x0fff0ab31506bcbe, 0xbd31f9aeffbd137f, 0x0ae001070b000108, 0x0acd32030ad23c05, 0x6889ffbcb8f18eff, 0xeeff0adb4005bd01, 0xbcac7845ff3ac9bf, 0x0aed210e0af2010c, 0x1012ffbc80b75cff, 0xb6ff0afb0008bcd9, 0x3b5d9135ffbc5db6, 0x0b16190e0b241b0e, 0x9c7edaff0b11160e, 0x0112bcadb404ffb9, 0xff3d064992ff0b1f, 0x0b36220ebcdfd17b, 0xaee3deff0b31030b, 0x2703bd3c7e36ffbc, 0xffbc4dd206ff0b3f, 0x0c64010cbcdf3164, 0x0b94020e0bd8080e, 0x0b6608060b74000e, 0x0c1a54ff0b610009, 0x0305bca31998ffbd, 0xffbccd266eff0b6f, 0x0b86010ebc8c197c, 0x8952e0ff0b81060d, 0x0007bbbddc58ffbc, 0xffbc75b83dff0b8f, 0x0bb8070ebd018a0b, 0x0ba5060d0baa060e, 0xe333ffbc20c4b3ff, 0x1fff0bb30006ba28, 0xbc901878ff3ca900, 0x0bc500090bca070d, 0x7c1cffbd2516e9ff, 0xf5ff0bd30009bb2c, 0xbcd5120fff3ce51a, 0x0c0001080c20190e, 0x0bed0a0b0bf20009, 0xccc3ffbb73f95cff, 0x9eff0bfb070d3bb0, 0xbd659825ffbc6b95, 0x0c0d140b0c129e04, 0x4c15ff3bf14502ff, 0xaaff0c1b00063caf, 0xbc4a3689ff3d0949, 0x0c3600060c441a0e, 0x22a082ff0c310008, 0x9d043d4ce0f7ff3c, 0xffbd0c178aff0c3f, 0x0c560208b90d625c, 0x115e49ff0c511d0e, 0x3c01bbf4da11ffbd, 0xffbc808170ff0c5f, 0x0cf48c053a55474d, 0x0c906f050cb00008, 0x0c7d00070c821106, 0x6145ffbc2b271fff, 0xc3ff0c8b06053bf9, 0xbc35a443ffbd2e5d, 0x0c9d000e0ca2020e, 0x39acffbd062cd2ff, 0x6dff0cab0a0bbb35, 0x3cd7b26aff3affa7, 0x0cc6140b0cd43301, 0x155c78ff0cc19204, 0x0c03bcfdeb3effbc, 0xffbccf1beaff0ccf, 0x0ce600073c29588b, 0xf1e36eff0ce15805, 0x00063d00caa1ffba, 0xff3cd71c31ff0cef, 0x0d3c000eba374345, 0x0d0e0d0b0d1c0009, 0x93b897ff0d099104, 0x060dbdd40e31ffbd, 0xffbda45f29ff0d17, 0x0d2e0109bd34d6e9, 0x881937ff0d290011, 0x060dbd25830cffbd, 0xffbd0bdf7eff0d37, 0x0d60060dbb9634a6, 0x0d4d00090d52050e, 0xb479ffbd8f0f3eff, 0x35ff0d5bab04bbd2, 0xbc922a4dff3cb055, 0x0d6dad040d72020e, 0xc010ff3bd7a92dff, 0x16ff0d7b040ebd4c, 0xbc71f5d6ff3d707d, 0x0ea41c0e0fc01d0e, 0x0dd4060d0e18170e, 0x0da6150e0db4130b, 0x832913ff0da10009, 0xc104bb1b81a0ffbc, 0xff3c1743f7ff0daf, 0x0dc6120ebcc84df5, 0xf84d41ff0dc10112, 0xc304bb1b7060ffbc, 0xff3cd718dfff0dcf, 0x0df8080ebc9809fa, 0x0de5020e0deac004, 0x1af9ffbce0a438ff, 0x20ff0df300073c5e, 0xbcdc96c3ffbc54a2, 0x0e0501090e0a8b05, 0x2cbaff3d1a34d6ff, 0x54ff0e13000cbd3e, 0x3cb21c8dffbbf59b, 0x0e40010c0e600009, 0x0e2d070b0e32140b, 0xcd48ffbb1a2ecbff, 0xe0ff0e3b000c3d20, 0x3dde7057ff3d453a, 0x0e4d020b0e520a0b, 0x189effbd0e3a50ff, 0x31ff0e5b180e3d13, 0x3e0cc913ffbcbe21, 0x0e76070d0e840109, 0xba4934ff0e71060d, 0xb904bc6a5b98ff3c, 0xffbd4476afff0e7f, 0x0e96010cbdc67a9e, 0xf4051aff0e91070d, 0x0209bda67ae9ffbc, 0xffbd11e391ff0e9f, 0x0f340006bd685a5f, 0x0ed0010c0ef0070b, 0x0ebd000c0ec2070d, 0xb5a2ffbcf3e00bff, 0xb6ff0ecb0009bd32, 0xbd099f0fff3cbe47, 0x0edd070d0ee20107, 0xe595ffbd5058efff, 0x37ff0eeb070d3c6b, 0x3d71e392ffbdbadf, 0x0f0600120f14070d, 0xb3563dff0f01000c, 0x0a0bbe0b1ae0ffbd, 0xffbd1b15c9ff0f0f, 0x0f260009bd9eaf62, 0xf8275dff0f21000c, 0x01093dbce7f8ff3c, 0xffbd3c0581ff0f2f, 0x0f7c4705bde4e74b, 0x0f4e000c0f5c1006, 0x28ef89ff0f490b0b, 0x030b3c4581ddffbc, 0xff3bb44995ff0f57, 0x0f6e12063d1f0adf, 0x210d20ff0f69010c, 0x000c3c43e8b4ffbc, 0xffbc00ffb0ff0f77, 0x0fa00111bcc51524, 0x0f8d00080f920007, 0x7768ffbd56d380ff, 0x8eff0f9bbc04bcbe, 0xbc890afdffbb5722, 0x0fad00070fb20b0b, 0x4f9bffbbf30ad8ff, 0xcbff0fbb000c3bac, 0x3cdd7eebff3b74de, 0x10542b0e10e00107, 0x0ff0000c1010230e, 0x0fdd01080fe2220e, 0x1524ffbc0e357cff, 0x16ff0feb070d3c32, 0xbcfb53bcff3ca89e, 0x0ffd011210020009, 0x612fff3d437943ff, 0x15ff100bbc04bb70, 0xbd27ca5bffbca152, 0x1026c20410340007, 0x208bd1ff1021060d, 0x0002bcbe9bdcff3c, 0xffbd1489a8ff102f, 0x1046140b39fe237a, 0x20b6fcff1041050b, 0x070d3c5814c2ffbc, 0xff3d3546ddff104f, 0x109cc904bd836e5d, 0x106e2c0e107c320e, 0x88f51dff1069c304, 0x0007bd4fd6a3ff3d, 0xffbc823571ff1077, 0x108e26013bfdcdde, 0x16f8eeff10890a03, 0xc804bd4c42ebffbe, 0xffbcc64f32ff1097, 0x10c000073cdd5016, 0x10ad060d10b2cc04, 0x3f39ffbd17bf0cff, 0xd8ff10bb320ebc48, 0xbd9c0e4fffbd5215, 0x10cd0b0b10d2130b, 0x466cffbd015cc9ff, 0x04ff10db0108be03, 0x3d4f884bffbbedad, 0x112c0a0b1170000c, 0x10fe0006110c060d, 0x52739cff10f90111, 0xc3043c1ce20dffbc, 0xffbcbc8dbcff1107, 0x111e0012bc13850f, 0xf66105ff1119c804, 0x2d0ebd04fb71ffbb, 0xff3ccf24e3ff1127, 0x11500006bcf8d13b, 0x113d310e11427705, 0x6497ff3d21e401ff, 0xddff114bcd043cab, 0x3d13285fff3c662a, 0x115d020d1162c004, 0xb473ffbccc949aff, 0xb3ff116b00023c21, 0xbcc1d2a8ffbd612e, 0x1198230e11b8050b, 0x1185060d118a210e, 0x3bc4ffbc8d583aff, 0xe7ff1193060d3a14, 0x3d4bdaadff3c982b, 0x11a5000611aa7905, 0xd93cff3c44a876ff, 0xfaff11b3310ebc7d, 0xbd75aaf8ffbc4f5a, 0x11ce011211dc310e, 0x5e484cff11c9bc04, 0x0f063dbef5c0ff3d, 0xff3d2c7991ff11d7, 0x11eecd04bc326ab0, 0xa10b36ff11e96d05, 0x6d05be01108bff3b, 0xff3df0891eff11f7, 0x000000133c0ab0cf, 0x000003e800000008, 0x000011fc00000001, 0x0900000f00000000, 0x02481a0104842b01, 0x00a01604012c0901, 0x003c0604005c190e, 0x00290204002e0006, 0x25f7ffbc80d004ff, 0x4bff0037040ebc67, 0xbc9956c8ffbcc5a6, 0x00490305004e070e, 0xc139ffbc8fdf35ff, 0xffff00570006bc1e, 0xbc94aee5ffbc52dc, 0x0072050100800c04, 0x85b585ff006d0904, 0x0704bc7d9729ffbc, 0xffbcfe75b3ff007b, 0x0092220ebcb0b8dc, 0x67d660ff008d0006, 0x000bbc8a2cfbffbc, 0xffbcbd46b1ff009b, 0x00e82a0ebc8420dd, 0x00ba050100c80103, 0x89e6d1ff00b50105, 0x030dbc3911f6ffbc, 0xffbc8182d2ff00c3, 0x00da050dbc999f99, 0x473e11ff00d52b04, 0x0801bc0a3b64ffbc, 0xffbc1507baff00e3, 0x010c340ebb92fa24, 0x00f9000b00fe3d04, 0xce04ffbcaf2d6cff, 0xeaff01070801bc6e, 0xbc0f5067ffbc48fa, 0x01190007011e0605, 0x6e03ffbc8818edff, 0x77ff01270701bc69, 0xbcbeae14ffbc91fc, 0x01780c0401bc2104, 0x014a030401580007, 0xc7ef5cff0145000e, 0x0006bc93a8e0ffbc, 0xffbc692794ff0153, 0x016a0705bccd1c4a, 0x9553a2ff01650506, 0x070ebcc952a2ffbc, 0xffbc1077a6ff0173, 0x019c060ebc9b129c, 0x01890b05018e1704, 0xf6cdffbc7b2956ff, 0x83ff01970b05bad6, 0x3c424922ffbc3dbb, 0x01a9180401ae0d0e, 0x13e8ffbc2135b6ff, 0x77ff01b71c0ebb8d, 0xbca7c149ffbc41df, 0x01e4020b02041801, 0x01d1000b01d6010b, 0xce9cffbd0865fdff, 0x77ff01df220ebc8a, 0xbc633047ffbbd83e, 0x01f1010d01f6020d, 0x5ad2ffbc57f7bfff, 0x92ff01ff1101bbaf, 0x3ba59dfaffbb48d2, 0x021a06030228350e, 0x843bf2ff0215050b, 0x070bbc7d5a0fffbb, 0xff3b8ab1dbff0223, 0x023ab3043c8361cc, 0xf1c368ff0235360e, 0x0b05bca71bb9ffbb, 0xffbcc44d1cff0243, 0x03684304bd80d943, 0x0298000c02dc2204, 0x026a000d02780111, 0xb59a94ff0265020e, 0x020dbc817f2cffbc, 0xffbd45834bff0273, 0x028a010dbd93346c, 0x8faf62ff0285080e, 0x2801bd35f043ffbc, 0xffbc30d9d2ff0293, 0x02bc1404ba7335c2, 0x02a9000602ae0107, 0x7ebeffbc0b35bfff, 0x99ff02b7050ebcae, 0xbc55a5d3ff3a45dc, 0x02c9000702ce0a0e, 0x36b4ffba9038efff, 0x76ff02d7170e3be8, 0xbd7cd321ffbc39fa, 0x0304000b0324010b, 0x02f1020d02f60b05, 0xfe0effbc062580ff, 0xf1ff02ff2a04bd13, 0xbdd094edffbd4d38, 0x0311210103163c04, 0x5dffffbcc0643eff, 0x95ff031f2601bb77, 0xbd3f272affbc6f13, 0x033a070e03480006, 0x94d390ff03350903, 0x3e043cabc995ffbc, 0xff3b8abe5bff0343, 0x035a0f053c5541b8, 0xee32a1ff03551006, 0x2a04bcda25c0ffba, 0xffbc2b4180ff0363, 0x03f82c03bcc27e0b, 0x0394010b03b4090b, 0x038153040386000b, 0x1b83ffbd70c812ff, 0xbdff038f050dbdef, 0xbb6bde8fffbc8a9c, 0x03a1050d03a62401, 0xd4a4ff3af948ecff, 0x09ff03af1d053c8d, 0x3cd2f26cff3bfbee, 0x03ca220103d80a03, 0x21ba65ff03c5300e, 0x000cbcd24487ffbc, 0xff3c919be5ff03d3, 0x03ea0e033b425266, 0xe5c06aff03e5020d, 0x1e053d731e33ff3c, 0xff3c50ebedff03f3, 0x044041053d09f78e, 0x041296040420020d, 0x93104bff040d0006, 0x9b04bc4db2efff3b, 0xffbd69c059ff041b, 0x04322d03bcdea7cd, 0x6a43f8ff042d030b, 0x24013d739fbdff3c, 0xffbc0c897bff043b, 0x0464020b3be6149d, 0x0451260104568204, 0x38deffbc3ab7a9ff, 0xfcff045f020d3bad, 0xbdff32c0ffbdc327, 0x0471040b0476000c, 0x434cffbd4c09c7ff, 0x24ff047f4605bbb4, 0x3c58150cff3cb76a, 0x05a8090506c40107, 0x04d80008051c0108, 0x04aa020504b81806, 0xd33a12ff04a56b04, 0x7304bde56e4effbc, 0xffbcbb3cfdff04b3, 0x04ca0f0e364c8244, 0xf56190ff04c57504, 0x0105bda76e64ffbc, 0xffbd61c3d9ff04d3, 0x04fc6f043d32d2d9, 0x04e90c0e04ee5e04, 0xb51affbc73a361ff, 0xd4ff04f7080e3b83, 0xbd2c3fdeffbc9005, 0x05091706050e8b04, 0x34c5ff3d50311cff, 0x1eff05179b04bd26, 0x3c8a943cffbdb432, 0x0544000c05644b04, 0x0531021105360705, 0xf28dffbc41f020ff, 0x02ff053f2a043bb2, 0x3ced0f44ff3bb7a9, 0x05512a0405564504, 0x77faff3bac8787ff, 0xa4ff055f2c033cc6, 0x3d88e847ff3d222f, 0x057a160605888b04, 0xd962deff05751d0e, 0x030e3d554457ff3d, 0xffbc8093ddff0583, 0x059a200e3d6e4390, 0x68f619ff05951806, 0x030bbb90b2c0ff3d, 0xffbd8629d7ff05a3, 0x06386f053b38a7d8, 0x05d4000705f4030b, 0x05c1020b05c61c05, 0x661dffbd0b689aff, 0x09ff05cf000bbbe1, 0x3c3712e3ffbd2749, 0x05e1000205e65d05, 0x6b55ff3c882489ff, 0x3cff05ef00063d13, 0x3ba76dc4ff3d5433, 0x060a410106180108, 0x53664dff06053001, 0x00083cc0e814ff3b, 0xff3d04261bff0613, 0x062a000e3d60dcb9, 0xf1b993ff0625020d, 0x89043cec9b27ffbb, 0xff3d400acfff0633, 0x0680000c3d866206, 0x0652040d06609505, 0x52f50fff064d0111, 0x010e3c3bc6bcffbd, 0xff3c1d0a11ff065b, 0x0672c0043d7b02f8, 0x6850b7ff066d020e, 0x9605bdcb9860ffbd, 0xff3ddb1f2fff067b, 0x06a4c4043d675ac7, 0x0691190e06960006, 0x043aff3d9357bdff, 0x04ff069f0a0e3d51, 0xbdcb549bffbd14f3, 0x06b11f0e06b6070b, 0x0852ff3cbd63daff, 0xd1ff06bfcd04bd40, 0xbdab40a1ff3d8880, 0x0758750407e45005, 0x06f4000207140006, 0x06e1040d06e6020b, 0x5ea9ff3a025678ff, 0x2cff06ef1f053cb6, 0x3d17c7d2ff3c75ca, 0x0701020b07063a04, 0x8d22ffbc2f887cff, 0x52ff070f02123d3b, 0x3e748bfbff3db369, 0x072a040507381305, 0x485c56ff07253303, 0x5804bc2c6d79ff3c, 0xff3c4550edff0733, 0x074a01083d6fb545, 0xa3b487ff07450506, 0x00023b1fb469ffbc, 0xffbd8a160aff0753, 0x07a0030d3c66bf98, 0x077209060780060e, 0xbb6a22ff076d0806, 0x000ebc962a06ffbd, 0xffbbc00295ff077b, 0x079207063cfe284b, 0xe92762ff078d0002, 0x230e3d82c47eff3c, 0xff3d8ac27dff079b, 0x07c408063ccc6574, 0x07b1060607b6090e, 0xff93ffbd4b9ffaff, 0x41ff07bf00023c82, 0x3d9d794cff3d2cee, 0x07d1010e07d6200e, 0x1501ff3d498acbff, 0x32ff07dfa9043dc2, 0x3d84e8bcffbbab5c, 0x0830000d08740006, 0x08026f0508101d0e, 0xa1a97fff07fd1a0e, 0x7b04bd2f5f5eff3c, 0xffbd9ecbd7ff080b, 0x0822310ebccc90c9, 0x57f8dcff081d2f0e, 0x320e3e000a16ff3d, 0xffbd99b782ff082b, 0x0854000e3d568b61, 0x0841040d08466d04, 0x9750ffbcedb149ff, 0xc9ff084f000c3d50, 0xbe88534affbda344, 0x086183050866080e, 0x113dff3d8e2987ff, 0x97ff086f01113c0b, 0x3db70294ffbdfcd7, 0x089c520508bc0002, 0x0889030b088ec104, 0x8061ffbddc62feff, 0x4bff0897280ebd92, 0xbe6d404dffbe1068, 0x08a9890408ae5d05, 0x75c3ffbd287df2ff, 0x4eff08b760053d40, 0xbd222161ffbdc654, 0x08d2a70408e0090e, 0xb2deddff08cd040d, 0x10063bb09e73ffbc, 0xff3d7b0520ff08db, 0x08f29804bb82cf01, 0xe9611cff08ed9104, 0x0b063c88de9affbc, 0xff3db47847ff08fb, 0x0d80b4043cf1e102, 0x0a2891040b44a304, 0x09585104099c5f04, 0x092a011109382504, 0x804fa3ff09250011, 0x020dbc72b6a7ffbc, 0xffbc58516aff0933, 0x094a5004bbeea672, 0x4c5842ff09450112, 0x000cbc93e0f1ffbc, 0xffbc09c25dff0953, 0x097c070ebb16798c, 0x0969070d096e020e, 0x75a8ffbc79d076ff, 0x9fff09770112bbb6, 0xbcb4b202ffba6641, 0x09893f01098e090e, 0x3881ffbc62c5fbff, 0xedff09970d0ebce2, 0xbc4da577ffbb70e9, 0x09c4080b09e40f0b, 0x09b1010909b6020b, 0xe205ffbc812a96ff, 0x2dff09bf0002bce8, 0xbb5216d1ffbc2b5d, 0x09d1020e09d6120e, 0x21acffbc8dcd75ff, 0xefff09df02073ab8, 0x3c00bf91ffbc297a, 0x09fa18010a082601, 0x6a3f09ff09f56804, 0x0703bcada1acffbc, 0xffbd13a510ff0a03, 0x0a1a3403bbdf1008, 0x9f5d91ff0a153801, 0x000c3cb428abff3b, 0xffbbe0c11aff0a23, 0x0ab800123b86a0a8, 0x0a54120b0a741c0e, 0x0a41070d0a460a0b, 0xf1dbffbcab5a4dff, 0x89ff0a4f0b0bbb92, 0xbcf00bbbff3b3ff6, 0x0a619a040a66140b, 0x9cdcffbd50c4f9ff, 0x14ff0a6f000cbc20, 0x3c7a1d09ffb9ef06, 0x0a8a98040a981d0e, 0x0536aaff0a854101, 0x0207bda35b29ffbe, 0xffbca3b2e3ff0a93, 0x0aaa070dbde0abb7, 0x4c3a09ff0aa52b0e, 0x1f0ebd3a6bfcffbc, 0xffbd90522bff0ab3, 0x0b002a0ebd1698d9, 0x0ad200060ae0060d, 0xb20f52ff0acd5305, 0x02063b07d620ff3c, 0xffbd31897fff0adb, 0x0af20007bc3272ba, 0xb0657bff0aed080e, 0x040bbbb6d343ff3c, 0xff3caff210ff0afb, 0x0b2400023d6bf74b, 0x0b1141010b16320e, 0xcf04ffbb5f8cf7ff, 0x5dff0b1f0006bca3, 0xbcb2e289ffbd4705, 0x0b312b0e0b362703, 0xe9d3ff3df2fb25ff, 0x72ff0b3f9f043cea, 0xbc758252ff3b748f, 0x0bd800070c640008, 0x0b7468050b947405, 0x0b610f050b66070d, 0x884dffbd2bc0b0ff, 0x63ff0b6f6705bca9, 0xbc8f67deffbdaa6a, 0x0b810e0b0b86010c, 0x24ffffbd0abd16ff, 0x49ff0b8f0009bae0, 0xbcb73947ff3d38f5, 0x0baa000c0bb80109, 0x18f192ff0ba5120b, 0x050b3b48ca98ffbc, 0xff3ae14b57ff0bb3, 0x0bca02093cb86e77, 0x8db8ccff0bc5090e, 0x030ebc8f53f8ff3b, 0xffbc330236ff0bd3, 0x0c20060dbcc810c1, 0x0bf2ab040c000605, 0x23dc86ff0beda504, 0x0b0ebb3e8e8affbd, 0xffbcdb1901ff0bfb, 0x0c127d05bd6ceb7f, 0x08825aff0c0d0006, 0x030ebbf33550ff3c, 0xffbd341f65ff0c1b, 0x0c440d0ebc3b1b84, 0x0c31ab040c36020e, 0x0fd7ffbcaf81a9ff, 0xafff0c3f030ebd23, 0xbae228c0ff3d4924, 0x0c51a9040c56190e, 0x2280ff3c6facf2ff, 0x98ff0c5f1e0e3d93, 0x3c3280c9ffbd2c6f, 0x0cb00a0b0cf4000c, 0x0c8201110c90060d, 0x7b7939ff0c7d060b, 0x0006bcf8bbb9ffbc, 0xff3bda4300ff0c8b, 0x0ca20012bc769a93, 0xc84aeaff0c9d070d, 0x0d0e3abf5b08ffbc, 0xffbc13b84cff0cab, 0x0cd4060d3ca110d2, 0x0cc1030e0cc6a504, 0x3b59ffbc66bb9bff, 0xf1ff0ccfb1043cd8, 0x3add6786ffbbf54d, 0x0ce1020e0ce60011, 0x47b9ffbcba57e6ff, 0x0fff0cef230e3c05, 0xbcb1594bff3d2f83, 0x0d1c2a0e0d3c0006, 0x0d09060d0d0e0b0e, 0x66ceffbcc69929ff, 0x6dff0d17140b3cc1, 0x3d636a40ff3cdf30, 0x0d293e010d2e0207, 0x8bcdffbd0ab607ff, 0xbbff0d37130bbb9b, 0x3db63f84ff3c5604, 0x0d5211060d601205, 0x96e644ff0d4d4001, 0x120e3cda06e3ffbc, 0xffbbb06fc2ff0d5b, 0x0d72ad04bd5fac4c, 0xb36c18ff0d6d0111, 0x130e3a47fd73ffbc, 0xffbc18f56aff0d7b, 0x0fc01d0e3c5c3240, 0x0e18180e0ea41c0e, 0x0db4c1040dd4060e, 0x0da1bd040da60112, 0xf05affbcb0d622ff, 0x12ff0daf030e3903, 0x3b1011abffbc33f8, 0x0dc100090dc6030e, 0x9195ffbca5a5e4ff, 0x0bff0dcf1306bc1c, 0x3b4c7446ffbd5440, 0x0deac2040df8060d, 0x4c94ffff0de5120e, 0xc4043c4a8034ffbc, 0xffbcf8d72cff0df3, 0x0e0ac304bc8e6b3f, 0xa303a2ff0e05000c, 0x0d0e3d21476bff3b, 0xffbc84b3f7ff0e13, 0x0e6000093c67b7b5, 0x0e32140b0e40000c, 0x36cbfaff0e2d0a0b, 0x060d3ca24e75ffbc, 0xff3cdb2431ff0e3b, 0x0e5200123d7c6641, 0x0d6815ff0e4d070d, 0xcb043d0ccc06ff3e, 0xff3d60b311ff0e5b, 0x0e84070d3e059fa6, 0x0e71060d0e760109, 0x25b7ff3cb82b12ff, 0x65ff0e7fbd04bc2c, 0xbd04b878ffbca19b, 0x0e91b7040e96b904, 0x6f11ffbd8a086dff, 0xd5ff0e9f8a05bd05, 0xbd6a8db3ffbdd584, 0x0ef0090b0f340006, 0x0ec2070d0ed0010c, 0xde08eaff0ebd060d, 0x0009bd224cb8ffbc, 0xff3cab408aff0ecb, 0x0ee20107bcf7b7ea, 0x3df2baff0edd070d, 0x060d3c544ea2ffbd, 0xffbd7c9d5bff0eeb, 0x0f14000cbdd994db, 0x0f01060d0f060008, 0xb348ffbd2715ffff, 0xf1ff0f0f140bbd5f, 0xbdc20f99ffbd89a5, 0x0f2100080f260007, 0x09b8ffbd53f245ff, 0xa0ff0f2f0012bdc4, 0xbdbbfd80ffbe0bb6, 0x0f5c0b0b0f7c010c, 0x0f4905060f4e000c, 0x5fe1ffbc94bfbeff, 0xb2ff0f570007bc21, 0x3bb77cf0ffbc3794, 0x0f6900070f6e0008, 0xfc01ffbcd60b28ff, 0x57ff0f7710063b91, 0xbc28be0aff3cbdd5, 0x0f92020d0fa00007, 0xc6bf12ff0f8d0b0b, 0x01083d441dbeffb9, 0xffbd089b8aff0f9b, 0x0fb2030b3adba8f6, 0x9925deff0fad0107, 0x10063c5d59bbffbb, 0xff3d6be9d6ff0fbb, 0x10e0030bbb1df474, 0x1010c10410540107, 0x0fe200090ff00006, 0xf8e156ff0fdd020b, 0x010cbbccbdf8ffbc, 0xffbccb4781ff0feb, 0x10020111bd22db07, 0xdb4c54ff0ffd0008, 0xbc04bc92d97fffbc, 0xffbc8f53b8ff100b, 0x10340208bb863908, 0x1021230e1026070d, 0xbf79ffbc60417fff, 0x29ff102f000cbcbb, 0xbd55d572ffbcfb3b, 0x1041cc0410460007, 0x666cffbc898e93ff, 0x0cff104f0112bd33, 0xbc7c22e4ff3baf51, 0x107cc804109c020b, 0x10692b0e106e2d0e, 0x278effbc8b4c37ff, 0x3bff107740013d3c, 0xbcf297ddffbd6210, 0x10890008108e000c, 0xfe13ffbd18191cff, 0x2cff1097010cbd27, 0xbdaad9b1ffbd812a, 0x10b2230e10c00006, 0x88c1aeff10ad200e, 0x280e3ceb8f2fffbc, 0xffbcb939ccff10bb, 0x10d203063c011f39, 0xb58a1fff10cd320e, 0x0406bcb3e781ffbd, 0xffbdc73661ff10db, 0x11702b0ebc2d449d, 0x110c0009112c0107, 0x10f9000c10fe0111, 0x9336ff3c44d276ff, 0x4cff11076d053cf1, 0xbd1cf0deffbb4639, 0x11197405111ebc04, 0xf709ffbd0da92fff, 0xdfff11277505bc12, 0xbd11cf22ffbd8737, 0x1142060d1150000c, 0xe5fc48ff113d2a0e, 0x270e3ce8dbdeff3b, 0xff3cdfd526ff114b, 0x1162ca043d804217, 0x8ba3b6ff115d6905, 0x88053d2772b3ff3d, 0xff3de8d69eff116b, 0x11b801073d83fcbf, 0x118a2c0e1198c704, 0x3269daff1185bb04, 0xc5043e007353ff3c, 0xffbc1e394cff1193, 0x11aa00073cd493cf, 0x02a179ff11a5cb04, 0x130bbd52494bffbd, 0xffbcf74355ff11b3, 0x11dc310e3c5a6dd3, 0x11c9110b11cecd04, 0x61e3ff3d1658c0ff, 0x3bff11d76d053d85, 0x3dd24d7aff3e3ca2, 0x11e96b0511ee320e, 0x5930ff3bd815c4ff, 0x9bff11f7c504bda7, 0x3d24f71bffbc25d9, 0x0000000800000013, 0x00000001000003e8, 0x00000000000010ca, 0x0484011107e95504, 0x012c030b02480b0b, 0x005c000800a00007, 0x002e070e003c0109, 0x606d05ff00297c05, 0x6805bca1c04dffbc, 0xffbc79df6bff0037, 0x004e2d04bc83fff1, 0x6f3476ff00491804, 0x0209bc7eed06ffbc, 0xffbc9366d7ff0057, 0x00807305bcae76b6, 0x006d420400723101, 0x3c3dffbc6cd6b5ff, 0x0aff007b0006bc89, 0xbcad8524ffbc34a3, 0x008d53040092010b, 0x3eceffbcbb815aff, 0x8dff009b030ebd0d, 0x3af7e6daffbc99ef, 0x00c8020800e8000c, 0x00b5610500ba5104, 0x8e2affbc6f818eff, 0x66ff00c35204bc9d, 0xbc9f3423ffbc7f4b, 0x00d5470500da030e, 0x6f06ffbc5de9d9ff, 0x55ff00e32501bca6, 0xbbbd61c8ffbc4e3d, 0x00fe1b01010c3501, 0x645829ff00f9010c, 0x010cbc5431e8ffbc, 0xffbc4eef94ff0107, 0x011e0006bc17f5de, 0x3d3a51ff0119020e, 0x040ebb8ed508ffbc, 0xffbc93b45aff0127, 0x01bc4c04bcdb7daa, 0x0158100101781704, 0x0145000f014a1604, 0x1779ffbcdc0293ff, 0xadff01530112bc66, 0xbbbafb01ffbc5bfb, 0x01650011016a0006, 0xc1a9ffbc675cebff, 0x65ff01731304bc53, 0xbc93ee74ffbc831b, 0x018e2501019c4504, 0x565c49ff01893d04, 0x000cbc3d6166ffbc, 0xffbc457621ff0197, 0x01ae000ebc0c4607, 0x6153f2ff01a94804, 0x070ebcb4ed92ffbc, 0xffbbc546a3ff01b7, 0x02040012bc3b35ed, 0x01d6000f01e4070e, 0x466d13ff01d17f05, 0x0109bcd8e64fffbd, 0xffbc00ca22ff01df, 0x01f6080ebc874b2d, 0xba5e09ff01f1070d, 0x0a0ebbdef6ecffbc, 0xffbbc96a04ff01ff, 0x0228000cbc5db137, 0x0215000e021a0008, 0xdf07ffbcb8c156ff, 0x94ff02230112bc63, 0xbcbd8a5bffbc0a6c, 0x02350112023a0d0e, 0x5bfdffb833d0b9ff, 0xccff02430007bcbc, 0xbbf4bcdaffbc5e13, 0x02dc130b03681901, 0x0278040502980901, 0x02650d04026a110b, 0xe13dffbc655e6aff, 0x8bff02733504bc4b, 0xbc8847f3ffbc6be0, 0x0285060d028a0208, 0x58a8ffbc4c367eff, 0x2aff02930e0ebc5f, 0xbbf17012ffbc425c, 0x02ae020702bc0012, 0x67c5feff02a90d0b, 0x0d0ebc4494feffbc, 0xffbc5c6f4eff02b7, 0x02ce3404bc97af49, 0x4e49f1ff02c91404, 0x220ebc1fa5e5ffbc, 0xffbbdf2063ff02d7, 0x03245304bc530958, 0x02f6520403040006, 0x620603ff02f15104, 0x1501bc7d9c91ffbc, 0xffbc664f48ff02ff, 0x03161a03bbe06534, 0x83c904ff03114004, 0x2a04bc5cdc0bffbc, 0xffbc8fac68ff031f, 0x03481501bcabcc22, 0x0335140b033a5404, 0xe731ffb96d9b97ff, 0x5fff03431c0ebc69, 0xbc84c50dffbcc3e1, 0x0355070d035a1701, 0xb2c5ff3c04fff1ff, 0xdfff03631003bcf1, 0xbcecc62fffbc2426, 0x03b44f0403f8140b, 0x0386000803940011, 0x66de47ff0381000c, 0x3c04bc38a75cffbc, 0xffbc3f665fff038f, 0x03a62d04bc0632e1, 0x32944cff03a12404, 0x0008bc0a9c8dffbc, 0xffbc04abd1ff03af, 0x03d80008ba22c890, 0x03c5400103ca000c, 0x6adfffbc5e047eff, 0x8aff03d30009bc16, 0xbc1d9ee2ffba14f7, 0x03e5001203ea5104, 0xf211ffba53abedff, 0x19ff03f325013c42, 0xba9fd592ffbc226a, 0x0420170e04403701, 0x040d000c04120112, 0x4031ffbc590f26ff, 0xadff041b4004bc24, 0xbce47a15ffbc8f48, 0x042d190e04321b01, 0x7a3dffbc040087ff, 0x49ff043b1c01bc99, 0xbc141ca5ff3bda4d, 0x0456000e04640112, 0x449fdfff0451000c, 0x0008bc16c192ffbc, 0xffbc001fedff045f, 0x04760f063ab03614, 0xaa1957ff04710306, 0x4004bc7a3393ffbc, 0xffbcb1c90dff047f, 0x06c40212bcf91c57, 0x051c100105a83204, 0x04b8070404d81604, 0x04a5060d04aa000e, 0x8d82ffbcc10034ff, 0x37ff04b3000d3b04, 0xbc577973ffbc82ca, 0x04c5050504ca070e, 0xcb50ffbc830c00ff, 0xe6ff04d3080ebbfd, 0xbc4a7657ffbc76d5, 0x04ee060504fc120e, 0x90a02dff04e9090b, 0x2804bc43616bffbc, 0xffbb91b0daff04f7, 0x050e230e3c1a47ba, 0x258b7aff05092704, 0x000bbbe785daffbc, 0xffbcd99a29ff0517, 0x05641c04bc52b122, 0x0536010d0544040d, 0x757f31ff05317905, 0x0006bd4cc501ffbc, 0xffbbd55a34ff053f, 0x05560002bc6d8c9b, 0x104214ff05510c04, 0x6105ba1fba7dffbc, 0xffbce16000ff055f, 0x05880006be0d2260, 0x05752c04057a070e, 0x133fff3c137586ff, 0x3cff058341013c96, 0xbd1c14afffbaf8c7, 0x05951006059a0108, 0xaf93ffbc0788afff, 0x35ff05a32804bcbf, 0x3b83e5eaffbbee06, 0x05f4000606380d0e, 0x05c6830505d40009, 0x2f156eff05c1000c, 0x030d3cfb95a2ff3c, 0xffbd413c7cff05cf, 0x05e6000d3c37101c, 0xa58cb4ff05e14004, 0x080e3d816484ff3c, 0xff3c6db234ff05ef, 0x06180106bb2a24a7, 0x06053a04060a050d, 0x3ea3ffbd0a1d50ff, 0x6dff0613000cbd3d, 0xbd000d26ff3ccab0, 0x0625000f062a1406, 0x274bff3bb59d26ff, 0xbaff06330211bc48, 0xbb2cbdfdffbc9666, 0x066040010680240e, 0x064d000606524104, 0xaf4eff345e14bbff, 0xc3ff065b190ebc5d, 0x3ba7d054ff3c6f09, 0x066d260306724101, 0x12a5ff3d79af4bff, 0x2eff067b000c3b3c, 0xbd61896dffbcb583, 0x06962d0e06a42301, 0x8b5762ff06912a0e, 0x1e01bc136cd2ffbb, 0xffbc5e1ce8ff069f, 0x06b62a01bd84bfe4, 0x831d01ff06b14804, 0x260ebc92e681ffbd, 0xffbc0c214bff06bf, 0x07a54f04bdb42ff7, 0x0714000d07580d0e, 0x06e6340106f41f04, 0xe8d767ff06e1030b, 0x030b3c6ec3d4ff3c, 0xffbc72bc63ff06ef, 0x0706030b3c5969a2, 0x7a0004ff07016105, 0x26013c7909b0ff3d, 0xff3d63c075ff070f, 0x07383b043bda54cd, 0x07250007072a030b, 0x5ddcff3da6119bff, 0xedff073300083e14, 0x3d9874e2ff3d7453, 0x07450002074a030b, 0x651cffba575972ff, 0x38ff07534a043c98, 0x3dba65ecff3d66b6, 0x0765030b076a170e, 0x6818ffbca88770ff, 0x0007078534013d60, 0x07bdac4de8ff0777, 0xbddcb46cff078001, 0x974c04bdd011ebff, 0xbab4ff0792000707, 0x01bcf82783ffbd35, 0xbd8184aeff07a035, 0xc9030bbe02c62fff, 0xb6790507bb010707, 0x5fff3e99c275ff07, 0xff07c402073e9b04, 0x926382ff3e95d5a7, 0xd6530507db61053e, 0x3dff3eba3431ff07, 0xff07e46d053eb888, 0xa8d8feff3eb944a9, 0x1200070c4e000f3e, 0x85240508f678050a, 0x21a3040841000808, 0x0e84040813960408, 0x42ffbce1afb8ff08, 0xff081c1c05b93ee1, 0xe59b1effbd64df94, 0x2e19050833010e3c, 0x42ffbdd5c584ff08, 0xff083c320ebcaca6, 0xb8af5aff3cc3ac02, 0x57200e0865030bbc, 0x01cfff0852010808, 0x083c826a76ffbc02, 0xbcfe1b36ff086001, 0x77290ebc233b58ff, 0x781eff0872010e08, 0x043d5532e9ffb994, 0x3b3a87c7ff0880b5, 0xcd02123d3a27fdff, 0x9f010b08ad080b08, 0x5af4ff089ab50408, 0x05bd850bb5ffbbea, 0x3c661d0cff08a86f, 0xbf41013cedf1bdff, 0x4c92ff08ba240108, 0x0e3ce467e3ff3c11, 0x3c99348cff08c806, 0xd626013d653b51ff, 0x0002bd9cd0d4ff08, 0xf9ff08e3170e08e8, 0x3e1aac3aff3e6756, 0x5d7fc7ff08f15e04, 0xc4043e990c65ff3e, 0x96050942000c0986, 0x00090914060d0922, 0xff3c452eecff090f, 0x091d010e3d908494, 0x1bd5ffbd40d898ff, 0xc0040934050b3e25, 0xffbd8c4428ff092f, 0x093d020e3e01b954, 0x841bffbda9a88aff, 0x00090966070bbe54, 0x67ff0953190e0958, 0x3ced2354ff3d9e06, 0x4ec5f6ff0961140e, 0x9804bbb48c38ff3d, 0xa7ff097390050978, 0xbe511452ff3d903e, 0xb24ef7ff09810006, 0x070bbda50bd6ff3d, 0xcd0409ae950509ce, 0x66ff099b000c09a0, 0xbd5741feff3da23f, 0xa25566ff09a9360e, 0xcc04be827942ffbe, 0xfaff09bbca0409c0, 0xbe0ed516ff3d3b48, 0x1f9480ff09c9cd04, 0x350e3e663ad3ff3e, 0xc80409e4c90409f2, 0xff3d29b55cff09df, 0x09ed02093db6da75, 0x0b55ff3c93a95fff, 0x00080a04020dbd9d, 0xffbe526d39ff09ff, 0x0a0d0108be361523, 0x19f9ffbe4bb19fff, 0x84040b325205be69, 0x000e0a62230e0aa6, 0x01080a3409060a42, 0xffbcd3d16cff0a2f, 0x0a3d1506bd67d416, 0xc8a9ff3c30412fff, 0x75040a541606bcad, 0xff3cf37013ff0a4f, 0x0a5d000c3d50fb06, 0x23d4ffbc4a9c78ff, 0x310e0a864001bd36, 0x71ff0a7366040a78, 0x3cc44290ff3b9a48, 0xe919ceff0a817f04, 0x00023b94bdbdffbb, 0xb0ff0a9312060a98, 0xbe191493ffbd1c65, 0x4ed58dff0aa10b05, 0x06063c9c1374ff3d, 0x89040ace060e0aee, 0xb4ff0abb39050ac0, 0xbdb80f3fffbe00c5, 0x3faa7eff0ac99804, 0x0002bde844c6ffbd, 0xdbff0adb29030ae0, 0x3d14a03cff3c5686, 0x81dd9fff0ae9350e, 0x290ebbd97f95ff3d, 0x090e0b0417060b12, 0xff3d48f780ff0aff, 0x0b0d030b3d9098fb, 0x0640ffba38d504ff, 0xbb040b24030b3cea, 0xffbceec93eff0b1f, 0x0b2db5043c3aeabc, 0xea09ff3c7c5aa2ff, 0x000d0bc200063d8a, 0xa7040b5e81050b7e, 0xcbff0b4b070e0b50, 0x3cb0d69dff3e02a4, 0xed2feeff0b59310e, 0x98043d713922ff3d, 0xa9ff0b6b1d0e0b70, 0xbea851e3ffbd7502, 0x8e22d7ff0b799305, 0x0112bd21582cff3c, 0x060b0b94a4040ba2, 0xffbd6443f5ff0b8f, 0x0b9d010bbded28c1, 0x3538ffbdbb475fff, 0xbf040bb4010bbe48, 0xff3d4d9615ff0baf, 0x0bbd7d04bc24aabc, 0xa4ceff3d695811ff, 0x5d050c0a00023d9a, 0x00080bdc53050bea, 0xff3d06d804ff0bd7, 0x0be58904bdf746fb, 0x1a57ffbcb6600bff, 0x60050bfcb0043d0e, 0xffbdb04f3dff0bf7, 0x0c05000cbcc1a1af, 0x3f96ffbdca7d95ff, 0x040d0c2e090ebe28, 0x89ff0c1b07060c20, 0x3b851446ffbd33ad, 0xdf309bff0c290606, 0x98043d14ef2bffbb, 0x32ff0c3b03060c40, 0x3d8b07c7ffbb7c99, 0x4dacfeff0c49010b, 0xad043d957cbdffbc, 0x140b0d72000c0e8e, 0x1c0e0ca202080ce6, 0x080e0c7400120c82, 0xffbc914c95ff0c6f, 0x0c7d060dbc20de52, 0xf1f4ffbc267a98ff, 0x070b0c941e0e3bb0, 0xffbcc8806fff0c8f, 0x0c9d0207bd5409cc, 0x6e2cffbc484a71ff, 0x310e0cc63b01bb01, 0xa6ff0cb300120cb8, 0xbc08c4acffbc82c5, 0x0ed408ff0cc10006, 0x170ebc4d1f49ffbd, 0x9aff0cd30b0b0cd8, 0x3c82133affba9df1, 0x73faa2ff0ce10b0b, 0x0108bc8827c9ffbb, 0x00070d0ea4040d2e, 0x72ff0cfb64050d00, 0xbb5236f8ffbc65b1, 0xb4d977ff0d09a104, 0x00063ac1078cffbb, 0x5bff0d1b140e0d20, 0x3c4eb714ffbb84db, 0xf5f83eff0d290306, 0x040ebc0f62e9ffbc, 0x01120d44000e0d52, 0xffbd056847ff0d3f, 0x0d4d060dbc8a4e34, 0x6e09ffbc4d659aff, 0x33010d6437053a9e, 0xffbc695cedff0d5f, 0x0d6d3a053c1da947, 0x0192ffbd0125b7ff, 0x02070e020f0b3c4e, 0x00070d9e4a050dbe, 0x0aff0d8b01080d90, 0xbc4989d1ffbca812, 0x566e47ff0d99310e, 0x0012bd0dcf07ffbb, 0x7bff0dab100e0db0, 0xbc800e5cffbb6171, 0xf6e328ff0db9060d, 0x60053cb1874aff39, 0x090e0dd475040de2, 0xffbb8e2b5cff0dcf, 0x0ddd010c3b469875, 0x9de0ff3c00f054ff, 0x070e0df40c0e3cad, 0xffbc32daabff0def, 0x0dfd0b0bbd612214, 0xa6a4ff3c2e67cfff, 0x00070e4a3401bd61, 0x00090e1c2b0e0e2a, 0xffbc215ca0ff0e17, 0x0e25060dbcc10d80, 0xbc8affbca7c42aff, 0x72040e3c270ebd54, 0xffbb66e40fff0e37, 0x0e45a1043c6f1a1d, 0x5170ffbb5a69d9ff, 0x00020e6e0006bcd5, 0x87ff0e5ba2040e60, 0x3ce5e245ff3c0d31, 0xc28fbeff0e69170e, 0x05063d8f89bfff3c, 0x08ff0e7b220e0e80, 0xbbae9e9affbd154f, 0x4bfd4cff0e893303, 0x8505bbfcced8ff3d, 0x7a050f2212060fae, 0x290e0ebe00070ede, 0xeaff0eab00090eb0, 0xbcfe2fcdff3c5965, 0x7ba846ff0eb9070d, 0x140bbd62852bffbc, 0x1aff0ecb120b0ed0, 0xbbf2e6c8ff3c8163, 0xf8551dff0ed9c404, 0x00123d7efa88ff3c, 0x130b0ef4010c0f02, 0xff3b1f8997ff0eef, 0x0efd070b3ced8121, 0x41cbffbc659901ff, 0x060d0f140e0e3d52, 0xffbca97b6bff0f0f, 0x0f1d00093c39e8a5, 0x9703ff3c143a9fff, 0x17060f6a130ebccd, 0x15060f3c13050f4a, 0xff3c191ff9ff0f37, 0x0f45030bbc02152a, 0x9df9ffbc6cdcd0ff, 0x19060f5c030ebc08, 0xffbc308d9bff0f57, 0x0f651906bca174c6, 0x6420ffbc9a06beff, 0x01050f8ebd04bd0b, 0x0fff0f7b000c0f80, 0xbda89138ffbce251, 0x6f02e2ff0f89b004, 0xbe04bcdc93acffbd, 0xafff0f9b00020fa0, 0xbb6cf114ff3cb1aa, 0xb46eb1ff0fa9cc04, 0xc904bd6382ecffbc, 0x020e0ffa0d0e103e, 0x010c0fcc00090fda, 0xffbcd2209dff0fc7, 0x0fd5000ebd593b1d, 0x5675ffbc79291fff, 0x00090fec060dbb51, 0xffbcc12463ff0fe7, 0x0ff5c0043aa35dc9, 0xce32ff3c2481d2ff, 0x0a0b101e000cbc4f, 0x3cff100b01121010, 0xbb822248ffbc8ccd, 0x191477ff1019c304, 0x190ebbf4d00bff3b, 0x02ff102b00121030, 0x3c59596eff3d35b1, 0x11dec1ff10391e0e, 0x190e3ba4cc4effbd, 0x0d0e1066180e1086, 0x6fff1053cb041058, 0xbd151cf4ffbc291a, 0x965b28ff1061140e, 0x0009bce48c8eff3c, 0xcaff1073000c1078, 0x3dd089b4ff3cfe88, 0x714d59ff10810109, 0x1d0ebd0d80f4ffba, 0x0009109c1c0e10aa, 0xff3dbba68dff1097, 0x10a5000cbd16ca46, 0x00fbffbd849d80ff, 0x910510bc260ebdb5, 0xff3d1cc451ff10b7, 0x10c501073c35fd93, 0xcc88ffbcc7da70ff, 0x0008000000133cc5, 0x0001000003e80000, 0x0000000010ca0000, 0x011107e055040000, 0x030b023f0b0b047b, 0x070d0097000f0123, 0x000b003c060d005c, 0x62ff0029080e002e, 0xbc0efee1ffbcadf2, 0xcbc36dff00370207, 0x1a04bd15889affbc, 0x4eff00490804004e, 0xbd301f5cffbd1812, 0x506490ff00570012, 0x4001bd8e5fdeffbd, 0x6505007201070080, 0xffbe0a7cf9ff006d, 0x007b2f04bdc799c6, 0x1876ffbe12143eff, 0x300400920002be22, 0xffbd0579f7ff008d, 0xd22f7effbd2a70d5, 0xbf510400df0009bd, 0xac450400b1330100, 0x6fffbc4e0bd0ff00, 0xff00ba010cbc5b92, 0x808276ffbc36860d, 0xcc020800d1000cbb, 0xfbffbc834f7bff00, 0xff00da6505bbbe85, 0xc8c5cdffbc50ac41, 0xf52b040103010cbb, 0x90deff00f01e0400, 0x02bc6957a9ffbc5b, 0xbc8eb8c4ff00fe00, 0x154c05bc67e992ff, 0x4a32ff0110350401, 0x0bbc83ab37ffbc59, 0xbc405621ff011e02, 0xb34c04bbb54d73ff, 0x4f0804016f170401, 0x3c00110141490501, 0x97ffbc574093ff01, 0xff014a2401bc510c, 0x596a4bffbc8e8792, 0x5c030e01610011bc, 0x6fffbc4b8bbaff01, 0xff016a070ebc54d4, 0x4a38b7ffbc391af3, 0x853d0401934604bc, 0x49ceff0180070e01, 0x01bc439880ffbc22, 0xbc3e9277ff018e1b, 0xa50008bc09a3d5ff, 0x38d0ff01a0010c01, 0x0ebbe8f1ccffbc4e, 0xbbc0595cff01ae1c, 0xfb0009bc5d9c0cff, 0xcd000c01db010c01, 0xf8b1ff01c8011201, 0x01bcad444cffbc2d, 0xbc20074bff01d638, 0xed2d01bb1e6870ff, 0xd9faff01e8000701, 0x12bbdca70dffbc3d, 0xbba47d93ff01f600, 0x1f090e3bc7820aff, 0x0c01090211010c02, 0x7cffbc127d70ff02, 0xff021a3a05bc7caa, 0x01094bffbc65c576, 0x2c070d02312201bb, 0xaaffbc4dda66ff02, 0xff023a3105bcacc1, 0x8e758affbcb85df3, 0xd3130b035f1901bc, 0x6f0405028f090102, 0x5c120b02612b0402, 0xfaffbc47cca9ff02, 0xff026a110bbc52cd, 0x70418fffbc29e451, 0x7c060d02810208bc, 0x14ffbc37ca87ff02, 0xff028a100ebc4903, 0xd52556ffbc2c0c82, 0xa5020702b30012bb, 0xf55cff02a0000802, 0x0ebc26360bffbc44, 0xbc46643dff02ae0d, 0xc5000cbc888426ff, 0x0ec5ff02c0000702, 0x01bc45739bffbc0c, 0xbc1b8f75ff02ce10, 0x1b5304bbd64c4fff, 0xed520402fb000603, 0x4528ff02e8310302, 0x01bc70e5afffbc4b, 0xbc3cc7eaff02f618, 0x0d23033c77104bff, 0x9e81ff0308430403, 0x03bc41ef65ffbc73, 0xbcd8b9feff031625, 0x3f120ebc94f9ebff, 0x2c01070331060d03, 0x3bffbd01f05cff03, 0xff033a0107bce45d, 0xa7d620ffbcc01b80, 0x4c540403511501bc, 0x0dffbc1aeebbff03, 0xff035a1701bc8adf, 0x4a01d2ff3c07c6c8, 0xab000c03ef140bbc, 0x7d1c05038b000803, 0x9182ff03782c0403, 0x12bc8a809bffbc42, 0xbc4ab8e9ff038600, 0x9d020ebc261463ff, 0x2c92ff0398000e03, 0x01bc14e564ffbc50, 0xbbd19361ff03a638, 0xcf00083b30d273ff, 0xbc000203c1020e03, 0x8effbc1d2198ff03, 0xff03ca3701bb8162, 0x0030ffffbbbdeab7, 0xdc000e03e1020e3b, 0x30ffbc224907ff03, 0xff03ea2d01bbc26f, 0x2ac03fffbb54fc1a, 0x170008043738013c, 0x04000c0409010c04, 0x4effbc61133eff04, 0xff04124d04bc3af8, 0xff7503ffbc119789, 0x24090504290c05b9, 0x10ffbc7ea429ff04, 0xff0432180ebc40b5, 0x4d0dabffbc0c0b7e, 0x4d000e045b0006bb, 0xc777ff0448000c04, 0x02bc072c85ffbc30, 0xbb9fcb26ff045600, 0x6d3c043ba4edfdff, 0x560bff04680f0604, 0x06bc9e39b3ffbc5d, 0xbd112dc7ff047601, 0xbb0212bc98ba01ff, 0x131101059f320406, 0xaf0a0104cf170405, 0x9c0b0404a1000604, 0xfeffbc43cd1bff04, 0xff04aa070ebc2aff, 0x70e39cffbc9bc16a, 0xbc010e04c10605bc, 0x3affbcbc4414ff04, 0xff04ca0007bc73c8, 0xdb71d4ffbc37d2d8, 0xe5000604f3190ebb, 0xbb73ff04e0270404, 0x05ba8eaedeffbbb6, 0xbc37dc58ff04ee07, 0x05020bbcdbc44fff, 0xb432ff0500000b05, 0x0ebc4d36dfffbcc3, 0xbc10b841ff050e22, 0x5b1704bc33cac1ff, 0x2d0b04053b410105, 0x2a69ff0528580505, 0x0ebd0b9796ffbc3b, 0xbb53a414ff053605, 0x4d020bbc2dafc6ff, 0xd694ff0548000705, 0x05bd035a3bffbd73, 0xbca98854ff055681, 0x7f0d06bd5f23a1ff, 0x6c2a040571070e05, 0xa6ff3b94819fff05, 0xff057a40013c7443, 0xb74cc1ffbb439683, 0x8c040505910211bc, 0xbcffbc95737cff05, 0xff059a2504bceef3, 0x17f2e6ffbc65f472, 0xeb0006062f070e3b, 0xbd8e0505cb000905, 0x9e60ff05b83d0405, 0x023d29f2adff3caf, 0xbd881b86ff05c600, 0xdd030e3bfccfa7ff, 0xc088ff05d8020905, 0x0b3be8923aff3cda, 0xbc6c5eabff05e604, 0x0f01063c84c5a1ff, 0xfc37040601120306, 0x1bffbd741298ff05, 0xff060a3a04bd6624, 0x2a51faffbcfb8140, 0x1c000f06212f03bd, 0x0fff3d2534f7ff06, 0xff062a1006bbcf43, 0x572db4ff3b316e45, 0x57190e06777905bc, 0x440f050649410106, 0x14ffbabe7d81ff06, 0xff0652020b3c3933, 0xdb121bffbd051bc5, 0x6434010669230e3a, 0xd0ff3ab83e58ff06, 0xff06722a01bd0979, 0x2f9103ffbbf65da6, 0x8d080e069b5304bd, 0x44c5ff06884a0406, 0x073c083064ffbd02, 0xbda0f507ff069602, 0xad010bbe1e1f6aff, 0xb166ff06a8880506, 0x05be7df2f3ffbe57, 0xbdfc80bdff06b68c, 0x9c4f04be574928ff, 0x0b000d074f0d0e07, 0xdd340106eb1f0407, 0x8ea8ff06d8030b06, 0x0e3c56e374ff3cd1, 0x3d1278c5ff06e602, 0xfd030bbc787e12ff, 0x18e2ff06f8530506, 0x0c3d1e2795ff3d6b, 0x3bc47f8dff070600, 0x2f3b043d4cfa02ff, 0x1c00070721030b07, 0xaaff3d95763fff07, 0xff072a030e3e0587, 0x7f6bdaff3d40f586, 0x3c00020741030b3d, 0xccffba41d172ff07, 0xff074a4c043c8927, 0xc61bf8ff3d539792, 0x5c030b0761170e3d, 0x48ffbc97ad10ff07, 0x07077c34013d49f7, 0xbd9b12ecff076e00, 0xc6a260ff07770107, 0x4c04bdbb4353ffbd, 0x7cff07895305078e, 0xbd1c10bbffbcc96a, 0x692204ff07973501, 0x030bbdeb64baffbd, 0x790507b2010707c0, 0xff3e8a6237ff07ad, 0x07bb61053e8b83ef, 0xd9e3ff3e83bff4ff, 0x020707d261053e86, 0xff3ea61437ff07cd, 0x07db6d053ea7955f, 0xf67eff3ea6bdcbff, 0x310e0c4e01113e97, 0x01080908010c0a24, 0x010708389005087c, 0x0b05080a5a050818, 0xffbcf3426eff0805, 0x08130009bc64facb, 0x6eddffb81a75dbff, 0x140b082a1e0ebc60, 0xffbc0b6181ff0825, 0x0833b004baad15f7, 0x9017ff3a5c27ccff, 0x000f085ccd043cd9, 0xcfff08499604084e, 0xbe00c2a2ffbd50d5, 0x3ad3fbff0857220e, 0x1d0e3bd52ccdffbc, 0x4bff08691c0e086e, 0xbd867d6affbc054a, 0xb5d78cff08770007, 0x040e3c850bb6ffbc, 0x000608a4000e08c4, 0x93ff0891070d0896, 0xbc22b2b2ffbd097d, 0x2e3ec7ff089f5e04, 0x0207bc7732d7ffbc, 0xcaff08b10d0b08b6, 0x39b957edffbc2c41, 0x478332ff08bf3f05, 0x0f0bbcb6171bffbc, 0x000c08da080b08e8, 0xffbc02328eff08d5, 0x08e3000cb8c73ec2, 0xa06aff394e562aff, 0x180e08fab0043c65, 0xff3c97dd36ff08f5, 0x0903000c3ae7b677, 0x6e89ff3c8b894bff, 0x010709983c013d3b, 0xaf04093400080954, 0xe2ff092100090926, 0xbcc283a2ffbc11fa, 0xf380f8ff092f0b0b, 0x130bbd0e0510ffbd, 0x85ff094128050946, 0xbb8c90ecffbc61fe, 0x46e532ff094f1e01, 0x0e033c104f63ffbc, 0x0a05096a8b040978, 0xffbca828e7ff0965, 0x09739904bc1599b1, 0xce3bffbcddfa37ff, 0x9c04098a140bbd99, 0xff3ba56c28ff0985, 0x09937404bcfb35c6, 0x9b9cff3c0b2fb6ff, 0xa10409e0cc043ceb, 0x000209b2060b09c0, 0xffbbc82cb5ff09ad, 0x09bb00113bea8cbc, 0x724cff3b291b96ff, 0x920509d2060e3c81, 0xffbc10986aff09cd, 0x09db0012bd214614, 0x1334ff3d1a2fc4ff, 0x01070a0488053c86, 0xe3ff09f1290e09f6, 0xbc98606fff3d8e9a, 0xa311beff09ff1d0e, 0x1c0e3e03cbfdff3d, 0x2cff0a110d0e0a16, 0x3dab1edaffbcfff2, 0xade546ff0a1f1d0e, 0xcc04bb83b036ffbd, 0x7c040ab83b010b44, 0x00060a54340e0a74, 0x5cff0a41000c0a46, 0xbc779431ffbcc18b, 0xc6033bff0a4f0506, 0x7904bc76b1cfffbb, 0x61ff0a61000c0a66, 0xbc837b01ffbcaf88, 0x1ff306ff0a6f0106, 0x0006bcaa4ca4ffbd, 0x010c0a8a0a0b0a98, 0xffbd17186fff0a85, 0x0a93360ebcb269bf, 0xafb6ffbd62190fff, 0x00080aaa360ebe0a, 0xffbccc3a10ff0aa5, 0x0ab31103bc438ba6, 0xffcaffbd5e5532ff, 0x02070b00cb04bd0f, 0x7f050ad200070ae0, 0xffbcaa2943ff0acd, 0x0adbc504bbc9946a, 0xcf9effbc605114ff, 0x00020af2c4043c51, 0xffbc5cef75ff0aed, 0x0afb330e3cb9d74a, 0x824bff3dfa8ce4ff, 0x01120b246d053d30, 0x15ff0b1101070b16, 0x3df75f83ffbcf011, 0x64a15bff0b1f0406, 0x0b0bbcc2dfbdffbd, 0xa5ff0b3187050b36, 0xbcdbe1f3ffbd595b, 0x9cf310ff0b3f0107, 0x6d05be119c4fffbd, 0x070d0b7e01070bc2, 0xcd040b62340e0b70, 0xffbd2c5fe9ff0b5d, 0x0b6b0002bc00b2a9, 0x7230ffbd26ec1eff, 0x70ff0b790007bdd6, 0xbe36b6a6ffbe3fcb, 0x0b9400060ba2340e, 0xcdb9c0ff0b8f0b0b, 0x000c3e1fbc22ff3d, 0xffbd8bf829ff0b9d, 0x0bb40002bdbf552c, 0xddba9fff0baf0b0b, 0x02073ddd16d0ff3b, 0xffbd1bc773ff0bbd, 0x0c0a330e3ccb359d, 0x0bdc6e050bea7a05, 0x5ac33fff0bd70207, 0x7405be0dd5a4ffbe, 0xff3e0cb2f7ff0be5, 0x0bfc7f05bddacd69, 0x9bea87ff0bf70107, 0x84053dd184d7ffbd, 0xffbda47c53ff0c05, 0x0c2e0107bd3376d1, 0x0c1b00070c20000c, 0x6c5dffbd09baf7ff, 0x1dff0c297805bac9, 0xbd913398ffbd1c5e, 0x0c3b74050c40340e, 0x1b06ff3d97ee3fff, 0x35ff0c4902073cfe, 0x3ce243b1ffbbc71e, 0x0d72050d0e8e000f, 0x0ca2030b0ce6000c, 0x0c740d060c820212, 0x29259aff0c6f0002, 0xaf043ccd5262ffbc, 0xff382d427bff0c7d, 0x0c940002bca8959f, 0xa86beeff0c8f5a04, 0x5e043de77b8effbd, 0xff3e584e62ff0c9d, 0x0cc6290e3ead408a, 0x0cb308060cb8060e, 0xf593ffbd33e6b6ff, 0xf1ff0cc1000d3c01, 0x3d332628ffbaded9, 0x0cd3340e0cd80f06, 0x25a1ff3cb800ddff, 0xdbff0ce1ae04bc67, 0xbc5a8648ffbd91d5, 0x0d0e060e0d2e2c0e, 0x0cfb95040d000c06, 0x9b05ff3b8cddddff, 0xdbff0d090007bd86, 0x3cf5e288ffbbebba, 0x0d1b75040d200209, 0x5bc1ff3cb0bfa9ff, 0xbbff0d29140e3d5d, 0xbd20bf10ff3cb2df, 0x0d44010b0d52a104, 0x96125dff0d3f000b, 0x4101bc7b0bb1ffbd, 0xff3c057672ff0d4d, 0x0d64310ebbcc0520, 0x7d0b20ff0d5f8a05, 0x350ebcdab71dff3d, 0xff3cf84d3bff0d6d, 0x0e022e0ebb7c8d21, 0x0d9e41010dbe8f05, 0x0d8b06050d90000c, 0x39c7ff3cd42f98ff, 0xb9ff0d991e01bc0d, 0x3ce2ae2dff3c77d9, 0x0dab040b0db00007, 0x0166ff3cb7155fff, 0x48ff0db92a0e3d5a, 0x3d22447cff3d794b, 0x0dd400090de2010e, 0x1cbc7cff0dcf6f04, 0x000cbde518b5ff3d, 0xffbd9075b9ff0ddd, 0x0df41f0e3d7444b1, 0x8e3150ff0def0209, 0x010bbd7793cfff3d, 0xffbddb3f59ff0dfd, 0x0e4acd04bc6f988c, 0x0e1c330e0e2a0007, 0x14617bff0e17070b, 0x010b3cdc1255ff3b, 0xffbd0acedbff0e25, 0x0e3c0208bb6f1e37, 0xecc151ff0e372301, 0x050b3d37b7d1ff3a, 0xffbd56b16cff0e45, 0x0e6e030b3cacd056, 0x0e5b02070e600208, 0xe814ffbe98017dff, 0x22ff0e698305be78, 0xbe9b80e8ffbebd8a, 0x0e7b00090e800007, 0xea0affbe41e945ff, 0x99ff0e890208be82, 0xbe615365ff3da270, 0x0f22ae040fae0007, 0x0ebe02080ede1105, 0x0eab80040eb00505, 0x662bffbcc725f6ff, 0x79ff0eb90108bd56, 0xbbd4988effbce553, 0x0ecb15060ed08004, 0xcfecffbb34d00eff, 0xa0ff0ed92601bca9, 0x3c6e2863ffbccca4, 0x0ef4010b0f020c0b, 0xeefaf6ff0eef010c, 0x0009bd4fdb53ffbc, 0xffbac6f990ff0efd, 0x0f14060ebc365038, 0x78951eff0f0f8004, 0x310ebbba5082ff3c, 0xff3c9e1936ff0f1d, 0x0f6a0002bc7807a2, 0x0f3c030b0f4a0006, 0xa27c10ff0f37010c, 0x0b0bbd2932e4ffbc, 0xffbd7a1ea7ff0f45, 0x0f5c360ebd23723a, 0x4899d9ff0f57010c, 0x40013c3627a3ffbc, 0xffbd3be9b2ff0f65, 0x0f8e0b0ebc89bb44, 0x0f7b0b0b0f801206, 0xc49bffba68cac6ff, 0x40ff0f89c3043c2c, 0x3b6d9ea9ffbc68da, 0x0f9bbe040fa00009, 0xe8fcffbbe5203aff, 0xc4ff0fa90e0ebc8a, 0xbd334771ffbcb798, 0x0ffa6f05103e020d, 0x0fcc010c0fda0f06, 0x0a073cff0fc7360e, 0x130ebd281124ffbb, 0xff3aada7a2ff0fd5, 0x0fec170e3cd964ab, 0x9df358ff0fe71406, 0x0305bc35f5f9ff39, 0xffbd64a5bdff0ff5, 0x101ead04bc82d2bd, 0x100b6d0410108e04, 0x32ebffbd03fa21ff, 0xf4ff10190002bd69, 0xbc2d1d11ff3d0c2b, 0x102b00061030030b, 0xed0effbd341427ff, 0x44ff1039af04bc1a, 0xbdb43eafffbe005a, 0x1066310e10866705, 0x105301071058070b, 0xcf2effbab39bd5ff, 0x09ff1061b1043d04, 0x3cdad548ff3d8cfb, 0x1073330110784101, 0xd7faffbdeaae7fff, 0xfaff1081aa04bd89, 0x3c291c2fffbc1a6c, 0x109c030e10aaad04, 0x3fd082ff10978004, 0x070ebd40aae4ff3b, 0xff3d6e6b36ff10a5, 0x10bc050e3ce4dc52, 0x36a3f7ff10b7000c, 0x070ebd135459ffbc, 0xff3c632d77ff10c5, 0x00000013bac207a4, 0x000003e800000008, 0x000010dc00000001, 0x07e0550400000000, 0x02360b0b04720111, 0x00a0060d011a000f, 0x003c0107005c030b, 0x0029040d002e0012, 0x9034ffbc8a1f3fff, 0xabff0037040dbc32, 0xbd2c33ecffbca268, 0x0049080e004e000b, 0x705cffbcb64187ff, 0xf2ff00570504bc0e, 0xbd047e9fffbc910f, 0x0072000d00802604, 0x82d8b1ff006d7a05, 0x020d3ba06ab6ffbc, 0xffbd1c318eff007b, 0x00928405bcc43e42, 0x3544a7ff008d2e04, 0x040dbd6c1ce7ffbd, 0xffbce84023ff009b, 0x00e8070dbd444fc8, 0x00ba020b00c81801, 0xfc992fff00b53505, 0x030bbcf4997effbc, 0xffbd2d0c80ff00c3, 0x00da0012bd1580d5, 0x2e90e9ff00d5030b, 0x2401bd68917effbd, 0xffbd45fee5ff00e3, 0x01034001bd886a28, 0x00f9010700fe6505, 0x14c0ffbdf94758ff, 0x02bdb3a3ffffbe0d, 0xff01105105011500, 0xf041f0ffbd19658c, 0x4104bdbd2abeffbc, 0x1f040166390401aa, 0x2001013839010146, 0xffbc3b09a9ff0133, 0x01415305bc325745, 0x84c3ffbc26f2a8ff, 0x120e0158000cbc48, 0xffbc311a0eff0153, 0x01612a01bc4fad14, 0x6a92ffbc2a0008ff, 0x0012018a0009bc03, 0x5fff01770d0e017c, 0xbc463073ffbc09eb, 0xafd8eeff0185170e, 0x3d05bc343d6bffbb, 0xc8ff0197070d019c, 0xbc90a5b0ffbc5c71, 0x6296dfff01a5000c, 0x0012bc0a6d4fffbc, 0x0a0e01d2000901f2, 0x15ff01bf000e01c4, 0xbc005901ffbc6afb, 0x34e707ff01cd3305, 0x3a01bc6b93d5ffbc, 0x2eff01df070d01e4, 0xbca819baffbc74f5, 0x68b52aff01ed010c, 0x040bbc22491effbc, 0x000c020801120216, 0xffbc42fb28ff0203, 0x02110f06bc08888c, 0xa175ffbca1baa6ff, 0x060d0228050bbce2, 0xffbb8cac50ff0223, 0x0231010c3b814120, 0xfaaeffbc0ad11cff, 0x110b03561b01bb8b, 0x0e0402861e0402ca, 0x000e025806040266, 0xffbc49afe6ff0253, 0x02610012bc3e1744, 0xee0bffbc391dfaff, 0x000c02780011bc2e, 0xffbc3da386ff0273, 0x02810a0ebc313bd4, 0x68a7ffbc12afdcff, 0x170e02aa060dbc26, 0xc2ff02975104029c, 0xbc1a2f16ffbbb4a3, 0x16bd16ff02a51901, 0x4e04bb4116f6ffbc, 0xa3ff02b7001102bc, 0xbbbf0356ffbc28f5, 0xf14917ff02c5070d, 0x0303bc6ea6b7ffbb, 0x2c0402f23e040312, 0xa7ff02df130e02e4, 0xbc443fa1ffbc3cf4, 0x486f44ff02ed0701, 0x0d01bc5e9678ffbc, 0x7eff02ff02080304, 0xbc7203a1ffbc5cd5, 0x8965edff030d010c, 0x1705bcad63cfffbc, 0x1501032809050336, 0xffbc3adb5cff0323, 0x0331130bbc6e4514, 0x6d0cffbc126defff, 0x130b03484904bc2e, 0xffbc0c69ceff0343, 0x0351140bbc37e9d1, 0x9d40ffbb9e4f4eff, 0x000e03e63504bc38, 0x1f040382000603a2, 0xd6ff036f070d0374, 0xbc2c8df2ffbc3b36, 0x308e6bff037d0007, 0x0306bc1a411effbc, 0x07ff038f29040394, 0xbcbcef4affbc89e6, 0x30c2a1ff039d0806, 0x2a01bc6ee641ffbc, 0x001203b8140b03c6, 0xffbc24863cff03b3, 0x03c10a05bbf77cf7, 0xfcf5ffbc582d88ff, 0x000603d80008bc2d, 0xffbc1266d8ff03d3, 0x03e10012bc6c28b4, 0x9468ffbc113ed6ff, 0x0008042e0011bb9f, 0x00090400070e040e, 0xffbc023d02ff03fb, 0x0409080ebc42db0c, 0x30d8ffbc8fcb38ff, 0x0a0304201005bc1f, 0xffbc75afb4ff041b, 0x0429070ebc2b2fc7, 0x82f0ffbb890201ff, 0x000c04520108bc0b, 0x80ff043f1d050444, 0xbc03388bffbc48b7, 0xf3bceeff044d0112, 0x1005bc913313ffba, 0xe7ff045f0b050464, 0xbbdf9859ffbc5413, 0x8cf8b5ff046d0112, 0x0212bc9d0a1aff3b, 0x710505963a0406b2, 0x1e0404c61501050a, 0x0c010498020604a6, 0xffbc23ae0dff0493, 0x04a1000cbbec6d3a, 0x9f74ffbc46cba1ff, 0x090504b8170ebc88, 0xffbc24cdd9ff04b3, 0x04c1190eb89d6688, 0x66b1ffbba69cb7ff, 0x000704ea0006bc10, 0xd4ff04d7000804dc, 0x3be9214affbba008, 0xd80545ff04e52204, 0x0e063c4c3641ff3a, 0x64ff04f71c0504fc, 0xbc62538cffbb992d, 0x9998dfff05050211, 0x030dbbd85847ffbc, 0x0007053279050552, 0x90ff051f77050524, 0xbbde5e44ff3c50dd, 0x814a7fff052d020e, 0x000cbd58ce91ffbc, 0x1dff053f00070544, 0xbd2e0e80ffbc89f4, 0x0a6360ff054d8305, 0x000cbd86fe25ffbd, 0x7805056826040576, 0xff3c49a8ebff0563, 0x05710009bd3e03f4, 0xa10dff3d362f4fff, 0x2b0405882d043bd9, 0xffbb8bef59ff0583, 0x05918405be0a45b7, 0x3a8cff3c125787ff, 0x000606260d0ebe1e, 0x050e05c2830505e2, 0x01ff05af040d05b4, 0x3d3bec25ff3ca7e1, 0xcbb452ff05bd020d, 0x030d3c664493ff3c, 0x0eff05cf530405d4, 0xbdcf94bdffbd0057, 0xa8e4a4ff05dd4904, 0x00073cc514ebffbd, 0x030b05f802110606, 0xffbc90547fff05f3, 0x0601010ebba9fab5, 0x33aeffba345591ff, 0x000f061812063ce2, 0xff3c5f50a6ff0613, 0x06210008bc36027f, 0x3879ffbc642192ff, 0x5f05066e010dbb7a, 0x010b0640260e064e, 0xffbd16b766ff063b, 0x06492301bba7e5f5, 0x1e6cffbc59e606ff, 0x170e06604101bd79, 0xff3a90793cff065b, 0x06690107bd13deab, 0xa315ffbd63ee34ff, 0x40010692230ebdc2, 0xa0ff067f44040684, 0x3c33d3a0ff3abd48, 0xe97ed5ff068d3b04, 0x2a0ebca9fd63ff3c, 0x59ff069f080506a4, 0x3a6e6ba5ffbc0a48, 0x90eac0ff06ad010b, 0x4f04bc056c67ffbc, 0x000d07460d0e079c, 0x000206e21f040702, 0x37ff06cf000c06d4, 0x3c9c68f2ff3c2443, 0x03d318ff06dd020e, 0x030bbc5fa4a5ff3d, 0x00ff06ef610506f4, 0x3c20df40ff3d4bd5, 0xb0d944ff06fd000c, 0x3b043d387a99ff3b, 0x25040718030b0726, 0xff3d80565fff0713, 0x072100083df2d345, 0xf633ff3d43ea1bff, 0x00020738030b3d7a, 0xffba2e6f72ff0733, 0x07414c043c76e137, 0x4c60ff3d3e6ed0ff, 0x3401078e00093db2, 0x270307604505076e, 0xffbda6d6bcff075b, 0x07695305bdaa3c0a, 0x9108ffbdb2c558ff, 0x000707804c04bd8b, 0xffbd13f324ff077b, 0x07893501bcc781bd, 0xdaa6ffbd51d1d4ff, 0xf0ff07976105bdd3, 0xbc888220ff3d35c4, 0x07b2010707c0030b, 0x79172eff07ad7905, 0x61053e7b20afff3e, 0xff3e6d2650ff07bb, 0x07c900073e72bb66, 0xd253053e88c43eff, 0x01073e96d33bff07, 0xff3e961137ff07db, 0x0c6001113e957897, 0x0908010c0a24310e, 0x0838030b087c0108, 0x080a9d040818020b, 0xa21907ff08050012, 0x000fbc671483ffbc, 0xffbd83540aff0813, 0x082a0109bcb79188, 0x5de4b2ff08250011, 0x070dbc070dd9ffbc, 0xffbc942b1dff0833, 0x085c140bbcf48342, 0x0849070e084e080e, 0x9e0cffbbcac186ff, 0xa8ff08579205bcbf, 0xbc09f82affbb4c91, 0x08698704086e0008, 0x2748ffbbf763b8ff, 0x94ff0877220e3aec, 0x3ca72b71ff3b288e, 0x08a4000e08c4030e, 0x0891070d08960112, 0x6da2ffbcf77bbbff, 0x23ff089f5e04bc12, 0xbc5e7a7affbc1cd2, 0x08b1100608b6060d, 0x5f87ffbc7f87fdff, 0x60ff08bf0012bbdd, 0x3c8cb5feffbbefdf, 0x08da010b08e8030b, 0x693b63ff08d5b104, 0x0007bcbf8f72ffbc, 0xffbbf7a060ff08e3, 0x08fa130bbb0716a4, 0x58c6efff08f55605, 0x4d053c3624a1ffb9, 0xff3c397f59ff0903, 0x09983c013cd39e42, 0x0934000809540107, 0x092100090926a604, 0xf617ffbc019f01ff, 0xb8ff092f0e0bbcae, 0xbc99051cffbda71f, 0x0941020809462d05, 0x91d7ffbbe3dc23ff, 0x30ff094f070dbc89, 0xbca31a15ff3b82e6, 0x096a050609780f05, 0x85c67eff09650c05, 0x0008bbdf5201ffbc, 0xffbab899a2ff0973, 0x098a120b3cf93895, 0xd0bec8ff09850a0b, 0x00083bdd119bffba, 0xff3c1f92deff0993, 0x09e0cc043cd5ecca, 0x09b2000e09c0020e, 0x87b927ff09ad6d05, 0x060dbd1f5ac0ffbc, 0xffbc75de68ff09bb, 0x09d20009ba9b4778, 0xa7f932ff09cd040b, 0x02093cb214a4ff39, 0xffba8b9064ff09db, 0x0a048a05bcfe3474, 0x09f1290e09f60107, 0x6831ff3d7d18e8ff, 0xc7ff09ff180ebc97, 0x3de72860ff3d655f, 0x0a110d0e0a161c0e, 0x0d6dffbd018341ff, 0x87ff0a1f1d0e3d99, 0xbbf81ee5ffbd9c81, 0x0ab800020b44cc04, 0x0a5476050a74c304, 0x0a4101060a46360e, 0x7758ffbce2f7ebff, 0x30ff0a4f0006bc86, 0xbd0acfe8ffbd8feb, 0x0a61c2040a66320e, 0x268fff3d9feb3cff, 0xb1ff0a6f010cbc40, 0xbd11e5c4ffbc77d3, 0x0a8a340e0a98c704, 0xda18cdff0a850207, 0x40013dc7d239ff3c, 0xffbe0260dbff0a93, 0x0aaa0306bc965dcc, 0xa10f32ff0aa5cb04, 0x0208bd4ead5effbc, 0xffba7eb7b3ff0ab3, 0x0b0001073d458f6f, 0x0ad2c7040ae00108, 0x69b791ff0acd060d, 0x0011bd26564effbc, 0xffbda08d0aff0adb, 0x0af2130bbd0a54d4, 0x3beda0ff0aed0b0b, 0x0007bdae5920ffbb, 0xffbbd5aaacff0afb, 0x0b2405063d02d266, 0x0b11c8040b16090b, 0xaaeeff3b45b6b9ff, 0xa7ff0b1f000cbd33, 0x3d899e91ff3c42a9, 0x0b31010c0b360706, 0x39e7ffbc2e0f58ff, 0x01ff0b3f03053cbf, 0xbcce4eb2ffbd84c4, 0x0b9001070bd46805, 0x0b62000c0b701905, 0x21d7f5ff0b5d0007, 0x0007bd969b64ffbd, 0xffbba6183bff0b6b, 0x0b820007bd910402, 0xa83f05ff0b7d0006, 0x0b0bbca9963fffbd, 0xffbd5bcd3cff0b8b, 0x0bb400063cc18dd9, 0x0ba10b0b0ba6340e, 0x1b62ff3dbf3b29ff, 0x58ff0baf00023e09, 0xbcb0975bff3d8c02, 0x0bc110060bc6000c, 0xf1e3ffbd93aeb0ff, 0xebff0bcf1006bd7b, 0xbdac330effbdc96a, 0x0bfccd040c1c060d, 0x0be9030b0bee320e, 0xc3b4ffbd26fc85ff, 0x1bff0bf70107bdcf, 0x3d928445ffbcf7e4, 0x0c09000c0c0e0107, 0xde5effbc794934ff, 0xd5ff0c17320ebd48, 0x3caa7031ff3e10d7, 0x0c32000c0c400b0b, 0x19643fff0c2d330e, 0x030bbc84d153ffbd, 0xffbd23a154ff0c3b, 0x0c52330ebd8cf1a6, 0xeb1ba8ff0c4d0207, 0x00073dafc18bffbd, 0xffbd96bc85ff0c5b, 0x0ea0000f3c1cb57c, 0x0cf8000c0d84050d, 0x0c9402120cb4030b, 0x0c8100020c860d06, 0xca24ffbc183b73ff, 0x8fff0c8f240e3cb8, 0xbc9fc65fffbb5cd7, 0x0ca15a040ca60002, 0x5595ffbd979456ff, 0xf2ff0caf5e043dd0, 0x3e9bed47ff3e42ac, 0x0cca070e0cd82e0e, 0x1e8cc8ff0cc50806, 0x02113c4748d7ffbd, 0xff3d07f2c9ff0cd3, 0x0ceaa9043e089251, 0x0033ebff0ce50d06, 0x350ebd84f361ffbb, 0xff3d05f167ff0cf3, 0x0d402e0ebcf4e1cb, 0x0d12170e0d207a04, 0x96b28bff0d0d020e, 0x81053d07b2e5ffbb, 0xff3c268b93ff0d1b, 0x0d320a0ebe3eb860, 0x026a78ff0d2d2905, 0x89043c060136ff3d, 0xff3d0c5d6aff0d3b, 0x0d64a1043d5e645e, 0x0d5140010d56020b, 0xa9e1ffbbe9e90eff, 0xd4ff0d5f000dbd32, 0x3c1110beffbc0ced, 0x0d71c5040d76310e, 0xf800ff3d73bcf0ff, 0xb4ff0d7fcd04ba8a, 0xbdd81d4cff3caaa9, 0x0dd017060e142b0e, 0x0da27e040db0230e, 0x0efcabff0d9d1106, 0x9a043b8bb926ff3d, 0xff3d3fb994ff0dab, 0x0dc202083d782634, 0x32a10bff0dbd0007, 0x070b3d2ca534ff3c, 0xffbd5c48a8ff0dcb, 0x0df49c043d09c7e1, 0x0de17b040de6090e, 0x4dd4ffbcd61dddff, 0xabff0def0105bd65, 0x3cc20f1affbd7b5e, 0x0e0113050e061906, 0x2ce5ff3d6704f2ff, 0xd9ff0e0fa7043a39, 0x3bd08cfdffbd9328, 0x0e3c330e0e5ca704, 0x0e2984040e2e0906, 0xcc39ff3b8dec86ff, 0x1cff0e3741013ccd, 0xbd65a247ff3c360c, 0x0e4921010e4e4101, 0x52a9ffbc313e13ff, 0x6bff0e57a4043bfb, 0xbe0f2669ffbd6138, 0x0e72350e0e80cd04, 0x395d48ff0e6d0208, 0x040bbc38c5c1ff3d, 0xffbd658259ff0e7b, 0x0e92030b3c8f390d, 0x8795a2ff0e8d0208, 0x0007bea05ff4ffbe, 0xffbe501df5ff0e9b, 0x0fc000073c8f5b89, 0x0ef00b050f34ae04, 0x0ec205050ed00208, 0xb33bc3ff0ebd8004, 0x0108bd40f58fffbc, 0xffbcbfbe2bff0ecb, 0x0ee21306bbbf561b, 0x1a92dbff0edd0606, 0x80043ca2a78cffbc, 0xffbc7d7f30ff0eeb, 0x0f14030bb66ec3c4, 0x0f0100020f068705, 0xf27effbcb5e171ff, 0x75ff0f0fad04bbe9, 0xbc5f6b4bff3bca49, 0x0f218c050f26060e, 0xca79ffba184febff, 0xb2ff0f2f0109bcb2, 0xbc6dbdc1ff3c22c6, 0x0f5c4c050f7c0002, 0x0f49340e0f4e3d01, 0x7577ffbd9a2725ff, 0x9bff0f57010cbcb9, 0x3c05cec4ffbc4211, 0x0f69010c0f6e030b, 0x4a88ffbc9311f4ff, 0x2fff0f770b0bbd18, 0xbd177ca4ffbd6342, 0x0f920f060fa0080e, 0x82569bff0f8db304, 0x0b0b3c2f0af3ffbb, 0xffbc6203daff0f9b, 0x0fb20109bc23a5ae, 0x909fb8ff0fad7a05, 0x8d05bc79f3c1ffbb, 0xffbd30fdd2ff0fbb, 0x1050020dbce06277, 0x0fec0f06100c6f05, 0x0fd9360e0fde010c, 0x42a0ffbaf8738eff, 0x41ff0fe7150ebd17, 0x3cc8b94dff3b04b3, 0x0ff914060ffe170e, 0xc39eff398e278dff, 0x58ff10070305bc23, 0xbc6b7b4bffbd4dc8, 0x10220d0e1030aa04, 0xd41437ff101d060e, 0x030bbd51e10bffbc, 0xffbbc7b85bff102b, 0x1042030b3d11808b, 0x221224ff103d0006, 0x000cbc0cb5b7ffbd, 0xffbd94d9c7ff104b, 0x1098b204bdc202d3, 0x106a81041078050e, 0x1d4078ff10657d04, 0x81053d6ffbf7ffbc, 0xffbd733dd1ff1073, 0x108a080bbd021e48, 0xcd36ccff1085020b, 0x310e3ce11ef0ffba, 0xff3d5ac05cff1093, 0x10bcc904bd399d1b, 0x10a9000210ae5b05, 0x4067ff3c8b91e5ff, 0x64ff10b700023d7e, 0xbae628e3ffbc751a, 0x10c90b0b10ce6d05, 0x6330ff3d4796e6ff, 0x13ff10d7cc043dcb, 0xbd69eee4ff3c281d, 0x0000000800000013, 0x00000001000003e8, 0x00000000000010dc, 0x0484011107e95504, 0x012c2a0102485404, 0x005c480400a0140e, 0x002e000f003c2404, 0x99963eff00290c04, 0x0012bd3aacd0ffbc, 0xffbc2a267fff0037, 0x004e0011bc1d7f51, 0x18314fff00490009, 0x0007bc52c6adffbc, 0xffbc0ce564ff0057, 0x00800112bbbf8a08, 0x006d000800720007, 0xc961ffbc38ebb0ff, 0xd1ff007b140bbc0c, 0xbc076ba2ffbb8c37, 0x008d110300920106, 0x519dffbd33f7d6ff, 0x09ff009b0406bd16, 0xbd016f70ffbc83dc, 0x00c8450400e82801, 0x00b5000c00ba2701, 0x1dedffbc33a527ff, 0x8cff00c3070bbc23, 0xbb54beecffbc574c, 0x00d5000700da030b, 0x92bdffbc53ec9fff, 0x3aff00e34f04bc22, 0xbbe609c3ffbc11bf, 0x00fe030b010c5204, 0x5ca086ff00f90208, 0x4e04bbb10797ffbc, 0xffbbf4a781ff0107, 0x011e2901bc4eb337, 0xe217dcff01195304, 0x01073b81a3d2ffbb, 0xffbc5da594ff0127, 0x01bc030bbcce6527, 0x0158070d0178000f, 0x01450207014a060d, 0x06c5ffbc90bcccff, 0x04ff01530011bce6, 0xbd64fdbdffbd1d1c, 0x01654001016a000b, 0x94bfffbdd03210ff, 0x18ff01732f03bd20, 0xbde972e7ffbe07d1, 0x018e2703019c010c, 0x0217abff01893a04, 0x0109bbb1d6f0ffbc, 0xffbc287e54ff0197, 0x01ae0007bc6ae0b3, 0x5d65afff01a93f05, 0x020ebbbf7058ffbc, 0xffbbdc00e6ff01b7, 0x0204020eb9cd3f13, 0x01d6070d01e4000e, 0x2d506cff01d16d05, 0x3c04bc6d389fffbc, 0xffbbf70535ff01df, 0x01f6010ebb128784, 0xaeed1bff01f10006, 0x0108bc7c409dffbb, 0xffbc3270c7ff01ff, 0x0228000cbba4ef84, 0x02155b05021a0008, 0xd645ffbc29b789ff, 0xebff02233801bbe6, 0xbb0d31f7ffbbcdcd, 0x02350012023a0009, 0x088fffbb8fae61ff, 0x87ff02434e053b2e, 0xbb09d95bffbc2d28, 0x02dc020e0368110e, 0x027838010298100b, 0x02650e0b026a0009, 0xc9e4ffbda3ccbeff, 0xf8ff02733f05bcb6, 0x3c0eba10ffbc3a8d, 0x02850009028a0a0b, 0xddbcffbcbcfa95ff, 0x31ff0293000fbc39, 0xbc25eeb8ffbd0ae7, 0x02ae010e02bc6005, 0x8faf71ff02a93c01, 0x0009bb93edf0ff3b, 0xffbc4f59d9ff02b7, 0x02ce000e3bbb7a47, 0x20d67dff02c9060d, 0x6105bbafb64fffbc, 0xff3c79c944ff02d7, 0x0324070e3b09dbd4, 0x02f6030e03040011, 0xda0948ff02f10109, 0x050ebc81a501ff3b, 0xffbc8da0afff02ff, 0x03160009bbcc5b14, 0xbba4c0ff0311030e, 0x02093c98b27dffba, 0xffbae5d872ff031f, 0x03481205bc85f555, 0x03351e01033a080e, 0x1e0cffbd166b28ff, 0x76ff03430b05bd2e, 0xbc376555ffbca1e9, 0x03550a0e035a0012, 0xd254ffba5ea70cff, 0x01ff0363060dbc73, 0x3cedc7b2ffbb7f2d, 0x03b4160e03f8180e, 0x0386130e0394140e, 0x880c5dff0381100b, 0x1105bcdcec90ffbc, 0xff3c7450c3ff038f, 0x03a60e03bc8e7ae6, 0x420298ff03a1150e, 0x4005bca9e020ff3c, 0xffbaf16d10ff03af, 0x03d81d01bc71527e, 0x03c5001103ca1c01, 0x38f6ffbca0742aff, 0x94ff03d30007bcd8, 0x3b0f228effbc9a22, 0x03e5020803ea030b, 0xe300ffbca9f777ff, 0xbeff03f32901b88a, 0xbccfe5eeffbcaf1f, 0x04201d0e0440210e, 0x040d0b0504120b0b, 0x11baffbc830ca2ff, 0x7dff041b1c05bc11, 0xbc6f3384ffbcc949, 0x042d02080432070b, 0xba13ffbc3b6a7dff, 0xcfff043b16033c33, 0x3c0e9e91ffbc0447, 0x04560b0b0464220e, 0x58619bff0451030b, 0x0d0bbca80ceeffbc, 0xffbb87a199ff045f, 0x04760208bca4fd36, 0x404e2eff04712f0e, 0x0b05bc69c55fffbc, 0xffbc5f4874ff047f, 0x06c40212bb4184b5, 0x051c100105a83204, 0x04b8000704d81504, 0x04a5000e04aa0c04, 0x6003ffbc9a849cff, 0x41ff04b30006bc2a, 0xbc5f3982ffbc1317, 0x04c5000d04ca030d, 0x76fbffbc38b2e5ff, 0x58ff04d30805bc0c, 0xbbb82228ffbc17f5, 0x04ee060504fc1c0e, 0x362052ff04e9090b, 0x2a04bc0114b3ffbc, 0xffbb962f94ff04f7, 0x050e1d0e3a8dad43, 0xe91324ff05090f01, 0x230ebca07018ffbc, 0xffbbfe2c81ff0517, 0x05641c04bc1fa5ff, 0x0536010d0544040d, 0x4235a1ff0531170e, 0x0006bd1b09eeffbc, 0xffbba56600ff053f, 0x05560002bc406c58, 0x6f11dfff05510107, 0x61053b488ec6ffbb, 0xffbcbcf72cff055f, 0x05880007bdf7dfc5, 0x0575020b057a0006, 0x0bbfffbc2b3948ff, 0x3eff058300083aab, 0xbc0adaacffbc8a0d, 0x05950006059a0d0e, 0xaf5bff3c269093ff, 0xccff05a31c0ebb33, 0xbc76abceffbb7156, 0x05f400060638070e, 0x05c68e0505d40009, 0xfe1758ff05c17b05, 0x00023ac6b747ff3c, 0xffbd6bdba6ff05cf, 0x05e652053c05621d, 0xe92bb6ff05e1030b, 0x030e3c4da2c6ffbc, 0xff3c8eea6cff05ef, 0x061801063ac69c95, 0x0605010d060a1305, 0x3653ffbd59c027ff, 0xc0ff06133a04bd4d, 0xbd1c4ec5ffbcd709, 0x0625000f062a2e03, 0xcf81ff3d1e7467ff, 0x28ff06331006bbf1, 0xbc321a8bff3b427a, 0x0660240e06806e05, 0x064d170e06520006, 0xcdaeff3c1d83ecff, 0xbcff065b02113aa6, 0x3cf35ea0ffbc1551, 0x066d010d06722a0e, 0xb629ffbc61fe57ff, 0xcfff067b000bbad5, 0xbc0c1d18ffbcd3d3, 0x0696010706a45304, 0x723d99ff06910002, 0x4e043cfa4e0effbc, 0xffbdcd790bff069f, 0x06b6080ebb3bd8ec, 0x52efe1ff06b1010b, 0x0d0ebdfa305effbe, 0xffbc90a377ff06bf, 0x07a54f04bdc55a17, 0x0714000d07580d0e, 0x06e6000206f41f04, 0xfc5ee3ff06e10007, 0x020e3c810496ff3b, 0xff3ced48c8ff06ef, 0x0706030bbc494765, 0x3772e7ff07016105, 0x26013c10c8f0ff3d, 0xff3d2607edff070f, 0x07383b043b9f29fa, 0x0725030b072a0002, 0xd654ff3d956336ff, 0x87ff073325043d40, 0x3dfed76cff3d2227, 0x07450002074a030b, 0x3117ffba1cfd72ff, 0x29ff07534a043c5e, 0x3d8ae328ff3d2770, 0x0777340107970009, 0x7b3840ff07690007, 0xe4d0ff07720107bd, 0x04bd97aed9ffbda0, 0xff0784530507894c, 0xfdbcceffbca152dc, 0xab2eff0792030bbc, 0x05bd3cd674ffbdbe, 0x3d2397a8ff07a061, 0xc9030bbc75b700ff, 0xb6610507bb6d0507, 0x76ff3e556f48ff07, 0xff07c400073e5a75, 0x602e76ff3e6203cf, 0x2e08ff07d200073e, 0x610507e402073e76, 0xff3e868621ff07df, 0x87be1bff3e870f7f, 0x2d310e0c6901113e, 0x8501080911010c0a, 0x2101070841900508, 0x0e0b0508135a0508, 0x16ffbcd919e6ff08, 0xff081c0008bc4743, 0x69b9b2ffbba0c6af, 0x2e140b08331e0e3b, 0xf6ffbbe13e8cff08, 0xff083cb004ba9e48, 0xc3bbaaff3a913b47, 0x57000f0865cd043c, 0x952bff0852010b08, 0x0ebdbec942ffbcdf, 0xbc1d148fff086022, 0x771d0e3bd2c4e3ff, 0x090cff08721c0e08, 0x07bd70a85bffbbe1, 0xbca1e715ff088000, 0xcd040e3c762c29ff, 0x9f070d08ad0d0b08, 0xa3d7ff089a020b08, 0x04bc427982ffbcd2, 0xbb1c2b0bff08a874, 0xbf020e3c77d2dfff, 0x02a1ff08ba000e08, 0x0dbbaaf2e4ffbc89, 0xbbc86b04ff08c806, 0xf1000c3c3ac783ff, 0xde0a0b08e3140b08, 0x9fffbbe069a4ff08, 0xff08ec7005b8b8c8, 0x2daa3fff3bf77b36, 0xfe490509030e0b3c, 0x98ff395b18d2ff08, 0xff090cbd043c89ab, 0x3d90a7ff3ca25106, 0x5d2a0109a13c013d, 0x2f070d093d000709, 0x2061ff092a120b09, 0x05bbe87975ffbc48, 0xbcc01429ff093844, 0x4f110bbb48d5d3ff, 0xfc2cff094a020809, 0x03bc880760ffbbb2, 0xbc7e891fff09580c, 0x81110b3ba139feff, 0x6e9a040973020709, 0x63ffbb9d779bff09, 0xff097c9b04bcdfe6, 0xa86e2dff3c4672de, 0x8e01120993aa04bc, 0x1cff3c7baa16ff09, 0xff099cb504bcb6df, 0x9018b3ffbc1dfdef, 0xc9a10409e9cc04bd, 0xb6000e09bb040e09, 0x17ffbcba66c7ff09, 0xff09c4030b3a297b, 0x563254ffbb07b3e7, 0xd67c0509db030e3c, 0xddffbbcc729cff09, 0xff09e40012bc93ec, 0x511f73ff3d00a7cc, 0xff01070a0d84053c, 0x13d2ff09fa2d0e09, 0x0ebcfd2dc5ff3d23, 0x3d37eb4aff0a0818, 0x1f1c0e3ddd9a26ff, 0x04eaff0a1a180e0a, 0x0e3ddfc4a6ff3cb9, 0xbd972dffff0a281d, 0x4dcc043aaa1c87ff, 0x7d00060ac140010b, 0x4f3b010a5d0a0b0a, 0xcd17ff0a4a79040a, 0x01bcc1c4c9ffbc69, 0xbc29d1b7ff0a583f, 0x6f88043ba52abeff, 0xff95ff0a6a80040a, 0x05bcf2f73dffbc7b, 0xbd877389ff0a782a, 0xa1350ebd304ab8ff, 0x8e0b0b0a9327030a, 0xbfffbc28f457ff0a, 0xff0a9c3f013b9d1c, 0x30796bffbc95dcb0, 0xae360e0ab30207bd, 0xf8ffbca332eeff0a, 0xff0abc360ebcf3bc, 0x413af8ffbcd3a8d9, 0xe9bd040b090002bd, 0xd60a0b0adbbc040a, 0xd8ffbc6ec393ff0a, 0xff0ae4320ebca90d, 0xb6f7e3ffbdb4d0f0, 0xf6c3040afbcb04bc, 0xadffbc3c9550ff0a, 0xff0b0400073bd144, 0x4861dbffbc8762a3, 0x1f330e0b2d2703bd, 0xc458ff0b1a01120b, 0x043ddc3b93ffbd13, 0x3c83c89fff0b28c0, 0x3f00083e010fecff, 0x1c6dff0b3a060d0b, 0x07bd51523cffbc80, 0xbc5248d6ff0b4800, 0xdd68053bc35fd5ff, 0x7919050b9901070b, 0x6600080b6b00070b, 0xc3ffbb957c3bff0b, 0xff0b740b0bbd11a8, 0x8e2e0affbd7120ac, 0x8600060b8b0007bd, 0xd3ffbd976be8ff0b, 0xff0b940b0bbc98a0, 0xae32d9ffbd45d24c, 0xaf340e0bbd00063c, 0x83ecff0baa61050b, 0x023db79535ff3e03, 0x3d7c0435ff0bb800, 0xcf000cbc9eee9bff, 0xc01aff0bca340e0b, 0x02bd84ea05ffbd62, 0xbdb546a1ff0bd800, 0x25060dbd9afac0ff, 0xf7320e0c05cd040c, 0x49adff0bf2030b0b, 0x07bdbafcecffbd16, 0xbcdf1a1eff0c0001, 0x1701073d83dd73ff, 0x082cff0c12320e0c, 0x0ebd23e8eeff3b51, 0x3e025bd9ff0c2032, 0x490b0b3c9964f4ff, 0x3684050c3b070d0c, 0x04ffbd56a595ff0c, 0xff0c44030bbce95d, 0xee7a27ffbd624c87, 0x567a050c5b330ebd, 0x0effbe191d8cff0c, 0xff0c640007bd96e7, 0x0d09bcffbd87a9a9, 0x8d050e0ea9000f3c, 0xbd000e0d01030d0d, 0x8f0b060c9d91040c, 0x7109ff0c8a01070c, 0x0dbd4af86affbcea, 0xbd020b62ff0c9801, 0xafa904bc801f92ff, 0x1116ff0caa19060c, 0x02bd2c161dff3b53, 0xbd662e17ff0cb800, 0xe1030ebcafd8ceff, 0xce04050cd38f050c, 0x9dffbcbfdba9ff0c, 0xff0cdca4043bbb6a, 0x1ebff9ff3ab76353, 0xee00060cf31806be, 0x42ff3d7526a1ff0c, 0xff0cfc10053cadc5, 0x2d9d0affbd3b8fe5, 0x2908060d49000e3c, 0x166f040d1b01090d, 0x9cff3c249100ff0d, 0xff0d247b04bd8f04, 0x68055dff3cc5841b, 0x36b5040d3b030b3d, 0xd4ffbbb6df02ff0d, 0xff0d441506bd1c0f, 0xe1f2f7ff3cdc41b7, 0x5f17060d6d9005bb, 0x141aff0d5a00060d, 0x043d1869ebff3d60, 0xbcd0bb8aff0d68a5, 0x7fa7043cd67636ff, 0x8ee9ff0d7a90040d, 0x0cbd95c320ff3d31, 0x3e30c2a7ff0d8800, 0x1d60053d4bfc01ff, 0xb975040dd9230e0e, 0xa60d0e0dab00060d, 0x17ff3d2db6c6ff0d, 0xff0db402113c8e94, 0xa62e0bffbc31f73a, 0xc6060e0dcb15063d, 0xa6ff3cb53865ff0d, 0xff0dd400053d4309, 0x6d467effbd26e0f9, 0xef0d060dfd10053c, 0x7a84ff0dea330e0d, 0x04bc2d179cff3c34, 0xbcb983c0ff0df8a7, 0x0f0a063c4ff554ff, 0xafc8ff0e0aa1040e, 0x0b3d103d13ff3c36, 0xbcbfc533ff0e1803, 0x6500073cfdc7d5ff, 0x37b4040e45010b0e, 0xd4cbff0e320e0e0e, 0x05ba7ca56fff3d43, 0xbdb4770fff0e4093, 0x57190e3d021837ff, 0x0f07ff0e527b050e, 0x0b3d6e42feff3d03, 0x3c0d12e4ff0e6009, 0x89000d3d26cc4bff, 0x7688050e7b1d0e0e, 0x72ffba012e04ff0e, 0xff0e848105bd6c5b, 0x4d92bdff3d6e8e87, 0x96150e0e9b010d3b, 0x99ff3c21a1b2ff0e, 0xff0ea40006bd0930, 0x8389a2ff3d6e7b5e, 0x3dae040fc900073c, 0xd902080ef911050f, 0xc680040ecb05050e, 0xceffbca14f60ff0e, 0xff0ed4010cbd2da9, 0xb9941fffbcbfcaaa, 0xe603050eeb0b0bbb, 0xd6ffbcaca0ceff0e, 0xff0ef4360eb9de48, 0x32eda5ff3c70f653, 0x0f020b0f1d0f0bbd, 0xdf6dff0f0a0d0e0f, 0x09bcf95ca2ffbbe4, 0xba5b96baff0f1801, 0x2f0006bc30d21cff, 0x9477ff0f2a00080f, 0x063d123c8bff3c09, 0xbcafd833ff0f3802, 0x8500023b108834ff, 0x57020d0f6559050f, 0x79a5ff0f52c1040f, 0x0cbc8f049fffba2c, 0x3c1d60dcff0f6000, 0x77030bbd269c87ff, 0x596eff0f72010c0f, 0x0bbd09b742ffbc86, 0xbd4f35aeff0f800b, 0xa90b0ebd0d907cff, 0x960b0b0f9b12060f, 0x16ffba8ef9a7ff0f, 0xff0fa4bc043c1631, 0xa636a8ffbc52b5ad, 0xb60d0e0fbb0009bb, 0x38ff3a68debeff0f, 0xff0fc40e0ebc359e, 0x16cd62ffbc8e2453, 0x157a051050020dbd, 0xe7340e0ff5340110, 0x9911ff0fe200060f, 0x04bbb310a6ff3ceb, 0xbca78bcbff0ff0a9, 0x07000cbd343e45ff, 0x9e78ff1002000210, 0x06bc189454ff3b19, 0x3c0a1c05ff101011, 0x30aa04bbd284eaff, 0x26030b102b0d0e10, 0x19ffbcad82bfff10, 0x3cb76c9cffbd1c52, 0x103d000c1042030b, 0xa105ffbcee3277ff, 0xc3ff104b0008bd2c, 0xbdac5f20ffbd81f8, 0x1078030e1098ad04, 0x10657d04106a8104, 0xfc5bffbc0d86daff, 0x7cff1073000c3d57, 0xbd71dd7dffbc9125, 0x1085020b108a0c0b, 0x7fceffb9545464ff, 0x14ff109301083d07, 0x3db211feff3d13ec, 0x10ae5b0510bc7205, 0x974bd9ff10a90002, 0xc6043d80d9fdff3c, 0xff3b849fc0ff10b7, 0x10ce090b3d686c0a, 0xba33edff10c9050e, 0xcc043bb4fdb4ffbc, 0xffbc0c86f1ff10d7, 0x00000013bd528a34, 0x000003e800000008, 0x000011d800000001, 0x08dc550400000000, 0x024883050460000f, 0x00a00f01012c1f01, 0x003c070b005c0901, 0x00292a0e002e020b, 0x9698ffbc1a98eaff, 0x78ff0037000cbc3c, 0xbc01b874ffbc3d9b, 0x0049000d004e050d, 0x4eb6ffbc28ca92ff, 0x3eff00571c04bbf1, 0xbb77395bffbbe67d, 0x007200070080090b, 0x54b630ff006d000c, 0x0505bc05f59fffbc, 0xffbc4ab06fff007b, 0x00920705bba0e41c, 0x85261aff008d0303, 0x0006bbe00576ffbc, 0xffbb13e8c6ff009b, 0x00e8090bbd0612cf, 0x00ba010b00c80007, 0x104a71ff00b5000b, 0x4b04bc55997affbd, 0xffbbd34f07ff00c3, 0x00da020bba9dbc67, 0x3081a6ff00d5010b, 0x0e05bbac3e05ffbc, 0xffbc05c7ddff00e3, 0x010c00063ad1c2ed, 0x00f92c0400fe0503, 0xecdaffbc44da96ff, 0x1fff0107000cbcab, 0x3bed52c0ffbc5d16, 0x0119030e011e0b05, 0xf0ddffbc69305cff, 0x85ff01272404bb95, 0xbd28c10cffbc84dc, 0x0178080601bc2504, 0x014a400101581204, 0x1b4fcaff01450c04, 0x020dbb5fe41fffbc, 0xffbcc3be9dff0153, 0x016a4001bd79c2c0, 0x48c2d6ff0165010e, 0x220439d2f5dcff3c, 0xffbc6bc07aff0173, 0x019c0d06bb49ffed, 0x0189010e018e0d04, 0xa07dffbc906abfff, 0xe1ff01972201bc31, 0xbbb869f6ffbc7028, 0x01a9070b01ae3f01, 0x82f7ffbb83751eff, 0xd9ff01b7000bbc87, 0xbcb52cdfffbc1751, 0x01e4010d0204040d, 0x01d11d0e01d6010b, 0x0161ffbd4eb523ff, 0x2eff01df000dbc04, 0xbcb0e103ff37afea, 0x01f1020b01f60006, 0xf640ffbb87ea67ff, 0x5bff01ff11063c61, 0xbc332af6ff3acef2, 0x021a06060228030e, 0xc49c9fff02154c04, 0x0e063d528d5bff3c, 0xff3bc85f1fff0223, 0x023a2a03bc553b9e, 0x8dc4c2ff02351f05, 0x49043ca1578eff3b, 0xffba163189ff0243, 0x034d000c3c2dcd79, 0x028f4d0402d30002, 0x026a420402780009, 0xd4ead7ff0265000d, 0x44043b26d9a0ffbc, 0xffbdfd64aeff0273, 0x028a8905bcc75683, 0xef2bf0ff02858405, 0x62ffbe24a7a4ffbd, 0x0402b3010ebe5c0f, 0xff02a0020d02a554, 0xc06c35ffbdce3b60, 0x8666ff02ae00113c, 0x04bd1e3201ffbc4c, 0xff02c0030b02c551, 0xb541f8ffbcfc34f1, 0xdfdbff02ce050b3c, 0x0d3e0badfdff3d8b, 0x0b02fb000d031b02, 0xff02e8430402ed05, 0x2fc823ffbd833ea2, 0x677cff02f69205bd, 0x073ca525d8ffbcd3, 0xff0308000e030d00, 0x78f668ff3baa45f0, 0x70c4ff031639043d, 0x09bc816220ffbd16, 0xff0328030d033600, 0x033101073b02f100, 0x247bff3d8ef7a3ff, 0x9cff033f84053cc5, 0xff034839043d912b, 0x3eb3abffbd479a28, 0x99000d03d43d04bb, 0x6b87050379030b03, 0xf22aff0366000703, 0x0ebd156d02ffbd90, 0xbcf097dfff037402, 0x8b1404bd6d38e6ff, 0x2342ff0386060b03, 0x0ebd216e2affbd05, 0x3c56b400ff039402, 0xbd3804bd24014cff, 0xaa2d0403af840503, 0xc8ff3d1eab58ff03, 0xff03b80002bd6e63, 0xa863b1ffbe251a15, 0xca000e03cf0002bd, 0x58ffbe77bd90ff03, 0xbe12b589ffbe5469, 0x03fc8505041c5304, 0x03e9500403ee0002, 0xed76ff3ad76ef1ff, 0x5eff03f70009bd1e, 0xbb173800ff3d4f92, 0x04094b04040e030b, 0x437effbd8b5a9fff, 0xa2ff04178905bcd3, 0xbce34688ff3b4e5b, 0x0432020e04408605, 0x38b3a0ff042d0a0b, 0x050b3cae4180ffbd, 0xffbdf47335ff043b, 0x04528c05bd5eba66, 0xcd3517ff044d050b, 0x9005bd21e985ffbd, 0xffbe1df73eff045b, 0x06a0070ebe770233, 0x04f8170405843504, 0x0494000e04b40804, 0x048110010486020d, 0xe9c5ffbc21fa70ff, 0xedff048f0304bc60, 0xbc1ed249ffbc2a4b, 0x04a1000404a60304, 0x5b00ffbc213fdbff, 0xc1ff04af0011bc1c, 0xbc1300d9ffbc1c23, 0x04ca001104d80006, 0x13e9dbff04c50009, 0x1901bc23ed10ffbc, 0xffbc01077cff04d3, 0x04ea1304bc091558, 0x59f5d8ff04e50106, 0x1604bc3673b5ffbc, 0xffbc58f03bff04f3, 0x05400007bc8cdb1a, 0x05126b0505200008, 0x279db5ff050d0011, 0x7905bc0c655cffbc, 0xffbc304fb7ff051b, 0x05320011bc8a286c, 0x0e3672ff052d0108, 0x0112bc007bf6ffbc, 0xffbba62ffdff053b, 0x05640112bc49eb34, 0x0551070d05560011, 0x2d99ffbc090832ff, 0x58ff055f5505bbd4, 0xbc24a703ffbba020, 0x05710a0605762305, 0xf6b6ffbc25f4eeff, 0xc2ff057f1d04bc6c, 0xbc8c0773ffbc0527, 0x05d0020e0614060b, 0x05a2010c05b0070d, 0x7fd186ff059d060d, 0x000ebc36dc22ffbc, 0xffbc3d60b5ff05ab, 0x05c25404bbafe66b, 0x6d2065ff05bd0009, 0x010cbc2a3de8ffba, 0xffbc8f9ab6ff05cb, 0x05f4000cbd34aa85, 0x05e1530405e6060e, 0x5092ffbc255b2eff, 0xf3ff05ef0002bc9f, 0x3afa67d9ffbbe4ce, 0x0601001206060109, 0x397fffbbc01544ff, 0x2eff060f3f053b2b, 0xbc15ba66ffbc7841, 0x063c0012065c0112, 0x0629000e062e0009, 0xcefeffbc02e5f1ff, 0x1cff0637030ebb8b, 0xbc43a414ffbc2162, 0x06494101064e020e, 0x24d6ff3a119119ff, 0x27ff06570009bbf0, 0xbbf65994ff3bb7c0, 0x0672000906800306, 0xbedd8aff066d3601, 0x3b04bc8d5617ffbc, 0xff3c08e9a6ff067b, 0x06921006b9b7adac, 0x553b3cff068d0e0b, 0x000ebc2756dfffbc, 0xffbc8cc7a6ff069b, 0x07c0080ebcc6ce98, 0x06f0320307344904, 0x06c2240306d04804, 0x1638deff06bd4104, 0x2905bc57be07ffbc, 0xffbc48271cff06cb, 0x06e20108bc22b2c4, 0xed366fff06dd010c, 0x060d3bc1ff9fffbb, 0xff3cec088bff06eb, 0x071402083b3385e7, 0x0701000907064504, 0xa262ffbc411d6dff, 0x28ff070f010cbbf6, 0xbae15c01ffbc8f0b, 0x0721001107264804, 0xcbccffbb7c86f0ff, 0x81ff072f020bbcaf, 0x3cd5d090ff3bc992, 0x075c0009077c070d, 0x0749010b074e5204, 0xe3cdffbd043f35ff, 0xacff07571e05bcbb, 0xbc4b26fcffbd16b6, 0x07690209076e5305, 0xd614ff3ad886e7ff, 0x33ff07775304bb93, 0x3a9ea7dcffbc0db0, 0x0792540407a00009, 0x6720e0ff078d5304, 0x5305bd3435a7ff3b, 0xff3cfc0dcbff079b, 0x07b2010c3cae0c4b, 0xb50b66ff07ad5304, 0x0209bd1e9005ffbc, 0xffbc625177ff07bb, 0x08501a01bce3474c, 0x07ec4404080c0e01, 0x07d9001107de2a0e, 0x0b05ffbc1ef3e2ff, 0x55ff07e72404bc15, 0xbc40a121ffbc2ba1, 0x07f9090107fe230e, 0x2222ffbc2a01c5ff, 0xfbff0807020dbbf7, 0xbc3a0ee3ff3a0ddd, 0x0822510408300011, 0x210614ff081d4704, 0x1501bbf7ce23ffbc, 0xffbc4404ddff082b, 0x0842000cbbe0ad72, 0x0c51bcff083d0107, 0x4604bc27fd98ffbc, 0xffbbe63054ff084b, 0x08980d0ebbdac39f, 0x086a4f0408780009, 0x003963ff08653604, 0x5304bb8d89dbffbc, 0xff3b1e9ebbff0873, 0x088a0109bc138da5, 0x27a93eff0885070d, 0x2201bcb91bfaffbc, 0xffbc32e34fff0893, 0x08bc030bbc762f53, 0x08a9000208ae0208, 0x16dfffbc3008a5ff, 0x7fff08b73901bb86, 0x3af128edffbb8e45, 0x08c9011108ce0006, 0xb901ffbbec606eff, 0x98ff08d70d063bb3, 0xbcccf296ffbc89b3, 0x0b20310e0d5c0111, 0x0978050b0a04140b, 0x09147e050934010b, 0x090102090906180e, 0x3b54ffbc477f26ff, 0x58ff090f0011bd09, 0xbc8347a5ffbcb83c, 0x0921020e0926100e, 0x3102ffbcd9615aff, 0x59ff092f070dbc87, 0xbd5b43a4ffbcbe7e, 0x094a060e0958a804, 0x9a766fff0945000e, 0x070ebc1b8efeffbc, 0xff3c1d1fc5ff0953, 0x096a060dbbc9a1b5, 0x0a42ccff0965bb04, 0x0011bc4e35deffbc, 0xffbc016df9ff0973, 0x09c0000c3c03820b, 0x0992000909a0b204, 0xb68d99ff098d000d, 0x070dbbb17738ffbd, 0xffbc755f14ff099b, 0x09b20b0bbcee5275, 0x0db7d7ff09ad1d0e, 0x070d3c0c44f0ffbc, 0xffbce1a7bdff09bb, 0x09e4b3043b15e946, 0x09d1350109d68104, 0xbf95ffbc027784ff, 0xbbff09df180e3b32, 0xb96b2313ff3bd8d0, 0x09f17b0509f60b0b, 0x7ab3ff3cb02f1dff, 0x3bff09ff190e3c04, 0xbcbba2c4ffbbb85c, 0x0a509e040a94010c, 0x0a2200020a300008, 0x094dc6ff0a1d7404, 0x220ebb68d892ffbc, 0xffbab04229ff0a2b, 0x0a4200063cd2be73, 0xc8bb4eff0a3d9d04, 0x0206bad80ce2ff3b, 0xffbd1a0f9aff0a4b, 0x0a740108bc4a0e56, 0x0a6100020a66000c, 0xa064ff3b7e97e4ff, 0x08ff0a6f0d0ebb55, 0x3cb21c0bffbb0245, 0x0a81aa040a86080e, 0x6d58ff3c471894ff, 0x69ff0a8f000cbbe3, 0x3d1b0058ff3c6427, 0x0abcb0040adc3d05, 0x0aa92c050aae0007, 0x10d6ffbc81992fff, 0xdaff0ab70112bb34, 0xbc48b7eeff3c5f56, 0x0ac900060ace0107, 0xea60ffbcbbec7cff, 0x77ff0ad70f063b8b, 0x3b7c4ca3ff3d2cd0, 0x0af2a2040b008f05, 0x1ebd74ff0aed0002, 0xcb043cff8ca4ff3c, 0xff3cf122c9ff0afb, 0x0b120d0e3d7cea13, 0x42a282ff0b0d060d, 0x140ebca35ffcffbd, 0xff3de16e75ff0b1b, 0x0c40cc04bc4aa62b, 0x0b7000060bb44001, 0x0b423f010b50090b, 0x7553d4ff0b3d340e, 0x0208bcc972bcffbc, 0xffba670600ff0b4b, 0x0b628a043cc9bf05, 0x39ff44ff0b5d7504, 0x010cbcae0185ffbc, 0xffbd6d784dff0b6b, 0x0b94350ebcfae4ce, 0x0b81330e0b862703, 0xa781ff3c259b9bff, 0xbfff0b8f3501bbc3, 0xbcd1297fffbc712e, 0x0ba1360e0ba60207, 0x5d4cffbc92e104ff, 0x22ff0baf0a03bcdb, 0xbcbefe88ffbd2faa, 0x0bdcbd040bfc0002, 0x0bc9bb040bcebc04, 0x710fffbc90c4e7ff, 0x08ff0bd7320e3cfc, 0xbca4abe5ffbda2bc, 0x0be9330e0beecb04, 0x5769ff3c3b2c9cff, 0x8cff0bf70007bc32, 0xbd34580effbc73b1, 0x0c12330e0c202703, 0x04fd84ff0c0d0112, 0xc0043dc635a1ffbd, 0xff3c6d35e5ff0c1b, 0x0c3200083de84fd9, 0x669999ff0c2d060d, 0x0107bd3c639cffbc, 0xffbbba4d7dff0c3b, 0x0cd06d053c17efcc, 0x0c6c340e0c8c0107, 0x0c5900060c5e0007, 0x5cfdffbd764a0cff, 0x25ff0c670b0bbc86, 0x3c8365e7ffbd35e4, 0x0c7963050c7e060d, 0x9023ffbd06c916ff, 0x68ff0c87010cbda6, 0xbdfe86d0ffbd4c83, 0x0ca200060cb0340e, 0x3de8e2ff0c9d320e, 0x000c3dc05864ff3e, 0xffbd4c134aff0cab, 0x0cc20002bd8b7b46, 0x83b6edff0cbd0b0b, 0x02073dac60e2ffbb, 0xffbcfe25ceff0ccb, 0x0d186e053cd56aa0, 0x0cea00020cf8320e, 0x4fb9edff0ce5010c, 0x0b0bbe1c20b7ffbe, 0xffbdb208c1ff0cf3, 0x0d0a340ebe1f4d59, 0x54de48ff0d050008, 0x010c3c81ed12ffbd, 0xffbc790feaff0d13, 0x0d3c7405bd77e9a6, 0x0d2900070d2e0107, 0x484fffbd658cccff, 0x6bff0d37320e3bbf, 0x3d901c04ff3e129c, 0x0d4979050d4e7a05, 0x85c3ffbc58f32bff, 0x60ff0d570107bda2, 0xbbd8ce65ffbd234b, 0x0e80050e0f9c000f, 0x0db002110df4030d, 0x0d8292050d900a0b, 0x04bb8dff0d7d0006, 0x0008bc4aac1eff3c, 0xffbd5efdb7ff0d8b, 0x0da28a05be8600e9, 0x55f90dff0d9d8904, 0x030e3c5db32affbb, 0xffbd30caeeff0dab, 0x0dd412053e167659, 0x0dc112060dc60108, 0xb10aff3e23b2ecff, 0x88ff0dcf030b3d9d, 0x3d9ea1a1ffbcdf2a, 0x0de129050de6000c, 0xe043ff3c89ee17ff, 0xedff0def000ebd06, 0x3db9b663ff3d01e9, 0x0e1c0b060e3c000e, 0x0e096f040e0e0109, 0xb84eff3c173dd0ff, 0xe4ff0e176d04bd26, 0x3d40657dff3c85c8, 0x0e2912060e2e0007, 0x5a97ff3bd5d3acff, 0x1aff0e371506bccc, 0xbbafd005ff3ce5de, 0x0e52030b0e609005, 0xe8e772ff0e4d1906, 0x000cbcacde54ff3c, 0xff3cebf926ff0e5b, 0x0e72a7043d4e775e, 0x5222f8ff0e6d060d, 0x020e3e14ab07ffbd, 0xff3da706d1ff0e7b, 0x0f1074053d194931, 0x0eac00020ecc2b0e, 0x0e99180e0e9e8a04, 0x3f18ff3cc2e8e9ff, 0xf7ff0ea7070b3c1b, 0x3d4021ccff3cf413, 0x0eb9060e0ebe1306, 0x9157ff3cd5c220ff, 0x50ff0ec7000c3d40, 0x3cfd94f2ffbb06dc, 0x0ee2000d0ef0a704, 0x266bbdff0edd0e06, 0x0a06bde00d95ffbc, 0xff3bcdb3c9ff0eeb, 0x0f02340ebca538b1, 0x28acd7ff0efd0f06, 0x040bbbb7c01fff3d, 0xffbcd39830ff0f0b, 0x0f5800073be8ac71, 0x0f2a010b0f38c104, 0xb71907ff0f25b504, 0x0109bd5c1c41ff3c, 0xff3d41777bff0f33, 0x0f4a070b3c8436ca, 0x593058ff0f459405, 0xc9043c39dcd2ffbd, 0xff3d35056fff0f53, 0x0f7c000dbc0626ec, 0x0f69080e0f6e7d04, 0xa84dffbd430d22ff, 0x95ff0f778805be09, 0xbcda30a9ff3cbefa, 0x0f89bf040f8e010b, 0x0744ff3d2219dbff, 0xdeff0f97c904bc96, 0x3c924f02ff3d7d8e, 0x1030ae0410bc0007, 0x0fcc02080fec1805, 0x0fb980040fbe0505, 0x4c07ffbc912dd7ff, 0x93ff0fc70108bd1c, 0xbb4b015fffbc9b3e, 0x0fd903060fde1306, 0x56f5ffbc88f616ff, 0x54ff0fe7000e3c2f, 0xbb2f12b5ffbc5c85, 0x1002790510100b0b, 0xf93a98ff0ffd020b, 0xad04bb8f10beffbc, 0xff3bc10dc8ff100b, 0x1022300ebc85a02c, 0x386e70ff101d020d, 0xa9043c9a080aff3b, 0xffbcf430cbff102b, 0x1078000239c35b4b, 0x104a400110585905, 0xc4414dff1045020d, 0x130bbd75743dffbc, 0xffbc3464a4ff1053, 0x106a030b3b9c1bcb, 0x71d437ff1065010c, 0x0b0bbcf7e374ffbc, 0xffbd3a7d12ff1073, 0x109c0b0ebcfed0de, 0x10890b0b108e1206, 0x2c2dffba80ad8eff, 0x77ff1097bc043c07, 0xbb959794ffbc3da3, 0x10a90d0e10ae0009, 0x74d1ff3a5195a1ff, 0x47ff10b78d05bc23, 0xbc82ba2affbd0cc9, 0x11080505114c020d, 0x10da0e0610e80108, 0x03a7cbff10d52a0e, 0x170ebcad172eff3d, 0xffbcba8a49ff10e3, 0x10faae04bd4c771d, 0x9375b6ff10f5010c, 0x070e3d01811affbb, 0xffbc158d3dff1103, 0x112c010cbd01c27c, 0x11190b0b111e6f05, 0x01b6ffbbed0fc5ff, 0xc7ff1127ad043b37, 0xbd79e532ffbcb5dd, 0x1139030b113e1a0e, 0xd9e0ffbc0efe57ff, 0x62ff11470b0b3c0c, 0x3d2015b8ff3c2852, 0x1174030e1194ad04, 0x1161010e11668104, 0xaa5affbc85c6f8ff, 0xbbff116f000c3d04, 0xbd59adbfffbc82a1, 0x118158051186300e, 0xf368ff3d484a73ff, 0x7fff118f41013ccf, 0x3b5ec6ebffbd9554, 0x11aac60411b87005, 0x31a6caff11a54d05, 0x0b0b3bc7243bff3d, 0xff3d104017ff11b3, 0x11ca0d0e3da85b84, 0x8b6fcaff11c5b704, 0x0002ba1f62b3ffbc, 0xffbc95562fff11d3, 0x000000133bbd820c, 0x000003e800000008, 0x000011fc00000001, 0x09003e0500000000, 0x0248a90404840007, 0x00a07f04012c0108, 0x003c1106005c0211, 0x00290e06002e7604, 0x1f19ffbc0cda10ff, 0x5eff00373001bc5c, 0xbd1368b0ffbc359f, 0x00493c01004e3e01, 0x5c67ffbc61b8d0ff, 0xe1ff00577b043d0d, 0xbd27953cffbcad99, 0x0072350400805004, 0x8a7168ff006d3c01, 0x3b04bc308c70ff3b, 0xff3ce56f84ff007b, 0x00921c053bd54d86, 0xa8c939ff008d0a06, 0x29053dd5acaeff3a, 0xff3d37476dff009b, 0x00e801113b19bbb6, 0x00ba010c00c80012, 0xedadb9ff00b5260e, 0x070dbd5b6a54ffbc, 0xffbc907784ff00c3, 0x00da0a05bd23c8f5, 0x536729ff00d5050b, 0x0008bd08c0b0ffbc, 0xffbcac6fe8ff00e3, 0x010c2605bc6641c8, 0x00f90f0e00fe0405, 0xdd9affbd8beba5ff, 0x0eff010796043c6a, 0xbcf17c4dffbc4f61, 0x0119200e011e1206, 0xc71aff3d0b999eff, 0xe4ff0127a104398f, 0xbd18c1bfffbb8407, 0x0178000f01bc0211, 0x014a270501586604, 0xb8c79fff01451401, 0x050d3aa1b9abffbb, 0xff3bd16d94ff0153, 0x016a1f013cb19051, 0x5ad79aff0165310e, 0x030dbbb1c7d5ff3c, 0xff3ca0db44ff0173, 0x019c5c043d13f860, 0x0189040b018e0b0b, 0x46d4ffbc0db22dff, 0x77ff01973301bbf3, 0x3ae028c7ffbbbadb, 0x01a9001201ae140b, 0x3e50ffbc8f850bff, 0x3dff01b79c04bc2e, 0xbc900094ffbbc0e3, 0x01e45e040204070b, 0x01d12c0401d60b05, 0x284bffbb4ba88cff, 0xd1ff01df14063cd8, 0x3c3f4eb0ffbcd121, 0x01f1020801f61c05, 0x45eaff3dc627d8ff, 0xcdff01ff070ebbf7, 0x3c33c8f5ffbd0f08, 0x021a260102282c04, 0x857728ff02151a01, 0x010e3a89c700ffbc, 0xff3bb7efa5ff0223, 0x023a12063cab7c54, 0x1183edff02351205, 0x02083d3c7afaff3e, 0xff3ccfcbd0ff0243, 0x0368000fbc7041e0, 0x0298aa0402dc030b, 0x026a010e0278360e, 0xc3ddb0ff02651005, 0x0008bae694d5ffbd, 0xff3d79bfa1ff0273, 0x028a0a063df86635, 0x5ac91fff02850e01, 0x0b06bc0699f7ffbc, 0xffbc10cf80ff0293, 0x02bc38053cca6ff5, 0x02a9af0402aeb804, 0x8ee2ff3d2b3a49ff, 0x67ff02b7050dbd27, 0x3d01a0a4ffbc1731, 0x02c9350e02ce0008, 0x2f42ffbc842a36ff, 0xa0ff02d7290ebdbe, 0x3c271c94ff3db07c, 0x0304070b0324030e, 0x02f1010e02f6020d, 0xc7ccffbe0fe56bff, 0xd8ff02ff000cbe49, 0xbe887b58ffbe398f, 0x0311ae040316010d, 0x6791ffbc4b6dfaff, 0x8aff031f010ebd6d, 0x3cb4e8a0ffbb7c34, 0x033a010803482f0e, 0x6de57cff0335000c, 0x010d3d671a6aff3c, 0xff3a261b57ff0343, 0x035a350e3d804361, 0xa342daff0355bd04, 0x08063d4fb705ff3b, 0xffbc2aed0bff0363, 0x03f80b05bdafe551, 0x0394010c03b40208, 0x0381ab040386b004, 0x4b0fffbd27d04cff, 0xfaff038f0705bd91, 0xbc944fc7ffbd1c52, 0x03a1000803a6b304, 0x15e0ffbd12f9c7ff, 0x0fff03af1906bc84, 0xbcda4199ffbb9a3f, 0x03ca180603d80105, 0x4e9760ff03c52601, 0x1906bd841815ffbc, 0xffbd07470dff03d3, 0x03ea0b0bbcdf1829, 0x80eb90ff03e5b804, 0x000cbb4bf659ffbc, 0xffbc00a893ff03f3, 0x044039053bda071e, 0x0412290504200008, 0x05115fff040d0e05, 0x0b0bbc892633ffbd, 0xffbc4b545fff041b, 0x04320b0bbad3e871, 0x1cc7a4ff042d2905, 0xc6043946eca6ffbc, 0xff3b4584d2ff043b, 0x0464b804bc3d1889, 0x0451010c04563b05, 0x159effbd8fca11ff, 0x64ff045fb504bd01, 0x3c953b90ffbcadc3, 0x047139010476140b, 0xe1ddffbb5aba00ff, 0xc4ff047f3701bd05, 0xbdd852f4ffbd0264, 0x05a8020d06c46e04, 0x04d81105051c0211, 0x04aa5e0404b86304, 0xba01d7ff04a55904, 0x0f0e3b8da132ffbb, 0xff3cad0bd9ff04b3, 0x04ca6404bc55f1c3, 0xbed195ff04c51206, 0x130ebd02047bffbd, 0xff3bb22d4cff04d3, 0x04fc6104bc910029, 0x04e9210104ee0006, 0xccacffbadbe481ff, 0x51ff04f702063c40, 0xbbbcfefdffbcf67a, 0x0509190e050e2c0e, 0x3136ff3d2de4c5ff, 0xc6ff05172c013c9e, 0xbd2bd61effbb0da4, 0x0544000c0564030b, 0x05311c0505363505, 0xb68aff3ca40d1aff, 0x09ff053f2504bc98, 0x3e265b09ff3d0098, 0x0551000b05563b04, 0x325dffbc9080d7ff, 0xa8ff055f0a063d4b, 0x3e231b23ff3d5238, 0x057a010e05880b05, 0x6759b1ff05750208, 0x02083cc87b15ff3d, 0xff3e63f0beff0583, 0x059a12053de97610, 0xf5dba7ff05951206, 0x6a043d010c58ff3d, 0xff3cd67822ff05a3, 0x063801113dc2f96e, 0x05d4000605f40002, 0x05c16a0405c62501, 0xdca7ffbbf6d158ff, 0x30ff05cf0f0ebc1f, 0xbbb99855ffbb3899, 0x05e10e0605e61205, 0xfaa4ffbc2980fbff, 0x4fff05ef0106bc97, 0xbc62423effbcbe9c, 0x060a5d0406180112, 0x141f03ff0605020e, 0x000c3c245dc8ffbb, 0xff3c715de7ff0613, 0x062a10063d082091, 0x6f6917ff06250606, 0x000cbb9e4907ffbc, 0xffbc7c1203ff0633, 0x06801e01bcd7fa93, 0x06526b0406600a05, 0xd6bfcdff064d0f01, 0x330ebc1ad0c1ffbb, 0xffbd097149ff065b, 0x06723404bbb00360, 0x21f466ff066d000c, 0x0006b885f83bffbc, 0xff3be06748ff067b, 0x06a41e05bd2f7906, 0x0691410406961905, 0x9a3bff3a9d7caaff, 0x81ff069f11033c4d, 0xbbf2867fffbd09f7, 0x06b1020b06b64101, 0xc302ff3bf9433aff, 0x97ff06bf020b3cab, 0x3b9a8a38ffbd0f77, 0x0758090b07e4000f, 0x06f4010e0714220e, 0x06e10e0606e6000e, 0xa95fffbd3a2aaeff, 0x79ff06ef0b06bc28, 0x3c6a20e7ffbd212b, 0x070175040706020d, 0xe68cffbcc89a0bff, 0xf7ff070f000c3c71, 0x3d63ffe1ff3cdd4d, 0x072a010d07380806, 0xc9110aff0725360e, 0x330ebd670729ffbb, 0xff3c805bdaff0733, 0x074abc04bb13501d, 0x84e5aaff0745a104, 0x000cbd3b0064ffbc, 0xffbbe61a10ff0753, 0x07a003063d3189a1, 0x0772720407800b0e, 0x13ea38ff076d090e, 0x0006be4d2745ff3d, 0xff3c913efbff077b, 0x07920f0ebe079688, 0xd235d4ff078d3305, 0x00063c815a52ffbd, 0xff3cb72f69ff079b, 0x07c4330e3bcff448, 0x07b1160607b68404, 0x7f65ff3d0fad67ff, 0xf8ff07bf1706bd09, 0x3c9d627bff3d3c36, 0x07d1360e07d6c504, 0xf50cff3bacd5efff, 0x1cff07df000cbce6, 0x3de0d637ff3d42d1, 0x083000060874270e, 0x0802001208100002, 0xf66a66ff07fd0a0b, 0x060d3a00132affbb, 0xff3c2c4b6cff080b, 0x08228d043d191ac4, 0x59e877ff081d000c, 0x00123d33062eff3c, 0xff3d6046c0ff082b, 0x085405063db0afef, 0x0841020d0846220e, 0x75b1ffbb333e2dff, 0x43ff084f0206bd0e, 0x3d583e92ffbbc853, 0x0861010e08661a0e, 0x28bcffbc0c5f0bff, 0x3dff086f0f06baa0, 0xbc8c5c75ff3cc920, 0x089c3b0108bc010c, 0x0889280e088e7f04, 0xb2e0ff3c1bd605ff, 0x88ff08972d01bc22, 0xbc82c073ffbd1a2d, 0x08a9270308ae0c06, 0x9564ff3ca90d7cff, 0xbbff08b7ca043a89, 0xbd36f2c9ffbcabaa, 0x08d2110b08e00207, 0x1cdf37ff08cd060d, 0x0002bccd9edeffbc, 0xff3bddfe1aff08db, 0x08f237013d0ce567, 0x0337eaff08ed350e, 0x1d03bd25b624ffbb, 0xff3d843669ff08fb, 0x0d8001073cb54e22, 0x0a2861040b44000f, 0x0958000c099c3101, 0x092a420409381c0e, 0xbd046eff09250112, 0x0007bc254d80ffbc, 0xff3d41b170ff0933, 0x094a47053d22e098, 0x025290ff0945020d, 0x1d0ebc30ac05ffbd, 0xffbd93fb73ff0953, 0x097c3303bd3d1fea, 0x09695904096e020b, 0x509dffbc0ab821ff, 0x24ff0977010dbd1e, 0xba84dc8fffbc1051, 0x0989010b098e090b, 0x042cffbc1bef33ff, 0xf8ff09974c053a66, 0xbb6e8930ff3c4f79, 0x09c4020b09e48405, 0x09b1390409b6070e, 0xffebffbb66784fff, 0xb9ff09bf01093cc2, 0xbe96cd84ffbc16ed, 0x09d1000609d60002, 0xf10eff3c5ec590ff, 0xa0ff09df3e04bcb0, 0x3d45638dff3b442c, 0x09fa0a0e0a08030d, 0x083d0bff09f5050b, 0x0d0ebb6373d7ffbd, 0xffbe1f512eff0a03, 0x0a1a0002bd7bc768, 0x422f37ff0a154d04, 0x000c3bdacb18ffbd, 0xff3d888868ff0a23, 0x0ab8be043ca948d8, 0x0a5474050a747f05, 0x0a41070e0a460008, 0xc1f6ffb92668f4ff, 0xf2ff0a4f060e3c19, 0x3ce6c1daff3b8b14, 0x0a6100080a660006, 0xf716ff3d000a27ff, 0x97ff0a6f96043d62, 0xbbc53e5cffbd7015, 0x0a8a02090a989405, 0x3e9fecff0a859105, 0x080e3ccddb3aff3d, 0xff3cf04f7bff0a93, 0x0aaaa704bd10496d, 0x3aa035ff0aa5000c, 0x0111be01601bffbd, 0xffbdceab98ff0ab3, 0x0b00040b3d7526f5, 0x0ad2230e0ae00009, 0x5b89b3ff0acd8905, 0x02083d3252d2ffbc, 0xffbd0b5318ff0adb, 0x0af29205bdb7860d, 0x1e2c57ff0aed260e, 0xc504bd839fd9ffbe, 0xff3d2c2896ff0afb, 0x0b24080bbd9edd4f, 0x0b11170e0b16bf04, 0x68a8ff3dbd2181ff, 0xc8ff0b1f02083b8b, 0xbd5aa165ffbb5b9b, 0x0b31c9040b360006, 0x62ddff3d600fa4ff, 0xc6ff0b3fc3043c06, 0x3c859aaeffbd7eb8, 0x0bd8010c0c640109, 0x0b741a0e0b94b504, 0x0b616b040b667704, 0x5078ffbbd0e3e6ff, 0xc4ff0b6f0208bb4e, 0x3c74cc73ff3b53bb, 0x0b811c0e0b861e0e, 0xd055ffbb27f4cfff, 0xd1ff0b8f7305bd2b, 0xba8157beffbc0b0b, 0x0baa0d0e0bb8b604, 0x0fc640ff0ba50006, 0x2b0e3aa30041ffbd, 0xff3d81b34fff0bb3, 0x0bca140b3c2e2cf1, 0x3bcf9aff0bc58d05, 0x0012bb855119ff3a, 0xff3cbdfb4fff0bd3, 0x0c2065053b22ea69, 0x0bf2120b0c000002, 0x61d369ff0bedc104, 0x0008bc7166a6ffbb, 0xffbb2c9348ff0bfb, 0x0c1201123c9a5645, 0x8a542dff0c0d8d04, 0x01113cf7a0acff3c, 0xffbc8b5306ff0c1b, 0x0c44280ebacae6a2, 0x0c3185050c36020e, 0xeecbffbb8d658fff, 0x5aff0c3f110bbd0a, 0x3cf8d5f8ff3c6d6f, 0x0c51060d0c56c204, 0xc8a7ff3b83d283ff, 0x7fff0c5f0007bd11, 0xbc55b390ffbd2a9c, 0x0cb0080e0cf40d0b, 0x0c8202090c90070e, 0x403399ff0c7d010c, 0x020ebb183d49ffbc, 0xffbc4d8e2cff0c8b, 0x0ca2070dbccadcf9, 0x8b5ff7ff0c9d0209, 0x9004bc233111ff3c, 0xffbcdce915ff0cab, 0x0cd40209bd7c4365, 0x0cc10e0e0cc6060d, 0x8650ffbb9c9107ff, 0x62ff0ccf0012bca1, 0xbd3ecd3cffbcaaf9, 0x0ce1010c0ce6070b, 0xdffbffbca5e051ff, 0xffff0cef000cbd0a, 0xbd3843f3ffbce3a7, 0x0d1c060d0d3c0b0e, 0x0d09000e0d0ea304, 0x44a9ffbc310a68ff, 0x6bff0d17070ebb94, 0x3c889b50ff3b1a7d, 0x0d29010c0d2e8d05, 0x8f08ffbc3eb9f7ff, 0xd2ff0d37000cbd0b, 0x3c260a9dffbb5c00, 0x0d52070d0d60c504, 0x3985ecff0d4d010c, 0x9e04bd250934ffbc, 0xffbd780a50ff0d5b, 0x0d72070dbdb0b936, 0x000a2dff0d6d230e, 0x0e0bbd6e3351ffbd, 0xffbdbc246aff0d7b, 0x0fc00b0ebdf5a463, 0x0e18000f0ea4070e, 0x0db485050dd40006, 0x0da1050d0da65b04, 0x4c76ff3c7288a8ff, 0xd7ff0daf70053d0e, 0x3d313cf3ff3d84c7, 0x0dc1060d0dc6a704, 0x69c5ffbdaa1994ff, 0xa0ff0dcf060d3d82, 0xbd4febf3ff3d3088, 0x0dea030b0df80706, 0xd1d3ebff0de5000c, 0x0606bd554391ffbc, 0xffbd8fdd6dff0df3, 0x0e0a040ebd0aadb6, 0xdbe3e5ff0e05ba04, 0x0002bcc10ecbffba, 0xffbd023690ff0e13, 0x0e60060e3d069a19, 0x0e32020e0e407305, 0x5ab825ff0e2d070d, 0x000c3b0ffea1ffbc, 0xffbc26ae12ff0e3b, 0x0e52010c3a9510b2, 0x81698fff0e4d050e, 0x050ebd40608dffbc, 0xffbd02976fff0e5b, 0x0e84b104bddb7701, 0x0e71130b0e76000c, 0x59c5ff3b86ab7aff, 0x95ff0e7f00113c8f, 0x3d2cbabeff3c8c92, 0x0e91060d0e96070d, 0xd25bffbcbdef60ff, 0x80ff0e9f000cba1e, 0xbe1e101cffbd584e, 0x0ef0080e0f34070d, 0x0ec200080ed0000c, 0x95ab33ff0ebd0212, 0x7a053d4dc953ffbc, 0xffbd1bcba8ff0ecb, 0x0ee26e04bce05e49, 0x612238ff0edd6d05, 0x0011bd6f6ef8ffbc, 0xffbd868caaff0eeb, 0x0f140a0ebd1c65e3, 0x0f01000c0f060006, 0xe359ff3b852adeff, 0x8cff0f0f00023ced, 0x3ba8e9a1ffbd728e, 0x0f2103060f26060d, 0x7f2affbd860a38ff, 0xb5ff0f2f050b3c9f, 0x3d29b0b8ffbc7620, 0x0f5c100b0f7c010c, 0x0f4900110f4e000c, 0x041dff3c55bfe9ff, 0xe5ff0f57050b3e1f, 0x3d7a3129ff3cad46, 0x0f6999040f6e000c, 0x30ffff3d20dbc0ff, 0x69ff0f7790043d94, 0x3e130ff9ff3d8ab8, 0x0f9200080fa09704, 0x0969a0ff0f8d6a04, 0x030b3d75ad97ffbb, 0xff3da55fafff0f9b, 0x0fb20a0b3de3f5e6, 0x1fc2a0ff0fad010b, 0x100b3dca7dcdff3d, 0xff3e22f07cff0fbb, 0x10e0000f3e5d79d1, 0x10101a0e10547504, 0x0fe254050ff05c04, 0x6e9867ff0fdd0212, 0x0d0e3d7df56eff3c, 0xff3a848a65ff0feb, 0x10026905bd635fd1, 0xe37d42ff0ffd000d, 0x000d3d00c707ff3d, 0xffbe1af3bcff100b, 0x103402113d326e6f, 0x1021510410264101, 0x2073ffbd4a56a6ff, 0x8aff102f71043c34, 0xbb7248beffbd6d6d, 0x10414f0410465e04, 0xab4bffbd357a5cff, 0x53ff104f00023e2b, 0x3e84ecdaff3e14fb, 0x107c010b109c0006, 0x1069000d106e2a0e, 0x3abeffbdc44e8dff, 0x62ff1077c5043d39, 0xbce9b971ff3bd38a, 0x10893f01108e4c05, 0xb48fff3c64c4b2ff, 0x36ff109700113d1f, 0x3d6621ceffbdf6af, 0x10b2000c10c00002, 0x4cfdeeff10ad0108, 0x0008bdcd60ccffbc, 0xffbd91219aff10bb, 0x10d29704be0c5c61, 0xf6176fff10cd0206, 0x0c063d3db83fffbc, 0xff3d6b9650ff10db, 0x1170010c3bb1a8f2, 0x110c1c0e112c200e, 0x10f9000610fe060d, 0x2585ff3af4c4c6ff, 0x2aff11070012bd04, 0x3d2a2f15ff3b9116, 0x11190a0b111e1e0e, 0xe8beffbce449bbff, 0x08ff1127100bbd8d, 0x3d3e71cfffbb94a0, 0x1142040b1150140b, 0x8b3a5aff113d240e, 0x0b0bbbb41622ff3b, 0xff3cace5f8ff114b, 0x11622a0ebc74d4ad, 0x346325ff115d0012, 0xbe043cadd7d8ff3d, 0xff3cdaa898ff116b, 0x11b800083d89d8c7, 0x118a070d11981c0e, 0x32507eff1185170e, 0x0d0e3d396988ff3c, 0xffbd1c1a26ff1193, 0x11aa1e0e3dce9ca4, 0x08dee0ff11a50011, 0x0a0bbdab31c9ffbe, 0xff3b83072fff11b3, 0x11dc0a0b3d4773ab, 0x11c9000211ce020b, 0x23c7ffbc239531ff, 0x88ff11d702073c09, 0x3d27d426ff3c7435, 0x11e90d0e11ee220e, 0xb3f5ff3cd7df8dff, 0xeeff11f702073d6e, 0x3dc64492ff3d74f2, 0x0000000800000013, 0x00000001000003e8, 0x00000000000011d8, 0x0484000708dc3e05, 0x012c12060248ab04, 0x005c9c0400a00e06, 0x002e0b06003c9904, 0xe8d830ff00299504, 0x170ebc27f4c0ffbb, 0xff3ba1833aff0037, 0x004e1a05bc98da01, 0x24d1c4ff00499b04, 0x0111bc9200c9ffbd, 0xffbc6c8229ff0057, 0x008001113bfa232b, 0x006daa0400723705, 0xc6c2ffbc2042afff, 0x60ff007b010cbcbb, 0xbc54c923ffbd7b1b, 0x008d000f0092290e, 0xf390ff3d540d7dff, 0x14ff009b0a063c3d, 0xbce1f65cffba86b3, 0x00c8000f00e80b0e, 0x00b5330400ba5a04, 0xd4d2ffbc3fa33dff, 0x8dff00c3030b3b85, 0x3d41f8e4ff3c1927, 0x00d5010800da100b, 0xc3e8ffbc4fc994ff, 0x21ff00e30305bbd3, 0xbb125446ffbc7190, 0x00fe3901010c0108, 0x2d9ddcff00f96d04, 0x9b043c1b4441ffbc, 0xffbd1e48f2ff0107, 0x011e1f0ebc30c8f9, 0x652960ff0119000f, 0x9904bc00ddf9ff3d, 0xff3a352d5fff0127, 0x01bca704bcd842bc, 0x0158010801781806, 0x0145070b014a000c, 0x7946ffbbd2e4c9ff, 0x50ff01539d04bcc4, 0x3bc264f8ffbcbb7d, 0x0165030b016a000f, 0xaba2ffba403ac4ff, 0x57ff017305053cdf, 0xbb957f70ffbd01b9, 0x018e0f0e019c070b, 0xe0c794ff01890b05, 0x000bbc01ff7affbc, 0xffbcea9951ff0197, 0x01ae010e3ce9a123, 0x57c780ff01a97304, 0x1906bd0b9d11ffbc, 0xffbd22912eff01b7, 0x0204000fbdaf57a1, 0x01d6040e01e41905, 0x5f3e88ff01d10008, 0x01083cb85f09ffbd, 0xff3d92b257ff01df, 0x01f6000c3cc84f43, 0x8790b1ff01f1a904, 0x130e3c3b4d3dffbc, 0xff3c9c8a4aff01ff, 0x02280b0e3d938b1e, 0x02151205021a1706, 0xf825ff3bc9d570ff, 0x0bff0223030ebbcf, 0xbce0c4fbffbc2b50, 0x0235030b023aaa04, 0xe424ffbc8b1535ff, 0x5eff024301113c07, 0xbc81459cffbd3ff4, 0x02dc030b0368000f, 0x027837050298b804, 0x02650002026aaf04, 0x899bff3dbe2a51ff, 0xfdff027301083b8a, 0xbc844f93ffbd32b2, 0x02851706028a010e, 0xa768ff3cd4fb44ff, 0xf4ff02930406bbc2, 0x3dd717caff3c5822, 0x02aebc0402bc020d, 0x31b804ff02a9000c, 0x010ebcc3ff5affbd, 0xffbd27d0d2ff02b7, 0x02ce010ebb1f1158, 0x867cd7ff02c91905, 0x1105bbb98bf3ffbd, 0xff3d85220cff02d7, 0x0324010d3cb81a1b, 0x02f601080304000c, 0xa6f615ff02f11406, 0x000dbd8619faffbd, 0xffbd8d451bff02ff, 0x0316080ebd1dd9fc, 0x3d7ea1ff0311030e, 0x2a0ebc479eecffbd, 0xff3d3ffa78ff031f, 0x03481906bbafa286, 0x0335030e033a2e0e, 0xbceeff3bba4d25ff, 0x7eff0343350e3d48, 0xbc8a7ccdff3ca656, 0x0355070b035a070e, 0x140dffbe1a7ed1ff, 0x9aff0363020d3beb, 0x3e242723ff3cd2ba, 0x03b4b00403f80c05, 0x0386040e03940208, 0x8ac972ff0381010e, 0x0008bd029278ffbc, 0xffbd460b11ff038f, 0x03a60605bd99133e, 0x855020ff03a12f03, 0x06063d088d58ffbc, 0xffbd12a096ff03af, 0x03d80108bb3903b3, 0x03c5290e03ca0002, 0xaab0ff3a500394ff, 0xfcff03d30b0ebcc6, 0xbd1d15a8ffbcba55, 0x03e5130b03ea0505, 0xfb17ffbcc20547ff, 0x99ff03f30b05bd1e, 0x3cfc1adeffbbfa91, 0x0420000804403905, 0x040d011104123705, 0x0738ffbc7f41ecff, 0xe7ff041b2f0ebbb0, 0xbc87c39eff3b6b09, 0x042d2f0e04320f06, 0x8984ff3c00fcfdff, 0x50ff043b0b0bbbd7, 0xbadd689affbc16b1, 0x04563b050464ba04, 0x81690fff0451010c, 0x0012bce85a1dffbd, 0xff3b1669d0ff045f, 0x04763c05bcbe3a35, 0x1091f3ff04713901, 0x0012bd92e760ffbd, 0xffbda6f6c1ff047f, 0x06c4ca04bdf6ea9c, 0x051c011105a80211, 0x04b8000204d8c604, 0x04a5950404aa2b0e, 0x95fbffbb9ab5b9ff, 0x41ff04b33b013bc7, 0xbbe6487cffbc7ffe, 0x04c5011204ca130e, 0xc38cff3c97e803ff, 0x8dff04d30c06bbd6, 0xbc35b39dff3cbd35, 0x04ee010c04fc0006, 0x269c80ff04e9c704, 0x01083da4c4d9ff3e, 0xffbca0c58bff04f7, 0x050e0e063d63702d, 0x210f42ff0509290e, 0x1606bd6412f2ffbe, 0xffbd1a193aff0517, 0x05646404bc4f3f02, 0x05360e0505441901, 0xbee399ff05315204, 0x090bbc202f37ffbb, 0xffbb328ee4ff053f, 0x055613063b6dce2a, 0x5040ccff05514404, 0x63043c280e30ff3b, 0xffbc2cb773ff055f, 0x0588020dbd129b52, 0x05751706057a320e, 0xa934ff3c605982ff, 0x06ff05830706bbee, 0xbc892024ff39058c, 0x05950806059a200e, 0x57f8ff3c92ed2aff, 0x34ff05a30c053d39, 0x3c9c736bff3ae841, 0x05f4000c0638030b, 0x05c6120505d43505, 0xc86cdcff05c13504, 0x6a043d0a6520ff3b, 0xffbccd8d2dff05cf, 0x05e60d0e3c9bf1ab, 0xfac1f9ff05e12504, 0x5e043defbd16ff3c, 0xff3e2fd84aff05ef, 0x06182c043e8ebcb2, 0x0605000b060a3401, 0x6367ff3c0d9ae1ff, 0x82ff0613010e3d15, 0xbd79ab1dffbba8be, 0x06250006062a0a06, 0x38bbff3df6cb9dff, 0xe0ff06333b043d05, 0x3e12cba0ff3d6eeb, 0x0660120606800b05, 0x064d5e0406520208, 0x3a8fff3e386177ff, 0x2dff065b070e3e7e, 0x3e1b2725ff3d9600, 0x066d140606720108, 0xe340ff3da8d39cff, 0x76ff067b02083cd3, 0x3cb46ec5ff3d2910, 0x0696120506a46c04, 0xcb6880ff06910d0e, 0x00083d12ad80ff3d, 0xff3c746a81ff069f, 0x06b627033d497478, 0x7f0a43ff06b1220e, 0x010e3e07023eff3e, 0xff3b1eb80cff06bf, 0x07e400023dc31191, 0x071401060758000f, 0x06e6350106f43f01, 0x6dd900ff06e10006, 0x01083d232c68ffbc, 0xffbbd1d9d5ff06ef, 0x0706020dbcf070c7, 0x733106ff07010207, 0xcb04be541d68ffbe, 0xff3cabc0c0ff070f, 0x0738010ebe001c68, 0x0725030d072a0008, 0xada8ffbd13bc9cff, 0x89ff07330107bd46, 0xbbf74355ffbcf731, 0x0745040d074a000c, 0xd26dff3c7f3eddff, 0xacff0753000d3db4, 0x3dacb22eff3d069e, 0x0780020607a0cb04, 0x076d000807722701, 0xad22ffbe0312a6ff, 0x38ff077b3805bdc2, 0x3dc4653cffbc36a7, 0x078d010e07920c0e, 0x0a14ffbb433265ff, 0xe1ff079b1d053c96, 0x3ce466f8ff3d9677, 0x07b6000807c4010c, 0x54db9cff07b10b0b, 0x07063c41d6c7ffbd, 0xffbd124bf6ff07bf, 0x07d6360ebd975b41, 0xf3de95ff07d10b0b, 0x01063cec11c1ffbc, 0xffbdb379aaff07df, 0x08500111bcde2a9c, 0x07fe0208080c0006, 0x747d5cff07f90011, 0x00113e76c1a4ff3e, 0xff3e186728ff0807, 0x0830070e3e3efd3c, 0x081dcb040822cc04, 0xff62ffbca865e7ff, 0xf5ff082b030ebb8b, 0xbd017914ffbc846f, 0x083dcb0408420b05, 0x2d73ffbe5ced80ff, 0xfcff084b010cbd88, 0xba2d8bafffbd35d1, 0x0878000d0898000c, 0x0865030b086acb04, 0xea7cffbda68fe4ff, 0x60ff08730008bd7d, 0xbd069d48ffbdb333, 0x0885030b088a040d, 0x72f2ffbcd9110fff, 0x57ff08930b0e3b56, 0x3d6e11a1ffbbd743, 0x08ae000f08bc1706, 0x42c272ff08a90208, 0x0b0b3c6a8932ff3d, 0xffbbf900e8ff08b7, 0x08ce2b053d44cbf7, 0x7e9fb4ff08c9040d, 0x02073d2390f0ffbb, 0xffbcf71b07ff08d7, 0x0d5c01073b9621d5, 0x0a04000f0b200008, 0x0934090b09787205, 0x0906000709140209, 0x63aacdff0901020b, 0x6705b8fb718bffbc, 0xff3b7f14a9ff090f, 0x0926080e3cb105b9, 0x825fcbff0921070e, 0x030d3d62c99effbc, 0xffbce82139ff092f, 0x09580109bdb06645, 0x09450306094a1206, 0x6a7eff3c09bc38ff, 0x5fff095314063cc5, 0xbd021c1affbbbf5f, 0x09650002096a5605, 0xe099ff3c0e8013ff, 0x27ff0973000d3d11, 0x3d1d2750ff3d9818, 0x09a04e0409c0c904, 0x098d340409927a05, 0x1b21ffbc0ed92bff, 0xd4ff099b00023ccd, 0x3bf0fa10ffbc914a, 0x09adb10409b2040b, 0x4508ff3cd5d25cff, 0x2dff09bb0112bb10, 0x3d07d2d9ffbd9867, 0x09d6cc0409e40109, 0x00977dff09d1180e, 0x340ebca12792ffbe, 0xff3da9ce08ff09df, 0x09f62e0ebe215f46, 0x489a4bff09f1140e, 0x020dbdde8e4cffbd, 0xffbe9514d4ff09ff, 0x0a94070dbe70c8df, 0x0a3089040a500209, 0x0a1d010c0a228805, 0x7250ffbbda4c69ff, 0xe6ff0a2b000ebabe, 0xbbc42843ffbcb515, 0x0a3d020e0a421c0e, 0xa046ffbc5ac473ff, 0xa4ff0a4b1e0e3b7d, 0xbabf671cffbd3000, 0x0a66020e0a740d0e, 0x72e280ff0a610011, 0x060dbbe78757ffbc, 0xffbc47389bff0a6f, 0x0a86060dbcc7ae1a, 0x97a1c8ff0a819d04, 0x0012bcf360f9ffbc, 0xffbcd662a6ff0a8f, 0x0adc140ebd6ed427, 0x0aae0c0e0abc0d0e, 0xdb5f25ff0aa90009, 0xab04bc86e0a9ffba, 0xffbd21724eff0ab7, 0x0ace0009be02c489, 0x19f1f5ff0ac9010c, 0xb9043db1dda3ff3b, 0xffbd102c67ff0ad7, 0x0b00ba04bda179fa, 0x0aed00090af21e0e, 0xd570ffbc843edeff, 0x82ff0afb090bbd4a, 0xbd85e7dbffbd07bd, 0x0b0d050b0b128a05, 0x669effbd65430dff, 0xd9ff0b1bcb04bde2, 0xbbf0789effbd79ba, 0x0bb402080c40000c, 0x0b500b0e0b70000f, 0x0b3d03060b420706, 0x146cffbd59567dff, 0xe2ff0b4b050ebaa0, 0x3d1fc025ff3c050f, 0x0b5d02060b62be04, 0x71d0ff3c067cfdff, 0x49ff0b6bc2043d6f, 0x3ca33365ffbd4d17, 0x0b8600060b941b0e, 0xa6590aff0b810b0e, 0x08063b90a818ffbb, 0xffbcada21cff0b8f, 0x0ba61e0ebc121e9b, 0x13d021ff0ba11c0e, 0x6805bd44d1a6ff3c, 0xffbc08ecc2ff0baf, 0x0bfc110b3b498842, 0x0bce7c050bdc020b, 0x03dc86ff0bc90806, 0x060ebd0f1fd0ffbc, 0xffbcfbe939ff0bd7, 0x0bee000fbc939156, 0x1ec7c7ff0be90002, 0x230e3cc2957effbd, 0xff3b8fd536ff0bf7, 0x0c205605bb9a6cff, 0x0c0d310e0c120006, 0xdb95ff3c3f9d89ff, 0xacff0c1bbe04bcc0, 0xbdd76c28ffbcb8ab, 0x0c2d000e0c32030e, 0x16c9ffbc9e43fbff, 0x47ff0c3bc0043b0b, 0x3c802f0bff3d0b62, 0x0c8c000f0cd0250e, 0x0c5e00060c6c6805, 0x7e965cff0c590108, 0x04063d0762eaff3c, 0xffbd6dc2ebff0c67, 0x0c7e010b3bfd246b, 0xdd92fdff0c79c904, 0x010dbe5e574cff3c, 0xff3b54d6c9ff0c87, 0x0cb0140b3d5a0870, 0x0c9d020b0ca28c05, 0x6bbcffbc40b4e3ff, 0x06ff0cab170e3c19, 0x3cec9a1fffbc5c01, 0x0cbd56050cc2ca04, 0x8a85ff3c1a45daff, 0x5bff0ccb8f053d06, 0x3a12d102ff3da0fa, 0x0cf8070b0d18020d, 0x0ce5010d0cea6305, 0x102affbc8efaaeff, 0xe0ff0cf3b9043c04, 0xbbab24e1ff3d38bd, 0x0d0598040d0aa904, 0xa367ff3c521106ff, 0x8aff0d13300e3cf5, 0x3d2378e8ff3d91e9, 0x0d2e060d0d3c0208, 0xa6ce5bff0d29020b, 0x00113b3b5f3fffbc, 0xffbc14c505ff0d37, 0x0d4e000fbd4ccf71, 0xd46eacff0d49050b, 0x00073c45fb73ffbd, 0xffbc96c540ff0d57, 0x0f9c0b0e3bcafd25, 0x0df478050e80020e, 0x0d90040d0db0000f, 0x0d7d2e040d82000d, 0x98c3ffbc543526ff, 0x8eff0d8b010ebd74, 0x3c590a79ffbc25c6, 0x0d9d39040da20006, 0x7b60ff3cb11831ff, 0x99ff0dab09063d56, 0x3c274d9affbcc3e1, 0x0dc6000e0dd4010e, 0x214d6eff0dc16504, 0x0108bca5fb6effbc, 0xffba5c3806ff0dcf, 0x0de65705bc4e6d7d, 0x29628fff0de14705, 0x070dbc879c59ffbc, 0xffbcf01e4dff0def, 0x0e3c000e3c093161, 0x0e0e040d0e1c000c, 0x73a8ccff0e09000f, 0x6b04bc771c07ffbd, 0xffbc40b563ff0e17, 0x0e2e7304bcc4b26a, 0x5c29a8ff0e29000d, 0x000fbc4a452cffbd, 0xffbe7f3782ff0e37, 0x0e60070dbd3e2b74, 0x0e4d01110e529004, 0x4383ffbc63af5bff, 0xefff0e5b01113ca8, 0xbdf441fdffbccaa4, 0x0e6d000f0e720011, 0x2160ffbd5efdbdff, 0x05ff0e7b00023b8d, 0x3e32ae5dff3e2099, 0x0ecc070e0f100111, 0x0e9e050e0eac060e, 0x129178ff0e99060d, 0x00113b95d97affbc, 0xffbd6cf3a6ff0ea7, 0x0ebeae043bd290d9, 0xc6e4e8ff0eb9000c, 0x060d3ced5b62ff3b, 0xffbd0ca651ff0ec7, 0x0ef0070d39aa7103, 0x0edd010c0ee2080e, 0x27ebffbcecf904ff, 0x7cff0eeb0a0ebd76, 0xbd24b60dff3c40b2, 0x0efd070b0f02010c, 0xbed3ff3c2b234eff, 0xb5ff0f0b110b3d3c, 0x3e3b7ebdff3da659, 0x0f38a5040f580006, 0x0f2592040f2a070e, 0x7ceaff3d3de18aff, 0x1dff0f33080e3b03, 0x3cd584d2ffbc5b44, 0x0f4500020f4aa704, 0x57bdffbe866189ff, 0xc9ff0f53060ebd3b, 0x3cce3bf4ffbc8f70, 0x0f6e03060f7c0606, 0x436d66ff0f69030b, 0x090ebdb4eec5ffbd, 0xffbd1949f3ff0f77, 0x0f8e00023d316d6d, 0xd453e0ff0f89b004, 0x030dbdcbbd8fffbb, 0xff3b3d4102ff0f97, 0x10bc000f3d3cf506, 0x0fec000d1030aa04, 0x0fbe1c0e0fcc7b05, 0xbc4989ff0fb96004, 0x1d0e3dbea062ff3b, 0xffbd586041ff0fc7, 0x0fde230e3c9e3c8e, 0x8ed4e1ff0fd91d0e, 0x02073ddab58effbd, 0xffbeb01b1bff0fe7, 0x10100006bec88d28, 0x0ffd590510020008, 0xa562ff3c736128ff, 0xb8ff100b54053d26, 0x3d6082ceff3d1ac9, 0x101d000210220206, 0x897cffbd91e615ff, 0xc4ff102b4405bc4b, 0x3d1c4fb5ffbd8bcc, 0x105802081078ca04, 0x10450002104a000c, 0x9581ffbc897d99ff, 0xfbff105300063d57, 0x3d07d097ff3d7c47, 0x1065070b106a220e, 0xc561ff3cc9ba22ff, 0x78ff1073030d3d6e, 0xbd65a67aff3c4816, 0x108e0108109c040b, 0x10f9a9ff1089340e, 0xcc04bdc63f3dff3c, 0xffbd204534ff1097, 0x10ae0208be1203ca, 0x82b9c3ff10a96f05, 0x7f053d5cbd40ff3c, 0xffbd809bc8ff10b7, 0x114c000c3cf599f4, 0x10e8190e1108200e, 0x10d5120e10da140e, 0x654bffbaeca6c3ff, 0xd0ff10e3060dbce0, 0x3c844006ff3a85d4, 0x10f51a0e10fa1c0e, 0x7deeff3ce551deff, 0xe1ff11031e0ebb32, 0xbb0cc212ffbd191a, 0x111e0a0b112c0108, 0xe60858ff1119220e, 0x070dbbfe98c1ff3b, 0xff3c32c3f2ff1127, 0x113e090bbd059186, 0x7976cfff1139060d, 0x130b3c1b8a92ffbb, 0xff3c5946f8ff1147, 0x1194c4043d011f2d, 0x116601081174070d, 0x63a2e5ff11617605, 0x040bbbbd368bff3c, 0xff3c1d9955ff116f, 0x11860d0e3d107e82, 0x00e223ff1181b504, 0x0e0ebe1ad282ffbc, 0xff3dc45ac1ff118f, 0x11b874053cc44c0f, 0x11a5040b11aa050b, 0xc14eff3c192bc6ff, 0x6dff11b302073d71, 0x3d95a726ff3d56e1, 0x11c50d0e11cac904, 0x5747ffbd035e5eff, 0x2bff11d3220e3ac1, 0x3d3d7696ff3c8cbe, 0x0000000800000013, 0x00000001000003e8, 0x00000000000011fc, 0x0484000709003e05, 0x012c01080248a904, 0x005c021100a07f04, 0x002e5c04003c1106, 0xdfd894ff00295804, 0x070dbbe6e96bffbb, 0xffbc291f5bff0037, 0x004e3e01bcbb0c2d, 0x33c876ff00493c01, 0x7c043d05de01ffbc, 0xffbc8c77e2ff0057, 0x00805004bd2874b3, 0x006d120600722504, 0xbed8ffbb9a908eff, 0xaaff007b3504bc81, 0x3c8c19b9ff3b7ab8, 0x008d0a0600921c05, 0x8c9aff3af50b9cff, 0xddff009b6a043dbd, 0x3d3885c0ff3be07a, 0x00c8001100e80111, 0x00b58c0400ba010c, 0xcd93ffbd0cf13cff, 0x34ff00c32c01bd63, 0xbd2d39b5ffbc883a, 0x00d5050b00da0c05, 0x7c69ffbc2e7b5fff, 0x63ff00e3060ebcd7, 0xbc83ce78ffbbdac8, 0x00fe000b010c9504, 0x0d960cff00f9000c, 0x8404bd854938ffbb, 0xffbca30979ff0107, 0x011e13053c5e842c, 0x2d4d71ff0119070b, 0x0008bd2eb4b5ffbc, 0xffbc7a6e2dff0127, 0x01bc02113c62d2de, 0x01584f040178000f, 0x01451505014a2805, 0x99c9ffbbaf511dff, 0xb3ff0153050d3a82, 0x3ca81e4cff3bbc2e, 0x01652a0e016a2101, 0x1123ff3c8b79feff, 0x20ff01730a0bbad5, 0x3cea5d75ff3c6cdb, 0x018e0b0b019c5c04, 0xe94053ff0189030b, 0x3201bbc3cdf1ffbb, 0xffbb90885fff0197, 0x01ae140b3ac8adc9, 0x75ba86ff01a90011, 0x9c04bc0f6420ffbc, 0xffbb93d524ff01b7, 0x0204070bbc6b5ad1, 0x01d63b0401e45e04, 0x9362ebff01d12504, 0x0d0e3ca57569ffbb, 0xffbcd1bed0ff01df, 0x01f61c05bb17e1ab, 0xb15f9bff01f10208, 0x030ebbe4f276ff3d, 0xffbd209103ff01ff, 0x022803053b808e98, 0x02150706021a2703, 0x2380ffbc649878ff, 0x9aff022312063ad9, 0x3b182610ff3ca083, 0x02351205023a1006, 0x9c4cff3e0c09d1ff, 0x9eff024312063d4e, 0x3c35bbacff3d8da5, 0x02dc070b0368000f, 0x0278060e0298af04, 0x02653705026a1106, 0x47a0ff3ddebdd1ff, 0x1dff027319063d46, 0xbd637525ff3b808d, 0x0285aa04028a2a0e, 0xfce5ff3db494b5ff, 0xdfff02930b063d4d, 0x3d2fab97ffbb55ed, 0x02ae370502bcb804, 0xa04492ff02a91305, 0x1506bd2c424dffbc, 0xff3dc141adff02b7, 0x02ce030d3c713d18, 0x088a47ff02c9070e, 0x030ebb625c11ffbd, 0xffbcca9698ff02d7, 0x0324330e3d0a9514, 0x02f6210e03041406, 0x864dbaff02f11106, 0x00083d0f5715ff3d, 0xffb8dd1a14ff02ff, 0x031600023d1b5967, 0x363974ff0311020e, 0x020d3d3c889bffbb, 0xffbc81896fff031f, 0x0348c0043c91e7a4, 0x03350a06033a040d, 0x0723ffbc685b8fff, 0xc5ff0343360ebd7c, 0xbcbf39d1ff3c8c3e, 0x0355360e035a000c, 0x9e98ff3cc03c06ff, 0x6fff0363cb04bd8e, 0x3c9c5660ff3dbd3d, 0x03b4010c03f80b05, 0x0386b00403940208, 0xb5c1e9ff0381070e, 0x0705bd5e8656ffbc, 0xffbd01adb5ff038f, 0x03a60305bc6cc2f7, 0x37e55fff03a10105, 0x1001bca890a1ffbd, 0xffbe0f2708ff03af, 0x03d80008ba99dfee, 0x03c50b0e03cab304, 0xe45effbcaa8104ff, 0x9bff03d30505bd0c, 0xbd2c7ca5ff39a805, 0x03e5020803ea0305, 0x4e1effbd1ddb01ff, 0x7bff03f30b0b3bf9, 0x3b0ad8d4ffbc3f03, 0x0420000804403905, 0x040d0f0504122905, 0x6e5dffbcdc4ed6ff, 0x44ff041b0b0bbc5e, 0xba3d7613ffbc253f, 0x042dbd0404320b0b, 0x926cffbbcd48b6ff, 0x42ff043bc604baa6, 0xbc26fe3fff3b2e07, 0x04563b050464ba04, 0x68f050ff0451010c, 0xb504bcd11dedffbd, 0xffbc905ed9ff045f, 0x04763c053c4cc104, 0xa3404cff0471010c, 0x0011bd16ba53ffbd, 0xffbd964479ff047f, 0x06c47504bdde398d, 0x051c011105a80806, 0x04b8740404d83701, 0x04a5330104aa7004, 0xf7b0ffbbc0f84eff, 0x6bff04b37104bb2a, 0xbc266e12ffbcabe9, 0x04c50b0b04ca110b, 0xdc7fff3bdd825fff, 0x35ff04d3070dbd0c, 0xbcc3cf40ff3ca5c3, 0x04ee560404fc1b03, 0xc5c499ff04e93904, 0x14053c139455ffba, 0xff3b8e87e8ff04f7, 0x050e1f053cd000da, 0xb65575ff05091c03, 0x000cbc3c44e0ffbc, 0xffbb8d21bfff0517, 0x056427013b5c8434, 0x0536090505441101, 0xdf7a3aff05310705, 0x0006bb431185ffbb, 0xffbb2ee571ff053f, 0x05561005bcfc0e24, 0xc2b09aff05515904, 0x090bbc777322ffbb, 0xff3b085d1eff055f, 0x05880f033c5c9848, 0x05751305057a1605, 0x6d3fff3c066f5fff, 0x66ff0583010b3ce0, 0x3d8baf3eff3bc909, 0x05953301059a1103, 0xb89cffbd84ca16ff, 0xc6ff05a30006bcf9, 0xbbbf0cf0ff3c7ec6, 0x05f46f0406380211, 0x05c6330305d40405, 0x0ca75eff05c12a04, 0x6d043be95433ffbc, 0xffbc4f27c4ff05cf, 0x05e6000fbd8cdb2e, 0x14ae4eff05e1000c, 0x000b3d0fe983ffbb, 0xffbcb92bf6ff05ef, 0x0618160ebc0606b5, 0x06057204060a030b, 0x0a67ff3cd8f476ff, 0xa3ff0613010ebd15, 0x3d466254ffb9fff3, 0x06250108062a7204, 0x9434ffbb4de210ff, 0x93ff0633030b3d3d, 0xbd1df719ffbe06a9, 0x0660000c0680030b, 0x064d120506521006, 0xd28eff3d017b7bff, 0xa5ff065b02083ba9, 0xbd7b91a0ff3b55e3, 0x066d2c0406723b04, 0xe8c4ffbbeb01a8ff, 0x3eff067b5e043d69, 0x3db05fbbff3e30b5, 0x0696120506a4010e, 0x1c09a7ff06911406, 0x1c053c8ad840ff3d, 0xffbbbb6199ff069f, 0x06b60b05bd1f4c8e, 0x6dfe5fff06b10108, 0x12053e101dfeff3e, 0xff3dd7645fff06bf, 0x07e437053d508e17, 0x0714010d0758000f, 0x06e6060e06f4a004, 0xd41b65ff06e10506, 0x2f0ebc17b4aaffbd, 0xff3cacdbe9ff06ef, 0x0706000cbb7db1a7, 0x5801c7ff0701000d, 0x030bbd019644ffbd, 0xffbcab613fff070f, 0x0738220e3ca5464d, 0x07250606072a1606, 0xf1dcff3ba6e5ebff, 0x06ff073397043d35, 0x3cbb1f10ffbcb04c, 0x07450008074a030b, 0x0345ffbca16203ff, 0x67ff075312033bfa, 0x3cb4336cffbc12c6, 0x0780c00407a00e0b, 0x076d020707720006, 0x8d5dffbb5f3855ff, 0x5cff077b360e3cb4, 0xbcfbd681ffbb6224, 0x078d020707920011, 0xf38aff3d3c10efff, 0x7bff079b0b0b3e0c, 0xbdc10edeffbc6134, 0x07b6000507c43105, 0xadad4aff07b1ab04, 0x2703bd8c8231ffbc, 0xff3ca76868ff07bf, 0x07d600063b289f38, 0xc4496cff07d1a704, 0x00023d5f9ea5ff3c, 0xffbd480188ff07df, 0x0874ad04bc3b5453, 0x0810370108303a05, 0x07fd890408022a03, 0x5120ff3cc0661bff, 0x2bff080ba2043d48, 0x3dae388cffbb8ebe, 0x081d000608223805, 0xecefffbd53ae38ff, 0x97ff082b28033aee, 0xbc953cc4ffbe028e, 0x08462a0e08542b03, 0x3af187ff0841010b, 0x02083d78bd68ffbc, 0xff3cc5e7c5ff084f, 0x0866190ebd1e9c14, 0x5f3fdcff08610011, 0x1c0e3caa0952ff39, 0xff3ce4516eff086f, 0x08bc000fbc2e95fe, 0x088e1506089c0208, 0x5112a6ff0889000d, 0x16063d3206b5ffbc, 0xff3c562841ff0897, 0x08aec004bcd59279, 0xc0f414ff08a9b704, 0xc4043c8a7904ffbc, 0xffbe04cc12ff08b7, 0x08e03d05bb49e0a7, 0x08cd390508d20011, 0x54a9ff3d616731ff, 0xf4ff08db110b3b14, 0x3be71614ffbbc496, 0x08ed2a0e08f2b804, 0xb49bff3d458f45ff, 0x8fff08fb0107bc36, 0x3df5e6eaff3c9f83, 0x0b448a040d800107, 0x099c00080a280111, 0x09387d0409586705, 0x09256f04092a010c, 0xd78dffbbf4a2b2ff, 0xbcff0933030bbc26, 0xba63e690ffbbd6c5, 0x0945010c094a130b, 0x8e3affbc8f9b69ff, 0xf4ff09530002bc01, 0x3bffb9d0ffbbf8be, 0x096e0d0b097c000c, 0xe870daff09690109, 0x0011bc797485ffbb, 0xffbc1194bbff0977, 0x098e020eb50f6fdc, 0x5f7befff0989000e, 0x070ebb3726fdffbc, 0xff3c42ada7ff0997, 0x09e40d0bbb30edff, 0x09b66d0509c4080b, 0x92de04ff09b15105, 0x7904bb4d0925ffbb, 0xffbc2ea19bff09bf, 0x09d6000cbbd354bb, 0xdaa3f7ff09d1040e, 0x020eb924ca35ffbb, 0xffbc00ed18ff09df, 0x0a0800113c1c86c6, 0x09f56b0509fa100e, 0x87b9ff39249f0bff, 0x54ff0a034205bc39, 0xbce8dfc0ffbc49ed, 0x0a15060d0a1a020e, 0x929fffbc2acf5cff, 0xcfff0a23060d3d14, 0x3d12df15ff3c1fbf, 0x0a7401080ab80006, 0x0a4668050a547205, 0x5a7eb0ff0a41010b, 0x00083b8ebc82ffbc, 0xff3c1861a7ff0a4f, 0x0a667c043d1b2a3e, 0xa993f7ff0a618e05, 0x9405bd213ad5ff3c, 0xff3d2bab4aff0a6f, 0x0a985905bd8077c0, 0x0a854f040a8a0d0e, 0xaa72ff3c8c69e6ff, 0x79ff0a93020b3d39, 0x3c5e9e17ffbc4e8b, 0x0aa57c040aaa010e, 0x50deff3c781659ff, 0x90ff0ab30d0ebe5e, 0x3d12dc37ff3d902c, 0x0ae00b0e0b000306, 0x0acd00020ad27504, 0x44ecffbd1518faff, 0x0aff0adb060e3d8d, 0xbddbf90effbd9cb4, 0x0aed1d0e0af20106, 0x454affbd8a2428ff, 0x4bff0afb0f0ebcb7, 0x3cee57afffbc9929, 0x0b1605060b24060e, 0xe9d3e6ff0b117c04, 0x010ebd95cb21ffbc, 0xffbc5479ebff0b1f, 0x0b36020d3cada05e, 0xa807c4ff0b310d0e, 0x79043d3835daff3c, 0xff3da05138ff0b3f, 0x0c64000f3d5992cb, 0x0b94050e0bd8be04, 0x0b6691050b740009, 0x8cd8c7ff0b610006, 0x060dba5e38d4ff3c, 0xffbda95613ff0b6f, 0x0b8693053d575c50, 0x5c115dff0b810209, 0xa7043d017ea5ff3d, 0xffbd33f35cff0b8f, 0x0bb8190e3d437509, 0x0ba5090e0baa7e05, 0xfb92ff3c8d32ebff, 0xbcff0bb302093d1e, 0x3ba8e6ebff3d450c, 0x0bc502080bca020b, 0x9f3dffbb997a74ff, 0x4fff0bd30109bd88, 0xbca34b3bff3cd5c4, 0x0c0093050c20040b, 0x0bed020d0bf20209, 0x1ffdffbc805576ff, 0x36ff0bfb9205bd43, 0x3da7bd58ffbe0cc9, 0x0c0d00020c12ca04, 0xcb61ff3db9e9b9ff, 0x46ff0c1b230e3cb3, 0xbc5b468fffbdf42d, 0x0c3600060c44c904, 0x7da69cff0c31080b, 0x00023d3abf98ff3b, 0xffbdc48929ff0c3f, 0x0c5600073c884b7b, 0x3ae202ff0c514605, 0x0208bc830559ff3d, 0xff3cc3145dff0c5f, 0x0cf40007bd2ed5cf, 0x0c9066050cb0280e, 0x0c7d170e0c82070d, 0x70f0ffbc08a245ff, 0xa1ff0c8b190ebb7f, 0xbd361459ffbc9abd, 0x0c9d01090ca20008, 0xc421ff3b612f51ff, 0x38ff0cab9305bc2e, 0xbc311102ff3c5eae, 0x0cc62d0e0cd4070d, 0x90f6c1ff0cc1060d, 0x0111bcbd6b22ffbb, 0xffbca31216ff0ccf, 0x0ce6070bbbd328ec, 0x2dfa62ff0ce10002, 0x0108bbc313a1ffbd, 0xffbdad41dfff0cef, 0x0d3c8505bd254ece, 0x0d0e01120d1c130b, 0xa420b3ff0d090a0b, 0x00063c3bf130ffba, 0xff39ce234cff0d17, 0x0d2e0108bc606902, 0x53cb7dff0d29000c, 0x000c3ca572fbff3a, 0xff3c7668a5ff0d37, 0x0d60180e3d2b1cca, 0x0d4d060d0d528b05, 0x8583ffbc3e58faff, 0xc7ff0d5b0d0e3b5d, 0xbb3f721bffbc88e1, 0x0d6d000c0d72190e, 0x819eff3c385ba7ff, 0x8aff0d7b1d0e3d70, 0x3c29cf01ffbd2249, 0x0ea4000f0fc00d0e, 0x0dd488050e18000c, 0x0da600020db4060d, 0xc19539ff0da16f04, 0x010dbd1ffb15ffbb, 0xffbc94a6baff0daf, 0x0dc600113c27958d, 0x4645e0ff0dc1000b, 0x5004bda2d571ffbd, 0xff3d156eb8ff0dcf, 0x0df8060d3de61c30, 0x0de5a4040dea040d, 0xf36dffbcc8f1c6ff, 0x79ff0df3000ebdf1, 0xbe1d3061ffbd4bbb, 0x0e0500020e0a0111, 0x4ef0ffbd0aa73eff, 0x5eff0e139004be48, 0x3e15ae70ff3de9b9, 0x0e40050d0e600006, 0x0e2d78050e32080e, 0x04e9ff3c9b6210ff, 0xcaff0e3b5904bd03, 0x3d38bcc8ff3c6e0e, 0x0e4d87050e52060e, 0xc355ff3d16241eff, 0x0dff0e5b5904bd29, 0x3d5f449eff3c23e2, 0x0e7606060e840906, 0x34fda7ff0e71030b, 0x090ebd9e3a66ffbd, 0xffbce2e031ff0e7f, 0x0e96050e3bc3a57e, 0xf47fe4ff0e91ba04, 0x0002bca6973dff3b, 0xffbd49fe70ff0e9f, 0x0f3480053d3dd1da, 0x0ed00a0e0ef00b0e, 0x0ebd070d0ec2010c, 0xc7a6ffbbfe0a60ff, 0x95ff0ecb060e3c02, 0x3c46cdadffbb8863, 0x0edd55050ee2060d, 0xdd97ffbc9fab45ff, 0xccff0eeb040bbd89, 0x3d24825cffbc2510, 0x0f06000c0f14ab04, 0x714910ff0f010008, 0x00083c04e0a8ffbb, 0xff3c2c0177ff0f0f, 0x0f26060d3ce0d2d7, 0x482703ff0f21ba04, 0x070dbd8e934cffbc, 0xff3c6d49eaff0f2f, 0x0f7c010cbd0f0c88, 0x0f4e070d0f5c0002, 0x6d2f32ff0f49000c, 0xb604bcba747effbc, 0xffbcab9f9fff0f57, 0x0f6ecb043d285bce, 0xc4cef6ff0f69000e, 0x060dbc25162cffbc, 0xffbd7b7075ff0f77, 0x0fa0060dbd0dfcc7, 0x0f8d080e0f920112, 0x8cd4ffbd76ae3aff, 0x8fff0f9b030ebda2, 0xbc180cf2ffbd1eb7, 0x0fad0d0b0fb2020e, 0x164cffbd2af6f2ff, 0x58ff0fbb0012bc83, 0x3c63acd5ffbc87f6, 0x1054150e10e0000c, 0x0ff001111010070d, 0x0fdd120e0fe29304, 0xb491ffbb0db258ff, 0x7fff0feb120ebc82, 0xbcdfdc36ffbc455c, 0x0ffd03061002030d, 0x36fdffbd3e7196ff, 0x69ff100b0e0e3c68, 0x3cc9189bff3dcc51, 0x10260e0e10340d0b, 0xcc89f1ff1021030b, 0x99043ca25b5cff3b, 0xffbb4dc332ff102f, 0x1046a004bccfe3eb, 0x5c407dff10419e04, 0x0e0ebd88f421ff3c, 0xff3d63632dff104f, 0x109c210ebce26742, 0x106e0002107c1c0e, 0x4faf5eff10690112, 0x0e0b3d03d6d0ff3a, 0xff3c09ea73ff1077, 0x108e02063cc29fc9, 0x0b1a4bff10891e0e, 0x000fbb0c0beaffbd, 0xff3d5d8f31ff1097, 0x10c0220e3a66fc50, 0x10ad000810b2c104, 0x5b22ff3b80732bff, 0xcdff10bb00113cfb, 0xbcb6e6b5ff3bfb19, 0x10cd090b10d2060d, 0xb841ffbbc75c07ff, 0x58ff10db00083c03, 0x3c9dbdb9ff3b938a, 0x112c1d0e11700108, 0x10fea704110c1c0e, 0xddd225ff10f90111, 0x060d3cfd0e7dff3b, 0xff3cae838eff1107, 0x111e100b3d6e5f67, 0x901070ff11190112, 0x0011bcd7855affbd, 0xffbe199547ff1127, 0x11505d05bdbea608, 0x113d3f0511420207, 0xa0c7ffbcbbbf23ff, 0xfbff114ba9043c3d, 0x3d5e2087ff3cbf4e, 0x115d01111162aa04, 0x3202ffbb05a671ff, 0x1bff116b000f3d13, 0x3d01b974ff3d7166, 0x1198030d11b8050b, 0x1185010b118a300e, 0x1270ff3cac98d4ff, 0x4bff1193c1043d57, 0xbcc29d3bff3ca0a5, 0x11a5000211aac104, 0xbef9ff3c070e59ff, 0x78ff11b3000f3cd5, 0x3bd96b85ffbd6f04, 0x11ce140b11dc0002, 0x0fd1abff11c90208, 0x2a0e3c76c2f8ff3d, 0xff3d34eb3dff11d7, 0x11ee060d3dd3295e, 0x4208b0ff11e9c004, 0x00123d094149ff3d, 0xff3d619084ff11f7, 0x000000133dca20fd, 0x000003e800000008, 0x000011cf00000001, 0x08d33e0500000000, 0x0248a904047b0007, 0x00a07f04012c0108, 0x003c1106005c0211, 0x00296304002e7604, 0xd7b3ffbbcbc950ff, 0xedff00373001bc18, 0xbcf4967fffbc0503, 0x00493c01004e3e01, 0xf603ffbc21ce05ff, 0xb1ff00577c043cf0, 0xbd179c40ffbc7cd7, 0x0072250400805004, 0x0d2c17ff006d3c01, 0x1006bc2ba503ffba, 0xff3c8297ffff007b, 0x00921c053b7870dd, 0xdc8a80ff008d0a06, 0x29053daa9824ff3a, 0xff3d171277ff009b, 0x00e80111ba86d6d9, 0x00ba010c00c80011, 0xb66628ff00b5270e, 0x070dbd30a458ffbc, 0xffbc55c34cff00c3, 0x00da0c05bd0792f3, 0xc99cb5ff00d52e0e, 0x0209bc52d1e3ffbc, 0xffbc4a2c32ff00e3, 0x010c9504bd0f17f4, 0x00f9000c00fe000b, 0xea2cffbafedb1aff, 0xb6ff01078404bd6f, 0x3c4843c4ffbc92bb, 0x0119070b011e1305, 0x3c32ffbc1bf8f2ff, 0xb6ff0127000cbd1d, 0x3c502887ffbc8ae7, 0x0178000f01bc0211, 0x014a270501584f04, 0xc41bebff0145030b, 0x050b38dff253ffbb, 0xff3bc5b96aff0153, 0x016a210e3c966ac6, 0x1d740cff0165010e, 0x28053d0379e4ffbc, 0xff3b1d5364ff0173, 0x019c5c043c917b24, 0x01890006018e0c05, 0xb0a1ffbbc6783bff, 0xe8ff01973201bc1a, 0xbb22c1a5ffbba041, 0x01a9001101ae140b, 0x0d3cffbc5d27e3ff, 0x7bff01b73d01bc01, 0xbc27807bffbb38b6, 0x01e45e040204030b, 0x01d1250401d63b04, 0xe9a9ffbb8eadbdff, 0xabff01df0a063c94, 0xbcbcc550ffbb08b1, 0x01f1020801f61c05, 0x0d76ff3d9fa2d8ff, 0x79ff01ff070ebbce, 0x3c1d2975ffbcf0bd, 0x021a250402282c04, 0xb4996bff02151206, 0x26013cab1fa8ffbb, 0xffbb512c60ff0223, 0x023a030e3c5b76c4, 0x238f4cff0235010e, 0x12053d7ef6ecff3c, 0xff3dfc11abff0243, 0x035f000f3d39f30c, 0x028faf0402d3070b, 0x02611106026f020e, 0x6a19063e3e1fd4ff, 0x89ffb9cc8c00ff02, 0x0e02812d0ebd52e6, 0xbd001f47ff027c03, 0x8a0a063d8c0eafff, 0x48ffbba5b5a8ff02, 0x0502b3b8043d03b4, 0xff02a0010802a537, 0x397853ffbd13200e, 0x1340ff02ae010ebc, 0x0d3da903b4ff3b35, 0xff02c0070e02c503, 0x4bb91cffbcf5c5b2, 0x5454ff02ce030ebb, 0x0c3cf972b9ffbcb6, 0x0502fb0008031b00, 0xff02e8260502ed29, 0xb262ecffbd35f0ce, 0x13ccff02f60002bd, 0x0dbd0b7dcbff3c82, 0xff03081606030d01, 0x1ea993ffbd7335fc, 0xc6b0ff0316040dbd, 0x0e3d1c194bff3c55, 0x050331020d033f02, 0xbd848b40ff032c12, 0x3a000ebc6004abff, 0xf4ffbc5d0f7bff03, 0x0103513c013cd0ed, 0xbd1e7c6bff034c24, 0x5a300e3c135b07ff, 0x1aff3d3e223cff03, 0x0c03ef0b053c9df8, 0x04038b020803ab01, 0xff0378070e037db0, 0x4845afffbca394eb, 0x6bdeff03860705bd, 0x05bc5515e8ffbce9, 0xff03980105039d03, 0x97b55fffbd2581a4, 0xd654ff03a61001bc, 0x08ba8a7cccffbe00, 0x0803c1b30403cf01, 0xbcda74caff03bc00, 0xca0605bc52c2bdff, 0x91ffb98f5203ff03, 0x0e03e10105bc91a4, 0xbcbc92ecff03dc0b, 0xea0b0bbd3f0278ff, 0x11ffbc2c54b6ff03, 0x08043739053bac3c, 0x0204092905041700, 0xbc2ebb55ff040400, 0x120002bc7975b1ff, 0x30ff3a114909ff04, 0x0e04290002bc1672, 0x3c1573bfff04242f, 0x320112bc0ef7d7ff, 0xcaff3c56b8e7ff04, 0x05045bbb04bb6aea, 0xff0448010c044d3b, 0xbc0fc2ffbd5b05d1, 0xfa58ff04560011bc, 0x08bc9b7390ff3b56, 0xff0468bd04046d02, 0xbe8652ffbc18a795, 0xa2fbff04763d05bd, 0x04bdcb8925ffbd8e, 0x11059f021106bbca, 0x0404cfc604051301, 0x0404a1710404afba, 0xbba09bdbff049c59, 0xaa3403bab7c529ff, 0xeeff3bc83620ff04, 0x0304c1bb04bb0a97, 0xbd9e3605ff04bc30, 0xcac004bce9e4ecff, 0x87ff3c2763f2ff04, 0x0c04f30006bbd5a5, 0xff04e00b0b04e501, 0x166166ff3d7c396a, 0x8e24ff04ee01073e, 0x063d3c3c85ffbd29, 0xff05000c0505050e, 0x9c18f7ffbe868578, 0x5b9aff050e030bbd, 0x0dbcdbd000ff39af, 0x04053b1606055b01, 0xff05286904052db0, 0x9db13effbc044004, 0xa359ff0536000c3b, 0x04bb12a9f0ffbd67, 0xff0548050e054d88, 0x3f99eeffbc362e99, 0xae05ff055697043d, 0x04bc546274ffbd90, 0x0505712601057f68, 0xbb8ff587ff056c10, 0x7a00063b43c9f7ff, 0xc8ff3c6817cbff05, 0x0d05911606ba9add, 0x3c3fcf26ff058c04, 0x9a000f3cddd464ff, 0xbcff3bfe70ebff05, 0x0c062f030bbc1648, 0x0805cb021205eb00, 0xff05b8120505bd02, 0x728659ff3ca27ae1, 0x61b3ff05c6070ebb, 0x0ebc84341cffbd59, 0xff05d8250405dd0d, 0xd4947eff3cd4f179, 0xab06ff05e601083d, 0x043e7f559cff3e1c, 0x020601000b060f3b, 0x3c0b0d03ff05fc00, 0x0a1006bd18de85ff, 0x47ff3d4c115dff06, 0x0606215e0439b44f, 0x3e2623b4ff061c14, 0x2a0a06bd307534ff, 0xc2ffbcab9c77ff06, 0x0606770b053db869, 0x0606490108065712, 0x3e316745ff06440d, 0x525e043e69420eff, 0x29ff3db273f1ff06, 0x06066901083e1f72, 0x3d90245cff066414, 0x7202083cb0d080ff, 0xd0ff3d0ce289ff06, 0x05069b6a043c88f4, 0xff06880008068d12, 0x43cbb4ff3dbdcb6a, 0x66bcff06960d0e3d, 0x02bc259a29ff3cd9, 0xff06a86c0406ad00, 0x48c588ff3cf86aa0, 0x0274ff06b6010e3e, 0x023da0ac4cff3a96, 0x06074f000f07db00, 0x0106eb020d070b02, 0xff06d8350106dd3f, 0x4534b5ff3d1ba048, 0x6e00ff06e6030bbd, 0x03be253ee7ffbccb, 0xff06f83f0106fd29, 0x5e25b8ff3bd44b37, 0x0750ff0706030dbd, 0x0e3c2f737dff3d2e, 0x0d0721030b072f01, 0xbcaf5ed0ff071c04, 0x2a00083b827800ff, 0xfbffbd103ec1ff07, 0x0d0741000cbca373, 0x3c5c96b3ff073c04, 0x4a000d3d9c615eff, 0x87ff3d0adf90ff07, 0x060797cb043d9911, 0x0707693805077700, 0xbd978a33ff076402, 0x720012bc9885c0ff, 0x68ff3d2fa770ff07, 0x06078913053dfcf8, 0x3daa8834ff078410, 0x92090e3c957804ff, 0x28ff3c179e6eff07, 0x0807bb010c3cf272, 0xff07a8350e07ad00, 0x10d331ff3c8f4ca1, 0x505cff07b60506bd, 0x03bd87bfb3ffbce7, 0xff07c8010607cd24, 0xe2a857ffbdc17365, 0x2d71ff07d60b0bbc, 0x113cbb96b5ffbcbc, 0x0708030006084701, 0xff07f0001207f502, 0x264cbcff3e039278, 0x7340ff07fe00123e, 0x0e3e587d80ff3e56, 0x040819cc04082707, 0xbc5b4b92ff0814cb, 0x22010ebb647bddff, 0x79ffbc105e7fff08, 0x050839010cbcc2ae, 0xbd497b39ff08341c, 0x42cb04bcfd4952ff, 0xe2ffbdcf05abff08, 0x0d088f000c3c525a, 0x0e0861cb04086f00, 0xbd14b4d3ff085c03, 0x6acc04bd88ac02ff, 0x9affbd078121ff08, 0x0b0881040dbba36c, 0xbccc4fe8ff087c03, 0x8a010e3aaab710ff, 0xddffbd0c200cff08, 0x0f08b315063d3d72, 0xff08a0020708a500, 0x65cba7ff3ccf1c90, 0x196bff08ae0b0b3d, 0x0d3d3e28a2ffbb9d, 0xff08c0000d08c503, 0x054845ffbd36f4a7, 0x31f3ff08ce040ebb, 0x073d6e6eaeff3b63, 0x110b178a040d5301, 0x05096f000809fb01, 0x0c090b060d092b67, 0xff08f8120e08fd01, 0x0d84dfffbba4f2c4, 0x7d77ff09064d05bc, 0x043b123fc1ffbb90, 0xff0918010c091d7e, 0xc2567affbc05fbc1, 0xb15cff09260e0ebb, 0x0cbc9f02a4ffbbcf, 0x040941000f094f00, 0xbc77af9fff093c55, 0x4a0009bd8a66b5ff, 0x7fffbb98a524ff09, 0x090961030bbc1bb9, 0xbb90cc52ff095c01, 0x6a000ebc41a209ff, 0xf6ffbc438b4eff09, 0x0e09b7070e3bbd66, 0x040989000e099706, 0xbc07a08aff098466, 0x927904bcb32405ff, 0xdfffbb0af28eff09, 0x0d09a974043b8fd1, 0x3c486086ff09a407, 0xb2110bbbf222ccff, 0x82ff3cc3b7efff09, 0x0d09db080e3d1c7e, 0xff09c8650409cd07, 0x1e9220ffbc8cdc66, 0x2caaff09d67204bd, 0x0e3cfde452ff3b37, 0xff09e86c0409ed12, 0x819580ff39b361bd, 0xe6f4ff09f6130e3c, 0x06bbae7eecffbd32, 0x050a4701080a8b00, 0x0b0a1902120a2771, 0x389ebf0aff0a1404, 0x224f043c0e9f94ff, 0x28ff3cb990a2ff0a, 0x0d0a3902113e0214, 0xbc6f15f3ff0a3400, 0x425a043cd09b45ff, 0x70ff3ce3e965ff0a, 0x0e0a6b58053e1271, 0xff0a5858040a5d0d, 0x394f33ff3c94b726, 0x2a06ff0a66020b3d, 0x0e3c428a7affbc3c, 0xff0a787c040a7d00, 0x481596ff3ae8337c, 0xec15ff0a860d0ebe, 0x063d03c3d9ff3d7d, 0x040ab30b0e0ad303, 0xff0aa000020aa575, 0x7e48d7ffbd063011, 0x086fff0aae060e3d, 0x06bdc5f9bbffbd8d, 0xff0ac01d0e0ac501, 0xa4f188ffbd78a77a, 0xe92bff0ace0206bc, 0x0e3d18fd70ff3a6a, 0x040ae906060af706, 0xbbbea862ff0ae472, 0xf2010ebd4666d9ff, 0xcfffbc308db9ff0a, 0x0e0b09020d3cb1d7, 0x3a1c2fb5ff0b0407, 0x1200023d0b0b9eff, 0x9dff3d86cb54ff0b, 0x060c37000f3d3237, 0x0e0b67010b0bab11, 0x0e0b39170e0b4719, 0x3d08be53ff0b340e, 0x42c704bd0fc97fff, 0x89ff3dafbfd3ff0b, 0x0d0b59220ebd0e6a, 0xbd33a51bff0b5402, 0x62230ebdf56651ff, 0x0fff3d4efad2ff0b, 0x040b8bcd04bce8b1, 0xff0b78190e0b7dc0, 0xa4dd4aff3cfd1bdb, 0x5d3fff0b86070b3c, 0x053ccdaf43ffbc5b, 0xff0b9800070b9d95, 0x66f6f1ffbe4729d3, 0x389bff0ba69605bd, 0x063e6a3cd2ff3e13, 0x0d0bd35e050bf314, 0xff0bc0000d0bc504, 0x31d9b7ffbd586177, 0x4275ff0bce030e3b, 0x043d4d272fff3c6b, 0xff0be0b3040be5ba, 0xab26bbffbc640fd6, 0xcde0ff0bee00023c, 0x0dbcd6d788ffbda8, 0x080c09ae040c1701, 0xbd1c0338ff0c0400, 0x12bf04bcb0c529ff, 0x6dffbd8962e1ff0c, 0x040c29030ebd3471, 0xbc00df23ff0c24b0, 0x32bc04bcf0c22aff, 0x9cffbce2716dff0c, 0x0e0cc700073c0bc8, 0x0d0c6366050c8328, 0xff0c50270e0c5507, 0x88b7e8ffbbb36a76, 0x0586ff0c5e0008bb, 0x0bbc85170effbd2d, 0xff0c70030b0c7514, 0x3c4936ffbbef7398, 0x5502ff0c7e01093b, 0x0dbbf83ff2ff3c6e, 0x0d0c992d0e0ca707, 0xbb8277abff0c9406, 0xa20111bcaa7a1aff, 0x27ffbc92c37dff0c, 0x020cb9070bbbbe0b, 0xbd1c9489ff0cb400, 0xc20108bbaf91abff, 0xefffbd9bee7eff0c, 0x0b0d0f8505bd14c6, 0x060ce1230e0cef14, 0x3c1f6673ff0cdc00, 0xea0b0bbc4b00e2ff, 0x75ffbb20e894ff0c, 0x080d01000cbcb68c, 0x3b4dd0bbff0cfc02, 0x0a00083cd0d430ff, 0xcdff3c83454eff0d, 0x0e0d33170e3cfb45, 0xff0d20000e0d250d, 0x325ed4ffbd0c71a7, 0x5b0cff0d2e010cbc, 0x0c3c86d882ffbaa6, 0xff0d4086050d4500, 0x7869feff3c327235, 0xf7c3ff0d4e0a0bbb, 0x043ce0bcadffbc75, 0x0e0e7701110f93c8, 0x050da7070d0deb13, 0x0e0d79120e0d8761, 0xbba4d305ff0d7409, 0x827a043c102563ff, 0x84ffbc6cd5dcff0d, 0x0d0d990c0ebdcdf2, 0xbc9a2edbff0d9406, 0xa2b204bbdd07d8ff, 0xfcff3b95b10bff0d, 0x0e0dcb010cbc497e, 0xff0db8ab040dbd07, 0x9a0c1bffba61f549, 0x9b32ff0dc6030bbd, 0x0e3cdb241bff3bed, 0xff0dd8080e0ddd0d, 0x71eeddff3d10a057, 0xceb1ff0de60e0ebc, 0x0ebe9b85d7ff3e07, 0x050e13a2040e331a, 0xff0e0000020e0553, 0xa9bac8ff3aa170bb, 0x31d9ff0e0e54053c, 0x0bba26b746ffbd20, 0xff0e20060d0e2507, 0xb53231ffbc4dd292, 0xf0b5ff0e2e060d3c, 0x0e3d251985ff3c87, 0x120e491c0e0e571e, 0x3cdd7d95ff0e4400, 0x52070bbc12ef67ff, 0x8fffbcc23047ff0e, 0x0b0e69140bbd7f3b, 0xbb18b434ff0e6409, 0x7276053c9720f9ff, 0x37ff3d05fc8bff0e, 0x050f070b0ebbf410, 0x0e0ea300060ec387, 0xff0e907f050e9507, 0xbbbb7dff3cf5ff68, 0xf184ff0e9e64053a, 0x06bcc7b3c9ff3c38, 0xff0eb003060eb506, 0xd6adacffbd72387a, 0xe062ff0ebe030dbc, 0x043c4d39f0ffbb9e, 0x040ed9060d0ee7a7, 0xbd47399eff0ed4a0, 0xe2000cbdd05fa8ff, 0x9cff3dedf308ff0e, 0x0d0ef9060e3d9f1e, 0xbbab14deff0ef407, 0x02020d3e0e30f1ff, 0x0cffbc80d376ff0f, 0x050f4f000f3d1018, 0x060f2100020f2f55, 0x3c97ac10ff0f1c00, 0x2a0208bd2040ccff, 0x31ff3d295a65ff0f, 0x0e0f4196043ccc87, 0x3d1cc108ff0f3c1c, 0x4a02083b85ccd0ff, 0x4bff3d3d6c38ff0f, 0x0d0f73b1043c6206, 0xff0f60220e0f6502, 0xbd38c9ffbcaa32c1, 0x8945ff0f6e040b3c, 0x053d249b0bff3c8f, 0xff0f8000020f855b, 0xdd40f2ff3baa70c7, 0x1c17ff0f8e030b3c, 0x05bc4203a5ff3c0f, 0x0e1027011210b374, 0x040fc30e0e0fe331, 0xff0fb00d0e0fb5ca, 0xd0e0d9ffbd66dd57, 0x101aff0fbe0012bd, 0x053d8e95c1ffbc76, 0xff0fd002080fd568, 0x5fcc09ff3db8b22c, 0xed2bff0fde6a053d, 0x0e3d8fefc2ff3c83, 0x080ff96e05100732, 0xbe0fc038ff0ff401, 0x02000cbd6e860dff, 0x4fff3d929ae8ff10, 0x021019340e3ded4c, 0x3cea05c9ff101400, 0x22010c3dbc458cff, 0x14ff3cd2fd85ff10, 0x08106f0b0bbcba3d, 0x041041000d104f02, 0xbdb084adff103ccb, 0x4a000cbc71c094ff, 0x3affba27051fff10, 0x0b1061000f3ce5d6, 0xbde3fd8aff105c07, 0x6a010cbd4bfe38ff, 0x35ff3ca822acff10, 0x051093ca04bb8bc3, 0xff1080000c10855c, 0xba9355ff3cec6904, 0x9d08ff108e00083d, 0x0c3c8ccc3affbde3, 0xff10a06b0510a500, 0xa58da8ff3d75038c, 0x4c63ff10ae5f053c, 0x0e3dc372fbff3e18, 0x0e10ff190e11431d, 0x0e10d1001210df0d, 0xbd19e100ff10cc08, 0xda060ebc5a3a9eff, 0xeaffbe0aa6afff10, 0x0b10f1000c3a1e1e, 0xbc2c0af1ff10ec0e, 0xfa140b3c553604ff, 0x20ff3caa87e8ff10, 0x0c11231c0e3d5b17, 0xff1110000c111501, 0xbcb54aff3d01cb32, 0x06c0ff111e0b0b3d, 0x0c3e5d6e05ff3e25, 0xff11300108113500, 0x85231cffbcea73be, 0x44d3ff113e8c05bd, 0x0cbd8cbd52ffbdd7, 0x0c116b310e118b01, 0xff1158220e115d00, 0x674cc5ffbca124b0, 0x3090ff1166070b3c, 0x043d2d3527ff3b84, 0xff1178330e117dc9, 0x82d3eeff3da77da2, 0x4980ff1186330ebd, 0x0ebb9269b9ffbd1b, 0x0511a1011211af2d, 0xbc1baf8aff119c75, 0xaa02073da32333ff, 0xccffbc1e91efff11, 0x0e11c10b0b3ce65d, 0xbc5b666dff11bc31, 0xcacd04bd533aa9ff, 0x5bffbdced8f9ff11, 0x08000000133d5bff, 0x01000003e8000000, 0x0000001190000000, 0x0108a63f05000000, 0x040236000c044e36, 0x040097770401237e, 0x04003c0212005359, 0xff00290a06002e56, 0xadcd9fffbbc16dd9, 0xa3f3ff00370a06bb, 0x0e3d2ebdadffbbcc, 0xff0049000d004e0d, 0x2ce14eff3a2febc0, 0x230ebd9357c0ff3d, 0x2703006902120077, 0xffbbd1786fff0064, 0x00720207bc156cad, 0x8a3cff3dfe8b34ff, 0x0305008974043dce, 0xffbbaa701aff0084, 0x00920106bc62112f, 0x0ad6ffbc094511ff, 0x050600df7c043be4, 0x001200b1280e00bf, 0xffbabdd084ff00ac, 0x00ba290e3cf0ee5a, 0x2be7ffbd49904cff, 0x030b00d17a04bc0b, 0xffbc414c14ff00cc, 0x00da00083ccfde91, 0x50ffffbc48d5c0ff, 0x070d010307063cc7, 0x43ff00f0110500f5, 0xbcf2e5faffbc86d9, 0x1d576eff00fe0108, 0x000f3b36c002ff3d, 0x36ff011000070115, 0xbd9f2285ffbd2c01, 0x819bbfff011e0008, 0x0006bce1c652ffbb, 0x010701667f0401aa, 0x220e0141230e014f, 0xff3c370e70ff013c, 0x014a030bbbf7aeb0, 0x68e5ff3a1ac4e0ff, 0x290501610112bc85, 0xff3d618ffcff015c, 0x0155b8ffba7c8407, 0x7c8a04018a140bbe, 0xede9ff0177340101, 0x01bc19eb79ffbcbf, 0xbd464a2cff018521, 0x9c9304bd000ac2ff, 0x043cff0197230e01, 0x07bd374fe1ffbb08, 0xbda0f6c2ff01a501, 0xf2350ebe02a387ff, 0xc4011101d2120601, 0x443cff01bf010801, 0x043c46713dffbc0e, 0x3a8d3af3ff01cd84, 0xe4300e3cafc71aff, 0x3552ff01df000701, 0x04be055747ffbdb8, 0xbd12e4f8ff01ed7f, 0x16360ebdb9acccff, 0x03a70402080b0b02, 0x04ffbbfa3c2dff02, 0xff0211a9043ce7a6, 0xcc6c7effbc3d0b55, 0x2329010228a404bc, 0x6fffbc4cf410ff02, 0xff0231000dbce689, 0xbccd6fffbd7ec10c, 0xca18010344b304bc, 0x6610010286920402, 0x53550402582a0502, 0xc2ffbba8f9ccff02, 0xff0261010dbc0bdb, 0x0b8472ffbc14b378, 0x73060d02780111bb, 0xb2ffbb73ffeaff02, 0xff0281030bbbbc40, 0x0cd4c4ffbb64c236, 0x9c9a0402aa00063b, 0xa7d7ff0297010c02, 0x05bcab49b2ffbd4b, 0xbdad94b3ff02a512, 0xbc360ebd508b0bff, 0xed2fff02b7970402, 0x0fbc0bf594ff3c0d, 0xbcb15e62ff02c500, 0x120212bd24a8f0ff, 0xe42c0302f2000f03, 0x24f4ff02df080b02, 0x033c5c3ac7ff3b7f, 0x3c65afe0ff02ed2d, 0x049404bc11579fff, 0xdf4cff02ff120b03, 0x04b9a51b68ffbb8e, 0xbbd88bb4ff030d9c, 0x360008bc8f9724ff, 0x233b040328260103, 0xbcff3cb867cfff03, 0xff03310d0ebdb5ab, 0x09aa04ff3d247cfa, 0xb5dcff033f29053e, 0x013e49cbbaff3e53, 0x070390000603d41a, 0x050362010c037000, 0xbde7e830ff035d0b, 0x6b0a03bd796e8bff, 0xe5ffbd235946ff03, 0x0c03820111bd561e, 0xbe24270eff037d01, 0x8b0008bdf59934ff, 0xbaffbd81b818ff03, 0x0c03b40007bd3db7, 0xff03a1010603a601, 0x1364efffbd547345, 0x57a3ff03af0206bd, 0x06bca2678affbceb, 0xff03c1bc0403c603, 0x2feec8ffbd71ef09, 0x4d75ff03cf0406bd, 0x01bb33b440ffbce0, 0x0e03ea0703040a27, 0xbe2b4572ff03e536, 0xfc020dbe0fe12aff, 0x2a5fff03f71f0103, 0x07bd65b9cfffbc92, 0xbc0ab20eff040501, 0x2e000fbd00683bff, 0x1b030d0420030b04, 0xf3ffbd324cf9ff04, 0xff0429ba043bf978, 0x39aac3ff3d220c92, 0x3b330e0440070d3c, 0x87ff3c9b1473ff04, 0xff04492a0ebc59cf, 0x112c65ffbe445406, 0x720107068e0211bd, 0xa28b0404e6020505, 0x7400080482630404, 0x2108ff046f000504, 0x01bc368949ffbcb0, 0xb917efc8ff047d41, 0x940108bc1bbb42ff, 0x25baff048f010e04, 0x0fbd5b2c83ffbcba, 0x3d2c891aff049d00, 0xc60005bc684321ff, 0xb3240e04b88f0404, 0xfdffbde3f3aeff04, 0xff04c1000cbe428f, 0x9c9fb5ffbd12c15b, 0xd3020804d8050dbd, 0x38ffbd892332ff04, 0xff04e1a504bcbc57, 0x57f628ffbcd69135, 0x0e1c05052e0008bd, 0xfba1040500000705, 0xa5ffbca1e0e6ff04, 0xff0509200ebc2512, 0xeb02a5ffbc0897a4, 0x1b090e05208204bc, 0x6effbbc43240ff05, 0xff05290007bc8a65, 0xa1ed79ffbbe8798c, 0x44000e0552000f3b, 0x792dff053f020d05, 0x04bb3afbe7ffbc97, 0x3c45a635ff054d84, 0x64110b3cbd8065ff, 0x6aefff055f300505, 0x07bb871dc8ffbbca, 0xbb56662fff056d00, 0x020b0e3b8a7debff, 0x9e090605be000f06, 0x8b010e0590760405, 0x69ffbc1f4d58ff05, 0xff059903063bdf96, 0xac1bb7ffbe0467df, 0xab000c05b0030dbc, 0x19ffb9b10853ff05, 0xff05b9050e3cced8, 0x5a1973ff3ce145fa, 0xd4000e05e2060e3d, 0xc29aff05cf070d05, 0x05bb21b463ffbc07, 0xbc791dacff05dd01, 0xf40006bb27544aff, 0x7fbbff05ef750405, 0x063cd45524ff3b46, 0xbc9a7c41ff05fd08, 0x4a00083bc8d2aaff, 0x1c8b04062a040506, 0xe0d4ff0617030b06, 0x073c6957ebffbce5, 0xbd924ef0ff062502, 0x3c020dbd04d606ff, 0x1791ff0637000f06, 0x0e39bb6a3eff3cae, 0x3b2451cdff06452e, 0x6e000fbc81a752ff, 0x5b00060660020606, 0xd9ff3c4dbcf8ff06, 0xff06690605bce3ef, 0x12c3a3ff3c8edf65, 0x7b160306801b033d, 0x15ff3c633cb5ff06, 0xff06891f033d2b8d, 0x02c285ffbc8311ba, 0x22350407ae50043c, 0xbe120606de000c07, 0xab030b06b0010706, 0x6bff3b91700fff06, 0xff06b92c04bc7fdb, 0x244308ff3cc0df97, 0xcb3c0106d000083e, 0x26ff3bf06c1dff06, 0xff06d9000bbc86f6, 0x110c38ffbc244a96, 0xf409050702010e3b, 0xed7bff06ef060506, 0x063ca75f21ffbb5a, 0xbcaf91c9ff06fd14, 0x143c01bd1550c2ff, 0x0225ff070f250407, 0x0b3cf23ba5ff3c65, 0xbd64342aff071d00, 0x6a0d06bd06412eff, 0x3c0b05074a010707, 0xafd0ff07370d0e07, 0x073d2b9beeff3d0e, 0x3cfabbb8ff074500, 0x5c0a063bf17e60ff, 0x9f17ff0757060507, 0x083d9d0586ff3d85, 0x3d684449ff076501, 0x8e0d0e3cbdc710ff, 0x7b00080780010e07, 0x60ffbc0cf7d4ff07, 0xff07893e043c49b5, 0x02050eff3c6f5290, 0x9b3e0407a0170e3d, 0x47ffbd2d6243ff07, 0xff07a900083c8aea, 0x50abf8ffbdb0c722, 0xfa0108083e1205bd, 0xcc010e07da0b0507, 0x3277ff07c75e0407, 0x043e247cd0ff3d47, 0x3e3e1a78ff07d55e, 0xec01073dd3829dff, 0x51e8ff07e7010e07, 0x083de64cf7ff3d19, 0x3da24b5bff07f500, 0x1e030bbc6bc931ff, 0x0b000e08105e0408, 0xb3ff3cd91de8ff08, 0xff08190208bd5ddc, 0x109627ff3d49cc0e, 0x2b12060830030ebd, 0x97ff3d8b3442ff08, 0xff083902083c73b8, 0x9537cbff3dec638e, 0x5d0108086200063d, 0x53030b08586c0408, 0xf8ff3e0d0052ff08, 0x3e1ca598ff3de715, 0x8607063e65cd0cff, 0x73010708786a0408, 0x94ffbd62697fff08, 0xff0881000cbe0428, 0xbd7c36ffbbf25a4c, 0x936a0408981206bd, 0xa1ff3c5e95b9ff08, 0xff08a1000c3d2c53, 0x3487ccffbc4745a4, 0xea87040d1499043d, 0x42021109ce000f0a, 0xde450408fe8d0509, 0xcb430408d0040d08, 0x58ffbb9b6f0cff08, 0xff08d900083c6ef2, 0xa915edff3b01b018, 0xeb120e08f000063c, 0x52ff3cc6fe6aff08, 0xff08f903063b8d72, 0x9bb50fffbd137b6a, 0x14000d09227f04bb, 0xade4ff090f040e09, 0x07bdb54e88ffbcc1, 0xbc6a0102ff091d00, 0x34070ebd5e3967ff, 0xdfb8ff092f800409, 0x0b3d6dc033ff3de5, 0xbe16f27cff093d01, 0x8a4f04bcd8b752ff, 0x5c000d096a170e09, 0x94e0ff09571f0409, 0x053ca23b96ffbb18, 0x3d687c9dff096561, 0x7c34013c5d2373ff, 0x8c63ff0977530509, 0x04bd7bd268ffbd94, 0xbceab478ff09854c, 0xae0002bd872ed8ff, 0x9b030b09a05a0409, 0x9cffbda3f21aff09, 0xff09a926013d05d0, 0xd2f7d4ffbdbcce87, 0xbb070e09c043053d, 0x9affbd10c1c9ff09, 0xff09c95e04b92b49, 0x68bd73ff3e3004b8, 0x1a00110a5e6f043e, 0xec820509fa070e0a, 0x909eff09e7050e09, 0x0ebbfb8658ffbb98, 0xbc60b04fff09f500, 0x0c6a05bbb5ab2bff, 0xe5f3ff0a0740050a, 0x0ebc20f825ff3bad, 0xbcb36839ff0a1508, 0x3e0108bbb020c7ff, 0x2b020e0a30060d0a, 0x7affbbf618f0ff0a, 0xff0a395f04bb317b, 0x6d1fcfff3ace2015, 0x4b060d0a50030e3c, 0x7cffbbc999c3ff0a, 0xff0a590b0b3c8080, 0x907696ff3ab97d0e, 0x8601080aa6010c3c, 0x73080e0a78120e0a, 0x25ffbbac03e5ff0a, 0xff0a81130e3b97cf, 0x06fedaffbd580798, 0x93170e0a98000cbc, 0xcaffba10b809ff0a, 0xff0aa1040bbc611e, 0x85a993ffbacd0161, 0xbc00080aca160e3c, 0x060dff0ab7000e0a, 0x0e3b5d03e0ffbca4, 0xbd01ced1ff0ac500, 0xdc00023c84229fff, 0x4beeff0ad758050a, 0x07bc1d92cfffbbb0, 0x3bb6e8ddff0ae500, 0x0a93053cd30eb8ff, 0x3a070d0b7e00110c, 0x0c020e0b1a96040b, 0xa84bff0b0788040b, 0x07bcb882c1ff3c84, 0xbb3ed6d1ff0b1501, 0x2c070ebc1d6e50ff, 0xd757ff0b27030e0b, 0x0e3d03f649ffbc22, 0xbd6bc2d8ff0b3508, 0x5e1f0ebc7dc450ff, 0x4b010c0b5000090b, 0x8bff3b98e601ff0b, 0xff0b5900023ce559, 0x38bfc1ffbd081ef5, 0x6b060b0b700108bc, 0xd0ffbd056dacff0b, 0xff0b79000cbd5013, 0xaf51ffffb9f1f013, 0xa600060bc6060dbc, 0x931b0e0b98000f0b, 0x58ff3d0e7f5cff0b, 0xff0ba1020e3c4dce, 0xbddbfdffbcbce34a, 0xb300020bb803063a, 0xa8ffbd5625efff0b, 0xff0bc10f0ebcaa35, 0x140fd6ffbc5162af, 0xdc070e0bea98043d, 0xc597ff0bd700090b, 0x07bc021fceff3d40, 0xbbb0c237ff0be500, 0xfc230e3cb7a362ff, 0xe1bfff0bf750050b, 0x0e3d50a36dff3dc7, 0xbd0f28e7ff0c0528, 0x91000c3c1af850ff, 0x3601110c56000d0c, 0x2300070c28000b0c, 0xfbffbc3d3a00ff0c, 0xff0c31020e3c721e, 0x66423dff3b8b67ef, 0x43020e0c489504bd, 0xe1ffbd6ab7f5ff0c, 0xff0c510007be34c4, 0xa2362cffbc2447a0, 0x6c020d0c7188043d, 0x3419ff0c6700070c, 0xffbda8543effbd97, 0x0c83020dbd1b6fe8, 0x915ce9ff0c7e0112, 0x94043d5f68bdffbc, 0xffbcfbea87ff0c8c, 0x0cd9000fbc3746d6, 0x0cab010e0cb90009, 0x8f6899ff0ca6050b, 0x020bbea9b882ffbe, 0xffbd84f95eff0cb4, 0x0ccb030bbe2c9577, 0x197d68ff0cc69405, 0x000ebdd0c6caffbd, 0xffbe83fc42ff0cd4, 0x0cfd010cbdf33026, 0x0cea00090cef000e, 0xee2effbd8992a1ff, 0x5dff0cf8060dbd18, 0xbc3e79d2ffbd4145, 0x0d0a030b0d0f090b, 0x4f92ffbdb8eff7ff, 0x0fbe15df48ffbe0b, 0x040e38070b0f5400, 0x0b0d68030e0dacbf, 0x0b0d3a060d0d4803, 0xbda72fcaff0d3501, 0x430111bb895957ff, 0x23ffbd5ea06aff0d, 0x0d0d5a00093e08c0, 0xbe6afc03ff0d5502, 0x63a704bd8f8114ff, 0x1effbc9140c2ff0d, 0x090d8c02083dacc6, 0xff0d79330e0d7e00, 0x9e4c18ff3d100032, 0xbcd1ff0d878a05b9, 0x0e3c51e8bbffbcbc, 0xff0d9987050d9e17, 0xbd381aff3d1a084f, 0x7e09ff0da7040d3d, 0x0ebd94de5eff3c82, 0x040dd400090df423, 0xff0dc100060dc6ca, 0x7d2486ff3d65914d, 0x44f2ff0dcf010b3b, 0x05bc9eec74ffbe06, 0xff0de100020de692, 0x0fe177ffbdae768f, 0xe4a6ff0defc704be, 0x08bd9545d5ff3d47, 0x0c0e0a00070e1802, 0x3d179e6bff0e0500, 0x13010bbd321f02ff, 0xe6ffbcd4fde2ff0e, 0x070e2a040d3c8e14, 0xbd543359ff0e2500, 0x33040bbc942ee5ff, 0xc3ffbe064bb5ff0e, 0x060ec8030ebda163, 0x050e6400090e8414, 0xff0e514f050e5691, 0x14eb86ff3ca23cd9, 0xf10cff0e5f020dbb, 0x05bc66d2b5ffbe36, 0xff0e7100020e7695, 0x801b7bff3d459809, 0x9ce0ff0e7fb3043d, 0x043d51ef50ff3a9b, 0x0e0e9a16060ea8b6, 0xbc3a105fff0e9501, 0xa30002bd4d9185ff, 0x1aff3ce5b5b0ff0e, 0x060eba0002bd1642, 0xbdb31af6ff0eb517, 0xc31606bd0e3bb7ff, 0x32ffbcc6a961ff0e, 0x0d0f100b0ebd4233, 0x060ee207060ef005, 0xbc0f7e23ff0edd00, 0xeb1106bd8c1623ff, 0x05ff3c32ce8dff0e, 0x050f02060ebcd831, 0x3c5934d6ff0efd90, 0x0ba704be194bb0ff, 0x4cff3ce2b9a2ff0f, 0x120f34170e3d51b4, 0xff0f210a0b0f2600, 0x4ad9f7ffbe0b4695, 0xede6ff0f2f140ebe, 0x0e3d690c91ff3d29, 0xff0f4196050f4631, 0x7e04b4ff3d11faa6, 0x24b1ff0f4fb204bd, 0x053ccff271ff3b92, 0x0b0fe8140b10748c, 0x040f84020b0fa40a, 0xff0f71000c0f769a, 0x5e0fdfffbcb5be3b, 0xbad7ff0f7f100ebd, 0x0bbc9eaa4fffbc0b, 0xff0f91060d0f9607, 0x6668e9ffbb908ee2, 0xae6aff0f9f060d3a, 0x0b3c2835deffbbe8, 0x120fba00090fc80b, 0x3c649033ff0fb501, 0xc3c204bc0fa0ffff, 0xbeffbc1a9532ff0f, 0x120fda120ebd2ab4, 0xbc8bb54eff0fd500, 0xe3130e3c37c50fff, 0xc7ffbdaf059cff0f, 0x0c1030ca04bc8e3f, 0x091002c804101001, 0x3c232bd3ff0ffd00, 0x0b7405bbecb9ceff, 0xbaff3d40bc68ff10, 0x0e102200113aba74, 0x3d37e4c7ff101d1c, 0x2b060d3c34ea6eff, 0x44ff3c9744d5ff10, 0x0e10540007bd055a, 0xff10410008104623, 0x50ac3fffbd13bced, 0xcb78ff104f2e0e3d, 0x0cbd421710ffbc7d, 0xff1061220e106600, 0xdf10e3ffbb6e6f14, 0xb51dff106f220e3c, 0x0c3d8e0847ff3d3c, 0x0510c00107110400, 0x0b1092910510a095, 0xbc0ab4faff108d07, 0x9b190ebad4d4a9ff, 0x56ffbbae0285ff10, 0x0410b20111bc10d0, 0xbc43ab75ff10adcd, 0xbbcc04bcd893acff, 0x9cff3b38b067ff10, 0x1110e40e0bbd3f03, 0xff10d10b0b10d600, 0x6dfbdbffbc485787, 0xf7d3ff10df060dbd, 0x0ebb812b61ffbc31, 0xff10f1cd0410f61d, 0xff5160ffbb1ab7c3, 0xbb1aff10ffca04bc, 0x0e3ca77f00ffbccc, 0x05112c0009114c0d, 0xff1119060d111e91, 0xa0974fffbcbfda91, 0x1c3cff1127010cba, 0x0ebd10a0d9ffbc90, 0xff1139000e113e07, 0x2423d4ffbc194cf1, 0x2188ff11470b0e3b, 0x0ebcba9dffff3d08, 0x0b1162010911700e, 0x3c49fd79ff115d0a, 0x6b02093d6060c8ff, 0xddffbac2aedaff11, 0x0d1182140ebd17c5, 0xbbd32d16ff117d06, 0x8b170e3d81c39cff, 0xd8ffbce21f33ff11, 0x08000000133b96a7, 0x01000003e8000000, 0x00000011cf000000, 0x0208f78205000000, 0x04023f0009047b00, 0x0400a0810501238e, 0x04003c6e04005c72, 0xff0029020d002e59, 0x688901ffbaffd138, 0x8530ff00370211bb, 0x123d99be56ffbaea, 0xff0049070e004e00, 0x36aad9ff3adc5aa7, 0x698fff0057140ebc, 0x06ba8119f4ff3c2a, 0x0e0072000f008000, 0x3ce97f0aff006d19, 0x7b140b3bdbdc22ff, 0xbfffbb123bacff00, 0x0800922b053b9364, 0xbc13325dff008d00, 0x9b03063c14045eff, 0x26ffbd1742b2ff00, 0x0e00df000dbbd01d, 0x0400ba050b00c81d, 0xbd54d317ff00b56c, 0xc37704bde2e0bfff, 0xd8ffbcffc103ff00, 0x0700da070b3d8324, 0xbea102f9ff00d501, 0x641effbe9c0e0eff, 0x010e0103000fbea8, 0xb0ff00f0010b00f5, 0xbc1037e4ffbd9ec1, 0x2b76b6ff00fe0107, 0x0007bc6569cbff3d, 0xafff0110000e0115, 0x3be9e75dffbc4ae9, 0x749833ff011e060d, 0x2f0e39d5a3d6ffbc, 0x070b016f020701b3, 0x6d050141000f014f, 0xff3c041d32ff013c, 0x014a040b3cc7638e, 0xc856ffbc0b3109ff, 0x1c0e0161a7043b32, 0xff3c2f1694ff015c, 0x016a000fbbc014bf, 0x9963ff3d1a2bcdff, 0x0b0e01931f0e3c40, 0x60ff0180000f0185, 0xbbf9695cff3c71b7, 0x42f482ff018e1c0e, 0x000cbd342bafff3c, 0x36ff01a0680501a5, 0xbba899e4ff3c3326, 0xabc1eeff01aeb004, 0x000f3d219997ff3c, 0xa30401db310e01fb, 0x95ff01c8400101cd, 0xbbaae0a3ff3c703f, 0x084183ff01d60208, 0x000dbb99b6b3ff3d, 0x88ff01e8000c01ed, 0xbcc0afc4ffbd741d, 0x2bd920ff01f6000c, 0x060d3b215ddeffbc, 0x4f050211b504021f, 0xffbc80f05dff020c, 0x021a0207bbfb686d, 0x7109ffbb73b772ff, 0xc704023100123d0b, 0xff3aadf6c8ff022c, 0x023ac204bd0a245b, 0x9a76ffbd841910ff, 0xb104035f7b05be57, 0x5e05028f830402d3, 0x5f0402616604026f, 0xffbbba9f4cff025c, 0x026a060dbc0858e4, 0x5cd2ffbc147cd6ff, 0x010b02810211bc93, 0xffbc8159d3ff027c, 0x028a030bbb25e01f, 0x0a75ff3d676236ff, 0x010b02b3070d3df1, 0xc9ff02a0310e02a5, 0xbe027333ffbce77e, 0xbf93edff02ae0209, 0x7905bc9e495cffbb, 0xe9ff02c00a0b02c5, 0xbd5603e8ffbcfff3, 0x92459fff02cea704, 0x000f3dc4f9cfffbc, 0x2c0e02fb070b031b, 0xebff02e8b30402ed, 0xbdaac1dbffbcb4f9, 0xe41328ff02f6c004, 0xc104bdad20afff3c, 0xa1ff0308bb04030d, 0x3dc3a25cff3d3f11, 0x26f918ff03162c0e, 0x070dbbf8a737ffbd, 0x010c0331bc04033f, 0xffbc5f3df2ff032c, 0x033a0011bd017c8c, 0x1586ffbcdfc023ff, 0x01090351100bbd4e, 0xffbd1f71d2ff034c, 0x035a120bbd7b12f9, 0xbe07ffbe000349ff, 0x020903ef140ebd8b, 0x000f038bbd0403ab, 0x5aff03780d0e037d, 0x3d845483ff3c9f55, 0x25684dff0386000c, 0x070d3b83826bffbc, 0xe7ff03980012039d, 0xbda80d3aff3cbfe3, 0xf03167ff03a60e0e, 0xc004bd96dee2ffbd, 0x7c0503c1000f03cf, 0xffbd4b0de5ff03bc, 0x03caaf043cd0c517, 0x7554ffbc3c1176ff, 0x001203e1070dbcde, 0xffbd28bcb2ff03dc, 0x03ea8105bd82efa9, 0x9a7cffbde2d84aff, 0x170e0437050bbdd1, 0x010b040992040417, 0xffbdd3b187ff0404, 0x0412000fbc101276, 0x35e0ffbe377378ff, 0x000f04299e04bd61, 0xff3d32d2c0ff0424, 0x0432000fbc184968, 0xad05ffbd807347ff, 0x000f045bc104bca8, 0x25ff04480209044d, 0xbd32035eff3ce588, 0xef55ddff0456170e, 0x010cbb9dd07effbc, 0x77ff0468070d046d, 0xbdc04092ffbccf6a, 0x535d71ff0476060d, 0x000fbda0f4bfffbd, 0x0f06059f000806bb, 0x000704cf02090513, 0xbf0404a1000904af, 0xff3bf9f2e5ff049c, 0x04aaa704bd363460, 0x33c9ff3cc7d43bff, 0x021204c19304bca1, 0xff3c9d64e7ff04bc, 0x04ca330e3d940517, 0xa9c7ff3d04e804ff, 0x140e04f3030b3bbb, 0x02ff04e07f0504e5, 0xbd9180f7ffbb8955, 0x44fca7ff04ee020d, 0xba04bdf1166effbd, 0x5dff0500000d0505, 0x3d045d50ff3d86f5, 0x89faa1ff050e2b0e, 0x0107be562e1fffbd, 0x000c053b0211055b, 0xb1ff05288504052d, 0xbcd2e6c6ffbc477f, 0xc0843dff05369d04, 0x5004ba9d80ffffbc, 0xadff05480c05054d, 0x3bfd13f1ffbc4a9b, 0x5dc285ff05562905, 0x0305bcafab24ff3d, 0x020705718b04057f, 0xffbce42ddeff056c, 0x057a97043c88e601, 0xe210ffbdf32bccff, 0x1d0e0591000cbb40, 0xff3b1e0279ff058c, 0x059a000ebd2a35bd, 0x913dff3bae795cff, 0x000e062f13063d11, 0x910405cb020d05eb, 0xf7ff05b8370505bd, 0xbc68c150ffbd1a2c, 0xe3d20aff05c61106, 0x00063bdea45dffbb, 0x0fff05d8460405dd, 0x3db3f883ff3d0c64, 0xace3f4ff05e6030b, 0x040d3c52b638ffbb, 0x0a060601060e060f, 0xffbcbad33dff05fc, 0x060a0d063c5b24df, 0x8332ff3cff57afff, 0xc004062109063c6a, 0xff3cf60c90ff061c, 0x062a1a0ebbe91c72, 0x5cc0ff3d605be1ff, 0x000c0677030d3c8d, 0x97040649a1040657, 0xff38f93755ff0644, 0x0652000d3d0245de, 0x8f20ffbd51c925ff, 0x050b0669010dbc78, 0xffbc91a4c5ff0664, 0x067201073c2dc6ef, 0x3a6dff3b445340ff, 0x000e069b000c3d00, 0xf0ff0688030b068d, 0xbb32b7d4ffbcb1bd, 0x9ec9bcff06961305, 0x020e3b3ac205ff3c, 0x7bff06a8010706ad, 0x3d02ee04ffbb2f4c, 0x7885a0ff06b60005, 0x27033d4537a1ffbd, 0x100b074f000c07db, 0x340e06eb030b070b, 0xb7ff06d8400406dd, 0x3b46bdc1ffbb9401, 0x6582ecff06e61c05, 0x0c0bbd3e1f72ffbc, 0x99ff06f80c0e06fd, 0x3c992f15ff3b8732, 0x1797fbff07065604, 0x8d04bc6b5f9bff3b, 0x010e0721060e072f, 0xffbb4b2e42ff071c, 0x072a170e3c111705, 0xb768ff3cebb3a3ff, 0x0207074100063c2f, 0xff3d56cc24ff073c, 0x074a07063def145f, 0xb913ff3cb87a7dff, 0x3b0407976a04bd8e, 0x1d040769000e0777, 0xffbc3e0cabff0764, 0x07720112bb93a4a6, 0xc74cff3baa4d45ff, 0x020e07890112bbf2, 0xff3bf22afdff0784, 0x079203063cdaea3d, 0x88bcffbc4f95abff, 0x020807bb0a0b3b80, 0x72ff07a8170e07ad, 0x3c979f4aff3d574d, 0x356f23ff07b6010c, 0x100bbc1e8452ff3c, 0xd0ff07c8010707cd, 0x3d5811ecffbb124a, 0xb4fb7bff07d60006, 0x140e3d1c3297ff3d, 0xc50408270112086b, 0x060e07f9120e0807, 0xffbb2e2ab7ff07f4, 0x0802130e3c0a59d2, 0xc314ffbd961f3bff, 0x060d08190d0e3bdb, 0xffbda3588aff0814, 0x0822c604bcbc73c0, 0xba0dffbd9228baff, 0x090e084b0b0e3d44, 0xc2ff08380009083d, 0xbba2f851ffbbd9e3, 0x40c527ff08461406, 0x0806bc635982ff3c, 0x1bff08580111085d, 0xbc1f2060ffbd1922, 0x64d303ff0866010c, 0x060d3b60870dffbc, 0x0c0608930e0b08b3, 0xfaff0880000c0885, 0x3c183ef5ffba68b9, 0x4e0f6dff088e010c, 0x0f06bbce56c7ffbc, 0xe1ff08a0010c08a5, 0x3d144f48ff3c1e02, 0x293f29ff08ae0305, 0xbd04bc48db17ffbd, 0x001108c91a0e08d7, 0xff3c6144d3ff08c4, 0x08d253053d4f8b63, 0x72daff3c76ad0eff, 0x010708e95f05bc0c, 0xff3ba8e721ff08e4, 0x08f2070d3d9a694c, 0x3c76ff3cfcdd67ff, 0x010d0d53000fbca0, 0x88040a1f8b050b17, 0x8004094f130e0993, 0x000809210a0e092f, 0xffbc68b96bff091c, 0x092a0d0ebd58bded, 0x1275ffbe299c3aff, 0x0d0e09410207bda6, 0xff3deca43dff093c, 0x094a010bbb430595, 0xc614ff3dcab810ff, 0x000809738304be57, 0xaeff09601d0e0965, 0xbe7617bcffbd8ac7, 0x65dadeff096e7604, 0x8305bdb9c685ffbe, 0x55ff0980140e0985, 0xbc209eabffbebcc3, 0xa69f8aff098e0107, 0xb804bec200caffbe, 0x1a0e09bb1e0e09db, 0xc6ff09a80a0e09ad, 0x3d851d34ffbcbbab, 0x0bbaeaff09b60009, 0x000d3d8ab25cffbd, 0x6eff09c82f0e09cd, 0x3e150524ff3d89e7, 0x71737bff09d68305, 0x00093d0a8c70ffbc, 0x010809f1300e09ff, 0xff3cbb748bff09ec, 0x09fa320ebd94d938, 0xd57bffbdb9d5a5ff, 0xba040a110109399a, 0xffbd388af0ff0a0c, 0x0a1a8305bdaa67b9, 0xa69dffbd82892cff, 0x230e0aa6c004be21, 0x070e0a4b220e0a62, 0x75ff0a3878040a3d, 0x3d15ddd9ffbd643f, 0x9881ceff0a469a04, 0x0009bce556d7ffbd, 0x73ff0a5895050a5d, 0x3e2b63bfff3dd6cf, 0x869305bdd56df0ff, 0x738c050a7884040a, 0x52ffbeab3504ff0a, 0xff0a810107beb316, 0x6a94beffbcebfe73, 0x93ac040a989405be, 0xa1ffbd122840ff0a, 0xff0aa10007be9047, 0x8c814dffbe731cb0, 0xce00090adc1d0ebe, 0xbb00070ac000080a, 0x99ffbda36893ff0a, 0xff0ac9030bbd370c, 0x06439affbc6fcbb0, 0xb930ff0ad78e05bd, 0x04be192ba0ffbe24, 0x0e0af2230e0b00c8, 0xbdf8c5c9ff0aed22, 0xfbc2043da9ed3dff, 0xffffbd7666f4ff0a, 0x050b1290053cb693, 0x3e9f6d9eff0b0d8c, 0x48c2ff3ea584e2ff, 0x010b0c378f053ed2, 0x63040b67bf040bab, 0x00020b395b040b47, 0xffbc90df7cff0b34, 0x0b4287053ceae8e7, 0xd077ffbd25bd97ff, 0x00120b59a604bdab, 0xffbd99f665ff0b54, 0x0b628e053d00a6e1, 0xae94ffbbe82571ff, 0x300e0b8b01073d85, 0x25ff0b7801080b7d, 0xbe049f22ffbda79e, 0x11515fff0b86c004, 0xcb04bcdcaa6bff3d, 0x42ff0b98230e0b9d, 0xba13f322ff3d4d1e, 0xcd21eaff0ba6310e, 0xbd043c4423a0ffbd, 0x6b040bd302070bf3, 0x35ff0bc000020bc5, 0x3c952724ffb94c1c, 0xf8fcfcff0bce000c, 0xa7043d1565bcff3b, 0xd3ff0be0060d0be5, 0x3d9f319dffbdba6c, 0x86495dff0bee060e, 0x00073d27c1daffbc, 0x01090c09070b0c17, 0xffbd16943cff0c04, 0x0c12c504bddf297d, 0xee43ff3d153221ff, 0xc5040c29cb04bc0f, 0xff3d4f217fff0c24, 0x0c32070b3d02f13a, 0xcdc4ffbd70a405ff, 0x00090cc7030e3d12, 0xa5040c63a7040c83, 0x98ff0c509c040c55, 0x3da30d22ffbd0b83, 0x569555ff0c5e020d, 0xbc04bd8f08a2ffbe, 0x93ff0c70b3040c75, 0xbd894f43ff3c0b94, 0x65f4caff0c7e060d, 0x000c3df0a3a2ff3d, 0x01090c995f040ca7, 0xffbe22d169ff0c94, 0x0ca2030bbde26eac, 0xfdabffbcfe5ed7ff, 0x91040cb9020dbd99, 0xff3d0b923dff0cb4, 0x0cc20002bcaee61b, 0x6881ff3c24cc0cff, 0xca040d0f02093d2b, 0x01120ce1230e0cef, 0xffbdb87f74ff0cdc, 0x0cea000c3d18ae1f, 0x8240ff3d79d007ff, 0x230e0d01cc04bd1a, 0xffbd99164dff0cfc, 0x0d0a330ebc0ef05c, 0xba98ff3d742e1bff, 0x070e0d330a0ebe0d, 0x7eff0d20030b0d25, 0xbd644bf0ffbe0842, 0x91cd07ff0d2e080e, 0x0d0ebe5b7ea8ff3d, 0x48ff0d4000020d45, 0xbe5aaf0effbdc43f, 0xd4ec0cff0d4ec204, 0x0107bdec07abffbc, 0xa8040e77ca040f93, 0x000e0da7020e0deb, 0x00080d79010c0d87, 0xffbc6fef8bff0d74, 0x0d820009bcca0cfd, 0xe8b0ffbd412126ff, 0x060d0d99010ebc7a, 0xffbc4319bbff0d94, 0x0da200093b1246b4, 0xaaa7ffbca45c36ff, 0x070e0dcb0a0b3a81, 0x73ff0db89f040dbd, 0xbcc32815ff3bc505, 0xc0e2e6ff0dc60b0e, 0x070ebb0681dcffbc, 0x20ff0dd8060e0ddd, 0x3ce7a1faff3b6683, 0x9bba96ff0de6080e, 0xa9043b858460ffbc, 0x000c0e13070e0e33, 0x72ff0e0001090e05, 0x3b1b8f30ff3d3b47, 0x093901ff0e0e0009, 0x100e3d2a2ee8ff3e, 0x33ff0e2000110e25, 0x3d2cf0ecffbc958e, 0x8eb06fff0e2e040b, 0xab04bd02ffbdffbc, 0x00080e49000c0e57, 0xff3a6c76beff0e44, 0x0e5201123c7f8fd0, 0x29dbff3d0ef200ff, 0x190e0e698405bb5e, 0xff3cd50378ff0e64, 0x0e72af043b852c50, 0x06f9ffbbeebedfff, 0x8f050f07230eb7f0, 0x140e0ea3180e0ec3, 0x04ff0e90120e0e95, 0x3daba45fff3ae4ad, 0x969e57ff0e9e010c, 0x0009bdb3fe2cffbc, 0x07ff0eb01c0e0eb5, 0x3d242be4ff3ddf5c, 0x51c02eff0ebe8d05, 0x0002bca2f2bdffbd, 0x00120ed9180e0ee7, 0xffbc943f90ff0ed4, 0x0ee2190ebd5661ac, 0x6263ff3d286e93ff, 0x00090ef99305bc80, 0xff3ccc8c4dff0ef4, 0x0f02010cbcabffeb, 0xc22fffbbb3475aff, 0x00020f4fcc043ca3, 0x010c0f212a0e0f2f, 0xffbd388092ff0f1c, 0x0f2acb04bdbcce29, 0x3ff0ff3c7f398dff, 0x01120f412b0ebce7, 0xff3cb8f8baff0f3c, 0x0f4a310ebcbcbf12, 0x8853ffbb96923cff, 0x00070f73010cbcef, 0x8aff0f60000c0f65, 0xbd1afce1ffbc9913, 0x96fa4aff0f6e2d0e, 0x290ebcf85f8bff3c, 0x68ff0f8000020f85, 0x3daa69b8ffbd979c, 0x80a9dfff0f8e2b0e, 0xc904bd146873ffbd, 0x000c1027020e10b3, 0x010e0fc38a040fe3, 0x90ff0fb0000e0fb5, 0x3a1b2827ffbc3c71, 0x948d19ff0fbe8504, 0xb204ba7daa7effbc, 0xbeff0fd000120fd5, 0xbcc4b73bffbc504e, 0xc57ebcff0fde010e, 0x0c0bbc782ac3ffbb, 0x010c0ff9000e1007, 0xffbd16d34fff0ff4, 0x1002010ebd62c005, 0xefb7ffbcc08349ff, 0x060d1019b704bd2f, 0xffbd401257ff1014, 0x10228605bcb4e585, 0xeda2ffbcb7abdfff, 0x190e106f8305b99d, 0x070e1041bd04104f, 0xff3c586a0dff103c, 0x104a0012bc34b82e, 0xa0f4ff3c89a7c9ff, 0xc40410611d0e3d70, 0xffbcd6e76aff105c, 0x106a230ebda8e8a2, 0x698aff3b29696dff, 0x00021093010cbc8c, 0xa2ff1080230e1085, 0xbce21ce1ffbc23de, 0x322eabff108e060d, 0x060dbaebd0b1ffbc, 0xcdff10a0011110a5, 0xbc368afdffbd48d7, 0x86cb31ff10aec004, 0x8f05bc7f2433ff3c, 0x220e10ff00021143, 0x180e10d1190e10df, 0xff3bcc3268ff10cc, 0x10dacc043d6221e0, 0xfd61ff3aae0788ff, 0xcc0410f1000cbd8a, 0xffbc5b0b27ff10ec, 0x10fa85053cdf9f88, 0x7512ffbac01b9fff, 0x310e1123010c3d87, 0x61ff111000121115, 0xbbb73808ff3c34e1, 0x09c71dff111e330e, 0x83053c329055ffbd, 0x54ff1130250e1135, 0x3c8aadbfff3e24e6, 0x1f89f8ff113e190e, 0x220eba6e7396ff3d, 0x0b0e116b190e118b, 0x39ff1158000c115d, 0xbd334577ffbc9f6e, 0xe07857ff1166180e, 0x000c3ccf9505ffbb, 0x88ff11780008117d, 0xbd1c2013ffbc41a7, 0x4da3caff11860008, 0x0002bd9f23d4ffbd, 0x900511a1910511af, 0xff3c9fe900ff119c, 0x11aa010c3d718f59, 0x1c24ff3b1e97a6ff, 0x0b0b11c19005bd90, 0xffbc7ddddfff11bc, 0x11ca010cbd4ac577, 0xd52aff3b4dae71ff, 0x0008000000133e6e, 0x0001000003e80000, 0x0000000011cf0000, 0x0002090082050000, 0xa804024800090484, 0x760400a09d04012c, 0x7504003c5b05005c, 0xb0ff0029000c002e, 0xbaea9dbcffbba299, 0x8eeb52ff00370806, 0x01113d5a61b0ff3b, 0x7dff0049010c004e, 0x3b347d23ffbb8831, 0xe44ae9ff0057050d, 0x000f3ca4be20ff3a, 0x060e0072190e0080, 0xffbb81e69dff006d, 0x007b09063ce1851e, 0xb93aff3bbb31cdff, 0x1b0e00920011bc73, 0xffbb9a7c54ff008d, 0x009b060dbc650b29, 0x4416ffbab7c527ff, 0x060e00e81a0e3cc3, 0xa10400ba050e00c8, 0xff3ca27556ff00b5, 0x00c30011bc0615ac, 0xbf5effbdc8673bff, 0x9e0400da9f043d03, 0xff379f0da7ff00d5, 0x00e3000c3d249ef5, 0xe071ff3bf8e9f8ff, 0x060d010c1b0e3ca5, 0x1aff00f9000800fe, 0x3da13058ff3d0af8, 0x4d0001ff0107030b, 0x1c0ebdfbeaf6ffbd, 0xb0ff0119a404011e, 0x3c4928bfff3d706a, 0x78ce5aff01271d0e, 0x1c0ebb9213b7ffbd, 0xc0040178060d01bc, 0x090e014a08060158, 0xffbd5f483dff0145, 0x01530a0e3b34f5c4, 0xf549ff3bf47ce4ff, 0x130e016a12063d01, 0xffbdc20e7eff0165, 0x0173c904bd0c3869, 0x6fdcffbcb54009ff, 0xbe04019c180e3c9b, 0xc6ff0189aa04018e, 0x3cb4caf8ff3d9bab, 0x317271ff0197070d, 0x00113d8ba236ffbc, 0xa4ff01a9070d01ae, 0x3c1a1a32ff3d8067, 0x0e868aff01b7b904, 0x1e0ebb147d93ff3e, 0x390501e4130b0204, 0x27ff01d1040601d6, 0x3c813eb4ffbda9a4, 0xf773feff01df090b, 0x0011bd884ebeffbc, 0xcaff01f1000c01f6, 0xbdfca3ecffbdb4d1, 0x5881a5ff01ff0008, 0x200ebdb37d73ffbd, 0x7b05021a070d0228, 0xff3d53f39cff0215, 0x0223c0043ba62cc9, 0x3e66ffbd633654ff, 0x070d023a00073d1f, 0xffbb415cb7ff0235, 0x02434005bd401728, 0x8471ff3b87fc3eff, 0xac04036873053c8f, 0x70040298630502dc, 0x5005026a63040278, 0xffbbb10bb6ff0265, 0x0273090ebb4dfae1, 0xf7c9ffbbb7a6daff, 0x060d028a8a04bc5f, 0xffbbf9c665ff0285, 0x0293070dbc89ab4b, 0x6c66ffbc44600eff, 0x0e0e02bc0209bd39, 0x1fff02a9000d02ae, 0xba6fc1a8ff3daa0c, 0x913649ff02b7170e, 0x090ebb806847ffbc, 0xa4ff02c9000f02ce, 0xbc4cd9c7ff3b87b0, 0x27d1c4ff02d7070b, 0x000fbc826ab1ffbd, 0xb80403046f050324, 0x8dff02f1610502f6, 0x3d137fa9ffbc4eea, 0x649694ff02ff6305, 0x030b3e02eba4ff3d, 0x85ff0311300e0316, 0x3c5dc6c0ffbd324f, 0x40c7f8ff031f7105, 0x140e3d091298ffbd, 0x0011033a6b050348, 0xffbd778bb4ff0335, 0x03430e0bbde42a3f, 0x107dffbd4096c0ff, 0x010c035a070dbcb6, 0xffbc484b9cff0355, 0x0363010cbcd33813, 0x2211ffbd752e8dff, 0x0f0e03f8bc04bd1a, 0x050b0394000f03b4, 0xc3ff03818e040386, 0xbd96e4b1ff3b9c3f, 0x329877ff038f000e, 0x02093d271136ff3b, 0xe3ff03a1a70403a6, 0x3c82b7e8ffbb3dd5, 0x485b5dff03afac04, 0x170ebcda6469ffbc, 0x000f03ca020b03d8, 0xffbe024040ff03c5, 0x03d3000dbd08b3a2, 0x5e4dff3da64e4bff, 0x800503ea000dbcbe, 0xff3d4772d7ff03e5, 0x03f38e043e1638e1, 0xb35eff3cb5c879ff, 0x00110440070dbc00, 0x010c04127d050420, 0xffbc190a71ff040d, 0x041bc104bd4e28ec, 0x3c1bff3cf005cdff, 0x7d050432060dbca3, 0xffbd0e8b43ff042d, 0x043b0e0bbc99f002, 0x8dbeffbd91a0ddff, 0x75050464190ebdb8, 0x1aff0451010c0456, 0xbd54abe8ffbd8cdb, 0x38803aff045f030b, 0x0109bdcb0bc2ffbd, 0xc3ff0471c5040476, 0xbd938b35ffbd6832, 0x7d0af0ff047f7505, 0x000fbd29eda9ffbd, 0x110605a8000806c4, 0xaa0404d80107051c, 0x790504aa020b04b8, 0xffbcfc87ccff04a5, 0x04b3060e3bc81e9b, 0x9374ff3b197ddbff, 0x010904ca070b3c9d, 0xffbc148baeff04c5, 0x04d30a0ebdbbcaab, 0x36e7ffbc0ed5c8ff, 0x000c04fc010d3cbc, 0x2dff04e9290e04ee, 0xbd4e06b2ffbc03b2, 0xd30dffff04f70a0e, 0x02113c84fc60ffba, 0x77ff0509080e050e, 0x3ceb5e65ff3c963f, 0x436dcfff05170212, 0x00073dc19053ff3d, 0xbc040544c0040564, 0xb9ff053188040536, 0xbcf884ddffbc48df, 0x0ae768ff053f070e, 0x11053cedec82ffbd, 0x94ff0551020d0556, 0x3e1d64f9ff3cd08b, 0xadf59bff055fc904, 0x0107bcee4740ffbb, 0x000c057a15060588, 0xffbc01bc1aff0575, 0x058312053c865a8c, 0xec2dffbceada5eff, 0x8804059a0305bc11, 0xffbc1b1784ff0595, 0x05a3020dbd85094d, 0x06f6ff3b338958ff, 0x000e063813063c95, 0x910405d4020d05f4, 0xc1ff05c1410505c6, 0xbc47658affbd0b95, 0xcd09c0ff05cf1106, 0x00063bc860a4ffbb, 0x0cff05e1290405e6, 0x3d7cf017ffbcb487, 0x10aeaaff05ef0e06, 0x00063c3cd65cffbc, 0x170e060ac6040618, 0xff3d27b0b1ff0605, 0x0613070b3ce3bcc7, 0x83c7ffbd1e4078ff, 0x240e062a02063cce, 0xffbd2c2d9cff0625, 0x0633070e3c9613ae, 0x93f7ff3c577d38ff, 0x000c0680030d3ce5, 0x150e0652a1040660, 0xff3bd1a573ff064d, 0x065b000dbd9a5e88, 0xb3f8ffbd3ccea7ff, 0x050b0672010dbc5f, 0xffbc831450ff066d, 0x067b01073c1c662d, 0xcfa3ff3b30b13aff, 0x000e06a4000c3ce6, 0x5dff069115060696, 0xbc80ce8fff3b014f, 0x97ab67ff069f7304, 0x020e3c822a61ffbc, 0xc5ff06b1030b06b6, 0x3cd61823ffbbeba5, 0x5fab71ff06bf0005, 0x27033d317ed5ffbd, 0x100b0758000c07e4, 0x920406f40a0b0714, 0x6cff06e1020e06e6, 0x3b31b2afffbbe729, 0xc345b5ff06ef310e, 0x0c0bbc706ef0ff3b, 0x64ff07010c0e0706, 0x3c99dd3dff3b870c, 0x086f37ff070f5604, 0x8a04bc53d60aff3b, 0x8004072a82040738, 0xff3c678143ff0725, 0x0733260e3df2742f, 0x0fa9ffbd6e3c27ff, 0x1c05074a00063c30, 0xff3ddbe049ff0745, 0x075307063d6e5417, 0x735cff3c9d75d3ff, 0x5b0407a06a04bd80, 0x3b0407725a040780, 0xffbabae878ff076d, 0x077b01083c578071, 0xc0d0ffbd847768ff, 0x0d0e07920006bd94, 0xff3d016740ff078d, 0x079b03063b6dc8ec, 0x08c0ffbc7b95b8ff, 0x020707c40a0bbacf, 0xd1ff07b1010707b6, 0x3c1f8299ffbc2dd0, 0x55e0ebff07bf170e, 0x110b3c95ae2aff3d, 0x4bff07d1020807d6, 0x3ca27303ff3d656c, 0xa4c975ff07df0006, 0x140e3d0c93efff3d, 0xc504083001120874, 0xc3040802120e0810, 0xff3b6c2cb1ff07fd, 0x080b130ebd05c48a, 0xc91effbd871c17ff, 0x060d08220d0e3bc5, 0xffbd9302e4ff081d, 0x082bc604bca99b63, 0x0ddbffbd838b0dff, 0xa60408540a063d31, 0xe4ff084101110846, 0xbbb277d9ffbc538b, 0x1be5b7ff084f0c0e, 0xca04bce021aaffbc, 0xfaff0861010e0866, 0xbad40f85ffbbc275, 0xfe4877ff086fcc04, 0x060dbcbc2428ffbb, 0x0c06089c0e0b08bc, 0x9fff0889000c088e, 0x3c09057cffba5173, 0xde7b7aff08971106, 0x0f06bc64acf1ffbb, 0xebff08a9010c08ae, 0x3d057a78ff3c0e35, 0x185278ff08b70305, 0xbd04bc34c533ffbd, 0x1a0e08d2001208e0, 0xff3c4abde6ff08cd, 0x08db230ebbd9db97, 0x6fa1ff3d2f29eeff, 0x010708f25f05bacd, 0xff3b980328ff08ed, 0x08fb310e3d8af850, 0x8213ff3cda36f8ff, 0x010d0d53000fbd62, 0x87040a0d8d050b17, 0x0a0e09581d0e0981, 0x0008092a7f040938, 0xffbc823a62ff0925, 0x0933040bbd42cb46, 0x3765ff3e0da2f5ff, 0x000c094a76043dd7, 0xffbd847797ff0945, 0x09537804be0f746c, 0x9177ff3d868c08ff, 0xc2ff09615d04bd66, 0x0509730007be5d7b, 0xbea84bbfff096e88, 0x7c8805be9c0f7dff, 0x1affbe8474b0ff09, 0x0409c90207be8d25, 0x0e099b1d0e09a9b8, 0x3d31c26cff099619, 0xa48305bcb2c7aeff, 0x4fff3ca45cb8ff09, 0x0e09bb00093dac9b, 0x3c6ae341ff09b630, 0xc40109bd1ac557ff, 0x92ffbd8562b1ff09, 0x0e09ed9804be0c16, 0xff09da000209df08, 0x423244ffbde35197, 0x3b86ff09e8030bbe, 0x04bea9e2ffffbebf, 0xff09fa1d0e09ffc1, 0xd01cecffbd04ace2, 0x5480ff0a08c204bd, 0x043e8f7c42ff3d4b, 0x0e0a59230e0a9dc0, 0x040a2b070e0a391d, 0xbd58afc8ff0a2678, 0x349a043cf8c397ff, 0xc1ffbd93a1beff0a, 0x050a4b0009bcba5b, 0x3dc1544eff0a4695, 0x54030b3e1a402bff, 0xd0ffbde77ccdff0a, 0x070a7d9205bceaca, 0xff0a6a000c0a6f01, 0x56297fff3e0c353a, 0x1940ff0a78ac04bd, 0x05be85e32bffbc2f, 0xff0a8a00070a8f94, 0x816eddffbcc7d8be, 0xcd06ff0a980007be, 0x02be7ce8beffbe5a, 0x0b0ac5230e0ae500, 0xff0ab290050ab703, 0xc389b0ff3d244248, 0xe930ff0ac092053d, 0x0b3cec65a6ff3d93, 0xff0ad201070ad703, 0x165b60ffbbe62cab, 0x1ee0ff0ae000073c, 0x0e3d512a10ff3bed, 0x040afb00070b0930, 0xbda51445ff0af6c2, 0x042c0ebd0390c9ff, 0xabffbc958f30ff0b, 0xff0b12330e3e3978, 0x079aacff3e0123fe, 0xab010b0c378f053e, 0x47020e0b67bc040b, 0x3484040b3900020b, 0x5cffbcd7530fff0b, 0xff0b4282043db118, 0xc02959ff3d1cc9c4, 0x5402070b59070ebd, 0x4eff3d5e1400ff0b, 0xff0b62080ebc2e87, 0x35b46fffbd747609, 0x7d2d0e0b8b01073c, 0x3607ff0b7800070b, 0x04bd41d0b8ffbded, 0xbdef0e8cff0b86bf, 0x9dcb04bcb628c5ff, 0x0d86ff0b98230e0b, 0x0539298c6cff3d31, 0x3c85d468ff0ba684, 0xf3bd04bdbb7794ff, 0xc56b040bd302070b, 0x8f0fff0bc0040d0b, 0x0c3c9c2418ffbb61, 0x3be016f3ff0bce00, 0xe5a7043d06753fff, 0x5f9cff0be0010e0b, 0x0ebd2590deffbe14, 0xbc71b73dff0bee06, 0x1700093d16fb4eff, 0x0400070c092f0e0c, 0x74ff3bffee23ff0c, 0xff0c1201083d1f4a, 0x8bd556ffbb7a468d, 0x24bf040c29070bbd, 0x81ffbe30e799ff0c, 0xff0c32c104bd7734, 0x1e51aeff3c8a8e3c, 0x8300090cc7060ebd, 0x55030d0c63030b0c, 0x681aff0c50a4040c, 0x0ebe30c7d7ffbcb0, 0xbcd0508fff0c5e01, 0x7590043c638bddff, 0x46efff0c70010e0c, 0x043d669576ffbd2b, 0xbe703fefff0c7e94, 0xa7000cbd4d0e76ff, 0x9401090c995f040c, 0x00ffbe128945ff0c, 0xff0ca2030bbdcbca, 0x8a9781ffbce4eef8, 0xb491040cb9020dbd, 0x04ff3d0b7d18ff0c, 0xff0cc20002bc95eb, 0x1ce9c4ff3c0640c7, 0xefa4040d0fa7043d, 0xdc95040ce10a0e0c, 0x8cff3ccbbedeff0c, 0xff0cea070bbd1389, 0x4a2ab0ff3d9294ff, 0xfca6040d010002bd, 0xd6ff3d0f60e5ff0c, 0xff0d0a0009bec355, 0x52a254ff3b868164, 0x2501090d330e0ebd, 0xfaacff0d20020d0d, 0x043d974e44ff3d0c, 0x3c652a68ff0d2ec2, 0x450009bd8a60f7ff, 0x8006ff0d40010b0d, 0x0c3ccbd62dffbca7, 0x3e3e2904ff0d4e00, 0x930107bd577cedff, 0xeba8040e77ca040f, 0x87000e0da7020e0d, 0x748f050d79010c0d, 0x8fffbc4d6f17ff0d, 0xff0d820009bca8ee, 0x61d172ffbd2dd10f, 0x94060d0d99010ebc, 0x13ffbc2f9727ff0d, 0xff0da200093b03a6, 0x696639ffbc93ec97, 0xbd00120dcb0a0b3a, 0xbd1aff0db89d040d, 0x0dbcb5f470ffbc20, 0xbb9e3ecfff0dc606, 0xdd070e3c33bb2cff, 0x7624ff0dd8060e0d, 0x0e3cd07840ff3b4f, 0xbc8c27dcff0de608, 0x33a9043b7054e0ff, 0x05000c0e13070e0e, 0xef90ff0e00030b0e, 0x093d307748ff3be0, 0x3df7002dff0e0e00, 0x25150e3d192a3aff, 0x9995ff0e2000110e, 0x0b3d06cf28ffbc86, 0xbc806b96ff0e2e04, 0x578505bd0cc4dfff, 0x4400090e492a0e0e, 0x04ff3cbfef50ff0e, 0xff0e528305bb23f8, 0x2609aaffbc7467ca, 0x648c050e6900113c, 0x00ff3c652ac0ff0e, 0xff0e7200123a8d6e, 0x68597eff3bb82a3b, 0xc38f050f07230ebb, 0x95140e0ea3180e0e, 0xcf0bff0e90120e0e, 0x073d9a7a55ff3acd, 0xbda93c15ff0e9e00, 0xb50009bc923d6bff, 0x0604ff0eb01c0e0e, 0x053d13c12dff3dc9, 0xbd3cc68fff0ebe8d, 0xe70002bc92a744ff, 0xd400120ed9180e0e, 0x82ffbc856c65ff0e, 0xff0ee21c0ebd40f1, 0x7f4fceff3d25a668, 0xf400090ef99305bc, 0xc0ff3cb817dcff0e, 0xff0f02010cbc9acc, 0x9361f8ffbba159cc, 0x2f00020f4fcc043c, 0x1c010c0f212a0e0f, 0xbbffbd260d4fff0f, 0xff0f2acb04bda9ec, 0xd01fefff3c65b3d3, 0x3c00120f412c0ebc, 0x7cff3d25a58bff0f, 0xff0f4acb043c012e, 0xa277e0ff3c8685eb, 0x6500070f73010cbc, 0xbdb6ff0f60290e0f, 0x0ebce86166ff3b33, 0x3c87e144ff0f6e2d, 0x85280ebcdf893aff, 0x60a9ff0f8000020f, 0x0e3d9801b8ffbd95, 0x3d7a2437ff0f8e29, 0xb3c904bd304423ff, 0xe3000c1027020e10, 0xb58d040fc3b3040f, 0xa219ff0fb0070d0f, 0x043c0edc8cffbc1d, 0xbcdca69dff0fbe95, 0xd5070bbc7721b4ff, 0x77ebff0fd0000e0f, 0x11bc5096d2ffbccc, 0xbc196f93ff0fde00, 0x070a0b3b395e81ff, 0xf4010c0ff98d0410, 0xe8ffbc94b3d5ff0f, 0xff1002000ebd234d, 0x0a938cffbd666c2d, 0x14060d1019b704bd, 0x99ffbd2ea93aff10, 0xff10220b0bbcb070, 0x1568edffbc9b5411, 0x4f190e106f8305bb, 0x3cbd041041c70410, 0x89ffbb55ae73ff10, 0xff104a01083cbf3d, 0x598ce1ff3dcdfcae, 0x5cc30410611d0e3c, 0x89ffbc7ddf58ff10, 0xff106a230ebd1aa8, 0x7cbdf4ff3b18786c, 0x8500021093010cbc, 0x7103ff1080000810, 0x0dbc8f0a28ffbbd0, 0xbc205d2cff108e06, 0xa5060dbad43bddff, 0x87cbff10a0050b10, 0x04bd377a61ffbc27, 0x3c72a0e5ff10aec0, 0x439005bc65a093ff, 0xdf2f0e10ff860511, 0xcc100b10d1010c10, 0x91ff3c2662bcff10, 0xff10da280e3d231a, 0xb45f20ff3db76c79, 0xec000810f184053c, 0xd7ffbd64efe1ff10, 0xff10fa010cbca7f9, 0xa87097ff3ccea481, 0x15080e11231c0ebc, 0x554bff1110070e11, 0x08bd898a44ffbc01, 0x3cb1a1e8ff111e01, 0x351d0ebc2ea8aaff, 0xb081ff1130000c11, 0x0cbda33da5ffbd2c, 0x3bad73cbff113e01, 0x8b1f0e3d3bb6ceff, 0x5d180e116b190e11, 0xe47bff11580b0e11, 0x0cbc255291ffbcda, 0x3caaaed9ff116601, 0x7d000c3dc12bc3ff, 0x343eff1178000811, 0x08bd0c8e3fffbc44, 0xbd3b7aa0ff118600, 0xaf050bbd90b6f0ff, 0x9c280e11a1011211, 0xb7ffbd233cb5ff11, 0xff11aa220ebc1710, 0xeb77f7ffbc43e68a, 0xbc000211c191053b, 0x56ff3d596768ff11, 0xff11ca00023c399b, 0x5b78f5ffba97a02a, 0x000008000000133c, 0x000001000003e800, 0x000000000011b400, 0x72000208ee820500, 0x238e04023f000904, 0x5c690400a0810501, 0x2e010b003c780500, 0xf2b2ff0029000d00, 0x0bbbc8dfc5ffbc88, 0xbb5a723bff003703, 0x4e0107bb06a74eff, 0x0304ff0049011100, 0x0d3c6a0137ffbbaa, 0xbd97c1d9ff005700, 0x800111bc274d45ff, 0x6d110e0072001100, 0xb9ffbb3ca4e9ff00, 0xff007b080bbc1f63, 0x3623c5ffbb726202, 0x8d060e0092050d3b, 0xa6ffbca9bbfbff00, 0xff009b00063b90aa, 0xfbcc1dff3c92cb49, 0xc81d0e00df000d3b, 0xb5030b00ba130e00, 0xfaffbd715a6aff00, 0xff00c30008bcc626, 0x26374effbdc9d988, 0xd5010700da070bbe, 0xecffbe9133f3ff00, 0xbe97d82effbe8cbd, 0x00f5000f0103000e, 0x467603ff00f0030b, 0x0008bc259777ffbd, 0xffbc05773bff00fe, 0x0115000fbcba53f1, 0x665c7eff0110030d, 0x8d043d35289eff3c, 0xff3b9c1396ff011e, 0x01b3300ebcc07d29, 0x014f020b016f0007, 0x013c06050141000c, 0x313bff3d08bc49ff, 0x05ff014a220ebc29, 0xbc6b8003ffbd11b3, 0x015c00060161120e, 0x2504ff3cd7c8a2ff, 0x9eff016a000fbb4e, 0xbb82b913ff3c64c1, 0x018539010193af04, 0x90a6c2ff01809604, 0x0012bb98cddfff3c, 0xffbbeb8c10ff018e, 0x01a5000f3c2271fc, 0x0fc894ff01a0c004, 0x7e05bb8cd578ff3d, 0xff3c498d2eff01ae, 0x01fb310ebc2da767, 0x01cd000601db0207, 0x0bf7abff01c80007, 0x4c053befcfe6ffbc, 0xffbc46f9a4ff01d6, 0x01edbe04bdbf3dfe, 0x9de506ff01e89404, 0xc1043ce21a8fffbb, 0xff3de72892ff01f6, 0x021f00123d3fda54, 0x020cc3040211320e, 0x3364ffbd1167d5ff, 0x85ff021ab204bdf3, 0x3c87a90dffbd03fd, 0x022c330302310111, 0x7bfcffbc98b9c3ff, 0x0eff023a0706bc31, 0xbc5daaecffbaf8c1, 0x02d3ac04035f7305, 0x026f7004028f6305, 0x025c500502616304, 0x61d7ffbb9f572aff, 0x4dff026a080ebb39, 0xbc46e78affbba619, 0x027c060d02818a04, 0xcdceffbbe0cc32ff, 0xc0ff028a070dbc77, 0xbd26e18bffbc30bc, 0x02a5070d02b30209, 0x6ab0a1ff02a0020b, 0x9904b9e2c9e2ffbc, 0xffbc0ffd7aff02ae, 0x02c5080ebd45cd29, 0x219d48ff02c0000d, 0x030bbc226976ff3d, 0xffbd191f3cff02ce, 0x031b0112bc6d83bc, 0x02ed010902fb070d, 0xb7a7edff02e8230e, 0x010cbc954f4eff3a, 0xffbc8a09eaff02f6, 0x030d140bbd150b09, 0x0c8bf8ff03080109, 0xb604bd58e7b8ffbd, 0xffbd805a52ff0316, 0x033f6f05bd99d1fa, 0x032c070b0331b804, 0x6934ff3bcbb0bbff, 0x01ff033a350e3cfa, 0xbd2dae90ff3da2f0, 0x034c70050351b004, 0x68c2ffbd26367eff, 0xdaff035ab104bd66, 0x3c4c698effbd19a8, 0x03ab010903e6190e, 0x037d050d038b010b, 0x50e025ff0378020d, 0x7304be4fb89cffbd, 0xffbba83040ff0386, 0x039d000dbc9a0352, 0xd61591ff03986f04, 0xb1043d0680b7ff3d, 0xff3b3f82b2ff03a6, 0x03cf0211bb9011ef, 0x03bc011103c1b104, 0xb7b5ffbbe31788ff, 0xaaff03ca070d3b6d, 0xbd8362baffbc9ece, 0x5d1de0ff03d86c04, 0x0000ff03e102093e, 0x043c2056c0ffb7a2, 0x04040e050b042ebc, 0xff03fb220e04009e, 0x3ec879ffbc8242bf, 0x5081ff04092b0e3c, 0x0f3b3a0a6bffbd14, 0xff041b070b042000, 0x2e0244ff3c6fe154, 0x894aff0429140b3d, 0x0c3b5a59b3ffbc3b, 0x0d04440011045201, 0x3b2f4b90ff043f07, 0x4d060dbd35c4e8ff, 0x73ffbca364d1ff04, 0x050464060dbda6a8, 0xbd287601ff045f7f, 0x6d0012bc1d84f0ff, 0x27ffbd4d299aff04, 0x0806b2000fbd9103, 0x09050a0f06059600, 0x0904a6000704c602, 0xff0493be04049800, 0x1644d5ff3bbbbfb6, 0xd8cdff04a1a704bd, 0x04bc81e392ff3ca8, 0xff04b3021204b893, 0x76f41dff3c7d7963, 0xf085ff04c1340e3d, 0x0bbc38a57cff3cdb, 0x0e04dc9b0404ea03, 0xbb788687ff04d713, 0xe5040dbd39be0eff, 0x0bffbd62ebbaff04, 0x0d04fcba04bdc6b0, 0x3d6c1255ff04f700, 0x0561053ce37e15ff, 0x18ffbec533b9ff05, 0x040552000cbd8d4c, 0x0e052414060532aa, 0x3c2565cdff051f17, 0x2d1906bd7b89d8ff, 0x2cffbbe3e3a4ff05, 0x070544b304bcf605, 0xbd7e8091ff053f00, 0x4d050dbd054d1dff, 0x51ffbc858b58ff05, 0x04057601073bb2fe, 0xff056315060568b5, 0xe4815dff39a280ed, 0x8945ff0571070ebc, 0x053d05e11cffbc69, 0xff05838804058802, 0x0289f3ffbcb1669f, 0x4a34ff05910905be, 0x063cec4111ff3bcc, 0x0d05e2020e062613, 0x0805b4910405c202, 0xbc3cbfedff05af02, 0xbdba04bd01dcfaff, 0xccff3b8780b8ff05, 0x0b05d40006bd3286, 0x3ce6c490ff05cf09, 0xdd0b063d7c7ea5ff, 0x58ffbc2163efff05, 0x0e0606010d3c9f8f, 0xff05f3070605f806, 0x1bb001ffbd914f5c, 0x7826ff0601000cbc, 0x0b3cbd2979ffbb6a, 0xff0613010b061804, 0xbdfb63ffbb830163, 0x4f30ff06212b053c, 0x0d3cc97570ff3d01, 0x04064e000c066e03, 0xff063b190e0640ae, 0xa7128bff3b5da99f, 0xbbceff0649010dbd, 0x0dbc4d1eedffbcec, 0xff065b0107066001, 0x256ff9ffbc5fce5b, 0x6757ff0669000e3c, 0x0c3ca348b8ffbc32, 0x0b0684000e069200, 0xbc9c3004ff067f07, 0x8d1305ba790bdeff, 0x14ff3c85ad6eff06, 0x0406a401053a7fcc, 0xbd88a94dff069f97, 0xad01073c82e493ff, 0xfcff3c72b029ff06, 0x0407d2000c3d31f9, 0x050702a0040746c7, 0x0406d41b0306e25b, 0x3c02af23ff06cf74, 0xdd9f043d0e2787ff, 0xdeffba236b71ff06, 0x0406f49c04bcea24, 0xbba24899ff06ef84, 0xfd9e043a6b6569ff, 0x11ffbc7d567eff06, 0x040726a5043a8f35, 0xff0713a2040718a3, 0xf6517cffbbc1ee1c, 0xa02aff07210008bc, 0x043cb47bb9ffbadd, 0xff07337f050738a7, 0x1793d6ffbcb74fc4, 0xec48ff074100063c, 0x05bbd89eccff3b5e, 0x12076e030b078e61, 0xff075b0107076000, 0x50db8dff3cd74a8c, 0x896fff076934053c, 0x04bb96b1c9ffb8b5, 0xff077b310e0780c8, 0x6a61b1ffbd6db504, 0x6f26ff078901123b, 0x04bcc17dc0ff3d8e, 0x0507a4020807b2c8, 0x3d11edb5ff079f6a, 0xad6d05bcdae05eff, 0xb4ffbc8e3401ff07, 0x0e07c4310e3cbb0c, 0xbc11f5ecff07bf22, 0xcd320e3cc10fb0ff, 0x69ffbd9888eaff07, 0x0e0862130e3ce2e7, 0x0e07fe0112081e0f, 0xff07eb9c0407f004, 0x7ce668ff3a928fbf, 0x9622ff07f99c04bc, 0x063b4bad40ff3c9b, 0xff080b0b0b081007, 0xba2047ffbc3d7668, 0xe5e8ff0819070ebc, 0x0e3b422c16ffbb45, 0x040834bf04084212, 0x3c99d259ff082fba, 0x3d0107be248588ff, 0x41ff3e0ec0a8ff08, 0x06085400093d6858, 0xbdae27a0ff084f03, 0x5d010cbc78d62cff, 0x4dffbbf1c1a4ff08, 0x0b08aa27033c6683, 0x0b087c0208088a0b, 0x3c378b0fff087703, 0x85010c3d33da96ff, 0xe9ff3c85c632ff08, 0x03089c0006bbd84a, 0x3de7c855ff08971b, 0xa502063d818bc5ff, 0x95ffbd2fd1ffff08, 0x0708ce02073d7693, 0xff08bbc70408c000, 0x8f694bff3b2eff16, 0x9cf4ff08c9060dbc, 0x063cd563a6ff3c12, 0xff08db060d08e00a, 0x4163d5ff3cabd211, 0x28a1ff08e901053d, 0x0f3b8057a7ffbd1d, 0x050b20010d0d3800, 0x0e098187040a048e, 0x0509267f0409460a, 0xff09130a0b091887, 0x97179affbc723ac5, 0x66eeff092100083c, 0x09bd81d737ffbcd5, 0xff0933040b093800, 0xc1afc3ff3e045542, 0xc440ff094101093d, 0x0e3d838734ff3d09, 0x08095c7604096a1d, 0xbdb5e5d8ff095700, 0x657804be2f0cefff, 0xe6ff3d722f40ff09, 0x07097c0002bd4f82, 0xbe8f3518ff097700, 0x55c8ffbe73a24bff, 0xb80409c90107be47, 0x8904099bb50409a9, 0xff3da79c58ff0996, 0x09a4b7043c424e12, 0x1483ffbd462090ff, 0x000709bb00093e18, 0xffbc76f2d9ff09b6, 0x09c401093d010500, 0x2e2fffbd796adfff, 0x020709ed000cbdf7, 0x42ff09da000209df, 0x3cd8ba50ff3da896, 0x8ba1f2ff09e8c104, 0xc8043da1a964ff3b, 0x6cff09fa880409ff, 0xbd06b280ffbe1829, 0x94c0043e812308ff, 0x301d0e0a50250e0a, 0x1d040e0a22ae040a, 0x7effbc534337ff0a, 0xff0a2b000cbd796c, 0x956150ffbde3f489, 0x3d030b0a42000cb9, 0xc0ff3de1b409ff0a, 0xff0a4b00093d8dde, 0xb41281ff3cacc263, 0x6601070a749305bd, 0x5fcdff0a61000c0a, 0x0bbd9c4779ff3dfc, 0xbe8c4fb6ff0a6f03, 0x860007be503af9ff, 0xb805ff0a8195050a, 0x05be551117ffbe09, 0xbe6a8feaff0a8f96, 0xdc0002be4718f6ff, 0xae030b0abc230e0a, 0xb58aff0aa9c1040a, 0x073dbe8028ff3d94, 0x3b9eabebff0ab700, 0xce030b3d83aedcff, 0x5240ff0ac996050a, 0x05bbcf282bff3c07, 0x3d3c3f70ff0ad796, 0x0090053bed9d40ff, 0xed00070af2c2040b, 0x7cffbca719baff0a, 0xff0afb8f053d790b, 0x8bb190ff3da4fa7d, 0x0d92050b12c2043e, 0x3effbd5a011fff0b, 0xff0b1b240ebe0955, 0xb3fb74ffbcb3924e, 0xb4030e0c40cd043e, 0x5093050b7001070b, 0x3d030d0b4290050b, 0x9dffbb24191bff0b, 0xff0b4b00023cc3dd, 0x1addd7ffbd3c9895, 0x5d020e0b62a7043c, 0x79ffbcea4c70ff0b, 0xff0b6b0112bdda8c, 0xcf4629ffbd6dca98, 0x86a7040b94060d3c, 0x58d4ff0b818f040b, 0x04bdb29d75ffbcbc, 0xbb8cf0d9ff0b8fbc, 0xa6010e3d685857ff, 0x48f7ff0ba194050b, 0x053cd9faf6ffbd32, 0x3dbd2edbff0baf90, 0xfcb504bc63f398ff, 0xce010b0bdc90050b, 0x75abff0bc9070e0b, 0x0e3be40c43ff3d34, 0x3ce20d35ff0bd722, 0xeea7043d36be29ff, 0x9939ff0be900020b, 0x043ca09278ffbd9d, 0x3ce96794ff0bf7b3, 0x20010b3d920403ff, 0x0d00070c12b7040c, 0x97ffbe583ac8ff0c, 0xff0c1b190ebd794b, 0x00c517ff3d11c300, 0x2d280e0c320009bd, 0x36ff3d189a3dff0c, 0xff0c3b140e3bd0dd, 0x1ef60cff3bdf8a6d, 0x8c00070cd09505bd, 0x5e030b0c6c01090c, 0x79bbff0c598f050c, 0x08be339f9cffbe1e, 0xbdf2c44aff0c6700, 0x7e0209be0a5569ff, 0x2896ff0c79020d0c, 0x0bbe43137fffbe5e, 0xbe61eac3ff0c8703, 0xb0030bbe811774ff, 0x9d280e0ca22f0e0c, 0x34ff3e13a9d2ff0c, 0xff0cab020d3d81c9, 0x7da014ffbd798d34, 0xbd02070cc28a05be, 0xf0ff3d58cff3ff0c, 0xff0ccb050b3da606, 0xe8470cff3d1c21f0, 0xf8280e0d0f96053d, 0xe500070cea050b0c, 0x08ff3e2a6c74ff0c, 0xff0cf300023df98f, 0x043092ff3df48390, 0x0500070d0a050b3e, 0xd8ff3d9b3240ff0d, 0x3e22da70ff3d38ba, 0x0d25140e0d33280e, 0x598ec8ff0d200209, 0x01093e3fff0cff3e, 0xff3e7a0504ff0d2e, 0x0dd930ff3e6bd308, 0x5cca040f7801073e, 0x8c0a0b0dd0a8040e, 0x5e7c040d6c000e0d, 0x6c61ff0d59070d0d, 0x093b47d032ffbc3e, 0xbd1252feff0d6700, 0x7e0012bc4de4a0ff, 0x5407ff0d7900020d, 0x0dbc0365edffbc83, 0xbbb40815ff0d8706, 0xb0020e3c138160ff, 0x9d010c0da2000e0d, 0x66ffbc59e70fff0d, 0xff0dab060dbd0ba7, 0xaf57a0ffbc33f3b8, 0xbd86050dc2000c3a, 0x81ffbb91938bff0d, 0xff0dcb070e3b1b48, 0x142a2fff3c908dfe, 0xf8000c0e18b104bb, 0xe5a9040dea190e0d, 0xe7ff3c99b800ff0d, 0xff0df31f0e3b24e3, 0x46b002ffbcc9662f, 0x05030b0e0a8f05bb, 0xd1ff3c500d91ff0e, 0xff0e13a9043cd1d6, 0x5df8a8ff3d47a287, 0x2e01090e3c060ebc, 0xf7bdff0e29010c0e, 0x0cbcc51b19ffbc23, 0xbbf33c01ff0e3700, 0x4e86053bde9d48ff, 0x5ab9ff0e49090b0e, 0x0d3c743cdaffbc7e, 0x3a701c98ff0e5707, 0xec230ebcb40196ff, 0x88180e0ea88f050e, 0x7500090e7a140e0e, 0x0dff3cdc5e0cff0e, 0xff0e83010cbd0b81, 0x980af8ffbc4cde39, 0x95000c0e9a0009bd, 0x5bff3c714f59ff0e, 0xff0ea3190e3d6f29, 0x20bd6affbc5a9a62, 0xbe220e0ecc0002bd, 0x3db4ff0eb900120e, 0x05bd15415affbc40, 0xbd76cd60ff0ec790, 0xde93053c6d6c6bff, 0x9eebff0ed900110e, 0x0cbb961236ff3cc2, 0xbc018261ff0ee700, 0x34260e3bb1006aff, 0x0600110f14cb040f, 0x5e15ff0f018d050f, 0x12bdbff1fdffbe10, 0xbd4d0e15ff0f0f00, 0x2600023c824badff, 0x3e32ff0f21010c0f, 0x09bd94dd1dffbb91, 0x3da5e390ff0f2f00, 0x580007bd1f77c9ff, 0x45280e0f4acc040f, 0xd9ffbd20e973ff0f, 0xff0f53000cbb8688, 0x1123aeffbc77bd2f, 0x652d0e0f6a310ebd, 0x6aff3c23c225ff0f, 0xff0f730108bc3a52, 0xec2a2bffbd1ac899, 0x0c000e1098c904bb, 0xa86f040fc8000c10, 0x9501120f9a030b0f, 0x3effbb62c78eff0f, 0xff0fa36b043b9d65, 0xc4c48dffbc5cc524, 0xb57e040fba0a0bbb, 0x73ffbc15c8a0ff0f, 0xff0fc3b304bccf57, 0x8b1950ffbc69e1dd, 0xde7c040fec0a0bba, 0x3fc8ff0fd976040f, 0x04bce4a0b8ffbc46, 0xbd232ae4ff0fe791, 0xfeb604bd51b327ff, 0x5c54ff0ff9010c0f, 0x11bd4d260fffbcc5, 0xbc8f1dd3ff100700, 0x54c704ba809d98ff, 0x2601111034000c10, 0x9e0dff10212b0e10, 0x0ebbf53edfffbbd1, 0x3c31e2f4ff102f07, 0x46c004ba95957dff, 0x003cff1041bd0410, 0x0d3cb6f665ffbc56, 0xbcbef956ff104f06, 0x780008bc328ebdff, 0x65010c106a860510, 0x2cff3b8605abff10, 0xff1073190e3da403, 0x83efe6ff3a814eb9, 0x858505108a0002bc, 0x03ffbd4d7506ff10, 0xff1093090bbcc68f, 0x638cc5ff3ba8ea5d, 0xe48e051128010cbc, 0xb60d0e10c4ca0410, 0x56c9ff10b1070e10, 0x0ebd471f6fffbc55, 0x381f68a7ff10bf23, 0xd6220ebcf11fbdff, 0xaca5ff10d11c0e10, 0x0ebcffda2cff3c47, 0x3ccfe406ff10df2d, 0x089005bc8eda6fff, 0xf5060d10faca0411, 0xb6ffbd9e861eff10, 0xff11031c0ebc2994, 0x222884ff3c123fbb, 0x15000c111a1f0ebc, 0x9bffbc410252ff11, 0xff1123050bbcea4e, 0x399223ffbc5e53ed, 0x50030b117086053c, 0x3d060d1142020711, 0x0effbd1db966ff11, 0xff114bcc04bd819a, 0x795e57ffbab8d410, 0x5d280e116284053d, 0xd2ff3dfde5ccff11, 0xff116b85053d272d, 0xa091abffbacebba0, 0x86190e11941d0e3d, 0x1bc0ff1181cd0411, 0x123e1146c0ff3c69, 0xbdb59559ff118f00, 0xa6030bbd49861fff, 0xe448ff11a1230e11, 0x12bd4e555fff3ab5, 0x3dbff1efff11af00, 0x0000133d3082b6ff, 0x0003e80000000800, 0x0011e10000000100, 0x0082050000000000, 0x4800090484000209, 0xa00111012cc50402, 0x3cb104005cc10400, 0x297f04002e850400, 0xd2ffbb376949ff00, 0xff00379e04bbbe0b, 0xc18d3affbadf5418, 0x49bd04004e00113a, 0xd4ff3c079bfdff00, 0xff005700083d221f, 0x1e9488ff39816827, 0x72220e008000063c, 0x70f2ff006d190e00, 0x07bd571f32ff3c3e, 0xbc95cc27ff007b00, 0x920b063cb01411ff, 0x0a8eff008d350e00, 0x0ebc81b59dffbde1, 0xbcfb7abaff009b0f, 0xe80008bc0d98a5ff, 0xba010700c8350500, 0x0bd3ff00b5380100, 0x04bc367179ffbb93, 0x3b88e095ff00c3c2, 0xda7305bc1803e1ff, 0xb4deff00d5070600, 0x063c646e9bff3b62, 0x3c809baeff00e300, 0x0c1e01bd866bcfff, 0xf9310e00fe150101, 0x7affbaeabd75ff00, 0xff01070703bc0bf8, 0x813befffbc4a3f92, 0x19c004011e55053b, 0x3bff3c0b0836ff01, 0xff01270006bd28d1, 0x4daa3aff3cbb3754, 0x785f0501bcca04bd, 0x4a020d0158000f01, 0x9e89ff0145080b01, 0x0b3b6181a8ffbca7, 0xbde87004ff015301, 0x6a0107bd205c33ff, 0x1392ff0165010c01, 0x0bbc8e69deff3c3d, 0xbac0f570ff017308, 0x9c00113d44cf38ff, 0x890107018e070d01, 0x08ff3c853d88ff01, 0xff01970107bb2dd9, 0x4a92b0ffbd8745e6, 0xa9260e01ae060d3b, 0xc9ffbd0cd9bdff01, 0xff01b7c904bc0a8b, 0xdb7c88ffbc9441a0, 0xe4300e02040207bd, 0xd1010c01d6000701, 0x33ff3c8044e9ff01, 0xff01dfcd04bd19d0, 0x9042afff3ce890da, 0xf1010801f602063d, 0xceffbd28b343ff01, 0xff01ffcb04bbe194, 0x6448afff3d3ce8b5, 0x1a011102284205bb, 0xa581ff02150b0b02, 0x06bc1b9f65ffbd62, 0xbc1ff625ff022303, 0x3a81053d515977ff, 0xb160ff0235310e02, 0x043c0f09fdff3d77, 0x3bde427eff0243cc, 0x687b05bddca28fff, 0x982c0e02dcb10403, 0x6a5e050278000d02, 0x47d6ff0265370102, 0x0b3c8521d7ffbb88, 0x3bffb434ff027303, 0x8aa6043d845c21ff, 0x9f06ff02859d0402, 0x0bbc87a11affbb99, 0xbd06fe2eff029303, 0xbc690539c88ca1ff, 0xa9820402ae010b02, 0x73ffbc34b842ff02, 0xff02b74001bdb3b3, 0x563334ffbb69c383, 0xc9020d02ce6b05bc, 0xf5ff3d8928f4ff02, 0xff02d76f053c0b62, 0xb05cfaff3c826925, 0x04070b0324000fbb, 0xf1730502f6230e03, 0x4fffbd5fa4c8ff02, 0xff02ffc004be006b, 0x909a57ff3c382631, 0x11bb040316c104bd, 0x64ff3d1c0fe0ff03, 0xff031f2c0e3dbb48, 0xb194dbffbcffb410, 0x3a010c0348070dba, 0x7698ff0335001103, 0x04bc91a55dff3a7a, 0xbcbd8bc8ff0343bb, 0x5a0a0bbd2336f9ff, 0xf1ffff0355010903, 0x09bd1c61eaffbcb7, 0xbd2b6bb9ff036301, 0xf8120ebd6f8f1fff, 0x947c0503b4000f03, 0x81030b0386930403, 0xdaffbe11d8c9ff03, 0xff038f030b3cdcc0, 0x11f960ffbe0bf0e8, 0xa1010b03a659043d, 0x2cffbd074ed8ff03, 0xff03af7f053b9953, 0x94d909ff3d23ab08, 0xca000c03d8c0043c, 0x8439ff03c5010903, 0x12bc3fcc06ffbba7, 0xbbe22e66ff03d300, 0xea070d3baffe08ff, 0x74f4ff03e5001103, 0x05bd4f71c2ffbcd8, 0xbdb532bbff03f381, 0x40c104bda2a010ff, 0x129e040420050b04, 0x24b7ff040d170e04, 0x0f3c807831ffbd30, 0xbd5e3c8cff041b00, 0x32000fbc899832ff, 0x103eff042db90404, 0x0e3b08c6efff3cee, 0xbccee370ff043b18, 0x64010cbad846bcff, 0x517d050456000f04, 0xc5ffbdfc6f15ff04, 0xff045f070dbd5eae, 0x85dd22ffbc5da533, 0x710b0b0476070dbd, 0x6cffbd4e6cd2ff04, 0xff047f0b0bbcee1c, 0x5c39fdffbdb7bfdf, 0xa8000806c4000fbd, 0xd80107051c110605, 0xaa021204b8aa0404, 0x0cedff04a5020904, 0x043a025dbdff3c3d, 0x3c357ca1ff04b33e, 0xca00073e21f668ff, 0xb1c2ff04c5070b04, 0x043becb3e3ffbd20, 0x3cbb92c9ff04d3bf, 0xfc030dbb94088fff, 0xe9000c04ee010d04, 0x24ffbc51b2e1ff04, 0xff04f7060e3bf1ce, 0xab6b7eff3b0bf781, 0x091d0e050e0b053c, 0x7fff3b9a0243ff05, 0xff0517ae04bd792e, 0x0ef2e2ff3cb80969, 0x440007056416063d, 0x3112060536170e05, 0x4eff3b6b12ecff05, 0xff053fb504bc43b4, 0xd98a05ffbd8b3b1e, 0x5142050556150ebb, 0x0eff3c780d27ff05, 0xff055fbc04bc0f6e, 0xa4f542ffbd0fed5f, 0x7a020705880f0e3c, 0xb5a0ff05750b0e05, 0x053b82dac5ffbca8, 0x3c95dbbaff05831e, 0x9a0007bc8c35ddff, 0x8404ff0595030d05, 0x043d894690ff3cbe, 0xbd8508ddff05a3a7, 0x3813063b8014b8ff, 0xd4020d05f4020e06, 0xc1010805c6910405, 0x96ffbb9f4b63ff05, 0xff05cf000dbcb09e, 0x75a6bbffbd2bb014, 0xe1090b05e600063b, 0xbaff3ccfb0e7ff05, 0xff05ef0b063d633e, 0x8f9a93ffbc114061, 0x0a060e0618010d3c, 0xc76fff0605070606, 0x0cbc0c1e71ffbd82, 0xbb5305deff061300, 0x2ac7043caa3ef3ff, 0x3ad3ff0625060e06, 0x083cc753e8ff3c88, 0x3c4fa233ff063302, 0x80030dbd2a23bdff, 0x52ae040660000c06, 0xf98fff064d170e06, 0x0dbd89a0d7ff3b48, 0xbcd50f72ff065b01, 0x72010dbc389bd7ff, 0xdbb7ff066d120506, 0x07bcaa7270ff3b8a, 0x3a957a07ff067b01, 0xa4000c3cc538b5ff, 0x91ae040696000e06, 0xfcffba9c167dff06, 0xff069f7304bc943d, 0x5853edffbc95decc, 0xb1030b06b6020e3c, 0xa4ffbc140fc8ff06, 0xff06bf01053cac3a, 0x1ced8dffbb2220f6, 0x58cb0407e4010c3d, 0xf403060714530507, 0xe1290506e6000c06, 0x32ff3c04159fff06, 0xff06ef00063aa6aa, 0x355067ff3c81d754, 0x01070607061a0ebc, 0xc4ffbc5f85b1ff07, 0xff070f0e06bb68d7, 0x517b43ff3ba3a020, 0x2abd040738320ebc, 0x3c6bff0725ba0407, 0x0ebc4b052cffbab4, 0xbb0bb81fff073315, 0x4ac8043c7b62c2ff, 0x8e48ff0745330e07, 0x07bbfb0e72ffbd0a, 0x3b6e24a9ff075300, 0xa000123d80bc6dff, 0x7268050780310e07, 0xa0d6ff076d010807, 0x083db0e0d7ff3e18, 0x3d798f78ff077b01, 0x927a053ce0c3caff, 0x7ed9ff078d320e07, 0x07bc4db675ffbd93, 0x3cf2218cff079b02, 0xc4060d3d7593a0ff, 0xb1000607b6cd0407, 0x67ff3b20094cff07, 0xff07bf320ebc9892, 0xbeb39fff3db64f05, 0xd1000c07d601083c, 0xc5ffbe4c7ec3ff07, 0xff07dfcc04bea5e2, 0xa69ed1ff3dc172b8, 0x300b0e08740112bd, 0x02020e08109c0408, 0xdb20ff07fd820408, 0x09bc60dfc0ffbacf, 0x3cc303c0ff080b00, 0x220012b9789739ff, 0xc538ff081d000808, 0x0b3d0fc620ffbc94, 0xbcb4a59cff082b10, 0x547a05bd63785dff, 0x4100090846140b08, 0xdfff3cdb0981ff08, 0xff084f7905bb317b, 0x63d718ff3d2def5b, 0x61090b0866c2043e, 0x33ffbbe77b8cff08, 0xff086fc9043d02e2, 0x3c4f5bffbd22dc9c, 0x9c010808bc01053c, 0x899704088eab0408, 0xddffbd04d97eff08, 0xff08970b0e3c5e5d, 0xad7e3bffbcc27ed5, 0xa9170e08aeab04bd, 0xbdff3c9aa6b8ff08, 0xff08b700053da286, 0x40e11cffbd1ca678, 0xd2b10408e02f03bb, 0x12cfff08cd1e0e08, 0x0e3cc4ee87ffbce8, 0x3e0fcb15ff08db33, 0xf2cb043c49b1e2ff, 0x7c99ff08ed011108, 0x0b3b65b76affbb85, 0x3b637536ff08fb0b, 0x65000f3cc63112ff, 0x1f8d050b29010d0d, 0x58130e099c88040a, 0x2a0a0e0938800409, 0x7663ff0925070e09, 0x0ebcce96e0ff3a9f, 0xbde15f00ff09330d, 0x4a0d0ebd8793d2ff, 0x5078ff0945070b09, 0x0b3d3d1098ff3dcc, 0xbc2c88d5ff095305, 0x7c83043d1e8ff0ff, 0x697604096e000209, 0x84ffbe07ff92ff09, 0xff09777004bd7fc8, 0x59f750ffbd5fcdfb, 0x890007098e86053d, 0xf2ffbca221abff09, 0xff09970002be7b00, 0x9e8b46ffbe7adb6a, 0xc4b80409e40008be, 0xb11a0e09b61d0e09, 0x60ff3cd10bdbff09, 0xff09bf0207bc4b94, 0x05d1bdff3d714d41, 0xd1300e09d60009be, 0x20ff3cf8edb2ff09, 0xff09df0109bd159b, 0xe370d5ffbd572701, 0xfa030b09ff8904bd, 0xc174ff09f5840509, 0xff3e1120e8ff3e19, 0x0a1186053db8e120, 0xab12a6ff0a0c0007, 0xc204bc877ffbff3b, 0xffbd2bfd20ff0a1a, 0x0aafc2043e074770, 0x0a4b1d0e0a6b250e, 0x0a3878040a3d070e, 0x3a89ffbd3a3d6fff, 0x7cff0a469a043cf2, 0xbc9ccf08ffbd71b9, 0x0a58000c0a5d0009, 0x157bff3d94a4cdff, 0xa2ff0a66070b3c77, 0xbe253354ffbd84d9, 0x0a8101070a8f9205, 0x27ed10ff0a7c8e05, 0x030bbd502525ffbb, 0xffbe7bd6c9ff0a8a, 0x0aa12c0ebe21d17a, 0x2d9bb2ff0a9c0007, 0xbb04be54c678ffbe, 0xffbd17fb30ff0aaa, 0x0af71d0ebd2557c2, 0x0ac900070ad70008, 0x13da30ff0ac4030b, 0x0107bdc612fdffbd, 0xffbd37a320ff0ad2, 0x0ae9030bbce3dbdc, 0x12be60ff0ae49605, 0x9105bc0903e0ffbc, 0xffbd12f9f0ff0af2, 0x0b1bc804bcb0945b, 0x0b08c3040b0d230e, 0xd9d5ff3d7c0188ff, 0x5eff0b16c7043e16, 0x3d94f957ff3a8a20, 0x7b72d0ff0b249005, 0x8f053ea1fbe8ff3e, 0xbd040bbd010b0c49, 0x230e0b592a0e0b79, 0x9aff0b46220e0b4b, 0x3d881182ff3bf2fe, 0x45faeeff0b54280e, 0x8d05bdc600a8ff3c, 0xb6ff0b66b0040b6b, 0x3c82df14ff3da04b, 0xd260d3ff0b742b0e, 0x00073e3da7f8ff3d, 0x020d0b8f310e0b9d, 0xffbd2b8bacff0b8a, 0x0b98320ebdd5052a, 0xb680ff3e1e9c6aff, 0x02080baf0002bcd5, 0xff3cf14a00ff0baa, 0x0bb8230ebcccbec4, 0x7206ff3cdf2651ff, 0x02070c05bd04bd1f, 0x5a040bd76b040be5, 0xffbbd6b89eff0bd2, 0x0be0000c3c73c9f7, 0xdeeaff3b5c19e5ff, 0x6f040bf7010e3cdc, 0xffbd52b129ff0bf2, 0x0c00a704be3712d2, 0x5ae5ffbd12c3d9ff, 0x070b0c2900073cb7, 0xb0ff0c1601090c1b, 0xbdb0f6f8ffbd03e6, 0x00b2d8ff0c24c504, 0xcb04bbe07b22ff3d, 0x49ff0c36c5040c3b, 0x3cc38136ff3d1fec, 0x52bedcff0c44070b, 0x030e3ce63e6affbd, 0x060d0c9500090cd9, 0x8f040c67bc040c75, 0xffbc606b87ff0c62, 0x0c700208bd70b883, 0xe335ff3d5e2987ff, 0x00020c8701113cca, 0xffbc0126f6ff0c82, 0x0c909004be197212, 0x9938ff3dc91113ff, 0x000e0cb9000c3df5, 0xdfff0ca600020cab, 0xbc7d1e0effbd88fc, 0x621f97ff0cb4070b, 0x020dbe198306ffbd, 0x64ff0cc601090ccb, 0x3c676892ffbd0cae, 0xc0f7f2ff0cd4000e, 0x02093d07c0cfff3b, 0x230e0d01ca040d21, 0x49ff0cee01120cf3, 0x3cede5d1ffbdac22, 0x510cc4ff0cfc000c, 0xcc04bd0e3e2fff3d, 0x93ff0d0e230e0d13, 0xbc030810ffbd8de1, 0x47cbd5ff0d1c330e, 0x080ebde77965ff3d, 0x030b0d37070e0d45, 0xffbdf58298ff0d32, 0x0d40020dbd3acaba, 0x7863ff3dd8a2afff, 0x90050d570d0e3ca4, 0xffbe5acd60ff0d52, 0x0d60140ebe254952, 0xd35cffbd1c60dbff, 0xca040fa50107be0b, 0x0a0b0dfda8040e89, 0x0b0e0d99090b0db9, 0xf7ff0d86070e0d8b, 0xbc9e1483ffbb54a7, 0x460051ff0d940d0e, 0xa604bbe2e171ff3c, 0xccff0da686050dab, 0xbc96b1ecffbb326e, 0x35700fff0db4000c, 0x030ebdb9f557ffbd, 0x010c0dcf000e0ddd, 0xffbc441cc7ff0dca, 0x0dd8060dbcfb6093, 0x2e09ffbbb8c276ff, 0x0a0e0def000c3b9d, 0xff3b08f5edff0dea, 0x0df80007bb8b7803, 0x03d6ff3c37b434ff, 0x070e0e45a904bb24, 0x00090e17000c0e25, 0xff3d1b25a3ff0e12, 0x0e2000093bb5c96e, 0x248aff3dd8512fff, 0x00110e37100e3cf8, 0xffbc89db3cff0e32, 0x0e4085053d05baea, 0xe4cdffbce92303ff, 0x000c0e69ab04bc7d, 0xc8ff0e5600080e5b, 0x3c551971ff3a3c34, 0xed2b0bff0e640112, 0x8b05bbac05bfff3c, 0xe1ff0e7601090e7b, 0xbc2e9f8eff3be154, 0x3f1da8ff0e849105, 0x230ebbbf4452ff3a, 0x180e0ed58f050f19, 0x120e0ea7140e0eb5, 0xff38c3894eff0ea2, 0x0eb000073d88e3c5, 0x9757ffbd8f3a5eff, 0x190e0ec70009bc4b, 0xff3da83ceaff0ec2, 0x0ed08d053cf29930, 0x448dffbd1d825eff, 0x180e0ef90002bc5c, 0x8eff0ee6010c0eeb, 0xbd45c655ffbca376, 0x1d5e9dff0ef41c0e, 0x9305bc5f8badff3d, 0xf1ff0f0600090f0b, 0xbc91b132ff3c9be0, 0xa0f9c3ff0f141c0e, 0x250ebc853e64ff3b, 0xcb040f4100110f61, 0x48ff0f2e8d050f33, 0xbdacc032ffbe01ee, 0xb16faeff0f3c070d, 0x010c3dcaf5f9ffbc, 0x9cff0f4e00080f53, 0x3db09384ff3c46ee, 0x7d9395ff0f5c0009, 0x070dbdacf18fff3e, 0x010c0f7700020f85, 0xffbc2cf733ff0f72, 0x0f802d0ebd28cc8d, 0x365cff3bd8c110ff, 0x00070f97030bbcb1, 0xffbcd7f4a6ff0f92, 0x0fa0000cbd2a0a98, 0xdfe6ffbd96ff13ff, 0x020e10c5c904bdcc, 0x010e0ff5000c1039, 0x000e0fc700110fd5, 0xffbc0575c3ff0fc2, 0x0fd08a04bb117d35, 0x9b62ffbba42364ff, 0xb5040fe7060dbc6b, 0xffbc7b1e24ff0fe2, 0x0ff0a8043b28769a, 0xc759ffbc5e4cf0ff, 0x8b0410190a0bbcb1, 0x0cff1006060d100b, 0xbbd3c8b1ffbcce2e, 0x765139ff1014060d, 0xb704bd06e723ffbd, 0x20ff1026060d102b, 0xbc8ee7cbffbd14b5, 0x784ab0ff10340e0b, 0x83053979215fffbc, 0xc7041061190e1081, 0x3fff104e140e1053, 0x3ca97f54ffba973f, 0xe918aeff105c0008, 0xc8043d2d8696ff3d, 0x69ff106e1f0e1073, 0xbbb7afc9ffbc9b64, 0x6eb955ff107c000c, 0x010cbdb414d7ffbd, 0x070e1097010810a5, 0xff3ad4e97aff1092, 0x10a00012bbfb2049, 0x0272ffbcda46b6ff, 0x0e0e10b7060dbc29, 0xffbd183856ff10b2, 0x10c0c004baa9c65e, 0xbc65ff3c5f7fd7ff, 0x8e051155010cbc43, 0x0d0e10f1ca041111, 0x49ff10de070e10e3, 0xbd3335e5ffbc4001, 0x0f706fff10ec230e, 0x000cbcd902f6ff38, 0x01ff10fe01081103, 0xbc3a5208ff3ba6ce, 0x986c36ff110c0e0b, 0x90053ced5f57ff3b, 0x060d1127ca041135, 0xffbd8eabeaff1122, 0x1130080ebc189f73, 0xd610ffbd243da5ff, 0x000c114700083a20, 0xffbaca20a2ff1142, 0x1150000cbc884f5d, 0xbb07ffbc94ffe7ff, 0x280e119d8605bd29, 0x0002116f8405117d, 0xff3cf28403ff116a, 0x117885053df11acb, 0xef66ff3c0f16beff, 0x0207118f030b3dab, 0xffbd313046ff118a, 0x11982a0e3cc75c2b, 0xdd41ffbd66800bff, 0x190e11c11d0e3c86, 0x81ff11ae0d0e11b3, 0x3d1d43a9ffbc20b7, 0xa36cd1ff11bc0012, 0x030bbd355f1dffbd, 0x43ff11ce230e11d3, 0xbd39b33dff3aa3b4, 0xacc028ff11dc0012, 0x00133d1edc08ff3d, 0x03e8000000080000, 0x11d8000000010000, 0x8205000000000000, 0x00090472000208ee, 0x7f05012cc5040248, 0xc304005c000600a0, 0xbf04002e7005003c, 0xffba4849bdff0029, 0x0037090b3c394935, 0x86e4ff3af29c8dff, 0x1f0e004e00073c0d, 0xff3d50cae2ff0049, 0x00576805bd141f08, 0x24a4ff3d18d913ff, 0x3f0100800206bb15, 0xd1ff006d360e0072, 0xbca0609effbc0d95, 0x19440aff007bb604, 0x0806bdcf1275ffbd, 0x75ff008dc0040092, 0xbda9e65effbbd31c, 0x2aa446ff009b6a05, 0x0207bd58a79aff3b, 0x000d00c8000f00e8, 0x08ff00b5a30400ba, 0x3d617f89ffbcf866, 0x9f1b92ff00c30006, 0xbb04bd5a9ef5ff3c, 0xefff00d5800500da, 0xbbd65df0ff3bd5ee, 0xdaa642ff00e3bf04, 0x050bbb9c3661ff3c, 0x000f00fe8904010c, 0xffbd8ed46eff00f9, 0x0107000fbc4ecf14, 0x3096ff3d228d9eff, 0xa704011e000fbc47, 0xffbe7f3987ff0119, 0x0127bf043d0b09b9, 0xbf0effbcbc8b82ff, 0x000701bcca04bda7, 0x00110158070d0178, 0xabff0145190e014a, 0x3a8d68ccff3d53de, 0x9e06f1ff0153060d, 0x0208bda01321ffbc, 0x5fff0165230e016a, 0xbd0e6837ffbdddf7, 0x2b5fccff01733401, 0x6705bc3ae364ff3d, 0x030b018e000f019c, 0xffbd615892ff0189, 0x019750053b458403, 0xd3d7ff3d3e16feff, 0xc80401ae68053c82, 0xffbc5159e1ff01a9, 0x01b7020d3dfdd94a, 0xeb2eff3cc5b3d9ff, 0x380502040107bc1d, 0x030b01d6030e01e4, 0xff3c8e10b7ff01d1, 0x01dfcb04bc8bdc53, 0xcd6eff3d16d71bff, 0x220e01f6240e3b77, 0xffbb72389fff01f1, 0x01ff00073d2621f5, 0xad73ffbce8ee72ff, 0x2a0e0228310eb915, 0xfeff0215cd04021a, 0x3da99810ff3cabb2, 0xc0d790ff0223cb04, 0x320e3d87ad5bff3c, 0x42ff02350111023a, 0x3d60c9beffbdd31e, 0x5d5e34ff02432903, 0x7b053c94c16effbd, 0x830402dcb1040368, 0x000d027882040298, 0xa8ff02653401026a, 0x3caeb9afffbb8e36, 0x8c6bbfff02736605, 0x010bba98b212ffbb, 0xd7ff02850112028a, 0xbe7f7112ffbd20e0, 0x8c300bff02937305, 0x050b3c7886b7ffbb, 0x9b0402ae340e02bc, 0xffbc48bf63ff02a9, 0x02b7000bbcb3f08d, 0x888effbe3ec427ff, 0x070d02ce0112bb5e, 0xffbbc4da85ff02c9, 0x02d7000fbd0e0eb5, 0x7cb4ff3cb924c8ff, 0x070b0324000fbc85, 0x030b02f62b0e0304, 0xffbd64daf4ff02f1, 0x02ffc004bc425bae, 0x247fff3ca0f307ff, 0x60050316c204bd82, 0xff3da35a03ff0311, 0x031f01093d091f45, 0x6500ffbcad808bff, 0x070d0348bc043bad, 0x6cff0335170e033a, 0xbc2448f6ffbcd5eb, 0x221004ff03437805, 0x0e0ebc0e6087ffbd, 0x3bff03550012035a, 0xbda1c68bffbd1c8a, 0x1568dfff03630b0b, 0x140ebcc4a374ffbd, 0x0d0e03b4040d03f8, 0x030b03867c050394, 0xffbe25d168ff0381, 0x038f78043cea852a, 0x0dcaff3c1f6cbeff, 0x020d03a67e053d32, 0xff3d2f0531ff03a1, 0x03afa2043c91392b, 0x229eff3d99d106ff, 0x7c0503d8000f3e29, 0x29ff03c5030b03ca, 0x3ce3be18ffbdec6d, 0xe04114ff03d35104, 0x010c3ccc8608ffbc, 0x06ff03e5000c03ea, 0xbae650e2ffbc085b, 0xf91dbdff03f30b0b, 0x000dbd2bbb2fff3b, 0x030b04202b0e042e, 0x3bff040d190e0412, 0x3e1dacf3ff3df4fe, 0x7286d0ff041b9604, 0x7d053d27f580ff3d, 0xffbc761a80ff0429, 0x0452050bbd646130, 0x043f000f0444170e, 0xf764ffbdcba366ff, 0x25ff044d9e04bd01, 0xbd01090dff3c5995, 0x045f000f0464c104, 0xa753ff3c9e503fff, 0xe5ff046d010cbba3, 0xbd4059b0ffbca364, 0x0596000806b2000f, 0x04c60107050a1106, 0x0498780404a6aa04, 0x4ec987ff04933804, 0x070e3c8ee546ffbc, 0xffbc5b912cff04a1, 0x04b8070b3c45bfbb, 0xfc99afff04b30109, 0x0d06bd976d61ffbb, 0xff3ca04151ff04c1, 0x04eaa204bba88c9a, 0x04d7021104dc060d, 0xd099ff3c43093dff, 0x49ff04e5000c3d32, 0x3ce11923ff3d9c8c, 0x04f7030b04fc0b05, 0xf4feffbda4571bff, 0x86ff0505350ebcc9, 0xbba25ce2ff3ccb8a, 0x0532000705521606, 0x051f14060524170e, 0x5edeffbb629592ff, 0x9cff052db504bc62, 0xbbc3c905ffbd7a9d, 0x053f42050544150e, 0x164bff3c5f3f1bff, 0x1dff054dba04bc01, 0x3c4253e1ffbd1344, 0x056802070576120e, 0x9a4bfeff05630107, 0x000cbc1d6042ffbc, 0xffba30e6ceff0571, 0x058800073cd88152, 0x38400bff05831105, 0xa7043bc1cca6ff3d, 0xffbd71f3c4ff0591, 0x06261306baf2ffe7, 0x05c2020d05e2020e, 0x05af450405b49104, 0x94efff3c1d23a9ff, 0x58ff05bdba04bc80, 0xbd191324ff3b61e7, 0x05cf380405d40006, 0xcb4fff3b8690b0ff, 0xebff05dd93043d19, 0x3c9be063ffb9a2b6, 0x05f8060e0606010d, 0x6b66f9ff05f30706, 0x000cbbfc36e1ffbd, 0xffbb3debe2ff0601, 0x0618040b3c9938b2, 0xb6b0aaff0613240e, 0x34053b7c6511ff3c, 0xff3cd3610bff0621, 0x066e030d3ca4c131, 0x0640a104064e000c, 0xa5cf31ff063b1c0e, 0x000dbdaf9762ff3b, 0xffbd173fbeff0649, 0x0660010dbc232a82, 0x5dde1cff065b030b, 0x26053c1276e5ffbc, 0xff3c93d25fff0669, 0x0692000cbc079147, 0x067f29050684010e, 0x3527ffb893d361ff, 0xd8ff068d030bbc64, 0x3cdba712ffbb3e1b, 0x069f970406a40105, 0x1b0affbd767928ff, 0x25ff06ad01073c66, 0x3d176173ff3c332e, 0x07465d0407d22703, 0x06e21d0407023e04, 0x06cf020d06d4000e, 0xb8e5ffbc6f2a14ff, 0x7aff06dd1704bc1f, 0xbb84263dffbc0750, 0x06ef050e06f40011, 0xd833ffbb3b4a64ff, 0x41ff06fd0112bc5b, 0xbb8caccbff3b7f8a, 0x0718001107265a04, 0x72bfb7ff0713070e, 0x0112bbaa2c94ff3b, 0xff3c80ca3dff0721, 0x0738090ebc06acc8, 0x6b3845ff07330108, 0x5c04bd8d20e4ffbd, 0xff3be3953dff0741, 0x078e100bbc1b16e4, 0x0760030b076e010c, 0x7aa347ff075b070d, 0x000c3c9fc414ffb9, 0xff3c2ed7e9ff0769, 0x078002083cac8dc1, 0xbaff66ff077b050b, 0x0b053d68c342ff3c, 0xff3ca92da1ff0789, 0x07b21b03bc0ef371, 0x079f000607a49c04, 0xba59ff3d589430ff, 0x78ff07ad0112bbd7, 0x3d808bf0ff3e2372, 0x07bf8d0407c40006, 0x8ff1ff3cdeee51ff, 0x45ff07cdab043d7d, 0x3d7777dbffba8a7c, 0x081e150e0862ca04, 0x07f00a0b07fe0b0e, 0x61c914ff07eb070e, 0x070dbc633ff0ffbb, 0xffba872c77ff07f9, 0x0810000c3c3d4308, 0xe39987ff080b9b04, 0x9c04bbdec8bcff3a, 0xff3c6b1a9aff0819, 0x084200073b3a8f9f, 0x082fc60408347705, 0xc4ebffbb1b0958ff, 0xbdff083d1c0ebce4, 0xba28051fff3c3319, 0x084fc1040854000c, 0x4c3eff3b1466b6ff, 0x5dff085d060dbba5, 0x3cd2299eff3c119e, 0x088a310e08aa0306, 0x08777705087c0208, 0x6867ff3d5e9228ff, 0x5dff0885010c3cca, 0xbc572202ff3ca4e8, 0x08970107089c6805, 0x1186ffbc67b61bff, 0xc0ff08a5060d3d91, 0xbd6410e5ffbc2873, 0x08c00b0b08cecb04, 0x6b0851ff08bb4605, 0x060ebc9e2010ff3b, 0xffbc97f5f2ff08c9, 0x08e0010cbdc0f53b, 0x912fc2ff08db070e, 0x0b0bbcad43d1ffbb, 0xff3b3a7e2fff08e9, 0x0d5c000f3cb3c090, 0x0a1687050b32010d, 0x0946070e098a8404, 0x0918000d0926020e, 0xc1d60fff09130009, 0x29043c8d3c1dffbc, 0xffbda69144ff0921, 0x0938060e3ce80e95, 0x293e60ff0933010b, 0x58043da03222ffbb, 0xff3e1f5075ff0941, 0x096a00083dc3431c, 0x09570107095c1d0e, 0xaa77ffbc0464a3ff, 0xc2ff09650002bd36, 0xbe2dce74ffbe3a53, 0x0977030b097c080e, 0xf49cffbd89c7d3ff, 0x7bff09857604bd0c, 0xbd6b2a5bffbe09ed, 0x09b2060e09d20207, 0x099f000e09a49f04, 0xae0cffbd60cd3bff, 0xb6ff09ad030bbda0, 0xbde020a0ffbca62b, 0x09bf000d09c40008, 0x593fff3d28dfaeff, 0x0aff09cd0d0ebc60, 0xbc194afeff3d8749, 0x09e8830509f6300e, 0x499a75ff09e38804, 0x9e04bcefe220ffbe, 0xffbd917558ff09f1, 0x0a08bc04bcf64c42, 0xef45f0ff0a03020b, 0xc004bd968cc8ffbd, 0xffbe09cc68ff0a11, 0x0aa69105be09ce60, 0x0a4253040a627b04, 0x0a2f00080a344804, 0x92f4ffbce1d805ff, 0x78ff0a3d8d053da4, 0x3c9dcd09ffbc1552, 0x0a4f050b0a54080e, 0x1b42ffbd7418beff, 0x9fff0a5d0002bca8, 0xbdb603f8ffbe09f8, 0x0a7801070a860d0e, 0xf63338ff0a73030e, 0x000c3da46341ff3a, 0xff3c77fe78ff0a81, 0x0a988a04bdb14a84, 0x998127ff0a931d0e, 0x0109be6f03b5ffbd, 0xffbc1d9497ff0aa1, 0x0aee240ebd8dbade, 0x0ac0040e0ace1d0e, 0xbbc5a4ff0abb020e, 0xa3043d8838deffbc, 0xffbd78346cff0ac9, 0x0ae0230ebc8a16e3, 0x871de0ff0adb0009, 0x030bbdcea23cff3d, 0xffbc689c96ff0ae9, 0x0b1293053cb9af76, 0x0affc2040b040107, 0xc91effbcfacec7ff, 0x9bff0b0dc0043e91, 0xbe889058ffbe5af1, 0x0b1f95050b240007, 0x6636ffbd9b2d15ff, 0x12ff0b2d9605be2e, 0xbe1de904ffbe3dd4, 0x0bc6030e0c52cd04, 0x0b62000e0b820007, 0x0b4f6f040b540109, 0xd841ffbb0d6a70ff, 0xa9ff0b5d7b04bd56, 0x3ca61989ffbc520d, 0x0b6f030d0b749305, 0xc146ff3b9d6773ff, 0x60ff0b7da7043cdc, 0x3ca39a65ffbd4c13, 0x0b98000e0ba69004, 0x194998ff0b936d04, 0x7c04bde5d0e2ffbc, 0xffbb086133ff0ba1, 0x0bb894043d529325, 0xb67a95ff0bb3010e, 0x030dbdb3a577ffbe, 0xffbdbb3185ff0bc1, 0x0c0eb504bc95e38d, 0x0be0010b0bee9005, 0x1d8ab3ff0bdb070e, 0x220e3b9bf634ff3d, 0xff3cb74459ff0be9, 0x0c00a7043d1a1f55, 0x9216daff0bfb0002, 0xb3043c717366ffbd, 0xff3cbb2ba5ff0c09, 0x0c32010b3d7abb84, 0x0c1f00070c24b704, 0x0b48ffbe429ce3ff, 0x64ff0c2db804bd62, 0xbc96bc11ff3dd3b5, 0x0c3f280e0c440009, 0x38e0ff3d003eadff, 0x15ff0c4d140e3ba9, 0xbd0bfe29ff3ba908, 0x0c9e00070ce29505, 0x0c7000080c7e0109, 0xc357b3ff0c6b9305, 0x030bbe1529bbffbd, 0xffbe0fd72dff0c79, 0x0c909305bdf798fc, 0x5a61e4ff0c8b2e0e, 0x0209be4198f9ffbe, 0xffbe31f2fdff0c99, 0x0cc2030bbe3d57bf, 0x0caf2f0e0cb4020d, 0x5e96ff3d55a288ff, 0xdcff0cbd280ebd48, 0xbe5e34bcff3dffcd, 0x0ccf01070cd40008, 0xade2ff3dd598e1ff, 0x9dff0cdd020d3d47, 0x3d1cdcc3ff3d62f6, 0x0d0a280e0d219605, 0x0cf700070cfc050b, 0x9ce8ff3e1462e8ff, 0x98ff0d0500093dd6, 0x3de3f39cff3dd212, 0x0d1700070d1c050b, 0x46f8ff3d81afd0ff, 0x0e3e0d92b0ff3d12, 0x090d37140e0d451f, 0x3e3ece98ff0d3202, 0x4001093e30b4c4ff, 0x38ff3e6cac64ff0d, 0x090d57280e3e4f3f, 0x3e529a4eff0d5200, 0x5658ff3e5e3640ff, 0xca040f9c01073df5, 0x0a0b0df4a8040e80, 0x7c040d90000e0db0, 0x02ff0d7d070d0d82, 0x3b4a1906ffbc2577, 0x018a43ff0d8b0009, 0x0012bc3398beffbd, 0x53ff0d9d00020da2, 0xbbd3f4d0ffbc5e74, 0x913eb3ff0dab060d, 0x030e3c0c050dffbb, 0x010c0dc6000e0dd4, 0xffbc308073ff0dc1, 0x0dcf060dbce23d45, 0x764bffbba648b8ff, 0x0a0e0de6000c3b8d, 0xff3af68768ff0de1, 0x0def070ebb7b0b5f, 0x7cedff3cbc099cff, 0x000c0e3cb104bb44, 0xa9040e0e190e0e1c, 0xff3c760b3fff0e09, 0x0e17210e3b08df4d, 0xa23effbcbacf41ff, 0x030b0e2e8f05bb35, 0xff3c2d4abbff0e29, 0x0e37a9043cb263f5, 0x581cff3d185537ff, 0x01090e60060ebc4a, 0xc8ff0e4d060d0e52, 0xbbfafcb7ffbcb8c6, 0xcb2061ff0e5b000c, 0x86053bd5024dffbb, 0x2fff0e6d090b0e72, 0x3c53bd9fffbc6c95, 0x551181ff0e7b070d, 0x230ebca34755ff3a, 0x180e0ecc8f050f10, 0x00090e9e140e0eac, 0xff3cbd65d0ff0e99, 0x0ea7010cbd02ff0b, 0xb4a4ffbc032db6ff, 0x1c0e0ebe0009bd80, 0xff3d9b761dff0eb9, 0x0ec7cd043ccc14cd, 0xcd67ffbc998436ff, 0x220e0ef00002bd61, 0x6cff0edd1c0e0ee2, 0xbd34083cffbc4a56, 0x58888dff0eeb9005, 0x93053c6c0931ffbd, 0x90ff0efd00120f02, 0xbba0af15ff3ca4ea, 0x802637ff0f0b010c, 0xcc043c8152d0ffbb, 0x00110f3800120f58, 0x16ff0f25280e0f2a, 0x3d166e3fffbd2ed7, 0xf1caceff0f33000c, 0x250e3e0f3deaff3c, 0xffff0f45010c0f4a, 0x3e4836a6ff3d5305, 0x65b51fff0f53010c, 0x290ebc9f136affbb, 0x00090f6e00080f7c, 0xffb55ef2ebff0f69, 0x0f770002bd435386, 0x2649ffbc967a2aff, 0x84050f8e000c3d69, 0xffbd6ba721ff0f89, 0x0f970007bbafae8b, 0x0defffbd0acc42ff, 0x020e10bcc904bc90, 0x010e0fec000c1030, 0x000e0fbeb7040fcc, 0xffbc42f2f3ff0fb9, 0x0fc70a0bbbc002bf, 0x03c0ffbc508c5eff, 0xb5040fde060d3aff, 0xffbc620189ff0fd9, 0x0fe700083b179ded, 0x1a98ffbc57b24dff, 0x060d10100e0bbcad, 0x26ff0ffd010c1002, 0xbd4ead9dffbccd96, 0x047457ff100b9c04, 0xb204bcc14cb7ffbc, 0x91ff101d060d1022, 0xbc673e5affbd0955, 0x54eaecff102b8805, 0x83053a74ca31ffbc, 0xc1041058190e1078, 0xe1ff10450b0e104a, 0x3c16d093ffbbbefa, 0x785ec2ff1053000c, 0xc8043d9a4d64ff3c, 0x59ff10651f0e106a, 0xbba55164ffbc8bda, 0xa5b788ff10730207, 0x010cbd51fe4dffbd, 0x230e108e0002109c, 0xffbbd630e2ff1089, 0x1097060dbcb57bdd, 0x9740ffbbf43b28ff, 0x011210ae060db96d, 0xffbd135483ff10a9, 0x10b7c004bb6dff2e, 0x2993ff3c492648ff, 0x8e05114c010cbc30, 0x0d0e10e8ca041108, 0xdbff10d58d0510da, 0xbc835517ffbd30d4, 0x0110fbff10e3230e, 0x080ebcc34f75ff38, 0xe1ff10f5001210fa, 0x3d7f96a2ffbd5b64, 0xa525ecff11030002, 0x9005ba5da589ff3c, 0x060d111eca04112c, 0xffbd806786ff1119, 0x11271c0ebc095c53, 0xf29bff3c08fb84ff, 0x1c0e113e1f0ebc12, 0xffbc024e11ff1139, 0x1147050bbcdc6f4a, 0x5b7effbc3d0ad9ff, 0x030b119486053c34, 0x060d116602071174, 0xffbcffcae4ff1161, 0x116fcc04bd5933d7, 0x76b1ffbb9b599cff, 0x84051186280e3d56, 0xff3dce97a5ff1181, 0x118f320e3d4a6357, 0x4130ff3c8b52f1ff, 0x190e11b81d0ebd55, 0xb2ff11a5cd0411aa, 0x3dfda25cff3c3615, 0x3275acff11b31c0e, 0x030bbd7529f3ff3e, 0x43ff11c5230e11ca, 0xbd272151ff3a9355, 0x85b348ff11d3280e, 0x00133bb425ecff3d, 0x03e8000000080000, 0x1163000000010000, 0x8305000000000000, 0x5305048419060870, 0x320e012c35010248, 0x8504005c900400a0, 0x0211002e060d003c, 0xffbaf25cf2ff0029, 0x003751053ca16122, 0xc53dffbb80bfd8ff, 0x1203004e000fbbc7, 0xffbd0680f7ff0049, 0x0057260e3c66084f, 0xe49cff3c1cbd76ff, 0x1d0e00809e04bc15, 0x5bff006d1b0e0072, 0xbdccde8fff3ca895, 0xa8c7b3ff007b070d, 0x060dbd2e5ae8ff3b, 0x16ff008d05060092, 0x3cd64d57ffbc2ce5, 0x26f327ff009b1f0e, 0x2501bd171a69ffbe, 0x011200c8350e00e8, 0x9bff00b57f0400ba, 0xbcb3ab91ffbbd34c, 0xe1481cff00c37e04, 0x95043aacd2d8ffbb, 0x2cff00d50b0500da, 0xbc716225ffbc0194, 0x7e2c0eff00e30007, 0x000fbcedd075ffbc, 0x0a0b00fe2a03010c, 0xffb9e038beff00f9, 0x0107360e3c8cc637, 0x2d6bff3a1cbd41ff, 0x0107011e0006bca4, 0xffbc9aa4c2ff0119, 0x0127350ebd38c46d, 0xeb0bff39d1ebd6ff, 0x310e01bc0107bc4f, 0x000701582e0e0178, 0x18ff01451c05014a, 0xba8cff11ffbbd8b5, 0x34d147ff0153000f, 0x060d39508498ff3c, 0xd2ff0165010d016a, 0xbbe48231ffbcb992, 0x1c672eff01730011, 0xca04bd80947bffbc, 0x0a0b018e0112019c, 0xffbbd57933ff0189, 0x0197010dbcf9cc0a, 0x1eb4ffbcfa05afff, 0x030601ae0002bbfd, 0xffbbb397abff01a9, 0x01b7040d3d0a2488, 0xd25fff3b4cdddfff, 0x00110204be04bc8c, 0xa90401d6bc0401e4, 0xffbb211865ff01d1, 0x01dfbd043c648713, 0x095aff3d9a4c3cff, 0x290501f6000f3d1f, 0xff3c7f8df5ff01f1, 0x01ff060d3c081386, 0x952eff3b1f2f1fff, 0xc004022800063d1a, 0x89ff0215010c021a, 0x3d58df4eff3daec1, 0x2176a5ff02230f0b, 0x04063d2ad7d1ff3c, 0x52ff0235320e023a, 0xbcb71a03ffbd9cf0, 0x19f5c7ff0243c504, 0x00123b78c351ffbc, 0xa40402dcca040368, 0x070e0278a2040298, 0x00ff02659f04026a, 0xbd1e3ffcffbb3485, 0xa4a97bff0273080e, 0x0d0ebbc40818ffbc, 0x61ff0285060e028a, 0x3d11e472ffbcad3e, 0x97764dff0293a304, 0xaf043c2164c4ffbc, 0x140b02ae1c0e02bc, 0xffbbdafd2cff02a9, 0x02b7ab043c2f2866, 0x88b3ff3b1136c1ff, 0x0e0e02ce0a0bbcf9, 0xff3c506be6ff02c9, 0x02d7000cbc82976b, 0x7186ff3aa575a7ff, 0x02080324300e3ca6, 0x001102f600070304, 0xffbb4d9cbdff02f1, 0x02ff000c3e83d13d, 0xebf2ff3cb56d17ff, 0x0b0b0316010c3d6c, 0xff3c18d46dff0311, 0x031f00073d23a64a, 0xf466ffbd503460ff, 0x01070348310ebb98, 0xfeff03350007033a, 0xbb4f54bdffbd44ab, 0x8e24baff0343cb04, 0x330e3d9a2f72ffbd, 0x45ff03550108035a, 0xbd1b6896ffbdb7b1, 0xd82278ff03630107, 0x000c3c8490a7ffbc, 0xbd0403b4021203f8, 0x0a0e03860b0e0394, 0xffbb16da71ff0381, 0x038f0806bce7f96d, 0x9012ffba886259ff, 0x000803a6c0043c60, 0xffbbf65426ff03a1, 0x03af300e3c8d1708, 0x61edffbc0f2296ff, 0x0d0e03d84f043a70, 0xd0ff03c51f0403ca, 0x3c55df7affbc7175, 0x4bf160ff03d30009, 0x0002bba8cdc0ffbd, 0x1eff03e5600403ea, 0x3da65562ffbba71b, 0x107577ff03f36d05, 0x01073e2cc46eff3e, 0x120b0420b0040440, 0xd3ff040d020b0412, 0x3bd79773ffbbdf53, 0x35718fff041b060d, 0xbe043cff0b91ff3c, 0x3cff042d060d0432, 0xbc982c9bff3c0b74, 0x8cdc19ff043b0007, 0x060d3b2aadabffbc, 0x010d0456000f0464, 0xffbc0aa6f8ff0451, 0x045f1d0e3cc73503, 0x6546ffbc2a2862ff, 0x00020476b3043c53, 0xff3d637b20ff0471, 0x047f130b3c8ff206, 0x7130ff3cd5bc36ff, 0x9b040697a704bc96, 0x040e051c750405a8, 0x000704b8000c04d8, 0xedff04a5011104aa, 0x39bf0f27ffbbd941, 0xc09c84ff04b30008, 0x010ebc70e468ffbb, 0x21ff04c5030d04ca, 0xbcec5c4dffbbef7c, 0xa871d4ff04d30007, 0x010bbe1ea946ffbb, 0x070e04ee000b04fc, 0xff3bb2132bff04e9, 0x04f7070e3d2dba4f, 0xa9d0ffbc890646ff, 0x6304050e030dbbe6, 0xffbd5f12cdff0509, 0x0517000fbd30e608, 0x1d58ffbd12e3b7ff, 0x090e0564070bbcb3, 0x000f05360b050544, 0xffbd0b4379ff0531, 0x053f1805bc609d24, 0x28b2ffbc06a3c4ff, 0x130e0556000b3c3d, 0xff3bdf0d32ff0551, 0x055f8704bd377164, 0xa5f0ffbc3bf0e9ff, 0x010e0588000f3d0b, 0xb3ff05758b04057a, 0xbd830c3fffbce036, 0xa1d5c5ff0583000c, 0x000ebe0079ffffbd, 0x3eff05950007059a, 0xbc8fbbd8ffbbbab3, 0x9c4d70ff05a30007, 0x0c05bd0a30caffbc, 0x000805f40f0e0626, 0x000705c6000f05d4, 0xffbe061bf7ff05c1, 0x05cf020dbdb861a8, 0x033affbb5870ebff, 0x030b05e6a504bc2d, 0xff3c8e1607ff05e1, 0x05ef0605bd1b28a0, 0x647effbdc9cc82ff, 0x030506189c04bcd8, 0x5dff0605000b060a, 0xbd1b7a55ffbcc562, 0x050994ff0613000b, 0x020d3d329edfffbd, 0xff3d4f1651ff0621, 0x065c00023e3d3516, 0x0637020d063c1005, 0x00f8ff3d59181aff, 0x0111064e9d043dbc, 0xffbc960d34ff0649, 0x06571805bc0b4aee, 0x81f6ff3c1840f0ff, 0x040e067710053d29, 0xb7ff066d01110672, 0xbd594580ffbc0524, 0x89010d3d80478aff, 0xba06ff0684030b06, 0x0d3d573d70ff3bae, 0xbc8875d4ff069202, 0xb7110ebac04786ff, 0xe70002072b000807, 0xb9000b06c7000706, 0x69d5ff06b4b10406, 0x0ebd8ee58fffbc52, 0xbcc1ed61ff06c201, 0xd9040e3c0628c8ff, 0x035cff06d4030b06, 0x05bcaa30f5ffbd70, 0x3d049944ff06e20c, 0x0b0c05bc920af6ff, 0xf8000f06fd020707, 0xceffbd92883fff06, 0xff0706000fbc798d, 0xed6c36ff3d03e3c3, 0x18020b071d070ebb, 0x5effbc90178eff07, 0xff0726000fbb8335, 0x07553dff3d1546fc, 0x5302070773000fbc, 0x4007050745010807, 0x97ffbd246a3aff07, 0xff074e0105ba6767, 0x8f5588ffbd35b8cb, 0x60000e0765000c3c, 0x09ff3bd74f27ff07, 0xff076e01053d05b1, 0x8d2d13ff3c86a650, 0x8901110797b3043d, 0xf2d0ff0784030b07, 0x05bc71f336ffbc13, 0xbc12d131ff079206, 0xa9030ebbb8afcfff, 0x4053ff07a4000707, 0x0bbac22323ffbbcc, 0xbc118f4bff07b213, 0x2cc204bcf5c3b6ff, 0xe3190507f1140e08, 0xd0020707d50f0507, 0x48ff3dd2466fff07, 0xff07de00073df517, 0x752bc6ff3d4715f6, 0x19f9ff07ec010b3d, 0x0b3e1392feff3e1d, 0x040807020d081503, 0x3cd4c5e5ff0802bd, 0x1007053bba0795ff, 0x08ff3d1e3c04ff08, 0x050827000c3d936b, 0x3d3bd27dff082207, 0x3e03ff3d20d955ff, 0x2505086b000c3dd3, 0x18050846010b0854, 0xffbcd96ec9ff0841, 0x084fc504bc4e9e6b, 0x95ebffba82d400ff, 0x010b0866c604bc0f, 0xff3c9acaa0ff0861, 0x6a7780ff3d4da88d, 0x000f3d624f56ffbc, 0x87050aab000d0ce7, 0x130e09038304098f, 0x550408a87f0408c8, 0x5cff08950008089a, 0xbd23d3d0ffbc5ee5, 0xe75cd1ff08a30007, 0x070ebc8c900cff3c, 0x1dff08b5840508ba, 0x3dcebd55ff3d7d32, 0x2338e0ff08c3030b, 0x060b3c6f7f80ff3d, 0x000708de010808e3, 0xffbd56dee4ff08d9, 0x3bedceffbda09c6a, 0xf0840508f58505be, 0x80ffbc219520ff08, 0xff08fe8605bbf549, 0x6d182cffbd235740, 0x2b0008094b0107bd, 0x180002091dba0409, 0xc4ff3d2a91c8ff09, 0xff092600093dab5e, 0x12834bff3c91b8af, 0x380007093d0d0ebe, 0x74ff3d41dfc9ff09, 0xff094601083e0369, 0x6aa9fdff3a78da69, 0x610d0e096f300ebd, 0xe358ff095c000209, 0x0e3e0bc724ff3e00, 0xbcdf1185ff096a1d, 0x81090b3d108adfff, 0x13b3ff097c000809, 0x04bda3b846ffbdd8, 0xbc9c7a80ff098abc, 0x1f7304bd45f2c0ff, 0xbb000b09db53040a, 0xa8260409ad8d0509, 0x4cff3cca9ebbff09, 0xff09b601073bdc94, 0xfeb322ff3d301852, 0xc8020e09cd48043c, 0xe9ffbc8e09daff09, 0xff09d68d05bd2c56, 0x63d49affbc14c86d, 0xf18e0509ff6c043c, 0xf7abff09ec000809, 0x0cbdabdb86ffbcc3, 0xbd1b437bff09fa00, 0x11070ebde05e1cff, 0xbb80ff0a0c030b0a, 0x0bbe880ffcffbe42, 0xbe19104bff0a1a01, 0x67070ebd7b4fd7ff, 0x398e050a47030e0a, 0x3c10ff0a348a050a, 0x0b3d2d0eb2ff3db8, 0xbd13410cff0a4203, 0x598904bc4958f1ff, 0xdaa9ff0a5402070a, 0x043bd544a0ff3dce, 0xbabe5195ff0a6296, 0x8b98043d38bfb0ff, 0x7897040a7d1d0e0a, 0x8cffbd10598fff0a, 0xff0a86010bbdc05a, 0x4c3893ffbe77ca07, 0x98250e0a9d0002be, 0x62ff3cf880d3ff0a, 0xff0aa6010bbcf2df, 0xa6d251ffbd854e06, 0x3f030e0bcb280ebc, 0xdb90050afb00070b, 0xc8040b0acd61040a, 0x19ffbcafca4aff0a, 0xff0ad600093c5ac3, 0x8fc3deff3d0fde6f, 0xe800020aeda7043c, 0x81ffbd49b36bff0a, 0xff0af60209bbdcbb, 0x7eafbeff3d06ad8e, 0x118b050b1f02073a, 0x66feff0b0c91040b, 0x0dbd05db5cff3c55, 0xbd2fcc39ff0b1a06, 0x31060d3d1021a7ff, 0x1b4bff0b2ca7040b, 0x113c049073ffbd83, 0xbd169aaeff0b3a01, 0x8702093dacda34ff, 0x59000b0b6701110b, 0xfd7eff0b5401070b, 0x0bbcfe34d6ffbaec, 0xbdb93ddbff0b620a, 0x79220ebe35df9aff, 0x5d55ff0b74190e0b, 0x09bc1db3c7ff3cd1, 0x3d174b6eff0b8201, 0xab080ebd592e7fff, 0x98030b0b9d070e0b, 0x00ffbdde0cb0ff0b, 0xff0ba6c704bb5b10, 0x5050eeff3d97ee24, 0xb80c0e0bbd0d0ebd, 0x77ffbd6566ecff0b, 0xff0bc6140ebe2717, 0xb2972fffbc7ac734, 0x1784050c5b0002bd, 0xe92a0e0bf7010b0c, 0xe040ff0be4030d0b, 0x04be0f7e4cffbc23, 0x3db3c762ff0bf2a7, 0x0901093b4e0f84ff, 0x1d44ff0c04330e0c, 0x043df87cfeff3d6a, 0x3e828d89ff0c12c1, 0x3b9105bd02a810ff, 0x2800070c2d2a0e0c, 0x11ffbd2e257eff0c, 0xff0c36b9043c9cb4, 0xa83dfbff3d6526de, 0x48030b0c4d2b0eba, 0x7bff3d182ce0ff0c, 0xff0c56cb04bc8e46, 0x46d198ff3e32019e, 0x83020d0ca3040b3d, 0x702a0e0c7500070c, 0xbaffbdd11cd2ff0c, 0xff0c7e300ebcddc2, 0xa642a7ff3ca4453a, 0x9000060c95000cbc, 0x1cff3ea13178ff0c, 0xff0c9e2a0e3aa7ce, 0x5b1688ffbde7f500, 0xb9c5040cc70009bd, 0xa718ff0cb42a0e0c, 0x073d438471ffbc09, 0xbca3a298ff0cc200, 0xd9cd043caeeb81ff, 0x04d0ff0cd489050c, 0x0ebc9f1ceaffbdb4, 0xbe396416ff0ce233, 0x270d0ebdc6e7f2ff, 0x7f00070e0b87050f, 0x1b78040d3b91040d, 0x08060d0d0d84050d, 0x1affbc30a592ff0d, 0xff0d16080ebb78eb, 0x3b7755ffbb9237cf, 0x28020e0d2d00123c, 0x9affbc616097ff0d, 0xff0d36060dbb0fe0, 0x94371eff3b0bc346, 0x5100090d5fc3043c, 0x0babff0d4c070e0d, 0x0e3ba89190ff3cb6, 0x3b7076ddff0d5a0a, 0x710108bd074bffff, 0x07dcff0d6c00080d, 0x02be30cc0effbd79, 0x3d6cd282ff0d7a00, 0xc7060dbd146235ff, 0x99b3040da7010c0d, 0x8a69ff0d940b0e0d, 0x123b1520beffbc0c, 0xbd1ac13aff0da201, 0xb901113b879342ff, 0xc71bff0db400080d, 0x05bd831e8affbd24, 0x3d5f0b04ff0dc286, 0xebc204bc2a1535ff, 0xd8a7040ddda8040d, 0x26ffbb8ba401ff0d, 0xff0de6a9043b61d1, 0x31e41fff3d879ba2, 0xf800020dfd00123c, 0x23ffbbc9288aff0d, 0xff0e06c904bce94c, 0x3fb95affbadb36e6, 0x57be040e9bc0043d, 0x29020b0e378e050e, 0x8e06ff0e240b0e0e, 0x0b3b349d95ffbc3a, 0xbb8ca3e4ff0e3203, 0x49010cba346deaff, 0x05d2ff0e44000e0e, 0x0bbb824d19ffbc5a, 0xbb339028ff0e5209, 0x7b060dbd044e35ff, 0x6801090e6d080e0e, 0x12ffbbdf1803ff0e, 0xff0e76bf043c399b, 0x86c766ffbc25cdcb, 0x88000c0e8d0002bd, 0x34ff3ca6f590ff0e, 0xff0e96080e3d7fdc, 0x4fe542ff3bca85fc, 0xc3070e0ee300093d, 0xb0010c0eb5cb040e, 0xf4ffbb47275fff0e, 0xff0ebe000cbc718e, 0x64c7a9ffbca32fee, 0xd0030b0ed5060dbd, 0x6fff3c3139c6ff0e, 0xff0ede9305bcfa46, 0xbaa7f1ffbc431900, 0xf9070d0f07070ebc, 0xfaefff0ef4c3040e, 0x0ebba943e3ff3bf9, 0xbd510410ff0f0203, 0x190b0ebdc10c4aff, 0x6b3aff0f1402090f, 0x0dbb56bdb5ff3d33, 0xbce6f2d7ff0f2207, 0x47000cbdb4e91fff, 0x77250e0fbb001110, 0x49180e0f571c0e0f, 0x6d27ff0f440e0b0f, 0x0d3b34f80affbbce, 0x3cdcc46eff0f5207, 0x691d0ebd348ffaff, 0x4254ff0f64070b0f, 0x0dbd3dccaaffbc08, 0x3c018976ff0f7207, 0x9b310ebcf0cc24ff, 0x88050b0f8d070d0f, 0xf5ffbba4e67eff0f, 0xff0f96050b3cc6ca, 0xa264d1ffbcc61327, 0xa80b0b0fad8405bd, 0xafffbccbfadaff0f, 0xff0fb69005bdb91a, 0x8f0d4cffbc8d833d, 0xe30a0b1003c0043b, 0xd0100e0fd501110f, 0x50ffb772d5c2ff0f, 0xff0fde020bbc0ada, 0xbf818bffbbbc5354, 0xf0bc040ff501113b, 0xc6ffbaa7f4ccff0f, 0xff0ffe190e3c46ce, 0xd0ab6fffbb0f00d4, 0x19010910270e0ebc, 0xb7ebff1014c50410, 0x0d3d05f145ff3c26, 0xbbb3576aff102206, 0x390009bd6512f6ff, 0xde1aff1034950510, 0x0dbc3a696bffbb9c, 0xbc90468dff104206, 0xd7150ebd3bd3f2ff, 0x73070b1093010910, 0x6000121065110e10, 0x78ffbae9efceff10, 0xff106e010c3cf648, 0x898bfeffbd01069b, 0x80060d1085010cbb, 0xccff3c63f98eff10, 0xff108e120e3d3408, 0xeefeb9ff3d8d5b30, 0xa9020910b7060d3d, 0x9b3aff10a40e0e10, 0x05bb9d940aff3d06, 0xbb57bd5bff10b284, 0xc90011bcebdee4ff, 0xd0ffff10c4070d10, 0x04bd852375ffbcb2, 0xbd4a164dff10d2c5, 0x1f170ebda8cc49ff, 0xf1870510ffc00411, 0xb062ff10ec160e10, 0x09bca19291ff3cf9, 0x3c0478efff10fa00, 0x110007bd4c7514ff, 0xd5e8ff110c010c11, 0x0cbd9399a7ffbd18, 0xbb3a39ddff111a01, 0x431c0ebceebf0cff, 0x300a0b1135000911, 0x72ff3bbf1fefff11, 0xff113e060d3d825a, 0xf7de03ff3a7d1b39, 0x50070b11551d0ebc, 0xb2ffbcba4482ff11, 0xff115e0002bd581d, 0x6f99c4ffbb7a00bc, 0x000008000000133c, 0x000001000003e800, 0x000000000011f300, 0x84c50408f7830500, 0x2cad040248b20404, 0x5c950400a0000201, 0x2e330e003c700500, 0x0649ff0029090600, 0x06b98edad5ffbacf, 0xbbd53b12ff003712, 0x4e0111bc06a584ff, 0xb31cff0049020e00, 0x073b0afe7affbbf7, 0x3c3e2816ff005702, 0x80000cbc89d40dff, 0x6da2040072190600, 0x02ffbbbb48daff00, 0xff007b0d0e3a2d29, 0x7fcfdaffbd2d37da, 0x8d01110092010b3c, 0x20ffbcaa69fdff00, 0xff009b5905bb3857, 0xd62d07ffbaefdba4, 0xc8001100e8000c3b, 0xb5070d00ba1f0e00, 0xa4ffbc02d089ff00, 0xff00c3140b3b307c, 0x0b7261ff3b2aa208, 0xd5880400da00053d, 0xc9ffbc5fc439ff00, 0xff00e3000fbd2164, 0x4fa58fff3c0e232b, 0xfe2905010c0006ba, 0x8c50ff00f9130b00, 0x053d56642fff3c98, 0x3c8606aaff010753, 0x1e06063bfa3f2eff, 0xe306ff0119270e01, 0x0d3993362affbcb7, 0x3bcb906bff012705, 0xbc000fbb3b550bff, 0x58050b0178000801, 0x45090e014a000701, 0x8effbd326b87ff01, 0xff01531905bc47c5, 0x8d5537ff3de538cb, 0x650b05016a000e3c, 0x1fff3d640d68ff01, 0xff01731e05bc7204, 0x9ec15dff3cfa0588, 0x8e000c019c000b3c, 0xdb5cff0189190601, 0x0ebc262424ff3c22, 0xbd61e4c2ff019727, 0xae0208bdd87b65ff, 0x82c2ff01a9130e01, 0x0b3cfb0d6cff3c8f, 0xbc0432f3ff01b707, 0x04190e3ca9d7a4ff, 0xd6090e01e4060d02, 0x16b8ff01d10b0601, 0x0cbb64f243ffbd52, 0x3beb5dd3ff01df01, 0xf6170e3d1bbd29ff, 0x3221ff01f1100e01, 0x12bcc8568aff3cc0, 0x3ce8497dff01ff00, 0x281a0e3df26d8fff, 0x15030b021a000202, 0xe3ffbd87f8edff02, 0xff0223000cbe061e, 0xa4c0bdff3d3705dc, 0x350006023a1e0e3d, 0xf1ffbd288984ff02, 0xff0243b104bb06df, 0x0f9d03ffbc4ca203, 0xdc080b0368c004ba, 0x78bc040298370502, 0x651206026a020d02, 0x7effbd0ca4e2ff02, 0xff0273000cbc92ab, 0xb7688effbca114ab, 0x85be04028a000fba, 0x3bff3ca9f32eff02, 0xff0293000cbc2e1d, 0x70dd4affbbf4e5ca, 0xae080602bc0107bb, 0x1fb6ff02a9020d02, 0x04bc3c6057ff3c1e, 0x3b2060cfff02b7be, 0xce000fbd1f3f65ff, 0x8ea9ff02c9020802, 0x07bc9b0a61ff3cfd, 0xbb85d6cfff02d702, 0x2451053bb52266ff, 0xf601080304030503, 0x9f86ff02f10b0e02, 0x05bd4c0754ffbc22, 0xbcabf30cff02ff01, 0x160c06bac938e7ff, 0x3553ff0311350e03, 0x0fbc954201ff3c96, 0x3c79a375ff031f00, 0x48be0438146976ff, 0x35060e033a000f03, 0x1fffbb5a848eff03, 0xff034300113d083f, 0x21a60eff3c3ff614, 0x550012035a220eba, 0x0eff3cbb8fffff03, 0xff03630007370509, 0x55a702ff3d016c76, 0xb41d0e03f800123d, 0x86080e0394190e03, 0x86a3ff0381000203, 0x0ebd1cce59ffbd81, 0x3c2d9880ff038f18, 0xa61c0e3d63a04bff, 0x9f13ff03a1000903, 0x0cbc6b7189ff3dad, 0xbd783cbdff03af00, 0xd8070dbde8b5c8ff, 0xc52b0e03ca010703, 0xbfff3c069d45ff03, 0xff03d3130b3d4737, 0x9a9850ff3cc4b282, 0xe5000903ea1f0e3d, 0x0cff3d13e322ff03, 0xff03f30107bd0d56, 0x72058dffbd832a5b, 0x2000020440c1043b, 0x0d000604122b0e04, 0x26ff3bac04e3ff04, 0xff041b300ebd61e4, 0x37ff46ffbdab0249, 0x2d000c0432060d3a, 0xc3ffbbd5bd21ff04, 0xff043b190e3c5f09, 0xbd6c2bff3dd48a37, 0x561d0e046400063c, 0x3207ff0451100b04, 0x05bd41914affbc91, 0x3bef49aeff045f74, 0x760f06bb8d9c41ff, 0xcb78ff0471320e04, 0x05bcc75d10ffbd97, 0xbae2aa04ff047f34, 0xc40208bcd28d46ff, 0x1c070d05a8000706, 0xb8010804d8230e05, 0xa5820504aa000904, 0xb1ffbb7174bcff04, 0xff04b3010c3e219d, 0x4e0053ffbcb3b2a6, 0xc5c80404ca8205bd, 0xe2ff3d23deccff04, 0xff04d3190e3b4106, 0x1d6b46ff3e85b2c9, 0xee300e04fc060d3e, 0x6c11ff04e9820504, 0x063d07bef2ffbc2c, 0xbcec78fcff04f702, 0x0ec604bb10c3f5ff, 0x8081ff0509001205, 0x12bd2f172dff3d79, 0xbce7c52aff051700, 0x64230ebdb792b5ff, 0x3601080544010c05, 0x2f12ff05310b0b05, 0x0cbde2c24dffbd6c, 0xbca2e759ff053f00, 0x560009bd88bfddff, 0x5288ff0551000205, 0x05be2bf325ffbded, 0xbd75ffafff055f7f, 0x880e0bbdcb78a1ff, 0x752f0e057a050b05, 0x09ffbcf50439ff05, 0xff0583ca04b9b459, 0x8ce38dffbd1732c1, 0x953401059ac804bd, 0x93ffbd4bc9b1ff05, 0xff05a3010cbd9bae, 0xd29396ffbdf7f0e6, 0xf4c90406380012bd, 0xc6c70405d46b0505, 0x5888ff05c1170e05, 0x0e3d7df018ffbbfb, 0x3d05a043ff05cf23, 0xe60d0ebc63510aff, 0xfcadff05e10b0b05, 0x0dbd42dbefffbc7f, 0x3c33ea27ff05ef07, 0x182f0ebcf4b793ff, 0x057a05060a010806, 0xb6ff3d88d74bff06, 0xff0613180e3d2aa8, 0x2ce652ffbc887e3d, 0x25cb04062a310e3d, 0x3affbd820845ff06, 0xff0633330e3d09f5, 0x8f8a78ffbd87dac7, 0x60c7040680000c3b, 0x4d260e0652000206, 0x1cffbd94e0e2ff06, 0xff065b2a0ebaa4cb, 0x436ed4ff3c2df9e5, 0x6d060d0672c8043d, 0x9bffbd044ceaff06, 0xff067b5c053da053, 0x9fbe37ffbc44e23b, 0x96820506a4260e3b, 0x0aceff0691230e06, 0x0cbd788811ff3c12, 0x3d82f3acff069f01, 0xb6070b3de40125ff, 0x0c55ff06b1010806, 0x07bc913441ff3b91, 0x3c3748a2ff06bf02, 0xe4010c3d1da8a3ff, 0x14050607580d0b07, 0xe60a0b06f4000f07, 0x6f36ff06e1030d06, 0x04bdd66241ffbccd, 0xbc68afb3ff06efcd, 0x066e05bdfc839eff, 0x1ef9ff0701030b07, 0x05bc2207f5ff3c84, 0x3d4472edff070f6f, 0x38550538ee9b07ff, 0x250c06072a0b0b07, 0x9fff3c98d232ff07, 0xff07331506bad1c9, 0x86da2affbda0d62c, 0x450b06074a000cbc, 0x0eff3d9f83b6ff07, 0xff0753030d3c9a6b, 0x615208ff3dfd3dcf, 0x80520507a0c9043e, 0x6d060d0772c70407, 0xf6ff3d012a2fff07, 0xff077b070d3dbf6a, 0x838ea0ffbd475e08, 0x8d070d079253053d, 0xdbffbdc835f9ff07, 0xff079b5f053cf842, 0xe5d34cff3d109307, 0xb6001207c4180ebb, 0x9bf8ff07b1000707, 0x0dbc1d488affbe07, 0xbc145b0cff07bf06, 0xd600073d343232ff, 0x2098ff07d1230e07, 0x04bb7b5459ff3d4b, 0x3cb8d99eff07dfcc, 0x6b00073d446a90ff, 0x10060d0827450508, 0xfd0b0b0802000208, 0x97ff3b027720ff07, 0xff080b1a0e3cbc4c, 0x85df23ffbc2e13be, 0xc5eaff0819030bbd, 0x0cff082229053d13, 0x3de60c18ff3d21f8, 0x083d0012084b220e, 0xc9fa92ff0838070d, 0x0d0ebe5a81f1ffbc, 0xffbc3f36c5ff0846, 0x085d6005be046238, 0x39765bff08580d0b, 0x030bbdaf0814ffbc, 0xffba624795ff0866, 0x08b30e0bbd07f6bd, 0x08852d0e08937305, 0xa8643fff08805405, 0xc6043955111bffbc, 0xff3cbd5815ff088e, 0x08a50107bd1c9c2a, 0x8916caff08a07905, 0x050bbcc002a2ffbd, 0xffbcfc45a3ff08ae, 0x08d7c704bc459b22, 0x08c46c0508c90006, 0x8c73ffbc11b5f3ff, 0xb5ff08d2050ebd7f, 0xbe6a6ed0ffbd8739, 0x08e4060d08e9120e, 0xe4d5ffbd18f0b8ff, 0x18ff08f2060d3a4d, 0x3bd2d70bff3cf8f0, 0x0b3b010d0d77000f, 0x099383040a1f8705, 0x092f020e094f070e, 0x091c13040921000d, 0x21c1ffbd5a6ed4ff, 0xf8ff092a8505bc80, 0x3d8ffdeaff3cb8eb, 0x093c00090941000d, 0xa0a4ff3dbbf51aff, 0xacff094a00083d0a, 0xbd1ec040ff3da98f, 0x0965000709730008, 0x1e5542ff09608605, 0x0a0ebc884efeff3c, 0xffbc9944b2ff096e, 0x0985010bbd5d1511, 0x1cddb8ff09808605, 0x5e04bda79640ffbe, 0xffbd64b2c0ff098e, 0x09db0107bd1ac07c, 0x09ad0e0609bb0008, 0x6acf6eff09a8030b, 0x030b3cbff6c4ff3d, 0xffbcbecbcdff09b6, 0x09cd8b04bddccfdc, 0xa41fe5ff09c80d0e, 0x1d0ebd6e6ed0ff3d, 0xffbcabeb61ff09d6, 0x09ff300e3c36ad86, 0x09ec880409f18904, 0xffa0ff3dfb99a8ff, 0xbcff09fa1d0e3de7, 0x3d02168fffbcc1d9, 0x0a0c00080a11090b, 0x590effbdc27823ff, 0xa0ff0a1abc04bd93, 0xbd322740ffbc8cd4, 0x0a6b78040aaf070e, 0x0a3d00020a4b000e, 0xb566dbff0a38000d, 0x030bbcb3338cff39, 0xffbd114660ff0a46, 0x0a5d0002bc1d79a8, 0x8597b6ff0a589005, 0x0207be399a96ffbd, 0xff3dd26a94ff0a66, 0x0a8f030ebde37ec8, 0x0a7c01110a81040b, 0x7f32ffbb75f9c7ff, 0x43ff0a8a0009bd3c, 0x3cf755cfffbcb13c, 0x0a9c90050aa18804, 0xfa7cff3da4b9e5ff, 0x64ff0aaa00063dda, 0xbd18326bff3cdfb8, 0x0ad79a040af7c004, 0x0ac41d0e0ac99904, 0x9a0bffbd0a69d8ff, 0xe1ff0ad29005be41, 0xbe53f5d4ffbe8404, 0x0ae4000c0ae9bf04, 0xb7d9ff3d53735dff, 0x1aff0af29405bc63, 0xbe000797ffbd0541, 0x0b0d00090b1b220e, 0x83d649ff0b089605, 0x8e05bd26f6f5ffbc, 0xffbe0001e8ff0b16, 0x0b2dc804bd8ba867, 0x4eb03aff0b28230e, 0x9005bc0be5f7ff3d, 0xff3e66e3a8ff0b36, 0x0c5b080e3e843fec, 0x0b8b96040bcf030d, 0x0b5d030e0b6b070e, 0x0cd663ff0b588804, 0x02093d0c9d82ffbc, 0xff3d381829ff0b66, 0x0b7d000cbd5b0138, 0xc78a2bff0b787c04, 0x00093cc8bfccffbc, 0xffbd9c5daaff0b86, 0x0baf01093d7b949d, 0x0b9c030b0ba19804, 0x0fccffbe300d71ff, 0x81ff0baa030ebe80, 0xbd2d9f46ffbded81, 0x0bbc030b0bc1070e, 0xe469ffbc2e8bdaff, 0xc8ff0bca030b3d58, 0x3d43b776ff3dae92, 0x0bf700070c17060e, 0x0be492050be9010e, 0x4aa4ff3c732f53ff, 0x62ff0bf29204bca5, 0x3bb7165bff3d1165, 0x0c048c050c09030b, 0x8cf0ff3ccacc65ff, 0x85ff0c12010ebc7d, 0xbc13b2f6ffbd7cf6, 0x0c2d030b0c3b0209, 0x740084ff0c280007, 0xa7043d04274aff3d, 0xff3ba50408ff0c36, 0x0c4d070e3d284c68, 0x1ea039ff0c48030b, 0xc704bb882151ffbe, 0xff3d64d433ff0c56, 0x0ceb0109bd8d91e9, 0x0c87010b0ca7230e, 0x0c74220e0c79ca04, 0xa9ddff3b0318dcff, 0x31ff0c8201073d75, 0xbcaecb8fffbe2c11, 0x0c9401120c990208, 0x451bffbdd5bb6fff, 0xedff0ca2170e3ce5, 0xbcd51e3dff3d3132, 0x0cbd00020ccb010b, 0x0619c3ff0cb8c604, 0x2a0e3d4f5386ff3b, 0xffbdf71ac2ff0cc6, 0x0cdd020dbd12265c, 0xc8e133ff0cd8300e, 0x0108bc00359aff3c, 0xffbbe630daff0ce6, 0x0d330d0ebda4aaac, 0x0d05a0040d13030b, 0x8135c4ff0d000002, 0x020d3c4ced75ffbd, 0xffbe0ddaf2ff0d0e, 0x0d25c404be40b04f, 0x55ddbaff0d20070b, 0x00023c4e82a9ffbd, 0xffbe114f80ff0d2e, 0x0d57140ebdca1240, 0x0d4402090d49020d, 0x95c1ff3db299b4ff, 0x54ff0d5202093d22, 0xbd5a6b92ff3ca29b, 0x0d64030b0d69180e, 0x7c6dffbe32fa89ff, 0x11ff0d72b004bde6, 0xbd46c371ff3d21b2, 0x0e9b010c0fb7bb04, 0x0dcb020e0e0fa704, 0x0d9d0e0b0dab0008, 0xceab84ff0d989105, 0x8e05bc4f72b4ffbb, 0xff397189e4ff0da6, 0x0dbd000cbc25a79d, 0x0bd31aff0db89105, 0x000ebc833903ffbc, 0xffbcf5023bff0dc6, 0x0def070ebc37094f, 0x0ddc000c0de19c04, 0xb592ff3b834d31ff, 0x57ff0dea060e3c93, 0x3c1b0174ffbc6d14, 0x0dfc00090e01080e, 0x6177ffbc845f5bff, 0x11ff0e0a0a0e3ba8, 0xbb67f074ff3cf385, 0x0e3700020e57ab04, 0x0e2400090e29070e, 0x9732ff3d2e3f6cff, 0x6aff0e32a8043acb, 0xbb6d7002ff3cbe0c, 0x0e44070d0e49a804, 0xd733ffbc036fa4ff, 0xdaff0e5200093d07, 0xbaf6258fff3c6ea1, 0x0e6dac040e7b030e, 0x9ea47cff0e68000c, 0x0109bd250a1affbc, 0xffbc1109c2ff0e76, 0x0e8dba04bb2ae038, 0xc4a658ff0e88b904, 0x140b3b4603f1ff39, 0xffbc8e8754ff0e96, 0x0f2b0d0ebc377790, 0x0ec700070ee78f05, 0x0eb49b040eb9b204, 0x4439ffbb4c5737ff, 0x4fff0ec200113c84, 0xbcabd521ff3d19f1, 0x0ed40b0e0ed9060d, 0xa00affbd42a8d3ff, 0x48ff0ee2020ebbf7, 0x3c73ddf6ffbc9385, 0x0efd060d0f0b0009, 0xa4843aff0ef8050b, 0x020ebd8e7e45ffbc, 0xffbd05c149ff0f06, 0x0f1d090b3c775b0f, 0x5149bdff0f18b304, 0x92053ca5f231ffbb, 0xffbb912c8dff0f26, 0x0f73050bbcd91aaa, 0x0f45010b0f53100e, 0x1f6e40ff0f400008, 0x070dbd8dee6cff3b, 0xff3d15b135ff0f4e, 0x0f65020b3d951c32, 0x070749ff0f60ae04, 0x060dbc29af6effbd, 0xffba9b785aff0f6e, 0x0f97150e3cffa606, 0x0f8400070f890b0b, 0xe480ff3dc49166ff, 0x00ff0f92120e3ce0, 0x3dcaec94ff3ca1ba, 0x0fa4b4040fa9170e, 0xff2cffbd2556f5ff, 0x77ff0fb2190e3ce3, 0x3c17e970ff3db5bd, 0x104bc00410d7070d, 0x0fe7220e1007060d, 0x0fd4bd040fd90007, 0x0ae4ffbb8a1847ff, 0xc8ff0fe2140e3c6d, 0x3b85089dffbc8309, 0x0ff4230e0ff9080b, 0x573dff3bd38d45ff, 0x17ff10020112bc05, 0xbd03e661ff3d7701, 0x101d0e0e102bbe04, 0x368770ff1018030e, 0x00123ca3874affbc, 0xff3c336978ff1026, 0x103d000cbc9773d1, 0xf0594eff1038030b, 0x00093c895c75ffbb, 0xff3d46eefeff1046, 0x109300123c970ee6, 0x1065000910730d0e, 0x39ef64ff1060cb04, 0x070ebcee301dffbc, 0xffbbdc3c77ff106e, 0x10851c0e3c7a0935, 0xced341ff1080000c, 0x1d0e3d2154efff3b, 0xffbd3c47a5ff108e, 0x10b78e053c18241d, 0x10a4300e10a98405, 0x1e09ff3c87c094ff, 0xcdff10b2220ebcd6, 0xbb0537c9ffbc6783, 0x10c4060d10c9c204, 0xf8c7ff3aa762adff, 0xb8ff10d2cd043d05, 0xbc8e4fb9ffbb800b, 0x11230e0b1167bf04, 0x10f5030b1103010c, 0xe80c7bff10f0010b, 0x000c3ca3dc40ffb9, 0xff3d06e7eeff10fe, 0x1115010b3d99e83d, 0x426c0cff11100008, 0x050b3d020a30ff3d, 0xff3dae923cff111e, 0x1147000c3e2cbdf0, 0x1134000711390008, 0x4a14ff3daf3a05ff, 0xc8ff114201083def, 0x3de7c41eff3e1000, 0x115400071159010c, 0xf148ff3e4b99f7ff, 0x9cff1162140b3e74, 0x3ea6236eff3e9ee1, 0x118fc30411afc704, 0x117c00091181140e, 0xf4b0ff3cbf9f4fff, 0x4fff118a090bbd54, 0xbde030d1ffbd80c7, 0x119c000c11a1050b, 0xf3dbffbca47fd5ff, 0x56ff11aa000cbd49, 0xbdc025cfffbd8eb8, 0x11c5000911d3250e, 0x4eb553ff11c0010c, 0x8f053db82b25ff3c, 0xffbd801fd3ff11ce, 0x11e5050bbcacb53a, 0xb312c2ff11e0000c, 0x0007bd43d6e5ffbc, 0xffbd8b0735ff11ee, 0x00000013bdd8acf1, 0x000003e800000008, 0x0000112d00000001, 0x085e830500000000, 0x0248b2040484c504, 0x00a00002012cad04, 0x003c7005005c9504, 0x00290b06002e330e, 0xc829ffbab77dbeff, 0x16ff00371206ba87, 0xbbf25d22ffbbbfe8, 0x00490012004e0111, 0xc113ffbba5c355ff, 0x08ff005702073ad9, 0xbc78175aff3c2b24, 0x007200120080aa04, 0xe2dc44ff006da704, 0x280e3ca5b34fffbb, 0xff3bfa9d6aff007b, 0x00920012bb6e6c24, 0xefc69aff008d1f0e, 0x0b0b3c8892b9ffbc, 0xffbb6652e5ff009b, 0x00e8000cbc99f13a, 0x00ba1f0e00c80011, 0xeb7753ff00b5070d, 0x140b3b1ed6abffbb, 0xff3b1991cbff00c3, 0x00da060d3cfb0111, 0xeee09cff00d50212, 0x00093d4ab8efffb8, 0xff3c9d6343ff00e3, 0x010c0b0ebc6c1617, 0x00f9020e00fe000f, 0x6cf5ff3af4fd56ff, 0xfeff0107070e3c42, 0xbc2c5819ff3af3d7, 0x01190209011e0006, 0x0f35ff3c834f27ff, 0x92ff01270106bcba, 0xbad96644ffbd2b1a, 0x0178070e01bc000f, 0x014a16050158b004, 0x60d1a4ff0145030b, 0x63053d26491affbd, 0xff3c28460cff0153, 0x016a1006bc7eb1bc, 0xff6c67ff01650f06, 0x1106bc8c31c9ffbd, 0xffbde3788bff0173, 0x019c00073a19dd3d, 0x0189b104018e050b, 0x8d3bffbc8e0df2ff, 0xc0ff0197310e3c8b, 0xba4abe28ff3cebd8, 0x01a9080601ae0906, 0x3c79ff3ca93989ff, 0x58ff01b7090ebd06, 0x3d16b41effbc9776, 0x01e4060e0204190e, 0x01d1150601d64505, 0xabedff3aba90c0ff, 0xf3ff01dfae04bbef, 0xbc470d6effbd20da, 0x01f1090e01f6060d, 0xd4e2ffbd441ec8ff, 0xccff01ff170e3c79, 0x3da5b163ff3c8686, 0x021a000602281a0e, 0x1b212cff02150008, 0x60053d969833ff3d, 0xffbdea01f5ff0223, 0x023a1e0ebd41f94f, 0x1b95c8ff02350306, 0x02073bba9b15ffbd, 0xffbc33155eff0243, 0x0368c0043c17c1d9, 0x0298800502dc0906, 0x026a0d0e02780008, 0xabbe13ff02650b0e, 0x0009bd1064f1ffbb, 0xff3bb77558ff0273, 0x028a0d0ebc84d3cc, 0xa2b9c9ff02850011, 0x300ebc511910ff3c, 0xff3c739158ff0293, 0x02bcb6043bbe9db3, 0x02a9000702ae000f, 0x93d9ffbc90b5a5ff, 0xdbff02b7090b3c96, 0xbd2a0d73ffbc82f4, 0x02c9010b02ce070d, 0xe315ffbd5e2ad7ff, 0x87ff02d7b7043bff, 0xbc3b7cf7ffbdc356, 0x0304050d0324000f, 0x02f1170e02f6070b, 0x4bdfffbc0a8dd0ff, 0xd3ff02ff000cbcf9, 0x3ccfa612ffbc0d7a, 0x0311030b0316010e, 0x8252ffbcc9c889ff, 0xb7ff031f020b3bdb, 0x3cf4d856ffbc8c52, 0x033a0b0e03480305, 0xd4b3aeff03351506, 0x0105bc0462efff3c, 0xffbd68e4cbff0343, 0x035a200ebcc354a3, 0x8e66dcff03551d0e, 0xbd043c5d3181ffb9, 0xffbc65a9cfff0363, 0x03f800113a0f8be0, 0x0394310e03b46305, 0x0381220e03860208, 0x1bf8ff3c86b81aff, 0x01ff038f010c3d7d, 0xbc753455ff3cb93b, 0x03a1020803a6030b, 0x5f11ffbc7a3360ff, 0xcfff03af00073cda, 0xbddcfd64ffbd5dae, 0x03ca180e03d81c0e, 0xf7ffc9ff03c5170e, 0x070dbe0efeceff3a, 0xff3d9a9bd4ff03d3, 0x03ea1d0ebd13ec5c, 0x59518aff03e5000c, 0x070dbdc8c5ddffbd, 0xff3c58186dff03f3, 0x0440c204bd27f503, 0x0412020804200006, 0x3507f6ff040d0009, 0x230ebcdc10a6ff3c, 0xff3cafe2eeff041b, 0x04325b05bcb14e78, 0xdc1c1aff042d4d05, 0x0002bd1f923effbb, 0xffbdc44730ff043b, 0x0464c404bcc4ec93, 0x045111060456220e, 0x9418ffbd3faa62ff, 0x95ff045f230ebc45, 0xbc858c26ff3d4d02, 0x0471000f04761105, 0x9e5aff3d1c6c90ff, 0x72ff047f00023b0c, 0xbbe5b557ff3c2656, 0x0518020d0622010b, 0x04d87a0504dd0008, 0x04aa010704b8c604, 0x39c197ff04a50007, 0x1806bc6c18c4ff3c, 0xffbd0884b9ff04b3, 0x04ca0207bc82d6ec, 0x712a60ff04c56f05, 0x6805bd244e6bffbd, 0xffbd1464abff04d3, 0xe5bd40ffbcee04c0, 0xea000204ef4d053c, 0x70ffbc757e15ff04, 0x0805137f05bd28e0, 0xff05006305050502, 0x83f885ffbc9626b8, 0x8130ff050e00023c, 0xff3c483c6bff3d32, 0x059f0112be07679c, 0x0544001205642b0e, 0x053102080536070d, 0x9fc0ffbd2e704aff, 0x44ff053f02083b6a, 0xbcefe887ffbbefb8, 0x0551670505560002, 0x94c3ff3bb26ac0ff, 0x00ff055f0207bc7b, 0x3ce87433ff3a43c3, 0x057a000c05880208, 0x134ae2ff05750108, 0x0002bcf3dde4ffbd, 0xffbd43ae21ff0583, 0x05915405bd571a3b, 0x9a6205bb25f700ff, 0x40ff3ce21b98ff05, 0x0505e702073becf6, 0x0e05b9000705c733, 0xbd00e0e5ff05b404, 0xc21906bd8c054aff, 0xc5ffbdba0965ff05, 0x0805d90007bd92a7, 0xbd7a2aafff05d402, 0xe26f05bd3627f3ff, 0x22ffbe17b949ff05, 0x0e060b320ebde8ac, 0xff05f8cb0405fd2b, 0x29cb58ffbd5314f7, 0x7090ff06060108be, 0x08bbd46c00ff3d6c, 0xff06185b05061d01, 0x89cb73ffbd9c288e, 0x0208bdc43a65ffbd, 0x000706b6010c0742, 0x1e0e0652070d0672, 0xc4ff063f0f060644, 0xbb633b64ff3d1835, 0x2fe54dff064d0012, 0x0e0bbc6a742dff3c, 0x60ff065f030b0664, 0xbd34b64bffbc8e95, 0x833c2cff066d7905, 0x0012bdd33f2effbd, 0xc70406886b050696, 0xff3d85fb2dff0683, 0x06910e0e3cb6b981, 0xb34bffbd088f60ff, 0x000f06a80f063c31, 0xff3cba6b3eff06a3, 0x06b1c6043b672a6b, 0xabbaff3c5a09c8ff, 0x070d06fe0107bc13, 0x820506d0280e06de, 0xff3c6cc4cbff06cb, 0x06d97b053d998e99, 0xbcc3ffbc60ddefff, 0x6d0506f0030bbd04, 0xffbc887b30ff06eb, 0x06f90e0bbd7b1fa1, 0x1fbbffbdb54539ff, 0x0d0e0722310ebe01, 0xabff070fcb040714, 0x3cb8ceb2ffbbf05d, 0xac2466ff071dca04, 0x00083d39ec94ff3c, 0x14ff072f320e0734, 0xbc92a1acffbd9d08, 0xb386c6ff073d330e, 0x280e3b892516ff3d, 0x0107078e010c07d2, 0x810507608205076e, 0xff3c80fe6fff075b, 0x0769c704bccfade0, 0x2ffaffbd8cb182ff, 0x0e0607806d053dac, 0xff3c62379aff077b, 0x0789ca04bc1b56ef, 0xecbfffbccb72d4ff, 0xc80407b27305baad, 0x06ff079f130507a4, 0xbc715fafffbdcb8d, 0xe21886ff07ad230e, 0xcb043d66952bff3a, 0x0dff07bf0d0e07c4, 0xbd9d8b25ffbcb93c, 0x75662fff07cd7b05, 0x0107bca71eabff3c, 0x000207fa2a05081a, 0xbaff07e70c0507ec, 0x3cea489fff3dc36c, 0xa3e5abff07f5020d, 0x000cbcba1255ff3c, 0xeaff08070007080c, 0x3c34fd8bffbbccea, 0x39910bff0815000f, 0x000fbc886cb6ffbd, 0x070b08300006083e, 0xffbd96332fff082b, 0x0839040dbc9a17db, 0x1febffbc273baaff, 0x530508500d0b3d6b, 0xffbccef8c1ff084b, 0x0859cc043bcdddb4, 0xcb93ff3c82ff05ff, 0x000d0cb1000f3d6d, 0x220e097487050a75, 0x0a0b08ad000208f1, 0x0107088800080896, 0xffbbbc6f85ff0883, 0x0891010bbcf220c4, 0x4eafffbda72adeff, 0x860508a81d0ebd02, 0xff3cbee045ff08a3, 0x4555f4ffbc8994d9, 0xc3840508d19304be, 0x583eff08be000708, 0x0c3db3dcb3ff3d53, 0xbce67827ff08cc00, 0xe300073ced6995ff, 0x6a36ff08de070e08, 0x0c3d0ebb52ffbd28, 0x3c7a64c0ff08ec00, 0x30b804bcd2c7d2ff, 0x0b00080919000209, 0xec0bff0906860509, 0x053dc76c38ff3d22, 0x3e50251cff091485, 0x228c043d384f90ff, 0x2b0e3d90b520ff09, 0xff3dd33112ff092b, 0x0954300e3db91850, 0x0941040609460007, 0x5484ffbd34bb5bff, 0x40ff094f010b3d4a, 0x3da14d4fffbc0525, 0x0961090b0966320e, 0x19c0ffbda0736bff, 0x2bff096f0007bc33, 0x3d5a4190ff3b267a, 0x09ae8d0509e9000b, 0x09928b0509972604, 0xc179ebff098d0007, 0x74ff3cbb2962ff3c, 0xff09a089053cee0b, 0x09a902073b0b0147, 0xca20ff3c58565fff, 0x4d0409c900073c54, 0xa3ff09bf900509c4, 0x3d2a7b9bff3d4314, 0xdb4d043cef53adff, 0xdae1ff09d6910509, 0x073d2a7138ff3d04, 0x3d48580bff09e401, 0x3175043d60e72bff, 0x034c040a1153040a, 0x6931ff09fe000e0a, 0x04bd0616ceffbbe4, 0x3acf5f21ff0a0c51, 0x238e053d2e1105ff, 0xbbfbff0a1e02070a, 0x02be2bd3caffbcfc, 0xbde32d92ff0a2c00, 0x55070ebd355ce5ff, 0x42030b0a47020e0a, 0x47ffbd03dcd9ff0a, 0xff0a508204bb710e, 0xca94a4ff3d8dc268, 0x6299040a679a043c, 0x86ffbd112419ff0a, 0xff0a70250ebe4373, 0xe72649ffbabdf6df, 0x09030e0b95290ebc, 0xa5030d0ac501070b, 0x92050b0a97a4040a, 0xb8ffbc25b1f2ff0a, 0xff0aa000093c90d2, 0x6d4f99ffbe0427ae, 0xb201080ab7000ebb, 0xb5ffbc14d95cff0a, 0xff0ac0000cbe3873, 0x9f42d6ffbcb77079, 0xdba5040ae9a7043c, 0x6269ff0ad69c040a, 0x0d3dc0a0c0ffbcf1, 0xbe207a32ff0ae402, 0xfbbc04bd28aa19ff, 0x5accff0af6b3040a, 0x08bd34b666ff3c99, 0x3d85919bff0b0401, 0x51ca043d0cd3c6ff, 0x2301080b31220e0b, 0xfe82ff0b1e1f0e0b, 0x0ebcb17439ff3c81, 0x3d206764ff0b2c19, 0x430109bc1d882fff, 0x671cff0b3e030b0b, 0x0e3c74e091ff3d51, 0xbd864253ff0b4c23, 0x75cc04ba425fe8ff, 0x6202080b6793050b, 0xeeff3c81723cff0b, 0xff0b70230ebd8b72, 0x5579d7ffbdd86cf7, 0x82220e0b87cd043d, 0xd9ff3cc92854ff0b, 0xff0b9096053dbdf7, 0x38d6d3ff3dc50ffe, 0xe184050c2500023e, 0xb3020d0bc1010b0b, 0x61c2ff0baea7040b, 0x073c5fadc6ff3da1, 0xbd2fc448ff0bbc00, 0xd300093ca0841bff, 0xae2bff0bce330e0b, 0x0e3dd05c1eff3d3f, 0x3e5fde03ff0bdc2a, 0x05cc043dae311bff, 0xf2020d0bf700090c, 0xeeff3c7b0219ff0b, 0xff0c00c204bc2fb4, 0xbf8ae0ffbd91e959, 0x12030b0c1700073c, 0x82ff3df793abff0c, 0xff0c2001083d4bec, 0xafc4b8ff3cf8536d, 0x4d00070c6d040bbd, 0x3ac2040c3f2a0e0c, 0x9dffbe0a2ef6ff0c, 0xff0c48c504bd63b3, 0x67a38aff3cd62643, 0x5ac9040c5fcb04bd, 0xfaff3c130a2eff0c, 0xff0c682b0ebc8e07, 0x1d90b6ffbdea85c7, 0x83c5040c910009bd, 0x4f02ff0c7e2a0e0c, 0x073d2bc870ffbc0b, 0xbc8d8d56ff0c8c00, 0xa301093c9cc3e6ff, 0xd931ff0c9e2a0e0c, 0x09bcf485dfffbe14, 0xbdd6e734ff0cac02, 0xf10d0ebe2d0930ff, 0x4900070dd587050e, 0xe578040d0591040d, 0xd2070d0cd70b0b0c, 0xf1ffbbb9153eff0c, 0xff0ce0020e3bd94e, 0x6b8684ffbb88701c, 0xf2020e0cf700123c, 0xfbffbc415c27ff0c, 0xff0d00060dbb08a3, 0x856d58ff3aeb7740, 0x1bb2040d2901093c, 0xb18bff0d16b1040d, 0x123d62d2b4ff3c1b, 0x3d33c0ccff0d2400, 0x3bba04bd01992cff, 0xda1fff0d36010c0d, 0x043c532670ffbbaa, 0xbc557a88ff0d44be, 0x91060dbd44c079ff, 0x63b3040d71010c0d, 0x3b7cff0d5e0b0e0d, 0x123b105171ffbbf5, 0xbd06d330ff0d6c01, 0x8301123bab27f7ff, 0xaac9ff0d7eb2040d, 0x0bbd49c223ffbce8, 0x3c4ee742ff0d8c03, 0xb50207bc83d0b3ff, 0xa2a4040da7a8040d, 0xffff39cfec6dff0d, 0xff0db0a904bc9b90, 0x05d30cff3d817aef, 0xc200080dc700123c, 0x54ffbbf877f7ff0d, 0xff0dd0010ebcbb71, 0x35182dffbcad5415, 0x21000e0e65c0043c, 0xf300080e01000c0e, 0xc5eeff0dee00090d, 0x04bb3cd6d7ffbbe5, 0xbc40361dff0dfcb3, 0x130009bb331b09ff, 0x313bff0e0e0d0b0e, 0x11bc8464e4ffbd02, 0xbc5f141fff0e1c00, 0x450007bb74f1dcff, 0x3200120e37b2040e, 0x7dffbb20061fff0e, 0xff0e4000113af80c, 0xa814baff3c2c4615, 0x52010c0e57060dbb, 0xedffbbed5094ff0e, 0xff0e60bc04bd23cf, 0x5298efffbb37f22f, 0x8d070e0ead00093c, 0x7a010c0e7fcb040e, 0x6effbaf03917ff0e, 0xff0e88000cbc4bfe, 0x41fe19ffbc782940, 0x9ac7040e9f060dbd, 0xbcffbcfa6161ff0e, 0xff0ea89305bc50a0, 0x9d93c6ffbc1ab9fa, 0xc3070e0ed10b0ebc, 0x4cc3ff0ebe070d0e, 0x09bd6093ebffbb08, 0x3d1f76daff0ecc02, 0xe3c604bb4d2b25ff, 0x8c58ff0ede070d0e, 0x0dbd982bf9ffbc97, 0xbcad8986ff0eec06, 0x11000cbd5fbb76ff, 0x41220e0f85000910, 0x13100b0f21190e0f, 0xa045ff0f0ea6040f, 0x0e3b094629ffbc02, 0x3a844087ff0f1c18, 0x331e0e3cd169d9ff, 0x13d7ff0f2e1c0e0f, 0x04bcd35a0aff3bee, 0x3bcd689eff0f3cc2, 0x65230ebc03a102ff, 0x52070b0f57070d0f, 0x82ffbb5d65f6ff0f, 0xff0f60050b3c8657, 0xabb640ffbcbae25c, 0x7200020f77260ebd, 0x82ffbd30a17cff0f, 0xff0f80270ebbafc6, 0x804744ffbd8223de, 0xad0e0e0fcdc40438, 0x9a01090f9f070d0f, 0xe8ff3ba66d2fff0f, 0xff0fa8b904bc0dcb, 0x8616efffbcc27c8d, 0xba060d0fbf180ebd, 0xf8ffbc91fac1ff0f, 0xff0fc8060dbd1497, 0x86bceeffbba5c8aa, 0xe3070d0ff19005bc, 0xdadcff0fde00020f, 0x0bbcdc876affbc2c, 0xbc86d128ff0fec05, 0x03190ebd767195ff, 0xa438ff0ffe000210, 0x0bbc4ecf52ffba6c, 0xbc681822ff100c0c, 0xa1150ebd0e96e8ff, 0x3d070b105d010910, 0x2a0012102f100e10, 0x93ffbb5f3563ff10, 0xff1038140e3cf5c9, 0xbbb975ffbce38bf4, 0x4ac804104f060d3b, 0x2fff3ce30e24ff10, 0xff1058010cbc9c3f, 0xb0f11fff3d16d9cc, 0x7302091081060d3d, 0x8b72ff106e010c10, 0x0b3d33b8d1ff3be6, 0xbc823d97ff107c07, 0x930012bce1f969ff, 0x2fc2ff108e840510, 0x04bcf07f54ff3ca2, 0xbd364e2aff109cc5, 0xe9180ebd9588edff, 0xbb000910c9c00410, 0x80a2ff10b6870510, 0x043be017c6ffbc5f, 0xbd181f05ff10c4ba, 0xdb0007bd6e4112ff, 0x930eff10d6010c10, 0x0cbd80fd00ffbd0c, 0xbbaacfcbff10e401, 0x0d1c0ebcdb953fff, 0xfa0a0b10ff000911, 0x55ff3c12dcebff10, 0xff1108060d3d793b, 0xe520bcff3b0d8eaa, 0x1a0a0b111f1d0ebc, 0x6fffbca4e0c5ff11, 0xff1128280ebd3f91, 0x49f19aff3c60b7f4, 0x00000800000013bc, 0x000001000003e800, 0x0000000000116300, 0x721906089d830500, 0x2c000f0248530504, 0x5cc50400a0030b01, 0x2e350e003c4a0500, 0x6a07ff0029000800, 0x013a3c7ff2ffbb34, 0xbbd87efaff003741, 0x4e0106bd4c522dff, 0x9d6aff0049020700, 0x023cebb181ff3bd5, 0xbd4a4585ff005700, 0x80000c3b94ba9fff, 0x6d25050072390500, 0xcdffbd4400d8ff00, 0xff007b000dbcc060, 0x747c4dffbd1e7aaa, 0x8d360e009200063c, 0x27ffbde95594ff00, 0xff009b020dbcb9d0, 0x0e4e2dffbbdf4832, 0xc8250100e8a9043d, 0xb5000c00ba000800, 0xeaffbbe6f1bdff00, 0xff00c30f01b9b529, 0xbb1856ffbaaded98, 0xd5910400da010e3b, 0x84ffbb10512cff00, 0xff00e3190e3c88ce, 0x9c4093ff3c808ba8, 0xfe000c010c000d3b, 0xa083ff00f90a0600, 0x0ebd356a02ffbb8e, 0xbd515668ff010703, 0x1e010d3ceabff9ff, 0xbc38ff0119000c01, 0x0e3a8f55a3ffbcb5, 0x3c989526ff012736, 0xbcc304bc82e715ff, 0x58b5040178510501, 0x45b404014a011201, 0x4cffbabd8b01ff01, 0xff0153170e3bb244, 0x269b7cffbbd81557, 0x650207016a0112bb, 0xe3ff3b9abc80ff01, 0xff01730b0b3d19ec, 0xb49129ffbb1f827c, 0x8e0012019c8e043b, 0x4577ff0189100e01, 0x0cbc26eb10ffbb34, 0x3a9edb23ff019701, 0xae010c3c279cfdff, 0x3ed7ff01a9ae0401, 0x08bc4cb1e7ff3957, 0x3a455338ff01b700, 0x04c7043c9febb3ff, 0xd6011201e4c50402, 0x6dedff01d1010701, 0x043d58599affbc8f, 0xbddb94e9ff01dfc4, 0xf6030bbbf3dcfbff, 0xebcbff01f1c60401, 0x07bc75ef1fff3a8e, 0x3c84a01fff01ff01, 0x280c0b3d25e13cff, 0x15030b021a0b0b02, 0x03ff3ba3f0eaff02, 0xff02230f06bc714d, 0x0bc000ffbdc8a73b, 0x354805023a5105bd, 0x49ffbbbd437dff02, 0xff0243c8043d279d, 0xfb52d2ffbd55c0eb, 0xdc0108036802113c, 0x7800120298000c02, 0x65270e026a2a0e02, 0x93ffbbc2cca3ff02, 0xff0273bb04bbb324, 0xe3c6e6ffba8b0e2a, 0x852a0e028a300e3c, 0x9cffbb2c388bff02, 0xff02930306bbdf0b, 0xf5e2dbff3a9d4053, 0xae020902bc0008bc, 0xed9cff02a9a80402, 0x043bac3d46ffb894, 0xbc39343eff02b7a8, 0xcec804bce0de6aff, 0xeb4fff02c9000f02, 0x073b9b68fcff3c8d, 0xbbe5fc13ff02d701, 0x2402073d1623d7ff, 0xf6000c0304140b03, 0x3fb3ff02f1130b02, 0x04bc3ccedeffba3d, 0x3c4e6c38ff02ffbc, 0x16000cbb183f3fff, 0x7e27ff0311550503, 0x123bee5d30ffbcc9, 0x3d10cd69ff031f00, 0x481d0e3c909af1ff, 0x35050e033a0b0b03, 0xd6ffbc945a71ff03, 0xff03430002baa5ac, 0xbaf11cffbd165092, 0x555f05035a000cbc, 0xfdff3c168322ff03, 0xff0363cd04bbbb2d, 0x562702ff3c63e3b9, 0xb4170e03e64f043d, 0x86000c03941f0403, 0x8740ff0381030e03, 0x0dbce94c41ff3baf, 0x3c1ea160ff038f00, 0xa63b043d6faf08ff, 0x6e6dff03a1250403, 0x0b3d286bc0ff3c04, 0xbca5c5b6ff03af03, 0xcf4c043c7865beff, 0x3388ff03c1340103, 0xb0ff03ca6105bd4d, 0xbcde0e38ffbcab00, 0x03dc010703e1030b, 0xa236ffbdaa85f6ff, 0x02bd30c7c8ffbd87, 0x0b040e5a04042e00, 0xff03fb0107040003, 0xb86faaffbda736b4, 0x1780ff04096a05bd, 0x0e3cb175d0ff3bec, 0xff041b3501042022, 0xc7d2e8ff3d4fc740, 0xe9f2ff0429030b3d, 0x043db039fbffbb2a, 0x0b04440d0e04525e, 0x3df77b6aff043f03, 0x4d00083e1c67e4ff, 0xd8ff3d5571abff04, 0x080464030b3dcfb1, 0x3e2b880aff045f00, 0x6d00073e524cdfff, 0x70ff3de5ab98ff04, 0x0406a0a7043df818, 0x0e050a750405969b, 0x0704a6000c04c604, 0xff04930405049800, 0xb1ca51ff3a786c97, 0xd2f7ff04a10008bb, 0x0ebc51762bffbba6, 0xff04b3040d04b801, 0xe58495ffbc087a5f, 0x5014ff04c16104bc, 0x0bbe0ea93effbb93, 0x0204dc000b04ea01, 0x3ba48e03ff04d700, 0xe5070e3d18d924ff, 0xb8ffbc74801cff04, 0x0204fc030dbbeba6, 0xbd5e82c3ff04f700, 0x05000fbd2ed02cff, 0xe9ffbd009a08ff05, 0x050552070bbc95eb, 0x0f0524090e053210, 0xbce53840ff051f00, 0x2d000bbc4956d3ff, 0x67ffbc8321c6ff05, 0x0f0544000c3c2217, 0x3ca133dcff053f00, 0x4d000bbbcd669bff, 0x8dffbb0f9ce3ff05, 0x0e0576000fbce838, 0xff05638b04056801, 0x6c1b65ffbccaf372, 0xe22aff0571000cbd, 0x0ebde993cfffbd8f, 0xff05830007058800, 0x7c62d4ffbb9e05a2, 0xff74ff05910405bc, 0x05bc1b4641ffbcd2, 0x0805e20d0e061d0b, 0x0705b4000f05c200, 0xbdf0ec21ff05af00, 0xbd0111bda25432ff, 0x50ffbc57c683ff05, 0x0b05d4a504bb68ed, 0x3d2d44acff05cf03, 0xdd0605bd075559ff, 0x4bffbdb7349bff05, 0x040606130ebcc68f, 0xff05f3030505f89c, 0x2fc055ffbcf7cf1c, 0x56a8ff0601020d3b, 0x0dbd8b542effbd62, 0xff0613170e061802, 0xa5f12effbbeee3ab, 0x0c053e27e796ff3d, 0x010e063c0111065c, 0xd0ff0632000e0637, 0xbbb9b638ff3ad4b3, 0x4e000cbbc4a700ff, 0xce95ff0649000e06, 0x02bd6fbef3ffbdbd, 0xbde2dd08ff065700, 0x800002be09392eff, 0x6d18050672a00406, 0xfeffbb5f0de4ff06, 0xff067b020d3d26be, 0xb04c48ff3d5192e2, 0x8d040e069211053d, 0x6cffbcbb43b5ff06, 0xff069b01073d6365, 0xd538ecffbb8c14c7, 0x34000807c00d0e3c, 0xd0000f06f00c0507, 0xbd070e06c2020706, 0x90ffbdb1c20cff06, 0xff06cb000e3c12d6, 0xf68191ffbd0d23d6, 0xdd010e06e201113c, 0x3effbc3b9aa9ff06, 0xff06eb0002bc9a21, 0xd2c106ff3c85b822, 0x06000707140002bb, 0x8b64ff0701000b07, 0x05baf39cb5ffbd23, 0xbd2cdbc3ff070f25, 0x26070ebb8d2e60ff, 0xb49cff0721010707, 0x053b178608ffbbb7, 0x3d137297ff072f11, 0x7c000f3a5d008fff, 0x4e0108075c020707, 0xd06dff0749070507, 0x0eb9b71f2effbd1b, 0x3a9d5e6bff075700, 0x6e000c3cd5c411ff, 0xee83ff0769030507, 0x053cf4db9dffbc79, 0x3c67f1ddff077701, 0xa0b3043d7c4eefff, 0x8d030b0792011107, 0x58ffbbd8dcefff07, 0xff079bae04bc46f1, 0xa8a3baffbc1ac312, 0xad000707b2030ebb, 0xb5ffbba526dfff07, 0xff07bb130bb9a3d3, 0xd47eaeffbbe9e0d2, 0xfa140e0835c204bc, 0xde0f0e07ec190507, 0xab20ff07d9070507, 0x053d012f10ff3d6e, 0x3dbd2923ff07e711, 0xf5bf043d3afe76ff, 0x84ff3e0f5872ff07, 0x0d081e030b3e05ae, 0xff080b0705081002, 0x30918bff3cfc677c, 0x820cff0819b0043c, 0x0c3d749ce0ff3d1a, 0xff082b0008083000, 0x2401a5ff3d0bbb05, 0x00073dbb99e3ff3d, 0xc604085d000c0862, 0x9eff084a0002084f, 0xbb054055ff3d04d3, 0x2045c0ff0858110e, 0xa6ffbc474d80ffbc, 0x07087dc3043d3cbe, 0xbca45b2cff086f01, 0x01dd7eff08781005, 0x0207bcdb36ccffbd, 0x13ff088ac804088f, 0xbb690680ffbbfc08, 0x97b1bdff0898010b, 0x000fbbedbd80ffbc, 0x87050aab010d0ce7, 0x190e0930220e09b3, 0x070e08d57f0408f5, 0x59ff08c2020e08c7, 0x3d8eea28ffbc3c4c, 0xbfef28ff08d00008, 0x8c04bd133ff6ffbb, 0x71ff08e20d0e08e7, 0x3cdb7d9cff3d86b7, 0x6c98f9ff08f0120e, 0x010b3db30b64ff3b, 0x0002090b01080910, 0xffbd98b63aff0906, 0x11174effbd422c0a, 0x1d090b09229204be, 0x6bffbd2ebcc7ff09, 0xff092b0008bc66d5, 0xcc57c4ff3c2b7dcf, 0x580002096fb804bc, 0x45030b094ab20409, 0xb2ff3d292823ff09, 0xff09530008bbb5be, 0x3b5498ff3d9eae25, 0x658c04096a000d3e, 0x08ff3d823ca0ff09, 0x3d4bc518ff3db960, 0x098500070993300e, 0x22a89bff09800406, 0x030b3d3618deffbd, 0xff3c8521a0ff098e, 0x09a5320e3da25be8, 0x9067e3ff09a0090b, 0x0007bc2130c0ffbd, 0xff3b15d42bff09ae, 0x0a1f000b3d446e30, 0x09df8f0509e49005, 0x09cc8d0509d10207, 0x2cd3ff3cadc17fff, 0x7fff09da89053ce3, 0x3c3f82b6ff3afa35, 0xff00073d2f9293ff, 0xf5940509fa0a0e09, 0x6cff3d1bf8e4ff09, 0x3cd764e9ff3d182a, 0x0a0c91050a114d04, 0x65e6ff3cf51ef6ff, 0x3dff0a1a01073d19, 0x3d4a69a7ff3d344f, 0x0a4702070a67c004, 0x0a3473040a399405, 0x3898ffbce1e94aff, 0xceff0a42230ebbde, 0xbe07e08fffbd0a85, 0x0a549a040a591d0e, 0xa817ffbd8da022ff, 0xb0ff0a62230ebc4e, 0xbe39a984ffbce431, 0x0a7d00090a8b220e, 0x709073ff0a789605, 0x8e05bd15aca5ffbc, 0xffbde61dd8ff0a86, 0x0a9dc804bd7aca4d, 0x3a9cf9ff0a98230e, 0x0107bbb98a09ff3d, 0xff3e70f054ff0aa6, 0x0bcb080e3e52b090, 0x0afb020d0b3f0007, 0x0acd070e0adb9604, 0x0a2286ff0ac8030e, 0x000c3d1b27f2ff3b, 0xffb8052ba8ff0ad6, 0x0aed0109bd77658c, 0xa507feff0ae8a704, 0x070ebc08e790ffbd, 0xffbb8edda3ff0af6, 0x0b1f000c3d940a51, 0x0b0c6f040b11060d, 0x57d4ff3c92ee29ff, 0x42ff0b1a0112bd4e, 0x3dd42299ffbb9cd3, 0x0b2c00090b31000e, 0x2030ffbd8e479bff, 0x43ff0b3a02093be8, 0xbb10c4f4ff3ce700, 0x0b6796040b87030d, 0x0b5473040b59070e, 0x66b5ffbca819ecff, 0xe4ff0b62000c3ce4, 0xbda820c4ff3c520a, 0x0b7400080b799904, 0xb4f6ffbe4d2ec3ff, 0x00ff0b82030ebdb5, 0xbd105ec1ffbdeccc, 0x0b9d73040bab010e, 0x866b18ff0b98000e, 0x7f043d9ca156ffba, 0xffbe11eb67ff0ba6, 0x0bbd9104bd22f9fe, 0xd8b0a8ff0bb87b04, 0x97043d3646e1ffbc, 0xffbdacea4eff0bc6, 0x0c5b01093bd11592, 0x0bf7190e0c17230e, 0x0be4060b0be90111, 0x0efaffbd4e583fff, 0xceff0bf2170ebe07, 0x3d4cbf97ff3cc7a2, 0x0c0400070c09220e, 0x893dffbcf87a18ff, 0x69ff0c12c9043ca0, 0xbc93bcb0ff3d3796, 0x0c2d250e0c3b260e, 0xed5b0eff0c280009, 0x8c053e235516ffbc, 0xffbd43b7e7ff0c36, 0x0c4d290ebe1e23fa, 0x4407adff0c489205, 0x00073e04312cff3d, 0xffbbe34f51ff0c56, 0x0ca30d0e3c0ad80a, 0x0c75a0040c83030b, 0x7fd135ff0c700a0e, 0x030dbd8a092aff3d, 0xffbe00908dff0c7e, 0x0c95c104be3132bb, 0x46faabff0c90070b, 0x0a0e3c8788eaffbd, 0xff3cb218c0ff0c9e, 0x0cc70e0ebdab0545, 0x0cb402090cb9c204, 0xf1acff3d76e7d4ff, 0xceff0cc2020d3c2c, 0xbd9b7466ff3ca170, 0x0cd486050cd9120e, 0xe6b5ffbc515208ff, 0xcfff0ce2140ebe29, 0xbd4f6d25ff3cce07, 0x0e0b010c0f27bb04, 0x0d3ba6040d7fa704, 0x0d0da5040d1b0012, 0x1238c9ff0d08060d, 0x080ebb79ae88ffbd, 0xffbd24e891ff0d16, 0x0d2d050e3c022213, 0xe4fa72ff0d288f05, 0x070ebc29629bffba, 0xff3c8b032dff0d36, 0x0d5f0b0ebb3d8efa, 0x0d4c020e0d510009, 0x5db8ffbc8526bcff, 0x37ff0d5a020ebd5d, 0x3c860cbeffbce1cb, 0x0d6c050b0d710012, 0x1401ffbc13f26cff, 0x85ff0d7a060dbd02, 0x3d9aeb3dffbbec74, 0x0da7050b0dc7ab04, 0x0d94070d0d99a804, 0xc1abffbc2c4ac2ff, 0x44ff0da200123c90, 0x3bc65b63ffbc2e39, 0x0db4aa040db90002, 0xed37ff3cb96edeff, 0xd1ff0dc20b0ebc59, 0x3c819e13ff39fb9d, 0x0dddac040debae04, 0xe03926ff0dd80d0e, 0x020ebbb6a02dffbc, 0xffbcb12f49ff0de6, 0x0dfd060dbb230ca3, 0x1e77f6ff0df8ba04, 0xb104bc513006ffbb, 0xff3c807c5bff0e06, 0x0e9b0b0ebb111049, 0x0e370a0e0e570009, 0x0e24080e0e29060d, 0x1b93ffbd00f2d3ff, 0xbdff0e32070e3c8a, 0xbd266d8aff3be453, 0x0e4401070e49050b, 0x8217ffbde4874eff, 0xb9ff0e52130bbda2, 0xbdba094fffbe1c8c, 0x0e6d000e0e7b070e, 0xa03edfff0e680011, 0x070dbb0fbdb9ffbc, 0xff3bfc3af7ff0e76, 0x0e8d0b0bbd4234c4, 0xf4b349ff0e88050b, 0x01093dab0c5dff3c, 0xffbd78d767ff0e96, 0x0ee30011bc896725, 0x0eb50d0e0ec3050b, 0x823390ff0eb0070d, 0x070dbdf32d2effbb, 0xffbbdd43c5ff0ebe, 0x0ed5b4043d636736, 0x82629fff0ed00a0b, 0x8b053d473008ffbc, 0xff3daaf324ff0ede, 0x0f07b2043e149908, 0x0ef4120e0ef9b104, 0x4fe7ff3d19e862ff, 0x62ff0f020009ba42, 0x3d9afbb8ff3e1b04, 0x0f1486050f19b504, 0x1ed1ff3c9d3d88ff, 0xc4ff0f22050bbcce, 0x3d1149f2ff3bf7da, 0x0fbb230e1047070d, 0x0f571c0e0f771d0e, 0x0f44bf040f490d0e, 0xb392ff3bcce62dff, 0x97ff0f520109bc02, 0xbc724ddeff3c5473, 0x0f64000c0f69070b, 0x1455ffbb309206ff, 0xc5ff0f720008bcb0, 0xbd5057abffbccd77, 0x0f8d01120f9b0009, 0xfaf9faff0f88000c, 0x220e3cd80e75ff3b, 0xffbca8b99bff0f96, 0x0fadc204b93dbd3d, 0xa74011ff0fa8030b, 0x000cbba1d593ffbc, 0xffbc922c8dff0fb6, 0x10030002bd058e24, 0x0fd584050fe32a0e, 0x2d8013ff0fd0270e, 0xbc04bd7d7070ffbe, 0xff3d6c3075ff0fde, 0x0ff50007bd28cf8a, 0x52f813ff0ff0000c, 0x2b0ebcc97828ff39, 0xff3c895d16ff0ffe, 0x1027140bbc12bec5, 0x101484051019090b, 0xea63ffbd0f3318ff, 0x15ff10228405bc3d, 0x3b19b0a6ff3d8d71, 0x1034840510392d0e, 0x817cff3d61d48fff, 0x4cff1042cc043c01, 0xbd02bd1dff3b8fbb, 0x1093050b10d7bd04, 0x1065010b1073010c, 0xda255bff1060000c, 0x080e3bbfdf69ffbb, 0xff3d0bd416ff106e, 0x1085bc0439d1eb1c, 0x127c4dff1080010b, 0x00073dbc74abff3d, 0xff3caffd98ff108e, 0x10b7010c3d17ebb0, 0x10a4000c10a90e0b, 0xd456ff3d0ce17aff, 0x56ff10b2000c3da0, 0x3e3eac0eff3dce84, 0x10c40c0b10c90008, 0x030eff3e33c560ff, 0xd0ff10d285053e90, 0x3db43826ff3d3403, 0x10ffc704111f1f0e, 0x10ecc30410f1190e, 0x711fffbca13770ff, 0xc0ff10fa010cbd67, 0x3d9886bbff3cc059, 0x110c000c11110009, 0x1bb2ff3bcb60b6ff, 0xbdff111a90053d63, 0xbc498e41ffbd6108, 0x1135000c1143050b, 0xc7e587ff1130cb04, 0x00073bbaf5d8ffbc, 0xffbd1bdf7eff113e, 0x1155230ebd90c304, 0xd53e91ff11508505, 0x250ebd9b6270ffbd, 0xff3dda87b9ff115e, 0x00000013bd8a3d55, 0x000003e800000008, 0x000011bd00000001, 0x08f7870500000000, 0x02480012047b8a04, 0x00a08904012c260e, 0x003c7b04005c070d, 0x00296e04002e7804, 0x7f6cffbb539e74ff, 0xe5ff00370d0ebb8e, 0xbbe7ba92ff3bf7dc, 0x00490007004e020e, 0xf010ffbc35817eff, 0x8bff0057070ebcd4, 0xbc07a48bff3bfb81, 0x0072850400803e01, 0xbf2c8dff006d0007, 0x0e0ebaa5f53dffbb, 0xff3d534c1cff007b, 0x009276043c057328, 0x1d9856ff008d020e, 0x0009bb099c06ff3b, 0xff3c926199ff009b, 0x00e8220ebc871e0d, 0x00ba000900c8030e, 0x32362eff00b50002, 0x01093bcbc8adff3d, 0xffbd3bc7e1ff00c3, 0x00da070ebc893c92, 0xf09e7cff00d5070d, 0x070dbdb21045ffbc, 0xffbca511e4ff00e3, 0x010c30013cae0d60, 0x00f9330500fe2a01, 0xf43eff3d11c1e8ff, 0x20ff010702073c05, 0xbb4c4f60ff3d1c98, 0x01194105011e050b, 0xb21eff3c02067cff, 0xe7ff01270b0bb9aa, 0x3bdc2dc1ff3cd45e, 0x01782a0e01bc7f04, 0x014a030b01587704, 0xbb158bff01453f01, 0x73043c0e774affbb, 0xffbc26f2f6ff0153, 0x016a280ebcf57375, 0xe19e88ff01653905, 0x2705bcb7feadffbb, 0xffbd3a0d18ff0173, 0x019c7904bcfa8ddd, 0x01891401018e6904, 0xeca0ffbb9ec93dff, 0x0aff01972801bc02, 0x3b33942effbb0f9a, 0x01a9000901ae3601, 0xf4d7ffbc523f87ff, 0x60ff01b7010b3c2b, 0x3c245033ffbc577e, 0x01e439010204070b, 0x01d1280e01d62a0e, 0x50cfffbc79b319ff, 0xdfff01df8204bd7b, 0xbc2e9897ffbcccb7, 0x01f1280e01f62a0e, 0xfa49ffbbd1d88eff, 0x4eff01ff010bbd1d, 0x3accab10ffbc11d1, 0x021a280e02282a0e, 0xf819d8ff02158804, 0x2e05bc4ca6fcffbc, 0xffbdae4bdfff0223, 0x023a0108bd680b90, 0xb82c5dff02358804, 0x010c3b0558b7ffbc, 0xffbd1e8ca6ff0243, 0x035f8904bcb1080a, 0x0298000f02dc0212, 0x026a55040278190e, 0x49aaf2ff02653104, 0x000d3bbb479bffba, 0xff3d0ba708ff0273, 0x028a40013c15dce2, 0x1ebaddff0285010b, 0x85043aeb31e9ffbc, 0xffbcc14bf4ff0293, 0x02bc00023be15bd7, 0x02a9740402ae8704, 0xf3eeffbadc230eff, 0xd9ff02b7080e3b0f, 0x3c2594f2ffbcb195, 0x02c9011202ce4905, 0xb317ff3c1c9529ff, 0xe8ff02d7060dbba8, 0x3c8af3edffbb0b7b, 0x03040d0e03244f04, 0x02f1000c02f6000d, 0xecc5ffbc197839ff, 0x50ff02ff3b043c91, 0xbab8be5dff3d22dd, 0x0311000703163401, 0x72adffbd38ae60ff, 0x58ff031f4c04bd88, 0xbd4f724effbc864b, 0x03312905033f2601, 0x3a4505bdb274faff, 0xd0ffbdc27571ff03, 0x0403516d04bdb5ae, 0x3daf6d98ff034c6c, 0x5a030b3e24f0c3ff, 0xbfff3cab37ffff03, 0x0c03ef000b3dae76, 0x06038b000803ab00, 0xff03780706037d0d, 0x853533ffbbec4447, 0xeff8ff03860f063c, 0x06bc02012aff3c03, 0xff0398020d039d0f, 0x81aa12ffbcb5884e, 0xa019ff03a6010d39, 0x06bcc4dc10ffbd1a, 0x0e03c12f0103cf07, 0xbcd3e23aff03bc35, 0xca010dbc02f4b0ff, 0x00ff3cd9c29cff03, 0x0203e1010d3b3083, 0xbd5a8f54ff03dc00, 0xea1506bcb9f900ff, 0x4effbdcb1aedff03, 0x0b04370111bd7135, 0x0e0409170e041707, 0xbcc7578aff040414, 0x12010bbd28fdf4ff, 0x4bffbcc9f442ff04, 0x0e0429010cbb8682, 0x3c53e6e7ff042412, 0x320207bb122265ff, 0x03ff3c25114bff04, 0x0d045b2a0e3d13ba, 0xff04480009044d00, 0x1e58cbffbd7407ac, 0xd442ff045601093d, 0x013a86afb3ff3cfc, 0xff04682b05046d41, 0x614120ff3d32c65c, 0x3c73ff04762f0e3c, 0x04be0ad0b8ffbcd0, 0x07059f160606bb8d, 0x0d04cf7105051300, 0x0504a1010904af07, 0xbb4f455cff049c66, 0xaa8c043bc5b5b2ff, 0x94ffbbc6cd23ff04, 0x0e04c10108bcd0cc, 0xbd5c0557ff04bc08, 0xca030ebcc2d57eff, 0x78ff3d45fec5ff04, 0x0204f38b04bc8bee, 0xff04e0090e04e500, 0x910a66ff3d25c73a, 0xb0ccff04ee00093c, 0x0dbbf44d09ff3c60, 0xff0500190e050500, 0x8bd356ff3d41f35b, 0xdfeaff050e070d3d, 0x01bc6ad288ff3b09, 0x05053b1103055b36, 0xff05280b05052d19, 0x54503affbcc71dda, 0xad19ff05361a053c, 0x0bbcc0152dffbda4, 0xff05480112054d12, 0x293105ffbc8482c0, 0x5cdcff05568c043b, 0x0dbcbdeef3ff3c91, 0x040571240e057f00, 0x3c4b7186ff056c8b, 0x7a5b053d5c4cc7ff, 0x6bffbd8295b1ff05, 0x1105918b04be9ea3, 0x3c17f2f1ff058c00, 0x9a080e3cd1e911ff, 0x11ffbb59ac4cff05, 0x06062f8b043bf865, 0x0e05cb000f05eb17, 0xff05b8000705bd04, 0xe3b6aaffbd139792, 0xf3ecff05c6060e3c, 0x0b3d67566dff3def, 0xff05d8010c05dd0b, 0x240340ffbc4b9eac, 0xc8eaff05e6010cbd, 0x0cbd90dbaaffbd25, 0x110601020e060f00, 0xbc47d0d5ff05fc01, 0x0a0108bd3165acff, 0x75ffbc0e4bfaff06, 0x060621020d3cbaf0, 0xbdd234dbff061c19, 0x2a0111bccda6e2ff, 0x47ffbcd66bedff06, 0x0e0677000fbd334b, 0x0c06490007065700, 0x3cf3ad4cff064400, 0x52000cbc511482ff, 0x9bff3ba51440ff06, 0x0c0669040d3da6e5, 0x3d3476aeff066400, 0x720b053da98fd2ff, 0xc0ff3e0c9958ff06, 0x06069b020d3dfd93, 0xff0688000c068d17, 0x9e8eedffbce9dbf3, 0x045cff0696010cbc, 0x0bbc97affeffbc41, 0xff06a8180606ad00, 0x2d22b1ffbbd3c4bb, 0x985eff06b60b05bc, 0x0b3b327ef5ffbb56, 0x04074f010c07db01, 0x0906ebb304070bc0, 0xff06d8000d06dd00, 0x23e658ffbd46eded, 0x1428ff06e6340ebc, 0x05be12bc62ffbcb2, 0xff06f8190506fd1e, 0xd2bcacff3b29e6fd, 0x3e02ff070601073d, 0x0fbc29abccffbd2a, 0x060721020d072f00, 0xbbc1ddecff071c04, 0x2a0207bd08849aff, 0x41ffbd95f7a3ff07, 0x0407410007bc1e7e, 0xbb572e42ff073cc5, 0x4a000c3d89f7aaff, 0x6bffbc196895ff07, 0x080797b004bcc0c2, 0x0d07698505077702, 0xbc98f8b5ff076407, 0x72ac04bb39495eff, 0xf5ffbb8b1008ff07, 0x0d0789070e3d076f, 0x3c6f5a02ff078407, 0x92230ebd7dac78ff, 0xedffbd42a9c1ff07, 0x0d07bb6d05bc7e5a, 0xff07a8001107ad07, 0x8a7253ffbd434315, 0x1446ff07b60207bc, 0x073d0e8a94ffbcd6, 0xff07c8000207cd00, 0x86daaaffbd122c09, 0xcbfaff07d6170ebd, 0x0bbd06d7edffbc42, 0x0508270107086b02, 0x0507f9000f080776, 0xbd630fb4ff07f455, 0x020011bc73b774ff, 0xceffbcbda15cff08, 0x050819000fbc5bc2, 0x3d736319ff08147c, 0x220e0ebb86f716ff, 0x22ffbac1e998ff08, 0x0f084bb204bca868, 0xff0838020d083d00, 0x0f5c9fff3c1ffeaa, 0xd9b9ff084600123d, 0x0dbba7210fffbc8b, 0xff0858ba04085d07, 0x486317ffbcbb4274, 0x5a77ff0866140ebc, 0x07bd07a512ffbd86, 0x0608931a0e08b302, 0xff0880010c088500, 0x37c23eff3bed9bab, 0x1c8eff088e05063c, 0x0e3abfcbfaffbd0d, 0xff08a01c0e08a51e, 0xf73dd2ff3c0017f6, 0xb180ff08ae200ebc, 0x0e39bd918bff3ca0, 0x0c08c9580508d714, 0xbbc09fbcff08c400, 0xd2070d3bd39d11ff, 0xa0ffbc2428e8ff08, 0x0c08e96c053cb51b, 0x3b457c27ff08e400, 0xf2000f3c9403aeff, 0x20ff3cdd66bdff08, 0x0b0d4a000c3a5111, 0x0d0a1f01120b2004, 0x05094f000b099300, 0x0509210207092f91, 0x3ca33f9bff091c8f, 0x2a89053d0628edff, 0x0aff3ae13026ff09, 0x04094100073c2c5c, 0x3d0a1752ff093c4d, 0x4a95053cc1dad3ff, 0x8eff3d13c64eff09, 0x05097396053d34b2, 0xff09600107096590, 0xc22233ff3c512929, 0x14a0ff096e9105bc, 0x0b3c70951dff3d56, 0xff09800012098501, 0x627612ff3c344fd4, 0x1af5ff098e00073c, 0x043c21a230ffbc84, 0x0b09bb960509db9c, 0xff09a8000b09ad02, 0x065db0ff3c3fa886, 0x3a67ff09b60002bc, 0x0bba0066ccffbbfb, 0xff09c8950409cd00, 0x0765e3ff3d5e9d48, 0xc203ff09d6010b3d, 0x0dbc34d3b9ff3c92, 0x0709f1000b09ff02, 0xbb8da324ff09ec00, 0xfa010bbcca0ff2ff, 0x93ffbd4580e6ff09, 0x0b0a118a05bd7fa3, 0xbbeb099aff0a0c03, 0x1a020b3c200af9ff, 0xe6ffbc3d9cc4ff0a, 0x0e0a947c04bbe16a, 0x020a4b6d040a6b0a, 0xff0a388c050a3d00, 0x5f5ebbffbc1900f4, 0x51e9ff0a46020dbd, 0x0d3d26a493ffbc93, 0xff0a58030d0a5d06, 0x8cd9bcffbc999e5a, 0x9b50ff0a667004bd, 0x0e3de24555ff3dad, 0xff0a78000f0a7d0d, 0x5dcb36ffbe9b3d0d, 0x8a93050a8f130ebd, 0x29ffbdb39f20ff0a, 0xbcee31f8ffbe06c2, 0x0abc030b0adc060d, 0x0aa9140e0aae000f, 0xe6e8ff3c1173dfff, 0x56ff0ab7020b3d4c, 0x3b8633b9ffbbd1bc, 0x0ac994040ace0002, 0xf8b5ffbe679f9bff, 0xedff0ad7020dbdc0, 0x3bac7ecdffbd759f, 0x0af290040b00c304, 0xb5b85aff0aed0107, 0x070d3d5dc056ff3d, 0xff3e090bddff0afb, 0x0b12c6043dd5b3b8, 0x1e75c3ff0b0dc404, 0x9005bcadc860ffbd, 0xffbd249f50ff0b1b, 0x0c40220ebd736878, 0x0b70000f0bb4190e, 0x0b42140e0b50a404, 0xa05c7bff0b3d020e, 0x0a0bbce7e8a6ff3b, 0xff3e25f930ff0b4b, 0x0b6201123deb9010, 0xa88015ff0b5d0a0b, 0x060bbe12f134ffbd, 0xff3c23912aff0b6b, 0x0b94170ebd635980, 0x0b81c4040b860112, 0xa171ffbb0fc46eff, 0x0cff0b8f080ebbee, 0xbaad0767ff3c505c, 0x0ba100110ba6070d, 0x02b9ff3cb26337ff, 0xe0ff0baf050b3bc6, 0xbd76e032ff3a0c09, 0x0bdc1c0e0bfc1d0e, 0x0bc9bd040bce0002, 0x1fccff3bc50296ff, 0x51ff0bd70009bda1, 0xbd008970ff3ca3ba, 0x0be901070bee0108, 0xdf5bffbcc867f6ff, 0x85ff0bf70b0bbb4c, 0xbd825446ffbd0d64, 0x0c1200090c200011, 0x63209aff0c0d0002, 0xbc043cd1f58dffbb, 0xff3d9eff28ff0c1b, 0x0c32c204bd0f025f, 0x8db092ff0c2dc104, 0x200e3d635501ff3a, 0xffbd172488ff0c3b, 0x0cd00112bc36908e, 0x0c6c060d0c8c230e, 0x0c598b050c5e0009, 0xfcc9ff3c1b1f9aff, 0xd5ff0c67c7043d08, 0xbc81b134ffbb115c, 0x0c79070d0c7e0012, 0x9eacff3c331756ff, 0xebff0c878c05bd71, 0xbd969c4affbb6f26, 0x0ca200020cb02a0e, 0xaa9182ff0c9db904, 0x0108bd2d5575ff3c, 0xffbc251fcaff0cab, 0x0cc2cb043c7f624f, 0x0708ebff0cbd8805, 0x2d0e3c21819fff3d, 0xff3afb4bb5ff0ccb, 0x0d06050bbc5d10fb, 0x0ceabb040cf8300e, 0x0123e0ff0ce5b004, 0x8b053ac8c955ff3e, 0xff3e69225cff0cf3, 0x0d0100073e96b5ef, 0x3ff4ff3e693cbaff, 0x230e0d2aca043e1b, 0xa5ff0d17000d0d1c, 0xbcb769e0ff3cbe2c, 0xb401f0ff0d25240e, 0xcc04bd39a0b5ff3c, 0xabff0d3700070d3c, 0x3ba16286ffbcac1c, 0xe5431dff0d45020d, 0x000f3d157e34ffbc, 0xcb040e6e0a0b0f8a, 0xbe040d9e050b0de2, 0xb8040d70ba040d7e, 0xff3be7b49dff0d6b, 0x0d790109bd02d112, 0xe4c7ff3d1bba50ff, 0x00070d900009bcba, 0xffbc28ea63ff0d8b, 0x0d9992053c8b840d, 0x038dffbd8aeb99ff, 0xa6040dc2a804bc2e, 0xaeff0daf90050db4, 0xbdb6bcb0ff3be6c5, 0x5a2f96ff0dbd0002, 0x9105bce8cb60ffbe, 0x6cff0dcf00090dd4, 0xbcb90411ff3c503c, 0x2c605fff0dddb304, 0x95053d111e3bffbb, 0x2b0e0e0acd040e2a, 0x80ff0df701070dfc, 0xbcf7aa48ffbdaeb0, 0x12fa0bff0e052f0e, 0x280ebd0a1f9fff3d, 0xf4ff0e17030b0e1c, 0x3d431d90ff3db1f3, 0xaa57bbff0e25020d, 0x1d0ebe130d52ffbd, 0x00070e4000090e4e, 0xff3c7e3537ff0e3b, 0x0e49080ebd18554a, 0xd4caffbe2452bcff, 0x00070e6096053e25, 0xff3dd4d54bff0e5b, 0x0e69280e3d717897, 0x5408ff3e36b611ff, 0x90050efea7043dea, 0x010e0e9a00070eba, 0x4dff0e8701080e8c, 0xbe2b3d30ff3d112b, 0xdca554ff0e959804, 0x8d053ccdac13ff3b, 0x15ff0ea701070eac, 0xbdb1666fffbb05f2, 0xc7e988ff0eb57f04, 0x9904be078358ffbe, 0x00090ed092050ede, 0xffbe2e4eb5ff0ecb, 0x0ed99305bd992ec7, 0x91faffbe950025ff, 0x93050ef0a504be20, 0xff3d79011cff0eeb, 0x0ef900023dcf0e52, 0x5405ffbe404704ff, 0x02090f46060dbbbb, 0x000d0f18c9040f26, 0xff3ad3df65ff0f13, 0x0f212f0e3ce6fbc0, 0x8f57ff3c956e09ff, 0xc4040f38080ebca3, 0xff3cfa47bcff0f33, 0x0f41cd04bce2cd7f, 0x8bf0ffbd22621cff, 0x8f050f6a0002be16, 0xe0ff0f570e0e0f5c, 0x3d1ae8adffbd0821, 0x0c45e0ff0f650008, 0xb104bd5d4e98ffbd, 0x6eff0f77ae040f7c, 0xbd54b596ffbd9ab9, 0x333fbbff0f85b604, 0x8c05be4ca51affbd, 0x0a0e10150c0e10a1, 0x080e0fba00070fda, 0xd0ff0fa700080fac, 0xbbd773b5ff3bd949, 0xa8ef43ff0fb50012, 0x060d3cbe0684ff3d, 0x48ff0fc78b050fcc, 0xbd19f1b0ffbc7c5d, 0x3214a1ff0fd50012, 0x00113bc5f48effbc, 0xb2ff0fe7a6040ff5, 0xff0ff08905bd8f88, 0x49eaabff3d7e1d49, 0x02000710070009bc, 0x00ffbdceaa25ff10, 0xff1010ac04bd525d, 0xb72158ffbd49aa6f, 0x3d0009105d0107bb, 0x2a090b102f230e10, 0x38ff3b5d467dff10, 0xff1038cc043cd4b3, 0x95d3c4ffbaf09361, 0x4a020b104fbc04bc, 0xadffbc8f4502ff10, 0xff1058c5043c4a63, 0xe0e8f7ffbbeabd76, 0x7300021081ca04bc, 0xc5d5ff106e880510, 0x0dbc603d8cffbd2e, 0xbc1e9296ff107c06, 0x932d0e3c97ad8aff, 0x52acff108e220e10, 0x073d00ec08ff3c42, 0xbd02cf5aff109c02, 0x310d0e3d19cbb5ff, 0xcd0a0b10ed000911, 0xba8e0410bf020e10, 0x06ffbc77f2b1ff10, 0xff10c8070ebcf594, 0x94ab38ff3c8653b2, 0xda010c10df060dbb, 0xcfffbc8e16c6ff10, 0xff10e8cb04bd240a, 0x17e8aeffbb2fd803, 0x03b7041111070ebd, 0x4135ff10fe000e11, 0x04ba0211a2ffbc11, 0x3c29e486ff110cc3, 0x230b0eba95ff71ff, 0x1442ff111e020911, 0x04bada24faff3d20, 0xbc168fb3ff112cc6, 0x79cd04bd14726dff, 0x4b010c1159140e11, 0x967aff11460a0b11, 0x0b3c8899f2ffbc24, 0x3c5da39fff115407, 0x6b170e3d70689aff, 0xdd96ff1166c50411, 0x0ebd100b7effbb87, 0x3ce6c093ff11741c, 0x9d140ebaca2c85ff, 0x8a0b0b118f000911, 0x43ff3d8cd922ff11, 0xff119893053dfbc7, 0x9d0011ffbd60ac59, 0xaa1d0e11af0009bc, 0x85ffbcd27359ff11, 0xff11b80002bbfadf, 0x05121fffbd689097, 0x00000800000013bd, 0x000001000003e800, 0x0000000000115a00, 0x84140e09008d0500, 0x2c000c02488b0504, 0x5c930400a0a50401, 0x2e0108003c720400, 0x9618ff00295e0400, 0x0bbb5d5567ffbb3b, 0xbb20516dff00370b, 0x4e080e3a0ec7caff, 0x62b6ff0049070e00, 0x06bc70da34ffbaff, 0x39eb9499ff005703, 0x80000f3c903567ff, 0x6d2b050072190600, 0xb4ff3cb04a92ff00, 0xff007b0c053b8c03, 0x5c53c0ffbd391904, 0x8d0d0e0092120b3a, 0xb3ffbacd36c3ff00, 0xff009b0208bc625a, 0x811d24ffbb21cde9, 0xc80a0600e8a7043c, 0xb5120e00ba0c0b00, 0x4effbc4e9b7fff00, 0xff00c3120ebd04f0, 0x8ffb36ffbcd40ffb, 0xd50c0600da1406bd, 0x8eff3d6a832eff00, 0xff00e3000f3a881d, 0xe8de41ffbd14caf6, 0xfeaa04010c180638, 0x5456ff00f9000f00, 0x083b0bf96eff3cfc, 0xbbfcc29fff010700, 0x1e020bbb1ce5abff, 0x971fff0119130e01, 0x0e3dbf94ddffbc6c, 0xbbab2cbbff012711, 0xbc17063cbc53fcff, 0x58750401780e0b01, 0x457905014a450401, 0xd9ffba6114feff01, 0xff0153000fbca576, 0x9fd5c5ff3c285d63, 0x65050e016a000f38, 0x11ff3bb38460ff01, 0xff017300083c8bb1, 0xd15efbffba690b8b, 0x8e4205019c88053b, 0x2d3eff0189c60401, 0x0ebbf3fe8eff3a19, 0x3b28cdf1ff01970d, 0xae120e3ca6d537ff, 0xc065ff01a9001101, 0x0cbb5a6689ff3c91, 0x3d8f14f8ff01b701, 0x049b043e32bf0dff, 0xd6000e01e4020e02, 0x5a07ff01d1030d01, 0x0fbca1f4e1ffbc0c, 0xbcff5f80ff01df00, 0xf66404bca46329ff, 0x8092ff01f1050e01, 0x04bd0bf82cff3bcd, 0xbd86e943ff01ff97, 0x28000fb9f898baff, 0x15020d021a010702, 0x82ffbc43d939ff02, 0xff02231d053c3a62, 0x824f5fff3cff5625, 0x350008023a0a05bc, 0x58ffbc5cb6baff02, 0xff0243000ebb54a0, 0x2e1cbfffbb7ddc89, 0xdc00070368060eba, 0x7801120298960402, 0x65010e026a020e02, 0x71ffbada824aff02, 0xff0273010bbc5e68, 0x1f9e8cffbba2c3d9, 0x85000e028a030d3c, 0xbaffbcff6c76ff02, 0xff0293000eb95e46, 0x078ec3ff3b67083b, 0xae000802bc030e3d, 0x2b98ff02a9000902, 0x0db9a58928ff3cad, 0xbd11ae54ff02b706, 0xce9904bb72ac05ff, 0xfdd2ff02c9000902, 0x04bca930a7ff3d31, 0xbdab8524ff02d79a, 0x24060dbccb180aff, 0xf601120304000203, 0x9251ff02f18c0402, 0x05bd00ef93ffbaf1, 0xbccdccf0ff02ff8c, 0x16010ebe0a5355ff, 0x38e3ff0311000c03, 0x0cbd43ba36ffbc36, 0xbb5158c0ff031f01, 0x48b604bcbe1256ff, 0x358c04033a010e03, 0x7affbb61607aff03, 0xff0343030ebc5c42, 0x2d22e5ff3c85ce0e, 0x55030b035ab704bc, 0xf5ffbe64bb8cff03, 0xff03630112be933a, 0xaca480ffbc7288a0, 0xb4070e03f80112bd, 0x86060d0394070d03, 0xb8d5ff0381010c03, 0x09bd1b1ebbff3c27, 0x3caf94b9ff038f00, 0xa60007bcbb61f1ff, 0xc445ff03a1000803, 0x0bbd622a9effbdd6, 0xbd4c3400ff03af03, 0xd80002bd09a62cff, 0xc50e0e03caa10403, 0x74ffbc295031ff03, 0xff03d3c304bd326e, 0xd3cfa1ff3c507e92, 0xe5bc0403eac304bb, 0x5effbc166430ff03, 0xff03f3c8043c00a2, 0x7a315effbd246e16, 0x20000d04400209bc, 0x0d020704127b0404, 0x41ffbd017e8aff04, 0xff041b030bbe06ac, 0x7552c8ffba102600, 0x2d0d0e04320e0e3d, 0xc5ff3c320060ff04, 0xff043b020d3d5e97, 0x7c4bcdff3c19ce91, 0x5600020464070ebd, 0x491bff0451a20404, 0x0bbe2eff1affbdc5, 0xbd6c2db9ff045f03, 0x76080ebc6a3883ff, 0x8632ff0471000f04, 0x0cbccaf9d0ff3d70, 0x3cb1b89dff047f00, 0xc48705bd71c11cff, 0x1c001205a8010706, 0xb8c60404d8710505, 0xa5a60404aab40404, 0xeeffbbe0acedff04, 0xff04b3070dbba39d, 0x9cdbc3ff3c48ffb9, 0xc5070d04ca2a0ebc, 0x82ff3d217365ff04, 0xff04d3c904bd01d8, 0xede6baffbcb3ef5b, 0xeeb50404fc070dba, 0xc73eff04e91c0e04, 0x0ebbdf2dc3ff3bc2, 0x3d3159c6ff04f719, 0x0e050b3b7239dbff, 0x6a73ff0509ba0405, 0x04bd1144daffbc0c, 0xbd134029ff0517bb, 0x648205bd9bf65aff, 0x36080b0544150e05, 0x4e89ff0531630505, 0x0fbcf50bc5ffba9b, 0x3d0dc73bff053f00, 0x56c5043bc0305dff, 0x9fadff05517f0505, 0x063b4e5e00ffbaca, 0xbc675fbaff055f02, 0x88c2043a558c64ff, 0x75be04057a010905, 0x0dff3bc56a7bff05, 0xff0583ac043b9e93, 0xcd3986ff3c8639f2, 0x950009059a060dbc, 0x36ffbb0b8833ff05, 0xff05a30002bce33b, 0x4c1fd9ffbdc34059, 0xf420030638000fbc, 0xc61e0505d4410105, 0xb214ff05c1340105, 0x033aef9a34ffba8f, 0x3c583064ff05cf1d, 0xe61b03ba6aa353ff, 0xa227ff05e17c0405, 0x033bc819c9ff3d10, 0xbdd1b171ff05ef1e, 0x18010dbd6d0410ff, 0x05170e060a020b06, 0x36ff3c27cfcaff06, 0xff0613070bbd328e, 0x32ae1dffbc0b4400, 0x25010b062aaa043c, 0xbaffbae69c0fff06, 0xff063302083c5f28, 0x0d8e8bff3cb476bf, 0x60970406803b01bc, 0x4d280106520f0506, 0x97ffbb995dddff06, 0xff065b010cbb6904, 0xe4a0e4ffbac666a2, 0x6da6040672310e3b, 0x70ff3a8eaf3eff06, 0xff067b0006bce6fa, 0x4960b6ffbd3a0d04, 0x96010b06a40a0bbc, 0xaf63ff06919b0406, 0x01bcad9761ffbc2d, 0x3c408679ff069f41, 0xb6000cbb304635ff, 0x29f1ff06b1760506, 0x04bb06c0dcff3b25, 0x3c26d3edff06bfbc, 0xe4c2043c9e5bf4ff, 0x14010b07581c0e07, 0xe68c0506f4020d07, 0xd83bff06e1000906, 0x08bcca6b7bff3cdc, 0xbdb58bd0ff06ef00, 0x068c05be0aa9acff, 0x5c05ff0701010707, 0x043bfd41dbffbc8b, 0xbaa7cd30ff070fac, 0x38030d3d2d214eff, 0x25000c072a010907, 0xb7ff3e0c540fff07, 0xff0733170e3d10be, 0xb5ab25ffbde14680, 0x45170e074a070d3b, 0xa2ffbaf2ab4cff07, 0xff0753b9043c8895, 0x8b3b66ffbc80b987, 0x80b00407a0220ebd, 0x6d020d0772000f07, 0xdcffbce80711ff07, 0xff077bae04bdc8d4, 0x13ce66ffbb819a03, 0x8d0a0b07921e0ebd, 0x21ffbc337076ff07, 0xff079b200ebd009a, 0xe672cdff3d1878f5, 0xb6000c07c4230ebb, 0xccaeff07b1090b07, 0x093c91331fffba84, 0x3d1c886bff07bf00, 0xd62a0ebbb0de7fff, 0xef00ff07d1020b07, 0x0ebc63c014ffbd74, 0x3c830a1cff07df2c, 0x74180ebc127654ff, 0x1001120830010c08, 0xfd00120802000708, 0x90ffbc053aefff07, 0xff080bcc04bd4327, 0xcda5a4ffbbb51324, 0x1d02080822c404bc, 0x6eff3b843058ff08, 0xff082b0002bcdfa3, 0xebe1d3ffbc8096d2, 0x46010708540b0b3c, 0xd37aff0841c90408, 0x0ebd87580cffbca8, 0x3bf65614ff084f17, 0x66150ebd15b4c7ff, 0x44e5ff0861001208, 0x07bcb45f7bff3e13, 0xbdc2a659ff086f00, 0xbc190ebd5c00fbff, 0x8e0007089c000908, 0x4255ff0889001108, 0x0c3cda9a72ff3dbf, 0x3c29fc39ff089701, 0xae030b3d6d53c7ff, 0x2146ff08a9010908, 0x04bd089c7dffbd5b, 0xbc339668ff08b7c8, 0xe01d0ebcee4b47ff, 0xcd000908d21c0e08, 0x15ff3d8def98ff08, 0xff08db0107bce8b8, 0xc18f5dffbd3f5caa, 0xed1f0e08f20012bc, 0xa6ff3d625e3fff08, 0xff08fb0e0b3a088a, 0x02be88ffbbae1b56, 0xe1030e0d1d0d0e3b, 0x9c020e0a28ca040a, 0x38000c0958010909, 0x25010e092a000f09, 0xa6ffbc4656aaff09, 0xff0933010e3d3350, 0x3178f4ffbb968f2e, 0x458b04094a060dbc, 0x42ffbc350c81ff09, 0xff09530e0bbd2915, 0xb737f6ffbc9c7905, 0x6e8904097c000fba, 0x7876ff0969020909, 0x02bcaed3dcff3c57, 0x3b9e713cff097700, 0x8e0b0b3ceea23aff, 0x637eff0989010c09, 0x123be7f6eaffbb7b, 0x3bc7dcc6ff099701, 0xe4020d3c98c1c6ff, 0xb6010809c4000909, 0x3286ff09b1070b09, 0x05be13dc0fffbdc3, 0xbe7ee8edff09bf8f, 0xd6020bbe26276fff, 0xda48ff09d1970409, 0x05bdabf771ffbd08, 0x3ce4b4d0ff09df90, 0x080002bc01bc0aff, 0xf5010909fa060d0a, 0xd0ffbcc2d71eff09, 0xff0a0300113c8460, 0xfa7800ffbbbc4405, 0x15060d0a1a02093c, 0x04ffba87fca5ff0a, 0xff0a23000f3b9f17, 0xae630fffbd4629cf, 0x7401110a79020ebb, 0x4600020a5495050a, 0xa5e0ff0a41070b0a, 0x0b3d1607f2ff3b7d, 0xbb613dd8ff0a4f0b, 0x66060d3c5550b0ff, 0x1bffff0a6101070a, 0x0b3c8ad1b7ff3b98, 0xbc305c59ff0a6f0b, 0xd460ff3a83d8c2ff, 0xcb040a9d000f3da5, 0x48ff0a8a96050a8f, 0xbe5fc636ffbdadc0, 0xaa4170ff0a980209, 0x060dbce45240ff3d, 0x02090ab396050ac1, 0xff3d46af80ff0aae, 0x0abccb04ba8878a5, 0x96beffbbe33c38ff, 0xcc040ad3110bbcc8, 0xffbca7e9f9ff0ace, 0x0adc9605bd0019df, 0xb09affbbe05947ff, 0x010b0c01c904bc99, 0x00020b31bb040b75, 0x080e0b03000c0b11, 0xffbc237359ff0afe, 0x0b0c94053be43d39, 0x95e2ffbcd1a928ff, 0x00090b23000fbde7, 0xff3cf26c20ff0b1e, 0x0b2ca204bcf3ac0a, 0x3c85ff39cd4bc0ff, 0x010c0b550112bcd8, 0x7bff0b4200020b47, 0xbc68faf8ff3b8cd4, 0x2f9ae1ff0b50bf04, 0x020dbc3e091bff3d, 0x12ff0b6200090b67, 0xbdc48abcff3d1e3b, 0x0a1f56ff0b700007, 0x000f3d5b963fff3e, 0xa6040b9da7040bbd, 0xfcff0b8a00090b8f, 0x3d85b2cbff39e798, 0xa56ebaff0b980002, 0x060ebbd41149ffbe, 0x85ff0baa000c0baf, 0xbd7a0c11ff3dc215, 0x08241bff0bb80109, 0x070ebc917f79ff3d, 0x060e0bd3070d0be1, 0xffbbb353b5ff0bce, 0x0bdc010c3bc9d113, 0x9f34ffbd44f87fff, 0x0b0e0bf30009bde7, 0xffbc61b5e0ff0bee, 0x0bfc080ebadbff73, 0x3340ff3c9edf57ff, 0x8e050c910109bbd7, 0x070e0c2d080e0c4d, 0x9eff0c1a00080c1f, 0x3be8e371ff3d1ebb, 0x56e223ff0c280011, 0xca043d88a941ffbd, 0xacff0c3a00070c3f, 0xbc45f043ff3cdfb2, 0x379083ff0c480002, 0xcb043c90b3ceff3d, 0x060d0c63000f0c71, 0xffbd55a347ff0c5e, 0x0c6c060dbe43f426, 0xcfbfff3c57805dff, 0x000f0c83010cbc40, 0xff3d0dbc4cff0c7e, 0x0c8c0009bcc4b809, 0xd86cffbd824c3aff, 0x000f0cd9070e3d15, 0x070b0cab96050cb9, 0xffbe182c1cff0ca6, 0x0cb40209bd0e95ec, 0x0722ffbe4d6a12ff, 0x92050ccb100bbe0d, 0xffbd66f481ff0cc6, 0x0cd4060dbc759611, 0xf190ff3bff8d67ff, 0x080e0cfd0209bc12, 0xe9ff0cea060d0cef, 0x3cc50ec9ff3da721, 0xc2ef9eff0cf80112, 0x060dbdf7d5d3ffbc, 0xdbff0d0a01110d0f, 0xbc1dbc5dff3cd849, 0x036390ff0d18010c, 0x0e0ebcf9d829ffb9, 0x94040e26000c0f1e, 0x020d0d68000f0d9a, 0xc0ff0d3a010b0d48, 0xff0d438e05bcb113, 0xa0de74ff3df0d8a0, 0x55030b0d5a00023d, 0xc4ff3e415d2cff0d, 0xff0d638f053e4660, 0x48718eff3e4fbbf1, 0x758e050d7a010b3e, 0x08ffbcc00cc8ff0d, 0x020d8c030bbca1d9, 0xbc43fd45ff0d8700, 0x958e05bc6235ecff, 0xccffbcca9a70ff0d, 0x040de20109bc40e0, 0x0d0db4ba040dc2bb, 0xbba1c42eff0daf06, 0xbd060d3bb3bddbff, 0xcfffbc820334ff0d, 0x040dd4c804bdb13f, 0x3c391378ff0dcfc5, 0xddc9043d05e836ff, 0x77ffbc7ac7f5ff0d, 0x090e06060d3c2ec4, 0xff0df390050df802, 0x3b97f9ff3aae1e44, 0x0403ff0e01030b3c, 0x11bc14deefff3afb, 0xff0e1300020e1800, 0x93fbd6ffbbc2447f, 0x013fff0e210e0bbc, 0x09bdd7fd78ffbd13, 0x0f0e72010c0eb602, 0x0d0e44040b0e5200, 0x3d96b44cff0e3f06, 0x4dca04bd68aec3ff, 0x75ff3d0f71a8ff0e, 0x070e64bb04bd8f54, 0x3aec1602ff0e5f00, 0x6d0109bcf3e7e0ff, 0xacff3cd2cf7dff0e, 0x0b0e960002bb479d, 0xff0e83c7040e8801, 0x761ef3ffbb6a59fa, 0x22c4ff0e91cd04bd, 0x04bd4f71bcff3d04, 0xff0ea3070b0ea8b9, 0xa19ae0ffbaad07ef, 0x3768ff0eb1cc04bd, 0x043ccde3c7ff3d9d, 0xff0ec3000d0edabd, 0x0ed5bb04be01d740, 0xc4c46cff0ed08e05, 0x84ff3ce09586ff3d, 0x0d0efe000f3e0c21, 0xff0eebbe040ef002, 0xee0639ffbd23a3ac, 0x4d32ff0ef9030b3c, 0x04bcf45bbaffbdc7, 0xff0f0b060d0f10cc, 0x067d74ffbc65663d, 0xf456ff0f19010cbd, 0x0ebd6461deffbcd2, 0x050fb2000c103e17, 0x0e0f4e130e0f6e94, 0xff0f3b00110f4010, 0x976fc0ff3d614540, 0x583fff0f49020d3c, 0x04bcc91349ffbd82, 0xff0f5bab040f60cd, 0x052359ff3beb9dc4, 0xe2fcff0f690b0bbc, 0x083d57b70bff3b9b, 0x0b0f84140e0f9201, 0xbb604ebbff0f7f01, 0x8d060dbd04ce35ff, 0x0cffbbd473bdff0f, 0x0e0fa40b0bbcfbc9, 0x3c9b542bff0f9f14, 0xad9505bbd8cd6eff, 0x7cff3d691772ff0f, 0x040ffa00093d6e63, 0x040fcc020d0fdacd, 0xbe679d73ff0fc788, 0xd594053d223687ff, 0xc2ffbb33273fff0f, 0x0c0fec0b0bbd0fb2, 0x3d28a477ff0fe701, 0xf595053dbf2d93ff, 0x5cff3e0533aeff0f, 0x0b101e150e3d5bb0, 0xff100b0002101001, 0x4d985effbe92c8a0, 0xf30aff1019c204be, 0x0b3c082994ffbd0d, 0xff102b000f103003, 0x0ead3dffbe1ca830, 0x7050ff1039020dbd, 0x0bbd64d4c2ffbc4a, 0x0e108a000210ce01, 0x04105cca04106a2b, 0xbe4ab848ff105784, 0x659505bb9661b6ff, 0x48ffbd6addfaff10, 0x04107cc504be1c27, 0x3e2b2a34ff1077bb, 0x859305bd277e50ff, 0x95ff3e07cca1ff10, 0x0d10ae230e3e87e0, 0xff109b000d10a002, 0x5541daffbd9a0040, 0x045aff10a9040d3d, 0x0ebcb0eeadffbe6d, 0xff10bb000c10c02a, 0x0af9a3ff3acbc5a2, 0x4e52ff10c9c204be, 0x0bbd6fd1fdffbbbe, 0x1210f6b30411160a, 0xff10e3060d10e801, 0x1d9d3affbb67ebbe, 0xe2e3ff10f11a0e3d, 0x043c4c8961ff3d8a, 0xff1103000f1108c5, 0xb2cefeff3c9b1b21, 0xd6e5ff11110002bb, 0x04bc37a22aff3c09, 0x0e112c190e113acd, 0xbcc87bb3ff112718, 0x351d0e3cd44e68ff, 0x50ffbc9588c5ff11, 0x05114c00093bf413, 0x3c938512ff11478f, 0x55000cbc2e858dff, 0x9cffbc8f7eefff11, 0x0800000013bd2caa, 0x01000003e8000000, 0x0000001124000000, 0x0509008705000000, 0x0e02486d0504846e, 0x0400a01806012c2a, 0x04003c8804005cbc, 0xff00296e04002e7e, 0x0b0e5bffba971b0b, 0x6824ff003701113b, 0x073c1bf9d2ffbaaa, 0xff00490109004e00, 0x658ac1ffba5e1ad4, 0xc3f3ff0057000fbc, 0x0e3b6b3f2eff3c4b, 0x0e00720011008022, 0x3cc8f55dff006d19, 0x7b6c05bd00c8c0ff, 0x4cff3a3876a7ff00, 0x0e009201123cd6a2, 0x3ce16297ff008d23, 0x9bbe043b376155ff, 0x62ff3c36001bff00, 0x0500e8a704bbe8c1, 0x0400ba010e00c80f, 0xbc44bb93ff00b59f, 0xc3000cbd21c1a6ff, 0x7cffbcb9b55fff00, 0x0e00da1a0ebd6d35, 0xbb7f43a2ff00d503, 0xe319063c7c4727ff, 0x12ffbd725e21ff00, 0x05010c000fbd2262, 0xff00f9000e00fe1e, 0x3dfcd6ffbc18502f, 0x713fff0107010b3c, 0x0ebc0b99a2ffbd05, 0xff0119020d011e0b, 0x90381cffbae2801e, 0x1d8fff0127070bbb, 0x0dbcad211affbbd0, 0x0b0178140b01bc06, 0x07014a340e01580a, 0xbb858adcff014502, 0x5341013b5c9faeff, 0xceffbbc1792aff01, 0x05016a000fbc8cd9, 0xbb542ba6ff01651c, 0x7302073c3ea679ff, 0xe8ffbc0612d1ff01, 0x0e019c01073c41d2, 0xff01896505018e2b, 0x9f6e42ff3bc5e24b, 0x7222ff019748053c, 0x0ebc19152bffbb81, 0xff01a9230501ae31, 0xfb2dc8ff3bfc7530, 0xf07fff01b745053c, 0x073d148031ffbc22, 0x0701e40011020402, 0xff01d13d0101d601, 0xd4f75cffbc543236, 0x8735ff01dfb704bb, 0x0b3cbfd2aaffbc06, 0xff01f1a70401f610, 0xf3c13fffbb595e27, 0x6358ff01ffc504bc, 0x0e3b6bffcbffbdac, 0x04021aca0402282b, 0x3d18152fff0215c7, 0x230012bc28e9fdff, 0x53ff3da55f43ff02, 0x04023aba043d6011, 0xbcb95054ff0235ab, 0x430012bd808281ff, 0xffff3d4874c4ff02, 0x0e0368c204bd9e38, 0x0f02980b0e02dc12, 0x06026a070e027800, 0x3c805a53ff026500, 0x730109bd8ef9f7ff, 0x1affbc64db3cff02, 0x07028a0a0ebd8992, 0xbb96555aff028501, 0x93060dbc84c509ff, 0x06ffbd96dea6ff02, 0x1102bcaf04bca3ff, 0xff02a9070d02ae00, 0xc9ae50ffbc9669d2, 0x67bcff02b7060d3c, 0x0c3d15d7f0ff39d1, 0xff02c9000c02ce01, 0xf980b2ffbc25bda6, 0xca43ff02d701083c, 0x113e13bbf9ff3d64, 0x0b0304220e032400, 0xff02f1030b02f605, 0x07ba69ffbcedefa9, 0xdf34ff02ff190ebc, 0x04bd71058dffbd0f, 0xff0311050b0316b7, 0xfebba7ffbb85fd64, 0x591bff031f010cbc, 0x0d3d9d7f85ff3c52, 0x11033a7504034806, 0xbc598dedff033501, 0x43000fbd7f6a2dff, 0xe2ff3bff6385ff03, 0x0b035a8f04bc97a8, 0xbc1e08a6ff035509, 0x63190ebd05d687ff, 0xfaff3d94e640ff03, 0x0803f8c5043bebc1, 0x0e0394060d03b401, 0xff0381090b038627, 0x982891ffbe4d94a2, 0x0daaff038f020bbe, 0x0bbde5cedeffbd81, 0xff03a1000803a609, 0x7e5aa3ffbdc493c5, 0x5263ff03af130bbd, 0x0ebe30962effbdff, 0x0703ca1d0e03d823, 0xbcb73039ff03c501, 0xd30208bd8e68ddff, 0x95ff3c9535c0ff03, 0x0803ea090b3dbb07, 0xbd80006dff03e502, 0xf3130bbdcbd267ff, 0x4fffbe03706fff03, 0x040440c804be8b03, 0x020412070b0420c6, 0xbcbec7a0ff040d00, 0x1b0112bd58000dff, 0x40ffbdd0dafaff04, 0x0c04320107bbee15, 0xbcdd018dff042d00, 0x3b0b0b3cc86a69ff, 0xaaffbc2ecd09ff04, 0x070464320ebd8e7c, 0xff04510008045602, 0x049687ffbdb41c4e, 0x3f17ff045f0008be, 0x08bd414a7dffbdc5, 0xff04710b0b047600, 0x03d0b1ffbd59ca6b, 0x5defff047f060dbe, 0x093bba800fffbcfd, 0x0805a8000f06c402, 0x0704d8010d051c02, 0x0e04aa9f0404b802, 0xbb624fa2ff04a52c, 0xb30b06bdc25af9ff, 0x67ff3ced0a0bff04, 0x0e04ca7804bc5a2b, 0xbd9ece6fff04c50a, 0xd3070ebe5e11a9ff, 0xebff3d80b745ff04, 0x0b04fc0007bce6c3, 0xff04e9800504ee01, 0x7b7e66ffbc27e7e4, 0x09f6ff04f7be043b, 0x0ebc205692ff3c31, 0xff0509070e050e09, 0x1a5496ff3c6f97ec, 0x32bcff05170b0ebd, 0x0e3cb5ff45ffbb08, 0x070544a00405641a, 0xff05316b04053601, 0x459197ffbc015be0, 0x67e0ff053f76053d, 0x0bbd867365ff3c08, 0xff0551010b055609, 0x73c2d8ffbd1851ee, 0x68acff055f030e3c, 0x0d3d28975bff3c35, 0x07057a070b058802, 0xbd2b3f67ff057500, 0x832a0e3c039171ff, 0x4eff3d52a20aff05, 0x0e059a050bbc7b29, 0xbd326ad7ff05951c, 0xa3220ebe01788bff, 0x54ff3c1c3b9aff05, 0x0c0638230ebd3b41, 0x0505d4050b05f401, 0xff05c1040b05c683, 0x7635d8ffbba3ca3c, 0xf072ff05cf0b0e3a, 0x0ebb01f3dcffbbad, 0xff05e11a0e05e61d, 0x12c6ceff3b0cfb01, 0x3aa3ff05ef1e0ebd, 0x0e3c387ad6ffbd14, 0x0e060a070d061822, 0x3bc1136fff06051c, 0x13070ebccb4002ff, 0xfaffbc9e1831ff06, 0x09062a060d3d0eb1, 0x3d97ba41ff062500, 0x330007bcc2ec2aff, 0x08ffbc94c4a2ff06, 0x0406806f053cc63a, 0x04065297040660b6, 0xbc067352ff064d96, 0x5b050bbd60f30bff, 0xbbffbbebbfb0ff06, 0x020672070b3cb2b9, 0xba694ca8ff066d00, 0x7b000cbca3bc42ff, 0xb4ff3d904b2eff06, 0x0e06a4060d3de685, 0xff0691c104069628, 0xf6e3daffb9feadd1, 0x9bbcff069f010cbc, 0x12bbe6c29fff3ab6, 0xff06b1c70406b600, 0x488f98ff3c1d65e7, 0x2effff06bf050bbc, 0x04bd7f8f5effbca5, 0x0e0758050b07e4a8, 0x0e06f4040e071407, 0xff06e1000f06e602, 0x051c17ffbc901318, 0x27b1ff06ef000fbc, 0x0fbc9a00cdffbd62, 0xff07017c05070600, 0x232af4ffbdf4baec, 0x2a01ff070f9104bd, 0x0ebd28eb45ffbc90, 0x0d072a000f073808, 0x3ceb6640ff072500, 0x33000c3d87ab67ff, 0xcfffbb0f7223ff07, 0x0f074a0d0e3bdc2f, 0xbdc8defdff074500, 0x53140ebc4b5074ff, 0x28ffbad0cd20ff07, 0x0b07a00112bd3929, 0x0e0772010c078013, 0xbc3a31d6ff076d02, 0x7b0012bc98210cff, 0x5effbc27ee21ff07, 0x0e0792000c3bb231, 0xbc3251daff078d07, 0x9b020eb9210970ff, 0x9bff3a775999ff07, 0x0c07c4000fbc2a9a, 0xff07b1000e07b600, 0x21b861ff3d870dad, 0xf756ff07bf000dbe, 0x0e3cd61115ff3d50, 0xff07d17c0407d603, 0x61a4b4ffbd0d5ea8, 0x70a1ff07df000c3c, 0x0bbce2717dffbc23, 0x0e0830000f087405, 0x050802ac04081019, 0xbda9c62cff07fd82, 0x0b86053e42bd9bff, 0x17ffbde231caff08, 0x0e0822280ebe3c37, 0xbc54016dff081d1e, 0x2b6f05bda6cb85ff, 0x7eff3d559200ff08, 0x0e0854060dbcee6c, 0xff0841030b084607, 0x943fb5ffbd56d29c, 0x796eff084f080ebb, 0x11bc34dcd9ff3c7d, 0xff0861070d086600, 0x02a23effbc22cb47, 0xdb7fff086f010cbd, 0x0dbd778413ffbd04, 0x0e089c080e08bc06, 0xff0889050e088e07, 0xb4094eff3c10da8a, 0x33d7ff0897010cbc, 0x0f3d102c99ff3c89, 0xff08a9bb0408ae00, 0x474884ff3cdb192e, 0x5b7cff08b7000cbd, 0x12bcce255affbc4c, 0x0408d2070d08e000, 0xbc13e374ff08cdba, 0xdb010ebcdbe190ff, 0x37ffbca1d5baff08, 0x0e08f2020ebd6d88, 0x3b7e2e8eff08ed01, 0xfbbd043da15f10ff, 0xffffbd4c7e3aff08, 0x0e0ca8000cbd8ea7, 0x0e0a280e0e0b442b, 0x0b0958060e099c0a, 0x0d092a9205093800, 0x3c690194ff092506, 0x339604bce3ecf0ff, 0x33ff3d02b77bff09, 0x04094a61043b4d80, 0xbc86ef1fff094549, 0x530107bac51a6fff, 0x2effbb5ebb29ff09, 0x02097c000dbb8787, 0xff0969070e096e00, 0x41a10cffbd79b721, 0x5d4bff09778b053c, 0x12bdce262affbc8c, 0xff0989080e098e00, 0x5eda15ffbb54ec42, 0x5d5dff099701123c, 0x0e3c3522a3ff3ab1, 0x0209c4001109e40b, 0xff09b18b0509b600, 0x185212ff3b48ade0, 0x79c0ff09bf00073d, 0x08bb3d64d1ff3c3e, 0xff09d1010709d601, 0x23d7fcffbd093d04, 0x45bdff09df0b0bbc, 0x0ebda7b8c7ffbd36, 0x0f09fa140b0a080d, 0xbe5ec67aff09f500, 0x03070d3a53f1a0ff, 0x87ffbc5775fcff0a, 0x0b0a1a0112bd9310, 0xb9c2233dff0a150e, 0x2394043bd7c4aaff, 0xfcff3e067c77ff0a, 0x0e0ab8140e3c3ee5, 0x020a549b040a7410, 0xff0a41010b0a4600, 0x8b3da1ff3cc0008e, 0xed5cff0a4f8905bc, 0x093d65648cff3d4b, 0xff0a61bc040a6600, 0x6ad09dff3cd76dac, 0x31b2ff0a6f01093d, 0x0dbd0065c4ff3ba1, 0x040a8ac8040a9806, 0xbdc1507eff0a857b, 0x93120ebca39ba4ff, 0xa8ffbcab7215ff0a, 0x0b0aaa110ebd5264, 0xbd99d25fff0aa50b, 0xb30e0bbdc5b1e3ff, 0xfcffbc2a91faff0a, 0x0f0b00200e3c94c3, 0x060ad2190e0ae000, 0x3e0d5a0fff0acd00, 0xdb000d3d492244ff, 0x2fffbd6ecb4fff0a, 0x0e0af21c0e3c9aa4, 0xbbaab180ff0aed18, 0xfb0a0b3bbdc1a8ff, 0xf8ffbb67e994ff0a, 0x0f0b24230ebc8308, 0xff0b11050b0b1600, 0x3a9a00ff3d91b194, 0xb944ff0b1f070dba, 0x0ebd17eb7bff3b83, 0xff0b3100020b3628, 0xe417f3ffbd018a55, 0x5157ff0b3f0012bb, 0x0d38c04088ff3cb3, 0x040b9000060b9500, 0x050b7496050b8bc0, 0xff0b6102070b6695, 0x1d5631ffbe1125e8, 0xb3a1ff0b6f0107be, 0x0bbe10daefffbde5, 0xff0b8100070b8607, 0xe390faffbdc62204, 0x18ffbe1a7aa1ffbd, 0x3dadbac0ffbe6b82, 0x0bd8c5040c1c000f, 0x0bb3020d0bc18c05, 0xdf6fa0ff0bae0007, 0x050b3e0c44d8ff3d, 0xff3e550738ff0bbc, 0x0bd3050b3ddc1a38, 0x52b064ff0bce020d, 0xb4ff3e95cd2dff3e, 0x050bfc030b3e0b83, 0xff0be9c9040bee90, 0x507293ff3e0715d8, 0x4324ff0bf700073d, 0x053c866e9eff3da9, 0xff0c0900090c0e8a, 0xb3d06affbd0727e5, 0xcabaff0c178c05bd, 0x053c8a2371ff3da2, 0x0e0c44060d0c6489, 0xff0c3100020c362f, 0x15af17ffbc35768a, 0x77a0ff0c3f88053c, 0x053c243530ff3cf5, 0xff0c510b0b0c5688, 0x33f3a7ff3db8a0bb, 0xe556ff0c5f00083d, 0x05bc5b36f5ffbcd7, 0x020c7a2d0e0c888b, 0xbc4238adff0c7500, 0x83030b3c92a1f4ff, 0x1effbc10fdd2ff0c, 0x040c9a8c05bcd84e, 0xbc9eea89ff0c95c3, 0xa30b0b3c8b46bdff, 0x64ffb9efe0d8ff0c, 0x080ee8000fbc2bdb, 0x050d40010b0dcc00, 0x040cdc00090cfc93, 0xff0cc900070cce62, 0x04105effbdb438f3, 0xe39eff0cd7190ebd, 0x04bc7242b7ff3c2c, 0xff0ce988050ceeb4, 0x0a3b8affbda12707, 0xf955ff0cf7b704bc, 0x04bdb23a42ffbe82, 0x040d12bf040d20c7, 0xbcfe3a0bff0d0da7, 0x1b230e3d1ca88aff, 0xadff3e211547ff0d, 0x050d322b0e3e94a4, 0xbd747718ff0d2d95, 0x3bcb04bdf97c7cff, 0xc8ff3e000172ff0d, 0x0e0d88000dbd8374, 0x0e0d5a020e0d6807, 0x3bec7e2cff0d5501, 0x630009bd0dc951ff, 0x35ff3dd03e0bff0d, 0x0e0d7a88043cde4f, 0xbc9f632dff0d750d, 0x830109bdc29424ff, 0x59ffbbb616b3ff0d, 0x050dac0209bd4afd, 0xff0d99000e0d9e8f, 0x23384dffbc8dbbfc, 0x47a6ff0da794053c, 0x0e3c37b92eff3afe, 0xff0db9070e0dbe08, 0x3b8bc2ffbc3df0a9, 0x1760ff0dc70d0e3d, 0x04bd1856adffbdd3, 0x0d0e18060e0e5ccb, 0x0b0dea82040df803, 0xbd1fea1cff0de501, 0xf3070b3b072265ff, 0x9effbe048601ff0d, 0x0e0e0aa604be462b, 0xbda267bbff0e0500, 0x13060d3cdb4a8cff, 0xc4ffbbf5d0fcff0e, 0x040e3c230ebd9ca8, 0xff0e2992040e2e98, 0xdb17daff3bdb8e68, 0x7f28ff0e37190ebd, 0x0e3c31d850ff3cf7, 0xff0e49030b0e4e26, 0xcda328ffbe1e0b84, 0x1d9dff0e57020dbd, 0x0bbcfbcb06ff3c13, 0x0d0e842b0e0ea407, 0xff0e7100070e7602, 0x02c644ffbd98307b, 0x8425ff0e7f0207bd, 0x04bbd634a0ffbdc7, 0xff0e912f0e0e96cd, 0x0ce563ff3ccf61f5, 0x7ef9ff0e9f360ebd, 0x0ebd77623dffbe08, 0x050eba00020ec817, 0x3c005ab1ff0eb590, 0xc30007bcb38830ff, 0x25ff3d7fafc1ff0e, 0x040eda00073d3859, 0xbd0c1f97ff0ed5cd, 0xe38d05bdd974b9ff, 0x3aff3ca79467ff0e, 0x071008060dbc8101, 0x090f38040e0f7c00, 0x0e0f0a91040f1800, 0xbc928b8bff0f0502, 0x13010c3be536ddff, 0xefffbcd340dbff0f, 0x110f2a010ebd5030, 0xbbf20093ff0f2501, 0x33050b3c28339dff, 0x23ff3b1eb667ff0f, 0x040f5c8a053c5703, 0xff0f4900080f4ec5, 0x290b5cff3c06e586, 0x1283ff0f5789053c, 0x0e3c63b421ffbcbf, 0xff0f6900090f6e0d, 0x336c8dffbbcafa79, 0xdd79ff0f77280e3c, 0x0ebc6ad927ff3bef, 0x120fa40d0e0fc422, 0xff0f91010c0f9601, 0x30874affbc9ee05d, 0xbd03ff0f9f030bbd, 0x0ebbf9b6dfff3c4e, 0xff0fb11b0e0fb61c, 0xaaf709ffbb14431b, 0x99fdff0fbf1f0e3d, 0x0ebb740354ffbcf1, 0x120fda0a0b0fe825, 0xbcabc562ff0fd501, 0xe301123c8f568dff, 0x51ff3d911100ff0f, 0x0e0ffa050bbd128d, 0xbd0f8570ff0ff528, 0x03260ebbffde63ff, 0xe2ffbd966e6dff10, 0x0e10980d0e3c087e, 0x0e10340009105401, 0xff10210d0b102600, 0x00a103ffbcce4afb, 0x6437ff102fab04bc, 0x12bc61cff5ff3c1e, 0xff1041a904104600, 0x3a2a63ffbc73357f, 0xf7d9ff104f090bbb, 0x0e3cd897c0ff3bb1, 0x04106a0009107802, 0xbc18c9f5ff1065aa, 0x73b204bcfc810fff, 0x0dffbbf8e4fdff10, 0x0e108aba043cdfde, 0x3cb512f2ff108507, 0x93c004bc4bd273ff, 0x69ff3c8dba10ff10, 0x0b10e01c0ebbf9d6, 0x0e10b2000910c014, 0x3c188c72ff10ad18, 0xbbbf043d5891caff, 0x4bff3cb9d343ff10, 0x0e10d20009bc9067, 0x3d90267bff10cd15, 0xdbc5043cfe2662ff, 0xeaff3d0d6defff10, 0x0811041d0ebc4c88, 0xff10f18f0510f600, 0x997ac5ffbd2df10d, 0xcd57ff10ff0b0bbc, 0x0ebdbc8c0fffbd28, 0xff1111050b11161f, 0x935e04ff3c807d83, 0x311dff111f00073d, 0x133c4d6b34ffbc7b, 0xe800000008000000, 0x6300000001000003, 0x0500000000000011, 0x050484140e09008d, 0x04012c000c02488b, 0x0d005ca10400a0a6, 0x04002e1205003c02, 0x3a470d47ff00299f, 0x37010839b7841aff, 0x4fffbbb4f6e6ff00, 0x04004e0b06bca721, 0xbb01d921ff004981, 0x57000fbaf358d1ff, 0xb1ff3bf8689aff00, 0x040080060dbbca3b, 0xff006d0b0e0072a3, 0x5ea513ffbc9a8d01, 0xa158ff007b0e0ebb, 0x0ebd1cbcbcff3b02, 0xff008d050e009206, 0x05babdffbbc0ee74, 0xd976ff009ba504bd, 0x04bc3f33dcff3c54, 0x0b00c8001200e8a7, 0xff00b5070d00ba0a, 0x7a4836ffbc8ac272, 0x4476ff00c300083c, 0x05bd838a28ffbcdc, 0xff00d5010e00da06, 0x099aa6ffbda546c3, 0xb61fff00e30a06bd, 0x04baa5c300ffbc99, 0x0500fe6f05010ca8, 0xbc8c8780ff00f96c, 0x070002bd6690a9ff, 0xf8ff3c4996e6ff01, 0x0f011eaa04bc10e8, 0x3cdbf6d2ff011900, 0x2715063bca5039ff, 0xf0ffbb52f33aff01, 0x0401bcbf04bbb1b4, 0x04015813060178af, 0xff0145a004014aa1, 0xd16833ff3aaf8451, 0x749cff01530b0e3b, 0x043c5458b2ffb9c6, 0xff01650211016a80, 0x43df3effbc886816, 0xc65bff017317063c, 0x0dbc1a64b6ff3c1e, 0x07018e0a06019c06, 0x3ba522a7ff018900, 0x97060ebcaf543bff, 0x0cffb7ec3979ff01, 0x0e01ae00123c3639, 0xbc37e472ff01a903, 0xb701073d01d2d9ff, 0xdfffbcc4a97cff01, 0x0202040f0e3c720a, 0x0d01d6ca0401e400, 0xbcd17959ff01d107, 0xdf010e3d04b736ff, 0x9bffbc4d29e6ff01, 0x0401f6c2043cc76a, 0xbb7f9f2dff01f1c0, 0xffc4043c1cae31ff, 0x82ffbcd0d7feff01, 0x0b0228130bbb82c9, 0xff0215c604021a09, 0x6cb7f9ffbd31f352, 0x64b1ff0223010c3d, 0x0c3d707706ff3c8d, 0xff02350009023a01, 0xcfada7ff3d8ee546, 0xc0ecff02430107bb, 0x0e3db0f2a0ff3e21, 0x0802dc0007036805, 0x0402780009029800, 0xff02659904026aa5, 0x130edcff3bafbe60, 0x8421ff0273030ebc, 0x0dbbb7d980ff3dac, 0xff02850012028a07, 0xe00495ffbbd12b58, 0xbc80ff0293010e3a, 0x0cbd97f687ffbcec, 0x0d02aeb30402bc01, 0xbbef37cfff02a906, 0xb700123afe0aa6ff, 0xa0ffbd0ffc1dff02, 0x0202ce070bbbdf3c, 0x3d197189ff02c900, 0xd7060dbc80c0beff, 0x5dffbd6e27f5ff02, 0x1203240002bd0c59, 0x0d02f6b904030401, 0xbc8c4af3ff02f106, 0xff0011bb063bc5ff, 0xf4ffbcbd86a3ff02, 0x0d03168c053c709d, 0xbcb5bc7dff031106, 0x1f050b3d506142ff, 0x5bffbd8fc1abff03, 0x0c0348020ebe7803, 0xff0335000e033a00, 0x4a8b05ffbc3cd24a, 0x6653ff0343b304bb, 0x083b03b813ffbcbe, 0xff0355000f035a00, 0xb78a1fff3d4dedd3, 0xfb44ff03638c05b9, 0x04bb9e7649ffbcba, 0x0403b4bd0403f8be, 0x0e0386070e03947c, 0xbd5394fcff038106, 0x8f7a043cbaeed8ff, 0xafffbcc0c0ffff03, 0x0d03a6070ebd90d8, 0x3c146883ff03a107, 0xaf0c0ebd9192f1ff, 0xccffbbf65919ff03, 0x0803d8010c3bcdbc, 0xff03c5030b03ca00, 0xba8276ffbd044d7d, 0x5df4ff03d3000c3b, 0x0b3ddcd2e5ff3cf6, 0xff03e5060d03ea03, 0x90e19dffbc682f48, 0xe666ff03f301123d, 0x043e220c91ff3e37, 0x0e042000020440c1, 0xff040d0009041212, 0x06de35ff3d59ce39, 0x1d20ff041b010cbc, 0x043e4564a8ff3dcd, 0xff042d030b0432bf, 0xec0a02ffbd67e38d, 0xd4d6ff043b0107bd, 0x093c137342ffbd4a, 0x070456030b046401, 0xbd051cadff045100, 0x5f060d3c8648feff, 0x00ffbc83cf9aff04, 0x0404760b0bbb4ad6, 0xbcfb5955ff0471c7, 0x7fc504bd70795eff, 0x2bff3b104cf8ff04, 0x0706c48705bcdc3c, 0x05051c001205a801, 0x0404b8c60404d871, 0xff04a5220104aa96, 0xe046d7ffbb35fb83, 0xa361ff04b3b504bb, 0x0e3be22c9cffbc2f, 0xff04c5170e04ca1f, 0xe04f97ff3d3e7081, 0x72e9ff04d300073d, 0x0dba965ee5ffbccb, 0x0d04eeb50404fc07, 0xbd0a3703ff04e906, 0xf7190e3ae94fe0ff, 0x8cff3d1e6093ff04, 0x0c050ebd043b6907, 0xbcb4eef4ff050901, 0x1701083ca263abff, 0x80ffbd901ec8ff05, 0x0e05648205bcb0bb, 0x050536080b054415, 0xba959951ff053163, 0x3f000fbcd93dceff, 0x3eff3cfb17d0ff05, 0x050556c5043baca7, 0xbaaa51c6ff05517f, 0x5f00063b29f752ff, 0x9affbc49803fff05, 0x090588c2043a4258, 0xff0575be04057a01, 0x88b07eff3ba7ad71, 0x82b1ff0583ac043b, 0x0dbcb24e30ff3c66, 0xff0595300e059a06, 0x709c48ff39bfb9b3, 0x8c17ff05a30002bc, 0x0dbc2aabb3ffbdad, 0x0d05f4020b063802, 0x0505c6750405d400, 0xbc11c36eff05c16b, 0xcf2f0ebdf58844ff, 0x38ffbd986b73ff05, 0x0105e6010dbcedf7, 0xbbfe506cff05e12e, 0xef210ebd87888aff, 0xeeffbbe87e35ff05, 0x0606184705bb0ecc, 0xff06052f05060a10, 0x2e7317ff3b2407a5, 0x8010ff061300023c, 0x04bc855f4fff3c86, 0xff06251c0e062a78, 0x9318c8ff3cb86a0e, 0x0bedff06331a0ebc, 0x043c861e94ff3ced, 0x0f0660140b0680ca, 0xff064d050d065200, 0x309dc0ffb88db818, 0x664eff065bac043c, 0x043b458278ffbadf, 0xff066d130506729a, 0x2907e6ffbb6367cd, 0xadd2ff067b9b043c, 0x0e3c33d461ff3d43, 0x0c06960d0606a431, 0x3bde5589ff069100, 0x9f000f3ce20f5dff, 0x88ff3c8cb936ff06, 0x0806b6320ebcb9f6, 0xbd4c221fff06b101, 0xbf340eb873529dff, 0x4dff3ca30296ff06, 0x0e07e4c204bc3dea, 0x0d0714010b07581c, 0x0906e68c0506f402, 0x3cb48b58ff06e100, 0xef0007bc9ed2c9ff, 0x78ffbdffc7c8ff06, 0x0707068c05bda58d, 0xbc99a816ff070100, 0x0f010cbaacc527ff, 0x72ff3ca67c64ff07, 0x090738180ebd74af, 0xff0725020d072a00, 0xac387bff3d045d40, 0x1c46ff0733000f3a, 0x0cbce16752ffbddb, 0xff07450112074a00, 0x19355fff3b73e15c, 0x6c51ff07530a0b3d, 0x0e3d1327cdff3c38, 0x0f0780b10407a022, 0xff076d020d077200, 0xad611fffbcbf7a7a, 0x6182ff077bae04bd, 0x0ebd18b079ffbb63, 0xff078d0a0b07921e, 0xde9325ffbc198099, 0xba9eff079b200ebc, 0x0ebbf67d7aff3d22, 0x0907b6060d07c423, 0x3cd91aadff07b100, 0xbf8a05bb4f92bbff, 0x61ff3ca5aea6ff07, 0x0407d6090bbbfb38, 0x3bc3507eff07d1b9, 0xdfac04bc8be2daff, 0xc4ffbdb330a2ff07, 0x0c0874180e3c6872, 0x0e08100112083001, 0xff07fd0011080216, 0x175112ff3dd02939, 0x92c6ff080b00073a, 0x04bbfe599dffbcff, 0xff081d00070822c4, 0x087527ffbcedd8ac, 0x9dd9ff082b00023c, 0x0b3cca5639ffbc48, 0x0e0846010708540b, 0x3d9a939bff084115, 0x4f0111bd0c18a4ff, 0xe2ffbc11c5beff08, 0x0e08668c053cdacc, 0x3c2a62c1ff086115, 0x6f0002bd875fe4ff, 0xfaffbe01c54aff08, 0x0e08bc0011bca047, 0x0c088e0009089c1c, 0x3c92bee7ff088900, 0x97070d3d914175ff, 0x73ffbbbdfaa9ff08, 0x0b08ae1d0ebd22c6, 0xbc88a5a0ff08a90a, 0xb71f0ebd434f10ff, 0xa8ff3d3e46a0ff08, 0x0e08e0060dba5e09, 0xff08cd220e08d223, 0xf5c8e4ffbbc87178, 0x6f5cff08db00073c, 0x0b3ac7fea1ffbc24, 0xff08ed000908f203, 0x45febeffbbb9c336, 0x25edff08fb0008bd, 0x0ebc982a54ffbd9c, 0x040aea030e0d260d, 0x04099c010e09ce63, 0x040938000c09584b, 0xff0925010b092a40, 0xbcf993ffba890065, 0xe0aaff0933050b3c, 0x0d3ca3da55ffbce5, 0xff0945010b094a01, 0x49a278ffbdab2f5e, 0x85b2ff09538f05bd, 0x0fbe174a2cffbde7, 0x04096e040d097c00, 0x3c6a0dcfff09695c, 0x770002bce4341eff, 0x1eff39ab94cbff09, 0x11098e030b3d7315, 0xbadd37b8ff098901, 0x9701123c11ae21ff, 0x97ffbc5c5286ff09, 0x0709c900023b7c5c, 0x0409b6010b09c400, 0xbe1f6243ff09b161, 0xbf000cbdc255e0ff, 0x22ffbe04385fff09, 0x3bd1b600ffbdadf0, 0x5e00093ce57490ff, 0xfa060d0a1a000f0a, 0xe78f0409ecbc0409, 0xfdffbc058d86ff09, 0xff09f50208bd27ed, 0x9b8b42ff3d329e8e, 0x0700020a0c01113c, 0xc1ffba41d35eff0a, 0xff0a15000cbe0378, 0xccea25ff3daaa03b, 0x30000c0a3e020e3c, 0x90c2ff0a2bb3040a, 0x0bbac8ab5bffbbd3, 0xbcaa3ea1ff0a390e, 0x50060dbb9c6aa9ff, 0xec8eff0a4b010c0a, 0x04bd1c025cffbb59, 0x3cc280c4ff0a59b7, 0xa60112bbd9ef9eff, 0x780b0b0a86010c0a, 0x4709ff0a7394050a, 0x12bc060eceffbb7a, 0xbac1d614ff0a8100, 0x98bb043bb41c43ff, 0xbd7bff0a93060d0a, 0x043b77fc2cffbc42, 0x3cbf8330ff0aa1c3, 0xca050b3bed3eeeff, 0xb702090abc93050a, 0x80ff3cb1e30eff0a, 0xff0ac599043983c6, 0xa85bd3ffbd05d1c7, 0xd790050adc99043a, 0x1eff3ca3179dff0a, 0xff0ae5000cbd0457, 0xd787f7ff3c1808c2, 0x7e010c0c0ac3043c, 0x1a020d0b3a0b0e0b, 0x07070e0b0c91040b, 0xaeff3d04ba79ff0b, 0xff0b150009bc9c6f, 0x154620ffbd6728e4, 0x27060e0b2c070e3c, 0xb2ffbb80cdb2ff0b, 0xff0b3500093c2b9e, 0x5f67eeffbc42d3ac, 0x50000c0b5e01093c, 0x41a9ff0b4bab040b, 0x09bb136ff7ff3c1f, 0x3cc245c9ff0b5900, 0x70000fbbfd1017ff, 0xc8c2ff0b6b00020b, 0x04be0e96a2ffbc9a, 0xbc049b45ff0b79bc, 0xc6060dbcdb483dff, 0x9801120ba600090b, 0x6f11ff0b93af040b, 0x0bbd4591ebffbb90, 0x3d157967ff0ba103, 0xb8bd043a6e5b60ff, 0xe2beff0bb3b3040b, 0x043c93cf63ffbb25, 0x3da652c5ff0bc1bf, 0xeabb043d10a6bcff, 0xd700090bdc040e0b, 0x46ff3d8be058ff0b, 0xff0be50002bd8e1d, 0x95ab8bffbd8d64fb, 0xf700070bfc0011bc, 0x83ff3c822a05ff0b, 0xff0c05bc04bd35ba, 0xba0fa1ff3d23ec41, 0x5600090c9a01113d, 0x28c7040c36070e0c, 0x10b9ff0c23010c0c, 0x12bcfe8ac9ffbbe2, 0xbbae1406ff0c3100, 0x48cb043ccf1694ff, 0xe1e5ff0c43c7040c, 0x0dbb809b95ffbcac, 0xbd46b8f2ff0c5106, 0x7a070ebca5349fff, 0x670b0b0c6c060d0c, 0x19ffbbfd078cff0c, 0xff0c7500113b205b, 0x1c66d6ffbc47d0f1, 0x8702090c8c080ebd, 0x87ff3d1c1ba5ff0c, 0xff0c95060d3b2aaf, 0x0217baffbc498bac, 0xc200090ce2060dbd, 0xaf00070cb4000f0c, 0x7eff3d69cd66ff0c, 0xff0cbd070e3cc4cf, 0x1bc712ff3d0078b6, 0xcf080e0cd4ca043b, 0x5bff3b3c3c60ff0c, 0xff0cdd030bbd01b8, 0x73b2e6ffbe254f6f, 0xf8030b0d06cb04bd, 0xda46ff0cf396050c, 0x07be09f401ffbe23, 0xbe4792a7ff0d0101, 0x180008be37f911ff, 0x3175ff0d1302070d, 0x07bc884480ffbd70, 0x3bca3000ff0d2100, 0x66100ebcc73515ff, 0xbe01090e4a000c0f, 0x5a01110d7abb040d, 0x470e0e0d4cba040d, 0xe1ffba2785c1ff0d, 0xff0d5500123ce7fd, 0x6c16baffbd9fd15b, 0x6700090d6c9404bc, 0x7cff3e274f09ff0d, 0xff0d759c043d3372, 0xd24dabff3cf2530e, 0x9001080d9e02083d, 0x970fff0d8b00090d, 0x073bd1325fff3c75, 0x3c2c8cf9ff0d9900, 0xb00002bc4b558cff, 0x2cedff0dab010b0d, 0x04bd2b53b8ffbc81, 0x3b513043ff0db9cc, 0x06060dbd1ac02bff, 0xd890050de602090e, 0x4777ff0dd3c1040d, 0x11bc098f0cff3b43, 0x3c39815eff0de101, 0xf8030bbb833bf0ff, 0xe156ff0df301110d, 0x02bbffb414ff3b97, 0x3afb0b21ff0e0100, 0x2a0012bc3aa204ff, 0x17070d0e1c00020e, 0xefffbb83c194ff0e, 0xff0e259605bd01ab, 0x44d377ffbc814bac, 0x3700020e3cc704bd, 0x5dffbb82618eff0e, 0xff0e450b0bbd1cc0, 0xc3bd5affbd411550, 0x9600020eda0109bd, 0x68000f0e7600070e, 0x0316ff0e63030b0e, 0x0b3cd5356eff3da3, 0x3a2501daff0e710a, 0x880e0b3ce5cac0ff, 0xc0c7ff0e830b0b0e, 0x11bd9df324ffbc24, 0x3d70cc9fff0e9100, 0xba010cbba75865ff, 0xa7bc040eac01110e, 0x76ff3a03006bff0e, 0xff0eb5040b3cf550, 0x097c6bff3d8f7ab9, 0xc70e0e0eccbb043d, 0x90ffbc72cabaff0e, 0xff0ed5cc043dedcf, 0xbbe035ff3d9a9a74, 0x02c7040f22020d3c, 0xef8f050ef402090f, 0x28ff3d413e30ff0e, 0xff0efdbe043db6c1, 0xa200bfff3be60355, 0x0fc9040f1402093d, 0x88ffbd257e40ff0f, 0xff0f1dca043df7ea, 0xc943b8ffbd5c3368, 0x38060d0f460209bd, 0x4057ff0f33010c0f, 0x123d455328ff3c37, 0xbc811a9cff0f4100, 0x58000fbd1fbf9eff, 0xed20ff0f53bd040f, 0x04bd7924b7ff3e01, 0xbc74a5faff0f61cc, 0x860209bd05c81dff, 0xb6060d0ffa240e10, 0x8801120f96220e0f, 0xd279ff0f831c0e0f, 0x04bc6dd6f0ffbb5c, 0xbd2fd886ff0f919a, 0xa800093a985e0eff, 0x0d2aff0fa3000c0f, 0x0e3d4d70ceff3c96, 0xbcb016d0ff0fb123, 0xda1c0e3e29994aff, 0xc7160e0fcc180e0f, 0xc8ff3c6c551dff0f, 0xff0fd50009bcd9a1, 0x93f108ff3d092f9b, 0xe700120fec1d0ebc, 0x29ffbca38d33ff0f, 0xff0ff5220e3dff38, 0x7b9459ff3cc9a657, 0x22020d10420009bb, 0x0f93051014000d10, 0xc0ffbcb31cb0ff10, 0xff101dc504bde150, 0x7ce49bff3cd255f2, 0x2f2a0e1034040dbb, 0x6fffbe0c35e8ff10, 0xff103d2b0e3dca07, 0x8bb04cffbbdc074c, 0x58000f1066000c3a, 0xb15fff1053c50410, 0x0b3dc656a8ff3e83, 0x3b3a9f34ff106107, 0x782b0ebca98b0aff, 0xd2d8ff1073b80410, 0x04bd2653c6ff3e3b, 0x3d3b50cbff1081cd, 0x0d000cbd00e6d6ff, 0xb2140e10c9030b11, 0x9fbb0410a4bd0410, 0xabffbc460fb0ff10, 0xff10ad9005bb9cb0, 0x933b74ff3c4792fc, 0xbf190e10c4270ebb, 0x89ff3bb1f594ff10, 0x3cc6ed76ffb9abff, 0x10df8e0510ed140e, 0xfed963ff10dac104, 0x060dbbbf4356ffbc, 0xffbce35731ff10e8, 0x10ff9005bd492746, 0x3ad7feff10fa8f05, 0x190ebccc4dfeffbc, 0xffbb2c4b9aff1108, 0x111fba04bc81d52c, 0x06fe38ff111a000d, 0x140ebe6caa0effbe, 0x120e113592051143, 0xffbdbb5057ff1130, 0x113e020dbcab25bc, 0x91c2ff3e4b47c4ff, 0xcd041155000fbcbc, 0xffbd4f7f59ff1150, 0x115e030bbe03a2db, 0xfc6dffbc7f8839ff, 0x000800000013bd21, 0x0001000003e80000, 0x0000000011120000, 0x160e08d38d050000, 0xb9040248c3040460, 0x150600a07e05012c, 0xb504003c0012005c, 0x26ff0029b104002e, 0x3c62b998ffbb153b, 0x496028ff00370d0e, 0x7d043d2a9c7dffbc, 0xdbff00496304004e, 0x3babccd1ffb82963, 0x4d8f97ff0057060d, 0x02053cb179a8ff3b, 0x040e007263040080, 0xffbbb1244aff006d, 0x007b0108bc9275c6, 0x57ecffbcf5a67fff, 0x020800920107bbd8, 0xffbbf7613bff008d, 0x009b000c3b28e358, 0xdeedffba90aeddff, 0x000f00e800073c12, 0x000200ba520400c8, 0xffbc852961ff00b5, 0x00c3050d3bbfa9da, 0x377fff3c374266ff, 0x010c00dab6043cac, 0xff3a4250ceff00d5, 0x00e301093bdba4e4, 0x5328ff3cad3c8dff, 0x060e010c070ebbcd, 0x1bff00f9010c00fe, 0xbc8022feffbb9df3, 0x85c369ff0107b204, 0x0b0eb980cc6aff3c, 0x89ff0119000c011e, 0xbd0c387bffbc16fe, 0xac2e75ff0127a404, 0x0012baf3e198ff3b, 0x070d0178080e01bc, 0x0209014a00070158, 0xff3cb4ec32ff0145, 0x0153bc04bc4f546f, 0xd52fffbc430116ff, 0x0c0b016a0109bcea, 0xff3d5ab31bff0165, 0x017383053df5a9b9, 0xa3bcffbde73e9cff, 0x0107019c010cbd8d, 0x92ff01890009018e, 0xbca65facff3d139d, 0xa0a301ff01970011, 0x00093dbb592eff39, 0x5aff01a9000701ae, 0x3d5c8e0dff3dcece, 0x60072fff01b7070d, 0xbd04bdcd792dff3c, 0x000801e400020204, 0xbaff01d1120e01d6, 0x3c703e7effbcf036, 0x38a174ff01df0e0e, 0x020dbdad6f81ffbd, 0x7bff01f1000c01f6, 0xbbab29a2ffbc8cb8, 0x9c80a1ff01ff0111, 0xc1043c3bba11ffbb, 0x2905021a030e0228, 0xff3b57550cff0215, 0x02230209bc1a1f55, 0xccb4ff3c68a5d0ff, 0x0002023a1306bcce, 0xffbd511f7eff0235, 0x0243010ebc9cb54f, 0x42a5ffbc8cfe39ff, 0xc4040368140eba30, 0x0d0e0298000202dc, 0x0011026a080e0278, 0xffbd493dfbff0265, 0x027301083adc6983, 0xc9b1ffbe249693ff, 0x000c028a0e0ebd40, 0xffbd0b0ae3ff0285, 0x02930b0b3bae5d6b, 0xbf37ffbda87b60ff, 0x070e02bc0111be0f, 0x8aff02a9001202ae, 0x3ad3f24affbc833d, 0x87a3ccff02b70011, 0x0006bd4aa79effbc, 0x7eff02c9870502ce, 0x3b72babcff3c8a39, 0x0c2171ff02d74705, 0x070dbdd0182dffbe, 0x000d0304080e0324, 0x71ff02f1030b02f6, 0xbd2f3760ffbc906b, 0x893056ff02ff070e, 0x130e3a07728cffbb, 0xefff031101110316, 0x3c9b1c46ffbc1d5d, 0x170c6bff031f8b05, 0xc804bda942faff3d, 0x010c033a01070348, 0xffbd593bb0ff0335, 0x03430d0ebdae2956, 0xf7b2ff3cc7f26bff, 0xca04035a0b0bbd44, 0xff3ba99380ff0355, 0x03630009bd048853, 0xbc01ff3d9a76dfff, 0x000c03dd0012bd5d, 0xd6ff037900070399, 0x05038b0b0b3dbbb3, 0x3c7947b0ff038678, 0x9402073d05d5f3ff, 0xa0ff3d669b14ff03, 0x0703bd0b0b3d4e4a, 0xff03aa010803af00, 0x00a3e0ff3e175264, 0x1717ff03b8010c3e, 0x053de20d77ff3d99, 0xff03ca560503cf64, 0x0d9ddcffbaf7a200, 0xf04fff03d8c4043e, 0x0c3e6547d2ff3e0a, 0x0503fc000f041c00, 0xff03f2120603f755, 0xf8ea30ff3d13de8b, 0x0b0bbdf60bd0ffbc, 0x80ff0409030b040e, 0x3c21f883ffbb6eaa, 0xc915a3ff0417cb04, 0xcb04bc9b67ceff3c, 0x550504320b0b0440, 0xff3d19fea7ff042d, 0x043b010c3ddf770a, 0xf895ff3d7dd695ff, 0x1405045289053da1, 0xffbd99274cff044d, 0x045b00073bc28d2e, 0x3a64ffbd82eb84ff, 0x330e06a08c05bd2c, 0x880404f88e040584, 0x02090494690404b4, 0xd4ff04816f050486, 0xbc8be6a9ffbb01c6, 0x338e89ff048f000b, 0x8004bc21510cffbd, 0x08ff04a1020704a6, 0x3b984932ffba0a3e, 0x2e757fff04af8404, 0x8d043a2e3398ffbc, 0x010b04ca2b0e04d8, 0xffbbfdaea8ff04c5, 0x04d341013bbb9272, 0xd4ffffbb0b7e54ff, 0x010c04ea0a0bbca9, 0xffbbbb23edff04e5, 0x04f35405bca7892a, 0x14afffbd257a2eff, 0x1c0e05400107bc99, 0x010c0512170e0520, 0xffb809b9a9ff050d, 0x051b060dbcc7c322, 0x71fbff3c0daf3fff, 0x010605321d0e3cbc, 0xffbd2b8ff9ff052d, 0x053b000c3bb192da, 0x708cffbaab7d3aff, 0x1e0e0564000639fa, 0xd7ff05511c0e0556, 0xbd2fd63cff3c37f7, 0xd83bbdff055f140b, 0x01063ca2d3f7ff3b, 0x34ff0571000c0576, 0xbd5e70c4ffbc909b, 0xb9b5bfff057f0206, 0x350e3b80d4f8ffbc, 0x000605d01b030614, 0x230505a20b0b05b0, 0xffbbbf0092ff059d, 0x05ab41013b4f73e8, 0xaa74ffbcf0d6feff, 0xab0405c20c053dda, 0xff3a49d220ff05bd, 0x05cb340ebb23cf27, 0x5260ff3d646c9aff, 0x0b0b05f47b053c06, 0x39ff05e1670505e6, 0x3b1b740bffbb9ff2, 0x49b296ff05efcb04, 0x000c3c0c5937ffbc, 0xf3ff060100070606, 0x3c748424ffbb4dde, 0xf87b6fff060fc804, 0x8405bce623e4ffbb, 0x000d063ccc04065c, 0x16ff0629a204062e, 0xbd363d68ffbc292e, 0x23f553ff06376105, 0x0207bc81ab8fffbc, 0x27ff0649000c064e, 0xbd3d2d95ffbbcaea, 0xbbef5eff06570b0b, 0x01113d6c5b80ffbb, 0x00020672010c0680, 0xffbcd13501ff066d, 0x067b0b0b3b014b78, 0xa1edffbcf534ddff, 0x020d0692030bbd99, 0xffbd39541fff068d, 0x069b0007be0ca2ae, 0x66abffbdcec585ff, 0x030b07c000023cf0, 0x000806f0230e0734, 0x220e06c2c20406d0, 0xff3aa9d41cff06bd, 0x06cb010c3cc6f0be, 0x28bcffbd1e29eaff, 0x011206e2220e3c96, 0xffbabdb455ff06dd, 0x06eb000fbdf57a8b, 0xcbdaff3d99a03dff, 0xa9040714b404bc7b, 0xdaff0701000c0706, 0xbe1e592bffbd08cd, 0x49a7b6ff070f000c, 0x000f3d937707ffbc, 0x65ff0721020d0726, 0xbd9adcf4ffbd1a8d, 0x74e050ff072f060d, 0xc704bd1fc85affbc, 0x060d075cbc04077c, 0x35ff0749220e074e, 0x3d16bf35ff3aba3c, 0x35843eff0757ba04, 0x060dbd9973d3ff3c, 0x15ff07690111076e, 0x3aa9d8d8ff3d310a, 0xe72ba6ff07770012, 0x0012bd5dc203ff3c, 0x010707921d0e07a0, 0xffbd2cf936ff078d, 0x079b290e3c500278, 0x65f9ff3cc1df7fff, 0xcc0407b2060d3d9d, 0xffbce42d0dff07ad, 0x07bbca043d220be6, 0x574cffbe1e1bd6ff, 0x000f08500009bca3, 0x000707ec050b080c, 0x26ff07d9020d07de, 0xbdf81dbeffbcf292, 0xd3bb67ff07e7c904, 0x0108bcc9674bff3c, 0x6aff07f9070b07fe, 0x3ca0fc67ffbd9fc8, 0x27313dff0807220e, 0x190e3d975963ff3d, 0x00070822170e0830, 0xffbcb55e62ff081d, 0x082b0007bbc37f98, 0x20afff3d2cb9e4ff, 0x1c0e08421d0e3c44, 0xff3d430d12ff083d, 0x084b1f0ebcf52ff7, 0x2619ff3ccbb1bfff, 0xbe04088f000fbc01, 0x020d086a030b0878, 0xffbdc994daff0865, 0x0873b504be25e1b5, 0xe35effbe62fd4eff, 0x00ff0881170ebe2a, 0xff088ac5043d1240, 0xbf5c08ffbd3c5cd0, 0xa5060d08b3be04bc, 0x0b31ff08a0011108, 0x0bbce7eed2ff3c20, 0xbd24d662ff08ae03, 0xc50109bd517cabff, 0x7746ff08c0001108, 0x11bd6aaa4cffbc87, 0xbcafaf24ff08ce01, 0x020d0ebd15f79aff, 0xf2c9040ac6030e0d, 0x2b01110966000209, 0xfd000c090b010c09, 0x8e8bff08f8000b08, 0x04bb951ca2ff3c9e, 0xbc506cf0ff0906b2, 0x1d0009bb83f30eff, 0xbe8cff0918060d09, 0x0ebc883f57ffbd27, 0xbc5a90eeff092600, 0x4f060d3caef518ff, 0x3c7d040941920409, 0xfdffbcfe60bfff09, 0xff094a94043d11fd, 0xf6747fffbe3b641a, 0x5c900509610008bc, 0x32ff3d526a5bff09, 0xbd4f9110ff3d9bbd, 0x098e000f09ae070d, 0x097bbc0409800009, 0xa166ffbc447e19ff, 0xe1ff0989050b3d11, 0x3cda1ad2ff3c116e, 0x099b011209a0010c, 0xb1f3ffbb328000ff, 0xa8ff09a9060d3b71, 0xba162bfeffbc761b, 0x09c4b50409d20011, 0x12df64ff09bf010c, 0x010e3d88084eff3c, 0xffbbd986b4ff09cd, 0x09e4a304bd18c36e, 0x8f2968ff09df8f05, 0x00073db8ed80ff3d, 0xff3d497cf8ff09ed, 0x0a43070b3d917f2a, 0x0a1e02090a3e0112, 0x0a0b050b0a10010c, 0xdbecffbc9008beff, 0x94ff0a199505bccd, 0xbcffde3dffbcafd6, 0x0a2b000c0a30010c, 0x4822ffbbab2978ff, 0x2dff0a39050bbc59, 0x3b113d80ffbc0e7d, 0x8bca04be48575aff, 0x5d0b0b0a6b010c0a, 0xff58ff0a5800020a, 0x0cbc74446effbb40, 0xb9f7ddecff0a6600, 0x7d00023cb341aeff, 0xadbbff0a7800110a, 0x0e3d951d3fff3d11, 0x3bad1060ff0a8601, 0xa6020ebc1dbddeff, 0x9c00120aa101110a, 0x03ffbb64a80fff0a, 0x3d923b88ff3c284d, 0x0ab300020ab8140b, 0xf3a7ffbcb9c2d0ff, 0xa4ff0ac19605bc2f, 0xbc74f086ff3a19bb, 0x0b5a010c0be6c304, 0x0af6010b0b16060d, 0x0ae3a2040ae8b304, 0x2290ffbb5748e5ff, 0x3eff0af1020dbd05, 0x3d484de5ffbc2deb, 0x0b036e040b086f04, 0x2b8bffbcc665e5ff, 0x44ff0b110b0ebe16, 0x3bea9a93ffbb2ece, 0x0b2c000c0b3a070e, 0xc53589ff0b27000f, 0x060eb9cea261ff3d, 0xffbbbe0983ff0b35, 0x0b4c0b0e3cc462f4, 0x574056ff0b470a0e, 0xbd04bd2d327dffb9, 0xff398ebef2ff0b55, 0x0ba2060d3ce3603a, 0x0b7401110b820009, 0x36fb88ff0b6f0b0e, 0x030bbbb784d0ffbd, 0xff3d0686d8ff0b7d, 0x0b94b9043a568560, 0xa3a9b4ff0b8f8f05, 0x050bbc8fee07ff3b, 0xff3c646c62ff0b9d, 0x0bc6bb043d24baab, 0x0bb3ae040bb8040e, 0x6f4bffbd05bb01ff, 0xfaff0bc1ba043d87, 0xbde96628ffbc9c91, 0x0bd3c1040bd80012, 0x4e2affbc15b6ddff, 0xd1ff0be1bc043d07, 0x3da77479ff3d1387, 0x0c3200090c760112, 0x0c04060e0c12070e, 0x1b78a8ff0bff0107, 0xc604bc103462ffbd, 0xffbc1b7eafff0c0d, 0x0c24c8043c45fdb6, 0x312e08ff0c1f080e, 0x080ebcceacfdff3c, 0xffbcf17e16ff0c2d, 0x0c56070ebbbc8f27, 0x0c43c8040c48060d, 0xb834ffbc08243fff, 0xa5ff0c5100123b01, 0xbd0cc2efffbc33d5, 0x0c6302090c68080e, 0x9e03ff3d0c7f49ff, 0xcdff0c718e053b19, 0xbca7cc1fff3c847d, 0x0c9ecb040cbe060e, 0x0c8b00070c90030b, 0x35ddffbdd08c50ff, 0x25ff0c990008be16, 0xbe30ffcfffbe2831, 0x0cab01070cb00008, 0x5ca0ffbd6cbd78ff, 0x00ff0cb90007bcec, 0xbcb34955ff3bb5f8, 0x0cd4000f0ce20109, 0x050d67ff0ccf0009, 0xcb04b9a1d5dcff3d, 0xff3c1a0effff0cdd, 0x0cf4000fbd1a1261, 0xdfe95fff0cef080e, 0xc904bdd1b090ffbc, 0xffbc229c83ff0cfd, 0x0edf0e0e3cdf89e0, 0x0d6d02090dc3000f, 0x0d36060d0d56ca04, 0x0d2300090d289404, 0x809cff3e1693ecff, 0x35ff0d31040b3d21, 0x3cf21847ff3d750b, 0x0d43030b0d489205, 0x8900ffbd9dcf1dff, 0xa0ff0d519305bd18, 0xbce17780ffbc8476, 0x0d6395050d68070b, 0x7de6ffbe11cc70ff, 0x0dbcda4f60ffbe4b, 0x0d0d8cc7040d9a02, 0xbde10068ff0d7e00, 0x8a46bdff0d879105, 0xca043d91cd77ff3c, 0xffbd462e48ff0d95, 0x0da3bd04bdb52358, 0xb5030b3de9de08ff, 0x56c0ff0db000020d, 0x04bdb1ced9ffbd5e, 0xbc38d749ff0dbeca, 0x53010cbcde3c40ff, 0xefbb040e0f01090e, 0xdc060d0de1ba040d, 0xf1ffbba31a03ff0d, 0xff0dea00113be4be, 0x3f9b9bffbdba5cee, 0xfcc7040e01010bbc, 0x46ff3c7d6a4bff0d, 0xff0e0a0007bd1537, 0xc2e1d7ff3c974194, 0x2502090e33060d3b, 0x32aeff0e20cd040e, 0x0b3d64cc6bff3c07, 0x390e8facff0e2e03, 0x450012bc3f1171ff, 0xb383ff0e4002090e, 0x02bcb16ffeffbc3b, 0xbc14c3a2ff0e4e00, 0x9b0209bd1e6c1cff, 0x6d060d0e7b010b0e, 0xbfbdff0e6800090e, 0x043ba6b644ffbcf7, 0xbc3792e7ff0e76c7, 0x8d0002bd71e671ff, 0xba19ff0e88cd040e, 0x04bd2d0643ff3cd7, 0xbc9e50ebff0e96b9, 0xbf8f053d5a92d5ff, 0xacc7040eb1c8040e, 0xa0ffbc8ee2bbff0e, 0xff0eba00023d493d, 0x28f1a4ff3d2a7a54, 0xcc030b0ed1cc04bc, 0x3dffbcebcab4ff0e, 0xff0eda0011bc9dc9, 0x43099dffbd88ea80, 0x7390050ff6170ebd, 0x0f00090f2f060d0f, 0xfcc5040f0101120f, 0xf0ff39fc0a9fff0e, 0xff0f0a9104bcb8f5, 0x6830adffbd4ede68, 0x1c070b0f21000f3c, 0xa5ffbde8c9b2ff0f, 0xff0f2a010c3c3f13, 0xa8ffd9ffbc7d7ac8, 0x45000c0f53150e3c, 0x7066ff0f4000080f, 0x0b3ccfcc7dffbb27, 0xbb4119f7ff0f4e09, 0x65c8043da1e00bff, 0xe218ff0f60010c0f, 0x0c3d5ab865ff3b92, 0xbc3d7f5dff0f6e01, 0xb2b904bde6f970ff, 0x8d00090f920f0e0f, 0x0e16ff0f8800070f, 0xff3d29f69fff3d8e, 0x0fa4b5043c825100, 0x058e65ff0f9f140e, 0x000f3b0640aaffbd, 0xffbe2e5c60ff0fad, 0x0fd60111bcdffb1f, 0x0fc3c8040fc8cd04, 0x292fffbc16e92eff, 0x18ff0fd10002bccc, 0x3d104b07ffbd8fe2, 0x0fe3020d0fe80009, 0x9572ff3d1c5e22ff, 0x12ff0ff1140eba89, 0xbd87a48dff3d0978, 0x1042020d1086050d, 0x1014000d1022ca04, 0xf2c2b0ff100f250e, 0x190ebd2eb39affbb, 0xff3d6fb575ff101d, 0x1034340e3c3f94ed, 0xbcde96ff102f230e, 0x00073be14e31ffbc, 0xffbdde23fcff103d, 0x1066040dbbdb3560, 0x1053010910582a0e, 0xa138ffbe061d05ff, 0x0eff1061bd043d0a, 0xbbadd3f3ff3e4c07, 0x107300071078030b, 0x132cff3e22628cff, 0x18ff1081090b3dba, 0x3d7b0f50ff3d88ca, 0x10ae000c10ce190e, 0x109b000810a0180e, 0x4100ffbd1b18a6ff, 0x3bff10a99205bc45, 0x3c4680abff3b2845, 0x10bb000710c00109, 0xe8bcff3d0f217aff, 0x76ff10c9000f3c22, 0xbcbdb689ffbda969, 0x10e4250e10f20009, 0x1b0932ff10df220e, 0x00123c5b46f0ffbc, 0xff3c17b638ff10ed, 0x1104000cbbec7ba4, 0xb50d5eff10ff070b, 0xb804bc8bce28ff3b, 0xff3ea34c68ff110d, 0x00000013bcda2ea3, 0x000003e800000008, 0x0000111b00000001, 0x08ca8d0500000000, 0x0248c3040457160e, 0x00a08c05012cba04, 0x003cad04005cb904, 0x00291606002eab04, 0x8255ff3988d6c7ff, 0x8aff00370d0ebc03, 0x3cda5fa9ffbc6d9b, 0x0049070d004e0d0e, 0xaf22ff39d933f0ff, 0x48ff0057010cbd64, 0x3d31620eff3c3ca7, 0x0072060d00800002, 0x30e758ff006d0108, 0x070dbdb68434ffbd, 0xff3c9020abff007b, 0x0092080ebe0a40d6, 0x07f269ff008d070e, 0x060dbd572391ff3c, 0xff3c16ebccff009b, 0x00e8b6043d3bc274, 0x00baa40400c80107, 0x6eebe6ff00b5020d, 0xb204ba8db188ffbc, 0xff3c87b9e3ff00c3, 0x00da020dbbf1f2ae, 0x71d418ff00d57b04, 0xa404bd956010ff3b, 0xffbc502a00ff00e3, 0x010cb904b9895112, 0x00f9011200feb704, 0x76e9ffbd835e40ff, 0xd8ff0107060dbe68, 0xbd0e2386ff3bcd2a, 0x0119000c011e0d0e, 0xec80ff3d20cad8ff, 0xc8ff0127000c3bab, 0x3dcaa2deff3da6d4, 0x01780b0e01bcbb04, 0x014a000c01580009, 0xb9d6d0ff01450002, 0x010ebcac138affbb, 0xffbc14f9ceff0153, 0x016a080ebd44a9c5, 0xab9894ff01658c05, 0x0a0ebdf78542ff3c, 0xffbd873abbff0173, 0x019c0d0ebc48e45d, 0x0189000c018e0007, 0x1296ff3d1b260cff, 0xccff0197010c3dfa, 0x3d8bf367ff3cb927, 0x01a9000201ae010c, 0x63daffbd5ddffbff, 0x43ff01b70109bc39, 0xbbcbb09cff3d5edd, 0x01e400080204060d, 0x01d10e0e01d6120e, 0xe542ffbb929cf9ff, 0xb2ff01df010cbd3a, 0x3cb5814affbb6050, 0x01f10f0e01f60b06, 0xe00effbcbaaf5eff, 0xc5ff01ff040e3cc9, 0x3bdd3d69ffbb8ad3, 0x021a010702280009, 0xd06495ff0215010c, 0x070d3d36e944ff3c, 0xff3bc54d30ff0223, 0x023a070d3d2b3e37, 0x4296e9ff02350012, 0x080ebd0c2763ffbb, 0xffbd6b7a84ff0243, 0x034d0112bde7e899, 0x0298c60402dc140e, 0x026a86050278080e, 0x2aac90ff0265060d, 0x0209bc88be74ffbd, 0xff3932f582ff0273, 0x028a0e0ebd01091c, 0xa4f789ff0285000c, 0x130bbd1b1abaffbc, 0xffbccfd507ff0293, 0x02bcca043d7f0953, 0x02a9070d02aec804, 0xf538ff3c846778ff, 0xf6ff02b78605bd15, 0xbc18b252ffbd1ab2, 0x02c90d0e02ce060d, 0x929effbd93d898ff, 0xe1ff02d70012ba6f, 0x3d33b68aff3bf537, 0x02fb000c031b0011, 0xa8eea6ff02ed0007, 0xb8e8ff02f60b0b3d, 0x0b3d48403dff3cd0, 0xff03088905030d0b, 0x08308eff3dbffa44, 0x16f4ff0316c4043e, 0x053e29c37eff3dfa, 0x0703310002033f89, 0x3cb47098ff032c02, 0x3a01073a23868cff, 0x9cff3c92511cff03, 0xff03480007bc200f, 0x1b015cffbd6ba7f0, 0x99620503dd0f0ebd, 0x6bc40403790b0e03, 0x57eeff0366030e03, 0x0ebd9a6ba3ffbd21, 0xbb26433aff03740a, 0x8b01113cae3e48ff, 0x6101ff0386100603, 0x0dbbea7994ffbd8d, 0x3bbd6bbbff039404, 0xbd030b3d16a8e6ff, 0xaa000703af100603, 0x74ff3daa536aff03, 0xff03b812063ce9a0, 0x58d7b2ff3c55ac6c, 0xca890503cf0108bb, 0xe6ffbca50f25ff03, 0xff03d8000f3bf713, 0x3c284aff3cc40003, 0x0513060425000c3b, 0xf2010703f7120e04, 0x0aff3d665d80ff03, 0xff0400060d3c89f0, 0x8920b2ff3c6c5565, 0x12020d04172505bd, 0x20ffbc1ef862ff04, 0xff04202905bda76d, 0x20b6d1ff3d1f7741, 0x32000204370006bc, 0x10ffbe09e73cff04, 0x050449c404bda098, 0xbe5160deff04441e, 0x520f06bdc12aadff, 0xbcff3d6547a4ff04, 0x0606978c053d08d1, 0x0604efa104057b0e, 0x05048b410104ab07, 0xff04783c01047d4e, 0x701a0cffbaa39d8f, 0x938fff0486000f3c, 0x0ebbc3c7b7ff3b9f, 0xff0498020d049d19, 0xcba475ff3caef1b8, 0x9e1aff04a6000cba, 0x04bbc56fb7ffbb22, 0x0404c1060504cf86, 0xb9807bb7ff04bc75, 0xca200e3c61fb7bff, 0x24ffbb258eb7ff04, 0x0504e10111bd020a, 0x3bf9bc14ff04dc06, 0xea270ebc7bbabfff, 0xd2ff3d04a095ff04, 0x0405370207bb5b89, 0x0405092a0e0517b6, 0x3b6b19f8ff0504b5, 0x1201113d228ee6ff, 0x9affbbf7b064ff05, 0x0e05290b0b3bdb0b, 0x3a681e13ff052435, 0x32140bbc838ccdff, 0x08ffbcb446ddff05, 0x11055b000c3beacd, 0xff05482a0e054d01, 0xbe3fecffbb7ef654, 0x3a53ff055609063b, 0x0ebc9b2a21ff3bce, 0xff0568060d056d19, 0xdf2a8fff3bb2dabb, 0x0a92ff0576200e3c, 0x053c8f6d6effbcb0, 0x0605c79f04060b02, 0x040599000805a713, 0xbb2eee2aff059463, 0xa27304bc8802ccff, 0xd5ffbc24cbd1ff05, 0x0d05b96b043c83d8, 0xbc73c101ff05b403, 0xc20111bb2985f5ff, 0x99ffbc126a20ff05, 0x0705eb0108bd77f0, 0xff05d8000205dd02, 0xad9639ffbdf45d9c, 0x5276ff05e6ae04bd, 0x07bd82ccc8ffbca7, 0xff05f8000505fd01, 0x39acb6ffbdc00d6e, 0xbbf1ff06060005bd, 0x04bc930548ffbd25, 0x01063316060653b5, 0xff06201106062541, 0x274a92ffb9721c63, 0xff9eff062e73043d, 0x0bbc6e5a86ffbd43, 0xff0640000b064507, 0x1d1e0cffbc3a48e1, 0x0332ff064e9b043d, 0x04bc5031c1ffbd30, 0x060669020d0677b6, 0x3d0a42d4ff066411, 0x7200083d704612ff, 0x1bff3c07e438ff06, 0x0d0689000c3d04d1, 0xbd521e8bff068400, 0x92000fbbbdfba8ff, 0xfcff3cbd07dcff06, 0x0407aebe04bb1ff5, 0x0406deb6040722bc, 0x0d06b9b40406c7b5, 0xbd4ad5d2ff06b400, 0xc21d0e3a40fc1fff, 0x6fffbbb1e47cff06, 0x1206d9190ebdffd9, 0x3d423f08ff06d401, 0xef89ff3c7f7d55ff, 0x0a0b070200073da0, 0x0bff06ef000f06f4, 0xbccba2c2ffbdcf1e, 0x3c8fa6ff06fd000f, 0x000fbcaa608fff3d, 0x2bff070fb7040714, 0x3d1fac36ffbcabcd, 0x676621ff071d0008, 0x01113b8eb74dffbc, 0x000c074a060d076a, 0x8dff07370009073c, 0x3c08660aff3d4b13, 0xbae067ff07450b0b, 0x00113d0f5cf5ff3d, 0x8cff0757000c075c, 0x3d8988f1ff3d476c, 0xd983c1ff0765000c, 0x00083d0e980effbc, 0x00070780010c078e, 0xffbd1f069cff077b, 0x0789030bbbede80a, 0xa8edff3ca0218aff, 0x230e07a0000f3de6, 0xff3d0cec5cff079b, 0x07a9000c3dbcfb81, 0x1331ffbb738dccff, 0x0011083e00093c54, 0x170e07da1c0e07fa, 0x3eff07c7c40407cc, 0xbcd44119ff3d0fff, 0x85a7abff07d50007, 0x1d0e3cda5a22ff3d, 0x9eff07e7cd0407ec, 0xbd8736fcffbcd66b, 0xd441a9ff07f5230e, 0x060dbbdc6f57ff3c, 0x010c08102b0e081e, 0xff3b0e8dfbff080b, 0x0819cd04bc8b10b7, 0x0a0affbcc41812ff, 0x280e0830070b3b69, 0xff3a00b263ff082b, 0x08390008bd219a41, 0x34e5ffbdbe4a27ff, 0xc50408860012bc9b, 0x00020858000c0866, 0xffbc0e350fff0853, 0x0861030bbd271b88, 0x8ffdffbc8e4fdaff, 0xc60408780002bd58, 0xffbc9ee820ff0873, 0x0881190e3d70a0b0, 0xe9efff3c611ea1ff, 0x190e08aa060dbcfa, 0x43ff08970109089c, 0xbca25b50ff3ce6d8, 0x181eb1ff08a52b0e, 0x030b3b567147ffbd, 0x82ff08b7c60408bc, 0xbd800cc7ffbd1501, 0xb87d74ff08c50109, 0x0d0ebd8237b5ffbd, 0x63040ab4030e0cf0, 0x000f0966010e0998, 0x030b0902020d0922, 0xeaff08ef900508f4, 0xba36f515ffbcfb25, 0xe31d1eff08fd5c04, 0x0002bc737481ff3c, 0xfaff090f5f040914, 0x3e051b51ffbbff69, 0xef7477ff091d000e, 0x030b3e2ec9e6ff3c, 0x01110938000c0946, 0xff3a018a01ff0933, 0x094101113beba569, 0x29d6ffbc40a218ff, 0x5504095801123c2f, 0xffbb256da6ff0953, 0x09614e04bc666246, 0x99c5ffba33f080ff, 0x0007099300023bc4, 0x900509805f04098e, 0xffbdcb7159ff097b, 0x09898e05be09ce74, 0x8d76ffbd375370ff, 0xff3c113ee0ffbe35, 0x0a28040d3cd855a0, 0x09c4760409e4a404, 0x09b1020d09b60002, 0xd32cffbe3f9683ff, 0x27ff09bf020dbd7b, 0xbd1de17effbbb9d2, 0x09d17f0409d6000e, 0x23c1ff3a0d6aa4ff, 0xa8ff09df000cbd0a, 0x3b49efe7ff3d32e3, 0x09fa000c0a080009, 0x26684aff09f5050b, 0x0108bdc5d16fffbd, 0xffbdd88602ff0a03, 0x0a1a030bbe0f62c6, 0xd17fb1ff0a15010e, 0xa704bccb3cf7ff3b, 0xffbbae6bcbff0a23, 0x0a70010c3d955100, 0x0a42000f0a50000e, 0x734a62ff0a3d7f04, 0x01093b6815a1ffbd, 0xffbc095fe9ff0a4b, 0x0a62b204baafcec7, 0x864fefff0a5d8f05, 0x0012bb954c6dffb7, 0xffbb9e9e5bff0a6b, 0x0a9400093b3c0f0a, 0x0a8101070a86060d, 0x1666ffbd164a2eff, 0x49ff0a8f010e3a90, 0x3b905ff0ffbc8a63, 0x0aa101090aa6000e, 0x0fceffbcab032eff, 0x9bff0aafbb04bac5, 0x3c8bec63ff3b7b1c, 0x0b48010c0bd4c304, 0x0ae4010b0b04060d, 0x0ad1a2040ad6b304, 0xa4a1ffbb41c1bcff, 0xe0ff0adf0009bcef, 0xbccb2c84ff3d1ea4, 0x0af173040af6c104, 0xb07dffbd48229cff, 0x61ff0aff00093a79, 0x3c18cac7ffbcd5c5, 0x0b1a000c0b28070e, 0xb17cfbff0b15000f, 0x060eb9b9f86bff3d, 0xffbbab087bff0b23, 0x0b3a0c0e3cb0bf72, 0x14f75cff0b358f05, 0x000c3a94a5d7ffbc, 0xff3790e886ff0b43, 0x0b90060d3cf5a5c2, 0x0b6201120b700009, 0x2a84adff0b5daf04, 0x030bbd24dcf7ffb8, 0xff3cf225eaff0b6b, 0x0b82b9043a411158, 0x9cec39ff0b7d030b, 0x8e05bc7e7160ff3b, 0xff3d3d8cc3ff0b8b, 0x0bb4bb043c97da4f, 0x0ba100090ba6040e, 0x8c3eff3d64f30dff, 0xcaff0bafba04bd7c, 0xbdd20f26ffbc8ce9, 0x0bc100070bc60011, 0x6574ff3c6257e4ff, 0x0cff0bcfbc04bd27, 0x3d96b59fff3d04c7, 0x0c2000090c640111, 0x0bf2c7040c00070e, 0xaa93a0ff0bed010c, 0x0011bcdcf37dffbb, 0xffbb9b3444ff0bfb, 0x0c12c8043cb07ad4, 0x8e4996ff0c0dc704, 0x080e3cb0e453ffbc, 0xffbcd957eaff0c1b, 0x0c44070ebba9b417, 0x0c31060d0c36070d, 0xfeebffbb4e0c72ff, 0x04ff0c3f8f05bc82, 0xbd5f9e9cffbdec3a, 0x0c5102090c56080e, 0x4177ff3cfce524ff, 0x15ff0c5f0b0e3b0a, 0xbca875b6ff3bb338, 0x0c8c00090cac060d, 0x0c7900070c7e000f, 0x84dfff3d451df8ff, 0xbbff0c87070e3c96, 0x3ac69b34ff3cdf8b, 0x0c9900020c9eca04, 0x366cff3dc14d17ff, 0xdcff0ca7070bbc1d, 0xbca5cbc6ffbe0ebf, 0x0cc2030b0cd0cb04, 0x047242ff0cbd9605, 0x9405bde06600ffbe, 0xffbe155577ff0ccb, 0x0ce20008be1eeff6, 0x4473abff0cdd0207, 0x0007bc460240ffbd, 0xff3ba3c580ff0ceb, 0x0ee80e0ebca15b95, 0x0d5b02090dcc000f, 0x0d24060d0d44ca04, 0x0d1100090d169404, 0x5a2cff3e078520ff, 0x33ff0d1f030b3d11, 0x3ce19b86ff3d5dbf, 0x0d3192050d36010b, 0xeb80ffbda35a5cff, 0xd5ff0d3f0007bcca, 0xbd462198ffbcb6a1, 0x0d5195050d56070b, 0x2482ffbe033800ff, 0x04bcc47aa0ffbe37, 0x040d8392050d91c2, 0xff0d7000020d75c0, 0xba8b9aff3d535e7b, 0xf4e1ff0d7ec104bb, 0x043d6c0098ffbdc1, 0x3d9d9388ff0d8cc1, 0xb5030b3e0df250ff, 0xa2c7040da794050d, 0x2effbdbf4e4bff0d, 0xff0db0ca04bdb67b, 0xa1a8d3ffbcfd040b, 0xe2c0ff0dbe0002bd, 0xd2ff0dc7cb043d67, 0xbd666670ffbcc651, 0x0e1892050e5c010c, 0x0deac8040df8100b, 0x70605fff0de5010b, 0x0b0b3b170d11ffbc, 0xffbc7e93f2ff0df3, 0x0e0a0009bd8b235c, 0x6e0511ff0e05c704, 0xc1043cfdcfe6ff3b, 0xff3bcbdd86ff0e13, 0x0e3c0109bbf9d590, 0x0e29ba040e2ebb04, 0x58c7ffbb5507cbff, 0x19ff0e37cd04bc9e, 0xbd16abb5ff3c814a, 0x0e4902090e4e060d, 0x9062ff3c19ccc4ff, 0x7eff0e570002bbc5, 0xbc6aa031ffbbbf56, 0x0e84010b0ea40109, 0x0e71bc040e76c704, 0x76e3ffbc972503ff, 0xdfff0e7fca043c68, 0xbdb70966ffbd3957, 0x0e91060d0e960009, 0x1c09ff3911c515ff, 0xf1ff0e9f0b0b3d23, 0xbd6e94b2ff3d8e14, 0x0eba02090ec8cc04, 0x364e92ff0eb5060d, 0x8f05bc08080dff3d, 0xff3b9acd33ff0ec3, 0x0eda0209bcb61fef, 0x3bf42dff0ed50002, 0xcd043c06ab0bffbd, 0xffbd0e898dff0ee3, 0x0fff170ebd3ee5a7, 0x0f38130e0f7c9005, 0x0f0a000c0f18100e, 0x0ac634ff0f059b04, 0xc1043cb11438ffbd, 0xff3d8d6b82ff0f13, 0x0f2a000fbb4215db, 0xf212e5ff0f250009, 0x8f05be139fe5ffbc, 0xffbcef6368ff0f33, 0x0f5c0009bbabcfee, 0x0f49010c0f4e140e, 0xa94aff3c18034cff, 0xf4ff0f57c1043de9, 0xbc675f21ff3c1bc8, 0x0f69ca040f6e150e, 0xaab6ff3ba8cac0ff, 0x5dff0f77000fbd35, 0xbcfc5302ffbde1ae, 0x0f9b0f0e0fbbb904, 0x0f91030b0f960009, 0x57a6ff3d84b62cff, 0x043c6a91c0ff3d49, 0xff0fa8130e0fad88, 0x8370b2ffbdb73a03, 0x54ceff0fb6b504be, 0x0ebd2b44f8ffbbfd, 0x040fd1100e0fdf11, 0x3d20c5a3ff0fccc1, 0xda060bbc9c590cff, 0x72ffbce2c27aff0f, 0x090ff1020dbd6bc5, 0x3d14b2b8ff0fec00, 0xfacd04bcc6ee7aff, 0xb1ffbc49ced9ff0f, 0x0e108f050d3d040a, 0x09102b0209104b19, 0xff10180007101d00, 0x730e66ff3d310315, 0x3171ff1026c7043c, 0x04bc8b85cbff3dba, 0xff10388e05103dc1, 0xb19a30ff3cc27840, 0xe028ff10460002bc, 0x0dbd9e4a81ffbd5a, 0x0e10618f05106f02, 0xbcc7fbb6ff105c1d, 0x6a00093c9c7cafff, 0x36ff3aeb3316ff10, 0x0e1081040dbcf0b0, 0xbde99be0ff107c2a, 0x8a00083d9dca37ff, 0x6eff3dc2ed4dff10, 0x0c10d7190e3e0ea8, 0x0810a9180e10b700, 0xbd0b962cff10a400, 0xb29205bc31874dff, 0xf7ff3b17717fff10, 0x1110c9180e3c32a6, 0x3c9a62e8ff10c400, 0xd20109bd8dc643ff, 0x60ff3cf04fe3ff10, 0x0e10fb0009bcf770, 0xff10e8220e10ed25, 0x455952ffbc0b8838, 0x8a69ff10f600123c, 0x0cbbd4d5a2ff3c08, 0xff1108000f110d00, 0x399b59ff3ddd111a, 0xf7f8ff1116b804bc, 0x13bcc45d24ff3e92, 0xe800000008000000, 0x2400000001000003, 0x0500000000000011, 0x040457160e08d38d, 0x04012c98040248c3, 0x0d005c6f0400a097, 0x05002e5504003c00, 0xbb08088eff002968, 0x37070ebc525c13ff, 0xb0ff3d7b60e8ff00, 0x04004e00023c1def, 0xbae35a10ff004936, 0x57021139a094f1ff, 0x6bffb739435dff00, 0x04008000123c7a83, 0xff006d0d0e00728b, 0xcc1198ffba740a66, 0x8fb7ff007b100ebb, 0x06bd235e6effbb73, 0xff008d060d009200, 0xa51ea7ff3bba6765, 0x39b0ff009b03063c, 0x0e3a02e236ffbd22, 0x0200c8450500e812, 0xff00b5420500ba00, 0xa90fb1ffbc9800f6, 0x6f7bff00c3020dbd, 0x123b3e6888ffbcfe, 0xff00d5070e00da01, 0x1b40b5ff3cc050fc, 0x10b2ff00e308063a, 0x063a9d3562ffbca9, 0x0b00fe130e010c03, 0xbd536ed3ff00f90b, 0x070007bdce0418ff, 0x40ffbcecbcb4ff01, 0x07011e000f3d6573, 0x3dbf15e9ff011901, 0x2705063d2f6e2eff, 0x94ff3bf09d0cff01, 0x0f01bc070dbd5619, 0x060158c104017800, 0xff0145010d014a18, 0x509100ffbc5a1680, 0x3384ff0153a7043c, 0x053b4991c8ffbcd0, 0xff0165010e016a1e, 0x9df56cffbd4fb1ff, 0xe7e3ff017300023c, 0x05bcaa6701ffbda7, 0x06018e0008019c83, 0xbc0835d9ff018907, 0x970002bb2ab50fff, 0x13ff3bc5599fff01, 0x0e01aea704b633d2, 0x39784c7eff01a90e, 0xb7b204bccf354cff, 0xa0ff3c2f233bff01, 0x0e02040d0eba5f80, 0x0e01d6070e01e408, 0x3cad7be6ff01d103, 0xdf0109bd5da942ff, 0x39ff3d6dcb41ff01, 0x0c01f60107bd38df, 0xbd5c4c54ff01f100, 0xffb504bde08e8cff, 0xaeffbc486ea4ff01, 0x090228010cbddc4e, 0xff02150d0b021a00, 0x4e10c0ff3c549a14, 0x09faff0223ba043d, 0x09bdb349a2ffbcff, 0xff0235060b023a00, 0x06f299ff3d698e0f, 0x7005ff02430e0b3e, 0x0ebdf5b7c9ffbcf3, 0x0202dcc404036814, 0x0e02780d0e029800, 0xff02650012026a08, 0x804e91ffbd3171a4, 0x4071ff027301083b, 0x0ebd1b3410ffbe10, 0xff0285000c028a0e, 0x0c8199ffbce9c7a5, 0xc780ff02930b0b3c, 0x0ebdf49b4bffbd89, 0x1202ae000602bc08, 0xbc63b7f5ff02a900, 0xb701113ba216b5ff, 0xbfffbd2a8d6cff02, 0x1202ce0111bdcec6, 0xbc3f4c6eff02c900, 0xd78705bd2ad29aff, 0x49ff3cafaac5ff02, 0x0e0324070dbbbbf5, 0x0402f60012030408, 0x3b033905ff02f1c8, 0xff000dbcf57d17ff, 0x17ffbcd58690ff02, 0x110316130ebac365, 0xbbfc84c5ff031101, 0x1f8b053c7ef710ff, 0x7fff3d03dd70ff03, 0x0403480107bd97b1, 0xff0335c604033ac8, 0x9a3c01ffbd3c3fdf, 0xa1cbff03430009bd, 0x04bd1a530bff3d7e, 0xff0355020b035ac6, 0xecdf7dffbd6b87d8, 0x5c7fff03637905bc, 0x113c07aea7ff3d35, 0x0c03a2010c03cb00, 0xff037d0007038b00, 0x03860b0b3d9809fa, 0x39cdff3cbbd9a0ff, 0x80ff039400073d34, 0xff039d0b0b3e041a, 0xd6eb39ff3d6d2ab6, 0xbd80ff03ab56053d, 0x700503bd0b0bbc95, 0xff3d822398ff03b8, 0x03c600083dd26dac, 0xd7e6ff3dd91e9cff, 0x000f0413000c3e2b, 0x030d03e5540503f3, 0xffbccb2decff03e0, 0x03ee00083d11c343, 0x1f90ffbde06550ff, 0x020d04050b0bbd57, 0xffbba54668ff0400, 0x040e00063be98d66, 0x28cfffbc85fd92ff, 0x8905043700063ca9, 0x9bff042400020429, 0xbb620bf3ff3c32c8, 0x0b813cff04320b0b, 0x030bbd541728ffbd, 0x8fff0444150e0449, 0x3de0de68ff3b8c6d, 0x262826ff0452010c, 0x8c053d739738ff3d, 0x0107057b0e060697, 0x6e0504ab000804ef, 0xc704047d0b06048b, 0xffbb6ec865ff0478, 0x04863e01bc57748a, 0x4afeffb993640fff, 0x130b049d0009bc98, 0xff3acbb692ff0498, 0x04a6060d3c05dd8b, 0x0e77ffbc1b801cff, 0xc30404cf0007bcb9, 0x09ff04bc1d0e04c1, 0xbac55d3bffba14d2, 0x99aca2ff04ca7905, 0x0002ba8eacf5ffbc, 0x79ff04dc590504e1, 0x3c060eceffba8009, 0xe8c3fbff04eacd04, 0x9a04bc4b1968ff3b, 0x000c051798040537, 0x32ff0504000d0509, 0xbb158974ffbc9b9f, 0xf52794ff05121203, 0x060d3b9249e3ffba, 0xb3ff052401110529, 0x3c65cc1dffbb8ba0, 0x454de1ff05320011, 0x310e3d94b63cffbb, 0x2303054d2703055b, 0xffbc1dea86ff0548, 0x055601113d1d6744, 0xfe8aff3b7ea79bff, 0x0012056d320e3c58, 0xffbd1edc7eff0568, 0x0576330ebc418600, 0xb3cdff3bf65280ff, 0x8804060b000dbbe4, 0x000805a7030b05c7, 0x4bff05944b040599, 0xbd0ca560ffba3432, 0x547151ff05a27a04, 0x82043d03ab0cffbb, 0x90ff05b4010505b9, 0x3d2ff287ff3ba2d9, 0x826387ff05c21306, 0x000c3de0d202ff3d, 0x000705dd000205eb, 0xffbdbd5f20ff05d8, 0x05e69904bd750d3b, 0x84c3ffbbf7de04ff, 0xb50405fd030bbd5c, 0xffbdab40a5ff05f8, 0x0606a704bd266a61, 0xb387ffbc5e30d3ff, 0x14060653b5043d2e, 0x040d0625200e0633, 0xff3b143dabff0620, 0x062e4101bc7cce3e, 0x63cfff3b2b1a7aff, 0x03050645070bbcb4, 0xffbcf389cfff0640, 0x064ea7043c8943aa, 0xe08bffbd1a5320ff, 0x000c0677000fbc02, 0x85ff0664050d0669, 0x3c7d8e8effbbe4ce, 0x191102ff0672020b, 0x00053d01f3a0ffbd, 0xd0ff068400020689, 0xbd4b37dbffbde72e, 0x7570d6ff0692cc04, 0x0002bcd0647affbb, 0x230e072b030b07b7, 0x8a0406c7000806e7, 0x7aff06b4830406b9, 0xbd10d190ffbdb7c2, 0x232323ff06c20009, 0x220ebc8511d1ff3c, 0xd5ff06d4011206d9, 0xbdd929f7ffba2859, 0x83379dff06e2000f, 0xb404bc83063cff3d, 0x000c06fda904070b, 0xffbcf6d9b6ff06f8, 0x0706000cbe09714d, 0x9157ffbc36b221ff, 0xc604071d000f3d84, 0xffbd17da62ff0718, 0x0726060dbdb50df0, 0xb2e7ffbc30b75dff, 0xbc040773c704bd04, 0x000f0745060d0753, 0xff3c93c496ff0740, 0x074eba04ba8bc845, 0xd907ff3c1d9477ff, 0x01110765060dbd85, 0xff3d17f501ff0760, 0x076e00123b1a9406, 0x6339ff3cbd16d0ff, 0x00110797cd04bd35, 0xf6ff0784280e0789, 0x3d725d78ffbbb979, 0xa08de0ff0792060d, 0x000cbdd34ac0ffbc, 0x80ff07a40b0b07a9, 0x3d665399ffba587a, 0xaeae99ff07b2010c, 0x00093e0ecb93ff3d, 0x050b0803000f0847, 0x020d07d5000707e3, 0xffbcba456aff07d0, 0x07dec904bdd79cf3, 0xea2bff3cb838eaff, 0x000807f5070bbcaf, 0xffbdc32c4cff07f0, 0x07fe0107bd2ff560, 0x1416ff3d1ac75aff, 0x170e0827190e3c69, 0xbaff081400070819, 0xbb941938ffbc9a8f, 0x563a51ff08220008, 0x1d0e3ce9a3a2ff3b, 0x36ff08341c0e0839, 0xbcd5ce54ff3d2177, 0xa84a38ff08421f0e, 0x000fbbdb6338ff3c, 0x030b086fbe04088f, 0x5bff085c020d0861, 0xbe11515dffbdaf7f, 0x3d86adff086a220e, 0x030bbde3151cffbe, 0xe0ff087c020d0881, 0xbd7604a0ffbc8b68, 0xb2fd55ff088a0209, 0x060dbc35d900ffbb, 0x190e08a5011108b3, 0xff3bf3277aff08a0, 0x08ae030bbcba9c4a, 0x9de9ffbc8ed79cff, 0x190e08c50011bd27, 0xff3b97aceeff08c0, 0x08ce030bbcd7f985, 0x1ef7ffbd27aa1fff, 0x030e0d0b0d0ebda9, 0x010e09bc65040acf, 0x030b0922040b0966, 0x900508fd020d090b, 0xffbccc6a5dff08f8, 0x09068e05ba19d40f, 0xece4ffbc8e276cff, 0x060d091d01123bfe, 0xffbcc51c5eff0918, 0x5bc9c6ff3b4525de, 0x38001109460111be, 0x4340ff0933000e09, 0x04bbcd7938ff3bb1, 0xb9df26f9ff094151, 0x58000ebc422039ff, 0x2e63ff09535c0409, 0x02bbdb1a22ff3d0b, 0x3ca23b20ff096100, 0x9c00023e140304ff, 0x80000809858e0509, 0x8ef6ff097b000709, 0xff3c02b8a0ffbcc4, 0x098e0112bdb0d674, 0x97020dbc076f36ff, 0xb6ffbdc14599ff09, 0xff09a58e05be2365, 0x09ae010bbd925370, 0xb701113daa21f0ff, 0x70ff3cfbbb2aff09, 0x0d0a4300023cc2b3, 0x0d09e8a2040a0806, 0xff09d56b0409da02, 0x13e80dffbe84a735, 0x147eff09e393043c, 0x04bccf1a6fffbba2, 0xff09f5a60409faa7, 0xb7ebdaffbd05ec84, 0x4304ff0a030009bd, 0x113c1a4fdfffbc52, 0x0c0a1e000e0a2c01, 0xbb92af33ff0a1900, 0x270011bc89c70aff, 0xb1ffbbae2d52ff0a, 0x0c0a3e00083c06cb, 0x3d7e2068ff0a3900, 0xcdb0ff3d043f7aff, 0x00070a8b9005bd3a, 0x000f0a5d01080a6b, 0xff3c9d8b37ff0a58, 0x0a66010c3b117dcd, 0x65f5ffbbc6134fff, 0x010e0a7d000fbd22, 0xffbdbfb3e3ff0a78, 0x0a86020ebc3d8be3, 0x903effbbba47cbff, 0x020d0aaf010b3abd, 0xccff0a9c000c0aa1, 0xbd757802ffbd02b7, 0x2daddeff0aaa0112, 0x00093cda7061ffbc, 0xa2ff0abc020e0ac1, 0xbae4fc5bffbbee81, 0x65a9ceff0aca000f, 0xc30439eeeed0ff3c, 0x060d0b63010c0bef, 0x0a0e0aff000d0b1f, 0x91ff0aec73040af1, 0xbb1f939dffbd0dd9, 0xcf217cff0afa5e04, 0x0b0e3e478489ffbd, 0xa4ff0b0c94040b11, 0xbb63e6b9ff3b93c6, 0x0105a8ff0b1a0109, 0x070ebd386456ff3c, 0x000f0b35b2040b43, 0xff3d14acafff0b30, 0x0b3eb6043bac4d46, 0x8dfdffbcb7beb7ff, 0xc2040b5501113bc4, 0xffb9f6f76bff0b50, 0x0b5e030b3c9b94a0, 0x0800ff3dc8c437ff, 0x00090bab060db883, 0x0b0e0b7d01110b8b, 0xffbd192b7aff0b78, 0x0b86030bbac53453, 0xc264ff3cd9eeedff, 0xb9040b9dbd043a2d, 0xffbadea27aff0b98, 0x0ba6bf043c6a9fb2, 0x226cff3d884d0fff, 0x040e0bcfb6043cd8, 0x58ff0bbc00090bc1, 0xbd634b05ff3d3c35, 0x1ab1c9ff0bca0b0e, 0x00113db7e5abffbd, 0x58ff0bdc91050be1, 0xbcde2b7fff3c83a9, 0xe2bbabff0beabb04, 0x01113d47b996ffbc, 0xc7040c3bcb040c7f, 0x00020c0d0a0e0c1b, 0xff3c159ba4ff0c08, 0x0c16c504bc1e969f, 0x1d4fffbc1d7205ff, 0x060d0c2dc804bcf3, 0xffbc4fc271ff0c28, 0x0c3600123d30f23d, 0x78e1ffbbedbb4cff, 0x01070c5f00093bba, 0x4dff0c4c000c0c51, 0xbd2c15a7ffbc67e0, 0x096fe9ff0c5a060d, 0x0002ba37bfe0ffbd, 0x93ff0c6c010c0c71, 0xbd0a6a34ffbabc13, 0x3b7de0ff0c7a0109, 0x060d3c1bb32eff3d, 0x000f0ca702090cc7, 0xaaff0c9401090c99, 0xbd0d1f76ff3cc5d7, 0xa00ef8ff0ca2080e, 0x000f3a87508fff3c, 0xb0ff0cb492050cb9, 0xbd85d545ff3cb291, 0xa7b9d2ff0cc2070e, 0xcb04b984d258ffbc, 0x00080cdd030b0ceb, 0xffbded9ffeff0cd8, 0x0ce60107bdd3d926, 0x247fffbe127657ff, 0x02070cfd0008be05, 0xffbd30ce7bff0cf8, 0x0d069605bc323540, 0x6500ffbc9138d5ff, 0x310e0f03c8043b93, 0xc6040da3000c0e2f, 0x90040d3f94040d5f, 0x57ff0d2c000d0d31, 0xbc42951affbd924c, 0x0b62c8ff0d3a0112, 0x8f053dd0a44affbc, 0xfeff0d4c00020d51, 0x3aa37772ffbc624f, 0xaaaf5eff0d5a2b0e, 0x0009bb436e3dffba, 0x130e0d75070d0d83, 0xff3ced9c15ff0d70, 0x0d7e00123c01835d, 0xc46effbcd8188cff, 0x00020d959005bd99, 0xffbc1ca100ff0d90, 0x0d9e0e0bbca8b490, 0xbad7ffb9a0ad25ff, 0x020d0deb070bbc22, 0x8a040dbd000d0dcb, 0xffbe1124d5ff0db8, 0x0dc69105bcb72630, 0x81c9ff3bb0acf1ff, 0x2a0e0ddd040d3d18, 0xffbdddf5b1ff0dd8, 0x0de6010b3d80bd2d, 0x7641ffbc9a8d25ff, 0x170e0e0f060dbaae, 0x93ff0dfc88040e01, 0x3bcf9861ffbe5ee0, 0x50ed47ff0e0a010c, 0x00113d47f4adff3c, 0x35ff0e1c010c0e21, 0x3d6c9ec0ff3ccc56, 0xa598afff0e2a0b0b, 0xc6043e5a1460ff3d, 0x00020e57000c0e92, 0x5cff0e44030b0e49, 0x3e36e536ff3e2ad4, 0x2b4828ff0e52c204, 0x00023b48639cffbb, 0x030b0e6d00080e7b, 0xffbcfb0660ff0e68, 0x0e76bb04bd60640a, 0x44c0ff3bd7a880ff, 0x00080e8d020b3cd1, 0xffbc6f0705ff0e88, 0xdf59d8ff3d17e88c, 0xba030b0ec8330e3d, 0xa7320e0eac00070e, 0x5dff3e7a9392ff0e, 0xff0eb500023dc9dd, 0xde0cb8ff3df45d64, 0x5a44ff0ec38f053d, 0x0e3d856416ff3d9a, 0x070ede000c0ee334, 0xba031f30ff0ed900, 0x531dff3dfa80b0ff, 0x010b0ef5c704bd97, 0xff3e130368ff0ef0, 0x0efe000d3dc7a3b8, 0x9774ff3df25d88ff, 0x1c0e102301093e33, 0x180e0f5300110f97, 0x010c0f25140e0f33, 0xff3b17819bff0f20, 0x0f2e010c3d4410c5, 0xe361ffbca1c367ff, 0x000c0f450009bd96, 0xff3c4ccb74ff0f40, 0x0f4e00023d44bc67, 0xc166ffbd172fbbff, 0xca040f77180ebb6d, 0xb1ff0f6401120f69, 0x3c6548a0ffbc0f75, 0x2acdd2ff0f720007, 0xcb04bb42bf73ffbd, 0xbeff0f84ca040f89, 0xbd07428bff3bea81, 0x7e52fbff0f92cc04, 0x1d0e3ccdf688ff3d, 0x000c0fbf00080fdf, 0x77ff0facc9040fb1, 0x3bd1439fffbcdd59, 0xbcc7d1ff0fba0b0b, 0x0107bb181e4fffbc, 0xe3ff0fcc93050fd1, 0xbd04c0e5ffbd8327, 0x0359a4ff0fda000c, 0x0002bd045012ffbc, 0x220e0ff5010c1003, 0xffbd09ffa2ff0ff0, 0x0ffe220e3ae1de70, 0x4537ffbdc9a383ff, 0x000c10150111bcfc, 0xff39d9c1deff1010, 0x101e96053cb5ab37, 0x3c72ffbc723940ff, 0x00021098000c3dcd, 0x0e0e104f01111054, 0xb8ff103c00121041, 0x3c5328fbffba2b84, 0xd365b5ff104a8e05, 0xd0ffbbc7230bff3c, 0x0b1078060d3e213a, 0xff10659305106a0b, 0x56720dffbc249108, 0xdae1ff10730e0eba, 0x12bc9d0735ffbb8e, 0xff10859605108a00, 0x3c95cbffbc4242ec, 0xcc54ff1093030bbd, 0x0ebd6acfb9ffbca9, 0x0e10c0020d10e014, 0xff10ad020910b20e, 0x506150ff3b28a100, 0x1592ff10bbcd04bd, 0x093dc92680ff3e4b, 0xff10cd060d10d202, 0xa213dcff3b9ba2c0, 0x3d00ff10db9305bc, 0x0fbcee57ccffbc99, 0x0e10f60002110400, 0xbd62b31eff10f11f, 0xff2e0e3e442d24ff, 0x7effbd4ebd54ff10, 0x051116cc04bded49, 0xbbeae4aeff11118f, 0x1f030bbc7a0061ff, 0x22ffbbc77100ff11, 0x0800000013bd11fb, 0x01000003e8000000, 0x0000001031000000, 0x0e08048d05000000, 0x0c023f1906039116, 0x1100a00211012300, 0x04003c7b05005c01, 0xff0029a104002ea5, 0x7ba7a6ffbafbbb39, 0xd455ff0037070d3b, 0x0f3b57705cffbb91, 0xff00495504004e00, 0x907af1ffbbe8c11d, 0x3756ff00570a0bbd, 0x0dbac634d4ffbb9f, 0x0400721805008006, 0xbb40797bff006d67, 0x7b090b3c4c3d36ff, 0xdfffbb84cf9bff00, 0x01009250043aaa38, 0xbb9aa725ff008d40, 0x9bc4043d0db801ff, 0xd0ff3dae66c6ff00, 0x0e00df070bbd762b, 0x0400ba020800c80d, 0xbbd28d29ff00b525, 0xc312053c0d759fff, 0xb7ffbd5ec043ff00, 0x0500da5a04bd024e, 0xbdb8153eff00d576, 0x76a4ffbda69de2ff, 0x3c0101033e04be42, 0xe2ff00f0000d00f5, 0x3cca203effbaffda, 0x1baa48ff00fe2c04, 0x030e3b8db98fffbc, 0x38ff011012050115, 0xbb1dc0ecff3d2dd0, 0xca897aff011e1205, 0xbe043d359e36ff3d, 0x7e05016fbc0401b3, 0x0a0601414905014f, 0xffb8f97ef9ff013c, 0x014a01083ba22710, 0xf843ff3a9a2080ff, 0x0207016193043c6b, 0xff3b85a130ff015c, 0x016a0007bcd068b9, 0x79f9ff3bf93353ff, 0x070e01930012bbe2, 0x6eff0180bd040185, 0xbde612a5ffbbcb00, 0xcf3bc5ff018e060d, 0x060d3d12b24eff3d, 0x6eff01a00f0e01a5, 0x3cd35065ff3a0214, 0x3bb90cff01ae0109, 0xc104bd276fa8ff3d, 0x390501db060d01fb, 0xe9ff01c8000f01cd, 0x3b0b7184ff3cd98c, 0x30b37cff01d6120e, 0x0e0e3d3abf78ffbc, 0x86ff01e8bf0401ed, 0x3ad98edbff3d1764, 0xa91456ff01f60009, 0x0002bc0b2795ff3d, 0xca040211130e021f, 0xffbc913454ff020c, 0x021ac2043c78a25c, 0xaffbffbbdca451ff, 0x030b02310d0e3d29, 0xff3ba81befff022c, 0x023a0009bc10061f, 0xed47ff3cfacba1ff, 0xa704035f130ebc89, 0x7504028f9b0402d3, 0x00070261030e026f, 0xff3a398902ff025c, 0x026a040ebbdb8bb2, 0x26b6ff3b839f57ff, 0x000f02810c05bcc7, 0xffbcdb30bfff027c, 0x028a1305bc0d4a56, 0x0d14ffbafcd138ff, 0x000f02b30c053c28, 0xe7ff02a0000802a5, 0xbd13134effbd94e6, 0x96605eff02ae000c, 0x0002bb0d2316ff3b, 0x73ff02c0000f02c5, 0xbb8dd4d7ff3d5b0f, 0x9e6ea6ff02ce1005, 0x0b0e3abfcf11ffbc, 0x180502fb0108031b, 0x93ff02e8000702ed, 0xbb8e9d7fffbc7bba, 0x50ed86ff02f6000b, 0x000fb8b8bb65ffbc, 0x17ff0308000e030d, 0x3cca1a03ff3ba1c9, 0x925600ff0316b304, 0x000f39eb048affbb, 0xb8040331020d033f, 0xff3d2a87f8ff032c, 0x033a030bbb33f2be, 0xf712ff3d68f950ff, 0x100b0351c5043e06, 0xffbbb47a46ff034c, 0x035a000c3cb63c5a, 0x2098ffbce53184ff, 0xbf0403831905bb90, 0x9eff037000070375, 0x3d2c6ba6ff3d1613, 0xa70b2aff037e0207, 0x010b3dc195d7ff3d, 0xff3dd5b059ff038c, 0x05d18c053de73ea9, 0x0429010704b50e06, 0x03c5bd0403e5c904, 0x03b20b0603b70111, 0x5c96ffbb1b34ebff, 0x8eff03c00109bc05, 0xbc510197ff3b3d81, 0x03d2000703d7090b, 0x210affbca6411bff, 0x56ff03e00009bbd8, 0xbc8a5595ff3ba778, 0x03fb180e0409280e, 0xaecbe3ff03f60007, 0x1f0ebca036c5ffbd, 0xff3d722f0cff0404, 0x041b00083c16fe6d, 0x8a13a6ff0416060d, 0x2c0ebd008ad7ffbc, 0xff3a4eceb8ff0424, 0x04719a04bc3146a2, 0x0443960404519804, 0xd42be4ff043e0c06, 0x170ebab7f9a7ff39, 0xff3c189f67ff044c, 0x0463060dbc2de678, 0x7b546aff045e0111, 0x00123c4ed179ffbb, 0xffbb3192d8ff046c, 0x0495310e3d85d73d, 0x0482230304872703, 0xa9c3ffbc0e1fe7ff, 0xc9ff049028033d0d, 0x3bb98cd3ffbdaa28, 0x04a2001204a7320e, 0x2bc8ffbd0ef9a7ff, 0xafff04b00505bc2e, 0xbae3bd99ffbca2a0, 0x050188040545000d, 0x04d3000804e1030b, 0x222d4bff04ce4b04, 0x3001bcfd29b0ffba, 0xffbc4de719ff04dc, 0x04f382043cc0aecd, 0x16cc27ff04ee0107, 0x13063bf4c830ff3d, 0xff3d6ab334ff04fc, 0x0525000c3dca569a, 0x0512a90405170002, 0x93f1ffbdb047e2ff, 0x84ff05209904bd31, 0xbd46777dffbbdf14, 0x0532b5040537030b, 0xc622ffbd9a2094ff, 0xcfff0540a704bd15, 0x3d1d3b2affbc47f8, 0x056d0405058db504, 0x055a7f04055f8b04, 0xb0a2ffbc0bb97cff, 0x73ff0568000c3cf6, 0xbd03dbe8ffbc55f0, 0x057a0605057f7e04, 0x8102ff3bcb20c9ff, 0x16ff05888404bd0c, 0xbbea960bffbcae39, 0x05a3130605b1b604, 0x85a3deff059e0008, 0x00083d02e233ff3c, 0xff3d05445eff05ac, 0x05c3bc043d98c07c, 0x0950a0ff05be2405, 0x0111bcac075dffbc, 0xffbbaeae37ff05cc, 0x06e8be043c44ae94, 0x0618b604065cbc04, 0x05f3b4040601b504, 0x2fa289ff05ee9204, 0x000f3a61cc9affbd, 0xffbda942d3ff05fc, 0x0613190e3c2b6e99, 0x101697ff060e060d, 0x7eff3d9c7bebff3d, 0x0b063c00073d910f, 0xff0629000f062e0a, 0xb08442ffbdae7375, 0x81eaff0637000fbc, 0x0fbc8e871fff3d21, 0xff0649b704064e00, 0x086962ffbcacca0b, 0x728bff065700083d, 0x123b919e6fffbc44, 0x0c0684060d06a401, 0xff06710009067600, 0xe19212ff3d2e2b3a, 0x4d39ff067f030b3b, 0x113da4b191ffbc59, 0xff0691000c069600, 0x6e1bc1ff3d2b2c73, 0xa64eff069f000c3d, 0x083d019ea4ffbcb7, 0x0706ba010c06c800, 0xbd0811afff06b500, 0xc3030bbbd29893ff, 0x63ff3c8d89deff06, 0x0b06da00023dcf1c, 0x3d93e2dfff06d503, 0xe3000c3c592ecdff, 0x71ffbb8c1cccff06, 0x11077800093c6c15, 0x0e07141c0e073400, 0xff0701c404070617, 0xb6b2b0ff3d01d1e7, 0x1014ff070f000cbc, 0x0e3d58fbf8ff3c95, 0xff07210a0b07261d, 0xeec37cffbbbeaf24, 0xdc6bff072f230ebc, 0x07bbdf14d7ff3cb0, 0x0b074a060d075800, 0xbd1a6dc7ff074504, 0x53100bbb21dbf8ff, 0x5fffbcda1377ff07, 0x04076a060dbda290, 0x3b8bf7faff0765ca, 0x730e0bbc21bcc7ff, 0x4dffbc0327aaff07, 0x0407c00012bda599, 0x0c0792010907a0c6, 0xbc9816c7ff078d00, 0x9bc504bd05c8dbff, 0xb8ff3b8f96e8ff07, 0x0e07b20002bc3c0d, 0x3d076e5eff07ad19, 0xbb190e3dcced68ff, 0x4bff3c42a488ff07, 0x0e07e4060dbccc6f, 0xff07d1010907d619, 0x8e2798ff3cc76cfd, 0xefedff07df2b0ebc, 0x023bbecd54ffbd02, 0xff07f1030b07f600, 0x1fa9aaffbcd7c7c0, 0xc1d7ff07ff030bbd, 0x0ebd9a0114ffbd31, 0x0409ee030e0c2a0d, 0x0408a0010e08d263, 0x0d083c000c085c4b, 0xff08299205082e02, 0xd75418ff3c2294fa, 0x5b40ff08370112bc, 0x04be51d97effb992, 0xff08498f05084e48, 0x885168ffbd11f960, 0x9f1aff08578f05bd, 0x0fbdfe92b0ffbdbe, 0x040872020d088000, 0x3c56e241ff086d5c, 0x7b5f04bcb0fe40ff, 0xd3ff3bd534a7ff08, 0x120892030b3db106, 0xbabafc14ff088d01, 0x9b01113bf915a2ff, 0x1bffbc1d5d97ff08, 0x0708cd00023b50e1, 0x0d08ba8e0508c800, 0xbd9f2768ff08b500, 0xc3010bbd1b2a60ff, 0x91ffbe0828bdff08, 0x3beb4c40ffbda4d0, 0x62040d3caf3b10ff, 0xfe6b04091ea40409, 0xeb030d08f0690408, 0xf4ffbcc83c93ff08, 0xff08f90008be26b0, 0x0b48c4ffbe8aea7d, 0x0b970409109904be, 0xa4ff3c1973acff09, 0xff09190112bd8107, 0x8411f9ffbc4d39e5, 0x34000c094200093d, 0x0513ff092f070b09, 0x0bbdc76bb4ffbd1c, 0xbdb31f41ff093d07, 0x54030bbdfb5535ff, 0x7bdeff094f010e09, 0x04bcbea91cff3bb5, 0xbb9d8d37ff095da7, 0xaa010c3d839badff, 0x7c000f098a000e09, 0xdfdfff09776b0409, 0x09bc9bec03ff3e07, 0xbbe09110ff098501, 0x9cb204ba97826dff, 0x9d4cff09978f0509, 0x12bb6f75afff38a3, 0xbb82732fff09a500, 0xce00093b31aba7ff, 0xbb130b09c0060d09, 0x9bffbd0dba21ff09, 0xff09c9020ebb72aa, 0xc4923bffbc67b7ab, 0xdb980409e0b7043b, 0xacffbcb2b697ff09, 0xff09e9000e3986ac, 0x69e510ff3ade311e, 0x82010c0b0ec3043c, 0x1e000d0a3e060d0a, 0x0b000c0a100a0e0a, 0x27ffba74e222ff0a, 0xff0a195e04bd04ba, 0x3390e0ffbdba6af0, 0x2ba6040a300b0e3e, 0xedff398a8854ff0a, 0xff0a390109bb67f2, 0x25f3e6ff3be83d63, 0x54b2040a62070ebd, 0x2ecbff0a4f070d0a, 0x04bd7ec5ffff3c08, 0xbcad0f15ff0a5db7, 0x740b0e3bdb9351ff, 0x9838ff0a6f0a0e0a, 0x02bd1ac831ffb8b8, 0x3cc752b5ff0a7d00, 0xca060dba3ffb93ff, 0x9c01110aaa00090a, 0x1b25ff0a97af040a, 0x0bbd09f903ff3b52, 0x3cc423d3ff0aa503, 0xbcc1043a1c6264ff, 0xd803ff0ab78e050a, 0x0e3bb5c172ff3cc2, 0x3d3a881cff0ac50b, 0xeebb04bdab16faff, 0xdb00090ae0040e0a, 0x51ff3d3fd9cfff0a, 0xff0ae9ba04bd4c90, 0xb76289ffbc5d7574, 0xfb8f050b000011bd, 0x1dffbc98da3dff0a, 0xff0b09bc043c9e0c, 0x7b4df7ff3cc70df4, 0x5acb040b9e01113d, 0x2c070d0b3ac7040b, 0x7028ff0b27010c0b, 0x0cbca56498ffbbd7, 0xbcfaec40ff0b3500, 0x4cc804bdbe8f7aff, 0xfbd4ff0b47060d0b, 0x123d1f406dffbc3a, 0xbbd5f567ff0b5500, 0x7e00093ba7d30eff, 0x6b000c0b7001070b, 0x42ffbc50b048ff0b, 0xff0b79060dbd1ae0, 0x255fe4ffbcf76309, 0x8b010c0b900002ba, 0x8fffbaa944a8ff0b, 0xff0b99060dbcf925, 0xa46da1ff3ce9a91f, 0xc600090be6060d3b, 0xb3000c0bb8030b0b, 0xbeff3ac7fb99ff0b, 0xff0bc18e053cf8f2, 0xee6d45ffbcee86ae, 0xd300020bd8ca043b, 0x7dff3db5306fff0b, 0xff0be1050bbc0a3f, 0x0b9708ffbe091098, 0xfc030b0c0acb04bd, 0x3002ff0bf796050b, 0x07bdb30e2dffbdd8, 0xbe03d0e7ff0c0501, 0x1c0107bdefa816ff, 0xb8e0ff0c1700070c, 0x08bd4e2bc0ffbc26, 0xbca5fe80ff0c2500, 0x19100ebb8cfb80ff, 0xc20e0e0d4e02090e, 0x5e01120c7e010c0c, 0x4b00110c500a0b0c, 0xbdffbc3a40fcff0c, 0xff0c59000c3b8fdf, 0x6c89faff3ba901ba, 0x6b00070c70c7043c, 0xabff3d3272f3ff0c, 0xff0c7901093b4eba, 0xe33966ff3d22e994, 0x940a0b0ca20002bc, 0x50a1ff0c8f060d0c, 0x11bc78b33dff3cf0, 0x3d0bb442ff0c9d00, 0xb4b90439b8d468ff, 0xf1b1ff0caf030b0c, 0x04bd3707a5ff3b83, 0x3d4aa544ff0cbdcc, 0x0a000c3bdc2cbcff, 0xdcc1040cea00110d, 0xe17fff0cd700070c, 0x0b3d0e5090ff3d77, 0xbc889a7eff0ce50b, 0xfcb004bd1caba0ff, 0xa955ff0cf7a9040c, 0x043d2aad94ffb8f9, 0xbc490d71ff0d05bc, 0x2ec1043c2f2996ff, 0x1b00070d2000120d, 0xb0ff3dfa3054ff0d, 0xff0d29020d3dbda1, 0x78796eff3d0e5135, 0x3b00120d40010c3d, 0x00ffbcd2bcc0ff0d, 0xff0d490012bb577a, 0x1f5d14ff39c4e400, 0x7f93050d96040d3d, 0xc1c0ff0d5f000d0d, 0xb8040d719105bdc4, 0xff3dae01e4ff0d6c, 0x0d7ac1043c1ad446, 0xe0e0ff3d66d34cff, 0xc7040d91ca043df7, 0xffbbcb2f80ff0d8c, 0x887078ffbd10dfa8, 0xbe030b0dd5000fbd, 0xabc1040db0c2040d, 0x78ffbd99f5a7ff0d, 0xff0db9ca043d54f2, 0x83caf4ffbdb19793, 0x1a30ff0dc70002bd, 0xf3ff0dd0c7043d4e, 0xbbfa8d2bffbd878d, 0x0deb030b0df9060d, 0x8a35b8ff0de60111, 0x000cbc351773ff3b, 0xffbbca14f4ff0df4, 0x0e0b9205bc84bb45, 0xad54d7ff0e060012, 0x000cbcf81d34ffbc, 0xffbbf654bcff0e14, 0x0f39000cbcf00a76, 0x0e69110e0ead140e, 0x0e3b000b0e49060b, 0x1dd55aff0e369504, 0xb904bc094ba9ff3d, 0xffbc34d70eff0e44, 0x0e5b0007bcae81f8, 0x0ffe82ff0e560008, 0x000fbd896e70ffbd, 0xffbd9dadd3ff0e64, 0x0e8d060dbd628517, 0x0e7a130e0e7f000d, 0x4d51ffbdcf089dff, 0xfaff0e88c8043d7f, 0xbd0b9825ffbc349d, 0x0e9a0b0b0e9f0e0b, 0x2efeffbb8cc903ff, 0x3eff0ea80012bd8d, 0x3dbea889ff3b9451, 0x0ed5000d0ef50c0b, 0x0ec200020ec7bf04, 0xb74eff3d8ad1c6ff, 0xafff0ed0c004bceb, 0x3c68d51effbd9e04, 0x0ee2000f0ee70002, 0x29daff3cbc4fb4ff, 0x48ff0ef0000fbb67, 0x39010304ff3d8cf3, 0x0f0b0e0b0f190009, 0xc29cdfff0f06cd04, 0x140bbda6eb99ffbc, 0xffbc606af4ff0f14, 0x0f2b93053b3778a5, 0x48464cff0f260e0b, 0x0012bc8e7e94ff3b, 0xffbd1827afff0f34, 0x0fa5b804bcc7c59b, 0x0f53130e0f6a8804, 0x9d8300ff0f4e0002, 0x6f043bd12880ffbc, 0x07bdffc9bcff0f5c, 0xbe5430beff0f6501, 0x8e2a0ebe8eccbbff, 0x7b020d0f80b3040f, 0x9aff3c79a8f9ff0f, 0xff0f89280ebc2b25, 0x0c73f8ffbc626827, 0x9bb4040fa00002be, 0x44ff3d97ef80ff0f, 0xbd8142d8ff3e3073, 0x0fcd030b0fed040b, 0x0fba2b0e0fbf020d, 0x95d5ff3c7642ecff, 0xa1ff0fc82b0ebbf2, 0x3b9feaa5ffbc32d9, 0x0fdaba040fdfc204, 0x49bbffbe58be54ff, 0x75ff0fe80112bdf7, 0xbd709f30ff3d447a, 0x1003140e10110009, 0x1e0638ff0ffe010c, 0x180e3d9b4105ff3c, 0xffbc2e194cff100c, 0x1023cb043c10111d, 0x0f30d1ff101e010c, 0x050b3cee9cd3ffbc, 0xff3d20566bff102c, 0x00000013bcdf08df, 0x000003e800000008, 0x0000112400000001, 0x09008d0500000000, 0x02488b050484140e, 0x00a07204012c0905, 0x003c2e04005c6104, 0x00292501002e0d06, 0x5cb0ffbb2a4888ff, 0xcaff00370007b6e7, 0xbc4b5820ffbbdcdd, 0x00490e06004e000f, 0x3f78ff3c8bb676ff, 0x61ff00570f01bb1d, 0xbbbfdc1affbb1c26, 0x0072000f00801106, 0x6657e2ff006d0107, 0x0a063d8904d7ffbc, 0xffbca773ccff007b, 0x00921206bae0d0fa, 0xe02c51ff008d6404, 0x6d04bcee5d91ffbd, 0xffbc6df9f7ff009b, 0x00e81606bd0f48ad, 0x00ba730400c8000f, 0x7d01b3ff00b5030b, 0x99043d078f3cffbd, 0xff3d689c0aff00c3, 0x00da8d043c950797, 0xf1f3c9ff00d51206, 0x1406bc87bfb6ff3a, 0xff3c87377eff00e3, 0x010c97043a25d59c, 0x00f9070500fe010e, 0x5822ffbc54216dff, 0x0cff0107000cbd12, 0xbd302724ffbc782c, 0x0119000f011e0007, 0xdc2cffbd05f3bbff, 0xcbff0127000fbc4f, 0xbb895c52ff3c8001, 0x0178b60401bcbe04, 0x014aae0401580006, 0xf7cc68ff01459304, 0x0d0e3b7a3752ff39, 0xffbb8c3c6aff0153, 0x016a08063ca39767, 0xe107b5ff01657204, 0x030ebcb9a0d0ffbb, 0xffbac36d6eff0173, 0x019c00023c0ecf9e, 0x0189b804018e0012, 0xb7c2ffbca12029ff, 0xbbff019708063c96, 0x3bae3672ffbd15ff, 0x01a9000e01ae050e, 0x89aeffbc288229ff, 0x1bff01b70012bb21, 0x3a8d85b7ff3c901a, 0x01e4bf040204120e, 0x01d1000d01d6060d, 0xae83ffbd4668f1ff, 0x27ff01df00093b8e, 0xbc3d00d3ff3d0c16, 0x01f1000201f60e0e, 0x7d3cffbc669e69ff, 0x34ff01ff0012bb5c, 0x3b19e0ceff3d8543, 0x021a050b0228130b, 0x22c5c6ff02152a05, 0x010cbd242497ff3c, 0xff3b06ba99ff0223, 0x023a010c3d0c9505, 0x26e365ff02350109, 0xc504bcdcf27bff3d, 0xff3e019808ff0243, 0x0368060e3dab958b, 0x0298960402dc0007, 0x026a010e0278020e, 0xbb4327ff0265000e, 0x8c053b962925ffbb, 0xffbcc6c015ff0273, 0x028a0111bb80f01d, 0x9657fcff0285020b, 0x020d3c0593b1ffbb, 0xff3ae0652dff0293, 0x02bc030e3cda416e, 0x02a9000902ae0008, 0xfe22ff3c860ea0ff, 0xacff02b7060dbab6, 0xbb770569ffbcf3a3, 0x02c9000902ce9904, 0x7115ff3d110ca7ff, 0xcfff02d7bb04bcac, 0x3d8ddb88ffbcf172, 0x0304060d03240002, 0x02f1960402f60112, 0x15daffbb19772eff, 0x80ff02ff8b04bcdb, 0xbe0147adffbcb20c, 0x0311020e0316b304, 0xa39bffbbd0c413ff, 0x12ff031f010e3c44, 0xbcace3e5ff39694c, 0x033a000f0348050e, 0xa52fe0ff03350008, 0xbc04bc881f26ff3c, 0xffbbec6d13ff0343, 0x035a8c053b366ae3, 0x2c45f1ff0355a304, 0xbf04bca8a1f7ff3d, 0xffbdae3afaff0363, 0x03f80109bc92e7a6, 0x0394000c03b4010c, 0x0381070e0386130e, 0x4f57ff3bf50745ff, 0x6bff038f040bbb44, 0x3c4376e0ffbd01a9, 0x03a1000703a6070e, 0x579cff3cc9d83dff, 0x6dff03af0b0e3be2, 0x3c1e7cc8ffbc8a79, 0x03cabd0403d80012, 0x12d2faff03c5a804, 0x00023d918626ffbd, 0xff3cc9d9b0ff03d3, 0x03ea0e0bbbec3fc0, 0xecb44cff03e50d0e, 0x120e3d400f32ffbb, 0xffbd31b253ff03f3, 0x0440080e3e2eb328, 0x0412030b0420070e, 0x36f17dff040d9404, 0x060dbd77a59bff3d, 0xffbbd6f1c7ff041b, 0x04320209bd0e6ef1, 0xf158afff042d010c, 0x060d3dac2183ff3c, 0xff3c960119ff043b, 0x04640d0ebcb0e734, 0x0451000f0456030b, 0x1840ffbe035408ff, 0x3fff045f060dbcc4, 0xbd4c5df6ffbc8452, 0x04710e0e0476b604, 0x90afff3cf2d2ccff, 0xc5ff047f060dbd0f, 0xbce98832ffbc262d, 0x05a8010706c48705, 0x04d8ba04051c0011, 0x04aab80404b87e05, 0x96c797ff04a5b404, 0x230ebc4b3211ffbb, 0xff3cfae237ff04b3, 0x04ca070bbc6f8abb, 0x9b3e1bff04c58c04, 0x1c0ebba979ecff3c, 0xff3c995466ff04d3, 0x04fc140bbbfdaec6, 0x04e90b0b04ee070d, 0x15c1ff3ba9a904ff, 0xfcff04f7000cbd15, 0xbd42bb2bffbc2c96, 0x0509280e050e070d, 0x3c6eff3ccc9038ff, 0x03ff051701083bcd, 0xbcd664d5ffbdad49, 0x0544c7040564c804, 0x0531080b05360212, 0x1b57ffbb21afa9ff, 0xecff053f4f043a89, 0x3d8a78dfffbd00e9, 0x0551220e05562b0e, 0x8d9effbc85cc21ff, 0x64ff055f01123d06, 0x3ba44582ffbce9f6, 0x057a060d05880007, 0x0ba668ff05758405, 0x0108bcca55a6ffbc, 0xffbe06331bff0583, 0x059a0008bd68bf1d, 0x32a0d7ff0595060d, 0x0b0bbe0116ddffbc, 0xffbb8d3bf5ff05a3, 0x0638020d3c886e5e, 0x05d4940405f40e06, 0x05c11b0e05c67b05, 0xe3aeff3c150474ff, 0x98ff05cf1d0e393e, 0xbe8db6c2ffbc1e9f, 0x05e1960405e6340e, 0x7cf7ffbc14ac54ff, 0xb1ff05ef0d063c43, 0xbe3e273effbc0c87, 0x060a730406180002, 0x854c9bff06056104, 0x1f0ebd7cb7c1ff3c, 0xff3d1c5359ff0613, 0x062abc043c1d15d3, 0x726326ff06251e05, 0xbd04bd4a4c82ffbc, 0xff3d86f0b3ff0633, 0x0680cc04bb25b650, 0x0652860506600208, 0x48f8c0ff064d010c, 0xc2043bab55e5ff3a, 0xff3c15e83dff065b, 0x06720e0bbc21773f, 0x0707d1ff066d010c, 0x0002bcacc733ffbb, 0xff3aee5ef4ff067b, 0x06a4cd043ca2716f, 0x0691180e06962d0e, 0x5552ffbd0f0242ff, 0x7bff069f68053c7b, 0xbd366be2ff3d2c67, 0x06b1000206b6310e, 0x445aff3d440207ff, 0xb0ff06bf000f3cac, 0x3b6d27b4ffbdd7ab, 0x0758020b07e4c204, 0x06f4000707140208, 0x06e1ae0406e6b404, 0x5577ffbcabca71ff, 0xacff06ef000f3bc2, 0xbcbc8fa5ffbd8fae, 0x0701000c07060112, 0x7eb9ffbbec0d9fff, 0xaaff070f060dbca4, 0x3db57864ff3b3ad7, 0x072a1c0e0738000f, 0xb9deebff0725170e, 0x220ebcea9acbff3d, 0xff3e235de4ff0733, 0x074abc043ccebea0, 0xed2e1aff07458805, 0x0002bc478c50ff3a, 0xff3c1f9718ff0753, 0x07a0020d3c8fc4b8, 0x077201090780310e, 0xe68824ff076d1a0e, 0x170e3c5c48d8ff3c, 0xffbda7a3a9ff077b, 0x07920002bc3422ce, 0x7b8400ff078d8805, 0x320ebd7ae933ffbc, 0xffbd8ca3e0ff079b, 0x07c4000c3e0d31a2, 0x07b1011207b60002, 0x71ebffbb16af94ff, 0x79ff07bfbd04bc92, 0x3c32fd3bff3b211f, 0x07d1000f07d6090b, 0x4349ffbc735eebff, 0xeaff07df220e3aad, 0x3d20112dff3c3403, 0x0830010c0874180e, 0x0802000708100111, 0xb3c11bff07fd0012, 0xcc04bd070737ffbb, 0xffbb95c5e6ff080b, 0x0822c404bcca82dd, 0xb6a8e4ff081d0007, 0xcb043bb766e0ffbc, 0xff3c9fd78aff082b, 0x08540b0bbbbdf353, 0x0841160e08460108, 0x238eff3d9616b0ff, 0x00ff084f0007bc6e, 0xbb30500cffbd6cb2, 0x0861060d0866150e, 0x8bedffbcb5b99dff, 0x4bff086f01083da5, 0xbc12352bffbd8a55, 0x089c1c0e08bc0011, 0x0889010c088e0009, 0x50d9ff3cc9ad13ff, 0x68ff0897070d3d9d, 0xbd08c697ffbbb774, 0x08a90a0b08ae1d0e, 0xbac4ffbc290888ff, 0x0cff08b7070dbd19, 0xbcfa03d0ff3b9143, 0x08d2230e08e0060d, 0xa75590ff08cd220e, 0x00073cdab1f2ffbb, 0xffbbfe3632ff08db, 0x08f2050b3a559beb, 0x7deb66ff08ed280e, 0x1f0ebca8bbd3ff3a, 0xffbc994d8fff08fb, 0x0d0b0d0ebd777843, 0x0a28ca040ae1030e, 0x09580109099c020e, 0x092a000f0938000c, 0x00e5c9ff0925010e, 0x010e3d0f5a90ffbc, 0xffbaca8f4fff0933, 0x094a060dbbf2f670, 0x8ce4c5ff09458b04, 0x0c0bbcf9dbf4ffbb, 0xffbc3bc0e7ff0953, 0x097c000f3a999376, 0x09690209096e8904, 0x0000ff3c13f30fff, 0xe7ff09770002bca7, 0x3cb79216ff3c0e21, 0x0989010c098e0b0b, 0x6b92ffbb1976c5ff, 0x2dff0997060d3ba4, 0x3c26d71aff3b4bde, 0x09c4000c09e4000f, 0x09b1050b09b69404, 0xa953ffbe2ce74fff, 0x90ff09bf020dbe94, 0x3db5a1a8ffbd4adb, 0x09d1000909d69204, 0x3bd6ff3d850d31ff, 0x11ff09df99043c3f, 0x3b35116affbd8e03, 0x09fa0b0b0a080008, 0xa90419ff09f59c04, 0x140bbad1ca36ff3b, 0xff3c81a03fff0a03, 0x0a1a000c3b69225c, 0x57ea09ff0a15140b, 0x090bbbba32f4ff3b, 0xff3baed648ff0a23, 0x0a79020ebc7f1d8c, 0x0a540b0b0a740112, 0x0a41cb040a46010e, 0x8a0bffbb6d52dfff, 0x64ff0a4fcd04bc89, 0xbc0dca71ff3ba689, 0x0a6100120a66000c, 0x0c1affba9df700ff, 0x9bff0a6f00123c15, 0x3ccfb434ff3c3283, 0xc101123d7f30f0ff, 0x9302090aa1060d0a, 0x2946ff0a8e96050a, 0x04bb8ca315ff3d25, 0xbb30339aff0a9ccc, 0xb30011bca131f2ff, 0xdcc0ff0aaecc040a, 0x0cbc95f27effbbec, 0xbc90980bff0abc01, 0xd3cb04bcda153cff, 0xd7ceff0ace030b0a, 0x05bd9dd158ffbe35, 0xbce0cd80ff0adc96, 0xef020d3d8fbb20ff, 0x31040e0b75080e0b, 0x03000c0b11030b0b, 0x6770ff0afe000d0b, 0x053da75962ff3cc6, 0x3c7586f3ff0b0c93, 0x239a04bd3fc180ff, 0x09c3ff0b1e75040b, 0x073dda8f08ff3e2d, 0x3e555af0ff0b2c00, 0x5596043e227afbff, 0x428e050b4776040b, 0x34ff3b192a7bff0b, 0xff0b50070ebd93ad, 0x6a6c91ff3d351641, 0x6200090b679904bc, 0x95ffbe0058c8ff0b, 0xff0b7001093d1907, 0x91310effbcf2f747, 0x9da7040bbd01093c, 0x8a000c0b8fa0040b, 0x6cff3b642fd7ff0b, 0xff0b9800023d0e69, 0x5f8658ffbe993551, 0xaa00070baf00093b, 0x73ff3d68cf28ff0b, 0xff0bb8020b3ca947, 0xb9a5a6ffbdd7f0f9, 0xca090e0bd8030bbb, 0x8e053c91fb80ff0b, 0xffbe2f5ddeff0bd3, 0x0bea0002bdb0b322, 0x83a348ff0be5b704, 0x58ff3c4fed40ffbd, 0x090c7f000f3dc84f, 0x070c1b030b0c3b02, 0xff0c0801090c0d00, 0x236c07ff3d3afc86, 0x7ebeff0c16060ebc, 0x043cd1f2d1ffbcbf, 0xff0c28a6040c2da7, 0xb57d2eff3c55527c, 0x83e0ff0c36060dbd, 0x02bdab9428ff3cba, 0x040c5190050c5f00, 0x3e08712cff0c4cbb, 0x5a92053d11e63bff, 0x5bff3d440752ff0c, 0x0b0c71070ebdaeea, 0xbe1d5996ff0c6c03, 0x7a040dbd3747f2ff, 0xb7ffbe1968ddff0c, 0x0e0cc7010cbc4163, 0x0d0c99070e0ca709, 0x3b510c20ff0c9407, 0xa2080ebd2afcbbff, 0xc7ffbba2d8caff0c, 0x0d0cb9b2043cbaba, 0x3c281c42ff0cb406, 0xc20012bc729291ff, 0xfdff3b597646ff0c, 0x040ceb0009bc2ef6, 0xff0cd800070cddcb, 0x5f7e61ffbadf68cc, 0x207dff0ce69205bc, 0x0ebd718a48ffbc46, 0xff0cf88e050cfd07, 0x0bc0fcff3c8ba3f1, 0x4acdff0d060b0ebc, 0x04bc8b7a81ff3d10, 0x0c0e2f310e0f03c8, 0x040d5fc6040da300, 0x040d3193040d3f94, 0xbd5dee17ff0d2c7b, 0x3a0111bbc4b08dff, 0x74ffbc5fcd14ff0d, 0x020d518f053db2d2, 0xbc462bd0ff0d4c00, 0x5a060d3a90c154ff, 0x0fffbb30c282ff0d, 0x0d0d8300093b745c, 0xff0d70130e0d7507, 0xe74d60ff3cd42016, 0x82beff0d7e130e3b, 0x05bcc0cafaffbd89, 0xff0d900b0b0d9590, 0x33dcc4ffbca68278, 0x19d8ff0d9e9105bc, 0x0bbb163ae3ff3cdd, 0x050dcb01080deb07, 0xff0db88f050dbd91, 0x9997eeff3ab3698a, 0x401aff0dc6190ebc, 0x043b29d2aeff3c95, 0xff0dd8000f0dddbf, 0x800f22ff3dacc4ab, 0xfea1ff0de62a0ebc, 0x0d3e786d38ffbcb9, 0x0e0e01170e0e0f06, 0x3c5fdbe4ff0dfc14, 0x0a010cbc05ddb0ff, 0xc0ff3c321a0aff0e, 0x040e2100113d2fed, 0x3c894b38ff0e1cc6, 0x2a0b0b3d26ed80ff, 0xb5ff3d93261eff0e, 0x0b0e92c2043e4348, 0x0d0e52bf040e7203, 0xff0e4800020e4d00, 0xa5c3c8ffbc0a0950, 0x0007bd8331eaffbc, 0xf3ff0e5f00080e64, 0x3d5cb3b4ff3c5ee7, 0x82f814ff0e6d0002, 0x090bbd0c37b0ffbd, 0x68ff0e7fbb040e84, 0xbdb62d60ffbd384a, 0x2e0e40ff0e8dbb04, 0x320ebcc70680ffbd, 0x020d0eba90050ec8, 0xbcff0ea700080eac, 0x3e7f9747ff3da77a, 0x7473a7ff0eb58f05, 0x92053e6c6cf4ff3e, 0xff3e6dc7d6ff0ec3, 0x0eec340e3e796465, 0x0ed9330e0ede8f05, 0x6761ff3d580355ff, 0x90ff0ee70111bd5c, 0x3e138846ffbb37d0, 0xb53110ff0ef58e05, 0x1b42ff0efe8f053d, 0x093e0511ecff3e08, 0x0e0f97010b102301, 0x0d0f33000c0f532b, 0xff0f2000070f2502, 0x922dd5ff3d7173c4, 0x3888ff0f2e00123c, 0x07bce10fecffbc93, 0xff0f40c9040f4501, 0xae9f72ffbd2e7cdd, 0x6dbeff0f4e000fbd, 0x0ebd4f936affbbb8, 0x050f6900020f772c, 0x3e220320ff0f6490, 0x7201073e81982cff, 0x00ff3cec780bff0f, 0x050f89310eba438a, 0x3c34d9c6ff0f8490, 0x92cb04bd24fe5fff, 0x09ff3e123267ff0f, 0x050fdf1c0ebc11e2, 0x110fb1190e0fbf8e, 0xbbe0252bff0fac01, 0xba00023cd8d19aff, 0x87ff3e040d8eff0f, 0x0e0fd1180e3d54c2, 0x3bb3e8f6ff0fcc14, 0xda0009bc56d8ffff, 0xa9ff3cbbe24eff0f, 0x0810031d0ebc45da, 0xff0ff0000c0ff500, 0x6526d3ff3b647955, 0x33c8ff0ffe0107bc, 0x02bc6dc0fcffbd14, 0xff1010220e101500, 0x3fecc1ffbd1aee25, 0x2924ff101e050bbb, 0x0c3c0c4a93ffbc0f, 0x0b10540002109800, 0x3e0ec0bcff103403, 0x104193051046cb04, 0xc5a9ff3b93c44bff, 0x8bff104f0e0e3ccc, 0xbbec374fff3b9b51, 0x106a0b0b1078060d, 0x10fe82ff10659305, 0x0e0eb89931eaffbc, 0xffbb692a21ff1073, 0x108a0012bc74d4b5, 0x27cf67ff10859605, 0x030bbd2adf00ffbc, 0xffbc983a77ff1093, 0x10e0140ebd50cbd3, 0x10b2020910c0060d, 0x898c63ff10ad0002, 0x96053c28b362ffbc, 0xffbc82384bff10bb, 0x10d20e0e3d1bf393, 0x83651bff10cd0011, 0x030bbd2afcbfffbc, 0xff3cd081ccff10db, 0x1104000fbd48ccd0, 0x10f1190e10f6280e, 0xfbdfffbd8f7ef5ff, 0xe2ff10ffca043c12, 0xbdd1e9f2ffbd8aa4, 0x111100121116cc04, 0xcb1bff3c6e04e3ff, 0x9fff111f010cbc2b, 0xbd267bf7ffbc9b61, 0x0000000800000013, 0x00000001000003e8, 0x00000000000010dc, 0x0484140e09008d05, 0x012c090502488b05, 0x005c110600a07204, 0x002e5204003c6f04, 0x1bcfceff00290211, 0x000f3c00f0b3ffbb, 0xff3cc617b6ff0037, 0x004e0e06bbcd37f8, 0x30328bff00490006, 0x02073ca13549ffbd, 0xff3dd5d314ff0057, 0x008063043d0c8d7f, 0x006d450400720108, 0x95d9ffbc07490fff, 0x07ff007b1206bb6d, 0xbb47dea1ff3c0f27, 0x008d030d0092030e, 0x40daffb9b868cbff, 0x45ff009b1206bc63, 0xbcba05c4ffbd5c84, 0x00c8000f00e81606, 0x00b5030b00ba7304, 0x01d4ffbd63b4b8ff, 0x4eff00c399043cf4, 0x3c862079ff3d5159, 0x00d5120600da8d04, 0x592aff3ad9c1caff, 0xedff00e31406bc74, 0x3a15405bff3c7363, 0x00fe0105010c9804, 0xa30040ff00f98b04, 0x0f0ebd24d5adffbc, 0xffbc76f010ff0107, 0x011e00073d1c0c70, 0xf11d18ff0119000f, 0x000fbc377e57ffbc, 0xff3c6669a4ff0127, 0x01bcc504bb773fa6, 0x0158030d0178000f, 0x01450b0e014a120e, 0x48e5ffbb298595ff, 0x7cff015303063c11, 0x3c68946bffbd090a, 0x01652e04016aa204, 0x47e8ff3ae8f8feff, 0x17ff0173010e3c22, 0x3c7ade73ffbb189a, 0x018eb004019c010c, 0x8e9b8dff01897305, 0xb204ba9710f1ffba, 0xff3bee11a4ff0197, 0x01ae7605bb6bad74, 0xf761a4ff01a97505, 0x0d0e3bfd9ae0ff3a, 0xffbab8cd08ff01b7, 0x020401123d01dd72, 0x01d6890501e4ca04, 0xd0a74fff01d1c604, 0xc704bc5697c8ffbc, 0xffbc7a932aff01df, 0x01f601083ce6a78a, 0x12bdf3ff01f10009, 0x060dbd32a8a4ff3d, 0xffbd305504ff01ff, 0x022812063bbbef0d, 0x02150d06021a030b, 0xbe48ff3d82163bff, 0x0cff022311063c82, 0x3d1174fdffbbbd0b, 0x02356205023a000d, 0x231cffbcfd567bff, 0x74ff02431706bc82, 0xbb711df3ff3b8110, 0x02dc00070368050e, 0x0278000902980008, 0x0265000e026ab104, 0x1de7ffbbd2dc60ff, 0xb1ff0273b2043bba, 0x3deeb17bff3dbca1, 0x02850011028a070d, 0xc41fffbbc86d93ff, 0xaeff0293010e39cc, 0xbd86f0f0ffbcdd18, 0x02aeb30402bc010c, 0x81f64cff02a9a704, 0x00123bd3e1c5ffbb, 0xffbd02e3e9ff02b7, 0x02ce070bbc06d785, 0x4c8063ff02c90011, 0xa5043c1f251dffbd, 0xffbd746c5cff02d7, 0x03240002bd00ea02, 0x02f68c0503040111, 0x2f4997ff02f18c04, 0xb304bc70e9d6ffba, 0xff392eb906ff02ff, 0x0316080bbc55d400, 0xd74238ff03110107, 0x9704bd422eadff3b, 0xffbe656b7bff031f, 0x0348020e3dbb0d70, 0x0335000c033ab304, 0x19a3ffbbb79a7bff, 0x4eff03430b0bbc9d, 0x3c237e26ffbbe078, 0x0355000f035a0008, 0x08c7ff3d313cfeff, 0xefff0363020d3aa6, 0xbb822ddcffbe1ef7, 0x03b4020d03f8060d, 0x0386000903940a0e, 0x760049ff03819004, 0x070ebd6ea82bffbc, 0xff3beece60ff038f, 0x03a601073d450293, 0xd42b1cff03a1000d, 0x00083cbae0c2ffbc, 0xffbd86b256ff03af, 0x03d8000fba289d00, 0x03c50e0e03ca0109, 0x5e32ff3ccd9dd6ff, 0x6fff03d3b004bd63, 0x3b3aadcbffbd81b1, 0x03e50c0e03eaba04, 0x1266ffbba79ff8ff, 0xe4ff03f3bb043be6, 0xbb86df74ffbd05f0, 0x042000020440c304, 0x040d070e0412bb04, 0x30c9ff3c6298c4ff, 0x57ff041b010cbb01, 0x3d256fa0ff3c913a, 0x042d060e04320009, 0xee47ffbce45d8dff, 0xc7ff043b00123bbd, 0xbcfa8f4fff3afbcf, 0x0456000704640e0e, 0x1e9e75ff04510012, 0x0012bd2ffb80ff3a, 0xffbc29ff64ff045f, 0x0476070d3cad5d2d, 0xcd04c9ff04710009, 0xcc04bcc5caf0ffbd, 0xff3cd9cf9aff047f, 0x06c48705bdc0174c, 0x051c001205a80107, 0x04b8c60404d87105, 0x04a55a0504aa9604, 0x69b0ffbb4e4283ff, 0x15ff04b3b504bb27, 0x3bb863feffbc1522, 0x04c5070d04ca2a0e, 0x226fff3cf4ed64ff, 0xb4ff04d32b0ebcda, 0xbbd1705affbcba8e, 0x04eec80404fc170e, 0x7dbeffff04e9b204, 0x00073c2520f9ffbc, 0xffbdbf24cdff04f7, 0x050e070dbd203377, 0xe5e05dff05091c0e, 0x070bb92f6ff0ff3c, 0xffbc2d92bdff0517, 0x05648205bd3090f0, 0x053669050544150e, 0x27b6f3ff05311206, 0xa004bc312f67ff3c, 0xff3b7426d0ff053f, 0x0556c504bd7babf1, 0x1dd138ff05517f05, 0x02063b200064ffba, 0xffbc2c4e81ff055f, 0x0588c2043b32eb9e, 0x0575bc04057a220e, 0x31b8ffba07fb2fff, 0x0eff0583060d3c41, 0xbcdf9b61ff3c3b1e, 0x0595250e059a8605, 0x3e4aff3cd4539dff, 0x74ff05a3060dbb8c, 0xbd3aa025ffbc6882, 0x05f40e060638020d, 0x05c6010d05d49604, 0x8725feff05c16805, 0x0212bd76802dffbb, 0xff3b7bef29ff05cf, 0x05e6310e3d8a4a15, 0x964129ff05e10002, 0xae043c09f2f1ff3c, 0xffbbe4a42dff05ef, 0x061800023aa002ba, 0x06056104060a7304, 0x722aff3c6ff055ff, 0x3aff0613210ebd63, 0x3bb24ae4ff3d02e4, 0x06258804062abc04, 0x5fb3ff3c934be9ff, 0x75ff0633bd04bc97, 0xbb15242fff3d72e4, 0x0660140b0680ca04, 0x064dc0040652c504, 0xfbb6ff39e4855fff, 0xbdff065bc604bbc9, 0xbb9409a4ff3c90ab, 0x066dc80406720008, 0x710bffbb3edb4dff, 0xf8ff067b2a01bc3f, 0x3c61b726ffbb54f4, 0x0696011106a4000c, 0xdad44aff06915d05, 0x030b3abf4165ffbc, 0xffbc787993ff069f, 0x06b601123cce9af0, 0xcf1403ff06b1310e, 0xcb04bbb860fbff3c, 0xff3c174681ff06bf, 0x07e4c204bcb8a0e2, 0x071400090758020b, 0x06e6890506f4020d, 0x085979ff06e10007, 0x170e3c1c472bff3d, 0xff3c835da0ff06ef, 0x07060007bcc41e3f, 0x5fdd88ff0701000f, 0x000fbc4b4909ffbd, 0xff3c648905ff070f, 0x0738170ebc205cfa, 0x0725020d072a000f, 0xa5a0ffbdcf4415ff, 0xccff0733000cbe92, 0xbcdef0f9ff3bf5fd, 0x0745000f074a190e, 0xca24ff3d4f3d52ff, 0x7fff0753000fbc65, 0xbcc77a49ffbd9763, 0x0780020907a0020d, 0x076d000d07728d04, 0x1e05ffbd96c93cff, 0xf9ff077b220e3d07, 0x3ca0ec48ff3c12a4, 0x078d030b07928905, 0xe280ffbde9f669ff, 0xa5ff079bb904bce9, 0xbd624527ff3c0e04, 0x07b6000f07c4000c, 0xdd6b88ff07b10002, 0x310e3e1fad24ffbc, 0xff3a746ccbff07bf, 0x07d6090b3d25edc2, 0x5b08b1ff07d1000f, 0x220e3a9befccffbc, 0xff3c22038aff07df, 0x0874cd043d100f73, 0x08102a0e08300002, 0x07fd8a050802230e, 0xfb4affbc3f0710ff, 0x04ff080b88053b19, 0xbcc4e6a8ffbd803b, 0x081d00070822010c, 0xb867ffba9742c9ff, 0x1bff082b310e3c71, 0x3d36561dffbd0f0b, 0x0846c60408548c05, 0x147e20ff08412a0e, 0x010c3cba5027ffbc, 0xff3ba3d71eff084f, 0x086600083d117d0d, 0xd8818bff08610012, 0x000fbc84b181ff3b, 0xff3c3b640aff086f, 0x08bc0007bb7c539c, 0x088e8805089c0002, 0xf12eb8ff08890012, 0x01083db51019ff3d, 0xffbcea2d3aff0897, 0x08ae2b0ebc2a519d, 0x0b373bff08a90008, 0x2c0ebdce812affbd, 0xff3d072836ff08b7, 0x08e00002bcbf8335, 0x08cd020808d28805, 0xd19bff3daa7010ff, 0xf4ff08db8b053d03, 0x3cca9278ffbca5c7, 0x08ed0b0b08f28a05, 0x9806ffbc13e2ebff, 0x75ff08fb2b0e3dcf, 0xbba6dfcdffbd120e, 0x0ae1030e0d140d0e, 0x0993010e09c56304, 0x0938030b094f040b, 0x0925000c092a4b04, 0x61beffbbac2127ff, 0x9eff09338e05bd92, 0x3b85b85bffbc8920, 0x0945000e094a0111, 0x8a76ffbbf3e0a6ff, 0x11be45ab86ffbcfc, 0x050965090b097301, 0xbae28bdeff096090, 0x6e5a04bc8ed5cdff, 0x4fffbcc2bcb0ff09, 0x0e09850007bc4b6a, 0x3cd8d651ff098000, 0x8e01073dcf5965ff, 0x63ffbc0d1ce8ff09, 0x0709c00002bd3681, 0x0509ad010b09bb00, 0xbd534d40ff09a88e, 0xb6030bbdf434b3ff, 0xccffbd34da00ff09, 0x3be1db80ffbd9f8b, 0x5500093c810970ff, 0xf1070b0a11000f0a, 0xde8f0409e3060d09, 0x9cff3b95f2c6ff09, 0xff09ec0111bcb62a, 0x6a1a51ff3baf3fec, 0xfe93050a03010e3d, 0xf5ffbda990b0ff09, 0xff0a0cbc04bccf49, 0x02e821ffbca6ce56, 0x27000c0a35060d3d, 0x0533ff0a22b2040a, 0x073b8dc81cffbb2b, 0xbca0d2adff0a3001, 0x47020eb9984eb2ff, 0xfb20ff0a428d040a, 0x04bbcbb24eff3abc, 0x3cb2dd91ff0a50b7, 0x9d0111bba3c5a0ff, 0x6f0b0b0a7d00120a, 0x0cb1ff0a6a010c0a, 0x0d3a69429cffbbe1, 0xbd338400ff0a7806, 0x8f060db9927b46ff, 0xe563ff0a8a000e0a, 0x0bb94535b5ffbbc8, 0x390dc24aff0a9809, 0xc1050b3c374644ff, 0xae020d0ab302090a, 0x91ffbc17c125ff0a, 0xff0abc010e3c7085, 0xc35230ff3b71f80f, 0xce7b040ad3000cbc, 0x72ffbdf330e6ff0a, 0xff0adc99043bf358, 0xb13ad1ff3ab80659, 0x75080e0bf8020d3c, 0x11000c0b31050e0b, 0xfe9a040b03030b0b, 0x54ff3d1b75feff0a, 0xff0b0c75043db137, 0xe69abbff3e1bbbfd, 0x1e93050b23040e3d, 0x90ff3c5cf973ff0b, 0xff0b2c0009bd2c94, 0x4b1650ff3c9154b9, 0x4777040b5596043d, 0x3093ff0b4201070b, 0x0ebe207b88ffbd1a, 0x3d2b1fceff0b5007, 0x679904bc5dde05ff, 0x063dff0b6200090b, 0x0e3cf78390ffbde7, 0xbce0ce5aff0b7007, 0xbd01093c740338ff, 0x8fa0040b9da7040b, 0xdc40ff0b8a99040b, 0x02bc01642cff3ce1, 0xbe89e32fff0b9800, 0xaf00093b492c58ff, 0x8738ff0baa00070b, 0x0b3c9859f3ff3d51, 0xbd7126dbff0bb803, 0xe1030b3d15ebc5ff, 0xce02090bd300020b, 0x80ffbd9ea53bff0b, 0xff0bdcb3043bb673, 0xc4dc6effbd39f253, 0xeeb7040bf39305bd, 0xa8ffbd6cf2b0ff0b, 0xbd867158ff3db4c0, 0x0c4402090c88000f, 0x0c16c9040c24030b, 0x059608ff0c110109, 0x0002bc23134fff3d, 0xffbe112e8bff0c1f, 0x0c36a704bce4792e, 0x3ffd7eff0c31a604, 0x060ebda35712ff3c, 0xffbd9f38f4ff0c3f, 0x0c6800023ca6e1c6, 0x0c558f050c5abb04, 0xadd4ff3defb6ecff, 0xa3ff0c6392053e00, 0xbd9d6c83ff3d161b, 0x0c75080e0c7ac004, 0xce15ffbdae7064ff, 0x33ff0c83c404be0c, 0xbd85dfbdff3c41ff, 0x0cb0090e0cd0010c, 0x0c9dbc040ca2070e, 0xb048ff3b877ef1ff, 0xb2ff0cab000939a9, 0x3c35fcfaffbbff8a, 0x0cbd0c0e0cc2b204, 0x9b36ffba73d2f7ff, 0x9bff0ccb060d3c2f, 0x3abe836dffbc4791, 0x0ce600080cf4070b, 0xda7060ff0ce10011, 0xc9043b90da7dffbc, 0xff3d14deaaff0cef, 0x0d060009bc848687, 0xf4b41bff0d010012, 0x070ebca8d282ffba, 0xffba4a7f40ff0d0f, 0x0ea9000d3d020384, 0x0d7f130e0db18804, 0x0d3f7b040d4d9005, 0xcb0078ff0d31030b, 0xa648ff0d3a7504bc, 0x02bcba5cc0ffbd02, 0xbc8ee1c0ff0d4800, 0x7100073bb7c200ff, 0x5e030b0d6375040d, 0x44ffbd94f4adff0d, 0xff0d6c030bbd8f15, 0x7a28d8ffbd7792b2, 0x9a68ff0d7a9205bd, 0x04bc9d20a8ffbcfe, 0xbde67d54ff0d886f, 0x0d9e00070dac0107, 0x2bf66fff0d999305, 0x030bbe5347bbffbe, 0xffbe65daaeff0da7, 0x8096ffffbe45947a, 0xfd220e0e38250ebe, 0xcf0a0b0ddd01110d, 0xd174ff0dca060b0d, 0x05bc1e9683ff3cba, 0xbda610e0ff0dd895, 0xef000cbc630b46ff, 0xab38ff0dea130e0d, 0x0ebce8db61ffbdb5, 0x3d2eea3dff0df814, 0x18010bbc6d5539ff, 0x0e92050e1302070e, 0xdbffbbcae5c0ff0e, 0xbd482d18ffbca865, 0x0e2500090e2ac004, 0x0cd0ff3d3de6dfff, 0xa4ff0e330007bd74, 0x3d15aa26ffbb6b1e, 0x0e6001070e80c204, 0x0e4d000c0e529305, 0x78b6ff3de05d8aff, 0x89ff0e5b0002bc85, 0xbd8116b4ffbdc564, 0x0e6d02070e729305, 0xfd1cffbe173fe4ff, 0x05ff0e7b070bbe36, 0xbdf90bc8ffbdd370, 0x0e8d280e0e9b8f05, 0x962f0e3cca5680ff, 0x70ff3d66a0f8ff0e, 0xff0ea401073dc2ae, 0x409884ff3e5d55e0, 0x3401120fc0020d3e, 0xd096050ef0010b0f, 0x52b5ff0ec2000b0e, 0x17ff0ecb0011bc80, 0xbd291cf6ffbd5016, 0x0edd00070ee2000b, 0x4032ff3b735a4bff, 0x66ff0eeb0012bc59, 0xbbb0c3acffbc75b2, 0x0f0600070f140a0b, 0x44e9b7ff0f019605, 0x060bbd7891bfffbd, 0xffbd6e299bff0f0f, 0x0f269505bd9dbcc8, 0xef7dceff0f210207, 0x0011be23eeb2ffbd, 0xffbd9aa0deff0f2f, 0x0f7cc504bdb5f8e4, 0x0f4e91050f5cc404, 0x9d132eff0f498f05, 0x220ebb1ca94bff3c, 0xff3ca4d699ff0f57, 0x0f6e140e3d52e4ac, 0xfe2680ff0f690009, 0x010b3e33e50bffbc, 0xffbd2fdf51ff0f77, 0x0fa000093e0dc6bd, 0x0f8d00070f92170e, 0x5567ff3d9dc8a4ff, 0x6bff0f9b000f3ccb, 0xbcc4be8cff3986d0, 0x0fad230e0fb20002, 0x5ffdffbccb8fc8ff, 0xd2ff0fbbc7043d68, 0xbcaa1a61ffbd9e2a, 0x100c1f0e10500009, 0x0fde01120fec060d, 0x168247ff0fd90007, 0x170ebc21dda8ffba, 0xff3adcef6aff0fe7, 0x0ffe00073cfee6a4, 0x2dfb0cff0ff9010c, 0xcc043cdbdfcfff3c, 0xffb811045aff1007, 0x1030040dbc0aeda6, 0x101d230e10222a0e, 0x118affbe86c3d4ff, 0x06ff102bbd04bdaf, 0xbd2454baff3e20e5, 0x103d000f1042220e, 0x6afdffbd914b23ff, 0x65ff104b230ebb97, 0xbb7b433cff3c411e, 0x107801091098110e, 0x10650111106a0e0e, 0x009cff3c2ebd78ff, 0x2dff1073010b3d70, 0xbcb7ae02ffbe5a47, 0x10850209108a060d, 0xf75bff3bed5ee4ff, 0xe3ff10930011bc10, 0xbcd93e64ffbc32dd, 0x10ae000210bc010b, 0x61629fff10a99505, 0x0112be0b9046ffba, 0xffbc6b409aff10b7, 0x10ce0b0bbe069172, 0xcacf1aff10c9040d, 0x8f05bc0c525affbd, 0xffbbdda42aff10d7, 0x00000013bcaeb057, 0x000003e800000008, 0x0000113f00000001, 0x08af8d0500000000, 0x0248c304044e160e, 0x00a09704012c9804, 0x003c7c05005c6e04, 0x00296d04002e1606, 0xe00fffba0d08caff, 0xdeff0037060e391f, 0xbc997a12ffbb53bf, 0x00494504004e070e, 0xcd69ffbc04bb02ff, 0x60ff00570007ba0e, 0xbd094d38ffbc33d0, 0x0072060d0080040e, 0xcf22caff006d1506, 0x0011bc32e274ffbb, 0xffbbfae868ff007b, 0x009295043cb47b4b, 0x29e3e3ff008d0008, 0x070e3bfd32d7ff3a, 0xff3ca9f351ff009b, 0x00e80e0ebb0e8194, 0x00ba070e00c8090e, 0x9f1ae0ff00b50112, 0x0009bc27de34ff3c, 0xffbd10ae08ff00c3, 0x00da060d3c97bae8, 0xa66176ff00d50008, 0x0a0e3d6df94fff3c, 0xff3c81614bff00e3, 0x010c0406bc4290dc, 0x00f90f0e00fe120e, 0x8284ffbd640cf1ff, 0x1aff0107130e3d08, 0x3c9f8202ffbd5ea8, 0x01190002011e0111, 0x0e31ffbd3991b2ff, 0x34ff012701073b9f, 0x3d5a11b4ff3dba6e, 0x0178000801bc070d, 0x014aa5040158a704, 0x172445ff01459904, 0x0009bb66d5c8ff3b, 0xffbce6a3e1ff0153, 0x016a00023b15b359, 0xd5d8eaff0165120e, 0xa8043c219c4aff3a, 0xffbcb3f7f9ff0173, 0x019ca504bb144bfb, 0x0189000f018e9e04, 0xa83cff3ca1365eff, 0x91ff0197060eb9d8, 0x3cc2ad00ff3a04c0, 0x01a9030d01ae000f, 0x78abffbb1d326dff, 0x8cff01b76b053c73, 0x3acfbf23ffbae9b4, 0x01e4080e02040d0e, 0x01d1030e01d6070e, 0x9951ff3c97988bff, 0x96ff01df0109bd4a, 0xbd2850c6ff3d52dc, 0x01f1010c01f60107, 0xec3bffbd8622c1ff, 0x81ff01ffb304bdf1, 0xbda97a88ffbc4078, 0x021a00090228010c, 0xd168a6ff02150e0e, 0xa704bcc495d9ff3c, 0xffbc8b8afbff0223, 0x023a0009bd278e36, 0x475483ff0235060b, 0x0e0b3def30c7ff3d, 0xffbce81abcff0243, 0x0368140ebddffd43, 0x0298000202dcc404, 0x026a080e02780d0e, 0x148d2cff02650011, 0x01083beb404affbd, 0xffbdfc6849ff0273, 0x028a0e0ebcfeaa50, 0x645f15ff02850007, 0x1e05bca2c17bff3c, 0xffbe0a5a85ff0293, 0x02bc7f05bd9ca96b, 0x02a9020702ae0006, 0x4ae0ffbc2fce1eff, 0x7aff02b70b06bd19, 0xbd4f6331ffbdaae2, 0x02c9001202ce070e, 0x913fffbc021574ff, 0xf7ff02d701123bb3, 0x3b1e27dfffbca2a2, 0x0304010c0324070d, 0x02f1140b02f60011, 0x6ea1ffbcd1290cff, 0xa5ff02ff060dbbcf, 0x3cb5e693ffba1d6f, 0x0311120e03160209, 0xabeaff3b13129bff, 0x46ff031fc6043d6d, 0xbcb37550ffbd3df0, 0x033ac80403480107, 0x1a0ea1ff0335010c, 0x0009bd8bc94bffbd, 0xff3d47f0ffff0343, 0x035ac604bd05b6f9, 0x4fe16eff0355020b, 0x7f05bcd4f5c3ffbd, 0xff3d248c63ff0363, 0x03dd060d3b008706, 0x0394000203b41305, 0x0381000803860208, 0x4f10ff3d5683a3ff, 0x3cff038f01113dad, 0x3cad3a60ff3d259f, 0x03a10f0603a6000c, 0x38b0ff3c6fca23ff, 0x4cff03af0b0bbc9b, 0x3d14becfff3cbba0, 0x59f2a6ff03bdc404, 0xca000c03cf6305be, 0xb1ff3be8a1cbff03, 0xff03d801113d0245, 0xcfbe98ffbb885d06, 0xea0007040a000cbd, 0x0b0b3d8ca7f2ff03, 0x10ff03f7780503fc, 0x3cd4d2d8ff3c212c, 0x208fe0ff04050207, 0x00073d0f7b08ff3d, 0x0b0b04208505042e, 0xff3db3b3ecff041b, 0x042900083e3cc84b, 0x77fcff3d976135ff, 0x780504400b0b3dd8, 0xff3d68c6b6ff043b, 0x044901083d97277d, 0xf030ff3dd01a6cff, 0x0211067300023d7b, 0x400104e6a6040572, 0x96040482240104a2, 0x64ff046f47050474, 0xba8fe5deffbaa1f4, 0x9365ffff047d010c, 0x3c01bafe0060ffbc, 0xe3ff048f000f0494, 0xbb116aa7ff3bd35c, 0xcf0038ff049d3003, 0x8a053ae73cb0ff3c, 0x410104b8290304c6, 0xff3cf3ec91ff04b3, 0x04c1290ebca44ca2, 0x46dfffbb4f2ebbff, 0x1d0e04d88404bc0a, 0xffbd514457ff04d3, 0x04e1020dbdfb23a3, 0x0073ff3c9427bbff, 0x4101052e2403bbd3, 0x110305003f01050e, 0xffbcca9d42ff04fb, 0x05090b0bbbfee872, 0x33c3ff3b1c6554ff, 0x1b0305201f033dbc, 0xff3e3b5988ff051b, 0x05293105bdb861cd, 0x2c18ffbc81f07eff, 0xb0040552020bbdab, 0x2eff053f020d0544, 0xbbe2b0e4ff3cb06b, 0xadb6aaff054d000c, 0xc004bca27ccbffbb, 0x6cff055f070d0564, 0xbca32f14ff3ba523, 0x957d6cff056d0d0b, 0x5004bb60a18bffbb, 0x350405be170e0602, 0x01070590000b059e, 0xffbc1686d6ff058b, 0x05991a013cae51aa, 0x9965ff3c95c284ff, 0x060505b03b043c06, 0xff3da6c8ebff05ab, 0x05b94c043d3a77a2, 0x05d1ffbc6185b6ff, 0x2c0405e226013cd3, 0xa9ff05cf1a0105d4, 0xbc8121abff3aa674, 0x01ddbaff05dd0706, 0x030bbc7b1600ff3d, 0x8bff05ef4c0405f4, 0xbd327de0ffbcbfb4, 0x67c699ff05fd5305, 0x0006bd11596affbd, 0x4505062126010641, 0xd2ff06172905061c, 0xbdbe86a3ffbdb1ca, 0x33220ebdb0db88ff, 0x3a41ff062e6d0406, 0x0b3d269e46ff3dbd, 0xbb884811ff063c03, 0x6500083da102d5ff, 0x5201070657120506, 0xc0ffbcc411d8ff06, 0xff06605e04bba76e, 0x2499c8ffbd9573b2, 0x0d04ff066e0b05bd, 0x0c3c21cf00ff3dca, 0x120707300e079301, 0x0e06a31e0e06c300, 0xff0690a80406951c, 0x6e00c2ffbb4e1b1f, 0xf15aff069e070d3c, 0x043cb55f83ffbd2a, 0xff06b0b90406b5bd, 0x2f64deff3b290d89, 0x93c6ff06bec704bd, 0x043c3576c6ff3cfe, 0x0406d9000506e7cb, 0x3c58ca8fff06d488, 0xe20a06bcedab97ff, 0xb0ff3b9834e4ff06, 0x0506f92d0ebbf2fe, 0xbc59059dff06f481, 0x02060d39f9bf3bff, 0x97ffbcff9418ff07, 0x07074fc604be31a8, 0x060721c304072f02, 0x3b40b50bff071c07, 0x2a320ebc8e2bc8ff, 0xedff3d7607bcff07, 0x0b0741310ebc97a2, 0x3c67e226ff073c0a, 0x4a03063d732947ff, 0xc6ff3c6ec4b1ff07, 0x0e0773c804bc4d35, 0xff07606d05076531, 0x3a1038ffbd32810b, 0xdd5cff076e040bbc, 0x043c8ba95cffbc78, 0xff078000070785c9, 0x925944ff3c8a4804, 0xd596ff078e77053d, 0x08bc31349fff3bd3, 0x0907df0112082300, 0x0d07b1050b07bf01, 0xba89109dff07ac07, 0xba170e3cef675bff, 0x74ffbba3024eff07, 0x0d07d1220e3ccc34, 0xbc340f12ff07cc06, 0xdaa804bd15ee0eff, 0xc8ffbc5bd2bdff07, 0x0608030111bd2dc3, 0xff07f00b0b07f502, 0x7ff29affbcbdb2f9, 0xb7dbff07fe0007bd, 0x05bb90d80affbcbb, 0xff0810060508156d, 0x23742dffbcae9390, 0x29c3ff081ead043c, 0x08bc981668ff3b85, 0x0e084b050b086b02, 0xff08380112083d1d, 0x7c8942ff3c96c364, 0xf900ff0846010bbb, 0x0e3ae3fff2ffbcf4, 0xff08580112085d28, 0x5a8819ff3d3f1c27, 0x5b1eff086602073c, 0x053d031386ff3bba, 0x0b08810605088f45, 0x3c8273b1ff087c0b, 0x8a98043d57c74aff, 0x5fffbd0e2ee1ff08, 0x0508a1230ebb85d0, 0xbcfa27dfff089c76, 0xaa0007bd8d4316ff, 0xf3ffbce55771ff08, 0x0e0ccc0d0ebaea16, 0x0e097463040a9003, 0x0d0907000f094b01, 0x0408d9900508e704, 0xbbdddb74ff08d45e, 0xe25c04bd439525ff, 0x5cff3c5d10e8ff08, 0x0408f95f04bb8e57, 0x3c984e4fff08f45e, 0x02000ebe3339b2ff, 0xc2ff3cd07b28ff09, 0x11092b030b3e11c2, 0xff0918000c091d01, 0x1a7291ff394ea669, 0xb0ebff09264e04bc, 0x0b3c14bf3fff3b2e, 0xff09389005093d08, 0x702145ffbb2b3523, 0x0b96ff09460111bc, 0x023848f955ffbc51, 0x04096a0007096f00, 0xff0960020d096561, 0xf7430cffbd75ba22, 0x80ffbcbc13e0ffbd, 0x3c684420ff3bcb45, 0x09c0000f0a040009, 0x0992060d09a0070b, 0x93a025ff098d8d04, 0x0112bca2c1adff3b, 0xff3b9db987ff099b, 0x09b2010e3d52b13b, 0x989bcdff09ad9305, 0x020ebcba8f59ffbd, 0xff3ccda1f1ff09bb, 0x09e4060dbcafdbee, 0x09d1b20409d6000c, 0x34feffbb19eb26ff, 0x0fff09dfb7043b7f, 0xbb2f67b2ffbc9832, 0x09f1010c09f6020e, 0x1111ffbb511350ff, 0x8cff09ffb704bc3a, 0xbb9364f6ff3ca0fa, 0x0a2c00120a4c0112, 0x0a19010e0a1e060d, 0xd7ecffbcc83576ff, 0x23ff0a270b0bbd72, 0xb983d54cffbb9ca3, 0x0a3902090a3e070b, 0x5b6fffba43acd2ff, 0x97ff0a47060dbc09, 0x3c11d28bffb97ec9, 0x0a627b040a709305, 0x969a4eff0a5d000c, 0x000d3b7d2969ffbd, 0xffbca55c31ff0a6b, 0x0a8299043c6cc1b7, 0x094f5cff0a7d000c, 0x0209bd18689bff3c, 0xff3c2d26a4ff0a8b, 0x0bb0c304bb2ce029, 0x0ae0060d0b24010c, 0x0ab2ba040ac0010b, 0xa3b8abff0aad0002, 0x0112393dea7cffbc, 0xffbd07f26aff0abb, 0x0ad2c1043d2e458d, 0x4f11b4ff0acd0112, 0x00083bde0904ffbb, 0xffbaa5e891ff0adb, 0x0b04070ebd038bcf, 0x0af101110af6000c, 0x1022ffbac2b146ff, 0xe2ff0aff060e3d96, 0x3c977738ffbbeb5a, 0x0b11c2040b160111, 0xecf9ff394ec742ff, 0x7aff0b1f030b3c8f, 0x3bce3860ff3da6ea, 0x0b4c00070b6c060d, 0x0b390b0e0b3e0109, 0x9c13ffbc3d0c69ff, 0x8fff0b47050b3c42, 0x3d0d20c1ff3c2493, 0x0b5990050b5e0112, 0x0b55ffbd2442e5ff, 0x89ff0b670b0ebda5, 0x3ca1c9b4ffbb29cf, 0x0b8200020b90ad04, 0x8bd74fff0b7da904, 0x0011bda2e079ff3b, 0xffbd665804ff0b8b, 0x0ba20b0ebdc32a33, 0x38ddccff0b9d0a0e, 0x0002bdb0f00dff3c, 0xff3db79ac4ff0bab, 0x0c4001123c592443, 0x0bdc94050bfc0002, 0x0bc900090bcecc04, 0xf4dcffbaaa0e50ff, 0x6bff0bd7080e3c92, 0x3cfb31d9ffbc7d2d, 0x0be9c4040beec704, 0xf73affbcdfe15aff, 0x90ff0bf7000c3c49, 0xbcbdc233ffbc0aa5, 0x0c12010c0c20c704, 0x08c607ff0c0dc504, 0x070dbc8beb1dffbb, 0xffbce0c06fff0c1b, 0x0c32080ebdfbd266, 0x06f69dff0c2d0011, 0x030b3c3ba406ffbb, 0xff3c761406ff0c3b, 0x0c880209bc4ebab5, 0x0c5acb040c68060e, 0x99c70eff0c550007, 0x0107bdc26375ffbd, 0xffbcd157d8ff0c63, 0x0c7a030bbbc23ec0, 0x9ef7d7ff0c750009, 0x080ebc61c9e8ff3c, 0xff3c94e2e3ff0c83, 0x0cac000fbaa515e2, 0x0c9994050c9e070e, 0xe960ffbcf9b6ecff, 0xd5ff0ca7080ebdb6, 0xbd8bdbabff3ba5d9, 0x0cb90b0b0cbe010c, 0x939effbc15d93aff, 0xc4ff0cc7c9043c37, 0xbc756024ffbd3cc1, 0x0df0010b0f0cc804, 0x0d20230e0d640009, 0x0cf2c1040d00000f, 0xafee7aff0ced190e, 0x000cbcc16503ff3c, 0xff3cbddcbaff0cfb, 0x0d12c5043deaa07c, 0x1c3d41ff0d0d000c, 0x000cbca805f7ffbc, 0xff3c8700caff0d1b, 0x0d4400023d067757, 0x0d318e050d36bb04, 0x74c2ff3dda99d8ff, 0x18ff0d3fc504bbfa, 0x3cf6cad2ffbcbe29, 0x0d5100070d562a0e, 0x0ce9ffbde73843ff, 0x89ff0d5fc204bced, 0xbdad15ffffba6bc3, 0x0d8c000f0dac0e0e, 0x0d7900020d7e020d, 0xab40ffbd9c0340ff, 0xfcff0d879205bc76, 0x3ddfb790ff3da3be, 0x0d99c2040d9e070d, 0x1c62ffbc39ba14ff, 0x1cff0da701093c22, 0xbcb6db2fffbd3dde, 0x0dc2000f0dd0170e, 0x980ec5ff0dbda804, 0x8f05be381de5ffbd, 0xffbd2e6357ff0dcb, 0x0de20002bcc8f300, 0xcd3a45ff0ddd8e05, 0x190ebbcbbe58ff3d, 0xff3bf97666ff0deb, 0x0e80020dbd99ee8b, 0x0e1c88040e3c000d, 0x0e0990050e0e130e, 0x40f5ffbc648925ff, 0xa1ff0e17030bbd55, 0xbe22b829ffbe4ca8, 0x0e29130e0e2e250e, 0x13d7ffbcee5220ff, 0x2cff0e3701073b93, 0xbe02baf2ffbca693, 0x0e520a0b0e600111, 0xaa12bbff0e4d9005, 0x8f05bd4ff95bffbd, 0xffbe138a06ff0e5b, 0x0e72c504bdb7819a, 0x9f1110ff0e6d2b0e, 0x020bbbdaaf75ff3c, 0xff3e41627cff0e7b, 0x0ec8230ebc170174, 0x0e9ac6040ea80f0e, 0x404352ff0e950111, 0x01093cb985d0ff3b, 0xff3d04f0f9ff0ea3, 0x0eba000fbba159c8, 0x4c5b90ff0eb50009, 0xc604bd23c890ff3c, 0xffb7bbfc0dff0ec3, 0x0eec270e3c4558df, 0x0ed901120ede060d, 0x554fffbcf7ffd9ff, 0x13ff0ee70012bdd3, 0x3d767261ffba8a9e, 0x0ef92a0e0efe040d, 0xf452ffbd9e63b0ff, 0xe6ff0f07310e3db5, 0x3d939799ff3b849d, 0x0fa00002102c8f05, 0x0f3c000f0f5cca04, 0x0f29c9040f2e8e05, 0x0370ff3ddb7c70ff, 0x59ff0f3700093d58, 0xbc8ff880ff3c11e3, 0x0f49060d0f4e190e, 0x719dffbad71103ff, 0x01ff0f57030bbd1d, 0xbdad54a3ffbcbfc8, 0x0f72cc040f808e05, 0x9684acff0f6d010c, 0x00073da9ba73ff3c, 0xffbd3683dcff0f7b, 0x0f922c0e3c8e4a29, 0x4e6c4aff0f8d000f, 0x010cbd0abea4ff3c, 0xff3b15643eff0f9b, 0x0fe8010c3d5da141, 0x0fba1f0e0fc82d0e, 0x03d64cff0fb51c0e, 0x0b0bbcdfcf95ff3b, 0xff3c38c0beff0fc3, 0x0fdac9043d220466, 0xe967bdff0fd50009, 0x8e05bcc722fcff3d, 0xff3bc50592ff0fe3, 0x100c8e05bcaeb39c, 0x0ff9ca040ffecd04, 0x4f3affbdb130fdff, 0xeeff10070012bbba, 0xbdb3a0feffbe3f97, 0x10190007101e0b0b, 0xc16aff39f75fa3ff, 0xf7ff102700083d6e, 0x3e436ae4ff3d7bae, 0x1078010810b30009, 0x104a180e1058190e, 0x2c3e39ff10450e0e, 0x0007bc22f32cff3c, 0xff3cf0e29bff1053, 0x106a1c0e3bc17fa0, 0xe5f477ff1065010c, 0x1f0e3e027742ff3c, 0xffbc1ee044ff1073, 0x109c010cba3b9286, 0x1089050b108e0002, 0xe12cffbd55d420ff, 0x25ff10971c0ebc1f, 0xbc02eb5fff3c044d, 0x10a9001210ae0111, 0x84f5ffbdcac51bff, 0x053d375ce1ffbd4b, 0x0910db0e0e10fb92, 0xff10c8001210cd01, 0xae5619ff3d626767, 0xaae4ff10d6060dbd, 0x05bc8d393cffbb03, 0xff10e8000f10ed91, 0xa6553bffbd55f98e, 0x9034ff10f60b0bbc, 0x0ebd0916c6ffbbb1, 0x0d11110109111f0e, 0x3d35f95bff110c06, 0x1a000fbb36c77cff, 0xc8ffbd50707dff11, 0x0f1131c904bb483f, 0xbdd4b395ff112c00, 0x3a050bbc6be8d0ff, 0x55ffbb099d43ff11, 0x0800000013bc6d30, 0x01000003e8000000, 0x0000001136000000, 0x0e08ee8d05000000, 0x0c02488b05047b14, 0x0400a0a604012c00, 0x05003c020d005ca1, 0xff00299f04002e12, 0x8e459bff3a88859f, 0x3629ff003701083b, 0x06bc9165ebffbb91, 0xff00490e06004e0f, 0x8c893cffbabb43f9, 0xadc7ff005700073c, 0x0d3b568518ffbbb0, 0x040072120e008006, 0xbc53a590ff006da3, 0x7b130e3a89c26bff, 0xe2ffbd92f3cdff00, 0x0e0092060ebad470, 0xbbb8a992ff008d05, 0x9ba504bcf1ec93ff, 0x1cff3c19924bff00, 0x0700e80c0ebc3123, 0x0600ba010d00c802, 0xb9701f8fff00b511, 0xc35505bcb1edf0ff, 0x06ffba22fb87ff00, 0x0d00da0108ba8a86, 0xbbf3d484ff00d503, 0xe3000f39007d14ff, 0x0effbccbf434ff00, 0x0d010c000fbc4d40, 0xff00f90e0600fe01, 0x254b25ff3bbc0063, 0x8aa0ff01070008bd, 0x043c839713ffba8d, 0xff01190012011eb3, 0xdb10eaffbc15c5f2, 0xefdbff0127060d3a, 0x0dbb9a32f8ffbc6a, 0x060178000501bc02, 0x08014a5e04015817, 0xbcaab035ff014500, 0x53000fbc11deb9ff, 0x4fff3cdad14cff01, 0x0e016a6104bc460f, 0xbb69745eff016504, 0x73000fbcbc3fe0ff, 0xa9ffbd9d8dbeff01, 0x05019c0b0ebc6e27, 0xff0189010d018e76, 0x402a83ffbb891c38, 0x81daff0197070e39, 0x0ebcf5f5d7ff3ba5, 0xff01a9390401ae12, 0x8dc2f5ffbb2479b2, 0x3bf4ff01b700093c, 0x0b3c679c8affbcfb, 0x0401e40111020413, 0xff01d18d0401d68e, 0x3df250ffb99fdc66, 0x3230ff01df9f04bc, 0x05b9ecdee3ff3b31, 0xff01f1090601f64f, 0x84e74aff3aa691fe, 0xc9bbff01ff00083c, 0x053c90ac13ff3ba1, 0x04021abd0402282f, 0xbae0daa4ff021561, 0x230a0e3a6a3bfaff, 0x41ff3b7f89aaff02, 0x04023a0d0e3ca12b, 0x3bad13e5ff0235b2, 0x43070dbc30baefff, 0x50ff3c36beacff02, 0x0c0368030e3d58f6, 0x0e0298000802dc01, 0x0e026a000f027802, 0xbc74deaaff026500, 0x73010e3c656349ff, 0xd0ffb84238c7ff02, 0x0c028a9204bc1f8a, 0x3b3e45f1ff028500, 0x9301123c9658f6ff, 0x1fff3b006187ff02, 0x0202bc020dbcd7ed, 0xff02a9510402ae00, 0x7d857bff3cb87aad, 0x041fff02b70207bc, 0x0cbdf1459effbe25, 0xff02c9020b02ce00, 0xc7be0dffbc7747ca, 0xd38eff02d78b04ba, 0x0dbc3e6c47ff3bd5, 0x0403040009032406, 0xff02f18b0402f6b3, 0x20ff1bffbc653c52, 0xadc0ff02ff0108bd, 0x04bbea1aa8ff3cbf, 0xff03110111031697, 0x3130d3ffbcc58b01, 0x8ba2ff031f0b0bbd, 0x08bd34b9a3ff3c3b, 0x12033a000e034800, 0xbc8d1550ff033500, 0x43a9043baefdcdff, 0x69ff3cdbafecff03, 0x11035a97043a0437, 0xbd6b3b9bff035500, 0x63070bbc44ebb0ff, 0x0bffb9b2e08fff03, 0x0f03f8c204bc70b4, 0x0e03947e0403b400, 0xff0381020d038607, 0xb4f966ff3c5cc21d, 0x39dbff038f000d3d, 0x07bd73ea0dffbc53, 0xff03a1020903a601, 0xe47fdbff3c809881, 0xd735ff03afa704bc, 0x04b9d3153dffbd46, 0x0e03caba0403d8bb, 0xbc4ce4dcff03c506, 0xd300113aad3b71ff, 0x63ff3cfb7f8bff03, 0x0403ea0011bd0ccb, 0x3cf3b03aff03e5bd, 0xf3bd04bb644a16ff, 0x2bffbbfc83c0ff03, 0x0e04400a0e3cba00, 0x0404120012042008, 0xb8d11ea6ff040dc5, 0x1b0009bca2d8bfff, 0xdfff3c967bafff04, 0x120432cb04bcf150, 0x3d368266ff042d00, 0x3b0b0bbcc4b1a8ff, 0xb2ff3d741f4cff04, 0x09045b0b0e3deddc, 0xff0451000c045600, 0x7a581dffbd2683ee, 0x0e0e3cf8866dffbd, 0x4eff0468c304046d, 0xbb98df1dff3c26bd, 0x993711ff0476cc04, 0x8705bdf614bbffbc, 0x0011059f010706bb, 0x7e0504cfba040513, 0xb90404a1790504af, 0xffbb6f0feaff049c, 0x04aab9043a94523c, 0xeec5ffbb9611afff, 0x8b0404c1070b3d80, 0xff3c8e338dff04bc, 0x04ca010cbb9abd0c, 0x0b81ff3bbfa0edff, 0x070d04f3140b3d96, 0xf4ff04e00b0b04e5, 0xbd054ec7ff3b7ed7, 0x406812ff04ee0108, 0x0007bc9642e1ffbd, 0x38ff05001c0e0505, 0xbacdbd84ff3cfe1f, 0xd944eeff050e070d, 0x280ebcf74778ff3c, 0x7704053b0109055b, 0xc7ff05286905052d, 0xbbb48018ffba0904, 0x31fdccff0536120b, 0x060d3bc02baeff3b, 0xd2ff05487b05054d, 0xbc808679ffbc1557, 0x2ca5a7ff05566a04, 0xc604bd2c5c75ffbc, 0x0b0b05712b0e057f, 0xffba08377aff056c, 0x057a7805bad38799, 0xda10ffbb83fcc9ff, 0x300e0591060d3b8c, 0xff3b03bc8eff058c, 0x059ac904bc0eb8c9, 0xd05fff3a101bcaff, 0x020b062f020dbd83, 0x010d05cb010b05eb, 0xadff05b83c0105bd, 0xbd53bc76ffbc65e3, 0x9584b1ff05c60008, 0x7404bbc12f4fffbc, 0xd8ff05d8400105dd, 0xbcfe2b3fffbae4e7, 0x1535fcff05e6b304, 0x4705bc924d93ff3c, 0x880406010605060f, 0xff39860082ff05fc, 0x060a0211bc3cbb1c, 0x0c54ff3b758c45ff, 0x1c0e062178043d07, 0xff3c8ed5feff061c, 0x062a1f0ebc85f6bc, 0xcc8dff3b03e5fcff, 0xc9040677cc043c7e, 0x00020649c0040657, 0xff3861f297ff0644, 0x065255053bd6d16d, 0x29b1ff3b4d45e3ff, 0x000c06690012bb73, 0xff3ae8218aff0664, 0x067200083d01edfc, 0xaab0ffbc606aa7ff, 0x2d0e069bcd043b81, 0x96ff0688250e068d, 0x3cbc411effba8082, 0xa5526fff0696300e, 0x310ebabdaf09ffbd, 0x8fff06a8220e06ad, 0x3d0e9e13ffbd15e8, 0x813880ff06b6060d, 0xc204bc750cfdff3c, 0x010b07461c0e07d2, 0x990406eb02080702, 0xc1ff06d8000206dd, 0x3cfb57acffbb577b, 0x832297ff06e6a904, 0x190eb9f3385dffbc, 0xabff06f8011206fd, 0x3dc65efbff3a2440, 0x26070dbd97aa98ff, 0x13020d0718020907, 0x43ff3caf8a44ff07, 0xff0721000c3b9cc1, 0x5712c9ffbb0b5f49, 0x33030b0738b904bd, 0xa8ffbc7ec7b2ff07, 0xff0741090bbcdc4c, 0xc07a95ffbd3f19d3, 0x6e0208078e220ebd, 0x5b000f0760000707, 0xd3ffbd0328deff07, 0xff07691d0ebbf42e, 0x885602ffbc02b13e, 0x7b010b078001123c, 0x68ffbb0f77c0ff07, 0xff0789bf043cdb89, 0x060254ff3e1f3b86, 0xa4060d07b2230ebe, 0xbddfff079f000907, 0x0bbac40211ff3ca6, 0x3a1ccfe0ff07ad11, 0xc42a0e3d2dd10bff, 0x0f13ff07bfa00407, 0x0ebc6cbf6dffbddc, 0x3c517413ff07cd2b, 0x62180ebba2fe4eff, 0xfe0112081e010c08, 0xeb010707f0150e07, 0x3bff3d5d3bfaff07, 0xff07f90007bb5b9e, 0xd85011ffbc9f51e8, 0x0b00070810c404bb, 0xcbffbca70926ff08, 0xff081900023ba368, 0x8d64c8ffbc12e2ab, 0x34011208420b0b3c, 0xbf16ff082f000208, 0x04bd130374ffbc00, 0xbcd91a08ff083dc4, 0x54150e3cf4f096ff, 0x9f97ff084f060d08, 0x083d883de5ffbc9e, 0xbd7a02a8ff085d01, 0xaa0011bc0d1440ff, 0x7c0b0b088a1c0e08, 0xc34bff0877010c08, 0x0c3d0fc1f5ffbac1, 0x3c75f19fff088500, 0x9c1d0e3d8a7d26ff, 0xcffbff0897000c08, 0x0dbd13a7cdffbc62, 0x3b6d4be0ff08a507, 0xce0012bce11a35ff, 0xbb000c08c0000908, 0x28ff3d2d976cff08, 0xff08c98c053dca49, 0x9809d4ffbd351365, 0xdb000708e0140bbc, 0x25ffbc1b17f6ff08, 0xff08e9060db90e18, 0x54986fff3bb10d25, 0xcf030e0cf00d0ebd, 0x8a020e0a16ca040a, 0x2601120946000c09, 0x13070d0918000b09, 0x0fff3cbdf3f0ff09, 0xff0921020dbb549f, 0xde1118ffbc25ce25, 0x3300020938010eba, 0x23ffbd10c5fbff09, 0xff0941000d3af236, 0x890098ffbd5a665e, 0x5c0009096ab9043d, 0x13ffff0957920509, 0x05bcc08f1bffbc07, 0x3b4203a2ff096593, 0x7c0e0bbbfb357fff, 0x2218ff0977010909, 0x123b8ecda4ffbbf1, 0x3bf9ef36ff098500, 0xd2000f3c9686a0ff, 0xa4940409b2000c09, 0x5e6fff099f070b09, 0x0dbe922fa3ffbe1c, 0xbd255ba6ff09ad02, 0xc492043dac1130ff, 0x1bcaff09bf000909, 0x043c1e1268ff3d72, 0xbdda4d68ff09cd97, 0xf60008ba41a155ff, 0xe39c0409e80b0b09, 0x8fff3b9bb9dcff09, 0xff09f1000cbac633, 0x1c4920ff3aa2a576, 0x03000c0a08010c3c, 0x45ff39ecf54aff0a, 0xff0a11070bbbb398, 0xb95a4aff3c7602ef, 0x6201120a67020ebc, 0x34010e0a420b0b0a, 0x1483ff0a2fcc040a, 0x04bcb6163bffbb92, 0x3b94709cff0a3dcd, 0x549505bbe0666aff, 0x3bc7ff0a4f00020a, 0x123c2e9b74ff3cdf, 0x3a665ff2ff0a5d00, 0xe420ff3bff7135ff, 0x140b0aaf01113d5d, 0x060d0a81cc040a8f, 0xffba9caaa8ff0a7c, 0x0a8a0209bc834b0e, 0x5defffbd10b5f1ff, 0x060d0aa19605bca2, 0xff3c252eb5ff0a9c, 0x0aaacb04bb4f7a0b, 0x31e8ffbc19c07cff, 0x030b0ac10002bc71, 0xffbe20f26eff0abc, 0x0aca9605bd91ed30, 0x8680ffbcd9e260ff, 0x080e0bd4020d3d75, 0x000c0b16050e0b5a, 0x000d0af1030b0aff, 0xff3c8debb0ff0aec, 0x0afa90053d89795b, 0x43daff3daf3bfdff, 0x040b0b1193053def, 0xff3cc1310cff0b0c, 0x1e1900ff39de3600, 0x2c73040b3a9604bd, 0x1dc8ff0b278e050b, 0x0ebd6dcb19ff3c14, 0x3d19874aff0b3507, 0x4c9904bc5d018bff, 0xbf02ff0b4700090b, 0x093cda1cb0ffbdd0, 0xbcd128e8ff0b5501, 0xa201093c892a14ff, 0x74a1040b82a7040b, 0x55f0ff0b6f9c040b, 0x02bc3881baff3cd9, 0xbe8d43b9ff0b7d00, 0x9400093b13d3b9ff, 0xa4f2ff0b8f00070b, 0x0b3c824071ff3d39, 0xbd5a1223ff0b9d03, 0xbd030b3d04979dff, 0xae46ff0baf8e050b, 0x7eff0bb8b304be14, 0xbd93e96affbd3a05, 0x0bca90050bcfbf04, 0x4a20ffbd580750ff, 0x04bd717b20ff3da1, 0x040c20000f0c6499, 0x090bf2070e0c0092, 0x3d287032ff0bed00, 0xfb7e04bd9608f0ff, 0xe3ffbca4e6b0ff0b, 0x0e0c120009bd4394, 0x3d6cab84ff0c0d07, 0x1b94043da0e85aff, 0xa5ff3e258cf0ff0c, 0x0e0c44070e3db821, 0xff0c3197040c3606, 0x462358ffbba0aa90, 0xe2a6ff0c3f040b3c, 0x0e3cc99a3eff3bdd, 0xff0c51000c0c5609, 0xf8b689ffbbf80b0d, 0x7130ff0c5f0a0ebc, 0x0b3bb48ff9ff3d37, 0x040c8c000f0cac01, 0xff0c7900020c7ea7, 0x3538d0ffbe0e3ff2, 0xf56fff0c8700073c, 0x0c3c87d090ff3d45, 0xff0c9901080c9e00, 0x76be21ffbb9fe43a, 0x7ffbff0ca7a204bc, 0x0fbcb78529ffbb59, 0x0e0cc201090cd000, 0xbc9f91f6ff0cbd06, 0xcb080e3ca0cd97ff, 0x2fff3c562485ff0c, 0x040ce29005bda5c1, 0x3a535330ff0cddc3, 0xeb0111bb825c61ff, 0x32ffbb31c9acff0c, 0x0b0f30c8043bab22, 0x0e0d8800090e1401, 0x0d0d24c3040d4425, 0xff0d11220e0d1602, 0x4998ffff3b66d279, 0x78baff0d1f190e3d, 0x0cbc8bb3f8ffbb8c, 0xff0d311d0e0d3600, 0x1045fcff3c9ff9bb, 0x760cff0d3f000fbc, 0x0e3cc5cd2fff3dd6, 0x050d5a00020d682a, 0x3e782282ff0d558e, 0x630007bcfcd4d2ff, 0xa0ffbde2ea47ff0d, 0x110d7abb04bcd068, 0xbbbed671ff0d7501, 0x83c0043d9360f0ff, 0x4cffbd45aed5ff0d, 0x0f0dd00e0ebb280a, 0x020da2020d0db000, 0xbd8c6950ff0d9d00, 0xab9205bc5e0080ff, 0x68ff3d935f14ff0d, 0x040dc2070d3dc958, 0xbc27277aff0dbdc2, 0xcb00023c11e657ff, 0x6effbd2b79a9ff0d, 0x0c0df4170ebca231, 0xff0de1060d0de600, 0x1c003eff3bf9ecd6, 0xede3ff0def020dbd, 0x02be292c2affbd84, 0xff0e01b8040e0600, 0xcd8076ff3d2574f3, 0x8439ff0e0f190ebc, 0x0dbd8a89e3ff3be0, 0x040e60000d0ea402, 0x070e327b040e4088, 0xbd5e14fbff0e2d00, 0x3b0007bca7f980ff, 0xf8ffbdc952edff0e, 0x050e52c204be3a50, 0xbc17357bff0e4d96, 0x5b9405bd687253ff, 0xd2ff3d3da075ff0e, 0x110e84220e3c1c4d, 0xff0e710a0b0e7601, 0xb93d16ffbd411fd8, 0xe73aff0e7f190ebd, 0x0bbc3c1e46ff3c9c, 0xff0e9192050e9603, 0x9be80fff3ca492a9, 0xdd4dff0e9f040b3d, 0x053be6801dffbdb1, 0x0e0ecc310e0eec92, 0xff0eb9010c0ebe10, 0xca7a90ff3b521bbb, 0xbc6fff0ec7120e3c, 0x0e3a5e3e9fffbca0, 0xff0ed900020ede32, 0x54eb40ff3e551ebe, 0x5258ff0ee7000c3e, 0x043d927f58ffbbdc, 0x040f02000f0f10bd, 0x3c478326ff0efdbc, 0x0bbc043e29e5c5ff, 0x68ffbb917fa4ff0f, 0x0e0f22000fbca936, 0x3cc6088aff0f1d23, 0x2b060d3e949894ff, 0xacff3b25516cff0f, 0x0d101aca043c8fd0, 0x0e0f772f0e0f9702, 0x090f52220e0f602b, 0x3d2dee86ff0f4d00, 0x5b0008bc628accff, 0x07ffbcdf9b2bff0f, 0x050f7293053c927a, 0x3dd66124ff0f6d8f, 0x68bcff3e291a2bff, 0x00090f9200073e92, 0xd4ff0f8800080f8d, 0xbd95b93fffbde2cc, 0x7870ffbd1af7ccff, 0xc9040fdf010cbcb9, 0x060d0fb12b0e0fbf, 0xffbbbed911ff0fac, 0x0fba8e05bcc89d6d, 0x36e0ff3db79b17ff, 0x170e0fd10012bb9e, 0xffba460e6bff0fcc, 0x0fda0e0e3d14aed0, 0x8bc4ff3c7726c5ff, 0x230e0ffac904bbd6, 0x90ff0ff0190e0ff5, 0xbd824187ffbc2d79, 0x0c92053e897788ff, 0xfc37ff10078e0510, 0x0b3cd59215ffbd6f, 0x3d2b1859ff101503, 0xaacd043dac496fff, 0x46cb0410661f0e10, 0x33170e1038001210, 0xb2ff3bb64c99ff10, 0xff104101073cb2bf, 0xbca635ffbcfddb20, 0x53050b10581c0eba, 0x49ffbd043217ff10, 0xff106100113c2096, 0xae2891ff3b2f5b6d, 0x7c230e108a0a0bbc, 0x00ccff1077010710, 0x023cb93194ffbd7b, 0x3d064fd5ff108500, 0x9c0002bbc4eb13ff, 0x4cc6ff1097010c10, 0x0cbd2b460eff39fb, 0x3c6b1a7cff10a501, 0xf290053d85657fff, 0xc42d0e10d28f0510, 0x5232ff10bf1d0e10, 0x113d1c7c36ffbd0c, 0xbc60e790ff10cd01, 0xe40007bd620fd5ff, 0x9172ff10df000c10, 0x0ebd8b9f13ffbc86, 0x3cf13c99ff10ed14, 0x16280ebc8be89aff, 0x0396051108000f11, 0xf2ff3d9a7b8cff11, 0xff11111d0e3e08ed, 0x90e74effbb915431, 0x2391051128000c3b, 0x58ff3c861da8ff11, 0xff11319105bb28be, 0xfc3808ffb8aca96c, 0x00000800000013bc, 0x000001000003e800, 0x000000000010af00, 0x60160e08dc8d0500, 0x23ba04023fc30404, 0x5cb90400a08c0501, 0x2eab04003cad0400, 0xde1eff0029120e00, 0x0ebb8b6a68ff39bc, 0xbc5be4e3ff00370d, 0x4e0d0e3cac31b9ff, 0xbb53ff0049b00400, 0x09bb5bf7a9ff3b75, 0x3c89dc63ff005701, 0x800002bc90b8a3ff, 0x6d7b050072060d00, 0x1dffbd8ebbcaff00, 0xff007b070dbcf579, 0xdb293aff3c6848ed, 0x8d070e0092080ebd, 0xceff3bea59deff00, 0xff009b0b0ebd44f6, 0x3c4375ff3d515c46, 0xc8ae0400e8b2043c, 0xb5010c00ba011100, 0x96ff3aab4812ff00, 0xff00c30007bbf377, 0x097e98ffba87bbfb, 0xd5b00400da0007bd, 0xffffbc69b3daff00, 0xff00e3010e3d2eb7, 0x4af0f8ffbc405cd1, 0xfeb604010c0e0e3c, 0xa9afff00f9000f00, 0x04bc0e9a50ff3c8d, 0xbd8ce545ff0107b7, 0x1e0009bb1c662fff, 0x6b26ff0119000c01, 0xff3db2f3e0ff3d92, 0x01b3bd04bc609f28, 0x014f030e016f0012, 0x013c730501418005, 0xefafffbdc346fdff, 0xc8ff014a0009bd8b, 0x3c455c40ffbcf901, 0x015c01070161010c, 0xd423ff3cb107a7ff, 0x6aff016a0109bb65, 0xbcfe0373ff3d51c6, 0x01857f0501930112, 0x5433e6ff0180060d, 0x140bbc04e198ffbd, 0xffbc12bf05ff018e, 0x01a50605bc96ee68, 0x02d160ff01a0000f, 0x07053bdb26beff3d, 0xffbcf9271eff01ae, 0x01fbc204bb767f7b, 0x01cd290501db030e, 0x0ac309ff01c8030b, 0x000f3bbc459effbc, 0xffbcc9a2caff01d6, 0x01ed0009baac5769, 0xbf9f70ff01e8060d, 0x070d3ca9b31fff3b, 0xffbb9e0c6fff01f6, 0x021f0b0ebd87969a, 0x020c01080211080e, 0x6d1affbb125232ff, 0xc0ff021a1a05bcd7, 0xbd6430f0ff3955b0, 0x022c010702310112, 0x23e2ff3d09649dff, 0xe9ff023a0b063a29, 0xbccb2f36ffbdca7a, 0x02d3c404035f140e, 0x026f0d0e028f0002, 0x025c00080261080e, 0xc013ff3c5130cdff, 0xe7ff026a0108bcbf, 0xbcde234cffbde139, 0x027c000c02810e0e, 0x33aeffbcc08dd0ff, 0x58ff028a00063c11, 0xbdb691ceffbd698b, 0x02a5010c02b36905, 0x2928a8ff02a00007, 0x060dbd9dc17dffbd, 0xffbd5cf8bfff02ae, 0x02c501123cfd5ac9, 0x06a1c0ff02c0070e, 0x130bbcb78dcfffbb, 0xff3b1c92eaff02ce, 0x031b070d3c962295, 0x02ed020702fb010c, 0x17bca3ff02e8030b, 0x0108bb693a28ff3c, 0xffbac2bdf3ff02f6, 0x030d0209bc963d01, 0x12b8a0ff03080f0e, 0x060d3d2f3561ff3b, 0xffbc4d633bff0316, 0x033f0107bd12644c, 0x032c00090331c804, 0xbe1fffbd774105ff, 0x5dff033a0009bd01, 0xbce2191cff3d334a, 0x034c020b0351c604, 0xc4b9ffbd3ab08eff, 0x1fff035a7f05bcbe, 0x3b0dd38dff3d14e4, 0x03ab010c03e60011, 0x037d0108038b0b0b, 0x2f099dff03780207, 0x78053cf6b4b0ff3d, 0xff3c172250ff0386, 0x039d01083ca30e7b, 0xc81accff03980007, 0x81053d9e7330ff3d, 0xff3d08c603ff03a6, 0x03c664053d670eb4, 0xe79ee0ff03b85605, 0x4120ff03c10b0bbc, 0x0b3d9e44a8ff3c87, 0xff03d3c40403d80b, 0x9f8b44ff3d8f4b58, 0x0c13ff03e1c4043d, 0x0c3e131bb5ff3d99, 0x08040e000f042e00, 0xff03fb0706040000, 0x14275cffbdbb86c0, 0xf660ff04091206bd, 0x0bbcaf16baff3ce2, 0xff041b020d04200b, 0xa7d82fffbbb8ff36, 0x432cff042900063b, 0x123c88417cffbc3b, 0xff043b0007044901, 0x04440002bd473f78, 0xb426ff3c0b61a7ff, 0x4bff0452c404bbed, 0xff045b030bbe4479, 0x16c324ff3c0128ec, 0x840e0606a08c053d, 0xb4070604f8a10405, 0x864d050494410104, 0x4bd5ff04819b0404, 0x0db92adbffffb906, 0x3adc4d3eff048f06, 0xa6190ebc1fc6e3ff, 0xde1eff04a1020d04, 0x0cbaa547bcff3c94, 0xbaed84c3ff04af00, 0xd88504bbb27ad9ff, 0xc5780404ca060504, 0x44ff3aad6bd4ff04, 0xff04d3200e3c3b50, 0xf087d4ffbbba14b8, 0xe5011104ea0c06bc, 0x16ffbb2e7381ff04, 0xff04f3220e3c84f5, 0x95b829ff3c8a9365, 0x20b60405400207bc, 0x0db50405122a0e05, 0x96ff3b2be3bfff05, 0xff051b01113d0df1, 0xb05033ffbbd68210, 0x2d350e05320b0b3b, 0x5cff399f3385ff05, 0xff053b190ebc4e88, 0x314b9dff3c0b2228, 0x5601110564000c37, 0x3c85ff05512a0e05, 0x063b857e55ffbbab, 0x3b3e7a7dff055f09, 0x76070dbca2f126ff, 0x6ef9ff05711d0e05, 0x0e3c5a9227ffbb5f, 0x3d3b6278ff057f23, 0x14000dbd2f3681ff, 0xb0030b05d0880406, 0x9d280e05a2000805, 0xb5ffbc08287cff05, 0xff05ab7a04bd2857, 0xdd4137ffbb69921e, 0xbd010505c282043c, 0xe9ff3c35ec80ff05, 0xff05cb11063d0f27, 0x93a8feff3d26fc02, 0xe6000205f4000c3d, 0xc424ff05e1b00405, 0x04bd1c17abffbd9e, 0xbd305facff05efcb, 0x06030bbc11aa17ff, 0xc312ff0601b50406, 0x04bd030892ffbd85, 0xbc20c08fff060fa7, 0x5cb5043d1206a9ff, 0x2e1f0e063c140606, 0xfac7ff0629000806, 0x013b4724faffbc4e, 0x3b402622ff063741, 0x4e070bbc8d7ff6ff, 0x18d7ff0649030506, 0x043c871643ffbcc5, 0xbd0653e6ff0657a7, 0x80000fbb9f01d9ff, 0x6d050d0672000c06, 0x8dffbbd93669ff06, 0xff067b020b3c5d89, 0xe30b6dffbd0175a8, 0x8d03050692bd043c, 0xd4ffbc8ac7c1ff06, 0xff069bbe04bbb35d, 0xa7e93eff3c26f5b0, 0x34011107c00002bb, 0xd0060d06f0cd0407, 0xbd190e06c21f0e06, 0x0bff3bad671fff06, 0xff06cbc704bc9fc4, 0xde5266ff3cd5d33c, 0xddca0406e20012bb, 0x31ff3c6f0e60ff06, 0xff06eb030bbc3992, 0x5624d7ff3b296509, 0x060b0b0714000cbd, 0x77e4ff0701001207, 0x073c0b3610ffbc32, 0x3d1fadcdff070f02, 0x260b0b3d74a565ff, 0xdbe4ff0721010c07, 0x0c3dc7cc7cff3d36, 0x3ddb63c3ff072f01, 0x7cc4043e224418ff, 0x4e0a0b075c000f07, 0x1b22ff0749010b07, 0x07bc7e6782ff3d47, 0x3cc05032ff075701, 0x6e030bbe0946c8ff, 0x548cff0769010c07, 0x0cbc248ddaff3b88, 0xbce1f4c3ff077701, 0xa0330e3ace0abcff, 0x8d000c0792010707, 0x65ffbd5ab8acff07, 0xff079b0a0bbccacb, 0x2ccd05ff3c752fdb, 0xadc50407b2c604bd, 0x10ffbce97e80ff07, 0xff07bb030bbd00ad, 0xa32164ffbd905948, 0x0c000f08500009bd, 0xde000707ec050b08, 0x44f1ff07d9020d07, 0x04bdb41023ffbc96, 0x3c8d50fcff07e7c9, 0xfe0108bca33aedff, 0xcad5ff07f92a0e07, 0x0ebcfc9e68ff3c7c, 0x3d02bf43ff08072a, 0x30190e3db8a210ff, 0x1d01070822170e08, 0x50ffbc37f769ff08, 0xff082b00083b0ef2, 0xc034ddffb661b0f1, 0x3d000808421d0e3c, 0xdcffbc0abe6dff08, 0xff084b1f0ebceab0, 0xb9eca6ff3c8729ff, 0x78be040898000fbb, 0x65000d086a020d08, 0x7cffbd2136e0ff08, 0xff0873170ebdb863, 0x040540ffbe3fdd48, 0x85c404088a0209be, 0x30ff3d2b4e10ff08, 0xff0893190ebcb4da, 0x4fdd40ffbca68c0b, 0xae011108bc060dbc, 0x8526ff08a9190e08, 0x0bbc8f5554ff3bc3, 0xbc52dadaff08b703, 0xce0012bd0c701cff, 0xcda0ff08c9190e08, 0x0bbcaf3397ffb904, 0xbd0de05eff08d703, 0xe70d0ebd802545ff, 0x04ca040abd030e0c, 0x34000c0978020e0a, 0x06070b0914011209, 0xa5e1ff0901000809, 0x0fbc3c17bbffbac1, 0xbd3950bdff090f00, 0x26010eb994e51cff, 0x4bcaff0921000209, 0x043ad9fd81ffbd02, 0xbd48a4d7ff092f67, 0x580e0b3d76d45aff, 0x458b04094a000909, 0x57ffbb3baaa8ff09, 0xff0953000fbc85a9, 0xd85c9dff3c2e7a3c, 0x650008096ab704ba, 0x96ffbaaa69e4ff09, 0xff09730012bc6ac1, 0x8ad274ff3bced262, 0xa0000c09c0000f3c, 0x8d6c040992940409, 0xc7ffbd63cc43ff09, 0xff099b020dbe3901, 0x9adc48ffbd14d27b, 0xad000909b2020d3d, 0xeeffbda2a615ff09, 0xff09bb9404bb7fd4, 0x6584e3ff3d3ec789, 0xd60b0b09e400083b, 0x2752ff09d19c0409, 0x0bbab26187ff3b8c, 0x3c53fd93ff09df14, 0xf6010c3b3a0ebfff, 0x72b2ff09f1140b09, 0x0bbbcce589ff388c, 0x3c5d6909ff09ff07, 0x55020ebca6d144ff, 0x300b0b0a5001120a, 0x1d010c0a22010e0a, 0x70ffbc097ba7ff0a, 0xff0a2bcd04ba8d22, 0xc9f5c2ff3b85988f, 0x3d00070a42000cbb, 0xd7ffba2860e7ff0a, 0xff0a4bcb043c0cfb, 0x879f85ff3c8597aa, 0x000f3d47b3b0ff3b, 0x96050a6bcb040a79, 0xffbd835578ff0a66, 0x0a749605be10da2e, 0xf910ffbcc41880ff, 0x02090a9d060d3d5c, 0x6eff0a8a96050a8f, 0xbb60996bff3d1300, 0x30f760ff0a980b0b, 0x00123b172830ffbc, 0x14ff0aaacc040aaf, 0xbc6592beffbb9dfc, 0x81dd26ff0ab8010c, 0x020dbcc13de8ffbc, 0x050e0b48080e0bcb, 0x030b0aed000c0b04, 0x00ff0ada000d0adf, 0x3d77740bff3c7f75, 0xa8c6acff0ae89a04, 0x93053e064ad1ff3d, 0x7cff0afa030b0aff, 0x3b828a2bff3cb78b, 0x289604bd0e49b0ff, 0x158e050b1a76040b, 0x82ff3ba584a2ff0b, 0xff0b23070ebd5fd6, 0x2b4606ff3d09389c, 0x3500090b3a9904bc, 0x10ffbdbbdf19ff0b, 0xff0b43070e3cc44d, 0x604fe6ffbcc09f3e, 0x7000020b9001093c, 0x5da0040b62a7040b, 0x29ff3c0038cbff0b, 0xff0b6b0009be5e5e, 0x92c672ff3cfbcb3a, 0x7d88040b82010dbb, 0xe5ff3e1fd008ff0b, 0xff0b8b00093dea43, 0x861af8ff3cbe1f4a, 0xa690050bb4030bbc, 0xd00aff0ba18e050b, 0x0ebd96fe09ffbe05, 0x3cc83a20ff0baf09, 0xc60002bd76139fff, 0xaf80ff0bc1bf040b, 0xffbd595530ff3c41, 0x0c5b8e053d90afe0, 0x0bf7060d0c17080e, 0x0be49a040be9b104, 0x4c68ff3c3cef59ff, 0xb3ff0bf2060ebc26, 0x3c220a49ff3d371f, 0x0c04a0040c09a304, 0x8f2cffbbec34f5ff, 0xb3ff0c12b3043d16, 0xbbf95966ffbcdf05, 0x0c2d00020c3b0a0e, 0xf7c2acff0c28a204, 0xba04bc8d9b21ff3c, 0xff3da1a891ff0c36, 0x0c4d060dbcbf47ee, 0x02fd46ff0c48b204, 0xca04bc33c691ff3c, 0xff3c058688ff0c56, 0x0ca3000f3d120103, 0x0c7501090c83030b, 0x145651ff0c700007, 0x070e3c00f2f9ff3d, 0xffbdb3ea30ff0c7e, 0x0c95a7043c7e1bce, 0xad5dc2ff0c90a504, 0x060dbd9d1382ff3b, 0xff3c89daeaff0c9e, 0x0cc7010cbd89780e, 0x0cb4ab040cb90108, 0x4968ff3a5e41e6ff, 0x4bff0cc20b0bbac9, 0xbc6bcc48ffba750b, 0x0cd4060d0cd9cb04, 0xf809ffbb69cc57ff, 0x63ff0ce200093b95, 0x3b7ee7b0ffbd2461, 0x0d7288040e73000d, 0x0d32000c0d40130e, 0x0d0d75040d1b0007, 0x560418ff0d089205, 0x9305bd60963affbd, 0xffbd359c28ff0d16, 0x0d2d9205bd33483a, 0xac0c15ff0d280107, 0xe0ffbc9a7a38ffbc, 0xff0d3b8004bc23ee, 0x951280ff3c854d60, 0x53bcff0d496f04bc, 0x01070d64030bbdcb, 0xecff0d5a00020d5f, 0xbe225651ffbe166b, 0x6d8f05be405d3cff, 0x76ffbe0eeb1eff0d, 0x120e02c204be00d4, 0x0b0d9e0a0b0dbe01, 0xff0d8b050b0d9006, 0x0c958bff3c9b3154, 0xea09ff0d9900073d, 0x07bcdf3ac3ff3cea, 0xff0dab00120db000, 0xc2c626ffbc39b8e1, 0x43acff0db90207bb, 0x0ebd9e4e10ffbd85, 0x0e0dd4000c0de213, 0xbd714090ff0dcf11, 0xdd030bbe03a9f8ff, 0xd8ffbbe4f2e0ff0d, 0x0b0df4140e3dc516, 0x3c78c3f4ff0def05, 0xfdb1043de028efff, 0x76ff3b06c64bff0d, 0x050e41240ebcb7e6, 0x040e1c00080e2193, 0x3cc95e90ff0e17c3, 0xe080ff3d87c6a2ff, 0x030b0e33c304bc99, 0xff3d13b0feff0e2e, 0x0e3c0008bb646466, 0xa6aeffbc54d0fdff, 0x2f0e0e658f053b99, 0x20ff0e52280e0e57, 0x3d44ee90ff3ca0d6, 0xa7a378ff0e600009, 0x01073dae6978ff3d, 0xff3e47e3f8ff0e6e, 0x0f93010b3e2e0658, 0x0ec394050f07c704, 0x0e95a6040ea3310e, 0xfa226dff0e90000f, 0xa804bc387a2dff3c, 0xffbe06293aff0e9e, 0x0eb5c504bc39aa72, 0x56ba74ff0eb0bf04, 0x020dbbaaca33ffbd, 0xff3de861fcff0ebe, 0x0ee701113e525a72, 0x0ed4190e0ed9c304, 0x2e1effbc9e3266ff, 0x2bff0ee2010c3b89, 0x39f85733ff3cc29a, 0x0ef4170e0ef9040d, 0x08e7ff3d2d433aff, 0x4eff0f02bc043da6, 0x3def78eeff3d9aa8, 0x0f2f000c0f4f2b0e, 0x0f1c00070f21020d, 0xc2d0ff3d3834ddff, 0x3fff0f2a00123c51, 0xbcbb78f4ffbc5229, 0x0f3cc9040f410107, 0xda9cffbd18c981ff, 0x9aff0f4a000fbd93, 0xbd330516ffbbc5af, 0x0f652c0e0f730002, 0x64dce9ff0f600107, 0x00073e0eeb44ff3e, 0xff3e1c2bc6ff0f6e, 0x0f8590053dc8b930, 0x9ae144ff0f80cc04, 0x2d0ebdb00758ff3c, 0xff3b382ae6ff0f8e, 0x1023010cbd1f510c, 0x0fbf01110fdf020d, 0x0fac00070fb10a0b, 0x87bfffbd14bc08ff, 0x0aff0fba0007bd3e, 0xbdc975f3ffbd6531, 0x0fcc000f0fd1280e, 0xb4ccff3c8052bdff, 0x4dff0fdac504bc9c, 0xbc06a8b7ff3c8009, 0x0ff501091003100e, 0x4478c3ff0ff0000c, 0x060d3c57a8c0ff3b, 0xffbb106311ff0ffe, 0x1015000fbc3659a1, 0x48802bff1010040d, 0x0008ba9a8ca3ffbd, 0xffba9011f1ff101e, 0x106b140eb9544a36, 0x103d0002104b120e, 0x234734ff1038110e, 0xbc04bca0ef70ff3c, 0xffbc8831ddff1046, 0x105d00093ce5864c, 0x8bb3dbff10580011, 0x8f053e06cb4fff3d, 0xff3c76322cff1066, 0x108f180ebbf49b44, 0x107c00021081c404, 0x136aff3d66990cff, 0x5aff108a0112bbfa, 0x3c1d3a6cffbd550d, 0x109c200e10a10002, 0xaf4dff3c89a039ff, 0x03ff10aa0008bce8, 0x3d555613ff3c6468, 0x0000000800000013, 0x00000001000003e8, 0x000000000000111b, 0x047b140e08f78d05, 0x012c090502488b05, 0x005c110600a07204, 0x002e5204003c6f04, 0x060ec0ff00290211, 0x000f3be5d5ccffbb, 0xff3cad80f2ff0037, 0x004e0a0ebbb5a377, 0x6f8b1bff00490002, 0x000cbb793efbff3d, 0xff3cb5a6adff0057, 0x00806304bcd6e8a4, 0x006d00050072000c, 0x3725ffbbd54e0cff, 0xb0ff007b4404baf0, 0xbbb5287effbc4914, 0x008d6f040092060e, 0x9000ffbc225ee1ff, 0x7bff009b12063ce3, 0xbcae462affbd5552, 0x00c8000f00e81606, 0x00b5030b00ba7304, 0x037affbd4fdfb9ff, 0x9cff00c399043cd7, 0x3c4bf2f9ff3d37f5, 0x00d5110600da8d04, 0x8985ff3b8438e5ff, 0x22ff00e31406bc4a, 0x39e60b17ff3c56b4, 0x00fe010e010c9704, 0x132f0cff00f90705, 0x000cbcf53100ffbc, 0xffbc3ffae7ff0107, 0x011e0107bd167116, 0xc2a8b0ff01190008, 0x000fbb9cc307ffbc, 0xff3c70f761ff0127, 0x01bcc504bb0ba310, 0x0158030d0178000f, 0x01450b0e014a120e, 0xe032ffbb06f482ff, 0x78ff015301063bec, 0x3c0f09afffbcf347, 0x01650009016aa404, 0xf8c6ff3bdf5913ff, 0x0dff0173000e3a52, 0x3c3e8baaffbc1adf, 0x018eaf04019c010c, 0x72aa2aff01898b04, 0xb204bab85206ffba, 0xff3be6f15cff0197, 0x01ae7605bb3a28ff, 0xd57116ff01a97505, 0x0d0e3bdba799ff3a, 0xffba9ccaa9ff01b7, 0x020401123cdf8c00, 0x01d6890501e4ca04, 0x7ece7dff01d1c904, 0xc704bbfaf8f6ffbc, 0xffbc45f965ff01df, 0x01f6060d3cdafc7e, 0x77027aff01f10d0e, 0x00123b9acd20ffbd, 0xff3be1bde0ff01ff, 0x022812063d3ab352, 0x02150b06021a030b, 0x4d37ff3d78ebb7ff, 0x53ff022311063c88, 0x3d026435ffbbad5e, 0x0235010b023ac604, 0xf150ffbcdae03cff, 0xceff0243000d3bf7, 0xbac55416ffbcb619, 0x02dc00070368060e, 0x0278011102989404, 0x0265020e026a7d04, 0x561effbbcdd0baff, 0x2aff027300123b2e, 0x3bceba84ffbb94bf, 0x0285000e028a020d, 0x13ecffbcc1c016ff, 0xdeff0293030d3b40, 0x3c996bf5ffbd09bc, 0x02ae011102bc030e, 0x0fe9b5ff02a90108, 0x9704bc1b1457ff3b, 0xffbdd152d2ff02b7, 0x02ce99043b1e379c, 0x035631ff02c90009, 0xc104bb1cf80cff3d, 0xffbccb6cfcff02d7, 0x032400023dad190f, 0x02f6020e0304060d, 0x320736ff02f10111, 0x8c04bccbcc88ffbb, 0xffb9e4d500ff02ff, 0x0316030ebd211248, 0xf70439ff0311b304, 0x000fbc27e433ff3a, 0xff3d0a9390ff031f, 0x03480008bd0cdab7, 0x0335050b033a020e, 0x4a0dff3b51ffdfff, 0x4bff0343020dbc3f, 0x3b3901d2ff3d7db5, 0x0355020d035a050e, 0xc64fffbdfdafb6ff, 0x8cff0363b604bb8f, 0xbd9b0c41ffbc3d11, 0x03b4001203f80e0e, 0x0386c3040394000c, 0x0e47daff03810008, 0x00083bf3bf99ffbb, 0xff3aefa33dff038f, 0x03a6bd04bc766b6f, 0x095b5bff03a1ae04, 0x0e0b3d1b8fb3ffbc, 0xffbb93f19cff03af, 0x03d80d0e3c5bab7d, 0x03c5b20403ca0002, 0x2e1dff3b7e3c2dff, 0x0bff03d30a0ebc7d, 0xbbc45bddff3bcc25, 0x03e5010c03eabe04, 0x652bff3c5f8ce6ff, 0x2cff03f300083d75, 0x3c8ea203ffbc9f76, 0x0420cc0404370e0b, 0x040d00090412130e, 0xbcf1ffbc9849c7ff, 0x0bff041bc204bd67, 0xbcd6d555ff3bedaa, 0x042d010c04320008, 0xef84ffbe27e109ff, 0x04bd853518ffbd87, 0x05044d130e045bc2, 0xbddce3c0ff04488c, 0x56010cbcc11bb8ff, 0xa9ff3d35b828ff04, 0x0d046d000c3e19b7, 0x3c7168dbff046806, 0x76070dbd032217ff, 0x1cffbc04238bff04, 0x0706bb87053dbebc, 0x0405130011059f01, 0x0404af7e0504cfba, 0xff049cb40404a1b8, 0x3719e9ffbb4c66fc, 0x224bff04aa230ebc, 0x05bc4c700bff3cd9, 0xff04bc090b04c181, 0x502d1bffbbba58cf, 0x0ef4ff04cab7043c, 0x0b3c056714ffbb34, 0x0b04e5070d04f314, 0x3b6247e9ff04e00b, 0xee000cbcf01c95ff, 0xbcffbba5c90bff04, 0x0d05050007bd1a93, 0x3c0868d5ff050007, 0x0e1d0ebd8d1a21ff, 0xf8ff3be1add0ff05, 0x04055bc8043cdb95, 0x08052d0212053bc7, 0xba60e9fdff052801, 0x364f043a8ff1beff, 0xbaffbccf66b0ff05, 0x05054d2b0e3d666a, 0x3cce86faff054886, 0x560112bd3ee8d6ff, 0x48ffbcbe9280ff05, 0x0d057f00073bd886, 0xff056cc904057106, 0xcce0cdffbd102afb, 0xb5f6ff057a0002bb, 0x0bbcc8525effbdb9, 0xff058c010c059113, 0xaef2c2ffbac7b907, 0x6a12ff059a060dbc, 0x0dbd169b1bff3cb2, 0x0605eb0008062f02, 0x1105bd310e05cb0d, 0x3ae5f6c5ff05b802, 0xc6c2043ceb85c1ff, 0x51ffbc1ccd29ff05, 0x0405dd00023c29fa, 0xbcc78c5eff05d873, 0xe6bc043c8a3dbeff, 0x9fffbc62bc66ff05, 0x01060f000f3b1270, 0xff05fc1903060138, 0x613bc8ffbb06eb00, 0x3d61ff060a300e3c, 0x043b1a5c57ff3c36, 0xff061c05060621ae, 0x0e2583ffbb9027a3, 0xd48fff062abc043c, 0x053a8be683ffbc9d, 0x040657070d067786, 0xff0644ad040649af, 0x3b047bff386cf4e4, 0x1f76ff06520605bc, 0x0e3b9943b4ffbc1e, 0xff0664170e066925, 0x90c507ffbc547695, 0x8a6eff06720a0b3c, 0x0bbd866827ffbc83, 0x04068dc204069b0b, 0x3bcc39adff0688c1, 0x96cd043d2856a8ff, 0xc5ffbb931f54ff06, 0x0406adcd043d5bb0, 0xbc9a2ab3ff06a8cc, 0xb60207bd6bb2a5ff, 0xfcff3d8e001aff06, 0x0b07dbc2043d5491, 0x0d070b0009074f02, 0x0e06dd890506eb02, 0xba8bf8aeff06d81d, 0xe6170e3cd32cebff, 0xc8ff3c3d9758ff06, 0x0406fd1d0ebcabba, 0xbc428ce0ff06f8ae, 0x06220e3add52b8ff, 0xfeffbd48c3c1ff07, 0x0f072f170ebc6fce, 0xff071c9f04072100, 0x839a4fffbdbf673d, 0x4d60ff072a000cbe, 0x0ebcc869afff3bed, 0xff073c0112074119, 0x39d1ceffbc3e3cb4, 0x63a7ff074a000f3d, 0x0dbcad5d0dffbd86, 0x090777310e079702, 0xff0764220e076901, 0xa1c23cff3bdd1b56, 0x5076ff0772b9043c, 0x02bd50cce5ff3a27, 0xff07848805078900, 0x68c236ffbc8000e6, 0x3eb0ff0792320ebd, 0x0c3dfa7af4ffbd82, 0x0507ad000f07bb00, 0xbdcc6842ff07a888, 0xb600023cced3faff, 0xa0ffbb3f2111ff07, 0x0707cd090b3b612f, 0xbbfed687ff07c800, 0xd6220e3bf68c5bff, 0xbdff3c0398b3ff07, 0x02086bcd043cf64a, 0x0e08072a0e082700, 0xff07f48a0507f923, 0x1ccb4dffbc26c75f, 0x78b7ff080288053b, 0x0fbcaaef8cffbd65, 0xff08148c05081900, 0x9a838eff3cdf88a1, 0xa6daff08228805bc, 0x05bbe0061dff3ce3, 0x0e083dc604084b8c, 0xbbffd705ff08382a, 0x46010c3ca26a70ff, 0x2bff3b83cda5ff08, 0x07085d00083cf167, 0xbcc361c2ff085800, 0x66000fbbcd872fff, 0x9cff3c188cccff08, 0x0e08b30007bb50e2, 0x0808850002089326, 0xbd1c4827ff088001, 0x8e00093be74dd2ff, 0xb7ffbdf9ea80ff08, 0x0d08a50108bcf497, 0xbc9dededff08a006, 0xae0111bd062843ff, 0x44ffbb9fcdd1ff08, 0x0e08d70002bd9400, 0xff08c41d0e08c92b, 0x09190effbcd70019, 0x642fff08d2010c3d, 0x05bd877dc7ffbba0, 0xff08e40b0b08e98a, 0xb8184effbbfb2e00, 0x43acff08f28b053d, 0x0ebb951781ffbd0a, 0x040ad8030e0d0b0d, 0x0e09938c040a1fca, 0x04092f000c094f00, 0xff091c000f092152, 0xfeec37ff3c8c8f0b, 0xf518ff092a960539, 0x05bc82378cffb9e0, 0xff093c0007094193, 0x2f7f34ffbbe0f008, 0x43c7ff094a000fbd, 0x0cbc72a3ecffbe68, 0x0d0965000f097300, 0x3c762a6dff096004, 0x6e040bbd9ca220ff, 0x06ffbb049c4fff09, 0x0d098572043ba2da, 0xbd79019fff098003, 0x8e0111bbca96c4ff, 0x79ff3b6af400ff09, 0x0f09db8f053d1849, 0x0e09ad000909bb00, 0xbe03c396ff09a801, 0xb6040dbd1b7f79ff, 0xd8ff3d331bb9ff09, 0x1109cd00083c27f2, 0x3a1097f4ff09c800, 0xd6020e3bc96822ff, 0x02ffbba1a0c0ff09, 0x0409ff94043b0971, 0xff09ec010e09f192, 0x68ed48ffbc84b13e, 0x5155ff09fa000f3c, 0x0cbc868969ffbdc2, 0xff0a0c01110a1100, 0x1fa10bffbac7c913, 0xe059ff0a1abd043c, 0x0e3b7993f0ffbbd4, 0x0b0a6b01110a7002, 0x0c0a3d02090a4b0b, 0xba2039d5ff0a3801, 0x46cb043cdccb80ff, 0x07ffbb5c94e3ff0a, 0x070a5d000cbc4df6, 0xb985ec44ff0a5801, 0x66cb043c2f3d8eff, 0x2bff3c707763ff0a, 0x3d33bb50ff3b741f, 0x0a8600020a94000f, 0x6c66a0ff0a819605, 0x0209be025df6ffbd, 0xff3d46e020ff0a8f, 0x0ab8140bbcb07c80, 0x0aa5060d0aaacc04, 0x1480ffba05116bff, 0x29ff0ab30209bc56, 0xbc87f77effbcf900, 0x0ac5060d0aca9605, 0x0663ff3c07b70bff, 0x98ff0ad3cb04bb00, 0xbc4f7c7cffbc039e, 0x0b6c080e0bef020d, 0x0b08030b0b28040e, 0x0af5000d0afa0009, 0xb53bff3c65e940ff, 0x33ff0b0302093d5e, 0x3c9b46a0ffbb5085, 0x0b1575040b1a9a04, 0x030bff3df154deff, 0xb3ff0b2395053d86, 0x3e1a6738ff3ddb5d, 0x0b3e76040b4c9604, 0xf3bf3fff0b390107, 0x070ebe05965effbc, 0xff3ceb19dfff0b47, 0x0b5e9904bc1a2576, 0xa91599ff0b590009, 0x01093ccb9c4cffbd, 0xffbcae7a3dff0b67, 0x0bb401093c816ec4, 0x0b86a7040b940002, 0xe6cc9bff0b81a004, 0x0007be48218dff3b, 0xff3d09da08ff0b8f, 0x0ba6010b3c457543, 0x1e67a9ff0ba10009, 0x030bbda28868ff3a, 0xff3d13eec3ff0baf, 0x0bd8030b3c133fd0, 0x0bc502090bca0002, 0xe160ffbd6a9e7aff, 0x9aff0bd302093c8f, 0xbd9c425fffbd5c23, 0x0be590050bea9305, 0xb73cffbd474490ff, 0x05bd439970ff3d88, 0x0d0c3b080e0c7f8e, 0x040c0db1040c1b06, 0x3c2a0a99ff0c089a, 0x160112bc15ab25ff, 0x59ff3b6c8f04ff0c, 0x040c2da3043cad22, 0xbbd4960eff0c28a0, 0x36b3043d0780deff, 0x18ffbcc8b858ff0c, 0x020c5f0a0ebbe06a, 0xff0c4ca2040c5100, 0x7ee406ff3cdefc04, 0x7e1cff0c5aba04bc, 0x0dbcac2725ff3d91, 0xff0c6cb2040c7106, 0x21cc4bff3bebc7fd, 0x5892ff0c7aca04bc, 0x0f3d036753ff3bf0, 0x090ca7030b0cc700, 0xff0c9400070c9901, 0xe81bf0ff3d0580db, 0x8036ff0ca2080e3b, 0x04bde7ed34ff3c0b, 0xff0cb4a6040cb9a7, 0xa8caadff3bccf5c8, 0x239eff0cc2060dbd, 0x0cbd7771a8ff3c78, 0x040cdd01080ceb01, 0x3a4807faff0cd8ab, 0xe6110bbab5285cff, 0x08ffba0f8900ff0c, 0x070cfdcb04bc7094, 0x3b393574ff0cf800, 0x060009bc17ee52ff, 0x2bffbd13f143ff0d, 0x0e0f0cc8043b656a, 0x0b0da300070e2f31, 0x040d3f93050d5f01, 0xff0d2c84040d31b4, 0x277ddbffbdbc35a5, 0xfcc9ff0d3ab704bb, 0x12bc8cd429ffbe12, 0xff0d4cc3040d5101, 0x917218ffbc08e8ae, 0x4f7cff0d5abf043c, 0x0c3dc78855ff3cc9, 0x0b0d7500080d8301, 0xbb5bbaa0ff0d7002, 0x7e000c3b16979aff, 0x63ff3a537373ff0d, 0x0b0d95150e3c8105, 0x3c4c0ce7ff0d9005, 0x9e170e3d20b8d1ff, 0xbeffbc7eb1c5ff0d, 0x0d0deb01123c9144, 0x020dbdc7040dcb06, 0xbc536fe6ff0db800, 0xc6190ebc01f3c2ff, 0x31ff3cacba39ff0d, 0x040ddd0011bc2cf1, 0xbcbd3144ff0dd8be, 0xe60e0ebb35eb11ff, 0x51ff3d21a45eff0d, 0x040e0f140e3c281a, 0xff0dfc000c0e019a, 0x1718e9ffbd0fd56e, 0xc122ff0e0a000dbe, 0x0bbc7eeaf7ff3d5f, 0xff0e1c000d0e2107, 0x7eb9f6ffbc59c91c, 0xca48ff0e2a230e3c, 0x0ebd213cbaffba2a, 0x0b0e7b000d0ead32, 0x040e4d00070e5b03, 0xbab05d55ff0e48bb, 0x56bb043cd007f8ff, 0x04ffbc8393b0ff0e, 0x040e6d8f05bd18fe, 0xbd00ac20ff0e68bb, 0x76bb04bc7655c0ff, 0x78ffbd09e248ff0e, 0x070e9f030bbd95f8, 0xff0e8c00090e9100, 0xb9fd38ff3e4bfbf2, 0x19acff0e9a00023d, 0x053d8f73c0ff3dcc, 0x3d74e468ff0ea88f, 0xec340e3d4f294cff, 0xc7020d0ed58f050e, 0xdb3dff0ec2330e0e, 0x12bd274f19ff3cde, 0xbb90c9d7ff0ed001, 0xe7020d3d8ddf68ff, 0x1b2aff0ee2c3040e, 0xff3ddedd38ff3e12, 0x0ef5000dbc0c555c, 0x0700023d96dfe8ff, 0x79f0ff0f028e050f, 0xff3dd29728ff3da2, 0x0fffca043e147b54, 0x0f532f0e0f73020d, 0x0f2e220e0f3c2b0e, 0x161f59ff0f290009, 0x0008bc619bbdff3d, 0xffbcc98147ff0f37, 0x0f4e93053c836e85, 0xc29fecff0f498f05, 0x64ff3e19089bff3d, 0x090f6e00073e8430, 0xff0f6400020f6900, 0xa25902ffbdd4b8b5, 0xd0ffbd081accffbd, 0x040fbb010cbca030, 0x070f8d0a0b0f9bc9, 0xbd02b87dff0f8800, 0x96060dbc304fdaff, 0x1dff3b46e56fff0f, 0x0e0fad0012bca0b0, 0xba712370ff0fa817, 0xb600083d062833ff, 0x0effbc1b56cbff0f, 0x0e0fdfc9043c03f7, 0xff0fcc190e0fd122, 0x7c4585ffbc1324e2, 0xb7dbff0fda0002bd, 0x053e76034fffbd02, 0xff0fec170e0ff18e, 0x030468ffbcf02972, 0x9dd6ff0ffa9205be, 0x043d5b4e6dff3cb6, 0x04104b1f0e108fcd, 0x0e101d0012102bcb, 0x3b98577cff101817, 0x2601073c9f14b5ff, 0xb9ffbcdf9488ff10, 0x0b103d0e0bba86ef, 0xbab31295ff10380b, 0x461c0ebd95c2ebff, 0xa6ff3c8efb40ff10, 0x0e106f050bbc806a, 0xff105c0107106123, 0x70b391ffbd8655dd, 0x6c3fff106a00023c, 0x0ebb90001aff3cd5, 0xff107c0002108125, 0xfd950cffbbbced0d, 0xcea8ff108acb043c, 0x05bc2b04b5ff3cb8, 0x0e10b78f0510d790, 0xff10a41d0e10a92d, 0x0c94e7ffbd00103c, 0x5873ff10b201113d, 0x0cbd4987edffbc52, 0xff10c4000710c901, 0x8f4fd3ffbd004406, 0x8470ff10d2190ebb, 0x05bd807a2cff3c6c, 0x0e10ed000210fb91, 0xbbf8d788ff10e81d, 0xf6000c3cf02578ff, 0xe1ff3b147aa4ff10, 0x0e110d9305bc9139, 0x3d120164ff110814, 0x169405bca42661ff, 0x3dff3c31e858ff11, 0x0800000013bb91e9, 0x01000003e8000000, 0x00000010e5000000, 0x0e08dc8d05000000, 0x0c02488b05047214, 0x0400a0a604012c00, 0x05003c020d005ca1, 0xff00299f04002e12, 0x8ffb8bff3a7fe5c0, 0xdcf2ff003702073b, 0x0ebc9b73b0ffbb9a, 0xff0049000f004e09, 0x0482d4ff3b262a6a, 0x2038ff00570d0ebb, 0x0ebb06eed5ff3aed, 0x0400720605008012, 0xbd8190bcff006da3, 0x7b1506bc0643ddff, 0x03ff3a3f4fb5ff00, 0x0e00920011bc7b2e, 0xbd8869afff008d13, 0x9b060d3cb14204ff, 0x7bffbd3c5a39ff00, 0x0400e80012bdbc4a, 0x0d00ba050b00c8a7, 0xbc43e575ff00b507, 0xc300083c4a9c06ff, 0x9cffbcaa799fff00, 0x0d00da7e05bd6324, 0xbc4ebc43ff00d507, 0xe38a053a261b11ff, 0x9effbba97034ff00, 0x04010c060d3ba8e5, 0xff00f90b0600febe, 0x60c653ffbbc16efe, 0x6c29ff0107040dba, 0x09bb610291ffbc1c, 0xff01190b0b011e01, 0xc329dcff3bda98a6, 0x7aeaff0127080e3c, 0x0dbd3e6645ffbbc6, 0x060178000501bc02, 0x08014a5704015816, 0xbc94a638ff014500, 0x53010cbbf05af8ff, 0x34ff3d17dc34ff01, 0x0e016a6104bb2bdb, 0xbbd09cd9ff01650a, 0x736f04bd5b378bff, 0x43ffbdf1d7cdff01, 0x05019c0b0ebcc001, 0xff01890211018e72, 0xd0188fffb9b8328b, 0xea73ff0197070e3c, 0x0ebcd89200ff3bc3, 0xff01a9550401ae12, 0x92ad5cffb9cd9c1d, 0xfb4bff01b700093c, 0x0b3c837796ffbcd6, 0x0401e4c404020413, 0xff01d1130e01d6b6, 0xe91527ff3a5202a8, 0xf6b9ff01df060dbb, 0x113c00531effbaf6, 0xff01f10b0b01f600, 0x5d138effbc2e2a91, 0x517bff01ff0a0bbd, 0x023a74707eff3c96, 0x04021a9404022800, 0xb8f493b4ff021582, 0x23070d3be40c84ff, 0x23ff3b8f23ceff02, 0x04023a060d3d32bf, 0x3bb8aea0ff02359c, 0x430d0ebb7fa7edff, 0xd3ff3bd075f0ff02, 0x070368060e3ce7e2, 0x110298940402dc00, 0x04026a9204027801, 0xbb849227ff02657d, 0x73010c3b801bbbff, 0xdfffbc065976ff02, 0x0e028a020dbd227f, 0xbcae6016ff028500, 0x93030d3b2cdeecff, 0x54ffbcf7ed9dff02, 0x0b02bc030e3c8a14, 0xff02a9011102ae0d, 0xabee8cffbb546f84, 0x9f9fff02b7100bbc, 0x043ae21e8eff3cbb, 0xff02c9000902ce99, 0x0d459cff3cec67ea, 0x6155ff02d7110bbb, 0x023a06c296ffbce7, 0x0e0304060d032400, 0xff02f1011202f602, 0xb76b48ffbb2039b6, 0xe1b7ff02ff000fbc, 0x0ebcafb569ffbd6d, 0xff0311b304031603, 0x171a2bff3ade50ac, 0x89afff031f0112bc, 0x083cf97000ffbcfd, 0x04033abf04034800, 0xb952d002ff0335b3, 0x430011bd2000f4ff, 0x39ff3c729a7eff03, 0x05035a050e3d036f, 0xbc63829aff03558c, 0x63070bbb1ec28dff, 0x0effbc4e3478ff03, 0x1103f80e0ebd8fb6, 0x0b0394010c03b400, 0xff0381c704038614, 0xcf0a37ff3a604240, 0x477dff038f000cbc, 0x043cb354e2ff3b66, 0xff03a1050b03a6bd, 0x5dbffdffbc8561ef, 0xc466ff03af080e3d, 0x043cb82dedffbbb1, 0x0d03ca0c0e03d8b2, 0xbbd86718ff03c506, 0xd3b0043c7b93cdff, 0x51ff3c3692d2ff03, 0x0d03ea00073d7692, 0x3a62c8e6ff03e506, 0xf3060dbcd9e498ff, 0x68ffbb99b37eff03, 0x0404370e0b3c519c, 0x090412130e0420cc, 0xbc890f36ff040d00, 0x1ba204bd509072ff, 0x93ffbd0e1619ff04, 0xff0429000c3b8a83, 0x0432070dbd6fc5f8, 0xaf20ffbe171755ff, 0x060d0452b904bd74, 0xcbff04480008044d, 0xbe269adcffbd10f5, 0x64c7043d8df44eff, 0xd3e1ff045f000c04, 0x0d3dac2d1eff3d09, 0xbc47f1b5ff046d07, 0xb287053d1dd774ff, 0x0a00110596010706, 0xa67e0504c6ba0405, 0x932a010498aa0404, 0x0effba3a4b81ff04, 0xff04a1b704bb8fb6, 0xd13263ffbc0dac39, 0xb3170e04b881053b, 0x66ff3cb0eb07ff04, 0xff04c1b7043a5ddd, 0xf01ff1ffbb220d67, 0xdc280e04ea070d3b, 0xcaa0ff04d7180e04, 0x0c3c86ae46ffbc7b, 0x3c5996daff04e500, 0xfc010cbc323a37ff, 0x4776ff04f7000804, 0x0bbc206e04ffbd48, 0xbd1cf9eaff05050e, 0x52280ebdb1c0b6ff, 0x2477040532010905, 0xcaa6ff051f690505, 0x0bbba6371effb9d1, 0x3b24892aff052d11, 0x44060d3ba8e1b6ff, 0x16dbff053f7a0505, 0x0bbc676bb2ffbc04, 0xbc9b9c54ff054d05, 0x76060dbd33f56dff, 0x63000d0568090605, 0x19ffbbf338d6ff05, 0xff05713e01ba1380, 0x1224aaff3b8439b2, 0x832a0e0588090bbc, 0x25ff3c43deadff05, 0xff0591b104bc1b48, 0x8301e0ffbc9c5a5b, 0xe20e060626020dbd, 0xb4010d05c2960405, 0xd87aff05af680505, 0x12bd5b2debffbb82, 0x3b366d4eff05bd02, 0xd4310e3d59d53fff, 0x0d1aff05cf000205, 0x043bbeb874ff3c6c, 0xbbd75fedff05ddae, 0x060002398d7c22ff, 0xf3610405f8730406, 0xb5ff3c711ccfff05, 0xff06011a0ebd41d0, 0x03e8b6ff3cfcd914, 0x1388040618000c3c, 0x55ff3c4fd610ff06, 0xff0621000fbc98c5, 0x04e900ff3c088945, 0x4e070d066e8605bc, 0x3bad040640af0406, 0xd6ff38554088ff06, 0xff06490605bc2850, 0x89efc8ffbc0e4f7d, 0x5b170e0660230e3b, 0x13ffbc3f3783ff06, 0xff06692a0e3c8139, 0x144cccffbd59ae2e, 0x84c20406920b0b3c, 0xcd86ff067fc10406, 0x043d178131ff3bb7, 0xbb8468fbff068dcd, 0xa4cd043d45b8b3ff, 0xd3f6ff069f2b0e06, 0x07be07c4ecffbc95, 0x3d7f99ccff06ad02, 0xc0c2043d3f502cff, 0x0200020746280e07, 0xd4b10406e2000c07, 0x41b8ff06cf240e06, 0x04bd39d5b7ffbb71, 0x3b2c3678ff06ddbd, 0xf4220ebc3cf49eff, 0xd288ff06ef190e06, 0x0ebc70c719ff3ba2, 0x3cbee7f0ff06fd23, 0x260009bc359db4ff, 0x13bd040718070d07, 0x63ff3b92ca62ff07, 0xff0721050b3c879c, 0x8beaf0ffbc92b287, 0x33000f0738170ebd, 0x00ffbdce74d0ff07, 0xff0741190ebcb225, 0x5ef8b3ff3b240b09, 0x6e0207077c2a0ebc, 0x5b290e0760000707, 0x3eff3c1f9252ff07, 0xff0769020dbd1f30, 0xa263e2ff3ce90e9a, 0x6b32ff07778a05bc, 0x04be1e9db8ffbe95, 0x050792020d07a0b9, 0x3cd1a0b3ff078d8a, 0x9b8a053dabd882ff, 0x84ffbc0b3fd7ff07, 0x0707b2090b3bcc70, 0xbc8230dcff07ad00, 0xbbc0043c07a2a9ff, 0x37ff3cdac22dff07, 0x0e0850cd043bf524, 0x0907ec0208080c25, 0xff07d9000207de00, 0x08a866ff392bade8, 0x4b8dff07e789053c, 0x0cbc6aa601ffbcf2, 0xff07f9000707fe00, 0x59571eff3bcaaa3d, 0xdcf9ff0807050bbc, 0x0ebc6b6e77ffbd5e, 0x110822260e083027, 0x3caca9e6ff081d00, 0x2b090bbd1b11d4ff, 0x1effbd96ca5aff08, 0x0e0842020dbe11c9, 0x3caaf8fbff083d2f, 0x4bcb04ba11c211ff, 0x95ffb90c06f7ff08, 0x0208980007bc1843, 0x0e086a8805087800, 0x3dd793aaff086523, 0x7301093da38c75ff, 0x52ffbc71afc3ff08, 0x09088a2b0ebd324c, 0xbdacacb6ff088500, 0x932c0ebcdf948eff, 0x84ff3cf587b7ff08, 0x0508bc0002bc9624, 0xff08a9020808ae88, 0xd2a5c0ff3d92271a, 0xf782ff08b78b053c, 0x0e3c9f6aeaffbc9d, 0xff08c9010708ce23, 0xc3ac0fffbd8c581e, 0x20b0ff08d7260ebc, 0x0ebb556d3bff3da5, 0x040abd030e0cf90d, 0x0d0978020e0a04ca, 0x0c09140009093406, 0xff09016b04090600, 0x5ffdffff3bad6875, 0x358aff090f8a04bb, 0x11bce0f66affbb68, 0xff0921010c092601, 0x170306ffbaad0d96, 0xfc12ff092f0109bc, 0x123c132b6affbb6f, 0x0b094a9405095801, 0xbb06d317ff09450a, 0x53010e3a93c3f6ff, 0x4cffbb6ceaeeff09, 0x08096a0002bc8735, 0x3cef9f78ff096500, 0x73070dbd551c10ff, 0x6bff3d95241cff09, 0x0c09c0000f3d16b8, 0x0b0992940409a000, 0xbdcdae8eff098d04, 0x9b020dbe4245daff, 0x09ffbd09ee44ff09, 0x0909b2020d3d8961, 0xbd90151bff09ad00, 0xbb9104bb947f47ff, 0x2fff3d21cb8dff09, 0x0b09e400083b7e1d, 0xff09d1b30409d60b, 0xeadbbfff3abf97fc, 0x1c14ff09df110bba, 0x0c3b3882baff3c97, 0xff09f1020b09f600, 0xc360a1ffbc42c6ee, 0x21e6ff09ff090b3a, 0x0ebc3190faff3bb7, 0x050a5001110a5502, 0x0b0a2200020a3095, 0x3c5f5cf8ff0a1d10, 0x2b0b0b3cd630a6ff, 0xd0ffbba40c1cff0a, 0x070a42060d3bfaa4, 0x3af38663ff0a3d01, 0x4b0b0b3c48612eff, 0x10ffbbcc9033ff0a, 0x3d21c230ff3a8881, 0x0a7d060d0a9d0111, 0x0a6a0b0b0a6fcc04, 0x7855ffb9ef8595ff, 0x68ff0a780b0b3bb4, 0xbb53bf40ffbcb7ac, 0x0a8acc040a8f0012, 0x7b9affbb61e148ff, 0xebff0a98010cbc34, 0xbca336b1ffbc5725, 0x0aaa030b0aafcb04, 0xc2c0ffbdeaa924ff, 0x80ff0ab89605bd54, 0x3d32fcf0ffbc9ed6, 0x0b51010c0bddc304, 0x0aed010b0b0d060d, 0x0adab5040adf0009, 0x02edffbba8355aff, 0x1cff0ae8020d3d08, 0xbbcac8e1ffbd9d81, 0x0afa02090aff030b, 0xc28aff3b9cc022ff, 0xbaff0b080009bc33, 0x3bdbe09effbb8a0d, 0x0b23060e0b31070e, 0x0997fdff0b1eb104, 0x0009bccf0f28ff3b, 0xff3c0f3ab8ff0b2c, 0x0b430111bc37da52, 0x2ccc4cff0b3ebb04, 0x070b3bbb8f88ffbb, 0xff3d85468eff0b4c, 0x0b99060dbca9bf10, 0x0b6b030b0b790007, 0x14e71aff0b660002, 0x93053c80c589ffbc, 0xffbab3ae18ff0b74, 0x0b8b0112bd81b871, 0xcc595bff0b86ba04, 0x020bbd6ffb72ffbc, 0xffbac46df0ff0b94, 0x0bbdad043c15962b, 0x0baa00110baf0002, 0x8f29ffbd64e486ff, 0x69ff0bb800113cc7, 0xbda8e5efffbd490e, 0x0bca070e0bcf0b0e, 0x0d49ff3c87f208ff, 0x56ff0bd80002bc7a, 0x3c33e217ff3da486, 0x0c2900110c6d070e, 0x0bfb0b0b0c09060e, 0xc2c77cff0bf6000c, 0x0008bd17c78bffbb, 0xff3c1f84c1ff0c04, 0x0c1bc904bcb58ec1, 0x695d3dff0c16070d, 0x0108bd3e891fffbb, 0xff3c865b51ff0c24, 0x0c4d010cbbe3359b, 0x0c3a060e0c3f0109, 0x8864ffbd5ecb59ff, 0xa3ff0c48000f3c23, 0xbbecf2c2ffbd2904, 0x0c5a00080c5f030b, 0xa564ff3bba1958ff, 0x33ff0c6800083d53, 0xbd29c4caffbcab66, 0x0c950a0e0cb5c704, 0x0c82c4040c870002, 0xb88fffbc6cd9d4ff, 0x08ff0c90c5043d0a, 0xbc5d5961ff3c208e, 0x0ca20b0b0ca7000c, 0x1458ffb9eea03bff, 0xa6ff0cb00108bc82, 0x3c7a5681ffbcd0c0, 0x0ccb060d0cd9c804, 0xabcb69ff0cc60009, 0x02093cdbd656ffbc, 0xff3d3310d8ff0cd4, 0x0ceb0111bccaa2aa, 0x925b9dff0ce69405, 0x0002bc0eab83ffb9, 0xffbda44489ff0cf4, 0x0efac8043c50cc57, 0x0d9100070e1d310e, 0x0d2d93050d4d010b, 0x0d1a000d0d1fb404, 0x8ab6ffbd860a23ff, 0xe7ff0d28b704baac, 0xbc7d7ddeffbe0449, 0x0d3ac3040d3f0111, 0xe6aeffbbf66f9aff, 0x54ff0d48000d3c82, 0x3d60e5f3ffbd56c6, 0x0d6300080d71010c, 0xd05aadff0d5eb204, 0x000f3aa59533ff3b, 0xff3cbfa63aff0d6c, 0x0d83c7043b088986, 0xcd2399ff0d7e150e, 0x8f053b503600ff3c, 0xff3d928282ff0d8c, 0x0dd9c6043c70c8c0, 0x0dab150e0db9c404, 0x705796ff0da6bd04, 0x230e3ae15229ffbc, 0xff3ac9fb0fff0db4, 0x0dcb2a0ebc3ce01b, 0x0eb1dfff0dc6020d, 0x000cbc78e539ffbd, 0xff3c6ce4b2ff0dd4, 0x0dfd190e3e20b660, 0x0dea000c0def060d, 0xef07ff3c6ca991ff, 0x8fff0df80e0e3d1f, 0xbce92dcaff3c5c96, 0x0e0a000c0e0f220e, 0xb136ffba61140aff, 0x6aff0e18000fbd1a, 0xbb84355dff3c8955, 0x0e45000c0e80c604, 0x0e32030b0e370002, 0x7edaff3dd8b058ff, 0xb8ff0e40c2043e03, 0xbc05414dffbb052e, 0x0e5b00080e690002, 0x81cc39ff0e56030b, 0xbb04bd0d517affbc, 0xff3c6d1800ff0e64, 0x0e728f053cb96b00, 0x7b00083d97db30ff, 0x4cffbb8e474bff0e, 0x050eb6320e3d1be9, 0x070e9a030b0ea890, 0x3e1f57d6ff0e9500, 0xa38f053d9c660aff, 0xfcff3d5c6728ff0e, 0xff0eb100023d3a71, 0x31bc69ff3e414e56, 0xcc330e0eda340e3e, 0x5ef0ff0ec700090e, 0x023d976640ff3d7f, 0xbbf966fbff0ed500, 0xecc704bd858e03ff, 0x3a88ff0ee78e050e, 0x0d3dbd8808ff3d92, 0x3d87c980ff0ef500, 0x1a01093e05a230ff, 0x4a2b0e0f8e010b10, 0x1c020d0f2a000c0f, 0xbc60ff0f1702070f, 0x11bb8a8540ff3d1a, 0xbc21e4fcff0f2500, 0x3c9505bc9a117fff, 0x9dceff0f37cb040f, 0x04bd9fcf64ffbcd9, 0xbd1e9edaff0f45c9, 0x6e0002bdddef12ff, 0x5b00070f602c0e0f, 0x52ff3e55b7bcff0f, 0xff0f6993053e1505, 0x09e2d6ff3daf50c0, 0x7b00070f802d0e3e, 0xebffbc164fc5ff0f, 0xff0f89cb043d0582, 0x3a58ecff3b845372, 0xb68e050fd61c0ebd, 0xa300020fa8190e0f, 0xb9ff3bfdedf9ff0f, 0xff0fb1000cbc2be5, 0xb32518ff3d3e5e3e, 0xc3140e0fc8180e3d, 0x38ff3b794844ff0f, 0xff0fd1010cbc2148, 0x18908fff3c2b6719, 0xec060d0ffaca043d, 0x0fdfff0fe7220e0f, 0x0c3b6b7026ffbcb0, 0xbcda89c5ff0ff501, 0x0c1d0e3da690d5ff, 0x11abff1007000810, 0x02bcbbb490ffbb4a, 0xbb2ed548ff101500, 0x6b000c3bbecf41ff, 0x2d70ff1027000f10, 0xcb04104b00023de1, 0x1bff10389205103d, 0x3c9e730dff3bbcb8, 0xc00092ff10460209, 0x060d3c1d7296ffba, 0x06ff10580b0b105d, 0xbbefcaefff3a2a3f, 0xf739ceff10660012, 0x9605bcf972b5ffbb, 0x2a0e1093000f10b3, 0x1bff1080190e1085, 0x3ba43168ffbd024c, 0x4308ecff108e9105, 0xcc04bdb03e2cffbd, 0x01ff10a0000210a5, 0xbbe8e320ff3c0c30, 0x4865ddff10ae010c, 0x000fbceb0c52ffbc, 0x020d10c9020910ce, 0xff3e1cfeeaff10c4, 0x912900ff3dd84320, 0xba08ff10d7030b3d, 0xfbff10e00209bc17, 0xbc48c070ffbcd62f, 0x0000000800000013, 0x00000001000003e8, 0x00000000000010c1, 0x0460160e08dc8d05, 0x012cbf0402481906, 0x005c021200a09b04, 0x002e9604003c9704, 0x5a340eff00299304, 0x000f3bac8db2ffb8, 0xffbd2db197ff0037, 0x004e0012bb4c6731, 0x27d1eeff0049070d, 0x00023cba6e65ffbc, 0xffbb51df35ff0057, 0x0080000d3c33765e, 0x006d1f040072000c, 0x9226ffbc396f25ff, 0x19ff007b1d043b2b, 0x3cd9e57eff3b507b, 0x008d4f0400920d0e, 0x861dff3cbe13f0ff, 0x6aff009b030b3dd8, 0x3b5d9800ffbdb185, 0x00c8090e00e80d0e, 0x00b50b0600ba060d, 0x9bf9ffbc206c96ff, 0x83ff00c300113a94, 0x3c82ae15ffbb0d41, 0x00d5000800da0009, 0x3a4effbbb9e1e9ff, 0xc4ff00e37d053bdb, 0xbcb4a136ffbd1021, 0x00fe0806010c070d, 0x8abcc2ff00f90209, 0x0e06bc9cebc5ff39, 0xff3cd3280dff0107, 0x011e010c3acb5f5a, 0x8c7412ff01190e0e, 0x0009bd3c99c1ff3c, 0xff3dad1c61ff0127, 0x01bc0f0ebcf07b8b, 0x0158070d0178c404, 0x01450002014ac104, 0xb5edffbca405a9ff, 0x00ff015300113a1d, 0xbc9fcf65ffba615f, 0x0165000c016a0009, 0x53f3ff3b908b1cff, 0x5dff017383053d9f, 0xbd2d8e19ffbdc604, 0x018e0e06019c030b, 0xd40ed2ff01890111, 0x040d3d16c748ff3a, 0xffbb5e0b53ff0197, 0x01ae02093bee8374, 0x4e8389ff01a9070d, 0x8905bd047102ffbb, 0xffbcec0230ff01b7, 0x0204090bbc45a344, 0x01d6010b01e4c604, 0x93affeff01d1130e, 0x1806bcadc366ffbd, 0xffbcce4231ff01df, 0x01f6c7043c7f1654, 0x8d1c71ff01f10107, 0x000c3c6d665dff3d, 0xffbcde26c8ff01ff, 0x022800093cacaa52, 0x02150e0b021a010c, 0x5721ff3c07cde7ff, 0x45ff0223c1043cf1, 0x3d36ae2eff3db9a4, 0x0235010c023ac004, 0x8f9fffbb9a9fd8ff, 0x4dff0243c3043d15, 0xbc446b7dffbd141c, 0x02dc110503680d0e, 0x027801080298000f, 0x0265030e026a7504, 0xa2c0ff3b0452a9ff, 0xd8ff02730c05bc28, 0xbba943f0ffbce49b, 0x02850207028a0505, 0x84e9ffbcb5e875ff, 0xb7ff0293000e3ca0, 0x3cea80d1ff3bd3fc, 0x02aebb0402bc040e, 0xdd6057ff02a90007, 0x0007bb9069e1ffb9, 0xffbb1158f8ff02b7, 0x02ce130b3b5c8641, 0xbd41ecff02c90007, 0x0111bc487b18ffba, 0xffbc8af0fcff02d7, 0x0324c3043ccb59e3, 0x02f624050304020b, 0x09715dff02f1030e, 0x29053bb92b43ffbc, 0xffbda62143ff02ff, 0x0316000f3b5bb45e, 0xc14d00ff0311030d, 0xae043cc73d10ff3b, 0xffbb7e9d30ff031f, 0x034826053a599f2a, 0x03350007033a000f, 0xc2deffbc03958fff, 0x55ff0343030ebce9, 0xbc318802ff3ad8e5, 0x0355020d035a2905, 0x204dff3af2ed15ff, 0xceff036334053d76, 0x3c0bd30bffbbbe20, 0x03b4b00403e6c204, 0x038696040394000b, 0x0c92a4ff03810007, 0x0207bc11fd4bff3d, 0xffbc5c7b41ff038f, 0x03a60305bbd23215, 0x4269c5ff03a1070b, 0x0f0ebc8d198aff3c, 0xff3d3ab055ff03af, 0x03d800023d9c759f, 0x03c5010703ca1905, 0xc855ff3d4ee572ff, 0x79ff03d3010b3d99, 0x3dc8595dff3db88c, 0x677760ff03e1020d, 0x00073d3486f8ffbc, 0xc304040ec604041c, 0xe0ff03fb010b0400, 0x3d838f3eff3d1aef, 0xda1bc8ff0409010b, 0xc8043d08a07dff3c, 0xffbc0f51a0ff0417, 0x04400107bc1b2a80, 0x042dc3040432010b, 0x054bff3ba90df0ff, 0x30ff043bc8043bdd, 0xbbca3d55ffbc54bb, 0x044d110e0452010b, 0x0ea3ffbc907cb4ff, 0xc0ff045bc804bc13, 0xbc38d26bffbb5f49, 0x0584c60406a00207, 0x04b4530504f85605, 0x048652050494ab04, 0xdfdc1eff04813d01, 0x0208bb140e23ffb9, 0xff3bc36490ff048f, 0x04a61b0eba3a0781, 0x02490eff04a11a0e, 0xac04be1f3d6cff3a, 0xffbabdbe28ff04af, 0x04d85405ba3d0f44, 0x04c5350104ca110b, 0x7d17ff3a210c7eff, 0xe4ff04d30008bccd, 0xbdae1537ffbce2da, 0x04e5370104eaad04, 0x63bbffba9ca148ff, 0xa2ff04f35505bc7c, 0xbcbfccf1ff3c8f6e, 0x0520bf040540190e, 0x050d010c0512020b, 0x5d6bffbbcda4f6ff, 0xe1ff051b0007bc83, 0x3c2687d0ff3b1925, 0x052d170e0532180e, 0x5322ffbca9e878ff, 0x07ff053bc004bdbf, 0x3cb7053effbd2280, 0x05561c0e05641e0e, 0xd51c82ff05510006, 0x0a0bbd2cab3fff3b, 0xffbc8b27ecff055f, 0x0576140bbd2e0f1e, 0x233497ff0571020b, 0x070d3b05940fffbc, 0xff3c059373ff057f, 0x06140012bd7b16ed, 0x05b01f0e05d00011, 0x059dc80405a2180e, 0xec8dff3c3485d6ff, 0xfaff05ab000cbcfb, 0x3d4f0c29ff3b90e0, 0x05bd000205c2230e, 0xaa36ffbb2dd3d1ff, 0x47ff05cb250e3cb5, 0xbbc0729fffbd92b0, 0x05e6000705f4ca04, 0x94e44eff05e10008, 0x010c3d2055ebffbc, 0xff3da56161ff05ef, 0x0606000cbb9a359a, 0x4eb3e0ff06018a05, 0x2b0ebd800912ff3d, 0xff3e038bfaff060f, 0x065c00083da36bdd, 0x062e0009063c060d, 0x0304d2ff06290007, 0xc804bb16910affbc, 0xffbc83a5eeff0637, 0x064ec904bce90212, 0x582c86ff0649230e, 0x7f053bb76115ffbd, 0xffbe32d31fff0657, 0x0680060dbda138cd, 0x066d280e06720208, 0x4ea5ff3c30b51aff, 0xb9ff067b000cba83, 0xbc4e493effbaaf6f, 0x068d71050692010c, 0xcfd2ff3d688250ff, 0xc6ff069b570538e9, 0xbd403624ff3ced88, 0x0734600507c00006, 0x06d0b30406f0ba04, 0x06bd670406c2a704, 0xa555ffbb1b9b18ff, 0xf7ff06cb47053baa, 0x3b31b36eff3cf15e, 0x06dd070d06e20011, 0x0069ffbc5c31a2ff, 0xf9ff06eb2a0e3c8f, 0x3c1ad001ff3d0e5f, 0x0706bc040714be04, 0xf57858ff07012d0e, 0xbd043c65f7c4ffbc, 0xff3d190a3dff070f, 0x0726200ebc3efefa, 0x5a5680ff07211c0e, 0xc004bd913037ff3c, 0xff3d4beb1eff072f, 0x077c1d0e3ca80bfb, 0x074e0b0b075c190e, 0xf83bf7ff0749000c, 0x180e3c20df6cffba, 0xffbcab9a91ff0757, 0x076e000c3c04391b, 0xaaa2a4ff0769090b, 0x1c0ebc8c638aff3a, 0xff3c698465ff0777, 0x07a00108bd515386, 0x078d6c050792000c, 0x81f7ff3ad9662fff, 0xaaff079b0008bb38, 0x3c81852cff3c2564, 0x07adc20407b2060d, 0xe3c2ffbadd3b8bff, 0xc4ff07bb0012bc6f, 0x3cee9263ffbbbfd7, 0x080c2a0e08500206, 0x07de010607ec000c, 0x490d0dff07d9000f, 0xa504bc825436ffbd, 0xffbc3770f3ff07e7, 0x07fe7204bd215a02, 0xef794fff07f90c05, 0x0106bcd7318fffbb, 0xffbd92d7a3ff0807, 0x08300002bd38969d, 0x081d360e08223f01, 0xfa4dffbb99b07aff, 0x3cff082b0106bcac, 0xbd094592ffbd990e, 0x083d300e0842ab04, 0xac12ffbc13becaff, 0xa9ff084b01063c16, 0x3d322dddffbd7f69, 0x087800080898c004, 0x08650306086a270e, 0xa0a2ffbc75e25fff, 0x3fff08730c063b49, 0xbcc0353fffbbe1f1, 0x0885190e088a1106, 0x05f9ffbc45ebd1ff, 0xd8ff089388043c0c, 0xbc6b24bbff3d4a99, 0x08aec50408bc0111, 0xff0bb3ff08a9c104, 0xc604bd991146ffbc, 0xff3d471214ff08b7, 0x08ce0705bd1d1ea9, 0x0f802dff08c9000f, 0xc3043d6d023cff3e, 0xffbd0a86cfff08d7, 0x0d410d0e3c580af6, 0x09e965040b05030e, 0x09345e0409786104, 0x0906000c09144b04, 0x03435aff09018f05, 0x010dbc856e3fff3c, 0xffbd11c03eff090f, 0x0926000fbdb30690, 0x4cc6deff0921030b, 0x030b3ce4665dff3b, 0xff38ffe2a0ff092f, 0x0958020dbbf2960e, 0x09450002094a0007, 0xadbdffbd25fe07ff, 0x25ff09539005bd81, 0xbd8ed1e7ffbdcbf5, 0x09650112096a5f04, 0x82afffbc3e4d60ff, 0x25ff0973000cbe14, 0xbba73040ff3da76a, 0x09a0930509b7000e, 0x098d001109920107, 0x05d3ff3bb4f38aff, 0xddff099b8f05b955, 0xbc975453ffbce0df, 0x09ad630409b2030b, 0x97deff3bc0562bff, 0x0f3d2467a5ff3c32, 0x0409cd8f0509d200, 0x3db0153dff09c863, 0xfd24ff3d00b47bff, 0x640409e4000c3e5b, 0xff3bcb9d3cff09df, 0x4c3e24ff3c8cb74d, 0x35060d0a790002bc, 0x079e040a15a0040a, 0x5720ff0a028b040a, 0x04bc576bcdffbb4f, 0x3db18724ff0a109f, 0x27a7043b2a02d7ff, 0x53e7ff0a22a6040a, 0x11bd7dc992ffbcab, 0xbb80a274ff0a3001, 0x5992053d047e0bff, 0x468f050a4b00110a, 0xe7ffbc1fb83cff0a, 0xff0a54010eba7134, 0xb31169ff3b371926, 0x66a4040a6b000f3c, 0x66ff3cb2bb21ff0a, 0xff0a74010cbc6067, 0x6a9538ffbb7b79b5, 0xa194050ac19505bc, 0x8e000e0a9300080a, 0xbbffba9c34d0ff0a, 0xff0a9c01073b5a3b, 0xcf1380ffbb839578, 0xae000c0ab3060d3a, 0x5bffba664517ff0a, 0xff0abc0112bc70e3, 0x379949ffbaadd03a, 0xd791040ae5010b3d, 0x2026ff0ad2000c0a, 0x0dbdd76d53ffbc95, 0xbcc2a6b1ff0ae002, 0xf70012bb7c908cff, 0x98acff0af2010c0a, 0x04bc91dceeffbb8e, 0xbb9ebf1dff0b00b9, 0x25040e3b814db9ff, 0x55000f0b99ad040c, 0x27000d0b35030b0b, 0xc9a0ff0b2275040b, 0x053aeab692ff3d14, 0x3cf87107ff0b3092, 0x47a0043d752a2fff, 0x0fa8ff0b4275040b, 0x053d5bc72bff3dda, 0x3dc64acbff0b5095, 0x79a0043e0b64f0ff, 0x6695040b6b9a040b, 0x58ffb6be169fff0b, 0xff0b740009bd612a, 0x0f9406ff3c923efd, 0x86000c0b8ba304bc, 0x13ffbd398dc5ff0b, 0xff0b94a404bde8bd, 0x328eceffbca6ec01, 0xc1000c0be10009bd, 0xaeb1040bb300080b, 0xe1ff3c815021ff0b, 0xff0bbc040bbbcee9, 0x301303ff3c1bdaf9, 0xceb1040bd30b0b3d, 0xfbff3d5efef8ff0b, 0xff0bdc00073c78e4, 0x7695beff3dbab960, 0xf7ae040c0501123d, 0x6743ff0bf28e050b, 0x11bd9451c2ffbdb8, 0x3c40cea1ff0c0000, 0x17020dbc03ffffff, 0xb720ff0c1202090c, 0x093c94bc60ffbd00, 0x3da4ca58ff0c2001, 0xb58d043cbffba0ff, 0x5173040c71070e0c, 0x3e70040c438f050c, 0x28ff3c1b9f8fff0c, 0xff0c4c030bbe2f4c, 0x0f0a85ffbda79e7c, 0x5e000d0c63040dbe, 0x43ff3d74908dff0c, 0xff0c6c000c3cce10, 0x80e9e7ff3b9c6656, 0x87000c0c95080e3c, 0x6046ff0c82000d0c, 0x0bbc1e7c52ff3d09, 0xbd291d01ff0c9005, 0xa7000cb9e22c31ff, 0x474eff0ca2000b0c, 0x04bbecc429ff3ccd, 0xbdbf639cff0cb05e, 0xfd020d3d2c6621ff, 0xcf96040cdd070e0c, 0x6c08ff0cca070b0c, 0x04bc8220aeff3cfe, 0xbdc3b5e7ff0cd897, 0xef000dbcc693b2ff, 0xe4b5ff0cea01110c, 0x12bdba6c74ffbb6d, 0xbdcfee88ff0cf801, 0x2101113be733b0ff, 0x0e0a0e0d1300080d, 0x3fff3a545f46ff0d, 0xff0d1ccb04bbbb4a, 0x897568ffbb2df8d6, 0x2ea3040d330009bc, 0xb6ff3cbd20ceff0d, 0xff0d3c080e3be837, 0xcab00cff3c46fdb3, 0xde88040ebb000dbc, 0x718f050dac130e0d, 0x5e030b0d63000c0d, 0xd0ffbbf64860ff0d, 0xff0d6c0002bc94f4, 0x61c300ffba288000, 0x8775040d9500073c, 0xac7eff0d82030b0d, 0x0bbd4428f0ffbd4d, 0xbd24e64aff0d9003, 0xa79205bd26fe98ff, 0xa088ff0da2030b0d, 0xffbc2306c0ffbc76, 0x0db56f04bb83f1c0, 0xd0030bbd96c4fcff, 0x88b0ff0dc200020d, 0x37ff0dcb0107bdee, 0xbe1c8412ffbe0d28, 0xe00784ff0dd98f05, 0x0109bde9aaa8ffbd, 0x1d0e0e2a250e0e6e, 0x060b0dfc01110e0a, 0xff3cad4e62ff0df7, 0x0e05000cbcacf359, 0x3906ffbd4424e2ff, 0x030b0e1c230ebab4, 0xff3d3b7929ff0e17, 0x0e25070b3c4ed88b, 0xb94bffbba05703ff, 0xb5040e4e2c0e3d0b, 0x16ff0e3b00020e40, 0xbd4eb610ff3dd02a, 0xaf6694ff0e490009, 0xc804bc617e2cffbd, 0x80ff0e5b8f050e60, 0xbc5c5bd0ff3c8ed7, 0x33c154ff0e690107, 0xc2043e1c79e0ff3e, 0xa7040e8d030b0ead, 0x043b44af00ff0e7f, 0xbdd51a3cff0e88ba, 0x9f070bbd772515ff, 0x19d0ff0e9ac0040e, 0x0e3cfa5e80ff3c88, 0xbd758dd0ff0ea817, 0xb6280ebddbb080ff, 0xc0ff3c8dd600ff0e, 0x040fa5020d3d2fc7, 0x0e0ef0130e0f199c, 0x0b0edd8f050eeb12, 0x3da7b85cff0ed803, 0xe690053d333a08ff, 0x48ffbbf8c980ff0e, 0xbd6d9713ffbd8e72, 0x0efd91040f0b030b, 0x0690053b403f80ff, 0x60ff3d88bdf3ff0f, 0xff0f1400023d29c6, 0xb50db0ff3de7cbe4, 0x412d0e0f612f0e3d, 0x2e2b0e0f3300090f, 0x1eff3c183fb7ff0f, 0xff0f3c1f0ebda416, 0xf6d8e6ff3c846ebf, 0x4e010b0f530002bc, 0x9aff3e3bc5e4ff0f, 0xff0f5cca0439f671, 0x4dd46dff3e245423, 0x77cb040f85310e3d, 0x2d9eff0f72000c0f, 0x08bcc1c031ff3e2b, 0xbdb15224ff0f8001, 0x97330ebca5e390ff, 0xe114ff0f92cb040f, 0x0c3bf1dee2ff3dcd, 0x3dceaae8ff0fa000, 0x35040dbd13dcd6ff, 0xd1b5040ff1c20410, 0xbe0e0e0fc3a7040f, 0xf0ffbd73b300ff0f, 0xff0fcc0e0ebd4e9f, 0x757650ffbea6d91c, 0xde00090fe3b804be, 0x72ff3e1f66aaff0f, 0xff0fec220e3e807a, 0x4e7537ffbdccb4f8, 0x07000c1015030bbd, 0xf2c0ff1002000710, 0x0e3d05456bff3c0e, 0x3a7a1e00ff10101f, 0x27070b3d54ecf6ff, 0x9be4ff1022950510, 0x053dee4bb4ff3dd0, 0x3d74a4d0ff103094, 0x7d030b3d95b8fcff, 0x4fbf04105d2b0e10, 0x62feff104abe0410, 0x0bbc22a4e5ffba82, 0xbc5e2e87ff105802, 0x6f2c0ebba5d09dff, 0x30a0ff106a060d10, 0x0e3d6db6b8ff3e46, 0x3bac4fa9ff107835, 0xa1040bbcf14555ff, 0x8eb8041093000f10, 0x74ff3d246d32ff10, 0xff109c9005bdabf7, 0x44cc08ff3be5de0e, 0xae950510b300093d, 0xf1ff3b41a1a2ff10, 0xff10bc110ebb30a3, 0x211d9eff3b16ddf6, 0x00000800000013bc, 0x000001000003e800, 0x0000000000116300, 0x7b140e08f78d0500, 0x2c090502488b0504, 0x5c110600a0720401, 0x2e5204003c6f0400, 0x9a0eff0029021100, 0x0f3bc244afffbaf0, 0x3c9a0d12ff003700, 0x4e0e06bba41487ff, 0x407bff0049060d00, 0x0bbd175d75ff3c62, 0x3cd858f7ff005703, 0x8063043db301bcff, 0x6d17060072010800, 0x80ffbbb897b7ff00, 0xff007b1206bb11a7, 0x0d9b42ff3c036c15, 0x8d020d0092030ebb, 0xa2ff3b21bf61ff00, 0xff009b6d04bc3c4e, 0x695202ffbc97e953, 0xc8000f00e81606bd, 0xb5030b00ba730400, 0x9effbd3c17c2ff00, 0xff00c399043cbf60, 0x2fe512ff3d248afc, 0xd5060500da9d043c, 0x72ffba70c4b0ff00, 0xff00e31306bcd98b, 0x4f73feff3c9d41a4, 0xfe010e010c97043b, 0xac27ff00f9020d00, 0x0cbc537b59ffba8b, 0xbc2394d7ff010700, 0x1e0107bd057bf8ff, 0x90c2ff0119010801, 0x0f38be4ae5ffbc82, 0x3c5c93faff012700, 0xbcc304baf0c08fff, 0x5883040178bf0401, 0x452501014a400401, 0x06ffbaa79392ff01, 0xff0153010cb9c3ec, 0x1d71aeff39f40bc4, 0x65120e016a00063b, 0x05ff3b6d8c1aff01, 0xff01730606bcaae7, 0xe3bba3ffbcf6fc8c, 0x8e8a05019c0f0e39, 0x3055ff0189000201, 0x0bba9e573fffbc91, 0xbd17b795ff019707, 0xae08063c93ff7dff, 0x8660ff01a9010901, 0x06bccfdce3ff3d21, 0xbd5ba56bff01b719, 0x04c5043d262374ff, 0xd6390501e4120602, 0x3dd8ff01d1070e01, 0x02bd920723ffbd2b, 0xbd0056e8ff01df00, 0xf6020dbbe3a5aeff, 0x12e3ff01f1070e01, 0x0e3b3ae42fffbcd2, 0x3a8d7bbbff01ff03, 0x286f053c12b708ff, 0x15050e021a140602, 0xc0ffbc0b5d0dff02, 0xff02230c0e3c4b26, 0x015d84ffba1d9fd3, 0x35070e023ac604bc, 0xe3ffbbea7d78ff02, 0xff0243cb04bcdae9, 0x932e8affbb0884cf, 0xdc010c0368030e3c, 0x7800070298000e02, 0x650008026a020d02, 0x44ffbd0b34fcff02, 0xff0273060d3c690b, 0x342957ffbb9ed032, 0x855504028a001239, 0x8aff3cc361adff02, 0xff02936b04bb18bc, 0xa43f31ffbb36ce95, 0xae8b0402bc000fbc, 0x2cddff02a9000902, 0x043b4a7126ff3cac, 0xbd6d4888ff02b797, 0xce070d3c270eb8ff, 0xd060ff02c9020e02, 0x0e3ab6ac2dffbae2, 0xbd09ad89ff02d701, 0x24060dbd79c80bff, 0xf6b3040304010903, 0x1da7ff02f1000802, 0x08bd2b24e7ffbcba, 0x3cb925ebff02ff01, 0x169b04bb7526e5ff, 0xf700ff0311970403, 0x0b3cb339e8ffbcb3, 0x3c586c7eff031f0b, 0x480008bd2a755fff, 0x350012033a010e03, 0x6affbc04b835ff03, 0xff0343b3043c2c4d, 0xbc89a6ff3cfe14ca, 0x55000e035aa304bb, 0xb5ffbd1a0303ff03, 0xff0363110bbbc25e, 0xb4b06cffbb29b0f1, 0xb4000f03f8c204bc, 0x860a0e0394050d03, 0xa266ff03818c0503, 0x0dbcd3e661ffb9b3, 0x3c2c6fceff038f02, 0xa69904bd95e2f0ff, 0x5924ff03a10d0e03, 0x083e0e3c46ff3cf8, 0x39988c46ff03af01, 0xd8bb043d0cd876ff, 0xc5070e03ca010c03, 0x14ff3ba82aefff03, 0xff03d30b0ebb243d, 0x74be4cffbc970f05, 0xe5bd0403ea00113c, 0x55ff3cae004aff03, 0xff03f3bd04bba9b5, 0xa0ac7bffbbab3f1e, 0x20080e04400a0e3c, 0x0dc7040412001204, 0xf3ff396d8d9cff04, 0xff041b0009bc8bd6, 0xbcdaefff3c8f6324, 0x2d00110432cb04bc, 0x9cff3d25715bff04, 0xff043b0b0bbc9499, 0xcf9114ff3d5fb120, 0x560009045b0b0e3d, 0xc2c8ff0451000c04, 0xffbd43ccfeffbcea, 0x046d120e3d10bef7, 0x592011ff04680111, 0x070d3c5290dbffbb, 0xffbd5ae47dff0476, 0x06bb87053c9f4cb6, 0x05138605059fcc04, 0x04af970404cfbe04, 0x049c021204a11306, 0x75d6ffba043882ff, 0x7eff04aa02053d2b, 0x3b8bb023ffbcba66, 0x04bc000f04c1130b, 0x3bd8ff3bf93d02ff, 0x2bff04ca010cbb2b, 0x3beebd1dff3ad284, 0x04e5001204f30208, 0xf6244dff04e05b05, 0x220e3bb1488fff3c, 0xffbbe9e4f7ff04ee, 0x0505080b3b45a83d, 0x2679cfff0500000f, 0xc0043a99cefbffbd, 0xff3c52877eff050e, 0x055bbe04bbce30e2, 0x052dbc04053b0112, 0x027374ff0528b904, 0x060dbcb3bd3eff3c, 0xff3d89c6b1ff0536, 0x054d0007bba5f3de, 0x59083eff0548b004, 0x000fbcbf6910ff3c, 0xff3c542407ff0556, 0x057f010cbc247404, 0x056cc40405710012, 0x52daffbca9c8c1ff, 0xc2ff057a0b0b3c17, 0xbc8a7f0effbb829e, 0x058c230e05910011, 0x34b1ff3bc88fdaff, 0x63ff059a0007bd47, 0xbc8366feffbd4cfc, 0x05eb0b0b062f2d0e, 0x05bd010805cb0112, 0xf888eeff05b80107, 0x250e3caa50dcffbc, 0xffbc697068ff05c6, 0x05dd2a0e3b851c4a, 0xaffe74ff05d80111, 0x2b0e3cac88f2ffbc, 0xffbe0c631bff05e6, 0x060f00073c8b7a50, 0x05fc170e06011f0e, 0x21a0ffbd05309bff, 0xfbff060a00123e15, 0x3bf46af9ffbcf73b, 0x061c180e06212a0e, 0xcad5ffbd1b9c5bff, 0x81ff062a2c0e3c94, 0x3db359f4ff3d2f7f, 0x0657020706776805, 0x0644010c06490b0b, 0xe41fffba8a5cd2ff, 0x9aff06520107bd0a, 0x3d29c5a0ffbc2ac9, 0x06640b0b0669010c, 0xe586ff3cd3fc2dff, 0xe7ff067201083dbd, 0x3d56dc15ff3bc007, 0x068d300e069bcd04, 0x443a48ff0688060d, 0x6e05be191eddffbd, 0xffbd949621ff0696, 0x06ad0107bca26479, 0xde28eaff06a8060d, 0x6e05bcfde1b5ffbb, 0xffbd2c25cdff06b6, 0x07dbc2043c0a27e4, 0x070b020b074f290e, 0x06dd020806eb230e, 0x1f2adaff06d88c05, 0x000f3c63e798ffbc, 0xff3d7d8187ff06e6, 0x06fd0002bb2d6983, 0xd19cdfff06f8010b, 0x0007bd2cb6b5ff3c, 0xffbdd78a50ff0706, 0x072f0109bd0d4e4f, 0x071c070d0721190e, 0x38c6ff3bced169ff, 0xe3ff072a220ebd22, 0x3c13f13affbb908a, 0x073c000f0741170e, 0x3f9effbdb919edff, 0x99ff074ab404bc1e, 0xbc6fc24dff3cabda, 0x0777000707972a0e, 0x0764000f0769070b, 0x7058ffbd8ca003ff, 0xc8ff0772020d3a48, 0xbcb4ae7dff3d1631, 0x0784020d07890207, 0x62e8ff3cd2a149ff, 0x64ff07928a05bca1, 0xbe0fc9c4ffbe86fe, 0x07ad040d07bbb804, 0xf19ebfff07a88a05, 0x000c3dae68dcff3c, 0xffbaaf17f0ff07b6, 0x07cd0a0bbd07628e, 0x5dcda8ff07c80007, 0x89053bf01850ffbc, 0xff3ce20213ff07d6, 0x086bcd043bc535b3, 0x08072a0e08270002, 0x07f48a0507f9230e, 0x3383ffbc0be764ff, 0xf1ff080288053ae9, 0xbc8d3c2dffbd4585, 0x081400070819010c, 0x6df7ff3a0956dbff, 0x7dff0822310e3c5f, 0x3d2fbad4ffbcedad, 0x083d090b084b8c05, 0x6b9a39ff08380207, 0x010c3c2e185cffbc, 0xff3ba2cb05ff0846, 0x085d000f3d02171a, 0x006c1dff0858070b, 0x00073cacf1e3ffbc, 0xffbc372df7ff0866, 0x08b30007bb48a663, 0x0885880508930002, 0xc28ff4ff08800011, 0x010c3d9495edff3d, 0xffbc16db3eff088e, 0x08a5260ebcc2116e, 0xdb733dff08a08b05, 0x000fbcfd23cdffbd, 0xffbd800e38ff08ae, 0x08d70002bc4d1014, 0x08c4000c08c98805, 0x02dcff3c84ccdeff, 0x03ff08d22b0e3d84, 0xbc2e5d84ff3c9d26, 0x08e40b0b08e98a05, 0x0b62ffbbd59652ff, 0xb6ff08f28b053da2, 0xbaf30ef9ffbceeb1, 0x0afc050e0cf00d0e, 0x098a030e09e07f04, 0x092f010709468e05, 0x091c040b0921090b, 0xd797ffbbd97fd1ff, 0xa8ff092a01113c40, 0xbde11a42ffbc25be, 0x093c000f0941000c, 0xe458ffbd3eb4bbff, 0x04be8ee126ff3ab6, 0x04095c4b04096a65, 0x3a01419eff095743, 0x650111bd4536f6ff, 0x92ff39308902ff09, 0x0d097c000f3c0845, 0x3b80a3b7ff097704, 0x85070dbcf96512ff, 0xb4ffba93671eff09, 0x0709c0030b3c5e63, 0x0f09a4750409b201, 0x3d4bf8dcff099f00, 0xad00073ca77abcff, 0x00ff3ca506c0ff09, 0xff09bb8f053bdaa8, 0xc04a80ffbac6f800, 0xcd8f0509d27504bc, 0x94ff3da26e00ff09, 0xff09db00073de614, 0x5ce390ff3d8e7010, 0x2c81040a70000f3d, 0xfe00090a0c90050a, 0xfba5ff09f9010e09, 0x0b3cdff8c0ff3e0a, 0x3c2dff60ff0a0705, 0x1e020d3dc07900ff, 0xa55cff0a1900070a, 0x0e3cbe8320ff3d90, 0x3dbc911eff0a2700, 0x5000093e44c327ff, 0x3d000c0a42010e0a, 0x26ffbb3ea724ff0a, 0xff0a4b9104bd964b, 0x128b56ff3cf15b43, 0x5d000e0a620209bc, 0x84ffbc981b05ff0a, 0xff0a6b010e3c8465, 0xd9276fff3c404e0e, 0x98040e0ab8070bbc, 0x8500080a8a020e0a, 0x42ffbb8b0017ff0a, 0xff0a93010cbc354e, 0x6d0c8fffb8aa9f9e, 0xa597040aaa99043c, 0x2cffbb62b834ff0a, 0xff0ab3060d3d15ab, 0x03b566ffbc88f7f3, 0xce060d0adc9305bd, 0x28c0ff0ac900090a, 0x053b883355ffbba0, 0x3bb73e03ff0ad78f, 0xee010c3aebfef7ff, 0x1a58ff0ae900070a, 0x043b41429dffbb28, 0xbd271e35ff0af7b7, 0xd4000dbbe6076aff, 0x4c0a0e0b6c95050b, 0x1e000c0b2c0a0b0b, 0xf8feff0b1978040b, 0x0e3d64ff46ff3c0f, 0x3d777f95ff0b2707, 0x3e0107bcd5d1d6ff, 0x7b40ff0b3993050b, 0x04bd9fe801ff39b8, 0xbe09cd0dff0b4790, 0x555e04bcaecb60ff, 0x8f05bdac400cff0b, 0x023dfe0b78ff0b5e, 0x3e0a9ab4ff0b6700, 0x9901113e07554cff, 0x86030b0b9401070b, 0x53cfff0b8100070b, 0x053ced420cff3b43, 0xbcb6b97aff0b8f96, 0x36b7ff3c8928a0ff, 0x6f040bb400023d13, 0x04bda4f76aff0ba6, 0x3cc63dcbff0baf96, 0xc60007bdb880a8ff, 0x703cff0bc1030b0b, 0x0bbe4f9342ffbe33, 0xbdcf4739ff0bcf03, 0x64060ebe07642eff, 0x0000120c20a3040c, 0xed0a0b0bf2000c0c, 0xecffbca43ffbff0b, 0xff0bfb9b04bd51c2, 0x211206ffbd61a79c, 0x0d6f040c127304bd, 0x8cffbdba5838ff0c, 0xff0c1b0b0bbe1dc4, 0x22c03aff3d411543, 0x36cb040c4401093e, 0xfb11ff0c31b3040c, 0x07bd59fb96ffbc82, 0xbca909a8ff0c3f01, 0x568e05bb3380f8ff, 0x4c09ff0c51c3040c, 0x123e007206ff3d2c, 0x3dbb78d9ff0c5f00, 0xac000c3bd150a8ff, 0x7e01120c8c080e0c, 0x131cff0c79030b0c, 0x0b3aa9d745ffbb7b, 0x3bb44280ff0c870b, 0x9e0a0e3ce73d61ff, 0xf2cfff0c99b0040c, 0x0ebb3d2860ff3c85, 0xbc839314ff0ca70b, 0xd0cb04bacbb0d8ff, 0xbdb3040cc2020d0c, 0x30ffbc69e596ff0c, 0xff0ccbc0043c1a06, 0xa922f0ff3ba595f6, 0xdd92050ce20009ba, 0x89ff39e2e8d3ff0c, 0xff0ceb0002bcfd80, 0x84cbddffbc9958f9, 0x14010b0f30c8043c, 0x44250e0d8800090e, 0x16b5040d24b7040d, 0x1640ff0d11020d0d, 0x02bbf5a341ff3c1d, 0xbe46a95bff0d1f00, 0x3601123c83a390ff, 0xaad5ff0d31c5040d, 0x0e3ca3a41cffbc08, 0x3d603b71ff0d3f19, 0x682a0e3c5d9dc9ff, 0x55020d0d5a00020d, 0x2dffbce65f77ff0d, 0xff0d6300073c6528, 0xa49152ffbdb9ee16, 0x7501110d7abb04bc, 0xd2ffbb00ddd0ff0d, 0xff0d83c0043d88a3, 0x67240cffbd173bdb, 0xb0bb040dd08f053a, 0x9da6040da2b1040d, 0x2dff3c646b04ff0d, 0xff0dab0111bd4b58, 0xda2f58ffbb782ea2, 0xbd060d0dc201123d, 0xb1ff3bcacf9aff0d, 0xff0dcbbf04bc9702, 0x10143fffbd564c5e, 0xe690050df40112bd, 0x6f5aff0de100020d, 0x04bc119bc6ffbcd1, 0xbb9e1230ff0defc2, 0x060e0e3c55539fff, 0x9dabff0e01b1040e, 0x0d3d5014c6ffbb6b, 0xbd47098fff0e0f02, 0xa40111bde95b6aff, 0x40140b0e60060d0e, 0x2d010c0e32c6040e, 0x92ffbb2189efff0e, 0xff0e3b0e0b3c1cdc, 0xcc14f9ff3b9e208b, 0x4d010c0e52170e3d, 0xa7ffbbcc79c9ff0e, 0xff0e5b0002bd5775, 0x2d5e22ffbbad371d, 0x76070d0e84000c3c, 0xe3b7ff0e7100090e, 0x0ebba6c4d2ff3bbb, 0xbb75f690ff0e7f14, 0x960011bce7a007ff, 0xd79cff0e91030b0e, 0x0e3c91363affbc8a, 0x3d47e72aff0e9f1f, 0xec030bbc78998dff, 0xbe0f0e0ecc170e0e, 0x4072ff0eb902090e, 0x09bc19887dff3d0c, 0xba9c2529ff0ec700, 0xde190ebd788d8aff, 0x3238ff0ed901090e, 0x0dbc90e92bff3d60, 0x3bb23102ff0ee706, 0x10040b3e0de373ff, 0xfdb5040f02b8040f, 0x82ff3a93bd49ff0e, 0xff0f0b000d3d44d8, 0xcaec6fffbc8d5b9e, 0x1d090b0f22000cbd, 0x91ff3d0c342eff0f, 0xff0f2b9105bc9420, 0x8eaf25ffba4013d4, 0xbb020d1047ca043c, 0x6000090f80220e0f, 0x4d00080f5296050f, 0x74ff3ca9f599ff0f, 0xff0f5b00073d1acc, 0x665d40ff3d8b8e9f, 0x6d190e0f72c9043c, 0xd0ffbd4a278fff0f, 0xff0f7b190ebe2663, 0x9ef072ff3ce61327, 0x962b0e0fa42f0e3e, 0xf81aff0f9100080f, 0x053c5dbed3ffbcba, 0x3dc9bd60ff0f9f93, 0xb600073e5d23b8ff, 0x09e1ff0fb100090f, 0xffbce48e68ffbda6, 0x1003010cbc7f7aa0, 0x0fd590050fe31c0e, 0x09b50eff0fd08f05, 0x170ebcfe871affbb, 0xffbb6248e4ff0fde, 0x0ff5060d3c08dee5, 0xb888c9ff0ff0220e, 0x1f0e3b936afdffbc, 0xff3b1b0814ff0ffe, 0x1027c904bcf41174, 0x1014190e1019220e, 0xed62ffbc08de8bff, 0xc0ff10229005bd59, 0xbcf0a7f5ff3e5cbd, 0x1034001210398e05, 0x7a56ffbdb94162ff, 0xddff10429205bc70, 0x3d40c744ff3c9a4b, 0x10931f0e10d7cd04, 0x106500121073cb04, 0x859857ff1060170e, 0x000c3c89c66bff3b, 0xffbbb376ddff106e, 0x10851c0ebcdd2d01, 0xe722e8ff10800a0b, 0x00123bfa87b1ffbc, 0xff3b60a422ff108e, 0x10b7050bbc91f197, 0x10a4010710a9230e, 0x24e4ffbd6a5095ff, 0x8aff10b2250e3c5c, 0x3ae3d679ff3db599, 0x10c4000210c9250e, 0x8888ffbba83259ff, 0xa8ff10d2cb043cde, 0xbc1f3a2eff3ca262, 0x10ff8f05111f9005, 0x10ec8e0510f1320e, 0xf5cfffba9f84dfff, 0xa5ff10fa000c3d1a, 0xbce35f93ff39e70e, 0x110c00021111000c, 0x9919ff3b85b1d6ff, 0xc5ff111a0107bc18, 0xbad60e4cffbd436e, 0x113501111143280e, 0x194d5cff1130230e, 0x000f3c97e271ffbb, 0xff3da9f9daff113e, 0x1155000c3c6e9ae9, 0xab6044ff11509405, 0x350ebbb8900cff3b, 0xffbc944ae9ff115e, 0x00000013bd7816c9, 0x000003e800000008, 0x0000119900000001, 0x08ca8d0500000000, 0x02481906044e160e, 0x00a0070e012c080e, 0x003c6505005c020e, 0x00298904002e1606, 0x8929ffbaf39712ff, 0xf4ff00378204bb4d, 0x396b83aeffbc05fc, 0x0049000d004e6b04, 0xd8b9ffbcd58d14ff, 0x33ff00570007bb44, 0xbc4b5a19ffbb30d9, 0x00720d060080b204, 0x9dd24dff006d6505, 0x0a053c0af203ff3a, 0xffbaf5fe3cff007b, 0x0092010c3c1d97c7, 0x180313ff008d000c, 0x00123a24745bffbb, 0xff3b433020ff009b, 0x00e8070dbc013639, 0x00ba610400c80009, 0x9bdc37ff00b54904, 0xc104bc4f0379ffbb, 0xffbced0201ff00c3, 0x00da8e043b4ce569, 0xc99747ff00d5000f, 0x02093a51c644ff3c, 0xff3ce109aeff00e3, 0x010c7a043b8b1cab, 0x00f91f0100fe3301, 0xa376ffba23acefff, 0xa0ff010701093b8b, 0xbcac1da4ff3c24e1, 0x01190c0b011e0109, 0xa6c0ff3cbc0607ff, 0x92ff012790043d62, 0xbd0e14b5ffbc4766, 0x0178000901bccb04, 0x014ab30401588605, 0xbb22dbff01455405, 0x130e3b8dd595ff3a, 0xffb8f0f917ff0153, 0x016a0b0b3c34ea82, 0x38f0e8ff01650007, 0x00123882f39dff3c, 0xff3c01f948ff0173, 0x019c070dbc3e11aa, 0x0189a704018e0212, 0x501effbb85c366ff, 0x00ff01974c04bc0e, 0x3dd9d88eff39be83, 0x01a9ba0401ae0109, 0xa411ffbc50aa1dff, 0x0cff01b7070bbd4f, 0xbd27685bffbc9de4, 0x01e4010c02040b0e, 0x01d1040d01d6030b, 0x57c8ff3c90b045ff, 0x6eff01df00113ddc, 0xbc3e6df6ff3cdf18, 0x01f1020701f60002, 0xfd43ff3db82196ff, 0x60ff01ff00073d42, 0x3c82db9fffbc7aaa, 0x021a1e0502288b05, 0x6bafd4ff02150002, 0x0002bc52bbc1ffbd, 0xff3ca812e7ff0223, 0x023a00073b209706, 0xaf5fe8ff02350d0e, 0x0e0ebd0ce0e7ffbd, 0xffba869bf1ff0243, 0x03680d0ebd0a95d5, 0x0298000f02dc1105, 0x026a750402780108, 0x28e912ff0265040e, 0x090ebc8ba52aff3b, 0xffbcc31720ff0273, 0x028aa7043c8a074f, 0x227c73ff0285a504, 0x000ebd319f0affbc, 0xffbba25c69ff0293, 0x02bc030e3cced770, 0x02a9000702aeba04, 0xf4c1ff39af9d31ff, 0x00ff02b70007bb69, 0x3b4c4c63ffbac05a, 0x02c9000802cebd04, 0xce8affbb838f4eff, 0x51ff02d7070e3bdb, 0xbb18174fffbc39a3, 0x0304020b0324c304, 0x02f1040e02f6000c, 0x87d8ffbbefdc0cff, 0x13ff02ff24053bf8, 0xbdc75bf1ffbc1ba5, 0x0311030d0316000f, 0xe1cdff3badb4a5ff, 0xefff031fb2043cb3, 0x3a47953affbb565e, 0x033a000f03482605, 0xd0948bff03350007, 0x030ebccb6b55ffbb, 0xff3ac1b031ff0343, 0x035a2905bc20e530, 0x4f3b2fff0355000c, 0x34053d972077ff3c, 0xffbba12d3aff0363, 0x03ddc2043bfe5829, 0x0394000703abb004, 0x0381020d03860005, 0x527fffbd098aa4ff, 0xb5ff038f03053c84, 0x3d2ad4bfff3c2cd6, 0xe61095ff039d9604, 0x5a60ff03a60207bb, 0x05bbe94ab5ffbc8d, 0x0503c10f0503cf19, 0x3d84837aff03bc0c, 0xca020d3da72dc3ff, 0xf0ff3cb5a7f5ff03, 0xff03d8bf043d224b, 0xac01d9ff3da60141, 0x05c604041300073d, 0xf2290503f7110e04, 0xb0ff3d5c317cff03, 0xff0400010b3cf5a8, 0xfc658bff3ccac410, 0x19c0ff040e110e3c, 0x07bbfd6d00ffbbe8, 0xff0420010b042e01, 0x0429c8043b8e9206, 0x2495ffbc328590ff, 0xc3040440010bbb9c, 0xffbca34424ff043b, 0x0449c804bbeed485, 0x672bffbb1536c0ff, 0xc604068e0207bc19, 0x0c0604e656050572, 0x02080482be0404a2, 0xc5ff046fa4040474, 0x3a488080ffba23d0, 0x1a277eff047d010c, 0x0107bc6c9366ff3a, 0x30ff048f04060494, 0xbaabc171ffbc5c51, 0xbcfcc0ff049d0112, 0x230ebc4116d4ff3c, 0x730404b8030d04c6, 0xffbc884041ff04b3, 0x04c1b5043bbaccd8, 0x4f3dffbc2ebde9ff, 0xbd0404d8130639c2, 0xffbc577cd5ff04d3, 0x04e1070b3b502266, 0x552aff3bcde69fff, 0xbf04052e190ebca2, 0xa3040500b004050e, 0xffb9262811ff04fb, 0x050970053c442b3c, 0xe282ff3cc7d15dff, 0x180e0520070d3bcc, 0xffbca3e874ff051b, 0x052900073cb09af4, 0x7ac8ffbd8582cfff, 0x1c0e05521e0ebca0, 0x5dff053f00060544, 0xbd1a4b03ff3bc293, 0xbf7308ff054d140b, 0x140bbd56e637ffbc, 0x53ff055f020b0564, 0x3aed1032ffbc124f, 0xe9466bff056d070d, 0x010cbd62fc3aff3b, 0x000205be320e0602, 0x230e0590260e059e, 0xff3aa6c668ff058b, 0x05990007bd6a27e5, 0x927dffbc0237c5ff, 0x0d0605b02a0e3c0b, 0xff3c0d03eeff05ab, 0x05b9c804bc659458, 0xe4f7ffbc4651e0ff, 0x000f05e2070bbb21, 0xbeff05cf040d05d4, 0xbd27db2fffbc737b, 0xc70e20ff05dd030b, 0xcb04bc74377aff3b, 0xa7ff05ef000805f4, 0x3cb74503ff39dc29, 0x22b198ff05fd330e, 0x2b0eba0c468dffbd, 0x7205062a180e064a, 0xd4ff06170208061c, 0x39179737ff3d1b93, 0xe72278ff0625c804, 0x1f0ebd235484ff3c, 0xd2ff06370008063c, 0x3d9e6841ff3c0da7, 0x03f43aff0645060d, 0x0006bc4fcf44ff3c, 0x300e0660340e066e, 0xffb9ffe80dff065b, 0x0669030bbc819391, 0xa712ffbc3c397dff, 0x060606800c05bd4f, 0xff3c84d182ff067b, 0x068900083dd842cc, 0x78f2ff3b8cbebeff, 0x1e0e07ae01083cab, 0x200506de1c0e0722, 0x5c0406b0600406be, 0xffba8c76c0ff06ab, 0x06b9c104bc599462, 0x5189ff3bd83766ff, 0x000f06d0010cbd15, 0xff3c72b9abff06cb, 0x06d9070d3af73433, 0xf42bff3c748f79ff, 0x010c070204063d7c, 0x87ff06ef000c06f4, 0xbd22e10dffbc3464, 0x90e881ff06fd2305, 0x0b06bda573e9ffbb, 0xb9ff070fc1040714, 0xbdf2b340ff3cb07e, 0x3c1d83ff071d3905, 0x2005be25410bffbb, 0xb304074a0306076a, 0x52ff0737b004073c, 0x3d018841ffba9785, 0x44f027ff0745350e, 0x2f0ebd017f12ff3a, 0x4eff07570c06075c, 0xbb9d2d12ff3c54c8, 0x9a99e0ff07650706, 0x000cbcb88abdffbb, 0x060607800a0b078e, 0xffbbaa365cff077b, 0x07890011bd00db56, 0x56f5ff3c0e02adff, 0x000f07a0010b3a6f, 0xffba8441e2ff079b, 0x07a90006bc89b3cf, 0x6ce7ff3c66c5b2ff, 0x000c083e0e0bbc81, 0x040b07da0b0b07fa, 0x10ff07c7070607cc, 0xbc9b6fd8ffbbf5ba, 0xf28394ff07d55605, 0x4705bbe55418ffba, 0xc1ff07e70d0b07ec, 0x3bceceb4ffbc94de, 0x8cd340ff07f5170e, 0xcb04bd31796fff3b, 0x00020810070d081e, 0xffbac379e8ff080b, 0x0819a5043c142d1b, 0x0af9ff3c52ac53ff, 0x6005083001123d2c, 0xff3d7cac44ff082b, 0x0839230ebba71e52, 0x7231ffbb2dbfcfff, 0x680408862e01bd25, 0x540408585a040866, 0xffbb6ef3e1ff0853, 0x08616704bc1adae4, 0x5f9dffbc8f84e9ff, 0x0c0308789904bb95, 0xffbce41df4ff0873, 0x08810006bc04baec, 0xc37bffbdaf10a8ff, 0x2a0e08aa000cbd0f, 0x60ff08974f05089c, 0xbca52a24ff3b5487, 0xb93318ff08a5c704, 0x230ebc3ae44bff3c, 0xd9ff08b7c10408bc, 0xbcc52bdfff3ca17f, 0xb28ca1ff08c5140b, 0x0d0e3d2b4c4fffbc, 0x65040ae1030e0d1d, 0x020d0942030d09c5, 0x030b09025c040922, 0x7cff08ef000208f4, 0x3b3b904dffbc18b3, 0x4f4ecbff08fd5504, 0x63043cc9d3efff3b, 0x3eff090f90050914, 0xbb9da1fcffbd1fb4, 0x734340ff091d010e, 0x8f053da5d6e8ffbc, 0x61040938020b093d, 0xffbdce363cff0933, 0xff5280ffbd237848, 0x0112be2fa6d8ff3b, 0x070d096100120981, 0x97ff09570107095c, 0x3cd97901ff3bc8e4, 0x73030bbd6a1380ff, 0x5ae6ff096e630409, 0x043c1b590fffbaa6, 0xbaf190b0ff097c57, 0xa59005bc143b22ff, 0x925e0409975f0409, 0xdaff3cd0bcb8ff09, 0xff09a0000ebe0682, 0x007b13ff3c8026bf, 0xb2040d09b791053e, 0xc1ff3bd56dc0ff09, 0xff09c0000fbe16da, 0x32d997ff3ca5da75, 0x116c040a5500023c, 0xe38e0509f1030d0a, 0x0e80ff09de000809, 0x04bdea3b88ff3ac7, 0xbd961eddff09ec69, 0x030112be3ff641ff, 0x9638ff09fe8e050a, 0x043adf7afcffbc0b, 0xbdcf5314ff0a0c66, 0x357d04bbeee140ff, 0x22000f0a2773040a, 0x64ff3cc39cc6ff0a, 0xff0a307604b881ca, 0xc7674affbd1c148c, 0x4201120a478804bb, 0x0eff3c11c6c8ff0a, 0xff0a50020d3d0560, 0x76debdffbb46108d, 0x7d01120a9d9505bb, 0x6a020b0a6f8f050a, 0xb3ffbbd18097ff0a, 0xff0a78010b3ab81c, 0x807619ffbc109af6, 0x8a6b040a8f0009b9, 0x82ff3d6ee074ff0a, 0xff0a989704bba1b5, 0x4c34c5ffba643422, 0xb391040ac1010b3c, 0x6b14ff0aae000f0a, 0x0dbbcc6cd9ffbd98, 0xbcad77c9ff0abc02, 0xd30107bb2e1090ff, 0x1861ff0ace020d0a, 0x11ba878519ffbc08, 0x3b2c030dff0adc01, 0x01020d3c95e0d6ff, 0x3100080b7500070c, 0x0396050b1196040b, 0x2f1aff0afe76040b, 0x123c5516e0ffbc23, 0x3c116acaff0b0c01, 0x239005be2e27f8ff, 0x0125ff0b1eb2040b, 0x04bda7b081ff3d1b, 0xbd2c9ff1ff0b2ca7, 0x559704b9eac280ff, 0x42070e0b47050b0b, 0x22ff3c1e824aff0b, 0xff0b50070bbd4add, 0x2f2b20ff3ca3b3c0, 0x6299040b67040bbe, 0x04ff3dadf42aff0b, 0xff0b7000023d2415, 0x4cbf32ff3d02d3d3, 0x9d000c0bbdb304bb, 0x8a030b0b8f040e0b, 0x82ff3c9479e6ff0b, 0xff0b98070e3d7617, 0xda9d3effbce20aed, 0xaa030b0baf00023b, 0xb5ffbd3335f1ff0b, 0xff0bb8080ebdda96, 0x6947ecffbd2c885c, 0xd3030b0be1000c3b, 0xb699ff0bce01110b, 0x12bccd7ac0ffbd76, 0xbe0d3d77ff0bdc01, 0xf3020bbda21148ff, 0x9751ff0bee92050b, 0x05bc921f05ffbd06, 0x3b89a75bff0bfc91, 0x918e053c968168ff, 0x2d060d0c4d080e0c, 0x1a00020c1fb1040c, 0x91ffbc55a0aaff0c, 0xff0c2801123ba33d, 0x8eae64ff3b486d90, 0x3a00120c3fa9043c, 0xdbffbb55fc77ff0c, 0xff0c48b3043c9b5e, 0xcfb123ffbd11c234, 0x630a0e0c71ca04bb, 0x630fff0c5e00020c, 0x0d3d30fca0ffbace, 0xbb9e872eff0c6c06, 0x8300023befde8bff, 0x997cff0c7e060d0c, 0x123d49d102ffbd6f, 0x3b32ae63ff0c8c00, 0xd9000f3cd568afff, 0xab02090cb9030b0c, 0xe566ff0ca600070c, 0x0e3bbf0b5fff3cca, 0xbdcaa711ff0cb407, 0xcba704bc3a3027ff, 0x7d2eff0cc600020c, 0x0d3ae4dad6ffbd93, 0x3c5237cdff0cd406, 0xfd010cbd4af8d5ff, 0xeaab040cef01080c, 0xfeff3a4d8456ff0c, 0xff0cf8110bba8fd4, 0x4e0058ffb9b362e9, 0x0a060d0d0fcb04bc, 0x2affbb324a19ff0d, 0xff0d1800093b7c1c, 0x4cfb99ffbcf40e94, 0x41010b0f5dc8043b, 0x71250e0db500090e, 0x43b5040d51b7040d, 0x60c1ff0d3e020d0d, 0x02bbdd12edff3c0d, 0xbe32cba1ff0d4c00, 0x6301123c6cf320ff, 0xa1ecff0d5ec2040d, 0x0e3bf7f735ffbc15, 0x3c96319eff0d6c22, 0x95260e3d7d416bff, 0x8200080d8700070d, 0xbdffbe034e30ff0d, 0xff0d908e05bdc13f, 0x80d130ffbd8c2850, 0xa2bb040da78e05bd, 0xa9ff3d36f173ff0d, 0xff0db00002bb0c54, 0xf9d8beffbaa4f8c7, 0xddb1040dfd8f05bc, 0xca01110dcfa6040d, 0x1bffbc43ad64ff0d, 0xff0dd8000c3d17b5, 0xe049cfffbabee5b8, 0xea000f0defb804bd, 0x59ff3e0b3795ff0d, 0xff0df8bb04bc1a70, 0x850151ff3c1351cf, 0x1390050e210111bc, 0xeda4ff0e0e070d0e, 0x04bd517896ffbc84, 0xbb7f1b5bff0e1cc5, 0x33190e3c825c4eff, 0x8781ff0e2e170e0e, 0x053d8aeadeffbd42, 0xbdbd179bff0e3c93, 0xd1020d3e18bb04ff, 0x6d88040e8d000d0e, 0x5a8f050e5f130e0e, 0x29ff3a7b9e40ff0e, 0xff0e68030bbcf076, 0xd1bca0ffbe026008, 0x7a220e0e7f250ebd, 0x74ffbc05dc31ff0e, 0xff0e8892053cc824, 0x80be84ffbc14a7c7, 0xa301120eb1220ebd, 0x08bdff0e9e0a0b0e, 0x02bd94584fffbd19, 0x3c92f8daff0eac00, 0xc30008bb3042abff, 0x5da2ff0ebec5040e, 0x0ebc2b4d44ff3cb2, 0x3d80f4c7ff0ecc31, 0x1992053e2c68b9ff, 0xeb000f0ef9070b0f, 0x1864ff0ee6000c0e, 0x11bc81158cff3dbc, 0xbc21b7b9ff0ef400, 0x0b010cb956a23aff, 0x9971ff0f06000c0f, 0x053befc597ffba0f, 0x3cc6573fff0f1490, 0x3dbd04bd008550ff, 0x2a0f0e0f2f170e0f, 0x1cff3b7b81e2ff0f, 0xff0f38000fbc8c04, 0x0c764cff3dba1679, 0x4a230e0f4f000f3a, 0x19ff3caaf7e7ff0f, 0xff0f58060d3e8187, 0x6c8727ff3addab35, 0xf1020d107dca043c, 0x8d00090fad220e0f, 0x7a020b0f7f96050f, 0xb4ffbba3682bff0f, 0xff0f88030b3cf879, 0xd5a990ff3d82910b, 0x9a00020f9fc9043c, 0x96ffbc150cd0ff0f, 0xff0fa8190ebdb345, 0x8f0b9aff3ccf1147, 0xc32f0e0fd100083e, 0x45bcff0fbe2b0e0f, 0x073df36b33ffbca8, 0xbd964be3ff0fcc00, 0xe3c904bc65ee60ff, 0xaac0ff0fde230e0f, 0x0ebd86ddedff3c5e, 0x3d56ba75ff0fec2b, 0x39010cbd403e1eff, 0x0b900510191c0e10, 0xdf6aff10068f0510, 0x05bce51331ffbaf7, 0x3b4c7cc5ff101494, 0x2b060dbb8b1174ff, 0x14b4ff1026220e10, 0x0e3b84ad13ffbca6, 0xbcb55b39ff10342b, 0x5dc9043dd624c3ff, 0x4a220e104f060d10, 0xe3ffbadb4ac1ff10, 0xff105800123dab97, 0xca8da8ffbc4c56bc, 0x6a170e106f8e05bd, 0x50ffbcb46f16ff10, 0xff1078030bbde507, 0xfe16f3ff3c13b49b, 0xc91c0e110d00093c, 0x9b000710a9050b10, 0x68bbff1096000f10, 0x04bd0a7b48ffbe1d, 0x3ba3fb77ff10a4cb, 0xbb0e0bbd30c2e8ff, 0x7c92ff10b60b0b10, 0x04bdaa0ddbff3b50, 0xbc252aaeff10c4cb, 0xed1d0e3cb91705ff, 0xda0b0b10df000810, 0xcaffbc223d80ff10, 0xff10e8000c3c04e1, 0x0ba47bffbc576d8e, 0xfa000210ff260ebd, 0x24ffbb30b969ff10, 0xff1108cb043c8ec4, 0xbc8e37ff3c6415d6, 0x35910511550b0bbb, 0x22010c11278e0511, 0x37ffbcb27206ff11, 0xff11302b0e3d1a69, 0x93803effbcbb8436, 0x42230e1147cd043b, 0x98ffbb64208cff11, 0xff1150010c3cae61, 0xb86596ffbba7cebf, 0x6bcb041179140bbc, 0xf0beff1166940511, 0x12bdb3a75dffbdf1, 0xbcde63cdff117400, 0x8b0e0ebb93c74dff, 0xee3dff1186060d11, 0x09bc0b6b96ff3b9e, 0xbcb1bc41ff119401, 0x000013bc3fd736ff, 0x0003e80000000800, 0x0011120000000100, 0x008d050000000000, 0x48c3040484160e09, 0xa09704012c980402, 0x3c000d005c6f0400, 0x296a05002e550400, 0x84ffbaa4af13ff00, 0xff00370108bc0610, 0xb94c7bff3c8b23ae, 0x496a04004e00023d, 0x2affba077b5aff00, 0xff00570211ba25c0, 0x4495abff39d1ba5e, 0x728b04008000123c, 0x6e9bff006d0d0e00, 0x0ebbc2b272ffba7b, 0xbb8da2ceff007b10, 0x920006bd0c715cff, 0xb70fff008d060d00, 0x063c8681d2ff3b87, 0xbd08cdacff009b03, 0xe8120e399840d7ff, 0xba000600c8010700, 0x75fdff00b57a0500, 0x06390f586eff3c6d, 0xbd15f416ff00c304, 0xda0012ba9719c5ff, 0xcac7ff00d5070e00, 0x0dbcd4242dffbb8a, 0xbc2e4742ff00e306, 0x0c00063ca2f173ff, 0xf9000900fe000201, 0x59ff3d5374b3ff00, 0xff01070b0bbcc3ba, 0xe6406effbd52de00, 0x190002011e0306bd, 0x3dffbda99d0aff01, 0xff0127000fbc672a, 0xd56534ff3d68a6ae, 0x78c00401bc000fbc, 0x4a10060158010d01, 0x4a46ff0145060e01, 0x043bcc763affbceb, 0x3b91be44ff0153a0, 0x6aa104bc8e6bb9ff, 0x885eff0165000801, 0x043caa345bff3c25, 0xbc24a64bff0173a4, 0x9c17063bb4d907ff, 0x89000c018e000201, 0x52ffbd708e58ff01, 0xff0197c204bdc1af, 0xc4eb56ffbc47314a, 0xa9020d01ae020bbd, 0xd1ffbc10de00ff01, 0xff01b7010ebd2290, 0xde3eeaffbd1f1c2b, 0xe47005020402073c, 0xd10b0b01d60d0b01, 0x80ffbadd5b91ff01, 0xff01df0108bd02be, 0xfc08d3ffb9a688f8, 0xf1000701f601093b, 0xd2ff3c0da49bff01, 0xff01ff070dbb1356, 0x0c03cbffbb930048, 0x1a010802281c05bd, 0x537aff0215130602, 0x053b09bdddff3c83, 0x3b1f569eff02230b, 0x3a070dbc2526ddff, 0x77feff0235060d02, 0x0cbb88d4e5ffbc3a, 0x3c0c5398ff024301, 0x6801123d532ad8ff, 0x98080e02dcc60403, 0x6a060d0278850502, 0xc010ff0265030e02, 0x12bd222c83ffba84, 0xbc86b358ff027300, 0x8a0b0b3c9a5928ff, 0x6315ff0285000802, 0x0b3a886e8cffbc86, 0xbd604204ff029313, 0xbc0e0e3c030748ff, 0xa96c0502ae0b0b02, 0xacff3d6410edff02, 0xff02b70208bc5513, 0xc07a9cffbce5c2b6, 0xc90b0b02ce130bbb, 0xd7ffbbbd0dc3ff02, 0xff02d7070dbd9624, 0x5dae4eff3d5e6c41, 0x04070d0324c804bd, 0xf1010902f6010c03, 0x59ff3c271221ff02, 0xff02ff0009bc37f0, 0xc16b93ff3d8c1dbc, 0x11010c031601073b, 0x36ffbcce4c19ff03, 0xff031f0207bdbef3, 0x315759ff3c08a9c0, 0x3a86050348c9043d, 0x1ffcff0335720503, 0x0dbcf4df44ffbdae, 0xbd18dc63ff034306, 0x5a0108bab9fa5dff, 0x5ee1ff0355000903, 0x11bcd4aed0ff3c87, 0xbc429c01ff036300, 0xf8000c3bfeb9c8ff, 0x94010703b40b0603, 0x810a0e0386000803, 0xabff3dd80b18ff03, 0xff038f000fbc3841, 0x5086e6ff3d64b2e1, 0xa1000d03a6030b3c, 0x77ffbc84c1aeff03, 0xff03af00083cdac2, 0x8d2d0affbd2a2365, 0xca000d03d80f06ba, 0xb9ebff03c5010703, 0x0bbcd84ba1ff3aec, 0x3c86aca1ff03d303, 0xea12063b95c3b0ff, 0xa014ff03e5c50403, 0x06b92906ddffbd2d, 0x3c334ea9ff03f313, 0x400d0ebb1749feff, 0x12010e0420000204, 0x9b1aff040d011104, 0x0fbce2b84affbb42, 0x3cd3734dff041b00, 0x32000d3bdaadc3ff, 0xf5ebff042d0e0604, 0x06bcd688b7ff3c80, 0x3c45cdb5ff043b0e, 0x64c5043aa1bcbfff, 0x51090604561e0504, 0x04ffbe279185ff04, 0xff045f030bbdd880, 0xa44331ffbd029d25, 0x71010c04760f0ebd, 0xb4ff3c876c64ff04, 0xff047f1506bd5401, 0xabd848ff3ccd41ec, 0xa8110606c457053d, 0xd8c004051c4a0505, 0xaa0b0604b8980404, 0x0fb8ff04a5000604, 0x05bb2306a3ffb93e, 0x3b841cbbff04b306, 0xca270ebc9cfd07ff, 0x6c46ff04c59c0404, 0x063b94211aff3c21, 0xbaf2a6d9ff04d30c, 0xfc0208bc6988f8ff, 0xe9310e04ee001104, 0x0cff3d1c522eff04, 0xff04f74505bc7270, 0x3b85d2ffbba7ab81, 0x090002050e1d053b, 0x7cff3cdbc170ff05, 0xff0517c404bcb28b, 0x8017a7ffbccdbc33, 0x4453050564cc04bb, 0x3100070536be0405, 0xdbffbaf22e3cff05, 0xff053f00063ba720, 0x373a91ff3c1cfe37, 0x510a0b0556ad04bd, 0xf8ffbb9fc5feff05, 0xff055f5405bc872c, 0x308017ffbc3c5d02, 0x7acd040588010c3b, 0x09e8ff0575020705, 0x023e3df952ff3e2b, 0x3d74eb60ff058300, 0x9a01083dcfe2e2ff, 0x3b10ff0595001205, 0x02bdc53f9cffbda0, 0x3d040e6bff05a300, 0x38070bbc762ffbff, 0xd4630405f4030506, 0xc1030b05c65c0405, 0x16ffbb06f297ff05, 0xff05cf0107bd7252, 0x2563a7ff3b9a6c93, 0xe1030b05e6000f3d, 0x11ffbd389104ff05, 0xff05ef010c3e28e8, 0xaa03d3ff3c95e16f, 0x0a730406180405b9, 0xc04cff0605500406, 0x01bd6baa73ff3bc1, 0x3d8054c7ff061341, 0x2a16063cd678c1ff, 0xdff0ff0625770406, 0x0fba657ec2ffbcda, 0x3c70bc68ff063300, 0x80b304bb8abdffff, 0x5200080660990406, 0x4198ff064d7c0406, 0x04bcd091b4ffba97, 0x3ccc8141ff065b8b, 0x729b04bc7c174eff, 0x30bfff066d000c06, 0x0ebcc1c7faffbdc4, 0xbbcfda01ff067b1a, 0xa40111bce6b45bff, 0x91330e0696000206, 0x1eff3bbeaf55ff06, 0xff069fbd04bcf537, 0x34426dffbcacd370, 0xb1030d06b6000cbc, 0x0affbb3d4b7cff06, 0xff06bf000f3cb506, 0xf7cc0aff3d0595bb, 0x58000c07e4060d3b, 0xf4170e07140b0b07, 0xe17a0406e6000706, 0x33ff3b377bd3ff06, 0xff06ef030b3bfb0c, 0x886565ff3b91869d, 0x01000f0706190e3c, 0xa3ff3d6d2782ff07, 0xff070f9e04bc49c1, 0x2a2f9cffba770133, 0x2a170e0738140bba, 0xd8f7ff0725000807, 0x083cb99435ff3b86, 0xbc317b6bff073300, 0x4a170ebced5d7eff, 0xe5b7ff0745770507, 0x05babb4238ff3c62, 0xbb12d39aff07537f, 0xa0220e3ac2f979ff, 0x721c0e0780c20407, 0x5a23ff076d000907, 0x0ebbe07c3dff3bc5, 0xbd11bdf2ff077b1e, 0x92000fbb497951ff, 0x39efff078d000607, 0x053d5cc294ff3c4f, 0xbd0001d6ff079b82, 0xc4330ebc0355e0ff, 0xb1140b07b6240e07, 0x51ff3c88ecaaff07, 0xff07bf030d3d6437, 0xeca82fff3c32a57d, 0xd1020707d60006b8, 0x6affbba100b2ff07, 0xff07dfc2043ba950, 0x992cabffbdcfa12a, 0x30001108740008ba, 0x02180e0810070d08, 0xeb39ff07fd010c08, 0x0ebd09f344ffbbda, 0x3c2c66a4ff080b1c, 0x22070bb956677aff, 0xbecaff081d000208, 0x0ebb2689a2ffbc73, 0xbcb166ecff082b1f, 0x54b504bd62c207ff, 0x4101070846170e08, 0x8bffbd33781bff08, 0xff084f190e3b3549, 0x40b2f5ff3d6d3589, 0x61b6040866b804bc, 0xf3ffbc6c7db7ff08, 0xff086f090b3d9e4e, 0x8137e1ffbb7791a3, 0x9c000708bc2f0ebd, 0x89cd04088e230e08, 0x36ff3b6207d1ff08, 0xff08970012bcd588, 0x095a22ffbc1bf60b, 0xa9001208ae000cbd, 0x78ffbb4e7047ff08, 0xff08b7180e3c93ab, 0x835d7bffbb628742, 0xd2c70408e000123c, 0xecfeff08cdc30408, 0x073d3e9a44ffbc29, 0xbcc297f5ff08db01, 0xf2bf043adf6056ff, 0x5aadff08ed030b08, 0x04bd32d35dffbc2e, 0xbdea3f63ff08fbcd, 0x0b0d0ebcee1d24ff, 0xe97f040b05050e0d, 0x4f8e050993030e09, 0x2a090b0938010709, 0x048fff0925040b09, 0x113c279814ffbbbc, 0xbc0e1382ff093301, 0x4a000cbdc9a14eff, 0xb508ff0945010e09, 0xff3d221cc8ffbd22, 0x09736504be8056c0, 0x0960430409654b04, 0x9452ff393713d8ff, 0x14ff096e6204bd29, 0x3c23b990ff3a9e61, 0x0980030d0985000f, 0x47adffba9fc3bfff, 0xf8ff098e060dbcb0, 0x3b147fe0ffbafed1, 0x09a9900509c9030b, 0x55f300ff09a4000f, 0x75043c92a688ffbc, 0xf0ff09b6000709bb, 0x3d076848ff3d6465, 0x89de80ff09c40007, 0x75043b896680ff3c, 0xb8ff09d6000709db, 0x3d85e1d8ff3dd11c, 0x2e30e0ff09e49005, 0x000f3d7b0f90ff3d, 0x010e0a3580040a79, 0x00080a0700090a15, 0xff3e20c482ff0a02, 0x0a1090053d444590, 0xe376ff3c8c0c04ff, 0x90050a2700093da9, 0xff3cc9afcbff0a22, 0x0a3000023d44203b, 0xf500ff3be68980ff, 0x030b0a590009bb97, 0xc8ff0a46010e0a4b, 0x3c072377ffbc4381, 0x936d48ff0a54bc04, 0x02093cfea876ffbc, 0x02ff0a66a7040a6b, 0x3cdb5c70ff3b1e4d, 0x239f6cff0a74010e, 0x070bbcc6b143ff3c, 0x020e0aa1040e0ac1, 0xf5ff0a8e00070a93, 0xbc17de3effbb52d5, 0x7be578ff0a9c000c, 0x99043c0ad59dffbb, 0xeaff0aae97040ab3, 0x3d066172ffbb58b4, 0xa84907ff0abc0109, 0x9305baf4d695ffbc, 0xb7040ad7060d0ae5, 0xffbb412f34ff0ad2, 0x0ae08f053c07d24f, 0x6cdaff3ba42731ff, 0x00070af7010c3ae7, 0xffbb0e612cff0af2, 0x0b00b7043b3949e7, 0xeb9fffbd15fbfeff, 0x95050bef9704bbc8, 0x96040b55070e0b99, 0x8f050b2774040b35, 0xff3a004000ff0b22, 0x0b30000cbdc11aa2, 0xac5cff3bd12080ff, 0x92050b47020d3cd4, 0xffbde1ea31ff0b42, 0x0b50040dbcbf7608, 0x26efff3d8964e0ff, 0x000c0b79090e3ccc, 0x6eff0b6601110b6b, 0x3c82ef5cffbbd080, 0x916a0cff0b74000d, 0x000cbd26b674ffbc, 0xbbff0b8695040b8b, 0x3d3809ddff3a916c, 0x2e469aff0b94010b, 0x01113d3fd0f7ff3c, 0x030b0bc101070bc6, 0x6aff0bae00070bb3, 0x3cd0111cff3aeb41, 0xa9eadcff0bbc9605, 0x7aff3c68580cffbc, 0x050bea90043d01c2, 0xff0bd7030b0bdc96, 0xf5121cffbd9a4e15, 0xbd92ff0be50007bd, 0xffbdc5e74cffbe1c, 0x0c7f020d3ca7c33b, 0x0c1b00020c3ba704, 0x0c08a2040c0d0008, 0x33dbffbd151642ff, 0x23ff0c16070ebe48, 0xbd279a59ff3de774, 0x0c289b040c2d9c04, 0x0d60ff3d37243aff, 0x79ff0c36010b3dc7, 0xbb8513dcffbcf3ca, 0x0c5101080c5f070e, 0x0c60f0ff0c4cbc04, 0x00073c14ef85ffbd, 0xff3d140551ff0c5a, 0x0c710111bc1176a6, 0x7e5c1dff0c6c030b, 0x0009bdde278affbd, 0xff3c922e9eff0c7a, 0x0cc7b204bba0c962, 0x0c990a0b0ca7070e, 0xbaa858ff0c949c04, 0x060ebb6cb586ff3c, 0xffbc57a8a3ff0ca2, 0x0cb9080e3c8a34ba, 0x29fe1eff0cb40009, 0x090e3c125cd6ffbc, 0xff3d012166ff0cc2, 0x0cebbb043bc39f96, 0x0cd800090cdd0112, 0x3b82ffbc1b34d3ff, 0x03ff0ce6080e3ab0, 0xbc33dbcbff3c7ac8, 0x0cf8bf040cfd0112, 0x2086ff3b94f8c3ff, 0x9fff0d06060ebb25, 0x3c2086e4ffbd3b2f, 0x0dc392040ed6000d, 0x0d56000c0d6d130e, 0x0d3175040d3f0007, 0x1d1d50ff0d2c9205, 0x030bbd2c986affbd, 0xffbd07e60aff0d3a, 0x0d519205bd02dd98, 0x2f4210ff0d4c8f05, 0x00ffbc099d90ffbc, 0xff0d5f8004ba154b, 0x0d6800023c4b90c0, 0xc0e8ffbb1d4d00ff, 0x6f040d9188043d21, 0x05bd8b6c5cff0d7a, 0xff0d8700070d8c93, 0xd91234ffbdc8c746, 0x020bbde9fec2ffbd, 0x54ff0d9e010b0dac, 0xff0da70002bd9a29, 0xd85560ffbcc4fd60, 0xb98e050dbe0002bc, 0x10ffbce289d0ff0d, 0xbce9b8c0ffbcdde9, 0x0e0fc2040e4a9505, 0x0de102070def0109, 0xb54701ff0ddc230e, 0x0111bbcfba62ff3b, 0xff3b3feef7ff0dea, 0x0e01030bbd26a7a0, 0xc50000ff0dfca704, 0x070bbd88b165ff38, 0xff3ca41075ff0e0a, 0x0e2a1d0ebd984960, 0x0767c0ff0e1c9105, 0x76c0ff0e250008bc, 0x0c3bfe1d60ffbbd9, 0xff0e37230e0e3c00, 0xa77b4bff3d17f79a, 0xe143ff0e458f053b, 0x123e15b358ff3d41, 0x0b0e7200070e9201, 0xff0e5f010b0e6405, 0xaa13aaff3c50a50b, 0x4ef7ff0e6d060bbb, 0x0b3c398e2aff3d33, 0xff0e7f01070e8400, 0x1d9bf5ff3cfac095, 0xb5abff0e8d01073d, 0x043cd0d72cff3ca0, 0x0e0ea800070eb6b7, 0xbd8ef842ff0ea31d, 0xb10002bddbde2cff, 0x54ffbc788815ff0e, 0x0b0ec8140ebd8923, 0xbc5436e0ff0ec303, 0xd1c0043d20e77bff, 0x17ffbd098d81ff0e, 0x0d0ff6020bbb3a6d, 0x040f2600090f6a04, 0x0e0ef800070f06c9, 0x3d07cd21ff0ef323, 0x010002bb1faafbff, 0x10ffbc3397e7ff0f, 0x070f182b0e3ba48c, 0xbd8c43b7ff0f1301, 0x210002bc3adbf8ff, 0x59ff3db331caff0f, 0x040f4a8f05bc375c, 0xff0f37020d0f3cbb, 0x4e6e14ff3cb16b9d, 0x4c4aff0f45010b3e, 0x05bdfa50b8ffbd1d, 0xff0f572b0e0f5c93, 0xa40ee8ffbd8fd18a, 0x11b5ff0f65c9043d, 0x0cbd3aa3e1ff3bd5, 0x120f9294040fb200, 0xff0f7f91040f8401, 0x1dd1f5ff3cb5b769, 0x5884ff0f8d0007bc, 0x0e3ddef288ff3dbd, 0xff0f9f120e0fa419, 0x1ee51bffbb7b6cd4, 0xd47fff0fad1d0ebc, 0x0ebb1c51b7ff3bfc, 0x0e0fc801120fd619, 0xbbdcc68aff0fc318, 0xd1170ebcd53977ff, 0xf7ffb6dcaaf9ff0f, 0x070fe81c0e3d50cd, 0xbe1062eeff0fe300, 0xf1b1043c93af90ff, 0xd9ffbe035a75ff0f, 0x0e1086000cbc2ab2, 0x0b1022000f104217, 0xff100f0111101407, 0x94ad54ffbd04e92b, 0x53d2ff101d00093c, 0x043dc254a4ffbd55, 0xff102f01071034cc, 0x0efa16ffbb0e0a0a, 0x7a5dff103d95053b, 0x04bc7ea608ffbb7b, 0x0d1058000f1066c2, 0x3d0cd158ff105302, 0x61070d3deae994ff, 0xbcff3b45e7b1ff10, 0x0d10780207bd27dc, 0xba4c573bff107306, 0x819305bb139ee3ff, 0xb5ff3aad1e23ff10, 0x0b10ce01093c616a, 0x1110a02f0e10ae0a, 0xbc83cf40ff109b00, 0xa9310e3aba192dff, 0x56ffbd00b26eff10, 0x0410c01c0e3b71dd, 0x3c1da425ff10bbcd, 0xc91f0e3d086028ff, 0x3effbc387a62ff10, 0x0d10f2140e3ba3af, 0xff10df920510e402, 0x76e507ff3b48ea91, 0x1c12ff10edb5043d, 0x0ebba62516ffbe97, 0xff10ff000f110417, 0xf41462ffbdc8adde, 0x6cb5ff110dbd04ba, 0x13bc8d2152ff3d74, 0xe800000008000000, 0x7000000001000003, 0x0500000000000010, 0x06039a160e08168d, 0x05012caf04024819, 0x04005c5b0400a085, 0x0d002e000f003c53, 0x3a6ad40aff002907, 0x373203bbbbf54bff, 0xb0ffba515fbdff00, 0x06004e010bbaab13, 0xbc15f91dff004905, 0x57000d3c616f10ff, 0x62ff3ce79d89ff00, 0x04008002113a7d5d, 0xff006d14060072ae, 0x0d8f37ff3ab2b947, 0x90f3ff007b070dbb, 0x05bd0b27a6ff3c59, 0xff008d0108009212, 0x26c6fbff3d9aeee2, 0xbd1eff009b00073c, 0x07bc1d218cff3c95, 0x0b00c8011200e802, 0xff00b5070e00ba0a, 0xe0456effbaac1560, 0xc5bbff00c3ab04bb, 0x04bb1c6290ff3b08, 0xff00d5a50400daab, 0x5fd6f3ff3bfb17cd, 0x2156ff00e3070ebc, 0x0c3b9a6c10ffbcb7, 0x0f00fe050e010c00, 0xbcae6791ff00f900, 0x077b04bbd51b97ff, 0x92ffbd6c9a50ff01, 0x02011e000f3be901, 0xbe15502cff011900, 0x27a404bd2263ccff, 0xb6ffbca8a2beff01, 0x0201bcb204bbed44, 0x1101580a0e017800, 0xff0145060e014a00, 0x4797bbffbc40ac7f, 0x5a10ff0153b0043d, 0x12bd0db665ff3c78, 0xff01650d0e016a00, 0xabbf4bffbc814f51, 0x83e3ff017301123c, 0x0d3c31881bff3d71, 0x08018e120e019c06, 0xbbeab627ff018900, 0x970706bc7c440bff, 0xb9ffbc8830d1ff01, 0x0e01ae0f0e3cf790, 0xbd077a6bff01a903, 0xb7010c3c57f60fff, 0x2cff3b209664ff01, 0x0702040011be5e7c, 0x0c01d6000901e401, 0x3c1e8146ff01d101, 0xdf070d3d0f0e08ff, 0xb5ffbb3bbab6ff01, 0x0801f6010cbcdd48, 0xbb10f81bff01f101, 0xff070ebc8c26c6ff, 0xceffbc867f69ff01, 0x06022822053ca07b, 0xff02150806021a0f, 0x96e3adffbd15a6ec, 0xe851ff022310063c, 0x063ac02c8dffbd08, 0xff0235110b023a0b, 0x7c54e1ffbb28703c, 0x124eff02430f06bc, 0x0ebbac2e28ff3bb4, 0x0e02dc0207036813, 0x0f02781105029809, 0xff02658b04026a00, 0xc9e788ffbb51212b, 0x0882ff0273030ebc, 0x04bbc3e34cffba96, 0xff0285020b028abf, 0x8e71efffbbd7cbf9, 0xf2bfff029326053b, 0x053b728f35ffbb94, 0x0b02ae030d02bc02, 0xbcdabc3aff02a903, 0xb70d0ebd6a4724ff, 0x48ffbc98b63bff02, 0x0d02ce000f3c6db4, 0x3c0ee37aff02c902, 0xd700023d322474ff, 0xdfff3cc1928eff02, 0x0e03240002bb4036, 0x0502f68b04030404, 0xbc3ae7d0ff02f100, 0xffc2043c38f477ff, 0x20ffbd53da2dff02, 0x0b03160705bc6213, 0xbbf311b5ff031100, 0x1fc3043d5bd141ff, 0xe4ffbc9dedacff03, 0x050348000fbbed7b, 0xff03350108033a01, 0x324e6cffbcb3a966, 0x9fe7ff0343000e3c, 0x043d2cf901ff3c8c, 0xff03550111035ab3, 0x5546eaffbb88dde1, 0xb740ff0363000e3a, 0x053bea81faff3a83, 0x07037ebf04038c19, 0x3caea19cff037900, 0x8702073cd6d9acff, 0xceff3d482694ff03, 0xff0395010b3d7e4c, 0x954015ff3d94462d, 0xbe110605da57053d, 0xeec00404324a0504, 0xc0870403ce980403, 0x766eff03bb000f03, 0x0ebaa5760cff3a95, 0x3c00e412ff03c91a, 0xe0270e3a1667c5ff, 0x1dfbff03db170e03, 0x063bdb661effbb87, 0xbaf5e0caff03e90d, 0x120208bc5f8a92ff, 0xffc2040404001104, 0xb0ff3d56a6a2ff03, 0xff040d1a0e3c59b0, 0xd8e7ddffbcf0646a, 0x1f000204241d05ba, 0xbcff3cc5c7b0ff04, 0xff042dc404bca0b0, 0x66911bffbcb9295c, 0x5a5305047acc04bb, 0x470007044cbe0404, 0x08ffbad9f641ff04, 0xff0455c0043b966a, 0xb1d876ff3cfbd23a, 0x670e0b046c5405bb, 0xb8ffbc6e2beeff04, 0xff0475ad04bd36e1, 0x1ed9c6ffbbd50442, 0x90cd04049e010c3b, 0xf9feff048b020804, 0x0e3e19ef50ff3e2a, 0x3de26f68ff049931, 0xb00b0b3d75755dff, 0x01ccff04ab020804, 0x07bc748f38ff3d79, 0x3c6caa50ff04b902, 0x4e030bbcd65980ff, 0xea0002050a010d05, 0xd7940404dc280e04, 0xb1ffbcad070aff04, 0xff04e5000cbaceda, 0x846dceffbcb167d5, 0xf7000804fc6404bd, 0xbbffbdabb19aff04, 0xff05058204bd972a, 0x047836ff3ca9026d, 0x207f04052ea404bd, 0xf7c8ff051b000705, 0x04bd0ff01fffba33, 0x3c207341ff05299b, 0x4013063d2b9002ff, 0x80a6ff053ba70405, 0x0ebbade11dffbd84, 0x3aad4bc8ff054930, 0x96210e3ccdbc00ff, 0x688b040576040d05, 0xbabfff0563840405, 0x043d67bb7cff39d6, 0xbc83b24bff0571ae, 0x88b3043bc3507fff, 0x9a32ff0583000c05, 0x06bcdb73d4ffbc18, 0x3c04cc69ff059113, 0xbab304bc18c953ff, 0xa79c0405ac060505, 0xadffbbde9640ff05, 0xff05b59f04bd0a42, 0xe56767ffbda8617a, 0xc7000c05cc000fbc, 0x38ff3ab5f43fff05, 0xff05d5220e3d0a64, 0x7eeff2ffbc895f97, 0x6e000c06fa060dbb, 0x0a170e062a0b0b06, 0xf77a0405fc000706, 0x67ff3b2522b6ff05, 0xff0605030b3be1f1, 0x758340ff3b82f919, 0x17000f061c190e3c, 0xccff3d557065ff06, 0xff06259e04bc3594, 0x192aa7ffba5e4dda, 0x40170e064e140bba, 0xb9acff063b000806, 0x083ca7056eff3b72, 0xbc1fbbe7ff064900, 0x60170ebcd5a0d8ff, 0x81f1ff065b000806, 0x053c5f21e8ffbb64, 0xbb0424d6ff06697f, 0xb6220e3aaf7a3fff, 0x8800020696c20406, 0xaa3aff0683190e06, 0x05bc4245aeff3b0e, 0x3be740a2ff069161, 0xa8000f3b844599ff, 0x4823ff06a3060606, 0x053d5ff80eff3c40, 0xbcb5e142ff06b189, 0xda330e3afef64dff, 0xc7250e06cc140b06, 0xaaff3c63c35cff06, 0xff06d5230e3ad2e9, 0x119374ff3d562451, 0xe7020706ec00063c, 0xedffbb90e714ff06, 0xff06f5c2043b9861, 0x89db35ffbdbadddb, 0x460012078a0008ba, 0x18180e0726070d07, 0x06efff0713010c07, 0x04bcf84f62ffbbc5, 0x3b3bda65ff0721cc, 0x38070bbba24d52ff, 0x459fff07331e0e07, 0x0ebc6dddf7ffbb8f, 0xbc9fa96fff07411f, 0x6ab504bd4c1517ff, 0x570007075c170e07, 0x07ffbd3bfed9ff07, 0xff0765190ebc09ad, 0x2d6de2ff3d557cf5, 0x770207077c130bbc, 0x46ffbcdd7fa6ff07, 0xff0785b8043c0e75, 0xa2f311ff3d3f9e0f, 0xb2180e07d21a0ebd, 0x9fc00407a4001207, 0xa6ff3c1307e8ff07, 0xff07ad0007bc8e49, 0x0033cfffbd19fa71, 0xbf001207c4000cbb, 0x84ffb9d40588ff07, 0xff07cd00123d0b6f, 0xa97acdff3d159757, 0xe80e0b07f61e0e3d, 0x9bdfff07e3000f07, 0x0ebc6f4134ff3d8d, 0x3d11c887ff07f11c, 0x082c0ebd9352efff, 0x7cd6ff08031f0e08, 0x0eb9b8df22ff3cab, 0x3d68ec1bff08112d, 0x330d0ebc380302ff, 0x3eca0409f7030e0c, 0x6e000e08b28c0409, 0x405204084e000c08, 0x9d86ff083b040d08, 0x053c620980ff3a76, 0xbb11abb7ff084990, 0x6093053ab1a857ff, 0x5976ff085b000708, 0x0fbd1058c0ffbbb4, 0xbe4b23f2ff086900, 0x92000cbc2e4736ff, 0x7f040d0884000f08, 0x97ff3c7d85c2ff08, 0xff088d070bbd820c, 0xb8c6a3ffba183a2e, 0x9f700408a472043b, 0x0affbc887dfcff08, 0xff08ad0112bdd411, 0xf5cdf6ff3b7209bb, 0xda000f08fa8f053c, 0xc7a70408cc000908, 0x56ffbd6a90d0ff08, 0xff08d5040d3c3f7a, 0xb37c34ff3d225865, 0xe7020908ecab043b, 0x3cff3b860e84ff08, 0xff08f5b204bbbd62, 0xcb3296ffbca73ed0, 0x100009091e94043a, 0x0bfaff090b011209, 0x0dbd4be57dffbbf6, 0x3d0e4ea2ff091902, 0x30000cb9c67d8cff, 0xc0e0ff092b000f09, 0x0db9bd7fc0ff3c60, 0xbcd6fe34ff093903, 0x8f020ebad7f05fff, 0x6a9505098a011209, 0x57070b095c000209, 0x70ff3aaaf580ff09, 0xff09650b0b3cafde, 0x009ad4ffbb30e208, 0x770107097c060d3c, 0x3eff3b09d3b7ff09, 0xff09850b0b3c377b, 0xf09b10ffbb8aae3e, 0x01113d077df0ff3a, 0xcc0409b7060d09d7, 0x48ff09a4000c09a9, 0x3bf0aec3ffbbb69f, 0x802c88ff09b29605, 0x0012bc9b08f1ffbb, 0xb5ff09c4cc0409c9, 0xbc0dc619ffbb075f, 0xb7b19aff09d29305, 0xcb04bc44c0f8ffbc, 0x10ff09e4960509e9, 0xbdcea6d4ffbd3666, 0x4f8280ff09f29605, 0x020d3d0e4f00ffbc, 0x00080a8b00070b17, 0x96050a2796040a47, 0x99ff0a147b040a19, 0x3c4c369effbb950b, 0xeb9366ff0a220111, 0x9005be0d1104ff3b, 0x61ff0a34ae040a39, 0xbc966d32ff3d04a8, 0x0c7a09ff0a42a704, 0x980438962412ffbd, 0x91040a5d070e0a6b, 0xff3d023885ff0a58, 0x0a66080ebdce7f9b, 0x1eebffbd55f47bff, 0x00020a7d99043cc2, 0xff3ddccf77ff0a78, 0x0a86030b3d26eaf8, 0xc369ff3d17abefff, 0x000c0ad3b9043ab1, 0x90040aa5b0040ab3, 0xffbbd44270ff0aa0, 0x0aae030b3caf0164, 0xc418ffbd1430c1ff, 0x030b0ac5a704bdbe, 0xffbd005bcbff0ac0, 0x0ace080ebda45b62, 0x852affbd0d651aff, 0x02080af7020b3bed, 0xc7ff0ae402070ae9, 0xbd02b2a7ffbbd9e4, 0x0f5cb0ff0af20107, 0x9105bdab2868ffbd, 0x9bff0b04070e0b09, 0x3bb00f95ffbc949c, 0x8f362dff0b120208, 0x8e05bc8d2c10ff3c, 0x060d0b63080e0ba7, 0x9a040b35b1040b43, 0xff3c142e76ff0b30, 0x0b3e070ebc02047e, 0xfd72ff3b8c963bff, 0xa0040b55a3043cb2, 0xffbbc4a00cff0b50, 0x0b5e00023ce9fb92, 0x57a1ffbc9bbed1ff, 0xbe040b87ca04bba6, 0xe4ff0b7401090b79, 0xbd2141c5ff3bcb95, 0x93685dff0b820111, 0x0008bcb2409cffba, 0xc6ff0b940b0e0b99, 0x3d03967eff3d8c60, 0xf26c35ff0ba20002, 0x000f3c0e972bff3c, 0x01090bcf030b0bef, 0xdcff0bbc00070bc1, 0x3ba685c9ff3cc763, 0xa1aea2ff0bca070e, 0xa7043c6f5a85ffbd, 0x68ff0bdca6040be1, 0xbd95bab5ff3b70e6, 0x2f6e14ff0bea060d, 0x010cbd2f1a4cff3c, 0xab040c0501080c13, 0xff3a217cd3ff0c00, 0x0c0e000cba650dc8, 0x865bffbb910987ff, 0x010b0c25050b3baf, 0xffbcd3d2bdff0c20, 0x0c2e00123c18f2ec, 0x0724ff3b73a7dbff, 0x310e0e34c804bc21, 0x010b0ccb00070d57, 0xb4040c6793050c87, 0xd1ff0c54000d0c59, 0xba079955ffbd5d61, 0xd06f1fff0c62b704, 0x0111bc200740ffbd, 0x1eff0c74c2040c79, 0x3c1ea244ffbbdb6e, 0x326a89ff0c82c004, 0x010c3dc2f76fff3c, 0x020b0c9d00080cab, 0xffbb37b0d0ff0c98, 0x0ca6000c3aca6a06, 0x4c8eff39cf18fbff, 0x140b0cbdc7043c3d, 0xff3c45da11ff0cb8, 0x0cc68f05bd496115, 0x3f43ff3d7ac7bfff, 0x060d0d1301123c48, 0x010c0ce5c7040cf3, 0xffbc029474ff0ce0, 0x0cee8f05bc89d2ee, 0x50ecff3cb82585ff, 0xbe040d050011bbae, 0xffbc9f19a6ff0d00, 0x0d0e190ebb3ccbed, 0x25d2ff3ca7fdcdff, 0xc0040d37140ebb92, 0xdaff0d24b8040d29, 0x3c231b51ffbc8e87, 0xe47c3bff0d32040d, 0x070bbd726ef6ffbb, 0x98ff0d44000d0d49, 0x3c4dd19dffbc2f77, 0x66ea69ff0d52230e, 0x320ebd041f66ffba, 0x030b0da3000d0dd5, 0xbb040d7500070d83, 0xff3b10a300ff0d70, 0x0d7ebb043cd61cf0, 0x4a1cffbc4f3980ff, 0xbb040d95090bbd02, 0xffbcc3aef0ff0d90, 0x0d9ebb04bd73b170, 0x4a40ffbccc67a0ff, 0x00070dc7030bbc27, 0x32ff0db400090db9, 0x3d6e8880ff3e1bf3, 0x93bbf4ff0dc20002, 0x090b3d39c1b0ff3d, 0xff3d01b21cff0dd0, 0x0e14340e3d1fb928, 0x0def330e0dfd8f05, 0x5e1604ff0deabf04, 0x010b3cdb22d9ffbd, 0xff3b6ee746ff0df8, 0x0e0fc704bd258d7d, 0xccb734ff0e0ac304, 0x4cff3da2c58bff3d, 0xff0e1d000dbc00bd, 0x0e2fc7043d5b6030, 0xb28c30ff0e2a010b, 0x90ff3d8b4548ff3d, 0x0d0f54ca043df834, 0x090e84140e0ec806, 0x0c0e56050b0e6400, 0xbc9d69adff0e5100, 0x5f000cbd3751c4ff, 0x9cffbd817a69ff0e, 0x110e769305bdb44f, 0xbb031c1aff0e7101, 0x7f010cbc90402bff, 0xd7ff3bba260cff0e, 0x040ea8190e3d7dce, 0xff0e95170e0e9ac9, 0x3061ebff3c4828d9, 0xd89bff0ea30009bc, 0x0ebbaf6fecff3cbb, 0xff0eb5020d0eba22, 0xb05da4ff3ce586a0, 0x660aff0ec30112bc, 0x04bc1eea4bff3c93, 0x050ef000110f10c9, 0xff0edd000c0ee290, 0x61ad65ffbc85b2cb, 0x774fff0eeb0a0bbd, 0x073b4bbcbbffbc99, 0xff0efd00080f0200, 0x40c408ffbdbdc06c, 0x054bff0f0b0008bd, 0x0e3c0b1286ffbd06, 0x070f2600120f3414, 0x3c920a55ff0f2100, 0x2f0109bb962b12ff, 0xa6ff3d264cebff0f, 0x0e0f460011bd021c, 0xbd08e430ff0f4117, 0x4f030b3d02c4a2ff, 0xcfff3a8539dbff0f, 0x080fe4cd04bd5a36, 0x0e0f8000090fa002, 0xff0f6d180e0f7232, 0x999a41ffbbac093f, 0xf40eff0f7bcb043b, 0x0e3cabc865ffbd10, 0xff0f8d020d0f922b, 0xc8aec8ffbc82885d, 0x1cd3ff0f9b2c0ebb, 0x0f3c36ba7aff3e34, 0x040fb6050b0fc400, 0xbe11d92eff0fb1cb, 0xbfcc04bd958db9ff, 0x10ffbb890060ff0f, 0x0c0fd600073d49e3, 0x3af046e1ff0fd100, 0xdf0011bcc02b3dff, 0xefffbd2a295cff0f, 0x05102c9005bc3fc4, 0x050ffe2d0e100c8f, 0xba87896fff0ff98e, 0x07070d3d2487fcff, 0xa1ffbc1e3183ff10, 0x07101e010cbd36a3, 0xbccece9bff101900, 0x27140ebb4a6a92ff, 0x75ff3cc6f6c6ff10, 0x0210509105bd5796, 0xff103d230e104200, 0xec945bff3d076d94, 0xd0bbff104b00073b, 0x05b920d057ffbc91, 0xff105d140e106293, 0x8b3ce4ff3cf572a8, 0xddd4ff106b9405bc, 0x13bb38e98fff3c32, 0xe800000008000000, 0x8700000001000003, 0x0500000000000011, 0x04047b160e08f78d, 0x05012c97040248c3, 0x04005c910400a07e, 0x04002e7e04003c8a, 0xb9a8fe5cff00296d, 0x374f053a909a10ff, 0xc4ff3bca7927ff00, 0x0d004e000fba560f, 0xbb64dd4fff004904, 0x578b043cb5082fff, 0x0dff3bedd312ff00, 0x0d00809204bba50c, 0xff006d100b007207, 0xbde2cfff3cd0e2b1, 0x8c12ff007b080e3b, 0x0bbc9bcca8ffbdb9, 0xff008d050b009214, 0xb05b25ffbc1d84b9, 0x11beff009b0008b9, 0x0e3c768591ff3a8b, 0x0200c8060d00e802, 0xff00b5000c00ba00, 0x479ef0ffbbdb8bd2, 0x9309ff00c3000ebc, 0x12ba92cb20ffbc1b, 0xff00d5070d00da00, 0x339f2bffbc06122e, 0x01f5ff00e3000c3c, 0x0b3c9ae345ff3b11, 0x0400fe0112010c01, 0xbbe229efff00f98f, 0x07020dbc9f186cff, 0x7fffbc1acba0ff01, 0x04011e000f3ce380, 0x3c34099bff011995, 0x27070ebd7ae71bff, 0xaaff3bf56dd9ff01, 0x0e01bc120ebb8feb, 0x0e0158ab04017810, 0xff0145a804014a0c, 0x2e84faffbb367da8, 0x5c94ff015319053c, 0x0b3bfc33c5ffbb25, 0xff01650012016a02, 0x5b5fa3ffbce614c1, 0x8c18ff0173070ebc, 0x043af1cc4cffbb0d, 0x09018e0008019cb8, 0x3bfa8ebdff018900, 0x979e04bcf1d964ff, 0x09ff3cbf57cdff01, 0x0401aebc043d7957, 0xbcd4112aff01a9ba, 0xb70008be355445ff, 0xf2ffbcbdcaf0ff01, 0x120204130e3c4e75, 0x0c01d6050b01e401, 0xbc4428e0ff01d100, 0xdf5305bd2b60b5ff, 0xf0ffbe0930b3ff01, 0x0201f60706bd8c1e, 0xbd84092aff01f100, 0xffbf04bc3f8a0dff, 0xd6ff3c4ca4cbff01, 0x040228030bbda930, 0xff02156105021a9f, 0x63a4eaff3ca4423d, 0xb5a4ff0223060dbc, 0x09bcdd5a91ffbbe4, 0xff02350011023a00, 0x1cdb74ff3ccedfc8, 0x6ddeff0243060d3c, 0x12bca6bd3fffbbe5, 0x0e02dcc604036801, 0x0d02788205029808, 0xff02650107026a06, 0xd910d4ffbd97c40c, 0x738fff02730012bc, 0x023c947cc8ffbc67, 0xff02858805028a00, 0xbaac9fff3b03e9e8, 0x1ea1ff0293c5043c, 0x0ebc4d7acdff3b21, 0x0502ae000202bc0e, 0xbd0c7546ff02a988, 0xb76b053aae1fb4ff, 0xedff3cd522d7ff02, 0x0b02ce0e0bbc75bd, 0xbbbb8e04ff02c90b, 0xd7070dbdba2bdeff, 0x10ff3d49309aff02, 0x050324120ebd08af, 0x0802f6c804030475, 0x3d5c7aa2ff02f101, 0xff01073c042b88ff, 0x14ff3d75a9f8ff02, 0x0d0316c804bd2f85, 0x3c9a92f6ff031107, 0x1f060dbced72c4ff, 0xe5ffbcef2bf6ff03, 0x0b0348010cbb1f88, 0xff0335ca04033a0e, 0xb32ed1ff3b195ffd, 0x1a3aff0343c804bc, 0x0d3cd67387ffbaf2, 0xff0355c704035a06, 0x384313ff3d360a6b, 0x9743ff03630b0bbc, 0x0c3d813096ff3c9d, 0x0703b40f0603f800, 0x0e03860008039401, 0xbca7e0d8ff03810d, 0x8f0b063b91e90bff, 0x85ff3d306f7aff03, 0x0d03a6060d3c53ce, 0xbc6e1df4ff03a100, 0xafc4043b7a68abff, 0x20ffbd3e34b8ff03, 0x0b03d81006bd4c19, 0xff03c56f0503ca0b, 0xede5c0ffbccbbb79, 0xc643ff03d301083b, 0x05bd8b566cffbd3f, 0xff03e50d0e03ea10, 0x376be2ffbbf8e7d8, 0x92beff03f33405bd, 0x0e3950b130ffbb0d, 0x060420000d04400f, 0xff040d010704120e, 0xbdf4beff3d2e96e7, 0x3488ff041b00073a, 0x11bcf68194ffbc28, 0xff042d1106043201, 0x3a4492ffbd4a6ecc, 0xbc39ff043b030e3b, 0x063c57b5b3ffbbf2, 0x050456c404046416, 0xbe18b29dff04511e, 0x5f0009bd6f45a0ff, 0x78ff3cb95db8ff04, 0xff046d130ebdc48e, 0x0476020d3e497c10, 0x61a0ffbd0d6e80ff, 0x420506bb55053c44, 0x3f0505132e0e059f, 0x160604afbf0404cf, 0x41ff049c090604a1, 0xbb167beaff399bdf, 0xc27873ff04aa0205, 0x060d3c1cad0affbc, 0x86ff04bc011104c1, 0x3c3049a9ffbc1bf7, 0xc4b530ff04ca010c, 0x00083c87044eff3d, 0x000904e59e0404f3, 0xff3b7378dbff04e0, 0x04ee4005bc1872e1, 0x9d0effbd92001eff, 0x40050505bb04bb32, 0xff3ccfb520ff0500, 0x050e2b0e3b9e64f3, 0x6f1dff38d09178ff, 0x0002055bae04be21, 0x0112052d4101053b, 0xffbc01372fff0528, 0x0536030b39428757, 0x3b69ffbc2bb82cff, 0x0107054d0706bcda, 0xff3a907c87ff0548, 0x0556000f3c29aae2, 0xdc8affbd1501e1ff, 0x0605057f060dbc6f, 0x03ff056c01050571, 0xbc43ec7dffbd19c8, 0xd62980ff057a330e, 0x3f05bbd6c965ff3b, 0xc9ff058c00120591, 0xbd081b50ff3c864d, 0x89c1c2ff059a0011, 0x100bbe4fcdd1ffbd, 0x011105eb5305062f, 0x010705bd190e05cb, 0xffba5dd242ff05b8, 0x05c6c0043b743844, 0x0bb6ffbb15b792ff, 0x020805dd0109bbd3, 0xff3bc0fcd2ff05d8, 0x05e60209bbbfe823, 0xf6bcff3a7b9742ff, 0x8304060f3601bca4, 0xa3ff05fc41040601, 0x3b10fa27ffbc2d4d, 0x907ff3ff060a000b, 0xa104bc16e803ffbd, 0xeaff061c3e040621, 0xbc910f6effbe8398, 0x1b1807ff062a5405, 0x120b3c1f5fbbffbc, 0x220e0657a7040677, 0x86ff06447b040649, 0xbcf6d8e1ffbc6487, 0x354898ff06524101, 0x0108bcbbc583ffba, 0xa3ff066440010669, 0xbd68dc5affbe1ce8, 0x29752fff0672010c, 0x9904bbba022effbd, 0x180e068d0108069b, 0xffbc30fe7dff0688, 0x06964805ba7f03e4, 0x398affbcbfb33cff, 0xa80406ad4305ba3b, 0xff3cbd8609ff06a8, 0x06b6190e3d8f31a0, 0xb3faff3c44d2ebff, 0x8b0507dbba043709, 0x0008070b0002074f, 0xb50406dd000606eb, 0xffbb1937b8ff06d8, 0x06e663053bfa20c3, 0x5178ffbc3459a3ff, 0x000f06fd6405bd8a, 0xff3c1105bbff06f8, 0x0706050bbac8257d, 0x2e7fff3ac43f85ff, 0xb404072f230e3bf0, 0x98ff071c89050721, 0x3c15cf32ff3b4ded, 0xefe1a3ff072ab504, 0x01113ca97ceeffbb, 0x64ff073c250e0741, 0xbc26b5faffbd2172, 0x1644b1ff074a020b, 0x00093c4da3baffbd, 0x070b0777220e0797, 0xb4ff07641f0e0769, 0xbd378d0dffbb83bf, 0x0163bbff0772b404, 0x230e3c7be5e2ffbb, 0x61ff0784000f0789, 0x3c24c394ff3d6723, 0xcf3780ff07922a0e, 0x170e3cf45834ffbc, 0x030b07ad000f07bb, 0xffbe11397fff07a8, 0x07b6030bbd8a451e, 0xf70affbb9bf549ff, 0x000f07cd190ebca0, 0xff3dccac64ff07c8, 0x07d6220ebb743c46, 0xfb8affbd015e5aff, 0x0108086b00093d07, 0x0a0b0807060d0827, 0x81ff07f4011107f9, 0x3b3c56beffbc3faa, 0x2156c6ff0802c104, 0x00023b1ad453ff3c, 0xe2ff081400120819, 0xbd517304ff3b8d3e, 0x26369fff0822070d, 0x5605bcee96ecff3c, 0x320e083d030b084b, 0xffbc1d9aeeff0838, 0x0846000f3ccc7d98, 0x6792ff3cd4a8acff, 0xbd04085d0112bd48, 0xffbc239414ff0858, 0x0866050b3ad905dc, 0x0ff1ffbca42afdff, 0x011108b36d053b6b, 0x060d088500020893, 0xffbc131705ff0880, 0x088e070dbd09992b, 0x1eaaffbd255a60ff, 0x350e08a5bc04bb8a, 0xffbe994a09ff08a0, 0x08ae340eba3e4c00, 0x8120ffba6fea00ff, 0x060d08d701123cab, 0xc5ff08c4200e08c9, 0xbc7d96daffba597c, 0x8d7a3fff08d20011, 0x040bbd2f54ffffbc, 0xd7ff08e4bf0408e9, 0xbc95c440ffbd7280, 0x8fe3d8ff08f2bb04, 0x0d0ebcb12484ff3c, 0xca040acf030e0d0b, 0x0a0b098a8e050a16, 0x8704092f090b0946, 0xabff091c030d0921, 0x3aa3d20bffbcb259, 0x62dc15ff092a9704, 0x0111bb567490ffbc, 0x10ff093c00080941, 0xbbd47010ff3bcda2, 0x6a000fbe710c6cff, 0x576704095c000709, 0xb0ff3dbb8770ff09, 0xff096501073c07b5, 0x8fa2c2ffbe0b453b, 0x770011097c130bbc, 0x30ffbba4213fff09, 0xff0985000c3ac585, 0x392ba8ff396abfeb, 0xb2a70409d2000f3c, 0x9f030d09a4030b09, 0x97ffbc05cb28ff09, 0xff09ada5043c082a, 0x0381eeffbba8d54b, 0xbfb90409c40112bd, 0x62ffbde97c56ff09, 0xff09cd0209bc5920, 0x1497c5ff3ca01188, 0xe8010909f60002bb, 0xfafdff09e3010c09, 0x0cbc1a0513ffbace, 0x3b0d45beff09f101, 0x08000c3c981a2aff, 0x86bfff0a03010e0a, 0x0bba835eb1ff3a7f, 0xbb0682ecff0a110b, 0x67020e3bb661fcff, 0x4295050a6201120a, 0x2f070b0a3400020a, 0x31ff3a99dd00ff0a, 0xff0a3d010c3c9e48, 0x1f31c8ff3be77d18, 0x4fcd040a540209bb, 0x9eff3bbed2f5ff0a, 0xff0a5dcc04bb3f0a, 0x2c6c14ffba9c9b22, 0x01113cf3e2a0ffbc, 0xcc040a8f060d0aaf, 0x28ff0a7c000c0a81, 0x3bd89d43ffbba45c, 0x961bffff0a8a0b0b, 0x0011bacf8e60ffbc, 0xd5ff0a9c96050aa1, 0xbc07cb69ffbafc91, 0x62894cff0aaa110b, 0x0209bb2eab88ffbc, 0x0b3d0013e0ff0ab8, 0xbdb9fc8cff0ac103, 0x2428a0ff0acacb04, 0x020dbc3ac240ffbd, 0x00080b6300070bef, 0x010b0aff070b0b1f, 0x5bff0aec00090af1, 0xbd88e414ff3aed32, 0x3cd51eff0afa9205, 0x040ebaed70c1ff3c, 0xc6ff0b0c9a040b11, 0x3e080a84ff3d89cc, 0x117f37ff0b1a070e, 0x9704bb495d58ffbd, 0x030b0b357b040b43, 0xffbd8066a2ff0b30, 0x0b3e9404bd178840, 0xd93bff3c05c987ff, 0x99040b55050bbdb9, 0xff3d8960dfff0b50, 0x0b5eb3043cf9dba1, 0x4b5cffbbebab18ff, 0x000c0babb9043c11, 0x90040b7db0040b8b, 0xffbbbf0889ff0b78, 0x0b86030b3c9d8144, 0xb079ffbd055f13ff, 0x000d0b9d0002bdab, 0xffb7601800ff0b98, 0x0ba6070ebd8bf2c3, 0x145affbcf032e2ff, 0xbc040bcf020bbb7b, 0xe0ff0bbc8e050bc1, 0x3c2a3500ffbca682, 0x3d29d6ff0bca9205, 0x9105bc87ef9cffbd, 0x1bff0bdc070e0be1, 0x3b9e7495ffbc85c0, 0x9b29bbff0bea030b, 0x8e053c3d5b1bff3c, 0x060d0c3b080e0c7f, 0xac040c0d00020c1b, 0xffbc3faa3aff0c08, 0x0c169a043c3841f3, 0xb858ff3caa4ee9ff, 0xa0040c2da3043b11, 0xffbbb0f670ff0c28, 0x0c36b3043cd2959f, 0xd867ffbc997ff9ff, 0x040b0c5f0a0ebb98, 0x7bff0c4c02090c51, 0xbe3d34f8ffbcb8fc, 0x17eaa4ff0c5a0002, 0x060d3d61a76dff3b, 0x78ff0c6cb2040c71, 0xbc06270cff3bcec7, 0x2af812ff0c7a0009, 0x000fbcabd991ff3c, 0x01080ca7030b0cc7, 0x34ff0c94a6040c99, 0x3b81d591ff3cce82, 0x6fce84ff0ca20007, 0xa7043caa3aceff3d, 0x68ff0cb4a6040cb9, 0xbd86c1a5ff3b58cf, 0x1de318ff0cc2060d, 0x010cbd1d97acff3c, 0xab040cdd01080ceb, 0xff3a1156d1ff0cd8, 0x0ce6000cba4e2596, 0xf8f3ffbb828895ff, 0xa7040cfdab043b9d, 0xffbb86da37ff0cf8, 0x0d06c6043d46b8a7, 0x248cffbbaab88eff, 0x00020f4bc8043b43, 0x01120da3c6040e2f, 0xbe040d3f8f050d5f, 0x8cff0d2cbb040d31, 0x3c5d0bd9ffbbf5a1, 0xc77295ff0d3a180e, 0x9105bcb6189fffbb, 0xefff0d4c0a0b0d51, 0x3c7ebf8dffbab997, 0x755795ff0d5a9205, 0x190e3a7f0572ffbc, 0xb7040d75170e0d83, 0xffbc750b3aff0d70, 0x0d7e030b3ca1bbdf, 0x627aff3d5ae3c5ff, 0x090b0d95220e3c0a, 0xffbd0042acff0d90, 0x0d9e230e3ce5b262, 0x6330ff3d0382fdff, 0x0b0b0deb140bbc0e, 0x040b0dbd070b0dcb, 0xff3c4e1250ff0db8, 0x0dc600073d8de89d, 0x0c29ff39df6364ff, 0x100b0ddd010cbce5, 0xff3d9871ecff0dd8, 0x0de600093d2feb52, 0xb28cff3e1785c4ff, 0x260e0e0f00083d2f, 0x77ff0dfc00070e01, 0xbd3515c8ffbbb9da, 0xf24a5bff0e0a280e, 0x8e053ca05da7ff3d, 0x2fff0e1c230e0e21, 0xbdd8c8b8ff3dbc92, 0xd6384dff0e2ac704, 0x010bbc70ed6cffbd, 0x190e0e7bc3040ebf, 0x170e0e4d01120e5b, 0xff3a81b764ff0e48, 0x0e560009bc90c95f, 0xd4cbff3d13031eff, 0x00090e6dba04bc19, 0xffbcebe7acff0e68, 0x0e76bb04be028c96, 0x8525ff3ccbcff3ff, 0x000d0e9f000cbb9d, 0x90ff0e8c95050e91, 0xbcc18098ffbd3b5e, 0x22e000ff0e9a0207, 0x0007bba64240ff3b, 0x3dff0eac020d0eb1, 0xbddbb50cffbd91a8, 0xdf8e6bff0eba2b0e, 0x010cbca64b60ffbc, 0x90040ee7b7040f07, 0x5eff0ed4130e0ed9, 0xbd9ff73cffbc3c22, 0x310aa2ff0ee29505, 0x8e05bd950682ff3a, 0xebff0ef400090ef9, 0xbc9ca03fff3c8223, 0x88891eff0f020109, 0x150ebc01ba3dff3a, 0x0e0e0f1dba040f2b, 0xffbcdc012bff0f18, 0x0f26050b3cd02809, 0xb5ddff3c385eb0ff, 0xc0040f3d170e3d39, 0xff3cdd76e0ff0f38, 0x0f46190ebd472112, 0x6f42ff3d552a1cff, 0x060d106bca04bb15, 0x00090f9b140e0fdf, 0x000c0f6d030b0f7b, 0xffbcaa3a6aff0f68, 0x0f76050bbd2c9262, 0xdb23ffbc9995eaff, 0x0e0e0f8d0109bd82, 0xff3cbbb8b2ff0f88, 0x0f969405bccaacb8, 0x0b7fffbb99ff6fff, 0x170e0fbf280e3c57, 0x7eff0fac00090fb1, 0xbd3f1521ff3c641a, 0x75a17aff0fba9005, 0x01113b47af4affbc, 0xc2ff0fcc00020fd1, 0x3cb388baffbc6572, 0x91b0c4ff0fda8e05, 0xc904bcbbbca9ff3d, 0x9005100700121027, 0xdeff0ff4250e0ff9, 0x3d9adc58ffbd027c, 0x17c40cff1002140b, 0x00073cc10d37ffbc, 0xc5ff101400081019, 0xbd2d7d3cffbdaac6, 0xf13cbeff10220008, 0x140e3bfa548dffbc, 0x0109103d0e0e104b, 0xff3c67bb7fff1038, 0x10460b0bbc77c993, 0xee72ff3cbcba81ff, 0x170e105d00113dd9, 0xffbcf6678bff1058, 0x1066030b3ceb61fa, 0x6489ff3a6fce94ff, 0x020810fbcd04bd44, 0x180e10971d0e10b7, 0x58ff1084140e1089, 0xbc62a3e3ff3add99, 0x119cfdff10920007, 0x250ebbba63beff3c, 0x0bff10a4000210a9, 0x3c88dfa3ffbbb82d, 0x46afeaff10b2cb04, 0x000fbbb16cc0ff3c, 0x020d10cd050b10db, 0xffbd57dda0ff10c8, 0x10d6070bbde13a62, 0x710cffbd40d608ff, 0x000c10ed00073c9c, 0xff3ad83fe2ff10e8, 0x10f60011bcacf3bc, 0x97a4ffbd19253aff, 0x000711439005bc2c, 0x00091115230e1123, 0xffbdb0805fff1110, 0x111e270eba0abba5, 0xfb0cff3d40ab63ff, 0x1d0e11358f05bc66, 0xffbcf3be07ff1130, 0x113e0b0b3cc95143, 0xf42dffbc8c0eeeff, 0x01111167280e3bf2, 0x42ff1154230e1159, 0x3c8e6314ffbad5f1, 0x9a3e22ff1162000f, 0x000c3c6df77fff3d, 0xa0ff117494051179, 0xbb8651a7ff3bc77d, 0x6588afff11829105, 0x0013bcbad2e1ff3a, 0x03e8000000080000, 0x116c000000010000, 0x8d05000000000000, 0xc3040484160e08ee, 0x7e05012c97040248, 0x8f04005c910400a0, 0x8b04002e8d04003c, 0xffb784ae7dff0029, 0x00370011b9c73df9, 0xd531ffbc7a70f9ff, 0x000d004e0e0eba91, 0xffbd1207f5ff0049, 0x0057150ebb8e9be5, 0x843eff3cb72009ff, 0x010900809604bcac, 0x66ff006d00020072, 0xbad21317ff3c3301, 0x4e081aff007b9504, 0x12053bc6bf07ffbc, 0x05ff008d000f0092, 0xbc30d99fffbd7331, 0xb8c788ff009b6905, 0x0109bc1a94f3ff3b, 0x000900c8010700e8, 0x29ff00b5050e00ba, 0x3b66bf87ff3909c1, 0x0ebce0ff00c3000f, 0x0207bb56b109ff3c, 0x54ff00d5040d00da, 0xbb351435ffbc3928, 0x0e7de3ff00e3000f, 0x0112bc14b00bffbd, 0x010e00fe020e010c, 0xffbbb90040ff00f9, 0x0107000c3bab28de, 0x2c29ffbc6b8598ff, 0x030b011e070ebb85, 0xffbc371a13ff0119, 0x01270a0e3c4b3713, 0x6bd1ff3d654b85ff, 0xb60401bc00023bee, 0x070d01589e040178, 0xb9ff01459a04014a, 0xbc25ab2affbbaee8, 0x49a771ff0153080e, 0xa0043b07cc3cff3d, 0xb1ff0165070d016a, 0xbd7a9970ff3cca93, 0x85a561ff01730111, 0xb7043c02b76aff3b, 0x080e018e0d0e019c, 0xffbc1fb487ff0189, 0x0197070dbd7f3faf, 0xc00bffbcc78444ff, 0x330501ae060d3d4b, 0xff3bdf191cff01a9, 0x01b7080ebcbcd75d, 0xcb75ffbbe06544ff, 0x11060204000c3c85, 0x1c0501d6000f01e4, 0xff3cfef6b0ff01d1, 0x01df0d0e3c59ff9d, 0xfc04ffba5fb6a9ff, 0xa40401f6000fbc0b, 0xff3c82d4dbff01f1, 0x01ff0b0ebc330460, 0xd741ffb9c8b433ff, 0x980402289b04bbb1, 0x9aff02150f0e021a, 0xbd1d927bffbb9339, 0x16bf77ff0223060d, 0x9c043ce3f3eeff3c, 0xc4ff02350112023a, 0xba6d95e2ff3ce284, 0x9da405ff0243070d, 0x01123c2f2c63ffba, 0x080e02dcc6040368, 0x030e027885050298, 0x65ff02650208026a, 0xbd1626c5ffbc9857, 0xffb288ff0273060d, 0x130b3ae03e6bffbc, 0x3fff02850008028a, 0x39a26e53ffbc8878, 0x988766ff02930002, 0x0e0e3b8e4ec4ff3c, 0x010702ae0b0b02bc, 0xffbc9f9211ff02a9, 0x02b7000cba6e2291, 0x7c2dffbc01784bff, 0x0b0b02ce0e0bbccf, 0xffbba8cc99ff02c9, 0x02d7070dbda78de2, 0x07edff3d351228ff, 0xca040324120ebcf6, 0xc70402f6c8040304, 0xffbb9ca2f6ff02f1, 0x02ff7d053ce49670, 0xfc4effbd266f02ff, 0x010c03160012bbf4, 0xffbc86966bff0311, 0x031f060d3c211cae, 0xf170ffbcbfcb2aff, 0xc704034885053d07, 0x7aff0335010c033a, 0x3d8d7349ff3d1c4b, 0x602dd8ff0343c804, 0xc9043c87b3b4ffbe, 0xb7ff03550207035a, 0x3d688060ffbc7c6a, 0x8c4061ff03630e0b, 0x000c3d0821e7ffbb, 0x010703b40f0603f8, 0x150e038600080394, 0xffbb5dbd49ff0381, 0x038f0b06bda9b118, 0xa046ff3d1ecab9ff, 0x000d03a6030b3c3e, 0xffbc7b8892ff03a1, 0x03af000f3c8365ea, 0x0734ffbc5faacaff, 0x0b0b03d810063b65, 0x5aff03c5030e03ca, 0xbcbe44e1ff3c8cfb, 0x2c98d5ff03d30108, 0x010bbd7acec2ffbd, 0xadff03e5020d03ea, 0xbd31d65bff3bdeee, 0x7d3339ff03f30008, 0x0d0e3a1e0402ffbb, 0xc604042013050440, 0x38ff040d030e0412, 0x3ce59c4dff3b631b, 0x95e9e5ff041b1306, 0x0007bb2b57b2ffbd, 0x76ff042d12060432, 0x3b1a27cbff3cbc65, 0xaf851cff043b0f06, 0xc404bb352d35ff3b, 0x01070456030b0464, 0xffbc1dd60cff0451, 0x045f1e05bd4c534c, 0xbe27ffbdf61220ff, 0x010c04760f0ebd89, 0xff3c64abecff0471, 0x047f0009bd395b85, 0xe6a0ff3cb18fbaff, 0x020806b25705bdb0, 0x0002051cc10405a8, 0x150604b8230504d8, 0x08ff04a50e0604aa, 0xbb56b1e2ffba57f1, 0xf542fdff04b30205, 0xbe043c33187cffbc, 0xb7ff04c5bb0404ca, 0x39ccf30bffb9ec6d, 0xca2482ff04d3050d, 0x39053ca92370ffbc, 0x0b0b04ee1b0304fc, 0xff3c8199d1ff04e9, 0x04f70c063d57137b, 0x0360ff3bd5541dff, 0x0006050e170ebbe2, 0xff3c9c57a4ff0509, 0x0517070dbc3f1578, 0xd35fff3afcab7cff, 0x5405056401123cc7, 0x510505362f0e0544, 0xff3d03bd9aff0531, 0x053fc304bc5fbaf6, 0x609cffbd08d094ff, 0x060d055655053bb9, 0xff3e057fb0ff0551, 0x055f56053daaa37e, 0xe15affbcf293ffff, 0x010c058801113c66, 0x1dff05750107057a, 0xbc9eb0caffbb64ca, 0x25787fff0583c404, 0x000c3b94418affbd, 0x18ff0595030d059a, 0x3c38835effbbe64b, 0x62a56dff05a3c204, 0x010c3cc87297ffbc, 0x000205f4cc040626, 0xb30405c6b50405d4, 0xffba0b5579ff05c1, 0x05cfb604bbda588f, 0x5c17ff3cc9fc93ff, 0x070d05e600123b06, 0xffba9afdd4ff05e1, 0x05efab043c8e4df2, 0xe0b1ff3c0a1b3eff, 0x310e06064c053a1b, 0xff3e0fd1bcff0601, 0x061854053e0542fc, 0x02c040ff06130012, 0x56053c751a80ff3c, 0xff3db668c4ff0621, 0x066e1d053d8a7a8c, 0x0640bc04064e1c05, 0xe97ceeff063b170e, 0x0002ba81a18bffbb, 0xff3ba77f1fff0649, 0x06600107bd29a2b2, 0x24ac75ff065b0b0b, 0x7e04bd272ad3ffb9, 0xffbd99be12ff0669, 0x06924101be187eae, 0x067f070d0684170e, 0xaa91ffbd1dc9cbff, 0x16ff068d40013d8e, 0x3cd64aadffbb4344, 0x069f230e06a4a404, 0xc509ffbd32cb68ff, 0xf9ff06ad2505bc3a, 0xbc8d3938ffbd90d2, 0x0746000c07d2060d, 0x06e2170e07020b0b, 0x06cf7a0406d40007, 0x7818ff3b18e9c1ff, 0x6fff06dd030b3bc5, 0x3c58ad4cff3b66f2, 0x06ef011206f4190e, 0x0278ffbc2cdcc8ff, 0x6cff06fda0043d02, 0xb9f01df5ffba45b5, 0x0718890407260c0b, 0x3edf4cff07137f04, 0xad04bb9c4e65ff3c, 0xffbcf9dcd6ff0721, 0x0738c004bd50cff3, 0x094ea8ff07332a0e, 0x00073ba2571cffbb, 0xffba36537fff0741, 0x078e220ebc51c24a, 0x07600002076ec204, 0x0f6d47ff075b1a0e, 0x140bbc3b57bcff3b, 0xff3b10a7edff0769, 0x0780000f3c929f12, 0xa62807ff077b0208, 0x8205bbbc70daff3c, 0xffbcd51bd3ff0789, 0x07b2330ebbc64eea, 0x079f010907a40e0b, 0x9f42ff3baa7382ff, 0x1bff07ad240ebca1, 0x3bf23c78ff3d1c1a, 0x07bf020707c40006, 0x0e40ffbb82228cff, 0x59ff07cdc2043b87, 0xba9322e2ffbda88c, 0x081e001208620008, 0x07f0310e07fe070d, 0xbb4e8cff07eb1e0e, 0x00073bee5115ffbb, 0xffbb4f34abff07f9, 0x0810070bbd08988b, 0x493a2fff080b0002, 0x1f0ebaade220ffbc, 0xffbc90275dff0819, 0x0842b304bd36c429, 0x082f170e0834000c, 0x3d31ffbcec5c15ff, 0x51ff083d170ebbb0, 0x3cd56e58ffbcccfe, 0x084f230e0854090b, 0x91beff3c60f724ff, 0x5aff085d0002bc89, 0xbc6b22f7ffbd7264, 0x088a180e08aa1a0e, 0x08778b04087c020b, 0x58c3ff3c17691dff, 0xbeff08850007bcfe, 0x3b3f2c81ffbc44e1, 0x08970012089c000c, 0x2c75ffba33a79fff, 0x1bff08a500123cf9, 0x3d994ea9ff3d054b, 0x08c00c0b08ce1e0e, 0x8276c5ff08bb000f, 0x1c0ebc4717fcff3d, 0xff3d008c71ff08c9, 0x08e00107bd814efa, 0x0f5827ff08db010c, 0x070bbc3eb7fcffba, 0xff38811537ff08e9, 0x0d020d0e3c495a9b, 0x09c563040ae1030e, 0x0946000f098a010e, 0x09185c040926020d, 0x3136a6ff0913030b, 0x61043c720ea7ffbb, 0xffbd86181aff0921, 0x09385f043bbe8ea6, 0x47af26ff09335504, 0x000ebd32ba1aff3c, 0xff3ca41828ff0941, 0x096a030b3df45f8e, 0x0957000c095c0112, 0x669dff38aad152ff, 0xdfff09650007bbad, 0xbae8f7c0ff3bce15, 0x09779005097c090b, 0x8e62ffbb2e22a9ff, 0xa4ff09858e05bc4c, 0xbbf71d6dffbc9c7d, 0x09a9010b09c00007, 0x099f8e0509a40008, 0xcbadff3bddec00ff, 0x0bbd38c330ffbdb6, 0xff09b6020e09bb04, 0xadbd28ff3c3aea90, 0xb0ffbd8b6164ffbc, 0x040a55020d3c9a3c, 0x0b09f190040a11a4, 0xff09de900509e301, 0x4fac44ffbca16624, 0x44e8ff09ec8104bd, 0x12bc3b1efcff3b42, 0xff09fe0a0b0a0301, 0x5ff303ff3c06cb63, 0x8b37ff0a0c0009bd, 0x093a6afe33ff3de9, 0x0c0a27070b0a3500, 0xbc229d40ff0a2200, 0x308f05bd490289ff, 0x13ffbded7464ff0a, 0x090a47050bbd747f, 0xbd005caaff0a4201, 0x500002bb7c9f63ff, 0x55ffbceb2fe3ff0a, 0x070a9d000f3d0c0e, 0x0c0a6f93050a7d00, 0xbd275b57ff0a6a00, 0x7899043c4b47fdff, 0x56ffbcb712ebff0a, 0x0c0a8f99043be412, 0xbc1754ddff0a8a00, 0x98020ebd9bae6fff, 0x8bffbbd57654ff0a, 0x0e0ac1020e3ca8d7, 0xff0aaebb040ab301, 0x853e28ffbae3b796, 0x6feaff0abc00123b, 0x08ba8be5baffbc12, 0xff0ace060d0ad300, 0x7bc72fffba97ae2e, 0x0626ff0adc010c3b, 0x0dbc1e6599ffba12, 0x080b6c00070bf802, 0x050b1195040b3100, 0xff0afe070e0b0395, 0x4703dbff3ca07aa5, 0x0534ff0b0c01123a, 0x05bdc86543ff3bdc, 0xff0b1ea9040b2390, 0x81a5d2ff3d019906, 0x5e7aff0b2ca704bb, 0x043a0d2e87ffbcf1, 0x020b47030b0b4c7b, 0xbd53df41ff0b4200, 0x6100ffbd8064d5ff, 0x97040b5e050bbd08, 0xffbaf24f77ff0b59, 0x0b67a7043cff7498, 0x5717ffbcd32221ff, 0x030b0bb4040e3b81, 0x02070b869a040b94, 0xff3c1ee976ff0b81, 0x0b8f0207bc4ef420, 0xbb20ff3d2ca464ff, 0x01070ba6000d3cf7, 0xff3d4e611bff0ba1, 0x0baf87043ce24240, 0x5cf3ff3d197de0ff, 0xb3040bd8070e3da3, 0x8eff0bc5030b0bca, 0xbd58a976ffbc9954, 0x5c00b8ff0bd30208, 0xa704bd08e219ff3b, 0x67ff0be59b040bea, 0xbd6340f2ffbb9141, 0x8bff80ff0bf30112, 0x8e053bb6a20fffbd, 0x060d0c44080e0c76, 0x9a040c16b1040c24, 0xff3bf74d2cff0c11, 0x0c1f060ebbe34c25, 0xea52ff3d1200dfff, 0xa0040c36a3043b94, 0xffbb9f4431ff0c31, 0x0c3f00023cbd86a6, 0x0deeffbc864986ff, 0xba040c56040dbb74, 0xffbe14f884ff0c51, 0x0c68ca04bdc23d98, 0x504403ff0c63a204, 0x00083655a7c4ff3c, 0xff3d1cac18ff0c71, 0x0cbe000f3c75e232, 0x0c9002090c9e030b, 0x34924eff0c8b0108, 0x070e3d224762ff3c, 0xffbda83987ff0c99, 0x0cb0a704bc57fbc2, 0x7eda0bff0cab0002, 0x060d3b9b787cffbd, 0xff3c0e1919ff0cb9, 0x0ce2010cbd0dd54c, 0x0ccfab040cd40108, 0x886fff3a02ce33ff, 0xfcff0cdd140bba39, 0xbc333aebff393d58, 0x0cef00070cf4cb04, 0x47d2ff3b3c9ce7ff, 0x2cff0cfd0009bbf0, 0x3b3ab514ffbcdc22, 0x0e1d91050f30000f, 0x0d5601090d918f05, 0x0d282a0e0d36c204, 0x10a4bdff0d23280e, 0xbd04bd22b8c5ff3c, 0xff3d81889fff0d31, 0x0d48cd043c0cf627, 0xb6d512ff0d43310e, 0x030b3ce29374ffb9, 0xffbd9e87caff0d51, 0x0d7a230e3c93584e, 0x0d6700020d6c140e, 0x2122ff3c9ddb51ff, 0x39ff0d75170ebc4e, 0xbcbe3be2ffbdba08, 0x77325cff0d83c504, 0x354dff0d8c020d3e, 0x073d600c02ffbb0c, 0x040db9070b0dd900, 0xff0da6b0040dabb2, 0x89c5e4ffbb67c43f, 0x43deff0db400083d, 0x04bb02d73bffbd62, 0xff0dc6b7040dcbc9, 0xb031c2ffbac3b7b9, 0x0ca6ff0dd400023c, 0x043c7daf12ffbcde, 0x0b0def01120dfdaa, 0x3ca8b542ff0dea06, 0xf80207bce391fbff, 0xd8ffbcc769a0ff0d, 0x0e0e0f220ebda454, 0x3c22fb4aff0e0a1d, 0x18c9043d079b21ff, 0xa5ff3c58b978ff0e, 0x040eadc504bc3503, 0x120e49000d0e69c4, 0xff0e360a0b0e3b01, 0xefc5f8ff3c872896, 0x2db4ff0e44a304bc, 0x0ebbd6bbf1ffbd1a, 0xff0e56c3040e5b2a, 0x84c619ff3c5d30fd, 0x73cdff0e642b0ebc, 0x0bbd115b97ff3e2d, 0x050e7f00070e8d03, 0x3e4524dfff0e7a95, 0x88170e3c82cb50ff, 0x85ffbd417ac0ff0e, 0x050e9f00073d60fd, 0x3d0b273cff0e9a94, 0xa8050bbcd3f870ff, 0xe0ffbda3e4ccff0e, 0x040ef50109bd2436, 0x0e0ec7cb040ed5cc, 0xbb936cdaff0ec231, 0xd000023dfa193eff, 0x30ffbd8e2529ff0e, 0x070ee7330ebd0c2f, 0x3d546f14ff0ee200, 0xf0340e3c6534cfff, 0xc9ff3cd399d8ff0e, 0x0b0f199605bd8d7b, 0xff0f0694050f0b03, 0xd03facffbd865117, 0x8f55ff0f14cb04bc, 0x09bcd3eb3dff3c87, 0xff0f26020d0f2b02, 0xa5ea68ff3e041708, 0x00023d286310ff3d, 0x8e050fc48f051050, 0xb8040f60ca040f80, 0x01ff0f4db4040f52, 0x3cd43ad2ffbbd6ba, 0x92c6d9ff0f5bc204, 0xcb04bbd2ca01ffbc, 0x80ff0f6d010c0f72, 0x3d9536bfff3c392c, 0x1826d2ff0f7b0007, 0x090b3c87dd7effbd, 0xc1040f96cb040fa4, 0xffbb940cb6ff0f91, 0x0f9f010cbc82f23c, 0x6b9fffba281ec9ff, 0xcc040fb601073d2f, 0xffbcc46909ff0fb1, 0x0fbf220e3a6e305a, 0x63e7ffbd012675ff, 0x9405100c010cbd8b, 0x91050fde93050fec, 0xff3bfc00cdff0fd9, 0x0fe7c104bbb77f23, 0x33faffbc48bec3ff, 0x00080ffe0b0b3c97, 0xff3aee148dff0ff9, 0x10071d0ebc099d1a, 0xe9a4ffbbe0a4efff, 0x180e10301d0ebcd2, 0x4eff101d140e1022, 0xbd24c4afff3b9140, 0xa6a0f7ff102b0009, 0x9405bd231ff4ff3c, 0x69ff103d93051042, 0x3d3aac7effbcf7bf, 0x129db2ff104b0012, 0x000cbd2826e2ffbe, 0x070b109c8e0510e0, 0x0208106e060d107c, 0xffbb7b1d5bff1069, 0x1077c6043c3a1c6a, 0x23a1ffbc867444ff, 0xc104108e230ebbb1, 0xff3c81ad24ff1089, 0x1097c704bb477397, 0x8f86ff3d38932fff, 0xcc0410c0190e3c86, 0xa8ff10ad0b0b10b2, 0xbb8a153dff39557d, 0x195d39ff10bb0e0b, 0x1f0e3b240b43ffbc, 0x0fff10cd010710d2, 0x3b27cf72ffbbf241, 0x22b5dbff10db060d, 0x220ebbfcdb1fff3a, 0x170e11081c0e1128, 0xfcff10f5140e10fa, 0xbc359f06ff3c1ccd, 0x9041a9ff11030009, 0x1d0eb9afe5d6ff3c, 0x2bff11150008111a, 0xbd0441b1ffbc3fdb, 0x1064fdff1123060d, 0x060d3d6de164ffbc, 0x0009113e250e114c, 0xff3d3ed0cdff1139, 0x11470112bc4a4969, 0xbb91ff3b8a70fdff, 0x0012115ecc04bce1, 0xff3ccb596dff1159, 0x1167230ebcab9701, 0xfaa9ffbdf84102ff, 0x0008000000133b45, 0x0001000003e80000, 0x0000000011510000, 0x160e08a68d050000, 0xaf0402481906042a, 0x5b0400a08505012c, 0x000f003c5304005c, 0xeeff0029070d002e, 0xbba80dddff3a5c93, 0x3391deff00373203, 0x010bba95104effba, 0x52ff00492c05004e, 0xbc0f157eff3bc42a, 0xd0517cff0057000d, 0x02113a6dab53ff3c, 0x14060072ae040080, 0xff3a91704fff006d, 0x007b070dbb0d1870, 0x93abff3c40299eff, 0x010800921205bcfc, 0xff3d8b8258ff008d, 0x009b00083c16a762, 0x7587ff3c96bbd4ff, 0x011200e80207bc16, 0x070e00ba001200c8, 0xffba54f5ceff00b5, 0x00c3050ebc21b3f6, 0x17c9ffbac05538ff, 0x000700da030d3b94, 0xff3b4b694aff00d5, 0x00e3a504bca1cba4, 0x969bff3c43ac4cff, 0x050e010c000cbbc0, 0x1cff00f9950400fe, 0xbb447f0effbc3247, 0x7582d3ff01077804, 0x000f3bd27103ffbd, 0x7dff01190002011e, 0xbd0b045bffbe0610, 0x93fb61ff0127a404, 0xb204bbd36991ffbc, 0x050b0178000201bc, 0x0009014a0d0e0158, 0xffbd2ef958ff0145, 0x015301093bbc0d8b, 0x2a75ff3b32fceaff, 0x0505016a010cbcee, 0xffbd73f710ff0165, 0x01730a0e3c3f300b, 0xc45aff3b7d0250ff, 0x5805019c060d3d69, 0x30ff0189b104018e, 0x3ccc4499ffbbd1f1, 0xab3788ff01970008, 0x070dbccce4e6ffbb, 0x7fff01a9100e01ae, 0xbd173853ff3c5bc5, 0x603730ff01b7100b, 0x0011bd7531c5ffbc, 0x800501e401070204, 0x95ff01d1000901d6, 0xbc92105dff3cfbf3, 0x195490ff01df0009, 0x010cbb5bbc45ff3c, 0x3aff01f10e0e01f6, 0x3b9def1effbc0542, 0x673d68ff01ff070e, 0x1e053c8d8729ffbc, 0x000c021a020d0228, 0xffbc3e2823ff0215, 0x022314063a1f1aff, 0x7737ff3c24fb97ff, 0x100b023a00023ac0, 0xffbbd129c7ff0235, 0x02430012bc8f368a, 0x67d2ff3d7249deff, 0xb1040368110ebb22, 0x9b040298030b02dc, 0x000c026a010e0278, 0xff3bb06705ff0265, 0x0273010bbbadf212, 0x72fbff3b6065f6ff, 0x070e028a0705bc55, 0xffbd6cbf78ff0285, 0x0293030ebc446824, 0x49c5ffbb6df1caff, 0xab0402bc010e3cfa, 0x55ff02a99d0402ae, 0xbc9d953fffbb7217, 0x1f3dedff02b7000f, 0x000fbb9e878fff3d, 0x79ff02c9720402ce, 0xbd632a7cff3bd454, 0xd9124eff02d70007, 0x000dbc801201ffba, 0xb8040304030e0324, 0x2fff02f1030b02f6, 0xbdade655ffbcf3f2, 0x388b5fff02ffcb04, 0x030bbcb09ef6ff3b, 0xe8ff031100070316, 0xbae4e555ffbd8224, 0x9919f3ff031f0c05, 0x00083b4b2d00ff3d, 0x0002033a1a050348, 0xffbca54811ff0335, 0x0343000bbb85e76f, 0x3feeffbd0cede8ff, 0x010d035a03053ba4, 0xffbcf05e07ff0355, 0x0363000fbb409b32, 0x76b6ff3c2abc68ff, 0x9c0403e6c2043a24, 0x03050394000703ab, 0xd0ff0381070b0386, 0xbbcbefebff3cad1c, 0x83b2b8ff038f0605, 0x02073cd20d60ff3d, 0x95ff03a1960403a6, 0xbc909668ffbbf0e2, 0xc6130ebbe28e95ff, 0xbc090503c1020703, 0x37ff3d440650ff03, 0x3d83f5d3ff3d8f5a, 0x03d3010b03d8bf04, 0x6834ff3d857b59ff, 0x41ff03e100073caf, 0x3d4c92b1ff3d865c, 0x03fc0107041c2505, 0xae4e8bff03f7c604, 0x1005bb8dcd95ff3b, 0xb5ff0409010b040e, 0xbb960cc0ffbb8a67, 0xabf5d5ff0417010b, 0xc604bbd4c3ebffbb, 0xff3cc822a1ff0425, 0x066a5705bbe55b80, 0x04c24a05054e1106, 0x045e9804047ec004, 0x044b000f04508704, 0x7898ff3a85e398ff, 0xf6ff04591b0eba8d, 0x39d1680dff3c01f1, 0x046b9c040470270e, 0xb265ff3c08d70eff, 0x8eff0479bd043b67, 0x3c053ba9ffbb5384, 0x0494011104a20208, 0x199a19ff048f0112, 0x030bbc3138a2ff3c, 0xffbc016e68ff049d, 0x04b41d053ca35abf, 0xefbc83ff04af0107, 0x0112bc50e21aff3c, 0xffbb1cc8bdff04bd, 0x050acc04bc9342cf, 0x04dcbe0404ea5305, 0xbbcf9cff04d7120b, 0x00063b422ad2ff3a, 0xff3bfc861dff04e5, 0x04fcac04bd230d4f, 0xc719fcff04f73701, 0xb704bc238ef0ff3a, 0xffbc0a078cff0505, 0x052e010c3bdba40f, 0x051b020705204c05, 0x4c7aff3df95f70ff, 0x93ff052902073e19, 0x3dc53c68ff3d4ea0, 0x053b310e05400108, 0x6e10ffbd8d503cff, 0x90ff05490002bdae, 0xbc58e94aff3cecc5, 0x059a010d05de030b, 0x056c280e057a0002, 0xa454ecff05678b04, 0x000cbb19f255ffbc, 0xffbc986c4eff0575, 0x058c6404bd6b77aa, 0x98a43aff05870008, 0x8804bd862ad7ffbd, 0xff3c9f5b67ff0595, 0x05bea404bd0115a4, 0x05ab000705b07f04, 0x321bff390563c0ff, 0xa9ff05b9000bbcfa, 0x3cad8d68ffbc9f90, 0x05cb011105d0a704, 0x6a51ff3c105897ff, 0x0fff05d9a904bd9c, 0x3a90097cffbc8df2, 0x0606040d0626200e, 0x05f38b0405f8000c, 0x4b31ff3c394f82ff, 0xe1ff0601000fbc19, 0xbbacfcf8ff3cb6f3, 0x06131a0e06181306, 0x64c0ff3b5d961dff, 0xe8ff0621b004bc8f, 0xbc0cee03ffbcc9b6, 0x063c0605064ab304, 0x423148ff06377c04, 0xa504bc9677faff3c, 0xffbd7b9ca4ff0645, 0x065c000fbc6cedef, 0x9130bdff0657000c, 0x270e3cfada1dff3a, 0xffbc5ee24fff0665, 0x078a1c0ebae88693, 0x06bab20406fe5b05, 0x068c9b04069aa204, 0x2ffb57ff06878804, 0x01123c16bb15ffbb, 0xffbd048419ff0695, 0x06ac00123ce9469c, 0xc17ffeff06a7a604, 0xb104bcd53812ff3a, 0xff3cc5b0eeff06b5, 0x06deb3043dd134ba, 0x06cb001206d05905, 0x8563ff3d8d96d5ff, 0xbeff06d900113e2e, 0x3d4f0a70ff3c2b39, 0x06ebba0406f0bb04, 0x7fb6ffbb557e5eff, 0x2fff06f90f0bbdb1, 0x3d592c36ff3c1976, 0x0726020d0746ae04, 0x071364040718000d, 0x2e3bff3c1827c4ff, 0x5eff0721010d3dac, 0x3c3c4d3cffbd8573, 0x073301090738040b, 0x2d10ffbb8ade9eff, 0xcfff07411b0ebcc4, 0x3c776e23ff3b1ebd, 0x075c0002076a170e, 0xa51e80ff07570012, 0x7c05bc9362c8ff3a, 0xff3bceb237ff0765, 0x077c010cbb9804d7, 0xa3102aff0777140b, 0x00093c9bc85eff3b, 0xff3d3769b2ff0785, 0x081a1e0ebc0cd38b, 0x07b6030d07d6100b, 0x07a31d0e07a88904, 0xfb09ffbd5776c5ff, 0x1fff07b104063db7, 0x3bad4346ffbcdf0b, 0x07c3010c07c80a0b, 0x491bff3a061cb8ff, 0x60ff07d1010cbcd1, 0xbd60f062ffbcbe4b, 0x07ec000807fa000c, 0xcf29eaff07e7060d, 0x140bbc2e5225ffb9, 0xffbc09d480ff07f5, 0x080c0008bd5a956c, 0x81a82aff08070011, 0x8405bce1b162ffbd, 0xffbdd2f6b8ff0815, 0x08628805bd8a8b05, 0x0834070d08428305, 0x94d43cff082f140b, 0x080b3bb084ccff3a, 0xffbbf739deff083d, 0x08541f0ebd0377c9, 0x22f2ccff084f000c, 0x220e3d524846ff3c, 0xffbc5d43faff085d, 0x0886250e3b3e810b, 0x0873200e08780009, 0x557fff3ce94088ff, 0x46ff0881b8043af9, 0xbc8ac934ff3bcf9f, 0x0893020d0898000f, 0x3839ff3bacecdcff, 0x95ff08a1010cbc4b, 0xbc815f25ffbaaf9b, 0x0aa2030e0cd50d0e, 0x0942010e09866304, 0x08de000c08fe4b04, 0x08cb020d08d09205, 0x1dccff3c1f265fff, 0x98ff08d99405bc6d, 0xbcd9fa60ffbcda9b, 0x08eb010b08f04804, 0xcb40ffbd0cf84cff, 0x74ff08f98f05bbd7, 0xbda64ca8ffbd597c, 0x0914001209220111, 0xa892a9ff090f070d, 0x030bbd6d6eb6ff3b, 0xffbaf46d0eff091d, 0x09340007bbed5f19, 0x0bc709ff092f6104, 0x000c3d07fac2ff3c, 0xffbc577c00ff093d, 0x096f5f043d137d97, 0x095c030b096a9005, 0x7cff33ff09570008, 0x020ebd264948ff3a, 0xffbd7ae280ff0965, 0x7b8b3cffbcb2fa00, 0xbb00ff09788e05bd, 0xb4ff098161043bc7, 0xbbee3500ffbe3071, 0x09d200080a16030d, 0x09a4990409b2a404, 0xd17205ff099f9704, 0x000cbd1ff9a6ff3a, 0xff3d91f2bbff09ad, 0x09c401093cb38f78, 0xd0ef17ff09bf090b, 0x030bbd50d3afffbc, 0xffbb1bbf82ff09cd, 0x09f6000e3d2e3e9c, 0x09e30b0b09e80007, 0xc1b4ff3b27e38cff, 0x6fff09f1030bbcab, 0x3b16f4d8ff3c9d72, 0x0a0301080a08070b, 0x3ce3ffbcf5d2d9ff, 0x42ff0a11020dbd73, 0xbe2c0ca2ffbdb046, 0x0a3e01120a5e0002, 0x0a2b010c0a30bd04, 0x5484ffbaeca0b1ff, 0xccff0a39c004bc38, 0x3a950b3aff3c9124, 0x0a4b93050a50030b, 0x7d31ff3c8bae13ff, 0xc1ff0a599904bc3e, 0x3c22e6ecffbd1cef, 0x0a74000f0a82000c, 0x126aabff0a6f6b04, 0xa504bbb8717bff3e, 0xff3ad0636eff0a7d, 0x0a94000fba698b85, 0x1beaa6ff0a8f9c04, 0x060d3c4a5688ffbc, 0xffbb906b9eff0a9d, 0x0bb9020d3b3fee70, 0x0af2020b0b36070b, 0x0ac400070ad20009, 0xec392eff0abf080e, 0x000d3cb20ed0ffbb, 0xff3c2e1455ff0acd, 0x0ae49005bcb6ee86, 0xb68c8dff0adf9904, 0x91053d81f7b3ffbc, 0xffbe54d158ff0aed, 0x0b167b04bd922a93, 0x0b03000c0b086704, 0x88adff3cb144f1ff, 0x4dff0b110112bd33, 0xbc3e15a0ffbd3eef, 0x0b23b0040b28000c, 0x1d27ff3cc6185aff, 0xc5ff0b31030bbd09, 0xbbc1dba7ff3c0293, 0x0b5e9a040b75040e, 0x0b4b01070b509005, 0xe4c0ff3d20b680ff, 0x28ff0b5975043c05, 0x3d4e6275ff3dab57, 0x0b6b02070b709505, 0x27b0ff3d9d005cff, 0x043dfae878ff3d7e, 0x080b8b070e0b99b9, 0xbd2c4326ff0b8601, 0x947f043ccc21e4ff, 0xfcff3d0193cfff0b, 0x080bab0009bc8550, 0x3c211b4aff0ba602, 0xb49505bb9452f3ff, 0x3bff3d19b098ff0b, 0x0e0c498e053d5126, 0x020be5010c0c0508, 0xff0bd2a3040bd700, 0x4d2d2fff3ad693f1, 0xf378ff0be0060dbc, 0x09bb219f2cff3be3, 0xff0bf2c4040bf700, 0x97a6f3ffbcadbad1, 0x5e0bff0c00b8043b, 0x0e3cc7acc3ffbba3, 0x040c1b030b0c290a, 0xbc1e2f8fff0c16af, 0x240002bd4d1688ff, 0x1eff3ad178dcff0c, 0x0b0c3b060d3d4425, 0xb9978620ff0c360b, 0x44070dbc5f8069ff, 0x2aff3c0f6c0aff0c, 0x0b0c91000fbd09b4, 0x050c63ca040c7103, 0x3c2225ebff0c5e96, 0x6c00023d8b3c85ff, 0xd7ffbde908bfff0c, 0x040c830007bce6ad, 0x3d5220b9ff0c7e99, 0x8cae043bc33745ff, 0x23ffbd68e21fff0c, 0x080cb5010cbb8ec1, 0xff0ca2ab040ca701, 0x26faa3ff39eb7308, 0x691dff0cb0140bba, 0x04bc214ea7ff392a, 0xff0cc2010b0cc7ab, 0xd49638ffbd0e21df, 0x2638ff0cd0c6043c, 0x0f3b4e0f2cffbb9d, 0x050df991050f1500, 0x040d2901090d6d8f, 0x040cfbba040d09c2, 0x3bdca355ff0cf6b9, 0x04bd04bd5ae0fbff, 0x52ff3d18bb8eff0d, 0x040d1b01083beb03, 0xbb0de44fff0d16c8, 0x2401073c83bda2ff, 0x40ffbceaf871ff0d, 0x0e0d4d230e3c390e, 0xff0d3aba040d3f14, 0x232290ffbc88f5ed, 0x6dcbff0d48170e3c, 0x0ebcab35e0ffbda7, 0xff0d5ac8040d5f28, 0xc48100ff3d936289, 0xfbfbff0d682b0ebc, 0x073d73e284ffbd00, 0x0c0d95070b0db500, 0xff0d822a0e0d8700, 0x2a1c6fff3d5150ba, 0xc07cff0d9000083e, 0x04bb005aadffbd22, 0xff0da2bb040da7c9, 0xa8895eff3b9672e7, 0xd826ff0db000023c, 0x0d3c6450d2ffbcc7, 0x040dcb1d0e0dd902, 0x38ff691fff0dc6bf, 0xd4220ebcb27f68ff, 0x99ff3d1a26b6ff0d, 0x0e0deb2b0e3aecad, 0x3cc391f9ff0de622, 0xf4c704bcd45a92ff, 0x6aff3e78c068ff0d, 0x040e89c5043d5411, 0x120e25000d0e45c4, 0xff0e12060b0e1701, 0x2f3ae1ff3c84d35f, 0xac1aff0e209f04bc, 0x0ebbdca823ffbd10, 0xff0e32230e0e372a, 0xcbf093ff3c46a01f, 0x1b6cff0e402b0ebc, 0x0bbd02d26aff3e1c, 0x050e5b00070e6903, 0x3e316dfcff0e5695, 0x64140e3c6b6de0ff, 0xa2ffbd2a37c3ff0e, 0x050e7b00073d18f7, 0x3cfa79d8ff0e7694, 0x84050bbcbec5f0ff, 0x00ffbd93811cff0e, 0x040ed10109bd13cb, 0x0e0ea3cb040eb1cc, 0xbb84aed4ff0e9e31, 0xac2b0e3de116b4ff, 0x9cffbd62bc87ff0e, 0x0b0ec3330ebcc122, 0x3d4403e4ff0ebe05, 0xcc340e3c52f4f7ff, 0x9dff3cbe70d8ff0e, 0x020ef5c704bd7eab, 0xff0ee292050ee700, 0x1b4df0ffbd54d820, 0xbba2ff0ef002093d, 0x05bda4c3f0ffbe02, 0xff0f022a0e0f0796, 0x8996b4ffbc56106f, 0x485dff0f100209bd, 0x023d178c60ff3dd0, 0x0b0fa98f05103500, 0x0b0f45030b0f6505, 0xff0f32000c0f3702, 0x9b7970ffbbab2ebf, 0x6250ff0f40c204bc, 0x0cbbffbc6cff3a2b, 0xff0f528e050f5700, 0x59c797ff3d266e82, 0x33c6ff0f6000113c, 0x04bbf8dae0ff3d21, 0x080f7b230e0f89ca, 0xbbe04c7bff0f7600, 0x84290ebc93d06eff, 0x27ffbd5f31f8ff0f, 0x040f9b8e05bb9a8b, 0x3ca45f12ff0f96cb, 0xa40012bb567c08ff, 0x08ffbaa0ba89ff0f, 0x050ff1010cbd1c0c, 0x050fc393050fd194, 0x3be2cd74ff0fbe91, 0xccc104bba525a4ff, 0x38ffbc34abb1ff0f, 0x080fe30b0b3c8815, 0x3ad64595ff0fde00, 0xec0008bbf7b456ff, 0x4cffbbe7d61fff0f, 0x0e1015200ebce7c2, 0xff1002150e100718, 0x0fc440ff3777d123, 0xda0dff10100009bd, 0x0ebd0ab1baff3c95, 0xff10220007102722, 0x5c847bffbe02485f, 0xf1a7ff1030060dbd, 0x0cbd2a1377ffbbf8, 0x0810810b0b10c500, 0x041053c204106100, 0xbab52baeff104ebd, 0x5cc5043bed16dbff, 0xb0ffbbc3d01bff10, 0x0e10730007b9e071, 0x3bbc62aaff106e1c, 0x7c280eba315bf2ff, 0xa2ffbbf6d058ff10, 0x0410a50e0b3be2d3, 0xff109200081097c3, 0x16a28effbc9a2385, 0xef93ff10a0070dbd, 0x073bfcf78cffbd49, 0xff10b28f0510b701, 0xb7e789ff3b8aa6ca, 0x728bff10c01c0ebb, 0x073bd84217ff3cb2, 0x0810ed0012110d00, 0xff10da050b10df00, 0x2d5014ffbc58229d, 0x9e80ff10e8140e3c, 0x083c9087b2ff3d71, 0xff10fabd0410ff00, 0x3c7d3bffbb903359, 0x8b67ff1108c9043b, 0x0b3cc4feadff3b21, 0x0b11231f0e11310e, 0xbbe8ae94ff111e0b, 0x2c030bbdf5ad1dff, 0x65ffbc4f21e3ff11, 0x0e11438e053cafcc, 0xbd1bcc93ff113e1d, 0x4c1c0e3cfe8b70ff, 0xcbff3ce9620fff11, 0x08000000133aed5f, 0x01000003e8000000, 0x00000011b4000000, 0x0e08b88d05000000, 0x0402481906043c16, 0x0400a08505012caf, 0x0f003c5304005c5b, 0xff0029070d002e00, 0x973fa9ff3a468514, 0x9d16ff00373203bb, 0x0bba8628ceffba21, 0xff00490506004e01, 0x4342c2ffbbf32687, 0x57d4ff00570b063c, 0x113c586a14ff3a29, 0x060072ae04008002, 0x3a82e49bff006d14, 0x7b070dbafdf840ff, 0xb2ff3c2cf246ff00, 0x0800921205bce351, 0x3d7b1dd3ff008d01, 0x9b00073c0796a8ff, 0x51ff3c84299dff00, 0x0e00e89604bc1b40, 0x0700ba050e00c807, 0xba1e5729ff00b502, 0xc3000cbc6a19f6ff, 0x13ff3bdc0a26ff00, 0x0c00da080e3ccb46, 0xbbcde46dff00d500, 0xe3000cbcfe0050ff, 0x89ff3aaddcf3ff00, 0x04010c0b0e3c8bf9, 0xff00f9020d00fe9b, 0xbbad73ffbda29bc2, 0x3775ff01070a0ebb, 0x04bd61536bff3a8e, 0xff01190009011ead, 0xf0145cff3c0db33d, 0x63ebff0127070dba, 0x04bd044009ff3a8a, 0x0b0178000201bcb2, 0x05014a0d0e015804, 0x3ba7643cff01453e, 0x53000cbd24adcdff, 0xb2ffbc89edb6ff01, 0x0e016a010c3b8b14, 0xbaeff784ff016506, 0x730b0e3c6ae66aff, 0x68ff3b21bf25ff01, 0x05019c060d3d4c46, 0xff0189000d018e55, 0x8e2a36ffbcd8a89b, 0xb958ff01977905ba, 0x0ebbec542dffbcda, 0xff01a97c0501ae03, 0xa139ecffbdd07a45, 0x8fbaff01b7070dbc, 0x11bcc12e01ff3c61, 0x0501e40107020400, 0xff01d1070d01d680, 0xdc9f22ff3cde4a17, 0x2718ff01df0a0bbb, 0x0c3beef5aeffbc41, 0xff01f1010801f601, 0x6ca1e6ffbab36124, 0x1da7ff01ff070ebc, 0x053c7ec016ffbc50, 0x0c021a020d02281e, 0xbc2b242cff021500, 0x2314063a0f324cff, 0x0fff3c147c15ff02, 0x0b023a00023aad38, 0xbbbdd94eff023514, 0x430012bc838858ff, 0x51ff3d5a0f4bff02, 0x0503680d0ebb122a, 0x080298000f02dc11, 0x04026a0207027801, 0x38972216ff02657b, 0x730002bca31478ff, 0xf6ffbc91aab7ff02, 0x0e028a01053cafb6, 0xbd0259ceff028500, 0x93a70439301cf9ff, 0xd0ffbbc1a770ff02, 0x0e02bca7043c92ab, 0xff02a9000702ae00, 0x131251ff3bbfd5f5, 0x3bbeff02b704053b, 0x0d3b395584ffbb55, 0xff02c9b30402ce02, 0x701b55ffba72ac3f, 0x7ff7ff02d7b3043b, 0x04ba98583dffbb9e, 0x05030401070324c3, 0xff02f1000802f61a, 0xc350a8ffbbf0fc62, 0x24f9ff02ff000b3b, 0x0f3bd8f95cffbbeb, 0xff0311030b031600, 0x2567fbff3c760be4, 0x97e4ff031f000c3d, 0x053b5e7ee5ff3a5f, 0x0e033a000f034826, 0xbc951faeff033504, 0x43030e3bf0778dff, 0xc9ff3b066197ff03, 0x0d035a2905bc0207, 0xbb016900ff035502, 0x6334053d4e97d3ff, 0x00ffbb955c61ff03, 0x0b03d4c2043bdf37, 0x05038b0002039900, 0xff03810305038609, 0x3853f5ffbbcbe6b5, 0x020d3cbd0c08ffbc, 0xffbca2b2b6ff0394, 0x03bd030bbc90f1f8, 0x03aa010b03af0002, 0x4790ff3d82c269ff, 0xa5ff03b8020d3d30, 0x3d39daffff3bd2cb, 0x9bcd20ff03c6070b, 0x360dff03cf020d3c, 0x073bb39aa0ffbc8c, 0x0403fcc604040100, 0xff03e9290503eec3, 0xe67cd8ff3d3c2324, 0xd32bff03f729053c, 0xff3c996b30ff3cce, 0x041cc304bbd67d33, 0xaa3dc0ff040e0107, 0x5b58ff041702073a, 0x04bc606958ffbc45, 0xff04290207042ec8, 0x06eccdffbb170160, 0x3eabff043701073a, 0x05bba34455ffbb7f, 0x0505601106067c57, 0x010490c00404d44a, 0x010462560404703e, 0xb9c966c1ff045d3b, 0x6bb1043b4be2a6ff, 0x4eff3a247862ff04, 0x0b04821a03bc18f4, 0x3ca6fcc1ff047d12, 0x8b00023daa837bff, 0x88ffbb81df53ff04, 0x0e04b402083ba4f6, 0xff04a1c10404a61a, 0x67ef2fff3c496ea4, 0xce7cff04af0006bd, 0x05baa7d498ff3bde, 0xff04c1000204c61d, 0x86202eff3cab058d, 0x5b10ff04cfc404bc, 0x04bad99a83ffbc98, 0x0504fc0211051cbc, 0xff04e91d0e04ee4d, 0x00eeeaffb9e73f2d, 0x18cfff04f74e05bc, 0x02ba4605e2ff3c6f, 0xff05094f04050e00, 0x2e0e70ffbd362248, 0x4d4eff051700083d, 0x073e12d931ff3dc0, 0x0b05320007054001, 0xbc727a23ff052d0b, 0x3b0e0bbd26e3c7ff, 0x3fffbc377b6aff05, 0x080552c7043c3817, 0x3c9410e5ff054d02, 0x5bc804ba7a61abff, 0xe1ffbcbc07c6ff05, 0x0d05f0030b3c9bb3, 0x02058c010d05ac05, 0xff0579b104057e00, 0xf29035ffbc1e35c2, 0xd5c7ff05876404bc, 0x0dbcc088f8ffbd83, 0xff0599000b059e02, 0x252ceaffbc809fce, 0xb8ddff05a700023b, 0x11bd1cdf93ffbbb4, 0x0c05c2c30405d001, 0xb94fafd1ff05bd01, 0xcb0007bc61316dff, 0xb6ff3c4b1db6ff05, 0x0705e203053c9618, 0xbb05d14bff05dd00, 0xeb0405bdb78919ff, 0xc7ff3d51d490ff05, 0x04063801053c3b6d, 0x06060a0107061888, 0xba05d0beff060514, 0x130008bce02620ff, 0x46ff3c3b06f1ff06, 0x06062a01083d3f65, 0xbd0235f6ff062516, 0x330b0bbdb82c6dff, 0x7dffbba5cbf9ff06, 0x0e065cb304bcc841, 0xff06497e04064e18, 0x3103c0ffbcc53ab6, 0x4080ff06577a043b, 0x02bc9556bcff3d25, 0xff06692a0e066e00, 0xbd7a2dff3c699b49, 0x4430ff06770111bb, 0x0d3be7cbc8ffbc1d, 0x0b0710000c079c06, 0x0406ac000f06cc0b, 0xff0699220e069e63, 0x4627f4ffbd0abc5b, 0x2e74ff06a70006be, 0x0bbba14848ff3cb1, 0xff06b9170e06be0a, 0xa6acebff3bb24647, 0x51d8ff06c7c004bb, 0x0bbab014ffff3b4e, 0x0e06e2a20406f014, 0x3c361e3eff06dd17, 0xeb0111bc1c49cdff, 0x56ffbca53504ff06, 0x040702180e3c873c, 0x3c03ff5eff06fdc2, 0x0b2a0ebc886010ff, 0x59ffbb99e8b2ff07, 0x0b075800093bc102, 0x0b072a010c073813, 0xbc366cd8ff072501, 0x332c0e3b587bb7ff, 0x79ff3b2ba8deff07, 0x0e074a220ebc3d29, 0xbc0a4bd4ff074517, 0x53230e3bb92c0cff, 0x59ff3d3dce4dff07, 0x0b077c170e3bd4e7, 0xff0769000f076e07, 0xdb3ca0ffbda3447d, 0xe376ff0777000fbc, 0x0ebcda5271ff3c53, 0xff07890109078e21, 0x02b79cff3cba9853, 0x83e9ff0797ac04bc, 0x08bc9c8f78ffbbd8, 0x0e07e8230e082c00, 0x0407ba100b07c818, 0x3bb65f30ff07b58b, 0xc3010cbc9191daff, 0x58ffbcbffe8bff07, 0x0907da1a0ebd689d, 0x3c915b7bff07d500, 0xe30b0bbc4c9eeaff, 0x0dffb9d35ee6ff07, 0x0e080c0011bc241f, 0xff07f9c70407fe27, 0xbc6890ffbc407b68, 0x39cfff0807070dbd, 0x0bbcd5e363ff3bbe, 0xff08192d0e081e07, 0x01733affbc0fe8bc, 0x1bacff08272a0ebd, 0x04bd7b829cffbc76, 0x0e0854190e0874c8, 0xff08410012084617, 0x4f51b9ff3b92ad07, 0xcaefff084f0011bc, 0x0e3d4e1f1cff3c1f, 0xff0861001208661c, 0x916c13ff3d0d6c91, 0xe56fff086f1d0ebd, 0x05ba8182f2ffbce5, 0x05088a000708987e, 0xbc8f3ae3ff08857d, 0x932f0e3db9e6e9ff, 0xb7ff3c671b93ff08, 0x0708aa180ebbeae0, 0xbd83bca6ff08a500, 0xb3220ebc01db1dff, 0x79ff3c659190ff08, 0x040d38130ebb7704, 0x0d09e0a6040afca7, 0x0409109a04095402, 0x0708e2900408f096, 0xbadbd722ff08dd02, 0xeb000dbce62a3bff, 0xd7ffbb7f2ba1ff08, 0x020902070b3cc920, 0xbd1437fbff08fd00, 0x0b0a0b3af04e5fff, 0xdcffbdbac7b7ff09, 0x120934040ebd2fec, 0xff0921030b092601, 0xe2ce37ff3b2df4b1, 0x73f8ff092f0009bc, 0x093c741ee2ff3dce, 0xff09419c04094600, 0x52ced7ff3ce0f7a5, 0xe7feff094f010bbc, 0x043d29e7bfffbd1f, 0x07097c9204099c98, 0xff0969070e096e01, 0xed4e26ff3ae86014, 0xb5ccff0977000cbb, 0x11bd5c7c0cffbb46, 0xff09899504098e01, 0x0e7240ffbc12d067, 0x550aff0997030e3b, 0x043d5ac5d9ffbd23, 0x0809b2990409c09b, 0x3c10b6a9ff09ad00, 0xbb010c3d50a0a9ff, 0xa1ffbc093eb2ff09, 0x0209d201123d0882, 0xbba8d44fff09cd00, 0xdb9e043b19b45cff, 0x05ff3a7ef668ff09, 0x0e0a7000023d064c, 0x0e0a0c00090a2c05, 0xff09f9011209fe03, 0xd74da8ffbb820194, 0xbe8cff0a07000cbc, 0x0ebdeb8d0effbd58, 0xff0a1901090a1e02, 0xf34cb0ffbd0b0f1a, 0x7010ff0a270109bd, 0x0ebe0555c6ffbe81, 0x070a4200090a5007, 0xbe8cbba9ff0a3d00, 0x4b030bbea3fed7ff, 0x94ffbdb7e3e8ff0a, 0x050a62020dbe3e23, 0xbe5b09eeff0a5d90, 0x6b0111be209155ff, 0x30ff3c2693dbff0a, 0x0e0ab801083d8b03, 0x090a8a020d0a9807, 0xbcbef553ff0a8501, 0x9300123c0dbb5eff, 0x73ffbcc94dfeff0a, 0x0d0aaa93053c2787, 0xbc023493ff0aa502, 0xb30b0ebd2ac4a3ff, 0xb5ffbc3c5c28ff0a, 0x0e0adc000c3d79c1, 0xff0ac902080ace01, 0x7a46dfffbacd43c5, 0xd0a0ff0ad70208bc, 0x0bbd68f3aeffbc87, 0xff0ae9030e0aee03, 0x2d58d0ffbce0266a, 0x1610ff0af700073c, 0x0dbdd986c3ffbd46, 0x0e0b9001120c1c07, 0x0b0b2c8f050b4c07, 0xff0b19a9040b1e13, 0xf38397ff3cc2f451, 0x4245ff0b27140bba, 0x053b850874ff3cf9, 0xff0b39a9040b3e91, 0x02b926ff3cd21dba, 0x1ee9ff0b47060d3b, 0x093a15e7f7ffbb84, 0x0c0b620b0e0b7000, 0xbb5dc088ff0b5d00, 0x6b110ebc9c1c71ff, 0x9cff3a4302abff0b, 0x090b82080ebc436b, 0x3ca78190ff0b7d02, 0x8b060d3ad44f0bff, 0xaaff3b394e69ff0b, 0x020bd80e0ebbc2f1, 0x050baac7040bb800, 0x3c5fe635ff0ba593, 0xb3070b3d115c75ff, 0x43ffbda5c513ff0b, 0x090bca060dbc904c, 0x3bbf7794ff0bc502, 0xd3b604bc16aa2eff, 0xacff3b5412c6ff0b, 0x0d0bfc0009bd781f, 0xff0be9bb040bee02, 0x38629fff3ba73feb, 0x455aff0bf7060dbd, 0x0b3e05f358ff3d40, 0xff0c0901090c0e03, 0x3384beffbdef961d, 0x6a23ff0c17070bbe, 0x04bbcc592bffbdad, 0x0e0c6800110cacc2, 0x040c3a070e0c4808, 0x3c92afceff0c35ab, 0x430109bc9c1d78ff, 0xb3ff3cbd0315ff0c, 0x0e0c5a0009bd10a4, 0xbd0a95daff0c550d, 0x63030b3b2f0656ff, 0x93ffbcf16528ff0c, 0x0b0c8c080ebd80d2, 0xff0c79020e0c7e03, 0x86dc23ff3cc33c17, 0xe000ff0c8700073d, 0x05bc0fd080ffb89f, 0xff0c99b2040c9e90, 0xc7edfcff3da671e8, 0x33b8ff0ca7b8043d, 0x043dd5e630ff3de8, 0x0c0cd4030b0cf4c7, 0xff0cc1000c0cc601, 0xbf4138ffbc36aeff, 0x5001ff0ccf070ebc, 0x09bdc76b88ffbd12, 0xff0ce1000c0ce600, 0x05fc11ffbd8b2821, 0x10c8ff0cef010ebe, 0x04bd3c09a2ffbbe7, 0x110d0a00090d18c8, 0x3d893488ff0d0500, 0x13030bbcb58800ff, 0xc0ffbcbe677aff0d, 0x0b0d2a070bbd34fa, 0x3b6f9358ff0d2503, 0x33100bbaf5031aff, 0x0effbbca492bff0d, 0x090f780007bc9530, 0x0e0dd00b0b0e5c00, 0x0b0d6c140e0d8c17, 0xff0d59070d0d5e06, 0xfd66d9ffbcb9a24c, 0x4c33ff0d67010c39, 0x0d3db82424ff3c97, 0xff0d79b3040d7e02, 0x272db2ff3c31b5fe, 0x1233ff0d87ca043d, 0x05bd2e4114ffbbc4, 0x0b0da21a0e0db095, 0x3b82f2faff0d9d0a, 0xab1d0e3cdadd3fff, 0xb4ffbbecbb23ff0d, 0x0e0dc2000d3aed8d, 0xbc4d0da4ff0dbd24, 0xcb190ebd6327efff, 0xcdff3c4ce8ffff0d, 0x040e18110bba0875, 0x0e0deac5040df8c7, 0xbdc0cefdff0de514, 0xf30002bc6415e6ff, 0xbdff3dae507cff0d, 0x0c0e0a070dbd4ae2, 0xbd339697ff0e0500, 0x13ca04bd97e53aff, 0xf3ff3c737fadff0e, 0x020e3c8f05bb3e1a, 0xff0e29010c0e2e00, 0x62a71affbb98a93c, 0x9f35ff0e37bd04bd, 0x0e3cde1dd8ffbc4e, 0xff0e49140e0e4e23, 0x30b2feff3cbb36de, 0x13f8ff0e57000cba, 0x0ebcd00f52ffbbf4, 0x050ea8000f0eec15, 0x050e7a00020e8892, 0x3d8475b0ff0e758e, 0x83b504bd2c5116ff, 0x1dffbc31737bff0e, 0x0b0e9acd043d864b, 0x3dfa0a4bff0e9503, 0xa3020d3dac6865ff, 0xc8ff3d0864c0ff0e, 0x040ecc140e3d8338, 0xff0eb9bc040ebeca, 0x68ada7ff3c3fa8cd, 0x772aff0ec7050bbb, 0x0cbca215daff3b3f, 0xff0ed9000c0ede01, 0xd95fefff3b3d3173, 0xbd8eff0ee7c3043c, 0x0e3e1f4104ff3d71, 0x0b0f14000f0f3418, 0xff0f01020d0f0603, 0x08e5c0ffbda28eb5, 0x43d7ff0f0fc404be, 0x04bd70c7abffbb91, 0xff0f2193050f26cd, 0x83ced3ffbcaa1b07, 0xb361ff0f2f0012bb, 0x04bd235c1effbda7, 0x0f0f4a200e0f58bd, 0x3d508130ff0f4500, 0x538f05ba36a362ff, 0x5aff3bd6fcdbff0f, 0x050f6a2e0ebd6721, 0xbc3a8a00ff0f6591, 0x73300ebb416d64ff, 0x96ff3d17f816ff0f, 0x04109800023b101c, 0x0e0fc8000f100cc9, 0x040f9a070b0fa823, 0xbbca422dff0f95b7, 0xa3c1043cb33fe4ff, 0x50ff3c668da7ff0f, 0x070fbac604bc0560, 0xbc86f05bff0fb501, 0xc32a0ebd6daa66ff, 0xb2ffbae4c906ff0f, 0x0b0fec8f053d526c, 0xff0fd9030b0fde05, 0xd5aa78ffbc015d59, 0x28c2ff0fe7170e3c, 0x05bce93af3ffbc2f, 0xff0ff9c7040ffe91, 0xa04ea6ff3bffc0b6, 0x218aff1007c704bb, 0x08bca86195ffbba9, 0x051034010c105401, 0xff1021220e102694, 0x81fe2eff3bf758b8, 0xcbb0ff102f010b3c, 0x053ad0a220ffbd1e, 0xff10419005104692, 0x02e6c2ffbb65b332, 0xc906ff104f00083d, 0x0cbdd89772ffbcb7, 0x07106a030b107801, 0xbd312822ff106501, 0x73cc04bc8f88b7ff, 0x07ff3bedebf4ff10, 0x05108a0012bc1d64, 0xbdd0c61aff10858e, 0x938e05bd9e095eff, 0x58ffbd1b54a8ff10, 0x0c11280112bd68dc, 0x0410c4140e10e401, 0xff10b18e0510b6cd, 0xc05970ff3d1a6e73, 0x8da2ff10bf0b0bbc, 0x083d3933e7ff3bac, 0xff10d1c10410d601, 0x5dd1fcff3b86fc20, 0xe356ff10df230ebb, 0x0e3c34ed8fffbc88, 0x0710fa140e11081d, 0x3d8ad6a4ff10f501, 0x031c0e3cd82ec0ff, 0x47ffb9ef66a2ff11, 0x0e111a2a0ebce51a, 0x3d2b1782ff111523, 0x238f053e052dbeff, 0xceff3c6cd3e5ff11, 0x0d11702a0ebd629d, 0x0e11421d0e115002, 0x3b2c4b7dff113d17, 0x4b220ebc492b65ff, 0x5aff3cf73aa6ff11, 0x051162140e3c4deb, 0xbda3127dff115d93, 0x6b000fbcceef9aff, 0x0cff3cae7793ff11, 0x041194cb043beac6, 0xff118101071186c0, 0x8d2293ffbb7eccab, 0x2c0cff118fc204bd, 0x0bb9d56541ff3d25, 0xff11a1340e11a604, 0x90b462ffbc7be870, 0x34e9ff11af340ebd, 0x133dc6fe2affbbdd, 0xe800000008000000, 0x5a00000001000003, 0x0500000000000011, 0x040484160e09008d, 0x04012c98040248c3, 0x04005c900400a097, 0x06002e000f003c88, 0x3b240a76ff002911, 0x378604ba5ae798ff, 0x0bffb9efce3bff00, 0x02004e0d0e3acfc4, 0xbbcb6d0cff004900, 0x5789043b1a8bb5ff, 0xe8ff3d025909ff00, 0x0b008000123b4db6, 0xff006d050b00720a, 0x10779bffbc85c3b9, 0x2b20ff007b9304bd, 0x0e3a92030fffbc64, 0xff008d9204009203, 0x162e13ff3b27e5db, 0xbe12ff009b0006bc, 0x07bb4bd285ff3c54, 0x0600c8020d00e801, 0xff00b5010800ba08, 0x5f0067ffbc9b23ef, 0xdd90ff00c3030ebd, 0x113d4358b7ffbbf3, 0xff00d50a0e00da00, 0x8944f6ff3c500b4a, 0x48c6ff00e30b0ebc, 0x0b3cc01116ffbaa0, 0x0600fe020d010c0b, 0xbd72168cff00f906, 0x07030dbb2ed2f7ff, 0xdeffbe250d3cff01, 0x11011e120ebba29d, 0xbcc3b67bff011900, 0x274505bbcbef07ff, 0xe0ffbd896b3fff01, 0x0401bc000fba8486, 0x0d015809060178c0, 0xff0145070e014a03, 0x3e8100ffbd465bb6, 0x4f29ff01530b0ebc, 0x063c6bc1eeffbb3e, 0xff0165030e016a11, 0x92f865ff3b850eef, 0xd982ff0173a1043c, 0x06b906bb09ff3c98, 0x0c018e0002019c13, 0xbd4fe851ff018900, 0x97c204bdb74cb1ff, 0x3dffbc3f7302ff01, 0x0501ae010ebded4a, 0xbd1345e1ff01a944, 0xb7020bbc19d697ff, 0x80ffbc9d457dff01, 0x050204be043cc655, 0x0601d6650501e467, 0x3bb73d4cff01d100, 0xdf9e04bb252ea8ff, 0x6fffbc19210dff01, 0x0e01f60b0e3cd5a4, 0x3946b775ff01f10a, 0xff070dbd58c5a1ff, 0x63ff3b18373eff01, 0x0d02286605bbab64, 0xff02150f0e021a07, 0xbc0bf5ffb9c94252, 0x8b1aff0223010cbc, 0x0e3dd45793ff3d8b, 0xff0235bf04023a0e, 0x5eebd0ff3cc9857d, 0xd827ff02430009bb, 0x12bc654edfff3d04, 0x0702dc060d036801, 0x0e02780d0e029800, 0xff02650008026a07, 0x2afdd3ff3c12a0d8, 0xc443ff02730209bd, 0x05ba99c189ff3d2f, 0xff0285010c028a83, 0x98dbb6ffbd65c1a7, 0xd28bff02930109bd, 0x0e39dbaa36ffbd02, 0x0802ae080e02bc0d, 0x3d391e9fff02a900, 0xb70b0bbbebae23ff, 0x8effbbee2dd9ff02, 0x0502ce0008bd3123, 0x3e0a5f90ff02c979, 0xd7120ebc6bfa14ff, 0x6dff3c62a43cff02, 0x1103240e0ebb01bb, 0x0702f66a05030400, 0x3d3abfacff02f102, 0xff7505bd032023ff, 0x49ffbcc0b922ff02, 0x0e03160007bba54c, 0x3c88be89ff031107, 0x1fc404bd5cd7f4ff, 0xf4ffbae59484ff03, 0x0b03480e0b3cb672, 0xff03350009033a09, 0x2201e7ffbced3b86, 0xba98ff03430b0b3d, 0x12bcfc8afdff3c4f, 0xff0355010c035a00, 0x3bb181ff3c2a1d4e, 0x5d06ff0363000c3d, 0x073e0b765cff3cd0, 0x0b03b40e0603f800, 0x0c0386000f039403, 0x3d156240ff038100, 0x8f0e0e3db90a21ff, 0x8dffbd047be0ff03, 0x0403a60009bbbf3a, 0x3b847e89ff03a1c7, 0xaf00023dc15077ff, 0xc4ffbdddea20ff03, 0x0d03d8070ebcb89a, 0xff03c5c50403ca02, 0x703c00ffbcc4f662, 0x23f3ff03d3030bbb, 0x0c3a1fe412ff3c1a, 0xff03e5010803ea00, 0x247a26ffb9f95e8d, 0x119cff03f301113c, 0x053cb8b4c1ff3c0f, 0x0d04200b0e044063, 0xff040d050e041200, 0xb5d7e0ffbcb7b42f, 0xebb3ff041b2205bb, 0x04ba3ffae7ff3b77, 0xff042d1e050432c4, 0x649385ffbde161cd, 0x2f2eff043b110ebd, 0x0b3bc26233ffbc03, 0x040456030d046403, 0xbd5178e8ff0451c4, 0x5f0d0e3bebf22bff, 0x2bff3c940eb3ff04, 0x05047689053d7b78, 0x3b8329d6ff047187, 0x7f060dbd269892ff, 0xe0ff3c640ac1ff04, 0x0e06c45a05bd2d1b, 0x06051c020805a82a, 0x0404b8100604d816, 0xff04a5430504aabe, 0x42ce89ff3a51f4ed, 0xb96fff04b30306ba, 0x02bbfa0c81ff3cb2, 0xff04c5a70404ca00, 0x12ac96ffbbfe6011, 0xc4caff04d388043c, 0x0bbc0fc72dff3c6c, 0x0f04ee070504fc07, 0x3ce584ecff04e900, 0xf7290ebbdc7c4bff, 0x87ffbad4ed6fff04, 0x06050e200e3c8478, 0x3af93215ff050918, 0x178f04bc7b5631ff, 0xf5ffbd8334d1ff05, 0x020564010cbc84d0, 0x0605360706054400, 0x3ac14174ff053100, 0x3f0305bc465eeeff, 0xefffbb815250ff05, 0x0405568b043cc697, 0x3c0c80fdff05518a, 0x5f00063d006179ff, 0x16ff3c06f287ff05, 0x0605881805ba9cbc, 0xff05756404057a03, 0xfb2192ffba1700fa, 0x7b47ff05830605bb, 0x013aa013a7ff3ccb, 0xff0595170e059a40, 0xc09f1affbce3c2ba, 0xbbc8ff05a3ac04bb, 0x07bc8f104cffbd17, 0x0405f41406063802, 0x0605c6060d05d4c3, 0xbb120579ff05c112, 0xcf2b0ebb65aedfff, 0xb0ffbb54635eff05, 0x0b05e60002bc816d, 0xbd25aff9ff05e101, 0xef54053c2e16d7ff, 0x2cffbc02eb0bff05, 0x040618070b3cd205, 0xff0605000b060abc, 0x9c7675ffbd069ca3, 0xc9d6ff0613300e3b, 0x043d5ed477ff3c14, 0xff06251606062aa1, 0xf7d387ffbd4d12f6, 0x8c4dff0633010cbd, 0x0b3d84d5a6ffbbcb, 0x0606600b0b068014, 0xff064d1603065207, 0x9d0038ffbbb34599, 0x961dff065b12063b, 0x043db4ba39ffbc49, 0xff066d6e040672a3, 0x4c4e7fffbc50ea68, 0x3734ff067b28053c, 0x05bd1157efffbdf1, 0x030696070606a413, 0xbc8370b6ff06910f, 0x9f00053c4489e7ff, 0xb3ffbd803d00ff06, 0x0406b6b104bcc50d, 0x3d2a5289ff06b1ab, 0xbfb7043e00e720ff, 0xf2ffbcdf8d6fff06, 0x0407e4230e3ca043, 0x0f0714020b0758cc, 0x0e06e6220e06f400, 0xbadd16ceff06e11c, 0xef0208bcdb4b33ff, 0x39ff3ce1b387ff06, 0x040706000cbdb4a9, 0x3752a559ff07018b, 0x0f7d04bbf7eab5ff, 0xf5ffbb00b955ff07, 0x090738000fbc882b, 0xff07250109072a02, 0x0d06b7ff3be790b4, 0x4cb5ff0733030bbc, 0x0e3cc896daffbd77, 0xff07451c0e074a1e, 0xaf3fbdff3b248d41, 0x365aff0753000cbc, 0x0b3c147078ff3a99, 0x0c0780020807a00b, 0xff076d190e077201, 0xe87313ffbd06f9af, 0xbda6ff077b0007bb, 0x0c3c3b90f7ffbcf9, 0xff078d190e079201, 0x9b53d1ffbd1175c9, 0x7bf8ff079b8005bc, 0x0ebdea3115ffbcc0, 0x0807b6170e07c418, 0x3cafa96fff07b101, 0xbf0107bcd0fcc6ff, 0x50ff3c14008eff07, 0x0c07d61c0ebdc067, 0x3ca89f30ff07d101, 0xdf1d0e3d8f2be5ff, 0x0cffbd235dc7ff07, 0x0408747d053c11e3, 0x010810000208305d, 0xff07fd010b08022f, 0x5e5a00ffbd399f88, 0x3caaff080b0112bb, 0x0b3cd3de82ff3c07, 0xff081d0107082203, 0x484793ffbe53e387, 0x2099ff082b6105be, 0x04be3cae2cffbe1b, 0x0e084601110854b1, 0xbc8466e3ff084128, 0x4fa304bb0db8c0ff, 0x4cffbb298a83ff08, 0x120866240e3c567a, 0xbe26bf56ff086100, 0x6f130bbd71d541ff, 0x15ffbaa3d835ff08, 0x0e08bc010c3b8c7b, 0x04088ec604089c27, 0x3c42338eff0889a4, 0x97cb04bc9528f1ff, 0x5cffbd62d4b6ff08, 0x0408ae7e053cdf97, 0x3bab81e1ff08a9c5, 0xb7090b3d2d5e4fff, 0xbdffbb9c1e0bff08, 0x0b08e000023b9098, 0xff08cdc60408d209, 0x867282ffbc8577d6, 0x7766ff08dbcc043b, 0x0ebc08d183ffbd19, 0xff08ed240e08f225, 0x484efbffbd08f145, 0x86f6ff08fb84053e, 0x0ebc718c8dff3c29, 0x040af3030e0d260d, 0x0f099c010e09d763, 0x040938040d095800, 0xff0925030b092a5c, 0x5322cdffbb2b25e2, 0x0140ff093361043c, 0x043b89402effbd71, 0xff09455c04094a5f, 0x883478ff3c5401eb, 0x23e8ff0953000ebd, 0x0b3dd917f7ff3c81, 0x0c096e0112097c03, 0x37fbe8d4ff096900, 0x774e04bb9e2d59ff, 0xd0ff3a109ba0ff09, 0x0b098e90053bbc9f, 0xbb28458cff09890a, 0x979105bbf97eb3ff, 0x81ffbc51c679ff09, 0x0509c05f04bc0c7f, 0x0809b6040b09bb90, 0xbb9fe0f7ff09b100, 0x1bf8ffbd14f878ff, 0x05bd61b3d4ffbd61, 0x3badf300ff09c98e, 0x1efb36ff09d26104, 0x030dbbdc3200ffbe, 0x6b040a2300080a67, 0x020e09f569040a03, 0xffbcd5d7a9ff09f0, 0x09fe010b3d9c5850, 0x5331ffbe86b9e3ff, 0x000e0a15020ebe43, 0xffbb2f127fff0a10, 0x0a1e01093c3212ad, 0x5cd9ffbcacddc2ff, 0x010b0a4778043c14, 0x28ff0a346b040a39, 0xbd55ad60ffbdbf3d, 0x08cfc9ff0a420007, 0x92053c6c43c5ff3b, 0x6fff0a5401070a59, 0xbd1bf618ffbda667, 0x3d532dff0a62010b, 0x0002bd0b8385ffbc, 0xbe040a8f01120aaf, 0xb8ff0a7c00080a81, 0xbbb26523ffbad959, 0x9ee924ff0a8ac004, 0x030b3a85b925ff3c, 0x0cff0a9ca4040aa1, 0xbca4e75dff3c4ce5, 0x0c80caff0aaa9904, 0x000c3c19ae0dffbd, 0x70040ac57b040ad3, 0xff3b9eac59ff0ac0, 0x0ace070dbbf0d5e2, 0xa09fff3850176eff, 0x7f040ae5000e3b92, 0xffbc9ccd2eff0ae0, 0x0aee8a04bb8cb553, 0xa8a3ff3cba6d50ff, 0x070e0c0a020d3a7d, 0x73040b3a96040b7e, 0x6cff0b0c66040b1a, 0xff0b158e053d897b, 0x98bf16ff3d28b578, 0x2700090b2c9005bd, 0xe5ff3c9f6a98ff0b, 0xff0b3591043b8053, 0x8782a4ff3d10aa4f, 0x50000d0b5e99043b, 0x660bff0b4b93050b, 0x083e1a24ccff3da8, 0xbd801d08ff0b5900, 0x7002093cac1b58ff, 0x82b9ff0b6ba3040b, 0x04bc2742a4ff3c5d, 0xbd2f7d3eff0b79b3, 0xc6a704bd7e1284ff, 0x98080e0ba6a0040b, 0xb520ff0b93000c0b, 0x0fbccdd12dff3c25, 0x3c5c636bff0ba100, 0xb80002bd2c2bb8ff, 0xf371ff0bb300090b, 0x093daa5702ffbe1b, 0x3cb2605cff0bc100, 0xea0112bd65b496ff, 0xd701070bdc030b0b, 0x12ffbd5cb26cff0b, 0xff0be50007bced97, 0xb1bed8ffbd934ad2, 0xf700070bfc0009bd, 0xbaff3cc7c836ff0b, 0xff0c05080e3b93de, 0x05b23eff3d5f509e, 0x56080e0c9a8e05bd, 0x2800020c36010c0c, 0x2a60ff0c23a3040c, 0x04bc34f486ff3afb, 0x3c817c46ff0c319a, 0x48000939a06084ff, 0x5150ff0c43c4040c, 0x043b94c890ffbc9c, 0x3bad8b23ff0c51be, 0x7aca043ccbab43ff, 0x6701090c6cc1040c, 0xf4ff3ba2a2e4ff0c, 0xff0c75c204bce47a, 0x3ed7baffbd5bdc60, 0x87060d0c8c0002bb, 0x90ffbd62c2a5ff0c, 0xff0c9500123d1b53, 0x9af20fffbadb789d, 0xc2000f0ce2b8043c, 0xaf02090cb4b5040c, 0xb4ff3bca998fff0c, 0xff0cbdb704be81d6, 0xaff308ffbddef8bb, 0xcf020b0cd40b0b3b, 0xecffbbe4d0c4ff0c, 0xff0cdda8043a47df, 0x141cf5ffbc24716a, 0xf8ca040d06070e3b, 0xeaa9ff0cf300020c, 0x073abd947dff3c21, 0xbc58f4c6ff0d0101, 0x1801093b8e3f29ff, 0x86e0ff0d13060d0d, 0x0e39224c7fffbbad, 0x3c3e85cbff0d2108, 0x27000dbc45d040ff, 0xb501110e38bb040f, 0x5101070d71060b0d, 0x4700070d4c050b0d, 0xceff3b1b4135ff0d, 0x3cfa7251ff3c9712, 0x0d5e94050d630011, 0x5829ff3cc13065ff, 0xeaff0d6c030b3cdd, 0x3c0547dbff3c4fe8, 0x0d870a0b0d950007, 0xc7f1deff0d820012, 0x00123ceaec80ff3c, 0xffbba047faff0d90, 0x0da70a0bb8238e00, 0xc9b92cff0da29005, 0x0207bc60ccd7ffbc, 0xffbd41bf57ff0db0, 0x0dfd9505bd8225b9, 0x0dcf88040ddd0207, 0x2ae4e5ff0dca130e, 0xb104bd9c78b9ffbc, 0xff3ba6829dff0dd8, 0x0def110ebc9cfc36, 0x6494d8ff0dea8f05, 0x130ebd287e50ffbd, 0xffbda925c9ff0df8, 0x0e210007be07dbed, 0x0e0e0a0b0e139605, 0x9766ffbd43978fff, 0x94ff0e1c0002bd86, 0xbdb82320ffbd835e, 0x0e2e030b0e330002, 0xd600ffbb9c7960ff, 0x0ebd34c85cff3ab1, 0x070e72050b0e9b14, 0xff0e4d96050e5200, 0x9cc158ffbc5de940, 0x5f030b0e649305bc, 0x20ff3d1094b8ff0e, 0xff0e6d95053c9ef7, 0x1c22ebff3cf8d64b, 0x7f00020e8400073c, 0x90ff3d7ceb40ff0e, 0x040e9602073d9190, 0x3df4f30bff0e91bd, 0xba70ff3e066960ff, 0xc2040ee394053e0b, 0x00070eb502070ec3, 0xffbb952269ff0eb0, 0x0ebe91053c65101a, 0x1148ff3c4a16f0ff, 0x000c0ed5280ebd8c, 0xff3cc53a96ff0ed0, 0x0ede8f053b37aa72, 0xf618ff3d2f270cff, 0xc0040f07010b3e05, 0xc7ff0ef496050ef9, 0xbd327efcffbd9a93, 0x11df1cff0f029605, 0x030bbc8deb25ffbd, 0x73ff0f141d0e0f19, 0x3ca4f3f1ffbc2af9, 0xe1aed3ff0f22c304, 0x020bbbe163ebffbc, 0x00090fb2040d103e, 0x01080f57c8040f77, 0xbcff0f44c7040f49, 0x3d831371ff3bd9ab, 0xaea44fff0f520007, 0x00023b758500ff3d, 0xa9ff0f642b0e0f69, 0x3d71b5c8ffbd2a48, 0x8196e8ff0f729505, 0x8f053d04499dffbc, 0x00020f8d010b0f92, 0xff3d1ecb30ff0f88, 0xdfd440ffbcc36607, 0x9f190e0fa42b0ebd, 0x28ffbc9ee9ebff0f, 0xff0fadcb04bd87a4, 0x35e8e0ff3dc8d404, 0xda190e0ffa000cbd, 0xc701110fcc94040f, 0x6bff3c118d89ff0f, 0xff0fd590053d9ee6, 0x57a3ebffbc1240ec, 0xe7010b0fec220ebb, 0x09ff3c404521ff0f, 0xff0ff52a0e3ad312, 0x869784ffbbd58052, 0x10190e101e010b3b, 0x03b3ff100bc70410, 0x0ebccfa297ff3b3e, 0xbdbf9277ff10191c, 0x300111bc59c851ff, 0x5554ff102bc30410, 0x023c1ddd52ffbc83, 0xbdb3d840ff103900, 0xce010c3d49651eff, 0x6a220e108ac30410, 0x57210e105cbd0410, 0xfeffba1c53deff10, 0xff10650009bcf5d5, 0x2000f0ff3ba983aa, 0x77000c107c230ebb, 0x71ff3b8fc4f0ff10, 0xff10852a0e3d177d, 0x62f46effbcb7d5f0, 0xa00b0b10ae0e0b3c, 0xf5e8ff109b0a0b10, 0x0439cf13fbffbb23, 0x3b4008efff10a9c7, 0xc00008bd43cf1cff, 0xaa5bff10bb000710, 0x0e3bf9fae6ffbb88, 0x3cb41f62ff10c914, 0x16280e39abcffeff, 0xe8000210f6230e11, 0x89d5ff10e3060d10, 0x0ebc0fe825ff3b69, 0x3cd0cdefff10f114, 0x0800023b8769a3ff, 0x21faff1103030b11, 0x0bbd601e79ffbb85, 0xbcb55ec1ff111105, 0x3a2c0e3dd16ad8ff, 0x27c804112c910511, 0x13ff3cd978e3ff11, 0xff11359405bcacbe, 0x8ff6ddffbd2ed5aa, 0x470008114c2f0ebd, 0xaeff3c354782ff11, 0xff1155030b3ddbe9, 0xc58751ff3c2b6c0b, 0x00000800000013bc, 0x000001000003e800, 0x0000000000115100, 0x8419060867830500, 0x2c000f0248530504, 0x5cc50400a0030b01, 0x2e4e05003c080600, 0x51e7ff0029010b00, 0x0436c8907effbc03, 0x3bcfbf1aff0037c1, 0x4e1f0ebdb73262ff, 0xf1e9ff0049100600, 0x0dbb9840fcff3ba7, 0xbc9e3cdfff005701, 0x80010bbbbdaf01ff, 0x6d00070072020d00, 0x24ff3caad75dff00, 0xff007b0008bc8ff4, 0xc386f0ffbd733bc4, 0x8dcb040092000dbd, 0x88ffbd02391cff00, 0xff009b000c3bb765, 0x5cf049ffbb9caa3f, 0xc83d0400e8c8043c, 0xb52b0300ba260100, 0xb8ffb9b89699ff00, 0xff00c32803bb622f, 0x9d5583ff3c2c9922, 0xd5060e00da010d3a, 0x19ffbc5e2909ff00, 0xff00e3180639b8a6, 0x015e5fff3bd97e87, 0xfe0206010c0002bb, 0x6033ff00f9020d00, 0x043b478e05ffbd98, 0xbce833a1ff0107c9, 0x1e38053cf54c1aff, 0x8065ff0119220501, 0x043c97b9c0ffbc25, 0x3d1c0524ff0127c9, 0xbc4a05bcbe89fbff, 0x583e010178490501, 0x459c04014a3b0101, 0x75ffba318cfaff01, 0xff0153b804bc10bc, 0xa46cbbff3c080626, 0x658b04016a1a03bc, 0x2aff3c61c815ff01, 0xff01731b033d90c9, 0x1c391cff3c9a9e98, 0x8e8e04019c9804ba, 0xc96bff0189600401, 0x06bc39c5c6ffba48, 0x3cc1d969ff019700, 0xae070dbc498e3aff, 0xea52ff01a9001101, 0x04bc605f52ffbd1d, 0x3d2023cfff01b7c0, 0x04ad043db65f61ff, 0xd6100b01e4130b02, 0x3a4eff01d1120e01, 0x0439ef3240ff3a95, 0xbbcc5372ff01df89, 0xf6ab04bccc781aff, 0xa01aff01f1010801, 0x053c5190f6ff3b25, 0xbdcdc0ddff01ff4b, 0x28b2043ca71b24ff, 0x15240e021ab00402, 0x5affbc547c7fff02, 0xff02230006bd8d33, 0x9949f3ff3bfbf850, 0x354d05023a0007bd, 0x88ffbcefc0d3ff02, 0xff02435105bbe403, 0x42b49dff3c494d10, 0xdcca0403680012bc, 0x78b9040298c90402, 0x65a204026a010702, 0xacffbb2b36e8ff02, 0xff0273070d3b1774, 0xe0c255ffbc3fc7f3, 0x85070d028a00093b, 0xaaff3ba52634ff02, 0xff02938205bc1cb1, 0x21302effbc73d47f, 0xae000702bc170ebd, 0x2b1cff02a90d0e02, 0x02bdd42920ff3dbd, 0xbce06a50ff02b700, 0xce1f0ebc07b804ff, 0x97cfff02c9190e02, 0x0e3db27bf2ff3cde, 0xbbddd265ff02d728, 0x24300e3cd8a197ff, 0xf6140b0304001103, 0xc2f0ff02f1070d02, 0x0ebd4c0f14ff3b3c, 0x3c49621aff02ff25, 0x16010c3d038490ff, 0xa062ff0311000c03, 0x073db80e66ff3d25, 0x3e86c9feff031f00, 0x4802073e0e8193ff, 0x350208033a001103, 0x32ffbcdff0ccff03, 0xff03430107bb7b4d, 0xd55f48ff3d6e7747, 0x55310e035a0b0b3d, 0xceff3cf79ca3ff03, 0xff0363cb04bc50a7, 0x7c5939ffbdbc1a83, 0xb49f0403f8060d3d, 0x8602110394320e03, 0xd6f5ff0381940403, 0x043b1eeeffffba0b, 0xbb384f89ff038f4f, 0xa641013d341414ff, 0x3c93ff03a1030b03, 0x0fbc8df10cffb7b4, 0xbd9b32f0ff03af00, 0xd87a05bb996a1fff, 0xc5540503caca0403, 0x5affbcc75de0ff03, 0xff03d3000f389af1, 0xe0c1a1ffbcb4e959, 0xe5000703ea0d0e3b, 0x20ff3c2de6f9ff03, 0xff03f3000cbc5b84, 0x4c8981ffbb2ef7a5, 0x2000090440230e3b, 0x0d00070412b30404, 0xe0ff3bd4dd6aff04, 0xff041b010c3ca5c4, 0x718833ff3c23ad0c, 0x2d7c0404329904bc, 0x45ff3b8af581ff04, 0xff043ba404bc6084, 0xb80866ffbd608367, 0x56c5040464080bbc, 0x406aff04512e0e04, 0x07bcd4fce0ffbc03, 0x3c639d1cff045f02, 0x7600023d58b314ff, 0x729dff0471c60404, 0x04bbf5acadffbd79, 0xbbe3873aff047fcc, 0xb21105bdcd8c1eff, 0x1c000f05a8090e06, 0xb8bb0404d8bc0405, 0xa5040e04aa7b0404, 0xc4ff3a9dc1c6ff04, 0xff04b30008bc1942, 0xb9b6a1ffbcb4995f, 0xc5010e04ca030bbb, 0x6eff3a35b52cff04, 0xff04d3010e3ce0ef, 0xd90869ff3d385dd5, 0xee000b04fcbd043d, 0x8fe8ff04e9030e04, 0x0d3d154470ffbd1e, 0xbe0315d9ff04f702, 0x0e030ebd96879bff, 0x135bff0509030b05, 0x0c3d013d44ffbcd2, 0x3c455a9bff051700, 0x64040e3d980963ff, 0x36010c0544070b05, 0x750bff05310c0505, 0x0eba946210ff3b87, 0xbb3cc907ff053f00, 0x56b504bc11501cff, 0x210bff0551000705, 0x07bb5652a6ff3a6b, 0xbac0b59fff055f00, 0x88bd043b75dd98ff, 0x75000b057a000805, 0xfdffbc0daed4ff05, 0xff0583030bb90c5b, 0x483891ff3b1c1f69, 0x95000c059ac1043c, 0xfaffbcdb45c5ff05, 0xff05a30008bbfd6a, 0x7ae0d3ffbc2ab5e2, 0xf40f0e0638020dbb, 0xc6000205d4040505, 0xd6eeff05c19a0405, 0x05bd972ecfffbd08, 0xbc8420ddff05cf00, 0xe6aa043c04ac11ff, 0x8cf9ff05e1000b05, 0x0e3d38247cff3bb7, 0x3c901b29ff05ef0b, 0x18000bbba490bbff, 0x050002060a170e06, 0xf5ffbc108289ff06, 0xff061300023c49cd, 0x22ff2effbd1e3762, 0x25b004062a0f05bd, 0x94ff3c944adaff06, 0xff0633000c3d3452, 0xd8228dff398c1813, 0x60000c0677000f3c, 0x4d10050652000806, 0x10ff3cac8c80ff06, 0xff065b0705bd8f77, 0x01125eff3dfad090, 0x6d000b0672030b3d, 0x60ff3d7e3bb4ff06, 0x3e390c43ff3de8ee, 0x068d000c069bc504, 0x04ae21ff0688070b, 0x000bbb287a8eff3c, 0xffbc276e98ff0696, 0x06ad0008bb73a08f, 0x3cf953ff06a8000c, 0x52ffba8397f0ffbc, 0x0807d21a05bcc220, 0x0407020002074600, 0x0d06d4000e06e2ba, 0xbcb5a7aeff06cf04, 0xdd000c3a368b11ff, 0x18ff3cbb13acff06, 0x0e06f4020dbbbf3d, 0xbd0e465fff06ef01, 0xfd1805bb21db5eff, 0xf5ffbcce006bff06, 0x0f0726000ebdae10, 0xff07130207071800, 0x3c7f3dffbd107aac, 0xd0c3ff072117053d, 0x043b1b4ba2ffba45, 0xff073301070738be, 0xc1fe2aff3b85cbca, 0x19edff0741020d3c, 0x0fb9fce186ffbc02, 0x0b076e1805078e00, 0xff075b9404076000, 0x844f9cff3b40c405, 0x0b01ff0769030dbc, 0x0c3d083495ff3c50, 0xff077b000e078000, 0xaa8680ffbca68e4b, 0x9cc0ff07890007ba, 0x07bd4f197bffbccc, 0x0c07a4030e07b200, 0xba570bf8ff079f01, 0xad000cbb98fe5fff, 0x94ffbbc83fe5ff07, 0x0c07c4be043b8ef0, 0x3a8267dbff07bf01, 0xcd0b0bbba76965ff, 0x55ff3b92a339ff07, 0x040862130eb6eaf5, 0x0407fe000f081ea9, 0xff07eb1c0507f08a, 0x43333dffbbea1660, 0x4845ff07f900023c, 0x0b3c8cb553ff3d10, 0xff080b0008081000, 0xb6a8cdff3bbb3f29, 0x43e2ff0819000c3a, 0x0b3a247f10ffbbc8, 0x050834b104084200, 0x394573bcff082f24, 0x3db7043cd2bc13ff, 0x49ffbd5bcda7ff08, 0x0b0854aa04bc4b80, 0xbc172610ff084f03, 0x5d000fbd6586b5ff, 0x21ff3bd6f967ff08, 0x3d563c6aff38bae2, 0x0a9984050cd5000f, 0x09032b0e098f0108, 0x089f370408bf5704, 0x088c26040891000c, 0x57c6ff3c1182a6ff, 0x33ff089a020d3c92, 0x3cbf5ea0ffbce7b8, 0x08ac000c08b13c04, 0x9296ffbc9c842bff, 0xe5ff08ba3d04be55, 0xbc83a60cffbe3b71, 0x08d5000708e3000e, 0x4862d1ff08d01306, 0x7d043cc3422cffbc, 0xffbd9ba5a9ff08de, 0x08f5030bbe9bc88e, 0x0cf4d3ff08f0010b, 0x070b3cd84e78ff3a, 0xffbb65d3e0ff08fe, 0x094b00073c8210a8, 0x091dc004092bc104, 0x8190fdff09180008, 0x340ebcb1e8d0ff3d, 0xff3e92f80eff0926, 0x093d00083e5696d4, 0xda3eccff0938360e, 0x070b3c4e4d55ffbc, 0xff3dd53defff0946, 0x096fc804bcb0e600, 0x095c000209610107, 0xb096ff3bfdcbceff, 0x94ff096a000d3d05, 0xbc0203e0ffbd1b17, 0x097c320e09810207, 0x0580ff3cfca420ff, 0xe4ff098acb043b67, 0x3d8cf9d7ff3d0d16, 0x09db02070a1f170e, 0x09ad000709bb7d04, 0x277200ff09a8030e, 0x0a0b3d435fc0ff3d, 0xffbe26685aff09b6, 0x09cd9904be2f9646, 0x944af6ff09c8070e, 0xa7043d75ae16ff3c, 0xffbc376d0bff09d6, 0x09ffa7043cada985, 0x09ec010b09f1020d, 0x17c4ffbdecb958ff, 0xc4ff09fa0002be30, 0xbd74c860ffbde0e9, 0x0a0c070e0a11b504, 0xf768ffbd7efc58ff, 0xa0ff0a1a0a0bbda4, 0xbcc71640ffbd055d, 0x0a3e020d0a55ba04, 0xfdf920ff0a300002, 0x1160ff0a39000d3c, 0x0ebe1706b0ffbd2a, 0xbd37b848ff0a471c, 0x92d404ff0a50b504, 0x300ebe6599f3ffbe, 0xc1040a6b230e0a79, 0xff3bc8ac72ff0a66, 0x0a74260ebcfe27b2, 0x706fffbdecace0ff, 0xcb040a8b310ebd80, 0xffbc7190bcff0a86, 0x0a940107be058714, 0x5600ff3cb0f035ff, 0x020b0bb9050bbb0f, 0x190e0ae900090b2d, 0x080e0abb030d0ac9, 0xffbc5a9659ff0ab6, 0x0ac4170e3bc1145b, 0x09a3ff3c28185fff, 0x020d0adbae043d38, 0xffbc410a12ff0ad6, 0x0ae4b304bd90f35d, 0x6d5eff3d300ad4ff, 0x0d0e0b0d0e0ebbf7, 0xefff0afa080e0aff, 0xbd430d99ffbb3902, 0x910d5bff0b08020d, 0x170e3d7410efffbc, 0x03ff0b1a020d0b1f, 0xbe147a6fffbd764e, 0x0b7f58ff0b28190e, 0x000cbd19f957ff3d, 0x78040b557e040b75, 0xbdff0b4200020b47, 0x3c46154fffbc36e3, 0x31c637ff0b508a05, 0x8b05bcebc5caffbe, 0x83ff0b6200090b67, 0x3e12d945ff3d35d7, 0x624bd4ff0b702c0e, 0xbc043da3e8fbff3c, 0x00090b8b85050b99, 0xff3b994223ff0b86, 0x0b940207bd499112, 0x8605ff3b455dd4ff, 0x170e0babbd04bcf0, 0xff3c84feebff0ba6, 0x0bb48d053db3deba, 0xaf36ffbc81d5ebff, 0xb7040c490007bb46, 0x87050be500090c05, 0x1eff0bd26b040bd7, 0x3bcc81dbff3cfa17, 0xb34c8dff0be09205, 0x0e0ebc2a1336ffb9, 0x53ff0bf2030d0bf7, 0x3c38c528ff3cb417, 0x11ecdeff0c00170e, 0xbe043c72f25effbd, 0xbc040c1b87050c29, 0xff3d536200ff0c16, 0x0c2495053ca30781, 0xce45ff3c788c27ff, 0x190e0c3b0209bc36, 0xff3c4dc181ff0c36, 0x0c440e0e3b03cd9a, 0x9fefffbac83c68ff, 0xa5040c91a704bd23, 0x86050c63a2040c71, 0xff3bf6545eff0c5e, 0x0c6c030ebce40853, 0xb910ff3d998aa2ff, 0x030e0c8300023c8b, 0xffbd2651d6ff0c7e, 0x0c8c0108be4656e8, 0xeda1ffbc8f1ff6ff, 0x060d0cb5c804bdf3, 0xcdff0ca2000c0ca7, 0x3bba0fcfffbcb8ad, 0x9f82c0ff0cb0b304, 0x000cbd989481ffbc, 0xecff0cc22c0e0cc7, 0x3c71da3dffbd1aed, 0x8f7038ff0cd0cb04, 0x010c3b54f191ff3c, 0x070d0df90e0b0f15, 0x8c050d290b0b0d6d, 0x020b0cfb0a0b0d09, 0xffbbd95336ff0cf6, 0x0d04230ebafb5bce, 0x99f0ff3adcc5e5ff, 0x95050d1b00023b9a, 0xff380b7951ff0d16, 0x0d240107bb8f8563, 0xa9fdffb93dbd11ff, 0xa7040d4d070eba34, 0xe1ff0d3aa6040d3f, 0xbcc60becffbad5a5, 0x5652f2ff0d48a904, 0x00123c083b59ff3d, 0x85ff0d5a1f0e0d5f, 0x3d1ae466ffbd2f92, 0x06aca9ff0d680d0e, 0x080ebcc0171fffbb, 0x030e0d95070e0db5, 0xb5ff0d8200090d87, 0xbc4a3f4eff3c19a9, 0x1804d7ff0d90000c, 0x000cbdb48f9dffbd, 0x93ff0da2030b0da7, 0x3c3657a1ff3a96cd, 0x1805ebff0db0030b, 0x0d0e3d0d9e8bff3c, 0xb0040dcb030b0dd9, 0xffbd327821ff0dc6, 0x0dd4000cbaee52f2, 0x89a7ffbd628431ff, 0x190e0deb1f0ebdda, 0xffbc198946ff0de6, 0x0df4000c3bc1c4d5, 0x646bffbc6a4791ff, 0x310e0e898605bd23, 0x00090e2500070e45, 0x7bff0e12c8040e17, 0xbb84cc52ff3c54cd, 0x105698ff0e20c704, 0xc504bd0b2e1bffba, 0xd8ff0e32230e0e37, 0xbd698859ffba5f15, 0xd170a5ff0e408505, 0x84053d0a73d7ffb9, 0x000c0e5b320e0e69, 0xffbdaae041ff0e56, 0x0e640107bd85feba, 0xd82dffbc98816fff, 0x85050e7b0007bdba, 0xffbcadc0c2ff0e76, 0x0e84320ebbc4697c, 0xf252ff3d0dfa84ff, 0x01070ed1070e3b0d, 0xa6040ea3a7040eb1, 0xff3b12f4deff0e9e, 0x0eaca904bcfb668c, 0xfe3bff3cb27056ff, 0xb4040ec3030e3b4f, 0xffbb44bf1eff0ebe, 0x0ecc00123be27f88, 0x499cff3c04b0b0ff, 0x02070ef501113cc3, 0xefff0ee2060d0ee7, 0x3ad1567fffb9ed29, 0x61badbff0ef00008, 0x220ebba355dfff3c, 0xf1ff0f02c8040f07, 0x3b63b667ffbc4c2a, 0x2cc016ff0f10cb04, 0x88053c839bd0ffbd, 0x00020fa986051035, 0x9e040f45230e0f65, 0xdaff0f32070e0f37, 0xbccc251aff3abce5, 0xb22bf6ff0f40aa04, 0xca043bd01730ff3c, 0x47ff0f52c8040f57, 0xbdcdee6effbce733, 0xccc6d1ff0f608405, 0x8405bc8808daff3b, 0x0b0e0f7b1d0e0f89, 0xffbb1ac675ff0f76, 0x0f84030b3d67014b, 0xc134ffbd11f178ff, 0x070b0f9bcd043e43, 0xffbc75ee53ff0f96, 0x0fa40b0b3c126a64, 0xab62ffbce64aa3ff, 0x87050ff10111bdca, 0xbc040fc3c3040fd1, 0xffbbe943a1ff0fbe, 0x0fcc00073d228ffb, 0x6951ffbce464e2ff, 0x160e0fe3170ebbba, 0xffbaa76dd6ff0fde, 0x0fec0b0bbd18c4a9, 0xa042ff3b9b7941ff, 0x0d0e101501073d1d, 0x7dff100200021007, 0xbb931ecfffbd5d64, 0x2770d1ff1010bc04, 0x220ebcd00e40ffbd, 0x85ff102297041027, 0x3bebb6abffbd53ec, 0xbce95cff1030030b, 0x8905bd98dfafffbb, 0x0b0e10811d0e10c5, 0x070d1053070e1061, 0xffbabc100eff104e, 0x105c0009bdb4ca00, 0xb20affbd8f0cfbff, 0x00081073c4043c84, 0xff3b364170ff106e, 0x107ccb043d39e0e8, 0xb025ffbc50d70dff, 0x200e10a5c8043d05, 0xd5ff109200071097, 0x3e2b5430ff3e2c5e, 0x706c12ff10a0220e, 0x220e3acaa3f1ffbd, 0x7aff10b2000710b7, 0xbdaebffdffbe4e25, 0x5e7f84ff10c00007, 0x0d0ebc765beeffbd, 0x010910ed060e110d, 0x96ff10da060d10df, 0x3a6cfc27ffbc73bc, 0x07c2b1ff10e80a0b, 0x9c043c465c87ff3b, 0xf7ff10fa070e10ff, 0xbc8e5cd6ff3d8687, 0x8bffbcff11080b0e, 0x8a05b9dc035fff39, 0xbd0411230a0b1131, 0xff3bdf9f9aff111e, 0x112c0008bc66db0b, 0xdcedff3d06e810ff, 0x02081143260e3da3, 0xff3bc28608ff113e, 0x114c2b0ebda9d9b6, 0x086affbca95ccbff, 0x0008000000133a81, 0x0001000003e80000, 0x0000000011f30000, 0x160e09008d050000, 0x97040248c3040484, 0x011100a08005012c, 0x6f04003c8d04005c, 0x28ff00296004002e, 0xba3d4f5affb9ebc2, 0x32497eff00377904, 0x040e3ae830c6ffba, 0x45ff00499104004e, 0xbb59a678ffbc64e6, 0x30243bff00578e04, 0x0a063b66045bffbc, 0x000600720e0e0080, 0xff3b81b0ccff006d, 0x007b0606bc27918b, 0x50afffbba642a2ff, 0x95040092030b3cb5, 0xffbb676304ff008d, 0x009b040ebcb0ece4, 0xacf9ff3b2c8d38ff, 0x020900e895043cbb, 0x000800ba020e00c8, 0xffbae59e2eff00b5, 0x00c3070ebc0b0ffd, 0x3a62ff3c026922ff, 0x020e00da070ebb94, 0xffbbca2f42ff00d5, 0x00e38b04bca82e87, 0xacb2ffbd1f0fa8ff, 0x0011010c01113c81, 0xb4ff00f9070e00fe, 0xbc9012fbffbb4114, 0x576a2fff01070d0e, 0x070ebcfa638dff3c, 0x54ff0119060e011e, 0xbe2b05d3ffbd67b6, 0x783df4ff01270006, 0x120ebe019188ff3d, 0x00090178100e01bc, 0x0b0e014a00020158, 0xffbb0eecadff0145, 0x01539c043bbf0043, 0x9aa0ff3c0cbadaff, 0x060d016a070dba46, 0xff3ac6c006ff0165, 0x0173070ebbbeb938, 0x0539ffbd6a9d72ff, 0x0008019cb704bc83, 0x81ff01890009018e, 0xbcdad834ff3bcd7d, 0x35a2f2ff01970806, 0x5b05bb3de222ff3d, 0x72ff01a90b0601ae, 0xba56630dff3cdea1, 0x29b167ff01b77f05, 0x130ebc859f6bffbd, 0x530501e401120204, 0x50ff01d1000c01d6, 0xbe080e8affbd9d3d, 0xb43efeff01df050b, 0x0706bd798b3effbc, 0x5dff01f1000201f6, 0xbc22496effbd6f31, 0x2a2938ff01ffbf04, 0x090bbd8711f6ff3c, 0x000c021a000f0228, 0xffbc5ea10bff0215, 0x022353053c83c85f, 0x4d17ffbbfbc885ff, 0x0108023a1206bc95, 0xff3c03074aff0235, 0x0243b3043c8f91f4, 0x003bffbcbf10dcff, 0x0008036801123b7c, 0x83050298000702dc, 0x0209026a00020278, 0xffbcdda88aff0265, 0x02737a05bbbefb55, 0x3717ff3c37c168ff, 0x0002028a8405bd3e, 0xffbcb1fc8aff0285, 0x029389053d2abf0b, 0xb3f1ffbc830263ff, 0x010702bc0d0ebbac, 0x48ff02a90b0b02ae, 0xbd2096d5ffbdcb1b, 0x1a2ee6ff02b77f05, 0x0e0b3a94db43ffbd, 0x14ff02c90b0b02ce, 0xbd6b37cbff3c1fa4, 0x04f81aff02d7060d, 0x060d3d29ecb5ffbc, 0x0b0b030400070324, 0xeaff02f1070e02f6, 0x3d95032cffbd0ca5, 0x1a56bfff02ff070e, 0x0d0e3cbcd34cffbd, 0x2aff03110b0b0316, 0xbcde6d42ffbba7b4, 0x49cd60ff031f120e, 0x0011bb129651ff3c, 0x070d033a00070348, 0xff3c7d46aaff0335, 0x0343c804bd853c5b, 0x1076ffbb110738ff, 0x070e035a0007bc72, 0xff3cf2c1a5ff0355, 0x0363c904bd55e701, 0x3d17ff3be840c2ff, 0x0f0603f800073d02, 0xc6040394030b03b4, 0xdbff038101110386, 0xbd0b9ae5ffbc4a9f, 0x988e97ff038f7a05, 0x00093c898091ff3d, 0xb9ff03a1c70403a6, 0x3dadab89ff3bfe62, 0x986c4fff03af0e0e, 0x010ebd87e5b0ffbc, 0x190503ca000f03d8, 0xffbd2e2e15ff03c5, 0x03d3c504bbd1ba36, 0xe45fff3ad8929fff, 0x600503ea000cbaa4, 0xff3add1cfdff03e5, 0x03f30111bc581eb6, 0x6c88ff3b997979ff, 0xc504044063053c75, 0x2605041212060420, 0xffbd57deb5ff040d, 0x041b000fbd0a7603, 0xf9faffbb97e0a2ff, 0x030b0432c6043b51, 0xffbc00eaadff042d, 0x043bc9043c805cc8, 0x8e35ffbb717a03ff, 0x030d04640b0bbab5, 0xa6ff04510d0e0456, 0x3c8a82c2ffbba31f, 0xbc115bff045f8105, 0xc4043c0ad497ff3c, 0xf2ff0471130b0476, 0x3c962dc9ffbd94f3, 0x8af9ccff047f8105, 0x5705bca7660bffbd, 0x4a0505a8110606c4, 0x3e0104d8c004051c, 0x340104aa560404b8, 0xffb9bd8293ff04a5, 0x04b3b10439cae792, 0xe692ff3a192f93ff, 0x120b04ca1a03bbf9, 0xff3c872218ff04c5, 0x04d300023d8eae34, 0xf16fffbb64eeebff, 0x011104fc02083b91, 0x22ff04e9011204ee, 0xbc14669bff3be422, 0x81144bff04f7000c, 0x1d053c8d50d9ffbb, 0xa1ff05090107050e, 0xbc410451ff3cc6ef, 0x63d6a2ff05170112, 0xbc04bc810066ffba, 0x4d05054402110564, 0xccff0531220e0536, 0xbc0b1e3affba2972, 0x5280beff053f4e05, 0x0002ba1ff12eff3c, 0xc0ff055126010556, 0x3cfde763ffbdbf1c, 0xab61caff055f5e04, 0x01073e03f153ff3d, 0x0e0b057a00070588, 0xffbc592c7fff0575, 0x05830011bd16bea6, 0x13e8ff3c3cf073ff, 0x0208059ac704bbb4, 0xff3c7a3f28ff0595, 0x05a3c804ba913e76, 0xc8bbffbca99a3fff, 0x7f040638180e3c80, 0x070505d4630405f4, 0x38ff05c1360105c6, 0x3c10724dffbbc9e1, 0x6d16cdff05cf020d, 0x010bbdff40e3ffbc, 0x8dff05e1000b05e6, 0x3cbfceeeffbb5635, 0x1b592eff05ef000f, 0x1206bb8ff8fcffbd, 0x9604060a020d0618, 0xff3d267738ff0605, 0x0613010c3d811694, 0xeed0ff3baf836eff, 0x1406062a01113cc7, 0xffbc9efe5aff0625, 0x0633170ebb557018, 0x5514ff3b526fe1ff, 0x030b0680c1043d5b, 0x0007065207050660, 0xff3c82b5fdff064d, 0x065b290ebc782a87, 0x0453ffbc18db35ff, 0x98040672b5043b01, 0xffbba3a09eff066d, 0x067bb804bca05810, 0x9e8bff3ca048a1ff, 0x000c06a4000fba07, 0x37ff0691c2040696, 0xbb95b48fff3ce2a2, 0x707f82ff069f040d, 0x17063d94078bff3c, 0x4dff06b1130606b6, 0x3ba199bbffbb9306, 0xe1fb65ff06bf030b, 0x060dbc933dfbff3a, 0xbc040758250e07e4, 0x220e06f402080714, 0x61ff06e1000206e6, 0x3b371421ffbb2ed5, 0xb2d295ff06efbb04, 0x010c3d6b193aff3b, 0x4fff0701090b0706, 0x3c317b5fffbbdb10, 0x8c9f87ff070fb404, 0x220ebd273e02ffbd, 0x1c0e072abf040738, 0xff3cab54d4ff0725, 0x07338205bc41362e, 0x0701ffbc672b03ff, 0x0107074a010cbb7c, 0xff3cb56ccbff0745, 0x07530009bbe192b4, 0xacd2ff3d77109aff, 0xc20407a0270ebcc5, 0x6c040772000d0780, 0xff3c8596d0ff076d, 0x077b99043d7815f0, 0x3aa9ffbcc1e9a5ff, 0xc3040792260e3986, 0xff3e2d701bff078d, 0x079b090bbd638ce1, 0xb1afffbda4d8faff, 0x020d07c40007be3b, 0x8bff07b1bd0407b6, 0xbc077260ff3c0020, 0x4ce517ff07bf0006, 0x140bbd11f480ffbb, 0x02ff07d10b0b07d6, 0xbcb72323ff3b627a, 0x2fa717ff07df000c, 0x170e3ca46254ff3b, 0x000c0830b2040874, 0x000808026c050810, 0xffbb9f3e87ff07fd, 0x080b00123bfebdcc, 0x948effbb593820ff, 0xae0408220107bcbe, 0xffbcd6d867ff081d, 0x082b0011bda1a1e1, 0xa756ffbc3a83d9ff, 0x000c0854ba043ca3, 0xe7ff084100080846, 0x3cb3343affbc92d5, 0xa57190ff084f0008, 0x00073d848858ff3c, 0x39ff0861bc040866, 0xbc53f620ffbd7e67, 0xb90889ff086f0008, 0x190ebb98949cffbc, 0x0a0b089c001108bc, 0x33ff0889180e088e, 0xbc4e6758ff3d3878, 0xca65a3ff0897000c, 0x00093cbbaf38ff37, 0x48ff08a9ba0408ae, 0xbb9901feff3d748d, 0x548429ff08b79a04, 0x0207bd24d098ff3b, 0x000208d2000708e0, 0xffbc111901ff08cd, 0x08db1e0e3adb8349, 0x2739ffbc942706ff, 0x010c08f21d0e3b08, 0xffbc703209ff08ed, 0x08fb010cbda3e930, 0xe0a8ff3b9a1e77ff, 0x030e0d800d0e3cd2, 0x00070a28000f0b44, 0x040d09589205099c, 0x050b092a88040938, 0xffbc57664dff0925, 0x093300093c4b4281, 0xfa1affbdaaccf3ff, 0x040b094a070b3c8a, 0xff3c3e8b5aff0945, 0x0953000c3d26551d, 0xbbfcffbdbd187cff, 0x000c097c99043ad5, 0x35ff0969020e096e, 0xbda07eceff3c3430, 0x81a750ff0977030b, 0xa504bdf54cebffbb, 0xaeff09899c04098e, 0x3d85076fffbb03aa, 0x6e39a2ff0997a704, 0x93053bb37319ffbc, 0x000c09c49c0409e4, 0x83ff09b1020e09b6, 0xbda8d6baffbb9859, 0xe0ba4bff09bf030b, 0x020dbe04dce8ffbc, 0x4dff09d1020e09d6, 0xbd1d75c2ff3d6424, 0x5f1528ff09dfa504, 0xbc043bab9273ff3d, 0x950409faa4040a08, 0xff3a9b1eb2ff09f5, 0x0a03b3043ce460ac, 0x1beeffbbe480bcff, 0x95050a1a020bbd11, 0xff3c1b62c0ff0a15, 0x0a2301073cb96b85, 0xaa42ff3ce65157ff, 0x00090ab8130b3d23, 0xc3040a54010c0a74, 0xe5ff0a4191040a46, 0xbac08321ff3a792c, 0x51fa5aff0a4f0012, 0x040b3bd53e4eff39, 0xa2ff0a6100070a66, 0xbb8790dfff3c6a96, 0xb5fe1fff0a6f0007, 0x010cbace45fdffbc, 0x00110a8aae040a98, 0xffbb6fe0f9ff0a85, 0x0a930e0b3adc4882, 0xc15bffbb843cf0ff, 0x030b0aaaa3043ba9, 0xffbb19213aff0aa5, 0x0ab3000ebc94d9ca, 0xa284ffbaa4428dff, 0xb7040b00060d3c27, 0x020e0ad2a0040ae0, 0xffbb858797ff0acd, 0x0adb00093ca2cfec, 0x700effbc3b4294ff, 0x000c0af2010c3a0b, 0xff3b95469aff0aed, 0x0afb01073c2d476c, 0xc5d2ff3c93767dff, 0xba040b2400113d32, 0xd4ff0b11020e0b16, 0x3caaa8e6ffb89a57, 0xa2dc78ff0b1f010e, 0xb304bc16b26dff3b, 0x00ff0b318f050b36, 0xbc1f4354ff3c3d75, 0x06f8dcff0b3f000c, 0xc3043ca9604fff3c, 0x060d0bd8010c0c64, 0x00090b74010b0b94, 0xffff0b61b5040b66, 0x3c9cca0effbbbdb4, 0x4fe952ff0b6f020d, 0xc104bc18722effbd, 0x36ff0b8101110b86, 0x3b624bbcffbb0bbc, 0x0c1883ff0b8f0008, 0x030bbcd01108ff3a, 0x090e0baabf040bb8, 0xffba86a4deff0ba5, 0x0bb30011bc4ff33d, 0xb77affbc6d563fff, 0x00110bcabb043cac, 0xff3badab8dff0bc5, 0x0bd3000cbbb39012, 0xe21fff3b46117fff, 0x00070c20060d3c74, 0x00090bf20b0e0c00, 0xffbc5dd4a8ff0bed, 0x0bfb8e053c176b95, 0xd963ffbca27099ff, 0x90050c1201123c90, 0xffbce1bcf6ff0c0d, 0x0c1b020bbd7c8a7a, 0xe735ffbaf77198ff, 0xb4040c44b6043bfd, 0xb2ff0c31040e0c36, 0xbc6944b5ff3c9ad3, 0xc0fa88ff0c3f8e05, 0x0012bd9706f9ffbd, 0x9bff0c5191050c56, 0xbcdd2edeff3c4dda, 0x410f98ff0c5fbc04, 0x070e3d4d2546ff3c, 0x00080cb000110cf4, 0xcb040c820b0b0c90, 0xffbb2f2999ff0c7d, 0x0c8bc804bc81aaaf, 0x63b0ffbb224952ff, 0x000c0ca2010c3ca1, 0xffbb8e6477ff0c9d, 0x0cabc604bc88aea3, 0x4872ff3d3f90f1ff, 0x010c0cd400093a2f, 0x95ff0cc1060e0cc6, 0x3c21a835ffbcf4fc, 0xf8d2e0ff0ccf030b, 0x060dbcd7de3cff3c, 0x29ff0ce102090ce6, 0xbc95fa27ff3a8cf6, 0xe9459dff0cef040e, 0xc704bd043fc8ffbb, 0x00020d1c0a0e0d3c, 0xe8ff0d09c4040d0e, 0x3cfc7e9cffbc37bd, 0x25dac4ff0d17c504, 0x000cbc331b48ff3c, 0xaaff0d290b0b0d2e, 0xbc4b565fff3a640b, 0xb6aed3ff0d370108, 0xc8043c39c777ffbc, 0x00090d52060d0d60, 0xffbc863b0aff0d4d, 0x0d5b010c3cbdfb22, 0x5912ff3ce8ae9cff, 0x080e0d72060d3dbe, 0xff3d0c0209ff0d6d, 0x0d7b080eba596bca, 0x07d3ffbc679cc3ff, 0x00020fb7c8043b87, 0xc5040e18c6040ea4, 0x030b0db4bb040dd4, 0x13ff0da1220e0da6, 0x3c952ca0ffbaea5e, 0x881f19ff0dafb804, 0xbf04bca02885ffb9, 0x0dff0dc1050b0dc6, 0x3c8d59cfffbb538c, 0xe1a1fcff0dcf020d, 0x0012bb0c75ffff3b, 0x170e0dea010c0df8, 0xff3ba84815ff0de5, 0x0df3170ebc71b853, 0x74a5ff3d72ca81ff, 0x01110e0a95053c96, 0xffbc9521b6ff0e05, 0x0e13230ebd5f7963, 0x2b20ffbbedff7aff, 0x8f050e60000c3d09, 0x230e0e328e050e40, 0xff3d0075f9ff0e2d, 0x0e3b0008bd00d797, 0xc68cffbc6e8553ff, 0x140b0e529505bd1d, 0xff3be6376cff0e4d, 0x0e5bc704bc31248f, 0x773fff3cbd7d25ff, 0x310e0e8492053d93, 0x99ff0e7100090e76, 0xbbde395dff3c6d78, 0x5910acff0e7f020d, 0xc7043e0e7bd2ff3d, 0xa2ff0e91030b0e96, 0x3da0f937ff3d2268, 0x95b700ff0e9f0011, 0x9105bd4de88aff3a, 0xc6040ef001090f34, 0x010c0ec28f050ed0, 0xff3b2102ccff0ebd, 0x0ecb000f3c5a8ac0, 0x0928ffbc57056dff, 0x1c0e0ee20112ba37, 0xff3ced569aff0edd, 0x0eeb310e3ba194ac, 0x3d2dffbd30f2d6ff, 0x8f050f14000f3cb7, 0xd2ff0f01ba040f06, 0xbc1dccaeffbd4ebe, 0x762f49ff0f0f0e0e, 0x060dbd8c72fbff3c, 0xd9ff0f21010c0f26, 0x3c9ce1a6ffbb09d3, 0x2f9ac4ff0f2f030b, 0x2b0ebc9efb73ffbc, 0xc6040f5c000c0f7c, 0x0fff0f49000d0f4e, 0xbaced723ffbcc615, 0x009b5fff0f57060d, 0xc7043c87dd90ff3b, 0x61ff0f69c6040f6e, 0xbd85eee0ff3bd7c2, 0x03ff63ff0f77190e, 0x310ebb84d64fff3d, 0x2d0e0f92020d0fa0, 0xffbd9f40dbff0f8d, 0x0f9b0111bc51b292, 0x2b36ffbb58a0d9ff, 0xbb040fb2000d3e55, 0xff3a13a800ff0fad, 0xd20242ff3cbe6b58, 0x4b060d10d7ca043d, 0xe700091007140e10, 0xd4000c0fd9050b0f, 0x7cffbc51c649ff0f, 0xff0fe2000cbd0efb, 0x8e871fffbd3e978c, 0xf40e0e0ff90109bd, 0xe8ff3ca98be7ff0f, 0xff10029405bcb541, 0x450752ffbba18e03, 0x1d9005102b1f0e3c, 0xb7fcff10188e0510, 0x09bcc7a78cff3c39, 0x3c115a6fff102600, 0x3d0111bb9ec250ff, 0x425fff1038250e10, 0x08bc0d49b5ff3ca9, 0xbc86930eff104600, 0x93140e3b262f17ff, 0x65c90410730e0e10, 0xe1b5ff1060140b10, 0x093c7b6236ffbc88, 0x3c3d7236ff106e01, 0x85050bbc5db58bff, 0x83e0ff1080010710, 0x0bbc2fa832ff3c71, 0x3d31298dff108e0e, 0xb7170e3dc836e1ff, 0xa4000c10a9000710, 0x4cffbcc98c43ff10, 0xff10b20008bd8211, 0x7719a0ffbc573366, 0xc4000210c91f0e3c, 0x41ff3d152a96ff10, 0xff10d200123a64ec, 0x3b1040ffbbe07994, 0x23140e11670009bd, 0xf50e0b1103010c11, 0x16ecff10f00b0b10, 0x05bd9020a2ffbb81, 0x3c8f3213ff10fe96, 0x150012bd3e9313ff, 0x0b0aff11100e0e11, 0x073d8535faff3c70, 0xbd7c4833ff111e00, 0x47cb04bcab47c3ff, 0x3401071139220e11, 0xa3ffbca05d4fff11, 0xff11428e053c19c6, 0x815153ff3ca21923, 0x541c0e1159250e3a, 0x12ff3c19dabdff11, 0xff1162280e396e40, 0xa8d6dbff3c72a481, 0x8f1f0e11af060dbb, 0x7c0e0e1181010911, 0x12ff3d6f0a5eff11, 0xff118a1c0e3afbe9, 0xd41ac2ffbba4bf65, 0x9c000c11a1230e3c, 0x8bffbc038988ff11, 0xff11aa240ebcd5f3, 0xde0b0bff3e884025, 0xc50e0e11d30011bb, 0x9b31ff11c0960511, 0x0bbcfa28fdff38eb, 0x3bd99115ff11ce05, 0xe50e0ebc806c21ff, 0x679dff11e0930511, 0x09bd951ba4ffbdf5, 0x3c8077adff11ee02, 0x000013bd20f55aff, 0x0003e80000000800, 0x0011d80000000100, 0x008d050000000000, 0x48c3040484160e09, 0xa07e05012c970402, 0x3c8f04005c910400, 0x298b04002e8d0400, 0xe7ff37e03741ff00, 0xff0037140bba4518, 0x838b43ffbb83c1c2, 0x49000d004e0e0ebc, 0x41ffbd00d103ff00, 0xff00570008bb8cda, 0xddbf09ff3b83271d, 0x720008008092043c, 0xacb3ff006d000700, 0x0d3c74108effbb91, 0x3cb7d509ff007b07, 0x925c05bc902dddff, 0xd218ff008d000600, 0x05bb970b09ff3c30, 0xbdae058aff009b5d, 0xe80109ba92699cff, 0xba011200c8010b00, 0x862fff00b58f0400, 0x04bc86cb40ffbbcd, 0xbc38ca01ff00c378, 0xda02073ca0159bff, 0x3b86ff00d5080e00, 0x0c3bdf88a3ff388b, 0xbbdde98bff00e300, 0x0c0112bd0fa5deff, 0xf9130b00fe020e01, 0xdbffbba272e9ff00, 0xff0107000c39cf8f, 0x834e67ffbc5800a0, 0x19030b011e070ebb, 0x34ffbc2b95eaff01, 0xff01270a0e3c258e, 0xa1c2caff3d47e688, 0x78810501bc050b3b, 0x4a000e0158000f01, 0x8282ff0145a90401, 0x0dbc9b2c82ffbac6, 0xbab9953eff015305, 0x6a02083c827c30ff, 0xb2e0ff0165010b01, 0x0cbb6a91ccffbc57, 0xbbb984a5ff017301, 0x9c0012bc9fe63fff, 0x89060e018e000901, 0x9cffbcb07433ff01, 0xff0197070ebc24ee, 0xa4a58bffbca45baa, 0xa9020901ae00073b, 0x1cff3a76fb60ff01, 0xff01b7030dbc509d, 0x986f8dffbcacb5be, 0xe4000702041c053b, 0xd1020801d60a0501, 0xebffbc8c868cff01, 0xff01df00083b363b, 0xa517bfffbc26b606, 0xf1130e01f60b06b9, 0xd7ffbc810d7bff01, 0xff01ff0c063c6f6d, 0xe2c145ff3cda4a2f, 0x1a01070228070d3b, 0x61a1ff02150c0e02, 0x053be0025dff3916, 0xbba3c029ff022380, 0x3a0d0ebb3ef75fff, 0x4b08ff0235080e02, 0x0cbd7e8561ff3c59, 0x3a4e8abeff024300, 0x680c0e3d3a8043ff, 0x98080e02dc8a0503, 0x6a000d0278070e02, 0xe482ff0265030b02, 0x04bcc318b8ffbb9f, 0xb9720036ff0273c6, 0x8ac804badbc11eff, 0x6152ff0285000902, 0x11bc5962bfff3cf1, 0xbda805b2ff029300, 0xbc0c0b3c0d1b27ff, 0xa9040d02ae0b0b02, 0x72ff3b6a1084ff02, 0xff02b7000c3c6d13, 0x8ebae4ffbd0257e4, 0xc91d0502ce000cbd, 0x36ffbc8177abff02, 0xff02d7010c3b86a2, 0x587a08ff3ce5b0dc, 0x04080e03240a0e3d, 0xf1c80402f68c0503, 0xf3ff3bdc8c7eff02, 0xff02ffc904bd0dda, 0x97355eff3bd9fb29, 0x11000903160b0bbc, 0xa8ff3ce4b698ff03, 0xff031f010cbd2d21, 0xb9cb2bff3d2b3995, 0x3a8b05034800083d, 0x6731ff03350b0b03, 0x11bd13d5a5ffbd8c, 0xbb5b5ae0ff034301, 0x5a000c3c8191b0ff, 0x3dc6ff0355c60403, 0x04bd366243ffbcb1, 0xbd95ff26ff0363cc, 0xf8c404bd558cc2ff, 0x94010803b47f0503, 0x81000203860d0e03, 0x26ffbdccacbdff03, 0xff038f0e0ebd3a21, 0x6e2557ffbc0c6100, 0xa1000703a601113d, 0x84ffbd6adb81ff03, 0xff03af0207bc3f03, 0xe3f49fff3cc672da, 0xca001203d880053c, 0x3b09ff03c50b0b03, 0x073d8e6c98ff3d49, 0xbd265ee2ff03d302, 0xea010c3c15ed14ff, 0x3e07ff03e5870503, 0x0e3b4c2493ffbc5a, 0xbceaf640ff03f30d, 0x40070d3c9dcaafff, 0x12140b04200d0e04, 0x521dff040d0b0b04, 0x073cd3d7e0ff3b01, 0xba639332ff041b00, 0x320002bc720830ff, 0xf7c1ff042d140b04, 0x0c3bb1ae2fffbc76, 0x3bc1287aff043b01, 0x6401073cc7d419ff, 0x51010c04560d0e04, 0x6bffbc51e458ff04, 0xff045f8405bdef91, 0xeb00f3ffbceae6ca, 0x71090b0476c6043b, 0xcfffbc8f6850ff04, 0xff047f7905bd27e2, 0x0f5647ff3d1cab45, 0xa8420506c455053c, 0xd83c05051c250e05, 0xaa410104b8900404, 0xed86ff04a53a0104, 0x053c26d452ff39b9, 0xbabc4451ff04b337, 0xca3f01bc8924d8ff, 0xdeb0ff04c53e0104, 0x033d867506ff3c3a, 0x3d81208fff04d319, 0xfc00123abbdd0aff, 0xe99a0404eea70404, 0x3cffbb43dc0cff04, 0xff04f74105bc837a, 0x2f0d8cffba636d1e, 0x093f05050e6b043d, 0xf1ffbb38873aff05, 0xff051700083a95ae, 0x6a9d19ff3b7b8abf, 0x44340e0564bd043c, 0x317f040536001105, 0xd9ffbb192733ff05, 0xff053fbc04bc4568, 0x0de551ffba3baa56, 0x513d010556010dbc, 0x55ffbc146a16ff05, 0xff055f4101bd6466, 0x53c910ffbb645c48, 0x7a310e05880206bc, 0x7e53ff0575010c05, 0x02bb25f704ff3d35, 0xbcd01886ff058300, 0x9a000f3c9d0d40ff, 0xdc8bff0595020b05, 0x0c3c4c0adbffbce0, 0x39ff2211ff05a301, 0x38100b3bf7a351ff, 0xd4c50405f4530506, 0xc11c0e05c6011105, 0x3dff3a51a782ff05, 0xff05cf0209bb0a98, 0x9657b4ff3b78dfed, 0xe1340e05e6c704bc, 0x04ff3c9f2651ff05, 0xff05efc804bcca53, 0x823985ffbccfe263, 0x0a36010618ad043b, 0x9f30ff0605010d06, 0x0c38c44e9dffbc44, 0xbbbfbe7eff061300, 0x2a190ebc9047a0ff, 0x6d79ff06250b0b06, 0x0b3e0672ecff3c86, 0xbba3a9c5ff063309, 0x80130b3c42b60aff, 0x5201120660b20406, 0x84a5ff064d7d0406, 0x0cbc8a5477ffbb6e, 0x3da73350ff065b00, 0x72c1043d526552ff, 0x8a75ff066dc00406, 0x05be4d593bffbd43, 0xbdc210d4ff067b48, 0xa454053c3336dfff, 0x9100020696a70406, 0x1effbbb93775ff06, 0xff069fab043ba3c0, 0x1a2448ff3ce85c24, 0xb1b00406b6b7043a, 0x15ffbb6bed05ff06, 0xff06bf0006bd821d, 0x386a04ff3dbaf104, 0x588b0507e4ba04bc, 0xf4010d07140b0b07, 0xe11c0e06e6000d06, 0xadff3d3e8930ff06, 0xff06ef7504bb9d1e, 0x158e0bffbd855538, 0x01a20407067805bd, 0x9cffba2b4a80ff07, 0xff070f00093b5c5f, 0x16d432ff3b5ecdb5, 0x2a001107380f0bbc, 0xb597ff0725070d07, 0x0d3bd48698ffbd07, 0xbc7c3ff2ff073306, 0x4a190e3d15ffd9ff, 0xabe2ff0745a30407, 0x0e3c760e5bffbae6, 0xbc9731e8ff07531e, 0xa0000f3a9acd90ff, 0x72220e0780b40407, 0x0db8ff076d1f0e07, 0x0bbd4405b0ff3a75, 0x3d27ace5ff077b03, 0x92040bbd2abee1ff, 0x4dc6ff078d000707, 0x08bc5c4217ffbdd9, 0x3bb4f7e8ff079b00, 0xc4b404bd8a4913ff, 0xb1170e07b6b30407, 0x5effbbbca1a8ff07, 0xff07bf8c053aa49d, 0xbb6d9effbbbcf8ab, 0xd1190e07d61d0ebc, 0x86ff3d099de4ff07, 0xff07df1f0e3b6f2f, 0xb76473ff3dd0e9f8, 0x306105087400093c, 0x0200070810010708, 0xef15ff07fdc20408, 0x04bd0ee2d5ffbcad, 0xb90a2d85ff080bc1, 0x22bc04bc878a56ff, 0x5779ff081d0b0b08, 0x0ebd0b2727ffbbd1, 0xbb853afeff082b1d, 0x5463053c029e12ff, 0x410b0b0846620508, 0x6dffbc058c9cff08, 0xff084f0112bd54e3, 0x95c4e4ff3dae478d, 0x61ca04086664053b, 0xa4ffbcc0b579ff08, 0xff086f00073d2df9, 0x608216ffbb2984b3, 0x9c000f08bc6d053a, 0x89330e088ebc0408, 0xf8ffbe99d5e7ff08, 0xff0897340ebe2031, 0xafdba0ff3b29af00, 0xa9070d08ae290e3c, 0xe3ffbd1cbd72ff08, 0xff08b700023c269a, 0xa1739cffbbd2e633, 0xd2040d08e0170ebc, 0xbd00ff08cd000d08, 0x0fbe05960fffbcdc, 0x3ccb10a0ff08db00, 0xf2c704bd1ae532ff, 0xb1dbff08ed040d08, 0x05bc295d79ffbd06, 0xbcf7604aff08fb89, 0x80120ebc8396d2ff, 0x289b040b44010b0d, 0x58000b099c98040a, 0x2a55040938910509, 0xb275ff0925000d09, 0x053c1fc590ff3cb8, 0xbd01d7d2ff093390, 0x4a060d3a423dd2ff, 0xe0aeff0945010e09, 0x053cb5a8e5ffba93, 0x3cecfe33ff095394, 0x7c030d3d3feaceff, 0x69020d096e880409, 0x37ffbc86fa95ff09, 0xff09770002bd7984, 0xda2acfffb89fa789, 0x899005098e000f3c, 0xf1ff3b1f2ac9ff09, 0xff0997080e3ce2ee, 0xc67d71ffbbeb4489, 0xc4000809e400023b, 0xb1000709b69a0409, 0x8affbcac42dbff09, 0xff09bf9105bdb32a, 0x4fe2ccffbb8345e3, 0xd18e0509d601113c, 0x2dff3cb89d15ff09, 0xff09df9005bc8d4d, 0xd39d80ff3d8b7e23, 0xfa00070a0899043d, 0xc820ff09f5900509, 0x053cf38c52ff3d50, 0x3c606529ff0a0395, 0x1a0b0e3c120c60ff, 0x2692ff0a15070e0a, 0x0cbda91c68ff3bf5, 0x3c661137ff0a2300, 0xb801113d56e416ff, 0x54060d0a74b1040a, 0x4101080a46000c0a, 0x07ffbb98d9f3ff0a, 0xff0a4fa004bc9fd4, 0xd92b1fffbbf312bd, 0x61b0040a66080ebc, 0xb0ffbc05c188ff0a, 0xff0a6f00123c8fd8, 0xc81187ffba961983, 0x8a000c0a98bb043c, 0x8375ff0a8500020a, 0x0ebb619383ffbc7b, 0xbbf46615ff0a9302, 0xaac704bd03a7c8ff, 0xcf72ff0aa500020a, 0x07bc7266e0ff3b20, 0xbce562f9ff0ab300, 0x00020dbc0de62eff, 0xd200070ae000090b, 0xaf3bff0acd0d0e0a, 0x0c3d756040ff3bd1, 0x3cab0e3fff0adb00, 0xf2010ebcbaf4f6ff, 0x7910ff0aed000c0a, 0x0ebc9b0170ff3c10, 0xbd9a591fff0afb0d, 0x249e04bc4bc8a6ff, 0x1100020b169d040b, 0x18ffbe87ee56ff0b, 0xff0b1f0007be9505, 0x2f2fc0ff3d00fb30, 0x31a6040b360e0e3c, 0xc5ff3cf3707eff0b, 0xff0b3f00023b4ab5, 0x3133e8ffbe1ae31e, 0xd802090c64000fbd, 0x746f040b94010e0b, 0x6100070b6669040b, 0xe1ff3be5ea96ff0b, 0xff0b6f6b04bc22f7, 0x97e535ff3e043403, 0x8191040b8600093c, 0x82ffbd0d423dff0b, 0xff0b8f0109bb5deb, 0x2460a4ffbb67466a, 0xaa030b0bb800023c, 0xbe9dff0ba500070b, 0x0ebb345f6dff3c86, 0x3cd69ad3ff0bb302, 0xca0f0ebc4687dbff, 0xd854ff0bc500070b, 0x09babb4a23ff3c13, 0x3d926fecff0bd300, 0x20010ebde73a5bff, 0xf200020c0088040c, 0xcca8ff0bed7a040b, 0x0b3c1ade40ffbd16, 0xbd080fa2ff0bfb03, 0x1289043cb79cc0ff, 0x3be8ff0c0d000e0c, 0x02bd8b9318ffbd88, 0x3c999ec3ff0c1b00, 0x4400023c0a208eff, 0x31b7040c36070e0c, 0xebffbd810dd8ff0c, 0xff0c3fc0043b06e5, 0x03fa6cff3d678021, 0x519d040c569f04bc, 0x50ff3cae1155ff0c, 0xff0c5f070e3dc231, 0x901eb2ffbd3deda0, 0xb0cb040cf4010cbc, 0x8200080c9001120c, 0x7e43ff0c7d0a0e0c, 0x0cba8a6185ff3a49, 0xb94e0337ff0c8b00, 0xa2b304bb7f0360ff, 0x21c9ff0c9d9f040c, 0x04bb9a31adff3b69, 0x3c4d2e59ff0cabbd, 0xd40e0e3b8a93d6ff, 0xc1100b0cc600080c, 0x02ffba9fdd59ff0c, 0xff0ccf060d3bc219, 0x9fb481ffbd1a9e4d, 0xe10b0b0ce60011bb, 0xdaffbd52197dff0c, 0xff0cef0107bd83d7, 0x48ca81ffbce4fb10, 0x1c00120d3c030bbd, 0x09080e0d0e070d0d, 0x74ffbd18eb55ff0d, 0xff0d17c104bc4469, 0x80e24dff3d1df7f5, 0x2900070d2e000ebd, 0xacffbafd4ccdff0d, 0xff0d370008bc9365, 0xb35ab7ff3c11dacf, 0x5200120d6000093c, 0x9d5bff0d4d93050d, 0x04bc23f802ff3b6b, 0xbc2f5d73ff0d5bca, 0x72070ebcf9ae09ff, 0x25cfff0d6db7040d, 0x093beeedffffbb8d, 0x3cda497aff0d7b02, 0xb7010cbc001114ff, 0x18c9040e9b010b0f, 0xb4b5040dd4b7040e, 0xa100070da6000d0d, 0xeeffbd1c84a4ff0d, 0xff0daf020dbca052, 0xf57121ff3c02fb9b, 0xc100070dc60002bb, 0xfcffbe3a504cff0d, 0xff0dcf0007bd73af, 0x3813c0ff3d915400, 0xea190e0df8b804bd, 0xd37aff0de501120d, 0x0d3cce1e90ffbcef, 0x3e006908ff0df304, 0x0a170e3e63f06fff, 0xe5c3ff0e0500090e, 0x04bd40b0c5ff3d1c, 0xbce5bce4ff0e13ba, 0x609505bb2d8ef6ff, 0x32cb040e402b0e0e, 0x0f88ff0e2d00080e, 0x08bce91a35ff39af, 0xbd677090ff0e3b02, 0x520002bc91e814ff, 0x59caff0e4d2c0e0e, 0x053d5c3a58ff3e14, 0x3c75b047ff0e5b90, 0x84000cbc8c17e7ff, 0x7100070e7601120e, 0xd8ffbccdaf51ff0e, 0xff0e7f0007bc4c89, 0xf339b0ff3d0f04ec, 0x9100070e96000f3b, 0x70ffbdc680e1ff0e, 0xbbf2cd70ffbd52a2, 0x0ee700070f2b140e, 0x0eb995050ec70008, 0x8703d0ff0eb4b804, 0x9a043be76bddffbc, 0xffbda92406ff0ec2, 0x0ed9000cbc6b48c9, 0xa4d61cff0ed4050b, 0x0b0b3c5fb3aeffbc, 0xff3d5b704dff0ee2, 0x0f0b060d3dc8afd8, 0x0ef8b8040efd000d, 0x7642ffbc907f62ff, 0xdeff0f06000c3d36, 0xbd3cebf5ffbca8c5, 0x0f180b0b0f1d9205, 0x8ac9ffb935f463ff, 0x65ff0f26cd043d04, 0x3c63aa7cffbcb80c, 0x0f53190e0f73020d, 0x0f40000d0f459c04, 0xbb3bff3e59dec6ff, 0xfaff0f4e170e3d80, 0x3ce734aaff3bd52f, 0x0f6000070f65220e, 0x141bffbc6b1e23ff, 0x79ff0f6e280e3b83, 0xbb46220cff3cb236, 0x0f891c0e0f97220e, 0x41899dff0f84070b, 0x00083b18a894ffbb, 0xffba9c86ebff0f92, 0x0fa90208bc335922, 0xe8a19cff0fa4230e, 0x000cbb0e92e0ff3b, 0xff38ebdd4dff0fb2, 0x10c5140ebd5a07cf, 0x0ffe00111039050b, 0x0fd900020fde070d, 0xdd4510ff0fd40007, 0x5dffbe032b13ffbd, 0x020ff0ca04be1764, 0xbc483bcaff0feb00, 0xf90002bc2a2450ff, 0x00ff3d27ed1cff0f, 0x07101900093c83ae, 0xff100f0007101401, 0x6d2378ff3d84c2f6, 0x0109bc71c540ff3d, 0x45ff1026060d102b, 0x3ba0e5c0ffbd0287, 0x411d96ff1034020b, 0x00093c26e24cffbd, 0xc504106100111081, 0x67ff104e00021053, 0x3d5e3718ffbe6188, 0x845129ff105c0107, 0xc2043cafcaaeff3d, 0x7dff106e0b0b1073, 0xbbd6d795ff3dbfb0, 0xef1a41ff107c0b0b, 0xca043e1dfbc6ff3d, 0x01091097000210a5, 0xffbd504784ff1092, 0x10a0c5043ca4fbe8, 0xf702ff3e26c43cff, 0xcd0410b795053cf1, 0xffbc9f612eff10b2, 0x10c0060dbd326f4e, 0x3e86ff3c8da318ff, 0x070b114c170e3e2a, 0x000910e8ba041108, 0xbbff10de030b10e3, 0x3e04e088ff3d6e04, 0xfa0002bd355d90ff, 0x6d82ff10f5bb0410, 0x053d2c690eff3cc3, 0x3c966689ff110390, 0x2cca04bb124b30ff, 0x19bb04111e150e11, 0xc7ff3c78a21bff11, 0xff1127c0043dcb93, 0x122cfbff3d365ce2, 0x390012113e0007bd, 0x4effbdfecc9cff11, 0xff1147060dbd8d0e, 0x66a177ffbc9ad1ea, 0x741c0e1194280ebd, 0x6101121166070b11, 0x79ffbc45ec14ff11, 0xff116f00083cef93, 0x750daeff3c9a7a1a, 0x810b0b11861d0e3d, 0xbaffbcb42e5dff11, 0xff118f00023924d8, 0xccc4c7ffbc37abdf, 0xaa910511b82b0e3c, 0xa42bff11a5cb0411, 0x05bc9706c5ff3c46, 0xbd17dd5aff11b394, 0xca8e05bd788ea0ff, 0x1eadff11c5000811, 0x0ebd9277dfffbd7a, 0x3cf84588ff11d32f, 0x000013bb47e594ff, 0x0003e80000000800, 0x0011480000000100, 0x6783050000000000, 0x4881050484c50408, 0xa00006012cb30402, 0x3c6805005ca40400, 0x290209002e9c0400, 0x38ff39c5e8caff00, 0xff00373005bba112, 0x3b5e52ffbc7b5613, 0x49040b004e6905bb, 0x66ffb7b5c61eff00, 0xff0057000e3c41d1, 0xc6952affbc0ff440, 0x72140b0080650539, 0x0cfdff006da70400, 0x04390c7071ffbc24, 0xbbccffaaff007ba7, 0x9266053c34631dff, 0xbcf1ff008d1a0e00, 0x073bd06149ff3d24, 0x3bb12f52ff009b01, 0xe82905bba41765ff, 0xba000d00c8010d00, 0x5eb5ff00b5990400, 0x0ebcf6da29ff3a1e, 0xbc8a8b36ff00c300, 0xda0706bb8adcd8ff, 0x03d9ff00d51a0e00, 0x043a39eecbffbbc8, 0xbb101bf6ff00e36f, 0x0c06063b19f5cfff, 0xf9030600fe000c01, 0x68ffbc2db0acff00, 0xff0107020738fa8c, 0x1059a5ffbca6e72c, 0x19030e011e0d0ebd, 0x9dffbbd79955ff01, 0xff0127000f3863f1, 0x313975ff3cc90554, 0x78170e01bc5405bb, 0x4a00070158020b01, 0x1d48ff0145010b01, 0x04bcc1f4e6ffbaa0, 0xbd103196ff0153c0, 0x6a120ebc7a1515ff, 0xb655ff0165120501, 0x04baf70139ff3bd1, 0x3b9c7803ff0173be, 0x9c1a01bbcf8e4fff, 0x890111018e000601, 0xb3ffbdb8e5d1ff01, 0xff01970306bd1496, 0x95c294ffbcc2f362, 0xa9011201ae4705bb, 0xd1ff3bd3c7acff01, 0xff01b74b0539e275, 0x01aca2ffbc8cad6c, 0xe4bf0402047f053b, 0xd1070d01d65f0501, 0x02ff3b8cd705ff01, 0xff01df1d0ebc049f, 0x2c8e78ffbb32ca88, 0xf1190e01f6c0043b, 0x12ffbc80fb92ff01, 0xff01ff00073cbcee, 0x0b1ebaffbc3b5ec2, 0x1a050b02280107bb, 0xaae9ff0215000702, 0x04bb2d338fffbcfa, 0xbbc6a445ff0223b6, 0x3a00023c93352eff, 0x4259ff0235800502, 0x04bb8bd217ffbd21, 0xbbbfe272ff0243b4, 0x6892043bd385c3ff, 0x98010d02dc000f03, 0x6a00080278260e02, 0xba17ff0265010702, 0x0dbd27906aff3b0f, 0xbd749dc7ff027300, 0x8a030b3c05390eff, 0x7dbcff0285000c02, 0x04be3a7f6affbe07, 0xbe815cbdff029384, 0xbc0006be745804ff, 0xa9400402ae4b0402, 0x89ffb9b87f14ff02, 0xff02b7060dbd3eac, 0x3a631cff3c1e0ebe, 0xc9000e02ce020d3d, 0xa0ffbd083fbbff02, 0xff02d78604bd3532, 0xd8662cffbda414c5, 0x0490040324060dbd, 0xf1020e02f68d0403, 0xecffbc08d255ff02, 0xff02ff0b0e3b2622, 0xb5ec13ffbce9a366, 0x11030e0316060ebb, 0x1eff3b9c274eff03, 0xff031f0d0ebcf130, 0x04877dff3d18f232, 0x3a8c04034800113c, 0xdba5ff0335070d03, 0x053c1ebb77ffbb92, 0xbb91e4a0ff034382, 0x5a000c3bda2d89ff, 0xc041ff0355820503, 0x093c3b0471ffbb10, 0x3d274682ff036300, 0xf800023c29670dff, 0x94220e03b4a10403, 0x819b0403869c0403, 0x4dffbce090f2ff03, 0xff038f040bbd6ff8, 0xcc2c75ff3af9d256, 0xa1000c03a69e04bc, 0x3fffbc538671ff03, 0xff03af01123d1900, 0xe020eeff3b97f74c, 0xcaa60403d8aa04bd, 0x3ec8ff03c5a30403, 0x0dbcfd1981ff3c08, 0x3cc96e34ff03d306, 0xea020d3daa1dc0ff, 0xf6ccff03e5000703, 0x063cb147c8ffbc80, 0xbc49d976ff03f300, 0x40000cbd7b2376ff, 0x129c040420b00404, 0x6a7dff040d9b0404, 0x043c2572d4ffbc20, 0xbc689de0ff041ba8, 0x3202083b8ad8caff, 0xab62ff042dbe0404, 0x0bbb708403ffbc96, 0xbbaad54aff043b08, 0x6400083c8b706aff, 0x51040e0456930404, 0xb4ffb5cb5555ff04, 0xff045fb904be0b56, 0x312d69ff3bc60087, 0x7101080476010cbb, 0x48ff3b148d2eff04, 0xff047fc1043c9ca6, 0x0bc4d2ff3ceef945, 0x72c60406610c053e, 0xcf030e0513150e05, 0xaa170604b8010e04, 0xbf30ff04a5070504, 0x0e3b1e0b00ff3c62, 0xbbd9d218ff04b300, 0xc10108baa3dc80ff, 0x07053cc0ceb8ff04, 0xff3cc75f68ff04ca, 0x04f3010c3bfb9f8c, 0x04e0020804e50b0e, 0x991cff3ce5c0a6ff, 0x70ff04ee02083c86, 0x3b2dbf00ffbbf7b7, 0x0500020d05050b0b, 0xa760ff3c1b75e0ff, 0xc5ff050e070e3c19, 0x3d9d0547ff3d3603, 0x053b011105520208, 0x05280706052d010c, 0xfbe8ff3de71af7ff, 0xf7ff05360b0b3db2, 0x3e371299ff3dba5e, 0x99e980ff05440108, 0x0cacff054d1d0e3d, 0x0e3dbe79e8ff3dba, 0xff055f0002056420, 0xd478c0ff3cbfe850, 0x6564ff056d07063c, 0x073db4cbd0ff3da1, 0x0805bec804060202, 0x0805901906059e01, 0xbca23b1fff058b00, 0x99010ebd27fee3ff, 0x41ff3bac7910ff05, 0x0e05b0050ebc0727, 0x3cc0e716ff05ab00, 0xb90f0ebdbb287bff, 0x7effbe1e3714ff05, 0x0605e20208be7540, 0xff05cf350e05d408, 0x0c3b9dffbd242898, 0xab00ff05dd0d0e3d, 0x073e2777bbff3b73, 0xff05ef100605f401, 0x17455bff3d8f0d22, 0xc1a9ff05fd0b0b3d, 0x04bd050f74ff3c90, 0xff060f0f0e061dc7, 0x06181a0ebe43aa9b, 0x608cffbe890f26ff, 0x0b0e0641cb04be93, 0x4eff062e060e0633, 0xbdb6151affbd9d00, 0x48ffc5ff063c2b0e, 0x0d0ebe3a12d0ffbe, 0xfaff064e07050653, 0x3c1c9f81ffbd00ae, 0x3cd6a3ff065c340e, 0x7805bbac5915ffbd, 0x000206bf0d05074b, 0x2a01068801080696, 0x06bdb41981ff067a, 0xbd21b577ff068306, 0x910206b8bba555ff, 0xcfffbdad5090ff06, 0x0c06a80706be01ed, 0x3e0d8ab2ff06a301, 0xb10c063e61c8d0ff, 0x000e3da19d34ff06, 0xffbb946908ff06ba, 0x07076a053ce24a68, 0x06d92a0e06e7c604, 0xf8c2f9ff06d4270e, 0x0111bd26a703ff3b, 0xff3d053a41ff06e2, 0x06f9c704bc9f7528, 0x389d42ff06f4340e, 0xc804bcca2135ff3c, 0xffbc7cd713ff0702, 0x072b060d3b026d8b, 0x07180002071d2a0e, 0xbeafffbd501937ff, 0x0fff07266c05ba92, 0xbb028bd5ff3c69cd, 0x07386b05073d7705, 0xde82ff3c996df0ff, 0x45ff0746cb04b87a, 0x3cc0ea9cffbcbaee, 0x07977b0507db280e, 0x0769010c0777070d, 0x257953ff07640107, 0x00023ba15d98ff3d, 0xff3d0b6eb4ff0772, 0x078902073da484f2, 0x8c15aaff07840b0b, 0xc804bd72aaf9ffbc, 0xff3ce85d7fff0792, 0x07bb82053dff1a58, 0x07a8220e07ad230e, 0xf531ffbc5fd640ff, 0xdcff07b6260e3bba, 0x3b735673ffbd80c9, 0x07c8c70407cd0009, 0x2d18ffbcc74b53ff, 0x5bff07d6010c3d4b, 0xbd69dd1effbcb5c5, 0x0803011108237905, 0x07f0cc0407f5cd04, 0x0325ffbccfa9c4ff, 0xdcff07fe320ebd6f, 0xbca279d0ff3daa27, 0x0810000208150108, 0x7674ff3d88f38cff, 0x21ff081ecc043cb3, 0xbd4ae9e5ffbb29b8, 0x0839310e08478105, 0x33922bff08347a05, 0x7a053a93e3a7ff3d, 0xffbd14254cff0842, 0x0859cd043aebdc81, 0x0ccf6fff08540011, 0x320ebc182a8dffbd, 0xff3d9ff138ff0862, 0x0ccc000fbc3b840c, 0x098601080a908405, 0x08bf0a0b08fa000c, 0x08917204089f260e, 0x6b1308ff088c050b, 0x040d3e1bb97fff3b, 0xff3be41c44ff089a, 0x08b1b004bd3bd159, 0x0110bcff08ac290e, 0x04063d909d6cff3e, 0xff3c5894ecff08ba, 0x08e301073d86198c, 0x08d0000d08d55104, 0xc113ffbca2cc80ff, 0xc7ff08de9b04bd73, 0xbcce3f6fff3d2d03, 0x17a4bcff08ec6104, 0xf140ff08f56f04be, 0x0bbdfe1aedffbce2, 0x0409223d04094203, 0xff090f000d09142d, 0x2f8da8ffbcec2432, 0xe840ff091d010b3d, 0x0bbe32a3ffff3cb6, 0xff092f9904093401, 0xcf61a5ff3cb84365, 0x665fff093d0209bb, 0x04bb785e96ff3cfe, 0x0e095802070966aa, 0x3c4d9708ff095307, 0x610002ba484038ff, 0x10ffbe290f7aff09, 0x0b09782b0ebd23fa, 0xb9aa4b0eff097307, 0x81070b3ca68250ff, 0x93ff3d20e6beff09, 0x070a0d170e3c412d, 0x0b09b2020e09d201, 0xff099f010b09a407, 0x59d540ff3ca11fa0, 0x2b32ff09ad0a0b3c, 0x04be1d2a7affbe16, 0xff09bf020809c49f, 0x583680ff3d068138, 0xd53aff09cda7043a, 0x073cb5b60cffbd12, 0xff09df7d0409ed02, 0x09e8020dbe13a3ea, 0xe3ebffbc81ff80ff, 0x020d09ffa7043c3b, 0xffbe032026ff09fa, 0x0a080002bd9c2a02, 0xc4deffbcc505d5ff, 0x020d0a4cba04bd81, 0xe0ff0a1e00020a2c, 0xff0a27010b3ce3f9, 0x29a0ecffbdd09e3b, 0x391c0e0a3eb504be, 0x64ffbd27e278ff0a, 0xff0a47260ebe8476, 0x3bab3cffbe58a54c, 0x62230e0a70300ebe, 0x6df8ff0a5dbc040a, 0x04bc96b9b8ff3c87, 0xbdcd217aff0a6bc0, 0x82c704bd5892f7ff, 0x77aeff0a7d02080a, 0x04bd80cfcdffbc57, 0x3c0de340ff0a8bcc, 0xb0050bbdf13ba0ff, 0xe000090b24020b0b, 0xb2030d0ac0190e0a, 0xf996ff0aad00070a, 0x0ebc3b035aff3bcc, 0x3c10203aff0abb17, 0xd2ae043d24d2f8ff, 0x49a8ff0acd020d0a, 0x0bbd825d51ffbc2e, 0xbbf19c67ff0adb01, 0x040e0e3d29dafdff, 0xf16b040af60d0e0b, 0xd1ffbd364890ff0a, 0xff0aff020dbbce21, 0x52dcacffbc82d4e0, 0x11020d0b16170e3d, 0x89ffbd569d03ff0b, 0xff0b1f190ebe0150, 0x0a005bff3cfccaf1, 0x4c7c040b6c000cbd, 0x396b040b3e7b040b, 0x62ff3b66097fff0b, 0xff0b478a05bcc7d5, 0x390c5dffbe599bb7, 0x592a0e0b5e00093c, 0x2dff3c5ceda4ff0b, 0xff0b67b0043d8146, 0x12e75fff3d277e38, 0x82040b0b90bd043e, 0xc3c8ff0b7d060e0b, 0x073bb38315ffbb3c, 0xbc2d293dff0b8b02, 0xa2c604bdc6b181ff, 0x3d6eff0b9d2b0e0b, 0x05bcec863eff3b9f, 0xbc6ea762ff0bab96, 0x4000073cc6067eff, 0xdc00090bfcb7040c, 0xc96b040bce87050b, 0xeeff3ce2275bff0b, 0xff0bd792053baa83, 0x13fd03ffb9f5beee, 0xe90e0e0beeb604bc, 0x98ff3c455befff0b, 0xff0bf7070bbba0a2, 0x5980f2ffbdaf420b, 0x1287050c20bd04bc, 0x5ed1ff0c0d01090c, 0x043da1bbb1ff3d2e, 0x3b5363dbff0c1bba, 0x3201083c96e97cff, 0xae16ff0c2d000c0c, 0x043b780f3effbc77, 0x3cca74feff0c3bca, 0x88a704bc1fbbb3ff, 0x5aa2040c68a6040c, 0x4f8cff0c5596040c, 0x0ebd18bf9effbbfa, 0x3d882a46ff0c6303, 0x7a00023c7d6e7fff, 0x33feff0c75030e0c, 0x08be6d633effbd0e, 0xbc954c90ff0c8301, 0xacc804bdda4faaff, 0x99000c0c9e060d0c, 0xcdffbca1514dff0c, 0xff0ca7130e3b9f79, 0x7ad038ffbd62d7af, 0xb9cb040cbecd043d, 0x1aff3c697a82ff0c, 0xff0cc7020dba52e1, 0x18eff9ff3d9d48bb, 0xf00e0b0f0c010c3d, 0x200b0b0d64070d0d, 0xf29e040d008c050d, 0xfc60ff0ced9a040c, 0x0dbbe2a4a8ffbaae, 0x3a57107eff0cfb06, 0x1200023abd2094ff, 0x9f0dff0d0d8d050d, 0x07ba2d1562ff3b14, 0x3a2bdecbff0d1b00, 0x44070ebac0bb07ff, 0x3184050d36bd040d, 0x91ffbcb39d30ff0d, 0xff0d3f00093a0325, 0xb84adeff3d3b235b, 0x51cc040d560009bb, 0xaaffbca8fddaff0d, 0xff0d5f0109bd80b2, 0xb6e939ffbbf07f46, 0x8c070e0dac080e3b, 0x7900090d7e030e0d, 0x1cff3c0d706cff0d, 0xff0d87000cbc18f0, 0xa0008cffbd0869a8, 0x9901090d9e000cbd, 0x1dff3be26313ff0d, 0xff0da70109bc24d6, 0x75054fff3ccb60ff, 0xc2030b0dd00d0ebc, 0x3cb8ff0dbdb1040d, 0x07b9e3d687ffbd1b, 0xbd9278d7ff0dcb00, 0xe2140ebcc84f87ff, 0xf3e1ff0ddd090b0d, 0x0bbc460c7affba09, 0xbc098866ff0deb05, 0x808605bcdffc43ff, 0x1c00070e3c310e0e, 0x09af040e0e070d0e, 0xabff3b95508dff0e, 0xff0e17bc043c2e25, 0x9c0738ffbb32bb7d, 0x29b9040e2ebb04bd, 0xedffbb1e7098ff0e, 0xff0e378505bc8874, 0xb63023ffbb03bdef, 0x52320e0e6084053c, 0xd9aeff0e4dcd040e, 0x07bda9c59effbd81, 0xbc88d8dbff0e5b01, 0x720007bda8d295ff, 0x5bcdff0e6dcd040e, 0x0ebcad7220ffbb4b, 0x3cfc70d8ff0e7b32, 0xc8070e3a859fabff, 0x9a000c0ea801070e, 0x4615ff0e95050e0e, 0x0e3ba9c2a4ffb90f, 0x3b5d8290ff0ea306, 0xba060e3c0d69a0ff, 0xcbf4ff0eb5a5040e, 0x083b740b7affbbd3, 0x3ca86232ff0ec301, 0xec011239c3a3d4ff, 0xd90d0e0ede1d0e0e, 0x1effbb277d28ff0e, 0xff0ee7c2043a8a67, 0x0872a1ff3c861e53, 0xf9b7040efe220e3b, 0x30ffbcb6f8cdff0e, 0xff0f07ca04bb0b15, 0xe79138ffbd1e21ed, 0xa08605102c88053b, 0x3c230e0f5c00020f, 0x29070e0f2e9e040f, 0xabff3ab81b27ff0f, 0xff0f379f04bcb689, 0xe20e5dff3d65248f, 0x49c8040f4eca043b, 0xceffbcc5673aff0f, 0xff0f578405bdb847, 0x753b38ff3bc5c661, 0x72190e0f808405bc, 0x5534ff0f6d00080f, 0x07bcfaf14aff3d07, 0x3e1da97cff0f7b01, 0x92cd043b77f942ff, 0xc512ff0f8d070b0f, 0x0b3c02980fffbc53, 0xbcd1587dff0f9b0b, 0xe80112bdb69dfeff, 0xbabd040fc8c1040f, 0xabc9ff0fb501080f, 0x04bcaed8eaffbb1e, 0x3d447190ff0fc3bf, 0xdac304bc078825ff, 0x7aceff0fd50b0e0f, 0x083ccf827effbc09, 0xbc817093ff0fe300, 0x0c0107bb2daa6dff, 0xf901080ffe0d0e10, 0x3affbcdff314ff0f, 0xff1007bc043c0c8d, 0xbf6d6cffbd158c83, 0x19b304101e220ebc, 0x41ffbc6cfe6eff10, 0xff1027030b3c13fd, 0x961d77ffbc21f2ca, 0x781a0e10bc8905bd, 0x4a0a0e1058cb0410, 0x382eff1045070e10, 0x0ebd332ff4ffbb14, 0xbdc3b98aff10530b, 0x6a180e3a2f25d9ff, 0x132bff1065000810, 0x093cde129cffbca5, 0x3dad6c2fff107300, 0x9cc404bd32440aff, 0x89220e108ec00410, 0xebffbd5ab57dff10, 0xff10971d0e3c64a4, 0xb16612ff39b9c2ee, 0xa90b0b10ae01083d, 0x9cffbcb64acdff10, 0xff10b7220ebd79ef, 0x89d2b2ffbe2ce7d6, 0xe4060e11040d0ebd, 0xd1060d10d6010910, 0xf0ffbc500d54ff10, 0xff10df97043aa8d6, 0xfcab26ffbc4cac6c, 0xf1070e10f69c043b, 0x84ff3d7094b7ff10, 0xff10ff0b0ebc8210, 0xc51ae7ff39a06afc, 0x1a030b11288a05b8, 0x94dcff1115000911, 0x02bc9f1c42ffb7cf, 0xbc8e714cff112300, 0x3a260e3d38410bff, 0x7c24ff1135020811, 0x0ebd96062eff3b9d, 0xbc8f40c5ff11432c, 0x0000133b2c41b1ff, 0x0003e80000000800, 0x0010160000000100, 0x1683050000000000, 0x4853050484190608, 0xa0030b012c000f02, 0x3cb104005c020b00, 0x291606002e4d0500, 0x37ffbbb2da8eff00, 0xff00373401b9164a, 0x41852dffbbadd0b9, 0x491e05004e010b3c, 0x12ff3c70b44fff00, 0xff00570a05bcea3a, 0x577351ffbc9b8309, 0x72010e00800109bd, 0x4e46ff006d4b0400, 0x0cbc1dd7ffffbb3d, 0xbb812de4ff007b00, 0x9235013b54a3e0ff, 0xc9ddff008d560400, 0x0dbc1b2e0effbb30, 0xb813b65cff009b02, 0xe8c804bcce097dff, 0xba020800c8bd0400, 0x9e68ff00b5a90400, 0x073c16b5d1ff3b47, 0x3bd0e0f7ff00c301, 0xdac004bc3476eeff, 0x8fb9ff00d5350e00, 0x02bcafb949ff3c67, 0xbd2c3042ff00e300, 0x0c00023aad3713ff, 0xf9040d00fe000c01, 0x3fffbc292e71ff00, 0xff010718063ce66c, 0x0e5d6dff3d0ad4d0, 0x193405011e3805bd, 0xffff3a032abcff01, 0xff01274c053d33d0, 0x31b68cffbca878a7, 0x78490501bc4a053d, 0x4a3b0101583e0101, 0x1118ff01459c0401, 0x01bbec5fdfffba1d, 0x3ab65c89ff01533c, 0x6a19033c41d2d1ff, 0xcee0ff01657a0401, 0x0b3d5d39d7ff3c14, 0xba6e9244ff017311, 0x9c98043aa20049ff, 0x897f04018e840401, 0x6affbb6612f4ff01, 0xff0197220ebcc303, 0xa48ae1ff3b2dc700, 0xa9001201ae070d3c, 0x1dffbd0b2c96ff01, 0xff01b70107bc3e42, 0x92b356ffbd5afb0c, 0xe4140b0204ad043d, 0xd1020b01d6040b01, 0xe8ffbbb78ec5ff01, 0xff01dfab04ba8599, 0x54f8ceff3ac3a9d5, 0xf14e0501f6220ebb, 0x8aff3c13a154ff01, 0xff01ff4d053aa088, 0x8ba3f9ffbc4d6c1a, 0x1a00060228ae043c, 0x082aff0215030b02, 0x07bdf1d1b0ffbd68, 0x39a3f6abff022300, 0x3ab0043c3bf2acff, 0x18daff0235240e02, 0x05bd571e02ffbc34, 0x3bf4d369ff024351, 0x68100bbc21f171ff, 0x98b60402dcbd0403, 0x6a95040278020b02, 0x7d2eff0265310e02, 0x0fbc2a4c01ffbbae, 0xba14e82dff027300, 0x8a0006bc5cd0f7ff, 0x3bf2ff0285011102, 0x063bc8b24fffba5e, 0xbc8706b9ff029306, 0xbcba04bb7c11dfff, 0xa9010b02aeb70402, 0x38ffbd15dd3fff02, 0xff02b7b804bb04af, 0xbdeb77ff3c9b6d76, 0xc9720502ce020b3b, 0xa3ffbcf9b161ff02, 0xff02d70011bc5b07, 0xc6212dffbaf86749, 0x04230e03240007bb, 0xf1070d02f6000903, 0x94ff3bb7aa93ff02, 0xff02ff8205bd1d50, 0x272bbeffbc810082, 0x11310e03160006bd, 0xe0ffbc45b357ff03, 0xff031fc6043b5243, 0x12199cffbd2ee769, 0x3a1d0e0348230ebc, 0x5440ff03350b0b03, 0x0cbcbd45e7ff3a3d, 0x3b80a24eff034301, 0x5ac1043cb637a2ff, 0x03aeff0355c00403, 0x0ebc0a26f5ff3c70, 0xbcdd8dd1ff036328, 0xf8110bbabd67ecff, 0x94070e03b4990403, 0x8191040386000903, 0x1bffbb41b0f4ff03, 0xff038f010c3cd9ee, 0x037cc0ffbc0b239f, 0xa1080e03a6070dbd, 0xe6ffbd33be1aff03, 0xff03af080ebc89a7, 0xfab913ff3d3df5d3, 0xca9d0403d80012bc, 0x8ba3ff03c5010c03, 0x0ebcf7d430ffbc00, 0xbda80823ff03d30d, 0xeabd04bd2db882ff, 0x7f1dff03e5a30403, 0x08bbec898affbcf2, 0xbd9bd1d0ff03f301, 0x40bd04bccaf580ff, 0x12020704207e0504, 0xd3cbff040d000804, 0x083ba35626ff38e7, 0xbb6f0cd4ff041b00, 0x320007bc84ee84ff, 0xaf33ff042dbb0404, 0x0cbc970c53ff3b84, 0xbb9caf76ff043b01, 0x64000cbd03298dff, 0x51c0040456011104, 0xb3ff3c6131efff04, 0xff045f0002bb5c81, 0x1739f3ffbd58e699, 0x71070e04760012bc, 0x06ffbd115987ff04, 0xff047f060d3c5fd2, 0x30ad19ff3b915a1b, 0x9f1a050673090ebd, 0xd80008051c020705, 0xaa9a0404b8000f04, 0x25cbff04a5040e04, 0x05bc8e2755ffbab2, 0xbd65d89eff04b30c, 0xca030ebc06b367ff, 0xd671ff04c5a70404, 0x0bba626621ff3b19, 0xb996ad84ff04d307, 0xfc0505bc25c3e2ff, 0xe9880404ee000f04, 0x05ff3adbe49eff04, 0xff04f70111bce994, 0xd11e94ffbb672e7b, 0x090a05050e010738, 0xf3ffbbc4ee33ff05, 0xff0517000f3b4662, 0xb42c6dff3cc57e61, 0x3b000b055b00023a, 0x31000e0536020d05, 0x72ffbd2142c4ff05, 0xbd8e61cdffbd2a08, 0x05480005054d8b04, 0x3ab2ffbbfe2593ff, 0x78ff055607053c57, 0xbbaee843ffbd0b0c, 0x05710105057f000f, 0x7b8c29ff056c0108, 0x030b3c6ed16bffbc, 0xff3c88715dff057a, 0x0591010e3d1ddcf8, 0x94402fff058c0111, 0x030b3af453ccffba, 0xff3c0652caff059a, 0x062f070e3a401291, 0x05cb000f05eba904, 0x05b8010e05bd000c, 0xab68ff3c97e180ff, 0xadff05c6a704bc9d, 0x3dbf99b8ff3ca051, 0x05d8000b05dd9b04, 0x53d4ff3bb0582bff, 0xd3ff05e60008bc2f, 0xbbf786b5ff39a6b5, 0x0601b104060f010b, 0x45e051ff05fc2405, 0xb7043cc47a73ff3a, 0xffbd506414ff060a, 0x0621bf04bc1eedea, 0x388e9dff061c000f, 0x26053a457aefff3c, 0xffbb85e9b9ff062a, 0x0665cb043b6d6900, 0x0649b70406572905, 0x2774f6ff0644000c, 0x000cbd9d6f75ffbd, 0xffbd25c9b8ff0652, 0x0660000bbc4cd760, 0xe7acffbc17309eff, 0x80ff066e0007bd19, 0x3c8f2800ff3c9c99, 0x06c80002070c000b, 0x0691960406b1130e, 0xfaa5d5ff068c0905, 0x00073cc775a8ffba, 0xa8ff069e000806a3, 0xbd0ce25cffbcdbc3, 0xfcd6f5ff06ac0305, 0x170ebc8a3e98ffbb, 0xc3ff06be020d06c3, 0xbd43ada2ffbd49d0, 0x07170ebd0c1f64ff, 0xe2000c06e7011107, 0x6a0bff06dd000806, 0xffbad2c42cffbb00, 0x06f9020dbbfbc0a1, 0x265283ff06f4bd04, 0x9a04bcc696acff3c, 0xffbcb90004ff0702, 0x106cceff3d210fd5, 0x5804050793c204bd, 0x2a000207380d0e07, 0xdb15ff0725010b07, 0x0dbd2030edffbae5, 0x3b69d49cff073302, 0x4a1a0ebca8f6cbff, 0x4217ff0745020d07, 0x0b3d18e77effbbd0, 0x3d802a89ff075301, 0x73010b3d6098b7ff, 0x69020d076e130e07, 0x78ff3da76e6aff07, 0x3d4763f2ff3d577c, 0x078019050785030b, 0x125bff3c5fec94ff, 0x36ff078e020d3d41, 0x3d67cdddff3c9ded, 0x07bb250507db000c, 0x07a80b0e07ad0705, 0xb599ff3ab8e9e0ff, 0xebff07b6020dbc91, 0x3b3aca10ffbbae05, 0x07c8c30407cdc604, 0xdf59ff3d065bd8ff, 0x30ff07d60d0e3ca1, 0xbb98cc33ffbc0ad0, 0x07f1020d07f6000f, 0x82d02cff07ecc504, 0x00ff3cc49ca0ff3c, 0x070808010c3dccdb, 0xba74e080ff080300, 0x110007bc533f1eff, 0x00ff3d27c8c4ff08, 0x050c722b0e3a6bad, 0x07091a010b0a368d, 0x09086eb00408b201, 0x0808400112084e00, 0xbb641f32ff083b00, 0x49220ebc165bf3ff, 0xecff39895d23ff08, 0x120860aa043cde65, 0xbc13ca3aff085b01, 0x69000fbccd92b3ff, 0x73ff3dcd8d99ff08, 0x050892000f3acc5a, 0xff087f0007088485, 0xf1f6f8ffbe0f5975, 0xf201ff088d8905bc, 0x0ebd430cf0ffbb8c, 0xff089f000208a410, 0x28a0aeffbc5988f3, 0xca98ff08ad0008bd, 0x08bb0fba2effbc75, 0x1208dacb0408f101, 0xff08c7550408cc01, 0x707931ff3c7f3bfb, 0x00b9ff08d5020dbb, 0x0f3cd3ced8ffbc09, 0xff08e7000808ec00, 0x146ffeffbdf526a0, 0xcc043b866240ffbe, 0x020d0907180e0915, 0xffbd274734ff0902, 0x0910c304bc8d0585, 0xef26ff3c229ee5ff, 0x07bdf9f4e8ffbc6d, 0x020966840509aa02, 0x0b09387e04094600, 0x3c495525ff093302, 0x410111bbe0d9f7ff, 0xadffbb15e8b8ff09, 0x0e0958010c3c8334, 0x3b9fd72eff09531d, 0x61190e3cff2034ff, 0xa7ff3cb325f8ff09, 0x0e098a01123dea33, 0xff0977c504097c17, 0xa58483ff39f220f5, 0xc884ff0985ca04bb, 0x0eb886c659ff3b62, 0xff0997040b099c00, 0xf37de7ffbc9c6990, 0xeab7ff09a50e0e39, 0x0cbb292deeff3b61, 0x0f09d2780409f200, 0xff09bf050b09c400, 0x927589ffbcd679df, 0x6730ff09cd070bbd, 0x05bba79f93ff3bf1, 0xff09dfcc0409e485, 0x562761ffbb439e45, 0x39aeff09ed0008bd, 0x04bb5957edff3b82, 0x0b0a08000f0a169c, 0xbd4c660eff0a0303, 0x11030bbe28d735ff, 0x0bffbbad9649ff0a, 0x020a28a704bca3a4, 0xbd74c311ff0a2300, 0x31060ebb5d0b1aff, 0x2affbbff6169ff0a, 0x0e0b56220e3a2907, 0x0c0a86ae040aca1d, 0x040a58ab040a6600, 0xbadaa5ceff0a537e, 0x610d0e3a56a0b1ff, 0xedffbc069328ff0a, 0x070a7894053ba159, 0x3ae39795ff0a7300, 0x819104bc4bc502ff, 0xe9ffbd7c5672ff0a, 0x050aaa0d0ebc5086, 0xff0a97b4040a9c8f, 0x394659ffbb52ef6a, 0x61ffff0aa5010b39, 0x0738c7bff0ffbbf7, 0xff0ab7060d0abc00, 0x6986a9ffb95c7794, 0x37fdff0ac501123b, 0x0e3b817156ffbb93, 0x050af2000f0b1220, 0xff0adf8f050ae492, 0x5d0deeff3d22d38f, 0xf6b3ff0aed030bbb, 0x0d3d87b164ff3e10, 0xff0affc2040b0406, 0x8605eeff3d37f040, 0x3ea7ff0b0d010cbc, 0x073dddaabcff3c9f, 0x0f0b28070b0b3600, 0xbd8c4cd0ff0b2300, 0x310002bc0c1972ff, 0xcdffbce2b717ff0b, 0x040b48020d3b4041, 0xbca05c78ff0b43b7, 0x5100023cf3290dff, 0xc6ffbc71acb7ff0b, 0x090be6280e3c0296, 0x0d0b82250e0ba200, 0xff0b6f000c0b7406, 0xfbe5ceff3bcea8e8, 0x3a69ff0b7d010c3c, 0x04bd16493dffbb51, 0xff0b8f270e0b94cd, 0xc4ecfcffbd116faf, 0xff13ff0b9d010cba, 0x043e0cc194ff3c84, 0x040bb892050bc6c5, 0x3cb94065ff0bb3bf, 0xc10112bb8e5874ff, 0x44ff3b9e306dff0b, 0x0f0bd8230e3dd696, 0xbd3b2536ff0bd300, 0xe1000fbc34ade8ff, 0xafff3dc05186ff0b, 0x040c2e0111bca013, 0x0d0c00030b0c0ecd, 0x3afc8abdff0bfb06, 0x09cb04bc9f5a83ff, 0x11ff3c828a17ff0c, 0x050c20000cba0898, 0x3c33545eff0c1b92, 0x290002bb9241b3ff, 0x4cffbc29dfa9ff0c, 0x0e0c52020dbd4363, 0xff0c3fbc040c442a, 0xe5fa75ffbd81ae5b, 0x9113ff0c4dc204b9, 0x0cbc8b2129ff3d87, 0xff0c5f00090c6400, 0x8619a4ffbbd38f6d, 0xd0f2ff0c6d8e053d, 0x04bd1da6feffbb38, 0x040d45000f0e22b9, 0x040cb4ac040cefb7, 0xff0c8f9d040c9da7, 0x0c982c0e3d9cadc4, 0x5900ff3d7c5168ff, 0x84050caf030b3d49, 0xff3e272256ff0caa, 0x60b1c4ff3e10d74a, 0xcab5040ccfb6043d, 0xf219ff0cc5b4040c, 0xff3e18dfd8ff3be5, 0x0ce185053e1984eb, 0x87e349ff0cdc0008, 0x89053c91aa70ffbc, 0xffbdbea69cff0cea, 0x0d370002bcd7b440, 0x0d0985050d17300e, 0x85a96cff0d042f0e, 0x030b3e4d75c8ff3d, 0xff3e320639ff0d12, 0x0d29000d3dd6cb92, 0x09e31dff0d24050b, 0x310e3d462f85ff3e, 0xffbd254964ff0d32, 0x0d40300e3e0b687b, 0xba0bffbd0129c8ff, 0x050b0d9f84053c0a, 0x00120d68030b0d88, 0x0e3b5c3a60ff0d5a, 0xbca2f2e1ff0d632f, 0x7a2e0ebc169b00ff, 0x6012ff0d75000c0d, 0x0ebb2594d0ffbc33, 0x3c23ee40ff0d8331, 0x9a2c0ebb92bca4ff, 0x6349ff0d95b0040d, 0xffbd905abaffbd35, 0x0dde0002bd15715f, 0x0db92f0e0dc7050b, 0x2ee026ff0db4000c, 0x01123b6b6960ffbc, 0xff3b004c0aff0dc2, 0x0dd0b804bb116500, 0xd986053ccf2a19ff, 0x15ff3d872e8bff0d, 0x0b0e022e0e3dc78f, 0xff0def060d0df403, 0x950c35ffbc03e7de, 0x8000ff0dfd050bbc, 0x05bd51ce70ff3906, 0xff0e0fb7040e1487, 0x947ea6ff3b83f7a6, 0x2d0cff0e1d2f0ebb, 0x0e3c30e9b8ff3c4b, 0x0c0eb6070b0f272c, 0x0d0e52020d0e7200, 0xff0e3f01070e4400, 0x390cb0ffbcb1502c, 0xba1aff0e4d0002bd, 0x0f3c64ebadffbcc3, 0xff0e5f8a050e6400, 0x2e9ba9ff3e1fbea8, 0xd252ff0e6d8f053e, 0x053d82d4c4ff3c06, 0x050e88000f0e9692, 0x3dc63827ff0e8390, 0x91060d3e4ab584ff, 0xf8ff3beb4d90ff0e, 0x090ea8010bbc274a, 0x3e250378ff0ea300, 0xb193053dd7bd60ff, 0xa1ff3e3281afff0e, 0x0c0ee384053e82e3, 0x070ed00b0b0ede01, 0x3df607ebff0ecb00, 0xd900073d55590aff, 0xf4ff3c697066ff0e, 0x3e894740ffbdd3ee, 0x0ef9020d0f07060d, 0x5c4469ff0ef40107, 0x0112bda274edffbd, 0xffbc453b42ff0f02, 0x0f1900113dcb6253, 0x3d3cb9ff0f148a05, 0x0b0b3c3b5cf8ff3d, 0xff3d9e5800ff0f22, 0x0f8ac1043e22edc3, 0x0f53bd040f6a340e, 0x0f40ba040f45bc04, 0x049affbcfc7e9dff, 0x7cff0f4e0111bb9d, 0x3dad8f1fffbbf998, 0x0f60000d0f650109, 0xf468ffbad72334ff, 0x093e909092ffbcf9, 0x0e0f80c0040f8500, 0x3dd708a4ff0f7b35, 0x0fccff3e0c83d2ff, 0x043cbb48e0ff3e3f, 0x0b0fb2310e0fd2c9, 0xff0f9f2d0e0fa404, 0xdb7805ffbd467a47, 0x0fd9ff0fad8405bb, 0x0e3bcb08b1ff3d32, 0xff0fbf85050fc432, 0xc35ce2ff3ccd2be5, 0xacf0ff0fcd330e3d, 0x05baa1585cff3cc5, 0x0e0fe884050ff695, 0x3d09be67ff0fe331, 0xf1000cbcd27336ff, 0x94ff39db9598ff0f, 0x071008000fbc1c88, 0x3d9b66b3ff100300, 0x112d0e3cccaa40ff, 0xfaffbb83de82ff10, 0x08000000133c81c2, 0x01000003e8000000, 0x0000001163000000, 0x0e08e58d05000000, 0x040248c304047b16, 0x0400a09704012c98, 0x06003c6704005c6e, 0xff0029020d002e04, 0x382c0aff3a2c41e3, 0x0e28ff00371306b9, 0x0ebbb5f8a8ffb827, 0xff0049060d004e06, 0xc98d16ffbbda57c6, 0x36a0ff0057070eba, 0x09bb3cf8a0ff3c81, 0x080072060e008002, 0xba920cc6ff006d01, 0x7b070ebbe35428ff, 0x2dff3c59c3e6ff00, 0x0b0092000f3a5431, 0xbcff7374ff008d03, 0x9b3e053ca1d815ff, 0xc7ffbd08446fff00, 0x1100e81e05bc2aff, 0x0e00ba000200c801, 0xbc916029ff00b507, 0xc3060dbd5c16fdff, 0xa4ffbbc27793ff00, 0x0800da02083defba, 0x3d506c88ff00d501, 0xe313053d0ae06eff, 0x83ff3ca68c4bff00, 0x06010c020dbc831b, 0xff00f9000200fe06, 0xf4549cffbdc8fa9d, 0xe238ff0107040ebc, 0x123d32eea4ffbc33, 0xff01195305011e00, 0x8e23b3ffbcff2b5a, 0x2d83ff01270a0ebb, 0x0d3ca5eac2ffbb53, 0x040178000801bc07, 0x0c014a040e0158a7, 0xbb4314d9ff014501, 0x53010c3b86741eff, 0x0affbb587489ff01, 0x05016a0002bc3dc5, 0x3b82cffcff016547, 0x73a80437c63bddff, 0x9fffbc8f9f73ff01, 0x04019ca504ba8d5d, 0xff01899d04018e9e, 0x922324ff3afd026e, 0x0289ff0197060ebc, 0x0f3c90e664ffb95b, 0xff01a9030d01ae00, 0x10a35bffbb51677e, 0xc84cff01b702083c, 0x0ebb48c955ffb90b, 0x0901e4030e020407, 0xff01d1010c01d600, 0xad4611ff3cfb87f9, 0x4106ff01df010e3d, 0x07bd9502a9ffbbe6, 0xff01f1000c01f600, 0xdd1411ffbd39dc34, 0xda2bff01ffb504bd, 0x0cbde1428bffbc70, 0x07021a0c0b022801, 0xbc1a4ebfff021500, 0x23080e3b7f3011ff, 0x4cff3d2af7beff02, 0x0e023a0d0e3baa08, 0x3d7f2f76ff023508, 0x430009bd9037c0ff, 0xa9ff3d7bc2a9ff02, 0x0d035f0c0ebccad8, 0x0f0298070e02d304, 0x0c026a030b027800, 0x3aa96454ff026500, 0x73030dbc5363deff, 0xfcffbc9d1534ff02, 0x0c028a010ebbb5b5, 0xba00ac0dff028501, 0x93030bbba5ab53ff, 0x82ff3a064c37ff02, 0x0b02b30c053c2d9c, 0x3c0d67c0ff02a50b, 0x92ce5eff02ae0208, 0x000d3c9485e8ff3d, 0x81ff02c0020802c5, 0x3c7f9be0ffbc49de, 0xbaec5aff02ce6305, 0x030e3ce982e6ff3b, 0x120602fb000f031b, 0xcfff02e8030b02ed, 0x3c6934f1ff3d4a37, 0xad847eff02f6010e, 0x0208bb9654dcffbc, 0x50ff03080009030d, 0x3ca43d5aff3b25d4, 0xf1acabff0316010c, 0x000fbc78b114ffba, 0x000c03310008033f, 0xffbc2108cfff032c, 0x033ac4043d2e7fa4, 0x7f04ffbc406a80ff, 0x080e035100123d14, 0xffbb8b4e1eff034c, 0x035a060d3d0019fd, 0x8238ffba6d12e4ff, 0x7f0503efc4043c53, 0x0d0e038b010803ab, 0x2aff03780002037d, 0xbd25dcf4ffbdb4c1, 0x113ec0ff03860107, 0x00073d535f25ffbc, 0x79ff0398060d039d, 0xbd9ac00aff3c7b50, 0x9b1731ff03a6010c, 0x80053c7ea0c7ffbc, 0x000c03c1001203cf, 0xff3d043230ff03bc, 0x03ca02073d70fb81, 0xc203ffbd192ba0ff, 0x011203e187053bf5, 0xffbcc2baa7ff03dc, 0x03ea88053c6142e9, 0xe08eff3c7709d6ff, 0x0d0e0437070dbbd8, 0x030b0409060d0417, 0xff3c2debb8ff0404, 0x04120012bc2556fd, 0xfad1ffbbe45cb6ff, 0xca04042900023c93, 0xffbc3a8db3ff0424, 0x043200093c5dcfbe, 0x2d4cff3c53b97bff, 0x0d0e045b0107bc62, 0x66ff0448010c044d, 0xbdd42eddffbc122d, 0x83a85cff0456c804, 0xc6043ca0b8f8ffbc, 0x20ff0468090b046d, 0xbd189f4effbc7dbc, 0x0b30d3ff04767905, 0x57053c1b55e7ff3d, 0xc104059f020806a9, 0x230504cf00020513, 0x110604a1150604af, 0xffba3669d1ff049c, 0x04aa0205bad696fa, 0x44ecffbcc6b890ff, 0xbb0404c1be043c10, 0xffb9438c4cff04bc, 0x04ca050dbaad8b7b, 0x3f9dffbcb3d1e2ff, 0x070d04f339053c7f, 0xc9ff04e01b0304e5, 0x3a49ef71ff3caa80, 0x0b0a1bff04ee2a0e, 0x170e3e19a21cff3d, 0x29ff050000060505, 0xbc2d352eff3c864c, 0xa877d2ff050e070d, 0x45053cb3100dff3a, 0x3805053b000f055b, 0xe8ff0528020b052d, 0x3c96cb30ffbcab8b, 0x82a45fff0536c204, 0x0007bbffa789ffbd, 0x6dff05480c05054d, 0x3bf9569dffbbafb8, 0x6b8747ff05561a05, 0x000cbc3b05a2ffbb, 0x310e0571c304057f, 0xffbc5a3981ff056c, 0x057ac704bd7a9b9d, 0x1688ff3c2ce9ffff, 0x011205914705bc59, 0xff3d87332fff058c, 0x059a53053c2122e5, 0x0143ffbb036753ff, 0xcc04061d010c3c95, 0xb50405cb000205eb, 0xeaff05b8b30405bd, 0xbbac284fffb9c642, 0x1549e6ff05c64e05, 0x0012bc1a9eeaff3c, 0xcbff05d8070d05dd, 0x3c6dac24ffbb1373, 0xd132b5ff05e6ab04, 0xcd0439b5763bff3b, 0x18ff05f8001105fd, 0x3dc91228ff3ddc13, 0x060a0012060f5405, 0x9e00ffbb6e6d00ff, 0x50ff0618060d3b23, 0x3d8d0590ff3d421d, 0x0645030606651c05, 0x06323b0106371b03, 0xc598ffbb561596ff, 0xe7ff06401e0e3c5d, 0xbc3a157bffbd9082, 0x065200070657bc04, 0x90a4ffbb98504eff, 0x1aff066000023c9f, 0xbd48dbbfff3bdb8c, 0x067b220e06894101, 0xbd93efff0676070d, 0x40013d0166d2ffbc, 0xff3a9f2e86ff0684, 0x069b25053d075060, 0xa8957cff06961f03, 0xac04bd2d7d9fffbd, 0xffbcedd8e2ff06a4, 0x07c91c0ebc46f62d, 0x06f95805073d070d, 0x06cb090b06d9b104, 0x990fe4ff06c60111, 0xa2043c41a30effbc, 0xff3c19ab89ff06d4, 0x06eb00123cf3f5c0, 0xb13497ff06e6010c, 0x01073d9ed9edff3c, 0xff3e3c48e9ff06f4, 0x071dcc043dcb2bf6, 0x070a0212070f8b05, 0xe649ff3b228649ff, 0x84ff0718170e3d1c, 0x3bf3388effbb9016, 0x072a0012072f180e, 0x0a7fffbd09f7aeff, 0x3aff07380b0b3ce9, 0x3cf587a0ffbc8ac2, 0x0765c10407856805, 0x075200080757170e, 0x1ed6ffbd41d8e6ff, 0x77ff07600007bc34, 0x3c2ef153ffbc156d, 0x077201080777130b, 0x109dff3e045975ff, 0x5eff078000023d4a, 0x3c97dc48ff3d5c01, 0x079bb90407a9090b, 0x4f1d20ff0796010c, 0x000cba63232dffbc, 0xffbb8e6634ff07a4, 0x07bbb904bd165d3a, 0x0326e2ff07b6010c, 0x010c3d01d673ffbd, 0xffbd179301ff07c4, 0x08591e0ebdd50a0d, 0x07f5000c0815140b, 0x07e2000f07e7070b, 0x0d9bffbc87ae3bff, 0x99ff07f00b0b3c05, 0x39d921f4ffbc5b82, 0x080200090807070d, 0xae1dffbce065fcff, 0xf6ff0810ac043d0e, 0x3d6093b9ff3bca5a, 0x082b010c08390008, 0x8e0b70ff0826000c, 0x070dbca6ebb1ffb9, 0xffbd4e0c64ff0834, 0x084b000c3d99fded, 0xf43aa9ff08460108, 0x1d0ebd731ffbffbc, 0xffbdc3056aff0854, 0x08a18805bd0b4a41, 0x0873070d08818305, 0x66ab8dff086e120b, 0x080b3b44ec63ff3a, 0xffbbc85946ff087c, 0x08930002bce4f033, 0x19248cff088e010c, 0x0a0bbb57a779ff3a, 0xffbc0de07cff089c, 0x08c5250e3c3e229c, 0x08b2200e08b7cb04, 0xf0d0ff3cb3a5f2ff, 0x28ff08c00002ba50, 0x3cae7713ffbc5417, 0x08d28b0508d7000f, 0x70bbff3b929aacff, 0x2fff08e0010cbc1b, 0xbc363098ffba6da0, 0x0ae1010b0d1d120e, 0x0978950409ce000b, 0x091d010e093d8404, 0x090a5504090f9105, 0xa682ff3c0cbd94ff, 0xcfff09185504bcd9, 0x3cf265aaffbab88a, 0x092a000d092f9105, 0xc65aff3cab2792ff, 0x4fff09384d04bbe0, 0x3ce94b98ff3cb4fd, 0x094a00070958000d, 0x5301073c0935d5ff, 0x25ff3cb3d843ff09, 0x07096a02073cda0f, 0x3d32bf47ff096500, 0x7395053d187a13ff, 0x4eff3d4f93ddff09, 0x0709ae020e3d46e4, 0xff09899604098e00, 0x0b95ffff3c340b69, 0x9b020d09a09505bc, 0xc2ff3cc29975ff09, 0xff09a90107bc6457, 0xafe001ff3c1fde55, 0xc96bff09b700073c, 0x13ff09c00107b9b4, 0xff09c99605bbcdd4, 0x44fbccffbc21e32a, 0x1a040d0a55000fbc, 0xec7c0409fa00090a, 0x3df5ff09e7550409, 0x07bcea535bffbb47, 0x3c06fdb4ff09f500, 0x0c9205bc2287e5ff, 0x1abaff0a077a040a, 0x0ebc74beb6ffbd0e, 0xbd264cbbff0a1507, 0x3e0e0ebd8cf032ff, 0x2bc7040a3000070a, 0x8eff3c6b3888ff0a, 0xff0a390002bdaf48, 0xbb2eadffbc582320, 0x4ba8040a5000023b, 0x0affbdd49424ff0a, 0xbcd75750ffbe12cd, 0x0a7d01080a9d000c, 0x0a6a78040a6f070e, 0xc9d7ff3701ecb1ff, 0x22ff0a789405bbdc, 0xbbb5bca2ff39c8f3, 0x0a8a02080a8fbf04, 0xe3ddffbc44aa4fff, 0xfaff0a980208bcbb, 0x3be6f061ffbb7eb7, 0x0ab30b0e0ac1c704, 0x088fc2ff0aae0a0e, 0x0d0ebd5014b0ffbc, 0xff3c4fee72ff0abc, 0x0ad39405bbcee6eb, 0x8bff60ff0ace0d0e, 0x0002bc84cdebffbb, 0xffbce75905ff0adc, 0x0c01000fbd7698ea, 0x0b31010e0b750209, 0x0b036f040b110108, 0x3ceb8aff0afe6904, 0x72043d15c847ff3b, 0xffbda9ced1ff0b0c, 0x0b239005bbd88069, 0xd3fb28ff0b1e7d04, 0x0002bdade0dbffbd, 0xffbd43615cff0b2c, 0x0b550002bd83a472, 0x0b42030d0b47030b, 0x2c92ff3b267779ff, 0x82ff0b50020e3c9e, 0xbc2baf3cff3cc4c3, 0x0b62020d0b670112, 0x39eaffbcb180b2ff, 0x79ff0b70000dbdc5, 0x3ba7a4f6ffbc4407, 0x0b9da7040bbd010e, 0x0b8a030b0b8f8b04, 0xf5e0ffbc9e6f41ff, 0xe2ff0b989b043c99, 0xbb57f0c2ff3c8f05, 0x0baa92050bafa904, 0xafa0ff3d2cee03ff, 0x5cff0bb8bc043cf2, 0x3a035a15ff3c459b, 0x0bd3070e0be10002, 0x676d27ff0bceb704, 0xc0043a9c9cd5ffbd, 0xff3d4e1d8aff0bdc, 0x0bf30e0ebbe05cd8, 0xec87d9ff0bee020d, 0xc004bd175676ffbb, 0xffbde2fc5dff0bfc, 0x0c91010cbe26569a, 0x0c2d01120c4dcb04, 0x0c1a0a0e0c1f0008, 0xa564ff3a350967ff, 0xe0ff0c28000cba62, 0xbb65b261ffb90c47, 0x0c3a9f040c3fb304, 0xc84bff3b552069ff, 0x19ff0c480209bb85, 0xbb84f5dbff3bfe66, 0x0c6300080c710e0e, 0x9492e9ff0c5e100b, 0x060d3bae8286ffba, 0xffbd0a89bdff0c6c, 0x0c83060dbb8d5eb2, 0xcce7feff0c7e0107, 0x0b0bbd32f3e6ffbc, 0xffbd3c2dc7ff0c8c, 0x0cd9030bbd6d3ad8, 0x0cab070d0cb90011, 0x0a6befff0ca6080e, 0xc104bc37abcaffbd, 0xff3d0cad89ff0cb4, 0x0ccb000ebd68f022, 0x143367ff0cc68f05, 0x0008bc0561d8ff3c, 0xff3c022e6eff0cd4, 0x0cfd00093ca2c019, 0x0cea080e0cef0011, 0xd0acffbb8fca68ff, 0x91ff0cf8020e3c1b, 0xbc403c0affbbbf5b, 0x0d0ab7040d0f070e, 0x7710ffbb814e73ff, 0x1cff0d180b0b3bc7, 0xbd47a88bff3ca3b6, 0x0e3800090f54010c, 0x0d68130e0dac9c04, 0x0d4300070d518404, 0x8a5adaff0d3e000c, 0x92053c2ba2d5ffbc, 0xff3b5a784dff0d4c, 0x0d5a8c043ca855c0, 0x63030b3d0f6fb8ff, 0xbfffbd74e1caff0d, 0x040d8c9204bdb19e, 0xff0d796f040d7e88, 0x8c11b2ffbd234318, 0x1df8ff0d870111bd, 0x02bc9a8622ff3ca8, 0xff0d9901120d9e00, 0x770f86ffbc575fc7, 0x7f7aff0da7020d3c, 0x0e3ccf0001ff3d78, 0x120dd4060d0df414, 0xff0dc1130e0dc600, 0xb2fad2ffbc27d013, 0x2021ff0dcfc7043d, 0x0bbd0c8634ffbc1f, 0xff0de100120de606, 0xf661b5ffbcbb4f74, 0xf792ff0def00113b, 0x0e3d368ce8ff3bd7, 0x0e0e0a060d0e1822, 0x3b24b725ff0e0519, 0x13180ebbb2415dff, 0xafffbc01366cff0e, 0x0e0e2a020d3bbd11, 0x3ca754bfff0e2523, 0x33070bb9b544b2ff, 0x3affbb6233e4ff0e, 0x0e0ec8020d3b7585, 0x040e64140e0e8417, 0xff0e51bd040e56c2, 0x94d6a0ff3c9154f2, 0x0f50ff0e5fcd04bd, 0x0b3cf64b20ff3df3, 0xff0e7102090e7605, 0x127cc2ffbd8e8d72, 0xc286ff0e7fbf04bd, 0x0ebd146928ff3d12, 0x040e9a01090ea81f, 0x3d3a6062ff0e95bd, 0xa31c0e3de1490dff, 0xa9ffbc19373fff0e, 0x040eba220e3dc576, 0xbe01854eff0eb5ba, 0xc3be04bd4aab4aff, 0x76ff3d0db181ff0e, 0x0e0f10040dbc04ee, 0x040ee2ba040ef022, 0xbe752914ff0eddb5, 0xebbd04bdf81a93ff, 0x32ff3e1d3b10ff0e, 0x020f02bd04bd8d91, 0x3e278ad0ff0efd00, 0x0bbf043e4b63c0ff, 0x10ffbc7f5f00ff0f, 0x0e0f34030b3d1a5b, 0xff0f21000f0f2623, 0xe2542affbca66e74, 0x8281ff0f2f240eb9, 0x043c1e7aeeff3e6b, 0xff0f41230e0f46c3, 0xe9010affbaa54f83, 0x3ab7ff0f4f000c3c, 0x0ebc2f78c4ffbbf2, 0x120fcd050b104714, 0x0d0f7bc5040f9b00, 0xff0f71030b0f7607, 0x091c21ffbdd4a07d, 0xca04bc486de8ffbe, 0xa0ff0f888f050f8d, 0xbc2d2b60ffbc448e, 0x13b49cff0f960002, 0x00093c5f4fa0ff3d, 0x00070fb101070fb6, 0xff3d6b8aeeff0fac, 0x5a1b40ff3d554be0, 0xafbaff0fbf020bbc, 0xfcff0fc88f05bd2f, 0xbc2f4dabff3c0b3a, 0x0ff5001110150009, 0x0fe200070fe78f05, 0x8934ffbd1d77a9ff, 0x66ff0ff0cd043dc1, 0x3d1f0b48ff3d90ce, 0x1002c1041007c204, 0x8cc0ff3de9068bff, 0xf1ff1010c5043caa, 0x3e0e2391ff3dd5ba, 0x102bcc0410399505, 0x017d0aff1026ca04, 0x060dbc6fb6a0ff3d, 0xffbc964ca0ff1034, 0x1042060dbd211bbb, 0x5ce0ff3c776ac0ff, 0xc40410d7170e3e18, 0xc304107300021093, 0x38ff1060150e1065, 0x3d416ca5ff3cdf71, 0xd0cf29ff106e0009, 0xba043e03ed02ff3d, 0x57ff1080030b1085, 0x3dee3ccdff3cf827, 0xc4cf6cff108e090b, 0x0111bd48cd0bff3b, 0x0b0b10a9cc0410b7, 0xffbce87fe9ff10a4, 0x10b20007bd6a8135, 0x239affbdbe858fff, 0x030b10c90009bd10, 0xff3cc60be3ff10c4, 0x10d2030bbba97b84, 0xb5e2ffbd2e7226ff, 0x050b111f1c0ebcff, 0x030b10f1011110ff, 0xffbbe76944ff10ec, 0x10fa0009bd01b40d, 0x8de8ff3d64daf2ff, 0x060d11110109bd21, 0xff3d13d34bff110c, 0x111a90053c3b171e, 0xd37bffbc09aa7cff, 0x1d0e11438f05bd48, 0x2fff11300b0b1135, 0xbd13d731ffbc8097, 0x39a7a2ff113e0112, 0x0108bd5bc04eff3c, 0xb4ff115000021155, 0x3ad31238ffbc5f0a, 0xd6bcfdff115e230e, 0x0013bc151d68ffbd, 0x03e8000000080000, 0x11c6000000010000, 0x8d05000000000000, 0xc3040484160e0900, 0x9704012c98040248, 0x000d005c6f0400a0, 0x6a05002e5504003c, 0xffbb0c85f0ff0029, 0x0037070ebc0439d0, 0xb45eff3d48a3a6ff, 0x6a04004e00023be6, 0xffb97393ffff0049, 0x00570211ba4e31f6, 0x250aff3a1e4954ff, 0x8b04008000123c03, 0xebff006d0d0e0072, 0xbbc52eaeffba9308, 0x55b584ff007b100e, 0x0006bcf9ec8fffbb, 0xaeff008d060d0092, 0x3c4cf22bff3b3eb6, 0xe6af62ff009b0306, 0x070e3949d916ffbc, 0x000200c8040e00e8, 0xb8ff00b5010800ba, 0xbcf1414effbba7d6, 0x216976ff00c30a06, 0x01123bf29591ffbc, 0x9eff00d5000900da, 0xbc67940bff3d34ef, 0xe014a5ff00e30306, 0x090e3c7c8fe9ffbc, 0x060600fe0009010c, 0xffbd08bc93ff00f9, 0x01070b0b3c617ae6, 0x5489ff3cb1973dff, 0x0112011e060dbc60, 0xff3d0bc76eff0119, 0x01270a0ebba8352d, 0x6712ff3c3a8ffeff, 0xc00401bc000fbc84, 0x030d015809060178, 0x35ff0145070e014a, 0xbc274089ffbd2986, 0x5b4f98ff01530b0e, 0x11063c2dcb37ffbb, 0xb0ff0165030e016a, 0x3c6a9c70ff3b7ada, 0x866f39ff0173a104, 0x1306ba3d5660ff3c, 0x130e018e0002019c, 0xffbd5a06b2ff0189, 0x0197c204be062cb2, 0xcdf8ffbc282514ff, 0x000701ae010ebdd2, 0xffb9d9abb9ff01a9, 0x01b7000cbcc3ed9d, 0x130effbabe8273ff, 0x000202049e043d23, 0x0d0e01d6070d01e4, 0xffbc331f57ff01d1, 0x01df0009bb366bef, 0xebbcff3d309122ff, 0x9c0401f6010cbc89, 0xff3b8ca493ff01f1, 0x01ff0006bc9d01ac, 0xbc78ff3c8b8126ff, 0x000602289f04bbc1, 0x55ff02150009021a, 0xbba0a44dff3d4b93, 0x0b1226ff0223000e, 0x070e3c20ff13ffba, 0xd1ff0235070d023a, 0xbce3c3bfffb9b607, 0x41ff14ff0243070d, 0x0b0e3c1c7206ffba, 0x000f02dc080e0368, 0x62050278030e0298, 0x29ff02651906026a, 0xbbd84916ffbc9fca, 0x199f28ff0273040d, 0x050d3cc33618ffbb, 0xb3ff0285030b028a, 0xbc5bc0ccff3b8f0b, 0xea8a3cff0293000c, 0x00123cfa156fff3b, 0xc70402aec80402bc, 0xffbb071a3aff02a9, 0x02b7070e3d2a7ca4, 0x8eb4ffbc045fd6ff, 0x060d02ce0009bd27, 0xff3a52b958ff02c9, 0x02d7060d3c2d7f93, 0x4e26ff3b473c32ff, 0x0b0b03240c0bbd1a, 0x2b0502f6c4040304, 0xffbd9bbb8bff02f1, 0x02ff040dbd2eaa8a, 0xb453ff3adb63c7ff, 0x37050316000c3c51, 0xffbcd21f21ff0311, 0x031f0007bd3f4d4c, 0xc83bffbd3ffeb8ff, 0x02070348000cbd94, 0xf8ff03358805033a, 0xbc2e4330ff3bb665, 0x1e3917ff0343c604, 0x010cbcefa029ffb9, 0x01ff03550012035a, 0x3c8dfc48ff3d1bab, 0x963c56ff03631305, 0x000f3d099f3dff3d, 0x000c03b4000803f8, 0xc9040386020d0394, 0xff3c22cba5ff0381, 0x038f2505bd0bde6e, 0x5551ffbd6b1d40ff, 0x160603a60002bc39, 0xff3cc798dbff03a1, 0x03af11053e0b8000, 0x5adfff3d4bfc69ff, 0x130603d8010739d2, 0xb6ff03c5030b03ca, 0x3cb85cf3ff3d54d6, 0x9aa6baff03d3040d, 0x050d3ccac86fff3a, 0x6aff03e5010803ea, 0xbbba43eeff3c08e7, 0xcb5ec1ff03f38705, 0x7f053bd50a36ff3c, 0x020704206e050440, 0xb7ff040d060d0412, 0x3cbb20a8ffbb65e5, 0x4ad743ff041b070d, 0x7e053cec599affbc, 0x6bff042d75050432, 0x3b2900fcffbcf86c, 0xf97350ff043b0111, 0x88053cb7a32effbc, 0x810504560e0e0464, 0xff3c00b031ff0451, 0x045f8505bc0d5928, 0x6bcdff3ca5e29fff, 0xc60404760209bca6, 0xffbb32bd6dff0471, 0x047f060d3bd3599a, 0x156fffbb89402dff, 0x110606c45705bcae, 0xc004051c4a0505a8, 0x560404b83e0104d8, 0x79ff04a5010d04aa, 0xb8e67f74ffbba601, 0x152b2aff04b3b104, 0x4405bbc100a8ff3a, 0xb1ff04c50c0604ca, 0xbb9495a3ff3ac70b, 0xda653cff04d34505, 0x0208bc47d947ff3b, 0xc10404ee1a0e04fc, 0xff3c459941ff04e9, 0x04f7200ebd4e1927, 0x3befff3c8e7cfeff, 0x190e050e070db9e5, 0xffbd2664c5ff0509, 0x0517010cbbdeda26, 0x5aa1ff3d4dcae7ff, 0x07060564070d3ca4, 0x0012053653050544, 0xffbb641133ff0531, 0x053f38013b59430f, 0x14cfff3ab780c8ff, 0x1e0e0556200ebbd8, 0xff3a449a58ff0551, 0x055f000c3d239035, 0x44adffbce3f5f9ff, 0xac0405884b05bb2d, 0x66ff0575030b057a, 0xbd8b3b1affbc9f91, 0x10ff48ff05830108, 0x4101bd974b02ffbe, 0xa6ff05959c04059a, 0xbd69f704ffbc4021, 0x99a30bff05a3250e, 0x070bbc98d574ff3b, 0x350e05f4050d0638, 0x000c05c6000205d4, 0xff3c0e8bccff05c1, 0x05cf020dbc80d4d1, 0xa281ffbbb8b3efff, 0xa30405e6030bbd08, 0xffbced36b1ff05e1, 0x05ef000cbc022c26, 0xc17fffbd816526ff, 0x01050618000fbe2e, 0xb6ff06050007060a, 0xbdd14398ff3b81e9, 0xb437bbff06131105, 0xc304bb2656b5ff3c, 0x74ff06251406062a, 0xbbb405f2ff3b0eac, 0x33140aff06330007, 0xae043c925b02ff3c, 0x9d04066006050680, 0xcbff064d15060652, 0xbcb45466ff3be2b8, 0x8e4f3dff065b220e, 0x240ebd5188e6ffbc, 0x68ff066d000c0672, 0x3c1f71b2ffbcbfdf, 0x1222bdff067b8404, 0x000fbd6e6711ffbe, 0xb0040696000c06a4, 0xff3d931393ff0691, 0x069f020dbbb56f79, 0x1411ff3cf10236ff, 0x000c06b601053c31, 0xffb9a8321dff06b1, 0x06bfbd04bd29a015, 0xafb6ffbc1f0dd2ff, 0x250e07e4060dba10, 0x02080714bc040758, 0x170e06e6a80406f4, 0xff3b86939cff06e1, 0x06ef0107ba464e0b, 0x662eff3ac9ca39ff, 0x070b0706010cbb3d, 0xffbbe68711ff0701, 0x070fb3043c11713f, 0xf727ffbd848551ff, 0xbf040738220ebd20, 0x8dff07251c0e072a, 0xbc2c4c51ff3c97ed, 0x505f6cff07338205, 0x010cbb5f4f4affbc, 0x74ff07450007074a, 0x3a8f8038ff3cb028, 0xbe52fbff07530008, 0x2a0e3d8d32cfff3c, 0xac040780020b07a0, 0x58ff076d040d0772, 0xb91084e5ffbcf9c0, 0x949275ff077b0107, 0x7f05bc819408ffbd, 0x50ff078d0b0b0792, 0xbc64a43fffb80224, 0x199bd8ff079bc804, 0x0009ba564479ffbc, 0x5a0507b6770507c4, 0xffbb01f3a2ff07b1, 0x07bfc7043b010cf9, 0x6ffeff3bcddf09ff, 0x940407d6ac04bb5b, 0xffbc09e03dff07d1, 0x07df2f0e3baceb59, 0x3658ffbc7c7454ff, 0x00120874170ebaca, 0xb2040810c8040830, 0x9eff07fd010c0802, 0xbd0c7e81ffbba6fc, 0x14920fff080bba04, 0x0007bb8a101fff3d, 0xfeff081dc9040822, 0xbdb843a2ffbcda9c, 0x7ccf52ff082b0b0b, 0x00023b92ac31ffbc, 0xa10408460d0b0854, 0xffbcfc09f3ff0841, 0x084f010cbbb14892, 0x3de3ffbcf73541ff, 0x030b08666d05bdb5, 0xffbb8db023ff0861, 0x086fc0043cc0a506, 0xbefbffbca885c6ff, 0x000c08bc190e3c32, 0x0012088e110b089c, 0xffbbc4db31ff0889, 0x089700093c0745f2, 0x7d6cff3c264ef2ff, 0x070d08ae0012bc1a, 0xff3c842fa9ff08a9, 0x08b7bb04bc2ebd7b, 0xd165ff3d8ab8cfff, 0x000708e00207bc08, 0x86ff08cd000208d2, 0x3ac3c513ffbbfbe0, 0x7423b8ff08db1e0e, 0x1d0e3aba1a10ffbc, 0x2eff08ed010c08f2, 0xbd8d3d8fffbc3b1c, 0x4629ceff08fbc704, 0x120e3a5f3298ff3c, 0x01070b44000f0d6e, 0x9005099c00080a28, 0x0f0e093800070958, 0xb2ff0925b204092a, 0xbc6f498dff3c2610, 0x910f03ff09330109, 0x050bbdc94f42ffbc, 0x60ff0945000c094a, 0x3c667094ffbc9430, 0x0dd30bff0953060d, 0xa7043cfbd97effbd, 0x040d096e000c097c, 0xff3bf6856cff0969, 0x09770002bbff3aef, 0x5299ffbd314f28ff, 0x030b098e910539b3, 0xffbd3be0cdff0989, 0x0997c9043c06f304, 0x86a0ff3bc0ee83ff, 0x840409e4020ebcab, 0x000e09b6000209c4, 0xffbd819e2fff09b1, 0x09bf010e3be1e0b9, 0xd8cdff3dabbb23ff, 0x010e09d692053bd7, 0xffbd6455ddff09d1, 0x09df0108bdd77794, 0x3328ffbcaeb97fff, 0x98040a08050bbd3d, 0xa7ff09f5910409fa, 0xbd9e64f9ff3c1e2b, 0x9de1c1ff0a039904, 0x97043c792556ff3d, 0x40ff0a1591040a1a, 0xbe2e8c78ff3cb994, 0x1aee4cff0a239f04, 0x9404baf13de9ff3d, 0x0a0b0a7490040ab8, 0x02070a46000c0a54, 0xffba8e533cff0a41, 0x0a4f7f04bc60e445, 0xde20ffbe53ed34ff, 0x7f040a66020e3c3b, 0xff3ae9b063ff0a61, 0x0a6f9305bd0597b8, 0xd424ffbde60670ff, 0x010b0a98010ebdb1, 0x12ff0a8502070a8a, 0xbe63427cffbe167e, 0x77f990ff0a93050b, 0x0002be828560ffbe, 0x43ff0aa590050aaa, 0xbd366e48ffbdcda8, 0x0b9924ff0ab3030e, 0x92053d1f6720ff3e, 0x020d0ae0030d0b00, 0xdcff0acd01120ad2, 0xbc0896adffbcf599, 0xa5c3e2ff0adb020e, 0x9904bc94dea0ffbd, 0x1eff0aed000c0af2, 0xbda13683ff3b20da, 0xc70914ff0afb070e, 0xb004bb963450ff3b, 0x020e0b16a7040b24, 0xff3cc01b81ff0b11, 0x0b1f93053c16c3ae, 0x74ebff3d377babff, 0x000b0b3601123d58, 0xff389a8a0bff0b31, 0x0b3f030ebd3e4875, 0x229bff3cb82380ff, 0x0b0e0c5b020b39ba, 0x010c0b94080e0bcf, 0x010b0b6684040b74, 0xffbb60c1b8ff0b61, 0x0b6f00083b061ae5, 0x27d7ffbbc52e85ff, 0x070d0b860011bc24, 0xffbd000771ff0b81, 0x0b8f01093d11079a, 0xc5d0ff3bb617f8ff, 0x01070bb8000cbbed, 0x82ff0ba500110baa, 0xbc386f7bff3c8be1, 0x628680ff0bb3060d, 0x00123ca5db2aff3b, 0x093d17bd38ff0bc1, 0xbd35eaa1ff0bca00, 0x17c9043bd9ea70ff, 0xe90d0e0bf700070c, 0x6e60ff0be4000c0b, 0x043c9c0461ffba47, 0x3a83fa75ff0bf2ae, 0x090112bbfab81dff, 0xbfc0ff0c049d040c, 0x08bb230e4dff3c57, 0xbc6ef772ff0c1200, 0x3b0007bb6e2f98ff, 0x28000c0c2d00080c, 0x58ffbcf2372bff0c, 0xff0c36cb04bd497f, 0x92bc8bffbcbfe747, 0x4802070c4d0d0ebc, 0xe5ffbba54758ff0c, 0xff0c56010c3b5f18, 0x29f5a0ffbc879dba, 0xa7010c0ce28f05bd, 0x7900020c8700120c, 0x7a92ff0c74cb040c, 0x0e3cfb913affbc10, 0xba82fe1cff0c820e, 0x99a2043d46ef7fff, 0xd802ff0c949e040c, 0x0d3c4af763ff3a98, 0xbb273eceff0ca206, 0xcb100e3c1e5b3aff, 0xb88e050cbd00070c, 0x87ffb93107a1ff0c, 0xff0cc6070e3c0628, 0x2a994aff3a5fd5f0, 0xd800020cdd8e05bc, 0xf9ffbbff3c09ff0c, 0xbe606073ff3d9096, 0x0d0a0e0b0d2a0002, 0x0cf70e0e0cfc9405, 0x6a06ff3a69abddff, 0x16ff0d05010cbb5d, 0xbc878603ffbb70bc, 0x0d17000c0d1c100b, 0x5f05ff3c062beaff, 0xb5ff0d25c2043d21, 0x3b87d359ffbb27c9, 0x0d40c8040d4e0b0b, 0x2a4665ff0d3b000c, 0x0012bb11f2dcff3a, 0xffbbc2a84aff0d49, 0x0d6001073c1f01f8, 0x103e2dff0d5b090e, 0x080ebbf0df2aff3b, 0xff3c652502ff0d69, 0x0fa5010c3b359e06, 0x0dfd9c040e890009, 0x0da299040dc2140e, 0x0d8f130e0d949804, 0x5aa9ffbc244cf3ff, 0x4cff0d9d030bbd80, 0x3db594c0ff3d3710, 0x0daf96050db4030b, 0x5f0affbd5a7f50ff, 0xc4ff0dbd9005bd89, 0xbd969fe5ffbdc4ca, 0x0dd8020d0de6190e, 0x3d21c6ff0dd3000d, 0x00023d274e59ff3e, 0xffbc41d635ff0de1, 0x0df898043cb54cff, 0x98a748ff0df31d0e, 0x00ffbd6c14b8ffbc, 0x0d0e45140e3c9452, 0x040e17c8040e2506, 0xbc27292aff0e12c5, 0x20050b3d2e460bff, 0xbfffbc4602c0ff0e, 0x0b0e370e0bbd3e4f, 0x3aeca8e2ff0e320b, 0x400012bd514772ff, 0x0fff3c3b8945ff0e, 0x0e0e69220e3dc9dd, 0xff0e56020d0e5b18, 0x3b725bff3c3b857f, 0x35dcff0e641b0ebb, 0x0dbb5d4694ff3bba, 0xff0e76280e0e7b02, 0xe1ef4cff3c8fae93, 0xef31ff0e84090bba, 0x0d3b693401ffbb58, 0x0b0ed5170e0f1902, 0x040ea7140e0eb505, 0x3b01ed00ff0ea2c2, 0xb0a0043dbf87e4ff, 0x3bff3b47a080ff0e, 0x050ec7bf04bd7a26, 0x3c05f7e5ff0ec290, 0xd000023da6bfd8ff, 0x80ffbd40d5f0ff0e, 0x090ef9190ebc949b, 0xff0ee6010b0eeb02, 0x754fe7ff3c342380, 0x9180ff0ef48e053d, 0x0ebd2b7f59ff3c15, 0xff0f0602090f0b1c, 0xaa30c0ffbe0693ca, 0xf80fff0f141f0e3c, 0x0bbc49a516ff3dab, 0x0e0f41040d0f610e, 0xff0f2eba040f3322, 0x59826fffbe0ae568, 0xeb5aff0f3cbd04bd, 0x053c92ebd5ff3e26, 0xff0f4e000f0f5394, 0x52349cffbc24f34c, 0xc288ff0f5c030bbb, 0x0ebb6f8d5dff3c04, 0x0e0f778f050f8532, 0xbae653f9ff0f7225, 0x800109bd28c72aff, 0x5dffbc95ff32ff0f, 0x050f970011bbdbbb, 0x3ce2bd50ff0f928f, 0xa001093d85279cff, 0xe4ff3c04a9e5ff0f, 0x0b10aa140e3d2bf9, 0x090ff59205101e05, 0x050fc7c5040fd500, 0xbca6e860ff0fc28f, 0xd08f05bdd5322aff, 0x40ffbc3a9940ff0f, 0x040fe7c204bc1bda, 0xbd051a6cff0fe2bd, 0xf0030bbd1e1e26ff, 0x00ff3c504a39ff0f, 0x041007060dbbf69b, 0xbc9ec9c0ff1002ca, 0x10c504bc9a83e8ff, 0x00073d5648c4ff10, 0xff3d51b148ff1019, 0x106600093d45bf48, 0x10388f0510460011, 0x0db881ff10330007, 0x01073dae2eacffbd, 0xff3d598f9cff1041, 0x10588e053c2db067, 0xefe237ff1053bb04, 0x0b0b3cfa9807ff3d, 0xff3db1b84cff1061, 0x108aca043e017668, 0x1077c504107c0002, 0xa560ffbd4a4864ff, 0x2bff108501093c6d, 0x3c9774fcff3d8688, 0x10979005109c9305, 0xe1c0ffbd1102ecff, 0x28ff10a59505bc13, 0x3d970b32ffbc2acb, 0x10f6070b113a170e, 0x10c8030b10d6ba04, 0x46eabcff10c30009, 0x8e05bd3184e2ff3d, 0xff3de27dd0ff10d1, 0x10e8150e3dca560a, 0x8845c3ff10e30009, 0x020b3d17417dff3c, 0xff3d114859ff10f1, 0x111aca04bb007a6e, 0x11070b0b110c0002, 0xb85eff3c277d5bff, 0xb1ff1115c004bd2e, 0xbd2c58c3ff3ce6b1, 0x11270011112c0007, 0x3d67ffbdd89756ff, 0x15ff1135060dbd67, 0xbd42362cffbc60d4, 0x11621c0e1182280e, 0x114f01111154070b, 0x05c1ffbc2c7c92ff, 0xb4ff115d00083cbe, 0x3d518c60ff3c6bde, 0x116f0b0b11741d0e, 0xee30ffbca0512cff, 0xa3ff117d000239d2, 0x3ca2e3d2ffbc08a6, 0x1198910511a62b0e, 0x4b797aff11932a0e, 0x9405bbd563f1ffbd, 0xffbceff786ff11a1, 0x11b88e05bd4d4933, 0x62e99dff11b30008, 0x0008bd84b947ffbd, 0xff3adaa9baff11c1, 0x000000133d3aabbe, 0x000003e800000008, 0x000011b400000001, 0x08ca8d0500000000, 0x0248c304047b160e, 0x00a09704012c9804, 0x003c040d005c6f04, 0x00295f05002e4004, 0x6fecffbb132a7bff, 0x95ff0037050bbc2b, 0x3c2d9678ffba522f, 0x00493501004e050d, 0x665fffbc0b9b4fff, 0xfaff00574904bce7, 0x3a0f5f6dffb9c55f, 0x00728b0400800012, 0x8454c5ff006d0d0e, 0x0f0ebbb176bbffba, 0xffbb533631ff007b, 0x00920006bc95cc9d, 0x2ba496ff008d060d, 0x03063c38738fff3b, 0xffbccf9deaff009b, 0x00e80b0b3935a943, 0x00ba000f00c80107, 0x6bea2dff00b53905, 0x0006bb812b32ff3d, 0xff3bc3d6edff00c3, 0x00da0208bbf76c00, 0xb29603ff00d5000d, 0x0111bb903649ffbd, 0xffbb6cbb8bff00e3, 0x010c0d0ebd25d217, 0x00f9070e00fe090e, 0xe4e2ff3bc74e85ff, 0x25ff0107060dbce5, 0xba975c44ff3cf246, 0x0119060d011e6705, 0xc47bffbcb7c0b2ff, 0xd2ff0127000cbd23, 0x3a916d7affbcc7cb, 0x0178000f01bcb204, 0x014a290501589904, 0x94c608ff0145030b, 0x01073d3e8a9fff3c, 0xff3cd25dd9ff0153, 0x016a050dba8bc6b3, 0x7e3d1fff01650a06, 0xb1043beaadfeffbc, 0xff3c0d5565ff0173, 0x019c120ebdc6d764, 0x01890008018e0108, 0x82c9ffbac2bb6cff, 0x9cff0197a6043b3f, 0xba93cb04ff3b9a6f, 0x01a9030601ae130e, 0x0068ffbd4e06b8ff, 0x54ff01b753053af8, 0xbc26fdbdff3c52f0, 0x01e401120204080e, 0x01d1060d01d68105, 0xef74ffbd27219aff, 0x05ff01df0002bb59, 0x3b393b56ffbb5148, 0x01f1050d01f6060d, 0xbe0cffbb3babfaff, 0x4aff01ffb60439b3, 0xbdf7b1c7ffbc376e, 0x021ac1040228060d, 0x257feeff02150112, 0x00073a966647ffbc, 0xff3abde663ff0223, 0x023a0011bccd9d95, 0xd4780fff0235010c, 0x00073ce9d122ff3a, 0xffbd2e4520ff0243, 0x0368070d3c4f7e43, 0x0298690502dc0011, 0x026ac40402780207, 0x865aadff02650002, 0x67053c7394bbff3d, 0xff3c038e66ff0273, 0x028a010cbc8429d0, 0x4992d0ff02856705, 0x6405bdec742dffbd, 0xff3a1b6f55ff0293, 0x02bc0107bd696fd7, 0x02a9c50402aec604, 0xfa0bff3a7fbaa1ff, 0x58ff02b7010cbcf3, 0x3cdf4cb2ffbb5e1a, 0x02c90e0b02ce0108, 0xecfeffbc070317ff, 0xd8ff02d7c8043bf6, 0xbcaeb73bffbb3903, 0x03040d0e03240209, 0x02f10b0e02f6cb04, 0xddedff3a8e7434ff, 0xe3ff02ff060dbb66, 0x3c9f88c5ffba10c5, 0x03110e0603162505, 0x1880ffbdcda5b1ff, 0xbbff031f060dbb4e, 0x3cc4bfe5ff3be472, 0x033a0e0e0348060d, 0x9047d8ff03350111, 0xc504bc8d3f89ff3b, 0xffbd1bbeeaff0343, 0x035ac604bc228f37, 0xfcca4bff0355080e, 0x030bbc058f51ffbc, 0xffbc7acd0cff0363, 0x03ef0107bd3a5aa6, 0x0394000903b48b05, 0x03810d0e03860007, 0xa515ffbdc55156ff, 0xdaff038fc704bcf9, 0x3cd1c782ffbc802f, 0x03a1830503a60e0e, 0xa9dfffbcbdfdbbff, 0xcaff03afca04bc15, 0xbd893630ff3d0d64, 0x03caca0403cf000c, 0x4fdad2ff03c50b0b, 0xc0ff3c816388ff3b, 0x0b03e10009bcef05, 0x3c936c3cff03dc05, 0xea010c3d9001faff, 0xd4ff3caafeffff03, 0x080437c604bd5657, 0x120409130e041701, 0x3c0cf4e0ff040400, 0x120207bcc55390ff, 0xc4ffbd70b6baff04, 0x080429020bbcc2d7, 0xbcd5caf4ff042402, 0x32090bbca7f1f4ff, 0xb4ff3afeda3aff04, 0x0c045b7f05bcd22b, 0xff0448ca04044d00, 0x171c18ff3c1e65c4, 0x5868ff04560207bd, 0x083d33e610ff3ccc, 0xff0468c804046d00, 0x874bc6ffbc599947, 0x496cff0476ca043c, 0x05bbfe891bff3ca8, 0x04059f020806a957, 0x0504cf00020513c1, 0x0404a19e0404af23, 0xb9dd9cd1ff049c96, 0xaa210ebc5ef471ff, 0x90ff3c54b938ff04, 0x0404c1be04bb4629, 0xb8dc6a88ff04bcba, 0xca050dbb544dcaff, 0xa3ffbc9fb979ff04, 0x0d04f339053c6626, 0xff04e01b0304e507, 0x4d474bff3c983972, 0x1ff0ff04eeb8043a, 0x0e3d98c341ff3ce1, 0xff05000008050517, 0x86e077ffbbf846f3, 0x55c0ff050e070d3c, 0x053c9f356dff3a7a, 0x04053b0406055b45, 0xff05280006052dc3, 0xbe2cc3ffbc97b75d, 0x0d70ff05364405bd, 0x11bcefcd75ff3beb, 0xff05480207054d01, 0xbaeb9bffba0dabfd, 0x8b0dff0556000cbc, 0x043c89dadbff3b10, 0x0505710006057fc4, 0xbc81a8a1ff056c4f, 0x7a00023c5d0214ff, 0x64ffbdae55a1ff05, 0x0e0591c7043c1acc, 0x3cf64843ff058c32, 0x9a000cbc52a09fff, 0xa6ffbc373493ff05, 0x04061d010c3b6fba, 0x0405cb000205ebcc, 0xff05b8ac0405bdb5, 0xde8fb1ffb9a5fc5e, 0xad85ff05c64e05ba, 0x12bc08ad8dff3c08, 0xff05d8c90405dd00, 0x9bada3ff3a8b69f0, 0xfa48ff05e6ab043d, 0x0539e24bd6ff3bb7, 0xff05f8310e05fd4c, 0xb448f0ff3dc6c7a8, 0x0a340e060f54053d, 0x00ffbb2b5e00ff06, 0xff0618340e3b3e78, 0x929dc0ff3d3f8d4b, 0x45bf04066519053d, 0x3287040637150306, 0x3cffba9f89d1ff06, 0xff06400605bc5636, 0x8aa66cff3ca9a544, 0x52cb04065700023a, 0xf8ff3cc95f89ff06, 0xff06600c0bbcaec2, 0x16dac8ffbd11ed20, 0x7bb2040689220ebe, 0x4c29ff0676070d06, 0x12bb460e40ffbcee, 0xbcc37bb2ff068400, 0x9b0d0bbb3a1a44ff, 0x7e5eff0696000706, 0x04bc6b67d1ff3c3d, 0x3b83a566ff06a4ad, 0xc9060dbcb96661ff, 0xf9bd04073d250e07, 0xcb220e06d9000606, 0x6f82ff06c6610506, 0x04bb03e06aff3b3e, 0x3b9721cdff06d4bb, 0xeb04063d657fe4ff, 0xb0eaff06e6000206, 0x07bc896498ffbd3e, 0xbba50ee6ff06f400, 0x1dbe043cd47d63ff, 0x0a170e070f011207, 0x18ffbd1006d0ff07, 0xff07180b0b3d427c, 0x276e88ffbbf2201f, 0x2abf04072f220ebd, 0x41ff3bf6a860ff07, 0xff0738010cbbde54, 0x0b2d7bff3b2f5d0e, 0x65c2040785270e3d, 0x5202070757010b07, 0xceffbdb62cf8ff07, 0xff0760000d3c983e, 0x274e92ff3d2aa377, 0x72c3040777260ebb, 0x64ff3e1ce4c8ff07, 0xff0780090bbd3bac, 0x28510effbd916503, 0x9bbd0407a90012be, 0x1952ff0796000207, 0x04bca41a82ff3cea, 0x3d36cf2aff07a4ca, 0xbb280e3d989829ff, 0x807cff07b6c60407, 0x0d3d12cc48ffba27, 0x3be10ab7ff07c402, 0x3e3e01bab0edddff, 0xf5b90407fa001108, 0xe2220e07e7960407, 0xffffbbe828c8ff07, 0xff07f01e0e3be4aa, 0xbbf12aff3b7bb5b5, 0x9b043e018b80ffbc, 0x5a050810170e081e, 0xffbc9e28acff080b, 0x08193901bddad0bb, 0x8627ffbd5a50d9ff, 0x3a010830a804b9d0, 0xffbda5d2a8ff082b, 0x0839b904be1206ba, 0x15b6ffbd48672fff, 0x180e08861c0e3dce, 0xc004085800120866, 0xffb49b3031ff0853, 0x08610007bc88a0a8, 0xc038ffbceb46eaff, 0x010c0878a804bb8e, 0xffbb51b4f3ff0873, 0x088100093b104fec, 0xcdadff3cda723bff, 0x230e08aa0b0bbca7, 0xd2ff0897000f089c, 0x3ad69bf6ff3d88d7, 0x376582ff08a5be04, 0x1d0ebb5396d6ffbc, 0xa0ff08b7070d08bc, 0x3d9ed67dffbd340e, 0x9433d3ff08c55c05, 0x0d0eb6eadc95ffbc, 0x000f0b05030e0d38, 0x000e0966020909e9, 0x040d0902000c0922, 0x8cff08ef7f0408f4, 0xbce2a4ccff3b5118, 0x85457fff08fd070b, 0x0009bc058b8cff3c, 0xe1ff090f6d040914, 0xbe296a13ff3b4cc2, 0xaf8f26ff091d8b04, 0x7b04bcd40a73ff3c, 0x78040938000c0946, 0xffbc7632d5ff0933, 0x09417a04be061fc7, 0x7c8bff3b6a82ddff, 0x8004095890043dea, 0xff3d218472ff0953, 0x096199043c221f37, 0x423bffbcba5a48ff, 0x8b0409ae010e3ba5, 0x7c0409808f05098e, 0xffbcff0468ff097b, 0x0989020dbb007380, 0xa140ffbcb2ff6aff, 0xa90409a00002bd51, 0xff3cc84825ff099b, 0x09a9000e3a41099a, 0xf9f0ff3c43baf7ff, 0x900509c9a3043b11, 0x1aff09bf9d0409c4, 0x3d822795ff3c3f42, 0xdb030bbcf423e0ff, 0x02a9ff09d6020d09, 0x05bd9acc1cffbc60, 0x3cda7f10ff09e493, 0x79bd04bc4e593aff, 0x1501080a3592050a, 0x0200080a07020e0a, 0xd7ff3a92456eff0a, 0xff0a10ba04bb7ae6, 0x6bcaa9ff3b8b02e5, 0x22070b0a27000cbc, 0x7effbbfa2806ff0a, 0xff0a30ac04394082, 0xec0a69ffbc811885, 0x4b000c0a590107bb, 0x6483ff0a46bc040a, 0x0bbbd4a1d4ffba1f, 0x3a54de8eff0a5403, 0x6b0a0bbc1f9badff, 0xd959ff0a6601120a, 0x0c3c1b671affbb10, 0x3b88f7d5ff0a7400, 0xc100123c526f18ff, 0x9300070aa1010e0a, 0x18d2ff0a8e0b0b0a, 0x043b318c1fffbbce, 0x3b58ddaeff0a9cc3, 0xb300083c4ba9d4ff, 0xe88eff0aaec1040a, 0x0cba7b3c87ffbc1e, 0xbb621fc1ff0abc00, 0xe59305bc6a8023ff, 0xd201080ad7c6040a, 0x1bff3c7c064eff0a, 0xff0ae0110b3bc413, 0xc8540bffbd6f7dbb, 0xf2c6040af7060dbc, 0xf3ffb9debfc9ff0a, 0xff0b00090b3c1763, 0x2a072aff3a84e05e, 0x90070e0c1c020d3c, 0x2c73040b4c91040b, 0xf128ff0b1e66040b, 0xd8ff0b278e053d6d, 0xbd80fee1ff3d2ab6, 0x0b3900090b3e9005, 0xa600ff3c93ffcaff, 0x5eff0b4700023a7e, 0x3ce7e901ff3d4238, 0x0b6200090b709904, 0x4c45d4ff0b5d0008, 0x97043c94e49dffbd, 0xff3d2a7e54ff0b6b, 0x0b829c043cb5df6f, 0x952ee9ff0b7d0009, 0x02093d84349eff3c, 0xffbc0a0ac8ff0b8b, 0x0bd8a704bd35fad3, 0x0baa90040bb8a204, 0x5ed8fbff0ba5000c, 0x030bbc7f4febff3b, 0xff3cdb63eeff0bb3, 0x0bca0002bb4a7482, 0x112b54ff0bc59205, 0x0009bdde2c8affbe, 0xff3c9e279bff0bd3, 0x0bfc0009bd84b8ce, 0x0be9b0040bee080e, 0xd5e6ff3b964f6dff, 0x65ff0bf70007bd3b, 0x3ba786baff3cbb64, 0x0c09c9040c0e080e, 0x1278ff3d3323d3ff, 0x16ff0c17030b3dcf, 0x3cc12d2dffbd3927, 0x0c68080e0cac8e05, 0x0c3a00110c48010c, 0x4a6e63ff0c35050e, 0xca04bbdadc19ff3c, 0xff3b0bda7bff0c43, 0x0c5a00093d62dec8, 0x83977eff0c55c404, 0xb1043baa0bd2ffbc, 0xffbc821701ff0c63, 0x0c8c0a0e3c652397, 0x0c79060d0c7e0002, 0x8b1aff3c0c511fff, 0xd4ff0c87ba04bcf3, 0xbcd336a6ff3d5419, 0x0c99b2040c9e060d, 0xfc2dff3b9f90d4ff, 0xa9ff0ca70009bbcf, 0xbc9e6509ff3c0c33, 0x0cd4000f0cf4b804, 0x0cc102090cc6b504, 0xdec4ff3b700caaff, 0xddff0ccfb704be63, 0x3b284953ffbdc795, 0x0ce10a0e0ce60b0b, 0xae04ff3a9e2707ff, 0x60ff0cefa804bb31, 0x3b115f2bffbc133f, 0x0d0a060e0d18070e, 0xb91e3aff0d05040e, 0xbf04bc5478b3ff3c, 0xff3bd662d1ff0d13, 0x0d2abb043aa05b46, 0x38a1afff0d250009, 0x00093bee35c5ffbc, 0xffbafdc782ff0d33, 0x0f78cb043bbfd3c7, 0x0dd0200e0e5c220e, 0x0d6c1d0e0d8cbd04, 0x0d59bb040d5e0b0b, 0xfe27ff3a08b2c2ff, 0xa9ff0d67140ebb4b, 0x3a333ddeffbc84a7, 0x0d79060d0d7e8e05, 0x6388ff3d9fd7b2ff, 0xdfff0d87000f3c37, 0xba23718cff3d24a8, 0x0da2190e0db0bf04, 0x55e793ff0d9d000c, 0x1c0e3cf219cbff3c, 0xffbd50e51dff0dab, 0x0dc21d0ebb03f9d7, 0x3a9f99ff0dbdca04, 0xc204bbcf14e7ff39, 0xff3d822160ff0dcb, 0x0e1800073c16d9fc, 0x0deaba040df8000c, 0x79870dff0de5b604, 0xc8043c9775f8ff3b, 0xffbc3f71daff0df3, 0x0e0a050b39b49af6, 0x09d103ff0e05020d, 0x000fbdad4c17ffbd, 0xff3c815818ff0e13, 0x0e3c020dbd1a5378, 0x0e298f050e2eb704, 0xe6f8ff3abbbaabff, 0x5fff0e379505bd91, 0xbc2d5f52ff3d07b0, 0x0e49060d0e4e010c, 0x7a1bff3ac9a57fff, 0x50ff0e578e05bcd3, 0xbd113239ffbdb145, 0x0ea8000c0eec250e, 0x0e7a100b0e88230e, 0x97130bff0e75080b, 0x01113b1046c7ffbb, 0xff3cb1a7cfff0e83, 0x0e9a0b0bbd51f3f8, 0x41c590ff0e950009, 0x00123dd3d024ffbb, 0xffbd835c79ff0ea3, 0x0eccc204bcb5e50e, 0x0eb900080ebe9105, 0x39dbff3c711708ff, 0xe1ff0ec701123d2c, 0x3d5af74dffbc2e42, 0x0ed9230e0ede0111, 0x3faeff3cdeb793ff, 0x12ff0ee7230ebc9d, 0x3e1a9bebffbc6297, 0x0f14270e0f342a0e, 0x0f01050b0f060112, 0x3f07ffbc2d483bff, 0x62ff0f0f0007bd22, 0xbd61567cffbdd740, 0x0f21000c0f26ba04, 0x8f36ff3d2933eeff, 0xc4ff0f2f000fbd77, 0xbc1e0653ff3b589c, 0x0f4aca040f589305, 0xb00092ff0f45c904, 0x0b0bbbbab8c9ff3b, 0xff3c9348b4ff0f53, 0x0f6a310ebbcc7f5f, 0xd27304ff0f65020d, 0x94053b8ae5f6ffbc, 0xff3e27c0b8ff0f73, 0x109890053d8948f4, 0x0fc80007100c0002, 0x0f9a000c0fa82d0e, 0xe4fd00ff0f95cd04, 0x0009bc85ccedff39, 0xffbd0ec117ff0fa3, 0x0fba000cbbb34c15, 0x9c601cff0fb52f0e, 0xcd04bba23544ffbd, 0xff3cd32562ff0fc3, 0x0fec8e05bba8e730, 0x0fd90b0b0fde0207, 0xa5f8ff3c1bd4ceff, 0x02ff0fe71d0e3d2c, 0x3cf5fce2ffbca421, 0x0ff9230e0ffe8f05, 0x3713ffbd215d9cff, 0x32ff10070b0bba58, 0x3c8527e2ffbbf75c, 0x1034060d10540b0b, 0x1021010810260012, 0x7ce2ff3d862815ff, 0xd3ff102f01113cde, 0xbc79ee74ff3b5e4d, 0x10418f051046cd04, 0xaaf0ffbc4e3e36ff, 0xc8ff104f230e3c4e, 0xbc29c7b7ffbd23dc, 0x106a8f051078010c, 0x4f3de9ff10658e05, 0x140e3c9dd995ffbb, 0xff3c947d1cff1073, 0x108a8e05bc4de65d, 0x9ac862ff10850012, 0x0008bdb5bb54ffbc, 0xff3d17e1c6ff1093, 0x11282f0e3de2e033, 0x10c4000f10e4cc04, 0x10b1000910b62b0e, 0x6838ffbd43c1a5ff, 0x78ff10bf0007bcd3, 0x3d549030ff3b9c4d, 0x10d1010910d61c0e, 0xc1c5ff3ca6f780ff, 0xb6ff10df1d0eba2b, 0x3c670814ffbc2ddc, 0x10fa050b1108000f, 0x7db3a1ff10f50007, 0x170e3c889360ff3d, 0xff3d0a7daeff1103, 0x111a270ebb21e59b, 0x9ffd3cff1115cd04, 0x0b0bb82bb48bffba, 0xffba2a5911ff1123, 0x1170000cbc4a0f75, 0x114200071150000f, 0x240affff113d9505, 0x030b3d812c64ff3d, 0xff3bd290a0ff114b, 0x1162030b3cb004c0, 0x098f0cff115d350e, 0x070d3d266d05ff3c, 0xff37afddf2ff116b, 0x1194000fbcf4f87b, 0x1181310e11869405, 0x53dfffbd5d80cbff, 0xc0ff118f0002bbdc, 0xbd85ce79ffbcaea9, 0x11a1070d11a6030b, 0x1b7dff3c583b3cff, 0x4eff11af060dbc46, 0xbd00a585ffbc10b9, 0x0000000800000013, 0x00000001000003e8, 0x00000000000011b4, 0x0484160e08ca8d05, 0x012c98040248c304, 0x005c6f0400a09704, 0x002e010b003c030d, 0x1110daff0029020d, 0x4104bce6417bffbc, 0xffbaf582c0ff0037, 0x004e84053bbb0803, 0x49d0b7ff00496c04, 0x000c3afaf265ffb9, 0xff3a90fb67ff0057, 0x00808c05bbe295fb, 0x006d150600721305, 0x7cd9ff3c61101fff, 0xc7ff007b0006bbbb, 0xbbf052daff3ab356, 0x008d000f00920112, 0x0d8cffbd953cc2ff, 0x48ff009b91043b1b, 0xbd9b3beaffba954e, 0x00c8011100e81e05, 0x00b5090e00ba0002, 0x820fffbca054a7ff, 0x2dff00c3060dbd49, 0x3ddb4d80ffbba046, 0x00d5020d00da0208, 0x23c7ff3b9164f3ff, 0xa3ff00e30f063d40, 0xbd412f88ff3b6639, 0x00fe0606010c020d, 0xa09280ff00f9090e, 0x040ebcb741c8ffbd, 0xffbc11663bff0107, 0x011e01073d1c1024, 0xc1cdecff0119010e, 0x42053b91e36cffbb, 0xffbc5e014aff0127, 0x01bcb204bb2f431f, 0x015899040178000f, 0x0145030b014a2905, 0x7cc7ff3c85e56cff, 0x73ff015301073d2b, 0xba7b9980ff3cbd54, 0x01650a06016a050d, 0x3643ffbc64d0acff, 0xeaff0173b0043bd3, 0xbd713c81ff3c041b, 0x018e050e019c060e, 0x651d5eff0189060d, 0x00123b8aa062ffbb, 0xffbd9e53d6ff0197, 0x01ae070e3b9c06f3, 0xa6baceff01a90006, 0x0b0ebc0f0dadff3c, 0xffbc0d3cd0ff01b7, 0x0204080e3b1d5aa4, 0x01d6810501e40112, 0x166b09ff01d1060d, 0x0002bb44245effbd, 0xffbb3c5a81ff01df, 0x01f6060d3b26b566, 0x0f60d0ff01f1b504, 0xb60439b5e2b1ffbb, 0xffbc25168aff01ff, 0x0228060dbddeecd0, 0x02150806021ac104, 0x504effbc17b48cff, 0xf5ff022300073b6e, 0xbcb90dd1ff3aaae8, 0x0235000c023a0011, 0xbbd5ffbbb9f54bff, 0xc6ff024300073c84, 0x3c3abe67ffbd1cd7, 0x02dc080e03680b0e, 0x02780e060298000f, 0x02650107026a040e, 0x69ebff3dac9fedff, 0x6aff0273030b3d0b, 0xbb7d9174ff3c931c, 0x0285000c028a050d, 0xf263ffbb84aa07ff, 0xcaff0293010ebc66, 0x3c2725d2ffbc724f, 0x02aec80402bc0012, 0xcec4aeff02a9c704, 0x070e3d187f90ffba, 0xffbbdecad4ff02b7, 0x02ce060dbd17fe6e, 0xd7cdeeff02c91206, 0x87053ae05c31ffbb, 0xff3c92e906ff02d7, 0x0324c404bb00ff17, 0x02f6010c03043905, 0x5db027ff02f10107, 0x0002bc7901a2ffbd, 0xffbd7281eaff02ff, 0x03164705bd970e2f, 0x24d13dff03110111, 0x0b06bcf2a500ffbd, 0xffbcc0e044ff031f, 0x03480c0bbcbb80b5, 0x0335040d033a0b0b, 0x0fdcff3ab918d2ff, 0x16ff0343000c3c3d, 0xbd64aa21ffbcd42d, 0x03550207035a000c, 0x6b1aff3b8549c5ff, 0xcaff0363010cbc55, 0x3d204e3aff3cad32, 0x03b4000803f8000f, 0x0386020d0394000c, 0x0f6bb3ff0381c904, 0x2505bcff5ddfff3c, 0xffbd524ae9ff038f, 0x03a60002bc2b030f, 0xb2b122ff03a11606, 0x19053dfa30aaff3c, 0xff3d2a8ab3ff03af, 0x03d80007bac58db7, 0x03c5030b03ca1306, 0x07c4ff3d663a25ff, 0x1dff03d3030d3cb8, 0x3cee4d00ff3b2dc1, 0x03e5470503ea040d, 0x49e4ffbb6a3e9aff, 0xdeff03f30f0e3c2a, 0x3d25bc49ff3c7519, 0x04206f0504407f05, 0x040d010c0412c804, 0xd54bffbb27f4b0ff, 0x96ff041bc9043c28, 0xbbf2682effbd303c, 0x042d010704327505, 0xd15bff3c12c51fff, 0xf3ff043b7b05bd0b, 0xbc9bba8fff3c070c, 0x04560e0e04648805, 0x8e833aff0451cc04, 0x8505bd594ce2ffbb, 0xff3c945ce3ff045f, 0x04760209bc9be61d, 0x133737ff0471c604, 0x060d3bb8cb33ffbb, 0xffbb5ce1d4ff047f, 0x06c45705bc9792c6, 0x051cc20405a80208, 0x04b8550504d8c104, 0x04a5b60404aa0002, 0x8339ffb99525efff, 0xc4ff04b32a0e3ae9, 0x3971b6ddff3b2cc7, 0x04c5a20404ca010c, 0x1e8aff3a914325ff, 0xffff04d3bd04bc4c, 0xbd5b26aeffbc2e00, 0x04ee230e04fc0006, 0xfc9553ff04e95605, 0x00023da2f0feffbc, 0xff3ca4468fff04f7, 0x050e3205bc695039, 0xb1ebb7ff0509130b, 0x0002be1a856fff3b, 0xffbdcb5d03ff0517, 0x0564c3043c939e25, 0x05361a0505444f05, 0x7a87a1ff05310207, 0x3705bdd6e49fffbb, 0xffbdb9baefff053f, 0x05565505bd124dd0, 0xf89fe6ff05510006, 0x2b0ebd2031dfff3d, 0xff3d0b1329ff055f, 0x0588c404bd211849, 0x05750002057a0012, 0x9ca9ffbd04fde6ff, 0x4cff05832b053da3, 0xbd702cccffbe2ade, 0x05950112059ac704, 0x3c10ff3cd48cedff, 0xc3ff05a300023c00, 0xbbe3ae96ff3bf369, 0x05f4b6040638010c, 0x05c6030b05d4b104, 0x373626ff05c1020b, 0x01073b8cc235ffbb, 0xffb9e4b57eff05cf, 0x05e6110bbb33c7ea, 0x920415ff05e1050b, 0x00073b6423fcffbb, 0xff3b08433cff05ef, 0x061851053cd57752, 0x06052a0e060abb04, 0xbbb2ff3bfb7c7dff, 0xe8ff0613120bbc2c, 0x3c8c88bfffbaf64e, 0x06255505062a220e, 0xbbf7ff3c18be05ff, 0xadff0633c8043d38, 0x3d281ce3ffbc6882, 0x0660a30406801c05, 0x064d190e06528904, 0x2cc6ffbbbbda23ff, 0x88ff065b0c0339bd, 0xbbe96cd8ffbd1a17, 0x066dbc0406720c05, 0xbf82ff3cad6624ff, 0x9dff067b3a01bc6e, 0x3a86cfe5ffbcbe9d, 0x0696220e06a44101, 0x935611ff0691070d, 0x40013ceabfdcffbc, 0xff3a884970ff069f, 0x06b61f033cf6ff7d, 0x4b2220ff06b1100b, 0x230ebdeb8eb3ffbd, 0xffbcbc865cff06bf, 0x07e4060dbc140052, 0x0714b5040758250e, 0x06e6000f06f4020b, 0x1e815cff06e1220e, 0x7a043ca7faddffbc, 0xff39841ea8ff06ef, 0x0706000fbc36150d, 0x6c17acff07018b05, 0xaa04395fd7b0ff3b, 0xff3a02332cff070f, 0x0738b604bbcec5d3, 0x07250008072a010c, 0x429bff3cad2fb8ff, 0x83ff073301093d72, 0xbd14c971ff3e029a, 0x0745ba04074a010c, 0x2052ff3b94c514ff, 0x9dff0753220eba67, 0x3d148028ffbb1475, 0x0780c20407a0270e, 0x076db90407720007, 0x06d8ffbb9052a5ff, 0x9eff077b070bbd01, 0x3cbeda1effbc2a2f, 0x078d00020792260e, 0xc14fffbd58c294ff, 0xe9ff079b090bbc04, 0xbe177c26ffbd82da, 0x07b6bd0407c40012, 0xd2b062ff07b10002, 0x0009bc93b174ff3c, 0xff3d5dcc2cff07bf, 0x07d6020bbd152fd8, 0x7e4516ff07d1b304, 0xc904bc78617effbb, 0xff3ad73810ff07df, 0x083e3e01bb062465, 0x081096040830b904, 0x07fd00120802170e, 0xad72ffbc4efab7ff, 0xb2ff080b220ebd62, 0x3ba2d2d5ffbbaf46, 0x081d1e0e08220012, 0x25d7ff3b6289c6ff, 0x3eff082b9c04bca9, 0xbd9b0f10ffbcb838, 0xe92e4bff08390012, 0x070d3db979f0ff3d, 0x230e0866bd040886, 0xd6ff0853a7040858, 0x3bfce5aeffbb5bce, 0xc100ecff08610002, 0x0012bc892c57ffbb, 0x47ff0873c0040878, 0x3ae128aaff3ce901, 0xd3ddb4ff08810002, 0x0a0b3b9882efffbc, 0x190e089c020708aa, 0xffbc244317ff0897, 0x08a5010cbb163c0b, 0xd61aff3ac1b378ff, 0x230e08bc00023d7e, 0xffbca6a1bcff08b7, 0x08c57405bd4df4d2, 0x4305ffba19df73ff, 0x030e0d4a0d0ebcda, 0x020909f2000f0b0e, 0x000e0922bc040966, 0x040d08f4000c0902, 0xffba9590abff08ef, 0x08fd00093c20d8cf, 0x113cffbd4157b0ff, 0x030d0914070bbb84, 0xffbbdaf83bff090f, 0x091d9c043bf3da78, 0x7a5dffbcdefa47ff, 0x020b094602083a45, 0x60ff0933020d0938, 0x3ca10017ffbd20f0, 0xaea5aeff09410107, 0x95053cfb2edaff3c, 0x00ff0953020b0958, 0x3b41abe9ffbcdfca, 0xcab8e0ff0961020b, 0x020e3d41de00ff3c, 0x8f05098e8d0409ae, 0x89ff097b000e0980, 0x3a9365b7ffbc6916, 0xf358c0ff09898904, 0x99043c1cfe6bffbc, 0x60ff099b000209a0, 0x3c5ddb19ff3cf7d9, 0x954795ff09a99f04, 0x020d3bea1aebffbc, 0xa00409c4900509d2, 0xff3ca46154ff09bf, 0x09cdb3043de1d9d8, 0x1333ffbcd12396ff, 0xbf0409e4030b38d0, 0xffbd716c6dff09df, 0x09edc004bddd5871, 0x3c8cff3cd361fdff, 0x74040a82010bbbe9, 0x000c0a1e060d0a3e, 0x06ff0a0b00090a10, 0xbbabc4f6ffba4de6, 0x2878aaff0a198e05, 0x8f05bcb486a4ffbc, 0xc4ff0a2b8e050a30, 0x3bbf78a3ff3ae5ee, 0xc3838eff0a39070d, 0x010cbc575368ff3a, 0x90050a5491040a62, 0xffbc180d1aff0a4f, 0x0a5d0002bb83f0cb, 0x6d74ffbc9080ebff, 0x00120a740109bc0a, 0xffbca2e4a0ff0a6f, 0x0a7dbc043c1a8189, 0x6c07ffbcb54ffdff, 0x010e0aca020e3b43, 0xb8040a9c94050aaa, 0xffb97ff65dff0a97, 0x0aa5c6043bd13e0d, 0x70ebffbb1bfb54ff, 0x99040abc00093b8c, 0xffbabbcff3ff0ab7, 0x0ac5b304bbfdc78f, 0xf331ff3b1f2eebff, 0x9c040aee060d3c49, 0xb9ff0adb97040ae0, 0x3ca80a57ff3b18ba, 0xe433cbff0ae90111, 0xba043b750b72ffbb, 0x81ff0afb000c0b00, 0x3cedb5a2ffb910b5, 0x16b48cff0b090012, 0xc3043bf14eaaffbc, 0x060d0ba2010c0c2e, 0xb8040b3e010b0b5e, 0x7dff0b2b99040b30, 0xbc627073ffba3d48, 0xef0e75ff0b390007, 0xc104bb4560ebff3c, 0xe5ff0b4b030d0b50, 0xb9206ebdffba30cc, 0x28aee3ff0b590008, 0x040bbcb5c37eff3a, 0x0a0e0b7402090b82, 0xffba7c9255ff0b6f, 0x0b7d0011bc097a14, 0x3b1fffbc24fe22ff, 0x00080b94000cbd13, 0xffb99b55bbff0b8f, 0x0b9d080e3c184ef6, 0xf27eff3b94a211ff, 0x0b0e0bea060d3d06, 0xba040bbc0a0e0bca, 0xff3b576a6fff0bb7, 0x0bc50009bc83db33, 0xfde6ffbd928cecff, 0x00020bdc8e053d14, 0xffbd89c82eff0bd7, 0x0be5bf04bbadbe09, 0x1145ff3cc1e3d6ff, 0xb1040c0eb604bb63, 0x98ff0bfbad040c00, 0x3d0ab085ffbca9bc, 0x8c095cff0c09b404, 0x0011bd8e8fe9ffbc, 0x6fff0c1bbf040c20, 0xbc243a4cff3c9bfd, 0x2c71a0ff0c29bc04, 0x070e3d38376aff3c, 0x060d0c7ac7040cbe, 0x00090c4c010c0c5a, 0xff3c393192ff0c47, 0x0c550112bbbf8324, 0x21e1ffbca58d97ff, 0x00120c6cc6043bac, 0xffbb6844c2ff0c67, 0x0c75000cbc696bbc, 0x2dd1ffbc330384ff, 0x060e0c9e0109bd35, 0xd7ff0c8b000c0c90, 0xbc6960f5ff3b0ed4, 0x03f9d1ff0c99000c, 0x0b0b3c61b435ff3b, 0xecff0cab92050cb0, 0xbc9b9868ffbd49a8, 0xa8c91cff0cb9060d, 0xc704bc8023abff3b, 0xc5040ce6010c0d06, 0x83ff0cd3c4040cd8, 0x3cb98433ffbb9fa8, 0x6b8914ff0ce10009, 0x0a0e3b3c6dcbffbc, 0x74ff0cf30b0b0cf8, 0x3d536e79ff3c2438, 0x0ea575ff0d010008, 0xc8043c41865fffbd, 0x00090d1c060d0d2a, 0xffbc69fffcff0d17, 0x0d2501093ca03fb5, 0x3116ff3d1a466fff, 0x060d0d3c080ebc95, 0xff3cf3d520ff0d37, 0x0d450009bc50b088, 0xb564ff3b82336fff, 0xca040f78cb04bcc8, 0x00020de2c9040e6e, 0x230e0d7ec8040d9e, 0x12ff0d6b8f050d70, 0x3b83ccf5ffbb55bf, 0x91d8f1ff0d792a0e, 0x90053c0af44cffbc, 0xa1ff0d8b000c0d90, 0xbd21d4e6ffbc1d0b, 0x1c5e33ff0d99140b, 0x8f053ce28e9cffbc, 0x8e050db4060d0dc2, 0xff3bd8b3b8ff0daf, 0x0dbd070dbabf64fc, 0x62caff3c036136ff, 0x290e0dd4bf04bcb4, 0xff3adb33c9ff0dcf, 0x0ddd0b0bbcd53c3d, 0x8ab9ffba97a615ff, 0x94050e2a000fbbbb, 0x8f050dfc00080e0a, 0xff3d17bf63ff0df7, 0x0e050108bcb080b7, 0x68d7ff3c598ad3ff, 0x00020e1c95053da2, 0xff3dba4cbbff0e17, 0x0e2500083e663c95, 0xc5a4ff3c1b4888ff, 0x8f050e4e00023ddf, 0x4eff0e3b170e0e40, 0xbd0a25b7ffb9fcac, 0x167135ff0e499105, 0x00123b856474ff3d, 0x08ff0e5b1c0e0e60, 0x3d2d0043ff3b1acc, 0xd21e9bff0e690008, 0x2a0e3bfddc06ffbb, 0x280e0ea800070eec, 0x230e0e8c0a0b0e9a, 0xffbd6078c2ff0e87, 0x0e95230e3df2a2a3, 0xb16dffba060db8ff, 0xd5ff0ea39505bd24, 0x3e243058ff3d3b61, 0x0ebe140e0ecc170e, 0xeb93cfff0eb9120e, 0x0107bce97d7bff3b, 0xff3be3467dff0ec7, 0x0ede00023ce7b2d2, 0x8ffd62ff0ed9220e, 0x190eba9900bfff3c, 0xffbd19a776ff0ee7, 0x0f349405bb7cfb0e, 0x0f0601080f140b0b, 0x050e77ff0f010002, 0x8e053c1e9861ff3d, 0xff3cd4a5eaff0f0f, 0x0f26000cbd209cf7, 0xb742e6ff0f210008, 0x00023d18cf04ff3a, 0xffbd37563cff0f2f, 0x0f582b0ebda83ee5, 0x0f45070b0f4a020d, 0x56b0ffbdbfbaf9ff, 0xb0ff0f530111bd2a, 0xbceba790ff3b0281, 0x0f6500090f6a2c0e, 0x9bf0ff3e2a1fc8ff, 0xc8ff0f73310e3dcb, 0x3d771ce8ffbc25fd, 0x100c000210989005, 0x0fa88f050fc80007, 0x0f95cd040f9a8e05, 0x50e3ffbd3d1004ff, 0x29ff0fa3180e3c98, 0x38b287c5ff3d8588, 0x0fb500090fba230e, 0x9a5affbd3e3e12ff, 0x39ff0fc3cc04bc03, 0xbc3b44b8ffbd0048, 0x0fde00080fec8e05, 0x46f079ff0fd9010c, 0x02073c1b5145ff3d, 0xff3c55b136ff0fe7, 0x0ffe8f05bcd7c665, 0xe0dedfff0ff90107, 0x0b0bbd29429bffbb, 0xffbbde9fc0ff1007, 0x1054130b3c6fae28, 0x1026010c1034cd04, 0x8cdd70ff1021190e, 0x0009baef77ebffbc, 0xff3cdec9a4ff102f, 0x10468e05bc88e300, 0x1a271fff1041230e, 0x000cbda7b258ffbe, 0xff3b84784aff104f, 0x1078010cbc8ad4c9, 0x1065230e106a260e, 0x4813ff3c090b05ff, 0xc3ff1073070d3da8, 0xbd99a519ffbbae41, 0x1085060d108a8e05, 0x4de5ffbda38efdff, 0x95ff10930008bc8b, 0x3dcc3029ff3d08b1, 0x10e4cc0411282f0e, 0x10b62b0e10c4000f, 0xaedf47ff10b1020d, 0x0007bd2d8104ffbc, 0xff3b8cac08ff10bf, 0x10d6290e3d3f4e90, 0xdfe5e5ff10d11d0e, 0x060d3cbdfdaeff3b, 0xffbbb7d719ff10df, 0x1108000f3cfe9c2a, 0x10f5000710fa050b, 0xd601ff3d6454e0ff, 0xafff110300023c75, 0xbb89087dff3cfc08, 0x11159105111a280e, 0x22c3ff3c19cae3ff, 0x36ff11239105baf1, 0xbbdf5627ff3c0cf8, 0x1150000f1170000c, 0x113d950511420007, 0x8318ff3d13a37fff, 0x20ff114b030b3d68, 0x3c9e6aa0ff3bbd82, 0x115d070d1162030b, 0x4652ff3c34cfbbff, 0xebff116b070dbc57, 0xbcdc793bff379e48, 0x118694051194000f, 0x475a4bff1181310e, 0x010bbbc64b5fffbd, 0xffbc8517d4ff118f, 0x11a6030bbd72839d, 0x429bb5ff11a1070d, 0x060dbc324bf0ff3c, 0xffbc02405dff11af, 0x00000013bce79051, 0x000003e800000008, 0x000010af00000001, 0x09008d0500000000, 0x024801060484150e, 0x00a0c004012c8c05, 0x003cb304005cb804, 0x00299b04002eaf04, 0x6093ff39358c9dff, 0x8fff0037b2043ac6, 0xbba03cacff3bf3fd, 0x00490d0e004e0002, 0xcc77ffbcebd928ff, 0xf9ff0057b7043a6a, 0x3c745d01ffbaa846, 0x0072000200804805, 0xe550c5ff006d070d, 0x010cbe73af09ffbd, 0xff3db746b0ff007b, 0x0092070ebc8243e0, 0xa16c9eff008d7d05, 0x060d3aaa9871ffbc, 0xffbc0c30dcff009b, 0x00e80d0e3c37d646, 0x00ba7d0500c8060d, 0x4f8aa2ff00b50112, 0x02083ce5cf63ffbd, 0xffbc84cfd0ff00c3, 0x00da6b053b29069b, 0x199cefff00d50207, 0x0b0bbafabd78ff3d, 0xffba75494bff00e3, 0x010c140bbb42ba11, 0x00f9010c00fec804, 0xf1a5ffbbbe1c10ff, 0x41ff01070b0b3c42, 0xbd56489affbc783b, 0x01190009011e010c, 0xf3b6ff3c71a521ff, 0x23ff01270107bc20, 0x3c7c9af2ff3d872b, 0x0178011201bcb704, 0x014aae040158b204, 0x660d06ff01450a0b, 0x000c3b570ebeffbb, 0xff3b3094d9ff0153, 0x016a00023ceeb1ae, 0xdb8646ff01650b0b, 0xb304bbac19b3ffbc, 0xffbb6b4234ff0173, 0x019c00023ce86dcc, 0x0189000f018e0107, 0xd511ffbbd1da4cff, 0x6cff0197a704bd65, 0x3ce556d0ffbe4914, 0x01a9000f01aeb504, 0xb42bff3c2b5898ff, 0xedff01b70009bbfb, 0x3cf6a1b0ffbe1a7a, 0x01e4bc0402040b0b, 0x01d1001201d60112, 0x555dff3bfa868eff, 0xf8ff01df0009bc2f, 0xbc98fed3ff3cbd4c, 0x01f1010c01f6bf04, 0x146dff3bb6c39aff, 0xbcff01ff00083d83, 0x3ba895e7ffbb9182, 0x021a01070228080e, 0x711867ff0215bf04, 0x0011bb58dcadff3c, 0xff3bfcfab7ff0223, 0x023a140e3ceba82c, 0x6ec2ecff0235ba04, 0x0007bbc52108ff3d, 0xff3de9c47bff0243, 0x0368be043c736290, 0x0298170602dc000f, 0x026a640402781c05, 0x9ade0cff02656304, 0x0002bd0c4d47ff3a, 0xff3cb49f99ff0273, 0x028a07063c034385, 0xe9f15cff0285090e, 0x0b0e3b0591c1ffbc, 0xffba793e42ff0293, 0x02bc01073c825b22, 0x02a9750402ae070e, 0x89c1ff39a28710ff, 0xceff02b70405bc45, 0x3c33b69affbcc93f, 0x02c9050e02ce9704, 0x2a6cffbc006542ff, 0xe0ff02d7000cbd5f, 0x3ca7007effbae536, 0x0304a50403240a06, 0x02f12c0402f67904, 0x0886ffb9d3977eff, 0x2fff02ff0002bb8f, 0xbba7fbe4ffbc8538, 0x03110b0e03160806, 0x17caffbc1936a9ff, 0x61ff031f0906bd12, 0xbc1eb517ff3c6b03, 0x033a01070348b804, 0x20a080ff03350505, 0x0005bb15939effbc, 0xffbc3a5d89ff0343, 0x035a030b38eb41d9, 0x0da784ff0355030e, 0x0f06bbd11265ff39, 0xff3c453323ff0363, 0x03f80b063aa97023, 0x0394000c03b40002, 0x038100070386130e, 0xff9dffbd70981cff, 0x4fff038f0906bb9f, 0xbe33dc9fffbd3b89, 0x03a10b0b03a60f0e, 0x134dffbd6228a5ff, 0xebff03af0b0bbda6, 0xbe122294ffbdb83d, 0x03ca3f0503d8010b, 0xd06a98ff03c50806, 0x01073db9c3a8ff3d, 0xffbd4b692bff03d3, 0x03ea030bbc594f86, 0xce05c8ff03e5030d, 0x000c3d30e476ff3b, 0xff3c2e571eff03f3, 0x0440000fbc22d656, 0x0412000c04201d05, 0x75f4d7ff040d030b, 0x00023c4b6f05ffbc, 0xff3d03f58cff041b, 0x0432c5043c54e192, 0xf5738aff042d2905, 0x050dbcc82c5fff3b, 0xffbb171004ff043b, 0x0464c6043c3856cd, 0x0451c10404560e06, 0xf85aff3d009a7dff, 0x5eff045f1106bd0a, 0x3b38968cffbbc958, 0x04710b0b04760e06, 0x1aa1ffbd320e4eff, 0x7eff047f1606be11, 0x37f9e9e8ffbbfa12, 0x05a8c50406c4c704, 0x04d80d06051cbb04, 0x04aaa60404b8ab04, 0x66f676ff04a58905, 0xa9043b65ad0fffb9, 0xffbb5eb7b0ff04b3, 0x04caaf043c5a0dee, 0x21a802ff04c50111, 0x1c0e3bae2819ffbc, 0xff3c1306deff04d3, 0x04fc00083a2b1b7f, 0x04e9000f04ee3801, 0xd91dff3bf672adff, 0xcfff04f7030dbc0b, 0xbc18b32cffbba7fb, 0x05091206050e240e, 0x378fff3c09a994ff, 0x35ff05178804bb75, 0xbc77af7eff3c3b88, 0x054402080564050b, 0x0531000f05360007, 0x9c2affbca2878eff, 0x07ff053f010cbb4e, 0xbc140c40ffba1d70, 0x0551020d0556000f, 0x8bf1ffbc127eeeff, 0xccff055f190ebd6b, 0xbb2458deffbca535, 0x057a1d0e05882a0e, 0x1ac710ff05751c0e, 0x280ebc8ae736ff3a, 0xff3bc6d0aeff0583, 0x059a010cbc3e102e, 0x451b68ff05950007, 0x02073c53cae2ffba, 0xffbbe01130ff05a3, 0x06386b053c45f683, 0x05d4001205f40002, 0x05c1010805c6300e, 0xbcaeff3d2229c2ff, 0xe6ff05cf0008bc6f, 0x3d4e3c9affbcc8e6, 0x05e1200e05e62a0e, 0x881bff3d7b235cff, 0x0bff05ef0111bd7b, 0xbc828e90ff3bff96, 0x060a2a0e06180112, 0x1c3960ff0605060d, 0x310e3ccd9a4fffbd, 0xff3d84608eff0613, 0x062a0006bd122b2e, 0x0855edff0625050b, 0x000d3bb595dbffbd, 0xff3d27e453ff0633, 0x06800e0b3c8a9df6, 0x0652770506608105, 0xd72607ff064d340e, 0x2b0ebcea13a7ff3b, 0xffbb011a7aff065b, 0x0672260e3c24f5f8, 0x68866aff066dc604, 0x280ebaf51933ffbc, 0xff3d5c1e5fff067b, 0x06a48a053b9f14b2, 0x069100120696260e, 0x0288ffbc2f2a1aff, 0x3fff069f280ebd2f, 0x3b84ae1fff3d8846, 0x06b1250e06b60112, 0xb65fff3ca2c718ff, 0xd8ff06bf01093d78, 0xbcf61f3effbd507e, 0x0758000807e40007, 0x06f461050714010c, 0x06e13d0106e6ca04, 0x4bb2ffbe0621f4ff, 0x76ff06ef0111baf1, 0x3d0e6f5fff3a6fb5, 0x0701000c07060006, 0xf97eff3b4b2abaff, 0x5fff070f000fbc5e, 0xbc3f1020ffbd2a24, 0x072a00020738310e, 0xd7c3baff07250e0b, 0x8905bd6bfe53ffbc, 0xffbd083668ff0733, 0x074a320e3ba70713, 0x4b5374ff07450002, 0x7005bcc93750ff3d, 0xff3ca6ad11ff0753, 0x07a00002bc950e60, 0x0772180e0780210e, 0x21593bff076dc804, 0x0012bd3d4fddff3d, 0xff3d903d7dff077b, 0x0792220e3b510948, 0x7b5a85ff078d010c, 0x010cbde7093cffbd, 0xffbb969792ff079b, 0x07c40c0bbca541ee, 0x07b1060d07b6170e, 0x1754ff3bd8d0bbff, 0xa6ff07bf1f0ebd54, 0xbb28d8daff3cb307, 0x07d1170e07d62c0e, 0x6deeffbc8644fdff, 0xc1ff07df05063cd7, 0x3b2c9043ffbcc05b, 0x08300b0b0874110b, 0x0802280e0810c804, 0x4e9568ff07fd0002, 0x000f3c68fd36ffbc, 0xff3bb94ffdff080b, 0x08220208bca3dd15, 0x9edc5fff081dcb04, 0x000cbb6afad6ff3b, 0xffb9202dd9ff082b, 0x0854180ebc620c7e, 0x084100080846100b, 0x5deeffbc2e92b9ff, 0x2dff084f02083d73, 0xbc2fa9c3ffbd5139, 0x0861c8040866070d, 0x2244ffbd39881aff, 0xf0ff086f010cbdb4, 0x3d590a84ffbb4c8d, 0x089c000c08bc2b0e, 0x08890002088ec804, 0x8a85ffbd21268aff, 0xaeff08972a0ebc51, 0x3caf234affbb943e, 0x08a9890508ae0207, 0x133aff3c81b497ff, 0x2fff08b7ca043cc2, 0x3c45509cffbc17da, 0x08d22c0e08e0c804, 0xdca870ff08cd000c, 0x2f0ebe8149a8ffbd, 0xff3d3bb5afff08db, 0x08f2130bbd01575b, 0x9f5fffff08ed7a05, 0x0008bd623e20ffbd, 0xffbc1a88e4ff08fb, 0x0c4e130e3c7c3037, 0x0a0d0a0e0a126304, 0x09584b0409935204, 0x092a020d09384004, 0xe72eaaff0925000d, 0x26043c4c5042ff3c, 0xffbc576151ff0933, 0x094a0111bc020b8c, 0x0161e4ff09450002, 0x010d3b885380ff3c, 0xffbcb8c98cff0953, 0x097c000fbd969f9e, 0x0969040d096e000c, 0x1eddff3bcaeed3ff, 0x37ff0977070b3cb5, 0x3bfb25a0ff3d176b, 0x09890111098e000c, 0x38d3ffba2a26acff, 0x0e3c09e224ffbbc2, 0x1109bb8e0509db01, 0xff09a8060d09ad01, 0x86fe28ffbb977786, 0x6651ff09b6000e3b, 0x113cdb8340ffbda1, 0xff09c8070d09cd01, 0x76e5e2ffbb0ab2d0, 0xf3f2ff09d60007bd, 0x04bc180d45ff3c1e, 0x0509f1900509ff61, 0xbcd38a70ff09ec8f, 0xfa020ebb487bebff, 0xaeffbd288f38ff09, 0xff0a08000dbd8247, 0x84bc80ff3cc87348, 0x0111bda30820ff3b, 0x010c0aa694050b32, 0x0b0e0a42030b0a62, 0x67ff0a2f090e0a34, 0xbc5b5656ffbb30db, 0x448e67ff0a3dbc04, 0xbf043c04d9a2ffba, 0x28ff0a4fbe040a54, 0x3c900b1cff3a2678, 0x428f50ff0a5d0e0b, 0x00083b29b8cdffbb, 0x0b0b0a7800070a86, 0xff3b279c0aff0a73, 0x0a81130bbbc50867, 0x8e28ffbbe09fa3ff, 0x040b0a98ba043c24, 0xff3b9b6123ff0a93, 0x0aa10b0bbc8f3580, 0x9fc2ff3bd62fa5ff, 0xc1040aee060dbbe6, 0xb6040ac0000c0ace, 0xffbad43ac8ff0abb, 0x0ac9020ebbf7ca24, 0x378affbbf64db1ff, 0x080e0ae00b0ebcb0, 0xff3b127127ff0adb, 0x0ae9010cbcd7b9c6, 0x62edff3bd35fbcff, 0x080e0b12ca043cd0, 0xc6ff0affc7040b04, 0x3b7794fdffbacc6c, 0xa9b1dcff0b0dbb04, 0x00123b2bd659ffbc, 0x57ff0b1f0e0e0b24, 0xbd3da206ffbac2c1, 0x1b1c19ff0b2d0007, 0x91053b0b764cffbd, 0x060d0b7e01090bc2, 0x010b0b5000070b5e, 0xffbbc25284ff0b4b, 0x0b59a7043b9a3a32, 0x62a3ffbc91fd89ff, 0x060e0b70ac043b1b, 0xff3caad78aff0b6b, 0x0b7990053d6c5613, 0x1352ff3a82cc64ff, 0x070e0ba2080ebd85, 0x25ff0b8fa9040b94, 0xbbe679e6ff3c0e6a, 0x2c266cff0b9dbb04, 0x00023b96a6eaff3d, 0xd2ff0baf90050bb4, 0xbd88f154ff3ca65f, 0xd22bf0ff0bbd0e0e, 0x0002bdb5c9b3ffbc, 0x9f040beaa7040c0a, 0x8cff0bd79e040bdc, 0x3da8a7d7ffbb8be5, 0xe0a2aaff0be5030e, 0xc704bdc36514ffbc, 0x25ff0bf70e0e0bfc, 0xbc33a61bff3ca242, 0x8c88a0ff0c059505, 0xb304bd6268dbffbc, 0x6b040c20060d0c2e, 0xff3d1a33f7ff0c1b, 0x0c29000cba636017, 0x606bff3d62a178ff, 0xbb040c40060d3bc5, 0xff3c9aeff3ff0c3b, 0x0c49b7043ba0d9f2, 0x487affbde711a4ff, 0x00090e8e0007bd00, 0x180e0ce60b0b0d72, 0x140e0c82c3040ca2, 0x48ff0c6f090b0c74, 0x3cfb1a60ffbc7fc9, 0x957817ff0c7d020d, 0xcd04bb7e8a04ff3c, 0x79ff0c8f140e0c94, 0xbc310f63ff3aabba, 0x46688dff0c9d000c, 0x1c0e3d1878aaff3c, 0x00020cb8c1040cc6, 0xffbbf38396ff0cb3, 0x0cc1000c3c822f08, 0x36c9ff3c26339cff, 0x250e0cd8ca043cd8, 0xff3aec13b9ff0cd3, 0x0ce10111bb67d267, 0x1df8ff3b7a1bddff, 0xbd040d2e140ebc06, 0xb8040d00bb040d0e, 0xffbd41e706ff0cfb, 0x0d09060d3d79bd9c, 0xa42affbdc04bdcff, 0xc7040d209305bd16, 0xff3cd7b6aaff0d1b, 0x0d29cd043d8cbd7e, 0x1cd1ffbcbcd269ff, 0x010c0d52170e3c9e, 0xb4ff0d3fc0040d44, 0xbc5e88a7ff3bac3e, 0xbeb417ff0d4d0012, 0x190ebd4c3b6fffbd, 0xdfff0d5f140b0d64, 0x3c66fe28ffbc8c72, 0x8e205eff0d6d8f05, 0x2b0ebbc49523ff3b, 0x91050dbec5040e02, 0x010c0d908f050d9e, 0xffbb00d530ff0d8b, 0x0d99000f3ce13f19, 0xad31ffbd15ccb9ff, 0xc4040db0000fbb01, 0xff3cbfb0d8ff0dab, 0x0db9050b3e06f529, 0x920cff3b2ee916ff, 0xc8040de2000fbb8a, 0xa2ff0dcf95050dd4, 0x3e02c53effbd2448, 0xaa8b74ff0ddd190e, 0xcb043c52f72dffbc, 0x10ff0def060d0df4, 0xbc378717ffbae196, 0xa009adff0dfd030b, 0xca04bc466211ff3b, 0x01090e2a2c0e0e4a, 0x68ff0e17010b0e1c, 0x3de80314ff3dd8ae, 0x2f0dd0ff0e250002, 0x01123d5ca970ff3d, 0x85ff0e37030b0e3c, 0xbca03014ff3a88c6, 0x151e3bff0e45010b, 0xcc043d23d77effbc, 0x010b0e602c0e0e6e, 0xff3db73f88ff0e5b, 0x0e69020d3e1fb02c, 0x026affbc971fa8ff, 0x310e0e800112bcd7, 0xff3a80a769ff0e7b, 0x0e8902093c9ed0c8, 0x260cffbc3e7a06ff, 0xc9040fae0002bd66, 0x140e0ede070b0f22, 0x000f0eb0000c0ebe, 0xffbd5565d0ff0eab, 0x0eb9070dbc87a3ee, 0x4c20ffbd8d7fa2ff, 0xc7040ed001113c37, 0xff3ac7efc2ff0ecb, 0x0ed9bd04bc7a01ca, 0xddb3ffbc286e57ff, 0xc5040f02140e3c5f, 0x73ff0eefb8040ef4, 0x3d8274c8ffbd8fed, 0x34202cff0efd0012, 0x230ebd949600ffbe, 0xacff0f0f8f050f14, 0xbba24ce2ffbc7bbe, 0x12923fff0f1d2a0e, 0x01083c123fd4ffbd, 0x220e0f4a94050f6a, 0x72ff0f37000f0f3c, 0x3ac2b189ff3d1a79, 0xa8c9b0ff0f45cd04, 0x010c3cccd618ff3b, 0x9aff0f57000c0f5c, 0xbbda63cdff3b96a3, 0xcc7be0ff0f651d0e, 0x010cbdae0d94ffbc, 0x01070f80050b0f8e, 0xffbd074b99ff0f7b, 0x0f89cc04bbacae65, 0xd31aff3c32cb39ff, 0x02080fa0230ebc05, 0xffbd55808cff0f9b, 0x0fa90208bd9593fa, 0xaaa0ffbd1f20c8ff, 0x0b0b103e0208bce1, 0x000d0fda140e0ffa, 0x22ff0fc7050b0fcc, 0x3da8f91bff3c114f, 0xa3281eff0fd5060d, 0x030bbb1687c5ffbc, 0x0fff0fe7cc040fec, 0xbbbe4ce4ff3b3997, 0x96b098ff0ff51d0e, 0x0e0b3b1b445effbb, 0xcd041010000c101e, 0xffbc961a9bff100b, 0x1019ca04bd8e2d21, 0x5d7fffbd434187ff, 0x1f0e10300107bde6, 0xffbc1a1ea9ff102b, 0x1039280e3bc81175, 0x81f0ff3c334333ff, 0x140e107d0012bcea, 0x0b0b10589005105d, 0xff3b104360ff1053, 0xa2eb86ffbc02c850, 0x6a8e05106fcd04bc, 0x31ffbd740dfaff10, 0xff1078230ebd2599, 0x94117cffbd5571e6, 0x93170e10a1000cbc, 0xe71fff108e8f0510, 0x05bbb24ba7ff3b88, 0xbce25fc8ff109c8e, 0xaa0112bb8c597aff, 0xc0ff3ca90328ff10, 0x08000000133ccf4e, 0x01000003e8000000, 0x0000001070000000, 0x0e084c8d05000000, 0x0402481906040616, 0x0500a07d04012c90, 0x04003c6c04005c53, 0xff00294604002e5d, 0x816f9dffb9e97f08, 0x3612ff0037030b3a, 0x0d3af3e4f8ffbb3b, 0xff00497a04004e02, 0x58babfffbb811682, 0x8e04ff00577504bd, 0x043c0ee542ff3a64, 0x0e00720109008078, 0xb83bf090ff006d12, 0x7b110ebc817accff, 0x25ffbb63cf73ff00, 0x0e0092020ebcdfd8, 0xbbdc76f1ff008d01, 0x9b000cbd0d9dd2ff, 0x1dffba2b5318ff00, 0x0e00e880043c4801, 0x0d00ba011100c808, 0xbc204aa5ff00b507, 0xc315063c855f85ff, 0x9eff3ca36115ff00, 0x0400da0008bc12ea, 0x3b3e1d9aff00d57f, 0xe30f0ebc3eb251ff, 0xfbff3b9d9b5bff00, 0x06010c140e3c9721, 0xff00f9090500fe16, 0x953618ff3c9bd680, 0x2465ff0107070eb9, 0x0d3cae99f4ffbc3d, 0xff0119050d011e06, 0x1c719dff3c664f22, 0x9677ff0127150e3d, 0x053c571e45ffbcd3, 0x0501780c0e01bc0c, 0x0f014a9704015805, 0xbd92ab18ff014500, 0x530305bbd8914cff, 0x8eff3b229e05ff01, 0x08016a0107bccd39, 0xbb36ede6ff016501, 0x73000f3c0cfe1aff, 0xe1ff3c815108ff01, 0x0e019c12063bc50f, 0xff01891006018e0f, 0xb9668dffbc4866b6, 0x9dc1ff019701113c, 0x0539ae8f96ff3cbe, 0xff01a9100b01ae06, 0xf5a5fdffbc7945f0, 0x6aa1ff01b70002bc, 0x12bbdee053ff3c34, 0x0c01e4140e020400, 0xff01d1140b01d601, 0x807051ffbbdfc6f3, 0x4241ff01dfa8043a, 0x0d3c519c0fffbb82, 0xff01f1050b01f606, 0xc240e3ffbd164552, 0xf1d6ff01ff0008bd, 0x0e3d37d908ffbbc3, 0x0e021a0b0e02280c, 0xbafe3c11ff021506, 0x2301123b171646ff, 0xdfffbd767378ff02, 0x0c023a00093c6ea4, 0x3a838549ff023500, 0x430d0e3bb4dedaff, 0x71ffbd0215aaff02, 0x0503680d0e3ae5bd, 0x080298000f02dc11, 0x0e026a030b027801, 0xbbff0b02ff026503, 0x7302073b5b5cdaff, 0xf8ffbca6d536ff02, 0x04028a01053cbeef, 0x3ab367ffff028597, 0x930208bcf08154ff, 0x46ff3bc10438ff02, 0x0e02bca7043cd44b, 0xff02a9000202ae00, 0xe9ee54ff3b6efc86, 0xac21ff02b798043b, 0x113bf8184eff3a0a, 0xff02c9070b02ce01, 0x383506ff39861ee2, 0xb549ff02d7b304bb, 0x043b47bd5bff36d4, 0x04030400020324c2, 0xff02f18b0402f6a9, 0x778399ffbc2e950f, 0x8b9bff02ff24053c, 0x0fbcc96c7fffbb82, 0xff0311030d031600, 0xafc45aff3bb92ad6, 0x406dff031f010c3c, 0x05bb192750ff3ab4, 0x0f033a2605034842, 0xbc0a691bff033500, 0x432905ba290dfbff, 0x76ff3c95711bff03, 0x04035a010ebaa743, 0x3c80cb39ff0355c9, 0x63030b3a35bb5cff, 0xaaff3d073040ff03, 0x0503d4130e3d97f8, 0x07038b000b03ab0f, 0x3cae4098ff037d00, 0x1ae1ebff03860107, 0x070bbc5e36b5ffbb, 0x80ff03987f04039d, 0x3d08d751ff3b50fd, 0xdba66bff03a60002, 0x000bbcc334b2ffbb, 0x07bccc5c3dff03b4, 0xff03c1c30403c600, 0xd82006ff3ca633db, 0xab10ff03cf110e3b, 0x04ba1648d5ff3b3f, 0xff03e1010b03efbf, 0x03ea11053d2d15a2, 0x3fd8ff3c98945cff, 0x0c05040102073c6d, 0xff3d0df4ccff03fc, 0x3eb0c6ff3d3113fa, 0x2a1106064657053d, 0x5ac004049e4a0505, 0x2c5604043a3e0104, 0xf367ff04273b0104, 0x043a97793affb94a, 0x3a239488ff0435b1, 0x4c4405bbacfa42ff, 0x838cff04470c0604, 0x11bb85701fff3ab0, 0xbbd369e9ff045500, 0x7e0208bb807e86ff, 0x6bc1040470310304, 0x46ff3c86bc49ff04, 0xff0479070dbccad7, 0x45a471ffba823a0d, 0x8b3f050490c2043d, 0xe2ff3c5125ddff04, 0xff0499c404bb0f5f, 0x03d83affbd64fb85, 0xc6070604e6070db9, 0xb3001204b8530504, 0xfaffbb56e657ff04, 0xff04c138013b3f5b, 0xbe44f9ff3ab84bd4, 0xd3090604d8210ebb, 0xfeff3caf6bd1ff04, 0xff04e10107bb863a, 0x5993d1ffbc741752, 0xfc230e050a4b05bd, 0x2affff04f7850404, 0x08bd71d405ff3c99, 0xbe24c8efff050500, 0x1c230ebdb12d5dff, 0x6225ff0517a60405, 0x053c1a62c7ffbc10, 0xbd2c9b73ff052550, 0xba070bbc046238ff, 0x5663040576030505, 0x4361040548020705, 0x39ff3ac60c32ff05, 0xff0551020d3c6092, 0xf7b188ff3ce8acbe, 0x63030b0568000f3d, 0xd5ffbcfc1ca8ff05, 0xff0571010c3e18d4, 0x1f007aff3c9a1f75, 0x8c1a0e059a04053b, 0x5634ff0587020d05, 0x043c8f2052ffbcb1, 0x3d299cedff059587, 0xac06053b6ae177ff, 0x6cb5ff05a7330e05, 0x063d7e7785ffbc3d, 0xbb855370ff05b512, 0x02b5043b7860f1ff, 0xd4190e05e2290e06, 0x9e85ff05cf170e05, 0x043c741fd3ffbb6c, 0x3c6996f5ff05dd7a, 0xf40605bc560c2dff, 0x6b52ff05ef6f0405, 0x04bc6583d7ff3caa, 0xbdaeb0bcff05fd9b, 0x260002bcfc4f08ff, 0x13020d0618b60406, 0xe2ff3d159d2cff06, 0xff062103053c2843, 0xa40a9fffbd5feb65, 0x33bd04063801113b, 0xd4ffbc848e01ff06, 0xff06411d0ebb9aea, 0x5c2a43ff3c411735, 0xda250e0766060db9, 0x7600060696bd0406, 0x6372050668220e06, 0x33ffba433395ff06, 0xff0671bb04ba935e, 0x498734ff3b8090de, 0x83a904068804063d, 0x9fffbc55fb99ff06, 0xff06910007bd1751, 0xbf1981ffbb901936, 0xac011206bac0043c, 0x52b3ff06a7be0406, 0x043b9d9618ff3d1a, 0xbc4c25aeff06b5be, 0xcc81053bdd65aaff, 0x77d8ff06c7010706, 0x0cbc3ee8ceff3c08, 0xba706c87ff06d501, 0x22c8043bb17406ff, 0xf402080702000f07, 0x7d88ff06ef920406, 0x0d3c079c58ffbbc9, 0x3ad1da51ff06fd02, 0x14270ebd7c26c5ff, 0xd04fff070fc30407, 0x04bd4e7f4affba83, 0xbb576e73ff071db5, 0x460007398dfa06ff, 0x33c9040738010807, 0xdfffbd1d0629ff07, 0xff07410012bc5e40, 0xa63bacff3d8804b2, 0x53670507586805bb, 0x62ff3c8c5004ff07, 0xff0761070b3d8753, 0xa86b91ffbca0c7d8, 0xb2b90407c03e013b, 0x84170e0792960407, 0xebaaff077f001207, 0x0ebd4beb69ffbc39, 0xbb9d06e0ff078d22, 0xa4170e3b93434aff, 0x4511ff079f001207, 0x0ebe080183ffbd7b, 0x3ca7f62aff07ad1e, 0xbb0012bcc3e919ff, 0x86ff3dd1baa7ff07, 0x0b080800083da6cb, 0x0407da170e07e80b, 0x3bf3263dff07d58b, 0xe30009bc3f758cff, 0x2dff3b0bb837ff07, 0x0e07fa070dbc2ad0, 0xbcb3f5c2ff07f518, 0x03170ebacc6836ff, 0xe8ffbd850a4aff08, 0x0e082cc504bc7c8d, 0xff0819170e081e19, 0x683df0ffbada0640, 0x3edeff08271a0e3c, 0x05bb3e02a0ff3d27, 0xff0839010c083e5f, 0xf4db66ff3cd1ffcf, 0x66c4ff08476805bb, 0x0e39c835f0ff3b06, 0x040a2d010b0c3312, 0x0b08e8980409629b, 0x040884910508a400, 0xff0871010e087655, 0x875b0bff3bee8dd4, 0xc4f8ff087f90053c, 0x043b1bb877ffbcd9, 0xff0891000d089655, 0xea6fd2ff3c9575c8, 0x0003ff089f020dba, 0x053d032d94ff3c92, 0x0208ba020708c890, 0xbc0414a3ff08b500, 0xc3011139f7781eff, 0xe3ffbc4081caff08, 0x0d08da000fbe043f, 0xbb9a2202ff08d503, 0xe3080e3cbe9067ff, 0x7effbb819d33ff08, 0x04093000073c0cf8, 0x0e09029405091099, 0x3d603218ff08fd03, 0x0b030e3cd7c5c7ff, 0x30ffbc3209adff09, 0x11092290053bdb07, 0x3b533279ff091d01, 0x2b000c3d3ed1bdff, 0xafff3b49f38fff09, 0x0c09540008bd4d96, 0xff09410d0e094600, 0x0016a8ff3ba38462, 0x3734ff094f060d3d, 0x0e3cef0c60ffbd47, 0x3dada390ff095d03, 0xbc90053d6aafb0ff, 0x8e0d0e09ae100e09, 0x7b00020980000709, 0x5fffbbafd843ff09, 0xff0989020dbcbd3f, 0x49f4ddffbc83e616, 0x9b011109a0aa04bb, 0x64ff3b83facaff09, 0xff09a9c9043d07b3, 0xe07accffbb97c03c, 0xeb34ff09b7a804bc, 0x0dbcb03d90ffbdb9, 0x0709e400090a0402, 0xff09d1000809d600, 0xc91484ff3bb67436, 0xccc0ff09df070ebb, 0x05bc95b9daffba41, 0xff09f10d0e09f696, 0x657ecdffbd7dd59a, 0x4a90ff09ff000cbb, 0x0ebc8b3fa0ff3c45, 0x110a1ac7040a2810, 0xbb575ed7ff0a1501, 0x23000c3b90aaedff, 0xa8ffbb4ecc2eff0a, 0xbe0709feffbcb0e5, 0x0ab802090b17000f, 0x0a5d00070a7d010e, 0x0a4a5f040a4f9205, 0x1c6fff38d1b855ff, 0xdaff0a5801093c99, 0x3c5d49a7ffbc799a, 0x0a6a72040a6f9005, 0xfa6dffbc21fc05ff, 0xe9ff0a780107bd87, 0x3c1d33d0ffbc952c, 0x0a93030b0aa1110e, 0xff0e7bff0a8e0109, 0x020eba249690ff3b, 0xff3cb327f1ff0a9c, 0x0aaa020dbb4c6f67, 0xb3030b3d841f84ff, 0x6cffbe209ae0ff0a, 0x0e0b000e0ebd0132, 0x050ad28d040ae002, 0xbb02d9e4ff0acd8e, 0xdb010dbc8fece4ff, 0x0affbdaccc10ff0a, 0x0b0af2070e3bcf8e, 0xbd1b013dff0aed03, 0xfb080e3ae2a469ff, 0x1dff3cd604eeff0a, 0x040b12c004bca2f7, 0xbe057afaff0b0dba, 0xb5b6ffbd68081cff, 0x00090ba7010cbe16, 0x100e0b4300080b63, 0xadff0b30ab040b35, 0x3a235688ff3a92e2, 0x0d8f2aff0b3eb704, 0xc704bc75a828ff3d, 0x53ff0b50060d0b55, 0x3a9a9320ffbb6c16, 0x765e8eff0b5ec804, 0x070eba82088aff3c, 0x0e0b0b79050e0b87, 0xffbad0f281ff0b74, 0x0b82000c3afb3652, 0xb8beffbc1de409ff, 0x01090b99080eb9fd, 0xff3c9a5ad4ff0b94, 0x0ba2060d3b85ed79, 0xb157ff3a16677eff, 0x00110bef030bbbba, 0x080e0bc1070d0bcf, 0xffbcf739fcff0bbc, 0x0bcac104bc26166e, 0x9c7fff3ceef4cdff, 0xc4040be10009bd48, 0xff3bd17299ff0bdc, 0x0bea90053d095757, 0x55a5ff3c325477ff, 0x00120c130009bb01, 0x69ff0c00070d0c05, 0xbd011fe8ffb90a7e, 0x2ca5e8ff0c0e0107, 0x070e3b46533affbc, 0xe3ff0c20a3040c25, 0x3b791ff5ffbc826c, 0xb1bf40ff0c2e0209, 0x010cbc2727a8ff3c, 0xc7040d57010b0e6a, 0x01080c8793050ccb, 0x2b0e0c59300e0c67, 0xffbb8ec3b9ff0c54, 0x0c62c204bd1623e1, 0xba89ff3d250baaff, 0xba040c79000fbbdd, 0xff3e0152fdff0c74, 0x0c82c3043d272e7c, 0x45b2ffb9178c17ff, 0x000d0cab000c3cc6, 0xf1ff0c981d0e0c9d, 0xbcbf1a98ffbd8151, 0x347bceff0ca6c204, 0x000f3bf9b337ffbb, 0x8bff0cb81d0e0cbd, 0x3da11e10ff3c44d5, 0xcb0bb0ff0cc6c204, 0x2b0e3c059c4affbc, 0x190e0cf3000c0d13, 0xd2ff0ce000020ce5, 0xbaa69f85ffbc3113, 0x9c12e0ff0ceec804, 0x95053c02e5d6ffbb, 0xe8ff0d0000090d05, 0x3c946084ffbca183, 0xbcd5c3ff0d0e0111, 0x0002bd771e18ffbc, 0x90050d292c0e0d37, 0xff3d60e5b0ff0d24, 0x0d3200073df59506, 0x3ed0ff3d61c138ff, 0xcc040d4990053ce5, 0xff3cb64e2dff0d44, 0x0d522d0ebd70b5b0, 0x4ef6ff3bd789c6ff, 0x130e0dde9c04bc6c, 0x00070d837b040da3, 0x8eff0d7075040d75, 0xbc19c55cffbc9de5, 0xf3d200ff0d7e8f05, 0x8c043c40bbd4ffb9, 0x40ff0d9080040d95, 0x3d03a828ff3c4126, 0x49dbc2ff0d9e030b, 0x8804bd8f7318ffbd, 0x030b0db901070dbe, 0xffbd69cef5ff0db4, 0xad15c8ffbd50ec95, 0xcb97040dd0170ebd, 0xefff3e28724eff0d, 0xff0dd9000c3cfc73, 0x68f173ff3c95fa3a, 0x069d040e26b104bc, 0xf3170e0df801110e, 0xfcffbc927ba7ff0d, 0xff0e018f05bbef3e, 0x106cb4ffbe1054b6, 0x13130e0e18250ebe, 0xdcffbcaa5feeff0e, 0xff0e21030b3b905b, 0xb5386cff3dbd5458, 0x3c95050e4a310e3d, 0xd893ff0e37b5040e, 0x0e39a4580cffbc0f, 0xbbbcbb29ff0e4517, 0x5ccb043885fd8dff, 0xc23bff0e57320e0e, 0x0d3a0d495dff3d27, 0xbaab39b9ff0e6507, 0x54140ebcd3f212ff, 0xba00110ef500090f, 0x8c00020e9ac5040e, 0x8a3aff0e87030b0e, 0x05be442cddffbd59, 0x3d5e9720ff0e958f, 0xac070dbde18bc6ff, 0xc0caff0ea700020e, 0x053d11888eff3da6, 0xbb61a32bff0eb58f, 0xd5c104bc13f990ff, 0x8607ff0ec700020e, 0x88ff0ed000123dd4, 0x3dc7ef14ff3d7746, 0x0ee200080ee7c504, 0xe5ceff3d40a58cff, 0x56ff0ef00b0b3d8f, 0x3e23ff70ff3d5862, 0x0f0b8e050f2b0209, 0x1c599aff0f06020b, 0x8f05bd5d5ff8ffbd, 0x48ff0f1800020f1d, 0x3cd227e3ffbc846a, 0xc41033ff0f26cb04, 0xcd043c3e9512ffbc, 0x8bff0f388f050f46, 0xff0f419105bc8390, 0x4083d8ff3b870a70, 0x988cff0f4f92053c, 0x0ebce3f6d0ffbd5e, 0x040fa0c0040fe417, 0x120f72b8040f80ba, 0xbdbf7353ff0f6d01, 0x7b00093d66997aff, 0xacff3db08a9bff0f, 0x040f92bd04bd2df3, 0x3c5f4deeff0f8dbb, 0x9b060dbc1081a8ff, 0xcaff3d88497dff0f, 0x050fc401123cde05, 0xff0fb10b0b0fb691, 0x300534ffbc4afa68, 0x92fbff0fbf0011bd, 0x0bbd0d8b4bffbdd8, 0xff0fd100090fd603, 0xe017bcff3c86eba6, 0x53e2ff0fdfc404bc, 0x0ebb2b8837ffbcdb, 0x05100c9205102c28, 0xff0ff900080ffe91, 0xa9b49cff3b15d52f, 0x6949ff1007cc043c, 0x0ebce09b10ffbb8b, 0xff1019cd04101e23, 0x27bc9aff3c68e450, 0x6ed9ff10270009bc, 0x0ebd358c09ff3df3, 0x111042cc0410502b, 0x3b8cc985ff103d01, 0x4b0002bcbcd8a4ff, 0xf2ffbc6c2470ff10, 0x0b10620008bd6985, 0x3c844a62ff105d03, 0x6b9005bc50546cff, 0xe5ff3c68d539ff10, 0x08000000133e459d, 0x01000003e8000000, 0x0000001028000000, 0x0e07e08d05000000, 0x0402481906036416, 0x0400a08505012caf, 0x04003c5304005c5b, 0xff00293e04002e3f, 0x86bc43ffba13c4ba, 0x5684ff0037000f3b, 0x0bb7d9ab3fff3b99, 0xff00495904004e01, 0x9c5637ffbc0a339c, 0xf101ff00570b063b, 0x113c3acc61ff3a17, 0x060072ae04008002, 0x3a0c98b3ff006d11, 0x7b070db80230c2ff, 0xd2ff3c1bdc23ff00, 0x0800920b05bcb45f, 0x3dcbcaf9ff008d01, 0x9b01073c4d0635ff, 0x33ff3c68a6e1ff00, 0x0400e88a05bcb2db, 0x0e00ba000700c8a8, 0xb92f1806ff00b508, 0xc3030d3bc4c6b8ff, 0x2bffbc90bb49ff00, 0x1100daa904baf48d, 0xbd0af166ff00d500, 0xe3050e3d2d9e51ff, 0x23ffbbf0e05eff00, 0x04010c02073b89c8, 0xff00f9011100feab, 0x6efd32ffba06591b, 0xefe3ff0107ac043b, 0x11bab813d7ffbcc1, 0xff01197b04011e01, 0xbea6abff3c857d5b, 0x3d53ff01278b05bb, 0x07baf668e4ffbdc2, 0x120178b20401bc02, 0x0c014a0109015801, 0x3ac4faf5ff014500, 0x53080e3ca79fe4ff, 0xb1ff3bbeaa9eff01, 0x04016a0a06bcfcb5, 0xbc3f15d5ff0165b1, 0x73030bbd9771a5ff, 0xefffbc3f24f7ff01, 0x09019c00123c1218, 0xff0189000c018e01, 0x51cf22ffbb782e99, 0xb128ff019772053c, 0x04bc01b29dffbd28, 0xff01a9060d01aebd, 0x604796ffbb2d63c8, 0x28c0ff01b78805bc, 0x0d3bef9022ff3b23, 0x1201e40108020406, 0xff01d1750501d601, 0x1ea8e2ffbd2bcb8d, 0xea0aff01df000cbc, 0x053bc49bbaffbab2, 0xff01f1120501f676, 0x984d9affbb605c5e, 0xcc79ff01ff0112bc, 0x113b154c98ffbc0a, 0x05021a0108022800, 0x3d03354dff02155e, 0x230002bb91c9f8ff, 0xa3ffbcf59bb8ff02, 0x04023a0002bc5df9, 0x3d837fd4ff0235be, 0x43070e3c6e8b93ff, 0xc3ffbb171141ff02, 0x070332130e3c93a5, 0x0502980b0e02dc02, 0x0e026a9b04027807, 0x3b47ec62ff026501, 0x73000fbc254750ff, 0x5affbd0b220dff02, 0x08028a000eba73eb, 0xbb7e85cbff028501, 0x93090e3bc06da2ff, 0x48ff3af044cdff02, 0x0402bc04053bbaa3, 0xff02a98f0402ae9c, 0x41f985ffbc1bf9fc, 0xd957ff02b7020d3c, 0x04bd1946f8ffbd57, 0xff02c9000b02cebd, 0xdf8511ff3bbb71b7, 0xa12fff02d7000c3c, 0x0b3c4280d0ffbaa4, 0xff02e9020d02ee00, 0x85e171ffbcc1b974, 0x0400020312000fbd, 0x9741ff02ff040e03, 0x0e3c8d58faffbc21, 0x3be9690bff030d00, 0x2497043ce0b1e1ff, 0x1d48ff031f000803, 0x113c3b264fff3b72, 0xba795c9fff032d01, 0x4dbf043b0db925ff, 0x4300070348190503, 0x4cff3c558638ff03, 0x3d1bc6aaff3c8952, 0x035a0c05035f0207, 0x5ecaff3cff8568ff, 0x053d2b9f16ff3d1f, 0x0b0488011105a45b, 0x0603b8240e03fc10, 0x04038a0107039800, 0xb925834dff038594, 0x93b104bb93fca9ff, 0x6fffb9199d17ff03, 0x0403aa04063cbdb2, 0xbc3774a6ff03a59c, 0xb31205bd620e66ff, 0x76ff39a7da68ff03, 0x0403dc0208bbaa60, 0xff03c9210103ce92, 0x605728ffbac3fb71, 0x581cff03d7260ebb, 0x0bbb5912ffffbc4c, 0xff03e92c0503ee03, 0x5c2175ff3b8b820e, 0xc40bff03f701063c, 0x023be962d3ffbc09, 0x0b04244505044400, 0xff04119a04041612, 0x357958ffbbcd1622, 0xe861ff041f070dbd, 0x05bc20d607ff3a9f, 0xff04310108043646, 0xd69ab8ffbd1e3a15, 0x07aaff043fa904bd, 0x0d3a760b10ffbbb3, 0x05045a0906046806, 0x3d29aed8ff045506, 0x632b0eba705f9aff, 0x98ffbb81fbe3ff04, 0x05047a0012bcb706, 0x3c978071ff047537, 0x83b404bb77ec07ff, 0x9cff3d9e4176ff04, 0x040518230e3cfc6d, 0x0104b45b0404d478, 0xff04a1320404a640, 0x7aed07ffbac1d126, 0x87f2ff04af1a0e3b, 0x06bd69d455ffbb04, 0xff04c1410104c605, 0xc7b1bcff3c50f584, 0x9ea7ff04cf7304bb, 0x033c2499feffbca2, 0x0504ea1b0304f81f, 0xbd1e69a1ff04e51c, 0xf338013be3f7d0ff, 0xc7ffbcd774a5ff04, 0x0e050a0209bdd103, 0x3c7155daff050517, 0x13030b3bd0d14eff, 0xd8ffbd2af48dff05, 0x0605601c053cbeb4, 0x0105323101054016, 0xba599a43ff052d2a, 0x3b1a033be326d2ff, 0x6effbd22308aff05, 0x0b05520105bbb158, 0xbc037e54ff054d03, 0x5b0305bdb1865dff, 0x1fff3e056903ff05, 0x0b0584090b3c66d5, 0xff05714101057602, 0xa047cbffbb98b90a, 0xbaf6ff057f0207bc, 0x063bfa2ca4ffbaa4, 0xff05910212059603, 0x825ee7ff3ba85ddc, 0x547bff059f000f3d, 0x0db7f235c9ff3c9d, 0x040638010b06c406, 0x0f05d4000c05f4cb, 0xff05c1920405c600, 0x3345c1ff3d9a98db, 0x1812ff05cf170ebb, 0x08bbab6b76ff3b77, 0xff05e1000905e602, 0xc0227cffbbd37173, 0xbb69ff05ef020dbc, 0x0ebd6d0434ffba5f, 0x0e060a2d0e061831, 0xbd85f600ff06052b, 0x1302073b38c647ff, 0x13ffbdcad308ff06, 0x07062a0207bdea01, 0x3d8fbcacff062500, 0x3300083c771b4dff, 0xe0ff3d107480ff06, 0x0c0680bf043d8a49, 0x0206520a0b066000, 0xbb7bc89aff064d00, 0x5bbb043abedf4bff, 0xb7ffba0269f1ff06, 0x0706727c053bb848, 0x37b0f768ff066d00, 0x7b01123b837634ff, 0xbeff3c2489e4ff06, 0x0406a4010c3a71ed, 0xff0691190e0696c0, 0x7bfdf8ffbd003fd8, 0xb1c3ff069f62053c, 0x02bb182901ffbc99, 0xff06b10b0b06b600, 0x031d58ffbbf3acfa, 0xf4d6ff06bf0111bb, 0x0bbc6529aeff3c20, 0x040710cc04075414, 0x0c06e2a70406f0ca, 0xba90c16cff06dd01, 0xeb2a0ebc434786ff, 0x38ff3b215e86ff06, 0x0e07020107bbf1a2, 0xbcd3ce0cff06fd22, 0x0b010c3adecf22ff, 0xf1ff3b39bd28ff07, 0x0e07340b0b3ccaa5, 0xff0721010c072619, 0xf0bef0ffbd1fa779, 0x3939ff072f0107bb, 0x0dba33b193ffbc56, 0xff0741cd04074607, 0x196a3bffbd478cc8, 0xdae4ff074f0002be, 0x123b6ca497ff3dcb, 0x0e077c000c079c00, 0xff07691c0e076e22, 0x0b63f7ff3b31a0d4, 0x7f73ff0777250ebc, 0x053c73bee6ff393b, 0xff07890008078e6e, 0x29db18ffbb8fe41a, 0x02efff07976f053c, 0x043c37a74dff3d9f, 0x0e07b2190e07c0b9, 0xbbea5810ff07ad17, 0xbb00023db05e43ff, 0x0dffbd37d9d3ff07, 0x0807d200023d1e24, 0xbda503e4ff07cd01, 0xdbc904bc98ad9fff, 0x18ff3c99a98cff07, 0x0d0be20e0ebd1b69, 0x04090800070a2402, 0x050838070b087cbc, 0x0e080a8704081892, 0x39b68590ff080507, 0x13a104bc85cf98ff, 0xdaff3c84b484ff08, 0x04082a070e3b0f1e, 0x3b9b8338ff082596, 0x330009bc67fc87ff, 0x38ff3c0746c0ff08, 0x0d085c8204bbeb84, 0xff08499305084e00, 0xabb0dbff3d009449, 0x0c5fff0857050ebc, 0x0cbd8e6fa4ff3ba4, 0xff08699605086e00, 0xa7ec8dff3c75b640, 0xbd99ff0877a704bc, 0x09bb181d30ffbcf4, 0x0b08a4050b08c400, 0xff08910008089602, 0x99fe00ff3d02e968, 0x8f76ff089f030b3c, 0x083cd6d3c0ff3d67, 0xff08b1bf0408b601, 0xb2d577ff3c5b29ab, 0x03e0ff08bfbf043b, 0x0bbc12afc0ff3ba8, 0x0508da000208e803, 0x3d0563e0ff08d595, 0xe30d0e3bde0380ff, 0x3bffbcac48c0ff08, 0x0e08fac7043c4c85, 0x3d641ef3ff08f507, 0x0300023d1e1fe0ff, 0x80ffbbbf5b00ff09, 0x040998000c3d40e4, 0x04093490040954b0, 0xff09217b0409267f, 0xba9fd5ffbab99fb5, 0x31f1ff092f90053c, 0x12bcc6f154ff3c58, 0xff09410a0b094601, 0x8b29e5ffb88802a5, 0x6a3bff094f020ebd, 0x0b3c11696cff3db6, 0x11096a0107097803, 0xbcc97461ff096501, 0x730111bce85b00ff, 0x20ffbc8b9bbaff09, 0x07098a0111bc43c2, 0xbd84a98bff098501, 0x930107bd7e9005ff, 0x10ffbd79d7a0ff09, 0x0409e0a704bd2fa3, 0x0409b2070e09c091, 0x3d4eadd4ff09ad51, 0xbb00023cb80347ff, 0x2bff3ba88eb1ff09, 0x0709d29704bd7231, 0xbdb06285ff09cd01, 0xdb030bbd229d48ff, 0xbdffbc3b7272ff09, 0x040a04070ebd2371, 0xff09f1010809f6b3, 0xaeeec0ffbcebc533, 0x4c5cff09ff02083c, 0x0bbcffa0c9ff3ac7, 0xff0a11a9040a1601, 0xbe5577ff3cf16cd5, 0x85caff0a1f080ebc, 0x043bf15108ffbd08, 0x120aaf90050b205e, 0x0c0a54030b0a7401, 0xff0a4101070a4600, 0x95e283ff3a8648c2, 0x246eff0a4f5b043c, 0x04bb780786ffbc73, 0xff0a6100020a6651, 0x4a1ae0ffbbaff07a, 0x20f6ff0a6f0b0b3a, 0x0cbc80def8ffbbf2, 0xff0a8144040a8f00, 0x0a8a000fbe113a28, 0xf44eff3cfb5d3bff, 0x8e050aa15c043aff, 0xffbe3ae654ff0a9c, 0x0aaa00023d045e40, 0x4242ffbd8b37ecff, 0x00110af701113d3d, 0x01070ac993050ad7, 0xff3b83a004ff0ac4, 0x0ad2040d3c5468ac, 0x3c40ffbc36252aff, 0x4d040ae9000f3a90, 0xffbbe41cebff0ae4, 0x0af25704bd000758, 0x5d39ff3ad0c49eff, 0xa6ff0b009105bbc8, 0x040b120002bdd7ad, 0x3bd69400ff0b0d55, 0x1b010b3c5f7f66ff, 0x00ffbb00bf80ff0b, 0x110b565f043ad515, 0xff0b318f050b3f01, 0x0b3a000ebcc7d7ea, 0x99e2ff39621ac0ff, 0x030b0b510009bbf5, 0xffbe080260ff0b4c, 0x8523a8ffbdcf7f78, 0x7e91040b9e000fbd, 0x6b6f040b70000e0b, 0x70ff3cafab8bff0b, 0xff0b79000cbd1497, 0x60f104ffbc418cf7, 0x8b070b0b909e043c, 0x32ff39cb3bf0ff0b, 0xff0b999f04bd1b1a, 0x702578ff3d67d4c4, 0xb48e050bc294053b, 0x60f5ff0baf00080b, 0x0cba01c23fffb970, 0x39b1d403ff0bbd01, 0xd40d0e39c44263ff, 0x8ac3ff0bcfca040b, 0x04bb960567ffbaa7, 0xbbb189ccff0bddc1, 0xec000c3c0005d6ff, 0x7a150e0d06070d0d, 0x16be040c3694050c, 0x0300120c08bc040c, 0x34ff3c892df0ff0c, 0xff0c110011bc0012, 0xb8f69fffbd835ce3, 0x2300090c28c204bc, 0x93ff3d11925aff0c, 0xff0c31c504bbe2a2, 0x5b5a6affbc0d6fe4, 0x4c0e0b0c5a01083b, 0x54d7ff0c47140e0c, 0x0e3bf34e6cffbc02, 0xbd29682fff0c5511, 0x6c0007bc93524bff, 0x659eff0c670b0b0c, 0x0b3cfb9848ff3c6a, 0x3a81a400ff0c750b, 0xc2000f3bba8100ff, 0x94070b0ca2020d0c, 0x400dff0c8f00070c, 0x04ba7ed6c6ff3ce9, 0x3bd72b00ff0c9dbf, 0xb40002bccfa74fff, 0x209dff0caf00070c, 0x0b3ca3cb8cff3d4a, 0x3e1d14f0ff0cbd03, 0xe6b8043dac8ee1ff, 0xd300020cd8b7040c, 0x90ffbb4fea8fff0c, 0xff0ce1170e3ba651, 0x15295fff3c260df5, 0xf3cc040cf800093d, 0x65ff38476d62ff0c, 0xff0d01180eba81d5, 0x355b76ffbc3bfc19, 0x2e00120d60be04bb, 0x2400090d29030b0d, 0xf8daff0d1f170e0d, 0xffbbdfe1c3ff3a9f, 0x12b8fcffbc898a15, 0x44bb040d4990053c, 0xc8d8ff0d3fb2040d, 0xff3db5cb35ff3d91, 0x0d5bb8043d8bf178, 0xcdb9a8ff0d56b504, 0x80ff3dcfdec8ff3d, 0x0b0da8c1043db892, 0x050d7a00070d8803, 0xbd405bf7ff0d7590, 0x838f05bd206b5cff, 0x7affbcdc76d3ff0d, 0x040d9a8f05bc32ca, 0xbd6e7674ff0d95c0, 0xa3140ebda05da2ff, 0x4dffbc80dfe4ff0d, 0x0e0dcc0011bd5bff, 0xff0db9050b0dbe1f, 0x19e6d8ff3c1dac6a, 0x1539ff0dc7cb043a, 0x0b3ba55961ffbcb8, 0xff0dd9c3040dde03, 0x00269fff3ce73a80, 0xc140ff0de70007bd, 0x0bbd969726ffbd66, 0x090e80170e0f0c07, 0x070e1c020d0e3c00, 0xff0e09b3040e0e00, 0x2265cbff3be2020c, 0xd0eaff0e17140e3d, 0x0f3b9f28e6ffbcc5, 0xff0e2900070e2e00, 0x6bfd30ffbd83fab5, 0xe89eff0e37140e3c, 0x043c3a1288ffbc8b, 0x0d0e52000f0e60bc, 0xbd5887acff0e4d02, 0x5b010cbde7eb66ff, 0x82ff3b06cac7ff0e, 0x110e72120ebd1c8e, 0xbc086850ff0e6d01, 0x7b150ebdb9236dff, 0x16ff3cacc76fff0e, 0x0e0ec80208bceadf, 0x0d0e9a01110ea819, 0xbc04e290ff0e9507, 0xa30109bd827ee4ff, 0xdbff3cf91584ff0e, 0x0e0eba1c0ebc4fef, 0xbc7f8f4eff0eb51b, 0xc3c504bd92211bff, 0x32ff39cf90bbff0e, 0x040eec020dbbb712, 0xff0ed9050b0edec9, 0xb71c00ff3d066a5e, 0xa42cff0ee7cb043d, 0x0dbc30f2a0ffbd9d, 0xff0ef9190e0efe06, 0x0bb1a6ffbd136fd4, 0x1780ff0f07010bbe, 0x0ebae17340ff3b91, 0x0d0f5800080f9c14, 0x0c0f2ac7040f3806, 0xba3eccf5ff0f2501, 0x3300093ce642f3ff, 0x2cffbd2db7a8ff0f, 0x040f4a0012bc0237, 0x3d7cf0ceff0f45c2, 0x530b0b3b297980ff, 0x3bff3d88d41aff0f, 0x0e0f7c0b0b3e1631, 0xff0f69bc040f6e12, 0xe36b71ffbd19f656, 0xd7adff0f77060d3b, 0x0d3cc8e92fff3d9a, 0xff0f89120e0f8e06, 0x9d6f5dffbb753dc9, 0x7b37ff0f9700023d, 0x043d968561ff3e03, 0x040fc4180e0fe4c8, 0xff0fb10b0b0fb6c0, 0x210b47ff3b8e4c32, 0xa4d5ff0fbf060d3d, 0x0e3cc18ee6ffbcfc, 0xff0fd1c7040fd619, 0x7712a0ff3c48d9f1, 0x2d4aff0fdf1d0e3d, 0x043c384bb3ffbc4c, 0x0f0ffa220e1008cd, 0x3c626d55ff0ff500, 0x030008bb2d88f8ff, 0x80ff3b326788ff10, 0x08101a00093ce0a7, 0xba9e41d3ff101501, 0x23010cbc9a6e93ff, 0x6dffbbbb946dff10, 0x0800000013bcd052, 0x01000003e8000000, 0x00000010a6000000, 0x0e07ce8d05000000, 0x0402481906037616, 0x0400a08505012caf, 0x04003c5304005c5b, 0xff00290008002e3d, 0x26b483ffba6d7636, 0x82e3ff00370212b9, 0x0b3c8f4a28ff3a49, 0xff00490706004e01, 0x6bdbddffbbb9f093, 0x217fff005707063c, 0x113c050c31ff39f2, 0x060072ae04008002, 0x39fd1262ff006d11, 0x7b070db7ea5accff, 0x42ff3c0c462aff00, 0x0800921205bca256, 0x3d4dd595ff008d01, 0x9b00083b5f5746ff, 0x99ff3c5a65e9ff00, 0x0400e88a05bc43c5, 0x0e00ba000700c8a8, 0xb91d95a0ff00b508, 0xc3040d3bb11941ff, 0xf9ffbc68dbccff00, 0x0c00daa904bae780, 0x3c83c3c1ff00d501, 0xe3050e3da4af2aff, 0xc5ffbbd8c9eaff00, 0x0e010c02073b7801, 0xff00f9010700fe0a, 0xd1eae8ff3a13a34f, 0x78edff01070b0ebb, 0x053b18b5f8ffbd0d, 0xff0119000f011e8b, 0x147804ffbdb6080b, 0xba3eff01279504bc, 0x083b6ed559ffbc28, 0x040178000801bc02, 0x05014ab0040158bd, 0x3c4a1413ff01458b, 0x530b0ebd2d0d82ff, 0x46ffba022192ff01, 0x09016abe04bbb296, 0x3bbc36c4ff016502, 0x73000fbc9b81b2ff, 0x4dffbc375d4eff01, 0x0d019c150e3aab2d, 0xff01891006018e01, 0x5a9b06ff3bf93903, 0x20caff0197bc04bc, 0x083b114257ffb7cc, 0xff01a9b40401ae01, 0x94d42cff3cd375d3, 0xfe2bff01b7010cbb, 0x073dd67a2fff3c13, 0x0601e46605020401, 0xff01d1bd0401d609, 0xc88366ffbc80e659, 0x2d1dff01df0f063c, 0x0bba527cc8ff3bf4, 0xff01f1070e01f607, 0xb2b866ff3cafa5ae, 0xa8c6ff01ff6705bc, 0x023bad502aff3d80, 0x12021a0d0e022800, 0xbcb6f9b7ff021500, 0x23130ebbf07ef7ff, 0x57ffbd27b0a8ff02, 0x0f023a040dbb6d76, 0xbcb2bf22ff023500, 0x43080ebc029bdcff, 0xe0ffbc0bfa29ff02, 0x070344130eb9f872, 0x0f0298190502dc02, 0x0e026a030b027800, 0xbb02c6c0ff02650d, 0x7301083c5c33d1ff, 0x3fffbc7dda34ff02, 0x04028a040e3b9bb3, 0x3b453333ff0285a7, 0x93070bb94a94b3ff, 0xafff3a10c876ff02, 0x0f02bca904bbe5a6, 0xff02a9000c02ae00, 0xee0a0bff3c7d01dc, 0xa21aff02b7000b3c, 0x0bbb7c17f4ff3bb3, 0xff02c9b10402ce00, 0xcdf7d1ff3bb16430, 0x390fff02d7c304bc, 0x0bb9182ef9ff3bb9, 0x0d02fb040e030000, 0xbd16ec45ff02ed02, 0x7bc18fff02f6000e, 0xb5ffbd6b9984ffbd, 0x050324000fbbbb6e, 0xff03119904031600, 0xfd5cb4ffbc38c35d, 0xb2deff031f0002bd, 0x043c8910d5ffbad7, 0xff03310008033697, 0x286f47ff3b59e728, 0x6cefff033f01113c, 0x043aff1a11ffba60, 0x05035a1905035fbf, 0x3c772db8ff035511, 0x32caff3c402bf8ff, 0x0c05037102073d0c, 0xff3ce5f818ff036c, 0x1a7596ff3d0f6eea, 0x9aca04059259053d, 0xcaa404040e240e04, 0x9ca30403aa021103, 0xbfb2ff03979a0403, 0x0ebaf40ecbff39c3, 0x3ced6dadff03a51c, 0xbc6a04baac3a53ff, 0x0610ff03b70b0503, 0x06bc0803beff3c3c, 0x3d96a35cff03c500, 0xee11063c871befff, 0xdba50403e0530503, 0x54ff3ca734f6ff03, 0xff03e9ad043b8eaa, 0x9e06bbffbcca169d, 0xfb01110400a7043b, 0x54ffbc74362fff03, 0xff0409aa04bd10e3, 0x291bf4ff3c8f7418, 0x36170604560008bb, 0x238c040428011104, 0x03ffbb100177ff04, 0xff0431c104bbe8fd, 0x46805affbb2988e6, 0x437f04044800053b, 0xb3ffbcf3ee08ff04, 0xff04510605bdcca0, 0xec80bfff3d722aaf, 0x6cbc04047ac5043b, 0xd250ff0467450504, 0x05bb75a19effb83f, 0x3bfcaa94ff04751e, 0x8cc7043b1fb152ff, 0x233fff04871c0504, 0x053c6e463eff3d95, 0xbc4d6ee1ff049556, 0x0f00023cbd2e10ff, 0xc6040604cb320305, 0xb3020d04b80b0b04, 0x49ffbd6097fbff04, 0xff04c1010c3c0c1d, 0xcbdcc3ffbd92ad6f, 0x0306be342c71ffbc, 0x001104e1cb0404ef, 0xffbda3e42bff04dc, 0x04ea0108bbb52fcb, 0x8887ffbc94fcacff, 0x000c0501cb043ca0, 0xff3c8b6884ff04fc, 0x050a01113d156f22, 0x9df5ffbc96c202ff, 0x010c055700063c15, 0x51050529310e0537, 0xff3dbc864aff0524, 0x053247053d05a806, 0x254bff3e604849ff, 0x020805490b0b3da8, 0xff3d7965b0ff0544, 0x05523705bbf2b58a, 0x1f5fff3ddcfd0eff, 0x011105720b05bc56, 0x6dff05682b0e056d, 0xbd96c711ffbe1214, 0x84010c3d6728a8ff, 0x2941ff057fcb0405, 0x0bbbe4bd13ffbc7f, 0xbb8800abff058d0c, 0xb22a0e3cf7f28cff, 0xe200070626000f06, 0xb4a50405c2020905, 0xe8c6ff05af010b05, 0x0b3a1a18e0ffbc80, 0xbd155c88ff05bd05, 0xd4030b3c467e2dff, 0x0c7eff05cf050d05, 0x04bdb1dea4ffbd18, 0x3d1826e6ff05ddba, 0x06030bbcfcb840ff, 0xf3010b05f8040d06, 0xeaffbc28ccbfff05, 0xff060102083c5805, 0x236e1eff3ccb6344, 0x1301070618170ebd, 0x75ff3c94158cff06, 0xff0621040b3c168d, 0xb95defffbcd04cc8, 0x4e230e066ec20438, 0x3b220e0640000206, 0xf7ffbb6210faff06, 0xff06490e0b3bca36, 0x0ba35fff3b3fe684, 0x5b250e0660c1043c, 0x6affbc7d46d2ff06, 0xff0669280ebb2a61, 0xfdc1e6ffbd234733, 0x84200e06920007bd, 0xbc3bff067f180e06, 0x0e3c8fdedfffbc93, 0xbd268759ff068d22, 0xa4230ebbc01e48ff, 0x82b5ff069f010c06, 0x023b9dc747ffbb33, 0xbd25703bff06ad00, 0x420a0bba976bcfff, 0xde770506feba0407, 0xcb030b06d02e0106, 0xe8ffbcc1a6f2ff06, 0xff06d9040bbd6c64, 0x8c787cff3b2359a1, 0xeb000806f0040dbb, 0x52ff3ca5beffff06, 0xff06f98c043d3b51, 0x836028ff3d61c623, 0x1461050722050bbb, 0x3a3cff070f000f07, 0x0cbb8a28f0ffbd0f, 0xb9cd0915ff071d00, 0x34000fbc2bad6fff, 0xa2d1ff072f020807, 0x02bcc80373ff3c66, 0x3b409309ff073d00, 0x8aca04bc8a4925ff, 0x5c0107076a790507, 0x4affff0757c00407, 0x04bbc81c02ff3949, 0x3c406155ff0765c7, 0x7c7a05bc26e243ff, 0x1b2dff0777000207, 0x0c3db9179cff3cb5, 0x3bc87876ff078501, 0xaecb04bcbb77d9ff, 0x9b010c07a0010707, 0x66ff3c94e0a4ff07, 0xff07a9060dbccdf2, 0x975ecaff3d0a9af1, 0xbb2d0e07c0310e3b, 0xb8ff3c077742ff07, 0xff07c9330ebacc7b, 0x43491bffbce42a35, 0xf7040d0c330e0ebb, 0x6a030d08e4000c09, 0x0690040826b00408, 0xf37c0407f8870408, 0x05ffb79be97bff07, 0xff0801000d3cdaa2, 0x5ea34cffbd26ca2f, 0x130a0b08180111ba, 0xcfff3a124055ff08, 0xff0821020ebd59f1, 0x330312ff3d840466, 0x3c0007084a030b3c, 0xbbbcff0837011208, 0x07bccbcbe0ffbd67, 0xbcc336f2ff084501, 0x5c0107bc55bd10ff, 0x8f6dff0857011108, 0x11bd690dd0ffbd66, 0xbd651b37ff086501, 0xa9030bbd1e12c0ff, 0x84000e0889660408, 0x679eff087f000b08, 0xff3ba9b4acffbb90, 0x089b9305bdbc7cbc, 0xffa240ff08967f04, 0x95053d29710eff3b, 0xff3d749342ff08a4, 0x08c4000e3dbc8b14, 0x08ba001108bf0111, 0x2a9aff3b5348b0ff, 0x073cdf4060ffbc53, 0xff08d1930508d600, 0xa636a8ff3e12b55e, 0x431aff08df00023d, 0x043dec2ed8ff3d88, 0x090930080e096bb3, 0x0e09029104091000, 0x3bd9cacfff08fd07, 0x0b9804bcbda544ff, 0x8dffbd5b45d1ff09, 0x040922020bbc9b2a, 0xbcb893f3ff091da9, 0x2b8904bd561370ff, 0x35ffbbe0ca0bff09, 0x04094b9c043c1996, 0xbd90fa38ff093d5e, 0xc2ec54ff0946010d, 0xa7043cb73993ff3d, 0x49ff09589d04095d, 0xbc1ad519ffbe3f1d, 0xa89245ff09660009, 0x010bbc0d9029ff3c, 0x00090993b50409b3, 0x50ff098001070985, 0xbcfd3f95ffbc91ac, 0xb09b7cff098e070e, 0x0007bd665ad0ffbd, 0x86ff09a0000909a5, 0xbc85a1f0ff3c85a4, 0xda93abff09ae0008, 0x9205bc187360ffbc, 0x070e09c9020d09d7, 0xffbcbf42d5ff09c4, 0x09d200073ade64da, 0x2c90ffbda99c52ff, 0x010909e90d0e3ca5, 0xff3c56f152ff09e4, 0x09f20209baaf0539, 0x4965ff3d0228edff, 0x020e0b17b7043c56, 0x010e0a47000f0a8b, 0x84040a19090b0a27, 0xff3c2d3e88ff0a14, 0x0a220009bb9f6970, 0xfcb2ffbd1adce1ff, 0x00020a3900093b5f, 0xff3c8b3f47ff0a34, 0x0a42030b3d397bd5, 0xad16ff3b1de0d1ff, 0x010e0a6b000cbd30, 0xf3ff0a580b0b0a5d, 0xbac6bef9ff3a52eb, 0xa65b52ff0a660009, 0x92053bd97b98ffbb, 0x4dff0a7800080a7d, 0xbc12d1d8ff3a5473, 0xc8a14fff0a86010c, 0xb504bc4125a0ffbb, 0xab040ab301120ad3, 0xadff0aa0a8040aa5, 0x3c1083f4ff394fbd, 0x0451bbff0aaeae04, 0x97043a9f50dcffbc, 0x7fff0ac091040ac5, 0xbd007535ff3c12e4, 0xc827b1ff0ace9904, 0x00113ab83406ff3b, 0xb6040ae9000c0af7, 0xffbc640153ff0ae4, 0x0af2030b3c414d6a, 0xe5c9ffbbdb5226ff, 0x000c0b0900123d66, 0xffbd43d7d3ff0b04, 0x0b120112bdc30600, 0x7b7cffbbe34622ff, 0x01070ba70112bd2b, 0x0d0e0b43b8040b63, 0x4bff0b3000120b35, 0x3bad0fd9ffbc54fa, 0x16ca3cff0b3e0002, 0x0007bcbc29a6ff3d, 0x42ff0b508e050b55, 0x396f6f82ff3b8d1f, 0xea35dcff0b5e070e, 0x0e0bbbc086c6ff39, 0x000b0b79000f0b87, 0xff3c06bcc0ff0b74, 0x0b82000cbd9cad63, 0x33e4ff3b003ef2ff, 0x91050b99010cbb92, 0xff3ba4effcff0b94, 0x0ba20b0e3c34c9e1, 0x7dc8ff3cb1ecdaff, 0xc0040bef060dbd0c, 0xb9040bc102090bcf, 0xff3ce7cf3fff0bbc, 0x0bca030b3c669da3, 0x3ec3ffbc8a4eb9ff, 0x01090be1070e3c04, 0xff3c0fe41bff0bdc, 0x0beac604bbc65ddd, 0x4ae5ffbc42a4cbff, 0x020e0c13000c3b9a, 0xf0ff0c0001070c05, 0xba172000ff3c93a2, 0x81ce06ff0c0e030b, 0xbf043b0e2d00ff3d, 0x0bff0c20030b0c25, 0xbd32a0efffbd77c3, 0x5e0d12ff0c2ec104, 0x010cbcb83064ff3b, 0x190e0d4e1d0e0e6a, 0x150e0c8700090ccb, 0x0f0e0c59060d0c67, 0xff3cbf2c54ff0c54, 0x0c62140ebc0a7f87, 0xc76dff3b8a18a0ff, 0x060d0c79180e3db0, 0xff3b0cd478ff0c74, 0x0c820007bbf28f4c, 0x69ebff3c2273d7ff, 0x150e0cab180ebb89, 0xc4ff0c98120e0c9d, 0x3aef70c2ffbca600, 0x489cacff0ca6000f, 0x020dbc461c79ffbd, 0xcbff0cb802090cbd, 0xbcd98a7bff3d3d57, 0xf0b4e7ff0cc6c204, 0x1a0ebb8ed838ff3b, 0x8f050cea00090d0a, 0xd3ff0ce000080ce5, 0x3df81fd8ff3d775c, 0xfc0b0b3df99a14ff, 0xde44ff0cf701090c, 0x12bb02c770ff3cac, 0xbce11108ff0d0500, 0x2e000fbcf843ecff, 0x1b00070d201c0e0d, 0x4bffbdae5339ff0d, 0xff0d29020d3ce69e, 0xbeac58ffbc2610da, 0x3b1b0e0d4000083d, 0xb8ffbc8a95dbff0d, 0xff0d491c0e3a9b6f, 0x56e9b0ff3c6bfc1f, 0x9a000f0dde1f0ebc, 0x6cb5040d7a92050d, 0x65a0ff0d6700020d, 0x04bcc8b2a6ff3cba, 0x3dbd2a05ff0d75bd, 0x8c030b3c83a295ff, 0xf34dff0d8700070d, 0x093da2bbe3ff3dfa, 0x3d216e7eff0d9500, 0xbe060d3dc007d3ff, 0xabbc040db0c2040d, 0x62ff3d9e2ba5ff0d, 0xff0db900093c817d, 0xd9c983ffbd25d3b1, 0xcb000c0dd0cd043b, 0xa4ff3c802edaff0d, 0xff0dd900083d3004, 0xdd48cfffbcad65ad, 0x06ba040e26050b3c, 0xf3000f0df8220e0e, 0x32ffbd8220d0ff0d, 0xff0e01b9043c3304, 0x8591fdff3c75a440, 0x1300070e18220ebd, 0xdcffbcd47405ff0e, 0xff0e21bd043c1c4f, 0x2dbd0eff3c35387a, 0x3c00120e4a060dba, 0xafbcff0e37000c0e, 0x023d6c0d41ffb913, 0xbad6aa94ff0e4500, 0x5c00113b86a899ff, 0x0705ff0e5702080e, 0x0ebcab482aff3af8, 0xbd748f24ff0e6523, 0x8a0002bc9402ffff, 0xba90050efe91050f, 0x8c8e050e9a0b0b0e, 0x4b22ff0e87c2040e, 0x043cbafc73ffbc94, 0x3c8236beff0e95c3, 0xac0007bc8ecda3ff, 0x0432ff0ea7060d0e, 0x0bbd7a7378ffbc9c, 0xbd8b4148ff0eb50c, 0xde00093b993f28ff, 0xcb00070ed000080e, 0x08ff3ba1964aff0e, 0xff0ed9050b3d2afd, 0x5f15e7ffbd16a1c1, 0xeb01090ef0060d3d, 0x0bff3c4ab6c3ff0e, 0xff0ef9cd04bd65ef, 0x1f7412ffbdc1c614, 0x2692050f469305bd, 0x13cb040f18200e0f, 0x60ffbbc85222ff0f, 0xff0f21c7043c8f21, 0xf5624bff3c7e99de, 0x3300070f380011bc, 0x49ffbdd484f6ff0f, 0xff0f41c704bd43e5, 0x33fd5dff3c5c3678, 0x5c150e0f6a9405bd, 0xa2daff0f5700070f, 0x0dbd5c6308ffbdb0, 0x3d591b72ff0f6506, 0x7c1d0e3c1fd2f9ff, 0x3cfbff0f77170e0f, 0x123be3be34ffbd37, 0xbdebb76cff0f8500, 0x1a9205bc8ac26bff, 0xb6cd040fd6900510, 0xa3b3040fa8050b0f, 0x47ff3d19bd63ff0f, 0xff0fb18f05bb56f6, 0x732bbaff3c3aa8f4, 0xc301080fc88f053d, 0x64ff3c9b3a72ff0f, 0xff0fd11d0ebddd0f, 0x8db5aaffbbfe2880, 0xec190e0ffa030bbd, 0x7924ff0fe7ba040f, 0x043b8397b7ff3d7b, 0xbd130863ff0ff5c9, 0x0cc8043b238cb4ff, 0x98f2ff1007c40410, 0x05bd649d41ffbcd2, 0xbc4c2ecfff101591, 0x62030bbcf50194ff, 0x34c10410421d0e10, 0x3f32ff102f020d10, 0x09bd6934c0ffbc9a, 0x3c51703bff103d00, 0x54220ebc83d839ff, 0xe8f6ff104fc70410, 0x0ebd2430c2ffbde5, 0xbc72151cff105d2b, 0x8693053ba0f535ff, 0x731d0e1078cd0410, 0x3aff3d259e1cff10, 0xff108101073e0363, 0x932be5ffbb6e028c, 0x93ca04109894053d, 0xc5ff3ca9b208ff10, 0xff10a11d0ebd03a5, 0x78d0f3ff3c2469b5, 0x000008000000133d, 0x000001000003e800, 0x0000000000117e00, 0x7b150e08e58d0500, 0x2cc204023f000604, 0x5cb00400a0bf0401, 0x2e060e003c070e00, 0x7679ff0029050e00, 0x04bc17826affb905, 0x3bc05636ff0037a4, 0x4eae043d1e93f1ff, 0x6a70ff0049550500, 0x0ebb2bb269ff38f8, 0xbbc91159ff00570d, 0x80be043c8f26f1ff, 0x6d8c050072010c00, 0xb8ffba3a496aff00, 0xff007b00123ac7c2, 0x52e92fff3c8eb4ea, 0x8d000700920009bc, 0xe7ff3d4c91b9ff00, 0xff009b01113c8058, 0xf146f2ffbc00cc53, 0xc8000700e80e0ebd, 0xb5010900ba070b00, 0xd6ffbd5684a0ff00, 0xff00c3010cbcd462, 0x85402bff3a9c0dee, 0xd5001100da070e3c, 0x24ffbcc707d8ff00, 0xff00e300023d0707, 0x14d737ffbce725cf, 0xfe0009010c070d39, 0xd5b6ff00f9000200, 0x043cc1e774ff3d54, 0x3c3dfdfdff0107c0, 0x1e0b0bbca8b5e1ff, 0xe462ff0119840501, 0x08bc22ef25ffbd37, 0x3d262a10ff012701, 0xb37605bc954ba8ff, 0x4fc304016f010701, 0x30d8ff0141000701, 0x14ff014a070e3e57, 0x3dd141bbffbd2c86, 0x015c0d0e01610b0b, 0xf428ffbd6dcba6ff, 0xf8ff016a00073c2c, 0x3d036b4bffbccb1e, 0x0185020701937005, 0x4d9b29ff01800208, 0x6a053be94960ff3d, 0xffbcd70da4ff018e, 0x01a5140b3c4735f4, 0xa9c911ff01a00d0e, 0x0002bd380af9ff3b, 0xffbd38bf0aff01ae, 0x01fb7705bcc64211, 0x01cdca0401db0002, 0x1ed2d7ff01c80108, 0x0108bc200c33ffbd, 0xffbdba19d0ff01d6, 0x01ed0108be057b68, 0xdda604ff01e80007, 0x02083db84a96ffbc, 0xff3d1aac92ff01f6, 0x021f01113c1ee54e, 0x020c0d0e02117905, 0xcb42ffbc9c8f86ff, 0x78ff021a0e0e3d26, 0x3bb0a2deffbb4f95, 0x022cc40402310108, 0x37acffba76e076ff, 0xdfff023a000cbc9b, 0x3beb114fffbb6d77, 0x02d30706035f0d06, 0x026f0206028f5a04, 0x025c000c02615504, 0x1c79ffba853b33ff, 0xe3ff026a050dbc0d, 0xbc1f2cc0ffbd252f, 0x027c010e02810c0e, 0x3450ffbb39b79eff, 0x9aff028a0b053b16, 0xbc632ca8ffbb173e, 0x02a5000f02b3020d, 0x2f2447ff02a00f0e, 0x2b05bc05e364ffbd, 0xffbc1385feff02ae, 0x02c5130eb94a21c5, 0x323052ff02c0b604, 0x000cbd99352effbc, 0xff3d23515dff02ce, 0x031b070e3c4d43bf, 0x02ed030e02fb7904, 0x59d4ddff02e8010e, 0x58043b3ad2cbffbb, 0xff3a1a56eeff02f6, 0x030d00023cbc6cdd, 0x544aadff0308b104, 0x0806bd9b1c73ffbc, 0xffbc89971aff0316, 0x033f000fbb8b24a3, 0x032c550403319a04, 0xc6b7ff3a2ae983ff, 0x4dff033a130e3cd8, 0x3c9b7c3aff3b7648, 0x034cb40403510806, 0xaa7affbbea646cff, 0x2aff035aad04bd74, 0x3c45ea16ffb8e57b, 0x03ab110603ef5505, 0x037d0e06038b010e, 0x073f7dff03785004, 0x2e04bc2998b1ffba, 0xffbc17806dff0386, 0x039d000f388a6756, 0xb76280ff0398040d, 0x0f063cba1efbff3b, 0xff3bc13738ff03a6, 0x03cf6404bb302d14, 0x03bc160603c16104, 0xa0d9ffbb8e5a6dff, 0x0eff03ca1206bab7, 0xbc491fd2ffbdb165, 0x03dc000c03e10005, 0x6c15ffbb9de2ccff, 0x34ff03ea0105bcc5, 0x39710e9fffbbe2d3, 0x0417000c04370d0e, 0x0404000f04090008, 0x5325ffbc04da87ff, 0x2fff0412000e3a50, 0x3c037d2dffbb0d62, 0x042401080429000f, 0x9156ffbc89025fff, 0xcdff0432030b3c24, 0xbc6e65eeffbb13e9, 0x044d000f045bbc04, 0x2648b9ff0448000c, 0x6105bdab13d8ffbe, 0xffbc8d6b59ff0456, 0x046d130e39f22b00, 0xc7970cff04686005, 0x000fbd3daab9ff3c, 0xff3d367b4fff0476, 0x06bb010b3bbd91de, 0x0513af04059f0002, 0x04af950404cfa904, 0x049c740504a1040d, 0x2749ffbc0ba807ff, 0x81ff04aa1205bb92, 0xbb81d51cff396bf3, 0x04bc000f04c19604, 0xfde2ff3d2ca494ff, 0x77ff04ca8805bb99, 0x3b44a6f5ffbc0019, 0x04e5ac0404f3000f, 0x0f2deeff04e0300e, 0x00073de590b0ff3b, 0xff3dc67490ff04ee, 0x0505170e3d1b0d2e, 0x7cce24ff0500010c, 0x0007bd639cd6ffbc, 0xff3b8634a5ff050e, 0x055b000cbbe91da5, 0x052d0008053b0007, 0x89083bff05281e05, 0x15063c60e425ff3d, 0xff3c314511ff0536, 0x054d8105bc242bb5, 0x9a4cc3ff05480208, 0x190eb9690098ffbc, 0xffbc18c083ff0556, 0x057f040d3ba65dcc, 0x056c230e05710006, 0x3af9ffbcaec488ff, 0xffff057a24053c40, 0xbe136421ffbd1acc, 0x058c050d05910108, 0xebecffbdbdc444ff, 0x42ff059a000fbbfd, 0xbc5d06f0ffbd787e, 0x05eb1406062f000c, 0x05bd910405cb170e, 0x17000fff05b86d04, 0x94043c1884c5ffbb, 0xffbccd3d08ff05c6, 0x05dd190ebb261286, 0x3fb8fdff05d80008, 0x220ebcbccca7ffbc, 0xff3ae8d829ff05e6, 0x060f000fbbbb6966, 0x05fc040506011005, 0x45b5ff3d207185ff, 0x66ff060abd04bc40, 0x3b5bf426ff3d09cd, 0x061c18060621170e, 0x0847ff39a8d24fff, 0xeeff062a1005bbf6, 0x3aca54ddffbbd681, 0x0657000f06770107, 0x0644190e0649020d, 0xfbc4ff3cb0b5c5ff, 0xaeff06527804bcf5, 0xbd75f5abffbe5f3b, 0x066400080669250e, 0xa062ffbc287e52ff, 0xa5ff06729d04bca1, 0xb8c0f126ffbc4504, 0x068d060d069b220e, 0x133ec0ff0688000f, 0x0012bb7a60cfff3c, 0xffbcb940f4ff0696, 0x06ada004bd3e0f6a, 0xc8a838ff06a82a0e, 0x000fbd82d550ffbc, 0xffbbbc0985ff06b6, 0x07dbca04bce29204, 0x070b040d074f7905, 0x06dd630406eb190e, 0x96ed3aff06d85305, 0x000dbb8eaaccff3a, 0xff3d1a7eafff06e6, 0x06fd7f043c19c545, 0x42fccfff06f87005, 0x1d0ebc980cafffba, 0xffbb6c6e17ff0706, 0x072f070d3b3bd423, 0x071c000f0721bf04, 0x3978ff3b455536ff, 0xbbff072a220eb9e5, 0x3a55c55fffbbdfea, 0x073c900407410008, 0x67d5ffbb9512afff, 0xdeff074a0107bc87, 0x3c1f8ca0ffbabda5, 0x0777140b07978a05, 0x0764020807690109, 0xc813ff3aaf2e6fff, 0xc5ff0772000fbbbe, 0xbbfea8eeffbce258, 0x0784000207897b05, 0xdd5aff3c497476ff, 0xeeff079201113d95, 0xbc90074eff3acaf1, 0x07ad020d07bb000c, 0x6bcf0cff07a80a0b, 0x000fbc225f67ff3d, 0xff3c6567b4ff07b6, 0x07cd00093ac512fb, 0x5e66e7ff07c8070b, 0x180e3c070980ffba, 0xffbd55fc1cff07d6, 0x08590b05baf92bd0, 0x07fe020708150c0b, 0xa49b4bff07f00506, 0x511aff07f90c06bd, 0x06bdd50e3affbdd8, 0xbe12ecf8ff080707, 0x13d399ff0810230e, 0x0406be1f1fe4ffbe, 0x0206082b07050839, 0xff3e35e0f9ff0826, 0x08343301bcb6aef3, 0x60e6ffbd8ba4beff, 0x0506084b0002bd05, 0xffbe2227ffff0846, 0x08540d06be24770f, 0xb8c6ffbc680a1cff, 0x0c0508a10111be07, 0x03060873010c0881, 0xffbdbb7473ff086e, 0x087c1006bd1c59db, 0x718eff3d17c586ff, 0x060d08930007be06, 0xffbaf065b2ff088e, 0x089ccb04bc5a754d, 0xc77eff3c4d9fb3ff, 0xcc0408c5070b3a85, 0x0fff08b2000208b7, 0xbc5a08f4ff3b92c9, 0x9cae12ff08c00108, 0x0b0bbda0a2c7ffbc, 0x01ff08d2380508d7, 0xbb330d1dff3c8b84, 0xb83388ff08e0000c, 0x120e3d0915ccff3b, 0x9b040b05010b0d38, 0x000b098197040a0d, 0x010e091d8404093d, 0xc9ff090a9105090f, 0x3b91bc0fffba98ad, 0x884993ff09189005, 0x000e3c94e93dff3a, 0x72ff092a9605092f, 0x3cf00b49ff3d10ce, 0xaa2ea0ff09389605, 0x90053c34cf83ff3c, 0x0002095300090961, 0xffbbffb3daff094e, 0x095c01123b7b84a8, 0x711bffbbb9f756ff, 0x70040973000fbcf8, 0xffbc992526ff096e, 0x097c000c3c27edac, 0xb18effbaeeb98fff, 0x000809c90002bbf3, 0x0007099b060d09a9, 0xffbc3d88bfff0996, 0x09a40012bd35e795, 0x3ae8ff38f910a0ff, 0x080e09bb01113d18, 0xffbc639c7bff09b6, 0x09c4030e3c35819c, 0xfd6aff3d9ac940ff, 0x000c09ed99043d2e, 0x48ff09da011109df, 0x3bd9d973ff3c6c50, 0x0657f9ff09e80008, 0x01113b765940ff3d, 0xb9ff09fa0b0e09ff, 0x3c9446a6ff3aba37, 0xaca43eff0a08080e, 0x90053d1d06f0ffbd, 0x100e0a47010c0a8b, 0xa7040a2b0d0e0a39, 0xffbc12567eff0a26, 0x0a34aa04bb335d72, 0x8e42ff3c015547ff, 0x24ff0a42a804bbb1, 0xbbc4fec0ffbd8bfc, 0x0a5d8e050a6b0007, 0x077b33ff0a58060d, 0x00023d08e6dcffbc, 0xffbc75ba1cff0a66, 0x0a7d060dbd67d1f4, 0xcb48c8ff0a788e05, 0x070dbd04d806ffbc, 0xff3bb9be6bff0a86, 0x0ad3020d3d63c054, 0x0aa500070ab30009, 0xbc0eccff0aa00008, 0x070ebbadfcd1ff3b, 0xff3a9292c0ff0aae, 0x0ac50d0ebc68f053, 0x520ef0ff0ac09605, 0x0002bbbde66bffbd, 0xffbce8da60ff0ace, 0x0af70e0e3ba72280, 0x0ae4bc040ae9c704, 0xcd8cffbb583644ff, 0x35ff0af200093bd0, 0xbce78571ffbc064f, 0xdc680cff0b000002, 0x000fbb3d9ca0ffbd, 0x040d0b906b040c1c, 0x5c040b3569040b4c, 0x06ff0b224c040b27, 0x3c35a8fbffbc2975, 0x3ba620ff0b306104, 0x000dba008bbcffbd, 0x04bdb2a190ff0b3e, 0xbe3a9b58ff0b476a, 0x705f04be3135eaff, 0x5d5c040b6290050b, 0x18ff3c923ef1ff0b, 0xff0b6b0112bd6758, 0x06efe7ffbc37e15a, 0x7d00090b82000cbe, 0xf0ff3ddd4d19ff0b, 0xff0b8b00023c78ab, 0x84e2d5ff3d816ac0, 0xb800070bd89005bc, 0xa5000c0baa00020b, 0x22ffbce955a5ff0b, 0xff0bb3b3043c85b4, 0xb18985ff3bbcd5ba, 0xc502070bca010ebc, 0x20ffbd8833d1ff0b, 0xff0bd39104bbdcfc, 0x07d2d6ff3c3e5756, 0xee75040bfc7604bc, 0x659cff0be972040b, 0x0b3ceaf9a3ffbcb7, 0xbe2f8438ff0bf703, 0x0e060bbdf6b3f0ff, 0x3681ff0c09020d0c, 0x043b749f7affb840, 0xbc8d5d40ff0c1799, 0xac010cb9892391ff, 0x4800080c6800090c, 0x358f050c3a110e0c, 0xa9ff3a47c2d1ff0c, 0xff0c43ba043a18c4, 0x880ad5ff3c012f38, 0x55060d0c5ac704bc, 0xbcffbb51faf4ff0c, 0xff0c6300123a8f75, 0xf3127cffbb85683c, 0x7e050e0c8c070e3b, 0x86c6ff0c79100b0c, 0x0c3ae6cf79ffbab6, 0xbc0f4788ff0c8700, 0x9e080eba11d821ff, 0x814aff0c99070b0c, 0x0d3c40dfb8ffbb9d, 0x39f8ee82ff0ca706, 0xf4030bbbaea5a1ff, 0xc6070d0cd400110c, 0xeb72ff0cc1c0040c, 0x04bd024bc7ffbc4c, 0x3d2c2ccaff0ccfab, 0xe60009ba6ea410ff, 0x4038ff0ce1c4040c, 0x043cf74829ff3bbf, 0x3b63a7fbff0cefc8, 0x180009bc3fdd80ff, 0x05070d0d0a00120d, 0x00ffb8f13379ff0d, 0xff0d13ca04bce8eb, 0xce37c2ffbbe2c507, 0x25a5040d2a070ebc, 0x66ffbc60f61bff0d, 0xff0d33080e3b643d, 0x4bce10ff3ceb7b81, 0x5c010b0f6f010c3b, 0x8c93050dd0c7040e, 0x5e300e0d6c01080d, 0x8781ff0d592b0e0d, 0x04bd04f996ffbb76, 0x3d136ce5ff0d67c2, 0x7e000fbbbb6e4fff, 0xed08ff0d79ba040d, 0x043d22392eff3dea, 0xbae07cc9ff0d87c2, 0xb0000d3c6d1ac0ff, 0x9d94050da21d0e0d, 0xd4ffbd2ebba8ff0d, 0xff0dab0207bd673d, 0x268a74ffbca645e4, 0xbdc3040dc20112bd, 0x86ffbb85883fff0d, 0xff0dcb1c0e3c8dd8, 0x9ee40fff3c18a393, 0xf8000c0e182b0e3d, 0xe500020dea190e0d, 0x4effbc1fccf3ff0d, 0xff0df31d0eb924c9, 0xe4d19dffbb803080, 0x05260e0e0a95053b, 0x8bffbc09209cff0e, 0xff0e13060dbcf209, 0xa93e98ffbd4f068a, 0x2e020d0e3c00023b, 0x70d0ff0e2993050e, 0x073d6796e5ff3cd3, 0x3e0e4f94ff0e3700, 0x4e90053d8c67bcff, 0x1430ff0e498e050e, 0x073ca931cdffbd56, 0xbb383914ff0e5701, 0xe39c04bd0e9230ff, 0x7f98040e9f130e0e, 0x7580040e7a000d0e, 0xb0ffba8db850ff0e, 0xbd218f40ff3cee41, 0x0e8c030b0e919505, 0x0a93ffbd554274ff, 0x88ff0e9a0007bd8b, 0xbca8c7b8ffbd5847, 0x0eb588040ec39204, 0x64b6b6ff0eb0030b, 0x020bbd38456dffbd, 0xffbbd50ec0ff0ebe, 0x0ed5190ebc839c4b, 0x5602eeff0ed0000f, 0x1d0e3bf79331ff3d, 0xffbc3ccbd7ff0ede, 0x0f2bad043c23c780, 0x0efd000c0f0b9d04, 0x812c9fff0ef8170e, 0x0002bbf42c50ffbc, 0xffbe02e894ff0f06, 0x0f1d130ebe02d2fa, 0xc43292ff0f18060d, 0xac043dbd5340ffbc, 0xff3affa315ff0f26, 0x0f4f170e3c710303, 0x0f3cb5040f41b704, 0xbd91ffbbfdbe95ff, 0x77ff0f4aba04bd8f, 0xbabff21bff3c79c1, 0x0f5cae040f610007, 0xf60bffbc793f99ff, 0x82ff0f6a200e3a91, 0x3b2191ffffbb8d3d, 0x0ffa00091062140e, 0x0f9fc5040fbf0011, 0x0f8c030b0f910002, 0x0999ffbd376522ff, 0x08ff0f9a8f05be2f, 0xbdbc101aff3d429b, 0x0fac070d0fb10107, 0x965bff3d1a83caff, 0x45ff0fba0008bb68, 0xbd61a650ff3c8480, 0x0fccbb040fda8e05, 0xd500023db412c7ff, 0xd2ff3da72878ff0f, 0x0d0fec0b0bbbcf0f, 0x3d89aa41ff0fe706, 0xf5060d3d357098ff, 0x84ff3d8a5705ff0f, 0x05103902093e0369, 0x1110148e05102295, 0xbd4cf690ff100f00, 0x1d8f05bd1402aeff, 0x97ff3c5b1c9fff10, 0x041034060dbc225f, 0xbc9a2e30ff102fcd, 0x85f6ff3bcc9040ff, 0x050b1054cd043e00, 0x00ff104a9105104f, 0x3c0420d0ff3a2a1a, 0x5d9205bcb56350ff, 0xb0ffbd38d4a4ff10, 0x0410f2170ebccee0, 0x04108ebd0410aec0, 0xff107b00021080ba, 0x0e0ce0ff3dd3f6e6, 0xc228ff1089bb043d, 0x0dbc1a48eaff3c4a, 0xff109b8e0510a006, 0x8750bbff3d39970d, 0xf3e6ff10a9010b3d, 0x113c2a2bb0ff3d06, 0x0410c4000910d201, 0xbcbf0011ff10bfcc, 0xcd150ebd52c5edff, 0x02ff3d496ac3ff10, 0x0b10e40008bc2301, 0x3ba43377ff10df03, 0xed8e05bc38fb79ff, 0xf0ffbcbec90cff10, 0x08113a200e3cbe83, 0x0e110c1d0e111a00, 0x3bee34b6ff11071c, 0x15cd04bc35a4dfff, 0xfdff3ca3a422ff11, 0x02112ccb043e137a, 0xbc216fdfff112700, 0x3500073d37a0e0ff, 0x9aff3d6cea16ff11, 0x0e115e0011bb804a, 0xff114b0009115022, 0x680e0bff3dca9176, 0x6b7fff11599405bd, 0x0ebdb7b10effbc8e, 0xff116bcb04117022, 0x76f8caffbd5ddad6, 0x5e50ff1179250e3c, 0x13bb7ee943ff3cf3, 0xe800000008000000, 0x9900000001000003, 0x0500000000000011, 0x040484160e09008d, 0x04012c98040248c3, 0x0d005c6f0400a097, 0x05002e4004003c04, 0xbae171a6ff00295f, 0x37050bbc131987ff, 0xa1ffbaa75ac5ff00, 0x0b004e050d3c0e88, 0xbd7e91e8ff004901, 0x576605bc6e6791ff, 0x05ffb804f2dfff00, 0x0500808c05b9b409, 0xff006d1606007203, 0x3176d4ff3c460f90, 0xf788ff007b080ebc, 0x0f3b5a0659ffbab9, 0xff008d9204009200, 0x262967ffbbc0f7bf, 0x55e5ff009b0a0bbe, 0x0f3ba0156affbb7c, 0x0800c8090600e800, 0xff00b57e0500ba01, 0x086984ff3c353b71, 0x9132ff00c30002bd, 0x0ebb02c8e4ffbd8f, 0xff00d5000200da01, 0x4d96a3ffbcbf301c, 0x88ccff00e3020d3c, 0x0e3d9b0cffff3c97, 0x0e00fe0112010c12, 0x3c7e58b3ff00f907, 0x070002bab78a30ff, 0xc4ffbc905fdaff01, 0x0c011e030bbb27a4, 0x3b35fc1fff011901, 0x27130ebcb967d3ff, 0x4dffbd1cb0dfff01, 0x0401bcb204bc3e4e, 0x0d01580012017899, 0xff0145020e014a07, 0xa16204ff3d2a49db, 0x7257ff0153000cbc, 0x0d3cfed1c8ff3b03, 0xff0165120e016a06, 0x5e8839ff3bd9f4aa, 0xeeb8ff01734505bd, 0x0e3ce900d8ff3db0, 0x04018e060e019c07, 0xbafb3582ff0189b1, 0x97070dbc53e911ff, 0x17ff3c39c2dbff01, 0x0e01ae6b05bd1410, 0x39bc35aeff01a90d, 0xb76c053aead2d2ff, 0xd2ffbca5a111ff01, 0x0f0204070eb9b4a6, 0x0501d6000e01e400, 0xbd6906d0ff01d103, 0xdf030dbc57ec15ff, 0x42ffbbc82965ff01, 0x0401f6070d3bd661, 0xbb11b6a8ff01f1b6, 0xff000c3a809ba2ff, 0xd6ffbcc11a83ff01, 0x0e0228010cbdc3e0, 0xff0215030d021a0b, 0xc4bdc0ffbc1c044c, 0xd08cff022380053b, 0x123a28724fffbb80, 0xff02350e0b023a00, 0x0fa676ff3bf8261b, 0x6381ff02430d0e3d, 0x0e3c2657b7ffbc17, 0x1202dc090e03680b, 0x0e0278c804029800, 0xff02650007026a07, 0xffcb4aff3cac9ff5, 0xe30cff02730209bb, 0x0ebb951485ff3d09, 0xff02850008028a07, 0x19e43aff3c973437, 0x5d1bff02938a05bc, 0x09bcaefbc8ffbd84, 0x0602ae620502bc00, 0xbc66ea2eff02a913, 0xb7080e36bfe8a8ff, 0x7dff3b9cb141ff02, 0x0c02ce060d3d40af, 0x3cbd6082ff02c901, 0xd7c604bcb59460ff, 0xb6ffbcee19b6ff02, 0x0b03240c0bbd2ed0, 0x0402f6c80403040b, 0xbd4ec630ff02f1c4, 0xff17063b06ce85ff, 0x07ff3c05caa1ff02, 0x070316000c3d389d, 0xbd21d92aff031100, 0x1f0007bca44743ff, 0xf1ffbd15d160ff03, 0x060348000cbd74b0, 0xff03350011033a00, 0x24b1d2ff3be59a92, 0x0934ff0343020dbd, 0x0c3ba93be3ffbb44, 0xff03550012035a01, 0x604ff0ff3d1a73b2, 0xf8cdff036313053c, 0x0f3cdbe9c7ff3d79, 0x0c03b4000803f800, 0x060386020d039400, 0xbc620903ff038116, 0x8f25053c4b2e5eff, 0xe3ffbd367189ff03, 0x0603a6040dbc1a61, 0xbc4fc882ff03a10b, 0xaf55053bf46cc6ff, 0xd5ff3d6da707ff03, 0x0603d80107bb8305, 0xff03c5000203ca13, 0xb91685ff3d9650e6, 0x7966ff03d3040d3c, 0x0d3c98c183ff397a, 0xff03e5020803ea04, 0x42d5a4ff3a87ebec, 0x80d4ff03f38705bc, 0x053b4ef843ff3c9c, 0x0504206d0504407f, 0xff040d6405041269, 0x0526bcffbb313c0f, 0x2be9ff041b060dbd, 0x053ca5354effbd3c, 0xff042d750504327e, 0xf2a748ffbcb60ab6, 0x6c90ff043b01123a, 0x053cb075b3ffbcd3, 0x0d04568405046488, 0x3be7a0acff045107, 0x5f030bbce1b309ff, 0xf3ff3befab73ff04, 0x0b04760e0bbc14b8, 0xb946b493ff04710b, 0x7f0d0ebd03f7a6ff, 0xc3ffbbd66fd4ff04, 0x0806c457053c7974, 0x04051cc20405a802, 0x0204b8550504d8c1, 0xff04a5b60404aa00, 0xce5428ffb933ac9b, 0x41d7ff04b32a0e3a, 0x0c39a310c4ff3b15, 0xff04c5a10404ca01, 0x28fe71ff3b084a84, 0x383aff04d33701bc, 0x05bc48dc6eff3c84, 0x0b04ee020704fc24, 0xbaf97246ff04e902, 0xf71f0e3c89e4dbff, 0x2aff3d821d47ff04, 0x0e050e00063e09d8, 0xbc8e1e9cff050923, 0x1700023c4f6e05ff, 0xdbffbd9674f9ff05, 0x050564c3043c4c73, 0x0705361a0505444f, 0xbb57422aff053102, 0x3f4105bdc03f0eff, 0x23ffbd91c70aff05, 0x0605565505bcdaa6, 0x3dde70a2ff055100, 0x5f230ebd102e25ff, 0xa7ff3db87989ff05, 0x120588c404bd03d6, 0xff05750002057a00, 0x926855ffbcf0f3c3, 0x3a37ff058339053d, 0x04bd3819f9ffbe09, 0xff0595000c059ac6, 0xa21664ffb8b588e9, 0xa70fff05a356053c, 0x0c3c30541bffb9e2, 0x0405f4b204063801, 0x0305c6430505d4a9, 0xb9d582e6ff05c125, 0xcf170e3ab31014ff, 0x1fff3c0e3c7bff05, 0x1105e63203bb1977, 0x3ce711baff05e100, 0xef060dbc23643aff, 0xb5ffbbb15ae2ff05, 0x0506180e0b3c371f, 0xff06050b0b060a40, 0xae3d57ff3914a2c2, 0xe049ff0613000cbc, 0x0bbc0b4ba6ff3b15, 0xff06250002062a11, 0xa20e0fffbd216f82, 0x2a0fff06332f033d, 0x053c34061dff3ba7, 0x040660a30406801c, 0xff064d190e065289, 0xd36cffffbba85d1e, 0xe15eff065b0a0339, 0x05bbd355cbffbd15, 0xff066dbc0406720c, 0x62c211ff3c93d747, 0x0e17ff067bad04bc, 0x013b9c25fbffbc59, 0x0d0696170e06a441, 0xbcd2b5faff069107, 0x9f40013d7a7b0dff, 0x29ffb9c5fc5cff06, 0x0b06b621033cbaf7, 0xbcf7c3f4ff06b109, 0xbf230ebda16310ff, 0xffffbca8edb2ff06, 0x0507e41c0ebbef23, 0x040714b20407585b, 0x0406e6960406f4a2, 0xbae91ad3ff06e191, 0xef5a053cf5391fff, 0x57ffbca3e2a5ff06, 0x0d070600113b9171, 0xbc924481ff070107, 0x0f170e3c677d3eff, 0x60ff3d2093b1ff07, 0x050738b3043a6ac2, 0xff07250208072a59, 0x19aa1eff3df5d09f, 0x47afff0733010c3d, 0x04bb9773c6ff3cfa, 0xff0745170e074abc, 0x4276eeff3cc41820, 0x76e7ff07530108bc, 0x053bc23dfeff3d57, 0x0b07800a0b07a05f, 0xff076d0209077203, 0x4d9075ffb9c756d1, 0x1124ff077b180ebd, 0x0139699279ff3c60, 0xff078d7e0407923f, 0xfe4f1cffba0c18ef, 0x004bff079b1a0ebc, 0x073ab79242ff3c48, 0x0e07b6070607c400, 0xbbfced15ff07b117, 0xbfc5043bd96f68ff, 0x38ffbce93402ff07, 0x0b07d601113d1ef9, 0xbb752351ff07d105, 0xdf00023b05f95bff, 0x6bff3c286a6fff07, 0x0c08741d0e3ba9ee, 0x0b0810140b083000, 0xff07fd000f080207, 0xf281d8ffbc2d6374, 0x6684ff080b0b0b3b, 0x083b109fcdffbc2f, 0xff081d0009082200, 0x17688bff3b62a18a, 0x6507ff082b01083d, 0x0bbd56c89effbcc3, 0x040846020d08540a, 0xbd63c711ff084181, 0x4f010cbcdf51daff, 0x35ff3b01a6e2ff08, 0x050866070dbcb068, 0xbd369518ff086180, 0x6f0009bc95a9f0ff, 0x1aff3ddce0edff08, 0x0e08bc86053c29df, 0x04088e1f0e089c2a, 0x3ac8a34fff0889b7, 0x97220e3d246f45ff, 0x0bffbb91d680ff08, 0x0e08ae000d3adcb4, 0x3c828e3bff08a931, 0xb7020dbcc10660ff, 0xc3ff3bec5e58ff08, 0x0b08e02c0eba73a9, 0xff08cd020d08d201, 0x16f3e1ff3c5b1763, 0x13a7ff08db020dbc, 0x0438e6faccff3c64, 0xff08edb70408f2b8, 0x8bb713ffbbd149a2, 0xe716ff08fb87053d, 0x0ebaf5ed69ffbc9e, 0x070b44020d0d410e, 0x0b099cbc040a2800, 0x0409389205095807, 0xff0925000d092a88, 0x0d4541ff3ba4de85, 0x759cff0933a204bc, 0x0e3ae56e25ff3c76, 0xff09459604094a07, 0x46eb1fff3b7b5398, 0x61a1ff09530009bc, 0x04bbd2c2efff3bf4, 0x04096e6f04097c8b, 0x3b48cb5cff09696d, 0x77000dbd96d011ff, 0x7dff3cf3683bff09, 0x11098e020e3b0afd, 0x3b48b5edff098901, 0x9700093d821acbff, 0xc0ffbc68c5c1ff09, 0x0b09e400093cb814, 0x0b09b6000209c405, 0x3c7203daff09b101, 0xbf00083d043185ff, 0xecff3d79559bff09, 0x0b09d600083d1490, 0x3c9de960ff09d107, 0xdfbf043bafe080ff, 0x6fff3bb32b40ff09, 0x040a080002bbc3a3, 0xff09f5bf0409fac7, 0x3b097aff3c9b0f3e, 0x9200ff0a03c9043d, 0x05bcad342cff3a86, 0xff0a15be040a1a94, 0x612ca3ffbb667360, 0x23e9ff0a2395053d, 0x0cbc0d4d6fffbd89, 0x0b0a7401120ab800, 0x020a46000d0a5405, 0x3c438baaff0a4100, 0x4f020e3caf56fcff, 0x4fff3b7c7011ff0a, 0x0b0a660a0bbcd0ee, 0xbad2e5a4ff0a6106, 0x6f9004bc6ae0c0ff, 0xb8ffbbe83f93ff0a, 0x040a989004bd5ce4, 0xff0a8575040a8a7f, 0x8fef95ffbc0b0eca, 0xe64fff0a9392053c, 0x0ebd02ea7aff3c03, 0xff0aa5030b0aaa02, 0xcb5a51ff3d01e5bc, 0x30e5ff0ab39a043d, 0x04bb92a1a1ff3d0b, 0x040ae0030b0b00a7, 0xff0acd51040ad277, 0x6b37fbff3d369db8, 0x5c50ff0adb000d3c, 0x07bc715814ff3c1d, 0xff0aed0a0b0af201, 0xb42070ffbd3f0129, 0xce0eff0afb0002bc, 0x0ebcd73ec9ff3c4e, 0x080b16b3040b2407, 0xbcc3844aff0b1101, 0x1f02083cb10bb3ff, 0xe0ff3a9dd797ff0b, 0x070b36a904bcda6b, 0x3ce8b4ccff0b3101, 0x3f010b3cb13740ff, 0x7dffbc92fc72ff0b, 0x040c6400113b61fe, 0x0b0b94000c0bd8bd, 0x0e0b660a0b0b740b, 0x3ba5e0fcff0b6100, 0x6f060ebb3cc6feff, 0x3eff3a9397d3ff0b, 0x080b868e053c0914, 0xbc3afdf6ff0b8100, 0x8f91053bc6d6eaff, 0x3bff3a9078daff0b, 0x0d0bb89505bb72d6, 0xff0ba5080e0baa07, 0x9692f0ffba8c8db7, 0x150aff0bb3b7043c, 0x0c3d1c7cbbff3bf7, 0xff0bc5010e0bca01, 0x4d16c5ffbc53f664, 0xfc6fff0bd3b304bd, 0x04bd280997ffbd49, 0x0e0c0000020c20c1, 0xff0bed00090bf208, 0xc829c9ffbd3281dc, 0x12ecff0bfb0d0eb8, 0x0ebcb17213ff3d44, 0xff0c0d050e0c1207, 0x44c296ffbbdb730b, 0x725bff0c1bbe04bd, 0x0e3ad2e96effbce7, 0x0e0c36050e0c4406, 0x3aee0630ff0c3101, 0x3f0009bb17b5caff, 0x69ffbc70eb70ff0c, 0x080c56010c3d5cc0, 0x3a6b582eff0c5101, 0x5fc304bbaf91e6ff, 0x7dff3d0fcc92ff0c, 0x040cb563043b6077, 0xbe01a4b8ff0c7144, 0x0c875e040c955f04, 0x0edcdaff0c829005, 0x0111bc297514ff3b, 0xffbc11eeaaff0c90, 0x0ca70112bdbb3078, 0x858a13ff0ca2000e, 0x000c3bafd764ffbb, 0xff3d8d301eff0cb0, 0x0cfdbb04bbf1bb86, 0x0ccfab040cdd9305, 0x32a836ff0cca0007, 0x0009bb856ef1ff3b, 0xffbb59c04cff0cd8, 0x0cefa3043a2aae4b, 0xf39ffeff0cea000c, 0x090ebcb1e487ffb8, 0xffbad028e8ff0cf8, 0x0d21140bbb9e1ada, 0x0d0e060d0d13ca04, 0xfd83ff3a527b83ff, 0x2eff0d1c00073bfd, 0x3be97911ffbc3e2b, 0x0d2eca040d33090e, 0xcc14ff3bca2821ff, 0x59ff0d3c0b0e3ce0, 0xbb9a8081ffbca9d1, 0x0e65070d0f5d000c, 0x0d9500080dd90b0b, 0x0d6700020d758e05, 0x0d388bff0d62060d, 0x070b3c31fc19ffbc, 0xffbb690a91ff0d70, 0x0d87130e3c8c1704, 0x2e6012ff0d82020d, 0x2b0e3a947b81ffbc, 0xff395849f9ff0d90, 0x0db9cb043ac1255c, 0x0da6190e0dab0007, 0x0d75ff3b8217faff, 0x7cff0db4060dbaa2, 0x3bc6e122ffbbad12, 0x0dc6060d0dcbcd04, 0x8000ffbb088efdff, 0xa6ff0dd42b0ebc3d, 0x3c5611e7ff3a3d7e, 0x0e0100020e210009, 0x0deec9040df38f05, 0x05b8ffbc615febff, 0x0aff0dfc91053b92, 0xb9766e76ff3c7365, 0x0e0ecd040e130f0b, 0xb952ffbc89ea90ff, 0xaaff0e1c0107bd58, 0x3c24af3dffbb4a66, 0x0e3700020e450e0b, 0xe38ea0ff0e32bb04, 0x01093d55a7cbffbb, 0xffbb92b42eff0e40, 0x0e5701093c4aa063, 0x8bbfeaff0e528f05, 0x140ebc643de8ffbb, 0xffbc4021e2ff0e60, 0x0edabe04b92f8620, 0x0e8890050e9f130e, 0x83edc8ff0e7ab204, 0x56dbff0e83bb043d, 0x043d7ac570ff3da2, 0x3db9e020ff0e91b5, 0xb71920ff0e9ab804, 0xbb043da58d40ff3d, 0x170e0eb5b8040ec3, 0xff3aa4bd80ff0eb0, 0x0ebe8e05bbafa770, 0x3320ffbc317483ff, 0x8f050ed50002bbd8, 0xff3acced80ff0ed0, 0xff16f8ffba003a40, 0x02030b0f19c1043b, 0xef170e0ef400070f, 0xe5ffbcef82abff0e, 0xff0efd140ebd259e, 0xc8bcc9ff3c231008, 0x7ac8ff0f0b140ebc, 0x0cff0f14090bbc6c, 0xbd913accffbd52d3, 0x0f2f1f0e0f3d0011, 0x073703ff0f2a090b, 0xcb04ba80bf77ff3c, 0xffbca65987ff0f38, 0x0f4f030b3b8d9a00, 0x93586cff0f4ac404, 0x9305bcd0cf18ffbc, 0xffbd881836ff0f58, 0x107d250ebd50ce50, 0x0fad220e0ff1c404, 0x0f7f040b0f8d200e, 0x266a05ff0f7a060d, 0xc3043c7d5a0fffbb, 0xff3b96c5e5ff0f88, 0x0f9f020dbc4619b1, 0x2b9cfcff0f9a0009, 0xbe04bd667e65ff3c, 0xffbdaed0b3ff0fa8, 0x0fd1000fbc6bab00, 0x0fbe00070fc3030b, 0xbb91ff3d43320fff, 0x0cff0fcc00023c59, 0x3c83fa89ffbc483b, 0x0fde00070fe3070b, 0x3fbeffbbab5f8cff, 0x3fff0fec0b0bbcea, 0xbcc845a8ff3d3624, 0x10191c0e10391d0e, 0x1006140e100b180e, 0x8babff3b7cc921ff, 0xc3ff10140009bbea, 0xbbdc20baff3c64df, 0x10260b0b102b0008, 0xa16affbc4e4257ff, 0xf7ff10340b0b3b32, 0xbd38f123ffbc661c, 0x104f0111105d230e, 0x3fcd66ff104a0b0b, 0x1f0ebbacbfd0ff3c, 0xff3d775d7cff1058, 0x106f060dbc7dd8a3, 0x071806ff106a000f, 0x91053d44a4efff3e, 0xffbd375632ff1078, 0x110dba04bbdbf234, 0x10a9010b10c92a0e, 0x1096280e109b0002, 0x7fc0ff3e39a171ff, 0x5bff10a4260ebb6a, 0xbd1ef4f0ffbdb688, 0x10b6000210bb030b, 0xf0deffbddfb5a8ff, 0xbdff10c40002bd76, 0xbdd0afc6ffbcfb64, 0x10dfb50410edb904, 0xe266ebff10da010b, 0x010bbd6d3fa0ff3c, 0xff3ddd7e09ff10e8, 0x10ff2d0e3db0b720, 0x075becff10fa0002, 0x0002bdec6ad8ffbe, 0xffba8ae800ff1108, 0x1155920539a7c200, 0x112790051135bd04, 0xbba3f8ff1122000d, 0x2a0e3d44acb0ffbc, 0xffbe040cecff1130, 0x1147260e3d52a41c, 0x278c19ff1142cd04, 0x91053dd67cddffbd, 0xffbb8c97eeff1150, 0x1179280e3bb767ef, 0x1166000f116b0008, 0xe2d0ff3d88de13ff, 0x84ff11740b0b3c03, 0x3e2b3db6ff3de8b4, 0x1186c204118b2b0e, 0x061fff3d8e1051ff, 0x4eff11942f0ebc9b, 0xbc390e7fff3d29ba, 0x0000000800000013, 0x00000001000003e8, 0x0000000000001016, 0x040f160e088b8d05, 0x012caf0402481906, 0x005c5b0400a08505, 0x002e3d04003c5304, 0x579e1aff00290008, 0x0211b92a6708ffba, 0xff3a2975ceff0037, 0x004e010b3c6c3092, 0xcc0835ff00495a04, 0x07063c0125a8ffbb, 0xff39f7a8f5ff0057, 0x0080030b3be449d4, 0x006d030500729004, 0x397effba0c8e50ff, 0xf8ff007b0109bb25, 0xbc3db539ffba0af1, 0x008d5c050092ae04, 0x6520ff3afc3063ff, 0x4dff009b070d3983, 0xbca9bd9dff3c22a1, 0x00c8020d00e89704, 0x00b57f0400ba9604, 0xbdacffbc0c242dff, 0xf4ff00c3070e3c20, 0x3d634a9cffbe0c48, 0x00d5070e00da080e, 0xfe83ff3a0e3fceff, 0x66ff00e3000fbc27, 0x3b8296cbff3d01ab, 0x00fe0009010c010c, 0x1ab45eff00f9000c, 0x020d3a6c4f7fffba, 0xff3ca558fcff0107, 0x011e070ebaee3ee2, 0x796a25ff01190008, 0x0012bc85768dff3c, 0xffbd31ac6aff0127, 0x01bc02083b930dd6, 0x0158bd0401780008, 0x0145b204014a0d0e, 0xdb50ff3b8e9088ff, 0x6aff0153010cbb7b, 0x3c49c41bffbb3001, 0x0165030d016a0209, 0xcbe9ffbb42af9bff, 0xd3ff0173060d3b4c, 0xbc831c04ffbb9185, 0x018e7805019c150e, 0x27b11dff01890207, 0xb604bbc1a308ff3b, 0xffba782094ff0197, 0x01ae01083b2fe479, 0xc19da4ff01a9b404, 0x010cbb97248bff3c, 0xff3c08a929ff01b7, 0x020401073dbf6000, 0x01d66b0501e47005, 0x8f3aebff01d1060d, 0x060dbc647b4fff3a, 0xff3cd6ccc1ff01df, 0x01f60b0ebcc28be3, 0x1edcc0ff01f1070e, 0x060dbcc1ecc4ff3b, 0xff3cb064e8ff01ff, 0x02280002baef80bd, 0x0215090e021a0d0e, 0x79e0ffbc98264fff, 0xeeff0223070dbb82, 0x3bd36384ffbd117f, 0x02351006023a040b, 0x9335ffbbf11839ff, 0x73ff0243000fbc93, 0xbb382d03ffbc60aa, 0x02dc0008034d0f0e, 0x02789a0402980905, 0x0265040d026a010e, 0x579bff3c1b4e3bff, 0x0dff0273000738b4, 0xbcceefabffbb60ca, 0x0285090e028a000f, 0x5032ffbd3f1806ff, 0xcbff0293a7043b3f, 0xbb3ec0a6ff3c349f, 0x02ae190502bc030e, 0x8edf55ff02a9000f, 0xbf043a602040ffbc, 0xff3bc556f9ff02b7, 0x02ce000fba0c94e1, 0x8de46aff02c90007, 0x070bbc05a1faff3c, 0xffb9d41746ff02d7, 0x03090105bc257cf7, 0x02f6000f0304050e, 0x3c0d1eff02f18b04, 0x030bbcde80b2ff3b, 0xff3bc185ddff02ff, 0xee0368ff3a58a542, 0x1f0208032d01073d, 0xce88ff031a030e03, 0x0f3beba1e6ffba2f, 0x3cb88fe2ff032800, 0x3f000f3a9ea68cff, 0xe0ceff033a030503, 0x0e3ca9da81ff3b21, 0x39d53aefff034801, 0x9ec3043b4c6996ff, 0x5e00070375000b03, 0x01073c8a3790ff03, 0x07bb902315ff0367, 0xbc971d30ff037002, 0x99070bbbaf5035ff, 0x862505038b110e03, 0x0cff3a82296bff03, 0xff039402073ce343, 0x1c7b3dff3cd43df9, 0xc604bbc0552bff3d, 0x290503b4000703cb, 0xff3c914f3bff03af, 0x03c618053c427cb0, 0x85f4d5ff03c11005, 0xebffbb86ba95ffbb, 0x0703ef01073b9632, 0xff03dcc80403e100, 0xf9ec00ffbbd50000, 0xc420ff03ea110ebb, 0x04bb78e1abffbbf9, 0xff03fc10050401c8, 0x14af40ff3c1dc8d0, 0x07abff040a02073b, 0x05bb738e00ffbb9e, 0x0505331106064f57, 0x010463c00404a74a, 0x010435560404433e, 0xb9095b85ff04303b, 0x3eb0043a96f0b1ff, 0xd2ff3a36216bff04, 0x0504550107bbbc26, 0xba12f0a0ff045045, 0x5e1e0ebc2ae658ff, 0x4effbae4f21cff04, 0x03048702083b0fb4, 0xff0474300e047933, 0xf56054ffbda0d47d, 0xe3ecff04820112bb, 0x0dbb14a695ff3bd2, 0xff0494140b049907, 0x16ff13ffbc2ba3f7, 0x9485ff04a20d0bba, 0x0d3d30d1ddff3c26, 0x0504cf070604ef07, 0xff04bc0b0b04c153, 0x0fa2f8ff3b0086f6, 0xcff2ff04ca38013a, 0x0ebb9ed308ff3ab0, 0xff04dc1d0e04e121, 0xd226aeffbb08d8af, 0x39f9ff04ea000c3c, 0x05bb1fe944ffbcc1, 0x070505030b05134b, 0xbba35101ff050002, 0x0e0007bd39fa45ff, 0x38ffbd18c01fff05, 0x0105250e0bbdcd45, 0xbc6ac2e3ff052041, 0x2e170e3b97d71aff, 0x8cffbd6e8448ff05, 0x0505c3070bbc08dd, 0x01055f6304057f03, 0xff054c6104055136, 0x665123ffbb03eef5, 0xa92eff055a02073c, 0x0f3d134b98ff3c0a, 0xff056c030b057100, 0x03229dffbce395c3, 0x7f72ff057a12063e, 0x013c916e7cff3b4e, 0x0b0595020d05a341, 0x3a32f5e5ff059001, 0x9e6f043d473622ff, 0xbbffbd42acf9ff05, 0x0405b511053d92ec, 0xbc92fd2bff05b073, 0xbe000f3b9faa82ff, 0x89ffbc10a020ff05, 0x0e060bb5043ba75f, 0x0605dd1a0e05eb29, 0x3c1a6a75ff05d812, 0xe68b04bbba7026ff, 0x57ff3bdc9a6cff05, 0x0405fd0605bc5c21, 0x3c9cf851ff05f86f, 0x069b04bc3da87dff, 0xa3ffbd9c2f3cff06, 0x0d062fb604bcdfa4, 0xff061c0008062102, 0x2e4a41ff3c5d6fe3, 0x5d52ff062a07053d, 0x023b8f629cff3cf9, 0xff063c000c064100, 0x0b6bc1ffbb9640e0, 0x48daff064a010c3c, 0x0e3bd9271effbb8d, 0x0406e35b05076f1c, 0x0b067f5805069fb2, 0xff066c011106710a, 0x1adbeeffbc71b4e7, 0x8c7eff067ab1043c, 0x043e0124a5ff3c56, 0xff068c88040691a6, 0x51ff2dffbb9d3a53, 0x8abbff069aa7043b, 0x043b5730deffbd0f, 0x1106b5590506c3b3, 0x3d14778dff06b000, 0xbe01073de001d7ff, 0xabffbceb9f33ff06, 0x0406d5bb043ce764, 0xbc283c4bff06d0ba, 0xde0108bda21132ff, 0x06ff3d3b9604ff06, 0x04072b5e053c099b, 0x0406fd0008070bb7, 0xba6b994fff06f8b5, 0x06b3043dcc522aff, 0x0cff3c146258ff07, 0x08071d5c053d2aea, 0xbdae4759ff071800, 0x26c104bc0c5982ff, 0x58ff3c837b50ff07, 0x09074f100bbc591b, 0xff073c050b074102, 0x1b5080ffbaa1b590, 0x2152ff074a000f3b, 0x0ebc4a551cffbd19, 0xff075c000c076118, 0x827444ff3a41e81e, 0xb715ff076a010cbc, 0x0e3d46e6a4ff3bdd, 0x0c07bb140b07ff1e, 0x0f078d050b079b00, 0xbc513e50ff078800, 0x96000f3c018de5ff, 0xe7ff3b942c7dff07, 0x0907ad070dbbbd39, 0xbcaf9aaeff07a800, 0xb6ac043d093e67ff, 0x50ff3c1f80c7ff07, 0x0c07df00083d4844, 0xff07cc000c07d101, 0x57a371ff3b1348e8, 0x94beff07da0107bc, 0x0cbd76bc1cffbcb8, 0xff07ec010807f100, 0x39640effbcb10e04, 0xfa35ff07fa8505bd, 0x05bd3f34e5ffbda8, 0x0d08278305084788, 0xff0814130b081907, 0x2855ddff39f2d131, 0x7b0dff0822080b3b, 0x02bcb4fc2affbba0, 0xff0834010c083900, 0x168db3ff398ba982, 0x89d7ff08420a0bbb, 0x0e3c20c301ffbbcb, 0x0e085dcb04086b25, 0x3c9b0fdcff085820, 0x660002bad82fd1ff, 0x27ffbc2faac3ff08, 0x0e087d000f3c9901, 0xbd7483e8ff087826, 0x86260e3aa45625ff, 0x77ff3c64b47eff08, 0x040bd0130ebadae6, 0x0409a10a0e09a663, 0x0408da4b04091552, 0x0408b5020d08c340, 0x3d0193bcff08b020, 0xbe040d3c68e2caff, 0x54ffbc4e9d13ff08, 0x1208d5000ebc1a5b, 0x3bc43c68ff08d001, 0x441bffbcbf1056ff, 0x000c08fe000dbd9e, 0xa2ff08eb001108f0, 0x3bfce1afff3c88f8, 0xf9f49cff08f9070b, 0x000e3adac280ff3c, 0x9eff090b01110910, 0x3c2ac010ffb99e3c, 0x5d6104be5d688bff, 0x2f5a04093d5e0409, 0x2106ff092a000c09, 0x0fbd1c1e1affbb17, 0x3c6dbd62ff093800, 0x4f020dbae2da0aff, 0x1479ff094a000e09, 0x04bc985fd0ffbd39, 0xbd15cc72ff09585f, 0x81000e3ca3e111ff, 0x6e01070973930509, 0x30ffba38c3f6ff09, 0xff097c030bbc6efe, 0xd78279ffbb8ab2d5, 0x8e000c099301113c, 0x18ff3bc7ffbcff09, 0xff099c8f05bbafad, 0x09777cff3d1c207e, 0x0112bd744160ff3e, 0x93050a3a0d0e0ac6, 0x0b0e09d6cc0409f6, 0x39ff09c30a0e09c8, 0xbcb51327ff3a0c08, 0x4375a5ff09d1ab04, 0x060dba690af8ff3c, 0xa7ff09e3000809e8, 0xbd03c894ffbbf434, 0xba9dcaff09f1080e, 0x060d3ced83a2ffbb, 0x000c0a0c0b0b0a1a, 0xffbae7b8b3ff0a07, 0x0a15c204bc1db37f, 0x0acbffbb15aff8ff, 0x080e0a2cc9043be7, 0xff3949d20eff0a27, 0x0a350009ba813095, 0x9f4affbc00ddf6ff, 0xb8040a82c0043b85, 0xb7040a54120e0a62, 0xff3ad44ad5ff0a4f, 0x0a5d050b3ceed88e, 0x28abffbc89b818ff, 0x00090a74bc04bd5c, 0xffbc66de1dff0a6f, 0x0a7dbf043b2e130b, 0x941dff3c827c2cff, 0x91050aa6cc04bcdb, 0x5eff0a930e0b0a98, 0x3bd73cfaffbb570e, 0xb93569ff0aa1cb04, 0x8e053c71a3f0ff3b, 0x5eff0ab300090ab8, 0x3a846400ffbd90c5, 0x3dc817ff0ac10e0e, 0x7604bd000da1ffbb, 0x030d0b1275040b44, 0x020d0ae466040af2, 0xff3d3a6f50ff0adf, 0x0aed010bbd536330, 0x39a3ffbd38abe1ff, 0x6f040b047204bc1e, 0xff3cb78e5aff0aff, 0x0b0d000ebd4e900b, 0xdd9fff3d15d953ff, 0x000e0b2d00023dd8, 0xeaff0b23030b0b28, 0xbde2073affbe1c57, 0x3f030ebd7e0350ff, 0xd040ff0b3a00090b, 0xffbc95c060ff3bd0, 0x0b8c070b3d058648, 0x0b5e00070b6c0209, 0xc26cb2ff0b59ca04, 0x030bbd857c45ff3b, 0xffb9bf6ea9ff0b67, 0x0b7eb104bbd3a449, 0x23f997ff0b79010d, 0x8e053a4a1295ffbd, 0xffbd67237aff0b87, 0x0bb0b304bc480010, 0x0b9d000c0ba20009, 0xd1c9ffba39e0dbff, 0xe1ff0bab0d0ebc3e, 0x3dd52894ff3b3f06, 0x0bbd060d0bc2c104, 0x37caff3c228b88ff, 0xb9ff0bcb070ebd53, 0xbba22439ff3bcd85, 0x0cf400090e100007, 0x0c24020d0c68000f, 0x0bf6030b0c042b0e, 0x330cc9ff0bf12a0e, 0xc9043d5dae1eff3c, 0xff3b598d5cff0bff, 0x0c16310ebc9651fb, 0x90773aff0c112d0e, 0x350ebbc5725dffbd, 0xff3c54d63cff0c1f, 0x0c482b0ebd6125ad, 0x0c35170e0c3a1f0e, 0x25b4ffbcba4a47ff, 0xc5ff0c43220e3caa, 0xbc3704edffbd8cf6, 0x0c55070b0c5a2c0e, 0xbd52ff3e2e50d8ff, 0x2aff0c632f0e3dc8, 0x3b0615efff3d746c, 0x0c90230e0cb00002, 0x0c7d8e050c828f05, 0x159cff3a9f9645ff, 0xc7ff0c8b0208bc56, 0xbc938cf5ff3b78ac, 0x0c9d030b0ca22a0e, 0x4f30ffbbc12ec0ff, 0xcfff0cab070bbce2, 0xbbc9b957ff3beafe, 0x0cc690050cd40b0b, 0x14be18ff0cc1cd04, 0x000cbcc45ce2ff3c, 0xffb93c339fff0ccf, 0x0ce68f053b4d0312, 0xe86d7aff0ce1c604, 0xcb043cb202feff3a, 0xffbc102eddff0cef, 0x0d84020d39bc8f65, 0x0d20170e0d401f0e, 0x0d0d93050d12140e, 0xc96bff3c7ff866ff, 0xf8ff0d1b030b3d6c, 0x3c783bf4ffbd33f0, 0x0d2d190e0d329205, 0xeb2dff3ccec16fff, 0x40ff0d3b190ebd2c, 0x3db43b67ff3d1e4f, 0x0d56bc040d64220e, 0xda8d75ff0d510109, 0xc004bd1c6780ffbd, 0xff3c889f23ff0d5f, 0x0d76bd04bd8c5d4f, 0xa0fe43ff0d710002, 0x2b0e3c74d09cff3d, 0xffbc3932a1ff0d7f, 0x0dcc2b0e3c83a0be, 0x0d9e000c0dacba04, 0xcba372ff0d990111, 0x170e3c5632deffba, 0xffbdaa01e6ff0da7, 0x0dbe01113be7b6d5, 0xb6d107ff0db9cb04, 0x140ebc127617ffba, 0xff3d67152eff0dc7, 0x0df0c804bc1c22df, 0x0dddc7040de22c0e, 0xcfc0ff3dd86f68ff, 0x04ff0deb01123dc7, 0x3d2af4b0ff3b1f64, 0x0dfd01120e022f0e, 0x56daffba5773f5ff, 0xefff0e0b030bbd3f, 0x3bd6deddff3ce23c, 0x0ea4c9040f270002, 0x0e40140e0e60070b, 0x0e2d060d0e32c304, 0x3746ffbce72321ff, 0xd2ff0e3b8f053bf0, 0xbd3c6e44ffbd9697, 0x0e4dc6040e52c804, 0xfe5dff39999d0aff, 0xd1ff0e5b000f3c8b, 0xbc50e8b8ff3b520e, 0x0e76140e0e84240e, 0x34773eff0e71c104, 0x8f05bd4643dbff3d, 0xffbc587360ff0e7f, 0x0e962a0ebb849590, 0xec939eff0e91c804, 0xc004bd68fe44ffbc, 0xffbd2b3564ff0e9f, 0x0ee3140e3c698b8c, 0x0ebe8e050ecc070d, 0x3b7f20ff0eb90b0b, 0x0b0b3dabb984ff3d, 0xff3d96b128ff0ec7, 0x0ede010c3e211680, 0x604c80ff0ed90008, 0x80ff3c898000ff3c, 0x050f070108bbc4ff, 0xff0ef48e050ef98f, 0x2aab05ff3c7d8610, 0x5e36ff0f029105bc, 0x0c3b554a62ff3c75, 0xff0f14050b0f1901, 0x50ff51ffbcaaa250, 0x3d10ff0f220012bb, 0x08bcd505e0ffbd66, 0x0e0f730b0b0fb702, 0x040f45000d0f5315, 0xbd4c8ab3ff0f4088, 0x4e000f3d418d00ff, 0x0affbd13741aff0f, 0x080f650112bbd758, 0xbae37eefff0f6001, 0x6ec804bbeb52c4ff, 0x5cff3abe7f39ff0f, 0x0c0f97110b3bd6d5, 0xff0f84cd040f8900, 0x6a05daffbc7f14ab, 0xc7e8ff0f92ca04bd, 0x07bdcdb109ffbd2a, 0xff0fa41f0e0fa901, 0xac7142ffbbf51edc, 0x0073ff0fb2280e3b, 0x12bcdd3f52ff3c26, 0x050fd6140e0fed00, 0xff0fcc0b0b0fd190, 0xf64b60ff3af6b640, 0x8e05bc9878beffbb, 0x0ebd5326aaff0fdf, 0xbd191905ff0fe823, 0x08000cbc6c6178ff, 0xfe170e10032b0e10, 0x38ff3a75b5b9ff0f, 0x3ccc03b0ffbc45f7, 0xbba4e0ff1011c904, 0x00133ca802f8ff3c, 0x03e8000000080000, 0x10e5000000010000, 0x8d05000000000000, 0x1906039a160e0816, 0x8505012caf040248, 0x5304005c5b0400a0, 0x0006002e3d04003c, 0xffb9daf3a0ff0029, 0x00370211bad349dd, 0x921cff3a1883b9ff, 0x4f05004e010b3c54, 0xff3a73bbe9ff0049, 0x00570b06bbe2e02a, 0xda83ff39ef79efff, 0xae04008002113c0a, 0x01ff006d11060072, 0x37094752ff39ce7f, 0x4fa003ff007b0e0e, 0x0b053cad09c2ffbb, 0x2eff008d02080092, 0xbd204e1fff3d75d0, 0x343be1ff009b0107, 0x9704bcb9e780ff3c, 0x940400c8020d00e8, 0x65ff00b5070e00ba, 0xbc2c5b37ff3c1165, 0xf6ebd6ff00c3070e, 0x080e3d1fc35cffbd, 0x4cff00d5070e00da, 0xbc1731eeff3a0006, 0xe967b0ff00e3000f, 0x010c3b6b0f62ff3c, 0x000c00fe0009010c, 0xffba0b3c2fff00f9, 0x0107070e3a54adde, 0x57bdffbbf29f62ff, 0x070e011e01083bc8, 0xff3c2afd96ff0119, 0x0127ae04bbae41d9, 0x7c4affbd252b16ff, 0x880501bc02083d4f, 0x060d015802070178, 0x55ff01450c06014a, 0x3937ecbfffbb30e2, 0x0ddf3dff01530011, 0x0108bb9047f9ff3c, 0x07ff01656805016a, 0xbba342d4ff3b8b5d, 0x954890ff01730002, 0xb404bbebff04ffbc, 0x090b018e8905019c, 0xffbb0f4751ff0189, 0x0197b004bcd3646c, 0xa65eff3c56f20bff, 0x890501ae120e3a45, 0xffbb32b132ff01a9, 0x01b7000c3b4eec0c, 0x3369ffbbc908ffff, 0x6605020401073c9e, 0xbd0401d60b0601e4, 0xffbc389986ff01d1, 0x01df0f063c842cc6, 0xc2daff3bdc8c2cff, 0x0a0e01f60b0eba35, 0xff39ec88e7ff01f1, 0x01ff060dbd5b71c4, 0x3ad3ff3cb65f36ff, 0xb0040228020bbb6c, 0x1aff0215080e021a, 0xbd4220c2ffbe102b, 0x14d7e7ff0223030d, 0x000fbc9ca4e3ffbd, 0xc1ff02354505023a, 0x3c1dcc52ffbc8e64, 0x665bc6ff02430011, 0x130ebb4e65f8ffbc, 0x070e02dc02070368, 0x2605027800080298, 0x1eff0265000f026a, 0xb8f10441ffbc0ac7, 0x43b352ff02733205, 0x0a053a2e6df9ff3c, 0x68ff0285000f028a, 0x3a7c1b74ffbbfc26, 0xff4ad4ff0293000f, 0x040539d2cc55ff3b, 0x020d02ae010b02bc, 0xff3a874a29ff02a9, 0x02b70f0e3cf0e2ff, 0x9115ffbc910fccff, 0x020d02cebe043b6f, 0xff3bc152a5ff02c9, 0x02d7000b3cec1813, 0x0212ffbcd42babff, 0x00020324000f3b0b, 0x000b02f6040e0304, 0xffbd1c8ef3ff02f1, 0x02ffc204bbcef831, 0x7ddaff3cc77271ff, 0x01050316000eba92, 0xffbc26e444ff0311, 0x031fb3043c25e9d4, 0x956cff3c81bccbff, 0x0008034897043d1c, 0x45ff0335000e033a, 0x3b61633bff3bb631, 0x5b9fe7ff0343020d, 0x010e3c0ad853ff3c, 0x12ff03550005035a, 0x39de5ad1ff3bc802, 0xe9871dff0363010c, 0xbf04bb9a9530ff3b, 0x0007037e19050383, 0xff3c089218ff0379, 0xea2a44ff3c3a13b8, 0xc33cff038c07053c, 0xe4ff039500073cf9, 0x3cbcc7c8ff3ceffc, 0x04be020805da5705, 0x03eec1040432c204, 0x03c0000203ce5505, 0x276cc9ff03bbb604, 0x2a0e3abd06cdffb9, 0xff3b07e67dff03c9, 0x03e0010c394720a4, 0x944484ff03db0112, 0xbd043c27bb27ffbb, 0xffbbf3d8aeff03e9, 0x04122405bd39789f, 0x03ff020b04040207, 0x54cfffbafea386ff, 0x3aff040d17063c79, 0x3d6835c2ff3df71f, 0x041f550504240006, 0x77baff3c5da838ff, 0x57ff042d0002bc0c, 0x3c36be88ffbd874e, 0x045a4f05047ac304, 0x04470207044c1a05, 0xab6fffbb4c4f00ff, 0xfdff04553705bdac, 0xbcf0c12dffbd9688, 0x04670006046c5505, 0x533dff3dc8aefaff, 0x19ff0475230ebd03, 0xbce956b3ff3da705, 0x04900011049ec404, 0xda8108ff048b0002, 0x39053d832971ffbc, 0xffbdf67016ff0499, 0x04b0c604bd2604ec, 0xab13bfff04ab0c06, 0x56053b9a6356ff3c, 0xffb9663aa8ff04b9, 0x054e010c3c26b644, 0x04ea4c05050ab604, 0x04d70a0304dc7f04, 0xe7a0ffbad96923ff, 0x93ff04e52e033b2a, 0x3b18a1bbffbbc898, 0x04f7000704fc180e, 0x0bc9ffbbfd9a33ff, 0xdfff0505b5043cad, 0x3cf0629affbb2e33, 0x0520220e052ebb04, 0x138c3aff051b0006, 0x2e0ebc95a49eff3d, 0xffbc8de9fdff0529, 0x05400111baab6e58, 0x1b205cff053bc204, 0x0406bb8cfb69ff3c, 0xffbc5ce5b1ff0549, 0x05961c053a16f5f0, 0x0568b9040576bc04, 0x0d4b08ff05633b01, 0x07063b770510ffbb, 0xff3d1b0bd2ff0571, 0x0588c704bae7fbdd, 0x3ea3d5ff0583c104, 0x0002be38055cffbc, 0xff3cd4d235ff0591, 0x05ba4101bcbd00db, 0x05a7170e05ac2a0e, 0xc06affbc9ab164ff, 0x26ff05b5b504bb1f, 0xbcd05950ff3c128b, 0x05c7110b05cc1f03, 0x31d1ffbd28b4eeff, 0xe6ff05d50002bdc8, 0xbb2dd896ffbc880f, 0x066e250e06fa060d, 0x060a0208062abc04, 0x05f7170e05fca804, 0x4ea2ff3b7bf3c7ff, 0x5bff06050107ba59, 0xbb4a98cfff3a8a29, 0x0617080b061c010c, 0x539affbbb35656ff, 0xe7ff062567053bf0, 0xbd80fc6dffbd1c2a, 0x0640210e064e220e, 0x91bfa3ff063b200e, 0x0007bc8d899dff3a, 0xffbd3d1a6bff0649, 0x0660010cbb0ced8d, 0x865c3fff065b0107, 0x0008bc08f53cff3c, 0xff3c494378ff0669, 0x06b6c8043d5b8e37, 0x0688000606960002, 0x9d8be6ff06836805, 0xbd043b2bad37ffb9, 0xffbd138fc2ff0691, 0x06a80b0bbddb52e0, 0x9cfb87ff06a30207, 0x0c0b3a9bb6b1ffba, 0xffbd819556ff06b1, 0x06da0112bbad2eb9, 0x06c7000206cc0007, 0x7dc0ffbc702ce5ff, 0xd9ff06d50b0b3b4b, 0x3c4edf4dff3b4e6e, 0x06e72a0e06eccc04, 0x94e2ff3c91fadcff, 0xc0ff06f50108bc40, 0xbd5aa943ff3a641a, 0x0746250e078a7005, 0x0718000c0726170e, 0xce2423ff0713a204, 0xa5043c380ae2ff3a, 0xffbc92d7aaff0721, 0x073800113a01d868, 0xa34d7aff0733c704, 0x190ebb3953a2ffba, 0xff3d0d72cdff0741, 0x076a00123c0acdcb, 0x07575a05075c0107, 0xd41affbc932917ff, 0xfcff07656c05bab1, 0xbc318440ff3c5990, 0x0777bd04077c030b, 0x7266ffbc035246ff, 0xe4ff07855d053c82, 0xbca612b7ffbd63a9, 0x07b2170e07d27505, 0x079fc00407a4000c, 0xbb98ffbb1d686dff, 0xe7ff07ad0007bd1c, 0xbc5d9691ffbd1061, 0x07bf730507c4190e, 0xb5edff3ca90ea8ff, 0x55ff07cd00113a67, 0xbc94b492ffbb2ab6, 0x07e8000c07f6ba04, 0x381cdfff07e30009, 0x040bbc40a0e9ffbb, 0xff3a3305beff07f1, 0x08087a053c9af903, 0xd06bc5ff0803070d, 0x7f05bce69919ff3b, 0xffbbe91c3fff0811, 0x0c7b0e0eb8b03cbb, 0x0923000c0a3f040d, 0x086eb00408b2030d, 0x08409605084e9404, 0x7203e5ff083b0a0e, 0x7f04bd029b17ff3b, 0xff3b057026ff0849, 0x08600111bd085a6c, 0x5e3e4fff085b010b, 0x020ebc8d2205ff3c, 0xff3d599b5bff0869, 0x0892030b3c25fc7c, 0x087f011108840007, 0x5960ffbd52df34ff, 0x96ff088d9605bcc2, 0xbca28094ffbc25fb, 0x089f011208a49505, 0x63b0ffbd37bf1bff, 0x28ff08ad0111bd10, 0xbd5136ebffbd436e, 0x08d17f0408e8030b, 0x08c7000e08cc020e, 0x749bff3a55f2b0ff, 0x04bdaeaf70ff3cc0, 0x3da7bbb0ff08da96, 0x474a00ff08e30002, 0x4d043d0dd655ff3d, 0x001108fe01120903, 0xff3aac9660ff08f9, 0xb58510ffbc534afa, 0x109305091500073c, 0x40ff3e056d95ff09, 0xff091e01073d9677, 0x226ab0ff3d98c4db, 0x6f080e09b3b3043d, 0x410009094f930509, 0xc4a4ff093c910409, 0x04bca56bd1ffbb8c, 0xbc214e1bff094a89, 0x61030b3c6180c6ff, 0x906dff095c010e09, 0x09bc6e238cff3bd4, 0xbcff6765ff096a01, 0x93030b3d450654ff, 0x8000020985000909, 0x1aff3b087773ff09, 0xff098e93053ccdbf, 0x9a40faff3befbd7e, 0xa0000209a5a704bd, 0x87ffbd4f053eff09, 0xff09ae020dbb8c78, 0xdeeca0ff3c5290d0, 0xdb000909fb020bbb, 0xc8010709cd960509, 0x1dffbbbab4ebff09, 0xff09d60007bca585, 0x152955ff3ccffa4c, 0xe8950509edb504ba, 0x24ffbd3a1c00ff09, 0xff09f6c404bd932c, 0x2c3a40ffbcf958e4, 0x11020d0a1f91053c, 0x43dfff0a0c0d0e0a, 0x043c71a1b7ffbb76, 0xbe62bf38ff0a1ab5, 0x310d0ebc326d52ff, 0xfeb5ff0a2c01090a, 0x04ba5c7505ff3c3d, 0x3ced2015ff0a3ac7, 0x5f000fbb3e1300ff, 0x8f02090ad3030b0b, 0x610d0e0a6f00070a, 0x9beeff0a5c090e0a, 0x09bbff4f1aff3c47, 0x3d1ca446ff0a6a01, 0x81080ebbf34556ff, 0xd5f0ff0a7c070e0a, 0x0dbd23624cffbb4c, 0x3c39d96eff0a8a06, 0xb3010ebd88553bff, 0xa091040aa5000e0a, 0x2fff3b417c4fff0a, 0xff0aaeb3043cb9f8, 0x36fb23ffbc974374, 0xc0b3040ac5050e3c, 0x7cffbd109620ff0a, 0xff0ace070ebd958d, 0xe7022effbda4adec, 0xfb91050b1b0007bb, 0xe8070b0aed000c0a, 0x9bff3c7c414bff0a, 0xff0af69104bdc2f3, 0xfac303ff3cd39662, 0x0800020b0da7043b, 0xceffbd4ff5c5ff0b, 0xff0b160002babf90, 0xa0cd6bff3c639c74, 0x316f040b3f7f04b8, 0xe5a8ff0b2c6b040b, 0x0bbc9d0ba6ff3d95, 0xbd9d7f0eff0b3a05, 0x519004be1d48d6ff, 0xd64cff0b4c000c0b, 0x043e16cdeeff3cd3, 0xbdf14bdeff0b5a94, 0xef0009bb9375c7ff, 0x8b91050babc7040b, 0x78bb040b7dc0040b, 0x98ff38ee17b6ff0b, 0xff0b868f053b9fb8, 0x53dfbbffbbdd2190, 0x98020b0b9d010cba, 0x4fffbb85a39aff0b, 0xff0ba6040bb99302, 0x2bac3cff3b7df902, 0xc1020b0bcf030bbc, 0x0a14ff0bbc060d0b, 0x0cbc0703f3ff3a3e, 0x3ae12c3aff0bca00, 0xe100123cc534deff, 0x50f4ff0bdcc8040b, 0x04bb2cf0a4ff3cd8, 0x3bd57e74ff0beacc, 0x37010cbcbc7196ff, 0x0901090c17000c0c, 0x579fff0c04070e0c, 0x0e3a9302c2ffbb18, 0x39ec3cd7ff0c1202, 0x290209bb719a5aff, 0x101fff0c24020b0c, 0x0b3b6dab3bffbbcd, 0xbbbe8b16ff0c320b, 0x5bbc043b289e5dff, 0x48060d0c4d98040c, 0x25ffbc908ccaff0c, 0xff0c56030e3a337f, 0xabc858ff3b4f9e4a, 0x680b0b0c6d0209bb, 0xafff3c519bc2ff0c, 0xff0c76cb04bcdb65, 0x9d1ce7ff3a585ad8, 0x961d0e0eb2010cbc, 0xcf00090d13190e0d, 0xa1c5040caf060d0c, 0xd1b3ff0c9cc1040c, 0x12bc06ffb7ffba47, 0xb8ab5947ff0caa01, 0xc1c3043c4e1638ff, 0x2ef4ff0cbcbd040c, 0x0c3cad18e8ffbaac, 0xbb17e3ccff0cca00, 0xf3180e3ba29555ff, 0xe0120e0ce5150e0c, 0x49ffbc954ef3ff0c, 0xff0cee000f3ad802, 0x249134ffbd277508, 0x0002090d05020dbc, 0xbbff3d1e6fb7ff0d, 0xff0d0e060dbcd8ac, 0xfd923eff3b5c622a, 0x3200090d521a0ebb, 0x2800080d2d8f050d, 0xa0ff3d5be270ff0d, 0x3ddeb20cff3ddd5d, 0x0d3f000c0d440b0b, 0x3b40ff3c9f0b07ff, 0xf0ff0d4d0011bae0, 0xbcdf1244ffbcc6d5, 0x0d681c0e0d76000f, 0x9ea06eff0d630007, 0x020d3cd391bbffbd, 0xffbc13f2f5ff0d71, 0x0d8800083da7313e, 0x731943ff0d831b0e, 0x0b0b3aa0e86bffbc, 0xffbb6873f8ff0d91, 0x0e261f0ebca25656, 0x0dc292050de2000f, 0x0dafb5040db48f05, 0x54a7ffbb66e6c0ff, 0xa3ff0dbd00083d48, 0x3d574560ffbcbdf4, 0x0dcfca040dd4030b, 0xcba7ff3dd8a9f0ff, 0xf6ff0ddd00093d91, 0x3d9d9437ff3ce987, 0x0df8c2040e06060d, 0x7ad6d4ff0df3030b, 0x00093d3ca963ffbc, 0xffbd140291ff0e01, 0x0e18050b3bc65c49, 0xff5ff7ff0e13cd04, 0x0009bcf1bd61ff3b, 0xff3cc647c8ff0e21, 0x0e6e050bbcf67ea5, 0x0e40220e0e4ebb04, 0x5830ffff0e3b000f, 0x01123c2d935bffbd, 0xffbbb2a3a5ff0e49, 0x0e60c5043c85299f, 0x637578ff0e5b9105, 0x000f3c127a71ffbb, 0xffbc14a03cff0e69, 0x0e92060d3a80c647, 0x0e7f94050e84ca04, 0xc1d7ff3ace181dff, 0xadff0e8d250ebc3e, 0xbaf089c5ff3c1d31, 0x0e9fc6040ea4c804, 0x2d3affbc00679aff, 0xb4ff0ead00113c91, 0xbd4e6585ffba13b8, 0x0f4691050fd20002, 0x0ee2100b0f029005, 0x0ecfc2040ed48e05, 0xc116ffbc893a54ff, 0x97ff0eddc2043cad, 0xbc710139ff3caab5, 0x0eef060d0ef40007, 0x58eaffbcb1a6b3ff, 0xfaff0efdcd04bd56, 0x3cbc927affbbec96, 0x0f18060d0f260009, 0x93d2b7ff0f130a0b, 0x00083d199fd7ffbc, 0xffb9f68546ff0f21, 0x0f3800113d33585d, 0xacadb8ff0f33cd04, 0x0109bd0acbecffbd, 0xff3c27525bff0f41, 0x0f8e9305bd511581, 0x0f6000070f6e9205, 0x4a0c90ff0f5b030b, 0x0008bca7061fff3b, 0xff3c60711dff0f69, 0x0f800012bd1ada3c, 0xbb8197ff0f7b0007, 0xc904bd2905e6ffbd, 0xffbc34f608ff0f89, 0x0fb29405bd28193f, 0x0f9f170e0fa4ca04, 0x30f3ff3e004061ff, 0xd2ff0fad150e3d74, 0x3cbc44a3ffbd82a0, 0x0fbf170e0fc41d0e, 0x5bccffbd1b7e98ff, 0xf5ff0fcd060d3bd9, 0xbdc42180ffbc78bf, 0x101e900510599205, 0x0ff08e050ffecd04, 0xd8634cff0febc204, 0xc704bcb7a085ff3c, 0xffbbd8cb83ff0ff9, 0x10108f053cd5c783, 0xd0ffd9ff100b0b0b, 0x140e3d875bb3ffbb, 0xffbbcfedb9ff1019, 0x1039030bbd5cbbb6, 0x102fba0410340108, 0x6730ff3d53e130ff, 0x093d0c19c5ffbb3b, 0xff1046cb04104b00, 0x640531ffbce8302d, 0x01baff1054cc04bc, 0x0bbcc91a53ff3c91, 0x051081190e10a103, 0xff106e0008107394, 0xf5445effbc019bfa, 0xe6ecff107c170e3c, 0x0e3d7cd2a3ff3c91, 0xff108e1d0e10932b, 0xba3ac0ffbb4a59ad, 0xf805ff109c0009bc, 0x053c800bfcffbb8e, 0x0e10b7cd0410c593, 0x3d1e825aff10b21c, 0xc0140e3db51939ff, 0xdaff3d1fe9eaff10, 0x0e10d79405bc07e4, 0xbc438b49ff10d21d, 0xe01d0ebdc2f84dff, 0x85ff3c0d3900ff10, 0x08000000133d5229, 0x01000003e8000000, 0x00000010c1000000, 0x0e085e8d05000000, 0x0402481906044516, 0x0400a08505012caf, 0x05003c5304005c5b, 0xff00294f04002e4f, 0x85270cffb98529db, 0x75a0ff0037080b3a, 0x0b3a64b448ffba5a, 0xff00491305004e01, 0x7dd6f7ff3c7fdf11, 0x1259ff00570906bb, 0x113beedb79ff39c9, 0x060072ae04008002, 0x39b9d70dff006d11, 0x7b0c0e36f70e77ff, 0xfaff3c32c756ff00, 0x0800921c05bbb417, 0x3cf4793aff008d01, 0x9b0009bb9fbad0ff, 0xfaffbc684ee2ff00, 0x0d00e897043da3c5, 0x0e00ba940400c802, 0x3c02db2eff00b507, 0xc3070ebc1b1ee6ff, 0x6cffbdde3aa5ff00, 0x0e00da080e3d0fc9, 0x39e671ffff00d507, 0xe39304bc081340ff, 0x2fff3b0bebe7ff00, 0x09010c010c3c8cac, 0xff00f9000c00fe00, 0x3f6948ffb9fa9fe8, 0x5c58ff0107070e3a, 0x083bb44ee1ffbbda, 0xff0119070e011e01, 0x9cd4d2ff3c19e42c, 0x1345ff0127ac04bb, 0x08bc287d51ffbd47, 0x070178880501bc02, 0x06014a060d015802, 0xbb1f3236ff01450c, 0x530011392588bdff, 0x5fff3bff5e8eff01, 0x05016a0108bb81da, 0x3b78631bff01655c, 0x730002bb6df803ff, 0x92ffbc865ae9ff01, 0x05019cb404bbd465, 0xff01890009018e89, 0x74ff68ffbc6dae0d, 0x844cff0197b2043c, 0x0ebb11ba9fff3bfa, 0xff01a9011201ae13, 0xf7eec8ff3aabc363, 0x3dc9ff01b701073b, 0x07bc733ae6ff3c6c, 0x0401e46d05020401, 0xff01d1070d01d6bd, 0x1b91a1ffbac3a45a, 0xbc86ff01df6b05bd, 0x07bd135df7ff3ba9, 0xff01f1730501f600, 0xd46232ff3d231806, 0xafafff01ff00113b, 0x0e3b236966ffbc0a, 0x0d021a060d02280d, 0xbc59624bff021503, 0x230012bbaa39afff, 0x78ffbc2ed177ff02, 0x0d023a0f0e3c137d, 0xbd17d1b9ff023507, 0x43130e3bdf532fff, 0xa8ffbc98dcd3ff02, 0x0803680f0ebb3519, 0x040298080502dc01, 0x0d026a010e027898, 0x3c0123ecff026504, 0x730007b93e7fa2ff, 0x75ffbb31b8f4ff02, 0x07028a000fbca837, 0xbcfdffe6ff028502, 0x93a7043b855183ff, 0xaeff3c2f5afdff02, 0x0702bc020dbabac3, 0xff02a9040e02ae01, 0x90b7ecffbbb392ca, 0x7c80ff02b7000f3b, 0x0f3b002c6dff3c2a, 0xff02c9060e02ce00, 0x028581ff3a735553, 0x2f1dff02d7030e3d, 0x05bb989391ff39cb, 0x0f0304000e032405, 0xff02f1990402f600, 0xfba6fdffbaa8d0de, 0x97cdff02ff9704bc, 0x05398d4fc9ff3ba4, 0xff0311030e031603, 0x3924d2ff3b68aba1, 0xc0d3ff031f000f3d, 0x0f3b3e5031ffbce7, 0x07033a0208034800, 0x3b42cd6fff033500, 0x4312053c857d2cff, 0x2dff3cf8f65eff03, 0x0c035a000e3a329b, 0xb8827434ff035501, 0x630b0bbb5cada2ff, 0x85ff3ad8fe07ff03, 0x0b03d4c3043c13ef, 0x05038b000703ab01, 0x3d3a5db8ff037d06, 0x6f1fe0ff03869604, 0x06053cc46cf0ff3c, 0x95ff03980305039d, 0xbc8cd5f0ffbbed8f, 0x6592eeff03a61805, 0x070b3bffcab0ffbb, 0x9c0403c1130e03cf, 0xff3c83c4c7ff03bc, 0x03cabf043ceffbf9, 0x8f2dff3c1130f8ff, 0x04bbb913ebff3ccb, 0x0b03ea00070401c6, 0x3c2b9030ff03e501, 0xf301073c810a7bff, 0x10053b803a8bff03, 0xffbb69cc2bff03fc, 0x04250107bb8034d5, 0x0412110e04170007, 0xe140ffbbc6a680ff, 0x60ff0420c804bbe7, 0xbb6de4abffbbe7bd, 0x043202070437c804, 0xd650ff3aefd480ff, 0x00ff044010053c0f, 0xbb952d6bffbb53e0, 0x0569110606855705, 0x0499c00404dd4a05, 0x046b560404793e01, 0x42d5c4ff04662b05, 0xb00439fb7687ffb9, 0xff3a291e23ff0474, 0x048b1a03bba8fa00, 0x50bf3dff0486120b, 0x00023d6ab7d3ff3c, 0xffbb23a881ff0494, 0x04bd02083b3b7c64, 0x04aa010804af3403, 0x1d30ffbd037aacff, 0x52ff04b8300e3b48, 0x3b89dcc3ffbb8a97, 0x04ca140b04cfc204, 0x44d3ffb8111c9aff, 0x45ff04d8c4043c65, 0x397009d7ffbd481e, 0x05059e0405250107, 0x04f2000704f78d04, 0x596effbaf30639ff, 0x7fff05004b053b5d, 0xba4f8b98ff3b8546, 0x05124d0505170111, 0xf4e9ffbc5eda2bff, 0xffff0520050bbb2d, 0x3c09059cffbc00b8, 0x053b4f0505495105, 0x2e2514ff05360008, 0x9a043be14425ffbc, 0xff3bb61325ff0544, 0x055bbb043cf89cbb, 0x38ad4eff05560b0b, 0x5405bc4e067fff39, 0xffbc14f0d3ff0564, 0x05f9180e3c4c6c8a, 0x0595000c05b57f04, 0x058200080587010d, 0x20dcffbd593e27ff, 0xfaff05907504bd34, 0xbc791962ff3aaecf, 0x05a2070505a7000f, 0xc195ffbcc3036bff, 0x74ff05b01206bd85, 0xb79bc743ffbc7451, 0x05cb020d05d91206, 0x127e9aff05c69904, 0x000b3d5ccf80ff3d, 0xffbd28eb1dff05d4, 0x05eb170e3c262f1c, 0x5390f1ff05e61406, 0x040dba188eefffbc, 0xff3d7754c5ff05f4, 0x0641200e3c0ba681, 0x0613870406218804, 0xeff027ff060e0605, 0x190ebc8dffb6ff3b, 0xff3dbe333eff061c, 0x06331a0e3d317557, 0x43349aff062e1005, 0xae04bbf71d97ff3c, 0xffbc9a37faff063c, 0x06651206bb269068, 0x0652a1040657280e, 0x7643ff3b02127cff, 0x71ff0660040dbcb7, 0x3b84ff46ffbbfb6a, 0x067203050677030b, 0x3032ffbc72fdaaff, 0xe7ff0680a7043bd3, 0x3b041213ffbca475, 0x0719000207a50212, 0x06b5140b06d5070d, 0x06a2220e06a70006, 0x37c6ffbb0df86cff, 0x02ff06b068053aa6, 0xbda02382ffbcebbe, 0x06c2640506c76605, 0x7040ff39b02b03ff, 0x1dff06d0c0043c8b, 0xbb8ca05dff3b2f3b, 0x06ebb90406f9070b, 0x90e1cbff06e6030b, 0xc0043bcbf6d8ffbb, 0xffbd11efc7ff06f4, 0x070b0207ba6a8193, 0xa49060ff0706cc04, 0x010c3dac9903ffbc, 0xff3ccbde20ff0714, 0x0761090b3de266ee, 0x0733020b0741000d, 0x8af260ff072e300e, 0x000cbd61d97affbc, 0xffbc7942eeff073c, 0x075301083cb8b8df, 0xbac775ff074e220e, 0x000fbb0f67e7ff3a, 0xffbc3a7302ff075c, 0x07858a05bab704f7, 0x0772010c0777230e, 0x6eb0ff3b46c11dff, 0xa8ff0780250e3c88, 0xb991f974ffbcd48f, 0x0792230e0797ca04, 0x5e61ffb9af8f89ff, 0x6eff07a0cd043cc0, 0xbc70bbedff3b854f, 0x07cd4c0408110002, 0x062870ff07b63401, 0xc3000907c8030bbd, 0xe0ffbc4d7334ff07, 0x3c32e580ffbcad04, 0x07e3030b07f1220e, 0x782974ff07de4f04, 0x000c3d876978ffbd, 0xff3d456f75ff07ec, 0x0803030bbd332cb5, 0x475c59ff07fe000c, 0x000c3c5054cdffbd, 0xff3d7f0f0eff080c, 0x08355e04bc662c80, 0x082b000708300008, 0xf379c0ff0826030b, 0x30ff3a938200ff3b, 0x3d81c128ff3d3114, 0x084b00090850030b, 0xee2d7bff08460008, 0x50ff3e1366ccff3d, 0xff085900073d6e4e, 0x8bf250ff3d7c7e40, 0x8782040cc3120e3d, 0xf19105097d7f040a, 0x96020708ad000d08, 0x837b040888000808, 0x7cff3bf44da1ff08, 0xff089151043d3959, 0x1ae5ddff3cb90bd8, 0x8490ff089f6904bd, 0xa6ff08a80002bd41, 0xbdba3b0fffbda5fd, 0x08c3090b08d1070e, 0x85e653ff08be7e04, 0x000fbc174908ff39, 0xffbc9beaddff08cc, 0x08e3000cbb5c3f6d, 0xe4221bff08de000f, 0x0002bc234f2bffbc, 0xffbd118dd8ff08ec, 0x0939000cbd877c36, 0x090b070e09197e04, 0x3e024fff09060002, 0x010b3b0e1d30ffbb, 0xff3b8a935dff0914, 0x092b00023cb46ed6, 0x209707ff0926050b, 0x000e3dad441cff3d, 0xff3c433fbaff0934, 0x095d7d04bc790654, 0x094a7304094f7604, 0x113bffbbc3eb15ff, 0x7dff09587b04bd80, 0xbb83b23bff3d44b0, 0x096a9305096f0007, 0x6883ffbe5838c6ff, 0x8cff0978030bbe34, 0xbe71a643ffbe88c3, 0x09c9810409fb0112, 0x099b060d09a98004, 0xdc76faff0996030b, 0x00113b807897ffbb, 0xffba954dfeff09a4, 0x09bb000c3c7d9559, 0x506ff6ff09b6030b, 0x000e3cb7abc4ff3c, 0xff3cb7fc48ff09c4, 0x09e4060d3d696aa6, 0x09da0b0b09df000c, 0x8111ffbcddfc9dff, 0x12bd4bb704ffbd0f, 0xbc96db5eff09ed00, 0x87afe8ff09f60009, 0x040dbc746f58ffbc, 0x81040a23050e0a43, 0x26ff0a10000c0a15, 0x3b4e3b00ff3c9cfd, 0xa479c5ff0a1e0009, 0x0002bc972801ffbb, 0x90ff0a30070e0a35, 0xbd83eee4ff3bf977, 0x059e40ff0a3e0007, 0x010e3da47554ff3d, 0x00080a5900090a67, 0xff3e0ca655ff0a54, 0x0a6290053ca6d830, 0x6d78ff3b82f1deff, 0x040b0a79020e3d3c, 0xff3d012f62ff0a74, 0x0a82050b3b428600, 0x5122ff3beae486ff, 0xb8040ba790053d29, 0x0b0e0ad700090b1b, 0x0a0e0aa900070ab7, 0xff3b3fbb16ff0aa4, 0x0ab20002bd2252ee, 0x81caffbbcd6bafff, 0x0b0b0ac9b504b985, 0xff3bbc7c7bff0ac4, 0x0ad2000fbc1931a3, 0x3b24ffbbd02c0dff, 0x9e040afb020d3cb0, 0xb9ff0ae89c040aed, 0xbdc283b1ff3bf2da, 0x691643ff0af6a104, 0x070e3c063851ff3d, 0xceff0b08ab040b0d, 0xbc01a30effb98f7a, 0x02af95ff0b16040d, 0xc5043b847309ffbe, 0x010c0b430d0e0b63, 0x96ff0b30080e0b35, 0x3b948eb9ffbaf37e, 0xef416dff0b3e0007, 0xc004bbb804e5ff3b, 0xd6ff0b5000090b55, 0x3aa78d95ffbc5726, 0xd44505ff0b5e8e05, 0x070d3ac6b292ff3c, 0xc9040b7900020b87, 0xffba095a4fff0b74, 0x0b8200093c4fae27, 0xccc5ffbb380f4aff, 0x01070b99010cbc39, 0xffbcff85c6ff0b94, 0x0ba201093c55368d, 0x26e1ffbdcf98b2ff, 0x000f0c370008bd45, 0xa7040bd3ca040bf3, 0x03ff0bc0060d0bc5, 0x3cb916fbffbc00d8, 0xc5f588ff0bce0111, 0x00023b620f1affbc, 0x55ff0be0070b0be5, 0xbc522af2ffbd8774, 0xed0184ff0bee060d, 0x0b0ebcbf7dbbff3b, 0x0a0e0c09010c0c17, 0xff3a4ae4f1ff0c04, 0x0c12110bbc1bde72, 0x1055ffbb3b924cff, 0x91050c29000c3b62, 0xffbbc226d0ff0c24, 0x0c329205b808243d, 0x8c76ffbb746452ff, 0x030e0c7f020d3b40, 0x00020c5101080c5f, 0xff3b927340ff0c4c, 0x0c5a9205bc863a06, 0xf730ffbd5e5fc6ff, 0x01080c71080ebcb6, 0xffbc4cee02ff0c6c, 0x0c7a050b3bd55644, 0x695fff3c53c0e9ff, 0xcb040ca30b0eba12, 0xceff0c90b2040c95, 0xba00ae62ffbb4adf, 0xd73df0ff0c9e060d, 0x010cbb2bcc29ffbc, 0x2dff0cb0c3040cb5, 0x3a7e5374ff3bb3d0, 0xa2a24bff0cbe0b0b, 0x010cbd2c7d76ff3c, 0x92050db1010b0ebb, 0x2b0e0d17300e0d52, 0x250e0ce92a0e0cf7, 0xffbad6dadeff0ce4, 0x0cf2c204bcabb5ab, 0x3a53ff3ccc2ca7ff, 0x00070d09000dbc46, 0xff3bcdd0daff0d04, 0x0d12b8043d57e00b, 0x0be9ff3de281b0ff, 0x90050d3b9105bd34, 0xecff0d28b8040d2d, 0x3c32643bff3dbb93, 0x926d54ff0d360107, 0x0112bdca2d40ffbd, 0x04bb311080ff0d44, 0x3e59637aff0d4dc2, 0x6da704bb348a00ff, 0xa918ff0d5f170e0d, 0xf0ff0d689e04bdff, 0xbd1cff48ffbd05f4, 0x0d83230e0d91c704, 0x289849ff0d7e0008, 0x01123ce2a806ff3b, 0xff3bb16835ff0d8c, 0x0da32b0ebd01044b, 0xdcaab3ff0d9e000c, 0x0002bcd19ccbffba, 0xff3d772e7bff0dac, 0x0e2f9c043a862259, 0x0dd498040df4130e, 0x0dca90050dcf000d, 0x0616ff3c50834aff, 0x0bbd127b50ffbb91, 0xff0de196050de603, 0x450924ffbd14739f, 0x1060ff0def0007bd, 0x04bd754ff5ffbd39, 0x050e0a01070e0f88, 0xbd1ef14eff0e0593, 0x85a8ffbd3e9cfcff, 0x000d0e21170ebd7d, 0xff3d89bcb5ff0e1c, 0x0e2a050b3ca14347, 0x3dfcffbb87dbfdff, 0x00020e77000f3d29, 0xcb040e49cc040e57, 0xff3b6ec630ff0e44, 0x0e520008bce8c826, 0x2eddff3cc94272ff, 0x00070e69020b3dfa, 0xff3d3b3996ff0e64, 0x0e7290053847372c, 0x6b0effbbc5bb71ff, 0x00090e9b1c0e3936, 0xf3ff0e881b0e0e8d, 0x3cadee0eff39c226, 0x7b376cff0e96060d, 0x220ebc0524daffba, 0x71ff0ea8050b0ead, 0xbbaa4bb2ff3bb054, 0x4c2bc5ff0eb6000c, 0x140e3b69e616ffba, 0x00110f4600090fa5, 0x00020eebc5040f0b, 0xd8ff0ed8030b0edd, 0xbe1b159dffbd1fe3, 0xa4e1eaff0ee6050b, 0x01073d2c8e78ffbd, 0xd6ff0ef8070d0efd, 0xbb00dcc9ff3d0216, 0x4a0dfbff0f060008, 0x8e05bd475fa0ff3c, 0x00070f210b0b0f26, 0xff3d71841bff0f1c, 0xd5ecf5ffbc766130, 0x3301070f38030bbc, 0xe0ff3d18728cff0f, 0xff0f410b0bbca3de, 0xa53523ff3d6be60a, 0x6ecd040f8e95053d, 0x5b050b0f60ca040f, 0x8bffbc008d2eff0f, 0xff0f6990053cbe8e, 0x05dbbaffbd087eee, 0x7b00120f8092053c, 0xf4ffbd791460ff0f, 0xff0f89060dbd1a35, 0x084d00ffbcbd1678, 0x9bcd040fa0060d3c, 0x00ffbc953070ff0f, 0x3de69e10ff3bac84, 0x0ff1170e10350008, 0x0fc300020fd1c404, 0xcf3247ff0fbec304, 0x050b3dc1fee1ff3c, 0xff3c02730aff0fcc, 0x0fe30b0bbce377c3, 0x1cc36bff0fde9005, 0xc604bccf008bff3c, 0xffbd9d2aebff0fec, 0x10150112bd0024f1, 0x1002090b1007ca04, 0xb109ffbbd51822ff, 0x6aff101092053cb7, 0x3b7ce18affbbbf9a, 0x1022020d10271d0e, 0xd8e9ffbc8871aeff, 0x8dff1030030b3ce0, 0xbd8ce5a5ffbc98eb, 0x105d9205107d0002, 0x104a0108104f9005, 0xf3b6ffbcaca4e5ff, 0x44ff1058050b3bfd, 0x3d1538ddffbd0405, 0x106a0b0b106f0011, 0x3658ffbd9ad6b6ff, 0x65ff1078220ebe12, 0xbc95a2feffbd549f, 0x1093cb0410a10108, 0x187a06ff108e220e, 0x8e053d8fb2b6ffbc, 0xffbd1276a0ff109c, 0x10b3cd043d26bd9e, 0x9744bcff10ae9105, 0x060dbdb8eeb2ff3c, 0xffbd550210ff10bc, 0x00000013be0b38d5, 0x000003e800000008, 0x000011cf00000001, 0x08e58d0500000000, 0x022d280e04692805, 0x00a00211012cc004, 0x003c1606005c9204, 0x00290f06002e6004, 0x6bfbffb94fb778ff, 0x3aff00371005bbc0, 0x3b8b5b4eff3b276a, 0x00490105004e8704, 0xeb58ffbbf6fb2eff, 0x40ff00578804bb81, 0xb9e0e370ff3cf148, 0x0072150e0080170e, 0x97ad9dff006d000f, 0x0d06ba33a874ff3b, 0xffbc9a9f2dff007b, 0x009201053b89701c, 0x2fe895ff008d0f06, 0x1006bc596b3aff3d, 0xff3c194a5eff009b, 0x00e8070bbb7ef2d8, 0x00ba350400c80108, 0x680a61ff00b50002, 0x0b05bc0294f0ff3b, 0xff3ce17dabff00c3, 0x00da3b043bfd6d07, 0x3de6feff00d5170e, 0x5e04bcd2fb08ffbb, 0xffbd608d85ff00e3, 0x010c1206bc0df013, 0x00f92c0400fe1205, 0x856cffbaf56980ff, 0xdcff010707063d52, 0x3c531c7effbd781d, 0x01191406011e0305, 0xdbe7ff3c25de21ff, 0x95ff01271c053a68, 0xbd577c4effbc72f6, 0x0178220e01a10a06, 0x014a210e0158c104, 0xf03eeaff01450c05, 0x13053d13e90aff3d, 0xff3a2da5afff0153, 0x016a0002bd2641c5, 0x2efbebff01651e05, 0x0806bdf5df40ffbe, 0xffbe55ecd1ff0173, 0x01931e05bdc180cd, 0x5efca0ff0185230e, 0x8dacff018e010cbe, 0x083db37c8dff3d26, 0xbe474175ff019c01, 0xe9010cbd936868ff, 0xbb0e0501c9c60401, 0x086bff01b6c10401, 0x06ba5698adffbc97, 0xbc97b65dff01c40d, 0xdb14063b1cbd7dff, 0xc873ff01d6ca0401, 0x04bbd4f96cffbd3d, 0xbc27a435ff01e4c9, 0x0d0b06ba172081ff, 0xfa000201ffc10402, 0xf8ff3dd42685ff01, 0xff02080b0b3d1c24, 0x406fb3ffbdaa8bb9, 0x1a0e06021f170ebe, 0x0fffbcfb2a9aff02, 0xff022810063ba3c0, 0x4d4aebff3d544118, 0xc11706034d2f0e39, 0x5d1406027dca0402, 0x4a3601024f0f0602, 0x60ffba79dc1bff02, 0xff025811063ac70f, 0x067a70ffbc5774d2, 0x6a0007026faa04bb, 0xefff3c970c07ff02, 0xff0278b104bd8c8b, 0x73a6faffbd0c7f25, 0x93020702a11205bb, 0x7e7bff028e010c02, 0x083cea1779ffbd37, 0xbe3971afff029c01, 0xb30c0bbda9127bff, 0xab1aff02ae020702, 0x05bd23cf6bffbc0f, 0x3d325f1cff02bc13, 0x090605bbc8794bff, 0xdb030b02e9000503, 0xdac0ff02d6020d02, 0x06bd0911c7ffbabb, 0xbde82ce8ff02e418, 0xfb030b3b35a900ff, 0x608cff02f6040502, 0x043e00f308ff3ccd, 0x3e42aca4ff030496, 0x2db0043e900a52ff, 0x1a0f05031f020d03, 0xb3ff3bc8dff4ff03, 0xff03289a04bd4e5e, 0x1be3feffbd7a9a24, 0x3a0905033fb304bd, 0x60ff3e04173cff03, 0xff0348c5043e0b9c, 0xa2e183ff3c697c02, 0x99980403dd3c01bc, 0x6b2e010379080603, 0xf59bff0366010703, 0x03bb1d3946ffba99, 0xbd083f78ff037411, 0x8b8604ba09f79bff, 0xc19cff0386360103, 0x0f3c809c12ff3a5e, 0x3cd39c71ff039400, 0xbd00063b4d6234ff, 0xaa100503af230503, 0xcdffbd87d670ff03, 0xff03b81703bc97dc, 0x436f0cff3d6452e0, 0xca350e03cf03053b, 0xf5ff3c11593cff03, 0xff03d82101bc5f6d, 0x9c9d42ffbb99bdf6, 0x05340e0425000d3b, 0xf28b0403f7300e04, 0x8effbdc39b8aff03, 0xff04000002bd1321, 0x517f76ffbcc702ba, 0x1200020417b5043c, 0x8cffbddbdcaeff04, 0xff04203f01bd1997, 0xf7c04fff3cb9b3a4, 0x3b3e010449000fbc, 0x85d7ff04360b0604, 0x043d435b40ff3c01, 0xbc81cd58ff0444be, 0x5b19033c1ff0ecff, 0x305bff0456180504, 0x053d87b4c3ffbc18, 0xbb26f170ff046426, 0xa91a0e3d093d6dff, 0x018a05058d020906, 0x9d870504bd010805, 0x8a8605048fc60404, 0xc6ff384f82f6ff04, 0xff049800113ab6c0, 0xf19da9ff3c783a9a, 0xaabf0404af8905b9, 0x83ffb83dcc71ff04, 0xff04b8c004bc0bda, 0x8f0d6cff3a25af32, 0xd3be0404e102073c, 0xe0b3ff04cebc0404, 0x0b3b99f47bff3b41, 0xbabc41dfff04dc14, 0xf300063b579383ff, 0x98ecff04ee450504, 0x02bc243fa3ffba81, 0xbd581ac6ff04fc00, 0x49a204bc86428aff, 0x1b0a0e0529020d05, 0xdb54ff0516940405, 0x04bd16ccb0ffbb2d, 0x3cb44e02ff05249b, 0x3b130ebb1cfb23ff, 0xd62dff0536000f05, 0x0fba54560bff3b83, 0xbd32a313ff054400, 0x6da704bc3dbbbfff, 0x5a000f055fa50405, 0xb5ff3d196818ff05, 0xff05680d0e3a48ac, 0x8d06b1ffbcc97b11, 0x7a070d057f000f3b, 0x0eff3ba6457eff05, 0xff0588c3043d9a80, 0x804f36ff3b2930fa, 0xd9030e061d5d043a, 0xab5c0405b9090b05, 0xf564ff05a66e0505, 0x0dbc1a8ba3ffbb26, 0xbc8b6d9aff05b406, 0xcb0111bacf13e0ff, 0xea26ff05c6560505, 0x0ebba2a4a8ff3a2c, 0xba44d865ff05d400, 0xfd000d3c3d6427ff, 0xea560405ef5a0405, 0x2fff3c82626cff05, 0xff05f8030bbd3aee, 0xe21c21ff3d8fcaac, 0x0a000f060f050b3d, 0x9affbca2856eff06, 0xff06182e01bbd489, 0x962b1fff3c58d2ef, 0x45000f0665030bbb, 0x32070e0637080e06, 0x93ffbd320b36ff06, 0xff0640040d3d4fca, 0x9f7b12ffbcb2c83b, 0x52370506573c05bd, 0xc7ffbcf2fbd9ff06, 0xff0660000cbc8cad, 0x4307a5ffbb87d654, 0x7b000d0689000fbc, 0x837aff0676140e06, 0x0d3c50765eff3d4c, 0xbbb4ec77ff068405, 0x9b020e3ca1de4aff, 0xeb1dff0696001206, 0x0b39c988a2ffbbea, 0xbc88b352ff06a413, 0xc93905bbb5c5edff, 0xf90209073d140b07, 0xcb360e06d9070d06, 0xd1fdff06c6000f06, 0x0cbb0bbe74ff3b9a, 0xbcc2de65ff06d400, 0xeba704bae8ee97ff, 0x7355ff06e68a0406, 0x0ebccf5ceeff395d, 0x3c1006c6ff06f42a, 0x1d2b0e3d32f018ff, 0x0a000d070f340507, 0xddff3c296f81ff07, 0xff07180112bc9a7e, 0xea9bebffbc7065b2, 0x2a6904072f1b033c, 0xe5ffbc7da4a0ff07, 0xff0738010cbe4d7d, 0x1b1cdbffbcf3f924, 0x65070d07853705bc, 0x522c0e0757000c07, 0x32ff3a3ba57eff07, 0xff07603f01bc32bd, 0x43e524ff3bd2d420, 0x729804077700023c, 0xb0ff395c3c7fff07, 0xff0780b904bda811, 0x3f1d9aff3d4ff418, 0x9b020807a938053b, 0x7a25ff0796020707, 0x0dbdf6ff4dffbcb7, 0xbde36f9eff07a406, 0xbb9a04be125c95ff, 0x35bbff07b6360107, 0x12bd56aa2effbbaf, 0x3d57fb2dff07c401, 0x590002bba54515ff, 0xf51c0e08151d0e08, 0xe2020d07e79d0407, 0x39ffbc026986ff07, 0xff07f01b0e3b765a, 0x0ac0a2ffbd96c23a, 0x02000c08075f053c, 0x4effbc970928ff08, 0xff0810020dbd2b9f, 0x4a68e1ffbcf69ffb, 0x2b1e0e08390006bc, 0x81ceff0826001208, 0x0e3c2396eeffbcb5, 0x3bec5038ff083420, 0x4b4b05b90c9832ff, 0xe33cff0846450508, 0x043c5ed0f0ffbcc8, 0x3ca32e54ff085495, 0xa1010cbd1d373cff, 0x73610508815d0408, 0x85b5ff086e230e08, 0x0cbe228160ffbb8a, 0xbe1fae7aff087c00, 0x93040dbc354168ff, 0x0e3eff088e021208, 0x0b3d9f834eff3b3c, 0xbc2a09e4ff089c01, 0xc51e0eba909bf3ff, 0xb2000908b71c0e08, 0xebff3d65b2b8ff08, 0xff08c0070dbc66c1, 0x9d741affbcc6fc74, 0xd2050b08d7210e3d, 0xffff3c7a8fd8ff08, 0xff08e084053d7762, 0xaf281cff3be929de, 0x20040d0d5c0e0ebb, 0x81020d0a04000c0b, 0x1d9004093db00409, 0x0a0a0e090f960509, 0x06ff3b2812e4ff09, 0xff09187f04bd1468, 0xeefe5eff3aae3a87, 0x2a0a0b092f0111bc, 0xc7ff3ac22d0bff09, 0xff0938020ebd2542, 0x1d116fff3d4708d9, 0x5300070961030b3c, 0xe302ff094e011209, 0x07bcb1bd60ffbd33, 0xbc89c45cff095c01, 0x739505bc046a02ff, 0x7951ff096e011109, 0x11bd035d00ffbd1b, 0xbd25fd44ff097c01, 0xc9050bbd3db4bbff, 0x9b010b09a9780409, 0xd7cdff0996030d09, 0x04b8ed99fcffbd61, 0xbc97a73bff09a467, 0xbb93053d3c87c8ff, 0xd600ff09b6010b09, 0x053cf57a76ffbbaf, 0x3d5611f6ff09c495, 0xe400073d989204ff, 0xda000209df930509, 0xa0ff3de1edb9ff09, 0x3d743050ff3db5c3, 0x09f1780409f68f05, 0xea70ff3d79ec90ff, 0xadff09ff90053db6, 0x3ccf0ca0ff3d6b4d, 0x0a50030e0a94070b, 0x0a22000e0a300109, 0xc9d9b6ff0a1d4b04, 0x6b043c76180affbc, 0xffbd2de75dff0a2b, 0x0a42030bbc4fd1d5, 0x22bf02ff0a3d8804, 0x00023b42e478ffbc, 0xffbc090b53ff0a4b, 0x0a740d0e3d0cf35a, 0x0a6100090a660007, 0xbf9fff3b8f4f60ff, 0x0eff0a6fa704bba6, 0xbb163a87ffbc42b6, 0x0a81000d0a86020d, 0x862affbcac33a0ff, 0x80ff0a8fb5043c98, 0x3e18a8a0ffbe048d, 0x0abc7b040adc0009, 0x0aa9000f0aae6d04, 0x63faff3c1ed460ff, 0x05ff0ab7000dba5f, 0x3cb7ea53ff3d1fc1, 0x0ac90a0b0acea704, 0xd50effbd4f0498ff, 0xa6ff0ad7070ebc81, 0x3adae7e8ffbc3303, 0x0af2030d0b009205, 0xb52bc7ff0aed0109, 0x01093cba7550ff3a, 0xffbbe3d080ff0afb, 0x0b129505bd416648, 0x73ab76ff0b0db304, 0xb3043cb80a30ff3d, 0xff3bb506abff0b1b, 0x0c40000f3d2ba28c, 0x0b7002090bb4030b, 0x0b429c040b509e04, 0xe50484ff0b3d0007, 0x060ebc2ef4e0ff3b, 0xff3cb52ee0ff0b4b, 0x0b62060dbdb24592, 0xa4da9cff0b5da704, 0xac043c68e6a2ffba, 0xff3cc8ec83ff0b6b, 0x0b94020ebcc205a4, 0x0b818f050b86000e, 0xb55fffbc05db88ff, 0x42ff0b8f010e3ca7, 0x3d1c1fb0ffbc1a65, 0x0ba1bf040ba6050e, 0x4db8ffbd3b2d6bff, 0x23ff0bafb504bdab, 0xbc780da0ffbe4535, 0x0bdc91050bfc0007, 0x0bc97b040bce000c, 0xddd1ffbcf480d9ff, 0x2dff0bd792043d52, 0x3bd67c56ff3cbf2a, 0x0be900020beea704, 0x0cd8ffbd39237dff, 0x97ff0bf7070bba4a, 0xb967b276ff3c5f9e, 0x0c12060d0c209404, 0x2f181fff0c0d070b, 0x8f04bdd142a0ffbd, 0xff3d9c3c18ff0c1b, 0x0c32030e3d07f2e0, 0xcbb027ff0c2d8f05, 0xb1043c2132b3ffbc, 0xffbd3800bfff0c3b, 0x0cd00009bb9477fa, 0x0c6c91050c8cc704, 0x0c59bb040c5ec004, 0x1f0aff38c59032ff, 0x98ff0c678f053b90, 0xba3b2f11ffbbc3ef, 0x0c79000c0c7e010c, 0xc765ff39ba7800ff, 0xd3ff0c87030bbb28, 0xbc1629f9ff3b72b4, 0x0ca2020b0cb0030b, 0x299170ff0c9d0107, 0x000cbc276aa9ffbb, 0xff3ac3a4afff0cab, 0x0cc200123caee288, 0xc2d0dbff0cbdc804, 0xcc04bb1efb31ff3c, 0xff3bbd93abff0ccb, 0x0d18010cbc9d65b2, 0x0cea00020cf8000c, 0xaf1c6eff0ce59305, 0x020e3b643258ffba, 0xff3a23cec7ff0cf3, 0x0d0a0011bb5ecaaf, 0x86702fff0d05030e, 0x090b3b3b80b5ffbb, 0xffbace36edff0d13, 0x0d3cbc043b8b431a, 0x0d29bb040d2e9005, 0xc722ffbadf1f52ff, 0xf8ff0d37030bbcd3, 0x3c002e05ffbb1695, 0x0d4902090d4e0b0b, 0x5e7eff3c3e4249ff, 0xecff0d57c704bb72, 0xbd8aaa9bff3ccdc4, 0x0e801d0e0f93010c, 0x0db0b7040df40008, 0x0d82b5040d90010b, 0xa6b80bff0d7d000c, 0x020dbc2991a8ff3a, 0xffbc8063e0ff0d8b, 0x0da20109be08e352, 0xeb081aff0d9d0f0e, 0xb504baf8e957ff3c, 0xffbd27c02cff0dab, 0x0dd4140e3dad5c98, 0x0dc1100e0dc6130e, 0xcbbcff3c728a16ff, 0xf6ff0dcfbc04bc49, 0xbba66579ff3ccef2, 0x0de101090de6000f, 0x23b5ff3b9e73f7ff, 0xb5ff0defcb04bcbd, 0x3b9f147dffba47f5, 0x0e1c190e0e3c0108, 0x0e09000c0e0ecd04, 0xd172ffb9e0769fff, 0x6cff0e170b0b3c08, 0x3d3cf37bff3c8525, 0x0e29ca040e2e000c, 0x64b7ffbbc4ad19ff, 0xf7ff0e370b0b3bc8, 0xbd089c37ffbbd017, 0x0e52020d0e60180e, 0x115ebcff0e4d0007, 0x140e3b5c4191ff3d, 0xff3c3e14aeff0e5b, 0x0e720007ba9d72c2, 0x04059fff0e6d1c0e, 0x8e05bc984f16ff3b, 0xffbd0bf1a1ff0e7b, 0x0f07020dbc3c2a7e, 0x0eac260e0ec3280e, 0x0e9900080e9e250e, 0xca40ff3b970ba5ff, 0xa2ff0ea701093cb7, 0xbcae0a30ffbd9cbb, 0x300e1bff0eb5b504, 0x382dff0ebe030bbd, 0x043cbde32eff3da1, 0x0e0ed9b9040ee7ba, 0xbcd6b0b8ff0ed42a, 0xe22d0e3d3c7a10ff, 0xc0ffbd869dccff0e, 0x0e0ef99005baf2c2, 0x3c9d9554ff0ef42b, 0x02330ebad56df9ff, 0xb0ffbb3cedaaff0f, 0x070f4f200ebd15dc, 0x020f21000f0f2f00, 0x3c49f03fff0f1c00, 0x2a91053d8159c2ff, 0x06ff3ca4b498ff0f, 0x0b0f41060d38d78a, 0x3b973bdfff0f3c05, 0x4acd04bd361edeff, 0x7aff3c4e7750ff0f, 0x0e0f73c704bb71ee, 0xff0f60000f0f6522, 0xd4fdc4ffbd46cf36, 0xee9fff0f6e040dbb, 0x0f39763be3ffbce5, 0xff0f80230e0f8500, 0xcd4fbdffbcf98444, 0xe002ff0f8e260e3b, 0x02bb0b80d3ff3b66, 0x051027910510b300, 0x050fc3140b0fe390, 0xff0fb0c2040fb58e, 0x9952bcffbc7eb02f, 0xcbd0ff0fbec2043c, 0x07bc51f81bff3c93, 0xff0fd000080fd500, 0x5830c7ffbd2aaa70, 0xa29aff0fdecd04bc, 0x093cb0497bffbba4, 0x0d0ff9230e100700, 0x3d348638ff0ff406, 0x0200083c1456d7ff, 0x6affbc85e887ff10, 0x041019ca043c828b, 0xbcc63438ff1014c9, 0x22cd043e0f6080ff, 0x40ffbd76df27ff10, 0x05106f9305bc9475, 0x041041200e104f92, 0xbbe910a9ff103cca, 0x4a220e3c66c2ceff, 0x00ffbe0d4c81ff10, 0x0710610011bc67b8, 0xbda1654fff105c00, 0x6ac904bd0e94deff, 0x81ffbc20aee6ff10, 0x0e10939405bd1379, 0xff1080150e10851d, 0x8356c3ffbd5c9b56, 0x7b1eff108e0b0b3c, 0x0e3e484175ff3cf1, 0xff10a0000910a51d, 0x6889abff3abd3916, 0xcdeaff10ae0011bd, 0x05bc638308ffbdae, 0x0410ff9005114392, 0x0410d1cb0410dfcd, 0x3c0f1a99ff10ccca, 0xda8f05bcbae43eff, 0xd0ff3bfa62d2ff10, 0x0b10f18f053d610d, 0xbbb84a44ff10ec0b, 0xfa00083d6faef8ff, 0x4affbcac6f35ff10, 0x0e1123030bbd6ed0, 0xff1110bc04111519, 0x124e92ffbc7d48d7, 0xee9bff111ec9043c, 0x053a8be2dcffbcd7, 0xff11300b0b113591, 0x8203e9ffbc9454fa, 0xb2e0ff113ecb043c, 0x0bbc893874ffbd23, 0x05116b1d0e118b03, 0xff11580008115d94, 0xe45d36ffbbc76716, 0xfe84ff1166170e3c, 0x0e3d584c5bff3c8b, 0xff1178220e117d23, 0x12c5c1ffbd214ed5, 0x409dff11862a0ebc, 0x053a5ebed5ffbca5, 0x0e11a1cc0411af93, 0x3d50741eff119c19, 0xaacd043e02d13dff, 0x4eff3d075b77ff11, 0x0411c19405398b18, 0x3cb121ceff11bcca, 0xca1d0ebce17ffeff, 0xbcff3bdf58f6ff11, 0x08000000133d3b90, 0x01000003e8000000, 0x00000010ca000000, 0x0e08948d05000000, 0x0402481906044e16, 0x0400a08505012caf, 0x05003c5304005c5b, 0xff00294f04002e4f, 0x6ef7baffb9689b58, 0x93caff0037050e3a, 0x0bbb003d15ff3a12, 0xff00495904004e01, 0x98590effbbb9ff6d, 0xdef3ff005701113b, 0x113b3323bbff390d, 0x060072ae04008002, 0x399ba567ff006d11, 0x7b140bb887e3a6ff, 0x4cffbb6befadff00, 0x05009210063c4e87, 0x3d0dbd7cff008d12, 0x9b1c053be9b55eff, 0xdfff3b2c5ec4ff00, 0x0d00e89704bcb3d4, 0x0e00ba940400c802, 0x3bf5cd6bff00b507, 0xc3070ebc100496ff, 0x89ffbdc5fcc1ff00, 0x0400da090e3d00ae, 0xbc312255ff00d54b, 0xe30a0eb99b5f41ff, 0xe3ff3d1806ceff00, 0x09010c010c3b36f2, 0xff00f9000c00fe00, 0x27c5adffb9eb3473, 0x1a8bff0107020d3a, 0x05bab04fcbff3c8c, 0xff0119ab04011e8b, 0xd52cf0ff3bd6d7b7, 0xca7fff0127060dbb, 0x083c28b7ddffbcab, 0x0e0178880501bc02, 0x12014a070d01580d, 0x3bfc82adff014500, 0x53080ebaaedeadff, 0x70ff3bdea072ff01, 0x09016a010cbd634b, 0xba2b1894ff016501, 0x73070dbc5ce1f0ff, 0x16ff3bf8a0d7ff01, 0x05019cb4043d27a7, 0xff0189090b018e89, 0xb6a5b2ffba69781a, 0x270cff0197b004bc, 0x0739b04a1fff3c33, 0xff01a9070b01ae00, 0x066a23ffbc3cabfb, 0x2a46ff01b7070e3c, 0x07bb1ba33aff3b5b, 0x0d01e46705020401, 0xff01d1011201d606, 0x68aa1fff3dc60645, 0xd310ff01df070eb8, 0x07bcabdbdaff3d8e, 0xff01f1070b01f600, 0x0ea7f9ffbc54b83a, 0xdbf0ff01ff0d0e3c, 0x02bc884adfffb87e, 0x05021a0011022800, 0xbd724651ff021548, 0x23060dbc8a757cff, 0x0cffbc48070eff02, 0x06023a050b3cc8fc, 0xbbc1d30dff023510, 0x43000fbc6e3cf7ff, 0x0cffbc2a0beeff02, 0x0803680f0ebac106, 0x040298070502dc01, 0x07026a040e02788b, 0x3c02b1fcff026500, 0x73090e3ae62c1bff, 0xc0ffbc96774cff02, 0x0e028a000fb9a0f3, 0xbcbed04cff028507, 0x93ae043c33b217ff, 0x68ff3b6cfba5ff02, 0x0702bc020dba93ba, 0xff02a9190502ae01, 0xe253d9ffbbdcc71a, 0x93e3ff02b7000f3a, 0x0f3aef3d18ff3c15, 0xff02c9040e02ce00, 0xe057a8ff39f66697, 0x4127ff02d7030e3c, 0x05bb87be6cff39c5, 0x0e03040207032405, 0xff02f1000f02f600, 0x7693c1ffbcab0673, 0xebfbff02ff02083a, 0x0f3bdfd9e6ffbab2, 0xff03110005031600, 0xe5e711ffbc17d303, 0x203dff031f00053c, 0x0f38c8ba3fff3be1, 0x07033a020b034800, 0xbc0b46daff033500, 0x43000ebd8b2ab8ff, 0x06ff3bed0f2dff03, 0x0c035a000e3ca156, 0xb6fdeaedff035501, 0x630b0bbb45aa6cff, 0x89ff3acf41d6ff03, 0x0403e6c3043c05e0, 0x050394000703ab9c, 0xff03819604038603, 0xb5bcebff3c266800, 0x0827ff038f0605bb, 0x073c4fa0d0ff3cef, 0xff03a1960403a602, 0x828b48ffbb98bed5, 0xb804bbe4f915ffbc, 0x030503c1090503c6, 0xff3d0a3c15ff03bc, 0x14a0bdff3c8a3f50, 0xd3bf0403d8c2043d, 0x53ff3c4eef53ff03, 0xff03e125053cb6ff, 0xb4efe8ff3a094d80, 0xfc00070413c6043c, 0x3155ff03f7290503, 0x053c1a5370ff3c68, 0xbb62176bff040510, 0x76722bff040e1805, 0x01073b572355ffbb, 0xc80404290007042e, 0xffbbb14680ff0424, 0x644233ffbbcf2e80, 0x3b10050440110ebb, 0xc0ff3c1237b0ff04, 0xff044902073b2efa, 0xf74300ffbb497655, 0x720211068e5705ba, 0xa2560504e6020805, 0x7401080482020704, 0x9a20ff046f7d0404, 0x04bb285275ffb997, 0x3af209c5ff047dc0, 0x9448053a62e7e2ff, 0xbb6aff048f060d04, 0x043b1e9b24ff3a19, 0x3b334f3eff049dc7, 0xc60007bb9df07eff, 0xb3030b04b8000f04, 0x31ffbc276cc0ff04, 0xff04c10a0b3ca21b, 0x573199ffbb5370de, 0xd38a0404d89d04bc, 0x05ff3b56784dff04, 0xff04e100023cabb2, 0x42a7f8ff3c317edb, 0x0e0f0b052ec204bc, 0xfbbe040500560505, 0x8dffba8c31ebff04, 0xff0509020d3ad01b, 0x389eccff3d041980, 0x1b000205202203bc, 0x50ffbae82581ff05, 0xff0529be043d063a, 0x1c67d3ff3b17ee6e, 0x4400060552c4043c, 0x16f1ff053f2d0e05, 0x0fbd194431ff3cae, 0xbe199555ff054d00, 0x645305bd8d833eff, 0x5d18ff055f070d05, 0x023cb96d41ffbb31, 0xbb84c987ff056d00, 0x026a043cfab158ff, 0x9e350405be0b0506, 0x8b25040590170e05, 0x58ffb9ef54fbff05, 0xff05991a013c2fa6, 0x9fcb38ff3af2f980, 0xab0a0605b0170ebc, 0x4eff3d55d771ff05, 0xff05b9030b3c3874, 0x8d0348ff3b21734b, 0xd4000c05e226013d, 0xb610ff05cf2c0405, 0x053d5adc84ffbc56, 0xbdc96f65ff05dd45, 0xf40212bdaf47a8ff, 0x1782ff05ef010705, 0x04bd8dc255ffbc40, 0xbd59d200ff05fd4c, 0x4a00063d526848ff, 0x1c6c04062a6d0406, 0xa6fdff0617340106, 0x083d9efb86ffbe25, 0x3dd807e9ff062500, 0x3c35013dff0fcfff, 0x2650ff0637220e06, 0x043d2bc6caffbde8, 0x3d4bb369ff064578, 0x6e0706bb846bcdff, 0x5b02080660000c06, 0x1effbc68b45bff06, 0xff066900083d42cd, 0xf40b5fffbdbfcd26, 0x7b000c06800b05bd, 0x00ff3db69d19ff06, 0xff068900073c512e, 0xa73899ff3d33af81, 0x22010907ae01073b, 0xbe270e06de280e07, 0xab020806b0c10406, 0xffff3ac017ceff06, 0xff06b9260ebb044d, 0xa99df2ff3abf32d1, 0xcb000f06d0b504bd, 0x81ff3c2481caff06, 0xff06d9bc04bc6bcb, 0xbf64f8ff3d87df26, 0xf4060d07022a0ebb, 0x058bff06efbf0406, 0x0dbcb9e251ffbbb3, 0x3cba2e93ff06fd07, 0x14020dbd5f5871ff, 0x43c6ff070f960407, 0x053c2b3c31ffbc06, 0xbb68f955ff071d6d, 0x6a9b043827a144ff, 0x3c000f074a180e07, 0x2424ff07376d0507, 0x0dbdfeda63ffbd31, 0xbc144692ff074506, 0x5c02093d24dd7aff, 0x8f9fff0757030d07, 0x0fbb96faa4ff3c7e, 0xbcef3538ff076500, 0x8e030bbaf295bfff, 0x7b040d0780000f07, 0xa7ffbcacf379ff07, 0xff0789010cbd83f0, 0x4badfdffb9f526af, 0x9bbe0407a0000fbc, 0x9aff3cf7bd9dff07, 0xff07a9000cbcaa69, 0x89066dffbbe0b546, 0xfa0b0b083e0207bc, 0xcc0a0b07dac40407, 0x741cff07c7011107, 0x043bda94a5ffbbbc, 0x3a61265cff07d5b2, 0xec03063c0af163ff, 0x8f84ff07e7070b07, 0x0c3a4e4d0affbc2e, 0x3c926a99ff07f500, 0x1ec4043d331f5cff, 0x0bc10408102c0e08, 0x06ffbbafe6c0ff08, 0xff08192e0ebc9198, 0x17b2a7ffbd8e76f7, 0x2b610508306805ba, 0x81ff3bbcf74aff08, 0xff0839140b3d3c56, 0xa3064cffbd011d52, 0x4b000208505d04ba, 0x2bffbccbacf0ff08, 0x0408740112be286a, 0xff0861170e0866b3, 0x014c43ff3b869e09, 0xc21dff086f6305bc, 0x0bbb209aceff3bb1, 0xff0881030b08860b, 0x54b713ff3c554f6f, 0xe575ff088f0002b8, 0x0ebac35a28ffbd57, 0x040abd010b0cc312, 0x0b0930980409aa9b, 0x0e08cc840408ec00, 0xff08b9610408be01, 0x028bb4ffba7106a3, 0xe5f8ff08c790053c, 0x0e3c6fe2d6ff3a81, 0xff08d9020708de00, 0x050ba9ff3cc7cb89, 0xe1f4ff08e701073d, 0x053c9aa8fbff3c1b, 0x090902070e091090, 0x391bc9e4ff08fd00, 0x0b7f04bc43858aff, 0x33ffbcdde733ff09, 0x0f09229505bbb378, 0x3bef99b2ff091d00, 0x2b0111bb0c42aeff, 0x14ff3b4681d5ff09, 0x0409780007bd231b, 0x0d094a9405095899, 0x3bf72476ff094502, 0x53010e3cf3aab1ff, 0xa0ff3c8d9188ff09, 0x11096a9205bc18e8, 0x38cdc187ff096501, 0x73000f3d2e2388ff, 0xe7ffbdf6f858ff09, 0x0c099c00083b6f15, 0xff09890b0e098e00, 0xc5bd44ff3b840a76, 0xdf40ff0997030e3c, 0x0dbcaef665ffbd81, 0x3d640d90ff09a502, 0x3a90053d907c68ff, 0xd6030e09f6010c0a, 0xc3000709c8010709, 0xfdffbd4e0328ff09, 0xff09d1a904bc46c0, 0xe48173ffba92d90b, 0xe3000c09e80011bc, 0x5dff3a03ee85ff09, 0xff09f1060dbc84da, 0xb63572ffbba2e265, 0x0c8e050a1a00073b, 0xaba8ff0a07060d0a, 0x023cf2bdd0ffbc04, 0xbc6d228aff0a1500, 0x2c060dbd4914a2ff, 0x2ef4ff0a278e050a, 0x0dbcd55300ffbcb0, 0x3bac3cdaff0a3507, 0x799d043d3b9c5cff, 0x5400090a6201110a, 0x599aff0a4f91050a, 0x0e3be27f6dff3cab, 0xbabec0c0ff0a5d03, 0x6b020dbc4e4c7eff, 0x0002be0e6760ff0a, 0xffbe67cff0ff0a74, 0x0a9da604be822b98, 0x0a8a020d0a8f000f, 0xf491ffbc000f64ff, 0x7fff0a98070e3d07, 0x3b4ec73effbbbfaf, 0x0aaa00020aafa704, 0x0b83ffbe077e54ff, 0x25ff0ab80111bb24, 0x3b84de72ffbb9d48, 0x0b246b040ba7000f, 0x0aed69040afb6a04, 0x0ada57040adf020b, 0x7400ffbe296e20ff, 0x4fff0ae8040d3995, 0x3c468a0cffbaa922, 0xa15d08ff0af6000d, 0x0002be22799cffbd, 0x07be18db3aff0b04, 0xff0b11050b0b1600, 0x0502d2ff3dd6e4c8, 0x94f9ff0b1f01073e, 0x053d619a98ff3d97, 0x040b4c000c0b6c90, 0xff0b39030d0b3e7e, 0xa67506ffbc8868a3, 0x546aff0b470111bd, 0x073c503b50ffbd1d, 0xff0b5900020b5e00, 0x4386d9ff3c5432f4, 0x18bfff0b67a7043a, 0x043b2ef820ffbc98, 0x070b82000c0b876d, 0xbbe128f4ff0b7d00, 0x2760ffbcdb2a64ff, 0x75040b997604bdec, 0xffbc14c1b0ff0b94, 0x0ba2070bbdcf070a, 0x11efff3adbacb6ff, 0x00090c37010cbb65, 0x070e0bd300080bf3, 0xedff0bc0120b0bc5, 0x3b6ed89fff3af113, 0x5718d0ff0bce8e05, 0xc704bac5304aff3a, 0x3fff0be00d0e0be5, 0xba93a313ffba3cf0, 0x5ca052ff0bee0012, 0x070e3bc14c9cffbb, 0xab040c09060e0c17, 0xff3a3b48f2ff0c04, 0x0c12000cbab19bc6, 0xd2eeffbc037302ff, 0x01090c29080ebab1, 0xff3c813fa7ff0c24, 0x0c32060d3b3cde0b, 0x9189ff3a226f58ff, 0x02080c7f030bbba5, 0x070d0c5100120c5f, 0xffbc994b29ff0c4c, 0x0c5a060d3c259e2c, 0x44ebff3ad9b544ff, 0x060d0c71c4043c04, 0xff3d10b10eff0c6c, 0x0c7a01113cec06b0, 0xb83aff3d88af9eff, 0xb6040ca3cd043d70, 0xadff0c900a0e0c95, 0xbd67fcdaffbba0a0, 0x2b4879ff0c9e0009, 0x93053c00bdfeffbb, 0x83ff0cb002090cb5, 0xbd46ab69ffbdc33c, 0x019746ff0cbe0002, 0x010c3c03a3fcffbd, 0x92050dba010b0ed6, 0x2b0e0d17300e0d5b, 0x250e0ce92a0e0cf7, 0xffbaa1d47aff0ce4, 0x0cf2020dbc8daeb1, 0xc3beff3d2ca11aff, 0x000d0d0900073b05, 0xff3bc05c4dff0d04, 0x0d120107bd31fb6a, 0x4468ff3c0bc88eff, 0x020d0d3bc2043d8e, 0xb2ff0d2800020d2d, 0x3df79cf0ff3cdbde, 0x052f69ff0d360009, 0x310e3c27e6d0ffbc, 0xacff0d48cb040d4d, 0xbd4ef1a4ffbbe10b, 0xc9b97cff0d56c504, 0xa7043d851067ffbc, 0x93050d71a3040d76, 0xffbce8a4c0ff0d6c, 0xe3f990ffbd090ee8, 0x8c230e0d9ac704bd, 0x1147ff0d87b7040d, 0x113c15fb0cffbc6b, 0x3b9ee596ff0d9501, 0xac2b0ebce575ddff, 0xd1cdff0da7000c0d, 0x0ebcbde778ffbacc, 0x3d2c6524ff0db52c, 0x4a020d3a9b586bff, 0xe6030b0e0600080e, 0xd3220e0dd8320e0d, 0x29ffba3fa849ff0d, 0xff0de1c8043c1d7e, 0x097a33ffbb80238b, 0xf390050df8040bbd, 0x4affbd7982f7ff0d, 0xff0e01b704bc387e, 0x2f65e8ffbc0142b5, 0x1cca040e2a000f3a, 0xc168ff0e172a0e0e, 0x073d51765bff3c1d, 0xbc75bba2ff0e2500, 0x3c01073c3cd4a1ff, 0xc003ff0e3700070e, 0x05bc52f370ffbcf9, 0x3bb894c4ff0e4591, 0x92cd043c7792deff, 0x64ba040e72000c0e, 0x8782ff0e5fb5040e, 0x043c240838ffbafb, 0xbbb6d789ff0e6dbd, 0x84230eb9d4fc0fff, 0xc93bff0e7f220e0e, 0x053c32ea9fffba81, 0xbbdd8120ff0e8d92, 0xb6280e3c1b5f9dff, 0xa31d0e0ea88f050e, 0x17ffbc99ab9bff0e, 0xff0eb102083cb47f, 0x98706aff3ad5f0f3, 0xc3000c0ec80111bc, 0xf9ff3b591e71ff0e, 0xff0ed10107bbcfca, 0x18cbebffbd3248cd, 0x6100090fae140ebe, 0x06ca040f2600110f, 0xf300020ef8c5040f, 0xdaffbd80b346ff0e, 0xff0f01070dbbc5b7, 0x030849ff3d5765eb, 0x1300020f18cd04ba, 0x55ff3d828dfcff0f, 0xff0f210b0b3cbeca, 0xfd6a36ff3b915cd1, 0x33bb040f418e053c, 0xc2043d8bfd7bff0f, 0xffbc22f2e0ff0f3c, 0x0f53030b3d80ff74, 0x0481ceff0f4e0007, 0x0b0b3c892debff3d, 0xff3d4f01c7ff0f5c, 0x0f9795053d92e5e3, 0x0f7201090f77c204, 0xc7feffbd148174ff, 0x00020f89ca04bd0e, 0xffbc92b74bff0f84, 0x0f9290053c55e837, 0xa55effbced6209ff, 0xe4ff0fa00011badd, 0xff0fa9030b3dce28, 0x84ede0ffbc944508, 0xfacc04103e00083b, 0xcc1c0e0fda220e0f, 0x11a8ff0fc7180e0f, 0x0e3c27b7f6ffbc28, 0xbba51a11ff0fd520, 0xec250ebd3490daff, 0xc966ff0fe7230e0f, 0x0e3dabeae8ff3c6d, 0xbc968088ff0ff528, 0x1e00073b46901dff, 0x0b030b1010930510, 0xb0ff3c6d5d4aff10, 0xff1019150ebcc028, 0xaf78ffffbd847ee3, 0x2b020710301d0e3b, 0x3bffbbd6b62bff10, 0xff10399005bcc000, 0x215595ff3bd00f43, 0x669205108600023d, 0x538f051058900510, 0xfbffba057ae4ff10, 0xff10619105bcf6a0, 0x01e7c0ff3d16e205, 0x73cc041078230e3c, 0xa7ffbcac5666ff10, 0xff10810007bd9a3a, 0x222386ffbc01f6e0, 0x9c030b10aa0108bd, 0x497dff1097011210, 0x0e3bdcd044ffbcbe, 0x3c21eb83ff10a519, 0xbccd043d23ced7ff, 0xbcb7ff10b7150e10, 0x123cd06966ffbd2c, 0xbdf40daaff10c500, 0x000013bd329d62ff, 0x0003e80000000800, 0x0011990000000100, 0xf78d050000000000, 0x482e0e04845e0508, 0xa0b704012c001202, 0x3c6104005c620400, 0x295d04002e5e0400, 0x58ffba419296ff00, 0xff0037070e3bc02b, 0x344336ffbc2b22d1, 0x490d0e004e070d3a, 0x7fff3c2d264fff00, 0xff0057030eba256a, 0xcbad8eff3c1dc280, 0x72140b0080b504bc, 0x6366ff006da60400, 0x05bb90b1b2ffbb8d, 0x3ba03f35ff007b1d, 0x921c0eba0f6a5bff, 0xfb94ff008d010800, 0x0d3ca8302cff3d6f, 0x3d71c7c1ff009b06, 0xe8270ebcac97cfff, 0xba070d00c8260e00, 0x0259ff00b5560500, 0x0e3c32473effbc1b, 0xbdcc632dff00c30d, 0xdab9043ccee60aff, 0x4d22ff00d53d0500, 0x07bd8427e4ffbe2c, 0x3d8de230ff00e300, 0x0c280ebcefc54bff, 0xf9010800fe001101, 0x2aff3d967de9ff00, 0xff010700083d1542, 0x2186e5ffbc9dfce0, 0x19be04011e0108be, 0xdcff3c4923f1ff01, 0xff01272a0e3d165f, 0xa41a86ffbdee58bd, 0x78a90401bc00063b, 0x4a5a040158830401, 0x7b8cff01454e0501, 0x0439f04be4ff399e, 0x3b172837ff015376, 0x6a28053ba212c8ff, 0x48d9ff0165230301, 0x0d3d35b769ff3c29, 0x3b5ac13dff017306, 0x9c2a0e3c6b7d10ff, 0x894f05018e060d01, 0x25ff3c4b2163ff01, 0xff0197130bba2a7d, 0x17343fff3d25ddc3, 0xa9c20401ae2d0e3c, 0x32ffbb41f995ff01, 0xff01b701113ce170, 0x2828f8ffbd9d974a, 0xe44c04020401063d, 0xd1000c01d6000f01, 0xd6ffbafd113cff01, 0xff01df2704bc4d41, 0x91e101ff3a48fc15, 0xf1030b01f6000fbb, 0x5bffbcd75a37ff01, 0xff01ffa904bd54e9, 0x0123e3ffbc9bf78b, 0x1a2d0e02280306be, 0x0771ff0215790402, 0x04bca93d91ffbba6, 0x3b9794faff02239f, 0x3a0b053d03e777ff, 0x8f9eff0235000802, 0x0d3b8c7e89ffbb8a, 0xbc1f1810ff024301, 0x68060d393a350aff, 0x98c20402dc0e0603, 0x6a360e02783b0102, 0xc7bcff0265020602, 0x063b475cd4ffbaf5, 0xbca34a0fff027300, 0x8a0906bba8794dff, 0x3972ff0285be0402, 0x053c14f8cbffbaea, 0xbcfa9f25ff029306, 0xbcc304bc4ced97ff, 0xa9000602ae350e02, 0xb4ffbc91923dff02, 0xff02b7000fbdd51c, 0x6a9c4eff3d0c66b8, 0xc9290302ce5d05bb, 0xd3ffbcb418b6ff02, 0xff02d701073b329d, 0x817d17ffbc8e3439, 0x04050d0324300e3d, 0xf10f0602f6030d03, 0xbdff3c50dfedff02, 0xff02ff9b04bc4c49, 0xdccdfcffbdf173b9, 0x118c0403160b05bc, 0x49ff3cbc816aff03, 0xff031f1306bc5947, 0x938c29ff3c471b38, 0x3abe040348320e39, 0x6e77ff0335050b03, 0x06bc1d0fffff3c7e, 0x3d9cf461ff034314, 0x5a030b3e34f810ff, 0x9c71ff0355330e03, 0x0e3be6c6a5ffbb5f, 0xbb91ec1cff036335, 0xf8300ebca65c3cff, 0x94c50403b4001103, 0x81a2040386070b03, 0x69ffbb524ceeff03, 0xff038f0e0bbd3291, 0x1513c8ffbce641d0, 0xa1020803a6030bbc, 0x9effbda85ac8ff03, 0xff03af0107bd1185, 0x48a634ff3a6971b8, 0xca0e0b03d8c2043d, 0xe4d0ff03c5000703, 0x0cbd2e1937ffbc57, 0xbdc34024ff03d301, 0xea0e0bbadfdf4dff, 0xfbbfff03e5030b03, 0x05be3f7986ffbdda, 0xbea0ed2bff03f34f, 0x400002be63ca59ff, 0x12c3040420c70404, 0xaf1fff040dc00404, 0x08bd58b7a1ffbaad, 0xbd8b5e69ff041b00, 0x32cb043d211c16ff, 0x2269ff042d010c04, 0x0cbd060e12ffbdec, 0x3d8cc956ff043b01, 0x64b9043ac7a5baff, 0x51310e0456030b04, 0x62ff3c89f3c7ff04, 0xff045fb504bcb3d1, 0x8cfb2affbd10513c, 0x71310e0476010cbd, 0x3cff3d91e4cbff04, 0xff047f0b0b3c9361, 0x4272ebff3cc74017, 0xa8020706bb000dbd, 0xd8170e051c020b05, 0xaa000704b80a0e04, 0xdcdcff04a5340404, 0x0e3cf699eaffbb27, 0x3c2282fdff04b307, 0xca5104bccfd90cff, 0x5dc3ff04c5000204, 0x04bdc77b1cffbcb7, 0x3d98659dff04d375, 0xfc310ebd05653bff, 0xe9000904ee300e04, 0x9affbc94583bff04, 0xff04f7010bbd3903, 0xb87546ff3c167840, 0x099804050e320e3d, 0x77ffbe038d72ff05, 0xff0517b004bd3093, 0x98ffd8ffbd0e9803, 0x445104056400093c, 0x312e040536000705, 0x5bffbc07284aff05, 0xff053f6d053c539b, 0x07439aff3b2afdaa, 0x51060e0556310ebd, 0x52ffbca6d69aff05, 0xff055f320e3c68fc, 0x7e8691ffbd9587fc, 0x7a02090588240eba, 0x9e46ff05750d0e05, 0x0b3cd925ffff3d5d, 0x3b04faaeff058303, 0x9ab8043d010b08ff, 0x8530ff0595920405, 0x0b3c85cdcfffbd02, 0xbc1b70d4ff05a303, 0x387d04bd4f8675ff, 0xd4700505f4000806, 0xc1640505c64b0405, 0x81ffbcfb111dff05, 0xff05cf080ebd870f, 0x4f153fffbabb9451, 0xe1000b05e60a0ebd, 0x7dff3d1e62abff05, 0xff05ef8505bd67f5, 0x50cbb4ffbe1be583, 0x0a6a040618080ebd, 0xd3e1ff0605580406, 0x05bdb4fa7bffbe0e, 0xbcfba500ff06136e, 0x2a0d0ebdf0f240ff, 0xa3beff0625080b06, 0x08be94591bffbe83, 0xbe4e9280ff063301, 0x807705be776551ff, 0x522b0e0660090b06, 0x92f1ff064d0d0e06, 0x0ebcc03025ff3ca6, 0x3cfc6154ff065b31, 0x720006bce586fcff, 0x8338ff066d0d0e06, 0x063d0ba61cff3da2, 0xbdb73770ff067b04, 0xa4230ebcabfecbff, 0x917d050696000c06, 0xe4ff3de0a5bcff06, 0xff069f070e3c9a98, 0xafdc08ff3d87e88a, 0x3cd2ff06ad8b04bc, 0x22ff06b6070bbe86, 0xbe147c3bffbd2509, 0x074fc00407dbc804, 0x06eb0111070b140b, 0x06d80a0b06dd0b0b, 0xa5fbffbb421272ff, 0x04ff06e692043b06, 0xbc3648bfffb983c0, 0x06f8000706fd0d0e, 0x3998ff3b01d153ff, 0x22ff0706000c3bc6, 0x39d5173bff3bf9d9, 0x0721ab04072f010c, 0xad65f5ff071ca204, 0x00083ba989c2ff39, 0xff3a8b62e3ff072a, 0x07410107398adbee, 0x3d157eff073c0008, 0x67053cac6887ff3b, 0xff3baa35ecff074a, 0x0797070dbcb189d2, 0x0769780507778205, 0x1dfc2aff07646805, 0x000fbbaa9f66ffba, 0xff3be3af30ff0772, 0x07890009bb0c4fe4, 0x389574ff07842b0e, 0x88053a180571ff3b, 0xffbc8734c3ff0792, 0x07bb0207bb12b821, 0x07a80e0e07ad0002, 0xac83ff3ceb7955ff, 0xd0ff07b6010cbc3f, 0xbd36d0feffbc2e0f, 0x07c8720507cd010c, 0x37deff3c902cdaff, 0xcfff07d6030bba9d, 0x3dac1711ff3d1271, 0x08276005086b6605, 0x07f9cb040807010c, 0x2259d3ff07f4310e, 0x0011bcc47340ff3d, 0xff3d64354fff0802, 0x081901073dd5c1dd, 0x997af1ff08140b0b, 0x060dbd861817ffbc, 0xff3d2e8e8aff0822, 0x084b62053ab8e035, 0x0838310e083d0012, 0x43deff3c3bb91eff, 0xa6ff08462b0ebd31, 0xbbc55ac2ffbd331a, 0x08582f0e085dcb04, 0x2fb6ff3d209daaff, 0x7dff08666405bc85, 0xbc9681bbff3cbd75, 0x0893001208b3310e, 0x0880000708850108, 0x575cffbc452b83ff, 0xc7ff088e140b3c42, 0x3b8b60b7ffbc1523, 0x08a0000708a50207, 0x7cd7ffbc2acd9cff, 0x54ff08ae01083a6b, 0xbba3891aff3b9df7, 0x08c9320e08d77a05, 0xe71010ff08c46d05, 0x340ebd34aa0dff3d, 0xff3b066a14ff08d2, 0x08e90108bcc8c5be, 0x231175ff08e40207, 0x00073c520213ffbc, 0xffbaefb570ff08f2, 0x0d2f0e0e3c320742, 0x0a0473040b17020d, 0x094f630409786704, 0x09210112092f5c04, 0x8be1a2ff091c000d, 0x000e3b67e58cff3c, 0xff3bc5777aff092a, 0x09416104bcaa4533, 0xd7ea29ff093c0002, 0x0107bd2fb017ffbc, 0xff3c06f1c9ff094a, 0x09739205bc5fa650, 0x0960070e0965000d, 0xfeeaff3d3794c8ff, 0x40ff096e010e3cc2, 0x3d992078ff3c3c74, 0xc00002bd4543f4ff, 0x926b0409a0020e09, 0x464aff098d000809, 0x05bd8858f0ffbe32, 0x3ba91380ff099b8e, 0xb28e05bcad1ae0ff, 0x50e3ff09ad700409, 0x0e3cb886f0ff3d4f, 0xbd478344ff09bb07, 0xe4000fbc56bba0ff, 0xd1000e09d6000c09, 0x0bffbc337c84ff09, 0xff09df8e05bd3ec1, 0xa948abffbc97a218, 0xf1010709f60b0b3a, 0x1eff3ba6a503ff09, 0xff09ff00073ca038, 0x86208cffbca3d9ca, 0x47000d0a8b8e05bb, 0x227f040a30050b0a, 0x8880ff0a1d78040a, 0x083ccd6e60ff3bda, 0x3da0e9c8ff0a2b00, 0x4200073d3b7180ff, 0xc400ff0a3d01090a, 0xff3ca42910ffbaab, 0x0a6b0d0e3d18b900, 0x0a58070e0a5d7c04, 0x9b65ff3c791255ff, 0x00ff0a660007bd2b, 0xbbd226a0ff3a865c, 0x0a7800020a7d030b, 0xbc60ff3cf5b5d0ff, 0x80ff0a8600023d8d, 0x3c174fe0ffbc5f85, 0x0ab30a0e0ad30007, 0x0aa096050aa5000c, 0x09a2ff3c868deeff, 0x2cff0aae080ebc17, 0x3d264168ffbb3e1c, 0x0ac00d0e0ac5000d, 0x97a0ff3db3b78eff, 0x25ff0ace000fbc9b, 0xbd11f2a4ff3b39a6, 0x0ae901110af7000c, 0xa10b35ff0ae40a0b, 0x9004bce9e379ffba, 0xff3b0b95e7ff0af2, 0x0b09a7043c736c41, 0xa4400eff0b048204, 0x070ebc8cc5bbff3c, 0xffbc0bc3b7ff0b12, 0x0c1355043a7fa621, 0x0b5e90050ba2030b, 0x0b39010b0b3e040d, 0x3a1192ff0b340012, 0xa7ffbc20cac6ff3c, 0x020b500112bde155, 0x3b6747e0ff0b4b00, 0x590007bab882a8ff, 0x00ff3c7e3aa7ff0b, 0x050b820011ba9a75, 0xff0b6f93050b7494, 0x6be022ff3b91d6c9, 0x7454ff0b7d4d04bb, 0x04bb882cf7ffbc44, 0xff0b8f010b0b9451, 0xc880c2ffbadd1693, 0x3b4aff0b9d01123b, 0x12bdb55b5affbc3b, 0x0d0bca00020bea01, 0xff0bb700120bbc04, 0x1e231eff3b4dc514, 0xe3e0ff0bc50012bc, 0x04bd03e79affb983, 0xff0bd7050b0bdc51, 0x79e3d0ff3a9c2e38, 0x0ea6ff0be55204ba, 0x043ae5d780ffbb9c, 0x050c0000020c0e52, 0x3cfc1ec0ff0bfb8e, 0x0951043cb36180ff, 0xd0ffbb850d80ff0c, 0x3db20cb7ff3cada0, 0x0c5f010c0ca30112, 0x0c3100120c3fca04, 0x078be9ff0c2c0011, 0x9d04bcf78617ffba, 0xff3a2832e7ff0c3a, 0x0c510007b9258d5a, 0x16a55aff0c4c0d0e, 0x00123b7b226bffbb, 0xff3a53578cff0c5a, 0x0c830c0b3c3a77e7, 0x0c700b0e0c75060d, 0x7d44ffbc0c9e76ff, 0x43ff0c7eca043c3e, 0xbc05182dff3b0c04, 0x0c9001070c950b0e, 0x0edcff3b2991c8ff, 0x96ff0c9e00113ca1, 0xbcfb6e71ff3b8d76, 0x0ccb7d040ceb7f04, 0x0cb8000c0cbd0002, 0x3194ffbcfcd768ff, 0x59ff0cc6030d3beb, 0x3c250d71ffbc933c, 0x0cd8040d0cdd000c, 0xd361ff3d4ecd47ff, 0x29ff0ce6000ebcb5, 0xbc480040ffbe335c, 0x0d0190050d0f9105, 0xebfd0cff0cfc8004, 0xa3043ae15716ff3c, 0xffbca10d02ff0d0a, 0x0d219904bb03da68, 0xfb2d63ff0d1c9004, 0x090ebc7507b3ff3c, 0xff3b8544d4ff0d2a, 0x0f6f010c3a979431, 0x0dc700080e531d0e, 0x0d639c040d83180e, 0x0d5001110d55140e, 0x6c55ff3be143a0ff, 0x3eff0d5e000dbc63, 0x3c854899ff3e09ed, 0x0d709d040d75000f, 0xa38cffbe07292cff, 0x9aff0d7e8e05bbc0, 0xbb7d7391ff3b9f49, 0x0d99190e0da7000f, 0xaf93feff0d94c204, 0x1c0ebbca59fdff3c, 0xffbd446ef0ff0da2, 0x0db99205bbaa3e85, 0x2a171dff0db4070d, 0x0002bcfa0a99ff3a, 0xff3bee9403ff0dc2, 0x0e0f01083ab4e11e, 0x0de1a0040defa804, 0x9646eaff0ddc9e04, 0xa6043cd4f685ffbc, 0xffbc974177ff0dea, 0x0e01100ebd73365b, 0x4f1c94ff0dfc0011, 0x01123c9b12bbff3d, 0xffba2ae419ff0e0a, 0x0e331c0e3beff5f4, 0x0e20050b0e25140e, 0x262cffbc4b0f00ff, 0x06ff0e2e020d3c6b, 0xbb1872cbff3ca87a, 0x0e4001070e450b0b, 0x72faffbc04974dff, 0xccff0e4e00123be2, 0xbcc2d5bbffbd2df6, 0x0e9f000f0ee31f0e, 0x0e718f050e7f9205, 0xab426dff0e6cb504, 0x00083d2ea0a6ffbb, 0xffbcb1b1b3ff0e7a, 0x0e91030b3d31e888, 0xad5b00ff0e8c0209, 0x00093996c800ff3d, 0xff3cb20ce6ff0e9a, 0x0ec3060d3d84c1ff, 0x0eb000090eb5bc04, 0x20f2ff3daa4115ff, 0x18ff0ebec3043b23, 0xbca6d357ff3c1ec2, 0x0ed0cd040ed5050b, 0x65aeff3bb5bd71ff, 0xb8ff0ede0009bcdd, 0xbce750feff3caf85, 0x0f0b2d0e0f2b050b, 0x0ef8000f0efd220e, 0x2d80ffbcf04afdff, 0xa0ff0f0601123bde, 0x3b3fa4cfffbba38d, 0x0f18000f0f1d2f0e, 0xfaacff3d8ae589ff, 0xfdff0f26040bbb04, 0x3d63c747ffba3c9e, 0x0f4100120f4f060d, 0x4531d2ff0f3c000c, 0x00023d3e4e41ffba, 0xffbaa45cccff0f4a, 0x0f61c8043b62c88a, 0xdd5a05ff0f5cc604, 0x00113c81996dffbb, 0xffba67083eff0f6a, 0x107d1c0ebd3a24bf, 0x0fbf140e10031b0e, 0x0f918e050f9f120e, 0xd2c00bff0f8c0002, 0xaf043d74c155ffbb, 0xff3d8e9e7eff0f9a, 0x0fb10009bcae7fb2, 0x69d305ff0fac0011, 0xbd043d193098ff3c, 0xffbd05a7b4ff0fba, 0x0fe3180ebaccbf39, 0x0fd090050fd50b0b, 0x5fe0ff3b98fb92ff, 0x9dff0fde0008bc3d, 0xbbb22ffcffbd0e53, 0x0ff000020ff5050b, 0xdb10ffbc80ea29ff, 0xeaff0ffecc04b9b1, 0xbb40bd1fff3c8060, 0x102b0b0b10420009, 0x10180007101d0002, 0x1403ff3dc9073bff, 0xffff102600073dbf, 0x3d1aba3cff3d8121, 0x10389005103d060d, 0x62cbff3da1bed0ff, 0x04bcb0330bff3d1f, 0x091058060d1066cd, 0xbca091ebff105301, 0x618f05bd3f96eaff, 0xd0ffbcc9d8b8ff10, 0xff106f0109bdcf07, 0x107891053de0e6ba, 0x1644ff3a7d70c0ff, 0x0b0b110d1d0ebcb1, 0x011110a9060d10c9, 0xbeff1096090b109b, 0xbce38ebeffbc4bb6, 0xc9957bff10a4020d, 0x00073d44864cffbc, 0xdaff10b6cd0410bb, 0x3c34b189ffb9c223, 0xa3f388ff10c40107, 0x8f05bc378c0fffbc, 0x8e0510df060d10ed, 0xffbb6f9ee0ff10da, 0x10e88e05bd0ef2d0, 0xbfb2ffbd2f0e60ff, 0x000710ff0012bda8, 0xff3bfccceeff10fa, 0x11080107bcc15d9d, 0x6195ff3c1975c3ff, 0x00111155200e3d00, 0xcb04112700021135, 0xff3a043b55ff1122, 0x1130070d3d56df53, 0x0200ff3df2a97aff, 0x9005114700073b83, 0xff3d071eebff1142, 0x11501f0ebc1fb35a, 0x31e5ffbd9d8917ff, 0x220e117900113c49, 0xecff11660002116b, 0x3dae1f5cffbd740f, 0xf30818ff11749105, 0x220ebd1e80b9ffbb, 0x5cff11860002118b, 0xbba1bc20ffbd972e, 0xb8af17ff1194250e, 0x0013bb11f33cff3c, 0x03e8000000080000, 0x10ee000000010000, 0x8d05000000000000, 0x1906039a160e0816, 0x8505012caf040248, 0x5304005c5b0400a0, 0x4f04002e4f05003c, 0xffb940940cff0029, 0x0037070e3a5f5655, 0xa31dff3a36a2f2ff, 0x020e004e070ebb5f, 0xffbb623513ff0049, 0x005737053b96bc2b, 0x2f69ff3af6aab4ff, 0xae0400800211bb2d, 0x62ff006d11060072, 0xb8c5b558ff398e5c, 0x1d8265ff007b0c0e, 0x000cbb9eec75ff3c, 0x79ff008d030b0092, 0x3c9a8d5dffbbf2d0, 0x4d151cff009b000e, 0x97043d2c3dc0ffbd, 0x7b0400c8020d00e8, 0xb2ff00b5070e00ba, 0xbc9d3305ff3a830b, 0xfecb33ff00c39404, 0x080ebd1d0d3fff3b, 0xc7ff00d5070e00da, 0xbbef36abff39e62b, 0xc48a6fff00e3000f, 0x010c3b172ef4ff3c, 0x000c00fe0009010c, 0xffb9babc49ff00f9, 0x0107020d3a0732bc, 0x6ab1ff3c78fed6ff, 0x0009011e000eba9c, 0xffbceaa33bff0119, 0x0127010bbb28604e, 0xed09ffbc1cbb8aff, 0x000201bc010c3bb4, 0x0c050158000f0178, 0xeaff01451506014a, 0x3d27ccb5ff3ba436, 0x84c436ff0153030b, 0x88053b9cf8d2ffbc, 0x79ff01650b06016a, 0x3b064deaffbb98c5, 0xe129e6ff01730e0e, 0xbc043c536c0cff3a, 0x050d018e4505019c, 0xffbbf5266fff0189, 0x0197bb043aebc40a, 0x7822ff3a9ae86dff, 0x000f01ae030ebb43, 0xffbc042ebfff01a9, 0x01b7020b3a42f942, 0x746dffbcba81bbff, 0x000202040d0e3b1f, 0x070d01d6001101e4, 0xff3c34e1b6ff01d1, 0x01df5f05bd0c35c9, 0xb7d3ff3b72ae02ff, 0xb90401f60012bca7, 0xff3cd23fc8ff01f1, 0x01ffb904bb3ebfe9, 0x9f1cffbc091e03ff, 0xbe040228050b3a64, 0x97ff0215070d021a, 0x3b1d7ac1ffbc4838, 0x42510dff0223c004, 0x5405bc997ddbffbd, 0xb1ff0235070d023a, 0x3db64fb0ffb9d8ac, 0x9027bcff0243070d, 0x130e3d596ab1ff3c, 0x9a0402dc02070368, 0x040d0278040e0298, 0xfbff0265010e026a, 0xbaa42897ff3bcf75, 0xb4ed71ff02737504, 0x0205bb27c4c9ff3b, 0xbdff02850002028a, 0xbc47e4bdffbce361, 0xc0baaaff02930405, 0x07053c3143d0ffba, 0x010802ae000f02bc, 0xffbcf2bf74ff02a9, 0x02b7a704bb3fd3d4, 0x5930ff3c0a86d7ff, 0x010e02ce020dba8b, 0xffbb34e158ff02c9, 0x02d7000f3b0d831e, 0x3b44ff3bb8ee43ff, 0x00020324000fba08, 0x040e02f6040d0304, 0xffbb018587ff02f1, 0x02ff040e3c14cdb3, 0x1a90ffbcaa7ba6ff, 0x030b0316000e3c7f, 0xff3a1ee07aff0311, 0x031f00053c474ea0, 0x34caffbca80b90ff, 0x010e034897043cc9, 0x67ff03350008033a, 0x3bf3a66cff3b7a28, 0x0c7183ff03430005, 0x01113c689a83ff3c, 0xc1ff0355000e035a, 0x3af099eaffbb3ba3, 0xd83bdfff03630005, 0xbf043ac40620ff3b, 0x64ff0375010b0383, 0xff037e11053cb0d2, 0x9fa6f0ff3bf8c370, 0x43ecff038c07053b, 0x98ff03950c053cbe, 0x3caf3a84ff3c83c5, 0x04be020805da5705, 0x03ee890404323701, 0x03c04d0503ce2b01, 0xfdfd0eff03bb0207, 0x000cbaed6715ff38, 0xffbd362c7eff03c9, 0x03e02d033aa5b969, 0xae9fa3ff03db2c05, 0x2e013c43c634ff3a, 0xffbbaa1cd4ff03e9, 0x0412130bba002bea, 0x03ff2c0104042d01, 0xa4efffbba59749ff, 0xd8ff040d350ebcae, 0xbaf56296ff3b0a36, 0x041f2d0e0424010c, 0x6085ff3c3da354ff, 0x67ff042d3601bc29, 0x3d22056aff3c24e4, 0x045ac204047a0012, 0x04471c0e044cc004, 0x2676ff3a83233bff, 0x87ff04555505bbe0, 0xbd239532ff3ce720, 0x0467310e046cc704, 0xde41ff3cb3acdcff, 0xdbff0475cb04bcda, 0x3c5d384dffbc64f5, 0x04901b03049ebe04, 0x58eec2ff048b0d0b, 0x1e033d2f5a6dff3c, 0xffbd134537ff0499, 0x04b000063a0a8cc6, 0xd49df1ff04abc004, 0x010639ddd0ecff3c, 0xffbd3cba1aff04b9, 0x054e010cbabe915f, 0x04ea4c05050ab604, 0x04d7140304dc7f04, 0x6a2dffb91a5d73ff, 0xd9ff04e52e033b13, 0x3b0caa6bffbbb662, 0x04f7220e04fc0007, 0x3e3effbc1ec5f5ff, 0x7cff0505170e3b38, 0xb9a498cfff3c9303, 0x0520bb04052e5105, 0xe3fba8ff051b2a0e, 0xc004bc03d487ff3b, 0xff3c008aa7ff0529, 0x05405405bb9e2ee9, 0x4e161cff053b220e, 0xba04bca1f65cff3c, 0xff3c954423ff0549, 0x0596170eba843b2c, 0x0568070605761c05, 0xbfcaa2ff0563ab04, 0x0305bddfaf31ffbb, 0xff3d2ca79eff0571, 0x0588070d3c8aebfe, 0xe31876ff0583a304, 0x0b0bbc3401bfffbc, 0xffbb7f38eaff0591, 0x05baa0043d6a13ff, 0x05a7000705ac8a04, 0xa1bbff3b273660ff, 0x3cff05b52a0ebaca, 0x3b06828fffbc383a, 0x05c70b0b05cc1a05, 0xa487ffbb70716fff, 0x3eff05d533053c37, 0xbb3e689cffbca03d, 0x066e010906fa0107, 0x060ab604062aba04, 0x05f7ab0405fcb504, 0x60a2ff3a0043c3ff, 0xe4ff0605070dbafc, 0xbd9af029ff3d1fe3, 0x0617010b061cb704, 0xfe32ffbd8cfa8cff, 0xb7ff0625000cbb7f, 0x3c8c76e7ffba34b2, 0x0640070d064e0011, 0x738244ff063b1c0e, 0xc1043af09b06ff3c, 0xffbd285f11ff0649, 0x0660060dbbfcbb85, 0x38e37aff065b170e, 0x00023ade7cb7ffbc, 0xffbccb1adaff0669, 0x06b69b04bb32c7fe, 0x06882c0e06960e0b, 0x040691ff0683170e, 0x310ebbaf45bfffbd, 0xff3d48f2efff0691, 0x06a89a04bcaeec80, 0xfe70c1ff06a35a05, 0x5e053c37440eff3c, 0xffbcfc9608ff06b1, 0x06daa004bca5edd4, 0x06c7170e06cc070b, 0x0479ffbd6c85eeff, 0xd5ff06d5000fbc39, 0xbb8c74bbff3d1cf6, 0x06e7000f06ec000c, 0xcabeff3db29d4eff, 0x40ff06f5030bbb90, 0xbc2f472cffbca41f, 0x0746c104078a0207, 0x07180a0b0726b604, 0x0483b0ff0713170e, 0x0002bb326419ff3c, 0xff3b18b736ff0721, 0x07385905bb9e0312, 0xe178fcff07335805, 0xbe04bd577546ffb8, 0xffba98cad9ff0741, 0x076a02083bcedb2f, 0x0757130b075c0012, 0x98afffba9a6fcdff, 0x61ff076568053c39, 0xbb80d126ff3c3515, 0x0777220e077c000f, 0x58eeff3aeb1eddff, 0x9cff07852a0ebd3a, 0x3b9a0d13ffbc68ec, 0x07b2170e07d20b0b, 0x079f910407a4020b, 0x88ccff3b49c1efff, 0x5dff07ad6105bc39, 0x3bb03ae1ff3c9ced, 0x07bf740507c40108, 0x6e6fff3b7811caff, 0x5aff07cd01113967, 0xb9619547ffbc071d, 0x07e8ba0407f60e0b, 0xefaaacff07e30d0b, 0x000cbbd88161ffbc, 0xffbce28896ff07f1, 0x0808ca04bd930b5c, 0x9f65a9ff08035b05, 0xcd04bc2f9d54ff3c, 0xff3bdf15f6ff0811, 0x0c8d0e0e3caffa83, 0x093590040a51020d, 0x086e000d08b29005, 0x08400a0e084e0107, 0xe4e2a3ff083b0007, 0x8f053ca23fbdff3a, 0xffbd563420ff0849, 0x08608f053da6f3f5, 0xc5dbadff085b0002, 0x030bbce8c70cff3c, 0xffbcf2a588ff0869, 0x0892070ebd896bdb, 0x087f000208846d04, 0xe8cbffbc8241faff, 0x47ff088d00093ada, 0xba896e56ff3c2e80, 0x089f030b08a47f04, 0xe347ffbd299afbff, 0x8dff08ad0107bc36, 0x3c8951e3ffbc48b5, 0x08da880408f18f04, 0x08c77b0408cc8204, 0x469fff3aaa1df0ff, 0x6dff08d5000d3c81, 0xbc5583f9ffbddc31, 0x08e7000c08ec000f, 0x8eb1ff3d454a95ff, 0x02bcee7468ff3ca3, 0x070907010b091500, 0xbc37ba60ff090200, 0x10030bbc8c0a50ff, 0x95ff3cde5b2dff09, 0x05092701113b1b31, 0xbca2ab1eff092293, 0x30020e3c83c6eaff, 0xc7ffbd1cdec9ff09, 0x0e09c5030bbdb361, 0x040961a704098107, 0xff094e010d095392, 0xf0cc40ffbd8bbbbb, 0xf509ff095c90053c, 0x09bb1a5021ff3c2b, 0xff096e0007097300, 0x0f8cccff3c3bb45e, 0xd50eff097c030ebc, 0x0bbccce4cdffbb99, 0x040997000909a501, 0x3c0e1422ff0992a9, 0xa09205bc45e22dff, 0xe9ffbc7f083bff09, 0x0409b7a104bd450e, 0x3cdac10cff09b2a0, 0xc000093e2b3390ff, 0x47ff3c4c19a5ff09, 0x110a0d96043a31c8, 0x1209df8f0509ed01, 0xbd59075aff09da00, 0xe80a0bbd4e672cff, 0xb5ffba9a95baff09, 0x0b09ff020ebd18e4, 0x3d67bfb6ff09fa05, 0x0800023da15ed6ff, 0x30ffbc254e4bff0a, 0x020a31a7043ca6ed, 0xff0a1e00080a2300, 0xa1ee74ffbd187adf, 0x2bd1ff0a2c0a0b3c, 0x093cd92453ffbc7b, 0xff0a3e080e0a4300, 0x6a8629ffbc167e89, 0x86a4ff0a4c070e3b, 0x113c58ab72ff3d2e, 0x0c0ae5bd040b7100, 0x080a8190050aa100, 0xff0a6ebc040a7300, 0xf12adeffbacb98d6, 0xc986ff0a7c080ebc, 0x053c480c34ff3ab4, 0xff0a8ebc040a9391, 0x99f036ff3b3c2f7d, 0xf1e5ff0a9c0c0b3c, 0x05bb5f974fff3b27, 0x0e0ab7070d0ac595, 0xba660ae9ff0ab208, 0xc0b7043c8704b2ff, 0xddff3bd6924fff0a, 0x0c0ad7010e3d0bbb, 0xbc3d5948ff0ad201, 0xe0bc04bd17c562ff, 0xc9ffbc994063ff0a, 0x0e0b2dc104bd8014, 0x0c0aff00020b0d08, 0xbc897a21ff0afa00, 0x08c004bd40e86fff, 0x6bffbcbf759dff0b, 0x0c0b1f0a0ebae40b, 0x3d4a025aff0b1a00, 0x280d0e3ddb5415ff, 0x6cff3c24beadff0b, 0x0e0b51060ebc0177, 0xff0b3e010e0b4305, 0xe1b360ff3af09e44, 0x6a2fff0b4c0109ba, 0x0c3db5a25effbc40, 0xff0b5e01080b6301, 0x8e0dc0ff3a69c775, 0x7c8bff0b6cc304bb, 0x053b5388edff3d02, 0x0d0bbd130b0c018e, 0x0b0b8f9c040b9d06, 0xbac20973ff0b8a10, 0x980b0bbd014b1cff, 0x2dff3a24b90aff0b, 0x040baf0a0ebba250, 0x3c586fcbff0baaa6, 0xb80002bc086d0dff, 0x9fff3d26c33cff0b, 0x080be10b0e3c0ab1, 0xff0bce87040bd300, 0x4b8a99ffbc3540b9, 0xa75aff0bdc0a0e3c, 0x0dbce51329ff3b50, 0xff0bee02070bf306, 0xad7209ffbc56d45c, 0xb2b2ff0bfc0d0e3c, 0x053dd13e36ff3cb4, 0x0b0c29060d0c498f, 0xff0c160c0e0c1b0b, 0xdc0812ffbaf44032, 0x5e18ff0c24c8043b, 0x04bd13f166ffbb45, 0xff0c36000c0c3bc0, 0x6f29a8ff3b337e37, 0xd540ff0c44c1043c, 0x0f3b013146ff3d60, 0x040c5f00080c6d00, 0x3996d2e8ff0c5ac7, 0x68060dbbf53320ff, 0xbaff3c088037ff0c, 0x050c7f070ebcc48d, 0x3a6fbbcbff0c7a94, 0x88cb04b901452aff, 0x0dffba8dc1ddff0c, 0x0e0ecd010cbbd6c2, 0x040d2500080db11d, 0x040cc1010b0ce1b7, 0xff0cae8e050cb3b5, 0x9de605ffbc66fe27, 0xa294ff0cbc0002ba, 0x09ba0ff700ffbddf, 0xff0cce0f0e0cd301, 0xc30ed3ff3cd7641e, 0xbd30ff0cdcb504ba, 0x0e3d97c930ffbd15, 0x0e0cf7130e0d0514, 0x3c5f9e68ff0cf210, 0x00bc04bc2eab5cff, 0x02ff3cb88c62ff0d, 0x090d17000fbb8663, 0x3b9520c1ff0d1201, 0x20cb04bca6e6a0ff, 0xf4ffba2136aaff0d, 0x0e0d6d01083b8865, 0x0b0d3fbd040d4d19, 0xbaed31d0ff0d3a0b, 0x48cd04bcea6b83ff, 0xf7ff3b8c9238ff0d, 0x070d5f000c3cd451, 0xbb22227fff0d5a01, 0x680b0b3c34b26cff, 0x5dffbbc7f106ff0d, 0x0e0d911c0ebcf4b2, 0xff0d7e01120d831b, 0x1f3528ffbb235579, 0x5388ff0d8cbf043c, 0x0b3d117935ffbd8d, 0xff0d9e090b0da30b, 0xfb27d6ff3bfe5228, 0x5a76ff0dac0107bb, 0x0dbc5d390affbd0d, 0x080dfd280e0e4102, 0x0e0dcf260e0ddd00, 0x3b8e9b55ff0dca25, 0xd8c204bd7dbe42ff, 0xd8ff3ba469d3ff0d, 0x050defb7043d7076, 0x3d947026ff0dea8e, 0xf8ba04bdeda48dff, 0x1eff3db0a0e9ff0d, 0x0e0e21310e3ca6d6, 0xff0e0e2a0e0e132b, 0x578c71ffbbf94d3b, 0xb9f4ff0e1c2d0e3c, 0x0ebb262ea8ffbd2a, 0xff0e2ec0040e3333, 0x0d4e00ffbc9e035e, 0xb043ff0e3c00073d, 0x0e3cacd353ffbc99, 0x0f0e6900070e8920, 0xff0e5692050e5b00, 0x6e6178ff3c825aec, 0x5ed4ff0e6491053d, 0x0439b1fc6bff3c8d, 0xff0e76c0040e7bc2, 0xa390ecff3c85ec04, 0xd636ff0e84050b3d, 0x04bcac2864ff3a1d, 0x0f0e9f220e0eadc7, 0xbd29e6d0ff0e9a00, 0xa8230ebbc6f480ff, 0x45ff3b79e5daff0e, 0x0e0ebf0111bb5578, 0x3b8abfd3ff0eba23, 0xc82b0ebaaddb08ff, 0x85ffbc31cfadff0e, 0x090fe400083c396a, 0x0e0f1d290e0f6100, 0x050eef92050efd23, 0x3a3ceeebff0eea91, 0xf8140ebc5c7768ff, 0xe8ff3c896672ff0e, 0x0e0f0fcd043b2df8, 0x3da17b49ff0f0a25, 0x18060dbc9c4eabff, 0x63ff3dfd1de9ff0f, 0x070f41030b3d5564, 0xff0f2e8f050f3300, 0x32dbbcff3d054f13, 0x1cd3ff0f3c060d3b, 0x07bd026bb6ffbc4d, 0xff0f4e2a0e0f5301, 0x5ed359ffbd813e7a, 0xc4dbff0f5c9005bc, 0x04bcfc3940ff3cac, 0x0e0f8901120fa0cb, 0xff0f7600120f7b14, 0x221d35ffbccab193, 0xc995ff0f84050bbb, 0x043d06652eff3bde, 0x39b6d700ff0f92c4, 0x9a4e4dff0f9bc904, 0x260ebd6b8bbaffbc, 0x00020fb61c0e0fc4, 0xffbd120609ff0fb1, 0x0fbf1f0ebb2d2b6a, 0x1eacff3cee8f49ff, 0x030b0fd6270ebd20, 0xffbc665db1ff0fd1, 0x0fdfcc04bdb30134, 0xe6c0ffbcf2b670ff, 0x9205106b00023ca7, 0x8f05101090051030, 0x81ff0ffd01081002, 0x3ce9274affbc0928, 0x082f97ff100b230e, 0x01083c010916ffbd, 0x0aff101d00071022, 0xbc476560ff3d0938, 0xe7bee5ff102b060d, 0x0012bd30fd86ffbb, 0x930510460b0b104b, 0xffbd1d1e82ff1041, 0xdfb1c8ffbdc6533e, 0x58cc04105d220ebd, 0x51ffbca4be23ff10, 0xff10669305bd9d5b, 0x12ce6affbbdfc4c6, 0x93cd0410b30b0bbd, 0x80170e1085920510, 0xcdffbc007b84ff10, 0xff108e190e3c8114, 0xeb3581ff3cd6db11, 0xa0140e10a5230e3d, 0x6dffbc4a6880ff10, 0xff10ae260ebe0939, 0xa833fbff3df788c2, 0xc0001110ce8e053a, 0x00073d49b13cff10, 0xffbdd51335ff10c9, 0x10e08f05be2411f0, 0x7e6c03ff10db190e, 0x140e3e2f1348ff3d, 0xff3d89d66aff10e9, 0x00000013bd7d95f9, 0x000003e800000008, 0x000011cf00000001, 0x08f78d0500000000, 0x02481906047b160e, 0x00a08505012caf04, 0x003c5304005c5b04, 0x00294f04002e4f05, 0x0088ffb92d50faff, 0x61ff0037080b3a49, 0x3a3c2c60ffba236a, 0x0049040d004e010b, 0x4958ffbc8a7824ff, 0x23ff00570b06ba35, 0x3be2ffe2ff39a06d, 0x0072ae0400800211, 0x801ffaff006d1106, 0x0e0eb8b1f242ff39, 0xffbb520026ff007b, 0x0092010e3ca1a793, 0x08d9e7ff008d1c05, 0x0b05bcd166a2ffbc, 0xff3d2b6247ff009b, 0x00e897043bf06d7a, 0x00ba950400c8030d, 0xdc7df9ff00b58004, 0x00093c0bd064ffbb, 0xffbda5337dff00c3, 0x00da000f3d3d1523, 0x0250f3ff00d50207, 0x8c05bd45e56dff3c, 0xffba3da22eff00e3, 0x010c010c3aa9345e, 0x00f9000900fe020b, 0x1b25ffbb9f18c5ff, 0x83ff01070e0ebc9e, 0xbba41cf1ff3a07de, 0x0119070e011e0108, 0x73fcff3c00d428ff, 0x5eff0127ae04bb9b, 0x3d3d4c8affbd0608, 0x0178000201bc010c, 0x014a10050158000f, 0x8b6fe6ff01451506, 0x030b3d04f2cbff3b, 0xffbc82c66bff0153, 0x016a88053b8dc722, 0x89f786ff01658105, 0x0e0eb93913cfffbb, 0xff3acaa5e5ff0173, 0x019c8a053c3e47ab, 0x0189000f018e0c05, 0x3ea8ff3c1b05cbff, 0xb1ff0197880538e1, 0xba6d6f6effb989dc, 0x01a9000f01ae060d, 0xc092ff3b8e6411ff, 0x20ff01b700093a5d, 0xbc138e58ff3add2a, 0x01e4000202040d0e, 0x01d1070d01d60011, 0x60cbff3c22cb29ff, 0x7dff01df5e05bcfc, 0xbc9784a6ff3b665e, 0x01f1ba0401f60011, 0xe7ebff3cb37e5bff, 0x7bff01ff6905bb9c, 0xbc26337dff3a79f6, 0x021a020b0228050b, 0x1fd111ff02150012, 0x070dbc20f6d1ffbd, 0xffbc50f673ff0223, 0x023a53053bbafcca, 0x193711ff0235b004, 0xb3043b6ac24cffbe, 0xff3d26a3d1ff0243, 0x0368040e3c736a81, 0x0298010e02dc000d, 0x026a000e0278a904, 0x0f20eaff02650305, 0x0002bcb99d0bff3c, 0xffbb1207e6ff0273, 0x028a12053d0d4d05, 0x76969bff0285b804, 0xcb04bc2054e9ffbd, 0xff3b0c5616ff0293, 0x02bc030bbc6efb94, 0x02a9010502ae000c, 0x9700ffbc2c6200ff, 0xc0ff02b700073bdb, 0xbd2d931bffbbdcc0, 0x02c99b0402cea704, 0x11e9ffbd8b1cf0ff, 0xa0ff02d7020ebdc0, 0xbd8d3a50ffbc3653, 0x0304010703240108, 0x02f19b0402f61205, 0x1b41ff3b0a17d3ff, 0xe4ff02ffa904bc1c, 0x3a1fc88bff3c46f6, 0x0311000f03160505, 0xb54cffbc3a5dc9ff, 0x22ff031f0002ba19, 0x3bebbc55ffbc3235, 0x033a020703480105, 0xa2d90cff0335000f, 0x8804b9c1f790ffbc, 0xff3dc4b152ff0343, 0x035a000f3b98efe9, 0x232d76ff0355a704, 0x010c3c525153ffbb, 0xff3a2878d4ff0363, 0x03ef0405bb69f659, 0x0394010b03b4a304, 0x0381750403860d0e, 0xdc82ff3c164fc3ff, 0x08ff038f9a04bb19, 0xbbddfaf5ff3d036e, 0x03a1070e03a6000f, 0xdb2dffbcca868eff, 0x3dff03af7204bc30, 0x3a3c9494ff3c47e9, 0x03c1000203cf030b, 0xca00083cf4d8abff, 0x20ffbd8d48f4ff03, 0x0703e10107bd4d63, 0x3d7a4be0ff03dc00, 0xea02073d34715cff, 0x30ff3dcd9568ff03, 0x0d0437000f3da051, 0x040409000c041702, 0x3c06c25eff0404c2, 0x120705bb8d1418ff, 0xf0ffbd57d786ff04, 0x0804290002bbad83, 0xbbdc0c78ff042400, 0x32020b3d36a185ff, 0xc9ff3c993674ff04, 0x0c045b070b3d6155, 0xff0448030b044d00, 0x2faaa7ff3aa63a7d, 0x91ddff0456c5043c, 0x0d3c7863c4ffbbb6, 0xff04680002046d02, 0xd1e6bdff3cf9b2e1, 0xd448ff0476bd043b, 0x05bbe1b600ff3a81, 0x01059f020806bb57, 0x0104cf8904051337, 0x0704a14d0504af2b, 0x38e49758ff049c02, 0xaa2301bad5a922ff, 0x4bffbc3ad1a2ff04, 0x0104c123033b28b8, 0x3c0cd008ff04bc30, 0xca6904bb47aefdff, 0x1fffbb21b1a1ff04, 0x0104f3130b3a6877, 0xff04e02b0104e52d, 0x9df1dfffbb9188db, 0xc8f6ff04ee350ebc, 0x0cbadcd8c3ff3af8, 0xff05009704050501, 0x1fe72aff3bd809eb, 0x7bc6ff050e3501bc, 0x123ce23589ff3c02, 0x04053bc204055b00, 0xff0528ba04052dc0, 0x792cf2ffbb7ea32f, 0xaf96ff0536230e3c, 0x0e3d21fa72ff3a5e, 0xff0548c604054d30, 0x1df49fff3cd7d8b4, 0xb49bff0556c304bb, 0x04bb98dc8bffbd64, 0x0405711b03057fbe, 0xbadd52ffff056c67, 0x7a1d033cbb9491ff, 0xa5ffbd66dd85ff05, 0x0e0591000639e006, 0xbdcb1f2cff058c17, 0x9a01063c10527cff, 0xccffbd29daafff05, 0x04062f010cbaab82, 0x0405cb540505ebb1, 0xff05b8270e05bdae, 0x0b6718ff3a898f1d, 0x20e0ff05c6020dbb, 0x04bc07f686ff3c98, 0xff05d8020d05ddb0, 0x50e969ff3cd0922d, 0x0614ff05e60b0b3b, 0x02bd84b1eeffbc21, 0x0b06010111060f00, 0xba4d993fff05fc14, 0x0a090b3c63fb01ff, 0x63ffbcc98bb3ff06, 0x120621060d3b19b4, 0xbc865f62ff061c01, 0x2a0c0b3ab6f212ff, 0x22ff3ab3accaff06, 0x040677220e3cea15, 0x0406495804065761, 0x3b37eba0ff064449, 0x52170ebabb22d7ff, 0xbfffbc5430faff06, 0x0b0669020dbb6510, 0xbab031acff066403, 0x7237053c9baa90ff, 0x74ffbc40f21aff06, 0x12069b030bbca464, 0xff0688060d068d01, 0x96bcafff3c1f519f, 0x47c0ff0696ad04ba, 0x04bce505c3ffbbb1, 0xff06a8000706adb5, 0x061a5bff3bb3e888, 0x1995ff06b63103bc, 0x07bbc1c51dffbca2, 0x07074f870507db01, 0x0806ebbb04070b00, 0xff06d8010b06dd02, 0x0be852ffbb944561, 0xe4bcff06e6ab04b9, 0x05bc15ff62ff3a43, 0xff06f8220e06fd75, 0x2eef89ffbc9b39ca, 0x18dfff07060112bc, 0x05bc7aa1f8ff3966, 0x0b0721b504072f86, 0x39e903caff071c0a, 0x2ab6043b59c040ff, 0xd4ff3d13ef41ff07, 0x0b07411d0e3b88bf, 0x3a44a3f5ff073c0e, 0x4a0111bc76f7f3ff, 0xa6ff3c55f2adff07, 0x0d0797cc04bb7152, 0x0b0769b304077702, 0x3c92a3f8ff076403, 0x7201083a690c50ff, 0x79ff3999ff10ff07, 0x05078901123c948f, 0xb89c0f9bff078489, 0x92040d3b5a9d11ff, 0xe8ffbd15382eff07, 0x0507bb8a05bc0f2e, 0xff07a8000207ad89, 0xb265c1ff3b9a5381, 0x70cdff07b6280ebc, 0x08bb8186b3ff3d78, 0xff07c8220e07cd02, 0x8662d3ff3c594f12, 0xf4f2ff07d6010cbb, 0x07bdc4b167ffbc17, 0x0e0827100b086b02, 0x0507f9010c080717, 0x3c42a854ff07f46d, 0x0261053b9a8ab3ff, 0x90ff3c48547eff08, 0x0408190b0bbbd29e, 0xbb73ec0fff0814af, 0x220e0b3aebcb0cff, 0xa7ffbcc94a88ff08, 0x05084b820538043b, 0xff0838c404083d5f, 0xb4eff2ff3b3ae37f, 0x5faaff0846c6043c, 0x053a8f1dabffbc0a, 0xff0858010c085d83, 0x8f8cb8ff3c689a2a, 0x736bff086600023d, 0x0bbc1a836cff3be7, 0x0b0893170e08b30b, 0xff08805905088502, 0x6b1975ffbcd2b6d0, 0xef4dff088ebd04bb, 0x0c39f2b4d2ff3c2c, 0xff08a0a70408a501, 0x6e4af3ffbb72677f, 0xca52ff08ae090b3a, 0x0b3c85fdf5ffbbc2, 0x0e08c9000c08d70e, 0xbbe73adfff08c422, 0xd2bf04bce371b6ff, 0x89ffbcf83328ff08, 0x0508e9ca04bd9046, 0x3c8f7514ff08e45b, 0xf20108bc1e0d9eff, 0x02ff3c6a2b92ff08, 0x0d0d530e0ebb8640, 0x0d0a04000c0b1704, 0x04094fb004099302, 0x0509210207092f90, 0x3b2f9f6bff091c96, 0x2a000ebc2fb214ff, 0x75ffbb854fd2ff09, 0x0b09410112bd395b, 0x3aa96914ff093c0a, 0x4a020ebd0166afff, 0x1cff3d244c02ff09, 0x050973030b3bfa97, 0xff09600207096596, 0x2aaac9ffbc085200, 0xe840ff096e0007bc, 0x05bc8d2696ffbcf5, 0xff09809305098595, 0xe27f3affbd00e87f, 0xc7e9ff098e0111bc, 0x04bd250d70ffbd09, 0x0e09bb050b09c067, 0xff09a8011209ad00, 0x880a37ff3a42dfa3, 0xb740ff09b69205bc, 0xffbe2bfab4ffbce4, 0x09e4030b3da1ff08, 0x09d17f0409d69305, 0x1050ffbad80c60ff, 0x28ff09df010b3d00, 0x3d5f3fc8ff3ce8b3, 0x09f1930509f60007, 0xa24fff3dcb9dd5ff, 0x39ff09ff00023d81, 0x3db326e8ff3d3fab, 0x0a50030e0a94070b, 0x0a2297040a300109, 0x8ce284ff0a1d020b, 0x99043ad0da64ffbc, 0xffbd48ce25ff0a2b, 0x0a428b04bc660345, 0xfc60ceff0a3d000d, 0x030bbb99178fffbc, 0xff3b97586dff0a4b, 0x0a740d0e3cd405bb, 0x0a617f040a660007, 0x86b2ffbc1da2f7ff, 0x28ff0a6f00023b1b, 0xbb15ba67ffbc433d, 0x0a81030b0a86020d, 0x07f8ff3c93a8dfff, 0x98ff0a8fb5043b83, 0x3e0873ecffbdf079, 0x0abc7b040adc0009, 0x0aa90b0b0aae000e, 0xf052ff3c013016ff, 0x63ff0ab77704bcb9, 0x3cab25a7ff3d2abd, 0x0ac9030d0ace020e, 0xb870ffbdb5562aff, 0x9dff0ad7a704bd63, 0xbb206034ffbc938e, 0x0af297040b00030d, 0x925050ff0aed010e, 0x070ebcaf366bff3c, 0xff3ce5828cff0afb, 0x0b0901093c77a849, 0x120209bbd04200ff, 0x70ffbd09cca0ff0b, 0x0b0c37000fbd53fd, 0x040b6702090bab03, 0x050b3995040b4797, 0x3b95832eff0b3494, 0x420008bc52c9b3ff, 0x2cffbcab44d2ff0b, 0x0d0b590109bdf19e, 0x3c205617ff0b5406, 0x62080ebbbc32e3ff, 0x9dff3c8e6f30ff0b, 0x0e0b8b010ebd89d9, 0xff0b788f050b7d00, 0x935bf3ffbc014518, 0x7e88ff0b86b3043c, 0x023c26e7baffbc84, 0xff0b98b7040b9d00, 0xe7756bffbe550e58, 0x023dff0ba68e053b, 0x07bd00c5b9ffbd89, 0x0b0bd391050bf300, 0xff0bc08f050bc504, 0x16c750ffbdd23c36, 0x1ecdff0bce73043c, 0x043be94582ff3ce3, 0xff0be0060e0be5a7, 0x9e7264ffbc1852df, 0xf6b8ff0bee0002bd, 0x04ba1ab702ff3c41, 0x0d0c0990040c1794, 0xbd0b8b0dff0c0406, 0x12010e3d0032dcff, 0xbeffbe4297b1ff0c, 0x050c29030ebd3539, 0xbcb0ade7ff0c248f, 0x32a7043c1181c8ff, 0x25ffbd818feaff0c, 0x040cc70009bba9f7, 0x040c6391050c83c7, 0xff0c50bb040c55c0, 0x7d60daff38790d49, 0xb1dcff0c5e8f053b, 0x0cba194545ffbba9, 0xff0c70020b0c7501, 0x55d45cffbb6bb468, 0x9191ff0c7e070bb9, 0x0bbc088528ff3b26, 0x070c99020b0ca703, 0xbb0dd431ff0c9401, 0xa2000cbc198285ff, 0x5cff3a847675ff0c, 0x050cb900073c99a3, 0x3c0696dcff0cb494, 0xc28e05ba361ac2ff, 0x9dffbacc93a2ff0c, 0x0c0d0f010c39b4d4, 0x0e0ce101090cef00, 0xbaed1bd9ff0cdc07, 0xea060d3a6fbdefff, 0xffffb8da56b6ff0c, 0x090d01100bbb7342, 0x3b012282ff0cfc02, 0x0a060dbba6bfeeff, 0xd6ff3bd5deadff0d, 0x040d3393053a592c, 0xff0d20bc040d25c8, 0x454a01ff39f858bd, 0xbeacff0d2e0b0b3c, 0x04bd8cbcfaffbc60, 0xff0d40070b0d45c6, 0xe8b6bcff3ba36027, 0xf4c0ff0d4e070bbb, 0x0c3cc2512cffbc1e, 0x080e771d0e0f9301, 0x0b0da7b7040deb00, 0x050d79b5040d8701, 0xbc4fe4b2ff0d748e, 0x829305ba8e1bdfff, 0x40ffbdabc11eff0d, 0x0e0d9901093d225b, 0x3cb59568ff0d9410, 0xa2140ebab9ef12ff, 0x8cff3b8a75edff0d, 0x040dcb140ebd8270, 0xff0db8bb040dbdbf, 0x949e2fffba3aa389, 0xb967ff0dc6c104bc, 0x0fbb94351cff3ca5, 0xff0dd801090ddd00, 0x963600ff3b863745, 0x1773ff0de6cb04bc, 0x083b758463ffba11, 0x040e13a7040e3301, 0xff0e00170e0e05a6, 0x972ab9ff3bf89a41, 0x3f3aff0e0e020dbc, 0x0fbaa89980ffbd9b, 0xff0e20060d0e2500, 0x06bb32ff3be4387a, 0x4762ff0e2e1c0e3e, 0x0ebbddc919ff3b22, 0x0b0e49140e0e571c, 0xbc335bf2ff0e4405, 0x52020d3c57b7afff, 0x0dff3c8fab27ff0e, 0x070e690b0bbb0c8f, 0xbbe47ec5ff0e6401, 0x72060d3be4eb71ff, 0x91ffbc975120ff0e, 0x0e0f07020dbd10d2, 0x040ea395050ec328, 0xff0e90b4040e95b7, 0x48629aff3c907bea, 0xaa65ff0e9e260ebd, 0x043d355a9dff3c32, 0xff0eb0220e0eb5cb, 0x902ceeffbd102efd, 0x1551ff0ebecd04b9, 0x0e3cfaed2bff3d85, 0x040ed9c5040ee731, 0x3a677889ff0ed4c4, 0xe295053de97612ff, 0xfcffbc41966fff0e, 0x0d0ef9330e3c6351, 0xbc421925ff0ef400, 0x0290053cecd00aff, 0x3bffb8c26f68ff0f, 0x070f4f200ebceeff, 0x020f21000f0f2f00, 0x3bec0e67ff0f1c00, 0x2a94053d44dce0ff, 0x24ff3c45584aff0f, 0x0b0f41060dbbb8b0, 0x3b8fe318ff0f3c05, 0x4a050bbd19d30bff, 0xf4ffbc02ed04ff0f, 0x0e0f73c7043c36f0, 0xff0f60000f0f6522, 0xb30f3cffbd18e953, 0xd31fff0f6e8f05bb, 0x12394000eeffb9c4, 0xff0f800b0b0f8501, 0xe2d45dff3b025d7e, 0x07b3ff0f8e2b0eba, 0x0e3c26dfc9ffbc20, 0x041027cb0410b31c, 0x040fc3c6040fe3ca, 0xff0fb0190e0fb5c5, 0xdaee1bff3b971ff2, 0xbc39ff0fbe0011bc, 0x0dbd5463a1ff3d76, 0xff0fd0070b0fd506, 0xee784aff3a995186, 0xbcbaff0fde190e3c, 0x093d7db8d7ffbc8b, 0x050ff9030b100700, 0x3b592284ff0ff493, 0x0200113d6c5c3bff, 0xafffbbe8d8afff10, 0x091019180ebd0afe, 0xbd42668bff101401, 0x228e05bba11270ff, 0x72ff3d4253e5ff10, 0x0e106f00093e14cc, 0x021041140e104f17, 0x3d261e1dff103c00, 0x4a00073c603deaff, 0x1bffbd31c67bff10, 0x081061180ebc2d59, 0x3d68c9e7ff105c01, 0x6acc043e29080eff, 0x74ff3d02a893ff10, 0x0d109300023bdd6a, 0xff10809505108507, 0xad9e8effbd01cd41, 0xb000ff108e8f05bd, 0x093cec3c78ff38f1, 0xff10a0cd0410a501, 0x85f700ff3bab39f2, 0xfe56ff10ae00123d, 0x0ebc77c4e1ff3b8a, 0x1110ff0b0b11431d, 0x0510d1000710df00, 0xbc0a06e9ff10cc90, 0xda01073c2ba793ff, 0xefffbc93e210ff10, 0x0710f10111bc2423, 0xbcbe718fff10ec01, 0xfa020dbbae060dff, 0x09ffbcb70437ff10, 0x0d11238f053d3023, 0xff11108e05111506, 0x00f2e8ffbb5c6160, 0xd880ff111e8e05bd, 0x12bd980582ffbd1d, 0xff11300007113500, 0xad68ebff3be2368e, 0x0800ff113ecd04bc, 0x073cb92b71ffb998, 0x0b116b200e118b00, 0xff1158c204115d05, 0xe90a5cffbd6e6fed, 0x6b44ff1166060d3b, 0x113d9a6e1bff3d13, 0xff1178220e117d00, 0xb36b00ff3d3a0802, 0xd73fff1186220ebc, 0x0b3bb7d0c2ffbcf0, 0x0411a1000211af03, 0x3a0c1b39ff119cca, 0xaa2a0e3cf2c940ff, 0x30ffbd0e518cff11, 0x0511c1280ebca39a, 0x3c84e948ff11bc90, 0xca0b0b3d514a8fff, 0xd7ffbc8b6d9cff11, 0x08000000133cbe81, 0x01000003e8000000, 0x0000001148000000, 0x0e08ca8d05000000, 0x040248c304048416, 0x0400a09704012c98, 0x04003c8804005c90, 0xff00298805002e86, 0xa4ccd5ff37a64eca, 0x16f1ff0037120eba, 0x0ebc90f3f5ff3b95, 0xff00490002004e0d, 0xe8d36effbbb4f752, 0x5405ff005789043a, 0x123b0c5abaff3cd5, 0x090072060d008000, 0xbd9d7645ff006d00, 0x7b140ebcfaddedff, 0xebffbb9cfeb3ff00, 0x0d0092100b3d5e1e, 0xbcdfe79aff008d00, 0x9b3f013b55a4fcff, 0x8affbdd54bd8ff00, 0x0800e80b0b3b3fae, 0x0500ba020900c801, 0x3b960a58ff00b580, 0xc3070ebb88e80bff, 0x6fffbcdb786aff00, 0x0600da020db97097, 0xbd13ddd9ff00d509, 0xe3010eba2a7c2eff, 0x94ffbc2e6241ff00, 0x0e010c0d0e3b5340, 0xff00f9070e00fe09, 0xca1053ff3baac321, 0xf2adff0107060dbc, 0x0dbac4dea2ff3cd6, 0xff01190c05011e06, 0x14a454ffbd3ab799, 0x3196ff01270002bc, 0x0dbd80831effbcbe, 0x060178000d01bc01, 0x0c014a050b015810, 0xbcb936e3ff014500, 0x53120e3be11e99ff, 0x43ff3c491486ff01, 0x0b016a9b043d912f, 0xbc65b387ff016503, 0x73070e3c897309ff, 0x4cffbca4b0b2ff01, 0x0b019c0606bd2b4c, 0xff01890007018e03, 0x86d2feffbcc48f80, 0xfdb9ff0197000c3c, 0x06bda49f7fffbce5, 0xff01a9b10401ae18, 0x709270ffbb2f8547, 0xc8dcff01b7b304bc, 0x053c21ea3fffbb1a, 0x0f01e4790502047b, 0xff01d1000e01d600, 0x96e3dbffbbfbbbb9, 0x9281ff01df060d3b, 0x043abd7760ffbad9, 0xff01f17a0501f6a7, 0xe9d30cffbc181def, 0x0d76ff01ff0e0b3b, 0x0e3caa9008ff3ba9, 0x07021a020d02280d, 0x3b64d1a4ff021501, 0x230b0bbd04205fff, 0x21ff3a68ba92ff02, 0x0e023a0012bb05a0, 0xbbcb8612ff023513, 0x43100e3b454a39ff, 0x0bff3c7ad6d2ff02, 0x0f03680c0ebba6d2, 0x0b0298030d02dc00, 0x0c026ac504027803, 0xbc000da3ff026500, 0x73000dbcf00cbbff, 0xd8ffbb351cb1ff02, 0x04028a070e3bc1f0, 0xbc2671c0ff0285c9, 0x936305bca66526ff, 0xd7ff3a230418ff02, 0x0502bc010ebcab58, 0xff02a9030b02ae55, 0xd420a0ffbc158eab, 0x7131ff02b7000cbc, 0x0cbc03fedaff3ca7, 0xff02c9010802ce00, 0xa9a533ffbc34203e, 0xfefcff02d719063c, 0x043d8c7226ff3c91, 0x07030400120324c4, 0xff02f17f0502f600, 0x1f0242ff3d9c68bc, 0xe8e7ff02ff010e3c, 0x06bc47ecdfff3c58, 0xff03118705031600, 0x0ade69ff3c646953, 0x1eecff031f0e06ba, 0x04bc47d4cbffbd2a, 0x06033a070e0348c8, 0xbc0b9524ff033512, 0x430e0b3b0819eeff, 0x56ff3adf6fa1ff03, 0x0e035acb043c9395, 0xbb035afcff035507, 0x63080ebc41863fff, 0xcdff3a542529ff03, 0x0c03f8c4043c6495, 0x0e03940b0b03b400, 0xff0381060d03860d, 0x8a6c04ff3bec7a5f, 0x3521ff038f0e0e3c, 0x053a605380ffbc89, 0xff03a1750503a687, 0xc6db87ffbcd25f42, 0x3e79ff03af8805bb, 0x08bb3b081fff3ce7, 0x0203ca0d0e03d801, 0xbd86b5a9ff03c500, 0xd30e0ebc8cd1aeff, 0x8fff3acb83cdff03, 0x0d03ea00073ce63f, 0x3be78830ff03e506, 0xf30f0ebd02cffbff, 0xa0ff3b90393bff03, 0x120440070dbd8877, 0x0e04120a0b042000, 0xbc7e256fff040d0e, 0x1b8805bd7eac57ff, 0x4dffbbc801d7ff04, 0x0b0432060d3b2ce7, 0x3bc5eecbff042d09, 0x3b0007bb980c4fff, 0x97ffbcbacdf1ff04, 0x05046401073cb7fa, 0xff0451010c045684, 0x34228affbc86759a, 0x7c3eff045f0d0ebd, 0x043baa8703ffbd22, 0xff047101080476c6, 0x2f3baaffbd53c088, 0x27b7ff047f0008bc, 0x053ccce7ecff3b4d, 0x0505a8110606c457, 0x0104d8c004051c4a, 0x0504aa560404b83e, 0xb913f913ff04a52b, 0xb3b10439d5030cff, 0x70ff39f58ebfff04, 0x0604ca4405bb3643, 0x3a91fb72ff04c50c, 0xd30011bb851d2bff, 0x65ffbb8d7ffbff04, 0x0404fc170ebb6042, 0xff04e90d0604eec2, 0xdb8262ffbbfd8609, 0xf288ff04f726053c, 0x04bd132a23ffbdb4, 0xff05090012050ec1, 0xd239d3ff3cf26d2f, 0x624aff05171e0eba, 0x07ba2d18bfffbc65, 0x0405449e04056401, 0xff05318c0405368e, 0x8e1af9ffb932f8f1, 0x3ff5ff053f010cbc, 0x113ac095c5ffb88e, 0xff05514d05055601, 0x0d166dffbc418ac4, 0x732eff055f0002bb, 0x053bb9fde3ff392e, 0x08057a4f05058851, 0xbc1b6475ff057500, 0x8395043bbf704cff, 0x91ff3b3d4d64ff05, 0x0e059a200e3ccf06, 0x3c03e952ff059517, 0xa3220ebc44a972ff, 0xefff3c601874ff05, 0x050638070bbb2df6, 0x0405d4630405f403, 0xff05c1500405c655, 0x5f5977ff3b1de51f, 0x11d0ff05cf0107bc, 0x0f3d123181ff3bd4, 0xff05e1030b05e600, 0xdfb97bffbcc6617d, 0xb005ff05ef12063d, 0x043c8fae58ff3b6a, 0x06060a0705061895, 0x3c058c32ff060514, 0x13000c3d08192dff, 0xfdffbb6d18caff06, 0x04062a9b04bcee02, 0x3d1a4170ff062596, 0x33a404bccb0228ff, 0x15ff3cf56de5ff06, 0x070680b504b9b843, 0x0d0652230e066001, 0xb954b797ff064d04, 0x5b000fbc1f6dcdff, 0x01ffbd0327f8ff06, 0x0f06728b04ba1870, 0x3d130d1dff066d00, 0x7b010cbb11abafff, 0xcaffbba4d374ff06, 0x0d06a4b604bd0708, 0xff06910008069602, 0x1f7f89ff3c56d74b, 0x8536ff069f07053d, 0x113b9b279eff3ce5, 0xff06b1bd0406b601, 0x33776affbc4fab1a, 0xec5aff06bf000c39, 0x073c1fc63fffbb33, 0x070758870507e401, 0x0806f4bb04071400, 0xff06e1010b06e602, 0xfbd496ffbb857199, 0x6414ff06ef000cb8, 0x05bc3fc22dff3afe, 0xff0701220e070675, 0x1d712effbc8bb407, 0x1773ff070f0112bc, 0x0bbc6191d1ff394f, 0x0f072a000c073801, 0x3d16e9a7ff072500, 0x33bf04bb253c49ff, 0x69ffbbf539f1ff07, 0x0d074a2c0ebcd7b3, 0x3b7d4712ff074507, 0x53010cbbd550c6ff, 0xb1ff3b4fb920ff07, 0x0d07a0cc04bc5e5b, 0x0807720009078002, 0x3bc45692ff076d01, 0x7bb4043c916c72ff, 0x8bff3c74469cff07, 0x0507920112bc8bac, 0xb88c73d5ff078d89, 0x9b040d3b44c07dff, 0x73ffbd064c2dff07, 0x0507c4130bbc00dd, 0xff07b1000707b688, 0x3b6499ffbd592646, 0x7a8cff07bf0e0bbc, 0x07bd108569ffbb65, 0xff07d1010807d600, 0xf0f3c1ffbc349b3a, 0x8258ff07df000c3b, 0x073cdafdbaffbb4a, 0x040830c104087402, 0x040802590508109b, 0xbc44f453ff07fd92, 0x0b170e3c329b5bff, 0x2eff3c097749ff08, 0x0408220b0bba2d47, 0x3a5e2e6eff081dbe, 0x2b140b3be18630ff, 0xf0ffbc859330ff08, 0x1208540208bab620, 0xff0841040b084600, 0xb16a09ffbc80410c, 0x1adfff084f130b3b, 0x0fbbc0191effb976, 0xff08617c05086600, 0x1f337bffbd270370, 0x7a09ff086f2b0e3b, 0x043c000551ffbc14, 0xff08815d0508865d, 0x1267b1ffbcb944a0, 0x9c760408aa060dbe, 0x2edbff0897000808, 0x11be44089dffbc1d, 0xbb4d9526ff08a501, 0xbc1d0e3b936f47ff, 0x0c34ff08b7c30408, 0x12bc0e1ec7ff393a, 0x3b272994ff08c500, 0x410e0e3c4ca84dff, 0xe981040b05040d0d, 0x2290050966030b09, 0xf4020d0902070e09, 0x0a94ff08ef020708, 0x04bd0fcef7ff3b4c, 0xbcee0d9bff08fd70, 0x14000dba133abdff, 0x7cbfff090f000809, 0x04bd1775dbffba91, 0xbd2765e9ff091d7e, 0x467b04bcb7a3c4ff, 0x3300020938000c09, 0x9aff3b93e2bcff09, 0xff0941010bbb751e, 0xd76889ffbd17e938, 0x53010b0958000d3a, 0xfbff3c2c6680ff09, 0xff0961000c3d6afa, 0xf9ed8bff3b300858, 0x8e6d0409a56f043c, 0x7b550409805c0409, 0x13ff39358ce6ff09, 0xff098961043c84f0, 0xcd3702ffbd01d4e4, 0xf37dff09979005ba, 0xfcff09a09305bdaa, 0xbd76d787ffbd56ce, 0x09bb900509c9030d, 0x98ca82ff09b6000d, 0x020d3b060837ff3c, 0xff3c943d49ff09c4, 0x09db00073d91dcbe, 0x57d4f0ff09d6050b, 0x070b3dbddbcbff3d, 0xff3cdce5b5ff09e4, 0x0a79000c3d95b4f4, 0x0a15070b0a35010e, 0x0a0200020a070009, 0x5dbaffbcf3949bff, 0xe5ff0a10030bbc9b, 0xbd4d777dffbcd7f4, 0x0a2200020a270207, 0xe60affbc3fa4bdff, 0x14ff0a300a0b3bf0, 0xbd0037ecffbcc358, 0x0a4b000d0a59b004, 0xda556dff0a46070e, 0x0002bd25d882ff3b, 0xff3b4f3f4aff0a54, 0x0a6b030b3cafcf2c, 0xdd5102ff0a660007, 0x0007bc30c965ffbc, 0xffbd09fd4aff0a74, 0x0ac1030ebce9dba7, 0x0a93020e0aa10009, 0x315c02ff0a8e030b, 0x0002bd91da14ffbd, 0xffbb2a2422ff0a9c, 0x0ab38904bcaf0c6c, 0x3d72a3ff0aae9205, 0x050bbd3badacffbc, 0xff3a998820ff0abc, 0x0ae50d0e3c98cbb9, 0x0ad2a7040ad70002, 0x7146ffbc2ce5acff, 0xd0ff0ae000093bbe, 0xbbcf006dff3b271a, 0x0af202090af7020d, 0x2200ff3c891331ff, 0x80ff0b00a7043b94, 0xbd0c2188ffbcbc6f, 0x0b99030b0c25000f, 0x0b359e040b550209, 0x0b2200070b279c04, 0x40fbff3bb7f30eff, 0xa0ff0b309d04bc13, 0xbc30e500ffbdc31c, 0x0b42a7040b47060d, 0x1010ffbb2b7821ff, 0x16ff0b50aa043c3b, 0xbc9aeb86ff3cae73, 0x0b6b000e0b79010e, 0xe97b80ff0b668e05, 0x94053c4e9a0fffbb, 0xffbc247842ff0b74, 0x0b8b070eba92e839, 0x9716f3ff0b869005, 0x080ebd28bb71ffbd, 0xff3d16e7b8ff0b94, 0x0be17f04bd0f6ae5, 0x0bb36f040bc17304, 0xc624ffff0bae6304, 0x72043d155968ff3b, 0xffbd4f9e5dff0bbc, 0x0bd300093d83484b, 0xc57ac1ff0bce000e, 0x000ebd4e19a8ffbd, 0xff3ceb95ccff0bdc, 0x0c058004bd631ec4, 0x0bf2050b0bf7000e, 0x16c8ff3d9367d8ff, 0xa1ff0c00070b3d8c, 0x3dce9a44ff3e02dd, 0x0c12000c0c179e04, 0x9412ff3c36b87eff, 0xf6ff0c209f04bcb9, 0x39b160a6ff3d5d14, 0x0c71c7040cb50009, 0x0c43c0040c519105, 0x60286eff0c3ebb04, 0x000c3b640a44ff38, 0xff3b2083ecff0c4c, 0x0c63010cbbb6c39c, 0x542266ff0c5e020b, 0x0d0bb94071baffbb, 0xffbbe1712fff0c6c, 0x0c95030b3b9339d3, 0x0c82060d0c87020b, 0x362bff3aa13573ff, 0xeaff0c90000cbbd3, 0x3c8a463eff3a6e6e, 0x0ca2060d0ca70d0e, 0xbb7cffba52a1daff, 0x13ff0cb0001139d1, 0x3c983ccaff3af16a, 0x0cdd000c0cfd010c, 0x0cca020e0ccf140b, 0xb000ff3a39aefaff, 0xa6ff0cd80a0ebb39, 0xbb7d7738ff3a8925, 0x0cea90050cef0011, 0xdfc8ffbbdba5f9ff, 0xb0ff0cf80a0b3b1e, 0x3b6e2e99ffbacccb, 0x0d130b0b0d21cd04, 0x9fcf16ff0d0e070e, 0xc7043c38614dff39, 0xff3c8eedc4ff0d1c, 0x0d33060dbd62c3d5, 0xbbf457ff0d2e0002, 0x080e3d014f63ffbc, 0xffbcbaa34eff0d3c, 0x0f0c000cbd01b5a4, 0x0dd9000f0e65070d, 0x0d750a0b0d95020d, 0x0d62240e0d670007, 0x77bfff3b6c97a3ff, 0x15ff0d70a7043d1e, 0xbb68a99dff3c128e, 0x0d82240e0d87000d, 0xa5b0ffbb4a4d70ff, 0xa5ff0d90c604bd50, 0xbbfcc2aeffbd0e70, 0x0dab2a0e0db9c704, 0x50148cff0da6bb04, 0x00023d88dc02ff3b, 0xff3e4ca532ff0db4, 0x0dcb140e3dd93e6b, 0x49e3f0ff0dc60002, 0x0007bbd5ceabffbd, 0xff3d085936ff0dd4, 0x0e21280e3bec1b80, 0x0df3140e0e010008, 0x2ba425ff0dee0011, 0x0107393b3bd0ffbc, 0xffb9b227cbff0dfc, 0x0e13230e3b772bda, 0x935610ff0e0e0e0b, 0x010839e4d7c3ffba, 0xffbc808103ff0e1c, 0x0e4500123bff36b8, 0x0e320b0b0e37290e, 0x9395ff3daa1e6cff, 0x13ff0e408e05bba5, 0x3bd3a90cff3cf36c, 0x0e5200070e57060d, 0x2a5fffb9d27fcfff, 0xbeff0e60cb043b95, 0xbbd8feceffbd42f8, 0x0e7b90050e80b504, 0x6f3ff0ff0e76b204, 0x48ff3d8d45f8ff3d, 0x0b0ec8c8043da82d, 0x040e9a140e0ea809, 0x3d6d4ccaff0e95bb, 0xa3c104bb361230ff, 0x3bffbcc8f5ffff0e, 0x0f0eba0b0bbb49e8, 0xbd543bcdff0eb500, 0xc3c204bcf8e867ff, 0x98ff3d020160ff0e, 0x0e0eeccd043ce44e, 0xff0ed990050ede1f, 0x9a8301ffbc8a6024, 0x97eeff0ee7250e3b, 0x0bbc884364ff3d7f, 0xff0ef901080efe03, 0x85fc76ffbc211512, 0x3f8dff0f0793053c, 0x0bbb4e2b13ffbd15, 0x0d0fa0170e102c07, 0x070f3c00090f5c02, 0xff0f29b3040f2e00, 0x020d07ff3bcb80dc, 0x716bff0f37140e3d, 0x043b311c00ffbc9e, 0xff0f49ba040f4ebc, 0x901ae7ffbcdb4fdb, 0x0596ff0f57bf04bd, 0x0fbc95917dff3d54, 0x0e0f7200070f8000, 0xbb292cb5ff0f6d14, 0x7b9205bd75edf3ff, 0x4bff3ccbfb83ff0f, 0x110f92140ebc4973, 0xbcd0bce6ff0f8d00, 0x9b050bbbab8e9bff, 0x75ff3c0a2b15ff0f, 0x040fe802083d80c1, 0x0e0fba00080fc8ca, 0xbb2ded30ff0fb531, 0xc301123c632cfbff, 0x92ffbc24ec95ff0f, 0x0e0fda2b0e3c233b, 0xb8d4736cff0fd52a, 0xe32c0ebcb0078aff, 0x89ff3dfa58c9ff0f, 0x0e100c020d3b2cb7, 0xff0ff9c9040ffe23, 0xaed96eff3d072790, 0x8520ff1007010bbb, 0x0fbdbb8c90ffbd70, 0xff1019c904101e00, 0xea962effbd79f0ca, 0xb085ff1027030bbd, 0x0ebd19c9d0ff3c06, 0x0d1078000810bc14, 0x05104a8804105800, 0xbcef8960ff10458f, 0x539505bd0e3418ff, 0xf0ff3dc362b6ff10, 0x07106a060d3d7ef8, 0xb9cb994aff106500, 0x730012bcce761dff, 0x9aff3b7031ebff10, 0x07109c120e3da57a, 0xff1089060d108e00, 0x5dc388ffbca5dac1, 0x25a7ff109701073d, 0x073aec3000ff3cf7, 0xff10a90b0b10ae00, 0x8dee1eff3d22b505, 0xd6c6ff10b7010c3d, 0x04bc770bbaff3cc3, 0x0410e4150e1104c8, 0xff10d10b0b10d6bb, 0x9decaaffbc28d38f, 0x462dff10dfc2043c, 0x043d552493ff3dff, 0xff10f1be0410f6bf, 0xa8f4f4ff3ab78a5a, 0x2c6aff10ff180e3c, 0x043bd1ad74ffbc77, 0x0e111a0b0b1128cd, 0xbadaae2cff111522, 0x23110b3c2ed2edff, 0x09ffbd3da940ff11, 0x08113a0009bae05c, 0x393ca42bff113501, 0x43180ebc5940e9ff, 0xf2ffbd68e3e7ff11, 0x0800000013bbf8dd, 0x01000003e8000000, 0x000000113f000000, 0x0509008d05000000, 0x050248270e048428, 0x0300a08b04012c00, 0x03003c4c04005c2b, 0xff00290d06002e1f, 0x686c93ffbac51893, 0x108aff0037000fba, 0x06bbbf2aaaffbc48, 0xff00490208004e0e, 0xeeab97ff3c49d709, 0x91caff00570207bb, 0x083d8e3f59ff3ca3, 0x0400728004008001, 0xbba9f0e5ff006d6b, 0x7b0b0ebc91e9b5ff, 0x37ffbd3c4853ff00, 0x040092000fbc6675, 0xba7022fbff008d5e, 0x9b020e3cf7e068ff, 0x1effbae0328aff00, 0x0f00e8060ebc5902, 0x0e00ba020800c800, 0xbc0c53fbff00b500, 0xc3000ebd3504b7ff, 0x79ffbdd38034ff00, 0x0e00dab3043d0536, 0x3a95a019ff00d501, 0xe30108bc304561ff, 0xd2ff3bec3256ff00, 0x06010c01083cdbb1, 0xff00f9970400fe14, 0x16462cff3c055b3f, 0xb2bcff01071906bd, 0x07bcbfb849ffbd4d, 0xff01199704011e01, 0x637595ffbc43138b, 0x1451ff0127020dbd, 0x06bcaa19f3ffba5a, 0x060178260e01bc12, 0x04014a3003015811, 0x38f973b6ff014584, 0x5301113c31b5edff, 0x29ffbb33de9cff01, 0x0b016a210e3b907b, 0xbbceea28ff016503, 0x73020d3bb89ea9ff, 0xd4ff3bb1c34fff01, 0x06019c0111bd1885, 0xff01890206018e0a, 0x260eecffbbb63125, 0x334dff0197000c3d, 0x06bc142012ff3c1a, 0xff01a9020601ae10, 0xb83494ffbcd81ae1, 0xa446ff01b7000239, 0x08bd14addfff3c54, 0x0701e4060e020400, 0xff01d1130501d601, 0x8eca8dffbbc712c6, 0x1862ff01df070539, 0x053c12f643ffbb88, 0xff01f16b0401f601, 0xfb2aa5ffbb2f4fd1, 0x99efff01ff0107bc, 0x053b05e56effbba4, 0x0c021a0107022803, 0xb9c200feff021500, 0x23000fbc5d5667ff, 0x67ff3c0f93dfff02, 0x0d023acb04394a7b, 0xbc7a93a9ff023500, 0x430b0e3b2d97faff, 0xbaff3b569d06ff02, 0x0303683601bc2a9c, 0x040298310102dc26, 0x04026a6e0402788a, 0xba86c10dff026569, 0x730a03bb1519f4ff, 0x84ffbbccf430ff02, 0x06028a21013ab393, 0xbc9cbfb7ff028500, 0x939004bbb55ab7ff, 0x41ffbc10da35ff02, 0x0102bc01113b70ca, 0xff02a9100302ae35, 0x9fde9eff3c496b46, 0x924eff02b72d0eb9, 0x03bac791b7ffbd28, 0xff02c9100302ce19, 0x0ba50fffbda3c8c4, 0x165cff02d7000fbd, 0x0dbccb3d26ff3c9e, 0x0103043101032402, 0xff02f1070602f62b, 0x85b0ecffbbf4f7f1, 0xa8d7ff02ff000c3b, 0x0fbc0753acffbcf0, 0xff0311010b031600, 0x80237affbd12c5c5, 0xd6e6ff031f34013c, 0x0f3ca3936dffbbce, 0x04033a000b034800, 0xbd8a67f0ff03355e, 0x432401bc52f8d7ff, 0x6fff3abaa97eff03, 0x01035a00083c89ee, 0x3aafe1f3ff035531, 0x630007bc07101fff, 0x48ff39f88dccff03, 0x0503f8ae043c44a4, 0x050394340303b425, 0xff0381190503861c, 0xf0acc2ff3b862c19, 0x53e1ff038f94043c, 0x06bcb86a4bffbb0a, 0xff03a1ac0403a609, 0xbdb454ffba3ca0bd, 0xb931ff03af000fbc, 0x0bb9db1d33ffbc83, 0x0503ca080b03d811, 0x3814db30ff03c527, 0xd301073c78f3ecff, 0x08ffb9c99c97ff03, 0x0403ea8c043d3b94, 0xbc011d0fff03e58b, 0xf327053d292712ff, 0xa2ff3ddcd0a3ff03, 0x11044001053d67b0, 0x0504120108042001, 0xbdea5e2dff040d00, 0x1b0906bda6e2baff, 0xcbffbb8f6e4aff04, 0x060432010cbd4404, 0x3c3e71d7ff042d12, 0x3b0d063d813251ff, 0xa0ffbdcd3e73ff04, 0x0604640605bcd8a9, 0xff0451330e045605, 0xdc52d1ff3df5a694, 0xd6caff045f0906b9, 0x05bc5c80dfff3ae0, 0xff0471030b047626, 0x882d77ffbafc2a5f, 0xa33cff047f40013b, 0x0e3d511e65ffbdb0, 0x0e05a8000d06c419, 0x0e04d8120e051c15, 0x0c04aa000904b803, 0xbb86275fff04a500, 0xb3070bbcde28adff, 0x78ff3b675b20ff04, 0x0204ca39043cb6c9, 0xbb98d5e3ff04c500, 0xd30006bce6cfd4ff, 0x3dff3cb9a02aff04, 0x0104fc5804bc6db7, 0xff04e9030b04ee40, 0x6358beffba51f04d, 0x312fff04f75404bc, 0x0bbdb96f79ffbd6a, 0xff05097304050e06, 0x878cd6ffbd49b865, 0x13b6ff05170107bc, 0x04bc258351ff3ce7, 0x0c05440002056464, 0xff05313601053600, 0xeb5166ffbd23462c, 0x8531ff053f6204ba, 0x07bd34505fff3aad, 0xff05510009055600, 0x532a60ff3d79de00, 0x5b48ff055f01073d, 0x063de73e80ff3dc1, 0x0b057a0009058800, 0x3dd4c259ff057505, 0x8373043d816544ff, 0x48ffbc3056ecff05, 0x0c059a0b063d0ee6, 0xbbd1d882ff059500, 0xa3bf043cf97325ff, 0x27ffbd6d1b83ff05, 0x090638010d3a91f8, 0x0605d4020b05f400, 0xff05c11f0105c600, 0x4187d1ffbbaeda7d, 0xcc2bff05cf8a04bd, 0x0b3c92d358ffbbb2, 0xff05e1940405e604, 0x039f9bffbc372d74, 0xba6aff05ef3501b9, 0x01bc56f7b8ffbce5, 0x0e060a240106183c, 0xbc8ae567ff060512, 0x131b043ac5180eff, 0xd9ffbc250f64ff06, 0x04062a0002bd2f67, 0xbd85c8a2ff062559, 0x339404bde6c41fff, 0x8affbd59297eff06, 0x040680ca04bc8a43, 0x04065205060660ad, 0x3931a1c3ff064dab, 0x5b0d0ebc01cbe3ff, 0x59ffbb0c586aff06, 0x0d067200023c31f1, 0xbb963969ff066d06, 0x7b0e0b3ba6fd5eff, 0xe3ff3a01a63cff06, 0x0906a401083a4142, 0xff0691140b069600, 0x7575abff3b232552, 0x0a0bff069f070d3c, 0x12bd820065ffbca6, 0xff06b10b0b06b600, 0xb72ec4ffbcb9d25a, 0x20d9ff06bf060dbb, 0x073c4a6309ffba65, 0x0e0758700507e400, 0x0406f4b004071433, 0xff06e1010d06e6ae, 0x06999dffbc03be7b, 0xd896ff06ef200eba, 0x123bca9b9dff3d19, 0xff07016e05070601, 0xd840fcffbc0ca2ae, 0x1664ff070f00093c, 0x0bbb3ad76cff3a28, 0x06072ac004073814, 0xbb9182caff072505, 0x330012bc698fc1ff, 0xa1ff3d343b9aff07, 0x0e074a00083bcc72, 0xb9b6f9e5ff074534, 0x530112bc42c5caff, 0x7fffbd06fbdfff07, 0x0e07a0c704bb327f, 0x0e0772210e078022, 0xbb2dd18dff076d1e, 0x7b010c3ca6c15fff, 0x59ffbc843ca4ff07, 0x0e07920009bd2a3a, 0x3c201c04ff078d29, 0x9b020dba1c8a9aff, 0x8eff3973f17cff07, 0x0e07c4010cbc4618, 0xff07b17b0507b628, 0xa4f299ff3d6525c1, 0x89b9ff07bf000c3b, 0x08bc20cb4eff3b35, 0xff07d1310e07d600, 0x3d93e8ffbcf1fbec, 0x75deff07df00023c, 0x0b3c735425ffbc97, 0x040830c704087414, 0x0e08021e0e0810bc, 0x3b93d5fbff07fd1c, 0x0b0b0bbc81d837ff, 0xe2ff3af5c777ff08, 0x0b0822000fbc37fd, 0xbb566456ff081d04, 0x2b01123c5b9900ff, 0xe9ff3b6c5231ff08, 0x0b08540b0bbc77a0, 0xff0841000f084607, 0x40ef1fffbc6c04c7, 0x8bb0ff084f2a05bb, 0x04b862a95bff3ccb, 0xff08610e0b0866c8, 0x7a8f1effbd1514a8, 0xfec7ff086f070d3c, 0x0c3c287e17ffbd86, 0x0e089c020808bc00, 0xff08891e0e088e28, 0x36f431ffbc7b9d52, 0x49f7ff08970011bb, 0x05bb15c374ff3c82, 0xff08a9010708ae31, 0xaeb26effbcf50e70, 0xb8faff08b7060d3b, 0x0e3c5512fcff3af1, 0x0408d21c0e08e01e, 0x3bc5cb92ff08cdb0, 0xdb02063d5115e5ff, 0xa2ffbd5f6240ff08, 0x0508f21f0e3c04cf, 0x3c862a29ff08ed45, 0xfb00083d9c5b71ff, 0x1fff3ac5ee8eff08, 0x0d0cde0e0e3c4ae3, 0x0e0a28c4040ad805, 0x0c0958a404099c08, 0x04092a6f04093800, 0xbb059f9fff09256d, 0x33020dbd0d9633ff, 0x4eff3bdd8423ff09, 0x04094a99043d22ed, 0xbaeea798ff094592, 0x539f04bc9c3551ff, 0x18ff3d1fd626ff09, 0x0d097c070e3bc01d, 0xff0969b304096e02, 0x53ce14ffbc1b0296, 0x52e0ff0977010939, 0x093d17f9e4ff3cb4, 0xff0989ac04098e00, 0x15b91effbd0b4cc0, 0x570cff0997020d3b, 0x09bdcba304ff3d10, 0x0209c4040b09e400, 0xff09b1030b09b600, 0xaa0900ff39c99bac, 0x5da2ff09bf0007bd, 0x043b483c52ff3ccc, 0xff09d1990409d6a7, 0x135f3fff3b83688d, 0x8f1eff09dfb304bd, 0x0eb8b0f000ff3c19, 0x0509fab0040a080d, 0x3c54a033ff09f590, 0x03030bbcc16d97ff, 0x1affbd36fbb8ff0a, 0x040a1a020d3c3e59, 0xbc8a7868ff0a1594, 0x23b5043c573620ff, 0x28ffbdd29198ff0a, 0x0e0a8202093dfc9f, 0x0b0a4296050a590d, 0xbcb08060ff0a3d03, 0x54c904baa82400ff, 0x1d00ff0a4f030b0a, 0xff3d0dd210ff3c6f, 0x0a7dc904bc4ee480, 0x0a6a030b0a6fc704, 0xfae0ff3db3b5d8ff, 0x20ff0a78030b3d20, 0xbbb20480ffbd6f68, 0xaf080e3db65648ff, 0x93030e0aa1c9040a, 0xc7043cd969a0ff0a, 0xff3dbef6c0ff0a9c, 0x0aaa9605bce5d440, 0x46a0ff3db83278ff, 0x95050ac10d0ebc61, 0xffbd8e0facff0abc, 0x0ad3ca04bd89badc, 0x22e600ff0acec704, 0x80ffbce58770ffbd, 0x040bc28a04bc37b1, 0x050b28000c0b3657, 0x070afa01110b0890, 0xba09885eff0af501, 0x0351043caae450ff, 0x9fff3c2e3df1ff0b, 0x070b1a01123d0ae9, 0xbb34171eff0b1500, 0x2391053c21151bff, 0x00ffbde6c39fff0b, 0xff0b310111ba45b6, 0x1a68c0ffbbdb4298, 0x5e010e0b7e9405be, 0x4b7f040b50000e0b, 0xaaffbb36e5bdff0b, 0xff0b59000c3b9cc1, 0xb18464ff3a7ea756, 0x6b88040b7089043c, 0x44ffbaf7d6a8ff0b, 0xff0b79030bbc9c36, 0xa6c172ff3b42d77d, 0x946b040ba2000c3c, 0x3f40ff0b8f01110b, 0x043db0051cff3b2c, 0x3b049942ff0b9d89, 0xb4000f3cb007edff, 0xb09aff0baf030b0b, 0x12bdd74963ffbe2a, 0x3c23a10eff0bbd01, 0x52010c3b870740ff, 0xee070e0c0e94050c, 0xdbb4040be0070b0b, 0x1dffba63c2a1ff0b, 0xff0be9000fbb7282, 0xd48963ffba9c9617, 0xfb000f0c00070b3a, 0x71ff3b657a60ff0b, 0xff0c090009ba34ad, 0x2ab374ffbacfebc1, 0x2495040c320d0e3b, 0x1141ff0c1f000c0c, 0x0ebd16de86ffbb08, 0xba1aca59ff0c2d06, 0x44c104ba16be53ff, 0x75a6ff0c3f000f0c, 0x04bb83cf2fff3ccc, 0x3c3a3ed2ff0c4dc8, 0x9a00093b502e1dff, 0x6cc5040c7ac7040c, 0x78feff0c6700020c, 0x02ba4db155ffbb9c, 0x3bfb26f3ff0c7500, 0x8cca04bc9a9d6bff, 0x7b4cff0c87c9040c, 0x0e3ce9099bff3b81, 0xbc23386fff0c950d, 0xbe0b0e3c2faaeeff, 0xab050e0cb0070e0c, 0x0fff3b282df7ff0c, 0xff0cb90a0bbc221e, 0xe44c41ffbb01196f, 0xcbc6040cd00d0e3c, 0xe1ffbbd79ce9ff0c, 0xff0cd90109bd3db9, 0x30252fff3caf3f3a, 0xf91d0e0f0c010cbc, 0x3200090d76190e0d, 0x04bb040d1200020d, 0xc53cff0cff060d0d, 0x0d3ca29f2affbbf2, 0x3b9d8f72ff0d0d07, 0x24000cbc644438ff, 0x5bbbff0d1f90050d, 0x04b9f8e25aff3af0, 0x3bfc072fff0d2dbb, 0x56020d3a291089ff, 0x43030b0d48180e0d, 0xb4ffbc9c36e3ff0d, 0xff0d51010b3ca077, 0x05b0f2ffbbc80e5e, 0x63000f0d68ba043d, 0x92ffbd38e273ff0d, 0xff0d71060d3a147a, 0xed8d36ff38ac535e, 0x9500090db51a0ebb, 0x8b00080d908f050d, 0xa0ff3d56ad5aff0d, 0x3dd3e3bcff3dc413, 0x0da201090da70b0b, 0x2060ff3c9951f0ff, 0x20ff0db00109bb19, 0xbcc6514cffbcaaa2, 0x0dcb1c0e0dd9000f, 0x84c484ff0dc60007, 0x020d3cd63d05ffbd, 0xffbc05e2bcff0dd4, 0x0deb050b3d8edf8a, 0x8b8065ff0de61b0e, 0x01073c17948dffbc, 0xffbbf8840dff0df4, 0x0e80040d3bb2f3b0, 0x0e25b4040e3cb704, 0x0e1292050e170008, 0x7b48ff3c855edcff, 0xf4ff0e20220ebcf9, 0x3d26f6a0ff3dd8fd, 0x0e32220e0e37020d, 0xa675ffbd9abcd5ff, 0x0ebe65ac1bffbc8a, 0x0e0e52bf040e602b, 0x3ca77a90ff0e4d23, 0x5b020dbbcd12e0ff, 0x7dff3b9db9a2ff0e, 0x0e0e722d0ebcdce0, 0xbc03e48bff0e6d2c, 0x7b2f0ebd8e6affff, 0xd9ff3d4ae3a5ff0e, 0x0b0ec8c204bb98df, 0x0b0e9a060d0ea80a, 0xbac98d46ff0e9503, 0xa3220ebc11e367ff, 0xceffbb86a777ff0e, 0x040eba200ebc8710, 0x3c97a9acff0eb5c0, 0xc3220e3dd36286ff, 0xb0ffbc1ae510ff0e, 0x0f0eec00083c54f7, 0xff0ed9c5040ede00, 0xc49b49ff3d41d7f2, 0xe190ff0ee79305bb, 0x0f3a34e1ffffbb07, 0xff0ef992050efe00, 0x7f6ec9ffbc290c3e, 0xbf05ff0f07000cbd, 0x0e3c04b47affb999, 0x040fa0cb04102c1c, 0x040f3cc6040f5cca, 0xff0f29190e0f2ec5, 0xc5a4dbff3b81fb91, 0xf88eff0f37060dbc, 0x0d3d643db1ffbd38, 0xff0f490a0b0f4e06, 0xe1ac9eff399c3f62, 0xa043ff0f57140e3c, 0x09bc9c4fb7ff3cb1, 0x0b0f72030b0f8000, 0x3cb4b9b7ff0f6d01, 0x7b00123b7128adff, 0xf8ffbbd61700ff0f, 0x0d0f92170ebcf701, 0xbc44ed75ff0f8d06, 0x9b180ebd58ad9cff, 0xfdffbd1c5948ff0f, 0x0e0fe800093d84e2, 0x020fba140e0fc817, 0x3d15a30dff0fb500, 0xc390053c3864d2ff, 0x8effbc1f4630ff0f, 0x080fda180ebd23be, 0x3d12a669ff0fd500, 0xe3190e3dcaa320ff, 0xbcff3c208baaff0f, 0x0e100c00023d417c, 0xff0ff992050ffe18, 0xdb3220ff3ca6d493, 0x86efff10079305bb, 0x09bcb60eabffbd3f, 0xff1019cd04101e01, 0x78239aff3ba1c74e, 0x5f11ff1027030b3d, 0x12bc591442ff3bb9, 0x021078000910bc01, 0x04104a2d0e105800, 0xbc4695f5ff1045cd, 0x53cd043a4147f0ff, 0xd0ff3d3eba5dff10, 0x04106a1d0e3b30b1, 0xbc9dbb3cff1065cd, 0x73050bbba10732ff, 0xe2ffbc185babff10, 0x0e109c270e3ca929, 0xff10898e05108e1f, 0xa49fa3ffbd0e47b2, 0x460cff109700023c, 0x0dbd2c3f81ffbc8e, 0xff10a9000210ae06, 0x298937ff3d7bcb88, 0x3a7aff10b72e0e3c, 0x0e3c88ca70ff3b92, 0x0b10e4020d11041d, 0xff10d1bc0410d60b, 0xbdf2efffbc3ffdb8, 0x87f0ff10df9105bc, 0x0bbb29cac0ff3c03, 0xff10f1000710f60b, 0xd93002ff3d5d1756, 0xa7daff10ff91053c, 0x0b3d692290ff3d99, 0x0e111a0009112803, 0xbcaf3d44ff111522, 0x239105ba903b80ff, 0x60ffbd5e9a68ff11, 0x09113a0007bce7f7, 0xbd71d7f2ff113500, 0x3de6ffbd253f19ff, 0x000800000013bdf0, 0x0001000003e80000, 0x0000000011fc0000, 0x160e09008d050000, 0x98040248c3040484, 0x900400a09704012c, 0x8604003c8804005c, 0x7aff00298805002e, 0xba9be749ff371a8b, 0x43961bff00370305, 0x040d3aef5208ff3d, 0xd9ff0049060e004e, 0xbac4b9b0ffbc85fd, 0x75ee44ff00578b04, 0x0012bb33e432ff3b, 0x040e0072070e0080, 0xffbbcbd671ff006d, 0x007b080e3c78d332, 0x7f96ffbceb59b5ff, 0x3c0100923e01bb27, 0xffbcebb3fdff008d, 0x009b060dbe1bbb88, 0xf311ff3aecb324ff, 0x090600e8000f3ba7, 0x000200ba040e00c8, 0xffbdce792eff00b5, 0x00c30606bc6fc11c, 0xfcafffbbf27173ff, 0x000200da010e3d36, 0xffbcac6d8eff00d5, 0x00e3020d3c377c0b, 0xcaf5ff3c85eb8bff, 0x0112010c120e3d89, 0xbaff00f9070e00fe, 0xbaa4d0b3ff3c5c64, 0x82181cff01070002, 0x030bbb20f8eeffbc, 0x53ff01190008011e, 0x3b748d94ffbc9da8, 0x8b40a7ff0127000c, 0x070dbd123f7effbc, 0x00110178000801bc, 0x7905014a02070158, 0xffbc114defff0145, 0x0153070eba99ad84, 0x0ac0ffba5b9f7bff, 0x0007016a8a05bc5f, 0xffbb513935ff0165, 0x01730109b9ae54b3, 0x7015ffb877f03aff, 0x9e04019ca5043b93, 0x63ff01890105018e, 0xba5ac3b9ff3c81e2, 0x498e0bff0197060e, 0x130e3c56a370ffba, 0x4cff01a90d0e01ae, 0xbbd7a90cff38dfda, 0xfa6360ff01b70012, 0x00093a790b32ff3c, 0x010c01e40c0b0204, 0xdfff01d1640501d6, 0xbb722cdaff3c3ca8, 0x711893ff01df0e0e, 0x070ebda3cd9cff3c, 0x7fff01f1030e01f6, 0xbd1e97a1ff3d56e4, 0x83ed16ff01ff080e, 0x79053c586200ff3d, 0x0c0b021a01090228, 0xffbbb96846ff0215, 0x0223090bbd168659, 0x905fffbce06361ff, 0x010e023a070ebd4d, 0xffba9a98a3ff0235, 0x0243b204bd600887, 0x2eddff3c8487d9ff, 0x090e03680b0ebcac, 0x030d0298c70402dc, 0x010e026ac5040278, 0xffbca95828ff0265, 0x0273020dbc4ec4a9, 0x12d7ffba837e1bff, 0x0b0b028a0002bc2a, 0xffba19c5a8ff0285, 0x029300123c78098f, 0x8969ffbba862ecff, 0x4c0502bc52053ab7, 0x6aff02a9170602ae, 0xba95e735ff3b0f2f, 0x38a03bff02b7020d, 0xc8043b2f1713ff3d, 0x70ff02c9000702ce, 0x3d387535ffbc3915, 0x84f6ebff02d7070e, 0x0012bced0e4dffbb, 0x0207030400020324, 0x70ff02f1000c02f6, 0x3d3c899fff3c59ad, 0xf84426ff02ff0108, 0x89053a4c8400ff3c, 0x1eff031188050316, 0x3cfa36a3ff3bb499, 0xb0b0cdff031fcc04, 0x0006bd031888ff3c, 0x000c033a8b050348, 0xffbd1d3fdbff0335, 0x03430008bd807b1e, 0x7853ffbc418b8dff, 0x0b0b035a0c0bbd36, 0xff3b72cb6bff0355, 0x0363000cbd109265, 0x8433ff39317000ff, 0x000803f8000f3cce, 0x020d0394000c03b4, 0x41ff0381c9040386, 0xbccdba21ff3bf8f9, 0xc66320ff038fc904, 0x00023c37d834ffbc, 0xe9ff03a1160603a6, 0x3dd8cc86ff3c9361, 0x2d9143ff03af0107, 0x0007bc452ca2ff3c, 0x550503ca030d03d8, 0xffbae3ce06ff03c5, 0x03d32b053cbb66cf, 0xfaebff3c89660cff, 0x4c0503ea040d3d27, 0xffbae8daa0ff03e5, 0x03f30f0e3bef3fce, 0x45b5ff3c234112ff, 0xc4040440cc043d02, 0x0b0b0412000c0420, 0xff3c223099ff040d, 0x041b0108bb3bef1e, 0x1ec7ffbc9227d7ff, 0x00090432140ebb31, 0xffbb01afefff042d, 0x043b010cbbeabe6a, 0x7b3eff3b0a604aff, 0x0012046400023cb2, 0xa9ff04510e0e0456, 0x3d96f038ff3c4fb6, 0x1b73baff045f0108, 0x88053bcfed15ffbc, 0xd3ff047185050476, 0xbd2bea93ffbc68a5, 0xdab954ff047f8c05, 0x5705bd6ac20bff3b, 0x340105a8020806c4, 0x500504d8ae04051c, 0x8e0404aaab0404b8, 0xffb8ab309cff04a5, 0x04b3060d395bc52f, 0x1802ffbbb8ff2cff, 0x000704ca0008bd09, 0xffbae544e5ff04c5, 0x04d302123c1e3e21, 0xa40aff3c547082ff, 0x310504fc2a0e3daf, 0xecff04e92e0104ee, 0xbe450329ffbe32a6, 0xd8c565ff04f73f05, 0x360ebd33f5bbffbd, 0x78ff05090105050e, 0x3c37a3ffffbcccb4, 0x35ba19ff05170006, 0x260ebb5dc514ffbd, 0x230e054498040564, 0x3aff053197040536, 0xbbda700bff39edda, 0x93d1dbff053f9604, 0x240ebd49fab1ffbb, 0x5dff0551000f0556, 0x3ada1babff3c0aa6, 0x020de6ff055f250e, 0xc6043c34792cffbd, 0x280e057abc040588, 0xffbaa24d67ff0575, 0x0583060dbad1804b, 0xf62fff3b75bbb2ff, 0x3601059a0705bc00, 0xff3e224761ff0595, 0x05a30002bcf7d04b, 0xfae4ff3be8ff7cff, 0xb6040638010cbbac, 0x7f0405d44c0505f4, 0x07ff05c1010705c6, 0xba83d1e2ff3aa07b, 0xa3e3e4ff05cf2e03, 0x180e3b001e77ffbb, 0xbeff05e1000705e6, 0x3c82a3e1ffbbd128, 0x11d9edff05efb504, 0x51053cd16aabffbb, 0x4605060abc040618, 0xffbb4d69feff0605, 0x0613c0043b5a2e04, 0x2b04ff3c17e52dff, 0x310e062a5405bb9f, 0xffbc9e039cff0625, 0x0633c4043c155bad, 0xde24ffbb0a6258ff, 0x19050680230e3c90, 0xb204065207060660, 0xffbafab3a6ff064d, 0x065bbc043cd459e6, 0x10f4ff3c3ba6afff, 0x020d06720d0bbcfb, 0xff3c3fea5dff066d, 0x067b0002bc8ece1c, 0x7c15ffbc1453fbff, 0xa60406a444053c1d, 0xc2ff069123050696, 0x3c28c8f8ffbab6e9, 0x69a0aaff069f1c05, 0x0e0bbc11ca95ff3b, 0x39ff06b1c40406b6, 0xbbdf5ab6ff3c851d, 0x458d1eff06bf0007, 0x01073b7ad4a5ffbd, 0x00070758870507e4, 0x010c06f4bb040714, 0x1bff06e1ba0406e6, 0xbc263921ffba61b7, 0x72987cff06ef170e, 0x75053beaea0dffbc, 0x70ff0701220e0706, 0xbc0983dfffbc7786, 0xcac3f0ff070f170e, 0x8605b8830142ffbc, 0x070d072a00080738, 0xff3acfa819ff0725, 0x0733140bbc725235, 0x50e9ff3b0dc27fff, 0x1c0e074a1d0e3c06, 0xffba2419e0ff0745, 0x07530112bc928e84, 0xc9cbff3c3876a9ff, 0x140b07a00208bb5e, 0xb004077200080780, 0xffb9beedeeff076d, 0x077b000fb9df5957, 0x46adff3b063b17ff, 0x00090792cb043a49, 0xff3bc44a0fff078d, 0x079b0008bc302d56, 0x7b6fffbc303568ff, 0x000f07c4bf043c30, 0xf6ff07b1000707b6, 0x38ce2000ff3daa34, 0xed34f7ff07bfbe04, 0x000c3cd7c7edffb9, 0x3bff07d1310e07d6, 0x3d13f5ceff3ad185, 0xa554baff07df2b0e, 0x02073cb08978ffbc, 0xb6040830c1040874, 0x090b08020a0b0810, 0xff38ea752aff07fd, 0x080b0002bc8a6c23, 0x3986ff3b231b6eff, 0x260e08225b05bb76, 0xff3d04699dff081d, 0x082bb904bc1e5839, 0xa60bff3b9ad5c3ff, 0x001208540208b95b, 0x8dff0841140b0846, 0x3c1e51f4ffbaceed, 0xcf6583ff084f5a05, 0x5c05bb02a209ff3c, 0x66ff0861220e0866, 0x3c3b8806ffbca0af, 0xe33e76ff086f000f, 0x0b0bbbfbe04dffbc, 0x000d089c840408bc, 0xfbff08898304088e, 0xbeb060a0ffbd1b5d, 0xd2fe6aff08970112, 0x73053c232522ffbb, 0x42ff08a9010c08ae, 0x3bf136bcff3aec10, 0x9a45ebff08b7020d, 0x0e0b3a749f22ffbb, 0xb80408d2ba0408e0, 0xffbc6cf199ff08cd, 0x08db000c3cbaf0d9, 0x0c8dffbcb51ac0ff, 0x000208f2ca04bd6b, 0xffbc5de9aaff08ed, 0x08fbcd043af4045b, 0xc877ff3ba70523ff, 0x040d0d800e0e3c97, 0x01090a2800070b44, 0x000d09589405099c, 0x0112092a7b040938, 0xff3ca83099ff0925, 0x0933080eb94d3477, 0x599dff3c83ec7cff, 0x7604094a00023d8f, 0xffbc90e354ff0945, 0x0953080ebb0b4854, 0xcdf8ffba34d6f4ff, 0x0112097c000d3ba5, 0x0bff0969000b096e, 0x3c9871a1ff3bafb8, 0xf765e4ff0977000e, 0x0009bcb71800ffbb, 0x2eff0989080e098e, 0x3c8fb2daff3b2feb, 0x5cf5b9ff0997030b, 0x030d3c5cddfbffbc, 0x0d0e09c4030b09e4, 0xe8ff09b1080e09b6, 0xbd19cf46ff3aebe6, 0xaaabfeff09bf0209, 0x00023b6659abff3c, 0x90ff09d1a70409d6, 0x3cb55fb9ffbc8ca5, 0x9a0ef9ff09df9205, 0x010e3d030cd3ff3c, 0x8e0509fa000e0a08, 0xffbced1320ff09f5, 0x0a030209bd267e6a, 0x9540ff3b881255ff, 0x080e0a1ab5043d0b, 0xffbd15a060ff0a15, 0x0a230d0ebe32d760, 0x5c08ffbd47eb7eff, 0x70040ab882043de3, 0x000c0a545b040a74, 0xd7ff0a4101110a46, 0xbb97b1f7ff3bf165, 0x0284c7ff0a4f020e, 0x000fbc0bce30ff3d, 0xf9ff0a61070e0a66, 0x3cd41a6cffbc5aa5, 0x895c5aff0a6f030b, 0x030b3b9712beff3c, 0x7f040a8a000d0a98, 0xff3c3b195fff0a85, 0x0a9390053d8a7ef4, 0xe479ffbc862e3eff, 0x90050aaa000e3b6e, 0xffbc1b5078ff0aa5, 0x0ab37b043c4fd457, 0x2c6fff3cc0cd83ff, 0x000c0b0088043d26, 0x00020ad2000e0ae0, 0xffbcc3b088ff0acd, 0x0adb0107bc69cf9a, 0x9480ff3c5f63e0ff, 0x030b0af2000dbc3a, 0xffbdfa0e80ff0aed, 0x0afb0002bd925528, 0xca00ffbd014c98ff, 0x020d0b24000c3b8d, 0x9cff0b11020e0b16, 0xbb10b849ff3bfe46, 0xd49d9aff0b1f030b, 0x99043d22d790ff3c, 0x76ff0b31070e0b36, 0x3b87b9c9ffbcf311, 0xa133a5ff0b3fb504, 0x000f3a011f88ffbb, 0x02090bd8030b0c64, 0x01090b7401080b94, 0xd7ff0b6100090b66, 0x3c284b47ff3af832, 0x25945bff0b6f080e, 0x010ebd7e2e89ff3c, 0x50ff0b8100070b86, 0xbd25605affbd6bbe, 0x092144ff0b8f0007, 0x010e3bb00d5aff3d, 0x8f050baa000e0bb8, 0xffbbf81630ff0ba5, 0x0bb399043c75ea57, 0xc15fff3d05cd70ff, 0x00020bca070ebc29, 0xffbc8ac6f5ff0bc5, 0x0bd3080ebd522270, 0x7fdaff3d06b6d8ff, 0x91050c200007bd02, 0x070b0bf2000c0c00, 0xff3c2d4645ff0bed, 0x0bfb7b04bd9ab15a, 0x9aa1ff3ceda5e3ff, 0x00020c12a7043bdb, 0xffbd19a9ebff0c0d, 0x0c1b040b3a9f8a7f, 0x20dcff3cdebdddff, 0x90040c4494043a91, 0xc8ff0c317f040c36, 0x3cee9df9ffbd458d, 0x2cb6a7ff0c3f010e, 0x0107bd2484e1ffbe, 0x12ff0c5100020c56, 0xbb8e878cffbcb4bd, 0x0b4c03ff0c5f070e, 0x0009bc02d63bff3c, 0x060d0cb000070cf4, 0x0a0e0c820b0e0c90, 0xffbaee823aff0c7d, 0x0c8b0b0bbce4d5f5, 0x068fff3bdc1b0cff, 0x000e0ca2070ebbda, 0xffbb52a494ff0c9d, 0x0cab8f053b70573d, 0x4533ffbb326aeaff, 0x010b0cd4020b3a46, 0x1aff0cc1000c0cc6, 0xbba7b29bffb7555c, 0x31ae6cff0ccf030e, 0x010cbc43470dffbb, 0x9eff0ce100110ce6, 0x3aa8c971ffbae5db, 0xe49f2bff0cef070e, 0x0209bbf0adf8ff3a, 0x080e0d1c010c0d3c, 0xcdff0d098e050d0e, 0x3a6dec05ffbaef46, 0x4c43ccff0d170012, 0x000e39cd6df4ffbb, 0x36ff0d2994050d2e, 0xbc6d6bb8ffbb5912, 0xd1267dff0d370b0b, 0x060dbca79395ff3b, 0x070e0d52c1040d60, 0xffbb2a7b41ff0d4d, 0x0d5b0d0e3b65cca8, 0x7881ff3b017841ff, 0x00120d72010ebbab, 0xffbb6086b3ff0d6d, 0x0d7b00123aebf4b6, 0x49f8ffbbe5ea25ff, 0x1d0e0fc0010cbcb1, 0x00070e18150e0ea4, 0x0f0e0db4bf040dd4, 0x35ff0da1a0040da6, 0x3cdad82dffbb55f5, 0x66033dff0daf0e0b, 0xc204bc9a75caffbb, 0xd8ff0dc100090dc6, 0xbc1a43b6ff3d2439, 0xbf031cff0dcf000f, 0x9205b97acfdcff3c, 0x8f050deac8040df8, 0xffbc645f15ff0de5, 0x0df3c9043b4885a4, 0xb464ff3d876a3dff, 0xb9040e0a000d3c2b, 0xff3bdc5221ff0e05, 0x0e13140e3d2aa12c, 0xeea8ffbc2ec785ff, 0x070d0e60c9043c32, 0x000f0e32190e0e40, 0xff3ba084a5ff0e2d, 0x0e3b000939baca26, 0x851fffbb687706ff, 0x000c0e520009bcd2, 0xffbce82902ff0e4d, 0x0e5b8f05bda4b8a6, 0x1133ffbbdcc47bff, 0x95050e84ca043c65, 0xe5ff0e7100080e76, 0x3c2b13a0ffbb978d, 0x64311fff0e7f000c, 0x01073d0121fbff3c, 0x11ff0e910a0b0e96, 0xbae847daffbc69f6, 0x922306ff0e9f170e, 0x00023b0f874bff3c, 0xcc040ef0070b0f34, 0xbc040ec2220e0ed0, 0xffbd28cf3dff0ebd, 0x0ecb340e3c10512c, 0x7f40ff3b2c4e27ff, 0x01110ee200073d7a, 0xff3c899d21ff0edd, 0x0eeb00083d6a51db, 0x084cffba85451dff, 0x200e0f14c2043cba, 0x46ff0f0100090f06, 0xbd205561ff3da360, 0x0d82e1ff0f0f2b0e, 0xc304bd12583bff3a, 0xd6ff0f21230e0f26, 0xbd18f206ffbc07a1, 0x6352ecff0f2f220e, 0xb5043a482330ffbc, 0xb1040f5cb4040f7c, 0xedff0f4900090f4e, 0xbd5f210dff3a6adb, 0xa3df5cff0f57000c, 0x1f0e3d8319e3ff3b, 0xc5ff0f6900090f6e, 0xbb6ed500ffbce045, 0xcb4428ff0f77000c, 0xbf04bd9c4ac8ffbb, 0x000f0f92be040fa0, 0xff3c29ba93ff0f8d, 0x0f9b0009bac56053, 0x99cbff3d1b3591ff, 0x1f0e0fb2000fbbaf, 0xff3d427effff0fad, 0x0fbb000cbbc85d01, 0xc063ffba5390ebff, 0x1b0e10e01c0e3b82, 0x120e1010140e1054, 0x00020fe2100e0ff0, 0xffbb953f0dff0fdd, 0x0feb00023d6599d7, 0xe1a3ffbb90e090ff, 0xc5041002050bbcf1, 0xffbc747622ff0ffd, 0x100bc1043b8aae41, 0xba68ff3d4e9e50ff, 0xc6041034060d3c51, 0x01ff1021c4041026, 0xbd190b98ffbad5f9, 0x52cb29ff102fcc04, 0xc604bc78c5f3ff3c, 0x71ff10418e051046, 0x3d87bb51ff3c42df, 0x1e2821ff104f170e, 0x0009ba815b3effbd, 0x0b0b107ccc04109c, 0x59ff10690002106e, 0x3d6b3253ff3da134, 0x515440ff10778e05, 0x00123cea7dd5ff3d, 0x0dff10890b0b108e, 0xbcc9ffebff3d2c9e, 0x0aab98ff10970b0b, 0xcd043d9ffe5cff3d, 0x000210b28f0510c0, 0xffbc2da640ff10ad, 0x10bb060dbcc0e488, 0x9e40ffbcef9580ff, 0x910510d29305bda2, 0xff3b7699f0ff10cd, 0x10db0012bc83e1a0, 0x7b18ff3db2b448ff, 0x1d0e1170280ebc8b, 0x0011110c0b0b112c, 0x1dff10f9000710fe, 0xbc452dacff3bb0f2, 0x84b0d3ff1107030b, 0x0207bc9573d2ffbb, 0x84ff1119060d111e, 0xbba16c83ff3c2d74, 0x5e346eff11270012, 0x200ebc6fa9e8ffbd, 0xcd04114200121150, 0xff3d47f54bff113d, 0x114bca043ddcd385, 0x5cc6ff3c9efbd5ff, 0x220e11620011bd1a, 0xff3d45b99cff115d, 0x116bcd04bc8e2649, 0xbefcff3b00051bff, 0x910511b82c0e3d8b, 0xc704118acb041198, 0xffbc11cd66ff1185, 0x11938f053ca2ea4b, 0xb1c6ffbca06024ff, 0x940511aa0108b98a, 0xffbc8aff2dff11a5, 0x11b39205bd17a0d5, 0x2a10ff3d22dc82ff, 0x8e0511dc2f0ebbd6, 0x98ff11c90b0b11ce, 0xbcd337adffbd6601, 0x961285ff11d70008, 0x00023de14423ff3c, 0xe1ff11e98f0511ee, 0x3b1f0658ff3d0925, 0x2d537dff11f70009, 0x00133cb7c783ffbc, 0x03e8000000080000, 0x1109000000010000, 0x8d05000000000000, 0x1906039a160e0816, 0x8505012caf040248, 0x5304005c5b0400a0, 0x0906002e4e05003c, 0xffb896fa2eff0029, 0x0037070ebb55ff82, 0x65c5ff3a2f0e78ff, 0x020e004e070ebb41, 0xffbb4e456aff0049, 0x00576e053b85a97a, 0x43ceffb98d88deff, 0x90040080030bbc5e, 0x91ff006d03050072, 0xbb15876dffb9f208, 0x2d6d8dff007b0109, 0xae04bc196281ffba, 0x84ff008d0d0b0092, 0x3a3f11e8ff3a60e9, 0xd580feff009b0d0e, 0x97043c95899fffbb, 0x7b0400c8020d00e8, 0x2bff00b5070e00ba, 0xbc8f6bceff3b01d7, 0xcf73faff00c39604, 0x080ebd35388aff3b, 0x21ff00d5000e00da, 0x3a834aa4ffbba346, 0xf11402ff00e3030b, 0x010c3c3a9c75ffba, 0x000c00fe0009010c, 0xffb9b4f1a2ff00f9, 0x0107020d3a0b3a52, 0xeb15ff3c54751cff, 0x0b0e011e8b05ba87, 0xff3a3f8ed0ff0119, 0x0127060d3c800c7c, 0x73cbffbca13459ff, 0x000201bc010c3c16, 0x10050158000f0178, 0x78ff01451506014a, 0x3ceb1ee6ff3b4878, 0xdb0a4cff01538805, 0x88053cb26cb2ffb9, 0x83ff01650b0e016a, 0xbb831ac0ffba9395, 0xa4208bff01730e0e, 0x070d3c224901ff3a, 0x0209018ebf04019c, 0xff39922c44ff0189, 0x0197010bbbe92051, 0xf10dffbc8e3220ff, 0x000c01ae070e3802, 0xffbc845140ff01a9, 0x01b7b204bda2d9ea, 0xe09effbcb39ac6ff, 0x000202040d0e3be1, 0x070d01d6001101e4, 0xff3c0c8f5aff01d1, 0x01df5d05bcf1f783, 0x7e74ff3b6769b2ff, 0xb90401f60012bc86, 0xff3caa8da0ff01f1, 0x01ffb804bafa44dd, 0xe7e4ffbbed05c4ff, 0x020b0228050b3a8b, 0x6bff02150108021a, 0x3be15eeaffbcefc8, 0x38faaaff0223070d, 0x14063b9f2be7ffbc, 0x30ff02350209023a, 0xbcae7233ff3c84ff, 0x4b6aecff0243bc04, 0x130e3bf58991ffbd, 0x950402dc02070368, 0x04050278040e0298, 0x39ff02650205026a, 0x3c456753ff3b881d, 0xb9dcf1ff02738004, 0x04053bc7eabbffbb, 0x57ff0285050b028a, 0xbcaa259dffbbdb35, 0xdd705bff0293070e, 0xba043cda198cff3b, 0x000f02ae0c0502bc, 0xffbc522b7bff02a9, 0x02b7050e3a3077e2, 0xd5b0ff37f87755ff, 0x000f02cebc043c56, 0xff3c626116ff02c9, 0x02d707053b1bd934, 0xe524ffbbcacc69ff, 0x030b0324000fba2e, 0x000b02f600020304, 0xffbcb55b37ff02f1, 0x02ff000eb9c22cb1, 0x6c8fff385fe680ff, 0xb304031601053c65, 0xffbb752cd1ff0311, 0x031f000cbdd56e18, 0x6492ff3bcd29c8ff, 0x010e034897043d49, 0xbfff03350008033a, 0x3bc429e9ff3b7010, 0x46f3a2ff0343010c, 0x010e3ad00080ff3c, 0xdfff03550005035a, 0xb85caf78ff3b8b5f, 0xb56788ff0363010c, 0xbf04bb6ce3edff3b, 0x1105037e19050383, 0xff3bc76570ff0379, 0x9b5c14ff3b809130, 0x53ccff038c07053c, 0xd0ff03950c053c9f, 0x3c99ecf4ff3c555d, 0x04beaf0405da5705, 0x03ee09060432ab04, 0x03c09a0403ce9e04, 0xd9c4f7ff03bb9804, 0x3b013aad8ab8ffb8, 0xffbb437d18ff03c9, 0x03e0030d3b853c72, 0x758f3eff03dba204, 0x010c3aada9eaff3c, 0xffbb0b364fff03e9, 0x04124001bac17abf, 0x03ff070504047f04, 0xbc13ff3a475c80ff, 0x0bff040d030bbc85, 0x3b58f027ff3cc12c, 0x041f060504248404, 0x3a7eff3b96e449ff, 0x26ff042d2c0ebcac, 0xbc8a1a8eff3b7f0a, 0x045a0506047a220e, 0x04470107044c3305, 0xad61ffbcc0e2e1ff, 0xbeff0455060dbd7c, 0xbba65571ffbce4f2, 0x04670111046cae04, 0x10d0ffbc60fa90ff, 0xa6ff047501083be9, 0xbc8124cbff3dd817, 0x04902b0e049e130b, 0x0ff74cff048b060d, 0x0b0b3caf0855ffba, 0xffbb3a1839ff0499, 0x04b0ac04bd2050e3, 0x1b482dff04ab3c01, 0x00063d474cf8ffbd, 0xff3bac16f5ff04b9, 0x054e5505bc818782, 0x04ea210e050a2f0e, 0x04d70c0604dc060d, 0xdfceff3c23b22dff, 0xa8ff04e51c0ebac4, 0xbbb41ac4ff3cdd9b, 0x04f73d0104fc5005, 0x250effbcf8f0beff, 0xdaff050554053af1, 0x3caa9585ffbbfa7d, 0x0520060d052e300e, 0x10d95aff051b0605, 0x0011bb9260feffbd, 0xff3cb39b9aff0529, 0x05401206bdaccf86, 0xdf629fff053b0008, 0x320e3b0d5955ffbb, 0xff3d6bb9afff0549, 0x059656053b919035, 0x0568070d05761e0e, 0xb2491dff05630108, 0x100bbd5db5d8ffbd, 0xffbd03652fff0571, 0x05880e0b3c6d5063, 0xcefb43ff05830012, 0x0107bb1bb790ffbc, 0xffbd3eb380ff0591, 0x05ba280ebc3817da, 0x05a7070d05ac0002, 0x7ac6ff3d60a6fcff, 0xfcff05b5b2043b44, 0x3c2127d0ffbcd7ee, 0x05c7000f05ccc304, 0x16ceff3c3f71c6ff, 0x0fff05d50002bc8b, 0x3d1af7afffbb6c7d, 0x066e870506fa0107, 0x060abb04062a0007, 0x05f7ba0405fc010c, 0x99d6ffba4b2402ff, 0xf7ff0605170ebc15, 0x3bd36c1dffbc5a55, 0x0617220e061c7505, 0x86ebffbc5ec5d4ff, 0x46ff0625080bbbf7, 0x39dfde98ffbc3c68, 0x0640b404064e8605, 0xc05895ff063b6e05, 0xb5043b07d699ff3a, 0xffbc7d75caff0649, 0x06601d0e3b7400d5, 0x50f97cff065b0e0b, 0x0112bc56ed3dff3a, 0xff3c260469ff0669, 0x06b6cc04bb488291, 0x0688020d0696040d, 0x98bf48ff06830108, 0x2a0e3c83c5fbff3b, 0xffbd38839bff0691, 0x06a8170e3cf0c715, 0x0fa147ff06a30009, 0x0008bd06697dffbb, 0xff3a5a6959ff06b1, 0x06da8a053af4ec97, 0x06c7000206cc8905, 0xd321ff3b8b42e7ff, 0xd3ff06d5280ebc94, 0xbb6ece33ff3d5954, 0x06e7220e06ec0208, 0x79dcff3c430bd7ff, 0x46ff06f5010cbb45, 0xbdab9608ffbc0382, 0x0746c104078a0207, 0x07180a0b0726b604, 0x94c6c0ff0713010b, 0x00023987f7e0ffbb, 0xff3b12cbd9ff0721, 0x0738b804bb5d9a46, 0xbbac59ff07330011, 0xbc043c89139dffbc, 0xffbb809585ff0741, 0x076a02083b1b953a, 0x0757090b075c0012, 0x66b1ffbc4efdfcff, 0xa8ff07655b053b9f, 0xbb01fd4aff3ce15d, 0x0777020d077c000f, 0xcbd7ffbb9d7e1dff, 0xb8ff07852a0ebd29, 0x3b948edaffbc3dda, 0x07b2840407d20b0b, 0x079f6c0507a40108, 0xc379ffba57b70dff, 0x70ff07ad7604bdbf, 0xbe62ca1cffbe3b90, 0x07bfc80407c47405, 0x72eeff3b10c3afff, 0xceff07cd00083c3c, 0xbb566e13ff3af54c, 0x07e8000c07f6110b, 0x4bf566ff07e3c604, 0x230ebd372bbaffbb, 0xffbcba48f7ff07f1, 0x08080108bd84ec03, 0x6a56a7ff0803ca04, 0x5b053c4a008affbb, 0xff3cdb2111ff0811, 0x0c8d0e0ebc77a731, 0x093e00070a51040d, 0x086e940508b20109, 0x08400a0e084e000d, 0xb47e1bff083b8b04, 0x5e04bdafa9a4ff3b, 0xffbd3c7708ff0849, 0x086093053d8103dd, 0x19137cff085b7604, 0x00023af262a9ffbc, 0xffbcbba3ebff0869, 0x0892000dbadd8cc7, 0x087f01110884000c, 0x8549ff3c4444cfff, 0xbcff088d030bbc4b, 0x3b55f740ffbd58cd, 0x089fa30408a4b904, 0x1a1aff3c19f40dff, 0x8cff08ad020bbb91, 0x3c7280fdff3990be, 0x08da030b08fa030d, 0x08c7080e08cc0d0e, 0x6dc4ff3ad44ef8ff, 0xbeff08d50209bd0a, 0x3b4f50abff3c999a, 0x08e7930508ec0002, 0x87b0ff3a0d2880ff, 0x19ff08f592053c84, 0x3cebe3e6ff3c8aa7, 0x0910000e091e030e, 0x15d82aff090b070b, 0x010ebcd55e00ffbd, 0xff3c2b8c80ff0919, 0x0930ba043d959680, 0xce4260ff092ba704, 0x0d0ebe066450ffbc, 0xffbd04b372ff0939, 0x09ce82043dcc9fa0, 0x096a7304098a7c04, 0x0957000c095c6d04, 0xd3a3ffba2c1e9eff, 0xbaff0965030b3c8a, 0xbd61058effbc7d8e, 0x0977000b097c0111, 0xd896ff3c619bc0ff, 0xbdff09857704bd9f, 0x3c24ff0eff3d151c, 0x09a0010709ae000d, 0x1bd0bcff099b010b, 0x010b3d5da608ff3d, 0xff3b355680ff09a9, 0x09c0020d3cdac300, 0x4d7bcfff09bb030b, 0x030b3bdbbfadffbb, 0xffbb65fed5ff09c9, 0x0a0d88043d068560, 0x09e8030b09ed000d, 0xe398b8ff09e38f05, 0x08ffbdde8168ffbd, 0x0c09ff0002bd83b3, 0xbcb01ee0ff09fa00, 0x08000ebce8bd10ff, 0x4dffbc526e09ff0a, 0x0d0a31000c3b90b7, 0xff0a1eb0040a2302, 0x91135dff3b1e9948, 0x4a2cff0a2c9005bc, 0x043cb27328ff3d0c, 0xff0a3e000d0a4399, 0xce3516ff3ccfefdf, 0x8bb8ff0a4c030ebc, 0x0fbaf1c96bffbc1f, 0x090ae5030b0b7100, 0x040a8197040aa102, 0xff0a6e0d0e0a7395, 0x6e33f6ff3a26af15, 0x39abff0a7c00093d, 0x0e3cc65a68ffbd64, 0xff0a8e090e0a930d, 0x88764cff3be0bb83, 0x5f04ff0a9c060dbb, 0x0ebd5896d0ff3ca6, 0x040ab7000e0ac501, 0x3b7b0ef4ff0ab2a7, 0xc0b3043ca232f8ff, 0xb4ffbc52ef84ff0a, 0x050ad7070e3c2d93, 0xbd7a1094ff0ad290, 0xe0080ebd0582d8ff, 0x1aff3cf27c50ff0a, 0x050b2d0007bceae6, 0x050aff040b0b0d91, 0xbdba5310ff0afa8f, 0x08010e3bfb73e8ff, 0xf3ff3c6c7da9ff0b, 0x0b0b1f6b043ba882, 0x3dcac9dcff0b1a05, 0x28a7043de80e7cff, 0x52ffbc6fd834ff0b, 0x040b5194043aee62, 0xff0b3e060d0b4390, 0xc697bdffbcd3f134, 0x712fff0b4c010e3c, 0x0ebd141131ffbe1b, 0xff0b5e8f050b6303, 0xffaa75ffbc9bc51a, 0xb009ff0b6ca7043b, 0x09bb85e68effbd66, 0x0d0bbd00070c0100, 0x0c0b8f0b0e0b9d06, 0x391bbdc1ff0b8a00, 0x980b0bbbfda9a4ff, 0x0eff3bc6184fff0b, 0x0c0baf070ebbc439, 0x39847ad3ff0baa00, 0xb88f053b9816feff, 0x53ffbb20937dff0b, 0x0b0be1030b3a3271, 0xff0bce010b0bd302, 0xd13113ffbac3b997, 0x7479ff0bdc0b0ebb, 0x053be5c70fffbad3, 0xff0beebc040bf38e, 0x877fb2ff3b8a5e2a, 0x744bff0bfc000cbb, 0x0cbb0eaaa7ff3a5b, 0x090c29000c0c4901, 0xff0c16070e0c1b01, 0x7d9776ffbad8fde5, 0x9abcff0c240a0e3a, 0x0b39b3e7a4ffbad9, 0xff0c3602090c3b10, 0x92a3f2ff3ad0ba8c, 0xe42dff0c44b904bb, 0x053b9ba130ffbb00, 0x040c5fc8040c6d93, 0xb97f0bbeff0c5abc, 0x68c9043c1c5e58ff, 0xaaffbd300fd1ff0c, 0x0b0c7fc604bc3bf8, 0x3b810f23ff0c7a03, 0x88030bbbcb2b84ff, 0x1cffbbbca629ff0c, 0x0e0ecd010c3c8fa8, 0x040d2500080db11d, 0x040cc1000f0ce1b7, 0xff0cae060d0cb3b5, 0xb0145cffbaf3e1d2, 0xc2bfff0cbc170e3d, 0x0e3b03606bffbdbd, 0xff0cce000c0cd312, 0x64d94eff3c80d0ae, 0x9ba3ff0cdc150e3d, 0x0e3a8fbac9ffbc83, 0x0e0cf7130e0d0514, 0x3c3948cfff0cf210, 0x00bc04bc0a218cff, 0x77ff3cb13209ff0d, 0x0e0d17000fbb41e3, 0x3baa55f8ff0d1219, 0x20cb04bc3be38bff, 0xf0ffb9cbcf24ff0d, 0x050d6d01083b6cac, 0x0f0d3f190e0d4d94, 0x3c0a223cff0d3a00, 0x48090b3aba2203ff, 0x22ff3b213bc5ff0d, 0x0b0d5fc604bc27c6, 0xbb597680ff0d5a03, 0x68c804bcd5b90bff, 0x4cff3d0e1508ff0d, 0x0e0d911c0e3b1d79, 0xff0d7e01120d831b, 0x07ac41ffbb223165, 0x9550ff0d8cbf043c, 0x0b3d078788ffbd65, 0xff0d9e090b0da30b, 0xc6bcf4ff3bf1be80, 0x9f2eff0dac0012bb, 0x0dbc84434dffbd00, 0x0b0dfd000c0e4104, 0x050dcf00070ddd05, 0x3d00ccd0ff0dca96, 0xd8b904b9e0d3e9ff, 0xf9ff3dc26e60ff0d, 0x0e0defbf04bb46f1, 0x3c055665ff0dea23, 0xf8000d3d3c6995ff, 0x73ffbbae29aaff0d, 0x0e0e219505bce3ac, 0xff0e0e240e0e132c, 0xc2b0daff3c1be3df, 0x7001ff0e1c2d0e3a, 0x04ba08b593ffbd7e, 0xff0e2e220e0e33cb, 0xd27955ffbd029597, 0x3260ff0e3c0007bb, 0x043c58c9f3ff3d58, 0x0d0e690a0b0e89c2, 0xff0e56030b0e5b06, 0x035593ffbaa8e1ae, 0x47baff0e64220ebc, 0x0ebc74dc9cffbb26, 0xff0e76c0040e7b20, 0xb6a5bcff3c6f589a, 0x04a6ff0e84220e3d, 0x0e3c3af623ffbc0c, 0x0e0e9f030b0ead35, 0xbb899dd5ff0e9a2b, 0xa802083bec7040ff, 0x82ff38e43ea1ff0e, 0x020ebf0112bbf998, 0xbbd128ecff0eba00, 0xc8030b3c88f53bff, 0xa4ffbd8d86f5ff0e, 0x040fed1c0ebc11fd, 0x0e0f1dca040f61cb, 0x040eef120e0efd15, 0x3d6816fcff0eeaaf, 0xf8050bbb6474cdff, 0x73ff3af739feff0e, 0x0d0f0fc6043cd482, 0xbc1d169eff0f0a06, 0x18060d3cf5baacff, 0x12ff3c770019ff0f, 0x0b0f410009bc8108, 0xff0f2e92050f3303, 0x12e1b8ff3a1df300, 0x6361ff0f3c00123d, 0x0ebce39c36ffbba7, 0xff0f4e01090f5317, 0x924090ffbd2ae01b, 0x602dff0f5c0109bb, 0x093c9820fbff3d7c, 0x0e0f89170e0fa900, 0xff0f7601080f7b14, 0xddbe10ff3c681c3f, 0x37b1ff0f840007bc, 0x0ebbc50177ffbd0e, 0xff0f960b0b0f9b18, 0x712a80ff3d9d3984, 0x1b7cff0fa400123c, 0x023ccada7cff3b4a, 0x050fbf070d0fcd00, 0xbcc40763ff0fba95, 0xc8030bbd947ea4ff, 0x00ff3cd55618ff0f, 0x040fdf0109bb6a94, 0x3d142a05ff0fdacc, 0xe80012baa2a570ff, 0x9bff3bab5ea0ff0f, 0x09107d280ebc4ff5, 0x0e1019230e103900, 0xff10060b0b100b1d, 0xabd636ffbc24c22f, 0xc7a6ff1014200e3a, 0x04ba1f8038ff3cc3, 0xff1026250e102bcd, 0xa3ec3eff3d8be3a0, 0x15a1ff10340008bc, 0x0e3df31a38ff3d9b, 0x05104f8f05105d1f, 0xbd080052ff104a8e, 0x58050b3d0c9877ff, 0x73ff3ca0886eff10, 0x0e106f0002bd06ef, 0xbc972d10ff106a25, 0x78030b3d511c4dff, 0xafffbc6318eaff10, 0x0710c5050bbd570c, 0x0410972b0e10a500, 0x3c8fa6dfff1092c8, 0xa0cd04bbee7a91ff, 0x2dff3cac91f4ff10, 0x1210b7060d3b74e5, 0xba1818abff10b201, 0xc0070dbce2ec54ff, 0x26ffbcaca4d8ff10, 0x0e10e90108bd0ab8, 0xff10d6910510db2b, 0xc1bf75ffbbf4b81a, 0xb13cff10e40008bc, 0x023cf077b6ffbbe5, 0xff10f6000710fb00, 0xab56d8ff3d1dc845, 0x9664ff11048e05bc, 0x13bd1dab04ffbd25, 0xe800000008000000, 0x8700000001000003, 0x0500000000000011, 0x040445280508c18d, 0x01012c6d04024899, 0x04005c2a0100a03f, 0x01002e0906003c48, 0xba02a63bff002920, 0x370211b8e80957ff, 0x14ffbb9b89a7ff00, 0x08004e0f053c2acc, 0xb9ff986aff004901, 0x57200ebb836c0fff, 0xc3ff3aa82c36ff00, 0x0400806504396123, 0xff006d230e007263, 0x9eb7f5ff3afb449f, 0x45ccff007b0b06bb, 0x07bd59afaeff3b7b, 0xff008d6704009201, 0x826c9bffbc9e4ba8, 0x68efff009b3601bb, 0x043c46737aff3af3, 0x0f00c8440400e863, 0xff00b50c0600ba00, 0xf76e85ff3ad87855, 0x85aaff00c34001bb, 0x01ba4e21acff3b74, 0xff00d5620400da41, 0x3b8316ff3c51d4f4, 0xc99eff00e30211bc, 0x043c2699fcffb909, 0x0d00fe070e010c64, 0x394bab20ff00f902, 0x070006bcaa739fff, 0x77ffbc76248bff01, 0x0e011e4101bd764a, 0x3d119b6eff01190d, 0x2702113c322757ff, 0x73ffbb3130c9ff01, 0x0701bc00083c1b24, 0x0c01582d0e017801, 0xff01458404014a00, 0xc01c86ffbc60f417, 0xed96ff0153090b3b, 0x06bc015527ffbcca, 0xff0165120b016a0e, 0x0690e4ffbaea83b8, 0x3575ff017302053c, 0x053c414b07ffbbe8, 0x0f018e030b019c02, 0xbd12cc99ff018900, 0x978804bb727245ff, 0xfaffbb04f645ff01, 0x0e01ae090bbce594, 0x3c046f17ff01a915, 0xb7000fbc455216ff, 0xc8ff3c951044ff01, 0x060204170eba7f75, 0x0601d6010e01e416, 0xbc1d273fff01d112, 0xdf000f3bc67df4ff, 0x17ff3c991255ff01, 0x0801f6030b3b022d, 0xbb2d23fcff01f101, 0xff070e3c2f14a2ff, 0xedffbc24ee1fff01, 0x0402281c0e3c2f1c, 0xff02151a0e021a84, 0xf4e7dbff3a837c45, 0x16c9ff022341013c, 0x0e3c8868aaff3d1c, 0xff02350006023a1d, 0x0b4667ffbdbcb651, 0x909eff0243260ebb, 0x053925d973ff3c01, 0x0d02dc330e036826, 0x0302789d04029807, 0xff02653e01026a1b, 0x6c5c2affbb347295, 0x9062ff02739c043d, 0x12bce8fdcfffbbc1, 0xff02850002028a01, 0x9b1d8dffbcb220e7, 0xdf80ff029307063d, 0x043a8af9fbff3bbb, 0x0502ae220502bcb6, 0x3cd59b58ff02a918, 0xb7110bbcd739d8ff, 0x4cffbbc4180aff02, 0x0202ce0e0b3d4a3f, 0x3d023db5ff02c900, 0xd7230ebe4ea800ff, 0x61ffbd872803ff02, 0x0603240501be2ba4, 0x0802f6000f030400, 0xbc01928bff02f100, 0xff03053a95dba4ff, 0x4dffbe25770aff02, 0x0703160a03bdb9ac, 0x3c33d90dff031100, 0x1f0b0bbba8b7aaff, 0xe2ff3bbff30bff03, 0x01034800063c7528, 0xff03350007033a29, 0x39c126ffbca197c2, 0x197eff03432005bd, 0x0d3a203476ffbc8d, 0xff03553f01035a00, 0x259894ffbc643ea6, 0xb1e6ff03634101bd, 0x0ebbeab08eff3ae0, 0x0c03b4270503f831, 0x040386110b039401, 0x3d93cf48ff03819c, 0x8f0011bb99f727ff, 0x89ff3db62841ff03, 0x1103a6aa043e019e, 0x3d20a2caff03a100, 0xaf40013da2da13ff, 0x24ffbd8653e9ff03, 0x0b03d800063d0680, 0xff03c50b0b03ca12, 0x205875ff3c802c80, 0xe969ff03d33301bc, 0x0c3d6d653effbbb6, 0xff03e5040e03ea00, 0xb2170fffbc8208b6, 0x3cf4ff03f30606bd, 0x04be035893ffbe48, 0x07042001080440c2, 0xff040d010c041202, 0x12e5dcffbd178d20, 0xec86ff041b0006bc, 0x0dbe13b647ffbdad, 0xff042d010c043202, 0x318e41ff3c193c01, 0xd4d3ff043b01113d, 0xffbc5c53beff3b5a, 0x0685120e3e29fadc, 0x04dd110e05690111, 0x0479070d0499060e, 0x04660207046b050e, 0xb25bffba18a7fbff, 0xc4ff04740012bbad, 0x3b1f8335ffbd04af, 0x04866b04048b030e, 0x186affba0ad3a8ff, 0xaeff04945a043c3b, 0xbca1176bffbb79aa, 0x04af000904bd070e, 0x33cb49ff04aa070d, 0x8e04bc5e9d16ff3c, 0xffbbc79bb2ff04b8, 0x04cf080ebcd84215, 0x505464ff04ca070d, 0x0a0e3c70f1c1ffbc, 0xff3c0ae9a8ff04d8, 0x05256a043955d13e, 0x04f75c0405050009, 0xdb9c09ff04f20002, 0x00023cca4172ff39, 0xff3ca61083ff0500, 0x05176504bc6940f1, 0x47d9edff05124204, 0x6704bc2ce300ffba, 0xffbd2865b5ff0520, 0x0549af04bca5dd8a, 0x0536100b053b0008, 0x4192ff3c8e2617ff, 0x34ff05449e04ba49, 0x3d8e217cff3cda3f, 0x05566a05055b7205, 0xb920ffbcdabd84ff, 0x55ff05647605bd6c, 0xbc546a0aff3d0113, 0x05b5630405f9010b, 0x0587050d05955804, 0xadfd09ff05824101, 0x0109bce024f4ffbb, 0xff3ac8be95ff0590, 0x05a75904be146860, 0x053087ff05a2010d, 0x6004bdb572e1ffbd, 0xffbb8c04baff05b0, 0x05d9050dbd0be0ce, 0x05c6000905cb6604, 0xc3a0ff3d51de3cff, 0x2bff05d400073c87, 0xbc84acabff3bf8d0, 0x05e6000c05eb8504, 0xeb9bff3da88724ff, 0x5aff05f400093cdf, 0xbd35a025ff3c0fb1, 0x062148040641000e, 0x060e1e0406137405, 0x1055ffbbc0b6f0ff, 0x8cff061c000c3bfa, 0xbc97dfd8ffbb624e, 0x062e000c0633000d, 0x5656ffbb258175ff, 0x6bff063c000fbd0d, 0xbbbc78abffbc3598, 0x0657570406650006, 0x72aab8ff06520209, 0x8105bb4de85eff3b, 0xff3c152ef7ff0660, 0x067706063b67eef4, 0x9d97c0ff0672030b, 0x040dbd09b1e1ffbb, 0xffbab35673ff0680, 0x07a5140e3c29aca1, 0x06d547050719130e, 0x06a7950406b5000f, 0xce70f7ff06a23f01, 0x03063d12bfc1ffbb, 0xffbd40a42eff06b0, 0x06c779043bc4bc2c, 0x72540cff06c2070d, 0x0006bd3f219eff3b, 0xffbdc8e5beff06d0, 0x06f90b0bbc497630, 0x06e6000c06eb0009, 0xf5d5ffbc80a4a4ff, 0x52ff06f4020dbd4f, 0x3b69152dff3d86f4, 0x0706120b070b7904, 0x3598ffbd02fa17ff, 0xb7ff071400023c11, 0xbd43a256ffbdc7fe, 0x0741a40407610002, 0x072e93040733140b, 0xd2f3ffbc2f9944ff, 0x02ff073c060dbcf6, 0xbc8fa800ff3c20b2, 0x074e010c0753060d, 0x1813ff3c9f5decff, 0x2bff075c00113dba, 0xbdba14d0ff3c03f6, 0x077737050785b504, 0x34f404ff07728804, 0xaa043d511bf2ff3b, 0xffbb83b141ff0780, 0x0797bb04bd1ce2e0, 0x49e571ff07920009, 0x010c3bacd597ff3d, 0xffb987bbcfff07a0, 0x0835c0043d1741dc, 0x07d1270307f1b504, 0x07be0a0b07c3060d, 0x5a41ff3b0597bdff, 0xe4ff07cc00123bc3, 0x3ca8ef4cff3b0a5d, 0x07de030d07e39904, 0x3446ff3a340792ff, 0x29ff07ecb404ba53, 0xbc028580ff399b1c, 0x0807310e08154101, 0x10c28aff0802230e, 0x0008bd2d41d8ffbe, 0xffbc86a29bff0810, 0x0827b6043a42ac86, 0x092c06ff08220112, 0x2f053bf4b9caff3d, 0xffbb97e065ff0830, 0x087d6b053adefd5f, 0x084f2b0e085dc104, 0x61c646ff084a260e, 0x2e0e3b3f0923ff3c, 0xffbdca9f6bff0858, 0x086f62053adfc66e, 0xdd6b6aff086ac804, 0x63053b5d9f80ffbb, 0xff3d587eedff0878, 0x08a12f0eba8848a2, 0x088e230e0893c804, 0x993aff3a0be2c1ff, 0xb0ff089c7405bb9e, 0xb81cdf9cff3c39b0, 0x08ae070b08b3c704, 0x46cbffbb5b9cbfff, 0x38ff08bc300e3c29, 0xbbb32a6fffbce32d, 0x0afc040d0d380e0e, 0x095d010909e90007, 0x08f9000d09199405, 0x08e60a0b08eb7b04, 0x51c4ffbac89fa8ff, 0x48ff08f4080e3ca0, 0x3d683a29ff3c68d6, 0x0906a104090b0002, 0x4c09ffbb13226aff, 0x11ff09148a04bcab, 0x3b794e4effbb3e4d, 0x092f7f04093d000d, 0xdd187aff092a7804, 0x01113cbed0d3ffbb, 0xff3c7ec5a5ff0938, 0x094f030ebd024352, 0xa54720ff094aa404, 0x040ebc676c6eff3b, 0xff3d62dc72ff0958, 0x09a5b2043bc3c05e, 0x0977880409858904, 0x7cd277ff0972000e, 0x0209baf90070ffbc, 0xffbc9cc080ff0980, 0x0997ae04bd38da68, 0x7b2935ff09929c04, 0xb1043b3c5322ff3c, 0xff3ca9a3cfff09a0, 0x09c9020d3d5c52c8, 0x09b6940509bbb304, 0x7ae9ffbd380754ff, 0xd8ff09c4bb043af3, 0xbb8b4f39ff3c113a, 0x09d6020909dbb504, 0x91f8ffbe138498ff, 0x7dff09e40d0ebe08, 0x3db82940ffbd1e8f, 0x0a3573040a798204, 0x0a07000c0a156d04, 0xd98accff0a020011, 0x020ebb2f0766ff3b, 0xff3c8f48b3ff0a10, 0x0a27030bbc199720, 0xa24400ff0a220107, 0x9005bce06717ffbb, 0xffbd7dd69fff0a30, 0x0a59010bbd17335c, 0x0a467b040a4b9005, 0x16c0ffbd13ebfeff, 0xc6ff0a54020d3b0b, 0xbc2b6380ff3c83a4, 0x0a6601070a6b0002, 0x3c38ff3cd9f357ff, 0x17ff0a74030b3c30, 0x3c256848ffba8001, 0x0a98000d0ab88804, 0x0a8e01070a93030b, 0xd640ffbdc84140ff, 0x02bd6d0f10ffbdcc, 0xff0aa5030b0aaa00, 0x87bc48ffbcc08e09, 0x6309ff0ab3000ebc, 0x043b823ecdffbc3d, 0x040ace020d0adc8f, 0xbd761250ff0ac98a, 0xd701073d03d0c9ff, 0x00ffbd051a50ff0a, 0x020aee9004bcbbaf, 0xbab98f95ff0ae900, 0xf7000dbcd3d3c6ff, 0xa5ff3cacf858ff0a, 0x0b0c1c000fbb3d98, 0x040b4c02090b9003, 0x070b1e9c040b2c9e, 0x3b954bb7ff0b1900, 0x279d04bc086503ff, 0x27ffbdb13ee2ff0b, 0x040b3e060dbc32f7, 0x3a8f1c61ff0b39b3, 0x47000c3c4bc06eff, 0x03ff3c640372ff0b, 0x020b70c404bca506, 0xff0b5dc0040b6200, 0x4ea3f0ff3c6c05e1, 0x36d1ff0b6b000ebd, 0x04bc7d9c24ff3c0f, 0xff0b7d96050b82ca, 0x477da0ffbd307333, 0x5f24ff0b8b0002bc, 0x043b2593c0ffbd09, 0x040bb873040bd87f, 0xff0ba5040b0baa72, 0x81a990ffbdb4329d, 0x4558ff0bb300093c, 0x093c993c20ff3d8d, 0xff0bc50a0b0bca00, 0xaafb7cffbd2d5443, 0x6f1bff0bd3000ebd, 0x04bd47234aff3ce5, 0x0b0bee000e0bfc80, 0x3d866f20ff0be905, 0xf790053d789ee8ff, 0x60ff3dc174c1ff0b, 0x0c0c0e9e043dec16, 0x3c3c0002ff0c0900, 0x17000cbc9dd94dff, 0x7affbccd9643ff0c, 0x070cac00093b03b3, 0x050c4891050c6800, 0xff0c35070e0c3a90, 0x581cf0ff3b49e956, 0xba74ff0c43000238, 0x0bbb66c334ff3baa, 0xff0c55010c0c5a05, 0x133b2fff3a94604e, 0xb5e6ff0c63000c3c, 0x0bbb67097dff3959, 0x0b0c7e020b0c8c03, 0xbab02704ff0c7901, 0x870b0ebbbc45bdff, 0xd5ffbabe4f56ff0c, 0x040c9e8e053bcecc, 0x3b790fe6ff0c99bc, 0xa7000cbb73e5d5ff, 0x57ff3a45826fff0c, 0x0c0cf4010cbb0066, 0x0e0cc601090cd400, 0xbac34ae6ff0cc107, 0xcf0d0e3a643b72ff, 0x6cffbaaeaf5aff0c, 0x0e0ce60012b9b1b8, 0xbb523ae2ff0ce107, 0xef0a0b3b40e0cfff, 0x8affbab9baf4ff0c, 0x0b0d18cd043b4fa4, 0xff0d05070e0d0a0b, 0x0fc62bffb9283803, 0x4770ff0d13c7043c, 0x05bd4266aeff3c7f, 0xff0d2502090d2a93, 0x1f3be1ffbda22bcb, 0x2a1eff0d330002bd, 0x0c3b4f87c3ffbcf5, 0x080e5c1d0e0f7801, 0x0d0d8c00020dd000, 0x120d5e8f050d6c06, 0xbbc863eaff0d5901, 0x67050b3ba64aeeff, 0x61ffbb6e9723ff0d, 0x040d7ec6043b4b2f, 0x3c97e26dff0d79bc, 0x87180e3b8a8a81ff, 0x75ffbc8e799fff0d, 0x040db0c1043bbf2a, 0xff0d9dbb040da2bd, 0x45b4d6ff3b11a2ea, 0x859fff0dab0112bc, 0x12bc1f3655ff3c61, 0xff0dbdc6040dc201, 0xe8f51fffbbc7ef08, 0x59acff0dcb0109ba, 0x08bbe65dd5ff3ba0, 0x0d0df8c6040e1801, 0xff0de50b0b0dea06, 0xa8f074ffbaf1903f, 0x773bff0df30112bc, 0x0e3de26934ff3c0b, 0xff0e05c8040e0a1c, 0x903234ff3ce3c211, 0x8addff0e13000c3b, 0x0ebc886d91ff3afa, 0x070e2e140e0e3c1c, 0x3c529d23ff0e2900, 0x37020dba351231ff, 0x07ff3c52e383ff0e, 0x070e4e0b0bbafda5, 0xbbb1108cff0e4901, 0x5701073bcc8358ff, 0x6bffbccf118cff0e, 0x0b0eec0002bc0227, 0x0e0e8896050ea807, 0xff0e75bc040e7a22, 0x306723ffbd190cf2, 0xc085ff0e8391053c, 0x0c3c0b6c95ff33b1, 0xff0e95000d0e9a00, 0x7dd555ffbcb7368c, 0xf640ff0ea3010b3a, 0x04be099e64ffbcf3, 0x090ebe200e0eccc2, 0x3d8ad25bff0eb900, 0xc72c0ebd17fff1ff, 0x06ffb8153757ff0e, 0x0e0ede230ebd06d2, 0xbc67764dff0ed922, 0xe72a0e3b9ca9feff, 0x46ffbc8bdb00ff0e, 0x040f34b50439711c, 0x0b0f0691050f14b4, 0xbaeac45aff0f0105, 0x0f010b3d069e54ff, 0xf8ff3cbd3215ff0f, 0x0f0f261f0e3de664, 0xbc81ad5cff0f2100, 0x2f020dbc414230ff, 0x06ffbd2bd508ff0f, 0x040f58bf04bdb78f, 0xff0f45220e0f4abe, 0xd592dcffbb675847, 0xea84ff0f5300093b, 0x0fbb91c6f7ff3d08, 0xff0f65c6040f6a00, 0x25b787ff3c37e47c, 0xec3eff0f73000cbc, 0x043b6bfd98ffba41, 0x0b1003050b1074c5, 0x0b0fa8170e0fc803, 0xff0f9500090f9a02, 0x031048ff3d00a4be, 0xc0b6ff0fa3060dbd, 0x043cbc9626ffbb34, 0xff0fb51d0e0fbabd, 0x3ad365ffbc560500, 0x22f1ff0fc3020bbd, 0x043bdd6dfaffbc2c, 0x040fde190e0fecc3, 0xbb9a6ab8ff0fd9c1, 0xe71b0e3cde0c9eff, 0x07ffbd43901bff0f, 0x0d0ffe0009bc1d78, 0xbdb4190dff0ff906, 0x6c88ffbd8c63baff, 0x1d0e1042c404bcfd, 0xbd04101dbf04102b, 0xff3911e600ff1018, 0x1026150e3d5fd675, 0x1870ff3ccad69fff, 0xc304103d0002bc71, 0xff3bc7c8abff1038, 0x37bec0ff3e263a6b, 0x588f05105d0002bc, 0x3fe0ff1053000910, 0xffbd4cc7c4ffbe00, 0x106f140e3b850dab, 0x18e122ff106a0009, 0x50ff3df0b2e0ff3d, 0x1110fbc8043e3de3, 0x0e10a0000910b700, 0xff108d8e05109217, 0x971352ff3d43fca0, 0x891cff109b1c0e3d, 0x043d4de184ffba66, 0xff10ad8e0510b2c7, 0x955005ff3b398a80, 0x170ebd1bdf70ffbb, 0x8f0510cd000910db, 0xffbd5200d5ff10c8, 0x10d6c604bcbe1025, 0x17a7ff3d7b56a2ff, 0x040b10ed190ebc60, 0xff3c4c00fbff10e8, 0x10f6220e3d538df7, 0xb9caffbcf4ad6bff, 0x220e1143cc043c18, 0x060d11151c0e1123, 0xff3bf6be13ff1110, 0x111e1f0ebc5f4c2c, 0x491fffbbcafce8ff, 0x00091135250ebd19, 0xff3d0ad0a5ff1130, 0x113e280ebcd69d92, 0x3f16ffbcc07a6fff, 0xcd0411678e053991, 0x6cff1154190e1159, 0xbd10ae37ffbc0851, 0x375a3cff11620002, 0x8f05bd83890eff3c, 0x42ff117400081179, 0x3d424f29ffba9ff7, 0x95db42ff11829305, 0x00133b396d8dffbb, 0x03e8000000080000, 0x11a2000000010000, 0x8d05000000000000, 0x99040445280508c1, 0x0002012c6a040248, 0x5604005c640400a0, 0x4604002e3201003c, 0xffb9d65becff0029, 0x003701123a97ddc7, 0x909eff3b1defc6ff, 0x5c04004e6304baac, 0xff3a688551ff0049, 0x00570306ba6ae73c, 0x4b0bff3b9f2db0ff, 0x0e0e00800e06bd2b, 0xd3ff006d000f0072, 0x3b05caf3ff3d2447, 0x0d0b93ff007b0c05, 0x650439a2e22affbc, 0x63ff008d000c0092, 0x3c8b788bffbc2a25, 0x31e515ff009b1206, 0x6104bdeba444ffbd, 0x000c00c8250400e8, 0x0bff00b5000800ba, 0xbc156b80ffba2045, 0x22cf2dff00c3010e, 0x000bbd5e47fcffbc, 0x57ff00d5000c00da, 0xbd8807efff37827d, 0xc6a76dff00e30b0b, 0x17063ba6dd79ff3a, 0x020700fe000f010c, 0xffbc96b94dff00f9, 0x010767043c56440a, 0x3fd7ffbb8bea58ff, 0x010d011e02073c6a, 0xff3c3958a9ff0119, 0x0127000e3aae2a1e, 0xdd48ff3ca047edff, 0x190501bc12033ce6, 0x0f05015813050178, 0xa2ff01450006014a, 0xbb140b39ffbc3bd7, 0x1065a8ff0153130b, 0x2d0e3c35159bffbb, 0xc6ff01650e03016a, 0x3dd4fe9cff3d4b59, 0xa635e9ff01738404, 0x1c013d2c0391ff3b, 0x7604018e340e019c, 0xffb87c7b1cff0189, 0x019787043cb4d09b, 0x7c6dffbc02d95fff, 0x030d01ae1b05bd2b, 0xffbd4f3413ff01a9, 0x01b7070bbd90c6a4, 0x8b6cffbc9f0229ff, 0x030b02040108bd12, 0x730401d60f0501e4, 0xffbc48611eff01d1, 0x01df00073b42a83e, 0xe0b2ffbc845079ff, 0x000f01f616063a50, 0xff3c5dda0eff01f1, 0x01ff02073aeb10a4, 0x27b0ffbc4dac8eff, 0x000f02281a053c8a, 0xdbff0215010d021a, 0x3c9f6ec6ffbae17b, 0x49b2f6ff02231903, 0x030ebab7137eff3c, 0x48ff02358904023a, 0xbb57fc5bffbca89f, 0xb20d9cff02430006, 0x2605bb6e69efff3a, 0x070d02dc330e0368, 0x1b0302789d040298, 0x19ff02653e01026a, 0x3d54b953ffbb2267, 0x040dfeff02732505, 0x00063d871e1dffbc, 0x18ff02850002028a, 0x3d89faa0ffbc9a33, 0x8d36b0ff02933901, 0xb6043aa4638bff3c, 0x170502ae220502bc, 0xff3cdd0ad4ff02a9, 0x02b7110bbcba55c2, 0x05c5ffbbb07c0aff, 0x000202ce0e0b3d36, 0xff3cea6f18ff02c9, 0x02d7010cbe39fd9a, 0x6429ffbe41569cff, 0x030d03240107bdbd, 0x100602f6350e0304, 0xffbbb4ee46ff02f1, 0x02ff3f013c6f0b8d, 0xd7d3ffbc01a7afff, 0x010c03160006bc94, 0xffbd1ecc98ff0311, 0x031f0108bb55e803, 0x7b18ffba1d5af6ff, 0x2901034800063c11, 0x5bff03350111033a, 0xbc59a0ccffbd842f, 0xa68f31ff03433801, 0xa504b9441397ffbc, 0xf3ff0355350e035a, 0xbb9dd174ff3c6a4d, 0x1b0a5cff0363a704, 0x310ebbe06a51ffbd, 0x010c03b4270503f8, 0x010803860b0b0394, 0xff3df13ffbff0381, 0x038f110b3d4bc22a, 0x6f4dffbd5fcf78ff, 0x060d03a6aa043dc7, 0xff3d97410cff03a1, 0x03af40013d16f11b, 0x19e3ffbd71ca40ff, 0x290e03d800063cf2, 0x84ff03c5010c03ca, 0x3ce63b26ff3dc458, 0xb97068ff03d30108, 0x01083c8ee5f8ffbc, 0xf9ff03e5b20403ea, 0xbe0aa960ffbe3ec3, 0xb697e0ff03f30606, 0xc204bcd7c5b9ffbd, 0x3301042001080440, 0x69ff040d010c0412, 0xbc043542ffbd0865, 0x9c8812ff041b030b, 0x2401be04f0d9ffbd, 0x97ff042d010c0432, 0x3c971987ffbd09ec, 0x475c21ff043b0007, 0x60ff3a818432ff3c, 0x0b0685160e3e18fb, 0x0404dd090e05690a, 0x0404796f050499c3, 0xff04667c04046b7f, 0x9b8308ffba2038ff, 0x21f9ff04748a04bb, 0x0ebaa680b3ffbbd7, 0xff0486060e048b07, 0xffd643ffbb36bced, 0x52f4ff049400093b, 0x043c841df5ffbc85, 0x0604af000f04bdc6, 0xbd13e813ff04aa19, 0xb8030b3a6a9f9bff, 0xabffba961c70ff04, 0x0e04cf0e06bd290a, 0x3c99ff54ff04ca08, 0xd800073da9bc07ff, 0x6eff3bfa26fcff04, 0x120525a904ba8a30, 0x0404f70f0e050500, 0xbb2f5524ff04f28c, 0x005a043b4cebf7ff, 0x0dffbb35c312ff05, 0x040517020dbc943e, 0x3b681b5bff0512a0, 0x207805bc406087ff, 0x19ff389ef07bff05, 0x040549070bb93c77, 0xff0536000f053baa, 0x0c66b1ff3d912074, 0x47cdff054400023c, 0x0b386b528bffbc0c, 0xff0556ab04055b09, 0x832901ff3dd4de09, 0xfe6aff0564af043c, 0x04bb98416cffbd0c, 0x0405b5b10405f9c1, 0x080587000f05959a, 0x3b6da79cff058202, 0x909304bc953d67ff, 0x9aff3a155336ff05, 0x0805a7a4043b504c, 0xbb58f745ff05a201, 0xb000023bd97615ff, 0x51ff3b72efcaff05, 0x0605d9b204bab9bf, 0xff05c6070e05cb00, 0xfd2a7dffba8510c8, 0x62dfff05d409063c, 0x08bcfe6af1ffbdbd, 0xff05e6120e05eb02, 0xea79bdffbad9f60f, 0x5308ff05f4b3043b, 0x0ebb6809b8ff3bb2, 0x0506218705064115, 0xff060e0f06061329, 0x08e000ffbdb267d1, 0x2042ff061c0207bc, 0x04bbca6d4effbb24, 0xff062e0d0e0633c2, 0xc5988fffba703eea, 0x6647ff063c8b053c, 0x08bb09894eff3a5d, 0x0406570b0b066500, 0xbd66a97cff0652c7, 0x60010cbc9986feff, 0x9cffbdce31f8ff06, 0x0b0677c204be03ef, 0x3aa8adc0ff06720b, 0x807605bd4664d2ff, 0x24ff3afc7100ff06, 0x0807a5100b3d28ff, 0x0e06d50011071902, 0x0e06a7000c06b51c, 0x3ba46effff06a218, 0xb00b0bbb4a66eaff, 0x0cff3ab133d4ff06, 0x0c06c71e0ebc2b92, 0xb9248e69ff06c200, 0xd03105bcd31d10ff, 0xc9ffbb943152ff06, 0x0906f90002ba577e, 0xff06e6000f06eb00, 0x9715acff3b810b37, 0x809fff06f46005b9, 0x05bbcfa3feffbb64, 0xff07060006070b55, 0x5cdb23ff3ba3a1b5, 0x4121ff0714220eba, 0x0db9dde947ff3b15, 0x0f07416e04076107, 0xff072e020b073300, 0xb9096cffbba8000b, 0xfb1bff073c000c3c, 0x0ebc2c4df6ff3b14, 0xff074e010c075318, 0xe85449ff3b9efa17, 0x2b60ff075c2f01bc, 0x0bbb7c8770ff3ca3, 0x0e07771f0e07850d, 0xbb087cf9ff07721e, 0x809904bce584d6ff, 0xdbffbbbcd200ff07, 0x01079749053c3120, 0x3e00ae75ff079235, 0xa0010c3d2f0cd1ff, 0x37ff3d038737ff07, 0x010835120bbda1f7, 0x0107d1620407f133, 0xff07be1a0107c321, 0x16caebff3b1111e7, 0x38a0ff07cc00083c, 0x043bb8c395ffbbd9, 0xff07de8e0407e392, 0x4b5bbaffbc13ca83, 0xcd5eff07ec4c05bd, 0x073d05006bff3a5b, 0x0d0807c204081501, 0xbc427183ff080206, 0x10230ebcafa9f5ff, 0x74ffbc92a559ff08, 0x050827000c3d53dc, 0xbc95d2c1ff082260, 0x300012bbaf4d1cff, 0xc3ffbd5471f4ff08, 0x0e087d190ebd0208, 0x0c084f0008085d18, 0xbc051d23ff084a01, 0x58ab04bcd9917eff, 0x7bff3c04bafbff08, 0x08086f000cbb9631, 0x3a803f8eff086a01, 0x782d01bc035b84ff, 0x42ffbb848028ff08, 0x0408a1b1043cc81c, 0xff088e34030893a6, 0x677e09ff3b3bb001, 0xf897ff089ca704bb, 0x043b811815ffbcc2, 0xff08ae1d0e08b3be, 0x78ee90ffbc9b051e, 0x9514ff08bcc304b8, 0x0e37eaa674ff3be2, 0x070afc040d0d380e, 0x05095d010909e000, 0x0408f9010d091994, 0xff08e6000808eb7b, 0xaa82eeff3b396547, 0x2636ff08f40009bc, 0x05bc1a1cf3ff3ce4, 0xff09067604090b93, 0xdd73c1ffbc0529e9, 0xc27bff091400093a, 0x0dbcd7ced1ffbb40, 0x04092f7f04093d00, 0xbbc6fc6fff092a78, 0x3801113cabbbf3ff, 0x30ff3c654b7cff09, 0x09094f020bbcea79, 0x3b96132cff094a00, 0x58030ebccbbf5cff, 0x40ffba743c2fff09, 0x0b09a5030d3c1f42, 0x040977070e098503, 0x3a82dd09ff0972a9, 0x80080ebc4ccebaff, 0x26ff3cf49b93ff09, 0x0509970002bbac31, 0xb9221600ff099293, 0xa0070e3c758520ff, 0xd7ff3caf3290ff09, 0x0e09c9010e3c27b5, 0xff09b68e0509bb00, 0xfc3686ffbcb363a0, 0x6855ff09c40209bc, 0x043ce61d20ff3b62, 0x3d837d58ff09d297, 0xba1e55ff09dbb504, 0x000cbc7eb030ffbd, 0x70040a2c02070a70, 0x900509fe00120a0c, 0xff3c6dde3bff09f9, 0x0a07070eb9e2c545, 0xff53ffbbb791feff, 0x95050a1e01123c86, 0xffbc68bc93ff0a19, 0x0a2795053b592a7f, 0x459eff3c2c3146ff, 0x90040a50040ebb36, 0x36ff0a3d7f040a42, 0xbc81390fff3a6550, 0xdb5f9dff0a4b0112, 0x96043c6204f3ffbb, 0x2bff0a5d030b0a62, 0xbda3c7beffbd23c2, 0x584a30ff0a6b9b04, 0xa704bc1fe9cfff3d, 0x90050a98070b0ab8, 0xd9ff0a85070e0a8a, 0xbbecb883ff3bd5ad, 0x9d6098ff0a930107, 0x0a0b3c02c084ffbc, 0x20ff0aa58f050aaa, 0xbcb9b07bffbd847e, 0x5f400fff0ab3020d, 0xa904bd7c8002ffbb, 0x00080ace01070adc, 0xff3cc3a7bbff0ac9, 0x0ad7010b3ce22740, 0xf5e0ff3c84b820ff, 0x02070aee020b3cb9, 0xffbba5be3cff0ae9, 0x0af7b304bca1b1c0, 0xdaf5ffbbd2097eff, 0x030b0c1c000f3b3f, 0x070e0b4c090e0b90, 0x90050b1e91050b2c, 0xff3a787b65ff0b19, 0x0b270109bc819109, 0x5ea8ff3ba3c639ff, 0x080e0b3e0009bc2a, 0xffbd4336a4ff0b39, 0x0b4702093d2ba398, 0x95b5ff3d927097ff, 0xb3040b7000093ce7, 0x27ff0b5da2040b62, 0xbc3e7ff4ff3c80a3, 0x105d78ff0b6b0007, 0x0d0e39b8e323ff3d, 0x8aff0b7d02090b82, 0xbd358205ffbdd565, 0x257076ff0b8b0109, 0x0007bbfca96fff3d, 0x000c0bb891050bd8, 0x72ff0ba5070b0baa, 0xbd86fb5aff3c0d08, 0x666ccbff0bb39904, 0x6b043b855d5eff3c, 0xfcff0bc592050bca, 0x3db344a0ff3dcd9b, 0x515e6cff0bd3a704, 0x94043abe1233ffbc, 0x060d0bee90040bfc, 0xffbcb53b0dff0be9, 0x0bf7010e3ca9555d, 0x7121ffbe09ecbfff, 0x00020c0e0107bd07, 0xffbc9eff15ff0c09, 0x0c17b004bb665e18, 0x1711ff3c6621b5ff, 0xc7040cac0009ba4d, 0xc0040c4891050c68, 0x7aff0c35bb040c3a, 0x3b53aa1affb7f16f, 0x7eb758ff0c438f05, 0x060db93be308ffbb, 0x4cff0c55000c0c5a, 0xbbc7f4a5ff3a0a03, 0x773bb7ff0c630011, 0x94053b26b8d8ffba, 0x0b0b0c7ec8040c8c, 0xff3bf75928ff0c79, 0x0c87c9043cda1578, 0xa888ffbb2226c8ff, 0x070e0c9e0d0e3b81, 0xff3bbc0393ff0c99, 0x0ca70002bb8de5a2, 0x825cffbb710376ff, 0x000c0cf4010c3c24, 0x070e0cc6cc040cd4, 0xffbade2032ff0cc1, 0x0ccf00023a2e4900, 0xdd28ff3c0ef41fff, 0x90050ce60011bb3c, 0xffbbc554d2ff0ce1, 0x0cef0a0b3b0a156b, 0x5de4ffbaa72848ff, 0xc8040d1893053b31, 0xfbff0d05050b0d0a, 0x3be5afbfffbb6a68, 0x1c87ecff0d13c904, 0x070ebc2c44daffbd, 0x78ff0d25040e0d2a, 0xbc2cf04aff3ae840, 0x51550eff0d330a0b, 0x010c3cda033bffbc, 0x150e0e5c1d0e0f78, 0xbf040d8c00070dd0, 0x0f0e0d5ebb040d6c, 0xff3cb97477ff0d59, 0x0d678e05bb1623c1, 0xf406ff3cfab0c4ff, 0x00090d7e9505bc88, 0xff3c90bf96ff0d79, 0x0d87cd04ba519331, 0x2c28ffbc1308e8ff, 0xc8040db092053a98, 0x7aff0d9d8f050da2, 0x3b32cdf0ffbc46a8, 0x4c5599ff0dab0e0b, 0x000d3ce50d1dff3b, 0x93ff0dbd9a040dc2, 0x3d1cf0b3ff3b9c58, 0xb7333eff0dcb000c, 0xc904bc861659ffbb, 0x96050df8070d0e18, 0x9eff0de5190e0dea, 0xbb77446aff3a8926, 0x9cc8e2ff0df3010b, 0x00093c93674effbc, 0xfeff0e05000c0e0a, 0xbd95d112ffbcd6e6, 0x0387a1ff0e13c604, 0x0107bba2a7d7ff3c, 0x170e0e2e00070e3c, 0xffbc4db609ff0e29, 0x0e37180e3b41f48b, 0xc6b6ff3bca8fb1ff, 0xcb040e4e170ebbd1, 0xff3c9370a6ff0e49, 0x0e578e053af0881d, 0xdb86ffbc81c16bff, 0x070b0eec00023b7b, 0xb7040e88040d0ea8, 0xe4ff0e75b4040e7a, 0xbd79ebe7ff3c40d7, 0x6ac8c8ff0e83b904, 0x2a0e3b6c6139ff3d, 0xd8ff0e95ca040e9a, 0xbcc71efdffbb3036, 0x88f68cff0ea3030b, 0xc2043d2ced52ff3b, 0x00090ebe200e0ecc, 0xff3d79e10fff0eb9, 0x0ec72b0ebd08ccc1, 0x1a41ff3973ac77ff, 0x93050ede9405bcee, 0xffbb220b78ff0ed9, 0x0ee700083ca8e431, 0xce67ffbb3886eaff, 0xb3040f34b504bccc, 0x1f0e0f06b1040f14, 0xffbd43e215ff0f01, 0x0f0f020b3ae6a344, 0x8082ff3dac3130ff, 0x1f0e0f2601123c95, 0xffbd01ffb8ff0f21, 0x0f2f020d3caa13da, 0x8ac5ffbd04fa64ff, 0xbe040f58bf04bda3, 0x50ff0f45000f0f4a, 0xbab9ffabff3c0b0d, 0xc64e78ff0f53070b, 0x000f3d0edec3ff3b, 0x0aff0f651f0e0f6a, 0xbba2689cff3d2d7f, 0x2e8809ff0f73000c, 0x1c0e3b546438ffba, 0x140e100c1b0e1098, 0x8e050fa8120e0fc8, 0x2aff0f9500020f9a, 0x3d4bc6bfffbbc9c6, 0xc26216ff0fa38f05, 0xc104bb7466cdffbd, 0xb9ff0fb500090fba, 0xbce45aa8ff3d2cc0, 0x0da596ff0fc39205, 0x060d3c6cff02ff3b, 0xc6040fdecc040fec, 0xffbba98e7cff0fd9, 0x0fe700083c221204, 0xe1eeffbbc49d67ff, 0x8e050ffec604bd11, 0xff3bba69fcff0ff9, 0x1007170e3d5a9baa, 0x2898ffbd04cee1ff, 0xcc0410540009b9cf, 0xc80410260b0b1034, 0xff3d14b8e3ff1021, 0x102f00073d8d3a06, 0x2b60ff3cb896b5ff, 0x000710468f053d2f, 0xffbcb7536bff1041, 0x104f0b0b3ce2d480, 0xdc0cff3d0ad419ff, 0x8f051078cd043d8b, 0x80ff10650012106a, 0xbca234a8ffbbe628, 0xd6566cff1073060d, 0x9305bd8c84deffbc, 0x00ff10859105108a, 0xbc6e7650ff3b8a2f, 0xa0822cff10930011, 0x0111bc6ae7c0ff3d, 0x2d0e10e400021128, 0xcb0410b6cd0410c4, 0xff3b939c61ff10b1, 0x10bf9105bcc17554, 0xc58cff3c1264a4ff, 0x2f0e10d6cd04bb71, 0xff3d75c342ff10d1, 0x10df90053ce5feeb, 0xda8bff3be74e64ff, 0xcc0411081d0ebbff, 0x18ff10f5030b10fa, 0xbcbbdb8dffbb30e8, 0xc1b58dff11038f05, 0x8e05bb4d0174ffbc, 0xdaff11150107111a, 0x3d0ce250ffbccb98, 0x8e4805ff1123cd04, 0x1d0ebb75e58aff3c, 0x0b0b1150020d1167, 0x30ff113dbc041142, 0xbc8ba7ffffbbff42, 0xd87d90ff114b0107, 0x02073c8c42c4ffba, 0x28ff115d00071162, 0x3d1b62b3ff3d640d, 0x8b030b3c1028c0ff, 0x78220e117d000911, 0xf2ffbc85dff0ff11, 0xff1186ca04bb0d93, 0xb18db0ffbd38bc18, 0x980009119d0007bc, 0x8affbd56c9e8ff11, 0xbdd0d42affbcea92, 0x0000000800000013, 0x00000001000003e8, 0x0000000000001028, 0x0469280508e58d05, 0x012c6d0402489904, 0x005c300100a03101, 0x002e5704003c000d, 0x15d15eff00291805, 0x2a0ebbaaeb3fffbb, 0xff3c226344ff0037, 0x004e6b04bb82e49b, 0x3adb14ff00496204, 0x0d0eba9278d1ffb9, 0xffbc91312cff0057, 0x0080000fb883c3c6, 0x006d360400720f03, 0xfc5bff3d33cf0bff, 0x7eff007b05063db6, 0xbbfb79e4ffbd2896, 0x008d070b00925704, 0x5cefffbb3cc262ff, 0x43ff009b030b3b29, 0xbc634cdeffbaf367, 0x00c8001200e80112, 0x00b5620400ba6b04, 0x18a3ffb946dee9ff, 0x3fff00c32705ba62, 0xbcc411e5ff3b4f41, 0x00d5540400da150e, 0x1ceaff3b888b25ff, 0xabff00e3160e3c8b, 0xb95533e1ff3bee83, 0x00fe1203010c5e04, 0xa7d499ff00f91205, 0x3201bd34ac4affbb, 0xffbc35a5d1ff0107, 0x011e0006b9a95493, 0x0be7b4ff01193801, 0x000c3b9ca944ffbd, 0xffbbb8ddf9ff0127, 0x01bc00083b339ab8, 0x01582d0e01780107, 0x01451006014a000c, 0x744affbcb2a93aff, 0x3fff01530b0ebb43, 0xbc8462f5ffbbe1e3, 0x01657c04016a0e06, 0x19f1ff3b0af60bff, 0xb6ff01730205bb19, 0x3c2fb54bffbbe20a, 0x018e1106019c0105, 0xcad974ff0189330e, 0x0207bc24a9deff3b, 0xffbccc6182ff0197, 0x01ae210ebb6b8c56, 0x68e1bfff01a9000f, 0x3f013982119aff3c, 0xffba325f12ff01b7, 0x02040a0bbc91e2ca, 0x01d6920401e40c05, 0xe72b2bff01d17304, 0x000f3c053ff7ffbb, 0xffbcd7b32dff01df, 0x01f600073ba5721c, 0xcd6ee5ff01f10111, 0x2605bc475900ffba, 0xffbab71685ff01ff, 0x022808063b904b92, 0x02153401021a1a03, 0xe526ff3b01b029ff, 0x94ff0223100e3cbd, 0x3b89c2c3ffbbcc8e, 0x02351706023a000f, 0xdc30ff3cb52187ff, 0x71ff0243210ebc98, 0x3c3ceca8ffbb3727, 0x02dc001103682405, 0x0278410102980002, 0x0265b204026a3f01, 0xfd8bffbc534425ff, 0xceff0273010c3cf4, 0x3cf3a2b7ff3dd7f0, 0x0285290e028a2103, 0xdbe5ffbd8da823ff, 0xe3ff0293070dbd0d, 0x3c17469fffbcfc82, 0x02ae9e0402bc0b0b, 0xac2bd6ff02a90a0b, 0x02073d3ec751ffbc, 0xffbd58701bff02b7, 0x02ce02073cd0e745, 0xe5492cff02c9230e, 0x010c3d861eaaff3c, 0xff3e1db7ddff02d7, 0x03241a033d9191f4, 0x02f6a50403043c01, 0xa81954ff02f1350e, 0x0006bc088099ff3b, 0xffbced97b3ff02ff, 0x0316310ebb72f546, 0x844d8dff03119b04, 0x00053d89a466ff3c, 0xffbdca98b9ff031f, 0x0348000c3b06af99, 0x03351406033a000d, 0x3998ffbd136fa0ff, 0x3cff03430b05bc9e, 0xb7a22240ffbbad57, 0x0355050d035a0008, 0x3a22ff3b3ae729ff, 0x6dff03630206bb4c, 0x3b6f29e9ffbc2714, 0x03b4250503f82605, 0x03861b0e0394a804, 0x07bc8aff0381170e, 0x0208bde82074ffbd, 0xff3b5fe84cff038f, 0x03a6b204bcc26641, 0xcb7755ff03a1100b, 0x020dbe52d95cffbd, 0xff3b37a584ff03af, 0x03d81006bd39e7e3, 0x03c5230e03ca9b04, 0x76a6ff3dc549daff, 0xf6ff03d3220e3d19, 0x3b9195d9ffbcb944, 0x03e5af0403ea1106, 0xb43cff3e0ca4f0ff, 0x47ff03f3030b3d08, 0xbb8d8f39ff3c040f, 0x042027050440310e, 0x040d0f0b0412010c, 0x1b7bff3d49e7ebff, 0x68ff041b0b0b3dae, 0x3c8764b9ff3d834f, 0x042d330104320006, 0x91ddffbb9ef1b0ff, 0x10ff043b000c3ce7, 0xbe143e01ffbd354e, 0x045601080464c204, 0x6090dcff04513301, 0x020dbdbe15feffbc, 0xff3c2fc6c8ff045f, 0x09af08ffbaded9a9, 0x8d020906a91a0e3e, 0xbd010805018a0505, 0x8fb504049d870504, 0x0718ff048ab30404, 0x04bba10154ff3896, 0x3c3f7bddff0498b7, 0xafbc04b9c2d6f4ff, 0x27e3ff04aaba0404, 0x05bbd45937ff3a37, 0xbbd71426ff04b889, 0xe102073c3d5279ff, 0xcebc0404d3be0404, 0x35ff3b1f5605ff04, 0xff04dc140b3b863f, 0x3588f5ffba45fd49, 0xee000f04f32c053b, 0x20ffbd1018c3ff04, 0xff04fc060ebb4fb4, 0x75e7cdffbc5e2310, 0x2900070549010cbb, 0x169d04051baf0405, 0x71ff3acaa647ff05, 0xff05248c05b8e615, 0x1b6d07ff3be785ff, 0x36a704053b000fba, 0x07ffbc438690ff05, 0xff0544170e3be087, 0xd41632ffba196814, 0x5f8b05056d170ebb, 0xdd90ff055a000e05, 0x043c3d2d55ffbcd6, 0xbbb666fdff0568bb, 0x7f060d3964fcf3ff, 0xb021ff057a0a0b05, 0x093d4ddbb6ff3a11, 0x3c3aececff058800, 0x1d5d04bc9a29baff, 0xb9610505d9040e06, 0xa63e0505ab020e05, 0xf4ff3a9f68b1ff05, 0xff05b45305ba0228, 0x2f4b04ffbb02d114, 0xc6011105cb3504bc, 0xc1ffbc00995fff05, 0xff05d4000c3d092c, 0x20f932ffbb63a806, 0xef590405fd000dbc, 0x0010ff05ea560405, 0x04bd7d27daff3c62, 0x3d68fc60ff05f85c, 0x0f070e3dd27613ff, 0x39e5ff060a000f06, 0x0ebbc52bc9ffbcb6, 0x3bc7f243ff061808, 0x65020ebc5770cfff, 0x37000206459d0406, 0x78f7ff0632000f06, 0x05bb39b3f1ff3b9f, 0xbc0490e2ff064081, 0x570011bb8bc754ff, 0x5b09ff0652b40406, 0x0e3caaeb89ffbbdd, 0x3c1eef17ff066001, 0x8989053d2a371cff, 0x76060e067b070e06, 0x0cffbc5b93edff06, 0xff0684080ebcfdee, 0x6ee921ff3b6518b4, 0x96030b069b070ebc, 0x24ffbcff51efff06, 0xff06a4b804ba3aef, 0x6fa52fff3c87a9ba, 0x3d5a0507c90108bb, 0xd91d0e06f9010d07, 0xc6000d06cb1c0e06, 0xd6ffbb66b9aaff06, 0xff06d45b04bd2316, 0xb75eedffbd2f3ad5, 0xe6000d06eb260ebc, 0x7eff3b89c2ebff06, 0xff06f4b104bc81fc, 0xd46476ffbc1627fc, 0x0f1b0e071da904bc, 0x2f17ff070a9d0407, 0x04bdc6470eff3b2b, 0xb986e74eff071891, 0x2faa04bb332a43ff, 0x99eaff072a230e07, 0x0b3c94faf2ff3d72, 0x3b22b1e9ff07380b, 0x85c504bb9dcd1cff, 0x57000207651b0e07, 0x6625ff07529d0407, 0x05bd501843ffbc0a, 0x3ca93823ff076088, 0x778005bd0eea66ff, 0xf038ff0772c30407, 0x0cbb793648ffb9b1, 0x3a942f3bff078001, 0xa900073b69a9d0ff, 0x96c804079b010c07, 0x38ff3b3b8c46ff07, 0xff07a40002bc07ed, 0x526c02ffbca54abf, 0xb6230e07bb260e3a, 0xe5ff3b4c4a7fff07, 0xff07c4c704bd09fe, 0x75b2c4ff3c97c83d, 0x15010c08594101ba, 0xe7790407f5011108, 0x5f24ff07e2130b07, 0x043c5e0933ffba01, 0xbc069d3aff07f09e, 0x07220ebd0a6fd1ff, 0x1878ff0802590408, 0x033cac0b85ff3b38, 0x3c9c5fc7ff08101d, 0x3933033ba76147ff, 0x26a604082b220e08, 0x98ff3b816c11ff08, 0xff08343e01be23b6, 0x3440d5ff3c66b8ed, 0x46a804084b050b3d, 0x98ff3bdf6697ff08, 0xff0854ac043d4d1f, 0xb0d831ff3d1a784b, 0x81020b08a12a0e3b, 0x6e000c08731c0e08, 0x83ffbbad83ebff08, 0xff087c000cbd3f79, 0x85daccffb94cdbf1, 0x8e000208930a06bc, 0x55ffba8bfe30ff08, 0xff089caa043b0740, 0x9dd4a7ff3d454618, 0xb72e0308c5120bbb, 0x22b2ff08b2000208, 0x0d3b160a88ffbcb6, 0x3c04bf47ff08c002, 0xd70007bb2189f4ff, 0x1d5dff08d2610508, 0x04b98cbf00ffbca2, 0xbceca9d9ff08e0a7, 0xc7130e3c344696ff, 0x860a0e098b63040b, 0x3d00110981070d09, 0x0f0007091d000e09, 0x2428ff090a000b09, 0x053a22d358ffbc02, 0x3c4851adff091891, 0x2f000b39221ae0ff, 0x932cff092a900509, 0x0b3b109f8aff3c0b, 0x3c220526ff093801, 0x6161043caad48dff, 0x4e5a0409535e0409, 0xe1ffbb3c95a4ff09, 0xff095c00023b9c0a, 0xe6180dffbbc1db46, 0x6e8f050973000ebc, 0x3dffbc3ea068ff09, 0xff097c01113b2cf3, 0x6942bfff3b80e94e, 0x70ffbd67f04cff3d, 0x050aab0111bd2a26, 0x0509db010c0a1f94, 0x0409adb60409bb8f, 0x38c4c960ff09a8af, 0xb68e05bb84bc68ff, 0xf8ff3a4ab183ff09, 0x0409cd0a0bbb3cb4, 0xbadf9fa2ff09c8ac, 0xd6bf043889d889ff, 0xf1ff3aba953eff09, 0x0409ff000838c484, 0xff09ecb90409f1c5, 0x20f528ff39bff015, 0x0052ff09fac6043a, 0x0e3b2899f1ffbcb3, 0xff0a0c060d0a1107, 0xe0629fffbc6ce4c1, 0x1e20ff0a1a0a0e3a, 0x0c3bb6decaff3dac, 0x0d0a47c3040a6701, 0xff0a34050b0a3900, 0x8cb010ff3c223d66, 0xa998ff0a42070e3c, 0x0dbb83b3b3ffbac7, 0xff0a54c9040a5906, 0xed092cff3a64b1ad, 0x678cff0a6201073b, 0x0b3b8a07d9ffbaad, 0x0b0a7d00090a8b13, 0x3a16e889ff0a7803, 0x860002bc5e9935ff, 0x5bffbc4377edff0a, 0x040a9d060d3bda0a, 0x3d433ddeff0a98bc, 0xa6c6043ca313f6ff, 0xddff3c52daedff0a, 0x090b3b9105bbdb8e, 0x020ad7060d0af701, 0xff0ac400070ac900, 0x4bc08bff3bb95d0f, 0x6c96ff0ad26904bc, 0x05ba07e2baffbba0, 0xff0ae4000c0ae990, 0xbc5c25ff3cc18df0, 0xa4aeff0af2bf043b, 0x0e3c357066ffbd1f, 0x0e0b0d070e0b1b08, 0x3b2d8889ff0b0803, 0x16bb04bc45c565ff, 0xf7ff3cedcefdff0b, 0x0b0b2d0d0eba3892, 0xbd3acb19ff0b2807, 0x360e0e3c5bd239ff, 0x55ffbaec25dcff0b, 0x040b830002bd5293, 0x040b55a4040b63a7, 0xbabb7173ff0b509e, 0x5e030e3d23b6f9ff, 0xf3ffbcb702edff0b, 0x050b75c704be0dff, 0x3b841342ff0b7094, 0x7e070b3ca0137cff, 0xe6ffbd5b1c18ff0b, 0x050ba76d04bc2038, 0xff0b94000d0b9992, 0xa89ee9ff3a02e800, 0x8dabff0ba26b043d, 0x04bc094780ff3c6d, 0xff0bb492050bb991, 0x3e6c2cff3cdac321, 0xe73dff0bc29704bc, 0x073b301992ffbc1d, 0x0f0ceb00090e0700, 0x040c1b310e0c5f00, 0x040bedb7040bfbca, 0x399edc26ff0be8b5, 0xf6230ebd2a4d31ff, 0x84ff3c120148ff0b, 0x0b0c0d230ebbedbd, 0xbd52b27fff0c080a, 0x1695053a35dfb9ff, 0x25ffbb0a11d1ff0c, 0x040c3f330e3d0645, 0xff0c2c320e0c31c0, 0x766c34ffbc0034d3, 0x36ecff0c3acb04bd, 0x0e3c4eeff6ff3d82, 0xff0c4c020d0c5135, 0xcbcceeffbc195476, 0x2ba0ff0c5a93053d, 0x08bd2e7976ffbd08, 0x0b0c870b0b0ca700, 0xff0c74220e0c7907, 0xd82900ffb8b4e0a8, 0x5bc9ff0c820012ba, 0x0d3a2d4f40ff3be2, 0xff0c94cc040c9906, 0xd44f3eff3a65ea73, 0x9667ff0ca2c804bb, 0x02bc2db15aff3bf9, 0x0b0cbd90050ccb00, 0xbb93b7b1ff0cb810, 0xc69105bc8ef3ceff, 0x4cff3cb57a97ff0c, 0x0d0cdd000cbb8523, 0x3b18157fff0cd806, 0xe60b0bba0dd8e8ff, 0xc7ff3ba3b49fff0c, 0x0f0d7b140e3cc15f, 0x090d1700020d3700, 0xff0d04030b0d0901, 0x3e4880ff3d3e9c6b, 0xcb3aff0d12030bbc, 0x09bc9d2300ffbd81, 0xff0d2493050d2901, 0xe19c79ff3d158926, 0xd800ff0d32b5043d, 0x123d7c39a7ffbaf9, 0x090d4d070d0d5b00, 0xbc1a9109ff0d4801, 0x560e0bbcbb8aedff, 0xc8ff3c608addff0d, 0x040d6d060dbcd6fb, 0x3cf53e2aff0d68bc, 0x76c504bb8f6b05ff, 0x4bff3c644955ff0d, 0x0e0dc3060d3d7da2, 0x0b0d95000f0da317, 0xbd39d47fff0d9005, 0x9e150e3bca5335ff, 0xa8ff3c930039ff0d, 0x0b0db5200ebbb8b5, 0x3bb818dcff0db00e, 0xbe220ebbda9416ff, 0x29ffbcf9ad0cff0d, 0x090de70012bb85f9, 0xff0dd4180e0dd901, 0x976ab9ffbd134a57, 0x3631ff0de2070dbb, 0x04bc6b350cff3ba4, 0xff0df4030b0df9ca, 0x2d364fffbceca167, 0x648cff0e02250ebd, 0x02bbb74c7dff3dcc, 0x0b0e9bc9040f2700, 0x0d0e37140e0e5707, 0xff0e24000c0e2907, 0x5e5829ffbc9972ba, 0x79c0ff0e32c204bd, 0x043cfba8d0ff3b14, 0xff0e44c6040e49c8, 0x60a410ff383c8f83, 0x5b0dff0e52010c3c, 0x0ebce05a36ffbbac, 0x040e6dc2040e7b14, 0xbd93b8d0ff0e68b8, 0x76c5043d728999ff, 0x14ff392ba600ff0e, 0x0e0e8d8f05bdafd8, 0xbaa045b9ff0e8817, 0x969105bc97bdbbff, 0xdaffba31babdff0e, 0x0c0ee30b0bbc3d90, 0x040eb5cd040ec300, 0x3b712e7aff0eb0ca, 0xbe2b0ebbefca39ff, 0x48ff3be68c7fff0e, 0x050ed50208bbb1f6, 0x3c023e2cff0ed094, 0xde9005bbf847ccff, 0x00ffbd4a4167ff0e, 0x0e0f071c0eba8d7f, 0xff0ef4140e0ef918, 0xa9f273ff3daba94a, 0xcc60ff0f02000c3b, 0x0e3d8fe79bff3ce0, 0xff0f1400110f1922, 0xcb546affbc45a51c, 0x4479ff0f22cd043b, 0x083cbaea29ffbb9d, 0x0e0f730b0b0fb702, 0x040f458e050f5314, 0x3d95d114ff0f40bb, 0x4e8f053c4b6b9dff, 0xf6ffbc8a873cff0f, 0x040f65030bbb6956, 0x3b3c6f8cff0f60cc, 0x6e0108bb62275fff, 0x46ffbaab3ac8ff0f, 0x0c0f97100bbbaff5, 0xff0f84cd040f8900, 0x562786ffbc2bd217, 0x68e0ff0f92060dbd, 0x04bdcbdd9cffbd37, 0xff0fa401080fa9cb, 0xb61c18ffbbd17b8d, 0x8b8aff0fb21c0ebd, 0x1136e0a7e9ff3c8b, 0x050fd6140e0fed00, 0xff0fcc0b0b0fd190, 0x46adf0ffbafdf3c0, 0x230ebc852b3effbc, 0x8eff0fe38e050fe8, 0xbcfde7abffbd275c, 0x08180ebc783b58ff, 0xfe000c10030b0b10, 0xf8ffbb0716f1ff0f, 0x3cb19518ff3c6b75, 0x10150112101a8e05, 0x4990ffbcdd53e4ff, 0xddff1023190e3b99, 0x3b9ac7c8ffbc8a34, 0x0000000800000013, 0x00000001000003e8, 0x0000000000001163, 0x0418160e08948d05, 0x012caf0402481906, 0x005c5b0400a08505, 0x002e4f05003c5304, 0x36c37fff00290d06, 0x0c0ebb4b88a7ffb8, 0xff39247304ff0037, 0x004e070ebb2ddcd8, 0xdf57a5ff0049020d, 0x04063a9f2400ff3a, 0xffba6a9476ff0057, 0x008002113c3ef4a0, 0x006d12060072ae04, 0x9a78ff3927fcc3ff, 0x64ff007b0c0eb98c, 0xbbb758d0ff3c1a88, 0x008d0b0500920208, 0xf499ff3d2ed53dff, 0xc5ff009b030b3b3f, 0xbc9554f4ffbd5608, 0x00c8030d00e89704, 0x00b57f0400ba9604, 0x5866ffbbc056a9ff, 0xe1ff00c300093bf3, 0x3d74328bffbd955a, 0x00d5010700da000f, 0x1fc3ff3c104bd9ff, 0x7fff00e38c05bcf0, 0x3aae2ca4ffb9e4de, 0x00fe0009010c010c, 0xa1ff57ff00f9020e, 0x020d3a36a782ffbb, 0xff3c3103c7ff0107, 0x011e8b05ba21d6c6, 0x424410ff01190b0e, 0x060d3c62bfbcff3a, 0xffbc8d87cbff0127, 0x01bc010c3c146699, 0x0158000f01780002, 0x01451506014a0c05, 0xce16ff3b29b3a0ff, 0xe9ff01530b063cf3, 0x3b885d0cffbc0ba4, 0x01658105016a8805, 0x88ffffbb78906aff, 0x9eff01730e0e38b8, 0x3c0aa148ff3a90b3, 0x018e0c05019c8a05, 0x018324ff0189000f, 0x8805b8c777c3ff3c, 0xffb9a2ac33ff0197, 0x01ae0f0bba5e0fef, 0x27c607ff01a90b0b, 0x000cbbea5d99ffba, 0xff382f7720ff01b7, 0x02040d0e3beb5bf7, 0x01d6b20401e40002, 0x6cfa00ff01d1070d, 0x0008bd78bdb9ff3c, 0xffbc22c5a1ff01df, 0x01f60011bb21d79d, 0x914d17ff01f1ba04, 0x6905bb640aaeff3c, 0xff3a854102ff01ff, 0x02280109bc126fdb, 0x0215070d021a5605, 0x91d4ffbb8f71b6ff, 0x62ff022301073d97, 0x3b82c6cbff3ce366, 0x02350f0b023a7705, 0x06d9ffbd21dec6ff, 0x70ff0243060dbdde, 0xbc95ec10ff3be25a, 0x02dc970403680d0e, 0x02788d040298040e, 0x02658b04026a0002, 0x0b90ff3ae9cd61ff, 0x0fff0273010d3cb0, 0x3bf796a7ff3cd626, 0x0285030b028a000f, 0xb6cfff39808edeff, 0x7fff02930007bc87, 0x3b0f6cf7ff3beebf, 0x02ae8c0402bc0405, 0x1bdbabff02a9090e, 0x000f3b91c305ffbc, 0xffbd21b1bfff02b7, 0x02ce070eb8bb4240, 0xb201fbff02c97b04, 0x0705bac97d6aff3c, 0xff3cef0070ff02d7, 0x0324090e3cafb522, 0x02f6000f03040a05, 0x124a23ff02f10007, 0xa704bb7accf6ffbd, 0xff3c02ff9cff02ff, 0x03160008b9bb4a1c, 0x459dadff0311010e, 0x000f3b083a37ffbb, 0xff3bba063eff031f, 0x0348030b398b180d, 0x03350002033a1905, 0x53daffbc57b754ff, 0x39ff03431e053b14, 0xbc846757ff3d2d15, 0x0355020d035a000f, 0xe02bff3c1e145bff, 0x23ff036301113dcb, 0x3c8e393affbad0e2, 0x0390000b03cb0f05, 0xf87760ff03790007, 0xaa2bff038203053b, 0xd5ff038b0107bb29, 0xbc16c1c0ffbba34b, 0x03a6020d03ab010b, 0x16a75cff03a10002, 0xc7ff3c812004ff3d, 0x0503bd04053d4940, 0x3c369c5cff03b803, 0xc6020dbcd17df0ff, 0x70ff3c925b43ff03, 0x0d03dd9a043d54bd, 0xbcf33102ff03d802, 0x010007bd19cc66ff, 0xeebe0403f3c60404, 0x09ffbbfcf500ff03, 0xff03fc110e3c5a3f, 0xc5e540ffbb92d280, 0xefb0ff040abf04bb, 0x00ff0413110e3bab, 0xbb571d80ffb7bb78, 0x053caf0406585705, 0x046c0d0604b0ab04, 0x043ea704044c0a06, 0x17fca7ff04399904, 0x00063a064528ffb9, 0xff3c44fae9ff0447, 0x045e0108bc04e49f, 0x716421ff04594001, 0x2c0ebc1e6c99ff3a, 0xff3c57d141ff0467, 0x04900207bbb7cd9e, 0x047d820404828404, 0x26ffffbaefb45dff, 0x78ff048b9604bd14, 0xbba1381bff3c216a, 0x049d010c04a2260e, 0x49e6ff3c4742cfff, 0xceff04ab88043d4d, 0xbd02fd7eff3cbd28, 0x04d8ad0404f8220e, 0x04c5010c04ca020d, 0xeb2dffbb8a16cbff, 0xd0ff04d301083c8e, 0xbd1c6ef7ffbc842c, 0x04e50b0604eaae04, 0x0334ff3cb99af9ff, 0xecff04f30606bc48, 0x3db3a2c6ffbc5ca7, 0x050e0012051cac04, 0x0731fcff05090207, 0x060d3dc65b12ff3d, 0xff3c95e490ff0517, 0x052e1305bd74a84e, 0xcbaa06ff0529ad04, 0x0002bafa1625ffbc, 0xffbb76cd5eff0537, 0x05cc55053ba5bc61, 0x0568540505880208, 0x05552a0e055a3d01, 0xd0c2ffbd93f769ff, 0x04ff0563230eb9ee, 0xb9702080ff3b832d, 0x0575b904057a0112, 0x0257ff3bdb2c0fff, 0xf1ff058301113d8b, 0x3c5673dfffbc7b1b, 0x059e350105ac2e0e, 0xef6905ff05992a0e, 0x00023d94d184ffbd, 0xffbb180bddff05a7, 0x05be2f0e3ace62a7, 0xda43bbff05b94f05, 0x000cbcb4fe59ff3c, 0xff3b93eb74ff05c7, 0x06145605bb08605d, 0x05e6020d05f40b0b, 0xd8ddb0ff05e1310e, 0x030b3d5a4b05ff3b, 0xff3b89493aff05ef, 0x06061d0ebc87ce2d, 0x8914f6ff0601070d, 0xb4043ba311d7ffbd, 0xffbd546485ff060f, 0x0638280ebc91c83f, 0x0625b004062a0002, 0x07f0ffbcc14479ff, 0x1fff0633b2043d39, 0x3c10583effbcc3c2, 0x0645000f064a060d, 0xa833ff3be4b521ff, 0x97ff06530007bc8c, 0x3cf49bcbffbc515a, 0x06ec870507780107, 0x0688bb0406a80007, 0x0675ba04067a010c, 0x1511ffba31165fff, 0xd7ff0683090bbc07, 0x3bcca6a2ffbb572f, 0x0695220e069a7505, 0x6bfaffbc4e630aff, 0x46ff06a30111bbda, 0xbc3e32f6ff3a1e60, 0x06beb50406cc8605, 0x53a076ff06b90a0b, 0x02083b1e4351ffb9, 0xff3b93b5afff06c7, 0x06de1f0ebb207cc8, 0x549b87ff06d9ca04, 0xca043d876d9fffbb, 0xff3ba81ec0ff06e7, 0x07340208bcb1a7ee, 0x07061f0e07140b0b, 0x38edbcff07010009, 0x220ebb9dcb27ff3b, 0xffbc5ee60aff070f, 0x072600083a312099, 0x1f39c0ff0721ca04, 0xc704bbc44dedff3b, 0xffbbb6e3adff072f, 0x0758bf043c4d26ac, 0x07451c0e074a000f, 0x30f0ff3d670dd6ff, 0x6fff0753060d3de9, 0x3d0cf902ff3aaf46, 0x07650011076a000c, 0xa2d5ffbbc989ecff, 0x5cff0773050b3bf0, 0xbbf57d08ffbcfd04, 0x07c4100b08080207, 0x0796010c07a4170e, 0x83d119ff0791000d, 0x61053bdb6dc8ff3d, 0xff3c309fbeff079f, 0x07b60b0bbbbb055c, 0x4e0e49ff07b1b004, 0x0e0b3adcd02bffbb, 0xffbca35b16ff07bf, 0x07e882053ad6fe47, 0x07d5020807da6c05, 0x3245ff3a180a65ff, 0xdfff07e36e05bab0, 0xbb31eb25ffbcf4fa, 0x07f5010c07fa8305, 0x0dafff3c5c9759ff, 0xbbff08038b053d7a, 0x3c4c3c4effbbb7d6, 0x083001120850c304, 0x081d170e0822bc04, 0x1a9cff3b9ce97fff, 0xebff082b6a05bbb9, 0xba66d5fbff3bbb58, 0x083d020d0842030b, 0x3988ff3b7810b2ff, 0x1aff084b010c3c90, 0xbcbd9476ffbb46e1, 0x0866100b0874c404, 0x84f8f6ff0861030b, 0x6905bc835f9dff3c, 0xffbda2e072ff086f, 0x08866805bcf67a99, 0x1d2f09ff08815b05, 0x01083c0c9ba3ff3d, 0xff3aa17285ff088f, 0x0d0b0e0ebc2182d8, 0x09bc80040acf040d, 0x08ec90050930030b, 0x08be020d08cc070e, 0x21294eff08b9060e, 0x8f053c8981fcffbb, 0xffbc055473ff08c7, 0x08de000dbd15f004, 0xf6cdb0ff08d90008, 0x080ebd01535dffba, 0xffbd0b3eb0ff08e7, 0x0910010bbc52a8a0, 0x08fd080e0902000c, 0xa502ffbbb84d1eff, 0x4bff090b91053b85, 0xbd03bb6fff3cde79, 0x091d910509220002, 0x4576ff3b48fe74ff, 0x59ff092b69043cb2, 0x3a2c1600ffbc0920, 0x0958000e09787304, 0x09455104094a5c04, 0x88b6ff3b5422f2ff, 0x75ff095361043c88, 0x3b30e083ffbd096c, 0x09658e05096a9005, 0x2302ff3caa56a8ff, 0xd9ff0973000dbc32, 0xbe08e152ffbd0507, 0x098e0112099c020d, 0xcef06eff09890011, 0x7504bc71623affbc, 0xff3d46b9b8ff0997, 0x09ae92053c42363b, 0xf7ca3aff09a9000c, 0x070b3c3db2eeff3c, 0xff3d735e14ff09b7, 0x0a4c030b3db4bcd6, 0x09e800090a08020b, 0x09d5880409da0007, 0x7a7dffbb89ed49ff, 0xf5ff09e3030e3bdc, 0xbbd7caa5ff3bce8d, 0x09f5010b09faa704, 0x35e6ffbc9e2879ff, 0x89ff0a030d0e3cc5, 0xb9dd7000ffbd19b8, 0x0a1ea3040a2c020e, 0xb0c80dff0a190009, 0x0009bb7d4ee0ffbc, 0xff3c7f9c81ff0a27, 0x0a3e01093b6ac35e, 0x0d9c99ff0a39000f, 0x0d0ebd0e0dc9ff3c, 0xffbb85cc49ff0a47, 0x0a9401093c24a9e9, 0x0a66000c0a74a704, 0xa30359ff0a61a404, 0x9105bcd70879ff3b, 0xffbbdcb956ff0a6f, 0x0a860009bca3c464, 0xd6218fff0a81080e, 0x0d0e3adc0b89ffbb, 0xff3cae6d61ff0a8f, 0x0aaf8e05bb726b2b, 0x851a88ff0aa1000c, 0x18e4ff0aaa020d3d, 0x0ebce0c850ffba5a, 0xff0abc82040ac100, 0x4638a0ffbd0b99d0, 0x6f40ff0aca0002bc, 0x0f3cabde57ff3bd3, 0x0e0b63030b0bef00, 0x050aff070e0b1f09, 0xff0aec00090af191, 0x1e6938ff3b239f98, 0x596cff0afa0109bc, 0x09bc1dc9fcff3b92, 0xff0b0c080e0b1100, 0x18834dffbd3129f9, 0x82b7ff0b1a02093d, 0x093cc8ba78ff3d81, 0x050b35b3040b4300, 0x3b81cf92ff0b3093, 0x3e0007bd18f39aff, 0xa1ff3d008396ff0b, 0x090b550d0e39630f, 0xbdbe62f2ff0b5002, 0x5e0109bd1380e2ff, 0x39ff3d137a9dff0b, 0x050bab0007bbe24e, 0x040b7d94040b8b91, 0x3b8f373aff0b788b, 0x8697043d363e38ff, 0x78ffbd9abe41ff0b, 0x0b0b9d6b043bb50d, 0x3d9e5f30ff0b9805, 0xa69e043da82fb4ff, 0x5bffbc7d88a3ff0b, 0x040bcf7f04b92a64, 0xff0bbc050b0bc16f, 0x1a1bf0ff3d38b25d, 0xfa6bff0bca050b3c, 0x04bdbe3d6fffbd05, 0xff0bdc000c0be190, 0xd34ef4ff3c576264, 0xd52cff0bea94043d, 0x09bb1fd459ffbd82, 0x120c3b00070c7f00, 0x020c0d8e050c1b00, 0xbc22d7c0ff0c0800, 0x16c6043bd06f14ff, 0xd4ff3a0f1439ff0c, 0x0b0c2d93053af181, 0x3b206ac5ff0c280b, 0x360d0bbb8a97ddff, 0x21ffbac2c1b8ff0c, 0x0b0c5f030b3aeda9, 0xff0c4cb1040c5102, 0xa8a539ffba7f0b9c, 0x688aff0c5a0012bb, 0x053ab20a65ffbb62, 0xff0c6cbc040c718e, 0x5c05c4ff3b66b9bd, 0xd8f8ff0c7a000cbb, 0x09badff2c4ff3a1c, 0x040ca700020cc702, 0xff0c94030e0c99af, 0xc1c01fff3a8cb4ec, 0x65dfff0ca29405bb, 0x04ba92afefff3c09, 0xff0cb4ab040cb9bd, 0x121d00ff3a1b5e43, 0x920eff0cc2bf04bb, 0x0d39db6668ff3c90, 0x0e0cdd0d0e0ceb06, 0xbae1b9c8ff0cd807, 0xe6000c3b99bf80ff, 0xbdffba124dafff0c, 0x0b0cfd010ebc15c5, 0xbb1ccaf8ff0cf810, 0x0600113b44a48fff, 0x36ffbbc4b7eeff0d, 0x0e0f4b010cbc9bb9, 0x0e0da3150e0e2f1d, 0x040d3fc1040d5f10, 0xff0d2c9b040d31bc, 0x64e781ffbd259e6a, 0xbf33ff0d3a000c3c, 0x053d7a0e13ff3cb4, 0xff0d4c060d0d518e, 0x8c9c10ff3baaa640, 0x8858ff0d5a8f05bc, 0x0dbc7b1c44ffbd09, 0x0e0d7500120d8306, 0x39a84528ff0d7013, 0x7eb9043d21d5ccff, 0xefffbc182b43ff0d, 0x0e0d950012bb2cde, 0xbb2db34fff0d9014, 0x9e0b0b3d8a3963ff, 0xc1ff3c30f95cff0d, 0x040debc9043da2b9, 0x040dbd170e0dcbac, 0x3c3cb1cdff0db8a6, 0xc60011bb7d6ab7ff, 0xd0ffbcabd9f7ff0d, 0x040dddba04bb86bf, 0x3a5b7a87ff0dd8b9, 0xe6bf043c890d07ff, 0x37ff3b3d0c3aff0d, 0x050e0fca04bb2af8, 0xff0dfc00080e0195, 0x14e783ffbb8717c6, 0xd331ff0e0a00113c, 0x043c9e3ae9ffbc01, 0xff0e1c000c0e21cb, 0x5c67e3ff3b55a79b, 0x9a8fff0e2a0011bc, 0x023ba66268ffbb85, 0x040e7b070b0ebf00, 0x0e0e4dc9040e5bcc, 0x3b8e2ee2ff0e4823, 0x56230eb9470d26ff, 0x33ffbceffe85ff0e, 0x070e6d000c3bd2a6, 0x3c3d3001ff0e6800, 0x76000fbbc1d93cff, 0xc0ff3d3c0378ff0e, 0x0e0e9fc2043c5519, 0xff0e8c90050e9121, 0x84a480ff3b8de847, 0x39b6ff0e9a2b0e3d, 0x0ebcd18525ff3ac5, 0xff0eac220e0eb123, 0x8d3a16ffbc45849c, 0x2a37ff0eba2a0e3b, 0x04395a173fffbc74, 0x050ee7b4040f07b5, 0xff0ed4070b0ed991, 0x19007bffbb0cc067, 0x1ea5ff0ee2010b3d, 0x0e3dbe12e0ff3ca9, 0xff0ef400090ef91f, 0x91c39affbc754e4b, 0x65a0ff0f02000c39, 0x04bd6ff39cff3ad1, 0x040f1dbe040f2bbf, 0x3d30e3fbff0f18b7, 0x2600093a940266ff, 0x51ff3cdf3301ff0f, 0x040f3d000fbba3e6, 0x3c2f0348ff0f38c5, 0x46000cbc0b738bff, 0x77ffba125cabff0f, 0x0e1059200e3b3aff, 0x0e0f92ba040fd61d, 0x020f6d120e0f7b17, 0xb8d3dc00ff0f6800, 0x76b8043c9c317bff, 0xf4ffbbdb595bff0f, 0xff0f848e053d676e, 0x0f8d0002bcf991e8, 0x23f8ffbc1a7f2cff, 0x150e0fb6180ebc2d, 0x72ff0fa3120e0fa8, 0x3bd224afffbc41c2, 0x16ee7fff0fb10108, 0x00073cd5bd7bffbc, 0xe9ff0fc3070b0fc8, 0x3be55b7dffbbb5ff, 0xc9d0c6ff0fd18e05, 0x0011bb608ce9ffbc, 0xca040ff5cd041015, 0x043db6345bff0fe7, 0xbc5e620bff0ff0cb, 0x0793053d2beac7ff, 0x1400ff1002010710, 0x053def2eadff3e37, 0x3da0bbdeff101095, 0x39ca043d95b43dff, 0x261f0e102b050b10, 0x00ffbcbfa42eff10, 0xff103400023c3b1a, 0xe00e22ff3cd4ba1c, 0x46cd04104b01093d, 0xa0ffbd74209bff10, 0xff10548f053cca92, 0x1e5618ff3d949156, 0x9ccc0410e0220e3d, 0x7701111085000810, 0x4230ff1072920510, 0x0b3d86a87cffbd3d, 0xbbef27b7ff108003, 0x8e0002bd38a958ff, 0x0111bddb1344ff10, 0xffbd865acfff1097, 0x10c00002bd143555, 0x10ad0b0b10b20007, 0x389effbdce21a9ff, 0x68ff10bb9005bda1, 0xbd80c8ccffbcc80a, 0x10cd000810d20009, 0x12faff3dde5f7fff, 0xb4ff10db00113e10, 0xbc6bfadeffbd57b3, 0x1108280e1128060d, 0x10f50b0b10facd04, 0xf161ff3c664b45ff, 0x2dff11030009bc8b, 0xbd272b27ff3e0973, 0x11159105111a2b0e, 0x4b0effbb22ce2eff, 0x56ff11238e05bc86, 0x3c362820ffbd0788, 0x113ecb04114c9405, 0x5aff80ff11390002, 0x0007bc80332aff3d, 0xffbc9d32a1ff1147, 0x115e230e3be5c414, 0x8c5e49ff11590002, 0xfdffbe45c651ffbd, 0x08000000133d85ac, 0x01000003e8000000, 0x0000001070000000, 0x0e07d78d05000000, 0x0402481906039116, 0x0400a08505012caf, 0x05003c5304005c5b, 0xff00290906002e4e, 0x1d21eaffb81a374e, 0xb06dff00375004bb, 0x0b3b5ebeaeffb9f5, 0xff00495005004e01, 0x99b3f5ff3ac76167, 0x6128ff0057010dbb, 0x1139779fa2ff3b3d, 0x060072ae04008002, 0x39172fd4ff006d12, 0x7b0d0eb97d1594ff, 0x82ffbbd84cd6ff00, 0x05009202083c5586, 0x3d1d597fff008d0b, 0x9b030b3b2cc29bff, 0x14ffbd40a17cff00, 0x0d00e89704bc8666, 0x0e00ba940400c802, 0x3bdc267dff00b507, 0xc3070ebbef1bd6ff, 0x78ffbd8c29efff00, 0x0e00da02073cfb48, 0xb5c878beff00d508, 0xe3000f3b695325ff, 0x4affbd0d585dff00, 0x09010c010cbb1977, 0xff00f9000c00fe00, 0x1f8d17ffb897dd9c, 0x5047ff0107020d3a, 0x0eba11a7b2ff3c1f, 0xff01190008011e07, 0x73e866ff3c2a1abb, 0x4b34ff0127080ebc, 0x0c3be6dfafffbcf2, 0x0f0178000201bc01, 0x07014a1005015800, 0x3ca930dbff014502, 0x530209bb73e018ff, 0x35ffb907cbecff01, 0x0e016a88053c2d52, 0xba7751c9ff01650b, 0x730e0ebb605d9eff, 0xbfff3a823b4fff01, 0x08019c8a053bf988, 0xff01890007018e01, 0xcc0210ffbb89b1af, 0xcd27ff019702073a, 0x0bbbc78e97ff3a70, 0xff01a9060d01ae14, 0x7644e7ffb926ca7f, 0xfed1ff01b7080eba, 0x0ebb0145f1ff3bc3, 0x1101e4000202040d, 0xff01d1070d01d600, 0xccddd0ff3bfd6a1c, 0x890eff01df5e05bc, 0x11bc72e137ff3b50, 0xff01f1ba0401f600, 0x4d3cc3ff3c82c566, 0x5cccff01ff6a05bb, 0x0bbc0531dbff3a6f, 0x0b021abe04022805, 0xbcaadbc1ff021501, 0x23c004bb9dc796ff, 0xbfffbd22b04aff02, 0x0d023a1206bc6aa5, 0x3c09edc2ff023507, 0x4306053d327ca2ff, 0x34ffbd196407ff02, 0x04035f130ebbc023, 0x0d0298010e02dc99, 0x05026a7c04027804, 0x3ba2fffaff026507, 0x738804bc037542ff, 0xdcff3c926b5bff02, 0x04028a04053becfc, 0x3c067409ff02858c, 0x930111ba8c5f0eff, 0xf8ff3ba44596ff02, 0x0b02bc0007bc8fe1, 0xff02a9000f02ae01, 0x0ff4c3ff3c67a22a, 0xcc8eff02b70002bc, 0x0f3b031e72ffbc0b, 0xff02c9000c02ce00, 0x9c3c72ffbc133f94, 0x4961ff02d70b0bbd, 0x05bca05c54ff3bf7, 0x040304a704031b01, 0xff02f1020802f6a5, 0xe87ed5ffbca9dc2c, 0x3a35ff02ff02083a, 0x0ebc3139b4ffbdcf, 0xff0311010d031603, 0xedd138ffbd1af0aa, 0xa7043dbd83f0ffba, 0x040e0331000f033f, 0xffbc9ce7e6ff032c, 0x033a000b3b96f1b1, 0x7fd7ff3b589569ff, 0x030b0351070b3c04, 0xffba10a0d2ff034c, 0x035a000fbc3de2fd, 0x7311ff3c2cdd3dff, 0xbf0403831905b92e, 0x30ff037011050375, 0x3b0114e0ff3b9abe, 0x83324cff037e0705, 0x010b3c1eff90ff3c, 0xff3c7e1008ff038c, 0x05d157053c7b7b28, 0x0429ab0404b5af04, 0x03c59e0403e50906, 0x03b2980403b79a04, 0x4817ffb8c05fffff, 0x3fff03c000023a9d, 0x3c118f75ffbaee91, 0x03d2450503d7300e, 0x30f7ff3b6a9d00ff, 0x9dff03e00112bb0b, 0x3a2651ceffbc7b27, 0x03fb7f0404094001, 0x6a5c03ff03f60705, 0x030bbc57a611ff3a, 0xff3ca90a61ff0404, 0x041b000f3b1497b4, 0x146881ff0416a904, 0x03053d572f15ffbc, 0xff3c36d5c9ff0424, 0x0471220eb9433e56, 0x04432f0504510506, 0x8135fdff043e0107, 0x190ebd6866edffbc, 0xffbb800348ff044c, 0x0463170ebcceec53, 0xfc5aa0ff045e0706, 0xae04badd220effbc, 0xff3b18c4edff046c, 0x0495110b3d9bf671, 0x0482230e04870008, 0x437fff3d215b73ff, 0x44ff0490060dbc0c, 0x3c4c213eff38e362, 0x04a2290e04a7ac04, 0xa234ff3badef8dff, 0x1eff04b0270e3d6a, 0xbc43d710ff3c3693, 0x0501020805455505, 0x04d33e0104e15405, 0x11de44ff04ce300e, 0x0008b91ec2f4ffbd, 0xffbb8be141ff04dc, 0x04f301123b647b88, 0x510118ff04eeb704, 0x01113d7eed3cffbb, 0xffbc61ff97ff04fc, 0x05252f0e3c4101dc, 0x0512000205172703, 0xa911ffbc6c97d3ff, 0x5cff05204f053d16, 0xbc0e9e34ff3ac6e1, 0x0532300e0537c804, 0xe7b6ffbcac6422ff, 0x93ff05400011399c, 0x3c26c442ffbd0665, 0x056d1d0e058d5605, 0x055abf04055f070d, 0xae4bffbd81c7d4ff, 0x46ff05680107bbb6, 0xbcbcedb5ff3c9859, 0x057a030b057f0011, 0xd896ff3bb2aa8aff, 0x83ff05880e0bbd16, 0xbca30c25ffbaa023, 0x05a3000205b1280e, 0x3d08bfff059e070d, 0xb204bac3cdfcff3d, 0xffbcb02eb4ff05ac, 0x05c3c3043c01e8ff, 0x1182faff05be0002, 0x0012bca8d345ffba, 0xffbcd97397ff05cc, 0x06f101073cc48c09, 0x0621000706658705, 0x05f302080601bb04, 0x5db27cff05ee010b, 0x0111388167a0ffbb, 0xff3a9fdba6ff05fc, 0x06137505bc776ecf, 0x39bf8cff060e220e, 0x090bbbc49461ffbc, 0xffbc1b0c3aff061c, 0x064586053a07adc0, 0x0632070d06370008, 0x5bf7ff3a8352eeff, 0xc6ff06400e0bbc5e, 0x3b7fe842ff3b06cc, 0x06520e0b06571d0e, 0x52acff3a3d8bcaff, 0x6aff06600012bc3e, 0x3a861572ff3ca498, 0x068d020d06adcc04, 0x067a030b067fb304, 0xd3aeff3c70af59ff, 0x97ff0688b704ba3a, 0x3b8ebf0dffbc6949, 0x069ac904069f0111, 0xcbe0ff3a973040ff, 0x17ff06a81f0e3b9b, 0xbc43655cffbb0eb4, 0x06c3890506d18a05, 0x1bbf09ff06be180e, 0x0008bbf8908fff3d, 0xffbcc5e360ff06cc, 0x06e300113c6d0280, 0xc4ce35ff06de220e, 0x1c0ebc115dbbff3b, 0xff3d5a22a3ff06ec, 0x078102073a10ac7f, 0x071d170e073d100b, 0x070a000d070f010c, 0x7c52ff3d6d452fff, 0x2aff071861053bc5, 0xbba8519cff3c1ef6, 0x072ab004072f0b0b, 0xbb70ffbb39737fff, 0x35ff07380e0b3ac6, 0x3ac17e4effbc9305, 0x07535f0507618205, 0x1ecb69ff074ec404, 0xc6043c955830ff3b, 0xffbbe49ce1ff075c, 0x077383053a447497, 0xdbb664ff076e260e, 0xcd04bcbc9cf0ff3c, 0xffbb9cff9eff077c, 0x07935d043c54f55e, 0x809ee0ff078e0002, 0x060dbe005e31ffbc, 0x000807a9760407b7, 0xffbbce679bff07a4, 0x07b20111be2203fa, 0x5dabffbb2114e0ff, 0x1c0e07c91d0e3b63, 0xff3a81c1f2ff07c4, 0x07d20012bc5da78f, 0x7d86ff3add0c79ff, 0x020d0c4e0e0e3c32, 0x070e08ff90040a12, 0x8104082f030e0873, 0x90050801010e080f, 0xffba898d3dff07fc, 0x080a90053b9504d6, 0x45abffbb01acc8ff, 0x010b08218804bd92, 0xffbcfe5590ff081c, 0x082a000dbc2aa22a, 0x365effbc49f235ff, 0x030b08536f043c7f, 0xf0ff084066040845, 0xbcbd5d86ff3d1711, 0x18ba92ff084e0107, 0x0107bd645bf6ffbd, 0xa8ff086000090865, 0xb9e3b800ff3c8172, 0x8305bcff086e0207, 0x000cbd757edeffbc, 0x000f089b950508bb, 0x38ff0888010b088d, 0x3bef1ea6ffbb9408, 0xa2c9a2ff08960002, 0x0111bd4cb48fffbc, 0x38ff08a8000708ad, 0x3cbe4e9bff3c5ef0, 0xa3dfaeff08b60007, 0x080ebd838a0cffbd, 0x920508d1000d08df, 0xff3aa4b53eff08cc, 0x08da0002bd28066d, 0xa538ffbcb54019ff, 0x000208f18f05bd3a, 0xffbc9ba7fdff08ec, 0x08fa010b3ce1f148, 0x8e05ff3a80442bff, 0x9a04098f9c043d2a, 0x0112092b9604094b, 0x44ff0918010b091d, 0xbc5913f3ff3c2247, 0x29eb47ff09269205, 0x97043cfd73c4ff3c, 0xb8ff0938000d093d, 0xbd00a387ff3d40b3, 0x918f25ff09460008, 0x000c3d2d8b1affbb, 0x030b09618f05096f, 0xffbcc09930ff095c, 0x096a9505bd44f5b0, 0x7b7dff3c2b3167ff, 0x9b040981030b3d2d, 0xff3cb6dae8ff097c, 0x098a00073d3edf5b, 0x3348ff3d9a1448ff, 0x9d0409ce9e043d9d, 0x000209a9030b09ae, 0xffbe128fc4ff09a4, 0x52f974ffbdf18c70, 0xbb020709c0000cbe, 0xf0ffbcee362dff09, 0xff09c9030bbdad8d, 0x9c89bcff3cf5048d, 0xe4000209f29f043d, 0x016cff09df070e09, 0x093d8431b0ff3db7, 0x3d4d2a18ff09ed01, 0x04a7043d7cdd10ff, 0xc319ff09ff00020a, 0x04ba0c82e7ffbc94, 0x3c5d66b3ff0a0dab, 0x320011b992ce0fff, 0x62b7040aa6bc040b, 0x3400020a428f050a, 0x02ccff0a2f010c0a, 0x04bd178383ffbbae, 0xbb17a255ff0a3da8, 0x5400093bdfb5f8ff, 0xa21fff0a4f020e0a, 0x043bd2c9c8ffb82d, 0xbb118efbff0a5db4, 0x86030e3bf8d8c5ff, 0x7300070a78010e0a, 0x20ffb9938aa6ff0a, 0xff0a81b8043b9892, 0xe95581ffbd1e3cd7, 0x93080e0a98bb04bb, 0x54ffbc01ca9bff0a, 0xff0aa18f053c3989, 0xbde4c5ffbdb54caa, 0xce080e0aeec1043c, 0xbb000c0ac000090a, 0x98ffbc0d4aebff0a, 0xff0ac9070ebd012f, 0x253be6ffbb82cef4, 0xdb000c0ae0bf043c, 0xf5ff3b0964afff0a, 0xff0ae98e053ce511, 0x61ed38ffbd0fcbc6, 0x04ca040b120002bb, 0xc1d9ff0aff000c0b, 0x0e3b8ad6d4ffbb24, 0xbb8f39ffff0b0d08, 0x24c4043c866370ff, 0xe3b7ff0b1fc2040b, 0x04b9d3960fff3bc1, 0xbc0ca05fff0b2dc7, 0xc28e05b9ac08f7ff, 0x5e060d0b7e130b0b, 0x4b100b0b509c040b, 0x1effbab54414ff0b, 0xff0b59b504bcea08, 0x548fceffbb1296e8, 0x6ba6040b700d0e3b, 0xbfff3c378ffeff0b, 0xff0b790002bb7db5, 0x3050a1ff3d3f664e, 0x94ca040ba20a0ebd, 0x59ccff0b8fc7040b, 0x0dbce06133ff3be7, 0x3d521fa7ff0b9d06, 0xb4b2043d963530ff, 0x1766ff0baf000c0b, 0x0d3d971817ff39bd, 0xbbf76eebff0bbd06, 0x0a00123c8256aeff, 0xdc000c0bea070e0c, 0x389fff0bd700090b, 0x09bc27978bffbd2c, 0xbda5d59bff0be501, 0xfc0b0bbccf6ab1ff, 0xe54eff0bf7ca040b, 0x053d4896e0ffbc89, 0x3c8a7872ff0c0590, 0x2e060dbbc35488ff, 0x1b030d0c2051040c, 0x0effbdb1580dff0c, 0xff0c299f043aef5b, 0x0eeeb7ffb8d25c9c, 0x3b8f050c40ca04ba, 0xe0ff3c1bec07ff0c, 0xff0c4900073aff64, 0x6298c9ffbd0f2ff9, 0x721d0e0e8e010c3c, 0xa2bf040ce6160e0d, 0x740f0e0c82bb040c, 0x02a0ff0c6fa0040c, 0x023cee8905ffbb61, 0xbbde439fff0c7d00, 0x94000d3b7a6058ff, 0xb7a5ff0c8f050b0c, 0x093d9122dbff3b30, 0xbcc11c4bff0c9d00, 0xc6c2043bca793fff, 0xb3150e0cb800090c, 0x0fff3cfc778cff0c, 0xff0cc10111bca8fc, 0x5d8cf8ffbaa1f837, 0xd301090cd88e05bd, 0x0aff3ca8b154ff0c, 0xff0ce10012bc1444, 0xb03a15ffbb846ed3, 0x0ebf040d2e8e05b8, 0xfb00090d00be040d, 0x80ff3afb52c5ff0c, 0xff0d09170ebc7364, 0xea4862ffbc984bc5, 0x1b00090d20c0043c, 0x39ffbd2298bfff0d, 0xff0d29cc04bb13f2, 0xb5a382ffba40ad09, 0x44190e0d529804bc, 0x4ddcff0d3f170e0d, 0x0b3c99ce66ff3df2, 0xbc458d62ff0d4d05, 0x64020d3c54a9c0ff, 0xde27ff0d5f1c0e0d, 0x08bbb60a66ff3bbe, 0x388b927cff0d6d02, 0x02020dbb8704f3ff, 0x9e00080dbe280e0e, 0x8b250e0d90260e0d, 0x10ff3b12afbcff0d, 0xff0d990009bd6b23, 0x87342bff3cadf33e, 0xab8e050db0b9043d, 0x27ff3d6300adff0d, 0xff0db9ba04bd3b22, 0x7b9fb9ff3ded166c, 0xd42a0e0de2ba043c, 0xfbb5ff0dcf000c0d, 0x04bd4bb726ff3d71, 0x3d1a05bdff0dddb9, 0xf4c504bd275febff, 0xd956ff0def2b0e0d, 0x04bbfaf9e1ff3ccf, 0xbc7287c9ff0dfdc7, 0x4a000239bf5b2fff, 0x1c01110e2a90050e, 0x97bcff0e171f0e0e, 0x0cbbba336aff3c2e, 0x3ceb58b4ff0e2500, 0x3c9105bb82074bff, 0x92e9ff0e37bc040e, 0x083c741dbbffbd93, 0x3a261efcff0e4501, 0x6e0111bc8b5d75ff, 0x5b050b0e600b0b0e, 0x66ffbb2d9de7ff0e, 0xff0e6900083b84d2, 0x639aa8ffbbcc3fb6, 0x7b000f0e80ba043c, 0x7bffbd8bed17ff0e, 0xff0e89bd043b73bb, 0xdde578ff3d0dde6d, 0x19c4040fa50108bb, 0xbec2040ede150e0f, 0xab00020eb0100e0e, 0x01ff3c308835ff0e, 0xff0eb900023d4141, 0x1f2aacff3c3dd767, 0xcb140e0ed0c304bc, 0x01ff3d2cd868ff0e, 0xff0ed900113cd29d, 0xa7b300ff3d84ffb1, 0xf4c3040ef900113d, 0xada5ff0eef8e050e, 0xffbc3ed36cff3bb4, 0x0f0b060dbde67814, 0xc1f3a4ff0f068e05, 0xbf04bb989109ff3b, 0xffbbc39f08ff0f14, 0x0f61060d3d862cfa, 0x0f33220e0f41cc04, 0x3bc27aff0f2e1f0e, 0x0009bd03b906ff3b, 0xff3c6c9229ff0f3c, 0x0f538e05bcb4e209, 0x76a1daff0f4e0002, 0x8f05bd672c04ffbc, 0xff3ca9f1a9ff0f5c, 0x0f850011b9b1ffa1, 0x0f721d0e0f77220e, 0x1588ff3a41c0dbff, 0x1fff0f8091053d4e, 0xbcebf3e7ffbb1552, 0x0f9294050f97030b, 0xc78aff3abcef54ff, 0xb0ff0fa0140e3d18, 0xbd8698faff3d1596, 0x0ff1000710118f05, 0x0fc30b0b0fd10002, 0xc682d7ff0fbe0011, 0x060d3d100a20ff3d, 0xff3ca48d94ff0fcc, 0x0fe3cd04bcc5bad0, 0x1fd81aff0fde0208, 0x0011bc2b3800ff3c, 0xffbda767f7ff0fec, 0x0ffa0012bce32420, 0x03010bbd857f16ff, 0xcd04bcff9f70ff10, 0xffbc2e7fd0ff100c, 0x10350011bc8f4d90, 0x1022140e10300b0b, 0x2b0002bc2286a0ff, 0x43ffbd3418d2ff10, 0xbbea7340ffbdaee6, 0x104b00021059cd04, 0x5c2bf0ff1046cc04, 0x150ebdaa9ca9ffbc, 0xffbd69bb7cff1054, 0x106b00023cef8b47, 0x04aa9cff10660007, 0x1cffbc9328a0ff3d, 0x0800000013bd0b85, 0x01000003e8000000, 0x00000010e5000000, 0x0508c18d05000000, 0x0402489904044528, 0x0100a03f01012c6d, 0x01003c4804005c2a, 0xff00291a01002e22, 0xb00c2affb9d8b7e0, 0x7bb0ff0037170e39, 0x05bb799575ffb92e, 0xff0049180e004e0f, 0xaa331affbba999ce, 0xd21fff0057200eba, 0x0439430098ff3a91, 0x0e00726304008065, 0x3ad0d6baff006d2b, 0x7b0b06bc15bb1dff, 0xc4ff3b6775a4ff00, 0x0400920107bd3779, 0xbc8a5e7cff008d67, 0x9b3701bb659600ff, 0xd6ff3ae358d8ff00, 0x0400e863043c3435, 0x0300ba000f00c844, 0x3c3c2a51ff00b52b, 0xc34001bb868fbdff, 0x4fff3b41edc4ff00, 0x0c00da4101ba36ac, 0x3c1bb66fff00d501, 0xe302113cae4738ff, 0x8affb9331829ff00, 0x0e010c64043bf982, 0xff00f9020d00fe09, 0x89126bff3af62f2f, 0x2c4eff0107030bbc, 0x01bcbfa475ffbd62, 0xff01190d0e011e41, 0x1efd09ff3cffaa27, 0xd0d0ff012702113c, 0x083c0b27caffbb02, 0x040178010d01bc00, 0x06014a1506015889, 0xbb060e7bff01450c, 0x537a043c8fa0e5ff, 0x3fffbce84684ff01, 0x0e016a06053addee, 0x3cea6eb0ff016501, 0x73030bbd3dbdf6ff, 0x40ffbcb591dfff01, 0x04019c050b3b6618, 0xff01897204018e73, 0x461becffbc07ecbe, 0x87f6ff01971005bd, 0x06bc5d66dbff3b43, 0xff01a9010701ae15, 0xacccc7ffbb9cc2a9, 0xd1eaff01b7000f3b, 0x0ebba11f99ffbc79, 0x0f01e4180502041b, 0xff01d1170601d600, 0x0ea3a0ff3c87fd6c, 0x8d1bff01df1405bc, 0x0e3cf51ca1ffbb86, 0xff01f11c0501f609, 0x3cb8a2ffbab3d2d4, 0x1190ff01ff2205bc, 0x113c98823fffbaa2, 0x04021a140b022800, 0xbbbfb4a8ff021591, 0x237704bcd40b20ff, 0xedffbc5d1994ff02, 0x0e023a280e3c2aa2, 0x3d15cf21ff02351c, 0x4301123c0d96ccff, 0xfeffbb1837c8ff02, 0x0e036826053b053d, 0x040298070d02dc33, 0x03026a000602789e, 0x3c87ab8cff02651b, 0x730111bc6066e5ff, 0x39ffbc40ad82ff02, 0x04028a001139db16, 0xbd07d1c9ff0285a7, 0x930f063b894dacff, 0x39ff3b26f46dff02, 0x0502bcb8043993df, 0xff02a9180502ae20, 0x97388bff3cbe14cd, 0x3fe9ff02b72205bc, 0x043c6ab474ffbe02, 0xff02c9010c02ceb9, 0x0d62e6ffbe7ff76b, 0x5418ff02d70108be, 0x07bd995abcffbd34, 0x0d03041206032402, 0xff02f1000d02f602, 0x9d4bedffbc9495b0, 0xd896ff02ff0006bb, 0x053a9d9b09ffbc8d, 0xff03111306031607, 0x6a7b7bffbd634c02, 0x2c24ff031f9a04bc, 0x0e3cd2e34bffbc52, 0x12033a3301034835, 0xbcca335dff033501, 0x43a5043c997fc8ff, 0x4dff3b91bb29ff03, 0x11035a0006bc359c, 0xbdb717f8ff035501, 0x630706bc765d0fff, 0x85ffbc220013ff03, 0x0503f8310ebd3d08, 0x0b0394010c03b427, 0xff03819c04038611, 0x4901a0ff3d5e0cd7, 0x835fff038f0011bc, 0x043dc3b3bcff3d7b, 0xff03a10b0b03a6a1, 0x0fe0edff3d89a490, 0xf7a7ff03af40013d, 0x063cd32cbbffbc6b, 0x0c03ca2a0e03d800, 0x3d9b87daff03c501, 0xd301083cb68ec5ff, 0x7cffbcd455a1ff03, 0x0c03ea07063c599b, 0xbd9bd539ff03e500, 0xf30f06be06139aff, 0xbcffbd1502e2ff03, 0x080440c2043b9a52, 0x0c04120112042001, 0xbcf2f733ff040d01, 0x1b340eba713384ff, 0xefffbd9d49d0ff04, 0x0b04322401bc8b68, 0x3c89378cff042d03, 0x3b120bbcf7094bff, 0x09ff3a13906cff04, 0x3df729e0ff3c5813, 0x0569010c0685110e, 0x0499160604dd0b0e, 0x046b6a0504790207, 0x9f0578ff04669004, 0x0a0e3a80a2c9ff38, 0xffb956c4ebff0474, 0x048b0112bd11b7b9, 0x36a286ff0486070e, 0x7505bc3206f7ffbb, 0xffba77c974ff0494, 0x04bd000fbc547e53, 0x04aa000704afa104, 0xb92bff3b8222c3ff, 0x0eff04b8050d3cd8, 0xbc9b9ea2ffbc04d8, 0x04ca020e04cfb304, 0x6c00ff3b9ae5cbff, 0x34ff04d80b0b3a6b, 0xba06d482ff3adfb9, 0x0505070d05250008, 0x04f20f0e04f70109, 0xbc57ff39c1a169ff, 0x95ff05000d0ebb8e, 0xbb2f7ad2ffbcaa1b, 0x0512770405170d0e, 0x7fcbffbc49f8f3ff, 0x74ff05200007bd42, 0x3b76fe52ffbc40eb, 0x053b8f040549000c, 0x52ad00ff05360002, 0x0d0e3bece3b2ff3a, 0xff3b32ec96ff0544, 0x055b5705bc06d1b6, 0xcc4e5bff05560006, 0x0107bc7480b4ff3b, 0xff3c5d5658ff0564, 0x05f900023b0b3286, 0x0595001205b50208, 0x0582760505877705, 0x58c5ffb9d3c935ff, 0x7eff059000073aaf, 0xbc531b15ffba82e4, 0x05a20b0e05a70008, 0xf0f3ff3a7d6963ff, 0x4cff05b07f053b56, 0xbb8c8d70ff3c2e0a, 0x05cb010705d9070e, 0x29593dff05c6070d, 0x0011bc9f0cf8ff3c, 0xffbcf66eaaff05d4, 0x05eb060d3a8a532f, 0x7b58b1ff05e64b05, 0x00123c75aaf7ffbc, 0xffbcabd703ff05f4, 0x0641070dbd6ba1f7, 0x06130b0e06217e05, 0xd4031fff060e7c05, 0x0208bc42d2d2ffba, 0xff3c516b2fff061c, 0x06330d0ebc2c9eb3, 0x841c80ff062e000e, 0x0108ba8808caffbc, 0xff3c145280ff063c, 0x0665ad043da4a5a5, 0x0652070e0657a704, 0xa967ff3bf96ab5ff, 0x4aff066000093ce7, 0xbc4ba99fff3d827a, 0x0672070e06770d0e, 0x71e7ffbdc96f66ff, 0xa3ff06800009bc85, 0xbcf808c2ff3d83f7, 0x0719ab0407a5020b, 0x06b5000d06d57f05, 0x06a23c0106a73f01, 0xa413ffbbf1858eff, 0x0aff06b0250e3d2f, 0xbd63667effbb5a1e, 0x06c23c0106c7010d, 0xa7dcffbc307f88ff, 0xf0ff06d0010bbd50, 0xbad13bccffbbac1f, 0x06eb310e06f9020d, 0x92047bff06e6220e, 0x80053cde6eecff39, 0xffbd7d6c9aff06f4, 0x070b000cbe3e8831, 0x0918caff07068b04, 0x170ebb3ba1dcff3c, 0xffbd170719ff0714, 0x07617705bbb0a853, 0x0733000c07412905, 0xa2413aff072e2a0e, 0x1606bd55656affbd, 0xffbde8d5a3ff073c, 0x07533305be053af3, 0xc6d058ff074e000b, 0xb504bbf08de4ff3c, 0xffbbc29e24ff075c, 0x0785ae04bc80e010, 0x0772000f07770007, 0x197fffbda76ccaff, 0x75ff07800002bccb, 0x3a51d499ffbcb471, 0x0792000f0797b004, 0xfdbfff3d454e6eff, 0x22ff07a08405bb18, 0xba95ba89ffbc2d8e, 0x07f187050835c604, 0x07c3020907d10a06, 0x95b1a1ff07bec504, 0x050bbb1e4767ff39, 0xffbc639d17ff07cc, 0x07e30c06bbccb222, 0xa9ed57ff07deb604, 0x01073ad28b94ff3c, 0xffbb518d10ff07ec, 0x0815bf04bc98875b, 0x0802120e0807b704, 0x36a5ff3cba7b5fff, 0x37ff0810050dbab4, 0x3b05eab5ff3b6785, 0x08222a0e08278805, 0xb07fffbc9040c4ff, 0x10ff0830060d3c59, 0x3bf779bbffb9e503, 0x085d230e087d7905, 0x084a0a06084f000f, 0x00bcff3ca5fa7cff, 0x57ff0858cc043b1d, 0xbca83db6ff3ba7a5, 0x086a0006086f260e, 0xcd2fffbd81f50bff, 0x7aff0878280e3c27, 0xbb1f8e48ff3d2dfa, 0x08937b0508a1c704, 0xdf9e82ff088e010c, 0x010c3de8f61dff3c, 0xff3a0251eaff089c, 0x08b37b053c93abe6, 0x7923e8ff08ae310e, 0x7c05bcc41ac5ff3c, 0xffbc80f02cff08bc, 0x0cde120eba0dece2, 0x09e095040afc100b, 0x09199605095d0207, 0x08eb900508f99204, 0x9e4230ff08e69004, 0x94053c13c32dffba, 0xff3b3edec6ff08f4, 0x090b030ebaace863, 0x1261dbff0906020e, 0x050bbcfd9d13ffbc, 0xffbb04a403ff0914, 0x093d01113c471ebf, 0x092a0007092f000f, 0xe24dff3c0ab995ff, 0x7cff0938010b3ca2, 0x3885ce40ffbc9fe8, 0x094a040b094f000e, 0x1c9effbc218694ff, 0x1dff095800073b9a, 0xbd2d008effbd7723, 0x0985900509a50012, 0x0972000e0977000f, 0xf28affbcbb80e9ff, 0x9cff09808f05bc7f, 0x3c12910eff3b1861, 0x0992010b0997000e, 0xe22cff3d037c29ff, 0x8fff09a091053c6a, 0x3c9c4d30ff3d0dff, 0x09bb000e09c9000c, 0x31cabcff09b6060d, 0x0111bc9c6c70ffbb, 0xff3a58e292ff09c4, 0x09db0112bd358397, 0x185cb6ff09d60002, 0xb2ffba4f0a75ffbd, 0x0c0a708f05be3a62, 0x0b0a0c02090a2c01, 0xff09f9960409fe02, 0x85bf5dffbd692a74, 0x9f35ff0a070e0bbb, 0x04bc693ec2ff3a08, 0xff0a1901110a1eb4, 0x6e1d6fffbbb59e9c, 0x4f10ff0a27b5043b, 0x0bbc149b1effbda7, 0x0e0a429c040a5003, 0x3d0c7246ff0a3d07, 0x4b0002bcac64d3ff, 0x6bffbbd8d34fff0a, 0x040a62090b3bc860, 0xbcbef747ff0a5dbb, 0x6b070dbb8c4d91ff, 0xbeff3b3b2082ff0a, 0x0d0ab8020dbdb3ec, 0x080a8a00070a9800, 0xbad71febff0a8500, 0x93040ebd3cc5d0ff, 0xd8ff3a636100ff0a, 0x0e0aaaa7043d2efe, 0x3bf74082ff0aa502, 0xb30111bbba8f2fff, 0xd5ffbc43d254ff0a, 0x040adc01123a81a0, 0xff0ac9ba040acebb, 0x02a73dffb9a63335, 0x7128ff0ad7cb04bc, 0x04bb639faaff3a0c, 0xff0ae9000c0aee97, 0x082f0aff3bfa7f8e, 0x4df6ff0af70009bd, 0x0e379d5e3eff3aed, 0x080b90000c0c1c0b, 0x040b2ca4040b4c00, 0xff0b19120b0b1ea2, 0x31882fffbc2f0331, 0x261fff0b278e0539, 0x12bc1da38dff3d1a, 0xff0b39cb040b3e00, 0x1f6480ffbaf10394, 0x7ac8ff0b47c0043c, 0x0e3bc35571ff3ae0, 0x040b62060e0b7007, 0xbbedd1b2ff0b5db3, 0x6b01113a154db1ff, 0x88ff3c30c5d7ff0b, 0x020b820a0e3d21e8, 0xbc33b204ff0b7d00, 0x8b00123ac03682ff, 0xddff3d0aa5ccff0b, 0x040bd80008bcd435, 0x040baa0a0e0bb8c4, 0xbb66947aff0ba5a5, 0xb3b2043b91adbbff, 0x77ff3d87fc15ff0b, 0x040bca0107bc8716, 0x3d0c328cff0bc5c5, 0xd3070e3bc4d1efff, 0x5fff3ccd447dff0b, 0x040bfc030e3c6d55, 0xff0be9130b0beeb3, 0x36dc97ff3a6ace90, 0x7a90ff0bf70011bc, 0x123c1b7f6bffbb22, 0xff0c09080e0c0e00, 0x64dfdbffbc1dd199, 0x7fbaff0c1701123d, 0x0d3ba439d3ffbce0, 0x040c68c6040cac07, 0x0c0c3a92050c48c5, 0xbb6f4e46ff0c3501, 0x430002bcb050bdff, 0x42ff3c5826adff0c, 0x080c5a000c39d707, 0xbb2fa2d6ff0c5500, 0x630108bcc22a4dff, 0x66ffbd0020b9ff0c, 0x0b0c8ccd043d23e6, 0xff0c7900070c7e11, 0x88c710ffbd755a2b, 0x26abff0c870d0e3b, 0x073bbc1507ffbadc, 0xff0c9901090c9e00, 0x0fde3effbcd1483c, 0xdf74ff0ca70107bb, 0x0ebd1edefaffbce9, 0x050ccb00070cd00d, 0xff0cc1000c0cc68f, 0xc1d7b7ffbdc817c2, 0x08ffbd583e69ffbd, 0xff0cd90002bcd550, 0x89f004ff3d4cf4b8, 0xf9200e0eb28e053c, 0x29b8040d6d150e0d, 0x0400020d120b0b0d, 0xcc1eff0cff060b0d, 0x0dbd443ef7ffbbb3, 0x3d4795ebff0d0d06, 0x24000cbc507643ff, 0x7918ff0d1f00080d, 0xffbd5d01feffbd5c, 0x0d4d0011bddb0159, 0x0d3a070d0d3f0009, 0x8349ff3d3388e2ff, 0xadff0d48000c3b33, 0xbd7061b4ffbc741d, 0x0d5abc040d5f140e, 0x3386ff3d44cc49ff, 0xbcff0d680008ba14, 0xbc391ca6ff3c3bfb, 0x0d9500070db5cc04, 0x0d82a7040d87b104, 0x96a9ff3a9258c9ff, 0x64ff0d90bc04bc5a, 0x3a3ee5c0ff3c596c, 0x0da2ca040da7170e, 0x9b2aff38d7b75aff, 0xa6ff0db01b0e3ca7, 0x3bc75dc9ffbc7427, 0x0dcb02080dd90007, 0x2155a0ff0dc60108, 0x0b0b3c8708a4ff3d, 0xffbce88bf4ff0dd4, 0x0deb0107bd0911f6, 0x02af89ff0de60011, 0x060dbd99c688ffbd, 0xffbd06fcb1ff0df4, 0x0e80070dbc16e487, 0x0e25b4040e3cb604, 0x0e12a8040e17b204, 0x7821ff3c1b7566ff, 0x7dff0e200007bcdf, 0xba011400ff3d2e73, 0xc4ff85ff0e2e000c, 0x32d7ff0e37020dbc, 0x04be1e40d7ffbdee, 0x0d0e52010b0e60b8, 0x3da580f1ff0e4d04, 0x5b030b3e446ce6ff, 0x4bff3cefa80fff0e, 0x0e0e72280ebbad71, 0x3a9d8dceff0e6d25, 0x7b0012bc91d48eff, 0x0cff3cf3f006ff0e, 0x0b0ea4000c3b5e23, 0x080e9ac6040e9f03, 0xbc7572eeff0e9500, 0x38c0ffbc9902feff, 0x04bd2ad6cdffbcc0, 0xbd325aa3ff0eadc6, 0xc98f05bd54dfbcff, 0x02cc040f46070d0f, 0xd4cb040ee2000f0f, 0x30ddff0ecfbb040e, 0x0b3c3e95aaffb8f0, 0x3b4447abff0edd03, 0xf40002bd917cecff, 0x4f9fff0eef0a0b0e, 0x04bca19227ffbb5b, 0xbb10f2b1ff0efdc7, 0x2600083b6f3adeff, 0x131c0e0f18300e0f, 0xa5ff3b81e2b1ff0f, 0xff0f21340ebc97ee, 0xb0d5deff3c84bac8, 0x3302080f38000cbb, 0xabffbc395fc7ff0f, 0xff0f410b0b3c6339, 0x8292d4ff3bf20df0, 0x6eca040f8e250e3d, 0x5b01090f60140e0f, 0x8cff3b75596fff0f, 0xff0f69b9043d0379, 0x017afcff3b84e406, 0x7b00070f80cc04bd, 0x0eff3db97c8aff0f, 0xff0f89010c3d38e8, 0x9d9d98ffbc173542, 0xa4030b0fb201083c, 0x0adaff0f9f00080f, 0x0cbc30a501ffbd18, 0xbd8982ddff0fad01, 0xc4030bbcb17915ff, 0xd6e6ff0fbf02080f, 0xff3cc81fcdff3c80, 0x1059150ebc22327c, 0x0ff5c0041015c204, 0x0fe2060d0fe79205, 0x3d4dff3b8d7809ff, 0xc3ff0ff0be043ccc, 0x3c7693bfffbc33c3, 0x1002000f1007090b, 0xa61affbd73ecb8ff, 0x99ff10100002bb76, 0x3d0efdadff3d96d1, 0x102b00111039c504, 0x03cc70ff1026000c, 0x060dbda86720ffbd, 0xffbc31b761ff1034, 0x104b92053ca4eda8, 0x410c98ff10469105, 0xcd043c52267aff3a, 0xffbb72705fff1054, 0x10a1010b3c0297fc, 0x1073a6041081a704, 0xb68529ff106e0002, 0x00073be0f8a6ffbc, 0xffbdc3bcd8ff107c, 0x1093310ebd5a2960, 0x07829fff108ec704, 0xc704bbc31fb2ff3a, 0xff3da9048eff109c, 0x10c5010c3c27c48c, 0x10b2c30410b70b0b, 0x8629ff3a320053ff, 0x32ff10c00e0b3a30, 0xba881b7affbc95e8, 0x10d2ba0410d7180e, 0x4448ff3da8341aff, 0x49ff10e0190ebc00, 0xbabcdee0ff3bb86d, 0x0000000800000013, 0x00000001000003e8, 0x000000000000111b, 0x0484190608af8305, 0x012c000f02485305, 0x005c090b00a02b05, 0x002e0b06003c0002, 0x4eeb14ff00297f04, 0x8b04bb52d7ceffba, 0xffbb9665f7ff0037, 0x004e000c3c283c90, 0xd53e1eff00499f04, 0xbc04bcb2be98ffba, 0xff3a3999c0ff0057, 0x00800f053cc9e159, 0x006d150600720a05, 0xc662ff39c1df1fff, 0x45ff007b0806bb43, 0x3c049881ff399e15, 0x008d02080092000e, 0x9242ffbb8792f1ff, 0xf9ff009b0008bcce, 0x3bf9d06fff3b1430, 0x00c80f0600e80208, 0x00b5ad0400ba0506, 0xbac6ff3aeb3120ff, 0x5aff00c30a0e3b84, 0x3c6aea8cffbb3acd, 0x00d5aa0400da000c, 0x6f31ffb68b0fe5ff, 0x17ff00e31406bc4b, 0xbc2b9a49ff3bc17d, 0x00fe3d05010c0007, 0xeeee45ff00f9050d, 0x6d043cb695f9ff3b, 0xff3c7fad96ff0107, 0x011e0006bbb51d37, 0x1be4e8ff0119020d, 0x9a04bc9b8e02ff3c, 0xffbd505af8ff0127, 0x01bc4a05bc124918, 0x01583e0101784905, 0x01459c04014a3b01, 0x0482ffb98b29b4ff, 0x04ff01533c01bb63, 0x3c237ab0ff3a8429, 0x01652703016acb04, 0xccfaff3b9c8e1bff, 0x54ff01730108ba23, 0x3ac55701ffbbb50a, 0x018e8404019c9804, 0xe29774ff01895d04, 0x220ebc3a3fc8ff38, 0xff3ba38219ff0197, 0x01ae01113cacb403, 0x8e6c2cff01a9070d, 0x01073d3a881affbc, 0xff39acb5b9ff01b7, 0x0204b3043d4e55c5, 0x01d6010c01e4b204, 0x0eca38ff01d1100b, 0x0208b9b2dd37ffba, 0xff3b9a12f2ff01df, 0x01f64b05bbec138b, 0x699198ff01f1230e, 0x00123c01183aff3d, 0xffbc2d1c1aff01ff, 0x022852053bc2c186, 0x0215ba04021a2b0e, 0x46faff3c2ad853ff, 0x74ff02232e0eb9b9, 0x3b4493f4ffbd8786, 0x02350c0b023a070d, 0xc86bffbc0fda80ff, 0x0aff0243170ebc96, 0x3c8ac568ffbced03, 0x02dcbf040368140b, 0x0278340e02980008, 0x0265a704026abe04, 0x57d9ffbacae797ff, 0x75ff02730006ba7b, 0xbd9a862cff3c2c6b, 0x0285000b028a7305, 0x9652ffbd95d750ff, 0xf4ff0293b504bc03, 0x3c9ddad2ff3d7e8c, 0x02ae540502bc5b05, 0xabff48ff02a9070b, 0xad04bca0ef1cffbb, 0xff39417712ff02b7, 0x02ce0a0b3b410d80, 0xac1e0cff02c97605, 0x010cbb0d41faffb8, 0xff3a95352aff02d7, 0x0324220e3c261b59, 0x02f6030d03040002, 0x7863d2ff02f10f06, 0xc304bbb3eb2bffbd, 0xffbc32debaff02ff, 0x03160012bb5ed2f8, 0x080f11ff03111d0e, 0xc1043c87c424ffbc, 0xff3c6f8f48ff031f, 0x0348100b3994d9a0, 0x03350111033ac004, 0x6b85ff3cc3e8c5ff, 0xa8ff0343050bbab6, 0x3a37c3baffbbe01e, 0x03550107035a060d, 0xb069ff3b3ab8e7ff, 0xafff03632b0ebd72, 0xbd66770cff3ce7a0, 0x03b4810403f85405, 0x0386170e03940008, 0xdeac9bff0381010e, 0x000cbbf95ebeffba, 0xffb8d0d0beff038f, 0x03a6070e3c7c0e60, 0xfb78d0ff03a10207, 0x0108bd05b014ffbb, 0xffbce931baff03af, 0x03d8b004bd73e485, 0x03c5000703ca0008, 0xb730ffbbea2543ff, 0x64ff03d30a0ebcf7, 0xbd96861effbcea94, 0x03e5c00403ea190e, 0xf42dff3da87a69ff, 0xccff03f3310ebc45, 0x3d4a648cffbd3b7f, 0x0420000c0440310e, 0x040dbf0404125605, 0x3d6cffbbca5b49ff, 0x48ff041b170e3cab, 0xbb118b19ff3718f6, 0x042d01080432c504, 0x6775ff3ad59339ff, 0x88ff043bc8043c54, 0x3b9d7c08ffbb8d5c, 0x0456000804645505, 0x697f2dff04510106, 0x01123c18ba97ffbc, 0xff3e01d9a9ff045f, 0x04760012bcfd128f, 0xf3ae95ff04710207, 0x320e3d7f3968ffbc, 0xff3c9d8a3cff047f, 0x067c1105bbfca60a, 0x051c840405a8090e, 0x04b8030e04d80002, 0x04a5030504aa8004, 0xd5fdff3b307e0bff, 0x75ff04b30111bb62, 0x3d028b64ff3b1127, 0x04c5040504ca010b, 0x9ca3ff3bf90dd0ff, 0xb4ff04d3020d3bdf, 0xbc203c13ffbce2c0, 0x04ee800404fc0007, 0xefcb21ff04e97e04, 0x020d3c9b1936ff3b, 0xff3bb53ec7ff04f7, 0x050e010ebd048881, 0xd71c2aff05090005, 0x020d3c038a30ff38, 0xffbb8e774eff0517, 0x05640108bcdc5f04, 0x053601070544000f, 0xc9688dff0531030e, 0x03053b6d2d6bffbc, 0xffbc3041c5ff053f, 0x0556a7043c0e4e2b, 0x107c41ff0551000c, 0x06053bdd2194ff3b, 0xffbae35a5eff055f, 0x0588000e3a31c6aa, 0x0575000f057a0105, 0xcddfffbd0853bfff, 0xf9ff0583000d3a87, 0x3a9a7b6bffbcd449, 0x0595a704059a000f, 0xa673ffbb2d8171ff, 0xfeff05a3010c3ca6, 0xbbad5a86ff3adab5, 0x05eb000f06260f05, 0x05c6170e05d4030d, 0xba4e8aff05c1b004, 0xa3043c881552ffba, 0xff3d498b20ff05cf, 0x05e6000c3c44395d, 0xbe0071ff05e10008, 0x6bff3dba2170ff3c, 0x07060f010c3e15f7, 0xff05fc0002060100, 0x1c52deff3cbbc650, 0x3888ff060a000cba, 0x0bbc27d204ff3b30, 0xff061c0002062103, 0xb92940ffb79d2000, 0x9a043d062700ff3b, 0xedff06337b040653, 0x020645170e3c5f5a, 0xbd1c30feff064000, 0x4e0002bd02d0d5ff, 0xa2ffbcdcfbc2ff06, 0xff065caa04bce5b0, 0x066e000c3cc5c166, 0x8a8923ff06690b0e, 0x020dba703eb5ffbc, 0xffbaae81fcff0677, 0x0793a9043ca253d9, 0x06cc12050710000f, 0x069e000c06ac7a04, 0x316785ff0699020d, 0x020dbc832018ffbc, 0xffbd13c0a4ff06a7, 0x06be0108bd2a99cb, 0x621820ff06b9020d, 0x99043c6ef0f7ffbb, 0xff3d771038ff06c7, 0x06f0020d3cdcdb48, 0x06dd030b06e2000e, 0xc12aff3bcdbd06ff, 0x69ff06eb000cbc7b, 0x3d1831baff3c8a52, 0x06fd940407021805, 0x5622ff3cfa6fc7ff, 0xf9ff070b00023db3, 0x3c801966ff3d10d3, 0x072f8204074f9b04, 0x07257c04072a000c, 0x40eeff3c0fe363ff, 0x0c3c76684aff3b4d, 0xff073c8d04074100, 0x3eeeefffbb990b4f, 0x2799ff074a010c3b, 0x083a7a034bff3bf1, 0x0e0765000b077300, 0x3bde0848ff076001, 0x6e000e3a70eb60ff, 0x90ffbaae7484ff07, 0x0c07850111bb8304, 0xbba00c75ff078000, 0x8e000ebaf64fb0ff, 0x70ffbc2456e7ff07, 0x0408230002bc5526, 0x0b07bf000f07dfbf, 0xff07ac290507b100, 0x446e64ffbcf34bdb, 0x7026ff07ba000ebb, 0x0b3934e69fffbcba, 0xff07cc180507d100, 0x684adaff3bebcf3a, 0xf9b7ff07da00083c, 0x0cbb71ac9aff3b80, 0x0b07f50007080300, 0x3ac508dbff07f003, 0xfe020d3ce500beff, 0xacff3a99ea5bff07, 0x0508152405bcc8a9, 0x3cad49f7ff081018, 0x1e040dbc1cf494ff, 0xafff3bf16b40ff08, 0x0f086bbf043dbc90, 0x07083d030d084b00, 0x3a073036ff083800, 0x46b3043c0c7d67ff, 0xeaffbae1a7f7ff08, 0x04085d00083cf424, 0xbad0699cff0858ae, 0x66010c3b022180ff, 0x05ff397437b4ff08, 0x0f088f4205bb911d, 0xff087cc504088100, 0x08cbdfffbc050ef0, 0xc543ff088a030e3b, 0x0ebba4b95cff39ac, 0xff089c030b08a101, 0x23963dff3c105cf8, 0xc0d5ff08aa030bba, 0x0e3d862c8aff3cd7, 0x0b0ae18d050d142b, 0x04094b010709c501, 0x0d08e7080e09078e, 0xff08d44c0408d903, 0x8a7553ff3c914ff1, 0xafc4ff08e20111bc, 0x113c0ed119ffbb89, 0xff08f4260408f901, 0xfdc462ff3cfe349a, 0xc4deff090289053a, 0x04bc911847ff3cc0, 0x0f091d0002092b91, 0xbd6a62a1ff091800, 0x260009bc86949eff, 0xcaff3c9cef16ff09, 0x07093d8505bc658f, 0xbd050030ff093800, 0x46020dbb9cab77ff, 0x91ff3bc53728ff09, 0x04098a0108bbb8da, 0x04096501110973cb, 0x3caae422ff096055, 0x6e040db9809906ff, 0xadffbb83b0a8ff09, 0xff097c00023ccf2f, 0x098500083ac17f00, 0x4500ffbdbd6ac0ff, 0x020709ae0d0ebde6, 0xb1ff099b020809a0, 0xbce38fecffbc023a, 0x904babff09a90111, 0xcc04bd514f3affbc, 0xdaff09bb010c09c0, 0xbd1ddf61ff3a4c69, 0x550207bdacad10ff, 0xf100020a1184050a, 0xdeac0409e3130b09, 0x66ffbb563e33ff09, 0xff09ec140e3bbb4f, 0x3ee723ff3bb873ca, 0xfec7040a03010cbc, 0x32ff3be354a3ff09, 0xff0a0c1d0e3d6168, 0xf32f5cff3c792297, 0x27060d0a3501113d, 0x771bff0a221c0e0a, 0x0e3b757aecffba20, 0x3b022695ff0a3007, 0x47070dba2c0451ff, 0xd6a9ff0a42020d0a, 0x07bb1c6b00ff3b8f, 0x3d2efcc2ff0a5000, 0x9d6b043dc63b8cff, 0x6f5c040a7d020d0a, 0x97d6ff0a6a030b0a, 0x04b8ea16abffbc00, 0xbdea802bff0a7861, 0x8f0112bd06b199ff, 0x51f4ff0a8a85050a, 0x0b3bf1d49bff3bfe, 0x3e0c7baaff0a9803, 0xc1b0043e3b1ddeff, 0xae040d0ab3000c0a, 0xaaff3d054fd3ff0a, 0xff0abc000fbb0dd2, 0x297287ffbd2c34b2, 0xce070b0ad3020dbc, 0xc7ff3b666df5ff0a, 0xff0adc8505bc6837, 0x05b713ffbba13a88, 0x751d0e0c01220e3b, 0x1101070b318e050b, 0xfe190e0b03020d0b, 0x4fff3a92d93eff0a, 0xff0b0cca04bccf84, 0x19c3afffb96b4fc3, 0x1e00020b23a704bb, 0x1bffbc1f386bff0b, 0xff0b2c170e3b56b3, 0x3cd30aff3af62e10, 0x4791050b550111bc, 0x6ca7ff0b42070e0b, 0x0eba37fd73ff3a69, 0xb9d967c7ff0b5008, 0x676704b9ba68ddff, 0x3852ff0b6200020b, 0x083ba25a2dffbbcb, 0x39452473ff0b7000, 0xbd00123b807525ff, 0x8f01080b9d000c0b, 0x7a04ff0b8acd040b, 0x0bbc829d2cff3c15, 0x3c9a6355ff0b980b, 0xaf00083d887057ff, 0x86deff0baa00090b, 0x0bbd252739ff3cbe, 0x3d5a016bff0bb80b, 0xe1000c3e1854c4ff, 0xce060d0bd3050b0b, 0x02ff3c167b67ff0b, 0xff0bdcb904bc00b3, 0x98d470ff3d048a6d, 0xee020d0bf3bd04bb, 0x60ffbba63e2bff0b, 0xff0bfc020dbd13e8, 0x0160fbff3c25b399, 0x4d90050c91280ebc, 0x1fcc040c2d250e0c, 0x72feff0c1a060d0c, 0x07bb47c070ff3bde, 0xbcdb5956ff0c2800, 0x3fcd04bbfed670ff, 0xcf46ff0c3abf040c, 0x09bc712f42ff3c75, 0x3d42d53dff0c4800, 0x710b0bbd73b0f8ff, 0x5e060d0c63000c0c, 0xb2ffba246031ff0c, 0xff0c6c0009bbd482, 0x95e312ff3c7289b3, 0x7e00070c830008bb, 0x8cffbc701e9eff0c, 0xff0c8c00123c34ca, 0x10ceebff3b2aa172, 0xb0290e0cd000123d, 0xa6cc040cab0b0b0c, 0x46ff3dbd6bd2ff0c, 0xbb15deebff3d1f0a, 0x0cbd2a0e0cc20107, 0x9c0effbc8cf6c8ff, 0xeaff0ccb00023c14, 0x3d8d38e5ff3d142c, 0x0ce6060d0cf40111, 0x323d29ff0ce1cb04, 0x050bbba4a72fff3c, 0xffbd0d028bff0cef, 0x0d06c504bdab1c55, 0x60e3d7ff0d012a0e, 0x00073d024b2cffbc, 0xffbc964944ff0d0f, 0x0ee82c0ebb0058ed, 0x0dac000c0e380b0b, 0x0d4800020d68020d, 0x0d35000d0d3a0007, 0x1870ffbcb65f60ff, 0xe6ff0d43000dbcbc, 0xbd4c8103ffbced47, 0x0d55c0040d5a070b, 0xf205ffbc2cbcc5ff, 0x48ff0d63000d3c86, 0xbcc639e0ffbdd3c3, 0x0d7e030b0d8c000f, 0x0eb228ff0d798a05, 0x8a053ded41c0ff3e, 0xff3d8371f0ff0d87, 0x0d9eb7043d7b5570, 0x027212ff0d99030b, 0xc304bd551bb8ffbc, 0xff3d55b4f4ff0da7, 0x0df4000f3b87f6b0, 0x0dc6c7040dd4020d, 0x5309f8ff0dc1a004, 0x94053b5ed0c0ff3d, 0xff3dd40a50ff0dcf, 0x0de690053d282430, 0xce2adeff0de1c704, 0x010b3d92b481ff3d, 0xff3d8b465bff0def, 0x0e1800023e168072, 0x0e0500090e0acc04, 0xffa4ffbcb6d27eff, 0x90ff0e1300073c0f, 0x3bde2c00ff3be1c4, 0x0e2500070e2a8405, 0xcaf4ff3e4fa7ddff, 0x06ff0e33060d3d18, 0x3d237feeff3b2f38, 0x0e8401070e92060d, 0x0e5600020e648805, 0x7bdffbff0e51c104, 0x000cbc1bff78ffbc, 0xff3c8cb504ff0e5f, 0x0e76c804b93f3555, 0x3f5597ff0e710008, 0x010cbd75c89affbd, 0xffbc55a014ff0e7f, 0x0e8d0002bd4e9383, 0x1d58ffbd7e07d0ff, 0x00070eda0011bdcb, 0x000c0eac00080eba, 0xffbc516780ff0ea7, 0x0eb58a05bd08f9ba, 0x38abff3cac8053ff, 0x8d050ecc00083a98, 0xff3cd82f2aff0ec7, 0x0ed5000cbb511440, 0x6e44ff3d13b7fdff, 0xdbff0ee300073dae, 0x3e293e29ff3e13ee, 0x0f7cb9041008bd04, 0x0f18ac040f38b704, 0x0f05aa040f0a000c, 0x8420ff3ae82440ff, 0xc9ff0f13030bbc19, 0x3d2bd794ff3dd414, 0x0f25000c0f2a300e, 0x1784ff3cacc42fff, 0x18ff0f33af04bd52, 0x3b281282ff3d909d, 0x0f4e00020f5c000f, 0xc82ca9ff0f49300e, 0x300e3d462224ff3d, 0xffbd3948d8ff0f57, 0x0f6e2e0ebb11ccd5, 0xff4ff1ff0f69050b, 0x060bbd2a61e3ffbb, 0xffbbf42f9cff0f77, 0x0fc4bb043d075e37, 0x0f962f0e0fa4310e, 0x797423ff0f91020d, 0x020dbc517907ffbd, 0xff3c86b440ff0f9f, 0x0fb6000cbc6e1ec4, 0x1db91cff0fb10002, 0x8f053c3d26e4ff3c, 0xffbd5c3536ff0fbf, 0x0fe80111bc2c85c0, 0x0fd587050fda0002, 0xfbc3ff3be19509ff, 0xd5ff0fe3030b3de1, 0xbcf5d27bffbb6902, 0x0ff500020ffa000d, 0xe9f5ffbbc27700ff, 0xbeff1003020dbd26, 0x3e30a062ff3d705b, 0x104b8405108f000c, 0x10260208102b0b0b, 0x2dac34ff1021030b, 0x4fffbc1c7301ff3c, 0x08103d310e3da05f, 0x3c423087ff103801, 0x4600023dbadbbcff, 0x9cffbca44be0ff10, 0x0f106fc504bd6da1, 0xff105c020d106100, 0x15c940ff3d334678, 0x7500ff106a86053e, 0x04bb0a1933ffbc9e, 0xff107c89051081cd, 0x6b7704ff3c427547, 0x64f0ff108a0108bb, 0x043c98c661ff3b6e, 0x0e10b7000d10d7bf, 0xff10a4890510a930, 0x360090ffbd6978e5, 0x24d2ff10b20007bc, 0x0f3d025a60ffbb55, 0xff10c4070b10c900, 0xe1015bffbdb6ddd2, 0x7e26ff10d28505bc, 0x0cbc541e70ffbd3b, 0x0e10ed020b10fb01, 0xbc1a1411ff10e831, 0xf687053c78a2a1ff, 0x61ffbc02d935ff10, 0x0e110d8405bb1dd6, 0x3e33596aff110830, 0x1688053c183e8dff, 0xdeffbc3add1aff11, 0x08000000133bbe55, 0x01000003e8000000, 0x00000010af000000, 0x06084c8305000000, 0x0f02485305048419, 0x0b00a02b05012c00, 0x04003c0002005c09, 0xff00291806002ea3, 0x607c1bffba360536, 0x1c98ff0037020bbb, 0x0c3bcb3deeffbcc7, 0xff0049a104004e00, 0xb7cfa3ffba32a650, 0x09c9ff0057bc04bc, 0x043cb5b137ff3a27, 0x0400722a05008081, 0x3ac83776ff006d6e, 0x7b00063b5845d4ff, 0x50ff3c76ea81ff00, 0x0600928204bc5d54, 0x3d141a6bff008d16, 0x9b8404bd42b087ff, 0x7effbd39f836ff00, 0x0600e802083baf33, 0x1200ba890400c810, 0x3abff83aff00b502, 0xc38a043cd9e7deff, 0xa7ff3c6c9663ff00, 0x0800da000d3b78e0, 0xbd1175cbff00d500, 0xe31106bc7be3f8ff, 0x4bff3bdeda88ff00, 0x05010c0007bbc946, 0xff00f9000e00fe45, 0x40fcadffbc444835, 0xcd21ff01074a053c, 0x063bb90d93ffbccc, 0xff0119020d011e00, 0x8bffccff3c0c4de7, 0xeb86ff01270002bc, 0x05bc325d0dffbd5f, 0x040178480501bc4a, 0x0e014a47050158c6, 0x389968c3ff014527, 0x537f04ba709be7ff, 0x40ffba88115eff01, 0x12016a030bbc58d9, 0x3d49be43ff016500, 0x73310e3bd99f51ff, 0x31ffbbdcd4bbff01, 0x04019c9b043b2241, 0xff01895c04018e85, 0xc89df1ffb9caf0bb, 0xed1bff01970007bb, 0x043c45bed7ffbbc4, 0xff01a90d0e01aea8, 0x98d3f5ff3b3d28a4, 0xe1a5ff01b7060dbc, 0x043cb8eee8ffbc70, 0x0401e4b1040204b3, 0xff01d1070e01d66b, 0xf0d673ffb98ffb69, 0x0695ff01df0107ba, 0x083a2d6695ff3b38, 0xff01f1270e01f601, 0xc0da06ffb808bf40, 0xc7bfff01ff0007bc, 0x043c866b4affbb6f, 0x05021a51050228b9, 0xbd32024cff02154b, 0x2300023c44ef2dff, 0x55ffbd0d9593ff02, 0x05023aba043b0b0a, 0x3d85e3baff02354c, 0x43060dbd054720ff, 0x0bffb905817dff02, 0x040368100bbbe8d7, 0x0e0298b60402dcbd, 0x11026a060e027807, 0xbb29952eff026501, 0x7300093b2a9d73ff, 0xebff3c57b2f4ff02, 0x09028a080ebc16a6, 0xbc87daebff028500, 0x9301093c2e8dfdff, 0x0bff3a20a9b7ff02, 0x0402bcba04bc0c4a, 0xff02a9000202aeb7, 0x89c423ffbc080196, 0xab2fff02b7b8043b, 0x0d3b88f27eff3c5f, 0xff02c9000f02ce07, 0xdd3be4ff3bf71127, 0xf11cff02d7080ebb, 0x07bcb99130ff3caf, 0x050304c004032400, 0xff02f1be0402f67f, 0x48d7ecff3b00d6d5, 0xc93fff02ff090bbc, 0x0b3d18e52bffbcfc, 0xff0311010c03160e, 0x277682ffba08dd94, 0x5fefff031f0f0bbc, 0x0e3ce0b751ffbc94, 0x0b033a0012034823, 0xb9b8e6e7ff03350b, 0x43220ebcae0ff5ff, 0xdbff3b29112eff03, 0x12035ac1043c57ef, 0x3c1ad34dff035501, 0x63280ebb3be9edff, 0x2dffbc99b1c6ff03, 0x0403f8120bba6fa4, 0x0e0394680403b478, 0xff03810009038607, 0xf7154fffb9d60f42, 0xde2fff038f000cbb, 0x04bca38fa7ffbc18, 0xff03a16f0403a677, 0xd10468ffbc47407a, 0x1a26ff03af060dbb, 0x113dcb52acffbd36, 0x0403cac10403d800, 0xbcbd35d6ff03c59d, 0xd30107bd14fc0cff, 0xabff3cb4f705ff03, 0x0703ea060dbca8e0, 0xbc3b81a2ff03e500, 0xf30009bcb0d5baff, 0x87ff3b5fe36aff03, 0x0504400207bd2c4c, 0x080412c204042068, 0xba9b348dff040d01, 0x1b00073bd16b86ff, 0x1bffbcb06b05ff04, 0x040432cd043c36a5, 0x3af3e0eaff042dbe, 0x3b310e3aa83803ff, 0x37ff3cbc4882ff04, 0x0804646805bc1982, 0xff0451bf04045600, 0x814975ffbae4bb52, 0x8015ff045f130e3c, 0x0eb8e66826ffbc33, 0xff04716905047626, 0xee062dffbcf53be8, 0x41acff047f6905bb, 0x0e3c3cd5d6ffbd7e, 0x0e05a89a0406c409, 0x0b04d87c04051c00, 0x0c04aa000f04b800, 0xbbf01d31ff04a500, 0xb31105bd1fdf93ff, 0x88ff3b1ca78bff04, 0x0204ca00083c053b, 0x3b2dedacff04c500, 0xd302073c05d756ff, 0x89ff39a484a6ff04, 0x0404fc040dbd01cb, 0xff04e9000804ee82, 0x0bb8c5ff3ccbbce6, 0x0390ff04f799043c, 0x053d6bfc1cff3c14, 0xff0509000c050e11, 0x1e2351ffbad30093, 0xf82bff0517000f3c, 0x0e3b615b45ff3cf4, 0x070544030d056404, 0xff05319704053600, 0xd91cedff3bf1f0d1, 0xcfb0ff053f030b3c, 0x0dbbce2783ff3be6, 0xff0551000c055605, 0x574b70ff3c8b9ed6, 0x0f44ff055f7b04bd, 0x0bbb3b12ceff3ba0, 0x05057a7b04058801, 0x3b237992ff057504, 0x8300023c95e7c2ff, 0xb5ffbc4f4000ff05, 0x0e059a030d3a9f67, 0xbc972f15ff059507, 0xa30002bc1c299dff, 0xfaffbc81da10ff05, 0x0406380a053bde50, 0x0805d4000f05f4a9, 0xff05c19b0405c600, 0x123013ffba7f5dbb, 0x89d3ff05cf030ebd, 0x0e3d48e5b8ffbc72, 0xff05e1000205e600, 0x82477cff3b7ed8fd, 0x2d71ff05ef010e3c, 0x0b3bef9a7dff3c35, 0x0b060a000f061807, 0xbc22a3f1ff060503, 0x13010cbd8bdcbcff, 0xecff3b6a84bdff06, 0x0d062a010ebbe5c6, 0xbd1d0447ff062501, 0x33000f3990ac7eff, 0x85ff3d6addd5ff06, 0x0e06800208baef6f, 0x0406520002066001, 0x3a3332bdff064db2, 0x5ba704bc83564fff, 0x3bffbc540628ff06, 0x0b0672000f3a6b6d, 0x3b389140ff066d07, 0x7bca043cd665afff, 0xbbff39ec6ed7ff06, 0x0c06a4040dbbbbc3, 0xff0691000f069600, 0x8ab799ff3c9618e5, 0xd0cbff069fb304ba, 0x11bbb333b5ff3c58, 0xff06b1030b06b601, 0x18db1dff395e821b, 0x8c68ff06bf000ebc, 0x053dce5726ff3d5a, 0x0d074f170e078a0c, 0x0e06f40405071402, 0xff06e1000206e613, 0x0240fdffbbd14f63, 0x11a4ff06ef7f043c, 0x04bd36c752ff3c25, 0xff0701000b0706a1, 0x0210eeffbbcae6db, 0x3245ff070fb0043d, 0x113c3eb2a7ffbca4, 0x0c072a100b073801, 0x3b1db812ff072500, 0x330008bb9f9ee2ff, 0x6bff3b0d7c1eff07, 0x08074a000cbc5919, 0x3c9f6d8bff074500, 0xf847ff3da78480ff, 0x1a0e077c04053e06, 0x42ff07607f040765, 0x3c8d35b8ff3c99d8, 0x0772000507779a04, 0x361aff3d84fd6dff, 0x023d150d9cff3d66, 0x3bcc2792ff078500, 0xc09a043c99826cff, 0x0508ff07977b0407, 0xa0ff07a00f053c49, 0x0e07b2170e3bac2c, 0xbce94920ff07ad0f, 0xbb0002bd195b00ff, 0x92ffbcc6e295ff07, 0x0e08081905bcceb8, 0x0b07da020d07e80b, 0xbc7ff078ff07d502, 0xe300073c032164ff, 0x80ffbde1c5f4ff07, 0x0407fa020dbd8ef7, 0x3c0fe80cff07f5bd, 0x030111bb9085c1ff, 0x7fffbb35a3cfff08, 0x0e082c1e053c97b4, 0xff08190002081e0b, 0x9025d0ff3d4cb658, 0xa8f8ff08270002bc, 0x0eba377c00ff3c61, 0xff0839000f083e0d, 0x9e0f40ffbc8e1a8e, 0xf2f0ff0847c60439, 0x0ebb94b2adff3c29, 0x0b0a7e8d050cb12b, 0x0408e80107096201, 0x110884000808a48f, 0xff08710009087601, 0xc0eeb2ff3961bd62, 0x4312ff087f8905bb, 0x0ebc6d4dfaff3c69, 0xff0891080e089617, 0xa56fdfffbbb54eb7, 0xf3d7ff089f76043b, 0x0dbc7bd888ffbdb3, 0x0e08ba2a0e08c804, 0x3b3c0fe7ff08b523, 0xc3020dbcea550bff, 0x82ff3c8cf016ff08, 0x0f08da85053e558e, 0xbd48f58aff08d500, 0xe3220ebc0b6876ff, 0xa0ffbbf1c19eff08, 0x0409270108baf80e, 0x0d0902bd040910cb, 0xbbc474b5ff08fd02, 0x0b000f3b8a7fb6ff, 0x47ff3d0370b3ff09, 0x080922000f3aab54, 0xbdaa79b0ff091d00, 0x2500ffbdcf3e18ff, 0x0207094b0d0e3aae, 0x5eff0938bb04093d, 0xbccfa621ffbbb958, 0x81ddb4ff09460112, 0xcc04bd3c60eaffbc, 0x49ff0958010c095d, 0xbd0e15d9ff3a37f9, 0xf2100bbd9b6890ff, 0x8eb60409aec10409, 0x7b9e040980840509, 0xeaffbb62eedaff09, 0xff0989ab043bb848, 0xbc59d4ff3a05d095, 0x9b850509a01f0eba, 0xdcff3c06e92bff09, 0xff09a900093b3ea8, 0x897bd6ff3b79f935, 0xc4870509d2280ebc, 0x17f0ff09bf010c09, 0x0cba9a5a55ffbb6e, 0xbb4bd5d1ff09cd01, 0xe4020d3adfaecdff, 0x6d45ff09df000c09, 0x113cd942aeffbd49, 0x3b880cbfff09ed01, 0x3ac004bc55e91aff, 0x0c000c0a1a00110a, 0xedfaff0a0700080a, 0x093be0ea18ffbb66, 0x3c4bf49cff0a1500, 0x2c0007bbab59c0ff, 0x5d40ff0a2786050a, 0x07b9b66448ff3be9, 0xbc065e28ff0a3501, 0x5e010c3ae51b62ff, 0x4b00120a5089050a, 0xdbff3b9011a2ff0a, 0xff0a59c104bb7a90, 0xb75dd6ff3c74fd3a, 0x6b210e0a70c6043b, 0x0bffbc1d3d4fff0a, 0xff0a791d0ebd9297, 0x5b48b9ff3bad2917, 0x121d0e0b9e220ebc, 0xae01070ace8e050b, 0x9ba0040aa0020d0a, 0xc9ff3b94e001ff0a, 0xff0aa9ca04bbdfd1, 0x0a6360ffb953c83c, 0xbb000f0ac0a704bb, 0x56ffbc2368e8ff0a, 0xff0ac900083b3372, 0x24f348ff3b38f5b4, 0xe491050af20111bb, 0x14d6ff0adf070e0a, 0x0eba259757ff3a52, 0xb9c3a9efff0aed08, 0x049205b9a7c4d9ff, 0x9439ff0aff00020b, 0x0239061829ff3a70, 0xba09240aff0b0d00, 0x5a00123aef94f7ff, 0x2c010c0b3a00090b, 0xd322ff0b27cd040b, 0x02bb28a391ff3c8d, 0xbc11cfb3ff0b3500, 0x4c93053d8e7b63ff, 0xa9a9ff0b47000c0b, 0x0bbd26e543ffbcaa, 0x3cb4b031ff0b5503, 0x7e000cbc7b3a60ff, 0x6b060d0b70050b0b, 0xa0ff3c076f12ff0b, 0xff0b79bc04bbe7a8, 0xa53457ff3c659b27, 0x8b00070b90200ebb, 0x83ff3c3d90e2ff0b, 0xff0b990007bcab4b, 0x47afd9ffbc9c2a0a, 0xea90050c2e280e3c, 0xbc230e0bca00020b, 0xec76ff0bb7cb040b, 0x04bc5c0aa6ff3b41, 0x3ccb84b1ff0bc5b8, 0xdc0a0bbc963329ff, 0xf2d8ff0bd78f050b, 0x04bcb48129ffbafe, 0x3c18f4d5ff0be5cd, 0x0e010cbca1c739ff, 0xfb060d0c00000c0c, 0x4bff399f793eff0b, 0xff0c090008bba74a, 0xaed52dff3baaff42, 0x1b91050c2000113c, 0x2dff3c876948ff0c, 0xff0c29cd04bd022d, 0x6f61e8ff3bfed937, 0x4d290e0c6d00123d, 0x438e050c480b0b0c, 0xa4ff3d0f22d7ff0c, 0xbb06e22bff3daa7a, 0x0c5a2a0e0c5f0107, 0xbfadffbc7dbc34ff, 0x3cff0c68030b3c05, 0x3d2b6a2bff3d8a48, 0x0c83060d0c910111, 0x206a3dff0c7ecb04, 0x050bbb943018ff3c, 0xffbcfdd15fff0c8c, 0x0ca3c404bd99ffe6, 0x65910eff0c9e2a0e, 0x00023cf07d45ffbc, 0xffb9db43a8ff0cac, 0x0e852c0ebc83ba94, 0x0d49000c0dd50b0b, 0x0ce500020d05020d, 0x0cd200070cd70107, 0x8da0ffbca6b5e8ff, 0xc0ff0ce0c004bced, 0xbd4d2ea5ffbcf254, 0x0cf2000d0cf79305, 0x9ba0ffbd8ac78fff, 0x67ff0d00000dbc59, 0x3c8b4d25ffbbbedb, 0x0d1bb7040d290111, 0xeacd52ff0d16030b, 0xc304bd3fcc26ffbb, 0xff3d405611ff0d24, 0x0d3b030b3b74bc16, 0x006d24ff0d368a05, 0x8a053dd587f8ff3e, 0xff3d6c99e0ff0d44, 0x0d9101113d623350, 0x0d63cc040d710002, 0xa48a3eff0d5e0009, 0x00073c019946ffbc, 0xff3bcb30f0ff0d6c, 0x0d83c3043bc7f480, 0x92e92aff0d7e010c, 0x00123e60a21cff3d, 0xff3d132655ff0d8c, 0x0db5020dbbecaf7e, 0x0da2a0040da7c804, 0x4662ff3d3def58ff, 0xc0ff0db0010b3bd1, 0x3deed630ff3d1753, 0x0dc200070dc79305, 0xdd27ff3db895c7ff, 0x68ff0dd0010b3d8b, 0x3e4506f8ff3d9142, 0x0e2101070e2f060d, 0x0df3000c0e018505, 0xb87d08ff0dee0108, 0x00083c099180ff3c, 0xffb92c1555ff0dfc, 0x0e13c804bc0c65f8, 0x62affbff0e0e8805, 0x000cbd37173cffbc, 0xffbb98c510ff0e1c, 0x0e2a0002bce3d33b, 0xcd9cffbd64a0a0ff, 0x00070e770011bdb6, 0x000c0e4900080e57, 0xffbc3c76c0ff0e44, 0x0e528a05bcf68e4f, 0xffabff3c9b4043ff, 0x000c0e6900083a88, 0xff3c13e3a5ff0e64, 0x0e72000c3cf27dc5, 0xfcd8ff3d04f265ff, 0x8bff0e808a053d9c, 0x3e0523c5ff3e1851, 0x0f19b9040f93bd04, 0x0eb5ac040ed5b704, 0x0ea286050ea7000c, 0x70f6ffbb712977ff, 0x81ff0eb0030bbc3e, 0x3d1aa864ff3dbedf, 0x0ec22f0e0ec7300e, 0x006bff3ca6845bff, 0xfaff0ed0af04bd40, 0x3b1743a0ff3d8226, 0x0eeb00020ef9000f, 0xb4282fff0ee6300e, 0xb8043d3251f3ff3d, 0xffbd26c188ff0ef4, 0x0f0b2e0ebb0338d5, 0x0c262aff0f06030b, 0x030bbc9de882ffbc, 0xffbc0195d0ff0f14, 0x0f61bc043ca1a28f, 0x0f33ba040f41310e, 0x13079eff0f2e0007, 0x00093c65ff95ffbd, 0xff3be55f1dff0f3c, 0x0f53000fbd5562e5, 0x43f209ff0f4e8b05, 0x0002bc246925ffbd, 0xff3c0df364ff0f5c, 0x0f7c000f3c2a3c98, 0x0f722e0e0f77020d, 0xe115ff3dca7720ff, 0x0b3e1ef6beff3d0c, 0xff0f898a050f8e0b, 0x4d9af6ffbc8af52f, 0x000c3d7e34b9ff3c, 0x0b0b0fdf84051023, 0x00020fb1310e0fbf, 0xffbc8e5908ff0fac, 0x0fba090b3d0293dc, 0xf857ff3bccba29ff, 0xc7040fd1310ebcf0, 0xff3c2ec547ff0fcc, 0x0fda320e3da82c28, 0xdde0ffbd55de3fff, 0x000f1003c504bc93, 0x08ff0ff0020d0ff5, 0x3e06ceb8ff3d2159, 0x8e9c80ff0ffe8605, 0x000fbaf893c7ffbc, 0xbfff1010c7041015, 0x3be5d143ff3dbef9, 0x5a9f67ff101e8905, 0xbf04ba98dbf5ff3c, 0x000d104b000f106b, 0x8bff1038300e103d, 0x3a859100ffbd0e74, 0xa49474ff1046070b, 0x070bbcca813bffbd, 0x85ff1058060d105d, 0xbd3c0381ffbc3efc, 0x969a79ff10660002, 0xc104bd81670effbd, 0x00091081340e108f, 0xffbc82a9e0ff107c, 0x108a00093d8590f2, 0xc680ff3e0a2d0dff, 0xc20410a12f0e3ce9, 0xffbd377c68ff109c, 0x10aa310e3c8969b2, 0xf722ffbc0ae582ff, 0x0008000000133afa, 0x0001000003e80000, 0x0000000010790000, 0x1906084c83050000, 0x000f024853050484, 0x090b00a02b05012c, 0xa304003c0002005c, 0x22ff00291806002e, 0xbb4a0939ffba23d1, 0x8e5f69ff0037af04, 0x000cbbf07035ff3c, 0x1bff0049a104004e, 0xbca56e09ffba20c9, 0x1655bcff0057bc04, 0x81043ca385dfff3a, 0x6e0400722a050080, 0xff3ab431efff006d, 0x007b00063b42a51e, 0x3248ff3c5e3978ff, 0x160600928204bc47, 0xff3d054afcff008d, 0x009b8404bd2f387a, 0xae7affbd275f6aff, 0x080b00e801083b9d, 0xaa0400ba040d00c8, 0xffba96bfd7ff00b5, 0x00c30007bc379277, 0x4103ffbb169d8aff, 0x310100da03063bf3, 0xff3ae490d3ff00d5, 0x00e302073b919798, 0x9e6cff3bfb43c4ff, 0x3801010c1f03bc94, 0x5aff00f92a0100fe, 0xbcab4db7ffbb0dff, 0x9884b7ff01071e03, 0x4101bd440bdcffbd, 0x91ff0119010d011e, 0x3c237a80ffbba385, 0xb12fb4ff01274a05, 0x4a053b9b6c6fffbb, 0xc6040178480501bc, 0x4505014a47050158, 0xff3900fffcff0145, 0x01537f04bbd71dc8, 0x29ecffba74ec63ff, 0x0112016a4405bc43, 0xff3c3db918ff0165, 0x01734505bb3ab7f5, 0x7262ffbcfe6bb0ff, 0x8504019c9b043b59, 0x32ff01895d04018e, 0xbbb94c5cffb9984c, 0xb13bd4ff01970007, 0xa8043c31f887ffbb, 0x25ff01a90d0e01ae, 0xbc898b8fff3b2a3e, 0x58cb10ff01b7060d, 0xb3043ca6709fffbc, 0x010c01e4b2040204, 0xbfff01d1100b01d6, 0xb9ce347affba064d, 0x8731e1ff01df0208, 0x4b05bbdd3008ff3b, 0x50ff01f1230e01f6, 0x3bef184bff3d4e68, 0x2349f5ff01ff0012, 0x52053ba67c83ffbc, 0x0107021a2b0e0228, 0xffbb1401f3ff0215, 0x02232e0e3bf720b6, 0x6e0affbd6dadffff, 0x0c0b023a070d3b2e, 0xffbbf35babff0235, 0x0243170ebc842810, 0x0fbaffbcd14bcdff, 0xbd040368100b3c7d, 0xb3040298b50402dc, 0x9b04026aac040278, 0xffb997ca47ff0265, 0x02730009ba3c8f12, 0x626dff3a488779ff, 0x8205028a000fbc2a, 0xff3bc3ff2aff0285, 0x02935905bca6a30b, 0x45d8ff3c18a165ff, 0x000202bcb604bc12, 0xdeff02a92e0e02ae, 0xbb2d9a3bff3ce96e, 0x1b2b4dff02b70906, 0x75053cc74074ffbc, 0x12ff02c9000802ce, 0xb7c2eee9ffbaab7f, 0x8e5688ff02d70009, 0x0009bc13b700ff3a, 0x0d0e0304170e0324, 0x79ff02f10c0602f6, 0xbade62a8ff3c4ef3, 0x7a19e9ff02ff0b0b, 0x230ebd902506ffbb, 0xd2ff031100080316, 0x3b96d019ff3acbb4, 0xe1527aff031f070b, 0x00023af05845ffbb, 0x260e033a7f050348, 0xffbc843b86ff0335, 0x0343090b3b895b8f, 0x238affbc50cbe9ff, 0xc704035a030b3c74, 0xffbc0e19d9ff0355, 0x036382053d1792ad, 0x7db2ffbc95335cff, 0x780403f8120bbd15, 0x070e0394680403b4, 0x47ff038100090386, 0xbbde5ffeffb9c0a7, 0x0994c1ff038f000c, 0x7704bc93347affbc, 0xa0ff03a1570503a6, 0xbbcc516bffbcbb11, 0x23e457ff03af060d, 0x070e3db6fd9bffbd, 0x001103ca000903d8, 0xffbca56dd3ff03c5, 0x03d38e043b62f0f8, 0x04f7ffbcc540a9ff, 0x0b0e03ea170ebd47, 0xffbd2a4234ff03e5, 0x03f3c104bc9c399e, 0x2f52ffbc2ba732ff, 0x6805044002073c61, 0x54050412c2040420, 0xffbcb78a70ff040d, 0x041b62053aa240a6, 0x894effbc12ce04ff, 0xbe040432cd043cb8, 0xff3adb7da6ff042d, 0x043b2d0e3a976613, 0x5554ff3ce19317ff, 0x2d0e04646805bb65, 0xe9ff04510c0e0456, 0xba3e40d2ffbbf976, 0x59b459ff045f5d05, 0x2a0e3d0d27b8ff3b, 0x24ff04716c050476, 0xbba39cafffbc9866, 0x6632a6ff047f6905, 0x090e3c4897d2ffbd, 0x820405a8260506bb, 0x030e04d80002051c, 0x020504aa040504b8, 0xff39fbac16ff04a5, 0x04b3010e3c136ef4, 0x573effbb75a81bff, 0x610404ca75043d22, 0xffbc64d09dff04c5, 0x04d3020d3bbb2d1b, 0x3454ffbcefe6f8ff, 0x7b0404fc0007bc0e, 0x5cff04e9030b04ee, 0x3c40379eff3b8216, 0xb00403ff04f7030b, 0x010eba9fea2cff3c, 0xebff05098104050e, 0x3d579692ff3b1def, 0x711dadff0517020d, 0x0008bcc1ba80ffbb, 0x000f054402070564, 0x43ff05310c050536, 0xbb574f40ffbc91be, 0xedef8aff053fbd04, 0x0002bacbc43eff3a, 0x19ff055107050556, 0x3ae3e1c4ffbc91d0, 0x488d8fff055f000f, 0x000e3aa37033ff3c, 0x0002057a99040588, 0xff3c6346f3ff0575, 0x058301053b359ebe, 0xb787ffbc4bff26ff, 0x0207059a0208ba1c, 0xff3ad9136dff0595, 0x05a3000f3bf6dc91, 0xd4d5ff3ca8b1a1ff, 0x2905062f000b3b00, 0x020d05d4010e05f4, 0xfdff05c1000c05c6, 0xbd0a02cfffbd2a2b, 0x7b85a8ff05cf000c, 0x020dbcc6bb60ffbc, 0xf9ff05e1000805e6, 0xbd10ece4ffbd8a29, 0xb992c6ff05ef0008, 0x3205bd9abe53ffbd, 0x030e060a000f0618, 0xff3c182d26ff0605, 0x06139b043d072fe6, 0xadfdff3b21ef37ff, 0xb1ff0621000e3be2, 0xff062a020d3cee43, 0x35ea57ffbc1c4706, 0x5732050677000fbd, 0x44020d0649000806, 0x32ff3c527c18ff06, 0xff0652000d3d054e, 0xd7d1d5ff3c844cd0, 0x64010b066934053a, 0x98ff3c1f859dff06, 0xff0672010ebc8b85, 0xb7f3c0ff3bc7ae88, 0x8dae04069bbc043c, 0xf3fdff0688000e06, 0x07bbab96edffbad5, 0x3b253441ff069600, 0xad00073a28e063ff, 0x6eb3ff06a8340506, 0x08bb52026dffb9e1, 0x3a8a5615ff06b600, 0x810f053bfc537bff, 0x0b030d0746170e07, 0xdd000206eb040507, 0x3e8fff06d8030506, 0x04bcf16d9bffbaf4, 0x3c2a77dcff06e687, 0xfda104babfd0a5ff, 0x2d79ff06f8000b06, 0x043cea1e7bffbb0c, 0xbc93c6d5ff0706b0, 0x2f01113c358d1aff, 0x1c000c0721100b07, 0x92ff3b0df274ff07, 0xff072a0008bb8fa8, 0x4363afff3afeac3c, 0x3c00080741000cbc, 0x10ff3c9b0f09ff07, 0x3df2f215ff3d96c4, 0x0765000207730405, 0x075b8f0407609a04, 0x30b2ff3d6f61c5ff, 0x043d0625dcff3d4f, 0x3c8a75d6ff076e7f, 0x7c00023c7e2d80ff, 0x9cff3bb7bd52ff07, 0x0407c09a043c8a28, 0x3c34eaecff078e7b, 0x07a40f0e07b2170e, 0xc39ef3ff079f020d, 0x020dbce77620ffbc, 0xffbd0aeabbff07ad, 0x07bb0002bd091f78, 0x0c83ffbcb2ff21ff, 0x0b0e08081905bcba, 0x000207da020d07e8, 0xff3c47a138ff07d5, 0x07e30007bc12cf45, 0xab8cffbdcb3228ff, 0xaa0407fa020dbd80, 0xff3caac8d6ff07f5, 0x0803000fbb200823, 0x79d1ff3c8888dfff, 0x0002082c0b0ebb23, 0x7bff0819020d081e, 0x3cb208f4ff3d8bbb, 0x81bba0ff08270008, 0x0008bc141120ffbc, 0x4eff0839c804083e, 0xbb7a0355ff3bda14, 0xbe0760ff0847000b, 0x2b0ebc017dd6ffbc, 0x010b0a878d050cba, 0x8e0408e80107096b, 0x030e0884060e08a4, 0xd1ff087100090876, 0xbbf97560ffbb1f2c, 0x1e59ecff087f060d, 0x88053b02df9affbd, 0x2dff089101120896, 0x3c87c57fff3a6d03, 0x0e7a18ff089f2604, 0x9104baca86a8ff3d, 0x000f08ba000208c8, 0xffbd52155fff08b5, 0x08c30009bc6a5659, 0x0818ff3c91ccccff, 0x000708da8505bc43, 0xffbce1c178ff08d5, 0x08e3020dbb20f001, 0xe8a8ff3bad38b9ff, 0x011209300108bb92, 0x0012090255040910, 0xff3cc3e97bff08fd, 0x090b000fbb91d601, 0x5a69ffbd073b3cff, 0xc1040922020d3992, 0xffbbacd3d5ff091d, 0x092bcb043da2b7f8, 0x7cf8ff3c9f76f8ff, 0x020709540d0ebdaf, 0x78ff0941bb040946, 0xbcbae24bffbba6cf, 0x69c243ff094f0111, 0xcc04bd298a6affbc, 0xa8ff0961190e0966, 0x3be02cecffbc0357, 0xfb100bbd8bde18ff, 0x97b70409b7c10409, 0x84000f0989020909, 0xd0ff3a88ccc7ff09, 0xff0992070eb90968, 0xb08621ffbbdd9f16, 0xa4b80409a9b9043b, 0xa9ff3c8a6e3dff09, 0xff09b200093b5c91, 0x80c725ff3b621ccd, 0xcd870509db280ebb, 0x48cdff09c8010c09, 0x0cba8aeb18ffbb56, 0xbb3773abff09d601, 0xed020d3ac9509cff, 0x48c4ff09e8000c09, 0x123cc388d3ffbd35, 0x3b74e3e6ff09f601, 0x43c004bc408511ff, 0x15000c0a2300110a, 0xd63fff0a1000080a, 0x043bca6c4effbb4f, 0x3c40a706ff0a1eb9, 0x3500073b3c6a84ff, 0x0708ff0a3086050a, 0x07b9a42704ff3bd2, 0xbbf1dc9eff0a3e01, 0x67010c3ace3240ff, 0x5400120a5989050a, 0x4cff3b81a96dff0a, 0xff0a62070dbb6182, 0xa27a50ff3bc5e7ab, 0x74210e0a798905bc, 0xb1ffbb6415b1ff0a, 0xff0a820002bcbd30, 0x88752bffbc6b54c6, 0x1b1d0e0ba7220e3c, 0xb701070ad78e050b, 0xa4bf040aa9c2040a, 0x75ff39218722ff0a, 0xff0ab20002bc27d5, 0xbfb1d5ff3bd100c0, 0xc400020ac9a704bb, 0xacffbc0aac3aff0a, 0xff0ad2170e3b447d, 0x2b26aeff3ad9aec7, 0xed91050afb0111bc, 0x12caff0ae8070e0a, 0x0eba15082aff3a3d, 0xb929d9e2ff0af60a, 0x0d6704ba104ce8ff, 0x6066ff0b08080e0b, 0x08bccebef4ff3a83, 0x389b7e89ff0b1600, 0x6300123b6185acff, 0x3501080b43000c0b, 0x4730ff0b30cd040b, 0x0bbc66e3a1ff3bdf, 0x3c8086aaff0b3e0b, 0x5500083d73edc8ff, 0xc443ff0b50010c0b, 0x0b3d1b2964ff3be3, 0x3d3be389ff0b5e0b, 0x87000c3e08aec7ff, 0x740e0b0b791f0e0b, 0x33ff3a06ab73ff0b, 0xff0b82060dbccad8, 0x1922e1ff3b1aad99, 0x94020d0b99bd04bd, 0x10ffbb5b4ffdff0b, 0xff0ba2c004bd0188, 0xcb8e74ff3cd16a6a, 0xf390050c37280ebb, 0xc5cc040bd3250e0b, 0x2167ff0bc0060d0b, 0x07bb3e40ceff3bc0, 0xbcbe46f8ff0bce00, 0xe5cd04bbca60a5ff, 0x7b0fff0be0270e0b, 0x09b9f1ac03ffbcb6, 0x3d377041ff0bee00, 0x17010cbd533bb5ff, 0x04060d0c09000c0c, 0xa4ff398f8730ff0c, 0xff0c120008bb968f, 0x9d5983ff3b99e5b8, 0x2491050c2900113c, 0x46ff3c73bd91ff0c, 0xff0c320009bcea51, 0xfeec93ff3cbd6a22, 0x56290e0c760011bc, 0x4c010c0c510b0b0c, 0xabff3d8ac437ff0c, 0xbaf2ca55ff3be273, 0x0c63000c0c680107, 0xf1a3ff3bd328b6ff, 0xd0ff0c710002bc26, 0x3d660c71ff3ce86e, 0x0c8cb9040c9aba04, 0x3cbdd1ff0c87000c, 0x010bbc632231ff3c, 0xffbc9cd409ff0c95, 0x0cac020dbd7bf37a, 0xaf24a4ff0ca7c504, 0x000fbb9f8305ff3c, 0xffbc9a1204ff0cb5, 0x0e852c0eb8a55a8a, 0x0d52000c0dd50b0b, 0x0cee00020d0e020d, 0x0cdb000d0ce00107, 0x6605ffbc932fa8ff, 0x10ff0ce9c004bcc3, 0xbd38a9f5ffbcda19, 0x0cfbc0040d00070b, 0x00d6ffbc07c5cfff, 0x68ff0d09c2043c5c, 0xbca785e0ffbdb0b5, 0x0d24b7040d320111, 0xd35263ff0d1f030b, 0xc104bd2c9e22ffbb, 0xff3d77843cff0d2d, 0x0d44030b3bb50e83, 0xc02d90ff0d3f0107, 0x8a053de72ad8ff3d, 0xff3d54f0e0ff0d4d, 0x0d9101113d4b9490, 0x0d6c010c0d718405, 0x23d3abff0d670008, 0x80ff3df5dc24ff3a, 0x050d8300113e4a2b, 0x3d47e76fff0d7e8a, 0x8c01073cae6558ff, 0x28ffbb7b7c82ff0d, 0x040db5020dbd211c, 0xff0da2a0040da7c7, 0x1eadc0ff3d2af108, 0x7a55ff0db094053b, 0x073d0831c0ff3dae, 0xff0dc292050dc701, 0xd34cdbff3da1dd19, 0x93b7ff0dd08b053d, 0x0d3cdd18d0ff3d83, 0x050e2101070e2f06, 0x080df3000c0e0185, 0x3ca60a28ff0dee01, 0xfc00023bf79f80ff, 0x55ffbbfcb770ff0d, 0x020e13c804b91add, 0xbc4c04cbff0e0e00, 0x1c010cbd24c81dff, 0x03ffbc291be7ff0e, 0xff0e2a0002bd2e87, 0xa485d8ffbd4dc3c0, 0x5700070e770012bd, 0x4491050e4900080e, 0xd6ffbce4ecfbff0e, 0xff0e528a05bc4f97, 0x769955ff3c8bb9d3, 0x648d050e6900083a, 0xc0ff3cb10f00ff0e, 0xff0e72000cbb7753, 0x8d49f4ff3cef4deb, 0xa6c8ff0e8000073d, 0x043e091630ff3def, 0x040f10b9040f9cbb, 0x0c0eb5ac040ed5b7, 0xff0ea2aa040ea700, 0x01884fff3b00947b, 0xf0c8ff0eb08405bc, 0x0e3dcd3a1cff3d4f, 0xff0ec289050ec730, 0x1d1d1fffbd188dce, 0x4624ff0ed0af043d, 0x123b082382ff3d6a, 0x0b0eeb2e0e0ef901, 0xbbbe9287ff0ee605, 0xf4050bbd1172e0ff, 0x46ffbbe1771cff0e, 0x0e0f0b00023cb3de, 0x3d57ce43ff0f0631, 0x3970ff3dd5ae87ff, 0x01110f582f0ebc2c, 0x00020f2a030b0f38, 0xffbb9ee3b0ff0f25, 0x0f3388053c2d0545, 0x2697ffbd4a1b30ff, 0x070b0f4a0007bcb5, 0xffbd91066dff0f45, 0x0f53010b3ccae5b0, 0x125bffbca4f960ff, 0x020d0f7c310e3d27, 0x54ff0f6900090f6e, 0xbda34cbcff3ca3c2, 0x24002bff0f770112, 0x000fbd88fc29ffbb, 0x91ff0f898b050f8e, 0xbc13f825ffbd4e52, 0xff82e8ff0f970002, 0xc1043c193688ff3b, 0x01090fcd340e0fed, 0x01110fbabd040fc8, 0xffbaf3182dff0fb5, 0x0fc384053d26b339, 0x88abff3c50780bff, 0x093e87668cffbcac, 0x0e0fe3c0040fe800, 0x3db8a770ff0fde35, 0x7594ff3dea93dcff, 0x043cd265e0ff3e23, 0x0e1015c3041035c6, 0xff1002000c100730, 0xfc844eff3ca4837b, 0x3955ff1010020dbc, 0x0ebb80f5d3ff3d3c, 0xff1022010c10272d, 0x82de6dff3d7865a7, 0x9ecdff103091053e, 0x073d639bf6ff3bbd, 0x0e104bc904105902, 0xbb2a93caff104631, 0x5484053cc9c08dff, 0xe2ffbc62f8c4ff10, 0x08106b2d0ebb1120, 0x3d6df663ff106600, 0x748b053ccd6adfff, 0x6dff3b88a62bff10, 0x08000000133cfe26, 0x01000003e8000000, 0x000000112d000000, 0x0608d38305000000, 0x0f02485305048419, 0x0b00a02b05012c00, 0x04003c0002005c09, 0xff00290f06002ea3, 0xecc31effba19d7f1, 0x516bff0037020bb9, 0x0c3bb031ebffbcad, 0xff0049a104004e00, 0x94e2eeffba10b51a, 0x4da1ff0057bc04bc, 0x063c932bb7ff3a07, 0x0100721401008009, 0xbac55b1dff006d0c, 0x7b02073a8d482aff, 0x06ff3b8da864ff00, 0x0e00921d0eb9ec87, 0x3b247a6eff008d02, 0x9ba9043befb2b9ff, 0xf1ffbc18de6eff00, 0x0b00e801083c11c0, 0x0400ba040d00c808, 0xba87ac7eff00b5aa, 0xc30007bc2536dfff, 0xd1ffbb078d9fff00, 0x0100da03063bdaed, 0xba22c43dff00d525, 0xe3070e3b9875e7ff, 0x47ffbb96b30eff00, 0x01010c1f033c3fa0, 0xff00f92a0100fe38, 0x9a2c56ffbaff989c, 0x3a91ff0107020dbc, 0x01bd8b4c97ffbd31, 0xff0119050d011e41, 0x294bddff3bc946b0, 0x77a9ff01274a053c, 0x053b8be162ffbb9f, 0x080178490501bc4a, 0x04014aa504015801, 0xb96dadfdff014569, 0x53a80438ea902eff, 0x20ffbc18d6a6ff01, 0x05016a3c0537ad15, 0x391079cdff016537, 0x734505bbc73891ff, 0x96ff3b96d925ff01, 0x04019c9604bba998, 0xff01895d04018e95, 0xa684bdff393ef9f3, 0x0929ff01970007bb, 0x113d26adadff3c4b, 0xff01a9a40401ae01, 0xa384f6ffbc8c0aa7, 0x5199ff01b70107ba, 0x043d456602ff3b6b, 0x0401e4b1040204b3, 0xff01d1070e01d66b, 0xd9089dffb9977abd, 0x40d7ff01df0107ba, 0x083a0e66e6ff3b20, 0xff01f1270e01f601, 0xaf7383ffb9a50fe8, 0x73d6ff01ff0007bc, 0x113c6c8f6dffbb72, 0x08021a4b05022801, 0xbd6e54bcff021501, 0x23c704bb68224dff, 0xb0ff3ad08ceeff02, 0x08023a0002bc442c, 0xbd857f83ff023501, 0x43c704bcd36093ff, 0xd1ffbbd61a65ff02, 0x040368140b3d2bec, 0x0e0298000802dcbf, 0x04026abe04027834, 0xba9f73b3ff0265a7, 0x730506ba3b1c07ff, 0x2dff3c13d33fff02, 0x0b028a7305bd9005, 0xbd86ca16ff028500, 0x930111bbec72d8ff, 0x5eff3b422a60ff02, 0x0502bc5b053d06d7, 0xff02a9b00402ae54, 0x299390ffbc43d85a, 0x11e5ff02b7ad043c, 0x0b3b275784ff395e, 0xff02c9011102ce09, 0xc5aaffffbb47efc0, 0xaaf2ff02d7000f3b, 0x0e3a793ab6ff3c04, 0x0b03040002032422, 0xff02f1030d02f609, 0x26c6d1ffbd15f525, 0x4125ff02ffc3043b, 0x12bb86b1b0ffbc6d, 0xff03111d0e031600, 0x71654dffbbf370ae, 0x9bd9ff031fc1043c, 0x08b74b4515ff3c56, 0x07033a7b05034800, 0x3afbdb96ff033502, 0x43010c3c34f993ff, 0x53ff3a9fb21aff03, 0x0b035a8105bc30ca, 0xba1c0e7eff03550d, 0x63020dbc095415ff, 0xe1ff3cb07051ff03, 0x0e03f8000cbb7051, 0x080394550503b428, 0xff03819e04038601, 0xf6b4dcffbbc3ff4d, 0x76dcff038f00023a, 0x043b430bffffbd10, 0xff03a1020803a6be, 0x2828ccffbae89788, 0x89f2ff03af00023c, 0x123b2b72f5ffbc70, 0x0403cabb0403d801, 0xba9aaed5ff03c5b8, 0xd32a0ebce8277bff, 0xe2ffbd5d16abff03, 0x0603eab2043c1e46, 0x3c4d6640ff03e500, 0xf3c004bcecafb9ff, 0xfbffbd382c87ff03, 0x0704408105bc4823, 0x040412c404042002, 0x3ab67c42ff040da8, 0x1b6e053bdcda7bff, 0x8cffbb9f34f5ff04, 0x04043200023b671f, 0xbc4a1312ff042dca, 0x3b7b053c3c54d2ff, 0x19ff3b0f0fc1ff04, 0x0404648205bcb05b, 0xff0451060d0456b7, 0x748f7fffbc39e74e, 0x01d5ff045fcc043c, 0x0ebdeaa25dffbcc7, 0xff0471070e04760d, 0x830187ff3c102b49, 0xed38ff047f0008bc, 0x053d89026cff3c5e, 0x0805a8090e06a911, 0x0e04d89a04051c01, 0x0404aa040504b800, 0x3b47671eff04a56b, 0xb3040d3c4d3d10ff, 0x80ff3b8484efff04, 0x0404ca7504bb9147, 0x3aab1500ff04c56f, 0xd3000d3c844ea9ff, 0xb6ff3cff9c1bff04, 0x0e04fc000fbafd29, 0xff04e9010704ee03, 0xcbfa8bffbcffe760, 0xbcdfff04f70c053a, 0x043ccfea9effbc41, 0xff0509020d050eaa, 0x4c6f46ff3c26f611, 0x3e67ff051705053b, 0x0e39bd046dffbb2b, 0x040544000d056400, 0xff05310007053699, 0x099ccdffbc958ba1, 0x0aa6ff053f030b3c, 0x05bd43672affbc65, 0xff0551000f055601, 0xd33052ffbc8d5fc9, 0x5343ff055f020b3a, 0x0f3aac6b06ffbcd5, 0x04057a050d058800, 0x3c11c997ff0575bc, 0x83030bbcd8c318ff, 0x96ff3c93a698ff05, 0x07059a010c3d8e10, 0x3b5083c6ff059500, 0xa30b0b39c9819dff, 0xecffbbf10bd5ff05, 0x04061d000b3bea1b, 0x0705cb960405eb9c, 0xff05c17b0405c600, 0xa1f740ff3c22d36c, 0x0007bb3eac6bff3b, 0xfeff05d8170e05dd, 0xbca3eaf9ffbcd764, 0xffde80ff05e60207, 0x0111baf47855ffbb, 0xa8ff05f8000805fd, 0xbb85c003ffbc0e2b, 0x060a000c060f020d, 0x1772ff3c037083ff, 0x4bff0618000cbbb8, 0x3cf70ad8ff3c3144, 0x0645030d0665bd04, 0x063200020637170e, 0x3a61ffbb6abe61ff, 0xd9ff064004053c35, 0x3c0f0c20ff3d12ec, 0x0652000806570111, 0xecb9ffbb962a00ff, 0x24ff0660000c3c19, 0x3ddaa6adff3ccb90, 0x067b02070689000c, 0xc0cbc8ff06760f0e, 0x0b0e3a80b338ffbb, 0xff3cd57164ff0684, 0x069b000f3af09252, 0xe5b892ff0696020d, 0x100b3d5027b0ff3b, 0xffbb9b3fdcff06a4, 0x07b7a9043c4623fd, 0x06f013050734000f, 0x06cb5e0406d90108, 0xfb78f8ff06c60008, 0x010ebc287a39ffbc, 0xff3acba8eaff06d4, 0x06e299043cfcdb58, 0xeb02083d52d2b0ff, 0x10ff3cf45f90ff06, 0x0e0714030d3c8a67, 0xff0701a004070600, 0x159c5aff3c06dd63, 0x6b98ff070f000cbc, 0x0b3d080298ff3c50, 0xff07210108072600, 0x122be8ff3c2c8211, 0xbb49ff072f00023d, 0x043c8932cdff3d7f, 0x0c07537c040773a7, 0xff07496c04074e00, 0x015219ff3bb41447, 0x8d043c5695b6ff3c, 0x28ff076000020765, 0xbbf7c36cff3b4405, 0x8dd563ff076e000e, 0x00083b017a7eff3b, 0x000e0789000c0797, 0xffba83948cff0784, 0x07921805bb4dfe80, 0x99c0ffbb2eef58ff, 0x000e07a9020db9aa, 0xffbc140bc7ff07a4, 0x07b2000cbc43ab28, 0xcde0ffbb905327ff, 0xbf0408470002bade, 0x190507e324050803, 0x50ff07d0180507d5, 0xbc8b2544ffbb0521, 0x5db4b9ff07de010b, 0x01113cb0e5f0ffba, 0xb9ff07f0000807f5, 0xbb3bdb14ff3b8ff7, 0x23be39ff07fe2905, 0x000cb9ce3c49ffbd, 0x00070819c6040827, 0xff3c06e193ff0814, 0x0822030bbb23b876, 0xf2d3ffbc416199ff, 0xc804083901083c2f, 0xff3c2a5364ff0834, 0x084200073d12157f, 0x3ef0ffbbc81be0ff, 0x000f088fbf04bc8e, 0x24050861050d086f, 0xff3aa4637dff085c, 0x086a01073c38de4f, 0xb7a5ff3c8bfd47ff, 0x1c05088100083dac, 0xff3afae87cff087c, 0x088a010cb991da3c, 0x8c0cff390634b2ff, 0x000f08b34205bb84, 0xc0ff08a0000c08a5, 0xbc3cdd93ffbb3c60, 0xab9f19ff08ae030e, 0x010ebb892ac1ff39, 0xd7ff08c0cb0408c5, 0xbb409bddff3be1ac, 0xad79b5ff08ce030b, 0x2b0e3d5d987cff3c, 0x010b0b178d050d4a, 0x040d096f010709fb, 0x7004090b7804092b, 0x78ff08f8500408fd, 0xbc3ef541ff3c4e00, 0x285cb0ff09068405, 0x9904bd4eb019ff3d, 0xddff09180007091d, 0xbaabacb8ff3cb5d5, 0x2a7f17ff09262a0e, 0x84053cc2cc13ffbc, 0x011109419c04094f, 0xffbbf90c47ff093c, 0x094aa7043cc53587, 0x69f9ffbdc13358ff, 0x88040961000fbc7e, 0xff3c510528ff095c, 0x096a8605bc85cd72, 0xc3b6ffb78f65afff, 0x011109b70108bb7e, 0x000b098955040997, 0xff3cdc6308ff0984, 0x0992000f3bd38b7f, 0xb7d4ffbcf36a9eff, 0xc10409a9040d3983, 0xffbbb6db12ff09a4, 0x09b2cb043d4e1515, 0xf078ff3ca13a70ff, 0x020d09db180ebd9d, 0xc6ff09c8020709cd, 0xbd3e7edfffbc4ccd, 0x1e3e40ff09d6060d, 0x220ebc60ca29ffbb, 0xa0ff09e8190e09ed, 0x3cb9f855ffbbd8ca, 0xb1fe6cff09f60207, 0x100b3ca14060ffbc, 0x2a0e0a47c1040a8b, 0x00080a1998040a27, 0xff3a0f55daff0a14, 0x0a22000cbb3b9832, 0xc32bffbaccde98ff, 0x00080a39020d3b0f, 0xff3c48db81ff0a34, 0x0a42050d3d78aec5, 0xde66ff3d9d03afff, 0x87050a6b280eba0b, 0x0aff0a58010c0a5d, 0xba7a0ddbffbb40db, 0x251b52ff0a66010c, 0x020d3ab52ec7ffbb, 0xe4ff0a78000c0a7d, 0x3caffb2affbd2327, 0x5c66cdff0a860111, 0xc004bc2d448cff3b, 0x000c0ab300110ad3, 0xa5ff0aa000080aa5, 0x3bb62e4dffbb3b0d, 0x2d631aff0aaeb904, 0x00073b29930fff3c, 0x54ff0ac086050ac5, 0xb993bc7cff3bbd06, 0xd9ace2ff0ace0107, 0x010c3ab993aaffbb, 0xc1040ae902070af7, 0xff3c09965dff0ae4, 0x0af285053ab7af7a, 0xa3ddffbc81999dff, 0x220e0b09c6043c09, 0xffbc11bc8dff0b04, 0x0b120208bd8c1ade, 0xc39affba91539eff, 0x140e0c37200ebd2c, 0x73040b67070e0bab, 0x72040b39010e0b47, 0xff396378daff0b34, 0x0b42040d3c95fb57, 0xf0a4ffbc9000a3ff, 0xa6040b59a704ba0e, 0xff3a12fbabff0b54, 0x0b62a904bc379047, 0x2501ff3c832913ff, 0xc4040b8b0d0e39a8, 0xa9ff0b78b3040b7d, 0xbab848daffbab13d, 0xadc188ff0b86c504, 0x010cbab85b3aff3c, 0xd0ff0b98120e0b9d, 0xb9f4bcf8ff3a3a6f, 0x923b84ff0ba60109, 0x1d0ebc06be34ff3b, 0x030b0bd395050bf3, 0xdeff0bc0c8040bc5, 0x3aeb4d58ff3a3390, 0x25f0f1ff0bcebf04, 0x000cbac0aed1ff3b, 0x42ff0be0c2040be5, 0x3b948aeaffbc5e50, 0x999d68ff0beeca04, 0x060dbbc7c8a4ff3b, 0xc5040c0901110c17, 0xff3b96ad1aff0c04, 0x0c129205bc90fe36, 0x7a2fff3c37fef0ff, 0x1e0e0c29000c3d24, 0xffbd285eb4ff0c24, 0x0c320e0b3bd301e5, 0xf528ff3c7d2406ff, 0x000c0cbe000d3d68, 0x00070c63240e0c7a, 0x43ff0c50030b0c55, 0xbc64f1d4ffbac7b6, 0xa93ceeff0c5e230e, 0xb0043ace93d5ff3c, 0x78ff0c7090050c75, 0x3d7f8480ff3d7e59, 0x9e00073dba9e40ff, 0x8bb7040c90030b0c, 0xeeffbd1346b7ff0c, 0xff0c998e05ba84a1, 0xe73bd9ffbbe38dc0, 0xab8e050cb0ac043c, 0x20ffbcce0e10ff0c, 0xff0cb9030bbc8612, 0xfb5660ffbd90b50e, 0xe6250e0d06060dbc, 0xd3220e0cd8cb040c, 0xfbffbbc97b2cff0c, 0xff0ce100093b86f9, 0x7dcc4aff3c86a6ef, 0xf301110cf8270ebc, 0x63ffbc5d3bb4ff0c, 0xff0d010b0bbd819e, 0xd9182cff3ab1fc3c, 0x1c010c0d2a0011bb, 0x3ee7ff0d17280e0d, 0x073be8ab0dffba83, 0xbc76a2acff0d2500, 0x3c090b3c3bc842ff, 0x60adff0d37280e0d, 0x05bcebb2d2ffbc0d, 0xbb815cc4ff0d4590, 0x152c0ebd80e562ff, 0xe2000c0e650b0b0f, 0x7e94050d9e020d0d, 0x6bc0040d70070b0d, 0xe0ffbd045428ff0d, 0xff0d799305bc694b, 0x1b0d90ffbd44bafc, 0x8b00070d900002bd, 0xc3ffbc84e908ff0d, 0xff0d99c004bcdb22, 0x64bdf9ffbb909de7, 0xb4030b0dc2000f3c, 0xf5d0ff0daf01070d, 0x073dd00cf8ff3dac, 0x3d3738e0ff0dbd00, 0xd4060d3d3fa590ff, 0x3b7aff0dcfc3040d, 0x11bc685fcaff3c82, 0x3c28d4d7ff0ddd00, 0x2101123d606044ff, 0xfc010c0e0184050e, 0x71abff0df700080d, 0xff3ddd4620ff3a13, 0x0e13cd043e35f3f4, 0x9cd398ff0e0e0107, 0x8d05bd10ffc0ffbb, 0xff3d351f62ff0e1c, 0x0e458f053c55b440, 0x0e32020d0e37b004, 0x2190ff3c129dd5ff, 0x53ff0e4084053da1, 0x3d81fad6ff3cfe4e, 0x0e5200070e57010b, 0x77e0ff3d599226ff, 0x55ff0e60070b3c82, 0x3d8a7af4ff3de8b7, 0x0eb101070ebf060d, 0x0e83000c0e918505, 0x956f88ff0e7e0108, 0x84053bdedc40ff3c, 0xffb90b5d55ff0e8c, 0x0ea3c804bbe371f0, 0x379debff0e9ec104, 0x000cbd144db4ffbc, 0xffbb4f5776ff0eac, 0x0eba8405bcbdf983, 0x3030ffbd941210ff, 0x00070f070012bd39, 0x000c0ed98a050ee7, 0xff3cc567d8ff0ed4, 0x0ee201083c33daa0, 0x6f80ffbc71e172ff, 0x000c0ef900083c18, 0xff3bdf1b60ff0ef4, 0x0f02000c3cc88955, 0x51e8ff3cd75fbbff, 0xb4ff0f1000073d7e, 0x3df6c18aff3dd7af, 0x0fa9000f10350e0b, 0x0f4500080f658405, 0x0f32300e0f37000d, 0x54a9ff3a20d133ff, 0x1bff0f40c104bd28, 0x3c293b35ff3d6607, 0x0f5200070f57c604, 0x19a5ffbd25782bff, 0xd9ff0f60310ebc25, 0x3d36387dffbc1310, 0x0f7bbd040f89c104, 0x427217ff0f762d0e, 0x000d3c1c0340ffbd, 0xff3b8e4847ff0f84, 0x0f9bcd04bd2870e1, 0x041503ff0f96020d, 0x020d3c8ab468ffbb, 0xffb9a62e13ff0fa4, 0x0ff10108bd2b1661, 0x0fc384050fd1cb04, 0x3a1748ff0fbe0002, 0x00123dac8185ffbc, 0xff3cb09405ff0fcc, 0x0fe30207bb6fc001, 0x704e5fff0fde0007, 0x8405bc293a50ff3a, 0xffbb47cc14ff0fec, 0x101500023ca1a020, 0x10022f0e1007010c, 0xa1acffbcd876c9ff, 0xa0ff101085053aff, 0x3dc8ae00ffbb71a6, 0x102292051027060d, 0x69bfff3c756c36ff, 0x38ff103001073d6b, 0x3cf5d5feff3b4988, 0x1081010c10bc8505, 0x105300021061310e, 0xb02f37ff104ec004, 0x000cbd1d697fff3c, 0xff3cb9c662ff105c, 0x10738405bc2e399a, 0x2d261bff106e320e, 0x0007bc676655ffbd, 0xffbc8bc2e9ff107c, 0x109ccd043b36c22d, 0x1092cc041097060d, 0x117bff3cf1c01cff, 0x0e3be09075ff3dc3, 0xff10a9840510ae34, 0xabb76dff3c4ce4e5, 0x0000ff10b70008bc, 0x0dbcce2ea5ffbd09, 0x0210e4cd04110407, 0xff10d1c10410d600, 0xab7873ffbd7654ff, 0xad0fff10df00083b, 0x0ebd319b24ffbc58, 0xff10f18f0510f62d, 0x05235eff3d702ba0, 0xa20eff10ff010cb9, 0x05bc8e2c59ffb886, 0x09111a010c111f8f, 0xbd6dcab3ff111500, 0x9478ffbd32b8b0ff, 0x82ff11280009bcb3, 0xbcd17ac8ffbca914, 0x0000000800000013, 0x00000001000003e8, 0x000000000000115a, 0x047b160e08f78d05, 0x012c98040248c304, 0x005c900400a09704, 0x002e8604003c8804, 0x678e27ff00298805, 0x0d0eba36adccff38, 0xff3bc22153ff0037, 0x004e010cbc04095e, 0x68fbe1ff00490b0e, 0x060d3b0ade5fffbb, 0xffbb52f66fff0057, 0x008091043b8a2da6, 0x006d00060072060d, 0xb240ff3b6778e1ff, 0xb2ff007b070bbc07, 0xbc4f6010ffbd1168, 0x008d3d0100923e01, 0x86b5ff3bcd3a4bff, 0x8eff009b0e0ebdd6, 0xbc1cf7f6ff3b3e58, 0x00c8010700e80b0b, 0x00b5390500ba000f, 0x852bff3d37b7a8ff, 0x1dff00c353053aa0, 0x3b965909ffbbd862, 0x00d50b0e00da030b, 0x5b7bffbb04db8fff, 0x21ff00e301123c2e, 0xbc6914f1ff390128, 0x00fe090e010c0d0e, 0x68d2a6ff00f9070e, 0x0107bca93dacff3b, 0xff3ca2540cff0107, 0x011e3a01bbffec55, 0xbf9990ff01193d05, 0x060dbd904a22ffbc, 0xffbc21ff2aff0127, 0x01bc010dbcbd8923, 0x01589b040178000d, 0x0145030b014a1406, 0x78faff3c94218aff, 0x06ff015317063d63, 0x3c4c6326ffbcd9ec, 0x0165070b016a1006, 0x7d65ffbc0c1b40ff, 0x36ff0173070e3c7d, 0xbd0e948fffbc744e, 0x018eb104019c030b, 0x0b6568ff0189000e, 0x18063bef7287ffbc, 0xffbc4fc0a2ff0197, 0x01ae08063a4789ce, 0x230e5fff01a9000c, 0x0007bd8a9db6ffbc, 0xffbc8dd16cff01b7, 0x02047b05bb98d029, 0x01d6070d01e47805, 0x00db19ff01d16e05, 0x0d0eba2e8d1affba, 0xffbbb7d0d9ff01df, 0x01f6a8043cac79b2, 0x29395eff01f17a05, 0xaa043c00587fffbc, 0xff3d2f9214ff01ff, 0x02280d0e3c028004, 0x02150002021a020d, 0x0207ffbd137994ff, 0x1cff02230b0bbb29, 0xbaea827bff3a8d8f, 0x02358505023a0012, 0xd7b7ffbb81bc3fff, 0x0dff0243100ebbbb, 0xbb926f6eff3c6429, 0x02dc8a05035f0c0e, 0x0278170602980002, 0x02658805026acc04, 0x3843ff3bc6d6eeff, 0x3cff027302073cc9, 0x3cba76ccff3d4c04, 0x02854605028a5205, 0x951effbb911ebeff, 0x20ff0293030b3cc7, 0xbd399205ff3c5083, 0x02ae070e02bc0011, 0x02d0b1ff02a90007, 0xc804bc111c57ff3c, 0xff3c4a39deff02b7, 0x02ce070ebc224f11, 0x3482eeff02c96305, 0xc4043b4053aaffba, 0xffbd001f3fff02d7, 0x031b0a0e3bb368f1, 0x02f600110304080e, 0x377b82ff02f10007, 0x0009bba12f08ff3c, 0xff3be2346dff02ff, 0x03160b06bc47d090, 0xfc7a2fff03110009, 0x60ffbc84c964ff3c, 0x0c033f8b05bd66ca, 0xff032c0207033100, 0xb4a559ffbd401e3e, 0x60fcff033a0008bc, 0x08bd834a9bffbd36, 0xff034c0112035100, 0x2a7540ffbc135508, 0x3ee0ff035a01083b, 0x04bce10847ffbd61, 0x0b03ab000c03efc4, 0x0e037d0002038b0b, 0xbc6a3acaff037813, 0x86060d3c17da4cff, 0x20ff3bd07e14ff03, 0x12039d01083c755e, 0x3aa87c88ff039801, 0xa602083d0c817fff, 0x8dffbc4fa490ff03, 0x1103cf01113a9e7b, 0xff03bc8c0503c100, 0x345dc1ff3ab75fd6, 0x8a93ff03ca030bbd, 0x05bcb7cf42ff3ba3, 0xff03dc020803e187, 0x53bdabff3d05a7b9, 0x355eff03ea89053b, 0x0db991b7e8ffbd3d, 0x0b04170012043707, 0xff04040e0e04090a, 0x63750effbc46e053, 0xa68eff04126c05bd, 0x0dbb2c5f69ffbba1, 0xff04240007042906, 0x98adc3ff3bba127f, 0xccceff04320007bb, 0x073ca92bb8ffbc9d, 0x0c044d8405045b01, 0xbc698417ff044801, 0x560d0ebd2a36d9ff, 0x96ffbd11f5b4ff04, 0x0c046dc6043ba53f, 0xbbdadd12ff046801, 0x766105bd000aa8ff, 0x59ff3d48b5d4ff04, 0x0406bb57053c6d10, 0x060513ab04059faf, 0x0404af9e0404cf09, 0xff049c980404a19a, 0x6fed94ffb90866fc, 0x878dff04aa3b013a, 0x0b3b559487ffbb0e, 0xff04bc000204c114, 0xd20f19ffbb3ca92f, 0xb473ff04caa7043a, 0x013c410ff3ffbb4b, 0x1104e57f0404f340, 0xbba1dceaff04e001, 0xee000f3abfeba4ff, 0x70ff3c49655cff04, 0x040505000fbb674f, 0xbc0c0df9ff0500a9, 0x0e02073d387880ff, 0x1aff3a71aad8ff05, 0x03055b220e3c3df1, 0x05052d190e053b31, 0x3c2c5ee3ff05282c, 0x36ac043e24e112ff, 0x33ffbe076f98ff05, 0x11054dad04bce8e8, 0xbcb179ffff054801, 0x560b063b2e0b95ff, 0xc3ff3c1dab14ff05, 0x08057f110bbbc9d7, 0xff056c230e057100, 0x07f5e7ff3d0fb34d, 0x0222ff057a060dbc, 0x043c329228ffb968, 0xff058c3c010591ac, 0x2164c5ffbd0a8063, 0x6076ff059a260e3d, 0x05bc283cfdff3c65, 0x0505eb0208062f55, 0x0105bd3e0105cb54, 0x3aa1423dff05b83b, 0xc60008bd100916ff, 0xa4ffbb7b647dff05, 0x0405dd01123b4bfb, 0x3ba15667ff05d8b9, 0xe601113d5b6f64ff, 0xdaffbc4ef99cff05, 0x03060f2f0e3c2724, 0xff05fc000206012a, 0x04e4f2ffbcaf9e95, 0x01d5ff060a43053d, 0x04baf842acff3b14, 0xff061c000c0621ca, 0x333e56ff3bad5e7b, 0x777aff062a0011bb, 0x053c0de765ffbcdd, 0x0d06570b0b067756, 0xff0644310e064902, 0x42a9f6ff3ba990e3, 0x5ec8ff0652030b3d, 0x0ebc6b62d5ff3b6c, 0xff0664070d06691d, 0x863700ffbd5ea7ee, 0xfeb3ff0672b4043b, 0x0dbc64bd9fffbd38, 0x0e068d0002069b06, 0x3d52cf23ff068828, 0x960e0bbb2c071dff, 0x3dffbc0f4993ff06, 0x0406ad0007bd1b0c, 0xbe01b7c7ff06a8b0, 0xb60011bc01c826ff, 0x12ff3c487f8fff06, 0x0507db01073d2f44, 0x04070b0007074f87, 0x0b06dd020806ebbb, 0xbb09071eff06d801, 0xe6ab0438cffc4bff, 0x90ff3ab5c663ff06, 0x0e06fd7505bbebc9, 0xbc33b34aff06f822, 0x06180ebbb444eaff, 0x5bffbcc472e2ff07, 0x04072f86053a22e0, 0xff071c090b0721b5, 0xc848fdff3924ace5, 0x28b9ff072a02083a, 0x0ebb2e9c19ff3b69, 0xff073cc00407411d, 0x149735ff3abbf316, 0x5483ff074a0111bc, 0x04bb46778fff3c04, 0x05077700080797cc, 0xff0764cb0407698c, 0xb34d3eff3a1986bf, 0x7537ff0772010bbb, 0x0cbb472657ff3c86, 0xff0784020d078901, 0x08238aff3bd0205a, 0x5424ff0792180e3a, 0x0e3c8d9c5effbc57, 0x0507ad000707bb19, 0x3d83f317ff07a889, 0xb6180ebc15e963ff, 0x67ff3a0a9dd1ff07, 0x0807cd000fbd124e, 0x3d0d03d9ff07c801, 0xd6220ebd17ceefff, 0x16ff3cbc127fff07, 0x0b086b0207ba9ee7, 0x0c0807170e082710, 0xff07f4610507f901, 0x8cbb47ff3c2b9db3, 0x9c2bff080261053b, 0x0bbb92dc07ff3c0c, 0xff0814b00408190b, 0xa9d6aeffbb1fa07a, 0x2fcbff08220e0b3a, 0x053ae1d59cffbc82, 0x08083d6c05084b82, 0x39d6a0f8ff083802, 0x466e05bb2150dbff, 0x6bffbcd7d790ff08, 0x0e085d8305bb1cf9, 0x3cb668a1ff085826, 0x660002bcb462a6ff, 0x57ff3bcd9f27ff08, 0x0408b3c304bbf2a3, 0x0c088567050893c2, 0xb98e338dff088001, 0x8e320e3ab71232ff, 0x8eff3a75e4eaff08, 0x0b08a5060dbc0ee4, 0x3ae759d5ff08a009, 0xae1d0ebced6091ff, 0x64ffbbe85d4bff08, 0x0c08d7000d3d6334, 0xff08c4050608c900, 0x859cceffbd6b0145, 0x7937ff08d2c804bc, 0x083e3d1b00ff3c80, 0xff08e4680508e901, 0x789d26ff3c98c13b, 0xd3ecff08f25c0539, 0x0ebc1084deff3c64, 0x040b29040d0d650e, 0x050993030b0a167f, 0x0d092f070e094f90, 0xff091c060e092102, 0x82d9b8ffbae6e4bd, 0x08c3ff092a00073c, 0x0dbb05cc26ffbcbb, 0xff093c0008094100, 0xedbd56ffbaa3276f, 0xa3e6ff094a0002bc, 0x0bbd17350dffbca9, 0x0e0965080e097301, 0x3b020894ff096001, 0x6e000bbca4115aff, 0xebff3c1edb6fff09, 0x0509850002bb1eca, 0x3b20f2e4ff098091, 0x8e69043ca6e3aaff, 0x1fffbc0d777cff09, 0x0409db730438eb72, 0x0b09ad010709bb67, 0xbc4eb9d0ff09a804, 0xb68e053bbf774bff, 0x14ffbd158ad0ff09, 0x0409cd0002bc1b96, 0xbd392710ff09c86f, 0xd60b0b390a52cdff, 0x55ffbadd5550ff09, 0x1109f6020dbc55e3, 0xbc95c1c4ff09e801, 0x60ef6bff09f1000d, 0x90053bb074fcff3c, 0xf4ff0a03000c0a08, 0x3c16c915ff3ce379, 0xc2fee0ff0a119205, 0x030e3d8773d4ff3c, 0x89040a6201080a9d, 0x8e050a34000d0a42, 0xff3b999900ff0a2f, 0x0a3d000ebce3122f, 0x1e24ffbc3f3d15ff, 0x01120a549604bb41, 0xffbb3f8354ff0a4f, 0x0a5d98043c74d8d8, 0x49bfffbc9b08b7ff, 0x90050a7d010b3866, 0x053c5c4d60ff0a6f, 0xbb9ff380ff0a7893, 0x8f00023bb5dfc0ff, 0xc55cff0a8a8e050a, 0x05bc04f68dffbd32, 0xbd609c78ff0a9892, 0xe5010bbceb7bf8ff, 0xb7070e0ac500090a, 0x0833ff0ab201080a, 0x04bbce7ca0ff3c5e, 0xba0cbcd9ff0ac0a9, 0xd79205bc497597ff, 0xfa86ff0ad29d040a, 0x053cae5170ffbca0, 0xbd8327feff0ae093, 0x09040bbc8f2669ff, 0xf6000f0afbab040b, 0x18ff3bece3a8ff0a, 0xff0b040009bcec02, 0xbed700ff3b9db105, 0x16040e0b1b0009bb, 0xf5ff3d0c28d3ff0b, 0xff0b240d0ebbce2b, 0x0195abff3c816d78, 0xbd030b0c49000fbb, 0x5900070b790a0e0b, 0x4601090b4b070e0b, 0xf5ff3bec895aff0b, 0xff0b540009bc27dd, 0x16682fffbc65bad1, 0x6600020b6b8f053d, 0xb9ffbc0c741aff0b, 0xff0b74000b3c0f58, 0x15dcf8ff3c6d2f96, 0x8fb3040b9d0009bc, 0xb102ff0b8a90050b, 0x07bc760969ff3c1a, 0x3ce35846ff0b9800, 0xaf0d0eb9858c20ff, 0xd06cff0baabc040b, 0x09bd6936e7ffbdc1, 0x3d04916fff0bb801, 0x057f04bbcb2f2cff, 0xd7040b0be573040c, 0x9100ff0bd2000c0b, 0x05bcd287e0ffbd34, 0x3be6ef39ff0be08f, 0xf700093cd1c88dff, 0xbaaaff0bf2000e0b, 0x0ebd07de9affbd96, 0x3ce0e345ff0c0000, 0x299004bd2b0c26ff, 0x1600090c1b80040c, 0x3bff3db84eeaff0c, 0xff0c2490053d61e1, 0xd57483ff3beabc77, 0x3692050c3b91043c, 0x79ff3ceebe6bff0c, 0xff0c449b04be31c6, 0xd49797ffbc202a48, 0x9500070cd9000939, 0x678e050c7500120c, 0x9e71ff0c6200020c, 0x043bb5df10ffbc09, 0x3a072a7aff0c70c6, 0x878f053ac8fcbcff, 0xd589ff0c82b7040c, 0x043c593595ff3ab8, 0xbac85d79ff0c90bd, 0xb9030b3ac7abe5ff, 0xa6010b0cab020b0c, 0x70ffba764b2dff0c, 0xff0cb40b0ebba4d4, 0xb1b977ffbac485d0, 0xc6bc040ccb8e053b, 0x0eff3b45d93bff0c, 0xff0cd4000cbb5c5e, 0xd25a18ff3a199bc1, 0x01000c0d21010cba, 0xee020e0cf3bb040d, 0xebff3adb9ffcff0c, 0xff0cfc070ebafb50, 0x921a68ffbb78816d, 0x0e070e0d13001239, 0x0dffbb3de75eff0d, 0xff0d1c070b3b2b8b, 0x1dd84fffbaac4f11, 0x370b0b0d45cd043b, 0x1750ff0d32070e0d, 0x043c00eaf7ffb9b3, 0x3c3d5712ff0d40c7, 0x570011bd211b6fff, 0xd57fff0d5296050d, 0x05bd557716ffbccc, 0xbc8a612eff0d6094, 0xa5010c3ce37c33ff, 0xfd150e0e891d0e0f, 0x99c1040db9100e0d, 0x8693040d8ba9040d, 0xa6ffbd11f16cff0d, 0xff0d94000c3acaed, 0xf4724eff3c41a25d, 0xa68e050dab01093c, 0x34ffbc999410ff0d, 0xff0db48f05bce7a9, 0xa353f3ffbcbd43de, 0xcf00120ddd060dbb, 0xa320ff0dca00020d, 0x0e3d0bac6eff3a71, 0xbc149f6dff0dd811, 0xef0011bb23dfd7ff, 0x1711ff0dea00080d, 0x0b3c081afcffbbcd, 0x3c19aa77ff0df80b, 0x45000f3d92b3d5ff, 0x17090b0e25170e0e, 0xd112ff0e12020d0e, 0x0dbce99b64ff3b48, 0xba075d0dff0e2002, 0x371a0e3cc9c2f6ff, 0x04a7ff0e32040b0e, 0x0ebb11332fff3ca9, 0xbd36db42ff0e401c, 0x69bf04ba8cb8a1ff, 0x56ba040e5bbc040e, 0xaeff3b3ef183ff0e, 0xff0e64170ebc07ca, 0x96c730ffbb0c25e3, 0x7600020e7bc2043c, 0x86ffbc8bff96ff0e, 0xff0e848f053ac112, 0x6b8e98ffbac505eb, 0xd500080f19000239, 0xa701110eb596050e, 0x64fdff0ea28f050e, 0x043af036c0ffbbb2, 0x3a130b85ff0eb0cc, 0xc7000c3c971305ff, 0x31a5ff0ec20b0b0e, 0x0dbcd4c2b1ffbc1d, 0xbd56a5b6ff0ed006, 0xf99405be0755d9ff, 0xe692050eeb93050e, 0x65ff3abcc413ff0e, 0xff0ef40b0bbc87ce, 0x90687aff3c94106c, 0x060b0b0f0b000c3d, 0x17ffbb9ac463ff0f, 0xff0f14c904bcf430, 0x7ec8e7ff3b476180, 0x41b3040f61b504bd, 0x2e00090f33b1040f, 0xacffb98e3683ff0f, 0xff0f3c020bbd42bf, 0x401e39ff3d916078, 0x4e1e0e0f53000c3c, 0x2bffbd0a5732ff0f, 0xff0f5c020d3bfcb0, 0x669c0fffbcb837d9, 0x77be040f85bf04bd, 0x8967ff0f72000f0f, 0x12baf8160bff3bf4, 0x3cc40b53ff0f8001, 0x9700093900bec5ff, 0x60a4ff0f92060d0f, 0x0ebacc7420ff3a71, 0x3c4e9082ff0fa01f, 0xa10108bbc87526ff, 0xd1100e1015c40410, 0xbe0f0e0fcc8f050f, 0x00093d5a0c74ff0f, 0xff3d26f235ff0fc7, 0x19ce55ff3cd20a80, 0xe7c3040ff500023c, 0x2fafff0fe2170e0f, 0x0ebbd23adeff3c74, 0x3d0c0042ff0ff019, 0x07120e3e118697ff, 0x15deff1002ba0410, 0x04bdd26747ff3c0b, 0x3bcbc7a1ff1010c0, 0x5d9105bbdd9b11ff, 0x2f9005103d000210, 0x8442ff102a8e0510, 0x09bc37c7c2ff3bcd, 0x3c788dc5ff103800, 0x4f8e05bc929ecbff, 0x7712ff104a060d10, 0x053bb04172ffbd09, 0x3bf91973ff105890, 0x819205bbd69ecbff, 0x6e060d1073030b10, 0x7bff3c5a7c55ff10, 0xff107c1d0ebc836b, 0x017a04ffbbe86cfd, 0x8e000210930009bd, 0x30ffbabcf70bff10, 0xff109c260e3bdfb1, 0x159f99ffbc742fdf, 0xed0007110d8f053c, 0xbf0b0b10cd000210, 0x29b3ff10ba001110, 0x0d3d04d7ddff3dba, 0x3c9dcf24ff10c806, 0xdfcd04bc654a20ff, 0xc6daff10da020810, 0x12bc20acd0ff3c1b, 0xbd858b2bff10e800, 0x08060dbcc86e38ff, 0x3b50ff10fac90411, 0x60ff1103cd04bce3, 0xbc79f3c0ffbbee7b, 0x310011bd6a43a4ff, 0x1e140e112c0b0b11, 0x0002bc17aca0ff11, 0xffbd127304ff1127, 0xcb9d00ffbd8bbf0f, 0x3ecc041143150e3a, 0x38ffbd1bbe00ff11, 0x0211550208bd5682, 0xbb0e4d87ff115000, 0x4532ff3c4a9296ff, 0x0008000000133d05, 0x0001000003e80000, 0x00000000111b0000, 0x150e09008d050000, 0x8c05024801060484, 0xb80400a0c004012c, 0xaf04003cb304005c, 0xb7ff00299c04002e, 0x3a23a434ff394847, 0x86a801ff0037b204, 0x0002bb4520ccff3b, 0xdaff00490d0e004e, 0xbacf6883ffbcc6d2, 0xb1c51eff0057b604, 0xbf043c1580a9ffbb, 0x80050072060d0080, 0xffbc9f08beff006d, 0x007b030e3a91836b, 0xe5acffbcb252eeff, 0x070e009200123c02, 0xffbddae59fff008d, 0x009b060dbc02e70d, 0x32c4ffbcc1d5a7ff, 0x060d00e80d0e3cc6, 0x010800ba730500c8, 0xffbe0336b1ff00b5, 0x00c30e0bbd44add2, 0xea87ffbadd60f4ff, 0x020700da6c05bc81, 0xff3cff2407ff00d5, 0x00e3c6043abe8d9b, 0xe2cbffbb340e88ff, 0xc804010c140b39ed, 0x0cff00f9010900fe, 0xbc150359ff3b3d70, 0x566248ff01070b0b, 0x0009bd37ac70ffbc, 0xaaff01190007011e, 0x3c1445cfff3d1092, 0xb8f836ff0127070d, 0x050bbd25898dffbb, 0x000d01789d0401bc, 0x000b014a01110158, 0xff3d254397ff0145, 0x015348043d741d5a, 0x5873ffbd0ca00bff, 0x9504016a00073c2b, 0xffbac528d3ff0165, 0x017301123c169ec7, 0xab4bffba858dfcff, 0x0209019c100ebca1, 0xe1ff0189000c018e, 0x3bf2fb75ffbb2575, 0xc47ad6ff0197b404, 0x0111bcb98d3bff3a, 0x0cff01a9070d01ae, 0x3af002ebffbc9c97, 0x168e50ff01b7000c, 0x070ebe0c83a0ffbd, 0x0a0b01e457040204, 0x91ff01d14d0401d6, 0x3ac68fcbff3c5260, 0x23b825ff01df0111, 0x0a0bbdb5e26bffbc, 0xadff01f1070b01f6, 0xbcc2383fff3b1316, 0xf9d429ff01ff0009, 0x0109baa86d4dff3a, 0x140e021a00020228, 0xff3ad34536ff0215, 0x022300073d724141, 0x794dff3a6606afff, 0x0209023a080ebbd5, 0xff3d197c3dff0235, 0x0243060d3c17de20, 0x4d2eff39a5f817ff, 0x05060368be04bc70, 0x3b040298790402dc, 0x0b05026a1f010278, 0xffbac0144cff0265, 0x0273000ebc6abd80, 0xd84dffbbcbeabbff, 0x0b0e028a020d3b28, 0xffbcc7327fff0285, 0x029336053b00736c, 0x91faffbbd6543cff, 0x0f0e02bc020dba10, 0xf4ff02a9390502ae, 0xbd485587ffbdf439, 0x324c24ff02b79804, 0x130ebdeb79a7ffbb, 0x86ff02c9000c02ce, 0xbcc29458ffbbec1c, 0x0a4228ff02d7000f, 0x63053b15cf73ff3d, 0xa704030409060324, 0x26ff02f15a0402f6, 0xbb82837eff3ae49d, 0x076fc3ff02ff0606, 0x0a06bba72f0bffbd, 0x4cff0311b5040316, 0xbcdc0e74ffbb7ebf, 0x6bc0dcff031f0211, 0xb3043af3ac45ff3a, 0x050b033a000c0348, 0xff3a1e5f1fff0335, 0x0343000fbc26deab, 0x2695ffbd11d7fdff, 0x000f035a030bbc08, 0xff3c57a182ff0355, 0x0363080e39fc217f, 0xc625ffbbbcb31cff, 0x000203f80c063baa, 0x130e0394000c03b4, 0x12ff038100070386, 0x3b3a4f09ffbd4864, 0x1d6586ff038f0906, 0x0b0bbe1a170effbd, 0x4bff03a1440503a6, 0xbd84072effbd184a, 0xa44363ff03af130e, 0x010bbe25b894ffbd, 0x080603ca3f0503d8, 0xff3dd4f8d0ff03c5, 0x03d361053dc06b60, 0x5bc9ff3ab480daff, 0x030d03ea030bbd25, 0xff3bb6cf25ff03e5, 0x03f3c2043d0ed91f, 0xdaceff3c308e20ff, 0xc50404401106bc0c, 0x030d0412c2040420, 0xffbcbd110aff040d, 0x041b2b05bb22dd71, 0x4184ffbd5e31a1ff, 0x000d0432000cbcc8, 0xffbc1cf61eff042d, 0x043b01073a3bee61, 0xe90fff3c895366ff, 0x040d0464010b3b25, 0x8cff0451000b0456, 0x3b9f01b2ffbc8a72, 0xf5c04aff045f0007, 0x000dbd165551ff36, 0xb1ff047100020476, 0xbc28481bffbd3eb3, 0x879d5cff047f130e, 0xc704bbdae62eff3a, 0xbd0405a8c50406c4, 0xbb0404d8350e051c, 0xa90404aa380104b8, 0xff38acd772ff04a5, 0x04b3000939fcbfb4, 0xb018ff396df507ff, 0x000204ca2b0ebb76, 0xffb9354e5aff04c5, 0x04d32c0ebbe213a5, 0xf9a5ff3dbae1fbff, 0x000704fc68053a04, 0x30ff04e9080b04ee, 0xbb7f02f4ff39dab0, 0x8c9a7bff04f7b304, 0x7205bc550839ffbb, 0xc8ff0509000f050e, 0x3b706bfbffbcb521, 0x187d75ff0517000c, 0x00123d359232ff3c, 0xc1040544070d0564, 0x3bff0531000c0536, 0x3cc3ec72ff3c0dbf, 0xd6cc2fff053f180e, 0xc104ba682958ffbc, 0x5fff055100070556, 0xbc4de6b8ffbd5b9e, 0x290db7ff055f1f0e, 0x190ebc5f1b93ff3d, 0x6a05057a0b0b0588, 0xffba4fc9a8ff0575, 0x058300023b4571a5, 0x536cffbd0972b4ff, 0x230e059a140b3bc4, 0xff3b62116dff0595, 0x05a3060dba4e6b98, 0x9904ff3bc9959bff, 0x011106381b0ebd60, 0x0b0b05d41e0505f4, 0xd3ff05c1020805c6, 0xbd5078c2ffbdf64c, 0x55da32ff05cf0208, 0x8905be17673bffbe, 0xf0ff05e1000705e6, 0xbcd0f6bdffbbca0b, 0x9e721fff05ef0007, 0x030b3d95ed69ffba, 0x0107060a00090618, 0xff3d740f0aff0605, 0x061300023cd9ece6, 0x498affbccab5b0ff, 0x0208062a3905bc21, 0xffbd955000ff0625, 0x06330208bdab6250, 0x9929ff3bfcc610ff, 0x010c0680200e3d0e, 0x0011065200020660, 0xff3d848b4cff064d, 0x065b030bbc6d2608, 0x3c34ff3d1962e5ff, 0x001206721f0e3c69, 0xff3dacd055ff066d, 0x067b56053c85a448, 0x2b00ff3d8d689aff, 0x0e0b06a4260e3e6d, 0xf1ff0691060d0696, 0x3bd59a07ffbc3eda, 0xbe1517ff069f250e, 0x0111bdab6559ffbc, 0xbfff06b1000206b6, 0x3cfa055bff3bf699, 0xa00b93ff06bf2b0e, 0x00073b28599bffbc, 0x00090758060d07e4, 0x220e06f42b0e0714, 0x2dff06e1210e06e6, 0xbcdeb0cfff3c27b3, 0x5f9a98ff06ef230e, 0x130b3b1ab8a6ff3d, 0xb2ff070138050706, 0x3a51d3daff3c2e69, 0x70631aff070f0112, 0x2b0e3c05f49effbc, 0x0002072a190e0738, 0xffbcca2e13ff0725, 0x07330112babe6d89, 0x0f5bffbcbede74ff, 0x0209074a7b05bbfc, 0xff3cdd7fcdff0745, 0x0753010c3d6a894b, 0x9793ffbc2fe4ecff, 0xc80407a0170e3cdd, 0x010c07727c050780, 0xff3ceb63f0ff076d, 0x077b000c3db4928c, 0xa20fffbb78614bff, 0x87050792000c3cfb, 0xffbb4deac0ff078d, 0x079bc9043c51bd0f, 0xadb2ffbd38440bff, 0x000807c41f0ebda4, 0x4bff07b1880507b6, 0xbc220be9ffbd1775, 0x8a22b3ff07bf8605, 0x010c3c9bf5fbff3d, 0x74ff07d1230e07d6, 0xbc0ced7fff3c09ba, 0xeff0e1ff07df0108, 0x0e0bbc0c2f21ffbc, 0x0b0b0830280e0874, 0x010c080202080810, 0xffbb46b46bff07fd, 0x080b260e3c4173be, 0x6fbaffbc091277ff, 0x010c0822180e3cc5, 0xff3d6e6c4bff081d, 0x082b070d3cac021a, 0x2d6cffbd67c2deff, 0x88050854290e3c02, 0x1dff084177050846, 0x3d4e5891ff3cf3e8, 0x69c4efff084f000c, 0x000c3e21452dff3d, 0xecff0861c8040866, 0x3ba9b02bffbc56a7, 0x1c4bc5ff086f010c, 0x130bbc3a602fffbb, 0x060d089cc80408bc, 0x95ff0889010c088e, 0x3c43b4f0ffbd3653, 0x0bc312ff08970011, 0xca043dc9e6bdffbc, 0x5dff08a9000c08ae, 0xbe1dec47ffbdab30, 0x4a4d1bff08b7cb04, 0x000cbd1d4cc5ff3b, 0x6e0508d2c80408e0, 0xffbd3608acff08cd, 0x08db5805bc3f9dfc, 0x516effbc6e9bd5ff, 0x2b0e08f2c8043af9, 0xff3b06ddf3ff08ed, 0x08fb0705bcdcee8a, 0x35f7ffbd0114a6ff, 0x050d0cde0e0e3c07, 0x080e0a0dc4040aab, 0x9a0409589d04099c, 0x9604092a000c0938, 0xff3b3da25bff0925, 0x0933070e3cf23e4e, 0x5979ffba827e7aff, 0x000c094a9c04bc6a, 0xff3c1e8e80ff0945, 0x0953030e3d1af0aa, 0x0460ffbdd36d28ff, 0xa004097ca404bdfe, 0xf4ff0969000c096e, 0x3c57dfd9ffbce98f, 0x727511ff09770112, 0x070e3d06113cffbc, 0x6aff09890107098e, 0x3ac5f31fffbbc792, 0x8faba5ff09970009, 0x000f3cb23180ffbb, 0x040b09c4000909e4, 0xcbff09b1010709b6, 0xbbbf1709ff3c24b6, 0x5605d4ff09bfa704, 0x0d0e3aaa7cfdffbc, 0xe5ff09d1a00409d6, 0xbca53105ff3c00d9, 0x30848aff09dfb504, 0x00023c639916ffba, 0x030b09fa000c09ff, 0xffbca89f57ff09f5, 0x0f22c1ffbc5748b2, 0x888aff0a080007bd, 0x09bcc408a4ffbd59, 0x050a23c7040a5502, 0x3ce4f560ff0a1e95, 0x3ec9043d967978ff, 0x34c0ff0a3096050a, 0x8dff0a39030bbcaa, 0x3cb98660ff3c6a59, 0x9bcf00ff0a47ca04, 0x1800ff0a5096053d, 0x0e3b4edb00ffbb3a, 0xff0a62c7040a8208, 0x0a74c9043da42560, 0x64d920ff0a6f070e, 0x070ebda49a00ff3c, 0xffbb9c9340ff0a7d, 0x0a9dc9043da106b0, 0x0a93c7040a980d0e, 0x68c8ffbd5c3498ff, 0x02bd1ba8e0ffbd54, 0xbba3bd00ff0aa600, 0xcb0111bcd4cc30ff, 0xfb0b0e0b3fba040b, 0xcdb9040adb060d0a, 0xd07fff0ac8070e0a, 0x09bb926e28ffba57, 0x3c7f9645ff0ad600, 0xed8e053af64e66ff, 0xf22eff0ae8b6040a, 0x0e3c5b620dffbb1c, 0x3a26ed6fff0af608, 0x1f0c0e3c453886ff, 0x0c000c0b119e040b, 0x95ffbd5a6176ff0b, 0xff0b1a0002bdde6c, 0x320b1affbc23cd6d, 0x2c0d0e0b31b2043d, 0x09ff3c407851ff0b, 0xff0b3ab404bb7b37, 0x674159ffbbec59d3, 0x67bd040b870d0e3b, 0x54090e0b59bc040b, 0x26ff3aba13b7ff0b, 0xff0b62060dbc36dd, 0xbff79bffbcaf5050, 0x74000c0b79bf04ba, 0x95ffba2d1630ff0b, 0xff0b82c2043c925d, 0x671e47ffbb11a708, 0x9d00120babbb04b8, 0xca1aff0b98000c0b, 0x0bbe0739edffbd46, 0x3ba48029ff0ba605, 0xbd0108bc0ea2ecff, 0x959cff0bb8cd040b, 0x11bc0e60e3ff3b47, 0xbc15f802ff0bc600, 0x5292053babcd24ff, 0xf792040c17070e0c, 0xe401070be991050b, 0x7cff3b08f49dff0b, 0xff0bf2000cbccb4f, 0x485640ffbab5e561, 0x04000c0c0997043d, 0x61ffbc04afb2ff0c, 0xff0c12a604bd1b2a, 0x4438fcff3c52df70, 0x247e040c3291043a, 0x000fbc9ddfd0ff0c, 0xffbd894f08ff0c2d, 0x0c44ad04bca4816c, 0x43f4ecff0c3f9404, 0xb3043b25b259ff3d, 0xffbc6da2ecff0c4d, 0x0c9a94043aff2f7c, 0x0c6c7f040c7a9004, 0xc9d820ff0c67000c, 0x000cbd454545ffba, 0xff3c2b7a23ff0c75, 0x0c8c00023d328d83, 0x5f5f7dff0c870009, 0x010e3d16bff8ffbd, 0xffbdfe1c5aff0c95, 0x0cbe99043e094bcc, 0x0cab000f0cb0000c, 0x37abff3d2c0731ff, 0xadff0cb900093b9b, 0x3bf2c066ffbcb9be, 0x0ccb070e0cd0b304, 0x0b28ff3b2197efff, 0xbeff0cd9060dbc95, 0xbcc81427ff3b83ff, 0x0e021d0e0f15010c, 0x0d3200070d76150e, 0x0d040e0b0d12bd04, 0xa2f403ff0cff9105, 0xbc04bb978fa4ff3b, 0xffbbcb0892ff0d0d, 0x0d249505bd6edbbb, 0x618787ff0d1f0009, 0x000fbaafd7d0ff3c, 0xff3bf930c9ff0d2d, 0x0d569205bbc335e2, 0x0d438f050d48c804, 0xd692ffbc27843bff, 0x2bff0d51c9043b1e, 0x3bf4c442ff3d62a3, 0x0d63000c0d68000d, 0x8717ff3bb529caff, 0xf2ff0d71000c3cf3, 0xbc5c76f0ffbb7f41, 0x0d9eb8040dbe000f, 0x0d8bb5040d90170e, 0x95a2ffbb2c7472ff, 0xffff0d99040dbdd5, 0x3cc1dcfeffbb10d0, 0x0dab060d0db00109, 0xdd61ff3b7e12fcff, 0x06ff0db9c6043d6f, 0xbcfb0d4bffbb8c42, 0x0dd4bc040de2bf04, 0x2bd958ff0dcfba04, 0x170ebbf46cd0ff3b, 0xffbafc4433ff0ddd, 0x0df4c9043c87b343, 0xa70b55ff0defc204, 0x060dba97a29effbb, 0xff3b6c6835ff0dfd, 0x0e920002bb18b879, 0x0e2e96050e4e0008, 0x0e1b90050e200112, 0xa73fffbb3e0b5fff, 0x9bff0e29c6043b0d, 0x3bfcd7e2ffbb03b1, 0x0e3b0b0b0e40000c, 0x7c09ffbc0d7971ff, 0xe0ff0e49010bbcbf, 0xbdaba326ffbc97fc, 0x0e64020d0e729405, 0x1025fbff0e5fc804, 0x9305bb2fd407ff3d, 0xffbb1dcc56ff0e6d, 0x0e84000c3cf969df, 0x8b4a63ff0e7f0b0b, 0xc904bcdbc4e4ffbb, 0xff3b337180ff0e8d, 0x0ed1b504bd654e68, 0x0eacb1040ebab304, 0x365a97ff0ea71f0e, 0x020b3a715098ffbd, 0xff3d82d6d0ff0eb5, 0x0ecc040b3c2ce7fe, 0xe04a55ff0ec71f0e, 0x98ffbd1a90eaffbb, 0x040ef5bf043ce6f5, 0xff0ee2b7040ee7be, 0x2af348ff3d0ff5a6, 0xbfbaff0ef0220e3a, 0x0f3cb13829ffbb8e, 0xff0f021f0e0f0700, 0x4531b7ff3d1033b0, 0x311aff0f100112bb, 0x04bb81f98dff3a33, 0x040f7c00111008c5, 0x0b0f3c150e0f53c4, 0x3c578a78ff0f2e02, 0x164065ff0f37100e, 0x170e3d4d9bcbff3d, 0x04bdcc9984ff0f45, 0x3adfd540ff0f4ec2, 0x6e0002bc4fe437ff, 0x6400070f69030b0f, 0x04ffbd3f5298ff0f, 0xbdf90792ffbd6c1a, 0x5d2a8cff0f77050b, 0xc3043ccbf680ffbd, 0x92050fa4190e0fc4, 0x86ff0f91bc040f96, 0x3c12218fffbb1cf8, 0x970b8dff0f9f170e, 0x1f0ebc9d9984ffbd, 0xe5ff0fb100020fb6, 0xb970beabffbca2b0, 0x4ccbccff0fbf0002, 0x8f05bc5852bbff3c, 0x00080fda030b0fe8, 0xff3bfa3662ff0fd5, 0x0fe31f0ebd3874d4, 0xf921ff3ccebe3bff, 0x060d0ffa1d0e3e02, 0xff3afee0e5ff0ff5, 0x1003c4043d346457, 0x80d2ffbaff60c0ff, 0x060d108fc804bd85, 0x00091034170e1054, 0xf6ff102100081026, 0xbd5b7d34ffbd087d, 0x6677c4ff102fc604, 0x190ebc39c9a9ff3d, 0xdaff10418f051046, 0x3d487be6ff3c9a28, 0xc1425cff104f220e, 0x170e3bb4cab0ffbc, 0x140e106a0009106f, 0xff3cfe4255ff1065, 0x0e47b0ff3d7ea7b0, 0x7c8e051081190ebd, 0xc3ff3c8945e2ff10, 0xff108ac704bcabe6, 0x0085c3ff3d2ddc68, 0xb7060d10d7cc043d, 0xa48f0510a9001210, 0x35ff3d43be17ff10, 0xff10b2010b3d8f29, 0x32c6eeffbd074ae0, 0xc4140e10c9180e3b, 0xd3ff3c447cc7ff10, 0xff10d20011bcf722, 0x9cd5a0ff3bee51c9, 0xedcd0410fb8e05bc, 0xd3fbff10e8190e10, 0x02bcccdf67ffbba6, 0x3c53d77aff10f600, 0x0d8f05bd25493fff, 0xd045ff1108000811, 0x053d0e3558ffbb0e, 0xbb713248ff111692, 0x00001339c6ea74ff, 0x0003e80000000800, 0x0011510000000100, 0x008d050000000000, 0x48c3040484160e09, 0xa09704012c980402, 0x3c8804005c900400, 0x298805002e860400, 0xc2ff381f9867ff00, 0xff00370d0eba23f6, 0xede49dff3baef857, 0x490b0e004e010cbb, 0xf0ffbb47bb29ff00, 0xff0057060d3af8e2, 0x777bd7ffbb39442c, 0x72060d008091043b, 0xf4a1ff006d000900, 0x0ebc173257ff3af4, 0xbc3297d9ff007b0a, 0x92030bbcee5099ff, 0x5ea9ff008d920400, 0x0ebbb09309ff3bda, 0x3b8a7c59ff009b0e, 0xe8000fbc4ae996ff, 0xba020800c8000c00, 0x6de2ff00b5020d00, 0x023d1fc18cff3c2b, 0xbd413bf6ff00c300, 0xda09063ca43fd0ff, 0xb6a0ff00d5040e00, 0x0ebbc1c3feffbd31, 0x3a83a2bfff00e301, 0x0c31033d46ca64ff, 0xf90d0e00fe070d01, 0x00ffbd69843aff00, 0xff01070d0e3b8dba, 0x213f93ff3d5560bd, 0x190011011e0112bc, 0x2fffbbc9fe6bff01, 0xff012700023bfa30, 0x31b159ffbc878d73, 0x78000201bc9c04b9, 0x4a070d0158990401, 0xf72cff0145010701, 0x09bc0a6293ff3b84, 0x3cf7ba3fff015300, 0x6a0a0ebc20a99bff, 0x3430ff0165090e01, 0x0e3d0f2906ffbc12, 0xbd2d9d29ff01730d, 0x9c00063ab8fe8fff, 0x890012018e450501, 0x16ff3c877d74ff01, 0xff019700083d5818, 0x631abbff3b883255, 0xa9011101ae0b053c, 0x29ffbb08fd79ff01, 0xff01b7000f3c7030, 0x8afea6ff3c2a5a47, 0xe4000d0204110bbb, 0xd1070b01d6100601, 0xd9ffbbeb735cff01, 0xff01df070e3c6452, 0xfca8e4ffbc57cf1b, 0xf10d0b01f6100bbc, 0x7cffb997c29dff01, 0xff01ff00113a6c64, 0xa1a326ffbd339cb8, 0x1a9e040228a204bb, 0xd7daff0215140b02, 0x04bcb14f09ff3ceb, 0x3cec25b7ff02239f, 0x3a670539c141c6ff, 0x07c3ff0235a40402, 0x0d3ab73235ff3cb9, 0xbbb879deff024306, 0x68120e3b785ecaff, 0x98001202dc880503, 0x6ac7040278000802, 0xa78cff0265010c02, 0x05bc3fce93ff3ab3, 0x3d8bb641ff02737e, 0x8a6b053bf36cdfff, 0x070eff02850d0e02, 0x05bd75db10ff3c78, 0xbc6aad81ff029375, 0xbc060dbb9d6f05ff, 0xa90e0602ae030b02, 0x69ff3c8544ebff02, 0xff02b77f053ab542, 0x8a4118ffbac8d15e, 0xc9070e02ce0007bb, 0xe3ff3caa62a1ff02, 0xff02d7ca04bd329a, 0x218270ff3bac3fa9, 0x040002032489053d, 0xf1c60402f60b0b03, 0xbfff3c91b3a4ff02, 0xff02ff000cbbb99e, 0x1595fcff3ba80da2, 0x1101080316c4043d, 0xcdffbdb44db2ff03, 0xff031f0207bbfcf1, 0x5b1fb4ffbc76be09, 0x3aca04034801073b, 0x48e7ff0335c40403, 0x0e3b4f59f7ffbbce, 0x3d0d9abdff03430a, 0x5a0e0bbce11663ff, 0x7639ff03550b0b03, 0x04bd22bb09ff36a3, 0x3c6d178aff0363c8, 0xf8130b39903d13ff, 0x94c90403b4790503, 0x816e050386c80403, 0x64ffbb5bc049ff03, 0xff038f020d3cbe5c, 0x70071bffbb184140, 0xa1040d03a6050dbd, 0xa2ffba343ae2ff03, 0xff03af0007bd6675, 0x732797ff3d802fee, 0xca050b03d80b0b3c, 0x60f3ff03c5000903, 0x0d3cdb0e76ffbcc4, 0x3a920f5fff03d307, 0xea070dbd1dd0b1ff, 0x6342ff03e5000c03, 0x05bdcc8901ffbd07, 0xbd82d699ff03f37a, 0x40000c3d218f4aff, 0x12140e0420020704, 0xf471ff040dc80404, 0x05bb842752ffbcdb, 0xba09fd00ff041b2a, 0x3201083c0491a9ff, 0x87ddff042d2b0504, 0x113d36ad3fff3c60, 0x3c47a990ff043b00, 0x64c504bbc58bc5ff, 0x51010c0456060d04, 0x50ffbd0fb326ff04, 0xff045f00123dd225, 0xcdb4c9ff3d026fa9, 0x718905047600023d, 0x4eff3b8e79a2ff04, 0xff047fcb04bdc66c, 0xd0a4c7ff3cae6702, 0xa8af0406c457053a, 0xd80906051cab0405, 0xaa9a0404b89e0404, 0x4e01ff04a5980404, 0x043a58d110ffb8ff, 0x3c51cb7aff04b39b, 0xca140bb99ad0ffff, 0xdd6fff04c5a50404, 0x04bb8f651dff3a68, 0xbb37d0b6ff04d3a7, 0xfc40013c2e0ad3ff, 0xe9070504ee7f0404, 0xf6ff3a916646ff04, 0xff04f7000fbc401e, 0x4f417bff3c3573e8, 0x09a704050e010cbb, 0xdfffbb950408ff05, 0xff051701073bbfcf, 0x973fe2ffba6afcd1, 0x4431030564220e3c, 0x312c050536190e05, 0x38ff3c1ac300ff05, 0xff053fac043e145e, 0xd1cd5bffbdf3d4c8, 0x5101110556ad04bc, 0x59ffbc9fea30ff05, 0xff055f0b063b1b27, 0xb6671fff3c0d87a8, 0x7a2b0e0588130bbb, 0xd146ff0575230e05, 0x0d3a861aa8ff3c5f, 0xbb336d15ff058306, 0x9a0207bd64d398ff, 0xf6f9ff0595230e05, 0x11bbcf6524ff3c52, 0x3ddab6cbff05a300, 0x3855053c8c311bff, 0xd4be0405f4020806, 0xc1011205c6190e05, 0xb7ff3cf55324ff05, 0xff05cf0105bb34b3, 0x711c14ffbcea716e, 0xe1190e05e600063a, 0x29ffbc5bc71aff05, 0xff05ef01073c092d, 0xb183d6ff3a65033d, 0x0a3a0106182e0ebb, 0x1958ff0605b50406, 0x01bdcd83d9ff3d0a, 0x3d20be9fff06133b, 0x2a2f0eba0e42caff, 0xdb12ff0625b50406, 0x053cfe531dffbb2f, 0x38b7f975ff063352, 0x8056053b0149d2ff, 0x52b30406600b0b06, 0x6660ff064d000f06, 0x04bcb95c9dff3bd5, 0x3bda48d9ff065bc0, 0x721e0ebc8bde24ff, 0x70b2ff066d190e06, 0x0ebd7a8061ffbcef, 0x3d4128eeff067b22, 0xa4280ebcbd4709ff, 0x91b0040696000206, 0x7fffbcf04644ff06, 0xff069fb2043d0d08, 0xd753dbffbc9a2ba5, 0xb1000f06b6c3043b, 0x94ff3c32eaa8ff06, 0xff06bf080bbc4a3d, 0xd00167ffbc743b7c, 0x58870507e401073c, 0xf4bb040714000707, 0xe1010b06e6020806, 0xb6ffbaf031f0ff06, 0xff06ef0002390f08, 0x5ada79ffbb9c75ba, 0x01220e070675053b, 0xb0ffbc1c329dff07, 0xff070f180ebba15a, 0x13fa25ffbcacb24b, 0x2ab504073886053a, 0x9b61ff07250a0b07, 0x083ae4a42dffb96a, 0x3b4f1025ff073302, 0x4a1d0ebb183aa8ff, 0x4c8dff0745bf0407, 0x12bc0dc04fff3ae3, 0x3c8a07f9ff075300, 0xa002083a70a6a6ff, 0x72cd040780130b07, 0x4cc2ff076d000f07, 0x0c3940d638ffba99, 0x3c42e840ff077b00, 0x928905bbad5befff, 0xae62ff078dca0407, 0x053c8d7a77ffbb94, 0x3bd9ec63ff079b8c, 0xc4bf04bb014dadff, 0xb1000707b6000f07, 0x80ff3d88cbd3ff07, 0xff07bf060dbc21d8, 0x004decff3ab5cd51, 0xd1001107d6000c3d, 0xfcffbbc0e68aff07, 0xff07dfc7043bc92f, 0x18d327ffbd6ac025, 0x30c10408740207bc, 0x02230e0810b70408, 0x5ccaff07fd060d08, 0x0e3b97958eff390c, 0xbc923cccff080b28, 0x22b804ba531ab4ff, 0x445bff081d001108, 0x0f3c943fffffbc75, 0x3c2046ceff082b00, 0x54c204bb3f5e9dff, 0x41180e0846010808, 0x26ffbd550c93ff08, 0xff084f220eba1651, 0xb68681ff3b7c780c, 0x61620508666805bc, 0xddffbb255baaff08, 0xff086f6e053cb632, 0xd3285affbc470823, 0x9cc20408bcc304b9, 0x89010c088e170e08, 0x8fff3bb041b2ff08, 0xff08972b0e39bcf5, 0xab4aadffba67c462, 0xa95d0508ae100b3a, 0xbaffbde2b60fff08, 0xff08b75d053b754d, 0x1b5e31ff3d250ec2, 0xd25b0508e05d05bd, 0x1584ff08cd590508, 0x083d24ba9aff3bdf, 0xbd8b1d6eff08db00, 0xf25f05bc31c937ff, 0xed70ff08ed010808, 0x043b96887cff3d2c, 0xbc5efc1dff08fbc4, 0xf00e0e38d52f5eff, 0x28b8040b17030d0c, 0x58020b099c070b0a, 0x2a020d0938000909, 0xd6cfff0925b30409, 0x04bc95f13eff39dc, 0xbd2b5192ff093370, 0x4aa704bae41f55ff, 0x6bdfff0945010b09, 0x0e3c18f2c0ffbc80, 0xbd235ddfff09530d, 0x7c070ebbb0bcc0ff, 0x699305096eb50409, 0x2dff3b2926caff09, 0xff09770002bb58e5, 0xc0abc8ffbdda5428, 0x89080e098e000cbd, 0x3bff3c5cdca2ff09, 0xff0997080ebbe5fb, 0x9a3e17ffbc2205ed, 0xc4020d09e48f043b, 0xb1700409b6080e09, 0xbcffbb165458ff09, 0xff09bf00023c17ad, 0x43c7aeffbc41c16e, 0xd1000c09d69005bd, 0xadff3d3fa5d0ff09, 0xff09df0a0b3c812c, 0x825b28ff3d988638, 0xfa90040a08000c3d, 0x25c4ff09f5010709, 0x12bd109339ffbb34, 0xbc959e37ff0a0301, 0x1a98043c835753ff, 0x7330ff0a1591040a, 0x09bd1e176dff3b9a, 0xbbe3fc74ff0a2300, 0x94000c3c5fcc0dff, 0x4201120a5000070a, 0x4b3eff0a3d030b0a, 0x0bbcd44258ffbd0f, 0xbc8d57a0ff0a4b03, 0x74030bbd078050ff, 0x6101110a6601070a, 0x80ffbbdd29c8ff0a, 0xff0a6f0111bc96de, 0xe57440ffbb453f74, 0x8193050a869505bb, 0x3effbca60484ff0a, 0xff0a8f0112bc8e15, 0xf5ee00ffbca563b5, 0xb3080e0ad3bb04bc, 0xa900020aae030b0a, 0xf0ff3cebcb80ff0a, 0x3b806500ff3d62a8, 0x0ac0ba040ac59005, 0x4eb8ffbcb756d6ff, 0x74ff0ace030b3d7c, 0x3b0b9900ff3cd8f1, 0x0ae900020af79605, 0xff477cff0ae4080e, 0x00093bb4e886ff3c, 0xff3aba8c18ff0af2, 0x0b090009bc54e886, 0xbf89dbff0b040007, 0x020b3b60d233ff3c, 0xffbc399873ff0b12, 0x0bd451043c2a51c2, 0x0b5e000b0b870002, 0x0b3026040b3e0007, 0x3994053a453e3cff, 0x34ffbc131518ff0b, 0x050b500107bc4c2c, 0xbc067e62ff0b4b91, 0x598f05bbd0a664ff, 0x00ff3c412422ff0b, 0xff0b678e053b3e91, 0x0b7900123c90b240, 0x1c04ecff0b740007, 0x00073cb7817cff3c, 0xff3ba5cf4cff0b82, 0x0ba24e04bb420cbc, 0x0b98020b0b9d0112, 0x8a0cff3b355318ff, 0x113c68dbd5ffbb37, 0x0b0bb8060d0bbd01, 0x3abeb9cdff0bb305, 0xc0adffba1242d0ff, 0x8f050bcf0007bc17, 0xffbc6f5840ff0bca, 0xa87280ffbbfbd900, 0x20070e0c64010c3b, 0xf2a7040c0000020c, 0x4028ff0beda2040b, 0x04bc896989ff3926, 0x3c96fd15ff0bfba9, 0x12000f3ae87014ff, 0x0498ff0c0d01110c, 0x0c3afbb356ffbda3, 0x382a52afff0c1b00, 0x44b1043ae26016ff, 0x31000c0c36080e0c, 0xc1ffbab49335ff0c, 0xff0c3f0a0ebc934d, 0x798e68ff3c8842c1, 0x51000c0c56b204ba, 0x6dff3ce81ffeff0c, 0xff0c5f00093d5e6e, 0xe2eb18ffbac472e0, 0x8c0b0b0cac070d3a, 0x79c6040c7e060d0c, 0x67ffbb8f7009ff0c, 0xff0c87c0043c33c7, 0xe1dfeeff3b44fd8f, 0x99130b0c9e0b0eba, 0x80ffbc1e95ecff0c, 0xff0ca700113bbfc0, 0xc54863ffb976e836, 0xc2070e0cd0080ebc, 0xf8d6ff0cbdab040c, 0x0bbd38624bff3d06, 0x3cb889eaff0ccb01, 0xe20d0e3d714b30ff, 0x27e9ff0cdd030b0c, 0x02be002614ffbd75, 0x3d8c6feaff0ceb00, 0x27010cbc8a5bb0ff, 0x88160e0e0b1d0e0f, 0x2400090d44bd040d, 0x1100020d16bb040d, 0x9cffbb9578f0ff0d, 0xff0d1f00023ba970, 0xdbf1c3ff3ca20dc7, 0x3101110d368e05bc, 0x83ff3aad40ddff0d, 0xff0d3f000fbd8b47, 0x908a90ff3d1d28da, 0x5ac2040d68000c3b, 0x2cc3ff0d5590050d, 0x0d3c8a7f7fff3a0f, 0x3d1e0d43ff0d6304, 0x7a0008bb382702ff, 0x8786ff0d7501070d, 0x0ebc8fd9d6ff3b27, 0x3cca5413ff0d8314, 0xd00208bc1c63c0ff, 0xa2010b0db0b8040d, 0x2516ff0d9db5040d, 0x0fbcd32e15ffbb61, 0xbb24afbbff0dab00, 0xc2bf043ada8221ff, 0xb1d2ff0dbdbd040d, 0x113c1740a1ff39e3, 0xba92491aff0dcb01, 0xf4190e3b1c48c0ff, 0xe10b0b0de6180e0d, 0x6fff39b4fb4dff0d, 0xff0def01113c8f23, 0x73193dffbc463700, 0x01000c0e060b0bbd, 0x28ff3c6d5904ff0e, 0x3d7b7060ff3d6462, 0x0e5700080e9b0002, 0x0e29cd040e37020d, 0x1e6134ff0e24c604, 0x95053bba7ab5ffbb, 0xff3dbf43f8ff0e32, 0x0e49240e3da2bb88, 0x7237b9ff0e44230e, 0x2a0e3db58aa1ff3a, 0xffbc32832aff0e52, 0x0e7b94053b33a55a, 0x0e68c8040e6d020d, 0x3f07ff3d01bbcaff, 0xa5ff0e769305bb1e, 0x3ce078ddffbb0e04, 0x0e880b0b0e8d000c, 0xcad1ffbb7ab904ff, 0x80ff0e96c904bcc5, 0xbd4e6028ff3b217f, 0x0ec3b3040ee3b504, 0x0eb01f0e0eb5b104, 0x2f78ffbd241e55ff, 0x47ff0ebe000f3a59, 0x3acaf9c7ff3d4265, 0x0ed01f0e0ed5000f, 0xae56ff3ba84b39ff, 0x69ff0ede060dbd23, 0xbcf367e3ff3c0048, 0x0ef9be040f07bf04, 0xd6a9eaff0ef4000f, 0x0009baeaafc0ff3b, 0xff3ca1b645ff0f02, 0x0f19000fbb612a7c, 0x2373b9ff0f14c604, 0x0111bbd422d5ff3c, 0xff3a2145a6ff0f22, 0x10351c0ebb69f463, 0x0f77190e0fb21b0e, 0x0f49bd040f57bf04, 0xa96443ff0f44bb04, 0x060dbc817fcaff3b, 0xff3d4a3b46ff0f52, 0x0f69170ebbf57f78, 0x55934cff0f64140e, 0x0109bbe17f47ff3b, 0xff3b8e0609ff0f72, 0x0f9b0002bc680cc1, 0x0f8800090f8d030b, 0xb8f5ffbc80e3ffff, 0x17ff0f9600093c46, 0xbbd2c7abffbd9936, 0x0fa8c1040fad050b, 0x7e00ffbd24d58eff, 0x093e1cbdb2ff3a16, 0x0b0fdacc040ffa00, 0xff0fc7c8040fcc0b, 0x7ac4e0ff3ce75725, 0x6d00ff0fd58e053d, 0x0d3ca44bb5ff3d03, 0xff0fe70b0b0fec06, 0x6fb758ff3cbe97f0, 0x62cdff0ff58f053d, 0x043d22474bffbb1c, 0x1210108f05101ecd, 0xbbaf66c0ff100b00, 0x19060dbcb23e38ff, 0x98ffbcc20cf8ff10, 0xff10270109bd781a, 0x103091053d93a41c, 0xf180ff3b84a6f0ff, 0x000910c5280ebc4a, 0x1d0e1061230e1081, 0xdeff104e0b0b1053, 0x3b360be0ffbbf2b8, 0x9d00eeff105c0b0b, 0x9205bc1cdf2bff3b, 0x4fff106e250e1073, 0xbc0925b4ff3d3824, 0x121f9eff107c030b, 0x1f0e3d8aff46ffbd, 0xca041097010910a5, 0xff3c7daf55ff1092, 0x10a00002bcd10ff0, 0x254aff3d8c261eff, 0x000210b7270e3cb5, 0xffbc225172ff10b2, 0x10c00002bcf105ab, 0x8758ff3da22d18ff, 0x0108110d2c0e3c34, 0x8f0510dfcc0410ed, 0xffbbe716bdff10da, 0x10e800023c23f31b, 0x91aeffbbd02e0aff, 0x000710ff0002bd09, 0xff3d03b4b3ff10fa, 0x11088e05bc72c420, 0x4bc0ffbc935488ff, 0x00081131330ebcfa, 0x5cff111e2d0e1123, 0x3c0e4816ffbbb082, 0xf0fb00ff112c9005, 0x90053e1254ceff3a, 0xc8ff113e00091143, 0x3cc8e764ffbca1ca, 0x731df0ff114c030b, 0x0013bc0e5f58ff3b, 0x03e8000000080000, 0x116c000000010000, 0x8d05000000000000, 0x0006047b150e08f7, 0xbf04012cc204023f, 0x8c05005cb20400a0, 0x7f04002e8a05003c, 0xff392c45c0ff0029, 0x0037130e3a3c6ac3, 0xda4effb98e5ee5ff, 0x000f004ea3043c1b, 0xffbc0bf935ff0049, 0x0057b004b98bedbb, 0xdc1cff3b77354fff, 0x060d00800b0b3c66, 0x7bff006d0b0e0072, 0x3bc87903ffbb8d6e, 0x36b240ff007bbd04, 0xbe043c79f06bffbb, 0x81ff008d00120092, 0xbc211091ff3b5b0d, 0x731fe7ff009b070d, 0x0e0e3dc38429ff3c, 0x001200c8070e00e8, 0x80ff00b5c00400ba, 0x3c5c0f49ffbdc570, 0x661a15ff00c3030e, 0x00023d19b681ff3c, 0x0eff00d5070d00da, 0x3cd9ebdaffbcc1fa, 0x8083bdff00e3c104, 0x070d3c469bbaffbb, 0x000200fe0009010c, 0xff3d1ac03eff00f9, 0x0107140e3c971e89, 0xde78ffbc0ac6e4ff, 0x090b011e0b0b3de9, 0xffbc86c233ff0119, 0x0127000cbd498d07, 0x680bff3b023733ff, 0x010701b376053d0c, 0x010c014fc304016f, 0x0e3d457e78ff0141, 0xbd3b9ec4ff014a07, 0x61070d3df23478ff, 0x3b1cff015c0b0b01, 0x043d0b7b8affbd2a, 0x3ca67d91ff016ac5, 0x937005bcdb4d39ff, 0x8002070185690501, 0xf2ff3c736439ff01, 0xff018ec404bc9f33, 0x210bd6ff3d113e77, 0xa0020701a50b0b3c, 0xc5ff3d04b6a6ff01, 0xff01ae7305bc2e69, 0x8a2484ffbd1e5519, 0xdb000201fb7705bc, 0xc8010801cd0d0e01, 0xfaffbd0d70e5ff01, 0xff01d6c304bacae9, 0xba519cffbd380f62, 0xe8010801ed0d0ebd, 0xe1ff3da7bfd9ff01, 0xff01f6030b3cec96, 0x9cde2cffbcf2d94c, 0x118005021f8305bc, 0xbed9ff020c790502, 0x04bbe6dd1cff3bf6, 0x3d9ff1d7ff021ac3, 0x3101073adf3537ff, 0x3b2fff022ccb0402, 0x0dbc8322dbffbb1f, 0xbba066c3ff023a06, 0x5f0d063b10f683ff, 0x8f090e02d3000c03, 0x613904026f730402, 0xc6f2ff025c380402, 0x043c368013ff3aee, 0xbae67fc7ff026a6f, 0x81020d3bef4455ff, 0x0397ff027c410502, 0x04bbb007bbffbcda, 0x3bd8af82ff028a76, 0xb30806bb49ef95ff, 0xa0050d02a5000f02, 0xc1ffbb4d2ee0ff02, 0xff02ae0c0e3ca87b, 0x007cf0ff3bc7caf6, 0xc0010d02c5030bbc, 0xacffbcc095ceff02, 0xff02ce000f3ac7a5, 0x59795eff3cb91666, 0xfbb604031b13053b, 0xe8000f02edae0402, 0xbaff3b1b1775ff02, 0xff02f60b05bb49f5, 0xbaab57ff3d148960, 0x080208030d08063b, 0x4fffbe062f14ff03, 0xff03160b05bdf7b2, 0xcefc68ff3d789268, 0x31050b033f08063c, 0xb2bbff032c020803, 0x0fbc75573bffbba2, 0xbd0398fbff033a00, 0x51070ebc47c1c6ff, 0x8f4aff034c030e03, 0x0bbb2e1abfffbbff, 0x3c7e444eff035a03, 0xef55053b8280f5ff, 0x8b020803ab110603, 0x784404037d530403, 0xdbffbbeed89bff03, 0xff0386000f3bf0f8, 0x458b90ff3c329cfc, 0x984205039d010e3a, 0x92ffbc1a3305ff03, 0xff03a6000f3ae702, 0xcc07aeff3bd8ffb8, 0xc1630403cf6404ba, 0xacb5ff03bc330303, 0x06bae2bff7ff3cb6, 0xbd105d92ff03ca14, 0xe10005bb4ac655ff, 0xae22ff03dc000c03, 0x05bca0fe5bffbb15, 0xbbba02fdff03ea01, 0x37090e3926a323ff, 0x09070b0417000c04, 0x3c5dff0404000e04, 0x053c138b57ffbb30, 0x3c9023e1ff04125d, 0x29030ebb79ab35ff, 0x90f5ff0424000f04, 0x02bbd37899ffbc58, 0xbd08abeaff043200, 0x5b62053a7cdcc5ff, 0x480e06044dc20404, 0x51ffbbe25fbeff04, 0xff04560108bd5bba, 0x197be8ff3a0b6286, 0x68b004046d67053e, 0x20ff3dbea5ecff04, 0xff0476000f3bd75b, 0xd92295ffbc8ba874, 0x9fc50406bbc7043b, 0xcf350e0513bd0405, 0xa1380104afbb0404, 0x9605ff049ca90404, 0x0b39afa921ff38ac, 0xb99bcb7cff04aa14, 0xc12b0e3ac027b2ff, 0x8b76ff04bc000204, 0x0ebbc9fdbdffb86f, 0x3da84407ff04ca2c, 0xf35e0539e168eaff, 0xe03b0104e5410104, 0xecffbb31d5c7ff04, 0xff04ee000f3bdcaa, 0xb4b974ffbcd508fa, 0x0072050505bb04ba, 0xacffbb5ebbc7ff05, 0xff050e000f3cc3cf, 0xe37bacffbdb9300a, 0x3b070d055b0012bb, 0x28000c052dc10405, 0x6bff3c005cceff05, 0xff0536180e3cb029, 0x5436feffbcbc919d, 0x480007054dc104ba, 0x6effbd43f68fff05, 0xff05561f0ebc3712, 0x4c70d0ff3d184eaa, 0x710b0b057f190ebc, 0x5f34ff056c6c0505, 0x023b5e7fadffbae6, 0xbcf5e096ff057a00, 0x910e0b3bb8bfc5ff, 0x22c3ff058c180605, 0x0e3ce7f32aff3997, 0x3c9db350ff059a1f, 0x2f1a0eba8d6facff, 0xcb890505eb011106, 0xb8000805bd060d05, 0xc3ffbbaf03dcff05, 0xff05c60107bd2401, 0xdfcb7fff3ac4f0f6, 0xd8001205dd0007bc, 0x80ff3c6f5e96ff05, 0xff05e6010cbbc9b0, 0x0ce86dff3d3f087c, 0x010009060f030b3e, 0xe209ff05fc010706, 0x023cc3485bff3d5c, 0xbcb57b10ff060a00, 0x213905bc1175baff, 0x4590ff061c070606, 0x0dbd9a2270ffbd85, 0x3d0729e9ff062a02, 0x770e0b38fecd8bff, 0x49000606570b0b06, 0x71dbff0644340e06, 0x08bc7304e2ff3b61, 0x3a417e5eff065200, 0x6900023c9efcc0ff, 0x54f4ff0664000706, 0x043c6e2b46ff3da6, 0x3cc61d55ff0672c6, 0x9b200ebd52837fff, 0x888505068d000206, 0x45ff3dd1838fff06, 0xff06961c0e3c8c2e, 0xa1daf3ff3d84edd2, 0xa8250e06ad260e3c, 0xe6ffbcab03a7ff06, 0xff06b60002bd9a3b, 0x0bc802ff3b695d98, 0x4f060d07db00073d, 0xeb2b0e070b000907, 0xd8200e06dd220e06, 0x1eff3c15e603ff06, 0xff06e6230ebcbf25, 0x03a145ff3d486ff1, 0xf8001206fd0b0b3b, 0x1eff3d355b45ff06, 0xff070601123ae89d, 0xe69333ffbc442343, 0x21190e072f2b0e3b, 0x34d1ff071c000207, 0x0cbabe692dffbcb9, 0xbbc0eb14ff072a00, 0x41000cbcae53c5ff, 0x9b6bff073c011107, 0x0bbd81853effbbad, 0x3c94f11aff074a0e, 0x97170ebc2d6bd6ff, 0x697c050777c80407, 0x1ef0ff0764010c07, 0x0c3da63dcaff3ce5, 0xbb332875ff077200, 0x89000c3ceb031eff, 0xc703ff0784c90407, 0x043c8f44edff3bc9, 0xbd20aacdff0792c9, 0xbb1f0ebd9209a1ff, 0xa8870507ad000807, 0x17ffbd0d7c8bff07, 0xff07b68605bc1ffa, 0x8bb4b0ff3d7a4a87, 0xc8230e07cd010c3c, 0x80ff3bf45adaff07, 0xff07d6280ebbfe44, 0x31120bffbcf0db72, 0x270b0b086b120bbc, 0xf9011208078c0508, 0x7842ff07f4c90407, 0x083902b20effbbbb, 0x3b155275ff080201, 0x19060dbb928a6bff, 0x23e6ff0814c80408, 0x043bc727c3ffbc31, 0xbc200fbdff0822cb, 0x4b110b3c17823cff, 0x38100b083d180e08, 0x64ff3d253ec1ff08, 0xff0846c804bd1040, 0x625bf8ffbcb879a5, 0x580008085d060dbd, 0x35ff3bdebcebff08, 0xff08660011bd4c3d, 0xb3d0b9ffbc10a4c2, 0x93000c08b32b0e3d, 0x8000020885c80408, 0x79ffbd2deb2bff08, 0xff088ec904bc05ad, 0x67bf60ff3c57bb06, 0xa0020708a50c05ba, 0x45ff3d2ecafdff08, 0xff08ae1305bd70bd, 0xd1f3e7ff3c2ac769, 0xc92c0e08d7c8043b, 0x48a1ff08c4000c08, 0x0ebe63185fffbdbb, 0x3d331bd8ff08d22f, 0xe90108bcc25b2eff, 0x86c4ff08e4c90408, 0x0ebc0b9b15ff3cdf, 0x3c91a238ff08f234, 0x410e0ebc587ec2ff, 0x0490040b05020d0d, 0x3d060e0978070e0a, 0x21040b092f050e09, 0x7cd3ff091c800409, 0x04bbeeace9ffb970, 0x3af48249ff092a88, 0x386f043c80f502ff, 0xd0ffbd394280ff09, 0x040958000cbdd6a0, 0x3d08a068ff094a66, 0x202197ff09539005, 0x040bbc7ddc37ffbd, 0x39ff09650009096a, 0xba516f88ff3cb0be, 0x971aabff09738804, 0x00023bffedb9ffbb, 0x7b0409a0000d09c0, 0x29ff098d01120992, 0xbaf5efe6ff3c3409, 0x121e13ff099b9305, 0x8f053c7ea104ff3d, 0x3dff09ad010709b2, 0x3bf41de4ffbc8df4, 0x581ab8ff09bb0111, 0x8f0439f065bfffbc, 0x080e09d68d0409e4, 0xffbcadfbebff09d1, 0x09df030b3bbcc4f4, 0x7a25ff3d336e20ff, 0x930509f601113cf1, 0xffbc2ba51fff09f1, 0x09ff000d3c64f8c4, 0x3410ffbd973f33ff, 0x070b0a8b9205bcff, 0xa2040a30c0040a47, 0xbeff0a1d00070a22, 0xbb96280cff3c3724, 0x468818ff0a2ba304, 0x0009ba6499dcffbd, 0x58ff0a3d91050a42, 0xbd78ce48ffbca14e, 0x6ba704be025750ff, 0x5899040a5d0a0b0a, 0x63ffbcc6e4c1ff0a, 0xff0a660002bd5a33, 0xd3a0ceffbc2fa89a, 0x78070e0a7d01083b, 0xf7ffbc45bc67ff0a, 0xff0a86070e3b1b27, 0x501997ff3cd4b1b3, 0xaa91040ac19504bb, 0x8a80ff0a9c000e0a, 0xa0ff0aa5010b3b92, 0x3d4589d4ff3cdc41, 0xba8c40ff0ab39404, 0x0d04ff0abc0007bc, 0x0e3c6744c0ff3d03, 0x0b0ad701120ae502, 0x3c05aeb0ff0ad201, 0xe00009bc28e9fbff, 0x7dff3d3da136ff0a, 0x050af7070ebaa68c, 0xbc305570ff0af294, 0x00010bbade7fa2ff, 0xe8ffbbcef856ff0b, 0x040c2500113ba6c4, 0x0e0b55070d0b99bf, 0x0e0b27020e0b3508, 0xb424a7ccff0b2201, 0x30b704bbe4fbdaff, 0x14ff3b4b816dff0b, 0x0c0b47090ebbbdfb, 0x3d33772cff0b4200, 0x500d0e3dd82b8fff, 0x63ff3c4d8c38ff0b, 0x020b79b804bb9768, 0xff0b66010c0b6b00, 0xa82c48ffbb8be0df, 0xd8c8ff0b74000cbd, 0x0b3c8949e8ff3a48, 0xff0b86010c0b8b03, 0x068246ff3b8d028a, 0x651bff0b9491053d, 0x043c7bb74fff3d26, 0x040bc1000c0be1c1, 0xff0bae00020bb3c0, 0x694584ffbcef8ecf, 0x82bbff0bbc0002bc, 0x023b8e64b4ffbc1b, 0xff0bce070d0bd300, 0xfa7acdffbd33281f, 0x0cf5ff0bdc070e3c, 0x0ebb59132affbd0c, 0x070bf7050e0c0506, 0xbb0fb99eff0bf200, 0x00c7043b6ab704ff, 0xe9ffbccc047aff0c, 0x090c17c804bb2f58, 0x3b95f981ff0c1201, 0x20c904bc140264ff, 0x14ffbbebf622ff0c, 0x0b0cb58e053a454e, 0x040c51060d0c7113, 0xff0c3e9a040c439c, 0xa54680ffba797ba7, 0xfdb5ff0c4c0b0bbc, 0x0ebb87cb31ff39c3, 0xff0c5ea6040c630a, 0xebd735ff3c2e0f50, 0xb530ff0c6c0007bb, 0x0e3ba444e5ff3d03, 0x0e0c87bb040c950b, 0x3b33dc0bff0c8205, 0x90c4043c93aa1aff, 0x34ffbbc958abff0c, 0x040ca7060d3c4713, 0xbc7f28c2ff0ca2be, 0xb00d0e3b213f79ff, 0xd2ff3ca21686ff0c, 0x050cfdca043db8a6, 0x040ccf00020cdd92, 0xba3390f9ff0ccabd, 0xd8080e3bce7eb0ff, 0xfeff3a98f462ff0c, 0x040cef0109bb408c, 0xba19ec18ff0ceac8, 0xf8050b3c18c566ff, 0x41ffbb45b5dcff0c, 0x0d0d2100073af657, 0xff0d0e080e0d1306, 0xa9e8e5ff3c4f186a, 0xcd5cff0d1c040eba, 0x0ebd1f66a5ff3b60, 0xff0d2e060e0d3308, 0x4a6a2dffbc326680, 0xc63bff0d3c060d3d, 0x0c3c74848affbc34, 0x0e0e651d0e0f8101, 0x040d95bf040dd916, 0x020d67070d0d75bb, 0xbb9c2a56ff0d6200, 0x70000f3b8abda5ff, 0xcdff3d648409ff0d, 0x020d878e05bccf21, 0x3d428600ff0d8200, 0x90000dbc27fea8ff, 0xb4ff3cdb0fdaff0d, 0x090db9c104bc8698, 0xff0da6c0040dab00, 0x4f571cff3bf8bb21, 0xb4ccff0db4100e3d, 0x04bc3cfc76ff3d0b, 0xff0dc601110dcbc2, 0x940b14ff3c68a872, 0x50bbff0dd40e0bbd, 0x053aea4ba3ffbadd, 0x040e0100090e218e, 0xff0dee060d0df3cc, 0xb21446ffba8795e6, 0xedb7ff0dfc00083b, 0x0ebc9ab928ffb8e5, 0xff0e0e030b0e1317, 0xa464a4ffbd80cda9, 0x7692ff0e1c1b0ebc, 0x04bd063c9fff3bdb, 0x0d0e3795040e4597, 0xbc464df2ff0e3200, 0x40010b3ced0a25ff, 0x94ffbb1f12a8ff0e, 0x050e57ae043dda4d, 0x3b924e15ff0e528f, 0x60180ebb97805fff, 0x00ffbb221356ff0e, 0x080ef500023a9d81, 0x040e91020d0eb100, 0xff0e7eb2040e83cd, 0x497ab9ff3c65c892, 0x2390ff0e8c9505ba, 0x0e3d927590ff3dac, 0xff0e9e230e0ea324, 0xa3632aff3a59ff0e, 0xa936ff0eac2a0e3d, 0x053b21ae5effbc20, 0x040ec7020d0ed594, 0xbd8387dfff0ec2b7, 0xd093053c5830c5ff, 0x5dffbaffa1f4ff0e, 0x0b0ee7000c3cca06, 0xbb61a686ff0ee20b, 0xf0020dbcb20354ff, 0xc2ffbc8bdffaff0e, 0x040f3db504bd56de, 0x090f0fb1040f1db4, 0x36f61f9bff0f0a00, 0x189105bd2ffd7fff, 0xf0ff3bcdb98fff0f, 0x0e0f2f230e3d8c03, 0xbca78411ff0f2a22, 0x382a0ebdecaf3fff, 0x90ffb8dcca49ff0f, 0x0e0f61bf04bd1b8e, 0xff0f4e00070f5322, 0x5f55c3ffbbdac7db, 0x79c1ff0f5c060d3c, 0x0fbc8463f6ff3bf3, 0xff0f6e1f0e0f7300, 0x26b36bff3d00dfb0, 0xc7dcff0f7c000cbb, 0x043aebc03cffb9fd, 0x040fdf0011106bc5, 0x0b0f9f140e0fbfc3, 0x3c3ca5b8ff0f9a02, 0xb1c2043d05e435ff, 0xbf4bff0fac010b0f, 0x0b3be8a485ffbb26, 0xb9215200ff0fba01, 0xda150ebc82982fff, 0xd000020fd5140e0f, 0xcdffbd92015aff0f, 0x3d3bddcbffbbcf13, 0x27c304bdb6baf8ff, 0xf9190e1007060d10, 0xd5d5ff0ff492050f, 0x0ebd2ae0f8ff3b11, 0xbc0c169eff10021f, 0x190002b910fd76ff, 0xf6d0ff10148f0510, 0x0e3b001060ffbc7c, 0x3dbe9ea6ff102217, 0x4b8f053cd66b30ff, 0x380008103d030b10, 0x28ff3be18922ff10, 0xff10468e05bd2331, 0xd61425ff3d6f1125, 0x58060d105d1d0e3c, 0x94ff3b0db5ecff10, 0xff106601113d2382, 0x125220ffbd7244af, 0x9c001210e0c804bb, 0x89170e1097900510, 0x3915ff1084000910, 0x0ebd016308ff3d50, 0xbb02004bff109219, 0xbb26ff3d0cc3afff, 0x000910c0170ebd43, 0xfdff10ad8f0510b2, 0xbc65953cffbd2834, 0x90deb6ff10bbc704, 0x190ebcbab200ff3a, 0xa0ff10cd030b10d2, 0x3d1edb1cff3c1c75, 0xadfd32ff10db220e, 0xcc043bb1b6e0ffbc, 0x00121108060d1128, 0xf3ff10f58f0510fa, 0x3d65e3fbff3d299c, 0x7ec4b9ff11030112, 0x180ebbcb717dff3b, 0xc7ff1115140e111a, 0xbcdc2278ff3c2b7f, 0x229fc7ff1123cb04, 0x8e05bc276a82ff3c, 0x1d0e113ecd04114c, 0xffbb928fa6ff1139, 0x11470002bcc06dc7, 0x0e35ff3c3b9846ff, 0x0008115e8f05bd12, 0xffbaf12387ff1159, 0x1167220e3d013bb4, 0xe2faff3a51f317ff, 0x000800000013bb7b, 0x0001000003e80000, 0x0000000011d80000, 0x160e08f78d050000, 0x98040248c304047b, 0x900400a09704012c, 0x8604003c8804005c, 0x8fff00298805002e, 0xba0beb27ff380847, 0x1b9388ff00370305, 0x010c3ab53520ff3d, 0xd7ff00496905004e, 0xbb05dde6ffb905e6, 0x23a02dff0057060d, 0x91043b5a1374ffbb, 0x060e0072060d0080, 0xffbba8a94fff006d, 0x007b0d0e3b56a781, 0xc389ffbc9cb077ff, 0x2c0300920c0e3bf5, 0xffbd66d21dff008d, 0x009b0d0e3a011862, 0xb288ff3c30b619ff, 0x020d00e80c0bbb95, 0x080e00ba060600c8, 0xffbe08227cff00b5, 0x00c3090ebc6ca68e, 0x02f7ffbabd5d04ff, 0x020700da02093d02, 0xff3b8eec7cff00d5, 0x00e3070ebb7625d2, 0xbbf9ffbcbcd100ff, 0x5905010c0d0ebb42, 0x1fff00f9001200fe, 0xbb141322ffbcf53c, 0x7524e4ff01070108, 0x3a013cae56f7ff3a, 0xf0ff01190007011e, 0xbd08f259ffbd8024, 0xfe469aff0127060d, 0x9c04bca6a3fdffbb, 0x99040178000201bc, 0x0b0b014a130b0158, 0xff3b90845fff0145, 0x0153070ebd0be5a7, 0xe702ff3d10c610ff, 0x090e016a0a0e3bb8, 0xffbc01dcd2ff0165, 0x01730d0e3d00946c, 0xbc21ffbd1c83feff, 0x4505019c00063aa7, 0x32ff01890012018e, 0x3d4230afff3c72b8, 0x70f893ff01970008, 0x02063c4b3f24ff3b, 0x8bff01a9011101ae, 0xbe1f9bd6ffbd6126, 0x8852eaff01b70111, 0x110b3bb758b4ffbb, 0x100601e4000d0204, 0xb9ff01d1000c01d6, 0x3c0bb100ffbc1d89, 0x774dccff01df010e, 0x100bbca688ebffbb, 0x43ff01f10d0b01f6, 0x3a533806ffb9a1e1, 0x220102ff01ff0012, 0xa204bb98b8e9ffbd, 0x140b021a9e040228, 0xff3cd3b757ff0215, 0x02239f04bc9fe6f3, 0x1ad8ff3cd44b19ff, 0x070d023a670539bb, 0xff3aa4cc2fff0235, 0x0243060d3cbf2477, 0x43adffbb98ad80ff, 0x070b035f0b0b3b5b, 0xc4040298060e02dc, 0x0207026a01110278, 0xffbc09ca42ff0265, 0x02730f06bcad6171, 0xf84cffbd19b534ff, 0x040d028a1106bda4, 0xff3b84b8bfff0285, 0x0293000c3d1b9ed8, 0xf520ff3a9b91b9ff, 0x470502bc120ebb8d, 0x4dff02a90e0e02ae, 0xbc432c5dff3b7322, 0xc3ed8cff02b7000d, 0x00073c5319e4ffba, 0x22ff02c9290502ce, 0xbb4cfcd7ff3cea2f, 0x33a0acff02d7010c, 0x090bbd024885ffbc, 0x000902fb0108031b, 0xeeff02f1000802f6, 0xbd9186faffbe0133, 0x0d010cbb7af600ff, 0x4b00ff0308020803, 0x073c26e924ffba90, 0xbd0b3f48ff031600, 0x3f0009bc120af4ff, 0x2c010c03310e0e03, 0xa0ffbad7703fff03, 0xff033a070d3b1e62, 0x1b92d1ff3ba2c47d, 0x4c89050351c804bd, 0x2affbc25a0efff03, 0xff035a02093b2d8e, 0x75f27dffbd39a88c, 0xab0b0e03efc904bc, 0x7dc804038b001203, 0xe73dff0378070e03, 0x053c84682dffbb43, 0xbd0e02f5ff038686, 0x9d130bbc08e8a3ff, 0x5cebff0398011203, 0x0739564c2cffbd8c, 0x3904c8a7ff03a601, 0xcf0d0e3c10b604ff, 0xbc000c03c1020803, 0xc2ffbb03a2d2ff03, 0xff03ca3405bc85f1, 0xb5e9a6ffbd2d364e, 0xdc000903e10e0b3b, 0xdbffbd880ee5ff03, 0xff03ea00023c5175, 0x455f5effbb5575a8, 0x1716060437060d3c, 0x0401070409000204, 0xcdff3c2c8700ff04, 0xff0412cb04bb9bfb, 0xa8dd71ffbd09060f, 0x24170604290c0bbb, 0x03ffbd2dfdbaff04, 0xff0432cc043b8dc4, 0xc9a031ff3b84260f, 0x4d0002045b080ebb, 0x8ee5ff0448880504, 0x05bca9fc68ff3ccb, 0xbce0ff36ff04568a, 0x6d00113c679994ff, 0xbed6ff0468140b04, 0x073bf33d3effbcb0, 0xbd7d7a99ff047600, 0xbb57053ce31709ff, 0x13ab04059faf0406, 0xaf420504cfa00405, 0x9c8e0404a1370504, 0x90ff381dab82ff04, 0xff04aa38053b200c, 0x48d191ffbc6f7dfc, 0xbc100b04c1210eba, 0x2effba575c9cff04, 0xff04ca060dbb9257, 0x750770ff39aca523, 0xe5a70404f3001239, 0x4793ff04e01c0e04, 0x04bca5d866ff3ac7, 0x3c93a5fbff04eeaa, 0x05a504bce287b8ff, 0xeac4ff0500210e05, 0x0e3b037609ff3c89, 0x3a599bd9ff050e2a, 0x5b220ebb823bf0ff, 0x2d190e053b340305, 0x3af4ff0528010805, 0x043d148360ff3e63, 0xbdb97950ff0536ad, 0x4dad04bbe8d303ff, 0x2f2cff0548060d05, 0x123b91b87fffbc80, 0xbc6ca24bff055600, 0x7f130b3bd2834dff, 0x6c060d05712b0e05, 0xc1ffbaa0dca9ff05, 0xff057a060d3c7cb0, 0x4dd4bfffbb1eb543, 0x8c02070591010cbd, 0x09ffbc01e9dcff05, 0xff059a00023cf098, 0x602074ff3b39c749, 0xeb0208062f55053d, 0xbd320305cb540505, 0x8892ff05b8b40405, 0x05bbe8614aff3c10, 0x3a78c670ff05c64f, 0xdd0112ba0e656cff, 0x85e6ff05d8b70405, 0x0f3d435b34ffbb8c, 0x3c33a367ff05e600, 0x0f2f0ebc1acb2bff, 0xfc270e0601001106, 0xfcffbc0c491bff05, 0xff060a030d3b8a0b, 0x31e0b4ffbb9004ce, 0x1c300e0621c8043b, 0xaeffbc9ddadeff06, 0xff062a00123a3417, 0x03a178ffbcd5c71d, 0x571d0e067756053c, 0x4400120649190e06, 0x41ffbc37722aff06, 0xff0652bd04bd32b7, 0xde3390ffbd3bceae, 0x64030b06690012bd, 0xc4ff3bd0c53bff06, 0xff0672220ebcf29d, 0xefd428ff3d26b7c4, 0x8d0002069b280ebb, 0x91a4ff0688b00406, 0x123cfdfbaeffbcd8, 0x3c177741ff069600, 0xad060dbc5b6f94ff, 0xd4b3ff06a82b0e06, 0x07bb4e06a6ffbcc0, 0xbc157bb1ff06b600, 0xdb01073cbb174bff, 0x0b0007074f870507, 0xdd020806ebbb0407, 0x8d28ff06d8010b06, 0x0438febea9ffbad4, 0x3ac593b5ff06e6ab, 0xfd7505bbcce101ff, 0x5b0dff06f8220e06, 0x0ebb9124f1ffbc08, 0xbc97c7eaff070618, 0x2f86053a050d79ff, 0x1c00080721020d07, 0xfbffbabc70dcff07, 0xff072a1c0e3c5f60, 0xed8433ff3b1a2987, 0x3ccb0407411f0eb9, 0xdeffbaeaa177ff07, 0xff074aca043d9427, 0xb33412ff3b84182b, 0x77130b07970208bc, 0x64000f0769cd0407, 0xd4ffba89f4a0ff07, 0xff07720007393d84, 0xf09193ff3b93207a, 0x84ca0407898905bb, 0x7affbb6c3865ff07, 0xff0792180e3c7d65, 0x902376ffbb7f5dd8, 0xad000f07bbbf043b, 0x9a59ff07a8000707, 0x0dbc0f6480ff3d76, 0x3aba4cf0ff07b606, 0xcd2b0e3ce42aaaff, 0x178bff07c8000f07, 0x05bb468a15ffbcda, 0xbc48c002ff07d689, 0x6b02073cdbdb7dff, 0x07170e0827100b08, 0xf4000d07f9010c08, 0x16ff3d54d795ff07, 0xff080200083ba27d, 0x830821ffbbc793a3, 0x142b0e08195f053b, 0xe5ff3b8ca34eff08, 0xff08220006bbb483, 0xd78c0dffba88a9ab, 0x3d5f05084b8205bb, 0xdab1ff0838c40408, 0x043c83da2dff3af0, 0xbbc54437ff0846c6, 0x5d830539bc7195ff, 0x9e2cff0858010c08, 0x023d358f54ff3bfb, 0x3bbe0a8aff086600, 0xb3c304bbe7b41cff, 0x8566050893c20408, 0x8873ff0880630508, 0x0cbb949711ff3a5f, 0x395f8938ff088e00, 0xa5060d3a96c7b8ff, 0xb68aff08a00f0b08, 0x0ebd3de963ffbbc3, 0xbbbf11f0ff08ae1d, 0xd75d053d4e5f65ff, 0xc4590508c95b0508, 0xbfff3bb947e1ff08, 0xff08d20b0b3d138d, 0x00ad76ff3b99e647, 0xe42a0e08e96005bd, 0xc3ffbc8dee21ff08, 0xff08f262053d0598, 0x110589ffbc9f2dbe, 0x20030d0d5c0e0e39, 0x93070b0a1fb8040b, 0x2f0009094f020b09, 0x1cb3040921020d09, 0xa5ff3987b6b4ff09, 0xff092a8e05bc831c, 0x12b2f5ff3bfe1b00, 0x3c010b0941a704bd, 0x95ffbc69d68aff09, 0xff094ab5043c0683, 0xd9ab00ffbd093fb7, 0x65400409734b04bb, 0xf9e8ff09608f0509, 0x053d06ed88ff3c08, 0xbb01808dff096e8f, 0x859605bd1da38cff, 0xea36ff0980000d09, 0x043a2d0901ff3ba0, 0xbc242800ff098ea7, 0xdb020e3cbb2f00ff, 0xad960409bb980409, 0x760fff09a80a0b09, 0x083ade456dff3ca6, 0xbd4973d8ff09b600, 0xcd0112bd899780ff, 0x346eff09c8950509, 0x0e3b02fc76ffbd19, 0x3bcf39ebff09d601, 0xff070e3ddc5544ff, 0xec700409f1910409, 0xeeffbcf7f4e6ff09, 0xff09fa00093c5fcd, 0x30124dffbc5f0a05, 0x0c8e050a1177043c, 0x08ff3c1a0d08ff0a, 0xff0a1aac043d8116, 0xec0c75ffbb02c5a4, 0x6b96050a9d000c3b, 0x3d01110a4b030b0a, 0x7050ff0a3895050a, 0x07bb7b50b8ffbb2a, 0xbbadff80ff0a4602, 0x5d0107bc083000ff, 0x050fff0a5801120a, 0x07bce181a0ffbc99, 0xbc840b3cff0a6602, 0x8f0007bc9995d6ff, 0x7c030b0a8101110a, 0xd4ffbd030c94ff0a, 0xff0a8a030bbcc333, 0xf81260ffbc8360a0, 0xb94cff0a980112bc, 0x04bc8bf3a0ffbbd7, 0x0b0abc080e0adcbb, 0xff0ab200020ab703, 0x4b3533ff3cd27ce0, 0xb9043b45c100ff3d, 0xa0ff0ac900020ace, 0xbc897238ff3cf8dc, 0xbb05d7ff0ad7030b, 0x96053adfa200ff3c, 0x00090af200020b00, 0xff3b0f9e80ff0aed, 0x0afb01093c8b03df, 0xbb32ff3a3c8196ff, 0x00070b120009bc5a, 0xff3cac4846ff0b0d, 0x0b1b020b3b557733, 0x9488ffbc28b3e6ff, 0x8f050c4001093c19, 0x02070b70020b0bb4, 0x010b0b42010c0b50, 0xffbaa64411ff0b3d, 0x0b4b8e05bba3b15a, 0xad1cff3c3d8fd5ff, 0x01120b629104bc95, 0xffbb2df774ff0b5d, 0x0b6bbb04be25e11a, 0xae31ffbb73ff00ff, 0x0d0e0b940112bc8d, 0xd2ff0b810b0e0b86, 0x3b280b38ffb98c88, 0x85241aff0b8f140b, 0xb3043c10a872ffbb, 0x6cff0ba1070b0ba6, 0xbbd938a0ff3b44eb, 0x672820ff0bafc004, 0x070ebbfdc768ff3c, 0xb7040bdc050e0bfc, 0xf8ff0bc9000f0bce, 0xba828050ff3a9779, 0x0e311dff0bd70012, 0x060e3b8cda85ffbb, 0x99ff0be9a6040bee, 0xbc767b36ff3c4535, 0x42528eff0bf70112, 0x90053bf497dfff3b, 0xb9040c12bb040c20, 0xff3b002532ff0c0d, 0x0c1b0a0ebca128ad, 0x8046ff3cbf0cebff, 0x00020c3291053b47, 0xff3b1a5508ff0c2d, 0x0c3b0b0ebbeed1c7, 0x2675ffbb364e66ff, 0x0b0e0cd0060d3ab6, 0x060e0c6c070e0c8c, 0x4fff0c59030b0c5e, 0x3ad01b35ffbb014a, 0x11e560ff0c67000f, 0x000cbbdfe9fbffbd, 0x84ff0c79070b0c7e, 0x3bd16511ffbbb2d0, 0xa97115ff0c870209, 0x000f3b528bd2ff3c, 0x00020ca20d0e0cb0, 0xff3cc6e8b7ff0c9d, 0x0cab9305bd91705c, 0xf943ff3be70cb3ff, 0x070b0cc2010cbce1, 0xff3bb193d7ff0cbd, 0x0ccb0d0ebab78c1b, 0x0156ffbd0ca783ff, 0x010e0d18070bbb82, 0x010c0cea02090cf8, 0xff3b005499ff0ce5, 0x0cf3000e3c55a3f0, 0x9ee1ffba2a8eb1ff, 0xbf040d0a0002bc23, 0xff3c0a8744ff0d05, 0x0d13030bbc2ff62a, 0xaa18ffbc2c53f5ff, 0x00110d3c010ebd15, 0xb5ff0d29070d0d2e, 0x3c2c3c2fffbb0f5c, 0xa2885fff0d37b304, 0x00113c6dafdfff3b, 0x9bff0d4990050d4e, 0x3ae9b97cffbc025e, 0x538878ff0d57c204, 0x010cbcf56262ffbc, 0x160e0e801d0e0f9c, 0x00090db0bd040df4, 0x070d0d82bb040d90, 0xff38f6be89ff0d7d, 0x0d8b000d3d4daa09, 0xad65ff3cc527daff, 0x8e050da2bb04bcb5, 0xffbc85fa71ff0d9d, 0x0dab000f3bada2c5, 0xf814ff3d760cacff, 0xc2040dd4000c3bf1, 0x23ff0dc190050dc6, 0x3c6886b9ffba34ec, 0x0f0b0dff0dcfc604, 0x010737f2d45affbc, 0x88ff0de100080de6, 0x3c9f958fff3b181e, 0xc4dbb7ff0def8e05, 0x8e05bc9298a3ff3c, 0xb5040e1cbf040e3c, 0x5bff0e0901090e0e, 0xbda2af00ffbb57b1, 0xd82b51ff0e17b804, 0xc0043b24f646ff3c, 0xe6ff0e2900090e2e, 0x3ad73ba8ffbd0132, 0xc72d5fff0e37060d, 0x98043b6bbf70ffbb, 0x000c0e52190e0e60, 0xff3c6d2586ff0e4d, 0x0e5b6f043dc47904, 0xd176ffbcce80e0ff, 0x070b0e72020dbbd2, 0xff3b6c6046ff0e6d, 0x0e7b0208bbdca581, 0x96d9ff3928418fff, 0x00080f100002bb53, 0xcd040eac020d0ecc, 0xe6ff0e9991050e9e, 0x3b847d87ffbb5a9e, 0x9aecd0ff0ea79505, 0x00073d83d038ff3d, 0xe8ff0eb9000c0ebe, 0xbb600caeff3a4dca, 0xd43ef0ff0ec7cd04, 0x94053c6526eaff39, 0xc7040ee2020d0ef0, 0xff3cd2f4e1ff0edd, 0x0eeb220ebab9a303, 0x149cffbc749fefff, 0x0b0b0f02000c3b04, 0xffbb4b15c6ff0efd, 0x0f0bc904bca03634, 0xd3f2ff3b809fc0ff, 0xb3040f58b504bd28, 0x1f0e0f2ab1040f38, 0xffbd13b5a8ff0f25, 0x0f33000f3a5fcbc9, 0xc6e4ff3d23e84cff, 0x220e0f4a230e3a48, 0xffbc81d2d1ff0f45, 0x0f532a0ebdd5041f, 0x0050ffb8c6b192ff, 0x220e0f7cbf04bd0c, 0x01ff0f6900070f6e, 0x3c49005affbbc4e7, 0xdb81dcff0f77080b, 0x00093c854214ff3a, 0x3fff0f89060d0f8e, 0xbacabab7ff3a74c1, 0x2854dbff0f971f0e, 0x1c0ebbafcd20ff3c, 0xca041030cb0410bc, 0x0b0b0fccc6040fec, 0xd3ff0fb900070fbe, 0xbc78385fff3ad83f, 0x998860ff0fc7c504, 0x060dbd08fc96ffbb, 0x6dff0fd9070b0fde, 0x3c8b90acffbb470d, 0x0b3645ff0fe70011, 0x0002bc991fbbff3b, 0x010b1002180e1010, 0xff3ccb25a0ff0ffd, 0x100b060dbcb667df, 0x0b68ff3d9566acff, 0x00071022170e3c23, 0xffbcb5554aff101d, 0x102b00123c657230, 0x31e0ff3d29a8f2ff, 0x170e10780009bd91, 0xcd04104a140e1058, 0xff3c9ef20eff1045, 0x105390053a185fb3, 0xf968ffbb12e04eff, 0x180e106a0002bced, 0xff3d3952abff1065, 0x1073cc043c8354d7, 0x3df7ff3c924f9aff, 0x9005109c0002bac1, 0x8dff1089170e108e, 0xbc7096e9ff3cbdde, 0x545ab1ff1097060d, 0x0109bd145002ffbc, 0xe5ff10a9cd0410ae, 0x3d4d82ccff3b4115, 0xf0438dff10b7050b, 0x0008bc4a6f82ff3b, 0x90051108cd04114c, 0x000210da011210e8, 0xffbb4084d7ff10d5, 0x10e31d0e3ba3ce43, 0x43e5ff3c0098ddff, 0x030b10fa9205bd02, 0xff3b9c49a8ff10f5, 0x11031f0ebc84acaa, 0x549fffbc3e448bff, 0x280e112c060d3c35, 0xfdff11191d0e111e, 0x3d587c7bff3ba053, 0xc93ae2ff11270009, 0x00023cab9e13ffbb, 0x68ff11399105113e, 0xbb90d07bff3c1026, 0xc1b1c8ff11471f0e, 0x060dbcbb8b13ff3b, 0x220e117400021194, 0x1fff116190051166, 0xbda4b800ffbd3d7e, 0x4fd178ff116f0007, 0x230ebc8a5a32ff3c, 0x11ff118192051186, 0x3e049632ff3cc9a7, 0x14baecff118f2b0e, 0x230e3cf8a4cdffbd, 0x910511aa000211b8, 0xff3bc1f525ff11a5, 0x11b3220ebcb08bd6, 0x1c25ff3d212a64ff, 0xcd0411ca260ebddf, 0xffbd3e7406ff11c5, 0x11d32c0e3dbfdbd1, 0xa96cffbd11c14fff, 0x000800000013bc03, 0x0001000003e80000, 0x0000000011750000, 0x160e08f78d050000, 0x98040248c304047b, 0x900400a09704012c, 0x8604003c8804005c, 0x3bff00298805002e, 0xb9fbdb32ff37f544, 0x95e646ff00370d0e, 0x010cbbdd850dff3b, 0x74ff00496905004e, 0xbaf0f5f0ffb8f109, 0x13434bff0057060d, 0x91043b4444e6ffbb, 0x00090072060d0080, 0xff3ae4ccf3ff006d, 0x007b0b0ebc0a32a7, 0xbcafffbc00102dff, 0x000d0092030bbccf, 0xffbd4180deff008d, 0x009b070ebb107b8b, 0x316dff3bbb834cff, 0x010800e8000fba80, 0x000700ba630500c8, 0xff3d6dfcc7ff00b5, 0x00c302073c92066f, 0xd5ddff3b4799eaff, 0x0b0600da0002bd93, 0xffbd405a8cff00d5, 0x00e3000c3ba3617c, 0xcc96ff3ca356a2ff, 0x040e010c070e3a28, 0xe1ff00f9011100fe, 0xbd3ace59ffbb83c1, 0x2e43fbff01074505, 0x080e3ccdcc35ffbc, 0x72ff01190009011e, 0x3c14051dffbcbc96, 0x1fa5c5ff0127060d, 0x0002bbdea90eff3c, 0x050e01789c0401bc, 0x0906014a47050158, 0xffbcc70c4dff0145, 0x01530009baa8a138, 0x53cbff3cc3438aff, 0x0012016a060ebc18, 0xffbd84e490ff0165, 0x01739b043b96abed, 0x3fb3ffbb389825ff, 0x0012019cb604bca1, 0x04ff0189110b018e, 0x3b128398ffbb57e1, 0xb600feff01978605, 0x77053a363199ff3b, 0xd5ff01a90b0601ae, 0x3a4bfc73ffbc8f57, 0xc5209fff01b7080e, 0x070d3b325904ffbb, 0xad0401e4be040204, 0x63ff01d19c0401d6, 0xbb60af7fff3baab0, 0xb14b75ff01df0008, 0x010b3a37e756ffba, 0x29ff01f1020e01f6, 0xbca17f13ff3b66a7, 0x17f40bff01ff020d, 0x00073b4777e8ffbb, 0x0009021a030e0228, 0xff3d5d88f1ff0215, 0x0223070ebcd076c4, 0x9aadffbd7a36dcff, 0x0a0b023a0e0ebc06, 0xff3b7f385cff0235, 0x0243130e3cabdc42, 0x13cfffbde11d21ff, 0x88050368120ebc83, 0x7f050298860502dc, 0x0002026a02070278, 0xffbb300253ff0265, 0x0273001239a84445, 0xcfc9ffbbece9dbff, 0x070e028a8105b9a5, 0xffbc11e2caff0285, 0x0293070b3c247bb3, 0x48ddff3c2fd7e3ff, 0xc60402bc0007bbf9, 0x79ff02a9020902ae, 0x3b3d137effbc7fa4, 0xe66d8bff02b70002, 0xc504bbd18252ff3c, 0xc1ff02c9020702ce, 0x3c17371eff3a8bb8, 0xcd604cff02d7c604, 0x8905ba88e2cfffbc, 0x060d030400020324, 0xdfff02f1000902f6, 0x3bf0406aff3d4973, 0x12a83fff02ff070e, 0x02073b820b13ff3d, 0x61ff031101080316, 0xbbfd6449ffbce7ff, 0x069d87ff031fc404, 0x01073b6fa220ffbd, 0x0008033acb040348, 0xffbbb7e3e3ff0335, 0x0343010c3b72106b, 0xbbceff394630c2ff, 0xc804035a0012bd1b, 0xff3bbfb7abff0355, 0x0363060dbbc22ef1, 0x2f85ff3a1cc4caff, 0x8a0503f8130b3c3a, 0x0b0b0394c90403b4, 0x05ff0381090b0386, 0x3af20b0dffbc2fd2, 0xc2e923ff038f070d, 0x00023a6bb171ffbd, 0xd6ff03a1030b03a6, 0x3c626463ff3d8323, 0x2aa076ff03af0b0b, 0x00023d352cb2ffbc, 0xc50403ca000703d8, 0xffbdc0bb16ff03c5, 0x03d3070d3c53b744, 0x3440ffbe3fa3c8ff, 0xc50403eacb04bce5, 0xffbc8ba586ff03e5, 0x03f38b053b3d1c25, 0xbe07ffbc00d3d7ff, 0xc50404400109bd37, 0x0011041201070420, 0xff3cde5f2dff040d, 0x041b83053da23cc9, 0x3716ff3ceaa06cff, 0x890504320002bdb0, 0xff3b9a58ddff042d, 0x043b0108bdcf3ac4, 0x86c9ff3c975addff, 0x060d045bc504bb4b, 0x25ff045102090456, 0xbd35607bffbcc7a0, 0x6dc804bd90dbdcff, 0x29c7ff0468880504, 0x0c3ca17805ffbb60, 0xba9ce1c0ff047600, 0xbb5705bd278a76ff, 0x13ab04059faf0406, 0xaf9e0404cf090605, 0x9c980404a19a0404, 0xb4ffb8c86c1fff04, 0xff04aa01073a3667, 0x1cfa8fff3a6153fe, 0xbc530504c1300e3b, 0x80ff3b05e1f3ff04, 0xff04ca0112bbfd24, 0x2b88d5ffbc4d6d30, 0xe5750404f340013a, 0x8307ff04e03b0104, 0x05bc4505e5ff3abf, 0x3b94f065ff04ee10, 0x05280ebd12a5aaff, 0xe076ff0500010705, 0x0b3be005a1ffbb27, 0xba7813c0ff050e03, 0x5b020dbc841d19ff, 0x2dae04053b340e05, 0xb5f5ff0528000c05, 0x053c321e3fffbb8e, 0x3dbbd012ff053634, 0x4d06063c4cec28ff, 0x5c6dff0548030605, 0x0cbcefa6a6ff3ab3, 0xbde2adf1ff055600, 0x7f0b0bbcedc584ff, 0x6c000c0571030d05, 0x1fffbda67177ff05, 0xff057aac04be0945, 0x6fd83cff3bde8432, 0x8c120b05910006bb, 0x3bffbc9b6951ff05, 0xff059aad043ba4c9, 0x814a17ffbce9c431, 0xeb330e062fc7043c, 0xbd1c0505cb290305, 0x6adfff05b8090605, 0x05bd922074ff3d10, 0xbd72bc85ff05c61f, 0xdd070dbb9699d8ff, 0xaf54ff05d82b0305, 0x0e3ad353b9ffbd18, 0x3c609e81ff05e623, 0x0fbe04bcb4ac46ff, 0xfc020706013f0106, 0xefff3a130407ff05, 0xff060a070bbbbbca, 0x7b86c6ffbb87109b, 0x1c350e0621000fbc, 0x49ff3b78290dff06, 0xff062ac204bc954a, 0x19d43eff3b8dd862, 0x57130506770108bc, 0x44010c0649020d06, 0xacffbca0f05aff06, 0xff0652010c3d2c1b, 0x079c9dffbc23c90a, 0x64000206690b0bbd, 0x95ff3c2cb401ff06, 0xff0672070dba2671, 0x5ba093ffbb63b824, 0x8d000c069b0207bd, 0xce1dff0688280306, 0x04bbe801a0ffbdf6, 0xbc225656ff0696c8, 0xadc8043c264368ff, 0x710eff06a8070d06, 0x053cb5b0e7ffbcce, 0xbca1e0c1ff06b62b, 0xdb01073c2c8612ff, 0x0b0007074f870507, 0xdd020806ebbb0407, 0x4baeff06d8010b06, 0x0238e5433bffbabf, 0xbb854082ff06e600, 0xfd75053b55d5e3ff, 0x70b4ff06f8220e06, 0x0bbb82a15cffbbf5, 0xbbf15fa0ff070608, 0x2f86053a14dd9cff, 0x1c090b0721b50407, 0xfcffb6fa4e78ff07, 0xff072a02083a89ed, 0x0f023aff3b34cf71, 0x3cca0407411f0ebb, 0x3affbae81a1dff07, 0xff074a040d3d5472, 0x06ee6dff3c9958ac, 0x7700080797cc0439, 0x64cb0407698c0507, 0x22ff3a1904a3ff07, 0xff0772060dbb96b1, 0xd9e2adffbb1e6d14, 0x84bf040789010cba, 0x70ff3aef6f8aff07, 0xff0792180e39b6cf, 0x6bc0c3ffbc2f2a3c, 0xad000707bb190e3c, 0x8d57ff07a8890507, 0x0ebbfc9b36ff3d5a, 0xb87ce8baff07b618, 0xcd000fbd06ee9dff, 0x2279ff07c8010807, 0x0ebd0604d5ff3d01, 0x3ca5d929ff07d622, 0x6b0207ba83dcc3ff, 0x07b7040827c10408, 0xf4060d07f9230e08, 0xd6ff38902471ff07, 0xff0802280e3b85f2, 0x2c196dffbc837881, 0x1400110819b804ba, 0xb9ffbc5d9468ff08, 0xff0822000f3c85f4, 0x258f5eff3c11d0f1, 0x3d0012084b0208bb, 0x4ad5ff0838030b08, 0x053b886690ffbc3b, 0x3c9c1aecff08465a, 0x5d5c05baaf2ee2ff, 0xdc08ff0858220e08, 0x0f3c2458aeffbc96, 0xbcada1ebff086600, 0xb3c304bbc009a9ff, 0x8567050893c20408, 0x6e6bff0880010c08, 0x0e3a9654a6ffb9a9, 0x3a5c3eafff088e31, 0xa5060dbd0a2e88ff, 0x243dff08a00f0b08, 0x0ebd2aeba4ffbbb0, 0x3c806a4bff08ae25, 0xd76205bdb933d1ff, 0xc4030b08c95b0508, 0x84ffbd2ce998ff08, 0xff08d2c4043ce8a0, 0x4eec75ffbd23ee4b, 0xe4010808e96805bb, 0x10ff3d051ce5ff08, 0xff08f2cd043aa797, 0x438cf2ffbb328b29, 0x29040d0d650e0e3c, 0x9376040a0d00020b, 0x2f8e05094f670409, 0x1c040b0921000809, 0xf0ff3c65f36eff09, 0xff092a020e3cecae, 0xb95f60ffbbd961a0, 0x3c480409415b04bb, 0x1cffbc6706f4ff09, 0xff094a92053b64db, 0x94b994ffbbfce1c5, 0x658e0509738f05bd, 0x9925ff0960730409, 0x0dbd059010ff3cb1, 0x3bb0e938ff096e00, 0x856a04bcff728fff, 0x00a8ff0980020e09, 0x0dbd89d7e0ffbe05, 0xbc6f5e17ff098e00, 0xc97704bd2ca772ff, 0xad030b09b2000d09, 0x1b35ff09a8000809, 0xff3bc44800ff3cd3, 0x09c4030b3d685ae0, 0x625710ff09bf0007, 0xa0ff3d8666c0ff3d, 0x0409ed000d3d1d9f, 0xff09da000809df98, 0xa0a7a2ff3c211f73, 0xee32ff09e89904bc, 0x043d259af8ff3dab, 0xff09fa000709ff78, 0x57c944ff3d5429f0, 0x5d25ff0a08a7043c, 0x083b9edd61ffbb56, 0x040a59b0040a9d00, 0x040a2b8f040a3990, 0xba5adaf8ff0a268b, 0x3401123cc4be93ff, 0xcaff3c40beeeff0a, 0x0b0a4b0a0bbd17e9, 0x3bdf26c2ff0a4607, 0x540111bccfc56bff, 0x4cffbc828431ff0a, 0x0d0a7db9043cc55b, 0xff0a6a070e0a6f02, 0x2e199bffbc35f009, 0xc958ff0a78080eba, 0x05bdf8b258ffbddb, 0xff0a8abb040a8f96, 0x56423aff3c77f732, 0x3811ff0a980009bb, 0x043bbf452dff3c93, 0x070ac5040b0ae5a7, 0xff0ab2080e0ab701, 0xddd831ffbc25cce4, 0xfb55ff0ac0030b3b, 0x04bad8e800ff3cc3, 0xff0ad2000c0ad76d, 0x604635ffbbb2aecc, 0xaea8ff0ae0a0043c, 0x08bca99a9effbd38, 0x040afb070e0b0901, 0xbcaa12bcff0af6b3, 0x04010b3c1b94fcff, 0x32ffbc545b40ff0b, 0x0b0b1bb3043b8e88, 0x3c40e180ff0b1602, 0x24020b3d0cfab3ff, 0x6effbc7db040ff0b, 0x0b0c49000f390eb3, 0x090b79090e0bbd03, 0x070b4b070e0b5900, 0x3b8ebc3aff0b4600, 0x540002bb755468ff, 0x08ff3d510248ff0b, 0x090b6b070ebd0952, 0x3c2b01e6ff0b6601, 0x740209bc14218fff, 0x00ff3d5784a1ff0b, 0x090b9d01093c922d, 0xff0b8a060d0b8f00, 0x4e4d3aff3bd9478c, 0xbe16ff0b980d0ebd, 0x0e3ceb9f13ffbd83, 0xff0baa02090baf0d, 0xed3efeffbdc2aa6c, 0x6c9cff0bb8b804bc, 0x07bc258ad7ff3d95, 0x0c0be591050c0500, 0xff0bd2030e0bd700, 0x2256fbffbcd76ad3, 0x81afff0be07b043d, 0x043b80a1a3ff3cbd, 0xff0bf2050b0bf76b, 0x90d68cff3d880c1c, 0x1d1fff0c007f043d, 0x04bafedfa2ffbcc2, 0x0e0c1b000c0c2999, 0x3b8897bcff0c1602, 0x24070bbd6db4dcff, 0x72ffbd117764ff0c, 0x040c3b030ebdcbec, 0x3d167110ff0c369f, 0x44b1043b8a1edbff, 0x95ffbd022f6cff0c, 0x0c0cd90d0ebb5000, 0x0e0c75070e0c9501, 0xff0c62050e0c6706, 0x085d63ffb9187c57, 0x7d4dff0c700012bc, 0x0c3b8d7c7eff3a99, 0xff0c82070d0c8700, 0xa98991ffb861cabb, 0xde88ff0c900b0e3b, 0x043b3ad369ffbbf4, 0x050cabc6040cb9cb, 0xba70fd0aff0ca696, 0xb40108bcbbb251ff, 0x6fff3b71ecbdff0c, 0x0d0ccbcc043d0682, 0x3b5a95deff0cc606, 0xd40b0bbcc76cb3ff, 0x6dffbc38831cff0c, 0x120d21c9043cb0d0, 0x0b0cf30e0b0d0100, 0xbb495635ff0cee0b, 0xfcbb04bd10d3afff, 0x30ffbccf063eff0c, 0x040d13060d3bfe44, 0xbc0da739ff0d0eb1, 0x1c01093ae55409ff, 0xfcff3d067975ff0d, 0x040d458e05bc805a, 0xff0d320b0b0d37cb, 0xe00431ffbc426742, 0x1703ff0d4000093b, 0x043c157c20ffbd7e, 0xff0d5201090d57cc, 0xf6712fff3c15d327, 0x94a0ff0d609205ba, 0x0cba983744ffbc9f, 0x0e0e891d0e0f9c01, 0x090db9bd040dfd16, 0x020d8bbb040d9900, 0xbb775ad9ff0d8600, 0x9400023b8a3c80ff, 0x1eff3c98b237ff0d, 0x120dab120ebcaceb, 0x3b2fe8aeff0da601, 0xb40111bd2aebe8ff, 0x92ff3b709402ff0d, 0x040ddd000c3d1a6a, 0xff0dca00020dcfc2, 0x1b4907ff3c920a83, 0xed23ff0dd8040d3b, 0x07bb1467adff3d0e, 0xff0dea95050def01, 0xfa5b03ff3c0e3d96, 0x969cff0df8cd04bb, 0x053c7111acffbc94, 0x040e2500090e458e, 0xff0e1200070e17cc, 0x3b582aff3b034d3c, 0xc5acff0e200107ba, 0x0ebc0738efffbcb9, 0xff0e32020d0e3717, 0x1d127cff3bba4ef3, 0x2a10ff0e401b0ebd, 0x04bcf29e0bff3bc3, 0x0b0e5bae040e69b0, 0xbc0c1341ff0e5602, 0x641a0e3b154fd3ff, 0xe0ff3ce99e09ff0e, 0x0d0e7b9005bc0f4f, 0x39e484ddff0e7607, 0x840002bcd26d48ff, 0xfdff3ad61913ff0e, 0x080f190002ba3de7, 0x110eb596050ed500, 0xff0ea290050ea701, 0xf12857ffbb26572e, 0x8374ff0eb091053a, 0x0c3be3f396ffbb37, 0xff0ec20b0b0ec700, 0xafa129ffbc085664, 0x1969ff0ed00012bc, 0x05bd2be6d0ffbde2, 0x0e0eebb7040ef994, 0xbde5a6b8ff0ee622, 0xf4000f3c989ca4ff, 0xf1ff3c03af42ff0e, 0x0b0f0b000cb8e5ed, 0xbb36c6c5ff0f060b, 0x14c704bc9030c7ff, 0x19ff3dc49f48ff0f, 0x050f58b504bd1278, 0x090f338f050f4191, 0xb8b28492ff0f2e00, 0x3c220ebcae8f25ff, 0x50ffbcbbce71ff0f, 0x0c0f53b1043bd176, 0xbbb36464ff0f4e00, 0xa310ff3cdd2ff8ff, 0xbe040f7cbf043d6b, 0xfcff0f69b9040f6e, 0xba49b60dff3c18fe, 0x846f16ff0f770111, 0x000fbb6fc1acff3c, 0x17ff0f89c5040f8e, 0xbbb42cc4ff3c13e6, 0x102f1dff0f970111, 0x0108bb571e53ff3a, 0x170e1030c10410bc, 0xbe040fccc0040fec, 0x90ff0fb9120e0fbe, 0x3c3f3807ffbc3328, 0x7633c0ff0fc7060d, 0x060dbbcc4278ff3d, 0x5cff0fd900020fde, 0xbd55d04fff3ba4c6, 0xefa72bff0fe70011, 0x00023dab3848ff3c, 0x1d0e1002050b1010, 0xffbbe14b71ff0ffd, 0x100b8e053d165d0a, 0x7828ffbd9cbb4dff, 0xbc041022bd04bd16, 0xffbc5110ccff101d, 0x102b8e05bd5ce3ba, 0xa694ff3d7ad848ff, 0xca0410789005bafa, 0x0008104a00071058, 0xff3c0a3bfeff1045, 0x10530008bc6c6ecc, 0x1264ffbc15c951ff, 0x8e05106a00073c2e, 0xff3bc5e3c5ff1065, 0x10731f0ebbd227df, 0xb184ffbb1cd315ff, 0x0002109c91053bf1, 0xdaff10890207108e, 0xbd088439ff3c525f, 0xd692e9ff10970b0b, 0x92053c595db3ffbb, 0xe6ff10a9030b10ae, 0xbc410945ff3bdf23, 0x3b1865ff10b70009, 0x8f05bc1ff4f3ff3b, 0x0002110800071128, 0x001210da0b0b10e8, 0xff3d981729ff10d5, 0x10e3230e3cd60df0, 0x58c0ffbbd1afb0ff, 0x020810facd043ce3, 0xff3c2471ddff10f5, 0x11030011bc6e3cc0, 0x47b0ffbd2695baff, 0x150e1123060dbc13, 0x0bbb9966a0ff1115, 0xbcb5b270ff111e01, 0x35ecffbc54f400ff, 0x0b0b114c0012bd61, 0x9005114202081147, 0xffbcedd8d6ff113d, 0x639828ffbd5cd0ae, 0x02083b24e400ffbc, 0xcd04116291051170, 0xffbb874169ff115d, 0x116b00023c66a468, 0x2930ffbc82e3d3ff, 0x133cd1516cffbd31, 0xe800000008000000, 0x5100000001000003, 0x0500000000000011, 0x04047b160e08f78d, 0x04012c98040248c3, 0x04005c900400a097, 0x05002e8604003c88, 0x37dcc3f0ff002988, 0x370305b9e2ab3fff, 0x10ff3d0b2087ff00, 0x05004e010c3a8d25, 0xb8d8ed47ff004969, 0x57060dbad8dd66ff, 0x55ffbb048966ff00, 0x0d008091043b30a4, 0xff006d0006007206, 0xe5a1a6ff3b4847f3, 0xef6cff007b0d0ebb, 0x0e3c18241affbc81, 0xff008d070e009209, 0x7ebc3aff3b6ed439, 0x1e43ff009b0a0ebc, 0x0f3afe0617ff3cea, 0x0500c8010800e800, 0xff00b5000700ba6a, 0x862394ff3d50d343, 0xa393ff00c302073c, 0x02bdaa9b0fff3b1c, 0xff00d50b0600da00, 0x930afcffbd2d1e45, 0x0127ff00e3000c3b, 0x033a17ec59ff3c93, 0x0e00fe070d010c31, 0xbd494b19ff00f90d, 0x0700083bba769bff, 0xe0ffbde62f50ff01, 0x02011e3c053cb175, 0xbc9dc7caff011900, 0x27010cb928971dff, 0xedffba9f3665ff01, 0x0401bc00023be99a, 0x0e0158050e01789c, 0xff01453d05014a04, 0x09091affbc0725a3, 0x7782ff015300093c, 0x0ebbb0cf4eff3d20, 0xff01650012016a06, 0x879adbffbd6f3505, 0x397aff0173070d3b, 0x0b3cc8326effbbf1, 0x04018e050b019c0a, 0x3c444433ff01899d, 0x97020dbb6aa709ff, 0x16ffbd16e4f6ff01, 0x0b01ae75053c6ec1, 0x3780a04eff01a911, 0xb7010c3b17180bff, 0x5bff3973eb77ff01, 0x040204070d3b8c22, 0x0401d6ad0401e4be, 0x3b999e8eff01d19c, 0xdf0008bb4a3781ff, 0x88ffba9f90daff01, 0x0c01f6020b3a2583, 0xbbaa3d7aff01f100, 0xffc204bca4442eff, 0xc2ff3b6ecaafff01, 0x0502280007bbf579, 0xff02150109021a71, 0x68b7feffbc6663b1, 0x573aff0223010cbd, 0x0e3c832742ffbc23, 0xff0235010c023a0e, 0x0388daff3bffe4b0, 0x9a37ff0243130e3d, 0x0ebc6bf07affbdca, 0x0502d30108035f13, 0x04026f1106028f6f, 0xff0265030b026ac7, 0x7e6300ff3b1fe703, 0x110e3e057498ffbc, 0xd1ff027c15060281, 0xb947ffb3ff3b7672, 0x3e39afff028ac904, 0x01073c6d3f5cffbc, 0x010c02a50d0e02b3, 0xffb899b52bff02a0, 0x02ae0008bcc0b14e, 0xcb04ffbb2599fcff, 0x740502c575053d02, 0xffbc224aacff02c0, 0x02ce060dbd25239b, 0xafc8ffbbc3f670ff, 0x040d031b000f3b65, 0x030e02ed550502fb, 0xffbc0b6155ff02e8, 0x02f68705398ca8ed, 0x4fc7ff3c751e33ff, 0xc404030d1806bcb8, 0xffbb14bc69ff0308, 0x0316030b3cc64ab3, 0x3398ff3c789d28ff, 0x0011033f010cbd13, 0x9dff032cc8040331, 0xbc7eda4bffb89405, 0x3822f4ff033a060d, 0x00063c094425ffbb, 0x3dff034c02080351, 0xbb0f0c2cff3c05e9, 0x52dec0ff035a0e06, 0x0e0bbb015f4cffbd, 0x000803ab8a0503ef, 0x0b0b037d070d038b, 0xff3afcfa29ff0378, 0x0386ca04bdbbeae8, 0x2834ff3d04be78ff, 0x0002039d140ebd8d, 0xffbd312554ff0398, 0x03a68905bbc87e3b, 0xa8a6ff39b72fbeff, 0x000703cf0002bd87, 0x2eff03bcc50403c1, 0x3c3e8b54ffbdad75, 0x2c79cfff03ca070d, 0xcb04bceca6e0ffbe, 0x26ff03dcc50403e1, 0x3b2a32feffbc7b5d, 0xdd982eff03ea8c05, 0x000cbd36aa99ffbb, 0x140e041702070437, 0x07ff0404c7040409, 0xbcf2d0ddffbc161b, 0x1bca75ff04120007, 0x01083a8ab1daff3c, 0x01ff0424140e0429, 0x3c16d5adff3d10ec, 0x145bf4ff04320011, 0x0002bbd1cc90ff3c, 0x0207044d140e045b, 0xffbd26ab71ff0448, 0x045613053d85760f, 0x82faff3d15fe72ff, 0x0006046d060d3b97, 0xffbbffc650ff0468, 0x047600113c5e2ad0, 0x6abfff3c8667d8ff, 0xa50406bb57053dab, 0x370105130211059f, 0x4b0504af920404cf, 0x33ff049c360104a1, 0x3b250220ff389db0, 0xdae795ff04aa4d05, 0x2b0eba0327c4ffbb, 0xd2ff04bc140b04c1, 0x3c21a642ffbba1e8, 0xe2d7e5ff04ca0112, 0xa4043b7f8e3fffbb, 0x110b04e5180304f3, 0xff3b9dfbefff04e0, 0x04ee070d3ce51e64, 0x8d08ffba272064ff, 0x000805050e063aa5, 0xffbb8fb675ff0500, 0x050e0b053ca13dbf, 0xbe5effbcc19bfeff, 0x1205055b6a04bd2e, 0x170e052d3504053b, 0xff3b96e1d8ff0528, 0x0536170ebc247122, 0x6ff0ff3cf6fd73ff, 0x030b054d000839f2, 0xffb99f29b5ff0548, 0x05560212bd61e080, 0x27f7ffbc776235ff, 0x6d04057f00063d67, 0x14ff056c6c040571, 0x3dca1b3aff3c7a89, 0xcd21c9ff057a3501, 0x170e3cf7110affbb, 0x14ff058c030b0591, 0x3d54c3bdff3c9079, 0x9dc4feff059a000c, 0x1d0ebdcdfbd0ffbb, 0x510505eb060d062f, 0x000605bd030605cb, 0xff3a1cb009ff05b8, 0x05c61c0ebd2888f6, 0x4256ffbb4b4671ff, 0x110b05dd52053b89, 0xffbd4c4c8fff05d8, 0x05e6a904bdef84cc, 0x29f9ffbd0a413bff, 0x0012060f190ebb5e, 0x24ff05fc070d0601, 0x3cccebbcffbae24a, 0xa58540ff060a170e, 0x1a0e3dfb8a0eff3c, 0x3bff061c01070621, 0x3d0ecbf2ff3daa65, 0xa56045ff062a070d, 0x24033d9ba3ecffbd, 0x0002065731050677, 0xd6ff064425050649, 0x3c18847effbbf550, 0x37b489ff0652330e, 0x3f01bb8842d9ff3d, 0xe0ff066433050669, 0x3d22edbcffbda52a, 0xa73fb0ff0672340e, 0x27033ae95900ffbd, 0x0112068d0706069b, 0xff3c9a9d1dff0688, 0x0696ab043bdfbb37, 0xe460ff3ccfcb33ff, 0x390106ad2d03bd16, 0xff3c815894ff06a8, 0x06b6010cbcf2ef09, 0xfeb4ffb9a5a1bcff, 0x870507db01073af1, 0xbb04070b0007074f, 0x000606dd010c06eb, 0xffb9c98469ff06d8, 0x06e66905bc276ce5, 0x9811ffbb670539ff, 0x010c06fd75053c0b, 0xff3a96a203ff06f8, 0x0706180ebc47fca3, 0xfd4effbc88983bff, 0xb504072f86053a0b, 0x18ff071c0a0b0721, 0x3aaeafd7ffb9ba62, 0x5c7ad9ff072a1d0e, 0x1d0e3b38f2c1ffbb, 0x34ff073c1c0e0741, 0xbc673adfff3a9689, 0xd1667aff074a0111, 0xcc04bb64b2e6ff3b, 0x000c0777050d0797, 0xf4ff0764040d0769, 0x3dc0d298ff3ca333, 0xe21dedff0772340e, 0x020b3d389cd7ff3a, 0x81ff0784000f0789, 0xba9bbad4ffbc95aa, 0xe7173dff0792cb04, 0x8a05bb2b87f9ff39, 0x000207ad890507bb, 0xff3b658c7cff07a8, 0x07b6280ebc8b9a8c, 0xf0fdff3d2deaa5ff, 0x000207cd0208bb14, 0xff3b1bc325ff07c8, 0x07d6010cbb8b0ddc, 0xb230ffbbe8a230ff, 0xc104086b0207bd8a, 0x0a0b0807b6040827, 0x1eff07f4090b07f9, 0xbc802912ff3976c4, 0x6d5fb1ff08022c0e, 0x5905bc671e0bff3a, 0x73ff081458050819, 0xbd44b383ff3a8174, 0xa53494ff0822be04, 0x000c3b819162ffba, 0x060d083d7805084b, 0xffbbbef983ff0838, 0x08467a053b86019e, 0x3810ffbc8d93a2ff, 0x6205085d6705bb0c, 0xffbb20de43ff0858, 0x08660b0b3c8de4cb, 0x83b6ff39c424bfff, 0xc20408b3c304bb53, 0x010c088567050893, 0xffb9987dc4ff0880, 0x088e330e3a874c98, 0x1dd3ff3a28beedff, 0x2b0e08a5060dbc64, 0xffbc9a3c80ff08a0, 0x08ae1d0e3c89f4a7, 0x1fd3ffbbdf5440ff, 0x5b0508d75d053d3c, 0xb0ff08c4590508c9, 0x3cf551c6ff3b1367, 0x6c5f49ff08d20008, 0x6005bbe846dfffbd, 0x3aff08e42a0e08e9, 0x3cf30f87ffbc7a4d, 0x6b4268ff08f26105, 0x0e0eb88b5971ffbc, 0x90040af3020d0d2f, 0x070e0993020709e9, 0x040b092f030e094f, 0x78ff091c81040921, 0xbc145165ffb97234, 0xee720dff092a8804, 0x6f043c9c9e2fff3a, 0x10ff093c66040941, 0xbc93186eff3cf83a, 0xdb8dc2ff094a9105, 0x000c3c981ca2ff3b, 0x000f096595050973, 0xff3b403f34ff0960, 0x096e0111bca6cc32, 0xc422ff3c489aabff, 0x000d0985080ebd52, 0xffbacb160bff0980, 0x098e8b04bcb5554f, 0xc0acff3c5208bdff, 0x020e09c9070ebd11, 0x780409ad050b09bb, 0xff3c1c86d0ff09a8, 0x09b60112bb754ea8, 0x065dff3b5a4788ff, 0x9aff09c40002bc85, 0xbd3e320effbd02b2, 0x09d6930509db0112, 0x4dc5ffbc2a7c5fff, 0xb6ff09e4030b3d0f, 0xbde414e6ffbd8e47, 0x0a3590050a799205, 0x0a079c040a150007, 0x7f8e41ff0a029704, 0x9d043cacadeaff3b, 0xffbe087e71ff0a10, 0x0a2700023bcb58f3, 0x88a527ff0a220008, 0x95043be94e97ffbc, 0xff3cd146eeff0a30, 0x0a5991043a10c353, 0x0a46070e0a4b0009, 0x4f20ff3bd5ed80ff, 0x80ff0a54050b3cc7, 0x3d282568ff3ced44, 0x0a6600020a6b9804, 0x9657ffbbc74cd1ff, 0xc8ff0a74a004bd2d, 0xbbb9e0daff3beca7, 0x0a9891040aaf9504, 0x0a8e93050a930209, 0x686bff3d30ca1cff, 0x023b56d200ff3cc4, 0xbca5c100ff0aa100, 0xdfc818ff0aaa0007, 0x020e3c43e740ff3c, 0x010b0ac501120ad3, 0xff3bfa7f8cff0ac0, 0x0ace0009bc138b9c, 0xcdb7ff3d2234faff, 0x94050ae5070eba97, 0xffbc1c6ec9ff0ae0, 0x0aee0209ba9066c6, 0xebbcff3b0191d6ff, 0xbd040c1300113c87, 0x90050b43000c0b87, 0xbc040b1500080b23, 0xffbaa7cd6fff0b10, 0x0b1e080ebcd6d148, 0x8fbcff3a75bf86ff, 0x9c040b350e0b3c2b, 0xff3b6e77a6ff0b30, 0x0b3ea3043af69547, 0x834cff3bd55f2fff, 0x070d0b679505bb2a, 0x0cff0b54080e0b59, 0x3c544a67ffba44d6, 0xa48298ff0b62b704, 0xb3043ce0b5a3ff3b, 0x3fff0b7400070b79, 0xbb952a20ffbcc3e3, 0xc61af7ff0b82010e, 0xbe04bd319d11ffbb, 0x00090baf080e0bcf, 0x11ff0b9c010c0ba1, 0xbdb404d2ffbd0ac8, 0xf9b197ff0baa070e, 0x00023d01c93cff3a, 0x68ff0bbc000c0bc1, 0x3d8ada99ff3b32f2, 0x1851b7ff0bca0009, 0xc1043d362da8ffbd, 0x8e050be5bf040bf3, 0xff3ba7cb2eff0be0, 0x0bee00023d0e83a2, 0xafe0ffbcb189e0ff, 0x00020c050109bb76, 0xff3b2793a6ff0c00, 0x0c0e9005ba3952f4, 0x0288ffbc0d77bdff, 0x000f0ca38e0539bd, 0x97040c3f01080c5f, 0x7bff0c2c02070c31, 0xbe14e876ffbbe271, 0xcee39fff0c3a9904, 0x010ebb262b0eff3c, 0x98ff0c4c030b0c51, 0xbd70c518ffbd2174, 0x7a43f3ff0c5ac404, 0x0108bc9c87d5ff3c, 0xa8040c75b7040c83, 0xff3b3ae40aff0c70, 0x0c7ebc04bb8358e7, 0xb54eff3c62ef6fff, 0x010c0c95030bbaa4, 0xffbc17178aff0c90, 0x0c9ec4043c0ed6eb, 0x4751ff38d5fd10ff, 0x070e0ceb00123c10, 0x00090cbd000c0ccb, 0xffbd1cabc8ff0cb8, 0x0cc60009bc163898, 0x5231ffbd9f36b4ff, 0xca040cdd0b0bbd02, 0xffbc6029dfff0cd8, 0x0ce690053d317848, 0xdc2dff3c8628ebff, 0x52040d0f060dbb94, 0x2aff0cfc4b040d01, 0x3a522dd5ffbc1bba, 0x24fe79ff0d0a000f, 0x010cba1337e9ff38, 0x6aff0d1cbd040d21, 0x3bcc4db0ffba603a, 0xcefe2aff0d2a070e, 0x010cbcb9bb77ff3b, 0x160e0e4a1d0e0f66, 0xb2040d83b9040dc7, 0x120e0d55aa040d63, 0xff3bb97406ff0d50, 0x0d5e0009bc0c2c03, 0x2047ff3ce875c2ff, 0x030b0d75b504ba50, 0xffbc593688ff0d70, 0x0d7e0002bd615215, 0x52c0ffbc8bcfabff, 0x030b0da7000d3bb8, 0x30ff0d9400070d99, 0x3be3616effbc643d, 0xab784dff0da2050b, 0x00073d80da40ff3b, 0xd0ff0db4cb040db9, 0xbb364cebff3b382d, 0x0e2790ff0dc28e05, 0x8e05bb5986ecff3c, 0xc2040def020b0e0f, 0x91ff0ddcb1040de1, 0x3b85bd7cffbc13f0, 0xa597d8ff0dea0108, 0xbf04bdba6b68ffbd, 0x86ff0dfcb5040e01, 0x3bc9ee65ffbb0d28, 0x9fe564ff0e0ac004, 0x9704ba5e3428ffbc, 0xe4ff0e1c170e0e2a, 0xff0e25000d3db05b, 0x923d38ffbc205d0e, 0x378f050e3cae043c, 0x45ff3b7e7968ff0e, 0xff0e45180ebb87a9, 0x8b22d4ffbb128924, 0x9691050eda00023a, 0x68200e0e7600070e, 0x99c6ff0e63000c0e, 0x043cf416b2ff3b2f, 0xb8cc9d5dff0e71c7, 0x889005bbe9e482ff, 0x52e2ff0e832a0e0e, 0x0f3bf7b1bdffbb25, 0xbc782640ff0e9100, 0xba01093cd110deff, 0xa701080eac0b0b0e, 0x79ff3b1a0a77ff0e, 0xff0eb5000cbc3231, 0xffaa63ff38d1e19c, 0xc7230e0ecc020dbc, 0x6dffbd5ade90ff0e, 0xff0ed593053e2a04, 0x8070d0ff3ba5cc31, 0x02b3040f22b5043c, 0xef00090ef4b1040f, 0x47ff3963becaff0e, 0xff0efd000cbd1603, 0x0baf7cff3b118624, 0x0f1f0e0f14000f3d, 0x45ff3c12ee1cff0f, 0xff0f1d060dbcfc4e, 0xc9cd01ff3c0de877, 0x38220e0f46bf04bc, 0xa661ff0f3300070f, 0x0b3c354968ffbbb1, 0x3ab0fa4bff0f4108, 0x58000f3c63b1ecff, 0x64e3ff0f531f0e0f, 0x0cbb0bf3c6ff3ce2, 0xb9e96913ff0f6100, 0x74200e3ad33a8dff, 0xb6ba040ffa1d0e10, 0x88120e0f96170e0f, 0x9a2bff0f8300020f, 0x093c7c2967ffbb15, 0x3cfc75a0ff0f9100, 0xa8b404bd22ef8aff, 0x61a8ff0fa300020f, 0x02bcdaf570ffbc0b, 0xbb7ad148ff0fb100, 0xdabd04bc0ec1d8ff, 0xc7170e0fcc8e050f, 0x0bff3bfe987fff0f, 0xff0fd5bc04bc598c, 0xa60900ffbc6f02da, 0xe7190e0fecbf043c, 0xb2ff3d078fefff0f, 0xff0ff5c104bbd482, 0x2562c0ffbc058bf7, 0x2292051042cd0438, 0x0fc2041014000710, 0x6dffbd2962f7ff10, 0xff101d01073c7c55, 0xc6dcfcffbbc99035, 0x2f00091034030bbd, 0x40ffbcd6084eff10, 0xff103d0b0bbb7287, 0xdd9ce0ffbdb6e640, 0x4f0107105d9305bb, 0x02073e0bd1f0ff10, 0xff3dc6fdbcff1058, 0x106f00093d705190, 0x36cab7ff106a0007, 0xb8ff3d4fa180ff3d, 0x1110f201073cc533, 0x051097940510ae00, 0xff108d220e109293, 0x10353bff3cdcea16, 0x230e3d27a456ffbc, 0x45ff10a4000210a9, 0xbe277968ffbd5333, 0xd2220e3d806f89ff, 0xbf8e0510c4000210, 0xdaffbc8b9dd9ff10, 0xff10cdcb04bd7dcf, 0xc59968ffbcb189ef, 0xdf000910e4260e3d, 0x0eff3c9103e7ff10, 0xff10ed0009bcb68d, 0x672b78ffbb8bc0a6, 0x11060d111f8e053c, 0xf790ff1103000211, 0xe0ff110c01123ca0, 0x3cb08ca0ff3d25ef, 0xff5d68ff111a0008, 0x00083dc92a90ff3d, 0x020711350b0b1143, 0xff3c81c157ff1130, 0x113e00113d24ab70, 0x4a98ff3d9a83e0ff, 0x98ff114c00123d1b, 0xbcd23780ffbd337f, 0x0000000800000013, 0x00000001000003e8, 0x00000000000011cf, 0x0484160e09008d05, 0x012c98040248c304, 0x005c900400a09704, 0x002e8604003c8804, 0xc6af7aff00298805, 0x120eb9cc0107ff37, 0xff3b28f919ff0037, 0x004e010cbc4aceb6, 0xc33919ff00496905, 0x060dbac32dfdffb8, 0xffbaee90c4ff0057, 0x008000123b1efa75, 0x006d140b00720011, 0x37ddffbbc79c57ff, 0x38ff007b00093b86, 0xbcd74df2ffbd9012, 0x008d010d0092100b, 0x3429ffbc815aedff, 0x3cff009b3f013b1d, 0x3acdf8ccffbda303, 0x00c8020d00e8000f, 0x00b5080e00ba0606, 0x8d36ffbddc85b0ff, 0xeeff00c3040ebc50, 0x3cb4435fffbb7540, 0x00d5090600da040e, 0xd790ffbd0ca9a2ff, 0xabff00e304063c7a, 0x3d4dee6aff3b3827, 0x00fe0009010c120e, 0x982ee2ff00f95905, 0x0d0e3b6d5f0cffbb, 0xffbbe7d4c6ff0107, 0x011e030b3c94cd7c, 0xdcfb4bff0119010c, 0x0705bc6dd9c2ff3b, 0xffbde2b224ff0127, 0x01bc0002bc9ce031, 0x0158050e01789c04, 0x01450906014a4705, 0x986fffbcb08df3ff, 0xe6ff01530009ba32, 0xbc1227a1ff3ca2a5, 0x0165010c016a060e, 0x31f3ffbcb73a04ff, 0x0bff01739b04bdb8, 0xbc8b3ffaffbb01f1, 0x018e050b019c0a0b, 0x30a3bdff01899d04, 0x010cbb532fdaff3c, 0xff3b4e06f1ff0197, 0x01ae75053cf317d6, 0x9448caff01a9a204, 0x010c3a71c6c1ff3a, 0xff395b868eff01b7, 0x0204070d3b7c3e03, 0x01d6ad0401e4be04, 0x8a421dff01d19c04, 0x0008bb35feb7ff3b, 0xffba8f9bf6ff01df, 0x01f6010b3a14f645, 0x8e0fb4ff01f1020e, 0x020dbc8806a6ff3b, 0xffbb16479bff01ff, 0x022800073b254eb4, 0x02150009021a030e, 0xc5b2ff3d488cb2ff, 0xaaff0223070ebcb6, 0xbbcbee2effbd5d0e, 0x02350e0e023a110b, 0x1053ff3beb65a3ff, 0xf1ff02430e0ebd02, 0xbd865f1dff3cc916, 0x02dc88050368120e, 0x02787f0502988605, 0x02650002026a0207, 0x85d8ffbb209901ff, 0x7dff0273070d3995, 0x3d33a2adffbb19c8, 0x02850b0b028a8405, 0x0f52ff3bd8a729ff, 0xc3ff02930208bb00, 0xbd15af8effbbb365, 0x02aec50402bc0108, 0xa32b55ff02a98705, 0xc6043c64617bffba, 0xffbcea9a9aff02b7, 0x02ce0d0ebbcf7cbb, 0x0278dfff02c9c604, 0x00113bdd1f07ffb7, 0xffbcb45e62ff02d7, 0x0324060d3ccf9337, 0x02f6890503040002, 0x36870dff02f10009, 0xc4043be819e4ff3d, 0xff3cf8f7d5ff02ff, 0x03168b05bb78e197, 0x56ef98ff03110d0e, 0x00073bc814a8ffbc, 0xff3c3a880bff031f, 0x03488905b99417a2, 0x0335010e033ac404, 0xe702ff3c92500fff, 0x30ff03430002bda2, 0xbb9c6366ff3c06b5, 0x0355c404035acb04, 0x71dbffbbbc9d90ff, 0x60ff03630d0e3b9b, 0x3c114a5bffbc92ae, 0x03b4020703f8130b, 0x03860b0b0394c904, 0x1e2b6dff0381c704, 0x070dbcca5637ff3a, 0xffbd8443f9ff038f, 0x03a646053bd83cb2, 0x2555deff03a10008, 0xca043c1f3fa8ff3d, 0xff3cc1a688ff03af, 0x03d80b0bbc8bf5c1, 0x03c5050b03ca8905, 0x5e88ffbc897c28ff, 0x4dff03d38a053b8e, 0xbb681eacffbd1a2a, 0x03e5001203ea0008, 0x9ceaffbd9bebcbff, 0xb8ff03f3ca04bd85, 0xbb858fd5ffbbc286, 0x0420c50404400109, 0x040d001204120107, 0x4b29ff3cc22e56ff, 0x0eff041b83053d89, 0xbd9cd413ff3ccb95, 0x042dc7040432c804, 0xb3d2ff3c0ed006ff, 0x65ff043b140ebe04, 0xbc728f1dff3ca171, 0x0456060d0464c504, 0x39f7dbff0451000c, 0x0012bcdc31d5ffbd, 0xffbd6c7c2eff045f, 0x0476060dbd96e0c3, 0x6f13f0ff0471c804, 0xc904bd010876ff3c, 0xffbc0c4220ff047f, 0x06c45705bd023bcf, 0x051cab0405a8af04, 0x04b8420504d8a004, 0x04a5310504aa3705, 0x7526ffb962f386ff, 0x71ff04b338053b86, 0xba2ed1c3ffbc570f, 0x04c59f0404ca1f0e, 0xeb1fffbaca7240ff, 0x41ff04d353053baf, 0xbb2995efff3a7369, 0x04eea70404fc0012, 0x3d22f5ff04e91c0e, 0x0e0bbc95aa8aff3a, 0xff3b8675dfff04f7, 0x050e10063ccc621b, 0xb80a27ff0509270e, 0x030bba7cd715ff3b, 0xff3c712231ff0517, 0x05640011bc3727a9, 0x053645050544ad04, 0xe65a63ff05311e0e, 0x4b053cee8e15ffba, 0xffbcfe593dff053f, 0x0556ae043a0da8aa, 0x0e1197ff05514505, 0x270ebda77934ffbe, 0xffbcab3860ff055f, 0x058813053d9479e7, 0x0575ad04057a0111, 0xa5e1ffbcd25c63ff, 0x9aff0583000c3c85, 0x3bcde94cffbc59dc, 0x05953403059a060d, 0x1cceff3c6689dcff, 0xebff05a3ac04bb2c, 0x3d40745dffbd5b77, 0x05f4020806385505, 0x05c63e0105d45405, 0xd8e4a5ff05c13b01, 0x0008bd0213d5ff3a, 0xffbb6cd220ff05cf, 0x05e601123b22111a, 0x87f913ff05e1b704, 0x01113d2f60b7ffbb, 0xffbc3396a0ff05ef, 0x06182f0e3c0534a3, 0x0605010c060a2803, 0x6579ff3d047cdfff, 0x6dff0613030bbc48, 0x3a5b84c4ffbbad23, 0x0625000c062aca04, 0xd2adff3bad959fff, 0xa9ff06330012bb01, 0x3bd64cfbffbcc3ba, 0x0660010706800c0b, 0x064d011206520a0b, 0xb807ff3c15d83bff, 0x20ff065b000fbc97, 0xbc9c6a2fff3cb70a, 0x066d2b0e06725605, 0xf356ffbc1ac35cff, 0x36ff067b00023c16, 0x3a0d4696ff3ccc6a, 0x0696b10406a4ba04, 0xd94eaeff06910207, 0x02073c47e7eeffbc, 0xff3cae92ecff069f, 0x06b6bc04bc82dbb6, 0xa0441bff06b1010c, 0xc5043c41a657ffbd, 0xffbc94394bff06bf, 0x07e401073bb5a54e, 0x0714000707588705, 0x06e6020806f4bb04, 0xaf880eff06e1010b, 0x050b38db1d4fffba, 0xffbc15e632ff06ef, 0x070675053b4d7e17, 0xceaab2ff0701220e, 0x090bbb510203ffbb, 0xffbbd327a8ff070f, 0x073886053a192c8b, 0x07250a0b072ab504, 0x37e3ffb9a7bfbeff, 0x9dff0733ba043a9d, 0x39faef06ff3bc809, 0x0745cb04074a1f0e, 0xd179ffbab12b35ff, 0x85ff0753ca043d72, 0xbca62d62ff3b51f8, 0x0780000807a0cc04, 0x076d070d07728c05, 0x442fff3a467c49ff, 0x47ff077b060dbca2, 0xbac83a23ffbb11e7, 0x078dbf040792010c, 0x5cf7ff3ad56a60ff, 0x98ff079b880539a1, 0xba2f3d2cff3ce9cf, 0x07b6cd0407c48a05, 0x9a7125ff07b1290e, 0x0002bc812e7dff3b, 0xff3cf6d856ff07bf, 0x07d60108ba167158, 0xa431f4ff07d1220e, 0x010cb9eeaf9fff3c, 0xffbb143950ff07df, 0x08740207bce1d78b, 0x0810b7040830c104, 0x07fd61050802230e, 0x97b7ff3b68eb38ff, 0x03ff080b250eb9e6, 0xbabd6cdeffbcd116, 0x081d00110822b804, 0x6f70ffbc4562e1ff, 0xffff082b5a053c73, 0xba2793eaff3b9bca, 0x084601080854c204, 0x3e1d0bff0841180e, 0x010cb95fe60effbd, 0xffbc8e30a0ff084f, 0x086666053cbbced1, 0x20dbe9ff08616205, 0x68053c82c61cffbb, 0xff3cc2e650ff086f, 0x08bcc304babc0fa5, 0x088e6705089cc204, 0x893d9dff0889010c, 0x330e3a738953ffb9, 0xff3a17defcff0897, 0x08ae100bbc4d4e13, 0xcd47e7ff08a95d05, 0x58053b64fee2ffbd, 0xff3d468fc0ff08b7, 0x08e05d05bcec6550, 0x08cd001108d25b05, 0xa4e1ff3c16c12eff, 0x33ff08db0b0b3cfe, 0xbcd0977bff3bcc24, 0x08ed600508f20b0b, 0xfff0ff3c75b467ff, 0x29ff08fb2a0e3a6e, 0x3bf1d8b1ffbbd5c0, 0x0b44020d0d800e0e, 0x099c02070a289004, 0x093889040958070e, 0x09256f04092a0009, 0xabc6ffb9ff880fff, 0xf9ff093300023ba1, 0xbc32273fff3b0f64, 0x09450111094a000c, 0x77c3ff3c34676cff, 0xf7ff09530002bcb3, 0x3c9bde82ff3b1ffa, 0x096e000d097c0002, 0xe14059ff09697b04, 0x01123cd37883ff39, 0xffbc76940dff0977, 0x098e9205bb358acb, 0x1b66f3ff0989010b, 0x0111bb00efb8ffbd, 0xff3bfc3f3aff0997, 0x09e4000ebd010415, 0x09b6780409c4050b, 0xb139b8ff09b16904, 0x030b3c68ab2affbb, 0xffbc0ddb46ff09bf, 0x09d67f04b96bf99a, 0xf9dc30ff09d16904, 0x9205bbf60584ffbc, 0xffbc9b6deeff09df, 0x0a080111bcc55fa4, 0x09f5020e09fa030b, 0xf931ff3cc09978ff, 0x94ff0a03020e3d00, 0xbc196fefff3b4473, 0x0a1590050a1a070e, 0xdd0cffbd1066e6ff, 0x02ff0a239305bcae, 0xbd800d56ffbdcd46, 0x0a7490050ab89205, 0x0a469c040a540007, 0x660041ff0a419704, 0x030b3c9b694aff3b, 0xff3c14bee5ff0a4f, 0x0a660002bc142e54, 0x75f60cff0a610008, 0x070e3bd1fa06ffbc, 0xffbb84bcefff0a6f, 0x0a98090b3bbc56b7, 0x0a8500080a8ac004, 0x22baffbb6fa297ff, 0xd9ff0a9300093ba9, 0xbdedeba0ffbc8e3e, 0x0aa500070aaa9904, 0x1d1dffbd196f64ff, 0x68ff0ab39b04bc03, 0xbbd23c37ff3d88a2, 0x0ae001110b009604, 0x0acd010b0ad20a0b, 0xcf9dff3be172cdff, 0xd4ff0adb0007bb99, 0xbd0b7f0effbca885, 0x0aed000c0af2010b, 0xc46bffbcc76334ff, 0xf4ff0afb020e3cb0, 0x3c6e1a4cff3d1a39, 0x0b1600020b24b904, 0x076413ff0b11ac04, 0xb1043d3d5965ffbc, 0xff3bb0ffbcff0b1f, 0x0b36bb04bbc5bc21, 0xfb5559ff0b31030b, 0x0009bb90c100ff3c, 0xff3bbedb83ff0b3f, 0x0c640011babe38eb, 0x0b94000c0bd8bd04, 0x0b6600080b749005, 0x9705caff0b61bc04, 0x080ebcc155f1ffba, 0xff3a5d2c7bff0b6f, 0x0b8600083c1a67be, 0x25e209ff0b81080e, 0x030e3b421aa6ff3a, 0xff3a747692ff0b8f, 0x0bb8070e3c35da73, 0x0ba5bc040baa030e, 0x2f50ffba730a10ff, 0x61ff0bb30a0bbcfa, 0x3cc7db9bffbc1238, 0x0bc5ba040bca080e, 0xa3f1ffbcac233cff, 0x19ff0bd3090e3cf3, 0x3b0f45d0ff3dbf3e, 0x0c00080e0c20be04, 0x0bed010c0bf20009, 0x0454ffbcf9ce84ff, 0x24ff0bfb9105bda2, 0xbac2967aff3c8175, 0x0c0d00090c120002, 0xc47dff3d187a6dff, 0x57ff0c1b0009bd3d, 0x3d23f5e4ffbd0916, 0x0c36c9040c440e0b, 0xd1a7a4ff0c310b0b, 0x0002bd1d1adfffba, 0xff3b296d3bff0c3f, 0x0c56000cbb77f938, 0x87f5b3ff0c51cc04, 0xc1043b9623c9ffb9, 0xffbc162b4cff0c5f, 0x0cf48e053bd52d0f, 0x0c90060d0cb0130b, 0x0c7d9a040c829c04, 0xbcc9ffba806d03ff, 0x58ff0c8b0b0bbc94, 0xbb7abe6dff39a132, 0x0c9da6040ca20b0e, 0x2184ff3c1aa3ddff, 0xe1ff0cab0007bbe1, 0x3b8a9d35ff3d1ea9, 0x0cc601080cd40b0e, 0x5f0729ff0cc17804, 0x080e3befa12effbc, 0xffbaa6cc66ff0ccf, 0x0ce6060dbd63f3d5, 0x144830ff0ce10207, 0x00023cae4f2effbc, 0xff3d9ad15cff0cef, 0x0d3c8f053c90d106, 0x0d0e0c0b0d1c060d, 0xbec7a9ff0d09ad04, 0xc804bb8e25c0ff3a, 0xffbb16c14dff0d17, 0x0d2ec004bd012708, 0xece7c4ff0d29080e, 0xc104bbd0e088ff3b, 0xff3d49d00cff0d37, 0x0d60000f3b65eb1b, 0x0d4d00020d526b04, 0x2a26ffbc2aa44dff, 0xa7ff0d5b00093d12, 0x3b2627b8ffbac7b2, 0x0d6d94050d72070e, 0xdc66ff3a15b990ff, 0x58ff0d7bcb04b8c9, 0xbba587beffba36f9, 0x0ea41d0e0fb7010c, 0x0dd4100e0e18150e, 0x0da69b040db4c104, 0x13f9b9ff0da18e05, 0x020dbd0262b8ffbd, 0xffba45e79aff0daf, 0x0dc601093c836c55, 0x01c3a1ff0dc10b0b, 0x8f05bc83c944ffbd, 0xffbcb0e0e3ff0dcf, 0x0df8060dbb90368d, 0x0de500080dea0012, 0x5987ff3bb865bcff, 0xc8ff0df390053d86, 0xbb5a1a86ffbaeb97, 0x0e05140e0e0a0012, 0xace4ffbb022314ff, 0xedff0e130b0b3d3b, 0x3d83a72aff3c1167, 0x0e40b8040e60000f, 0x0e2d01090e32b504, 0xb740ff3a9adf93ff, 0xb8ff0e3b170ebdb3, 0x3bc4a0afffbdbe0e, 0x0e4d060d0e520109, 0xba73ff3b5da497ff, 0x61ff0e5bc4043d55, 0xbce4f6e6ffbb30f3, 0x0e76bc040e84bf04, 0x0d3955ff0e71ba04, 0x0111bbdf6c6eff3b, 0xff3c3660fcff0e7f, 0x0e96c904bc5be3da, 0x8f2322ff0e91c204, 0x060dba78e20fffbb, 0xff3b562dceff0e9f, 0x0f340002bb0691b7, 0x0ed0220e0ef09105, 0x0ebdaf040ec2b704, 0x4774ff3bf013aaff, 0x91ff0ecb020dbd44, 0xba55df66ff3cffad, 0x0eddb9040ee2cd04, 0x0011ff3c0e767dff, 0xa4ff0eeb230ebb13, 0x3b0b0402ff3ca98c, 0x0f060b0b0f140109, 0x0a87fbff0f019605, 0x000cbc89cf78ff3b, 0xff38bce1a8ff0f0f, 0x0f26230ebce61955, 0x029237ff0f21030b, 0x020d3bef25f5ffbd, 0xff3e1903fdff0f2f, 0x0f73b5043b6af6cb, 0x0f4eb4040f5c9105, 0x126791ff0f49070b, 0x1f0e3ca51c36ffbb, 0xff3bb5f797ff0f57, 0x0f65220ebcc1a364, 0x6e000c3d461ad0ff, 0x18ffbba22a24ff0f, 0x0e0f97bf043cc6e4, 0xff0f8401080f8922, 0x5b68acffbb3eff88, 0xdc4aff0f92060d3d, 0x0fbc837b49ff3bb1, 0xff0fa4c6040fa900, 0xa2a659ff3c068205, 0x1147ff0fb2000cbb, 0x0e3abe1b38ffb9d2, 0x04104bcb0410ce1c, 0x0b0fe70e0b1007ca, 0xff0fd41b0e0fd90b, 0xf35792ff3a60b479, 0xc688ff0fe20c0b3c, 0x04bc2fcd00ffbd55, 0xff0ff4140e0ff9c6, 0xfd851dffbba5f460, 0x900cff1002c704bc, 0x023c761ddaff3d9b, 0x07101d180e102b00, 0xbccad6bbff101800, 0x2600113bda3a49ff, 0x17ff3c12620dff10, 0x12103d170e3d8751, 0xbcd28399ff103800, 0x4600113be29967ff, 0x2eff3d18d2acff10, 0x0d108acc04bd819c, 0x051065170e107306, 0x3c0e65b9ff106090, 0x6e0009bc9c9c4bff, 0x38ff3d1ebfc2ff10, 0x0710850b0b394817, 0x3be19d95ff108000, 0xda87ffbcbda085ff, 0x940510ae060dbd32, 0x78ff109b190e10a0, 0x3c3dba39ffbc807a, 0xa99f76ff10a9170e, 0x00093c80c0ccffbc, 0x55ff10bb170e10c0, 0x3c188da2ff3ad9f2, 0x12883aff10c9170e, 0x0008bcd2fb83ff3b, 0x9005111acd04115e, 0x001110ec001210fa, 0xff3b74a3d0ff10e7, 0x10f5310e3d13b2d9, 0x2581ffbae83cdcff, 0x2d0e110c92053c90, 0xffbc38296cff1107, 0x111500123d4b84aa, 0x50e8ff3ceb2df9ff, 0x0b0b113e060dbb3c, 0x3dff112b01071130, 0x3c710810ffbb0e81, 0x0440a9ff1139280e, 0x0002bb06bde0ff3d, 0xe2ff114b91051150, 0xbb7ea4aeff3bfdea, 0x485cb2ff1159230e, 0x90053ade3ad1ffbc, 0x000211868f0511a6, 0xa0ff11738e051178, 0xbd5ea8b5ffba1a7b, 0xa66427ff1181030b, 0x230e3cdb6045ffbc, 0x07ff1193220e1198, 0xbd5e109effbc961f, 0x96aa71ff11a10108, 0x2b0e3c5690c8ffbc, 0xc90411bc910511ca, 0xffbcb7485bff11b7, 0x11c5cd043d0aeb24, 0x08dcff3c6a665dff, 0x133e0120ccffbc6d, 0xe800000008000000, 0x8700000001000003, 0x0500000000000011, 0x040484160e09008d, 0x05012c97040248c3, 0x04005c910400a07e, 0x06002e8d04003c8f, 0x38763801ff00290d, 0x370b0eb99ac25eff, 0x56ffbc419821ff00, 0x0e004e0a0eb8ea5f, 0xb97a4d03ff004909, 0x5700023d5f818dff, 0x08ffbc7da69dff00, 0x0f0080010539a4a5, 0xff006d1906007200, 0xd47304ffbd8272ff, 0xee3fff007b0107bb, 0x0ebb090d6dffbc9f, 0xff008d070e00920d, 0x662de5ff3ba9cdcf, 0x1e35ff009b93043a, 0x09bc71ac56ff3c4c, 0x0e00c8070d00e801, 0xff00b5000c00ba02, 0xcd1dd7ffbaaffafe, 0x27d5ff00c3070ebb, 0x12bb3916adff3bcf, 0xff00d5010c00da00, 0x07c923ff3b9d8293, 0xa4f0ff00e3000c3d, 0x113d024c84ff3d8c, 0x0e00fe9204010c01, 0xbb02cb2cff00f902, 0x079304bbf98e6cff, 0x23ffbcbed323ff01, 0x0c011e070ebbad16, 0xbd0cb99aff011900, 0x270a0eba8c1fa7ff, 0x95ff3d1f3d59ff01, 0x0e01bc130e3b6a39, 0x0f0158010c017800, 0xff0145b604014a00, 0x47266effbb6018d9, 0x63d6ff0153110bbc, 0x12bb94a3a5ff3974, 0xff01658205016a01, 0x2947e0ffbd5e948f, 0x8e92ff01731706bc, 0x12bae06598ffbbf0, 0x0e018ea204019c00, 0xbb8c324eff018911, 0x97140bbd0cbae1ff, 0x99ffbb5ac955ff01, 0x0601ae140b3b8ee7, 0x3b64654bff01a900, 0xb79e04b941a45bff, 0x79ff391a0746ff01, 0x060204010839d3f8, 0x0d01d6020701e412, 0x3b3de3f2ff01d106, 0xdf0e0bbbe5e01dff, 0xc6ffba8b4382ff01, 0x0501f6bc043c82ce, 0xbd606564ff01f101, 0xff000fbc64a075ff, 0x41ff3c4c4418ff01, 0x0402280c06bb1ca3, 0xff02159904021ac2, 0xdbb614ff3ca20155, 0x22ceff022300063b, 0x0dbd979199ff3d5b, 0xff02350f06023a05, 0x26bc91ffbce7ab20, 0x6b52ff02430f06bc, 0x0ebb6436a1ff3c38, 0x0502dc8805036812, 0x0702787f05029886, 0xff02650002026a02, 0x869298ffbb1089cc, 0x2899ff0273001139, 0x05b7d43931ffbbd1, 0xff0285070e028a81, 0x121540ffbc07c355, 0xece5ff0293070b3c, 0x08bbd4dc73ff3c17, 0x0502aec50402bc01, 0xba92da52ff02a987, 0xb7c6043c4d8af2ff, 0x0bffbcd324b9ff02, 0x0202ce0d0ebbbabd, 0x3c183dc0ff02c900, 0xd700123a8d1993ff, 0x4dffbca254eeff02, 0x040324060d3cbad1, 0x0502f600020304c6, 0x3d01f83aff02f18c, 0xff8b053b4a8e90ff, 0x4affbbf093c9ff02, 0x0e031601113b4c3c, 0xbc8a2419ff03110d, 0x1f010c3ad0d81aff, 0x13ff3a9b3c25ff03, 0x02034889053cdf17, 0xff03350b0b033a00, 0x986777ffba9d2581, 0xbfb1ff0343c6043c, 0x043b481f6affbc6c, 0xff0355c404035acb, 0x8be66cffbba9c115, 0x0355ff03630d0e3b, 0x0b3c02c2f0ffbc84, 0x0403b4020703f80e, 0x0403860b0b0394c9, 0x3a0e5a45ff0381c7, 0x8f0009bcb61a68ff, 0xf4ffbd8379b7ff03, 0x0b03a615063ca7d6, 0xbba40f69ff03a10b, 0xaf000c3cf8ef3dff, 0x80ff3caaef05ff03, 0x0b03d888053dc877, 0xff03c5c50403ca05, 0x0e5ff1ffbd117810, 0xa300ff03d30008bc, 0x0dbb8a1f9dff3c95, 0xff03e5c50403ea06, 0x1f3dacffbd7cbd78, 0xe8f7ff03f30b0bbc, 0x0cbd13d781ffbc00, 0x0504200207044000, 0xff040d0007041279, 0xee1620ff3c0fcb54, 0x3c6fff041b7f05b9, 0x08bc4c0ca6ffbd33, 0xff042d2b05043201, 0x046046ff3bf2f09b, 0x808bff043b060d3d, 0x023bcac1e0ffbbc8, 0x040456140e046400, 0xbd3e33adff0451cb, 0x5f13053d3434a3ff, 0xefff3d03f59eff04, 0x07047601093b7944, 0x3d02e62eff047101, 0x7f8a053b9a6941ff, 0x38ffbcb83904ff04, 0x0406c457053c15a6, 0x01051c021105a8a5, 0x0504b8920404d837, 0xff04a5360104aa4b, 0x170d8dff3893490c, 0xc8c6ff04b34d053b, 0x0eb9c94db3ffbbc4, 0xff04c5170e04ca19, 0x04737effbd15df8e, 0x58b9ff04d3070d3d, 0x03bcf8d1a1ff3ab7, 0x0d04ee110b04fc1b, 0x3ce622f7ff04e900, 0xf714053bc0b6dfff, 0xf3ff3ac76347ff04, 0x01050e1e033d151c, 0xbc033479ff050938, 0x175205bd3bc59fff, 0x53ffb78daef0ff05, 0x0505646a04bb0563, 0x0e05363504054412, 0x3b8880c5ff053117, 0x3f170ebc13a4a3ff, 0xd9ff3cde77e1ff05, 0x050556260139e588, 0xbdb1b960ff055145, 0x5f000cbd9b7268ff, 0xa4ffbc58f220ff05, 0x04058800063da10d, 0xff05756c04057a6d, 0xb590feff3c5f28fb, 0xdb00ff058335013d, 0x063cde9f13ffbbb9, 0xff0595000c059a07, 0xb95748ffbb8e5f39, 0x8284ff05a30b05bd, 0x0e3c9a3c32ff3d7a, 0x0605f4060d06381d, 0x0605c61c0e05d403, 0x3aadef24ff05c100, 0xcf0006bd25651aff, 0x17ffbd89bae6ff05, 0x0605e6000fbc02c8, 0x3c719b61ff05e10a, 0xef0d063a807f28ff, 0x16ffbbb8d0e1ff05, 0x1206181a0e3a81bf, 0xff0605070d060a00, 0xb71a88ffb91083b9, 0x6cbcff0613170e3c, 0x0d3de0179bff3c90, 0xff06250002062a07, 0xead957ffbdada223, 0x89ceff06330c0bbc, 0x053dff6d9fff3d21, 0x0406601f0e068056, 0xff064d04060652b7, 0xa449e3ffbd1684fa, 0xb72dff065bba043b, 0x05ba94244cff3d53, 0xff066da704067253, 0x51fe30ffbc3d7391, 0x148cff067b2c0e3a, 0x0e3bd39080ffbaef, 0x1206961e0e06a41f, 0xba6bdcc3ff069100, 0x9f00073cad63c6ff, 0xf8ff3de431eeff06, 0x0e06b600023cf57a, 0x3c566712ff06b12b, 0xbf060dbb9f4a21ff, 0x37ffbc4c71c1ff06, 0x0507e401073c2458, 0x0407140007075887, 0x0b06e6020806f4bb, 0xba9dfa55ff06e101, 0xefab0438c5351dff, 0x63ff3afbaa54ff06, 0x0e07067505bbade8, 0xbbba000dff070122, 0x0fc204bb3c1b80ff, 0xdbff3ae27993ff07, 0x0d07388605bb4538, 0xff0725170e072a00, 0xb40a78ff3d86abea, 0x244aff073301083b, 0x0e3a95d528ff39e7, 0xff0745cb04074a1f, 0x5a8954ffba9f7360, 0xe8e4ff0753040d3d, 0x04b9b1856fff3c8a, 0x040780040d07a0cc, 0xff076d220e077291, 0xea7b5bffb98f0a5a, 0x1cadff077b030dbd, 0x0dbce3dcb4ff3b8e, 0xff078daf04079205, 0xb0b9c0ffbda96097, 0x4655ff079b310e3d, 0x0e3c84f749ffb94c, 0x0807b6000c07c419, 0x3cd2c4a0ff07b100, 0xbf0007bd1d1e26ff, 0x05ff3c268677ff07, 0x0807d6000fbc7d5f, 0x3cedbc17ff07d101, 0xdf1c0ebce9fb85ff, 0xd7ff3d35be07ff07, 0x0b08740207390fa6, 0x0c0810170e083010, 0xff07fd5d05080201, 0x8b947dff3bdf40c0, 0xde19ff080b61053b, 0x0bbb7102d3ff3bed, 0xff081db00408220b, 0xaa0e78ffbb0aeb9f, 0x889cff082b0e0b3a, 0x053b06d432ffbc62, 0x0408465f05085482, 0x3ac13b48ff0841c4, 0x4fc6043c71fc48ff, 0x24ffbbaeb897ff08, 0x0e0866830539f532, 0x3c9879abff086126, 0x6fcd04bca41241ff, 0x45ffbb700ac7ff08, 0x0d08bcc3043c390b, 0x0e088e310e089c01, 0xbc7ce1cdff08892b, 0x97330e3cb62ce0ff, 0x20ffbdcbc1a9ff08, 0x0f08ae110b3cf6e4, 0x3bbafd9dff08a900, 0xb70002bab44dddff, 0xa3ffbbdec6f8ff08, 0x0508e05d053bcca3, 0xff08cd010808d25b, 0xf2b8c5ff3cf78d3d, 0x7806ff08db00083b, 0x05bbadb0d5ffbd4c, 0xff08ed5f0508f260, 0x321bcdff3c9b62b2, 0xb84fff08fbc804bc, 0x0e3afd8349ffbb87, 0x020b17040d0d530e, 0x04099376040a0d00, 0x0809388e05095869, 0xff0925020d092a00, 0xb73d8cff3c53f885, 0x4a00ff0933020e3c, 0x12bba32a80ffbbc1, 0xff0945000b094a01, 0x278d1dff3a2c71e2, 0x2140ff0953000e3c, 0x04bc5fcb06ff3bcc, 0x0d096e900509736b, 0xbd77a8c8ff096900, 0x13e4ffbdb94689ff, 0x730409858e05be2d, 0xff3cd48094ff0980, 0x098e7004bcdc02c0, 0x6129ffbc41f0cdff, 0x020e09c97704bcfe, 0x000709ad030b09b2, 0xff3d4bb430ff09a8, 0x0d3fb0ff3d714f60, 0xbf000809c4030b3d, 0x80ff3cbee9b5ff09, 0x3d519400ff3bb452, 0x09df011109ed9704, 0x14baa5ff09da000b, 0x8f05bc49a543ff3c, 0xffbb429e24ff09e8, 0x09ffa7043bf356d0, 0x51bf80ff09fa0008, 0xaa043c90c8ceffbc, 0xff3c4fdc67ff0a08, 0x0a9d00083a995e49, 0x0a398a040a59b104, 0x0a2687040a2b8804, 0xe33eff39d7cf33ff, 0xa0ff0a34030bbc0c, 0xbd73fa88ffbd319f, 0x0a4601110a4b000d, 0x801fff3c1068b4ff, 0xb7ff0a549c04bcac, 0x3b7643f7ff3c3b12, 0x0a6f020d0a7db904, 0x6ecddaff0a6a9605, 0x080ebc9be943ffbb, 0xffbdc4ed70ff0a78, 0x0a8f0009bddef258, 0x7c6951ff0a8a9605, 0xbb043c807ff1ff3b, 0xff3c45a2f6ff0a98, 0x0ad3a004bbcc4683, 0x0ab7080e0abc9104, 0x4ebdb7ff0ab20007, 0x90ff3c42634cffbb, 0x0e0ace020d3d3fe4, 0xbd5c3cfaff0ac907, 0x9380ffbd0ffdc4ff, 0x02070af7030b3c87, 0x7dff0ae4020b0ae9, 0x3c191deaffba6a52, 0x1eb8baff0af20108, 0xa704bd546288ffbc, 0xeeff0b0401080b09, 0xbd11bec8ffbbc285, 0x7f2d49ff0b129205, 0x000fbbfa8c4aff3b, 0x090e0bab030b0c37, 0x70040b4772040b67, 0x83ff0b34000e0b39, 0x3d04e06cffbbafe1, 0x7fa188ff0b42000c, 0xb904be347adfffbc, 0x47ff0b5473040b59, 0xb96af014ff3d8af8, 0x7036c4ff0b62070e, 0x01093d1d8268ff3b, 0x010b0b7d00090b8b, 0xffbbadbd80ff0b78, 0x0b8696053c0df254, 0x2ca5ffbbd693fbff, 0x0d0e0b9d9505bd7e, 0xffbd77a61dff0b98, 0x0ba60d0e38bf8666, 0x8fccffbe1e354eff, 0x91050bf30007bd8a, 0x90050bc5040b0bd3, 0xffbd5e469bff0bc0, 0x0bce94043c65efa6, 0xe4deff3c36e832ff, 0x92050be5070b3b1b, 0xff3d080a23ff0be0, 0x0bee9904badf13ed, 0xcbe8ffbd0bf452ff, 0x72040c177f04bae5, 0x12ff0c0490050c09, 0x3d07db10ff3b13d2, 0xf3f338ff0c12050b, 0x9205bdaff9e8ffbc, 0x61ff0c240a0b0c29, 0x3871b82affbc5739, 0x6b0a5bff0c32070b, 0x0009bb03818dff3c, 0x00120c8300070cc7, 0x00020c558e050c63, 0xffbbf14085ff0c50, 0x0c5ec6043b915e9b, 0xf4cbff39ee8801ff, 0x000c0c7593053abc, 0xff399f851fff0c70, 0x0c7e0b0b39df2b9a, 0x1115ffbaafd752ff, 0x070d0ca7030b3acc, 0x77ff0c9401110c99, 0x3a03b149ffbac5da, 0xe6c2d4ff0ca20d0e, 0x8e053cb5edd1ff3b, 0xe2ff0cb4bc040cb9, 0xbb3f98b8ff3b38dc, 0x20c258ff0cc2000c, 0x010cbab831a1ff3a, 0x0b0b0cef070e0d0f, 0xf5ff0cdc8f050ce1, 0xbaa54a08ffbb8931, 0x48e0e8ff0cea060e, 0x0b0ebba64418ff3a, 0xd0ff0cfc070b0d01, 0x3c155c34ffbb62a8, 0xd24f8eff0d0aac04, 0xbc04ba912f16ffbb, 0xbb040d2590050d33, 0xffbb17f970ff0d20, 0x0d2e030bbcd961f1, 0x9d7fffbb515e60ff, 0x0a0b0d4502093bd6, 0xffbb9cf845ff0d40, 0x0d4ecc043c17e457, 0x6a11ffbaae4908ff, 0x000f0f81010cbcaf, 0x060d0dd9020b0e65, 0x00020d8700090da7, 0x59ff0d74010b0d79, 0xbd56f36effbadd59, 0x10f04eff0d82b004, 0xb8043c1deffcffbc, 0xc1ff0d94b1040d99, 0x3d044924ffbc7111, 0x0081eaff0da29305, 0x00073c02f538ffbd, 0xc0040dbd00080dcb, 0xff3dcc9d50ff0db8, 0x0dc6c0043dd3b768, 0xbee0ff3d9bced8ff, 0x20ff0dd4c0043da1, 0x3ce77bc0ff3ccd1a, 0x0e01230e0e21280e, 0x0dee00020df31f0e, 0xf54cff3b17fa28ff, 0x56ff0dfc020dba13, 0xbc177ffcff3ab54a, 0x0e0e250e0e13260e, 0x1930ff3c2102adff, 0x74ff0e1c030bbd75, 0x3c9d0fbdff3d89ea, 0x0e37c4040e45c504, 0x6d8f2cff0e322a0e, 0x300e3c265aeeffbc, 0xff3e0a26c7ff0e40, 0x0e57c7043c9bc460, 0x000d29ff0e520002, 0x000dbd3221c7ffbb, 0xff3d8ca8f1ff0e60, 0x0ef52c0e386db2dc, 0x0e910e0b0eb1280e, 0x0e7eba040e83be04, 0x9e43ff3ada85fbff, 0x17ff0e8c0b0bbb23, 0xbc74fd47ffb8c91c, 0x0e9e100b0ea38e05, 0xe0a3ffbca8485fff, 0x5dff0eac180e3bb2, 0x3aeee28affbb5038, 0x0ec7bd040ed58e05, 0x61669cff0ec2030b, 0x030bbcd442d9ffbb, 0xffbb53f746ff0ed0, 0x0ee7cb043c552936, 0xb367e7ff0ee2060d, 0x0008bc4a92beff3b, 0xff3b0451f7ff0ef0, 0x0f3d0108bbb9d355, 0x0f0f350e0f1d050b, 0x604181ff0f0a9305, 0x00073c1261b2ffba, 0xff3cb819abff0f18, 0x0f2f000c3d115f6c, 0x4c55e8ff0f2a8e05, 0x0009bbbf2b52ff3c, 0xffbc90e7b7ff0f38, 0x0f612d0e3c16ccc1, 0x0f4e00070f53cd04, 0xa0a0ffbcb52fb2ff, 0x50ff0f5c000c3bb9, 0x3dd5f83dff3d21d7, 0x0f6e02080f730007, 0xe773ff3acd8ce3ff, 0x70ff0f7c2f0e3ca8, 0x3ce3b020ffbbb9f2, 0x100c1d0e1086200e, 0x0fa8b9040fc8ba04, 0x0f9e0f0e0fa30111, 0xb646ff3d3f5814ff, 0x0e3ce324e4ffbc9f, 0xff0fb500080fba12, 0x8c4990ffbaae3ac5, 0x6133ff0fc300093c, 0x04bd12fe44ff3d54, 0x0e0fdebb040fecbd, 0x3c1e3a35ff0fd915, 0xe7120ebc4ae973ff, 0xe8ffbd9e85c2ff0f, 0x0e0ffebf04bb6257, 0x3cf34f4dff0ff919, 0x07c104bbb33f88ff, 0x50ffbbf379c1ff10, 0x051054cd04b7bce2, 0x0b10260007103492, 0xba406eaeff102105, 0x2f01073cd38cc4ff, 0x30ffbbb29b80ff10, 0x041046030bbdb29d, 0xbb477180ff1041ca, 0x4f0b0bbcbe4676ff, 0x20ffbda40560ff10, 0x07106f9305bbbe09, 0x3dfe2e40ff106101, 0xb598b4ff106a0207, 0x00123d5d4bb0ff3d, 0x8bff107c00071081, 0x3d3fe070ff3d2985, 0x0400073cb34358ff, 0xa9940510c0001111, 0x9f030b10a4930510, 0xa2ff3c53bee7ff10, 0x3d187827ffbc570a, 0x10b6000210bb230e, 0x797cffbd399ec4ff, 0x0e3d667d63ffbe15, 0x0410d6000210e422, 0x3d8ad367ff10d1c6, 0xdfcb04bd8098f7ff, 0xd3ffbc9296f4ff10, 0x0910f6250e3db713, 0x3c8b67ffff10f100, 0xff2c0ebca2cb52ff, 0xacffbb910fc3ff10, 0x04114c2a0e3b95e8, 0x0e111e8e05112ccb, 0xbd35f78dff111922, 0x27220e3d1a9ac2ff, 0x75ffbbb1480bff11, 0x05113e0008bd1a3a, 0x3c868057ff113990, 0x4700023d1938afff, 0x98ffbc2e9ec9ff11, 0x0711700b0b3c8994, 0xff115d2b0e116201, 0x106c68ffbc9bb2dc, 0x5e2eff116b0002bc, 0x08bbe10255ff3c8a, 0xff117d0002118200, 0xa77955ff3cf5081a, 0x0013bb9d8a80ff3c, 0x03e8000000080000, 0x1124000000010000, 0x8d05000000000000, 0xc304044e160e08b8, 0x9704012c98040248, 0x8804005c900400a0, 0x8805002e8604003c, 0xff378f59f2ff0029, 0x0037070db98e118d, 0x3d97ffba0ef91aff, 0x060e004e040d3cb1, 0xffbc4a5cfeff0049, 0x00575105bb0f1396, 0xcb4eff3b175957ff, 0x060d00809104b9da, 0x3aff006d00090072, 0xbbfba4d8ff3ae1f3, 0xc52be8ff007b070b, 0x090ebbaca9ccffbc, 0x29ff008d070e0092, 0xbc6338d2ff3b371c, 0xd21104ff009b0a0e, 0x8b053b0193e5ff3c, 0x3d0500c83e0100e8, 0x3aff00b5000800ba, 0x3cb2c27bffbdc4af, 0x2fb632ff00c30008, 0x0209bdc0d7ebffbd, 0x47ff00d5310300da, 0x3a3ab227ffbca41d, 0xa901aaff00e37605, 0x0a0bba9d7892ffbc, 0x001100fe0111010c, 0xff3bf6732bff00f9, 0x0107030bbc12a8f3, 0xc800ff3d88a5b0ff, 0x0002011e000c3bc6, 0xffbc70674dff0119, 0x01278c05bd8af59a, 0x0ed4ffbd6a663aff, 0x9c0401bc0002bcb8, 0x040e0158050e0178, 0xa0ff0145000c014a, 0xba4254bcff3c3e14, 0x092674ff01530009, 0x060ebb80b92eff3d, 0x3aff01650011016a, 0x3bc753beffbd4580, 0xc3abd0ff0173070d, 0x0a0b3cb9b64effbb, 0x9d04018e050b019c, 0xff3c218758ff0189, 0x0197020dbb3be82f, 0x021effbd0a8528ff, 0x110b01ae75053c43, 0xffb82467c3ff01a9, 0x01b7010c3af40d82, 0x9f05ff38d7d588ff, 0xbe040204070d3b5e, 0x150e01d6ad0401e4, 0xffba475fffff01d1, 0x01df0008bc44c4ad, 0x7f86ffba82c35aff, 0x000c01f6020b3a06, 0xffbb81d590ff01f1, 0x01ffc204bc8e828f, 0xda0bff3b487763ff, 0xa60402280009bbe4, 0x42ff0215a304021a, 0xbd3ff249ff3aface, 0xd8cca7ff0223ad04, 0x7105bbb5c465ff3c, 0x0cff02350109023a, 0xbd4c1d3effbc78ae, 0x6def27ff02430e0e, 0x120e3d0091afffbc, 0x860502dc88050368, 0x020702787f050298, 0xbaff02650002026a, 0x39723a1cffbb0215, 0xffec0aff0273070d, 0x84053d244953ffba, 0x62ff0285060d028a, 0x3b6f64d7ffbbb6d3, 0x8f55e3ff02930208, 0x0108bd04408affbb, 0x080e02aec50402bc, 0xff3c2fc9a7ff02a9, 0x02b7c604bae1fcc4, 0x1083ffbcbe0773ff, 0xc60402ce0d0ebba8, 0xffb956325dff02c9, 0x02d700123bbcc056, 0x22c8ffbc921940ff, 0xc6040324060d3ca8, 0x8c0502f600020304, 0xff3ce9f202ff02f1, 0x02ff00073b364d10, 0x6649ff3c0bb14bff, 0x0d0e03160111ba31, 0xffbc78a756ff0311, 0x031f010c3abbf5c4, 0xc7f6ff3a8bb625ff, 0xc904034889053cc8, 0xf9ff03350002033a, 0xbc6d7c94ff3beb6d, 0x5dd95aff0343000c, 0xcb043c5668a1ffbc, 0x12ff0355ca04035a, 0x3cb953e3ff3a277c, 0x059a0cff03630007, 0x0209bb69a88dffbd, 0x020703b4130b03f8, 0x0b0b0386c9040394, 0xffba364730ff0381, 0x038f4605bcf1e4ac, 0xd1e8ff3c95b5a5ff, 0x140603a68805ba9d, 0xffbabf8bfaff03a1, 0x03af060dbcbacfc8, 0xb19fffbd115603ff, 0x020703d8000cbc3f, 0x01ff03c5c70403ca, 0xbca133adffbab685, 0xa96bd2ff03d30108, 0xc5043a5782a5ff3c, 0x44ff03e5060d03ea, 0x3d09f3dfffbbabc7, 0x42539eff03f30002, 0x01123c233ad1ffbb, 0xc7040420070d0440, 0xb2ff040dc5040412, 0x3bcec74affbcd5e2, 0x36e9d1ff041b8705, 0xc504bc38f816ffbd, 0xdaff042d050b0432, 0x3d1039d6ff3d0dc5, 0x7b0928ff043b0002, 0xc5043cbcf8deff3c, 0xffbcf1e440ff0449, 0x067c5705bdc7d2e8, 0x04e602110569a504, 0x0482920404a23701, 0x046f360104744b05, 0xf29fff38848e90ff, 0x90ff047d000b3b07, 0xba84fd9cffbda859, 0x048f140b04942b0e, 0xa7d0ffbb853dd9ff, 0xc9ff049d01123c10, 0x3b5e8399ffbbcee1, 0x04b8190304c6a404, 0x92ca2fff04b3110b, 0x230e3cea18a9ff3b, 0xff38487ae6ff04c1, 0x04d80e06baf3dbfe, 0x8617bdff04d30008, 0x200e3c8f99bdffbb, 0xffbc7b7799ff04e1, 0x052e0212bcf712bf, 0x05006a04050e170e, 0x3bd6d3ff04fb1205, 0x000cbc59ffa6ff3c, 0xff3cefa94eff0509, 0x05200b05bc14e9ba, 0x940406ff051b070b, 0x02083cef9096ffbb, 0xffbcfc6a1bff0529, 0x054926013d115f2d, 0x053f1b0305444505, 0x4705ffbd994ce2ff, 0x04bd8be6f8ffbda3, 0xff05563401055b4f, 0x0b53e6ffbd844ad3, 0xfbf1ff05645305bd, 0x0e3998f400ff3d48, 0x0e05b5000605f91b, 0x040587510505951a, 0x3ca5004aff0582b9, 0x905205bbffd011ff, 0x49ffbd196c0dff05, 0x0b05a70b0b3c06d1, 0xbca7a15fff05a203, 0xb0010cbd74a00dff, 0xe4ffbdd7562eff05, 0x0e05d90706be2270, 0xff05c6011105cb19, 0xce9b7bffbcf96356, 0x7319ff05d43905bb, 0x11bd9dd967ffbe36, 0xff05e6b30405eb01, 0x1bf024ff3ba23209, 0xb0dbff05f4030dbc, 0x0e3c92284bff3b95, 0x040618001106381c, 0xff060e00020613c3, 0x00fd25ff3d7286e7, 0x4f05bda860e0ff3d, 0x8eff06254d05062a, 0x3dcc5cf9ffbb9fc4, 0xc4ab4eff06335005, 0x5105bab22b4dffbd, 0x2a0e064e0011065c, 0xffbbbff241ff0649, 0x065750053bc6388d, 0xb762ff3933c9dfff, 0x1d0e066e00123cd9, 0xffbd86c582ff0669, 0x0677010bbb9ec9e4, 0xb801ffbc6680d7ff, 0x8705079c0107bac4, 0xbb0406cc00070710, 0xba04069e010c06ac, 0xffb9bc1bdaff0699, 0x06a7170ebbe221fc, 0x0d6effbc45d2b4ff, 0x220e06be75053bb7, 0xffbba76685ff06b9, 0x06c70111bb294bfe, 0x9fa7ff3a7f1368ff, 0xb50406f08605bc0a, 0x6fff06dd090b06e2, 0x3a287e2dffb7bb06, 0x0892d0ff06eb0208, 0x1d0ebb192e34ff3b, 0x4fff06fd190e0702, 0xbc2b8c86ff3a7f15, 0xb4f596ff070b0112, 0xcc04bb7a4a47ff3b, 0x8c05073800080758, 0x71ff0725cb04072a, 0xbb89a1d7ff39d8b8, 0x047ae1ff0733060d, 0x010cbab1a680ffbb, 0xd2ff0745bf04074a, 0x3985a1b7ff3ab81d, 0x285549ff0753140b, 0x8a053d178133ffba, 0x230e076e8905077c, 0xffbc5f0264ff0769, 0x0777280e3b72df5a, 0x2604ff3d1ab91cff, 0x0109078e0208baa9, 0xff3a6b1554ff0789, 0x0797010cbc4ab86d, 0x7193ffbbc2adabff, 0xc104082c0207bd6f, 0x230e07c8b70407e8, 0x5aff07b5060d07ba, 0x3b69937dff37a152, 0x595e27ff07c3280e, 0xb804b9899a45ffbc, 0x13ff07d5230e07da, 0x3cad5531ff39b7da, 0x00a300ff07e3000f, 0x0208bb112e8dff3c, 0x090b07fe0012080c, 0xffbc206b93ff07f9, 0x08075b053b8e5ea0, 0x8152ff3cbd6e59ff, 0x220e081e5c05ba9e, 0xffbc89ffefff0819, 0x0827000f3c122c46, 0xd6d7ffbc9ce714ff, 0xc2040874c304bbad, 0x010c084667050854, 0xffb990ac14ff0841, 0x084f320e3a83bc98, 0x116fff39fea102ff, 0x270e0866060dbb6a, 0xffbcac4803ff0861, 0x086f250e3c0df07d, 0xecdfff3c640d59ff, 0x5f0508986205bda8, 0x82ff0885c404088a, 0x3c36c476ffbd0295, 0xb0072eff0893c804, 0x68053bfe1015ffbc, 0xc4ff08a5010808aa, 0x3aa0ed95ff3cf07d, 0x18e529ff08b3cd04, 0x0e0e3c2be1c4ffbb, 0x90040ae1020d0d1d, 0x070e0954020709c5, 0x040b08f0060e0910, 0x38ff08dd5c0408e2, 0xbb919732ff3b1abc, 0x05b52fff08eb8804, 0x030b3c897079ff3b, 0x2cff08fd00090902, 0xba8ef897ff3c728d, 0x9f16dbff090b7d04, 0x000c3b073130ffbc, 0x000f092695050934, 0xff3b203764ff0921, 0x092f0111bc988e36, 0x29b6ff3c197d91ff, 0x85040946080ebd28, 0xffbb67aa5cff0941, 0x094f8b04bcc977de, 0xe681ff3c4863d2ff, 0x000f0981000ebd02, 0x7804096e050b097c, 0xff3ba8b8ebff0969, 0x09777804bb7b8eba, 0xa3b4ffbc154c31ff, 0x113cb69016ffbc6e, 0x0e0997930509a501, 0x3aee15e0ff099202, 0xa0020ebc1888cfff, 0x84ff3ca61e7cff09, 0x0509b7020e3ce0ee, 0xbc9b15c0ff09b293, 0xc0030bbc7a56b0ff, 0x02ffbd1f0997ff09, 0x040a559205bdb46f, 0x0409f197040a119c, 0xff09de000909e396, 0xd433beff3c0397ac, 0x5cb6ff09ec0009bb, 0x023c8c87e8ffbd20, 0xff09fe00090a0300, 0xe9b0a6ff3c01f978, 0x5983ff0a0c0008bd, 0x04bc984dc0ff3cdf, 0x040a279e040a35a7, 0xbdf0171bff0a229d, 0x309f043b4e695bff, 0xeeff3d63cfd8ff0a, 0x080a47c004bbe9d3, 0xba91f0c0ff0a4201, 0x5000023c16fedcff, 0x51ffbdd65e38ff0a, 0x110a9d9604bbda4d, 0x0b0a6f0a0b0a7d01, 0x3bd031fcff0a6a01, 0x789505bb443398ff, 0x96ffbcf102d6ff0a, 0x0e0a8f030bbc8d96, 0xbbe77832ff0a8a02, 0x98020e3c85e1f4ff, 0x92ff3d3b1d57ff0a, 0x0d0ac1070e3b818f, 0xff0aae00020ab300, 0x3136b7ff3d9faa20, 0xf36dff0abca0043b, 0x0bba0f38eeffbc60, 0xff0ace00090ad301, 0x0446b7ffba0dc89c, 0xb697ff0adc040bbd, 0x11ba5137b8ff3bdc, 0x0c0b75bd040c0100, 0x080b1190050b3100, 0xff0afebc040b0300, 0xac82f3ffba85d6f8, 0x0d63ff0b0c070bbc, 0x043b6977fbffbb46, 0xff0b1ea0040b23ab, 0x7dea05ff3b76acdc, 0x7281ff0b2c0b0b39, 0x0ebb31711fff3ad8, 0x040b47030e0b5507, 0xba56072bff0b42bc, 0x50040bbce1735dff, 0x0affbc12aba8ff0b, 0x040b67080e3cae7e, 0xbc9ad5fcff0b62ba, 0x70090e3cd9e36aff, 0x6aff3dac12dbff0b, 0x0e0bbdbe043afc45, 0x0c0b8f00090b9d08, 0xbcdfe202ff0b8a01, 0x98030ebd90f832ff, 0xe4ffbaea62a6ff0b, 0x0c0baf00023c805c, 0x3a29ae6bff0baa00, 0xb800093d6f0547ff, 0xa4ffbcf726c0ff0b, 0x040be1c1043d1404, 0xff0bce8e050bd3bf, 0x007e18ff3b941450, 0x064fff0bdc00023d, 0x09bb521835ffbc9b, 0xff0bee00090bf301, 0x49cec2ff3996ad5b, 0x510bff0bfc90053b, 0x0538f97c09ffbc03, 0x040c4d000f0c918e, 0x0e0c1f94040c2d97, 0xbb221747ff0c1a0d, 0x2800073d64ba45ff, 0x7dffbe401fe8ff0c, 0x070c3f9904bd9cf3, 0x3d0728e8ff0c3a00, 0x489b04bc5d9f72ff, 0xb9ffbdb6449dff0c, 0x0b0c71000c398007, 0xff0c5e01080c6303, 0x1fee97ffbb25c6c8, 0xa74bff0c6c050ebc, 0x043b90b8b8ffb92f, 0xff0c7e060d0c83a6, 0xce9177ff37ada597, 0x6f52ff0c8cb4043c, 0x053b39e72effbbcd, 0x0b0cb9060d0cd98f, 0xff0ca6ad040cab0c, 0x7ceecbff3ab3e4f6, 0x12afff0cb4c804bb, 0x04bce7fe58ffbb0a, 0xff0cc600090ccbc0, 0x826b72ff3bf3a091, 0xbadaff0cd4c104bb, 0x0f3b4c8df7ff3d35, 0x070cef92050cfd00, 0x3b23197dff0cea00, 0xf86704bbc22d42ff, 0xfbffbe00b8c4ff0c, 0x050d0f070eb8eb96, 0x3a0c47b9ff0d0a94, 0x18cb04b79d74efff, 0xbcffba28c4a5ff0d, 0x0f0f4b010cbb95c4, 0x0d0da3020b0e2f00, 0x040d51bf040d7106, 0xff0d3ea6040d43b1, 0x9714d6ff3b9a7294, 0xf970ff0d4cb404bc, 0x0e3bc6f42dff3cf8, 0xff0d5e010b0d6331, 0x183d07ffbb8557c0, 0xf0b3ff0d6c020dbd, 0x073dc318b4ff3cb4, 0x040d8700080d9500, 0x3db82730ff0d82c0, 0x90c0043dbe8b78ff, 0x30ff3d8c3a28ff0d, 0xff0d9ec0043d9192, 0xd055c0ff3cb89780, 0xcb240e0deb280e3c, 0xb8220e0dbd050b0d, 0x3cffbbb36dceff0d, 0xff0dc6060d3c157b, 0x335ce6ff3b5b3dab, 0xd8250e0ddd260ebd, 0xb0ff3bca28daff0d, 0xff0de6030bbd5c96, 0x8d5afdff3d783f94, 0x012d0e0e0f350e3c, 0x9fd4ff0dfc00020e, 0x0ebc289325ff3aca, 0x3d5861d8ff0e0a2f, 0x210107bb0f75b8ff, 0xdd7cff0e1c00070e, 0x0e3ca8eca8ffbcd1, 0xbdf16832ff0e2a36, 0xbf2b0ebd467a28ff, 0x5b120e0e7baf040e, 0x480f0e0e4d9b040e, 0xfbffbcff0e90ff0e, 0xff0e56060d3c2f55, 0xec9ae4ff3cdf324f, 0x688f050e6d130eb9, 0x73ffbcd90af6ff0e, 0xff0e760002bc01c4, 0x59130affbb87a09f, 0x91bd040e9f1d0e3b, 0x07d4ff0e8cba040e, 0x05bb9c123dff3aec, 0x3a58c17dff0e9a8f, 0xb19405390cd736ff, 0xbf65ff0eac0a0b0e, 0x0b3ab9024cffbadb, 0x3983f909ff0eba0b, 0x070108bc309ba8ff, 0xd9350e0ee7050b0f, 0x1927ff0ed493050e, 0x073c11cb69ffba1a, 0x3ca5b0b4ff0ee200, 0xf9000c3d02d5e1ff, 0xcefcff0ef48e050e, 0x04bb99e184ff3c52, 0xbcaad947ff0f02cd, 0x2bcd04bbe9b0f2ff, 0x18cc040f1d030b0f, 0x0aff3b290fa5ff0f, 0xff0f2600073c1cb7, 0xa71080ffbc8fff16, 0x38000c0f3d2d0e3b, 0x40ff3d003681ff0f, 0xff0f4600073d91e0, 0xc72832ff3b96638b, 0xcdc104105901083c, 0x7bc0040f9b060d0f, 0x68bd040f6d170e0f, 0x68ff3b104f99ff0f, 0xff0f76bf043d3074, 0xaf7e99ffbb4c49f7, 0x8800020f8d8e05bc, 0x43ffbcfa3debff0f, 0xff0f9600023ddbef, 0xb40becff3a903df7, 0xb1010b0fb60002bc, 0xc8abff0fac8f050f, 0xffbb87ef10ffb901, 0x0fbf100ebca23988, 0xc8170e3ce3bfebff, 0x00ff3d9d1d06ff0f, 0x0b1015060d3ccd41, 0x110fe792050ff50b, 0x3ac94d34ff0fe201, 0xf09305bc0ed378ff, 0xe6ff3c00804eff0f, 0x0210078e05ba9913, 0x383662beff100200, 0x109105bd38d146ff, 0xfdff3c5aa8e2ff10, 0x0e1039220ebb4880, 0xff10260012102b1d, 0x470bc7ffb93713f6, 0x292bff10340009bc, 0x05bd38a7b3ff3cff, 0xff10469305104b94, 0x0938eeffbba8cceb, 0xa78bff1054230e3d, 0x053d4f70dbffbd72, 0x0210a5000710c58f, 0x1210770b0b108500, 0x3d8a3b5fff107200, 0x80230e3cc70e7cff, 0x10ffbb7c5120ff10, 0x081097cd043cd437, 0x3bc69fdaff109202, 0xa00012bc3cbee0ff, 0xc0ffbd17e9f6ff10, 0xff10ae0012bc222f, 0x10b7c904bd427a3c, 0xc0cd04bca43e50ff, 0xa0ffbb2d72c0ff10, 0x0b10e90012bc1890, 0xff10d6140e10e40b, 0x10df0208bbf833c0, 0x34d8ffbd023bf8ff, 0x0e3c21da20ffbc11, 0x0210ff150e110d22, 0xbd0ea530ff10fa00, 0x080002bd190720ff, 0x17ffbc614333ff11, 0x0b111f00023ccfdf, 0x3cd44a20ff111a0b, 0x8300ffbc40f1a0ff, 0x000800000013bccf, 0x0001000003e80000, 0x0000000010ca0000, 0x150e08f78d050000, 0xc204023f0006047b, 0xb00400a0bf04012c, 0x060e003c070e005c, 0x0dff0029050e002e, 0xbbf41b4bffb81105, 0x8db634ff0037a404, 0xae043d02560fff3b, 0xbbff00495505004e, 0xbaefbf0fffb8806c, 0x97fdaeff00570d0e, 0x0b0e3c47475bffbb, 0x82050072020e0080, 0xffbd3452b7ff006d, 0x007b080ebbbffa5a, 0xca45ff39b7de0eff, 0xb2040092bc04bc5a, 0xff3c5b77e5ff008d, 0x009b0011bb0c5316, 0xac12ff3992a278ff, 0x070e00e8140e3c30, 0xc00400ba001100c8, 0xffbdb4d436ff00b5, 0x00c3030e3c4315db, 0xefa9ff3c3ca527ff, 0x080e00da0e0e3d06, 0xffbca01538ff00d5, 0x00e3070dbb5b36ef, 0xb56bff3c88ec69ff, 0x0107010c000cbc96, 0x18ff00f9000700fe, 0x3b992100ff3d4781, 0x283499ff01070b0b, 0x7e053d945a54ff3d, 0xeaff01197405011e, 0x3de0122eff3e1a83, 0xa8a9cdff01270007, 0x76053d63f2ceff3d, 0xc304016f010701b3, 0xbcff0141070e014f, 0xff014a0007bd26ee, 0x9d5d31ff3e29c874, 0x5c0d0e01610b0b3d, 0x13ffbd22ca9aff01, 0xff016a75053c8b37, 0x7c12b3ff3c34dcd7, 0x85690501936f053d, 0x94aeff0180020701, 0x04bc873034ff3c64, 0x3c8f9776ff018ec8, 0xa50b0bbcb852b4ff, 0x7c79ff01a0020701, 0x05bbf91f83ff3ce8, 0xbcbf81c1ff01ae75, 0xfb77053afa74e1ff, 0xcd0d0e01db000201, 0x84b4ff01c8010801, 0x04b9fd2ebaffbcec, 0xbd2327e6ff01d6c3, 0xed0108bd9e5dacff, 0xe06cff01e8000701, 0x083d99e1ffffbc82, 0x3d077a8bff01f602, 0x1f84053b821ce4ff, 0x0c070e02110e0e02, 0xffffbc134238ff02, 0xff021a060dbabe09, 0xec8afdff3d1a79e7, 0x2c0a0e02310b0eba, 0x8dffb9928167ff02, 0xff023a060dbc8e2a, 0x2a387affbb0150b6, 0xd30706035f0d06b9, 0x6f0108028f000c02, 0x5c6b0502610f0e02, 0x76ff3a958290ff02, 0xff026aa004bbb362, 0x74eb84ff3c68d39f, 0x7c000f02811c05bc, 0x70ff3b97720aff02, 0xff028a050bbb211c, 0x668dfdff3b3f33e2, 0xa5010602b37904bc, 0x9616ff02a0410402, 0x04bcd1b048ffbbac, 0xbb086867ff02ae72, 0xc57c04bc182ac9ff, 0x4119ff02c0011102, 0x0ebd9a521affbbfc, 0xbca71bc3ff02ce09, 0x1b0207bc22a215ff, 0xed020802fb030e03, 0xbee8ff02e8000702, 0x04bad0e1cbffbb44, 0x3bb31715ff02f65a, 0x0d000fbc53fba7ff, 0xfe22ff03089a0403, 0x0e3b82cda2ff3c6c, 0xbbe6094bff031607, 0x3f01083aadd441ff, 0x2c56040331120503, 0x67ff3b440fdaff03, 0xff033a090e3ca114, 0xb5cd2bffbbcf29e2, 0x4cad0403510b053b, 0x00ff3a252479ff03, 0xff035a8c043d1462, 0x44ad82ffbd16c28c, 0xab010703ef5405bc, 0x7d0007038b0f0603, 0xff8dff0378000f03, 0x05bb1caa5eff3ba0, 0x3bd1663eff038653, 0x9d030bbdc1e712ff, 0xf2b3ff0398c00403, 0x053abe459effbb52, 0xbc5ce567ff03a600, 0xcf0208ba3bd04fff, 0xbc000b03c1010803, 0x6affbc0b9263ff03, 0xff03ca02073ba081, 0xcf8802ff3bbf2ac0, 0xdc500403e10605bb, 0x36ff3d45a0b1ff03, 0xff03ea89043aac19, 0x052610ffbcfb9dcb, 0x175d0504370002bc, 0x0413060409000f04, 0x35ff3cad31a6ff04, 0xff04125505bbd7c9, 0xafe5e6ffbbd28434, 0x24bf04042962053c, 0x74ffbd58c8f5ff04, 0xff04326805bbad96, 0xd1fbf4ff3c63d042, 0x4d000f045ba804bb, 0x6ef4ff0448000804, 0x0cbbb68d23ffbca2, 0x3a9d7ad8ff045600, 0x6d030bbbe0bdbfff, 0xf975ff0468000e04, 0x043ba2d14fffbb03, 0x3c9c7353ff0476a9, 0xbbc704bb3a9174ff, 0x13bb04059fc50406, 0xafab0404cf0d0605, 0x9c890504a1a60404, 0x0effb8b18724ff04, 0xff04aa33053b139f, 0xbb4349ffbbccd001, 0xbc001104c145053b, 0x2aff38321edcff04, 0xff04ca130b3ac77a, 0x6cb67affb95ee67b, 0xe5000f04f3160eba, 0x98a0ff04e0120504, 0x06bd3084b5ff3cc8, 0xbba83653ff04ee12, 0x05040dbce68a2aff, 0x7ab8ff0500000205, 0x0dbb9b92c7ff3b56, 0xbcbed9dcff050e05, 0x5b070bbb304722ff, 0x2dc204053b230e05, 0xb266ff0528010d05, 0x08b91ffceeffbcce, 0x3beb4ea8ff053602, 0x4d280ebc3c48b9ff, 0xc73bff0548000f05, 0x06bc47afe6ffbcd0, 0xbbc659dfff05560c, 0x7f00083b8395d4ff, 0x6c170e0571180e05, 0xaeffbc823ed1ff05, 0xff057a070dbdc557, 0xa382cbff38ad5cd5, 0x8c220e0591c004bc, 0xaeffb9f1a849ff05, 0xff059a50053c18fe, 0xe5cc97ffbbf1a51c, 0xeb0111062f1a0eb9, 0xbd0b0b05cb1e0505, 0xa6d7ff05b8020805, 0x08bd246250ffbdd1, 0xbe3ac7afff05c602, 0xdd8905be02c426ff, 0x3c37ff05d8001105, 0x07bcc7094bffbc04, 0x3b84363eff05e600, 0x0f030b3d73fa59ff, 0xfc00070601000906, 0xf8ff3d8ace47ff05, 0xff060a00023cce24, 0xf162bcffbc9d3630, 0x1c01080621020dbb, 0xddff3be5f31eff06, 0xff062a63053d655d, 0x82286cffbd0a5031, 0x570b0b06770e0b3c, 0x44350e0649000606, 0x77ff3b59ee54ff06, 0xff06520008bc8930, 0x8c1f6aff39fb9702, 0x640007066900023c, 0xb8ff3d960fb2ff06, 0xff0672c6043c59c3, 0x39cb89ff3caee95b, 0x8d010c069b200ebd, 0x4de9ff0688000206, 0x083ca81c60ff3d5a, 0x3cda27b3ff069600, 0xad260e3e1c430cff, 0x3365ff06a8001206, 0x02bd18e482ffbbbf, 0x3b53af02ff06b600, 0xdb260e3cf4a349ff, 0x0b0002074f0d0b07, 0xddcd0406eb0b0b07, 0x6772ff06d8770506, 0x08bbf92582ff3a14, 0x3cab1555ff06e602, 0xfd0008bc1cbaf0ff, 0x21ccff06f8001206, 0x0cbd664de7ffbba2, 0xbd0c7a24ff070600, 0x2fc804bd8c8d14ff, 0x1c00090721230e07, 0x2aff3c961476ff07, 0xff072a6c05bc6ef5, 0x279c77ffbe038fc7, 0x3ccd0407410111bd, 0x50ffbb2f731cff07, 0xff074a190ebcd15b, 0xf1ca3aff3c766bb6, 0x77220e0797060dba, 0x64c8040769190e07, 0x3eff3d36c32eff07, 0xff077200023a3344, 0x490cb0ffbcde4f45, 0x84ca040789cc04bb, 0x96ff3cab94c0ff07, 0xff079289053d7e83, 0x7d2309ffbcbf1acc, 0xad230e07bb00113d, 0x3bbdff07a8cb0407, 0x04bb85ba52ff3c6c, 0xbe0c3221ff07b6cb, 0xcd01083c759f6cff, 0xc0f4ff07c8180e07, 0x07bdb42173ffbc52, 0xbcdc1a82ff07d600, 0x6b290e3c8fbff9ff, 0x07001208277b0508, 0xf4010707f9280e08, 0x83ffbcba6effff07, 0xff080201073cb4bb, 0x236b31ff3e1d65ab, 0x147605081900063d, 0x92ff3dba7c05ff08, 0xff0822cb043d1d6f, 0xa02e16ff3b9b1dee, 0x3d8505084b280ebc, 0xd9b2ff0838060d08, 0x0cbc75ad00ff3cdb, 0xbb9ba0acff084601, 0x5d0009bd08a1d9ff, 0xb635ff0858cc0408, 0x093d32b9ffff3d80, 0xbd5c6c90ff086601, 0xb30008bd035724ff, 0x8500120893010c08, 0x9e8cff08802f0e08, 0x0ebbe50e2eff3c85, 0xbba3a343ff088e32, 0xa5060dbaa0c76dff, 0x4560ff08a0110508, 0x05bb9de39cffbdc7, 0xbbc34b3bff08ae74, 0xd7060dbcca86a0ff, 0xc4010c08c9001208, 0xa8ff3d21241dff08, 0xff08d2c8043d94cf, 0x188735ffbbe5cf7e, 0xe4001208e9c8043a, 0x4fffbcd14596ff08, 0xff08f22a0e3d8da5, 0x4db84fffbcfde97a, 0xbd8e050ce7120e3b, 0x54000d09a1020d0a, 0x266c040946820409, 0x1c00080921670409, 0x40ff3c82945bff09, 0x3d638348ffbb9e7b, 0x093373040938030b, 0x2400ffbaed4c00ff, 0xe0ff0941010e3d21, 0xbb3db812ff3c44a8, 0xe02960ff094f0107, 0x6b043d783be0ff3c, 0xc0ff09612f04096f, 0xff096a0002bb1d7e, 0x0b129cffbd3507d0, 0x85030e098a7004bd, 0x2100ff0980000209, 0xffbc1c14c0ff3b84, 0x099c0e0e3cef0130, 0xb017f4ff09979704, 0x74ff3b02d45fffbb, 0x040a31b204bd94ef, 0x1109cdaf0409edb1, 0xff09baa80409bf01, 0xd6d93dff3ad120d5, 0xad4fff09c8070bbb, 0x0dbc90cd75ff3af9, 0xff09da010809df06, 0x2ddb81ffbb281f0b, 0xd9f2ff09e80007bd, 0x0dbbc8d3bcffbd84, 0x090a0300080a1106, 0x3d367826ff09fe00, 0x0c00023cb07435ff, 0x3bff3b4f631bff0a, 0x0c0a2300113cd13b, 0xbccd005cff0a1e00, 0x2c040bbd4ccb5aff, 0x10ffbca6f6d0ff0a, 0x020a79130b3c9fc1, 0x040a4b0e0b0a5900, 0xbbe5c42eff0a46c1, 0x54000c3b9ce8b9ff, 0x54ffbd75c54dff0a, 0x110a6bc704be3af4, 0x3b87f49eff0a6600, 0x74010cb9d329e5ff, 0x1effbbe83a7bff0a, 0x0e0a9d0207bcd05a, 0xff0a8abb040a8f0b, 0x31d530ff3be9009f, 0x2b4fff0a98cb04ba, 0x04bd81c572ffbb2c, 0xff0aaa01110aafc2, 0x051808ffbb657a81, 0x87adff0ab8cb043c, 0x0cbae9cb55ff3c9a, 0x040b3f020d0bcb01, 0x040aed63040afb65, 0xff0ada4c040adf5c, 0x890e00ffbb9f6b0a, 0x145eff0ae861043b, 0x0e3b5a6826ffbccc, 0x3c9c7f60ff0af601, 0x1f02093d972c20ff, 0x0c00090b11040b0b, 0xaeff3b07e2f0ff0b, 0xff0b1a0009bb6043, 0x19ebf0ffbb49b7ff, 0x2cc0040b3192053c, 0xfaffbbb2f2f1ff0b, 0xff0b3a9405bdc3a5, 0xd63e96ff3c5f50be, 0x679c040b870e0eba, 0x54020e0b597b040b, 0xb5ff3a072ca1ff0b, 0xff0b620112bc052d, 0x769ba8ff3a465952, 0x74000f0b799e04b9, 0x1dffbd40beb7ff0b, 0xff0b829f04bbe640, 0xf15e60ff3ccb6d6d, 0x9d000c0babb70438, 0xbde0ff0b98070b0b, 0x123cbece42ff3b86, 0x3d70a069ff0ba601, 0xbd000f3c13eb38ff, 0x2a4eff0bb8040b0b, 0x05bc3aa380ffbdc4, 0xbd80e6b5ff0bc68f, 0x5b8f05bacfcf16ff, 0xf7b9040c17ba040c, 0xe4050b0be901080b, 0x0aff3b8ccbc5ff0b, 0xff0bf2040b3c8cb8, 0x254d70ff3d0b892c, 0x0400020c090007bd, 0xfaff3db33989ff0c, 0xff0c12040e3d9c44, 0x460e30ff3d07fc2c, 0x2d070b0c3bbc043d, 0x55efff0c28050b0c, 0x0ebd6ed667ffbb99, 0xbcb8d9b2ff0c3602, 0x4dbf04be29ceb5ff, 0x0d2eff0c48070e0c, 0x0e3d84a49dff3c8e, 0xbc013b63ff0c560d, 0xa3c6043bcd3f25ff, 0x750b0e0c83060d0c, 0xf8a6ff0c700a0e0c, 0x04bcffa6c8ffbbbf, 0x3c41dc96ff0c7ec2, 0x95080ebc6a1f8cff, 0x7cfeff0c9093050c, 0x02bb2d67daff3b55, 0x3c9c80f7ff0c9e00, 0xc7ca04bd1e14e8ff, 0xb4c8040cb9c9040c, 0xc7ff3ca5a100ff0c, 0xff0cc29205bab2f8, 0x1f88d1ff3c1e184e, 0xd400070cd90a0b3d, 0x5cffbd02aadfff0c, 0xff0ce20a0e3bfb90, 0xfa624eff3b37a91b, 0xf9200e0eb28e05bb, 0x32b8040d6d150e0d, 0x0d000c0d1b0b0b0d, 0xd7ccff0d08a2040d, 0x0b3bb3ac72ffbcf9, 0xbcfe67b8ff0d1601, 0x2d000cbd6b63ccff, 0x5212ff0d2800070d, 0xffbd2c3078ffbd2e, 0x0d560109bdb8cfc3, 0x0d43bc040d48140e, 0xa003ff3d284461ff, 0x4cff0d51060d3c13, 0x3d4783c2ffb891ea, 0x0d63000c0d680112, 0x0040ffbbeb114bff, 0x043d5570c0ffbc9f, 0x0e0d9500070db5cc, 0xff0d8200020d871e, 0x95e011ffbb6100b2, 0x3580ff0d90c3043b, 0x0d3d7c23f9ff3bde, 0xff0da2bc040da702, 0xd7f046ffbc284e6e, 0x9731ff0db0170ebc, 0x07bb8da489ff3ba9, 0x0b0dcb02080dd900, 0x3c802ddaff0dc60b, 0xd4000c3cf2b9f4ff, 0x34ffbcc3b24cff0d, 0x110deb0107bc99b6, 0xbcc90f10ff0de600, 0xf4000cbd75fc6dff, 0x93ff3982f885ff0d, 0x040e80070dbc9efc, 0x040e25b4040e3cb6, 0xff0e12000f0e17ac, 0x5abbf6ff3c7e8e94, 0x5d74ff0e200002bb, 0x0b3b3b88e7ffbd4a, 0xff0e3200090e3703, 0x72d678ffbdedd7a9, 0xb804bca8893dffbd, 0x020d0e52010b0e60, 0xff3d3cebb3ff0e4d, 0x0e5b000f3df6f2ae, 0xe8d9ff3cc018a8ff, 0xc3040e720107bbe1, 0xffbaf37da0ff0e6d, 0x0e7b000c3b06c36f, 0x43b1ff3b0ddc84ff, 0x030b0ea4000c3c96, 0x1eff0e9100020e9f, 0xff0e9a0008bca3c1, 0x7db328ffbc472ece, 0x0002bd1a35dbffbc, 0xffbd3720aeff0ead, 0x0fae8f05bd1d9fbe, 0x0f02cc040f46070d, 0x0ed4cb040ee2000f, 0x6e5f5fff0ecf040d, 0x030b3c275fa3ff39, 0xff3c255400ff0edd, 0x0ef4100bbd75660c, 0x24b41cff0eef0002, 0xbd04ba1d205dffbc, 0xffbcb175d6ff0efd, 0x0f2601083b99369c, 0x0f13020d0f18010c, 0xae49ff3ce2e38bff, 0xb8ff0f210008bc13, 0x3cbf89b0ffbb1373, 0x0f3300070f38000c, 0xfabaff3c3dd6ceff, 0x94ff0f410b0bbc11, 0x3db4eaf0ff3c7605, 0x0f65170e0f6abd04, 0x0f5b000c0f600008, 0xadf0ff3c106ea8ff, 0xff3c0942e8ff3c10, 0x0f8ec8043b7b8260, 0x0f7b00070f80c104, 0x4d54ffbd3b2517ff, 0xe0ff0f891f0ebbca, 0xbcd8e59aff3c3f9d, 0x0f9b1f0e0fa0250e, 0xc4e1ffbb127280ff, 0xdaff0fa9030b3d7a, 0xbd1b1c00ffbc2590, 0x0ffa0009103e140e, 0x0fccc2040fda9205, 0x08ee32ff0fc7b804, 0xc5043ce0cda0ff3a, 0xffbd4be4a8ff0fd5, 0x0feccd043c182565, 0xb48872ff0fe7010c, 0x00083cdb1a24ffbb, 0xff3b87aeebff0ff5, 0x101e000f3c72b0f0, 0x100b000210109405, 0x1f23ffbd471134ff, 0x7bff101901093d34, 0x3d48ba36ff3dcc21, 0x102b060d1030bc04, 0x7e10ff3d82652fff, 0x22ff1039030bbaa9, 0xbb944731ff3bd537, 0x1066000c10860109, 0x1053000f10581f0e, 0x18c7ff3c329ab3ff, 0x59ff1061060d3971, 0xbb46aa66ff3aa94e, 0x1073050b1078000f, 0xf0bfffbb2c3f52ff, 0x9fff108100023baa, 0xbaa9475cff3ac9fb, 0x109c030b10aa000f, 0x20337aff1097020d, 0xc204bd4584acffbc, 0xff3d4cff15ff10a5, 0x10bc030bba3625df, 0xabf16bff10b7ca04, 0x010c3c5d1d1fff3b, 0xff3a709afdff10c5, 0x00000013bc854934, 0x000003e800000008, 0x0000101f00000001, 0x08828d0500000000, 0x024801060484150e, 0x00a0c004012c8c05, 0x003cb304005cb804, 0x00299b04002eaf04, 0x9c54ff38e0d9a8ff, 0x16ff0037b2043a30, 0xbb2dc80cff3b3a8f, 0x00498705004e0002, 0xdd4dffbc80f28dff, 0x50ff00575f053b59, 0x3ac61cd3ff3b9499, 0x0072000200804b05, 0x515590ff006d010c, 0x070dbddb3e6cffbe, 0xffbd7c4ebcff007b, 0x0092030e3d1f8b88, 0x370cfbff008dba04, 0x010cbcbde1efff3c, 0xffb94531f2ff009b, 0x00e80d0e3b981b90, 0x00ba730500c8060d, 0x5d8039ff00b50111, 0x00073d9c7a44ffbd, 0xff3c221dfbff00c3, 0x00da6b05bc238f99, 0x93b331ff00d5c704, 0x0b0bbcba6c93ff3c, 0xff3a3ef84bff00e3, 0x010c140bbb1e976e, 0x00f9000900fec804, 0xcf55ff3b59e63fff, 0xa2ff01070b0bbbe8, 0xbd1191edffbc23bf, 0x01190108011e000c, 0xd606ff3bd355d8ff, 0xd0ff01270109bc20, 0xbbcae431ff3c8ad7, 0x0178010c01bc050b, 0x014a030b01580209, 0xff7941ff0145130e, 0x0d0ebc8e87ceff38, 0xff3b7eb61aff0153, 0x016a000fbc6cfe81, 0x6a0217ff0165b404, 0xbe04be2bdf8cffbc, 0xffbb91e039ff0173, 0x019c00083ca9fcd8, 0x01890002018e0011, 0x11f8ffbc5a2707ff, 0x45ff0197030bbd1e, 0x3cccbf83ffbb4efa, 0x01a9000201ae040e, 0xff0fff3cea4178ff, 0xf1ff01b7070ebb5b, 0x3c098800ff3d270e, 0x01e400080204060e, 0x01d1030e01d60112, 0x013bff3b2f378eff, 0xd6ff01df9704bbe9, 0x3c4da416ffbd1074, 0x01f1000c01f6050e, 0x82fdff3b31be19ff, 0x24ff01ff000cbc0e, 0xbda409bdffbcd890, 0x021a0a0e0228010c, 0xe5e9abff0215020d, 0x0b0e3babe5d3ffbc, 0xffbcc16386ff0223, 0x023a0007ba68fe9e, 0x1b5d73ff0235b204, 0x060d3b9385faff3d, 0xffbca4f8a9ff0243, 0x0368be04ba0af1b8, 0x0298790402dc0306, 0x026a2c0402787704, 0x94cbfdff0265030b, 0x73043ad3a9afffba, 0xffbb3ea368ff0273, 0x028a3905bc7cb095, 0xc801f1ff02850111, 0x000f3add79a9ff3c, 0xff3d81d596ff0293, 0x02bc020d3d1d9a67, 0x02a9390502ae9604, 0x6d81ffbdd8bb4eff, 0x89ff02b79804bd76, 0xbdd30b4bff3bd272, 0x02c9000f02ce130e, 0x7629ffbd0adef6ff, 0xbaff02d71305bc4d, 0x3d04bc43ffbce32d, 0x0304010703241905, 0x02f1010802f61705, 0xad93ffbb534c8eff, 0x35ff02ff0c0e3b56, 0xbc6561abffba871a, 0x0311000f03161305, 0xdd69ff3be5daedff, 0xa3ff031f01083a16, 0xbc8c9acfffbaab65, 0x033a7a0503480208, 0x70c665ff03351506, 0x8105bb121d2dffb9, 0xff3c11e719ff0343, 0x035a0007bbedc6b1, 0xfb3d79ff03550a0e, 0x00023bd3693dffba, 0xffbcd6ffceff0363, 0x03f80b06bbf143dd, 0x0394000c03b40002, 0x038100080386020d, 0x7d46ffbe33290eff, 0x8bff038f030bbdc3, 0xbcd6740cff3c4421, 0x03a1020803a60f0e, 0x049effbd43b78aff, 0xe7ff03af0b0bbc72, 0xbde0f596ffbd8882, 0x03ca390503d80111, 0x23d8f2ff03c5010c, 0x0208bd69865bffbd, 0xffbcee0e53ff03d3, 0x03ea0008bc2ab6d6, 0xf5ee82ff03e5010b, 0x030bbb581b25ffbc, 0xff3c8bc00dff03f3, 0x044013063b2d1d62, 0x0412c2040420c504, 0x84b426ff040d030d, 0x000fbaaf8e25ffbc, 0xffbd86c847ff041b, 0x0432040dbca3eb08, 0xc3de6dff042d0108, 0x040e3b07df99ffbb, 0xff3cf9f56bff043b, 0x04640c0e3bc0b11f, 0x045137050456c004, 0x5308ff3b354157ff, 0x35ff045fc304bcbe, 0x39db45eeff3b8ea9, 0x0471c50404761406, 0x0c9fff3c8d4d4eff, 0x79ff047f1606baa4, 0x3ab054fdffbc3b4a, 0x05a8c50406c4c704, 0x04d80d06051cbb04, 0x04aaa60404b8ab04, 0x9fc645ff04a58905, 0x33053b04dbf6ffb8, 0xffbbb854ccff04b3, 0x04ca45053ba88951, 0x205c42ff04c50011, 0x130b3ab38798ff38, 0xffb9489a78ff04d3, 0x04fc1c05ba550a59, 0x04e9000204ee030d, 0x5d1fff3b1c9492ff, 0xdfff04f70111bb69, 0xbc0f978bffba2d38, 0x05091106050e0002, 0x3deeff3c859b96ff, 0x44ff0517000fbaae, 0x3b02f369ffbcb651, 0x0544c2040564090b, 0x0531050b05368505, 0xb7b1ffbb99c5eeff, 0xa2ff053f00093b62, 0xbc960d0fffba2687, 0x0551080b05568c05, 0x0442ff3ae05608ff, 0x34ff055fc404bccc, 0xbc2c8de4ff3c8e50, 0x057abe040588c204, 0x8ed1aeff05750008, 0x170e3b29f7e2ffbb, 0xffbbd97118ff0583, 0x059a2d0e3bb4a496, 0x3fe45eff05958805, 0x060d3bb033f1ffbb, 0xffbb42f474ff05a3, 0x06387b05bdbeae13, 0x05d4010c05f4350e, 0x05c1270e05c60108, 0xf081ff395446d2ff, 0xd1ff05cf5f053cbd, 0xbb45c6d3ff3ca18d, 0x05e10e0b05e67905, 0x4425ff3a7c4ca9ff, 0xe9ff05ef0b0bbc85, 0x3e38b1cfff3d314d, 0x060a0b0b06180007, 0xa2a1a4ff0605070b, 0x40013ce2c270ffbb, 0xffbda1b80eff0613, 0x062a6d05bcdaf98c, 0x0eef36ff0625040b, 0x040bbc6570d6ffbd, 0xffbda1c237ff0633, 0x0680260ebc94a6de, 0x0652070d06600011, 0x5dff06ff064d7e05, 0x01083b9cb7c4ff3d, 0xffbca5443cff065b, 0x0672030b3c849d3a, 0x6a493dff066d0009, 0x7f05bc419cd8ff3c, 0xffbd34c706ff067b, 0x06a4280ebc64b924, 0x0691010c06960011, 0xa83dff3d4e8a92ff, 0xc0ff069fc6043e49, 0x3d298230ffbca62c, 0x06b18c0506b60111, 0x4d29ff3c026932ff, 0xcdff06bf310e3d38, 0x3cacf8dcffbc8507, 0x06fe0c0b07660b05, 0x06d9050606e70207, 0xe2230ebd8673c5ff, 0x0cffbda81bceff06, 0xff06f00706bdb8a1, 0x06f9230ebdf3ba05, 0x1309ffbdfa351eff, 0x0002072b0008bdfc, 0xa4ff070f12060714, 0xbc87e913ffbca886, 0x68506cff071d170e, 0x08a8ff07261606bc, 0x01bb9ff5feff3b89, 0x0107413301074636, 0xbd58d42cff073c1e, 0x62b0ffbcbecc08ff, 0x0207075801113e1c, 0xffbce7c116ff0753, 0x07610306bd80fb64, 0xaee8ffbc8268f0ff, 0x060d07f6100b3d70, 0x001207920b0b07b2, 0x02ff077fc8040784, 0x3d09c6e2ff3db324, 0x25c0ceff078dc904, 0x0c0bba8f1b62ff3a, 0x68ff079f000c07a4, 0xbd802513ffbcb3e7, 0xd56c12ff07ad010c, 0xc9043c723ec7ffbc, 0x000207c8230e07d6, 0xffbc402805ff07c3, 0x07d12b0e3c0bf1cd, 0x01bbffbce50a45ff, 0x010707e8170e3b7e, 0xffbd5a3bddff07e3, 0x07f1010c3be029bd, 0xaf5cffbab8547dff, 0x060d083e00083986, 0x230e0810260e081e, 0xff3b5b4eddff080b, 0x0819280e3d8aea7a, 0x2c4eff3cab8858ff, 0x000708300012bbac, 0xffbc7a355bff082b, 0x0839c9043b5477c7, 0x632dff3cd10515ff, 0xc80408625305bd9d, 0x2cff084f010c0854, 0xbbc458d5ffbd401b, 0x3b4f63ff085d3103, 0x8b053b5e710bffbd, 0x1bff086f7f050874, 0x3bf63308ff3aa8d0, 0x41fc1eff087d220e, 0x120e3c1ab0e1ffbb, 0x020d0a2d8e050c60, 0x000d090c0e0e0911, 0x040b08ba820408c8, 0xadff08a7000808ac, 0x3847a800ff3cbeb1, 0xc24672ff08b50109, 0x01073c30fe60ffba, 0xff3cc9bee0ff08c3, 0x08ec0d0e3d5f6910, 0x08d9070b08de9704, 0xd2e5ffba5e88e8ff, 0xc5ff08e79b04bce8, 0xbb31dcc3ff3c7dae, 0x08f9030b08fe0209, 0x4e66ff3c37d880ff, 0x08ff0907b704bad8, 0x3cd6b280ff3db217, 0xa1b004bd860ab4ff, 0x3d030b095da80409, 0x2a5704092f000709, 0x8affbcaf5b9aff09, 0xff09380002bb8c84, 0x791c3effbb7a6c36, 0x4a8904094f01113b, 0xb4ffbb95ea46ff09, 0xff0958000f3bc592, 0xffa055ffbad8c561, 0x7301070981ae04bc, 0xfd40ff096e030b09, 0x04bcc81937ffbb92, 0x3c663b0aff097cac, 0x930008bb86ecfbff, 0xde04ff098e000c09, 0x113ca784c0ffbbcf, 0xbb9c9a2aff099c01, 0xe9b604bd0e7161ff, 0xbbb10409c9000709, 0x65b1ff09b6060d09, 0x0bbd6f21ebffbadb, 0x3d00e834ff09c402, 0xdb0b0ebc1ece1aff, 0xf292ff09d6020e09, 0x043bbde5ecffbb6b, 0xbc7b82cdff09e4b4, 0x0d00073c7b57d2ff, 0xfa000209ffbc040a, 0xdeff3b9b1f4eff09, 0xff0a08c0043c6fbd, 0x9ab458ffbb5ac969, 0x1a080e0a1fb7043b, 0x6cff3d23b4c9ff0a, 0xff0a280207bc8e49, 0x62b013ffbb742fcb, 0xb8040d0b44010c3b, 0x5d69040a746c040a, 0x4a0a0e0a4f020d0a, 0x60ff3a70b93bff0a, 0xff0a58000ebd0149, 0xe921feffba3ee984, 0x6a020d0a6f9005bc, 0x08ffbd23661fff0a, 0xbe1b86fcffbddb5e, 0x0a8a98040a989c04, 0x9a5e65ff0a859704, 0x0008bc9fc43aff3a, 0xff3aebe7e7ff0a93, 0x0aaa01113d60a736, 0x4dec9eff0aa5000b, 0x9e04bc655660ff3c, 0xffbcb6e931ff0ab3, 0x0b00060d39f11f9a, 0x0ad200090ae0070e, 0xb8429cff0acd050e, 0x90053bc69edcffba, 0xffba7df56fff0adb, 0x0af2ca0438c88fd0, 0xfa7b1eff0aedc304, 0x080ebac118c5ffba, 0xff3cdfe8d7ff0afb, 0x0b240009baf2d0f0, 0x0b110e0b0b160a0e, 0xdef4ff39e49a13ff, 0x05ff0b1fbc043ac5, 0x3b55b106ffbbc381, 0x0b31c1040b36c204, 0x13a3ff3a2c61e5ff, 0x25ff0b3f0011bb8d, 0xbc5a0bfcff38d2b0, 0x0b90ba040bd48f05, 0x0b62060d0b70b904, 0xda4e31ff0b5d0112, 0x0a0b3c862f50ff3a, 0xff3aa79cd4ff0b6b, 0x0b8200073cf43696, 0xa14d61ff0b7d0002, 0x040e3d8ca47aff3d, 0xff3cf4c5e8ff0b8b, 0x0bb4bc043d323ff8, 0x0ba1070b0ba60007, 0xf9d3ffbd1d9f59ff, 0xe8ff0bafbb04be0a, 0x3d0e67e4ffbb91b4, 0x0bc10b0b0bc6bf04, 0xef53ff3d0d4388ff, 0x02ff0bcf0012bc0b, 0x3b89a6eeffbc0881, 0x0bfc070b0c1cc604, 0x0be9000e0bee070e, 0xaf07ffbc01770bff, 0x34ff0bf7070d3bd1, 0x3d1c3f29ffbc12f3, 0x0c0993050c0e0c0b, 0xe8a4ff37722878ff, 0x6aff0c170d0ebc4b, 0xbd9b46e2ff3b18f7, 0x0c32c9040c40ca04, 0x9510e0ff0c2dc804, 0x0002baa1130cff3c, 0xff3d09368eff0c3b, 0x0c520a0b3b9bf554, 0xeb3390ff0c4d0007, 0x0a0e3be26859ffbc, 0xff3b254b6bff0c5b, 0x0e078e05bbe15874, 0x0ce6150e0d72200e, 0x0c940b0b0cabb804, 0x0c81060b0c860002, 0xce87ffbb4b8371ff, 0x9fff0c8f060dbd17, 0xbc7c836dff3d2ebd, 0x0ca100070ca6000c, 0xf86cffbd1ce376ff, 0x09bda65495ffbd1a, 0x040cc1140e0ccf01, 0x3d1770bcff0cbcbc, 0xca060d3c04dccdff, 0x31ffb8835710ff0c, 0x120ce101123d3390, 0xbc96d134ff0cdc00, 0x18b0ffbbc7cd74ff, 0xc4040d2e00083d40, 0xc3040d001d0e0d0e, 0xffba59bb30ff0cfb, 0x0d09c304bcfcd4fa, 0xb06bff3c203b3eff, 0x01070d20170e3dc8, 0xff3b22b830ff0d1b, 0x0d2900023c90c53a, 0x4126ff3c1dad94ff, 0xb3040d52bf04bc03, 0xa5ff0d3f020d0d44, 0x385a4555ffbcd362, 0xb7bceaff0d4dba04, 0x060d3b998d7aff3c, 0xcdff0d5f170e0d64, 0xbc825b85ffb91f8b, 0xf76a00ff0d6dcb04, 0xa004bc165e3aff3b, 0x34ff0d7f00020d84, 0xb9241540ff3d126e, 0x0dacb4040dc3b504, 0x0d9901120d9e010b, 0x75eeffba60ec00ff, 0x82ff0da70008bd29, 0x3d30ea98ff3b0255, 0x0db9220e0dbe0009, 0x23d4ffbde3f9eeff, 0x04bd5a8dd8ffbdc8, 0x0b0dd9230e0de7b9, 0x3cd43bfcff0dd403, 0xe2000cbc574f27ff, 0xa0ff3cb2f43eff0d, 0x0e0df9c6043d84c4, 0xbbd353d9ff0df42a, 0x0200093c0e3214ff, 0xadff3b8c7026ff0e, 0x0d0f038f05bc578d, 0x0f0e57cc040e9b07, 0x040e29340e0e3700, 0x3bc652bfff0e24c5, 0x32000dbb9dd455ff, 0x68ff3d240df0ff0e, 0x040e490e0b3de604, 0xba17f07cff0e44c3, 0x52be04bba9fd7aff, 0xe9ffbc9ef339ff0e, 0x0c0e7b01083b909f, 0xff0e68300e0e6d01, 0x72ea32ffbc3e95c3, 0xb3a2ff0e760b0b3b, 0x0c3cc14de0ffba87, 0xff0e8802080e8d00, 0x225e9dffbc12fcab, 0x6b6eff0e960b0b3c, 0x043da2d370ff3c5d, 0x080eb100020ebfbd, 0x3c023620ff0eac00, 0xba170e3bf71200ff, 0xc0ff3c01fd30ff0e, 0x070ee3c1043b625b, 0xff0ed0000c0ed500, 0x51ad1bffbd11eec3, 0x5078ff0edec004bd, 0x04bb351b15ffbc64, 0xff0ef00b0b0ef5cd, 0x99c766ffbba90843, 0xbd5dff0efe01083d, 0x0e3c0bbf27ffbcf4, 0x050f4f00090f9314, 0x0f0f21070b0f2f92, 0x3ca3b18bff0f1c00, 0x2a130ebc39768aff, 0x05ffbcf38480ff0f, 0x0b0f41060d3c7606, 0xbbba82bdff0f3c0e, 0x4a0012bcb50217ff, 0x4affba95ef76ff0f, 0x050f73000f3ca0e4, 0xff0f6002090f6592, 0xaba9abffbd4685e5, 0x3a19ff0f6eca04bc, 0x043d1ef795ff3d8c, 0xff0f80b5040f85bc, 0x6ab623ffba988b10, 0xe4cdff0f8e030b3d, 0x09bb85734cff3bbf, 0x0e0fbb000c0fdb01, 0xff0fa8000f0fad1f, 0x58fc6fff3c20be74, 0x6049ff0fb6060d39, 0x0fbb32cc9cff3a98, 0xff0fc8050b0fcd00, 0x99d8c0ffbb1b054b, 0xc898ff0fd600023b, 0x0fba9859a8ff3ab5, 0x0d0ff1030b0fff00, 0xbc102e44ff0fec02, 0xfac204bd31c437ff, 0x21ff3d387f25ff0f, 0x041011170eba23ee, 0x3b710f60ff100cbb, 0x1a180e3cab73edff, 0x52ffbcfd65c2ff10, 0x08000000133ab40d, 0x01000003e8000000, 0x000000116c000000, 0x0e08e58d05000000, 0x0502480106046915, 0x0400a0c004012c8c, 0x04003c120e005cbd, 0xff00299504002ea8, 0x255d15ff39852e6d, 0x54abff0037ab043a, 0x04ba6b1c94ff3c89, 0xff0049040d004e73, 0xc9a773ffbcb369a7, 0x1eb1ff0057130eba, 0x04bbb2d93fffbd2b, 0x07007200090080bf, 0x3d1636cbff006d00, 0x7b060d3c156defff, 0x3aff3ba37305ff00, 0x0d00920d0ebcb263, 0xbd216847ff008d06, 0x9b0e0e3c75de3bff, 0x86ffbd539467ff00, 0x0d00e80d0e3bd49a, 0x0900bac30400c806, 0xbcbf8daeff00b502, 0xc300023c93f7e8ff, 0xaaff3c530816ff00, 0x0e00da6b05bba6be, 0xbc8b5aaaff00d507, 0xe30b0b3c8a352eff, 0x68ff3a2bdfd6ff00, 0x05010c130bbb0ebb, 0xff00f9000900fe87, 0x664e56ffbb471859, 0x5100ff0107c804bc, 0x05bc3781ffff3b90, 0xff0119070d011e67, 0x0be826ffbd198ada, 0xc848ff0127000c3d, 0x0b3c554a79ffbacb, 0x0d01789d0401bc05, 0x0b014a0111015800, 0x3d1b364cff014500, 0x53030b3d622d7cff, 0xf2ffbcb2d6beff01, 0x0e016a9c043cec55, 0x39409db5ff01650d, 0x730111bc57080dff, 0x32ffbc1f7c47ff01, 0x0f019c000cbe0bfe, 0xff0189a104018e00, 0x1b8f7dffbc7b9fa0, 0xd730ff0197a904bd, 0x09bbba4407ff3b80, 0xff01a9001101ae02, 0xd4850cffbc466dd4, 0xbf62ff01b7030e3b, 0x0ebc9d1069ff3c03, 0x0d01e45504020407, 0xff01d10a0b01d604, 0xb395d8ff3c0db9c7, 0x1b60ff01df0a0bbb, 0x0bbd86606aff3b77, 0xff01f1910401f60b, 0x4cbfd3ff3b81dbc3, 0xf690ff01ffa704bb, 0x093bd0f9a4ffba5d, 0x04021a0002022801, 0xba6acf75ff0215be, 0x2300093c4fd38eff, 0x72ffbb6e012bff02, 0x0d023a080e3c2bb4, 0x3d0106e0ff023506, 0x43060d3b8a7422ff, 0x6fff3a052178ff02, 0x0f0368be04bc49b0, 0x060298170602dc00, 0x04026a7904027803, 0xb953c788ff026572, 0x73130ebcaa0161ff, 0x42ffbd19a194ff02, 0x05028a060e3cd9a0, 0x3b5046d2ff028529, 0x93ae04bb9e1b26ff, 0x51ff3bb2596dff02, 0x0e02bc050e398ab0, 0xff02a9000202ae04, 0x88e241ffbb71121e, 0x14c0ff02b7110539, 0x05bc553bb5ff3c84, 0xff02c9a90402ce06, 0x1c3a31ffbccd1fb7, 0xdd50ff02d710053c, 0x0ebc2c0f25ff3c64, 0x060304090e03240b, 0xff02f1060e02f616, 0xb5497dffba51c49c, 0x97bbff02ff040ebb, 0x06bba1d3f0ff3ae6, 0xff0311030b031614, 0x593bdaffbb61dda7, 0xb429ff031fb3043c, 0x043b2de104ffbc49, 0x0e033a6f0403487c, 0x3b28a28aff03350c, 0x430d06bb5a4c21ff, 0x17ff3c5c2a61ff03, 0x06035a0f0ebc44f8, 0xbc9128c1ff03550a, 0x630f06bc057ee5ff, 0x45ff3b6e7988ff03, 0x0b03dd0906bbfb72, 0x040394000703b40b, 0xff038101110386c3, 0xcbfab1ffbb6e8417, 0x69b2ff038f030bbd, 0x0bbc11c615ff3d02, 0xff03a1000803a607, 0x154d5cff3b6d07e0, 0xf0d8ff03af000f3d, 0x05bd6c2be7ff3813, 0x0e03ca000c03d852, 0xbd00fe0aff03c513, 0xd30002bda00074ff, 0x3bffbddceefbff03, 0xbc90ede8ffbd6b5f, 0x0405c50404251206, 0x03f2190503f70002, 0x5352ffbe169607ff, 0x26ff0400c204bcd6, 0xbccb7a2affbacc4d, 0x04120b060417000c, 0xf531ff3b8d0bf7ff, 0xbbff04206f05bb56, 0x3d08253fff3b9e7f, 0x043b070e0449010c, 0x3f1370ff04366e05, 0xc1043be4eb59ff3a, 0xffbb243b66ff0444, 0x045b0d0e3aac4b1d, 0xaf2610ff04561406, 0xbf04ba90b00fff3b, 0xffbcf7779aff0464, 0x06a9c704bc0945dc, 0x0501bb04058dc504, 0x049dab0404bd0d06, 0x048a8905048fa604, 0x25b6ffb88fcb5aff, 0xffff0498a9043aef, 0x3c212c87ffbb568c, 0x04aa340504af4705, 0xf737ffba7f858cff, 0xebff04b848053b8e, 0xb972c3aeffbcb213, 0x04d3011104e1160e, 0x9539cdff04ce1206, 0x0b05bccec0dcffbb, 0xff3cc7b396ff04dc, 0x04f31906bc97556c, 0x7debf2ff04ee000c, 0x000bbb86cb6aff39, 0xffbc9f5985ff04fc, 0x054900093c5a2e20, 0x051b001105290208, 0x37bb38ff05161e0e, 0x060d3c39178fffbb, 0xff3ad1e78bff0524, 0x053b090bbc77ccda, 0xb24ceeff0536000f, 0x000f3a8ddd77ffbc, 0xff3c536742ff0544, 0x056d060dba34ac98, 0x055a180e055f1c0e, 0xa834ffbc95b332ff, 0x05ff0568bf043b83, 0xbc0399ffffbc994d, 0x057ac104057f0012, 0x0e23ffb886863cff, 0xa2ff05880109bca7, 0xbbf58bb5ffbcd222, 0x05d9c604061d7e05, 0x05ab490505b92a0e, 0xa80c68ff05a60c05, 0x00123c59bce5ff3d, 0xff3b9e6377ff05b4, 0x05cb0111bd156fdf, 0xdc0cfdff05c6330e, 0x2b0ebcdaf0b9ff3c, 0xffbd064f69ff05d4, 0x05fd79053ac9a5aa, 0x05ea000605ef1e05, 0x1506ff3e03029cff, 0x85ff05f8060dbdfe, 0x3c0a8e2affba6afe, 0x060a7c05060f0e0b, 0x2198ff3bb80e50ff, 0xd2ff0618010c3d9c, 0x3e31525fff3d7572, 0x064587050665140b, 0x0632810506378305, 0x3bc5ff3b4c90eeff, 0x45ff0640c604bc88, 0x3cb2151bffbbd748, 0x0652310e06570b0b, 0xd684ffbb4daea6ff, 0x05ff066000023d1a, 0xbbc5d238ff3d2727, 0x067b010706897f05, 0xc688b4ff0676060d, 0x250ebd6aa002ffba, 0xffbe03fda1ff0684, 0x069b0108bd889a86, 0xbad5ffff06968a05, 0xc6043c41aa2bffbb, 0xffbc78748dff06a4, 0x07c9260ebd27e6b5, 0x06f9c904073d0e0b, 0x06cb0b0b06d90002, 0x40207fff06c6010c, 0x00083b0ee350ffbc, 0xff3a51172bff06d4, 0x06eb220ebd36dce7, 0x9b80a7ff06e6000f, 0x0009bba35c07ff3c, 0xff3cbee2beff06f4, 0x071d230ebc9d9829, 0x070a210e070f220e, 0x4bffffbaa3804aff, 0x5aff07180208bc7b, 0xbc2084f5ff3bc3e3, 0x072a0011072fcb04, 0x642dffbdbf5a14ff, 0xdaff073801083b5b, 0xbc371893ff3cdcc0, 0x0765180e0785230e, 0x075201110757170e, 0x1db9ffbb856150ff, 0x2aff076000123c94, 0xbabb0e7fffbd716b, 0x0772000207777205, 0xc8f4ffbc810bdeff, 0xc6ff07807e053c20, 0x3b4bde83ff3c6eed, 0x079bcb0407a90011, 0x376a46ff07967f05, 0x250ebd9c680effbe, 0xffbc281896ff07a4, 0x07bb00023d2497fc, 0x9b5f7bff07b60007, 0x000c3d050cabffbc, 0xff3cf8eaf9ff07c4, 0x0859280e3df541bc, 0x07f5001108158605, 0x07e2070d07e70107, 0x45b1ffbcfd6bc5ff, 0xa6ff07f0070d3c33, 0xbd81c2f6ff3d05fc, 0x080276050807c804, 0x1dcaff3db70ffeff, 0xb3ff08100b0b3d5e, 0x3d354fecff3c1554, 0x082bc8040839010c, 0x0f3ef1ff08260007, 0x01073d3cedaeffbc, 0xffbbcb6cbfff0834, 0x084bc804bccf52d1, 0x9cc54bff08468805, 0xca04bde22fbbffbd, 0xff3c875e86ff0854, 0x08a1c804bd1de402, 0x0873310e08816d05, 0xeec8d4ff086e010c, 0x010bbc01a1bbffbc, 0xffbd39902dff087c, 0x089300113bec9bc9, 0x83259aff088e6f05, 0x0208bc9c6c5bff3d, 0xff3a7c031fff089c, 0x08c502073cbd8ab8, 0x08b2010c08b7cb04, 0xe660ff3bcaed34ff, 0x43ff08c01305bc40, 0xbb30c86dffbba67b, 0x08d22a0e08d70112, 0x7adaffbcfbf478ff, 0xa7ff08e001113c1a, 0xba8203dfffbcabb1, 0x0b17020d0d530e0e, 0x0978900509fb9004, 0x091d01070934000d, 0x090a0112090f6104, 0xb185ff3c5112f0ff, 0x12ff0918080ebba6, 0x3d180d7bff3bb13b, 0x092a000c092f8804, 0x8268ffbc1b799eff, 0x0e3d4911c0ffbdaa, 0x05094a6304095807, 0xba1cbb42ff09458f, 0x536504bc3f68beff, 0x46ff3d4c815bff09, 0x0e096a01073a9166, 0xbc66c20aff096508, 0x730002bb550313ff, 0xf0ff3af2c44fff09, 0x0409b78f043d7388, 0x090992840409a088, 0x3b2b3b35ff098d00, 0x9b000dbca04dbcff, 0xf9ffbd899b8bff09, 0xff09a98a04bbe1de, 0x09b20002bd1679b8, 0xc002ff3c09fcb6ff, 0x000709db00023cbc, 0xc0ff09c8050b09cd, 0x3bcedbebffbb07e6, 0xaaaf90ff09d69205, 0x0112bb7d3e80ffbc, 0x0cff09e8930509ed, 0x3c089c4bffbb508a, 0x901307ff09f6020e, 0x9205bd235c96ffbc, 0x00070a4790050a8b, 0x030e0a19010d0a27, 0xffbd8c3f75ff0a14, 0x0a22070e3c0c24c8, 0x8eb6ff3c4f7ec8ff, 0x00080a3991043b02, 0xff3cebf886ff0a34, 0x0a4200023c0a8b00, 0x09eeffbc06cf2eff, 0x00090a6b91043a9e, 0x00ff0a58070e0a5d, 0x3ca3c6e0ff3b9087, 0xd113b0ff0a66050b, 0xa7043d127978ff3c, 0x22ff0a7801070a7d, 0x3c0e596cffbc3eba, 0x6cca4fff0a86c004, 0x9604bc1f172eff3a, 0x0a0b0ab301110ad3, 0x8cff0aa0050b0aa5, 0x3c19a59dffbaa88e, 0x7bbed9ff0aae0007, 0x030bbcd75a72ffbc, 0x50ff0ac091040ac5, 0x3a38bfcaff3cbe53, 0x292e78ff0ace020e, 0x070e3b75a925ff3d, 0x94050ae901070af7, 0xffbc289b5cff0ae4, 0x0af20111b9a9ac0e, 0xb1e6ffbc8492deff, 0x00090b09010b3c1c, 0xffba451686ff0b04, 0x0b12040bbcebabce, 0x1011ff3bc5666eff, 0xbd040c370011ba0b, 0x90050b67000c0bab, 0xbc040b3900080b47, 0xffba69aae2ff0b34, 0x0b42080ebc98c99e, 0x2986ff39e72123ff, 0x0a0e0b5900083c0d, 0xff39ec8b9cff0b54, 0x0b62080e3af98fed, 0x94d2ff3ae1242cff, 0xba040b8b070e3ca1, 0xfaff0b78020e0b7d, 0x3c899530ffbb74e1, 0x5a2dbaff0b86030e, 0x080e3cbd8ca0ffbc, 0x4cff0b98ba040b9d, 0x3cc0391dffbc8c0e, 0x9a2a37ff0ba6090e, 0xbe043b227998ff3d, 0x00090bd3080e0bf3, 0xb8ff0bc0010c0bc5, 0xbd819024ffbcc82a, 0x9ceca5ff0bce070e, 0x00023cca1799ff3a, 0x74ff0be000090be5, 0xbd2c6b68ff3d021a, 0xe1339fff0bee0009, 0x0e0b3d04e65cffbc, 0x0b0b0c09c9040c17, 0xffbac3c059ff0c04, 0x0c120002bd0b6c95, 0x36baff3ae54b8fff, 0xc7040c29140bbb6a, 0xff3d4875e7ff0c24, 0x0c32c004bc833a29, 0xb927ffbbf54360ff, 0x000f0cc78e053b07, 0x91040c6397040c83, 0x38ff0c5002070c55, 0xbe063998ffb9ef68, 0x8354aeff0c5e000c, 0x9904bdaa4b98ff3d, 0x48ff0c7001070c75, 0xbd8b06d8ff3ce2a4, 0xa1caa0ff0c7e9b04, 0x000c39d0792fffbd, 0x02080c99030b0ca7, 0xffbb45cd18ff0c94, 0x0ca20111bc68d36e, 0x73e0ff3acf1a07ff, 0x060d0cb9a6043c08, 0xffb89bc465ff0cb4, 0x0cc2b7043cb78d97, 0x5cc5ffbb988123ff, 0x070e0d0f00123b2e, 0x00090ce1000c0cef, 0xffbd0f05dbff0cdc, 0x0cea0009bc06f352, 0xf435ffbd90446dff, 0x00070d010b0bbcea, 0xffbc701990ff0cfc, 0x0d0a00083b7a12ca, 0xc8beff3b70695eff, 0x51040d33060d3d02, 0xc0ff0d20040d0d25, 0x39175588ffbb9537, 0xef7fbeff0d2e9f04, 0x010cb9e5ae7aff38, 0xf7ff0d40bc040d45, 0x3bbb219affba894d, 0xb272b8ff0d4e070e, 0x010cbc9d7f17ff3b, 0x91050e77000f0f93, 0xc9040da790050deb, 0x01080d7900020d87, 0xff3b467a98ff0d74, 0x0d82000d3d127a79, 0x44a0ff3c1e6ebfff, 0x01080d99cb04bbdb, 0xff3c9fbd0eff0d94, 0x0da2050bbbdb176c, 0xed3affbc5de41aff, 0x050b0dcb00023c39, 0xaeff0db8bc040dbd, 0xbc8536a1ffbd75a0, 0xd626ffff0dc6c404, 0x050bbcd58633ff3b, 0x19ff0dd800070ddd, 0x3b82a10fffbc6b72, 0x7468e4ff0de6020d, 0x01093caeaa18ff3b, 0x93050e1301080e33, 0xaeff0e00c9040e05, 0x3c7bd924ff3b2c40, 0xaa2c09ff0e0e040d, 0xc904bba0cff5ff3a, 0x98ff0e2002080e25, 0x3d449bf8ff3c8cfc, 0x1e7768ff0e2e050b, 0xc5043c3026adffbd, 0x020d0e4992050e57, 0xff3c84f4e8ff0e44, 0x0e529305bddb93fc, 0x9c30ff3dd06d9dff, 0x020d0e69c7043cd3, 0xffbd407070ff0e64, 0x0e72cc04bd9bcaf0, 0x2cedff3bdef0eaff, 0x2a0e0f072c0ebc93, 0x0e0b0ea3260e0ec3, 0x37ff0e90c9040e95, 0x39544cf5ffb940d4, 0x61c8ceff0e9e250e, 0x01083c37646bff3a, 0xfaff0eb0c9040eb5, 0xbc74a6c8ffbae275, 0x952217ff0ebecd04, 0x01083d68f666ff3b, 0x94050ed901110ee7, 0xff3b9cee10ff0ed4, 0x0ee2030bbbdfeec9, 0xcf0aff3b8d12e6ff, 0x00070ef9000cbcc1, 0xffba8e7f83ff0ef4, 0x0f0200023c24a408, 0xcf85ffbc3d86ccff, 0x300e0f4f0108bd28, 0x050b0f21cd040f2f, 0xffbb143fc8ff0f1c, 0x0f2a2e0ebc9d0905, 0xb613ff3c01f10cff, 0x00090f41070dbcd4, 0xffba3206a0ff0f3c, 0x0f4a93053c448aae, 0xc419ffbd0369b3ff, 0xcd040f732d0ebb4e, 0x3aff0f6000070f65, 0x3b819360ffbc9911, 0x03fdbdff0f6e000c, 0x00073da4bf30ff3d, 0xf8ff0f8002080f85, 0x3c8ae32fff3a6b71, 0x8c1a20ff0f8e2f0e, 0x01083cc199ecffbb, 0x060d1015c10410a1, 0xbd040fc3bf040fe3, 0x59ff0fb0bb040fb5, 0xbc1f6098ff3b2099, 0x5c09e5ff0fbe120e, 0x1b0e3c8ab035ff3d, 0x8aff0fd000090fd5, 0x3bf30355ffbc535e, 0x9e42c0ff0fdec004, 0x00023c7af833ff3c, 0x170e0ff9010b0ffe, 0xffbb83ef50ff0ff4, 0x894ad8ff3a798455, 0x0b170e1010030bbc, 0xc0ff3d8da4bcff10, 0x3cc5b54bff3cb9b1, 0x103dca04105d9005, 0x102a150e102f170e, 0x6e7dff3bc6d871ff, 0xdaff1038070bbc3b, 0x3c696c32ffba6bb9, 0x104a8e05104f0007, 0xdd9eff3ba709ebff, 0xb3ff1058cc04bbb7, 0xbaa193d8ff3bbe37, 0x1073000810819105, 0xbd8d93ff106e0007, 0x050b3c47c411ffbb, 0xff3ab4ad07ff107c, 0x109392053cd925e6, 0x41d1aeff108e200e, 0x0009bc98cf71ffbb, 0xff3b193d82ff109c, 0x110d8f05bc047947, 0x10cd000210ed0007, 0x10ba001110bf0b0b, 0x1bf6ff3d71acf2ff, 0x68ff10c8060d3cb1, 0xbc4505c0ff3c5e73, 0x10da020810dfcd04, 0x9d80ff3ba5c333ff, 0xfeff10e80012bc58, 0xbc1c5be0ffbd0b51, 0x31a0a4ff10f60011, 0x3cc0ff10ff150ebd, 0x88ff1108190ebb1b, 0xbc13b320ffbc8755, 0x11351c0e114c230e, 0x1122900511270002, 0x4a28ffbb9abebcff, 0xd8ff1130150ebcce, 0x3cbd1831ffbcae98, 0x1142cd0411470b0b, 0xcfdbffbd57df1aff, 0x023c0cdea0ffbcc1, 0x0511620007116700, 0x3d12e22dff115d92, 0xcba0ffbc44f528ff, 0x13bcb8c018ffbc6a, 0xe800000008000000, 0x8700000001000003, 0x0500000000000011, 0x060484150e09008d, 0x12012cc004024800, 0x04005cbc0400a000, 0x04002e070d003cb4, 0xbaf2356fff0029a9, 0x370007bb05342cff, 0xa5ffbb4ab595ff00, 0x05004e140b3b2e8f, 0xbb97aabdff004981, 0x57030e3b610050ff, 0x63ffbc7d507fff00, 0x040080070e3c1969, 0xff006d01080072bd, 0xb00bc5ffbcdfefcd, 0x035eff007b010cb9, 0x0ebde7f4f0ffbd49, 0xff008dbd0400920d, 0xd6ff02ff3b7a1c85, 0xb3d2ff009b060d3c, 0x04bc3c1fd0ff3d6b, 0x0500c8340400e88f, 0xff00b5620500ba7a, 0x5601e2ffb9c141ce, 0x4aabff00c3000cbb, 0x09bd06e2a0ffb987, 0xff00d5000d00da02, 0x314b99ff3c2e7095, 0x4f97ff00e30b0e3b, 0x11bc5aafbdffbb9c, 0x0100fe3e01010c01, 0xbc89e616ff00f93c, 0x07080ebdec241eff, 0x25ff3baef2f3ff01, 0x09011e050e3a1c34, 0xbcc708d2ff011900, 0x2702093be6ea92ff, 0x02ff3b9ba022ff01, 0x0701bc7805bba3ce, 0x0501587605017801, 0xff01456a05014a75, 0xbe1783ff3d326570, 0x004bff015300073b, 0x113d1decf6ff3df8, 0xff0165c604016a00, 0x7065aaffbca42e89, 0x3698ff017302083d, 0x023d1b2a50ff3e25, 0x0d018e0011019c00, 0xbc8ad035ff018907, 0x970d0e3c0f5344ff, 0xf4ffbc22d15cff01, 0x1101ae060d3d8453, 0xbceda319ff01a901, 0xb777053cd0cca7ff, 0x22ff3c01d8d3ff01, 0x0e02048805bcc43a, 0x0b01d6820501e40e, 0x3a0b28d1ff01d10b, 0xdf0009bbdb3480ff, 0x15ffb88888bcff01, 0x0901f6c104bc23e8, 0x3d25db11ff01f100, 0xff0109bc5488edff, 0x98ff3b9af21fff01, 0x0e02280e0ebc8561, 0xff02150009021a08, 0x38b666ffbb43077a, 0xe905ff02238b053c, 0x04baa26ad3ff3b32, 0xff02350009023ac3, 0xb21176ff3d60f0a0, 0x3ddeff0243060dbc, 0x063b92ae1bffbc8a, 0x0e02dc000c03680d, 0x050278030b029809, 0xff02655005026a52, 0x38de0fffb8dd9aa0, 0xaee0ff02737705bd, 0x04bab3962aff3bfe, 0xff0285000f028a79, 0xcff757ff3bbd3893, 0xb221ff02930606ba, 0x04bb4968f2ffbc90, 0x0402ae6f0402bc71, 0xb7cf71b5ff02a93b, 0xb70106bbbbbda7ff, 0x70ffbd9c3bf0ff02, 0x0d02ce02063c86f6, 0xbd4cf5b6ff02c905, 0xd7000f396065d8ff, 0x07ff3c7eacbeff02, 0x0403241305ba3f7e, 0x0602f6ab040304b6, 0xbb17a268ff02f107, 0xffb0043ac2d977ff, 0x0cffbca21807ff02, 0x08031612053c287d, 0x3d380426ff031102, 0x1fbd043c85dcaaff, 0x82ffbde16c70ff03, 0x0e034808063c74bf, 0xff0335b604033a0f, 0x6fb408ffbc34a00d, 0x07e5ff0343a004bd, 0x0ebc99b9edff3b06, 0xff0355030e035a07, 0xd70ee6ffbbc99186, 0x7dffff0363030bba, 0x053b51b7f2ff3c63, 0x0803b4020503f853, 0x0e03860207039401, 0xbb91a8c3ff038105, 0x8f000fbc631ae6ff, 0x3cff3c0cd26aff03, 0x0403a60107bb8f9e, 0x3926b49eff03a17c, 0xaf050ebc56d140ff, 0x87ff394ad66aff03, 0x0803d800073c3ae0, 0xff03c5720403ca01, 0x7f49b4ffba9c77f0, 0xa563ff03d3bc04bb, 0x0d3bb34761ffba2c, 0xff03e5190603ea00, 0x203a70ffbc6240b3, 0x850dff03f3000c3b, 0x0d3b98f58aff3883, 0x0804205405044000, 0xff040dbf04041200, 0x0b9414ffbda3a2e6, 0x9a68ff041b0a0ebd, 0x08bd273b40ffbc36, 0xff042d0007043200, 0x9d0c4cffbcaed46f, 0x8bd0ff043bc004bb, 0x08bb7bb926ff3bea, 0x0e0456130e046401, 0xbb396a2bff045101, 0x5f59053a04a216ff, 0xe6ff3c4c2f74ff04, 0x0e0476000fbcb20b, 0x3aee7feeff047100, 0x7fc4043c8311daff, 0x11ffbaa5af53ff04, 0x0406c4c704bc2afa, 0x06051cbb0405a8c5, 0x0404b8ab0404d80d, 0xff04a5890504aaa6, 0xd73b81ffb8816b77, 0x18e9ff04b333053a, 0x053b919cf8ffbbb4, 0xff04c5001104ca45, 0x95c7f4ffb98146f6, 0x415fff04d3130b3a, 0x0eba358705ffb916, 0x0604ee011104fc16, 0xbb864da1ff04e912, 0xf7030bbcba13faff, 0xd6ff3b2820faff04, 0x04050e000d3ceb94, 0x3c47168fff050988, 0x17270ebc8f959bff, 0xc9ffba381318ff05, 0x0e05640112badf78, 0x0c0536170e054422, 0x3b1b5d8bff053100, 0x3f180ebc41012eff, 0xd5ffbdc34c67ff05, 0x050556260eba0ae1, 0x3bc5defaff055165, 0x5f2a0e3c3db90aff, 0x17ffbcfe482eff05, 0x05058802083b7095, 0xff05750906057a1e, 0xe54dd2ff3c127e8b, 0xa96aff0583000f3a, 0x04bc2ac855ff3b4e, 0xff05950106059abf, 0x876bb5ffbbfecebc, 0x0a06ff05a3020d3b, 0x05bcb35146ff3ae9, 0x0e05f4c60406387e, 0x0505c6490505d42a, 0x3d03c073ff05c129, 0xcf00123bba0755ff, 0x4bff3b8e8cc8ff05, 0x0e05e60111bd067e, 0x3cc60baaff05e133, 0xef2b0ebcc50bdaff, 0xaaffbcf1c21eff05, 0x05061879053ab57b, 0xff06050002060a1e, 0xe4ac86ff3debd180, 0x0b9fff06134101bd, 0x0b3b4243bbffbd97, 0xff06257c05062a0e, 0x8c84a1ff3ba5a669, 0xe75bff0633010c3d, 0x0e3e1f96f0ff3d5c, 0x0e06600012068026, 0xff064d0007065217, 0x94cfcfff3d311017, 0x5745ff065b8a053b, 0x0b3c9f2cf9ffbbc1, 0xff066d0002067207, 0x5ebcf1ff3c94a6ef, 0x6fe3ff067b7f053b, 0x12bc5b531dffbd5c, 0x110696280e06a401, 0x3d8150bfff069100, 0x9f2a0e3cb18f89ff, 0x06ffbc43a873ff06, 0x0b06b6310e3c2d88, 0xbbbd15acff06b103, 0xbf0008bcbc2d7eff, 0x75ff3bb30830ff06, 0x0d07e4230e3d60e0, 0x0e0714220e075806, 0x0906e6c80406f41c, 0x3d65e0e5ff06e100, 0xefcb04bb86e974ff, 0xbbffbad4e5c3ff06, 0x07070601123c4329, 0xbd27597eff070100, 0x0f000fbc8c85f1ff, 0x04ff3c0a00dbff07, 0x0707380112b9a34b, 0xff07250009072a01, 0xcefdd7ff3d602b01, 0x8ddeff0733c804bc, 0x083c23559bffbd08, 0xff0745ca04074a00, 0x15867affbd2cce78, 0x5836ff07530107bc, 0x043bb7a744ffbc80, 0x070780000207a0c8, 0xff076d000c077201, 0xbd767fffbc6b894c, 0x3ec0ff077b070d3c, 0x0d3ceb9edeffbd06, 0xff078d1f0e079207, 0x823526ff3c82372e, 0x3666ff079b02073d, 0x113cac1fc2ffbce0, 0x0e07b6cb0407c400, 0xbc0c809bff07b117, 0xbf00023c417ab6ff, 0xceffbc0fe230ff07, 0x0b07d60108bb5d4a, 0xbc30ed13ff07d114, 0xdf170ebd6b42c3ff, 0xedffbbf9b238ff07, 0x110874250e3c3224, 0x050810cb04083000, 0xff07fd010808027f, 0x9a0b3effbe2ac611, 0x2079ff080b8705bd, 0x0dbd121798ffbd9e, 0xff081d0107082207, 0xa72a52ff39a26e57, 0xa055ff082b0b0bbc, 0x0c3e1b048aff3dae, 0x040846240e085401, 0x3c7709abff0841cb, 0x4f000cbd4cd507ff, 0x08ff3ce06277ff08, 0x070866240e3d9ffa, 0x3c3697feff086102, 0x6fc9043df66454ff, 0xfaff3e334466ff08, 0x0708bc260e3e07e1, 0x05088e010c089c00, 0xbd528dbaff088955, 0x970108bb26b28cff, 0x16ffbdb3938dff08, 0x0c08ae6805bd31c3, 0xbc855401ff08a900, 0xb701083c961c68ff, 0x46ff3d544cb0ff08, 0x0408e0cc043cc3d8, 0xff08cd6d0508d2c8, 0xc6ff31ffbc3e7315, 0x9fadff08db010cb9, 0x0ebb7a6dd5ff3b19, 0xff08ed000f08f22d, 0xfce7a6ffbd675ea1, 0xa662ff08fb300e3b, 0x0ebb1993f7ffbcb3, 0x020aea030d0d260e, 0x09098a010b09e000, 0x0e0938020d094f00, 0xff09256f04092a07, 0xc64cfaffbb3febc8, 0x2c35ff0933080e3b, 0x0539bbebbaffbc3a, 0x3d10e2e0ff09418e, 0xc7c2f0ff094a6104, 0x9305bca4796bffbd, 0x030e096588040973, 0xffbc9f0760ff0960, 0x096e90053d2005f0, 0x03c5ffbdd2c700ff, 0xa70409859505bd00, 0xff3c201b35ff0980, 0x41db00ffbd0720f0, 0x97000e099c4404bc, 0xdaffbd8ccb77ff09, 0x0409c0000dbd74ac, 0xff09ad011209b298, 0xa3aaebff3cdb492a, 0x3afaff09bb99043b, 0x043d25cde0ff3d99, 0xff09cda40409d2b8, 0x2315d2ff39619242, 0x028cff09db0009bc, 0x053c74b0a0ff3b30, 0x040a1a010b0a5e94, 0xff09f5010e09fa65, 0x7b48a0ff3c466380, 0x07070e0a0c88043d, 0x7effbc389818ff0a, 0xff0a159904bd844c, 0xe6e76cff3c3d3d6b, 0x3093050a3e0207bb, 0x5a0fff0a2b8a040a, 0x093b546579ffbacb, 0x3b607953ff0a3900, 0x50a304bc65ebceff, 0x2f9cff0a4b040e0a, 0x0bbd3dfb66ffbb9d, 0xbc8431d7ff0a5902, 0xa6000d398c9155ff, 0x78030b0a86040e0a, 0x9329ff0a737b040a, 0x0ebc63a44affbb14, 0x3ace7c4cff0a8102, 0x9801113d1934c0ff, 0x11b2ff0a93030b0a, 0x053b8141e6ff3c0a, 0xbd718dd4ff0aa195, 0xcaa404bd077019ff, 0xb77f040abc000e0a, 0x86ff3b532a39ff0a, 0xff0ac50112bbe8fd, 0xf04923ffbb852cb2, 0xd700090adc030b3c, 0x1dff3be4433dff0a, 0xff0ae50009bbd224, 0x193dbaffbc198ad2, 0x7e000f0c0a060e3c, 0x1a060d0b3aa7040b, 0x07070b0b0c9c040b, 0x01ff3a1c4469ff0b, 0xff0b15010ebc9608, 0xd477b4ffbb874587, 0x278c040b2c00023c, 0xabffbc874ea5ff0b, 0xff0b35000c3c431b, 0x44de0aff3d34338a, 0x5001110b5e040e3c, 0x8a0fff0b4b000b0b, 0x04bd794b5dff3bd4, 0x3ccf0aa7ff0b59a9, 0x70070d3afcdc2eff, 0x1463ff0b6bbf040b, 0x04bb4cb3d8ffbd08, 0x3d5316b5ff0b79b3, 0xc6050e3d8b460bff, 0x9896050ba6030e0b, 0x489eff0b93c6040b, 0x0c39329250ff3785, 0xbaa1db04ff0ba101, 0xb8af04bc93a308ff, 0xcaa2ff0bb300110b, 0x09bc244c11ff3b35, 0x3caf5aaeff0bc100, 0xea00123aae4bddff, 0xd7000c0bdcc3040b, 0x29ffbcb9a57bff0b, 0xff0be5000cbd4f3f, 0x358deaff3baab339, 0xf7060d0bfc0009bc, 0xd1ff3c9286f8ff0b, 0xff0c05060d3dda17, 0x093a29ff3c0a6781, 0x56cc040c9a010cbd, 0x2801090c36070e0c, 0x1f24ff0c23000c0c, 0x0f3bc2a90eff3ac8, 0xbd056e75ff0c3100, 0x48bb04bc006e0dff, 0x4f8bff0c43ba040c, 0x04bbfb3b35ffba35, 0x3b310025ff0c51bf, 0x7a0002ba0a9643ff, 0x6702090c6c080e0c, 0x02ffbc78286bff0c, 0xff0c7500093bcd6c, 0x978b92ff3ccc2618, 0x8701090c8c080e39, 0x0cff3c4eec6bff0c, 0xff0c95000fbb1822, 0xc355e4ff3c8c5779, 0xc200080ce20b0bbb, 0xaf070e0cb49c040c, 0xc5ff3d898796ff0c, 0xff0cbd090bbc8c9f, 0xba64b9ffbb5e8269, 0xcfc6040cd4010738, 0x55ff3be6681fff0c, 0xff0cdd00023c8faf, 0x85d38fff3c2ed644, 0xf800020d06130bbc, 0x447aff0cf30e0b0c, 0x043bb61bd8ffbd2f, 0xbd079b41ff0d01bc, 0x18ba04bde744adff, 0xdf55ff0d13b4040d, 0x043d4effcaffba0e, 0xbd0f44b0ff0d21c0, 0x54010cb90255aaff, 0xac020b0e38000f0f, 0x5a00020d7a060d0d, 0x47c7040d4c010b0d, 0x51ff3abe1bd8ff0d, 0xff0d559204bc6466, 0x7eecdcff3c2c7340, 0x6702070d6c0009bd, 0x94ff3c069d38ff0d, 0xff0d759305bcd5e8, 0x93c626ffbcbfdb24, 0x9000080d9e00073c, 0x38e8ff0d8bc0040d, 0x043dabf990ff3da6, 0x3d809908ff0d99c0, 0xa7c0043d856840ff, 0x20ff3cafb4c0ff0d, 0x0e0df4230e3cc513, 0x0d0dc6040b0dd417, 0x3bb88befff0dc102, 0xcf020dbcf177f3ff, 0x0fffbb6f70aaff0d, 0x0e0de601093c41df, 0x3c58a2d6ff0de119, 0xefc004badb5183ff, 0x8bff3c62d4a7ff0d, 0x090e18260ebc8b4d, 0xff0e05020d0e0a00, 0x95b233ffbc50219d, 0xf7c0ff0e13020dbd, 0x0e3da6b4a7ffbae4, 0xff0e25030b0e2a28, 0x763614ff3d5f3e4e, 0xea2dff0e33350e3c, 0x07bc914afdffba14, 0x040e848e050ec800, 0x040e5600020e64c7, 0xbbb1f23cff0e51c3, 0x5f070b3bbb1cc8ff, 0x05ffbb97dfa0ff0e, 0x0c0e7600083c4ae4, 0x3c1aa6f6ff0e7100, 0x7fcb04bcd612c6ff, 0x2cff3c428950ff0e, 0x120ea8190ebc39bb, 0xff0e95170e0e9a00, 0x372fd0ffbb6cd89d, 0x3c5dff0ea3bc043c, 0x0e3a0d1a51ffbb57, 0xff0eb500020eba1b, 0x28e4c7ffbd3c691a, 0x1bd6ff0ec3060dbb, 0x0dbad19e7fff399d, 0x0e0ef0cd040f1006, 0xff0edd140e0ee217, 0xc4f8d4ffbb5d970b, 0xea82ff0eeb140b3b, 0x053b0f3968ffbb30, 0xff0efd90050f0292, 0x521831ff3b667e59, 0xa3a6ff0f0b050b3c, 0x043b0a4896ffbc9e, 0x040f261f0e0f34cb, 0x3ab524d6ff0f21ca, 0x2fc9043c27cf13ff, 0x39ff3aa0208dff0f, 0x050f460108bc84c1, 0x3c9283baff0f418e, 0x4fcd04bb02cf6dff, 0xe7ffbc8830a3ff0f, 0x04106b1c0ebbc67d, 0x050fa4ca040fe8cb, 0x0e0f7693050f8494, 0x3a147976ff0f711b, 0x7f00023cd1a767ff, 0x11ff3d56dd09ff0f, 0x040f9600023c0199, 0xbcd81328ff0f91c9, 0x9f170ebd9e4336ff, 0x8bff3c548f65ff0f, 0x0e0fc800023d2495, 0xff0fb5070b0fba18, 0xb95f62ff3b9a2148, 0xc8b1ff0fc3060dbc, 0x0e3beda65bff3d71, 0xff0fd500070fda17, 0x472088ffbc9869c9, 0x2eaaff0fe300113c, 0x04bd655eeeff3d09, 0x0e1010060d1027cc, 0xff0ffd9005100217, 0x896afeff3bf375ed, 0x616cff100b0009bc, 0x0b3a58b6efff3d0d, 0xff101d000710220b, 0xaa8465ff3be37a20, 0x0012bd224ff7ffbc, 0x170e103d0009104b, 0xff39b48447ff1038, 0x104601093bfb55d7, 0xbe44ffbcb8d661ff, 0x190e105d94053b92, 0xffbc616b54ff1058, 0x1066150e3c492573, 0x544bffbcaa7279ff, 0xcc0410fb220e3c6f, 0xc5041097c60410b7, 0xccff10841f0e1089, 0x3c4aabfaffbb09dd, 0x75389dff10928e05, 0xc7043d166ed8ff3d, 0xb0ff10a4030b10a9, 0xbe340bdbffbd94f9, 0x1eea46ff10b20002, 0x1f0ebc1968d0ffbd, 0x000210cd000710db, 0xff3c6ce6b8ff10c8, 0x10d6cd043a358af4, 0xff5cffbc7a4bbdff, 0x900510ed0002bb6a, 0xffbcf20692ff10e8, 0x10f60009bd8bed1a, 0xf02aff3da8a694ff, 0x01111143cc04bd07, 0x00091115250e1123, 0xff3cc9a112ff1110, 0x111e2a0ebc458a2d, 0x0339ffbc5c6949ff, 0x00081135030b3ba2, 0xffbc317c82ff1130, 0x113eca043c72ce00, 0x58e8ffbd86fe31ff, 0xcd0411670002bcda, 0x05ff11542d0e1159, 0x3d156c98ffbc6fd9, 0xfa59c2ff11629505, 0x230ebd359ff2ff3b, 0xd6ff1174cd041179, 0xbdc62b68ffbc6b0b, 0xe0cc00ff1182280e, 0x0013bbd1f162ff3c, 0x03e8000000080000, 0x10af000000010000, 0x8d05000000000000, 0xc3040484160e0900, 0x9704012c98040248, 0x8804005c900400a0, 0x8805002e8604003c, 0xff3565011cff0029, 0x00370305b9ebed74, 0x5b6cff3ceeddb8ff, 0x6905004e010c3a5c, 0xff39cb1ffeff0049, 0x0057060dbaa0fa2d, 0xde60ffbabab321ff, 0x0f060080020e3b18, 0xf0ff006d94040072, 0xbc6f85a5ffbbd089, 0x68d4e6ff007b000f, 0x0009bb5569f6ff3b, 0x95ff008d070e0092, 0xbab6dec5ff3c123e, 0x21f930ff009b0d0e, 0x0b0b3bcfff93ffbc, 0x020800c8010b00e8, 0x53ff00b5011100ba, 0x3d5feea0ffbc2fd4, 0xa3f0b2ff00c30107, 0x7e05bd502389ffbd, 0xb7ff00d5070d00da, 0x3c68a95cff3b12ca, 0x002bfbff00e30207, 0x0d0ebd011b0effbb, 0x070e00fe090e010c, 0xff3b8a1f91ff00f9, 0x01070107bc890bea, 0xfad9ff3c899316ff, 0x0008011e070dbbce, 0xff3aa8ce6bff0119, 0x01270008bcacc352, 0xa0f6ffbd4db25dff, 0x001101bc0002bbc3, 0x070d015852050178, 0x29ff0145a804014a, 0xbd28f5b2ffbb13f1, 0x077fa2ff01530d0e, 0x54053d36db5affbb, 0xf8ff01650d0e016a, 0x3a76f6fbffbd44e4, 0xc5ce39ff01730208, 0x060dbb9a0212ffba, 0x1106018e0b0e019c, 0xffbc285112ff0189, 0x019701083b626d76, 0x95b1ffb9a906c5ff, 0xb20401ae01073c29, 0xff3c635d20ff01a9, 0x01b70e0ebcab1b66, 0x9dabff3d1e4b09ff, 0x02070204070dbd32, 0xab0401d60d0e01e4, 0xff3a99a884ff01d1, 0x01df0012b9e39052, 0x7171ffbbd3fd65ff, 0x001101f6010838d4, 0xffbbb2f7a4ff01f1, 0x01ffaf043af66001, 0xafb8ffbc093183ff, 0x710502280007bb8e, 0xcdff02150109021a, 0xbd36e8a7ffbc3c34, 0xf5c72fff0223010c, 0x110b3c785b50ffbb, 0x7bff02350e0b023a, 0xbd26c420ff3bc72d, 0x31f71cff0243010c, 0x120e3d44ba11ff3c, 0x860502dc88050368, 0x020702787f050298, 0xecff02650002026a, 0x36acade5ffbadfd6, 0xa81136ff02730012, 0x81053895dbbaffbb, 0xdbff0285070e028a, 0x3c0ded83ffbbc78a, 0x37c01cff02938205, 0x0108ba5b45cfffbc, 0x870502aec50402bc, 0xffba36240eff02a9, 0x02b7030b3c400821, 0x5820ff3cbe0279ff, 0x010c02ce010ebc23, 0xff3cdcaa86ff02c9, 0x02d7c6043c0b725e, 0x2e1cffb90bf4d2ff, 0xc6040324060d3b8a, 0x0b0b02f6130b0304, 0xff37fa5531ff02f1, 0x02ff0002bd04abbf, 0x0131ff3ca97177ff, 0xc70403160b0b3bb3, 0xffbc636f67ff0311, 0x031f02073be5a651, 0xe855ffbc697d32ff, 0xc404034889053b31, 0xb7ff0335010e033a, 0xbd8b8908ff3ca0d8, 0x5790bdff0343c904, 0xcb043be687a8ffbb, 0x5aff0355c404035a, 0x3b6f073bffbb9cf1, 0xf00f29ff03630007, 0x0107bb510c4affbc, 0x8a0503b4000203f8, 0x140e0386c9040394, 0xffbc88c267ff0381, 0x038f030b3c174980, 0x9895ff3d50798aff, 0x000903a6070d3c50, 0xffbe0b8cc7ff03a1, 0x03af010c3bfa81d5, 0x92aaffbcb32ccdff, 0x060d03d8c7043d31, 0xdeff03c5c50403ca, 0x3bb9639cffbc5222, 0xadb70bff03d3070d, 0xc804bbc6a686ff3c, 0x9eff03e5000703ea, 0xbe1772e9ffbc01e0, 0xaf9107ff03f3140e, 0x050bbd19d0eaff3b, 0x000c0420c5040440, 0x54ff040d8a050412, 0x3d048988ffbcac6a, 0x6e256aff041b030b, 0x030dbd8966f6ffbc, 0x71ff042d020d0432, 0x3d8b4870ffba6dbb, 0xbdea8bff043b070d, 0x000839760aa3ffbc, 0x88050456010c0464, 0xff3c3352ccff0451, 0x045f0002bc8a0495, 0x3b84ff3bdd2e76ff, 0x2b050476020d3d26, 0xffbc6caafdff0471, 0x047f1305bd13c378, 0x8162ff3bdc7b11ff, 0xaf0406c45705bba0, 0xa004051cab0405a8, 0x370504b8420504d8, 0xf4ff04a58e0404aa, 0x3b0f1695ff382b1f, 0x8e15a2ff04b33f01, 0x200ebbc376c5ff3a, 0xabff04c5810404ca, 0xbb10c137ffba254a, 0xe56cc2ff04d30111, 0x00113af20ee6ffb8, 0xa70404eea90404fc, 0xffbc32a823ff04e9, 0x04f7aa043ba65cd1, 0x1b8eff3d1e988eff, 0x1c0e050e5505bcf7, 0xff3c024c81ff0509, 0x0517230e3a4ca97e, 0x04f9ffbcd1050aff, 0x2b0e056400113a12, 0x0108053639050544, 0xff3d50eed8ff0531, 0x053f270e3c93144d, 0xed2fffbbf4d7e7ff, 0x030b05562c0e3d0d, 0xffbd730587ff0551, 0x055f4c05bde97625, 0xe51dff3c9fe9feff, 0x011105881305bc59, 0xaaff0575ad04057a, 0x3c70223affbcbd28, 0x453c9fff0583000c, 0x060d3bb50979ffbc, 0x58ff0595ac04059a, 0xbb32d717ff3bab21, 0x3d1912ff05a3ac04, 0x140b3d279dc4ffbd, 0x060d05f4100b0638, 0x011205c64a0505d4, 0xffba34850cff05c1, 0x05cf070b39a6faa1, 0xc2cbffbba74a0bff, 0x0e0b05e6070d3a9d, 0xff3a3c1478ff05e1, 0x05ef0d0b3cea7bc0, 0x4479ff3be438adff, 0x00120618110b3d21, 0x30ff06054001060a, 0xbd41d2bbffbdcdb6, 0x860012ff0613bf04, 0x5005bdff4d45ffbc, 0x5fff0625220e062a, 0xbb36a501ff3d500e, 0x79082dff06335605, 0x3f05bc5f7662ffbd, 0x0906066001050680, 0xa9ff064d2f0e0652, 0xbc64972fff3d9c54, 0xe2efe7ff065b290e, 0x0108bd72dac5ffbc, 0xd6ff066d00080672, 0x3a9b991bffbbd9bf, 0x24f8a0ff067b060d, 0x4705ba8c7965ff3c, 0x290e0696010c06a4, 0xffbb4644aaff0691, 0x069f00083c9e4978, 0xa1b6ffbd08e6cdff, 0x4b0506b6c804baf7, 0xffbc80c7ecff06b1, 0x06bf010cbab65e34, 0x6a4bff3c99d61eff, 0x840507e40107bbf4, 0x73050714b0040758, 0x000806e6990406f4, 0xffbb0ab40eff06e1, 0x06ef310e3ae8bd25, 0x8f64ffba04ff40ff, 0x8c040706000cbc1e, 0xff3b75a1b9ff0701, 0x070f170ebb177a07, 0xa994ffbb1c137cff, 0x1c0e073800113be6, 0xe8ff0725b204072a, 0x3c2f7803ffbcfbf0, 0x0575ecff07331d0e, 0xc704394f2a88ffbd, 0x32ff0745010c074a, 0xbac9e812ff3a87b1, 0xbfdba6ff07532b0e, 0x0009bbbe8d4aff3b, 0xca040780230e07a0, 0xf2ff076d88050772, 0x3aee238aff3ad7af, 0x01abb2ff077b8505, 0xbe043a9dfa1bffbd, 0xf8ff078d2a0e0792, 0x3b87b440ffbc4af6, 0x2614f0ff079b0012, 0x170ebb0a21ffff3a, 0x040b07b6000f07c4, 0xffbde02224ff07b1, 0x07bf0109bd09a57c, 0x8638ffbca35570ff, 0x000f07d6a4043be2, 0xff3d3fa3caff07d1, 0x07df1f0e3a817093, 0xa09bffbaacc29fff, 0x100b08740207bc49, 0x00080810180e0830, 0xf0ff07fd070b0802, 0xbbdcb104ff3b7570, 0x1a06e8ff080b9c04, 0x340e3bc2e86eff3c, 0xe1ff081d190e0822, 0x3a34d416ffbba354, 0x1a57e5ff082b010c, 0x8205bd245169ffbc, 0x000c0846140b0854, 0xffb824a3b8ff0841, 0x084f6b05bcdd32b4, 0xac00ff3b0a3c1cff, 0x850508668605bb74, 0xffbb55a57bff0861, 0x086f8b053cc4e5a2, 0x83baffbbf5d135ff, 0xc20408bcc3043c2e, 0x0002088e170e089c, 0xffba9df781ff0889, 0x08972b0e3c11afd1, 0xe8bcffba8a5459ff, 0x630508ae100b3a8d, 0xff3d5b1f56ff08a9, 0x08b70008b923239e, 0xd046ff3b50a995ff, 0x2b0e08e05805bd26, 0x15ff08cd001208d2, 0x3dcaad85ffbd05ed, 0x3ad8f4ff08db000c, 0x260ebd18d139ffbe, 0xd9ff08ed760508f2, 0xba2feb72ffbc0478, 0x394470ff08fb080b, 0x120e3bfe563effbb, 0x020d0acf8e050cde, 0x82040966000d09bc, 0x00080938040b0958, 0xb0ff09256704092a, 0x3d15fe0aff3c733d, 0xdee58bff09337304, 0x73043cb64ca0ffbb, 0x80ff09456704094a, 0x3b52f280ff3acc0d, 0x5cc7a0ff09530002, 0x01073ad47a00ffbb, 0xff3cad0c60ff0961, 0x099c030e3d32eaa0, 0x09800209098e0108, 0x7d5833ff097b0002, 0x010ebcb0dd65ff3a, 0xff3bf930e0ff0989, 0x0997030b3c4250d5, 0x5e60ffbca27f80ff, 0xf0ff09a57004bd64, 0x0e09b70e0e3cd1ee, 0xba8f0527ff09b20d, 0xd758ff3c4d7172ff, 0xb1040a43b204bd70, 0x011109e8af040a08, 0xe0ff09d5a80409da, 0xbba17d95ff3aa3a5, 0x3d2140ff09e3000f, 0x060dbc70b661ffb9, 0x47ff09f5000209fa, 0xbba940dbff3d06d3, 0x55f22fff0a030007, 0x0011bbbc8f57ffbd, 0x14ff0a15000c0a23, 0xff0a1e0008bcb5ed, 0x4535faffbd256bf0, 0x3000090a350008bd, 0x76ff3d250687ff0a, 0xff0a3e00023c4b2a, 0xba9991ff3b41990b, 0x6b00110a8b130b3c, 0x5800020a5d0b0b0a, 0x06ffbbc61b96ff0a, 0xff0a6600093aba7d, 0x248a94ffbda45a56, 0x7800070a7db6043d, 0xd4ffbc38b358ff0a, 0xff0a86b8043a03ac, 0xa5792dff3c812840, 0xa1c5040aaf0b0e3a, 0x3e2bff0a9cbb040a, 0x08bb9384baff3bc6, 0x3c8143a2ff0aaa01, 0xc1cb043b2b3e4cff, 0x77b6ff0abcb7040a, 0x0c39e85216ffbc90, 0xbd10997eff0aca01, 0xc2010cbddd59baff, 0x1667040b51020d0b, 0xf15c040aff63040b, 0x6a98ff0aec55040a, 0x043beb5904ffb953, 0xbcb2cef3ff0afa61, 0x1192053b415c0fff, 0x188cff0b0c030b0b, 0xffbc1f6128ff3d07, 0x0b31010bbd059de4, 0x0bf136ff0b236b04, 0xce3aff0b2c000bbe, 0x05bb46a14fff3c19, 0xff0b3e040b0b4395, 0xdf5c0dff3ac42dc9, 0xeeb7ff0b4cbb04ba, 0x043b6f2096ffbb02, 0x0d0b79070d0b7e67, 0xff0b66030b0b6b03, 0xe55decffbc937087, 0x6b26ff0b745f04bd, 0xff3bb53bcfffbb14, 0x0ba2060ebd5b41d6, 0x0b8f6a040b946d04, 0x72b7ffbbfd028fff, 0x43ff0b9d000c3b49, 0xb9de1f51ffb94722, 0x0bafa7040bb4060d, 0xbb1bffb9cb1d18ff, 0xd0ff0bbd000cb8e0, 0x3b173d46ff3931f9, 0x0c0eba040c528f05, 0x0be0020e0beeb904, 0xe5aa24ff0bdb0108, 0x070ebce39df2ff3a, 0xff3cbd1d47ff0be9, 0x0c000007b9fa31c3, 0x840b96ff0bfb060d, 0x00113d8aa78fff3d, 0xff3cbd0088ff0c09, 0x0c32bc043d209164, 0x0c1f070b0c240007, 0xff9cffbd0ba5ebff, 0x28ff0c2dbb04bdf9, 0x3cfb14a8ffbb7c0e, 0x0c3f070e0c44bf04, 0xc956ff3c53592dff, 0x2bff0c4d0d0e3d62, 0x3bc6e92dffbbdb51, 0x0c7a070b0c9ac604, 0x0c6791050c6cbf04, 0x7362ffbb6114a8ff, 0x83ff0c7500113bde, 0xbbab2a50ffbd2059, 0x0c870d0b0c8cbb04, 0x7307ffbc1fc289ff, 0x8cff0c9590053baf, 0xbacc28d6ff3c540b, 0x0cb0c9040cbeca04, 0x856d84ff0cabc804, 0x9205ba845a5eff3c, 0xff3bdda624ff0cb9, 0x0cd0060d3d0797b5, 0x36eff3ff0ccb0002, 0x00113c3907f5ffbc, 0xffba18d057ff0cd9, 0x0e738e05bce0cdbd, 0x0d64150e0df0200e, 0x0d120b0b0d29b804, 0x0cff00020d04000c, 0x6658ffbbb25cfdff, 0xbcff0d0d01073c38, 0xbcdf800cffbd4335, 0x0d1f00080d24000c, 0x5400ffbd0a70f2ff, 0x09bd94c2f9ffbd0b, 0x0d0d3f140e0d4d01, 0x3cb273d1ff0d3a07, 0x480011bbd3d7f2ff, 0xd7ff3d1f2619ff0d, 0x0e0d5f0111b92708, 0xbc3e0a4eff0d5a14, 0xccb0ff3ad6a220ff, 0xc4040dac00083d26, 0x000c0d7e00110d8c, 0xffbb6c94d0ff0d79, 0x0d87b504bcb87058, 0x7de4ffbb85378eff, 0x01070d9e170e3bb3, 0xff3b2496f7ff0d99, 0x0da7060d3c7a322f, 0xc3bcffbc2534e6ff, 0x020d0dd0ca043bca, 0xe0ff0dbda0040dc2, 0xbc8c3b9bff3d33cc, 0xe893b0ff0dcb0002, 0x170e3c04f794ffba, 0x18ff0ddd000f0de2, 0x3c988defff3c0027, 0x0d498eff0deb0007, 0xa004bcb70f14ff3c, 0xf4ff0dfd00020e02, 0x39b2cd60ff3d01f3, 0x0e2ab6040e4a070d, 0x0e17ac040e1c0002, 0x1acfff3bce54a9ff, 0x9dff0e250009bd64, 0xbd18f91cff3b319a, 0x0e37010b0e3cb804, 0x1740ff3d85ed17ff, 0x64ff0e452a0e3c20, 0x3ba024dfffba3601, 0x0e6000080e6e0007, 0x0b320aff0e5bc604, 0x0002bd28d57cffbd, 0xffbc9b6ac6ff0e69, 0x2a6602ffbc51de54, 0x07070d0f938f05bc, 0xa3000f0ec3cc040f, 0x90330e0e95340e0e, 0xd2ff3b64bbccff0e, 0xff0e9e000dbd2538, 0xd08098ff3d0febc0, 0xb000020eb50b0b3d, 0x99ffbc138853ff0e, 0xff0ebec704b92d79, 0x0cfb9cffbbaecbc1, 0xd900070ee700023c, 0x6014ff0ed4000f0e, 0x0e3c11b358ff3daa, 0xbd0e9d12ff0ee22b, 0xf90b0b3974e7f3ff, 0xda8cff0ef400070e, 0x083b82f4c7ffbc73, 0x3abca4a1ff0f0200, 0x4fc1043d02a5baff, 0x21140e0f2fbd040f, 0xd340ff0f1c00080f, 0x0e3beacee0ff3bf6, 0x3bf66cd0ff0f2a17, 0x4100073b03a720ff, 0x47ceff0f3c00080f, 0x0bbcbb8e15ffbd27, 0xbc4f7228ff0f4a02, 0x73250ebb2ad8e5ff, 0x601f0e0f65230e0f, 0xc9ff3b1f3c6cff0f, 0xff0f6e0007bcbdd9, 0x12ac8fff3d8a8d5a, 0x8000070f850b0b3d, 0x87ffbaecf404ff0f, 0xff0f8e0109bd04bc, 0x58d340ffbd1fb8de, 0xdf00091023140ebd, 0xb1c2040fbf92050f, 0x5ff8ff0facb8040f, 0x043cc315b4ff3a8c, 0xbd37202dff0fbac5, 0xd1cd043bf658e9ff, 0xca9aff0fcc0b0b0f, 0x08bc50af20ffbae4, 0x3b7d99c2ff0fda00, 0x03000f3c609333ff, 0xf002090ff5920510, 0x80ffbd30f1ebff0f, 0xff0ffe0209bc943e, 0xe608daff3d6d785a, 0x10060d1015bc043c, 0xa0ff3d54a92fff10, 0xff101e050bba37a9, 0x85bdd9ff3bb83cab, 0x4b000c106b0109bb, 0x38000d103d1f0e10, 0xf9ffbd051c5eff10, 0xff1046060d399b8a, 0x12c435ff3a8eeda2, 0x58050b105d000fbb, 0x65ffbb01c39aff10, 0xff106600023b6ce4, 0x82a397ff3a9fd320, 0x81030b108f000fba, 0x3dcbff107c020d10, 0x04bd0fdf34ffbbe7, 0x3d27f3e0ff108ac2, 0xa1030b3a27f600ff, 0x6038ff109ccc0410, 0x0c3c7662b2ff3b9b, 0x3a0b8c53ff10aa01, 0x000013bc6a1810ff, 0x0003e80000000800, 0x0011360000000100, 0xdc8d050000000000, 0x4801060460150e08, 0xa0c004012c8c0502, 0x3cb304005cb80400, 0x299b04002eaf0400, 0xceff38b36880ff00, 0xff0037b20439aab2, 0x1c30bcff3b2b9f20, 0x497705004e8305bb, 0x53ffbbf819d7ff00, 0xff00570a0ebb272a, 0xc5ddfeff3bdab837, 0x72060d0080bf04ba, 0x0190ff006d800500, 0x053a608a90ffbc8d, 0x3bb13446ff007b87, 0x920d0e39de5452ff, 0x5751ff008d060d00, 0x0e3c51f434ffbd12, 0xbd39146cff009b0e, 0xe80d0e3be685e9ff, 0xbac30400c8060d00, 0xcc4fff00b5000800, 0x04bcce8ab5ff3a7a, 0x3afe3475ff00c3c6, 0xda6c05bc496585ff, 0xe5a8ff00d5c70400, 0x04bca62d15ff3c60, 0xbacea0ddff00e3c6, 0x0c0e0b3aa41887ff, 0xf95d0500fe620501, 0x10ffbc1eed15ff00, 0xff0107c8043d8ccf, 0x389a92ffba014c5a, 0x190007011e0109bc, 0x08ff3cbc40ccff01, 0xff0127060d3b9f2a, 0x5d8c91ff3a82180c, 0x789d0401bc050bbc, 0x4a99040158030b01, 0x9b2aff0145060d01, 0x123b006f10ffbb82, 0xbc792024ff015301, 0x6a080ebd9a3323ff, 0xe1d1ff0165070e01, 0x0ebc44cf1fff3b88, 0x3ca87c32ff01730d, 0x9c100ebc109439ff, 0x89000c018e020901, 0xe8ffbb220ee0ff01, 0xff0197000f3ba9e9, 0x304a14ffbd500671, 0xa9000201ae000fbb, 0x40ffbcebfbfbff01, 0xff01b70002bdff2f, 0x045599ffbc959c56, 0xe455040204070e3b, 0xd1011201d6040d01, 0x90ffbc169394ff01, 0xff01df000f3cb7d1, 0x1681d6ffbd5886a5, 0xf1860401f60b0b3c, 0xdbff3b87a4c2ff01, 0xff01ffa304bb2d32, 0xa9c4fcffbac076a4, 0x1a0002022801093b, 0x3881ff0215b20402, 0x0ebb216ed2ff3c0c, 0xbb8d3c60ff02230d, 0x3a080e3c07b926ff, 0x41dbff0235060d02, 0x0d3b267afcff3ce6, 0x3a0bd270ff024306, 0x68be04bc35c02dff, 0x98010702dcb80403, 0x6a0f0e0278950402, 0x4f5dff0265130602, 0x05bb30d6faffb98b, 0x3b7976afff027324, 0x8a97043c9aa664ff, 0xcadcff0285530502, 0x07bd05e40effbbf4, 0xbaf4a675ff029300, 0xbc1205b9d82841ff, 0xa9000c02ae020502, 0xc7ff3adc7afbff02, 0xff02b7aa04bba085, 0xd9e252ff3ba9d29b, 0xc9090602ce01083a, 0x60ffbb35df3aff02, 0xff02d7000f3b64c4, 0xb3ccfbffbca96bfc, 0x0408060324bd04bb, 0xf11e0502f6390503, 0xf0ffbde43d1cff02, 0xff02ff030bbd81fd, 0x0b9fdcff3aa3041d, 0x11010703160906bd, 0xf4ff3b6dc175ff03, 0xff031f0c063d09b1, 0x1d1b1eff3b988e5f, 0x3a000f0348030ebb, 0x8f60ff03350c0503, 0x0cbc2d25daff3c61, 0x3ab026fbff034301, 0x5a0906bb8e18f7ff, 0x5619ff0355020803, 0x0f3c7b940bff3cdb, 0x3c7e55f3ff036300, 0xd40a063b94cb0cff, 0x94000703b40b0b03, 0x81000f0386c20403, 0x08ffbd8d4909ff03, 0xff038f120e3bb3ff, 0x8f9446ff3ca9c890, 0xa16f0503a6030bbc, 0xacff3cd947d8ff03, 0xff03af0111bc7907, 0x06430dffbd5561fa, 0xc11c0503cf52053b, 0x0107be09e40aff03, 0xffbdbba661ff03ca, 0x84cb34ffbd729f35, 0xfc1206041c0002bc, 0xe9130e03ee030d03, 0xd4ffbd0b7186ff03, 0xff03f70e06bdba3a, 0x12f61effbcdb1941, 0x09c104040e000cbb, 0x8affbc8ba4c4ff04, 0xff04170111ba3d04, 0x4a9768ffb8e81528, 0x320007044013063c, 0xa3b1ff042d010c04, 0x063c9ec213ff3a76, 0x39367929ff043b0f, 0x520111bc00457dff, 0x1db3ff044d0c0504, 0x0e39d261faffbb4a, 0xb93d2d2dff045b05, 0xa0c7043b78d915ff, 0xf8bb040584c50406, 0x94ab0404b40d0604, 0x8189050486a60404, 0x5affb841d62aff04, 0xff048f33053ab437, 0x8053dbffbba7a56f, 0xa1001104a645053b, 0x93ffb9e8a71bff04, 0xff04af130b3a896c, 0x104aa2ffb915e359, 0xca000f04d8160eba, 0xed6cff04c57a0404, 0x0b3ac73b08ff3cdc, 0xbba0ee21ff04d30b, 0xea1906bcba8fb3ff, 0x8d92ff04e5000c04, 0x05bb6d035eff3991, 0x3c9dc0a6ff04f304, 0x400111bbb3b6d9ff, 0x12170e0520220e05, 0x96a2ff050d010c05, 0x0ebc69835fffbb69, 0xbdb04ba8ff051b18, 0x32250eb972f735ff, 0x7bb8ff052d000c05, 0x053c5992b2ff3a01, 0x3b04f4c0ff053b64, 0x64000fbad6b1dbff, 0x51050d0556000c05, 0x60ffbc98a845ff05, 0xff055f090b3c4e07, 0x79fe9dffbb02993a, 0x71020d057600023c, 0x2cff3be45a27ff05, 0xff057f0007bcf309, 0xc11ca2ff3b6c1cea, 0xd0c6040614180ebb, 0xa2000205b0011205, 0x697cff059d170e05, 0x0bbd3846a9ffba15, 0xbc7e604aff05ab0b, 0xc20b0bbd0d93e7ff, 0x9aaeff05bd010c05, 0x0c3d62cd50ff3c27, 0x3d5550f8ff05cb00, 0xf455053db3df20ff, 0xe1030d05e6080605, 0xcdffbd66cf2aff05, 0xff05ef4705bbfbdb, 0x8086f6ff3cc93650, 0x01030b06060b0bbc, 0xe6ff3d25161cff06, 0xff060f01073c01f2, 0x7b65feff3cd05d6c, 0x3c010c065c00063d, 0x290207062e360506, 0x46ff3d52b64bff06, 0xff0637060d3e090b, 0x0941efffbafb79cc, 0x491f0e064e200e3c, 0xc9ff3bbb63aeff06, 0xff0657c6043e38bd, 0x32b1bcffbc5775cb, 0x72c604068013053b, 0x8988ff066d010c06, 0x0e3d897657ff3cab, 0xbdc65158ff067b21, 0x92000dbe57cc52ff, 0x08cbff068d000c06, 0x0b3d1bae2fff3c09, 0x3c7b1416ff069b03, 0xc0230eba28c4e8ff, 0xf0cd040734000207, 0xc2000706d0000806, 0x14a3ff06bd010c06, 0x04bd20dab5ffbbb9, 0xbcc00407ff06cbc8, 0xe2cb043c0f4719ff, 0x5854ff06dd020706, 0x0ebbfc9b81ff3b94, 0xbbbd1effff06eb19, 0x140108bcd082ddff, 0x0100090706000707, 0x55ff3b3f46cdff07, 0xff070f8805bcb626, 0xd63d73ff3d42ac21, 0x216405072667053c, 0x2bffbd89f040ff07, 0xff072f0b0bbd26b1, 0xb49d1dff3ba6d628, 0x5c7a05077cc8043c, 0x49010c074e070d07, 0xf2ff3cffd84fff07, 0xff075701073dcb8d, 0xcd87c6ffbcd87f6f, 0x691c0e076e00093b, 0x88ff3d2d2713ff07, 0xff077700123b691a, 0xd6f23fffbccd26a1, 0x92000807a0cd04bb, 0x76d7ff078d001107, 0x08bba96b2fff3c65, 0x3bb4b789ff079b01, 0xb21f0eba13eb80ff, 0x06b1ff07ad860507, 0x0b3c1e2d32ffbd22, 0xbd04d571ff07bb0b, 0x50250ebd85a6abff, 0xeccb04080c001108, 0xd9000c07de7f0507, 0x24ffbdb439f4ff07, 0xff07e7c904be2444, 0x91347cffbd06904a, 0xf9820507fe070dbd, 0x2fffbc919801ff07, 0xff08070b0b3a8254, 0x0ba0e7ff3d9d354f, 0x22c9040830010c3e, 0x2c18ff081d000908, 0x06bd000772ff3d8f, 0x3cc6db57ff082b11, 0x42240ebcf7c627ff, 0xf02bff083d020708, 0x053ddf1d18ff3c24, 0x3e30204aff084b7a, 0x98260e3e028eaaff, 0x6a010c0878000708, 0xff80ff0865c80408, 0x08bcd21b47ff3bdb, 0xbda18d6cff087301, 0x8a6805bd214ad7ff, 0xee83ff0885c80408, 0x08bb5a3d2eff3cb3, 0x3d3fabd0ff089301, 0xbccc043cb01db0ff, 0xa9c80408aecb0408, 0xdaffbba4040cff08, 0xff08b72a0e3b39dc, 0x666b21ffbc92d2e9, 0xc9310e08ce0002ba, 0x73ff3bc02507ff08, 0xff08d7290ebbaed8, 0xa56423ff3d04b080, 0x20010c0d5c100ebb, 0x788e050a0401070b, 0x1400070934000909, 0x01b5040906001209, 0xa1ffbb7c4d5eff09, 0xff090fa8043bb95b, 0x076a1fff3b796fe1, 0x21050b09260002bb, 0xbbff3b38c242ff09, 0xff092f9104bc0d17, 0xa7bbb4ff3c15aec0, 0x4a000f0958010b38, 0xc46aff0945a00409, 0x023c9861e0ffbd29, 0x3b1398b5ff095300, 0x6a0012bbeb5172ff, 0xe46eff0965080e09, 0x0dbc50efd0ffbb4f, 0xba4f3772ff097306, 0xc0040e3c0947feff, 0x927e0409a08b0409, 0x11b6ff098d090b09, 0x04bb2d8b1dff3a7f, 0xbbe9a42bff099b7f, 0xb2010b3b9329f3ff, 0xd522ff09ad010e09, 0x053b13c245ffbc19, 0xb9b8dac0ff09bb8f, 0xe40008b9c6d11eff, 0xd1000209d6990409, 0xb7ffbabba10fff09, 0xff09df060e3b4213, 0x99ae9bffbbce56aa, 0xf1070e09f6060d39, 0x95ff3b4e37e6ff09, 0xff09ff060ebb842c, 0xe1a46affbc8b4b1d, 0x50020b0a94cc043a, 0x22000e0a3000120a, 0xfaa2ff0a1d000f0a, 0x083ba47b4dff3ca6, 0x3b7bc354ff0a2b02, 0x42bb043d0de1edff, 0xfc67ff0a3d00020a, 0x1139bfda49ffbc77, 0xbc69db90ff0a4b01, 0x740011bc1063b3ff, 0x61010e0a66c6040a, 0xaeff3b9986bfff0a, 0xff0a6f100bba0b24, 0x7965ecffbbc76d24, 0x8197040a86ca043b, 0x88ffbb9d4a5bff0a, 0xff0a8f080e3b3384, 0x0f21adff3d091767, 0xbc00110adc00083c, 0xa9080e0aae0b0e0a, 0xcdff3c3f9ffaff0a, 0xff0ab7000c3d809e, 0x1412c3ff3c5c668d, 0xc9000c0ace0b0bbc, 0x19ff3c5b226bff0a, 0xff0ad7000cbc6fe8, 0x122194ff3c778ef3, 0xf28f050b00000c3b, 0xb6e4ff0aed00120a, 0x0ebce2b38effbc47, 0x3be4260bff0afb0b, 0x120207bbd3bb2cff, 0xc569ff0b0d0d0e0b, 0x0ebcd086ebffba04, 0xbcb367b9ff0b1b0d, 0x409105bd236770ff, 0x7000070bb48f050c, 0x42c7040b50ca040b, 0x89bdff0b3d00080b, 0x0ebb6a7f19ff3b29, 0x3d106b5eff0b4b0d, 0x62080e3ba31b2bff, 0x9d1cff0b5d0b0b0b, 0x04bd66ca83ffbbce, 0x3c15a6e7ff0b6bcc, 0x94050ebce4392bff, 0x81bc040b86c4040b, 0x8fff3b2d3ee1ff0b, 0xff0b8f010ebbbc9b, 0xa6b756ff3bc83366, 0xa10b0b0ba6c6043c, 0x4bffbba334a7ff0b, 0xff0baf0002bce621, 0x8f2532ff3c4f9d53, 0xdc060e0bfcbb04bb, 0xc99d040bce9e040b, 0x0dffbc0223a0ff0b, 0xff0bd70008bd86e1, 0x158eddff3b27c503, 0xe900120bee0002bc, 0xb8ffbe4e838dff0b, 0xff0bf7070ebcee0f, 0x9c2739ff3c0e0ba1, 0x12c3040c20100bbc, 0x8137ff0c0d050b0c, 0x083c8ba1b2ffbbcd, 0xbc0100acff0c1b00, 0x3200123c339962ff, 0x011eff0c2d90050c, 0x07bb800e41ff3d2a, 0xbd04a4a5ff0c3b00, 0xd0140b3c030c33ff, 0x6c0a0b0c8cc6040c, 0x59000e0c5ec0040c, 0x7dffbc066cf2ff0c, 0xff0c6700113c3acc, 0x0ecfafffbd1c00c1, 0x7993050c7e0107bc, 0xb6ffbb0699ddff0c, 0xff0c87060dbc2a09, 0x8d99b0ff3d0900c9, 0xa2ca040cb00b0b3c, 0x2b74ff0c9d00120c, 0x0e3c6cad75ff3afc, 0xbbfcf4c7ff0cab0d, 0xc200093c279d89ff, 0xe7e9ff0cbd0e0b0c, 0x04bda98625ffbd00, 0xbd183d2dff0ccbc9, 0x1800073c11e710ff, 0xea00020cf892050d, 0x1b1dff0ce500080c, 0x043c845bf2ffbbe7, 0xbc5afd81ff0cf3cc, 0x0ac804bdac7e80ff, 0xb143ff0d05080e0d, 0x04bcc9318fff3c85, 0xbcb4533aff0d13c9, 0x3c01073bb21545ff, 0x2993050d2eca040d, 0xa1ff3ce91161ff0d, 0xff0d37cc043c22eb, 0x6a6c8affbc6b92e4, 0x49c4040d4e010e3c, 0x40ff3c2bcc30ff0d, 0xff0d57080e3c6ca7, 0xda2a68ff3d3f09bd, 0x8001120f9c010c3c, 0xb000120df401080e, 0x8201070d9090050d, 0x55caff0d7d1c0e0d, 0x0ebb5a7f17ff3aa3, 0x3b30899aff0d8b25, 0xa2ca043cb3236eff, 0x05c0ff0d9d91050d, 0x023b48c521ff3c89, 0x3b2de5afff0dab00, 0xd4220ebb12827eff, 0xc100070dc6050b0d, 0x8fff3a80b15cff0d, 0xff0dcfcb043b7358, 0x52ee8affbb3f827f, 0xe1060d0de60b0b3b, 0x95ff3adfe5b6ff0d, 0xff0def230ebc79f8, 0xce0667ff3c040cec, 0x1c140e0e3c230ebb, 0x0902080e0e050b0e, 0xddffbc8933a5ff0e, 0xff0e17ba043ca30d, 0xf631acffbce6153b, 0x2900020e2e00123b, 0xd9ffba8da828ff0e, 0xff0e37150ebc5c86, 0x267de5ffbc60963e, 0x52cd040e60280eb9, 0x29caff0e4d0b0b0e, 0x073d1c8ccbffbb56, 0x3d8d18b4ff0e5b00, 0x722b0e3c8227f7ff, 0xc7d1ff0e6d000c0e, 0x04bcb51fcaff3ae1, 0xba73f882ff0e7bcd, 0x10070b3c80c4c2ff, 0xac00020ecc220e0f, 0x99b7040e9ec8040e, 0x28ffbc115624ff0e, 0xff0ea795053c7414, 0x4d9067ffbb9bfdda, 0xb9ae040ebec704bd, 0xd5ffbbb747afff0e, 0xff0ec7c904bb300c, 0x93f34bff3ab3bc8b, 0xe200090ef0000c3c, 0x3095ff0edd01070e, 0x0fba4b3316ff3c41, 0x3db8d890ff0eeb00, 0x02280e3c0ad756ff, 0x3576ff0efd260e0f, 0x0e3d3b73b2ff3b69, 0xbcb08c31ff0f0b2a, 0x58220eb9824b7fff, 0x2a020d0f38060d0f, 0x34bbff0f251d0e0f, 0x0e3caaff88ffbbe0, 0x3c173d75ff0f3317, 0x4a070dba4a991cff, 0xb430ff0f458f050f, 0x04bc95f9d0ffbcf4, 0xbd2b9650ff0f53c6, 0x7c000fbd4fc990ff, 0x69c6040f6e230e0f, 0xfaffbcc22bc1ff0f, 0xff0f779205bb36b1, 0xafcdf8ff3bced079, 0x89ca040f8e000cbb, 0x96ffbcdc6f1eff0f, 0xff0f970b0bbb614d, 0x1c584bffbd6f79a6, 0xfa140b1023c704bc, 0xcc00070fec0b0b0f, 0xb900020fbe8e050f, 0xa9ff3a35c96aff0f, 0xff0fc700083c4dcc, 0x997810ffba63e2c0, 0xd9030b0fde8f05bc, 0xfdffbbdfd43bff0f, 0xff0fe7c404bcd1e2, 0x683678ffbbbb5d90, 0x6f78ff0ff5100b3d, 0x043d738848ff3ddc, 0x051010c504101ec6, 0xbd0ca323ff100b8e, 0x198e053cbad8b5ff, 0xd3ffbc3a41e5ff10, 0x3ce84070ffbd3456, 0x106f230e10b3260e, 0x10410207104f0008, 0x1b4840ff103c0007, 0x0b0b3b3599bcffbb, 0xffbbc8bf8dff104a, 0x1061cd04bce07ec7, 0xa4c525ff105c0002, 0x00023c416909ffba, 0xff3b7cfc0bff106a, 0x10930009bcf2ecde, 0x1080000710850002, 0xd080ffbcd9f9e6ff, 0x62ff108e00083b13, 0x3da0fcb9ff3d2aa6, 0x10a0cc0410a50002, 0xab38ffbc56efb8ff, 0xc9ff10ae060d3c19, 0xbc9caa64ffbd28d0, 0x10db010710fb2c0e, 0x10c8c80410cdca04, 0x5cedff3d4f9e4dff, 0xf2ff10d68f05baef, 0xbb6950b7ffbc6023, 0x10e80b0b10ed280e, 0xc680ff3d392e08ff, 0xd2ff10f600023cf4, 0xbcc35f88ff3c69ac, 0x11110b0b11168e05, 0x0d4e6aff110c0008, 0x8bffbd3271faffbd, 0x0811282f0ebc1da9, 0x3c72cdd3ff112300, 0x3100023d7e0024ff, 0xd2ff3c68f098ff11, 0x0800000013bba388, 0x01000003e8000000, 0x0000001190000000, 0x0e08dc8d05000000, 0x040248c304046916, 0x0400a09704012c98, 0x04003c8804005c90, 0xff00298805002e86, 0xde1028ffb6c51c41, 0x4c37ff00370d0eb9, 0x0cbbbb9f0dff3b60, 0xff00496905004e01, 0x921ab6ff39ca4c74, 0x6437ff00570d0eba, 0x043c820a97ffbafc, 0x0e0072060d008091, 0xbb8bfdfbff006d06, 0x7b0d0e3b2d563dff, 0x22ffbc500b23ff00, 0x0400920b0e3c3395, 0x3b43aa2eff008d96, 0x9b0c0ebbbd7fc1ff, 0xd8ffbd3046ecff00, 0x0c00e8000f3b3ac9, 0x0d00ba020800c800, 0x3c009021ff00b502, 0xc300023cf5169bff, 0x02ffbd0062d0ff00, 0x0e00da09063c8115, 0xbd037f4fff00d504, 0xe3010ebac6453cff, 0x0dff39af89b2ff00, 0x03010c31033d1c13, 0xff00f9110b00fe2d, 0x19ca33ff3d4aadca, 0x269aff01070107ba, 0x09bd3130ebffbb2d, 0xff01195905011e02, 0x3f928cffbb663f6d, 0x9d9cff012776053b, 0x02bc0d863bffbca0, 0x040178001101bc00, 0x05014a2e050158c2, 0x3cb1c397ff014529, 0x53130ebd1f5d00ff, 0x4bffbb27d846ff01, 0x08016a070e3c2ee5, 0x3ca6ea4fff016500, 0x730d0ebcd23214ff, 0x9aff3d65a268ff01, 0x0e019c060dbc0c2d, 0xff01890a0e018e0b, 0xd2c2f8ffbaf14c3f, 0xc280ff01970108bc, 0x073c1dae7effb93a, 0xff01a9b20401ae01, 0x9b2606ff3c4bc596, 0xfe0cff01b70e0ebc, 0x0dbd20edf3ff3d0d, 0x0e01e40207020407, 0xff01d1ab0401d60d, 0xb4710fff3a8e218b, 0x240cff01df0012b9, 0x0438d37605ffbbc2, 0xff01f1150e01f6bd, 0xa3966effbad9361d, 0x6017ff01ff0108bc, 0x09bb560512ff3bc4, 0x04021aa604022800, 0x3ad3ecf8ff0215a4, 0x23ad04bd844e6fff, 0x01ff3cb7ac35ff02, 0x05023a0e0ebbae69, 0xbcbbb546ff023588, 0x43a2043b8a6bf4ff, 0xc2ffbd95bef0ff02, 0x120368070d3d0ec4, 0x050298c60402dc00, 0x07026a6c05027875, 0x3ce67fc7ff026502, 0x73070ebbf28aa5ff, 0xa1ff3c6ec160ff02, 0x04028a0107bcceff, 0xbac3f50cff0285c5, 0x937705bcce0e99ff, 0x98ff3cb88cefff02, 0x0802bc000739a911, 0xff02a9010902ae00, 0x74c74fffbcfffc59, 0x3669ff02b78a05bb, 0x083c1b317fff3d5e, 0xff02c9840502ce00, 0xcdcaf5ff3d0abe08, 0xfd6cff02d7c8043b, 0x09bc05c716ff3b89, 0x050304060d032400, 0xff02f1010802f687, 0x3bf220ffb9722a93, 0x2810ff02ff120e38, 0x07bc97a2e0ffb947, 0xff0311070e031600, 0x04c4bdff3ca69567, 0x4909ff031fca04bd, 0x0d3cb3765bff3bb8, 0x12033a0e0e034806, 0x3c187e54ff033501, 0x430002bbf5ed89ff, 0x51ffbd51384aff03, 0x0e035a0b0bbbe4cc, 0xbbfb3c32ff03550e, 0x6301093cec30a0ff, 0xb6ff3b502895ff03, 0x0c03f80207bd0194, 0x0b0394130b03b401, 0xff0381000c03860b, 0x83e477ff3c5d475f, 0xa5edff038f0e0bba, 0x073b38f9d2ff3ce2, 0xff03a1000903a600, 0x74e4e7ffbd50e825, 0x7d0dff03af0d0ebc, 0x08bc5d8a75ff3c63, 0x0b03ca0e0e03d800, 0xbb261dccff03c50b, 0xd30002bd52d6a4ff, 0xb7ff3d17b0f9ff03, 0x0703ea0108bcd371, 0xbdda6f7bff03e500, 0xf30007bd498cadff, 0x00ffbd4a626dff03, 0x0c04400d0ebab009, 0x0504120008042001, 0xbc251230ff040d83, 0x1b000c3c4f9fd8ff, 0x25ff3bcb4f48ff04, 0x0504320b0b3d39fc, 0x3d2ebe48ff042d61, 0x3b00083d8adbcfff, 0x90ff3b702200ff04, 0xff044900023d4084, 0x045b7f05bc4cb510, 0x7290acff04560108, 0x000c3bfd6e10ffbc, 0xff3c544890ff0464, 0x06a957053cc9c5a0, 0x0501ab04058daf04, 0x049d420504bda004, 0x048a8e04048f3705, 0xbf24ff38335094ff, 0xabff049838053b01, 0xb9e3435effbc3ec6, 0x04aa9f0404af1f0e, 0xb46fffba9a3d23ff, 0x25ff04b853053ba8, 0xbb094d6eff3a6dac, 0x04d3a90404e10011, 0x2104c5ff04cea704, 0xaa043b8e1086ffbc, 0xff3d0dd726ff04dc, 0x04f35305bce117c5, 0x297263ff04ee030d, 0xa4043aa7a95fff3b, 0xffbb573361ff04fc, 0x05490012bc851d91, 0x051b270e05292b0e, 0x134fc0ff0516230e, 0xad04bdbf91e5ff3b, 0xff3ca72009ff0524, 0x053b2c0e3d7cae0d, 0x5a9d5bff0536030b, 0x4c05bdd20930ffbd, 0xff3c90397dff0544, 0x056d5605bc43df08, 0x055a300e055f0111, 0x16a0ffbc15698aff, 0x67ff0568ae043c04, 0x3ca02d50ff3b49c4, 0x057a020b057f230e, 0x3368ff3c4e4e8bff, 0x23ff058801123d98, 0x3c24e847ffbd350d, 0x05d92703061d100b, 0x05ab000205b90506, 0x9fd9bcff05a64101, 0x010cbcbaf476ffb8, 0xff37e4283fff05b4, 0x05cb32013d0c5525, 0x1d4eadff05c60706, 0x020d3dab6579ff3c, 0xffbba40f19ff05d4, 0x05fd0906bd0e3cb4, 0x05ea510505ef0b0b, 0x9f49ff3b73d7ceff, 0xb5ff05f8060dba7f, 0x3c967845ffbcd431, 0x060a0002060f0e06, 0x8399ff3bc11a41ff, 0x1eff0618bc04bc40, 0x3b4bd74fffbb35ea, 0x064500110665110b, 0x063201080637000c, 0x3a7affbd5caecaff, 0xe6ff06400007bc1f, 0xbd96c21affbccf02, 0x0652b2040657bd04, 0x4864ff3be0329aff, 0xdaff06602d0ebcb6, 0xbe2f001effbc9d48, 0x067b090606894d05, 0x15f725ff0676b304, 0x210e3a95597cff3c, 0xff3b09f53fff0684, 0x069b2b0ebbfabb4f, 0xd81c87ff0696190e, 0x5005bb9c592eff3b, 0xffbcc3950aff06a4, 0x07c901073b29f395, 0x06f9b004073d8405, 0x06cb7d0506d9ad04, 0xdeb7c5ff06c66705, 0x02083a387de6ffba, 0xff3b88b5ffff06d4, 0x06ebae04bcc12843, 0x070ea2ff06e60112, 0x120bbb9dc181ffbd, 0xff3be42db2ff06f4, 0x071d0011bb788d4d, 0x070ab204070f1c0e, 0xc675ffbce27fd9ff, 0x2dff07181d0e3c20, 0x37eb79b4ffbceffe, 0x072a010c072fc704, 0x4b4dff3a7a1c5aff, 0x9aff07382b0ebaa8, 0xbba55041ff3bab58, 0x0765020d07850009, 0x0752030b07572b0e, 0x6efcff3c51a3fcff, 0x60ff076000073b64, 0x3c158fe8ffbc2fc9, 0x0772ca040777060d, 0x720dffb8e80906ff, 0x45ff07801c0e3b14, 0xbb95596bff3be20c, 0x079b000f07a9170e, 0xca3b88ff0796050b, 0x0109bc96c0c0ffbd, 0xffbc911bd8ff07a4, 0x07bba4043bd1efba, 0x2c6007ff07b6000f, 0x1f0e3a634db4ff3d, 0xffba92759cff07c4, 0x08590207bc347b45, 0x07f5170e0815100b, 0x07e2080b07e75805, 0xd7c1ffbccfcd1aff, 0xc4ff07f000083a1f, 0x3bdcad28ffba91c6, 0x08022b0e08075f05, 0xe327ff3b744999ff, 0x2fff08100006bba0, 0xbbcfe579ffba48ca, 0x082b140b08398205, 0x9a1d0fff0826000c, 0x6b05bcc73a34ffb7, 0xff3afa3706ff0834, 0x084b8305bb56b435, 0x9a2a7dff0846000c, 0x8b053c94488eff3a, 0xffbb698097ff0854, 0x08a1c3043c18f1be, 0x087367050881c204, 0xd95726ff086e010c, 0x170e3a8f7a27ffb9, 0xff3b63aa45ff087c, 0x0893060db9a8a080, 0xb4aa73ff088e1d0e, 0x1d0ebc814a02ff3c, 0xffbbc2a08bff089c, 0x08bc000d3d29e3d8, 0x08b2000c08b7c804, 0x795bffbd04ca4eff, 0x083e2ae5f0ff3bcc, 0xff08c9ca0408ce01, 0xdb326affb926d560, 0xd045ff08d70b0b3b, 0x0ebc3958eeffbb6a, 0x040afc020d0d380e, 0x0b0978960409e997, 0x0e0914070e093405, 0xff09018104090604, 0x82e59fff3a32cfcb, 0x5e50ff090f040bbb, 0x0cbbb81a40ff3c00, 0xff0921010b092600, 0xa59457ffbba0bcb5, 0xbbf6ff092f080e3b, 0x0b3c16776cffbc3d, 0x0b094a910409580a, 0xb93bd6daff094508, 0x5301113c12f5b9ff, 0x4aff3bafe6e6ff09, 0x0e096a01073d4c44, 0x3ae89d9bff096508, 0x73000ebcb2fed3ff, 0xb1ffbb918df9ff09, 0x0209ae0009bc9c30, 0x0709929305099700, 0xbc93a248ff098d00, 0x5f10ff3cfbd170ff, 0x000809a994053dcd, 0xffbd13133bff09a4, 0x59a640ffbd343c3e, 0xc48f0509d2030ebb, 0xbbc0ff09bf000d09, 0x053bcc7a00ffbcf1, 0xbb6b6c00ff09cd94, 0xe40a0e3b5e9280ff, 0x5be0ff09df010909, 0xff3d34fb78ff3d20, 0x0a70020b3cfadfe0, 0x0a15b3040a350009, 0x0a0200080a070007, 0x2ddaff3c389d29ff, 0xc9ff0a10030eba10, 0xbae6b89eff3c2edb, 0x0a22070e0a279605, 0x9106ffbca34ec7ff, 0x90ff0a30bc04bbe6, 0x3b3682e4ff3c8163, 0x0a4b010b0a50a704, 0xdd3330ff0a460002, 0xb8ffbb5506bcffbc, 0x040a620d0e3d0664, 0xbcebbdc4ff0a5dbc, 0x6b9505bbe08cb3ff, 0x00ff3ba4c7c0ff0a, 0x080ab800023c05a8, 0x0b0a8aa7040a9800, 0xbac72003ff0a8503, 0x93a904bc98c23cff, 0x26ff3c8c666aff0a, 0x0d0aaa99043b672b, 0xbc6f7bb3ff0aa500, 0xb3a9043db4cdcfff, 0x95ff3b9fb414ff0a, 0x050adc9f04bb4906, 0xff0ac99d040ace93, 0x1a03c0ff3c7331c5, 0x7130ff0ad7030e3d, 0x043c370d55ffbd67, 0xff0ae900090aeea0, 0x40bb33ffbd21893d, 0xf24fff0af700093a, 0x11bb16984bff3b24, 0x0d0b90bf040c1c00, 0x0e0b2c080e0b4c07, 0xff0b19010e0b1e02, 0xcc6b38ff395ea1da, 0xa8efff0b27b704bb, 0x0ebbac1e36ff3b38, 0xff0b39000c0b3e09, 0x895d63ff3d1b247d, 0x390dff0b470d0e3d, 0x0ebb5ecefbff3c1f, 0x020b62030e0b7007, 0xbb9c7838ff0b5d00, 0x6b90053bc0250eff, 0xd5ffbd1730ebff0b, 0x0b0b82080ebb2671, 0x3c01d2f4ff0b7d03, 0x8b0d0e3cb6c1f9ff, 0x80ffbcb4f6ceff0b, 0x0c0bd8c10439e24f, 0x0e0baac0040bb800, 0xbc9005b8ff0ba508, 0xb30002bc037ff8ff, 0x84ffbb590363ff0b, 0x0d0bca00023b9773, 0xbd050d92ff0bc507, 0xd3070e3d0560f7ff, 0xebffbcec9fe4ff0b, 0x0c0bfc9205baa23b, 0xff0be90b0b0bee01, 0x8c7d01ffbb9dca92, 0xd440ff0bf700023a, 0x04bbc45be7ff3c17, 0xff0c090b0b0c0ec8, 0xc383d5ff3abdd138, 0x8010ff0c1700093b, 0x053b695631ffbb49, 0x040c68000f0cac8e, 0x040c3a97040c48c2, 0xba1d3626ff0c3594, 0x439904bdac580cff, 0x86ff3ca6779dff0c, 0x0b0c5a030e39d1f9, 0x3c3c4320ff0c5509, 0x63c4043c9fe240ff, 0x37ffbd4df775ff0c, 0x0b0c8c000cbb86c0, 0xff0c7902080c7e03, 0x4fd27bffbb3cdb31, 0xbc6aff0c87050ebc, 0x043b7098e0ffb9e8, 0xff0c9901120c9ea6, 0xf17b6bff3baa62ce, 0xcc77ff0ca70009bc, 0x043b4fad21ffbb0e, 0x0e0cd45e040cf45f, 0xff0cc190050cc600, 0x0d30aaff38873377, 0xa900ff0ccf0111bc, 0x123d70708dffb8c2, 0xff0ce1030b0ce601, 0x912b3eff3a25f37b, 0xf440ff0cef8f05bc, 0x0dbdaedf27ffbd03, 0x0b0d0a00070d1807, 0x3a8b4b30ff0d0505, 0x139504b97a3186ff, 0xc8ffbbcb636eff0d, 0x050d2a020e391437, 0xbc2690ebff0d2590, 0x33030b3bf57438ff, 0xa0ff3d695d15ff0d, 0x0f0f78010c3c2efb, 0x050dd091050e5c00, 0x0e0d6cc8040d8c90, 0xff0d5901080d5e2a, 0x376fb0ffbb0f6a02, 0x8023ff0d67000c3c, 0x083b350948ff3d93, 0xff0d79cb040d7e02, 0xc04788ff3c5eb8ed, 0xce5fff0d870a0bba, 0x023d36c8d0ffbd2b, 0x040da2050b0db000, 0xbd5812aeff0d9dbc, 0xab2b0ebc71ded4ff, 0xd8ffba63e0e0ff0d, 0x070dc2050bbd7660, 0xbc46f1fdff0dbd00, 0xcb020d3b847502ff, 0x04ff3b49e6a9ff0d, 0x0d0e1801093c9240, 0x070dea00090df802, 0x3b8597c6ff0de500, 0xf3280ebb08198fff, 0xa8ff3c82114eff0d, 0x040e0a9505bc2e68, 0x3d809b7eff0e05b4, 0x13030b3b15c79bff, 0x33ffbcdeb96aff0e, 0x0b0e3c92053a8e8c, 0xff0e2900020e2e03, 0x6e3184ffbb2783a3, 0xf515ff0e37140ebd, 0x0e3d62c1ddffbd0e, 0xff0e49ca040e4e14, 0xd548d5ff3d7241e8, 0x7fabff0e57c2043b, 0x07bc0ddcb0ff3de6, 0x040ea88e050eec00, 0x040e7a00020e88c7, 0xbb97a88bff0e75c3, 0x83100b3bab157dff, 0xa0ff3b490e1aff0e, 0x0c0e9a00083cadb6, 0x3c0d4444ff0e9500, 0xa3ca04bcbfdafeff, 0x7affbc883f13ff0e, 0x040eccb0043c102b, 0xff0eb9020b0ebeaf, 0x5be8f5ffbc0ce63f, 0x3af7ff0ec70b0b3b, 0x04bb91c806ff3d04, 0xff0ed9c6040edec8, 0xbd5727ffba8caf94, 0xe159ff0ee7180e3b, 0x0d398a7ca0ffbb80, 0x050f14cd040f3406, 0xff0f01040b0f068f, 0xb5281bff3ad81453, 0x1bf6ff0f0f100bbb, 0x053bd4b984ffb9b8, 0xff0f2190050f2692, 0x3b3179ff3b48a356, 0x4c18ff0f2f230e3c, 0x0bbb5d2060ff3b93, 0x050f4a0b0b0f580e, 0x3b53b7f7ff0f458e, 0x53000cbacf7956ff, 0x4effbc4677c9ff0f, 0x0e0f6a1d0ebd9df1, 0x3bd38d8eff0f6519, 0x73000cbc47091dff, 0x50ff3b968230ff0f, 0x0e1086200e3d06f7, 0x0e0fc8bb04100c1d, 0x050f9ab3040fa817, 0x3cbe20ecff0f958e, 0xa3150e3d26c3fcff, 0x22ff3b4e7726ff0f, 0x0e0fba00023c936d, 0xbb7659a0ff0fb519, 0xc3030b3b7f71baff, 0xe8ffbc4c0d9cff0f, 0x0e0fecbc04bcdf6c, 0xff0fd900020fde12, 0xee1f44ff3c87ff0b, 0x4f0eff0fe79105bd, 0x043c31ed61ffbc0b, 0xff0ff9bf040ffeca, 0x200f50ff3c537e7b, 0xeb3aff1007cb043a, 0x04370f239fffbbeb, 0x07103492051054cd, 0xff1021050b102600, 0xa48948ffba9640fe, 0x08fbff102f01073c, 0x0bbd9d7cf1ffbbbe, 0xff10410009104603, 0x9ccf00ffbca56a82, 0xaf35ff104f0b0bba, 0x05bb97de20ffbd92, 0xff10610107106f93, 0x106a02073ddec738, 0x9980ff3d9b21a8ff, 0x0007108100123d3e, 0xff3d0cf42bff107c, 0xad1e20ff3d20b860, 0xd20011111601073c, 0xa4940510b2250e10, 0x8009ff109fcb0410, 0x02bc22dc6bff3cbb, 0xbd16d364ff10ad00, 0xc4260ebdec6438ff, 0xeca5ff10bf000210, 0x0b3d3b2fd4ffbc80, 0x3be55bf4ff10cd03, 0xf69205bc05fbfdff, 0xe3910510e8220e10, 0x82ffbc447b8eff10, 0xff10f10b0bbdce08, 0x39b91aff3b6fac1f, 0x0300091108280ebc, 0xb6ff3ce91ec4ff11, 0xff11112b0ebcc476, 0x5b0160ffbc50790c, 0x35001111558f053c, 0x2b00081130000211, 0x38ff3ddb8fe0ff11, 0x3cbba7a0ff3db1d0, 0x1142cd0411470002, 0x08e0ffbd873418ff, 0xf3ff11508e053c29, 0x3d693b18ff3cf77c, 0x116b000811790002, 0xf6be60ff11669005, 0x060d3bfb5940ff3c, 0xffbcd18dc0ff1174, 0x118b9005bd0ac568, 0xafd5f8ff1186060d, 0x10ffbd1028f8ffbc, 0x08000000133d2b16, 0x01000003e8000000, 0x00000010af000000, 0x0508b80007000000, 0x040248c70404698c, 0x0500a06905012cc1, 0x05003c5b05005c5c, 0xff0029ab04002e5a, 0x980f39ffba424bde, 0x658aff00372e01ba, 0x01bb857c47ffbcb7, 0xff00492904004e2f, 0xb26c6affbc0efc16, 0x6218ff00572b0ebc, 0x11bc1f765aff3bac, 0x040072aa04008002, 0xb8a36129ff006da9, 0x7b00083cd786fbff, 0x5cffbc255a24ff00, 0x0400925e04b90724, 0x3c25c98eff008d4c, 0x9b6c043d80dd61ff, 0x26ffbdade2e2ff00, 0x0c00e8c0043d4ae0, 0x0600ba000900c801, 0x3b0ca710ff00b500, 0xc3020bbc14d45eff, 0x49ffbc04f53cff00, 0x0e00da030ebb3b68, 0xbbcd0cf8ff00d500, 0xe301093b665c9fff, 0x63ff3be3d300ff00, 0x08010c0006ba93b1, 0xff00f9790500fe00, 0x2fcf89ffbcc77838, 0x2100ff0107230ebb, 0x02bc5593b9ff3c63, 0xff01191a0e011e00, 0x3318f3ffbd63f260, 0x3c47ff01272a0ebe, 0x0d3ca1944eff3c29, 0x0e0178c30401bc02, 0x0c014a1306015830, 0xbcb9b10fff014500, 0x530008bd737e6cff, 0x94ff3c27e902ff01, 0x0e016a0006bc7b43, 0x3da32ef1ff016531, 0x7332053c7b193dff, 0x02ffba7edfd0ff01, 0x0b019cc404bdeb60, 0xff01890002018e03, 0xd23814ffbcd86b38, 0x4a88ff01972a0e3d, 0x0d3dddce77ff3da3, 0xff01a9120e01ae00, 0x1d8549ff38b92ba8, 0xa47fff01b700023d, 0x05bba52da7ff3c37, 0x0501e4000f020426, 0xff01d1000c01d618, 0xaf89f5ff3c9c853d, 0x8757ff01dfc2043d, 0x0c3c24ed1bff3d2a, 0xff01f10a0501f600, 0x9376e2ffbc2e0ef3, 0xa6c3ff01ff130b3b, 0x0b3c99f992ff3be2, 0x0e021a2905022813, 0x3d072831ff021504, 0x23330e3db748ceff, 0xccffb92ccde0ff02, 0x0e023a200e3c0219, 0x3a06b0ddff02351d, 0x43010c3d4a8e4bff, 0x80ff3a6bf9d5ff02, 0x080368c804bca5e4, 0x0502988a0502dc00, 0x0b026a070d02787b, 0x3c02f9c1ff026503, 0x730b0bbba2be96ff, 0x0dff3d4d5c9fff02, 0x05028a88053c70a7, 0xbc90e8b7ff028585, 0x93030bbd30e695ff, 0x1dffbcb495d5ff02, 0x0902bc0b0bbb3ed0, 0xff02a9000202ae00, 0x1af8b0ff3c489892, 0xe4d3ff02b7010c3e, 0x0d3cfda1ffffba09, 0xff02c9010c02ce06, 0xd2614cffbcb2ebf3, 0xdf20ff02d70009bd, 0x0ebc4a5697ff3d32, 0x060304000c032423, 0xff02f1840502f600, 0xc0462eff3d15a970, 0x096eff02ff070e3b, 0x0dbc51434aff3b34, 0xff03110002031607, 0xb93a5aff3d1fc4ab, 0x3612ff031f02083d, 0x11bc002e14ffbda5, 0x05033a6305034800, 0x3b867e23ff033561, 0x43030b3db83638ff, 0xeeff3b896a72ff03, 0x0e035a2b0ebce285, 0xbccb7ec1ff035526, 0x63040b3d2b0294ff, 0x6eff3c652ef7ff03, 0x0c03f8c904bc3e56, 0x0d03942b0e03b400, 0xff03813305038602, 0x195627ffbb759890, 0x4ce4ff038f33053d, 0x08bc4aed6bffbd78, 0xff03a1880503a600, 0x54ba7dffbcf8296d, 0xcfb1ff03af2f0e3d, 0x0e3d26d15cff3db9, 0x0903ca001103d819, 0x3ce24426ff03c500, 0xd3060dbd0fb3d2ff, 0x85ff39ef731bff03, 0x0803ea000fbd6891, 0xbc6f78e0ff03e502, 0xf32b0e3d1bf9d9ff, 0x82ffbd4a05b5ff03, 0x0d0425010bbc4f38, 0xff0409cb04040e02, 0x7c6770ff3e25bff6, 0x948cff041700023d, 0x20ff0420cb043d11, 0xbc2061a0ffbc9b35, 0x043b730504497505, 0x4c752cff04365905, 0x0208bc065699ff3b, 0xffbc4a272bff0444, 0x045b00023cee8ac0, 0x047084ff04560108, 0x0008bae2133affbc, 0xffbc13b598ff0464, 0x067c8d053bcc7ca3, 0x0501000f058d230e, 0x049db40404bd050b, 0x048aaf04048f220e, 0x9193ff3bb41f01ff, 0x49ff0498020dbc9c, 0x3da6ffd5ff3d4278, 0x04aa010804afc604, 0x5e66ffbd803570ff, 0xf0ff04b8c904b916, 0xbe2df4bcffbe27d5, 0x04d3000804e19d04, 0xa62b82ff04ce000d, 0x8404bcb07ec1ff3c, 0xff3d88ba70ff04dc, 0x04f3220ebe322bf7, 0x42378fff04ee190e, 0x00023ce92393ff3c, 0xffbc699a49ff04fc, 0x054900123c81ac70, 0x051b070e05290e0b, 0xa44919ff0516c304, 0x0d0e3cdbc043ffba, 0xff3c36fe33ff0524, 0x053b000c3aa7c135, 0x936f81ff05361d0e, 0x01083cbf543bff3b, 0xff3ca66bd0ff0544, 0x056db204bb23f28a, 0x055a0112055fa704, 0x5c83ff3aa0d566ff, 0x57ff0568b004bd2a, 0x3cbe7bf3ff3ad2b4, 0x057a0109057fb304, 0x38b1ffbc338ca1ff, 0x48ff0588060d3bae, 0xbc1c2d85ff3b08fd, 0x05d90b0b060b0002, 0x05abc10405b9310e, 0xb4f9d4ff05a6000f, 0xc4043b814d8cffbc, 0xff3cb2064fff05b4, 0x05cb330e3abffb11, 0x241f78ff05c60111, 0xc6043d3bbb10ff3c, 0xffbcbc5120ff05d4, 0x05f40112bd6dd452, 0xa7c906ff05e6bd04, 0x0bbfff05ef000cbd, 0x0c3c2b98adff3d46, 0xff0601c404060600, 0x014adbff3bf66d05, 0x260e3b07a900ffbd, 0x0009062a000f0638, 0x20ff062000080625, 0xbdc64350ffbda271, 0x33060dbdef37a8ff, 0x1fffbe0e7f9fff06, 0x0f065c0108bdd3c4, 0xff0649000d064e00, 0x921224ffbcd05ff8, 0xedf3ff0657280ebd, 0x04bbb4b586ffbd07, 0xff0669000f066ec4, 0x9edb8eff3e4e0c06, 0x203cff067702083c, 0x05bd187463ff3c25, 0x090710030d079c93, 0x0e06ac310e06cc00, 0xff06992a0e069e2b, 0x21b6c4ff39f5fe46, 0xd311ff06a72d0e3d, 0x0ebb914cc5ffbd72, 0xff06b9000d06be32, 0xfd6a25ffbbdba0e3, 0x6129ff06c7330e3c, 0x05bc3d149dff3cf9, 0x0e06e2190e06f092, 0xb9c2cb04ff06dd17, 0xeb2b0e3c852790ff, 0x62ffbc6c0d98ff06, 0x040702010b3cbea2, 0xbcec2d2bff06fdc2, 0x0bbc04bc29a5b8ff, 0x5cff3c4eee53ff07, 0x05075855043d79a1, 0x0f072a0112073890, 0xbc216021ff072500, 0x335104b970c82fff, 0x60ff3bec3b1dff07, 0x04074a01123d026e, 0x3b45c74cff074551, 0x535104bc0e9530ff, 0xdaffbaea6c00ff07, 0x0f077c230ebd9107, 0xff0769ba04076e00, 0x662984ffba9158ab, 0x895eff07778f053b, 0x0e39d5f7ffff39ba, 0xff0789cd04078e2a, 0xb7a450ffbbe5284f, 0x6981ff0797cc043c, 0x0dbb438956ff3a17, 0x0b07e82a0e082c02, 0x0507bab30407c80a, 0xbc4a144aff07b594, 0xc300023a30cd9bff, 0x0eff3c679db6ff07, 0x0407da000c3b8299, 0x3b7c9779ff07d5b0, 0xe31d0ebcaa50d4ff, 0x03ffbbe14556ff07, 0x04080c040b3cbe2c, 0xff07f9950507feca, 0x53a026ff3d32ad8a, 0xe6a3ff08072b0ebb, 0x0ebb8bb486ffbd4f, 0xff08190a0b081e2b, 0x516bc4ffbda687d8, 0xab0fff0827cc04bd, 0x0b3c6897faffbc9c, 0x020854010b08740e, 0xff08419405084600, 0x2f7037ffbc9b2749, 0x5fd1ff084f000fbb, 0x12baf385b8ff3caf, 0xff08619405086600, 0xacc217ff3bd79089, 0xd91bff086f190eba, 0x0db9f709bfffba17, 0x04088a010c089806, 0xbb1cfdf4ff0885c2, 0x9300023b5f4508ff, 0x46ff3d01da71ff08, 0x0208aa94053c040b, 0x3bffd8fdff08a500, 0xb31f0ebb539926ff, 0x3affba87480cff08, 0x040c9f9505bcdf25, 0x0e09e0000d0afcc6, 0x0409101d0e095426, 0x0e08e26f0508f058, 0xbb2ea695ff08dd1c, 0xeb0008bd1c4023ff, 0x8cffbca0f99dff08, 0x0e0902050bbda1f0, 0xbb87b88bff08fd1c, 0x0b0006bd044368ff, 0x9fff3c598459ff09, 0x0209346c04bb39f6, 0xff09215c04092600, 0x35c013ffba999012, 0x855dff092f53053c, 0x043de90c88ff3e09, 0xff0941200e094678, 0x911e84ff3cb7670c, 0x8504ff094f08063d, 0x04bba40870ff3cd2, 0x04097c2c03099cb5, 0xff0969060b096ea0, 0xb31173ffbbdaa204, 0xd32bff09770d063a, 0x0bbe0f7c0cffbc81, 0xff09890002098e09, 0xee623affbceced61, 0x06c6ff0997310ebb, 0x06bc81c6d0ff3bfa, 0x0b09b2310e09c004, 0xbb521302ff09ad01, 0xbb320e3d16e671ff, 0x18ffbd797353ff09, 0x0409d229053cb49d, 0xba87b0c0ff09cdb8, 0xdb2a05bcd730c1ff, 0xf4ff3c8df0c0ff09, 0x060a702a0ebd9bbb, 0x040a0c63050a2c00, 0xff09f97a0409fea2, 0x01af89ff3a06ab13, 0x1710ff0a0700123b, 0x0c3c03f131ffbb21, 0xff0a1901120a1e01, 0x690327ffbb0eaf44, 0x8617ff0a27170e3b, 0x063b98fbaaffbba2, 0x040a4253040a5003, 0xb97de59dff0a3d3b, 0x4b7304bbe011cfff, 0xd2ffbc099976ff0a, 0x0e0a625b05bca727, 0x3a87ad4fff0a5d21, 0x6b0002398f571fff, 0x3affbc4d4870ff0a, 0x0c0ab812063b2d5d, 0x0b0a8ac3040a9801, 0xb9f6b685ff0a850b, 0x93070bba800f79ff, 0x23ffba8303cfff0a, 0x0e0aaa130b3cbf05, 0x3a8d3c9aff0aa52c, 0xb3060dbbb92fecff, 0x34ff3c2f3c0dff0a, 0x040adc0207bcdf4d, 0xff0ac9300e0ace7f, 0xf71760ffbd9c3b76, 0x01caff0ad71606bc, 0x053e201a64ffbb3a, 0xff0ae9000c0aee07, 0xb1c180ff3ddf8e74, 0x7540ff0af7c3043c, 0x01bcd643e0ffbc3b, 0xff0b0907050b8336, 0x0b3f27013e0e3a08, 0x0b2338050b280107, 0x8fae5eff0b1e0111, 0xd0ffbd918040ffbd, 0x030b3acb04bdb839, 0xbc6dadb0ff0b3512, 0x3a1cffbc3183d0ff, 0x00060b630b0bbd3d, 0xf3ff0b50cb040b55, 0xbb85a466ffbcfb77, 0xb1bd3dff0b5e010c, 0x35013d114648ff3c, 0x65ff0b702a010b75, 0xbc051d79ffbd81cd, 0xb04300ff0b7e0008, 0x6e05bdfc19c0ffbd, 0x6d050bcf310e0c13, 0xc8040ba1060d0baf, 0xffbc159820ff0b9c, 0x0baa0002b98f0fc6, 0xe4fcffbb23074bff, 0x01070bc10d0b39ec, 0xff3d5f7af6ff0bbc, 0x0bca0d0ebc00f581, 0x5ad8ffbc1fbcc0ff, 0x330e0bf36d05bd85, 0xa2ff0be00b0b0be5, 0x3d71c7d0ff3c6fd5, 0x12962aff0bee340e, 0x320ebb9bf795ff3c, 0x22ff0c00130b0c05, 0xbdc7c33fffbd39c6, 0x04555cff0c0e0108, 0x260e3be730f1ffbd, 0x01080c3b230e0c5b, 0xdfff0c28140b0c2d, 0x3b93b26fff3a78ca, 0xdb34d3ff0c360012, 0xcb043986623affbb, 0xf4ff0c48c9040c4d, 0xbdab1985ffbc661a, 0x976f40ff0c56070d, 0xc7043d9c0913ff3c, 0x010c0c712a0e0c7f, 0xff3d3169b4ff0c6c, 0x0c7a350e3e29f6f1, 0x9867ff3bb837d1ff, 0x0b0b0c917705bd74, 0xff3afd154cff0c8c, 0x0c9a78053cbce60c, 0x4fcaff3c59e149ff, 0xb0040ec4000cba21, 0xa5040d2e01070da8, 0x020d0cd3040b0cf3, 0xb3ff0cc0000d0cc5, 0xbbdfd3e7ff3bb120, 0x456e4dff0cce0012, 0x97043b3efcbeff3c, 0x64ff0ce000020ce5, 0x3b22f226ff3c3116, 0xa6d062ff0cee0112, 0x060d3d47896cff3a, 0x020d0d09030b0d17, 0xff3c439770ff0d04, 0x0d12a704bc276e9d, 0x9808ffbc9e2a79ff, 0x96050d290112bbbe, 0xff3bb3c55bff0d24, 0x8470a0ff3c80030d, 0x4478040d6490043d, 0x76f8ff0d3f00020d, 0x123c353354ff3cd6, 0xff0d51020e0d5601, 0x9e9bbeff3c28486b, 0x2210ff0d5f000d3c, 0x12bbace5f0ffbcd2, 0x050d7a95040d8801, 0x3c9ef8eaff0d7596, 0x8396053c75a1e6ff, 0xc8ff3b7ff2a3ff0d, 0x040d9a010b3a3cb2, 0x3b742700ff0d9599, 0xa3020e3c7c39b8ff, 0x78ff3cd33470ff0d, 0x0d0e38050b3d18d4, 0x020dd41d0e0df400, 0xff0dc196050dc600, 0x8f02dcffbd92dc04, 0x1e5cff0dcf9605bd, 0x07bd0e8654ffbd3f, 0xff0de1240e0de601, 0x77ad54ffbbda3b00, 0x3c4eff0defc004bc, 0x04bcb01f70ffbcf7, 0x0d0e0a0d0e0e18cd, 0xbb5c3221ff0e0507, 0x13ca043c549f56ff, 0x54ff3bb054c3ff0e, 0x0d0e2a0008bb7386, 0xbcbe97f6ff0e2506, 0x330012bc682a4dff, 0xc6ffbcc8e634ff0e, 0x0b0e800107bcf5a5, 0x080e5201110e600b, 0xbaf4a956ff0e4d00, 0x5bc8043b285443ff, 0x2bff3c8c2189ff0e, 0x0e0e720011bb6a3a, 0x3b83900aff0e6d1f, 0x7b1d0ebd13427cff, 0xd0ff3c203764ff0e, 0x040ea49605bb9412, 0xff0e9101120e96c9, 0x24062aff3b1e1afa, 0x5adeff0e9f080e3c, 0x0b3c48e7f6ff3cbb, 0xff0eb1cd040eb60b, 0x80cdb2ff3c1562e0, 0x5c28ff0ebfcd04bb, 0x04bcd8be62ff3b9d, 0x0c0f46c3040fc9cb, 0x0d0ef4000f0f1401, 0xff0ee1030b0ee606, 0x00a2b8ffbbf6d2e6, 0x51d4ff0eefbf04bd, 0x05bc65a980ffbd86, 0xff0f01bc040f0696, 0xf269e9ff3ac15c03, 0x4a70ff0f0f030bbb, 0x0bbb81c110ffbcbb, 0x050f2a00080f3805, 0xbce798dbff0f2596, 0x33bb04bd20fb3eff, 0x42ffbc2bf9f0ff0f, 0xff0f410011bcc172, 0x8c1b78ffbaf6c800, 0x6e0d0e0f85020b3c, 0x5b010c0f6001120f, 0xc0ffbc27b0dfff0f, 0xff0f699605bb351d, 0xd1e150ffbb56ffb9, 0x7b01070f8000083a, 0x00ffbc8322f6ff0f, 0x3c197b80ffbd0a58, 0x0f9b060d0fa9000f, 0xf7abf6ff0f960008, 0x030b3c68a22bff39, 0xffbd37d3e3ff0fa4, 0x0fbbca04bcdb010b, 0x957a86ff0fb6c804, 0x060d3c4cb11eff3b, 0xff3d2e361dff0fc4, 0x10500b0bbbf266d7, 0x0ff5000f10150107, 0x0fe21d0e0fe7020d, 0x249affbcc998dcff, 0xb1ff0ff096053b87, 0xbc181d80ff3c9672, 0x1002cd0410071f0e, 0x4839ffbcb47a29ff, 0x6fff10100002bc22, 0xbb85a9ecffbdaceb, 0x102bcd041039060d, 0xae0504ff1026020d, 0x0112bc584049ffbc, 0xff3b66bbdbff1034, 0x104b00083c6a0950, 0xa05d39ff1046cd04, 0x90ff3c0a196cff3c, 0x121086cd043d3297, 0x04106a060e106f00, 0x3cef8418ff1065cc, 0xed44ff3c6d0e78ff, 0x000210810b0e3d34, 0xff3b3cffe0ff107c, 0x0e3858ffbc4bb0ad, 0x93140e109800123c, 0xaeff3d2d6c68ff10, 0x0210aa0112bc53d0, 0x3c9296a8ff10a500, 0x5690ff3c346b0dff, 0x0008000000133cda, 0x0001000003e80000, 0x0000000011900000, 0x8c0508f700070000, 0xc1040248c7040484, 0x620500a06705012c, 0x6b04003caa04005c, 0x74ff00296704002e, 0xbb74390fffb9c3b7, 0x4d37d8ff00377204, 0x0208ba7d5241ffba, 0x33ff00496105004e, 0xbc8bc0b5ffbb200e, 0x06f430ff0057000f, 0x0b0ebb693329ff3c, 0x82040072140b0080, 0xff39015ad6ff006d, 0x007b9f043b8ebe84, 0x60c7ff3a2fc880ff, 0x000600920008bbd4, 0xffbbd950c6ff008d, 0x009b0f0b3c848d72, 0xd943ffbb1ceb8cff, 0xa30400e8ae043c6a, 0x020900ba030b00c8, 0xff3a0d40afff00b5, 0x00c36b05bc0a79a8, 0xb68fff3b7eec4dff, 0x870500daad043a09, 0xff3bb31b31ff00d5, 0x00e30008bad872b0, 0x4544ffbcdf54f0ff, 0xaf04010c6e05bb5d, 0xb6ff00f96a0500fe, 0xbc5c7779ff3d1d07, 0x0377fcff01070108, 0x070d39b3feacffbc, 0x82ff0119b004011e, 0x3b039003ff3c0aa6, 0xc9029bff01270d0e, 0x0111bafe9930ffbc, 0x2b0e0178c60401bc, 0x1d0e014a200e0158, 0xff3b1fd4a2ff0145, 0x0153010c3cdd8279, 0x5222ffb9b05b36ff, 0x310e016a0011bca7, 0xff3daaa864ff0165, 0x0173c204bc360da9, 0xd6e6ff3c630213ff, 0x0b0b019c0e0bbbcc, 0x43ff01890002018e, 0x3cab6f63ff38a927, 0xad2d4eff01970011, 0x79053c8af295ff3d, 0x25ff01a9000c01ae, 0xbcb53768ff3c26cf, 0xdcc7e2ff01b77b05, 0xc204bb34f3dcff3d, 0x180501e41e050204, 0xb6ff01d1020d01d6, 0x3d351f0fffbc2c95, 0x05f76dff01df1906, 0x00063bec83a0ff3e, 0xabff01f12a0e01f6, 0x3c1a0c1effbce611, 0x837cf0ff01ff0a06, 0x0002bc1a6694ffbd, 0x080b021a000f0228, 0xff3bd2413cff0215, 0x02232a0e3ce57de8, 0x6e89ffba9f355fff, 0xc504023a0406bcb0, 0xff3c3194bfff0235, 0x0243030bbce750d0, 0xed49ff3c644165ff, 0x00080368c804bb02, 0x7b0502988a0502dc, 0x2b0e026a070d0278, 0xffbba3168fff0265, 0x02730b0b3be24ee4, 0x9656ff3d38d358ff, 0x030b028a88053c58, 0xff3c597b0dff0285, 0x0293010cbca48baf, 0x92e3ffbc1e918cff, 0x000902bc0b0b3bad, 0x52ff02a9000202ae, 0x3e0b796bff3c3489, 0xa2d9c3ff02b7190e, 0x0011bad2b51eff3c, 0x02ff02c9000902ce, 0xbc361ab7ff3d20fc, 0xa1078dff02d7010c, 0x230ebdbd5790ffbc, 0x220e0304000c0324, 0x6cff02f1870502f6, 0x3c81e7c8ffbc0773, 0xfe25a3ff02ff070d, 0x070dbd0b4f6aff3c, 0x7bff031184050316, 0x3d101255ff3dabc8, 0x94b0aaff031f0208, 0x0011bbe6b95bffbd, 0x040b033a070d0348, 0xff3ba52026ff0335, 0x03430b0bbcade489, 0x17f2ff3d352d7fff, 0x260e035a2b0e3b06, 0xffbcb72541ff0355, 0x0363030b3d19e8be, 0x8627ff3c45f06aff, 0x000c03f8c904bc1e, 0x020d03942b0e03b4, 0x18ff038133050386, 0x3d0a00bbffbb5d09, 0x5f7865ff038f3305, 0x0008bc36a272ffbd, 0x73ff03a1880503a6, 0x3d3f74a5ffbcdf58, 0xa73aedff03af2f0e, 0x190e3d1622d6ff3d, 0x000803ca001103d8, 0xffbcf09b80ff03c5, 0x03d3060d3cd3cecd, 0x4fc5ff39d78249ff, 0x020803ea000fbd51, 0xffbc578660ff03e5, 0x03f32b0e3d0c60d9, 0x7fa0ffbd35d1f0ff, 0xca0404400012bc3a, 0x0d0e0412170e0420, 0xff3cf9f826ff040d, 0x041b0008bd15365b, 0x9c20ff3b23fb54ff, 0xcb04043200113d1a, 0xff3b7baf6dff042d, 0x043b0008bc187967, 0x58b0ffbce8c7e0ff, 0x060d0464310e3d8b, 0xc3ff04510c0b0456, 0x3b54a79bffbb5a20, 0x2534eaff045f030b, 0x320ebcd416c2ff3d, 0x37ff0471000c0476, 0x3d248637ffbc5a31, 0x0e4ff3ff047f5405, 0x8d05ba47cd47ff3c, 0x000805a8230e06bb, 0xb20404d8bc04051c, 0x060e04aaaf0404b8, 0xff391a51f5ff04a5, 0x04b3000c3b560256, 0xf3bfffbca5c86cff, 0x080e04ca060d3d17, 0xff3becf0beff04c5, 0x04d30012ba8284cb, 0x310fff3b3531d5ff, 0xc30404fc0111bcf7, 0xf1ff04e9010c04ee, 0x3d436440ff3c031f, 0xfc89a7ff04f70011, 0x010cbc2163a0ff3b, 0xecff0509be04050e, 0xbb883bc6ffbcbfa3, 0xad8bccff0517030b, 0x060d3d080640ffbb, 0x000f0544030b0564, 0xe3ff0531220e0536, 0x3d56b459ffbd461e, 0xfaa8b1ff053f070e, 0xbc04bbe025ddff3b, 0x17ff0551010c0556, 0xbcd9341affbb89cb, 0xd16fcfff055fca04, 0x060ebd319d9aff3b, 0x020e057ab3040588, 0xffbbec27eaff0575, 0x0583bc043c326cd5, 0xf5e7ffbd2876d2ff, 0x0b0e059a0002bca2, 0xff3a4b0e3fff0595, 0x05a30a0e3caab402, 0x0defff3c8973f4ff, 0x0e0b062f000cbb7a, 0x280e05d4060d05f4, 0xe4ff05c1011205c6, 0xbcf93a43ffbbd8b0, 0x43fe4eff05cfbe04, 0x0002399819a9ff3c, 0x74ff05e1c60405e6, 0x3d6c7020ffbc5c11, 0x3d82abff05ef0108, 0x0111bb7e8d0cffbd, 0x260e060a00020618, 0xff3dcd7e77ff0605, 0x0613280e3d21cb34, 0x80caffbcdcab9bff, 0x75ff06212a0e3cc7, 0xff062a2b0e3bddc8, 0x94bad0ffbd09af38, 0x5700020677280ebc, 0x4401110649c80406, 0xc0ffbce1aee9ff06, 0xff0652070d3c73b1, 0x3b8c96ff3c566f05, 0x64040b0669010cbc, 0x2cffbdab882eff06, 0xff06720009bcdfa0, 0xa59ce4ffbdb29c0f, 0x8d2b0e069bbe04bc, 0x0067ff0688b40406, 0x02bcb9c893ff3cb9, 0xbda8f69cff069600, 0xad0208bd7c6ff8ff, 0xa351ff06a8c40406, 0x04b9b23c80ff3ccb, 0xbdafc4eeff06b6c9, 0xdb9305bdbeaa00ff, 0x0b2b0e074f030d07, 0xdd250e06eb2a0e07, 0xb612ff06d8b80406, 0x0c3ba24774ff3a34, 0x3d366eddff06e600, 0xfd0009bc8a4d48ff, 0x856aff06f8ca0406, 0x02bd421a56ff3d3b, 0xbd037725ff070600, 0x2f2d0ebc09b994ff, 0x1c8e050721000907, 0x5affbd00e93bff07, 0xff072a2c0ebd82b4, 0xb31080ff3d0c141b, 0x3c000207412f0e3b, 0xa7ffbcab43a6ff07, 0xff074a300e3d9fff, 0x8d0595ffbc99f804, 0x779005079755043a, 0x644b040769011107, 0x2fff3b78868bff07, 0xff07725204bb1085, 0x81abdfff3bbfbc5d, 0x840111078991053d, 0x7cff3a33996bff07, 0xff0792000fbd84b9, 0xe13060ffbb7f3748, 0xad000f07bb230e3a, 0xcb16ff07a8bc0407, 0x053aab7dadffb8de, 0x39a7e180ff07b68f, 0xcd2a0e39c0921cff, 0x2cecff07c8cb0407, 0x043b8c14a3ffbc02, 0x3a08458bff07d6cc, 0x6b020dbb2ffb91ff, 0x0794050827020b08, 0xf4b10407f9bb0408, 0xe2ffbbdba11eff07, 0xff08022b0e3d3f85, 0xa966b0ff3d9ec1cf, 0x14010b08190009bc, 0x5dff3a9f3bc2ff08, 0xff0822a7043c81f5, 0x815630ff3c051a48, 0x3d0111084b000dbc, 0x373fff0838050b08, 0x083ccf152cffbc10, 0xbc24e31aff084600, 0x5d040b3c0894f7ff, 0xbef2ff0858000208, 0x0e39e5875aff3c90, 0xbb387819ff08662a, 0xb30e0bbcfa9108ff, 0x8595050893010b08, 0x5726ff0880000208, 0x043c22a3edffbb9d, 0xbb5cb51dff088ec7, 0xa50012bc816efcff, 0x01fbff08a0940508, 0x0eba9b7b7fff3bc2, 0xba08a9c9ff08ae19, 0xd7060db9de557bff, 0xc4c20408c9010c08, 0x5fffbb0d4af5ff08, 0xff08d200023b48f1, 0xedade2ff3ce9bc61, 0xe4001208e994053b, 0x85ff3b8b220bff08, 0xff08f2c904bc1430, 0xbb72daff3ad70b1d, 0x3bc6040d779505bb, 0x93260e0a1f000d0b, 0x2f1c0e094f200e09, 0x1c070e09210a0e09, 0xfbff3a96f293ff09, 0xff092a4404bc50cb, 0x544741ffbb9a8e97, 0x3c1d0e094191043c, 0x28ffbd0751f9ff09, 0xff094a0008bbb3a9, 0x811da8ff3c92334e, 0x652e0109735d04bc, 0x8f71ff0960480409, 0x0e3b2ec2bdffbad7, 0x3cd9a95bff096e22, 0x8596043bd5c70fff, 0x544eff0980220e09, 0x063cd66c59ff3d90, 0x3c6fdd41ff098e08, 0xdbb504bc760c5eff, 0xad3a0509bb2c0309, 0xae28ff09a8330109, 0x043b4fcdbaffbb7a, 0xbd7c1c58ff09b64b, 0xcd090bbbdebf45ff, 0x8a91ff09c82a0e09, 0x0ebc800309ffbd2d, 0x3be10634ff09d631, 0xff000cbc699913ff, 0xec020809f1ba0409, 0x08ff3bbc3642ff09, 0xff09fa00023dd5f5, 0x02ad38ffbda6f610, 0x0c2a0e0a11310ebd, 0x23ffbd4156b1ff0a, 0xff0a1a320e3d0572, 0x86cc28ffbd60815f, 0x6b00060aaf2a0e3c, 0x3da2040a4b63050a, 0x67c4ff0a387a040a, 0x123ae96effff39f2, 0xbb10fb37ff0a4600, 0x5d010c3bed7f18ff, 0xa5c6ff0a5876050a, 0x0ebadf5e62ffb90e, 0xbb92458bff0a6617, 0x8f02063b89af73ff, 0x7c3b040a8179040a, 0x44ffbab05b92ff0a, 0xff0a8a0106bc5eb0, 0xbdc6d3ffbd2e8797, 0x9c9a040aa10306bc, 0x70ffbb3bfbebff0a, 0xff0aaa0f0ebc6bed, 0x2c3eb1ff3897c910, 0xd7010d0af712063b, 0xc40b050ac946050a, 0x5dffbae84820ff0a, 0xff0ad29604bc6e10, 0xa6d74dffbccc9fc3, 0xe401080ae92b0ebd, 0x99ff3b6739dfff0a, 0xff0af25f05ba3012, 0x9f8288ffbaccb74e, 0x0dbb040b1b340e3a, 0x2b22ff0b0813060b, 0x06bd6b324dffbc90, 0x3a8a6814ff0b1616, 0x2dc2043e0964e7ff, 0x2ef8ff0b28000b0b, 0x073e0d3ce7ff3d63, 0x3c91b778ff0b3601, 0x5b7305bc6cf470ff, 0x8b330e0bcf6b050c, 0x5d220e0b6b2b0e0b, 0x0a67ff0b58020d0b, 0x05bb0c1ff7ff3b57, 0xbdbe0c3dff0b660b, 0x7d2c0eb9ce03a3ff, 0x18b8ff0b78c8040b, 0x04baf9782effbe61, 0xbc01859eff0b86c8, 0xaf350e3b8a4c2bff, 0x9c00110ba100080b, 0xc4ffbd4de5caff0b, 0xff0baac704ba979c, 0xb13a2eff3d110db8, 0xbc040b0bc102063b, 0x2cffbce2b902ff0b, 0xff0bca0002bc09c2, 0x58f34bff3c4afb42, 0xf76d050c176e05bc, 0xe400020be9280e0b, 0xbaffbc4d95b8ff0b, 0xff0bf201123ceb31, 0x0ac087ffbc993917, 0x0401080c09130b3c, 0x96ffbd07b127ff0c, 0xff0c12010739f1ae, 0x8f6152ffbcbe4791, 0x2d000f0c3b6f05bd, 0x3f3bff0c2800060c, 0x0c3c014778ffbcc6, 0x3d375e9aff0c3601, 0x4d72053db84c3eff, 0xf5edff0c482a0e0c, 0x073be01c72ffbc5c, 0x3b0c3cacff0c5601, 0xebca043cdab574ff, 0x8781050ca782050c, 0x74070b0c7974050c, 0x86ffbcdfca6eff0c, 0xff0c8275053d44dd, 0xa87411ffbc875f42, 0x94070b0c99000fba, 0x8cff3bb76622ff0c, 0xff0ca2070b3d5fd1, 0x366e42ffbbb21939, 0xbd340e0ccb0b0bbd, 0xfa6dff0cb801120c, 0x073b270d46ffb834, 0x3b610d5fff0cc601, 0xddc804bd8901b0ff, 0xd92dff0cd8000c0c, 0x0b3c880be7ffba67, 0xbce6edc1ff0ce614, 0x330002ba4a78b2ff, 0x0575050d1377050d, 0x9e2bff0d0074050d, 0x0ebdb5ad9dffbcca, 0x3d3eef40ff0d0e2b, 0x257c05bc316b33ff, 0x24f7ff0d20170e0d, 0x04bc89352bff3cc1, 0x3b25df3cff0d2ecd, 0x5777053c35e77fff, 0x4401080d49000f0d, 0xc9ff3cc55d11ff0d, 0xff0d527405bced95, 0x1820a1ff3d2373c3, 0x6479050d69350e3c, 0x78ff3a95b802ff0d, 0xff0d72360eba0df1, 0xccc2b1ffbc69c890, 0x80b0040f9c000c3c, 0xcb020d0e0f01070e, 0x9d01120dab000d0d, 0xa926ff0d98020e0d, 0x0e3c45d371ff3c9b, 0x3be2a0ccff0da600, 0xbd0002bbba4295ff, 0x595dff0db8050b0d, 0x0bbc9b68feffbbd3, 0xbb3de132ff0dc60a, 0xef9c043d2a5af1ff, 0xdc00120de101110d, 0x32ff3c4faac2ff0d, 0xff0dea030bb977c2, 0x007575ff3c33db8d, 0xfc00110e01000e3d, 0xe0ffbb982978ff0d, 0xff0e0a060d3be9ba, 0x12aaf2ffbc2364f1, 0x2578040e3c90043c, 0x04acff0e2000020e, 0x0b3c231498ff3cc1, 0xbb37b700ff0e2e01, 0x5a798eff0e370111, 0x0112bc905c1bff3c, 0x95040e5296040e60, 0xff3c889126ff0e4d, 0x0e5b000f3b79e352, 0xb4a0ffbb0a4698ff, 0x000e0e7200023b9c, 0xff3d09dd60ff0e6d, 0x0e7b99043ccfefe4, 0xd4a5ff3b5bbc80ff, 0xcd040f10050b3c7d, 0xc0040eac000d0ecc, 0xf2ff0e991d0e0e9e, 0xbca6fbbcffbd4d82, 0x973200ff0ea7230e, 0x0d0ebc9341b0ff3b, 0x3bff0eb9b4040ebe, 0xbb7c1ca2ff3b9849, 0x9eb2b6ff0ec7ca04, 0x0008bb5b2c1fff3b, 0x030b0ee200120ef0, 0xffbc2601bcff0edd, 0x0eeb030bbc7be3fe, 0xeaa8ffbca226ddff, 0x030b0f021f0ebcb4, 0xffbca38286ff0efd, 0x0f0b030bbcc61bda, 0xece6ffbcd73d7eff, 0x0b0b0f580107bce2, 0x01110f2a060e0f38, 0xff3b2d5fd6ff0f25, 0x0f33070b3c8512f1, 0x0e87ff3c7a6614ff, 0xc3040f4a0012bac3, 0xffbbc0c98dff0f45, 0x0f531d0e3b927648, 0x4428ff3c1031dcff, 0xc9040f7c9605bb85, 0x9aff0f69c6040f6e, 0xbac49578ff3b9127, 0xa89e97ff0f77080e, 0x0b0b3c34d0c3ff3c, 0x96ff0f89cd040f8e, 0xbb67d8a3ff3c0672, 0x8d9fc0ff0f97cd04, 0xcb04bcc311c0ff3b, 0x00021030050b10a1, 0xb6040fcc010c0fec, 0xceff0fb996050fbe, 0xbc5c4fe2ffba96e7, 0x7cc23bff0fc70107, 0x0008bb7ad9a0ffbc, 0xf5ff0fd996050fde, 0xbd10e21effbcd06f, 0xb34528ff0fe7030b, 0x0008bc061ae0ffbc, 0x060d1002000f1010, 0xffbb737b63ff0ffd, 0x100b0112bd1e8960, 0xcdeaffbafe8fecff, 0x010c1022070e3bd7, 0xff3aee459eff101d, 0x102bc904bc9c3239, 0x6b60ff3c853cbdff, 0x000f106f01073cf4, 0xe8ff1041bc04104f, 0xff104a060dbd3ea4, 0xf6b830ff3b11ed3d, 0x5c070e1061c904bc, 0x28ff3c0034dfff10, 0xff106a0b0bbc627f, 0xae07eaff3c870733, 0x85c6041093070e3d, 0xc9d2ff1080010e10, 0x043c74e399ff3cac, 0x39daa800ff108ec9, 0x9c000fbc43be80ff, 0xfcff3be66580ff10, 0x0b1128010c3d8fce, 0x0f10cd010710ed0b, 0xff10ba020d10bf00, 0x6cd495ffbc47ead9, 0x07c6ff10c800083c, 0x0dbc9f6a3affbc32, 0xff10dacd0410df06, 0x8f827cffbc8660e2, 0x78ecff10e800083b, 0x0e3d20bba0ff3c4e, 0xff10fa0002110806, 0x1103cc043c9831a4, 0xd514ff3cd79078ff, 0x060d111a0b0e3c27, 0xffbbfdb82cff1115, 0x112300113d22d588, 0xdc4effbbb1872cff, 0x0011115e0b0e3c46, 0x00021142060e1147, 0xffbcafa6b0ff113d, 0xb7a3fdffbd16f9f5, 0xa1beff11500002bc, 0x04ff11590112bd22, 0xbd37c1f8ffbd91f9, 0x117401111182060d, 0xa15a00ff116f0002, 0xcd04bd03d123ffbc, 0xffbc709808ff117d, 0x118b00023cb4a1a0, 0x9d26ffbb90dae0ff, 0x000800000013bc4a, 0x0001000003e80000, 0x0000000011a20000, 0x8c0508af00070000, 0xc1040248c7040484, 0x620500a06705012c, 0x6c04003caa04005c, 0x0aff00290d06002e, 0xba47e968ffb9e3d4, 0x7c8142ff0037a504, 0x02083b1c18c6ffba, 0x66ff00490108004e, 0xba2d0838ffbb4857, 0x020a76ff0057030b, 0x060dbb2d96a2ff3c, 0x1e0e007201080080, 0xffba68c5a7ff006d, 0x007b6505bbaf5407, 0xf1d3ff3b01fb5fff, 0x9d040092bc043c81, 0xffba9fb8faff008d, 0x009b0012bbf79351, 0x30efff3c2624dfff, 0x2b0e00e8ad04bd39, 0x020800ba000f00c8, 0xff3aee95a8ff00b5, 0x00c3080b3c96298d, 0x4be7ffba58ae49ff, 0x730500da00083ad5, 0xffbb8c9e78ff00d5, 0x00e3000f3c441cf1, 0xd160ff3cfd7625ff, 0x020b010cae04bb30, 0xcdff00f9010b00fe, 0xbd4ca077ff3cfd37, 0xb00994ff01070008, 0x68053b8d5d38ffbc, 0xa3ff0119af04011e, 0xbbaf61a1ff3d3c37, 0xc9f520ff0127030b, 0x020d3b41946bffbb, 0x300e0178c30401bc, 0x0002014a0b060158, 0xffbd8be461ff0145, 0x01530008bd04f78c, 0x43c3ff3b866c07ff, 0x310e016a0006bc62, 0xff3d90f081ff0165, 0x017347053c50da29, 0x01d1ffba41a4d6ff, 0x350e019c0008bde7, 0xf4ff0189340e018e, 0x3d433300ffbaf41e, 0x062f45ff0197030b, 0xc404bd53ef34ffbc, 0x55ff01a9030b01ae, 0x3da82495ff3c67e5, 0x35c097ff01b71106, 0xc204bb6d75d9ff3c, 0x8b0501e42a0e0204, 0xc3ff01d1000f01d6, 0x3bb74c6dffbc9ed1, 0x011562ff01df100b, 0x010cbd48e3c4ffbc, 0x54ff01f1001101f6, 0x3c1e4826ff3d22f9, 0x8b3572ff01ff0b0b, 0x010c3d69e69fff3c, 0x0002021a07060228, 0xffb95fb5e4ff0215, 0x02231105ba2d8d86, 0xddc4ff3c3ed715ff, 0x1d0e023a210e3b09, 0xff3b0ea8b6ff0235, 0x02432b0e3d5c0bbe, 0x508bffbcb3d11fff, 0x01080368c8043c0c, 0x310e02988a0502dc, 0x0008026a230e0278, 0xffbbdf9d66ff0265, 0x0273280e3cebba2c, 0xddedffbd2daa0fff, 0x0006028a330ebbed, 0xff3de3cdbcff0285, 0x0293040b3b8ee400, 0xa5fcff3c8e70e1ff, 0x000202bc0b0bbc00, 0x65ff02a9010c02ae, 0x3d28ae4affbb15a5, 0xee6c2fff02b70009, 0x010c3c716a85ff3d, 0x50ff02c9000902ce, 0xbc7b32bcff3c953e, 0x6b4eebff02d70012, 0x230ebdaa6868ffbc, 0x84050304000c0324, 0x05ff02f16d0502f6, 0x3d1865e7ffba891c, 0x8f97f0ff02ff8505, 0x070d3b90650cffbc, 0x8eff03117a050316, 0x3d33ece1ff3ddaf3, 0xccd180ff031f030b, 0x0012bd62f730ff39, 0x6305033a070d0348, 0xff3bd17b8cff0335, 0x03430208bc8daa63, 0xd975ff3ca3045eff, 0x260e035a2b0e3d5d, 0xffbc78fd80ff0355, 0x03630d0b3d2a2c30, 0xeba8ff3bb1138bff, 0x000c03f8c904bca1, 0x020d03942b0e03b4, 0x98ff038133050386, 0x3cf867b5ffbb46ee, 0x491f8dff038f3305, 0x0008bc245ef9ffbd, 0xd1ff03a1880503a6, 0x3d2c4f61ffbcc902, 0x4a5ba2ff03af0208, 0x190e3c84d851ff3d, 0x7e0503ca001103d8, 0xff3da93e26ff03c5, 0x03d3060d3a350afe, 0x6161ff39c1f552ff, 0x680503ea7105bd3c, 0xffbccaa69eff03e5, 0x03f3010c3dcb6e05, 0xacedffbca448a6ff, 0xca0404400012bd52, 0x0e0e0412170e0420, 0xff3caf52a2ff040d, 0x041b0008bd2471ac, 0x261bff3b139558ff, 0xcb04043200113d0b, 0xff3b628458ff042d, 0x043b0008bc093a15, 0xd2d9ffbcd180b0ff, 0x000c04642b053d7a, 0x80ff045111050456, 0x39d17834ffbcae50, 0xdce2b2ff045f0111, 0x220e3cd9b82eff3b, 0x18ff047159050476, 0xbc91e859ff3a8127, 0x43347aff047f280e, 0x8d05bad1b62fff3c, 0x000f05a8230e067c, 0xb40404d80a0b051c, 0xb00404aab30404b8, 0xff3b937843ff04a5, 0x04b3030bbcced506, 0x77a0ff3d85e2a0ff, 0x030b04ca0d0ebbf7, 0xff3d96197bff04c5, 0x04d3020d3d4b05ab, 0xdefcffbc767fc4ff, 0x970404fca504bd80, 0xaeff04e9870404ee, 0xbe1fec87ffbc7628, 0x43b558ff04f7000d, 0x220e3bb19ecbff3d, 0x86ff0509190e050e, 0x3ce154c6ff3c45b5, 0x333903ff0517be04, 0x00123c64b3b5ffbc, 0x0a0b05440e0b0564, 0x6eff05319d040536, 0xbbe4b84cff3ac922, 0xaa7a5bff053f010e, 0x000c3b9ff9c8ffbb, 0x82ff055102080556, 0xbc6ff32fff3bce4e, 0x8f9e57ff055f0108, 0x0002bb0216fdff3c, 0xbc04057a01120588, 0xffb980f51aff0575, 0x05830d0e3bf74e68, 0xfa1bffbd324adaff, 0xbd04059a190ebc1f, 0xffbb5144b1ff0595, 0x05a3010c3b4f5d42, 0xdbfcffbb7b6eacff, 0x0b0b06260002bce3, 0xc10405d4310e05f4, 0x83ff05c1000f05c6, 0x3b6de7f8ffbc93a3, 0x07c6a6ff05cf000c, 0x020d3bdc4aceffbc, 0xb0ff05e1030b05e6, 0xbd69cf68ffbceb81, 0x144480ff05ef0112, 0x01123d2918c0ff3c, 0x04ff0601bd04060f, 0xff060a000cbd95a7, 0x216ca2ff3d1f9963, 0x1c2b0e0621000c3c, 0x54ffbcb02831ff06, 0x3af8a480ffbc85db, 0x063300120638250e, 0xfb05ffbdb9129fff, 0x0e0b065c000cbdfa, 0x0bff0649060d064e, 0xbcc2118aff3b950b, 0xd56972ff06570111, 0x0108bcce7a5fff3c, 0x4eff0669cc04066e, 0x3bb0b46affbd0c63, 0xbb2c49ff06770208, 0x9305bd9e313eff3c, 0x030e0707020d0793, 0x9c0406aca70406c3, 0x82ff06999005069e, 0x3b815196ffbb39aa, 0x41f64bff06a79005, 0x030bbcc94573ff3c, 0x00ff06b9000206be, 0x3cd69d55ff3b50f8, 0xe7be043d8dfd48ff, 0xd4bb0406d9030b06, 0xcdff3b8be1d5ff06, 0xff06e2000dbc4144, 0xaa34e2ff3bdbc9f0, 0xf42a0e06f92b0ebb, 0x63ff3b150dfcff06, 0xff07022d0e3ccc15, 0x48f08dffbd1d7b79, 0x2fbc04074f070bba, 0x1c000c0721570407, 0x24ffb9baef1fff07, 0xff072aa404bd8d2e, 0x2221c7ff3a854002, 0x3cbf040741190ebb, 0x5dff3c82ec51ff07, 0xff074a1c0ebb063c, 0x0b8aceffbcf9b03a, 0x652d0e07738e05ba, 0x9c0aff0760010807, 0x043b1bccdaff3a1a, 0x3d3f3cbfff076ec6, 0x85000fbb355364ff, 0xc1f4ff0780910507, 0x0ebc25b888ff3bba, 0x3a8bac04ff078e14, 0x23020dba901f48ff, 0xbf090b07df2a0e08, 0xacc70407b1000d07, 0x66ffbc0f3c7eff07, 0xff07ba230e3d0671, 0xab5a85ff3b36ca50, 0xcc030e07d1040e3c, 0x58ff3c0be7e3ff07, 0xff07dac8043d6851, 0x872204ffbc0722fe, 0xf5030b0803ca043b, 0x3bbfff07f02f0e07, 0x0dbd1ba688ff3d25, 0xbbcf0208ff07fe00, 0x152b0ebd6f2618ff, 0x3dfcff0810000208, 0x02bc84f5feffbd93, 0x3cbeaec2ff081e00, 0x6b000fbc23af8fff, 0x3d9404084b140e08, 0x8027ff0838000c08, 0x09bd8a0cd2ff3b98, 0x3b42e285ff084602, 0x5d230ebc1d1b9dff, 0x0a5eff08581f0e08, 0x0ebd1460d1ffbba2, 0x3dafe217ff086628, 0x8fcd043b0e737dff, 0x7c170e0881c80408, 0x41ffba6c4b69ff08, 0xff088a060dba4aa5, 0x17d374ff3b69652b, 0x9c000808a19405b9, 0x14ff3b91e90aff08, 0xff08aa000c3d177a, 0xa5614cff3a5d8769, 0xea96040d26010cba, 0x4b021109ce15060a, 0xe768050907010709, 0xd42d0e08d9940408, 0x4dff3a40f377ff08, 0xff08e20011bacd8c, 0x1c9691ffbb6ff43c, 0xf4040e08f969053c, 0x8cff3b1d7557ff08, 0xff0902000f3c92b6, 0x1ca72bff3bccaaaa, 0x1d8a05092b260ebb, 0xa99bff0918210e09, 0x0c3a9bd79affba12, 0xbb07b081ff092600, 0x3d4101bcab5b42ff, 0x333eff0938000f09, 0x08bb4f207eff3ab3, 0xbc4ab028ff094600, 0x930108bad5b3b7ff, 0x6500060973040d09, 0xd795ff09604f0409, 0x053cf14d40ff3bf1, 0x3c42d7f6ff096e12, 0x854505bc82822fff, 0xc844ff0980000809, 0x053ddc3278ff3e04, 0x3db5c76cff098e53, 0xb70b053d75e990ff, 0xa4020809a9030b09, 0x39ffbc1e157aff09, 0xff09b25e04bd45bc, 0x813c87ff3a999411, 0xc4010709c902123d, 0x3effbd039037ff09, 0x3dbea400ffbda4ed, 0x0a1a0d0e0a5e8404, 0x09ec760409fa000c, 0xabc0f9ff09e71806, 0x17063b5df3f2ffbb, 0xff3c01b836ff09f5, 0x0a0c000ebb8ec7f8, 0xbf67b9ff0a070405, 0x1606bc4fe88bff3a, 0xffbb8d660eff0a15, 0x0a3e6f04bca6dc10, 0x0a2b000c0a300f0e, 0xdcf1ffbbd319fbff, 0x5cff0a39000cbdf3, 0xb940fc00ff3ce393, 0x0a4b0f0e0a50030d, 0x1a70ffbd93124dff, 0x2fff0a59030bbd21, 0xbdffac95ffbd865f, 0x0a86000e0aa61706, 0x0a731c050a781606, 0xff6effbc1af4c0ff, 0xccff0a818c04bd03, 0x3b00c37bff3cc51f, 0x0a93010d0a98000f, 0xe81dff3b34c6f0ff, 0x3fff0aa1060e3d0f, 0xbccad7e6ffba4050, 0x0abc000e0aca8504, 0x98c060ff0ab7020d, 0x000c3ca91676ffbc, 0xff3d4f9bbfff0ac5, 0x0adc030b3c39b608, 0xa65fcdff0ad71806, 0x020ebbe7d9c4ff3c, 0xffbc5d99f6ff0ae5, 0x0c0a000fbd34f464, 0x0b3a350e0b7e0107, 0x0b0c06050b1a9704, 0xf97255ff0b071606, 0x8605bd569a96ffbd, 0xff3c0765d8ff0b15, 0x0b2cc004bd91e21f, 0x901b62ff0b270008, 0x070b3bb9c669ff3a, 0xffbbe937c2ff0b35, 0x0b5e060b3bd827c0, 0x0b4b02080b50020d, 0x6c8bffbc78fbbcff, 0x38ff0b593f013c77, 0xbd6a9913ffbc04ae, 0x0b6b000c0b70030d, 0x499dffbc9ed51aff, 0xb8ff0b7924013b5d, 0x3cdd3718ffbb32d0, 0x0ba687050bc68805, 0x0b9310060b98b004, 0x259fff3a8e08cbff, 0x7dff0ba1b2043c04, 0x39c7b66affbbe72e, 0x0bb3a7040bb80002, 0xa1b7ffbdd6b829ff, 0x22ff0bc1030b39fa, 0xbb7a5d3eff3c8693, 0x0bdc020b0bea9704, 0x93a11cff0bd70008, 0x8905bdaef6beffbc, 0xffbe0bcb82ff0be5, 0x0bfc030bbd624268, 0x8bd5e7ff0bf7340e, 0xa704bda21d6fff3b, 0xffbcc7f7abff0c05, 0x0c9a220eb98f5ccf, 0x0c369d040c560d0e, 0x0c230c0e0c28070d, 0x6289ffbb518867ff, 0xe2ff0c31030b3b90, 0x3ccfc5b3ffbb3381, 0x0c43070d0c489e04, 0x2189ffbc6f8003ff, 0xbaff0c5100113cad, 0x3a3e58a9ffbad9e7, 0x0c6c070d0c7a0012, 0xaa34e2ff0c670e0e, 0x0c0bbb4323ffffbc, 0xffb8e8f64cff0c75, 0x0c8c0e0e3c96a096, 0x1a3cfeff0c87060d, 0x33033d1391a4ffbb, 0xff3d4813e0ff0c95, 0x0ce2060db9e5f7bf, 0x0cb401070cc2260e, 0x06a47bff0cafb204, 0x97043bfb96b2ffbc, 0xffbd677c78ff0cbd, 0x0cd40002bc459a31, 0xa07969ff0ccf280e, 0x370538f411eaff3c, 0xff3a9614b5ff0cdd, 0x0d060012bb9d05dc, 0x0cf3070d0cf80008, 0x824bff3ba4443cff, 0x40ff0d01270ebcdf, 0x3ba5e824ffbbe8a6, 0x0d1357050d18250e, 0xc29dff3d82241fff, 0xd9ff0d21280e3c94, 0xbbda1620ffbd2335, 0x0e4a31050f665d05, 0x0d7a83040dbe9804, 0x0d4c0f030d5a7204, 0x476b3cff0d476204, 0x0107bb9b340affba, 0xffb8ee6016ff0d55, 0x0d6c41013b6b321f, 0xbc165aff0d673901, 0x00023cd7bcd8ff3b, 0xffbc3dc1a3ff0d75, 0x0d9e41013c462e8c, 0x0d8b38010d902b0e, 0xa677ff3c035d17ff, 0xeaff0d9990043cbf, 0x3b325aa7ffbc3a0a, 0x0dab1b030db02103, 0x5a45ff3c6445f1ff, 0xc6ff0db92c05bd3d, 0x3c0fda44ffbc03fa, 0x0de6cb040e06140b, 0x0dd302080dd80002, 0x26acffbbacdde0ff, 0x0fff0de1a504bc94, 0x39ef3eb0ff3b8dc0, 0x0df312060df80107, 0xe640ff3d334005ff, 0x86ff0e010d063b6c, 0x3b165293ffbcc9ac, 0x0e1c00080e2a0c05, 0xd16aa9ff0e172201, 0x070eba95aef2ff3c, 0xff3bb46d1fff0e25, 0x0e3c05063cb01ecc, 0x18c5ddff0e374101, 0x170ebc690a61ff3c, 0xffba1438b0ff0e45, 0x0eda57053c9b20d0, 0x0e76b3040e963705, 0x0e6393040e68090b, 0x87faff3bc73574ff, 0xd2ff0e713401b9b1, 0x3c92dcc1ff3b35b6, 0x0e83060d0e883305, 0xfd4bffbc415594ff, 0x9cff0e91b404bd58, 0x3b653aa6ffbd8d38, 0x0eac02080eba2c0e, 0xd2907fff0ea70012, 0x100b3bbad285ffba, 0xffbc41ce8eff0eb5, 0x0ecc2e0e3ab4fa4b, 0x534889ff0ec72d0e, 0x060dbd6c1f2fffbc, 0xff399d34a2ff0ed5, 0x0f220008bc9b0d75, 0x0ef4070d0f02270e, 0x97eea2ff0eefbd04, 0x5905bd267fd0ffb9, 0xffbc642d40ff0efd, 0x0f14060d3d34ef22, 0x381e18ff0f0f5c05, 0x00123c9e6b06ffbc, 0xffbc20772fff0f1d, 0x0f46bd04bd6233c2, 0x0f3302070f38030e, 0x9409ffbac28a6aff, 0x37ff0f41050bbcd0, 0x3ccb1103ffbb036e, 0x0f53060d0f582b0e, 0x4c99ff3c883cf3ff, 0x6bff0f615805bc11, 0xbc3e7e14ffbd5c4f, 0x0ffa220e1086060d, 0x0f96070e0fb60b0e, 0x0f83020e0f880108, 0xa7f3ffbca87cd7ff, 0x35ff0f91ab04bb32, 0xbd3b8982ffbcafd9, 0x0fa3090e0fa80a0e, 0x46b1ffbcf58e65ff, 0x16ff0fb1b6043d4f, 0xbd035b33ffbddbf6, 0x0fcc0e0e0fdaab04, 0x400946ff0fc70008, 0xaa043d010399ff3c, 0xffbb89dc26ff0fd5, 0x0fec01083ca9e3dd, 0xc33e5dff0fe70207, 0x150ebbe40790ffbb, 0xff3cc8e06aff0ff5, 0x1042240ebbb36306, 0x1014b50410220a0b, 0xbac282ff100f230e, 0x01073d8573d0ffba, 0xffbc8d034eff101d, 0x10340111bd0ee93b, 0x3dce7dff102fcc04, 0xad04bc48144aff3d, 0xff3d4f3702ff103d, 0x10660e0bbd82d1ce, 0x1053011210582c0e, 0xd7b6ff3bb1c253ff, 0xa9ff1061c104bcbf, 0xbc1c1248ffbcb03e, 0x1073c20410780002, 0x6335ff3d075e52ff, 0x64ff1081280e3a22, 0x3cb875d3ff3d9557, 0x10d20a0b11160012, 0x10a4020710b2070d, 0x23817cff109f7005, 0x080ebce6e2c6ffbc, 0xffbd3e70bcff10ad, 0x10c4af04bcbe41ae, 0xfdedc3ff10bf070e, 0x070e3ce6b48dff39, 0xffbdddad0fff10cd, 0x10f6080ebb179111, 0x10e3020e10e8070e, 0x327dffbc4394daff, 0xf0ff10f1070d3bc5, 0x3dd15c8cffbd9af0, 0x1103000211080a0e, 0xcf0dff3d38ea5cff, 0x4fff1111320e3c58, 0xbd16b6d5ff3bb382, 0x113e070e115eb204, 0x112b93041130020e, 0x37bcff3d068f77ff, 0xa7ff1139040bbc81, 0x3da0251eff3d0432, 0x114ba40411500d0e, 0xa851ff3b56c5feff, 0x00ff1159a804bd28, 0x3d58ec20ffba80e0, 0x1174070b11820e0b, 0x7c3acbff116f230e, 0x230ebbcd47d0ff3c, 0xff3b034c73ff117d, 0x1194190ebd5322ed, 0xe27e85ff118f0207, 0xc9043ba90a52ffbc, 0xffbd480f27ff119d, 0x00000013be1c1e11, 0x000003e800000008, 0x000011a200000001, 0x08af000700000000, 0x023fc70404578c05, 0x00a06705012cc104, 0x003caa04005c6205, 0x00296704002e6b04, 0xe688ffb9991751ff, 0x75ff00377204bb58, 0xba50169dffba2166, 0x00496105004e0208, 0xd97dffbb010cf3ff, 0x53ff0057000fbc77, 0xbb4aba91ff3bf14c, 0x007201080080060d, 0xf81209ff006d300e, 0x0d0ebb25aafbffba, 0xff3c37a9c3ff007b, 0x0092bc043b62683d, 0x8fbfe1ff008d9d04, 0x6305bbded165ffba, 0xff3d276e79ff009b, 0x00e8ad04bce0d807, 0x00ba000f00c82b0e, 0xd6b995ff00b50208, 0x0a0b3c87256eff3a, 0xffba649a84ff00c3, 0x00da00083adc812c, 0x7d1d09ff00d57305, 0x000f3c30807bffbb, 0xff3ce41d84ff00e3, 0x010c7305bb1f22d9, 0x00f9ae0400fe0108, 0x6008ffbcbd74d4ff, 0x3bff01076d05bb3a, 0x3c6d4bcaffbaadab, 0x0119ae04011eb504, 0x328bffbc6a4d8bff, 0xe3ff0127070bbac6, 0x3bd602a8ffbc0b3f, 0x016fc30401b3020d, 0x014a11060158300e, 0xaa3777ff01456105, 0x0008bd096689ffbd, 0xff3c1e024fff0153, 0x016a1406bc3e89f6, 0xad34a5ff01650006, 0xdeffbc910e01ff3c, 0x0e0193c4043e472a, 0xff0180030b01852a, 0x7b2a75ff3db8142c, 0xa0b8ff018e030b3d, 0x0d3db112ffffbcd3, 0xff01a00d0e01a500, 0xefc83cffbbc1ad73, 0x3d4dff01ae00023c, 0x05bb95ef90ff3c0a, 0x0501dbc40401fb8a, 0xff01c8790501cd7b, 0xf25f07ff3a82ec66, 0x8968ff01d6c2043c, 0x0bbc16a4dfff3aeb, 0xff01e8040d01ed05, 0xf3f661ff3d295228, 0x4228ff01f689053b, 0x053a62b1a8ffbae0, 0x0e0211090b021f8b, 0xbc35a381ff020c30, 0x1a010c3d25faadff, 0x13ff3c17e9a2ff02, 0x0b0231c2043d2c52, 0xbbb7d2d9ff022c13, 0x3a070ebd42edbfff, 0xc4ffbd3be50eff02, 0x08035fc8043b4702, 0x05028f000802d302, 0x0d02617b05026f8a, 0x3a96d420ff025c07, 0x6a88053cfc30c8ff, 0xd7ffbc7fe089ff02, 0x0902810b0bbb842f, 0x3d61fc5eff027c00, 0x8a060d3bfd5918ff, 0xb2ffbcc6099fff02, 0x0502b3230e3c2d24, 0xff02a0060d02a56d, 0x6bd7c4ffbc146444, 0x07dbff02ae8405bd, 0x053ccb4198ff3d96, 0xff02c0001102c58a, 0xf65a0fffbc927ef9, 0xbeb5ff02ce000239, 0x053d9a2610ff3c8c, 0x0d02fb000c031b6d, 0xff02e80d0b02ed07, 0x3c4fb3ff3b39e380, 0x4063ff02f66105bd, 0x05bc85cfd0ff3d66, 0xff03080b0b030d61, 0x86bddaff3cdbc155, 0x6a05ff03160b0bbc, 0x053d85f7efff3b85, 0x0e03310002033f6f, 0x3e1f5de4ff032c23, 0x3a00113c029b3dff, 0x4aff3e017638ff03, 0x0503510b0b3ddd16, 0xba1a8e41ff034c79, 0x5a83053c843fb9ff, 0xa0ff3d1fa7c0ff03, 0x0c03efc9043bc366, 0x0b038b000203ab00, 0xff03781b0e037d0b, 0xe55898ff38fd125a, 0x7cb9ff03862b0ebc, 0x093d2e690fffbc2a, 0xff03980208039d00, 0x05b0feff3d0bc42c, 0x4905ff03a688053c, 0x0ebd01621fff3b9e, 0x0b03c1140b03cf19, 0x3d44d33aff03bc03, 0xca170ebcdf9a33ff, 0x29ffbaa7aa7fff03, 0x0e03e102083d1c09, 0xbd3a7d2bff03dc2b, 0xea000fbb872f09ff, 0xe0ff3d068df9ff03, 0x0d0413010bbc4c3f, 0x3deaccedff03fc02, 0x04092b0e040e8b05, 0x44c0ffbc87a640ff, 0x053cf39808ffbc08, 0x0c0429000d043775, 0xbcd69e1eff042400, 0x3238053b04d75aff, 0x39ff3b90c3b7ff04, 0x0804490002ba8154, 0xbbeeac05ff044401, 0x522c0eba98c5fbff, 0x93ff3bf347f8ff04, 0x0e067c8d05bb870c, 0x0b04ef000f057b23, 0x08048bb40404ab0a, 0xff0478220e047d02, 0x380e12ffb9a462fb, 0xb400ff0486070e3d, 0x0e3d953058ff3d83, 0xff0498030b049d0d, 0x36b84bff3d8716eb, 0xd947ff04a6020d3d, 0x04bd67f7c8ffbc5d, 0x0c04c1000804cf99, 0xbcfe4cfdff04bc00, 0xca84043c268467ff, 0x7bff3d824f20ff04, 0x0e04e1be04be0fee, 0x3c2d6e8bff04dc22, 0xeaca04bc214d03ff, 0x58ff3cd29d8dff04, 0x120537c504bd2049, 0x040509140b051701, 0xba2bd2baff0504bc, 0x121d0e3c214072ff, 0x3aff3b0a5796ff05, 0x0e0529030b3cce19, 0x3c9a40e8ff052407, 0x32af04b92554d2ff, 0x57ffbd1a7df4ff05, 0x0e055b0011bc46a1, 0xff05480e0e054d1f, 0xd78da0ff3c6dc48e, 0x6322ff0556c604ba, 0x083d279a16ffbcc7, 0xff0568060d056d01, 0xfc732fffbbd5d4b9, 0xa193ff0576190ebc, 0x0cbc036c80ff3c80, 0x0f05b50b0b05f000, 0xff0590250e059500, 0x3a3a28ffbca8d010, 0xa2010805a7060dbd, 0xa0ff3b1f4fbeff05, 0xff05b000123c6463, 0x89ac7bffb9ea8413, 0xcb000205d90111bc, 0xf6f3ff05c6260e05, 0x0e3cb4aa4dff3db0, 0xbc2b5331ff05d429, 0xe2c4043c5a7bf9ff, 0x2b0e3c0708abff05, 0xffbce4b345ff05eb, 0x0638280ebc70f130, 0x060ac80406180002, 0xd0dcbaff06050112, 0x070d3c6494e0ffbc, 0xff3c30d910ff0613, 0x062a010cbc33cf16, 0x935bfeff0625000f, 0x0009bcad2f7dffbd, 0xffbd99baafff0633, 0x065cc204bc8938b8, 0x0649020d064e2b0e, 0x89d1ff3b07fe46ff, 0xd3ff0657be04bd14, 0xbd006035ffbd8783, 0x06690108066ec404, 0x8ea2ff3cb0ef76ff, 0x14ff067702083e34, 0xbd947e50ffb9213d, 0x0707020d07939305, 0x06aca70406c3030e, 0x06990002069e9f04, 0xf2e8ffbb80105fff, 0xedff06a7a0043b21, 0xbc0c244bffbcf27c, 0x7f94b0ff06b50209, 0x1200ff06be00023d, 0x043cc12735ff3b3c, 0x0506d9b50406e7bc, 0x3b29a826ff06d490, 0xe2b704b94ed6e1ff, 0x46ffbc9b0f3dff06, 0x0806f9910539152a, 0xbbcdac2bff06f400, 0x02c5043c1ab9edff, 0x5fff3c9f0debff07, 0x04074f070bbbabea, 0x0f0721ba04072fbc, 0x39a9103dff071c00, 0x2a060dba0111f7ff, 0xe5ff3b0ed53eff07, 0x0407419105bcaa9c, 0x3bfd233eff073cbf, 0x4acc04bb8a1bf4ff, 0x37ff3abc2eeaff07, 0x0e077300023c8f29, 0xff0760c004076523, 0x284052ff3a1bb10e, 0x53a7ff076e2a0eb9, 0x12bb3f9887ffbc67, 0xff0780bf04078500, 0xbc2c6bff3b4a64c4, 0x2c25ff078e010c39, 0x0d37a15824ff39cc, 0x0e07df020b082302, 0x0e07b1000907bf11, 0xbaee9cc5ff07ac08, 0xbaa7043b9a53deff, 0xb5ff3b746e00ff07, 0x0507d1010bbc8407, 0x3ce7d014ff07cc94, 0xdab304bab27e41ff, 0x0cff3c42794bff07, 0x110803000d3d0de3, 0xff07f0030b07f501, 0x8c4464ffbbed5486, 0xcf99ff07fe00083c, 0x0e3bfa47daffbc0a, 0xff08101f0e08152a, 0x1e0fa9ff3b13369a, 0xf505ff081e2b0eba, 0x0fba99423affbcc9, 0x04084b140e086b00, 0xff08380a0b083db3, 0x95048fffbc171e16, 0xbe78ff0846060d3c, 0x0ebcd85548ff3bdf, 0xff08581f0e085d23, 0x058a51ffbb91d65c, 0x4b7eff0866280ebd, 0x043b003491ff3d9e, 0x0e0881c804088fcd, 0xba54aa48ff087c17, 0x8a060dba366185ff, 0xe4ff3b520e1eff08, 0x0808a19405b908a3, 0x3b8351c8ff089c00, 0xaa000c3d085443ff, 0x98ff3a476062ff08, 0x040d26010cba94d7, 0x1109ce15060aea96, 0x0509070107094b02, 0x0e08d9940408e768, 0x3a2da7a0ff08d42d, 0xe20011bab8fe30ff, 0xeeffbb57f567ff08, 0x0e08f969053c0ced, 0x3ac08dc8ff08f403, 0x02000f3c82f056ff, 0xd6ff3bb8333bff09, 0x05092b7f04bb0cfc, 0xff09187404091d89, 0x9e4c52ffba095605, 0xa5e8ff0926000f3a, 0x073bc38936ffbc3d, 0xff0938170e093d02, 0x9f368bff3a3b1364, 0x2b5fff0946080eba, 0x08b9625541ffbbbb, 0x040973040d099301, 0xff09605e0409656a, 0x1d9091ff3bcbbd44, 0x7c40ff096e000cbd, 0x053bbd5a9aff3cb0, 0xff09800008098545, 0xc62d68ff3def0210, 0x99e4ff098e53053d, 0x053d5d5230ff3da3, 0x0409a95e0409b70b, 0xbb781af8ff09a43b, 0xb20208bd2b9249ff, 0xc4ff3dca3b87ff09, 0x0709c90212bcd215, 0xbcecd05fff09c401, 0x9398ffbd946f1dff, 0x000c0a5e76043dab, 0x730409fa18060a1a, 0xf0ff09e70f0e09ec, 0x3cccd16dffbb8216, 0xcdc5e1ff09f5030b, 0x020ebcf9ae56ff39, 0xb5ff0a076f040a0c, 0x3d1e365eff3b8802, 0xb39ee1ff0a15040e, 0x030ebd1d7ee3ffbb, 0x010e0a3073040a3e, 0xffbb19d8dcff0a2b, 0x0a39020dbc69a77b, 0x71b5ffbcc1a412ff, 0x64040a501706bd2f, 0xffbc0dc399ff0a4b, 0x0a590002bd235fa9, 0x3567ffbe182011ff, 0x010d0aa61706bd99, 0x82040a7816060a86, 0xffbd0bf237ff0a73, 0x0a810a0ebc8d20a7, 0x84f4ffbb122f80ff, 0x000f0a98150e3d84, 0xff3c817752ff0a93, 0x0aa1030bbb0c1991, 0xc122ffbd277778ff, 0x0f050aca090ebde0, 0x51ff0ab702070abc, 0x3c01b6c5ffbc280d, 0xf430c2ff0ac5010e, 0x00023d62ecefff3b, 0x41ff0ad7020d0adc, 0xbd66daa3ffbc3b9b, 0x31da2bff0ae51806, 0x000fbdd8eabfffbd, 0x3b010b7e34030c0a, 0x13050b1a21010b3a, 0xb0ff0b071c010b0c, 0xbc7d9328ffbaf018, 0x9a3e9bff0b151a01, 0x0a0bbd8f7a2dffbc, 0x8aff0b27a3040b2c, 0xbc63293eff3b7524, 0x848623ff0b352c03, 0x030dbbc00846ff3c, 0x360e0b5000020b5e, 0xffbb04fa6aff0b4b, 0x0b59000cbd636537, 0x1341ff3cf8d7f9ff, 0x050b0b7002083c17, 0xff3c8782edff0b6b, 0x0b79050bbc5272f5, 0x92a7ffbd7a6c04ff, 0x0b050bc69704bc1a, 0x020d0b9816060ba6, 0xffbd830fe1ff0b93, 0x0ba11906be1621bb, 0xd3e5ffbd45e8d3ff, 0x030b0bb87d05bb8d, 0xff3d0956eaff0bb3, 0x0bc1070e3aa1033b, 0xb86affbdd870caff, 0x040e0bea330e3d48, 0xf1ff0bd70c050bdc, 0x3a8b6af4ff3c4345, 0x460aa1ff0be5010b, 0xa9043b481c88ffbb, 0xb4ff0bf741010bfc, 0xbd2d5518ffb9c2ca, 0x348681ff0c05050b, 0x220e3bcf6ec1ffbc, 0x9d040c560d0e0c9a, 0x0c0e0c28070d0c36, 0xffbb3c947cff0c23, 0x0c31000c3b81f24f, 0xa5bbff3bd73d1cff, 0x070d0c489e043cf3, 0xffbc578ccdff0c43, 0x0c5100113c9bd160, 0x4fa3ffbac41d93ff, 0x0e0e0c7aa1043a2b, 0x2fff0c67070d0c6c, 0xb969398bffbcbd86, 0xb9f22eff0c75120e, 0x170eba8d8f7eff3c, 0xf7ff0c87a5040c8c, 0xbac045daff3c3541, 0xb8f7f6ff0c953403, 0x060dbad52578ff3c, 0xbc040cc2140b0ce2, 0xe3ff0caf0b0b0cb4, 0xbcd677a9ffbb11df, 0xd5d6e9ff0cbd0b0b, 0x0112bcd69f5bff39, 0x09ff0ccf9b040cd4, 0x3bb94667ffbc8efd, 0x334d45ff0cdd0002, 0x00123b4c554dffbc, 0x070d0cf800080d06, 0xff3b93d6f2ff0cf3, 0x0d01270ebcc9286f, 0x50e0ffbbd1627fff, 0x50050d18250e3b95, 0xff3d78d966ff0d13, 0x0d212d0e3c97da45, 0xf7f7ff3aa85f4dff, 0x19050f665c05bd39, 0xbe040dbe2e0e0e4a, 0x17050d5ab3040d7a, 0xb3ff0d47ab040d4c, 0x3b55bc3dffb89c23, 0x263f2cff0d551703, 0x0c06373875bdff3c, 0xcdff0d670c050d6c, 0x3c4e939eff3d35ab, 0x9ac0d2ff0d75bd04, 0xbf043c89bbaeff3a, 0x01070d900f0e0d9e, 0xffbc8bcf67ff0d8b, 0x0d990f063b5e367f, 0x74f0ffbd30926bff, 0x01110db02b0ebced, 0xffbb3ecd7dff0dab, 0x0db900023c90baaf, 0x968eff3dc3010cff, 0x100b0e0609063ce8, 0x7f040dd800020de6, 0xff3aa4fd45ff0dd3, 0x0de1330ebbdbaf37, 0x901fff3d0af825ff, 0x1a010df80d033afc, 0xffba8e147fff0df3, 0x0e01b604bd151f9f, 0x03e8ff3c96d9cfff, 0x9c040e2abc043a0c, 0x88ff0e1701110e1c, 0xbcb1014eff3c7315, 0x803f73ff0e250105, 0x0108bcd3dbd9ffbd, 0xd3ff0e37c5040e3c, 0xbd1101d3ff39a14f, 0x6fcba0ff0e450705, 0x91043d90f176ffbb, 0x02080e968b040eda, 0x00110e6887040e76, 0xff3988532eff0e63, 0x0e71070b3bc069d9, 0x9266ff3b9e3808ff, 0x00120e88070e3c87, 0xffbc12f104ff0e83, 0x0e91060d3af51d0f, 0xe41fffbc28ed4fff, 0x41010eba0002bce1, 0x42ff0ea790040eac, 0x3cefde6bff3bd386, 0x094acbff0eb52c05, 0x0112bc193927ffbd, 0x75ff0ec702080ecc, 0xbc75dbabff3c999f, 0xc069cbff0ed5220e, 0xb6043c807b94ffbb, 0xb1040f0200020f22, 0xb9ff0eef140b0ef4, 0x3b949b68ffbb7293, 0x08588fff0efd2b0e, 0x2f03bc2c64d5ff3c, 0xbaff0f0f00060f14, 0xbd54d55cff3cc652, 0x5038efff0f1d0112, 0xc604bb2c2aa4ff3c, 0x31030f384e050f46, 0xffbca9511fff0f33, 0x0f41b904b957e228, 0xa6bfff3c568cd8ff, 0x02070f58c704ba7f, 0xffbcd8818aff0f53, 0x0f6100113a7f45a3, 0xf40dffbbba2c2bff, 0x66051086170e3b68, 0x02080fb6070d0ffa, 0x00080f8800110f96, 0xffbc622ca0ff0f83, 0x0f91120e3baa0b63, 0xa204ff3c0fda68ff, 0x0b0b0fa85d05bbac, 0xffbd497759ff0fa3, 0x0fb1050bbc730afc, 0x08aeffbcdb952aff, 0x080e0fda0d0ebba5, 0x3fff0fc7070e0fcc, 0x3d64e842ff3ad045, 0xa7b216ff0fd5ab04, 0x0b0bbd8349f3ffba, 0x6cff0fe7a6040fec, 0x3d17fa02ffbbd6e5, 0xccb8a6ff0ff50e0e, 0x7505bd1b25abff3d, 0x01081022020e1042, 0xc9ff100f010e1014, 0xbce75e91ffbb24ef, 0x824911ff101d060d, 0x060dbd12b42effbd, 0xf4ff102f72051034, 0xbcd8c011ffba7251, 0xa0d47bff103d070e, 0x0b0ebb9348fcff3c, 0x0a0e1058060d1066, 0xffbc821161ff1053, 0x1061070dbd977a44, 0xe12fffbb1ccc15ff, 0xb20410780b0b3cd2, 0xff3c754fcaff1073, 0x10810012ba8f342b, 0x7d8bff38e03e2fff, 0x050b11161c0ebcc9, 0x011110b2060d10d2, 0x95ff109fa20410a4, 0xbcd95ecfffbb9a90, 0xf3a196ff10ad7905, 0x00123ce7e4f8ff3d, 0xebff10bf190e10c4, 0x3d4b13a3ffbc9eb4, 0xf77dafff10cd190e, 0x180ebcfc3f20ff3c, 0xc20410e8140b10f6, 0xffbd7f7b1eff10e3, 0x10f100123b984c1d, 0xc200ffbdf6adf0ff, 0x110b110887053a6c, 0xff3ccf7828ff1103, 0x111188053d26ef95, 0x6f83ffbcea5f0eff, 0x0012115e1d0e3c25, 0x090b11308005113e, 0xffbd048becff112b, 0x11398805bdb32d2d, 0xe2b1ffbd2407c0ff, 0x0a0b1150bd04bc26, 0xffbc5c07f0ff114b, 0x11590111bd317784, 0xc514ffbc308cb9ff, 0x050b11821f0e3cc2, 0xfcff116f060d1174, 0xbb82a6d4ffbd0e1e, 0xd6952bff117d060d, 0x200e3d1f4acbff3d, 0xfdff118fc3041194, 0x3e1d9992ff3c1243, 0x6f61d6ff119d220e, 0x00133b87bafaffbc, 0x03e8000000080000, 0x10b8000000010000, 0x0007000000000000, 0xc70404848c0508b8, 0x6705012cc1040248, 0xaa04005c620500a0, 0x6704002e6b04003c, 0xffb989c8ddff0029, 0x00377204bb4335f9, 0x477fffba1142a5ff, 0x0108004e0208ba3b, 0xffbb26d152ff0049, 0x0057000cb9cb4a0d, 0x6edeff3b0688b1ff, 0x010d0080060dbb1a, 0x35ff006d000d0072, 0xbd3f43f1ffbc4179, 0x819acaff007b000b, 0xbc04b9043505ffbd, 0x3aff008d9c040092, 0xbbad05aeffba9314, 0x1c9c4fff009b0012, 0xad04bd1b6e09ff3c, 0x000f00c82b0e00e8, 0x7cff00b5000600ba, 0xbc8c997cff3b2a07, 0x2c268fff00c3080b, 0x00083aabc11fffba, 0x2bff00d5730500da, 0x3c1ed9ffffbb63cd, 0xcd4dc8ff00e3000f, 0x7305bb0f38f1ff3c, 0x000900fe0108010c, 0xff391399e2ff00f9, 0x01076d05bc4f4223, 0x90f4ffba9c4d30ff, 0x8a05011eb5043c55, 0xffbb41a0deff0119, 0x0127070b3b74a49d, 0x9c0fffbbfaa647ff, 0x000d01bc020d3bc0, 0x7905015800080178, 0x6aff01450209014a, 0xbde29d40ffbd9e51, 0x091d3fff01532d0e, 0x7a053d16b9dcffbc, 0x0cff01650806016a, 0x3ba7f056ff3d104b, 0xe537e0ff01730006, 0x010b3bcb5815ffbc, 0xc604018e0002019c, 0xff3c34235dff0189, 0x0197000c3d7743c0, 0x0db8ff3c7ca7c6ff, 0xc30401ae360ebced, 0xffbc3098caff01a9, 0x01b777053ad135f7, 0x0795ffbc355840ff, 0xc40402048a05bd3d, 0x790501d67b0501e4, 0xff3a6ba942ff01d1, 0x01dfc2043cda2258, 0x9459ff3ad3fb94ff, 0x040d01f6070bbc07, 0xff3d186389ff01f1, 0x01ff84053bd4d63e, 0x35eeffba43a11dff, 0x030b02288b05bb74, 0x3aff0215230e021a, 0x3c0355b0ffbc8e07, 0x05cc9cff0223010c, 0xc2043d12a87bff3c, 0xf2ff0235130b023a, 0xbd2f6f91ffbba570, 0x291af5ff0243070e, 0xca043b331c1effbd, 0x000802dc230e0368, 0x000902788b050298, 0x0eff02658705026a, 0x3d2583ecffbb10a7, 0x129178ff02737905, 0xc904bc138904ff3d, 0x8fff0285010c028a, 0xbd77ca35ffbc27b2, 0x268300ff0293060d, 0x180e3d30d278ff3d, 0x001202ae150e02bc, 0xff3d0f5f09ff02a9, 0x02b7c804bb6612d4, 0x79c2ff3bbe8fe8ff, 0x860502ce1f0ebca4, 0xff3d968c5dff02c9, 0x02d7220e3cb7711b, 0x131cffbce95babff, 0x040b0324070d3caf, 0x530502f682050304, 0xff3b8c804bff02f1, 0x02ff340e3cc4fc07, 0xc92affb91b9053ff, 0x8505031686053e05, 0xffbbc1c4c9ff0311, 0x031f0002bd1e74dc, 0x441cffbbbdfbdcff, 0x010c034883053bb0, 0xd8ff03353705033a, 0x3cdf945bffbd9614, 0x1eeac2ff0343c804, 0x00083da620deff3d, 0xb0ff0355030b035a, 0x3cb3f02cffbbcdb5, 0x10bb40ff0363050b, 0x2a0ebc91ca90ff3a, 0x140b03b4010c03f8, 0x0002038612060394, 0xffbb9d6c37ff0381, 0x038f220ebc96d4d0, 0xd74aff3b1cb5c8ff, 0x220e03a6250e3ceb, 0xff3a8b575fff03a1, 0x03af01113c94896f, 0xa4fdffbc862ce7ff, 0x070d03d800023d28, 0x83ff03c5cd0403ca, 0x3b3d819affbd1152, 0xc361a2ff03d3cb04, 0xcd043e25dfd6ff3c, 0x29ff03e58a0503ea, 0x3df5bf65ffbb840b, 0x20eb2fff03f30b0b, 0x0108be08b424ffbd, 0x8a050420310e0440, 0xadff040d00020412, 0xbbc3c600ffbca1b5, 0xcdcd50ff041b0002, 0x00083d8c8d40ffbb, 0x26ff042d320e0432, 0x3bc83d5aff3d38a8, 0x8033d4ff043b0b0b, 0x010cbc8e7d78ff3b, 0x0c0b0456cb040464, 0xff3b96e851ff0451, 0x045f000c3cf82be8, 0x1bbcff3ac761d1ff, 0x2b0504766b05bc06, 0xff3bd60ac0ff0471, 0x047f340ebc84bf54, 0x0a5aff3c9ff8e9ff, 0x230e06858d05b9ca, 0x0c0b051c000805a8, 0x640404b8c60404d8, 0xebff04a5000c04aa, 0xbcd0096fff3b4982, 0x86ff6eff04b3010c, 0x01093bc42c7aff39, 0x25ff04c5001104ca, 0xbd467790ffbb0d40, 0x1ba572ff04d30112, 0x00123b98585affbc, 0xbc0404ee000c04fc, 0xffbb3c437dff04e9, 0x04f700093bf5c721, 0x16f9ff3c98927cff, 0x0111050e060d3b6a, 0xff3bbb69c3ff0509, 0x0517100bbc1a68e1, 0x3765ff3c817f98ff, 0x220e0564060dbcfb, 0x0111053601080544, 0xffbb0d1498ff0531, 0x053f020dbcbed997, 0x3560ff3cb6e13bff, 0x010c05560111baca, 0xff3cd15f41ff0551, 0x055f030b3e21cbc1, 0x2809ff3cccf9d3ff, 0x000c0588020ebcbc, 0x14ff05759704057a, 0xbc194e87ff3b9b4a, 0x708249ff0583010e, 0xc304bd769b55ffbc, 0xbaff0595bc04059a, 0x3c88ad9bff3ae228, 0x132ba5ff05a30108, 0x00023b5ca78cffbc, 0x310e05f40b0b062f, 0x000d05c6a90405d4, 0xffbd9cba16ff05c1, 0x05cfb404bc64e6bd, 0xa7dfff3c8245a9ff, 0x000f05e6330eba3c, 0xff3d184000ff05e1, 0x05efc6043c05b158, 0x1afeffbc9187c0ff, 0xca04060f060dbd43, 0x2cff0605bd04060a, 0x3be07753ffbd8b34, 0x21000c3e019212ff, 0x5354ff061cc70406, 0x043cda4451ff3e28, 0x3c0aa1f0ff062acb, 0x41250ebc7a31bbff, 0x6c85ff063c001206, 0x08bddfbdadffbda4, 0x0d0657000f066501, 0xbc4b21a0ff065200, 0x600009bd726586ff, 0x77ffbc359947ff06, 0x0c0677c4043c471b, 0x3c7f2d64ff067200, 0x80030b3e22805eff, 0x08ffbbe6bc04ff06, 0x0d079c93053c59c8, 0x0406cc030e071002, 0x0506a79f0406b5a7, 0xbb1dd868ff06a290, 0xb0030b3b6638b9ff, 0x40ffbc9a3b9dff06, 0x0206c7030bbbaea5, 0x3b294300ff06c200, 0x05d0ff3cadd675ff, 0x030b06f0be043d66, 0xbcff06ddbb0406e2, 0xbc2a30ceff3b76fe, 0xc94bafff06eb220e, 0x2b0ebc5afd34ffba, 0x61ff06fd2a0e0702, 0x3cb62fa1ff3ac1fd, 0x0e541dff070b2d0e, 0x070bba109435ffbd, 0x5c040738bc040758, 0x8dff0725000e072a, 0x3d0dff4effbb2412, 0xfe5aa5ff07339105, 0x190e3b436c83ffba, 0x4bff0745bf04074a, 0xbadb796fff3c621a, 0xe11e99ff07531c0e, 0x8e05b9e2568effbc, 0x0108076e2d0e077c, 0xff3a022721ff0769, 0x0777c6043b0afece, 0x1f62ff3d2bf43fff, 0x000c078e0009bb20, 0xff39b8cf41ff0789, 0x0797c4043a24b5d3, 0xf20cff3aea7c83ff, 0x020b082c020dbba6, 0x000907c81d0e07e8, 0x93ff07b5c80407ba, 0x3d252e50ff3b2259, 0x5bfce0ff07c3a704, 0x220ebc71045fff3b, 0x2cff07d5bf0407da, 0x3c249926ff3de5dc, 0xf2be96ff07e39405, 0x000dbb99ae85ff3c, 0x050b07fe0111080c, 0xffbbec3da7ff07f9, 0x080795053cb24bb4, 0xede2ffba60d8cfff, 0x0002081e040bbc19, 0xff3c790330ff0819, 0x0827c204b5d5ab4b, 0x8f67ff3a8ecbb3ff, 0x140e0874000fbc0c, 0x000c0846b3040854, 0xff3c00025bff0841, 0x084fc004bc2bba38, 0x8996ff3c468945ff, 0x0a0b0866230ebb28, 0xffbca61812ff0861, 0x086f280e3c17291e, 0xc522ff3d8e7725ff, 0xc8040898cd043ae6, 0x55ff0885140e088a, 0xba0a63e5ffba428d, 0x3d0ca8ff0893060d, 0x9405b8f5f67dff3b, 0x05ff08a5000808aa, 0x3cf56476ff3b6c60, 0x0adebfff08b30b0b, 0x9505bb78e9a9ff3b, 0x000d0afcc6040d02, 0x200e0954260e09e0, 0x0a0e08f01c0e0910, 0x6cff08dd6f0508e2, 0xbc63e813ffbb4695, 0x8c30b0ff08eb4404, 0x00083c3bc27effbb, 0x45ff08fd71040902, 0x3c39dde8ffbcaac9, 0x06e73dff090b1d0e, 0x3601bc00c01bffbd, 0x2501092626010934, 0xffba8b180dff0921, 0x092f0008bc4ba665, 0xfb06ff3a059d64ff, 0x220e09469e043c52, 0xff3d6ca710ff0941, 0x094f08063cdca15b, 0x4289ff3c2105c4ff, 0x4101099cb504bcac, 0x2a01096e3301097c, 0xffbb38f2d0ff0969, 0x09773901bc60bee2, 0x2218ff3c5e7b19ff, 0x6105098e9204bb84, 0xffbd017f9aff0989, 0x0997310ebe0e0fef, 0xca66ff3c12e9dbff, 0x010709c00406bd06, 0xbeff09ad310e09b2, 0x3c256146ff3d33d5, 0x96eb57ff09bb7705, 0x2a05bcc6e017ff3c, 0xfaff09cdb80409d2, 0xbca87f2fffbab143, 0x92fb39ff09db5405, 0x2a0ebca2018bffbd, 0x53050a2c00060a70, 0x6e0409fe72040a0c, 0xff39573840ff09f9, 0x0a070011b9e37102, 0x8beaffbb08393aff, 0xa1040a1e55053bef, 0xffbc0c7b34ff0a19, 0x0a27010c3ad28a3a, 0x3a27ffba1f9e12ff, 0x79040a500206b9af, 0x06ff0a3d3b040a42, 0xbc4a4480ffbaa04b, 0x1cfbf8ff0a4b0106, 0x0506bcaaabd4ffbd, 0xc2ff0a5d000c0a62, 0xbbf84308ff39c5ea, 0xe25d5fff0a6b0108, 0x1206b9c70a70ff3a, 0xc3040a98010c0ab8, 0xb9ff0a850b0b0a8a, 0xba092d2cffb99eb6, 0xb77ba9ff0a930112, 0x110bbb47984aff3c, 0x9cff0aa501110aaa, 0xbc5a5f5fffbaa331, 0x0ae04cff0ab3060d, 0x0207bcc2045bff3c, 0xbb040ace340e0adc, 0xffbd20c0d7ff0ac9, 0x0ad7010b398eb9a8, 0xa231ff3cc6215cff, 0x00080aee07053dfa, 0xff3dbf4862ff0ae9, 0x0af7c3043cab9580, 0x46d0ffbc190380ff, 0x00060be64101bcac, 0x0b0b0b4c45050b75, 0x27010b1e01070b2c, 0xffbd8539f5ff0b19, 0x0b271203bcab0e00, 0xcfb3ffbce86990ff, 0x36050b3e01073b3e, 0xffbc8bd226ff0b39, 0x0b471e01bd513b6d, 0x6d86ffbd20c106ff, 0x01070b5e000cbdb4, 0xffbd0fc988ff0b59, 0x0b67010cbce8e830, 0x70060dbda611b8ff, 0x0cffbde6354cff0b, 0x050bab0d05bdeaa3, 0xff0b8636010b8b07, 0xc64d80ff3dfd37b8, 0x9836010b9d0208ba, 0xd8ffbd525ef3ff0b, 0xff0ba6cb04bc5a1f, 0x6f2210ff3d55ae78, 0xc1cb040bc63501bd, 0xf750ff0bbc1d050b, 0xff3c95d34cff3d58, 0x0bd8010c3d43bdfc, 0x8af7c9ff0bd3cb04, 0x36013d09132effbc, 0xffbd9f8d1cff0be1, 0x0c769405bd3c7d0e, 0x0c120c050c327e05, 0x0bff000e0c04c704, 0x2ec3ff3cbd7c2cff, 0xcfff0c0d0b05be09, 0x3bcdd0d7ffbcf75e, 0x0c1f0b0b0c247d05, 0x02e5ffb98ad896ff, 0x77ff0c2d0108b984, 0xbab365d8ff3d2f80, 0x0c4801080c568005, 0x0601e0ff0c431d0e, 0x220ebc53dfe1ffbd, 0xffbbedbd38ff0c51, 0x0c68c8043b8b0fa5, 0xb55bacff0c63260e, 0x220e3b985a72ff3a, 0xffb9924978ff0c71, 0x0cbe010c3b1189d1, 0x0c900d0e0c9e0107, 0xc66169ff0c8bc904, 0xca04bc51ddd3ffba, 0xffbbb0d385ff0c99, 0x0cb01f0e3abaad99, 0xd60db7ff0cab000c, 0x2b0eba481e67ff3b, 0xffbc0aa319ff0cb9, 0x0ce20b0e3cde8cd8, 0x0ccf070e0cd4cc04, 0x483affbb8cef00ff, 0x90ff0cdd0b0bbd83, 0x3bc2e330ffbc243a, 0x0cef1d0e0cf40002, 0x0771ffbc3d4872ff, 0x1aff0cfd0d0ebd20, 0x3c21e261ffbb8550, 0x0e14000c0f300e0b, 0x0d5601110d9a060e, 0x0d28000b0d360a0b, 0xf7ef9bff0d23020d, 0xb4043c7833f8ff39, 0xff3aaaef2fff0d31, 0x0d48c304bbd426ad, 0x90a075ff0d43010e, 0x010ebaf2b9d7ff3b, 0xff3c1ed6a4ff0d51, 0x0d7a96043b969ff6, 0x0d6700020d6c7804, 0x0c1eff3c8d9cf2ff, 0xabff0d75030b3b58, 0x3a318c74ffbc4bac, 0x0d879c040d8c060d, 0xc4c8ff3ca79f4cff, 0xc0ff0d95b0043bcc, 0x3cd31cc0ff3d69d6, 0x0dc2060d0dd9070e, 0x0dafbc040db4030b, 0xa0ccffbb721f0aff, 0x94ff0dbdbc04bc65, 0x3ba9959aff3c679b, 0x0dcf00080dd40108, 0xd3f3ffbc028075ff, 0x07bc6bb06affbb8f, 0x0e0def2c0e0df401, 0xb887c3b7ff0dea23, 0xc770ffbbdf4d16ff, 0x0b0e0e0601113d0f, 0xff3c676ae3ff0e01, 0x0e0f000d3bb96eb4, 0x4692ffbced2ceaff, 0xc1040ea4cb04bac3, 0x010c0e40bc040e60, 0x87ff0e2d000f0e32, 0xb99c4040ffbc25ec, 0xc08ff0ff0e3bb904, 0x020dbc0c3a50ffbc, 0x55ff0e4dbd040e52, 0xbb64c600ff3b106d, 0xb80dc2ff0e5b050b, 0x020b3c96f896ffbc, 0x01110e760d0e0e84, 0xffbbf77079ff0e71, 0x0e7f0008baa0b7b1, 0x4a00ffbc6a5235ff, 0x060d0e96000f3bec, 0xff3b40ca1cff0e91, 0x0e9fc804bd04be84, 0xc90eff3b24c860ff, 0x000f0eec01073c3e, 0x030b0ebe020d0ecc, 0xff3b279549ff0eb9, 0x0ec7030bbcdba27b, 0xb4e0ff3cbe8110ff, 0xcd040ede1f0e3bf4, 0xffbc8b5007ff0ed9, 0x0ee70002bbe4f016, 0xa6d8ffbd9a6e6aff, 0xcd040f10060dbb0c, 0xbbff0efd030b0f02, 0xbc3c2de7ffbcad65, 0x407d7bff0f0b0111, 0x140e3c4ed720ff3b, 0x7cff0f1d00080f22, 0x3d0da930ff3c8a67, 0xe80740ff0f2b0002, 0x96053bc46c9aff3a, 0xc3040fb2c9041023, 0x01070f5700120f77, 0x96ff0f4d000e0f52, 0xbb325d2cffbbb15e, 0x69140bbc519398ff, 0x54caff0f6400080f, 0x0e3c1ffefcff3ba3, 0x38646c00ff0f7200, 0x9bc604b9dd8655ff, 0x88010e0f8d030e0f, 0x6eff3c35838bff0f, 0xff0f9601123b910e, 0x4704a8ff3c9765ca, 0xa8c8040fad01123c, 0x2bffbc161f42ff0f, 0x3ba615a0ff3ae2db, 0x0fd1080e0fdfcb04, 0x08f5c0ff0fc30012, 0xc0dfff0fcc00083b, 0x023daf634fff3d92, 0xbb2e2ac0ff0fda00, 0x030008bb840040ff, 0xf0cc040ff5000c10, 0x4bff3bc94237ff0f, 0xff0ffe140e3c76df, 0x0e229aff3c54eeec, 0x10cc04101501123b, 0x47ff3c7583c8ff10, 0xff101e020d3b1ef1, 0x180d40ff3b919358, 0x540012107d0107bc, 0xeb10ff1034c30410, 0xcd041046080ebc1d, 0xff3b8be8c0ff1041, 0x104f140ebb944ef8, 0x7ae2ffbd08a89bff, 0xcd04106f110e3c1a, 0x09ff10650111106a, 0x3c5d3160ff3b93b9, 0x780002bcac35d4ff, 0x74ff3c8db876ff10, 0xff1086cd043c58c5, 0x10aa00113b75e1d0, 0x10970207109c020e, 0xff70ff3bba4e10ff, 0xccff10a502073be4, 0xbcf52a52ffbcde20, 0xd37788ff10b30207, 0x0013bcedf914ffbc, 0x03e8000000080000, 0x1094000000010000, 0x0007000000000000, 0xc70404848c0508f7, 0x6705012cc1040248, 0xaa04005c620500a0, 0x1706002e6c04003c, 0xffb9b2485eff0029, 0x0037a5043b9ec24c, 0x5f41ffba3ce3d0ff, 0x6105004e02083b16, 0xffbacffc70ff0049, 0x0057030bbc5c1138, 0xdbb3ff3be8f3dbff, 0x01080080060dbb11, 0xd7ff006d300e0072, 0xbb0a7ab3ffbad88e, 0xc105cfff007b020d, 0xbc043b4d4910ff3c, 0xd5ff008d9d040092, 0xbbb73be7ffba6398, 0xfad902ff009bbd04, 0xad043c886f4affbc, 0x000f00c82b0e00e8, 0x96ff00b5020800ba, 0x3c6f93ccff3aaa76, 0x1aef84ff00c3080b, 0x00083a9a9425ffba, 0x93ff00d5310e00da, 0xbc174888ff3b71db, 0xb8c607ff00e3000f, 0x7305bb00e674ff3c, 0xbe0400fe0108010c, 0xffbae9972bff00f9, 0x01076d05bca1c6a5, 0x35b1ffba8cabf6ff, 0xae04011eb5043c40, 0xffbc518107ff0119, 0x0127090bba954043, 0x960cffbbd27808ff, 0xc20401bc87053bac, 0x000f0158010c0178, 0xaeff01451e05014a, 0xbc688c17ff3d042a, 0x609d97ff0153220e, 0x80053c26c4c0ffba, 0xd7ff0165130b016a, 0x3d50328eff3c66cb, 0xba2179ff0173060d, 0x0002bc96cc16ff3b, 0x190e018e010c019c, 0xff3c7302f4ff0189, 0x0197310ebac2aba6, 0x45f3ffbc42b774ff, 0x2c0e01aec3043cba, 0xff3ce96423ff01a9, 0x01b7c404bca0c79b, 0x1d32ffbca65778ff, 0x310e020400093b12, 0x010801d60d0e01e4, 0xffbd0cbef1ff01d1, 0x01df010cbbb81646, 0x7a70ff39efe252ff, 0x000801f6320e3c0b, 0xff3db0e99bff01f1, 0x01ff340e3eabd783, 0x1457ffbc762621ff, 0xc2040228060d3d18, 0xf9ff0215010c021a, 0x3cce7f33ff3adfb4, 0x28b322ff0223010c, 0x140ebc284860ff39, 0x24ff02350209023a, 0xbbd815b7ff3b2248, 0xc857dbff02438805, 0xca04bbd9f55bffbc, 0x000802dc260e0368, 0x1c0e027800020298, 0xedff0265c904026a, 0x3d33c658ffbc08ae, 0xa9720cff0273010c, 0x0009bd266f38ffbb, 0x06ff02858a05028a, 0x3db7ced6ff3b93c6, 0x5e5547ff02930012, 0x170ebb10fd75ffbc, 0x010c02ae150e02bc, 0xffbac8a8c9ff02a9, 0x02b7c8043d13b7ac, 0x0733ff3c21d889ff, 0x010c02ce1f0ebc94, 0xff3ca81f08ff02c9, 0x02d7220e3d79c8c4, 0xb2e0ffbcd205b6ff, 0x2a0e0324010c3c84, 0x180502f6000c0304, 0xffbc8fc7caff02f1, 0x02ff010839758e6a, 0x6507ff3b67c493ff, 0x070d0316030b3d1d, 0xff3b979a3fff0311, 0x031f6d053d2411e2, 0xe493ffbc2d1bc2ff, 0x87050348030bbad8, 0x4cff0335c804033a, 0x3d106759ff3c89e7, 0x87eda5ff03430008, 0x060d3db34fedffbc, 0xe9ff03550002035a, 0x3c2885caffbc2484, 0xbc83e0ff0363300e, 0x2a0e3ca44b72ffbc, 0x140b03b4010c03f8, 0x220e038612060394, 0xffbca4da75ff0381, 0x038f050dbbdf5416, 0x4e6cffbb1d3770ff, 0xcb0403a6000c3c09, 0xff3bc82a36ff03a1, 0x03af0009bbb14815, 0x03d0ff3c638926ff, 0x000203d80208bcb7, 0xb0ff03c5010803ca, 0xbb182003ffbcf9ab, 0x384aaaff03d38905, 0x00063d26496dffbb, 0x6cff03e5000203ea, 0xbd0a5dffffbd6c4f, 0x2659cfff03f30002, 0x0108bcf16f8eff3b, 0x8a050420310e0440, 0x2cff040d54050412, 0xbc5ddc5aff3bd4a2, 0xb938d3ff041b0002, 0x00023d7cfe3fffbb, 0x5bff042d00080432, 0xb91e21d3ff3cbd2f, 0x90bd8cff043b3905, 0x010cbc531c19ff3c, 0x0c0b0456cb040464, 0xff3b87d138ff0451, 0x045f000c3cdf5ab4, 0x6528ff3ab371c8ff, 0x2b0504766c05bbf1, 0xff3bc0a33eff0471, 0x047f6d05bc77815c, 0x7c0fff3d23aad9ff, 0x0d0e06c48d053c72, 0xae04051cb20405a8, 0x000c04b85a0404d8, 0x5cff04a54d0404aa, 0xbc0101f9ff3c56c0, 0x1c3fabff04b30002, 0x010c3c9f520effbd, 0x6dff04c5020d04ca, 0x3b03fe41ffbbc5b0, 0x88dda1ff04d30008, 0x080ebce5154bffbb, 0x000904ee060d04fc, 0xffbd682c5aff04e9, 0x04f700093d193291, 0xb22cff3cd05cc0ff, 0x0008050e000cbb41, 0xffbd0b1992ff0509, 0x051700093d02d5a2, 0x18a0ff3dadb99cff, 0x080e0564bc043bc8, 0x030b0536070e0544, 0xff3c5dde69ff0531, 0x053fb404bb796d1c, 0x3edeffbaf715f0ff, 0x0b0e0556060d3d26, 0xffbd2b26ecff0551, 0x055f0011bb0043bf, 0x0017ff3bfeb6b5ff, 0x080e0588c304bd2a, 0x4aff0575bf04057a, 0xbc81add7ff3c8b16, 0xd1f27eff0583000c, 0xc5043dac88c2ff3c, 0x13ff05950009059a, 0x3bba6805ffbc3cfc, 0x2e7df0ff05a3060d, 0x01093c2a6a4aff3d, 0xc70405f401120638, 0xa80405c6bc0405d4, 0xff3ba21969ff05c1, 0x05cf000cbb5021c2, 0x2865ff3b3051edff, 0x0b0b05e6c9043c6e, 0xffbceaa2c3ff05e1, 0x05ef060dbb843237, 0x6931ff3c1455b3ff, 0x00080618b404bb57, 0x78ff06058404060a, 0x3c4a70f5ffbd380f, 0x67a966ff06130002, 0xba04bc158096ffbd, 0x1eff06250108062a, 0x3db0f6acffbd506a, 0x207581ff06330108, 0x140eb8203e19ffbc, 0x010c066001120680, 0x40ff064d060d0652, 0xbbe0263bff3beb40, 0x22046aff065b0e0e, 0x0209bd151403ffbc, 0xaeff066d000c0672, 0x3b86b7f2ffbd1835, 0x389826ff067bbe04, 0xc604bc87186bffbd, 0x000f0696170e06a4, 0xff3d28d2a0ff0691, 0x069f02093cd773e0, 0xeb48ffbbf2d0c7ff, 0x0b0b06b601113bd6, 0xff3b7fc6c0ff06b1, 0x06bf02093c89fcef, 0x517effbb6f8c33ff, 0x020d07db93053c21, 0xa704070b030e074f, 0x900506e65c0406f4, 0xffbb5a086dff06e1, 0x06ef010d3c5e9cf2, 0xb5b5ffbcc88341ff, 0x92050706030bb9d2, 0xff3b185600ff0701, 0x4f0540ff3c9c7435, 0x21030b072fbe043d, 0x4bc8ff071cbb0407, 0x0dbc192bcfff3b5e, 0x3bcb710fff072a00, 0x412b0ebb8efe02ff, 0x31a6ff073c000907, 0x0ebb7bd9c6ff3c5e, 0xbd00187cff074a2d, 0x97050bba021fc3ff, 0x69200e0777910507, 0xe354ff07649f0407, 0x0ebb138fd2ffba0f, 0xbca9449cff077222, 0x89320eba5fb00bff, 0x8370ff0784a20407, 0x123a8b3bddff3bab, 0x3ba1f471ff079201, 0xbb0b0b3dc7076aff, 0xa8000907ad190e07, 0x85ff3b2bb623ff07, 0xff07b61c0e39d9d5, 0x9f75e7ff3c328b6d, 0xc8c70407cd130bba, 0x2cffbac35358ff07, 0xff07d6c304bcdff8, 0x1d3bd7ff392ad706, 0x272a0e086b020dbb, 0xf9b3040807190e08, 0x7133ff07f4940507, 0x0939f77116ffbc2e, 0x3beb4c08ff080201, 0x19030bbb7ef7daff, 0x8d45ff0814000208, 0x0cbb6cbbe5ff3cb5, 0xbc794465ff082200, 0x4bca043903a7f9ff, 0x380009083d030b08, 0x68ff3cdd9fcfff08, 0xff08462b0ebd2c8d, 0x7f84b0ffbd499f48, 0x580002085d2b0ebb, 0x86ffbd7f9931ff08, 0xff0866cb04bc4eac, 0x200b5fff3cb245bc, 0x93140e08b3000fbc, 0x80000c0885940408, 0x42ff3b8bae6fff08, 0xff088ea504bd706b, 0x11e59dff3c13bf40, 0xa0070b08a5180e3a, 0x9dffbd4298fbff08, 0xff08aec4043c6991, 0xf0d21eff3d0d85c8, 0xc9c80408d7cd04ba, 0x5b8bff08c4000c08, 0x0dbb1ccf9fff39ab, 0x3b2a250dff08d206, 0xe99405b8dd5d3fff, 0xf4d8ff08e4000908, 0x0cbbb93254ff3c92, 0x3a3b0c9bff08f200, 0x779505ba874a2eff, 0x1f000d0b3bc6040d, 0x4f200e0993260e0a, 0x21130e092f1c0e09, 0xa0b1ff091c120e09, 0x04bcddfec2ffbb31, 0xbb31ad30ff092a60, 0x4191043cac71d4ff, 0x4981ff093c1d0e09, 0x0bbb838f2effbce1, 0xbc3c676bff094a07, 0x733b013c968e7cff, 0x6027010965340109, 0xfaffba92057fff09, 0xff096e5c043bc3f4, 0xfbd389ffbbbd9fc5, 0x80220e09859e043c, 0x62ff3d54fcc5ff09, 0xff098e08063cc258, 0x9b08a6ff3c10eb84, 0xbb060b09dbb504bc, 0xa81a0109ad290109, 0x58ff3985be4bff09, 0xff09b60002bbe4bb, 0x1faf11ffbca6062a, 0xc8260109cd7905bb, 0xacffbb55bb26ff09, 0xff09d62a0e3b99df, 0x1ac9b0ffbe614213, 0xf1ba0409ff000c3d, 0xa780ff09ec020809, 0x023dbb69f8ff3bb6, 0xbd8ee0d4ff09fa00, 0x11340ebce13b54ff, 0xefefff0a0c2a0e0a, 0x043ca8a5c3ffbd2b, 0x3bc63df5ff0a1ab7, 0xaf2a0ebcd51b8cff, 0x4b63050a6b00060a, 0x387a040a3da2040a, 0x28ff39b1c82eff0a, 0xff0a46060e3aa056, 0x1ef624ffbc8a4f35, 0x5876050a5d010c3b, 0x0aff37b82726ff0a, 0xff0a66170ebaaf61, 0x6940edffbb5c0b05, 0x81020b0a8f1c053b, 0xc000ff0a7c0d0e0a, 0x0fbc720128ffbb93, 0x3b48fde4ff0a8a00, 0xa1010838f1f946ff, 0xd0b0ff0a9cc1040a, 0x06bbd592e7ffb8a8, 0xbc3fd6b6ff0aaa0a, 0xf7c204bb4420e0ff, 0xc9c0040ad77c050a, 0xbb13ff0ac4be040a, 0x123c85b95effba6d, 0x3ce34daaff0ad200, 0xe9050bbc0b79a1ff, 0x5778ff0ae4000f0a, 0x04bbb4cef7ff3c46, 0x3c789175ff0af2c0, 0x1bc304b9259037ff, 0x082b0e0b0d2f0e0b, 0xc2ff3b25ba2dff0b, 0xff0b16300e3d03df, 0x02da01ffbdfbac6b, 0x28070b0b2d130bbc, 0xdcffbb0d3073ff0b, 0xff0b3601113c27b8, 0x1b76d1ff3cf96483, 0xcf6b050c5b7305bd, 0x6b63050b8b310e0b, 0x5800120b5d01080b, 0x67ff3bae8cf1ff0b, 0xff0b660111bb238e, 0x82c502ffbbdc137d, 0x7868050b7d00023b, 0x59ff3bbe7ab6ff0b, 0xff0b860108bc6a0b, 0x984edeff3cf42890, 0xa10c050baf350e3b, 0x06a6ff0b9c01070b, 0x08bd8c2edeff3d29, 0xbb75f990ff0baa00, 0xc102063c4afb48ff, 0x35c8ff0bbc040b0b, 0x02bbf6b739ffbcbc, 0x3c3a80b3ff0bca00, 0x176e05bc3c9ecbff, 0xe9230e0bf76d050c, 0x3b8cff0be400020b, 0x0e3ce99a51ffbc19, 0xbde06297ff0bf224, 0x09130bbc3ae81dff, 0xcc04ff0c0401080c, 0x073a34b86affbcf3, 0xbcab14a6ff0c1201, 0x3bcb04bd81da79ff, 0x28010b0c2d120b0c, 0xf2ffbc598f45ff0c, 0xff0c366f053bcf60, 0xa85be5ff3d9323e2, 0x48190e0c4d220e3c, 0x1fff3b9d18acff0c, 0xff0c566f05bd9454, 0x15f2a2ff3cfda497, 0xa701070cebca043b, 0x79010c0c87070d0c, 0xbe84ff0c74220e0c, 0x043af9b357ffb9ed, 0x3c779a73ff0c82c8, 0x991f0ebb41fd7eff, 0xb092ff0c94c7040c, 0x083ceb6372ffbba0, 0xbd3d4dfbff0ca200, 0xcbc904bb0b7d10ff, 0xb800020cbd1d0e0c, 0x75ffbbcdcdd5ff0c, 0xff0cc6c804398331, 0xa27519ffbad04331, 0xd801080cdd74053c, 0x1dff3da131bcff0c, 0xff0ce6310ebc0d52, 0x8863d1ffbc21cc1a, 0x1377050d330002bd, 0x0074050d0575050d, 0xf0ffbcb96460ff0d, 0xff0d0e2b0ebda47e, 0x27180aff3d2a1a5d, 0x20170e0d257c05bc, 0x4bff3cb25babff0d, 0xff0d2ecd04bc78cb, 0x1f7bb2ff3b12765c, 0x49000f0d5777053c, 0x0148ff0d44cc040d, 0x05bdd5441effbc3e, 0x3d109101ff0d5274, 0x69cc043c083a8aff, 0xb30bff0d6487050d, 0x0e3ad27347ff3b67, 0xbb8a5173ff0d7233, 0xa0000c3b3b06eeff, 0x0f090b0e9b2c0e0e, 0xab01070dcbb3040e, 0x98080e0d9d020d0d, 0xc2ffbb74ec98ff0d, 0xff0da69c043c021e, 0x238f91ff3c0d7136, 0xb896040dbd00023b, 0x18ff3c2c1675ff0d, 0xff0dc690043cc21d, 0xe9c392ffba9170fb, 0xe1030b0def000d3b, 0x1f92ff0ddc1d0e0d, 0x0ebc3cb296ffbd34, 0x3c0816e0ff0dea24, 0x01cd04bb04ab80ff, 0xc1e7ff0dfc0d0e0e, 0x083b5e56feffbb40, 0xbc72dce0ff0e0a00, 0x570107bcae5a2aff, 0x29060e0e370b0b0e, 0x4ca1ff0e24a4040e, 0x053b29dd09ff3c39, 0xbb1bf97dff0e3296, 0x4900113b49bf87ff, 0x10abff0e4496050e, 0x0ebb434f18ff3b8a, 0x3bef40d9ff0e521f, 0x7b9605bc2b76e5ff, 0x6800120e6dc9040e, 0xdcffb97e3ae7ff0e, 0xff0e76080e3b8f57, 0x1a4857ff3c904475, 0x88020e0e8dcd043c, 0xceff3b059f22ff0e, 0xff0e96110e3c3d19, 0x0b76faffbc87bc36, 0xcb043d0166b0ff3c, 0xbc040f19c1040fa5, 0x00080ed0010c0ee7, 0xcdff0ebd000f0ec2, 0x3ac08ec4ffbc1554, 0xa84011ff0ecb040b, 0xb904bc2a2a50ffbc, 0xb8ff0edd010b0ee2, 0xbcb73d38ffbc8f81, 0x0b050bbbfc68f0ff, 0xf896050efd080e0f, 0xdfffbc9dee52ff0e, 0xff0f06bd04bceef6, 0x4de500ff3b01fc55, 0xd70cff0f14010cbb, 0x0b3c51d0d0ff3ca6, 0x080f41060d0f6109, 0xff0f2ec4040f3300, 0x5770efff3b62b8ad, 0xa791ff0f3cc404bb, 0x123c96070eff3b79, 0xff0f4ec7040f5301, 0xd0e536ffbbfa61c5, 0x4c20ff0f5c01073b, 0x0ebcf2918bffbd32, 0x070f77c3040f8501, 0xba5bc160ff0f7201, 0x8000083c352822ff, 0x3eff3c9e5bd6ff0f, 0x040f97c3043c3119, 0xbc25cd98ff0f92c2, 0xa0020ebccb64d5ff, 0x91ffbd2ff116ff0f, 0x0710350b0b3ba5b6, 0x0d0fd1000f0ff101, 0xff0fbe030b0fc302, 0xc5abdbff3b16d349, 0x3c91ff0fcc9605bc, 0x0ebc400740ff3c5e, 0xff0fdecd040fe31f, 0xce0b53ffbc7ac342, 0xfcfaff0fec0002bb, 0x0dbafd2c70ffbd8a, 0x0b1007cd04101506, 0xbc9c0ebbff100203, 0x100112bc295c7aff, 0x00ff3b2d3dbbff10, 0x0e1027cd043c3a28, 0x3c598235ff102206, 0x30140e3ce54644ff, 0x59ff3c9c3c30ff10, 0x0e1059080e3b8d30, 0xff10460002105406, 0x104fcc043c80ea58, 0xee54ff3cb9f2f0ff, 0x123d0e8570ff3c06, 0xff1066140e107400, 0x106f00023d1acc18, 0x4fc3ffbc00e8c0ff, 0x000210860b0ebc45, 0xff3afd41c0ff1081, 0x108f020dbc42305d, 0x8510ff3bd7e230ff, 0x0008000000133c44, 0x0001000003e80000, 0x00000000104c0000, 0x8c0508c100070000, 0xc1040248c7040472, 0x620500a06705012c, 0x6c04003caa04005c, 0xedff00291706002e, 0x3b8ee219ffb9a073, 0x2a007dff0037a504, 0x02083b0755aeffba, 0xb8ff00490108004e, 0xb93ea8e8ffbb0b35, 0x18d110ff00573905, 0x060dbb62dfb1ff3b, 0x000d0072010d0080, 0xffbc2d4c75ff006d, 0x007b1d0ebd2c15ed, 0xe94bff3a465e5bff, 0x070d00920011bb0c, 0xff3ab48c65ff008d, 0x009b6305bbf8e5ba, 0x3cf3ff3c202fbbff, 0x6a0500e8ac04bc3b, 0x9a0400ba040b00c8, 0xff3a009c6dff00b5, 0x00c30008bc3dc3da, 0xa2b6ffb9488eabff, 0x310e00da000d3c41, 0xff3c792138ff00d5, 0x00e3050dbd6057de, 0x6381ff3a90d27bff, 0xbe04010c310e3906, 0x49ff00f9000c00fe, 0x3b21c8d4ffbb58ae, 0x1e66a1ff0107070d, 0xba04bd088394ff3b, 0x0bff0119b804011e, 0x3cb8b9f1ff3b8dff, 0x77b2f3ff0127020d, 0x87053ba39f67ffbc, 0x000c0178c20401bc, 0x1e05014a00080158, 0xff3d1b3164ff0145, 0x015300023b0d8d0b, 0xfa9bffbc1b9606ff, 0x0d0e016a1d0e3bb2, 0xff3c1dc9d5ff0165, 0x0173000fbc834abe, 0x60bcffbbb439ddff, 0x200e019c00093c90, 0xcbff0189170e018e, 0x3cec2cf1ff3b3132, 0x08c9b9ff0197010c, 0x0209bc4e061bff3a, 0x61ff01a9c50401ae, 0xbbc108b7ffbc76a7, 0xaf5dc3ff01b70002, 0x0009bc07bd25ff3b, 0x0d0e01e4310e0204, 0x73ff01d1c20401d6, 0xbc9218e2ff3c23f8, 0x84272eff01df0108, 0x320ebb940a91ff3b, 0xa4ff01f1000801f6, 0x3e9aa85dff3d9f38, 0x5d88aeff01ff340e, 0x060d3d08df1affbc, 0x010c021ac2040228, 0xff3ac95622ff0215, 0x0223000f3cb9d8e2, 0xcb57ff3c107c15ff, 0x0209023a140ebb83, 0xff3b120da8ff0235, 0x0243010cbbc279f3, 0xd11bffbbd1b56bff, 0x00090356190ebcc7, 0x130e0298180e02dc, 0xcb04026a00110278, 0xff3cf8ccb1ff0265, 0x0273060dbd9c2606, 0x59b9ff3944308eff, 0x8905028a060dbcfd, 0xff3bb1fca9ff0285, 0x0293c804bd46a876, 0x4a42ff3bea8635ff, 0x0c0b02bc0208bcd3, 0x30ff02a9390502ae, 0x3c5aabbbffbdd534, 0xd51b29ff02b78605, 0x85053d2d2014ff3d, 0x73ff02c90b0b02ce, 0x3d477b05ffbc9542, 0x149c0cff02d7c804, 0x8305bc3428ccff3d, 0x140e030400120312, 0x20ff02f17f0502f6, 0xbc9ce833ff3be70d, 0xb7324aff02ff0002, 0x0b0bbd07246effbc, 0xffbb1919d9ff030d, 0x0336010cb9bf2c72, 0x0323c80403288505, 0xd615ffbc60fe28ff, 0xc5ff03318905bcf2, 0xbbdfaacbffbc636e, 0x0343c80403488b05, 0xdbd8ff3c9c0ee0ff, 0x4fff03510109ba7c, 0xbcc812dfffbd9f64, 0x03a27b0503e60002, 0x0374230e0382310e, 0xef78c7ff036f7305, 0x060d3d38ae4cff39, 0xff3b048886ff037d, 0x0394000cbc4781ec, 0x78a885ff038f020d, 0x000f3c0184b8ffbc, 0xff3cc3896fff039d, 0x03c6220e3bdee797, 0x03b3cb0403b81f0e, 0xc547ffbd06dc66ff, 0x89ff03c1cc043d42, 0xbdfc8d80ffbd7350, 0x03d32c0e03d80108, 0xc0bdffbc99056aff, 0x51ff03e17d053b7b, 0x3b4fb393ffbc94b7, 0x040e8a05042e0108, 0x03fb230e04000011, 0x236dff3c401f4cff, 0x82ff04093405bc64, 0xbb1aec89ff3bb418, 0x041bc8040420000c, 0xe940ff3ceb4886ff, 0x56ff04298b05bd02, 0x3c8ae6a7ff3dc744, 0x0444830504528405, 0x16ca87ff043f1f0e, 0x310e3b829f99ff3d, 0xff3d8bc962ff044d, 0x04648905bcc9996c, 0x97ed3dff045f010c, 0x8a05bd08d856ffba, 0xff3c98857bff046d, 0x068e8d05bbdef11c, 0x04ef5704057b100e, 0x04a60a0b04c6000c, 0x0493010e04980111, 0x692affbadf667aff, 0x2aff04a1020d3ccc, 0x3d824bc1ff3cbdfe, 0x04b3000f04b80111, 0xb1e0ffbba8500eff, 0x8bff04c14d043b48, 0xbda3d50dff3c7ee1, 0x04dc000804e10002, 0x1c36e0ff04d70112, 0xe0ffbd75ccb0ff3a, 0xff04ea000f3d69b2, 0xea7500ff3d16b718, 0x17010c0537a504ba, 0x04030b0509000c05, 0xd2ffbb7f6c41ff05, 0xff0512070e3b4265, 0x042c30ff3b56191f, 0x249e040529a404bc, 0xc9ffbc1a7753ff05, 0xff0532030ebd555d, 0x1f85c5ffbbb797a2, 0x4db004055bb2043e, 0xb435ff05480e0b05, 0x0ebc84cc5cff3bb6, 0x3be48ebbff055607, 0x6db4043d393471ff, 0x4828ff0568060d05, 0x0bbc59b595ffbaa3, 0xbc1c5003ff057603, 0x0b01123b51a7e1ff, 0xa7b30405c7b40406, 0x94130e0599140e05, 0x57ffbd2724f4ff05, 0xff05a2a804bc8e00, 0x26eeb8ff3c2694c9, 0xb4001105b90008bb, 0x43ffbc6cc83cff05, 0xff05c20a0bbcbff6, 0x87c64effbce78b8c, 0xdd000905ebc704bd, 0x2e89ff05d8c60405, 0x043d221062ff3bc3, 0x3cbc508cff05e6b6, 0xfd010cbbc3e9a9ff, 0x7489ff05f8001105, 0x04bb26955cff3c02, 0xbce64cf5ff0606c9, 0x53b404bb7d492bff, 0x2590040633000806, 0xa788ff0620840406, 0x0ebc0f97d5ffbd25, 0xbd38a9b2ff062e14, 0x4500023c557131ff, 0xd279ff0640020d06, 0x0ebdde2df3ffbcd6, 0xbc600f81ff064e1d, 0x6eb7043cf600eaff, 0x6400080669010806, 0x9cffbd5e5657ff06, 0x3d9f4464ffbe0333, 0x067b000206800108, 0xf5e9ffbb8b103eff, 0xf5ff0689030bbc84, 0x3c0bef23ffbc43c7, 0x0722020d07ae9305, 0x06be400406de030e, 0x06ab200406b08f05, 0x4eebff3c976f90ff, 0x88ff06b9000e3ba8, 0x3c903845ff3d0166, 0x06cb8f0506d0010b, 0xef74ff3c1e38e9ff, 0x18ff06d9a704bc81, 0x3ca270a0ffb9980c, 0x06f4b5040702bc04, 0x7b38d6ff06efa704, 0xb7043b821cafffb9, 0xffbc8bd645ff06fd, 0x0714bd043a0db1dc, 0x25ba02ff070f8f05, 0x91053c02c590ff3d, 0xffbb2b652dff071d, 0x076a070b3bea98cc, 0x073c5704074abc04, 0x039db3ff0737000c, 0xb204bd7cd6e0ffb9, 0xff39e8ff86ff0745, 0x075c9105bb55d0e1, 0xd60361ff0757bf04, 0xc504bb6410f5ff3b, 0xff3b9cadecff0765, 0x078e0002bab20707, 0x077b92050780230e, 0xdd68ff3a8468c8ff, 0xfdff07892a0ebbbf, 0xbb234a3affbc4ba4, 0x079b010c07a00012, 0x2ec7ff3a9a4843ff, 0x7bff07a9010c3b30, 0xb8573268ff39981b, 0x07fa320e0835020d, 0x07cc110e07da1d0e, 0x9e6f23ff07c79405, 0x070b39370c3fffbb, 0xff3c269292ff07d5, 0x07ecbd04bbf74e95, 0x17e4b0ff07e7bb04, 0xbf04bd2f4f66ff3c, 0xff3d4c8a39ff07f5, 0x0815330eba11abba, 0x080b00020810cd04, 0x3810ff3cbb52d0ff, 0x09bcf2711cff3cde, 0xff0822cd04082700, 0x096bb3ffbd6c8d10, 0x9500ff08300109bd, 0x0fbc936a2cffba8d, 0x02085d020b087d00, 0xff084a9405084f00, 0x0fd694ffbd96cb31, 0xffc7ff085894053b, 0x043c3c0456ff3d96, 0xff086a000c086f94, 0xd053f3ff3b97b05d, 0x2d91ff08781f0ebd, 0x04bc1e7c61ffb9d6, 0x0e0893c80408a1cd, 0xba1cae4bff088e14, 0x9c060db9f38045ff, 0xf9ff3b192147ff08, 0x0808b39405b8c73b, 0x3b284bcdff08ae00, 0xbc060d3cce2857ff, 0xb4ff3b2217b1ff08, 0x040d419505bb06d2, 0x0e09e9000d0b05c6, 0x0e0919200e095d26, 0x0e08eb0a0e08f91c, 0x3ad99750ff08e607, 0xf43005bc302359ff, 0xccffbb52bc90ff08, 0x0b090b00083c278a, 0xbc698663ff090609, 0x1484053c63e85eff, 0xc0ffbcd8f8a5ff09, 0x04093d36013afe8c, 0xff092a2301092f4f, 0xc4bf0fffba810d2b, 0xbe75ff09380008bb, 0x043c302d31ffba91, 0xff094a6c04094f80, 0x5a7287ff3c8fc912, 0xef0bff09589e043d, 0x043ac3ec7eff3c9b, 0x0109853c0109a5b5, 0xff09721703097733, 0x0970fdffbaa08774, 0x348fff09803901bc, 0x04ba460511ff3c5b, 0xff09926905099785, 0x17b928ffbd29f36a, 0xbccdff09a0310ebe, 0x0cbce5e25bff3b84, 0x0b09bbb80409c900, 0x3c709c79ff09b603, 0xc40506bc5c03a5ff, 0xb9ffbc3b8d04ff09, 0x0e09db310ebd385d, 0xbd1abe5eff09d62a, 0xe4320e3ccda72dff, 0xe5ffbd50b2b4ff09, 0x060a792a0e3c610c, 0x040a1553050a3500, 0xff0a026e040a0772, 0xde7a43ff391e2529, 0xb63aff0a100012b9, 0x053bd273c7ffbafa, 0xff0a22a1040a2755, 0xa076baffbbff2fe9, 0xef6dff0a30010c3a, 0x06b97040b5ffba09, 0x0d0a4b79040a5902, 0xbc62dc3dff0a4602, 0x54030bbb93470eff, 0x11ffbc309309ff0a, 0x0e0a6b0306bce845, 0xbbbfce73ff0a661e, 0x74170e3a37df7bff, 0xe8ff38a35985ff0a, 0x120ac1c2043b309d, 0x040a932b0e0aa100, 0x3aac1121ff0a8ea9, 0x9cbb043c987605ff, 0xa5ffbc7a2f46ff0a, 0x050ab33f053cd9f0, 0xb9d40a3cff0aae3b, 0xbc4305bc21a8a2ff, 0xddff3c4659d9ff0a, 0x0d0ae5c304ba45fd, 0xff0ad2320e0ad706, 0x2de8a3ff3c50a75f, 0xf0d8ff0ae00012bc, 0x0bbdf63de2ffbc24, 0xff0af201080af710, 0x064cafff3c1b9d12, 0x5157ff0b00330ebb, 0x05bdac2abcff3cdb, 0x0e0b996b050c2573, 0x0e0b352b0e0b5533, 0xff0b2261050b2722, 0xc75b2fffba3601c0, 0xbb30ff0b30030bba, 0x0eba782441ff3bb5, 0xff0b4201120b472c, 0x019b5fffbe07edf2, 0x6dd6ff0b502f0ebb, 0x0ebb4325dcff3c9e, 0x0d0b6b010b0b7936, 0x3d91789bff0b6602, 0x740008bd9148b4ff, 0x8bffbbb5f015ff0b, 0x080b8b030b3bd53d, 0xb8d62be6ff0b8602, 0x94000c3cd4123fff, 0x52ffbcec2e76ff0b, 0x050be16e05bba9da, 0x020bb3280e0bc16d, 0xbc1eca5aff0bae00, 0xbc310e3cc3fe16ff, 0x8fffbc845ea3ff0b, 0x070bd3130b3c39de, 0x3d0f9cd5ff0bce01, 0xdc010cbc964ffdff, 0x1affbd7952c4ff0b, 0x0b0c05cb04bcdb1a, 0xff0bf2010b0bf712, 0xbaa3f2ffbc43cdc3, 0x6d1cff0c006f053b, 0x0e3c9785e3ff3d84, 0xff0c12260e0c172a, 0x61c94dffbbeae870, 0xc74dff0c200b0bbd, 0x043c91f9a2ffbb15, 0x0e0c7101070cb5ca, 0x040c4300020c511c, 0xbbf6f8d6ff0c3ec9, 0x4c000c3ba1ee4fff, 0x0effb9efc625ff0c, 0x050c631d0e3bbd12, 0xbdb04384ff0c5e7f, 0x6c200ebcb84ba0ff, 0x8cff3cab2e20ff0c, 0x040c95c9043a84c8, 0xff0c8200080c87c7, 0x348a8aff3bc710bc, 0x3d9fff0c907505bb, 0x053a27cf56ffbbb7, 0xff0ca201080ca774, 0xfe60b3ff3d911329, 0xa227ff0cb0330ebb, 0x0cbd98e0ebffbc12, 0x0e0cdd000c0cfd01, 0xff0cca77050ccf2c, 0xa70d78ff3be0db53, 0xd5b8ff0cd80208b9, 0x0b3cd7c5e2ff3ae7, 0xff0ceacb040cef10, 0x6fde3aff3b8635f4, 0x4b78ff0cf81d0ebb, 0x0e3c687240ff3a87, 0x0e0d131d0e0d2128, 0x3b79ec3cff0d0e1c, 0x1c0108bc57ddd5ff, 0x1aff3c9091e3ff0d, 0x0b0d330207bc36b2, 0xbc8dee3eff0d2e0b, 0x3c030b3c1b9f88ff, 0x24ffbb24ef32ff0d, 0x0e0e6a000c3cbd5a, 0x040dd9090b0e652c, 0x0d0d7501070d95b3, 0xff0d62030e0d6702, 0xc7974affbb909170, 0x7a74ff0d7001123b, 0x023bf6f6c9ff3add, 0xff0d8299040d8700, 0x9e3edcff3c2957cc, 0xb1ebff0d9099043c, 0x0d3bdf4b22ffba6a, 0x0b0dab1d0e0db900, 0xbd221c6aff0da603, 0xb401073c071160ff, 0xdbffbb647ed0ff0d, 0x0e0dcbcd04bc9127, 0xbb2d7b53ff0dc60d, 0xd400123b481b16ff, 0xfdffbc498475ff0d, 0x0b0e210107bc9591, 0x040df3080e0e010b, 0x3a5e11f5ff0deeca, 0xfc120e3bd10a7eff, 0x9bffbbbc34feff0d, 0x0e0e131f0e398380, 0x3b6ed870ff0e0e14, 0x1c00113c13e261ff, 0x65ffbd1229dcff0e, 0x040e459605bc1a51, 0xff0e32c6040e37ca, 0xcba3bbff3b5bacbc, 0xe8c8ff0e40cb04ba, 0x0e3c21c59cff3d11, 0xff0e52020e0e5708, 0x2952eeff3b4571f9, 0xeea7ff0e60110e3c, 0xff3bfb0955ffbc88, 0x0f66cb043ce8ec08, 0x0eb1010c0edac304, 0x0e8c050b0e91000f, 0xa2d120ff0e87060d, 0x98ffbce39488ffbb, 0x040ea39605bd2495, 0x3a8e28f3ff0e9ebd, 0xac030bbbe51289ff, 0xa0ffbc94025aff0e, 0x050ecc050bbb6923, 0xff0ec2010b0ec796, 0xa04ae5ffbc39f2c4, 0x0011bce523bcffbc, 0xffba9ed000ff0ed5, 0x0f22050b3c3cd588, 0x0ef4ca040f020008, 0xcfa965ff0eef020b, 0x170e3a7f07e4ffbb, 0xffbcc35324ff0efd, 0x0f14070e3a236072, 0xc70b39ff0f0fc904, 0x020bbcfaaee0ff3a, 0xff3b91efb5ff0f1d, 0x0f46010e3c9054a9, 0x0f3301070f38090b, 0x93a8ffbbb2df15ff, 0xdbff0f4100083c7c, 0x3c1f6386ff3c8e85, 0x0f53070e0f58c904, 0x38f4ff3bc33a92ff, 0x88ff0f610112bbc6, 0xbbde8a0eff3c9cff, 0x0fb200080ff6010c, 0x0f8401120f92050b, 0x97fff0ff0f7fcd04, 0x9605bd2c35acffbc, 0xff3b7a81efff0f8d, 0x0fa40002bc78f595, 0x7cb6d1ff0f9f230e, 0x1d0ebd3f5b02ffbb, 0xffb9762663ff0fad, 0x0fd6000f3d33f840, 0x0fc301070fc80d0e, 0x1d40ff3c1c4b80ff, 0x20ff0fd1030b3cf4, 0xbc9b2a20ffbc33a5, 0x0fe300110fe80b0e, 0x9908ffbcc66230ff, 0x44ff0ff10012bd27, 0xbc24eeefffbbb9fb, 0x101e0b0e1023cd04, 0x100b00021010060d, 0xa0f5ffbcb367d4ff, 0x1aff1019060ebd2d, 0xbc15bddbffbcdbd7, 0x470112bc40c998ff, 0x3400021039001110, 0x66ffbb0ee400ff10, 0xff10420002bc1c9d, 0xd4aff5ffbc714440, 0x00133c9ed8d0ffbc, 0x03e8000000080000, 0x11bd000000010000, 0x0007000000000000, 0xc704044e8c0508c1, 0xbb040111c104022d, 0xb004005cb20400a0, 0x5c05002e6105003c, 0xffb9cb97baff0029, 0x0037ac043b104e25, 0x08dfffb6ab5c03ff, 0x000c004e040d3b2e, 0xff3ce56c0bff0049, 0x00570c0bb977f6d5, 0xae4dffbc419d2dff, 0x7f050080b5043b15, 0x06ff006d7e050072, 0xbc6da695ffbb4601, 0x95c076ff007b8b05, 0x89053ca107c8ffbb, 0xc1ff008d000c0092, 0x3c09f45aff3b3fa9, 0x0f08eeff009bb904, 0x0209bb484a13ff3c, 0xbc0400c8070d00e8, 0x34ff00b5001200ba, 0xbbc68e8bff3b5515, 0x5ec05cff00c30011, 0xbc04b9debfcbff3c, 0x43ff00d5000800da, 0x3ca9129cff3dfb02, 0x3a6cb0ff00e30108, 0x2e0ebc30b566ffbd, 0x080e00fe8005010c, 0xffbd351aabff00f9, 0x01070002bc689742, 0x21f2ff3bf58398ff, 0x05be755b76ffbc15, 0x05015d0b0601a16e, 0x0e012f5a05013d6d, 0xbd005a80ff012a32, 0x386305bb377b76ff, 0xc1ff3c6d423dff01, 0x08014f2b0ebc1319, 0x3e3a9658ff014a01, 0x58010c3d484769ff, 0xa4ffbb62fa80ff01, 0x0801810002bd4433, 0xff016e000f017300, 0x0f91e2ff3cd2e23a, 0x9ac8ff017c0a053c, 0x0c3ba1aad3ffbc3a, 0xff018e0c06019300, 0x5df2a4ff3cd0937d, 0x56aaff019c1105ba, 0x0e3b6033a7ff3c91, 0x0401c9700501e931, 0xff01b66f0501bbc5, 0xb76864ff3dba219e, 0xfacaff01c4030b3c, 0x0ebcb60021ff3ccf, 0xff01d6730501db20, 0x1fdf41ff3e156323, 0xf09cff01e4060d3b, 0x0ebba95c0affbaf3, 0x0801ff060d020d32, 0x3d599c5eff01fa00, 0x08030b3e09da4eff, 0x65ffbbeff0c5ff02, 0x0c021f360ebcf9b3, 0xbc2bf4e7ff021a00, 0x28010b3a89345eff, 0x82ff3cf944c4ff02, 0x090332190ebd16d0, 0x0e027d180e02c100, 0x04024f0012025d15, 0x3d9b3d9eff024ac8, 0x5888053c134d83ff, 0x5cffb90d5cdcff02, 0x0c026f060dbd627b, 0xbbfcba9dff026a00, 0x78c8043c5fb653ff, 0x73ff3bd31262ff02, 0x0b02a10208bcde9e, 0xff028e3905029314, 0x29dc62ffbdbfe228, 0xcb9fff029c86053c, 0x043d215346ff3dbf, 0xff02ae001202b3c8, 0x8b5f16ff3c2e9abb, 0x696aff02bc86053d, 0x05bc760a03ff3c6a, 0xff02ce060d02ee83, 0x02e00e0eba9f4c47, 0xd356ecff02db0209, 0x070dbc7b6152ffbc, 0xffbce78a24ff02e9, 0x0312010cbc377f73, 0x02ffc90403048605, 0x4bbcffbc8fb441ff, 0x29ff030d070dbd34, 0xbc9e20eaffbbcdae, 0x031f010903248b05, 0x408cff3d69da58ff, 0x0eff032d02093bfa, 0xbc695eddffbd34c9, 0x037e090b03c20002, 0x03501806035e010c, 0x1b3aa4ff034b0111, 0x000cbb0a400dff3c, 0xffbd6da124ff0359, 0x03708a05bbdb0280, 0x5d4a16ff036b0008, 0x00123cf879ebff3c, 0xff3d667411ff0379, 0x03a27b053d80c53a, 0x038f230e03940206, 0xbc68ff3cb7fb86ff, 0xc0ff039dcb04bbcb, 0xbb9fcaf9ff3c84e9, 0x03af070d03b4220e, 0x351cffbd57faf1ff, 0x5bff03bdc9043caa, 0xbb3419baffbc9e94, 0x03ea8a05040a0108, 0x03d7230e03dc0011, 0x5317ff3c2ce8f1ff, 0x08ff03e53405bc4d, 0xbb0b6e7fff3ba216, 0x03f7310e03fc0009, 0x6b49ff3da29e86ff, 0x43ff0405010cbbdc, 0x3a3494b9ffbcc754, 0x0420000f042e8505, 0xba85d2ff041b0006, 0x7905bcbb187effba, 0xff3a8d32d4ff0429, 0x0440010c3c47fdbf, 0x17b537ff043b280e, 0x030bbb3a19b2ff3c, 0xff3cd14a47ff0449, 0x068e8d05bcdd4cf9, 0x04e6b20405720d0e, 0x04829b0404a2b004, 0x046f7e040474010c, 0xfc32ffbb23b4c6ff, 0x05ff047d01113b8e, 0xbd2d9e02ffbbfaa8, 0x048fa2040494a304, 0x4baaffbba0d805ff, 0x58ff049d0e0bbd46, 0xbb782913ff3ba67b, 0x04b8060d04c6070e, 0x53d01aff04b30009, 0xb1043d070554ffbd, 0xff3dca7f00ff04c1, 0x04d8000c3c3af293, 0x0fb5deff04d30008, 0x00093cc67607ffbd, 0xff3d93179fff04e1, 0x052ebc043a7f6100, 0x05000109050e000f, 0x2d77caff04fb030b, 0x030b3c4e4f76ff3d, 0xffbd2c37c9ff0509, 0x0520060d3badc558, 0xa4eeddff051b0109, 0x00123bddcbf0ffbb, 0xff3b925f05ff0529, 0x0552c304bca491de, 0x053fbf0405440a0e, 0xe31eff3c77f3ceff, 0x56ff054d0208bc68, 0x3c42d8b4ff3d9ffb, 0x055f080e0564c804, 0xe5abff3b36f8fbff, 0xd1ff056d0112bc4f, 0x3d6e5dfeff3c40e0, 0x05be011206020109, 0x0590bc04059ec704, 0x1d4bd3ff058bba04, 0x000cbbde9f18ff3a, 0xff3af7cb6bff0599, 0x05b0c9043c4da300, 0xde04d5ff05ab140b, 0x001138e3ec5fffbc, 0xff3c0377bcff05b9, 0x05e2b404bb637f8f, 0x05cf000c05d40008, 0xed5affbb84bb50ff, 0x57ff05dd00023c47, 0xbbf23192ffbd3ba5, 0x05ef050b05f4ba04, 0xb0b1ffbd58662fff, 0xa7ff05fd01083c22, 0xb801cb8fffbc038e, 0x062abd04064abe04, 0x0617af04061c000c, 0x0c79ffbc87080cff, 0x65ff062501123aff, 0x3d2c487bff3aaf43, 0x0637030b063c000f, 0x95d5ffbd5ef809ff, 0x76ff0645060d3bea, 0xbcba85cbffba86b9, 0x0660140e066e0209, 0x8d7d3eff065b0012, 0xc404bc98bc85ff3a, 0xff3ce8dfd8ff0669, 0x068001123a2512cf, 0x720b7fff067b000c, 0x0b0b3bbc01fdff3c, 0xff3b72a592ff0689, 0x07a59305bc69ebd5, 0x06d5030e0719020d, 0x06b0030b06b54004, 0x29d5f2ff06ab3904, 0x40ff3ce8ebc0ff3c, 0x0406c7010b3b0cb1, 0x3b22a97dff06c265, 0xd0a704bce08b31ff, 0x20ffb988d59eff06, 0x0b06f9be043c9232, 0xff06e6bb0406eb03, 0x14a39aff3b459257, 0x7b97ff06f4220ebc, 0x04bc4073ceffba93, 0xff07069105070bc6, 0x87f315ffba348f3f, 0x7630ff0714c7043c, 0x0b3b6d4b23ffbc90, 0x040741bc04076107, 0xff072e000c073357, 0x638e30ffb8ece6e1, 0x3a12ff073c260ebd, 0x08b9b34140ffb9cc, 0xff074e050b075302, 0xba0a76ffba309fa2, 0x77e0ff075c000f3b, 0x053bacd282ffbc95, 0x0807772d0e07858e, 0x39c452f4ff077201, 0x8000023ae924daff, 0xb2ffbd0895ceff07, 0x050797000f3c95a7, 0x3b9eee66ff079291, 0xa0c604bc16b79aff, 0xa7ff3a07cad3ff07, 0x0b0835020dba28ec, 0x0907d11d0e07f102, 0xff07bec00407c300, 0x823cd6ff3ac9156d, 0x5e00ff07cca7043c, 0x0ebc65a751ff3b53, 0xff07debf0407e322, 0xe17a0dff3dccbbf7, 0x10bcff07ecbc043b, 0x0c3bf8ac15ffbcd2, 0x0408070a0b081500, 0x39d00d74ff0802c7, 0x10080e3d028f7bff, 0x05ff3b69537aff08, 0x0e0827b304bc7709, 0x3bd268e9ff082201, 0x300002bc1913bdff, 0xe5ff3c326777ff08, 0x0b087d000f3920b3, 0x05084f0002085d02, 0xbd87b6e0ff084a94, 0x5894053b01746fff, 0x13ff3d87e636ff08, 0x0e086f2b0e3c2937, 0xbac329dfff086a1f, 0x780002bc8a7b53ff, 0xeeff3d2de2e6ff08, 0x0408a1cd04bc6a42, 0xff088e090b0893c9, 0x4d12c7ff398816fa, 0xd3c2ff089c9405ba, 0x05b94c075dff3bc5, 0xff08ae000908b394, 0xaf178dff3c748640, 0x1825ff08bc000cbb, 0x0cba7096caff3a2a, 0x060b0596040d4101, 0x07095d021109e915, 0x0e08f96805091901, 0xff08e6750408eb18, 0xd409ffff39c59b61, 0x9e60ff08f494043b, 0x053b5abf50ffba3b, 0xff0906000f090b6f, 0xbbf6a5ff3c12c167, 0xbf7fff09140b0bb9, 0x04bb38b590ffb8fe, 0x04092f8905093d7f, 0xba0695ceff092a75, 0x38000f3a97ae4bff, 0x14ffbc1dbbdeff09, 0x0b094f02073bb816, 0x36f9fde5ff094a0d, 0x589104ba55f1eeff, 0x96ffbb13dcdaff09, 0x1209a50108ba91f0, 0x0409771205098502, 0x3af85c9fff09723b, 0x806a043cb1ed01ff, 0x53ffbd0c4185ff09, 0x05099700023ba1fc, 0x3c38b68cff099261, 0xa02504bc94f088ff, 0x70ffbb1ea8dbff09, 0x0509c9030b3d3905, 0xff09b6170e09bb06, 0xcc4f86ffba9dec49, 0xbd6cff09c45e04bc, 0x05bc51c139ffbd92, 0xff09d60d0609db0b, 0x4c321aff3d7a17f0, 0x428cff09e4070e3c, 0x04bcd42448ffbd20, 0x0c0a350d0e0a7984, 0x040a0776040a1500, 0xbafcdc46ff0a0267, 0x101806bb9cb8d5ff, 0x3cff3b9126d9ff0a, 0x050a27000ebbeb6c, 0x3accb203ff0a2204, 0x30030bbc2fd00cff, 0xcaffbbceda85ff0a, 0x0e0a596f04bcac27, 0xff0a46000c0a4b0f, 0xd44e49ffbbc02575, 0x29dfff0a54130ebd, 0x0d3c4b439dff3d27, 0xff0a66000c0a6b03, 0xa167b4ffbd12887a, 0x492dff0a74030bbd, 0x06bdd552deffbd62, 0x0f0aa112050ac117, 0xff0a8e010d0a9300, 0xef442dff3990acd0, 0xfda1ff0a9c060e3c, 0x06bcb5e905ff3aac, 0xff0aae00020ab316, 0x5fd3c6ffbd127d19, 0xe49aff0abc010ebc, 0x04bcff5d06ff3bfd, 0x050ad7000e0ae585, 0x3c9cb7c9ff0ad204, 0xe0000cbcd27405ff, 0xa4ff3d39a0d2ff0a, 0x060af7030b3c2796, 0x3c93a129ff0af218, 0x000111bbbeff96ff, 0x0cffbb20b3d5ff0b, 0x110c250b0bbcf808, 0x120b55c7040b9901, 0x0b0b272f030b3500, 0x3b20ca08ff0b220a, 0x303705bc942a87ff, 0x1dff3c3043c2ff0b, 0x0d0b470002bac696, 0xb9f854fcff0b4206, 0x50270e3c120620ff, 0xefff3a3287bbff0b, 0x040b797f05bb0001, 0xff0b6602080b6bc8, 0x9b0870ffbc862cce, 0xe923ff0b742a0e3b, 0x0e3bd38d53ffbb83, 0xff0b8689050b8b25, 0x0ce0abffbbc53ca8, 0x38ddff0b948105bb, 0x073b27d446ff3cd8, 0x040bc112050be101, 0xff0bae000f0bb397, 0x81282dffbd7d5258, 0x0b0dff0bbc0008bb, 0x043b02e599ffbc91, 0xff0bce270e0bd39f, 0x5dd850ff3bf31be8, 0x8fa2ff0bdc330eba, 0x0bbb55b7ddff3b10, 0x0f0bf703050c0503, 0xbcc4d812ff0bf200, 0x0000023bdd6bc4ff, 0x22ff3bf990cfff0c, 0x0e0c17070b3b0e4e, 0xbc6b8611ff0c1207, 0x20a504bbf367caff, 0xceff3a12c864ff0c, 0x040cb50d0bba126f, 0x080c51000c0c71b0, 0xff0c3e00020c4301, 0x2744acffbcc6d864, 0xcce8ff0c4c0a0ebc, 0x11bd0e5e34ffbc37, 0xff0c5e070d0c6300, 0xb68e23ffbd86bb45, 0x8c5aff0c6c060d3b, 0x0dbba5d50affbd4b, 0x0e0c87bd040c9506, 0x3c142f2fff0c8208, 0x90c704bda23b00ff, 0x82ff3cdae2fcff0c, 0x0d0ca70012bcd53b, 0xbd046c63ff0ca207, 0xb00c0bbbcb7edbff, 0x0eff3d12689aff0c, 0x0e0cfd070d3b4a23, 0x040ccf1f0e0cdd2e, 0xbb2e3971ff0ccabd, 0xd85005392219eeff, 0x98ff3a63c59bff0c, 0x0e0cef0112badb75, 0x3c730b0bff0cea31, 0xf85f05bc527aadff, 0x16ffbb9ebb89ff0c, 0x080d21230ebd010d, 0xff0d0e080e0d1300, 0x1c6bc9ff3cd67fc6, 0x26c3ff0d1c100bbc, 0x043c7b440aff3d23, 0xff0d2e2a0e0d33ba, 0xa7cb86ffbdfd9197, 0x56d6ff0d3c87053b, 0x053e2104b8ff3c41, 0x0e0e6519050f815c, 0x040d950f030dd932, 0x040d671a040d7553, 0xbabadd6dff0d620a, 0x700303ba510a48ff, 0xd0ffbadd22cfff0d, 0x080d87800438eb93, 0x3992ddc8ff0d8201, 0x909904bbbdff08ff, 0xb1ffbc9c3ca0ff0d, 0x040db9170ebd4f3d, 0xff0da602080dabc0, 0x93f461ff3b0b2d50, 0xb144ff0db4020dbb, 0x04bb5b73c3ff3c5c, 0xff0dc600080dcbcb, 0x195ecdffbb14f016, 0x69bbff0dd40b0b3c, 0x0b3d23854fffbd03, 0x040e0105050e210b, 0xff0dee03060df36f, 0x14f255ff3c0e3dcd, 0x0f3dff0dfc0a03bb, 0x08bc14d18dffbcd7, 0xff0e0e12050e1301, 0xabfff2ff3a9435cc, 0xc880ff0e1c3901bc, 0x063ce183abff3b48, 0x040e3700060e4507, 0xbb4059fbff0e3299, 0x40b604bcc7ef0fff, 0xcbff3c90b088ff0e, 0x040e57bc04b9e41a, 0x3c11858cff0e5297, 0x60340ebd232e41ff, 0x00ff3d605348ff0e, 0x040ef59104bd2ef3, 0x020e91070d0eb18b, 0xff0e7e040b0e8300, 0x8c9688ffbaab6247, 0xeda2ff0e8c020e3b, 0x043c615405ffbbc6, 0xff0e9e01070ea376, 0x9c4b41ffbb296892, 0x7d77ff0eac22033b, 0x023d03ab00ff3b90, 0x040ec741010ed500, 0x3bb5621cff0ec290, 0xd02a033cd411beff, 0xd1ffbd22bc0eff0e, 0x080ee70112bc15f2, 0x3c851d94ff0ee202, 0xf0220ebc6ae971ff, 0x78ffbb9d2555ff0e, 0x0e0f3dcb043c7b59, 0x0e0f0f3f010f1d1c, 0xbcf19488ff0f0a17, 0x1848053cec2240ff, 0x32ffba683128ff0f, 0x020f2f1e0e3befc9, 0xbd7c73a4ff0f2a00, 0x38210e3b961e44ff, 0x00ff3c1452e0ff0f, 0x080f610b0bba192f, 0xff0f4e1e050f5300, 0xb6ddabffbcc9f888, 0xe5f2ff0f5c02073a, 0x053d2968daff3bbe, 0xff0f6e01080f7352, 0x5a8701ffbc5da06d, 0xa9c4ff0f7c02073c, 0x0ebd3b0b66ffbba6, 0x071015660510a117, 0x050fb1070d0fd102, 0xff0f9e02080fa364, 0x93bfa3ff3abe8163, 0x681bff0faca204bc, 0x0e3d02afd1ff3bef, 0xff0fbe080e0fc30d, 0x29ea5dff3c7c1a15, 0x333fff0fcc0e0ebd, 0x0ebc9a908fff3d67, 0x110fe70a0e0ff50b, 0xbca278fbff0fe200, 0xf0060d3aa8cf19ff, 0xe9ffbdde02fdff0f, 0x1210070b0b3d41d5, 0x3c55aee3ff100201, 0x10140bbc1da2f9ff, 0x9cffbd910044ff10, 0x07105d75053be64b, 0x04102f160e103d02, 0x3ace6b63ff102aa8, 0x38c0043c006d84ff, 0x70ffbc779fdfff10, 0x0d104f090e3bfca4, 0xbcf492daff104a06, 0x580b0bbc32900eff, 0xe2ff3b8a1b4aff10, 0x0d10810b0ebcaecb, 0xff106e0a0e107306, 0x877667ffbc63db84, 0x3141ff107c070dbd, 0x0b3cc100f1ffbae9, 0xff108e090b10930b, 0xf98416ff3c118e94, 0xd976ff109c0012ba, 0x0bbcb32c06ff39a3, 0x0e10ed060d11310a, 0x0510bf940410cd28, 0x3c2d1158ff10ba61, 0xc8260ebb9c8ff0ff, 0x8dffbc3e540cff10, 0x0710df0112bd3cb7, 0x3c03d7ecff10da01, 0xe80207bc0ba44cff, 0x03ffbcad8e96ff10, 0x0d111100123b71aa, 0xff10fe1d0e110307, 0x23b44effbcdbbe16, 0xb884ff110cb904bc, 0x0ebc672724ff3cc5, 0xff111e060b112323, 0x96f4a5ff3cc3f741, 0x7f70ff112cc5043d, 0x0e3c452820ffbc66, 0x041159bf0411791a, 0xff1146aa04114bac, 0xdb5f78ff3c790bfe, 0x3d0dff1154b304bc, 0x0e3d1e436eff3d70, 0xff1166c204116b18, 0xa38358ffbe2ba50c, 0x757eff1174c004bc, 0x0e3c90839bffbd24, 0x04118f1c0e119d1d, 0xbc10bfc5ff118ab7, 0x9886053d43e525ff, 0xc5ffbd4d2f7aff11, 0x0e11af200ebc0466, 0xbca6b430ff11aa1e, 0xb8220e3d76047aff, 0x45ffbc8451e7ff11, 0x08000000133bcee3, 0x01000003e8000000, 0x000000117e000000, 0x0508820007000000, 0x040248c704047b8c, 0x0400a0bb04012cc1, 0x05003cb004005cb2, 0xff00295c05002e61, 0x01dfc8ffb9b73cb6, 0x30b1ff0037ac043b, 0x0d3b1ca168ffb69a, 0xff0049b104004e03, 0x80b131ffbbed1abc, 0xfd19ff0057140b3c, 0x043bb24042ffbc2e, 0x0e00727f050080b5, 0xbb74b22eff006d23, 0x7bb404bb196e26ff, 0x30ffba192d1dff00, 0x0c00928905bc7f78, 0x3b896a05ff008d01, 0x9bb8043c393e69ff, 0xa6ff3c200de5ff00, 0x0500e8880539c5a7, 0x0400ba390500c87f, 0x3b5d9b8eff00b5be, 0xc3010cbb53d148ff, 0x99ffbaa912f3ff00, 0x0c00da0008bc261b, 0xbb818a60ff00d501, 0xe3050b3b2b09e6ff, 0x83ffbbb028c8ff00, 0x04010c00023c21ed, 0xff00f9000c00febe, 0xae34f0ff3c06182d, 0xdc68ff0107170e3c, 0x0cbc20bc3aff3c38, 0xff0119060d011e01, 0x93b516ffbb152dba, 0xb26cff01270b0b3b, 0x05bd5e57abff3cb4, 0x080178650501bc6e, 0x05014a0108015802, 0x3b756d03ff014560, 0x5361053d03324aff, 0xe9ffbc06529aff01, 0x04016a61053c25c6, 0xbcdb1868ff0165c5, 0x73130b3b91fed0ff, 0x1aff3c9d9a6aff01, 0x05019c6d053d9081, 0xff01890208018e67, 0x8de7b9ffbd7b0ca8, 0x02beff01972a0ebb, 0x0e3bde0c6dffbc86, 0xff01a9c20401ae2b, 0xe44d2eff3dad001c, 0x47c0ff01b7010cbc, 0x0ebd3094e0ffbb4c, 0x0401e47005020431, 0xff01d16f0501d6c5, 0xa51124ff3da784a7, 0x2e8bff01df030b3c, 0x0ebca3cce4ff3cbb, 0xff01f1730501f620, 0x0fe288ff3e0672d3, 0x8bc4ff01ff060d3b, 0x0ebb986c7effbadb, 0x0b021a0011022832, 0xbbd7f248ff021503, 0x230008bce0bb0bff, 0x8eff3d43d98bff02, 0x0e023a01093df822, 0xba6b51e9ff023536, 0x438105bc8b4021ff, 0x70ffbd4a3240ff02, 0x0e0368ca043cc183, 0x080298070d02dc23, 0x09026a8b05027800, 0x3b40a943ff026500, 0x73c904bbd4e055ff, 0x0dffbcc24767ff02, 0x0e028ac8043d023d, 0x3c2ed8d2ff028522, 0x93c9043d4b767eff, 0xebffbc12a9a8ff02, 0x0b02bc00093c2468, 0xff02a96d0502ae03, 0xdcb2e7ff3da6e54e, 0x89feff02b70208bc, 0x0ebcc863d1ffbd98, 0xff02c9c80402ce1f, 0x7830c4ffbca79df4, 0xe3aaff02d761053b, 0x0d3cf9162bff3d1d, 0x050304050b032407, 0xff02f1420502f682, 0xa77c79ff3b07150e, 0x3bc1ff02ff340e3c, 0x023df0c964ffb810, 0xff0311280e031600, 0xe3607cffbcdffcd0, 0xfdf8ff031f8a05bb, 0x053d6ace0cffbb05, 0x05033a0e0b034883, 0x3dd6b9beff033537, 0x4329053d0d4b2dff, 0x04ff3da562f8ff03, 0x0b035a00083c09db, 0xbb63a220ff035503, 0x63050b3cb4d130ff, 0x80ff39831320ff03, 0x0503ef8205bc63b3, 0x0503947b0503b481, 0xff03815405038679, 0xdb3b7bff3b5a3044, 0xdce0ff038fcd04bb, 0x08bb1bffcdff3db7, 0xff03a1000203a601, 0x866134ffbd0efa68, 0x98e6ff03afcb04bd, 0x04bc43c4faff3c8d, 0xff03c10d0e03cfcb, 0x03ca170e3dc453cc, 0xc3c2ffbd8fe695ff, 0xcc0403e10108bdc7, 0xffbd8c5a1bff03dc, 0x03ea010c3c2b57ec, 0x8c4fff3b3cc332ff, 0x010c043784053dac, 0x83050409310e0417, 0xffba7548efff0404, 0x041202083d75bb94, 0x8bd9ffbcadf463ff, 0x8305042900083bb9, 0xffbcd5da5bff0424, 0x04320b0b3cb3328b, 0xe6e8ff3ccf2329ff, 0x010c045b310e3db1, 0xbcff04488505044d, 0xba5b4d51ffbc9651, 0x3575c9ff0456070d, 0x00083dcd059cffbc, 0x16ff0468320e046d, 0x3c0bdc5fff3d16e4, 0xecff6fff04760b0b, 0x8d05bc3a98ebff3b, 0x1d0e059f110b066a, 0x100b04cfbc040513, 0xb90404a1010c04af, 0xff39aa0b04ff049c, 0x04aa070dbbc8dc30, 0x5d3affbb77e322ff, 0xa20404c1060d3da6, 0xffbc01572eff04bc, 0x04ca000e3a41fee6, 0x8adaff3b22bcc5ff, 0x010c04f3bf04bde1, 0x06ff04e0010904e5, 0xbc17e69eff3c96a8, 0x5025bbff04ee050b, 0xc0043d9c4515ff3c, 0xcaff05000e0e0505, 0xbd0d3657ffbd7e2c, 0x7edae6ff050ec204, 0x220e3b785147ffbc, 0x060d053bb304055b, 0xd1ff0528000f052d, 0x3cbb46cfffbb6dfe, 0x19b03fff05361f0e, 0xba04bcf2773bffbd, 0xb4ff0548000f054d, 0xbd264d9cffbda9ea, 0x439104ff0556000f, 0x070dbcccabe6ffbb, 0x230e05710d0b057f, 0xff3b2c883dff056c, 0x057a060dbb3c9a7e, 0x2e0fff3c088053ff, 0xc5040591230e3db1, 0xffbcfbe7b6ff058c, 0x059a0002bce09300, 0xf748ffbc48d275ff, 0x070d05f000123bb1, 0x000905cb020805e2, 0xa2ff05b8070e05bd, 0x3bb232e9ff3c7cfe, 0xecf053ff05c6bc04, 0x0d0e3c1be45fffbb, 0x34ff05d8c90405dd, 0x3cf50790ffbc4588, 0xeb000cbda32b02ff, 0x8eff3d294254ff05, 0x110638060d3dac0f, 0x09060a1d0e061801, 0x395c9b92ff060501, 0x13c2043c40c90eff, 0xceff3d0fd0dcff06, 0x04062a220e3bcc24, 0xbd0b26beff062597, 0x33230eba9bb9f2ff, 0x35ffbd0c0f48ff06, 0x0e065c230ebc325e, 0xff06490008064e01, 0xbc453dff3cca5b8d, 0x79f8ff06570108bb, 0x0e3c699bc9ffbd09, 0x3e862ea2ff066525, 0x8a9305bba8103bff, 0xba030e06fe020d07, 0x8c8f05069a400406, 0x99d8ff0687000d06, 0x023b7cf9c0ff3c7f, 0x3c729cb2ff069500, 0xac010b3cd1a100ff, 0x655aff06a7650406, 0x09bcca16d3ff3b12, 0x3ad2e773ff06b502, 0xdebc04bb92c875ff, 0xcb900506d0b50406, 0x83ff3aecc04fff06, 0xff06d9bb04ba2d6f, 0x62e176ff3ac79321, 0xeb030b06f0bd04bc, 0x30ff3d18deb2ff06, 0xff06f900083c003d, 0xdce26affbaef7ded, 0x2691050746050b3b, 0x13b00407181f0e07, 0x86ffb9bbb98eff07, 0xff0721000fbb5aa6, 0x110ba4ffbc2ddb15, 0x3301080738cc043a, 0xa6ff3b214b02ff07, 0xff07410111bbe9cd, 0xadbb8aff3c09a98a, 0x5ccc04076a0c0b3d, 0x5157ff07570a0b07, 0x0d3aed1143ffbae9, 0xba5e5f4fff076506, 0x7c220ebc2a92d3ff, 0x39bdff07770e0e07, 0x0cb96a38d1ffba8b, 0x3b6c3764ff078500, 0xf6020dbc581bbcff, 0xb6030b07d6330e07, 0xa3000d07a8000907, 0x73ffbbe47fceff07, 0xff07b100023bfae1, 0xd9f1e5ff3c18ca22, 0xc3130e07c8c204bb, 0xccffbaa0f6b8ff07, 0xff07d1050b3bd14c, 0x8aba32ffbcdb64e8, 0xe3340e07e80009bb, 0x96ffbd54f568ff07, 0xff07f1350ebcf77b, 0x816e80ffbc84cc7c, 0x1e140e083e000fba, 0x0b070e0810b30408, 0xf5ffbb035574ff08, 0xff0819060dbd03c4, 0xc42720ff3bb8fd12, 0x2b1f0e0830230ebc, 0x1cffbb05b64fff08, 0xff0839280ebcd82f, 0x00d9ceff3d852f74, 0x54c8040862cd043b, 0xcb27ff084f170e08, 0x0dba057192ffb9fb, 0x3b0424afff085d06, 0x749405b929a9f7ff, 0xf600ff086f000808, 0x0e3cad50cbff3ae8, 0x3a90fc74ff087d1f, 0x02010cbafba8ceff, 0xaa15060ac696040d, 0xda0107091e021109, 0xac940408ba680508, 0x72fdff08a72d0e08, 0x04ba6cfb51ff3a04, 0xbb137575ff08b595, 0xcc69053c290ca8ff, 0xfa2dff08c7780408, 0x0f3c8f8ef1ff3b69, 0x3baab72bff08d500, 0xfe7f04bade18c8ff, 0xeb750408f0890508, 0x3fffb9f23f0cff08, 0xff08f90a0b3a8883, 0x6b13b9ff3b2325bf, 0x0b0d0b09100207bc, 0x2fff36e15114ff09, 0xff09190108ba408d, 0x98561affba424810, 0x46021209660108bb, 0x3335040938120509, 0x89ffbaeb116aff09, 0xff094100083c8673, 0x246fddffbb133284, 0x53530509580002bd, 0x96ff3c41e094ff09, 0xff09613e04bc2ee2, 0x822298ff3c4521af, 0x7c0605098a030b3d, 0x2157ff0977170e09, 0x04bcb7e12effba8e, 0xbd8410e1ff09855e, 0x9c0b05bc3cc777ff, 0x9655ff09975e0409, 0x0e3d499246ff3ae6, 0xbd103beaff09a507, 0x3a7604bcbeed68ff, 0xd6170609f6000c0a, 0xc3000209c8010d09, 0xc9ff3cb5eae9ff09, 0xff09d10211bcaea9, 0x8671e6ffbb4ef5af, 0xe3730409e8050ebc, 0x2aff3ad662ddff09, 0xff09f10008bcfc02, 0x3c46ecffbc6014a7, 0x0c73040a1a040ebd, 0x5716ff0a07020e0a, 0x07bc573503ffbaf0, 0xbd178161ff0a1501, 0x2c1706bc9e5819ff, 0xa042ff0a2700020a, 0x06bd29c430ffbc41, 0xbdf62a41ff0a3518, 0x821706be1ad749ff, 0x5416060a62010d0a, 0x0c81ff0a4f82040a, 0x0ebc759cccffbcf5, 0xbaeecd6eff0a5d0a, 0x74150e3d6bc6e0ff, 0x2677ff0a6f00020a, 0x0b3b6d8affff3c6e, 0xbd086f48ff0a7d03, 0xa6090ebdbe0102ff, 0x93050d0a98000f0a, 0x95ffbb89ccfbff0a, 0xff0aa1020ebcdac5, 0xdbe625ff3b642264, 0xb3130e0ab81906bb, 0xa4ffbd99ef5cff0a, 0xff0ac10107bc9d2f, 0x3b35ceffbb3d0940, 0x5a01110be60b0b3d, 0xf600120b16c7040b, 0xe301070ae82f030a, 0x41ffbce7d1a9ff0a, 0xff0af13705bba43e, 0xb2ba0bff3c1ea364, 0x03060d0b080002ba, 0xcaffb9df7febff0b, 0xff0b11270e3c036b, 0xe669c4ff3a20ad66, 0x2cc8040b3a7f05ba, 0xc6baff0b27080b0b, 0x0ebc82745aff3b9f, 0xbb6d7072ff0b352a, 0x4c2a0e3bbe659fff, 0xcde6ff0b47280e0b, 0x053c0c7f7dffbb21, 0x3cbf629bff0b5581, 0xa201073b1ef8feff, 0x74300e0b8209060b, 0xbf49ff0b6f000c0b, 0x0e3a1f20a5ff3c38, 0x3b935599ff0b7d33, 0x942d0ebb0dadcbff, 0xf0b8ff0b8f06050b, 0x043ac85c17ffbc48, 0xbd2f9466ff0b9d9f, 0xc6030bbbc25848ff, 0xb3a9040bb803050b, 0xc8ffbcbfc39fff0b, 0xff0bc100023b8d7c, 0x001324ff3be09bc1, 0xd3050b0bd8080b3b, 0xeeffbc49be19ff0b, 0xff0be19804b9d5c8, 0x4bf07bffbc86810a, 0x32070d0c760e0b39, 0x0400110c120d0e0c, 0x0b7eff0bff000c0c, 0x04bd533516ffbc38, 0xbbb6d815ff0c0da7, 0x2400113ca8faf9ff, 0x6815ff0c1f00080c, 0x0dbd4720bbffbcc3, 0xbca8c491ff0c2d06, 0x560d0b3cacc332ff, 0x43000c0c48070e0c, 0x94ffbc14d4dbff0c, 0xff0c511e0ebda044, 0x8fc57aff3c0914fb, 0x63a4040c685405bc, 0xe9ff3ccd07d1ff0c, 0xff0c7171053d5bc4, 0x319843ff3cb5a019, 0x9e25050cbe27033b, 0x8b18050c901c050c, 0x3fffbaf437d8ff0c, 0xff0c9920053d299d, 0x8c8ba1ffbd67f09b, 0xab00110cb02503bc, 0x75ff3d3fa815ff0c, 0xff0cb941013db99e, 0x21b5d5ff3adfd905, 0xd4210e0ce202073d, 0x15dbff0ccf00110c, 0x0e39b42509ffbb0a, 0x3b2e0030ff0cdd23, 0xf49904baa745ceff, 0xeeefff0cef1c0e0c, 0x0ebd034102ffbb41, 0xbaffd5e4ff0cfd0d, 0x425d05b9001709ff, 0x9a210e0e263e050f, 0x36c0040d5602080d, 0x23090e0d281b0e0d, 0xb6ff395f97c9ff0d, 0xff0d3134053b3593, 0x6c97f4ff3b371c98, 0x43c1040d480b06bc, 0xb7ff3d52597aff0d, 0xff0d51170ebdb7a4, 0xbe4235ff39d8d9ef, 0x6c4e040d7a1c053c, 0x854aff0d67150e0d, 0x013b1915afffbb48, 0xbc0c0e67ff0d753a, 0x8c0107bb5d466bff, 0xb8a1ff0d87070e0d, 0x0bbc622308ffbb35, 0xbc410fd7ff0d9510, 0xe2220ebd145a41ff, 0xb400110dc2c5040d, 0x5a24ff0daf3c010d, 0x04bcfcd9dbffbbd5, 0xbabea033ff0dbdad, 0xd4ca043bd4f856ff, 0x82acff0dcf11050d, 0x05bd008c10ffbd8b, 0x3d3db53bff0ddd1e, 0x06b304bb5034caff, 0xf39c040df83b010e, 0xaaff3ace9ac6ff0d, 0xff0e014101bac8d4, 0x4c8f52ff3cb0ae61, 0x131c050e182d03bb, 0x8eff3abe10a2ff0e, 0xff0e213005bca218, 0x810314ff3b452a23, 0x72ad040eb60008bb, 0x44060e0e527c040e, 0x1100ff0e3f60040e, 0x04bb8ca950ff3b44, 0x3b7bca93ff0e4d75, 0x64a9043c88595bff, 0xcac8ff0e5f220e0e, 0x073b1d80dbffbbe4, 0xbc015f49ff0e6d01, 0x9641053ce0d5d6ff, 0x83130b0e88b7040e, 0x79ffbbb58b86ff0e, 0xff0e912b0ebd8cbe, 0xcdef78ffbe45834a, 0xa3230e0ea80207bd, 0x05ffbb3863f0ff0e, 0xff0eb15b05bcca81, 0x965aa5ff3c28a1d7, 0xde020b0efea104bc, 0xcb64040ed001080e, 0x99ff3a913a4cff0e, 0xff0ed96f04bbf58b, 0x98e524ffba476ed7, 0xeb040e0ef0140ebc, 0xb9ffba9e74b7ff0e, 0xff0ef9060d3c8643, 0x957843ff3bcf89f3, 0x14110b0f22bb04bb, 0xe577ff0f0fb5040f, 0x043c89a34aff398c, 0xbc16fe1aff0f1da2, 0x34060d3caa5a1bff, 0xf2b4ff0f2f3f050f, 0x123b3a695bff3d28, 0x3aae4371ff0f3d00, 0x62120bbccb7fb2ff, 0x9273050fd6100b10, 0x6400110f720a0b0f, 0x0818ff0f5f070d0f, 0x0d3c097611ffbc61, 0xbb7cf1a3ff0f6d06, 0x84260e3c76b781ff, 0xda6cff0f7f020e0f, 0x073c0166e8ffbc42, 0xbc77aaa6ff0f8d01, 0xb6bc043c313b0eff, 0xa3070e0fa801070f, 0x6fff3b922d43ff0f, 0xff0fb10b0ebbd650, 0x80d913ffbc73e8c9, 0xc301120fc8bf04bb, 0x0aff3c884911ff0f, 0xff0fd1c004bc65a7, 0x0e15faff3a681311, 0xfe110b101e0012ba, 0xeb070d0ff09d040f, 0x3cffbca26857ff0f, 0xff0ff9a6043de4a2, 0x55c73cffbdbe71b3, 0x0b69041010a304bd, 0xf3ffbbfe890cff10, 0xff1019c504bd8a58, 0xae7000ff3da3bb60, 0x34230e1042060d37, 0x57b2ff102f170e10, 0x05bc014941ffbd0d, 0x3d59072dff103d6a, 0x54bd043dd943acff, 0xba3aff104f000e10, 0x053db3a9fcffbb3b, 0xbdcaf757ff105d64, 0xf2130bbc8908bfff, 0x8e060d10ae000210, 0x7b1d0e1080280e10, 0xf7ffbc93181cff10, 0xff1089c204bda7e7, 0x05570aff3d44831b, 0x9b1d0e10a00011bc, 0x2bffbca1848eff10, 0xff10a99e04ba1651, 0xc34487ff3ce630e8, 0xc4000810d2050e3d, 0xeec5ff10bf060d10, 0x043cb5aa5dffbbdb, 0xbd21683cff10cdbc, 0xe4b8043c9fcd0dff, 0x5182ff10df000810, 0x04be5f9783ffbe12, 0xbd3e09bcff10edbf, 0x3a070dbdc39860ff, 0x0c020e111a010711, 0xc4b5ff1107010811, 0x05bd23db2dffbb7e, 0x3c271ca7ff111570, 0x2c6705bb640b62ff, 0xd0d6ff1127620511, 0x043c79e708ffbc09, 0xbc6d56e2ff1135bd, 0x5e140ebafba459ff, 0x4b030e1150070e11, 0x2eff3d252888ff11, 0xff1159080ebda2e7, 0x15250cff3e049bbb, 0x6bb9041170c9043d, 0x59ffbc9b28aaff11, 0xff11797f05bde4ae, 0x25ff18ff3d5f1c10, 0x000008000000133e, 0x000001000003e800, 0x000000000010f700, 0x848c050900000700, 0x2cc1040248c70404, 0x5c620500a0670501, 0x2e6c04003caa0400, 0xe43eff0029170600, 0x043b830336ffb964, 0xba15ca9aff0037a5, 0x4e02083af375b2ff, 0xfc32ff0049010800, 0x0cb8e18c9bffbaf7, 0x3b042357ff005700, 0x80060dbafc90e8ff, 0x6d180e0072010800, 0x00ff376a4047ff00, 0xff007b6505bb871d, 0x5ab6baff3a0c93de, 0x8d9d040092bc043c, 0xa3ffba2a5c1aff00, 0xff009b6305bb9ba3, 0xa65c58ff3d13e5f0, 0xc86a0500e8ac04bc, 0xb5790400ba040b00, 0x11ff3b112de7ff00, 0xff00c30008bbb891, 0x2e49a3ffb9337a3e, 0xd5310e00da000d3c, 0x9fff3c603bb0ff00, 0xff00e31d0ebd49e7, 0x2a985dff38ff590b, 0xfebe04010c310e3a, 0xff10ff00f9000c00, 0x0d3b05e3aeffbb46, 0x3b002606ff010707, 0x1e0209bcda8d1bff, 0xa935ff0119000601, 0x04bd10b60bff3ba1, 0xbd292bb0ff0127ba, 0xbc8705be5cb080ff, 0x58000c0178c20401, 0x450008014a030b01, 0x75ff3c9bb99bff01, 0xff0153000f3a7d3b, 0x41bb47ffbcf7545c, 0x650d0e016a1d0ebb, 0x5bff3c06fef1ff01, 0xff0173050bbc7303, 0x88007cffbb5ac88d, 0x8e120e019c000d3c, 0x7504ff0189630501, 0x06bbedfeecff3c32, 0x3a845d33ff019705, 0xaec4043d2380b0ff, 0x555fff01a9190e01, 0x0ebc319ccdff3ba4, 0xb9a4cff2ff01b72b, 0x0400093ba9ffb9ff, 0xd6000c01e4c50402, 0x7f0dff01d1880501, 0x0539875679ffbc6f, 0x3c3be014ff01df8b, 0xf60002bb5e2b50ff, 0xcdf5ff01f1310e01, 0x0c3d1fbac4ff3aad, 0x3b2de239ff01ff00, 0x28020bbcc167deff, 0x150109021a230e02, 0x9fffbd0db705ff02, 0xff0223010cbc8481, 0xbd5351ff3c7e4cfa, 0x35100b023a8805bc, 0x0cffbafa7bfaff02, 0xff0243010cbc9612, 0xc8161affb9ee0ff6, 0xdc230e0368ca043b, 0x7800080298070d02, 0x658905026a8b0502, 0x14ffbb8d854bff02, 0xff0273c9043bc59c, 0xea6de0ffbcaed9dc, 0x85000c028ac8043c, 0xfbff39d3d38cff02, 0xff0293c9043d1382, 0x13f808ffbc03ff0d, 0xae030b02bc00093c, 0x34c6ff02a96d0502, 0x08bcc6a104ff3d96, 0xbd8948feff02b702, 0xce7f05bcb459d4ff, 0x19b3ff02c9610502, 0x093cc04b19ff3d0e, 0xbccf47cfff02d701, 0x24c904bb5a6659ff, 0xf6040b0304000203, 0xd45aff02f1000f02, 0x0e3c1ef867ffbcb5, 0xbc804577ff02ff31, 0x168a053bcf99b3ff, 0x3a13ff0311001203, 0x0c3b58aad6ffbc15, 0x3cb96721ff031f00, 0x48280e3daa9f56ff, 0x35010c033a010803, 0xa8ff3c235841ff03, 0xff0343010c3d5825, 0x8a9d36ff3ca1b96b, 0x55010c035a0011bc, 0x06ff3cd77551ff03, 0xff03630008bbd8de, 0xa7542fff3ba05622, 0xb4810503f88205bb, 0x86790503947b0503, 0x5e86ff0381540503, 0x0ebbc54f23ff3b44, 0x3dc2875aff038f2d, 0xa601083c34b632ff, 0xae29ff03a1000203, 0x04bd71e228ffbd00, 0x3c7ee00bff03afcb, 0xd8cb04bc30313fff, 0xc5000203ca020803, 0xa0ffbda149dcff03, 0xff03d3180ebe03ed, 0xe28c19ffbc9a25f8, 0xe5310e03ea0108bd, 0x84ffbd7ca230ff03, 0xff03f3230e3c1a35, 0x0294e6ff3d9c0307, 0x202c0e04408405bc, 0x0d0b0b0412000904, 0xaeff3c26d715ff04, 0xff041b02093d733f, 0x3c9143ffbd1ee624, 0x2d310e0432010cbc, 0x59ff3c155faeff04, 0xff043b320ebc60fb, 0x87e0daff3cde65ee, 0x56cc0404648705bb, 0xda02ff0451010804, 0x0dbc7dd9e4ffbd3d, 0x3b6d1a1dff045f06, 0x768805bc5dc925ff, 0x811dff04710b0b04, 0x053d3816afffbccd, 0xbc8aeb51ff047f89, 0xc48d05b94334dcff, 0x1cb20405a80d0e06, 0xb8030d04d8ae0405, 0xa5920404aa040b04, 0x75ff3af536a5ff04, 0xff04b37a043d0323, 0x080abbff3acd4849, 0xc50a0e04ca010cbd, 0x55ff3ad7e369ff04, 0xff04d3a404bac5f2, 0x190741ffbc308a14, 0xee060d04fc080e3c, 0x7b05ff04e9000904, 0x0e3cf0d708ffbd3e, 0xba6827a3ff04f706, 0x0e000c3cf835f3ff, 0x5d00ff0509000805, 0x093cb263a3ffbd02, 0x3d849ad4ff051700, 0x64bc043a5d5680ff, 0x36070e0544080e05, 0x5d26ff0531030b05, 0x04bb32089cff3c70, 0xba80f3f8ff053fb4, 0x56060d3d0d37cbff, 0x61aaff05510b0e05, 0x11babecb15ffbd19, 0x3bdd2fc8ff055f00, 0x88c304bd0a970cff, 0x750209057a080e05, 0x4bff3c836df3ff05, 0xff0583c104bbfcf9, 0x9a2d50ff3ce65268, 0x950009059ac6043d, 0x62ffbc23b56aff05, 0xff05a3060d3b8ccc, 0x0bf648ff3d113f0a, 0xf40111063801093c, 0xc6260e05d4280e05, 0x0eedff05c1b40405, 0x0c3b2524aaffbb3b, 0x3abc28e8ff05cf00, 0xe6c504bce282c3ff, 0x9535ff05e1be0405, 0x04bc41c8f3ff3be1, 0x3d0a364eff05efc6, 0x1800023bce5b04ff, 0x05330e060aca0406, 0x05ffb7f3db7dff06, 0xff0613230ebce8e2, 0x9f1f98ffbe0aa994, 0x25030b062a0108bd, 0x89ffb9039ba5ff06, 0xff0633030bbcbd44, 0x147495ffbc154270, 0x6001120680140e3c, 0x4d060d0652010c06, 0xbcff3bcbf5e4ff06, 0xff065b0209bbb548, 0x822537ffbca5fff6, 0x6d000f067202093a, 0xa7ff3bc28225ff06, 0xff067b000fbcfcc4, 0x25f2ffffbdbadec6, 0x96000c06a4170ebc, 0x1690ff0691011206, 0x0b3c81e550ff3c0f, 0x3cd1ca3bff069f03, 0xb6c6043d20c925ff, 0x2d00ff06b1b40406, 0x0ebb6d59bcff3d44, 0x3bd21e4cff06bf23, 0xe493053cb426c6ff, 0x14190e0758000f07, 0xe6ba0406f4170e07, 0x4203ff06e1140e06, 0x0bbc4e4777ff3a22, 0x3d80bed6ff06ef01, 0x06070b3b85f5b4ff, 0x97f2ff0701c20407, 0x09bcc98718ff3ccb, 0xbcc5c91fff070f00, 0x381c0e3c58d029ff, 0x25030b072a1a0e07, 0xd0ff3dac49abff07, 0xff0733040b3d1a98, 0x87ed0dffbd85e534, 0x459105074a060db9, 0x07ffbb314434ff07, 0xff0753030b3b5a77, 0xbcf070ff3daab482, 0x80010c07a0cd04bc, 0x6dcc040772000c07, 0x8affb9bc1befff07, 0xff077b0009ba168b, 0x41b413ff3ad3a563, 0x8d00080792c304b9, 0x15ff3b041448ff07, 0xff079bc604bba9b7, 0x0218d7ffbb9cb8c9, 0xb6920507c4230e38, 0xfa7bff07b1900507, 0x0e3c8e8da4ffbca3, 0xbb8330c6ff07bf19, 0xd6260ebd40865fff, 0x1ee9ff07d1000807, 0x0e3d98e885ffbb51, 0xbc11952cff07df2b, 0x74020d3b1b2c00ff, 0x101f0e08302a0e08, 0xfdc50408021d0e08, 0x18ffb9d2e257ff07, 0xff080bbd043bd152, 0x579f47ffbd3eb2f0, 0x1dba040822220e3d, 0x86ff3dd3035cff08, 0xff082bc904bc7118, 0xd04a58ffbb0910c0, 0x46030b0854ca043c, 0xbbf4ff0841000908, 0x0dbd186878ff3cc1, 0xbb5c13b0ff084f00, 0x662b0ebd338fa8ff, 0x5e20ff0861000208, 0x0ebc289b40ffbd68, 0x3c924fefff086f2f, 0xbc000fbc130373ff, 0x8e9404089c140e08, 0x7aa9ff0889000c08, 0x04bd491db1ff3b8a, 0x3b4c3b40ff0897c0, 0xae180ebb32bb93ff, 0xf306ff08a90a0b08, 0x0e3c7b95d1ffbd2b, 0x3c9358edff08b71f, 0xe0cd04bb8f2d21ff, 0xcd170e08d2c80408, 0x0affb9e29cfdff08, 0xff08db060db9f033, 0x18b233ff3aeddbc0, 0xed230e08f29405b9, 0x86ff3c606021ff08, 0xff08fb000cbb7399, 0x5b28c1ff3a1ed809, 0x44c6040d0b9505ba, 0x9cb4040a28c1040b, 0x38770509589d0409, 0x254505092a170609, 0xf1ff39f9a5f3ff09, 0xff0933050eba04d6, 0xad9280ffbacf4707, 0x457604094a010dbc, 0x68ffbcbb28a5ff09, 0xff0953020d3bb9a0, 0xeb6ddaffbbc09d2d, 0x6e0112097c3303ba, 0xc8c1ff0969120b09, 0x0b3b86bc49ffbc61, 0x3957315fff09770b, 0x8e060d3c527d5fff, 0x24cfff0989ab0409, 0x11bb0df112ff39a5, 0xbb3bad50ff099700, 0xe400113c480682ff, 0xb6be0409c4010809, 0x3965ff09b1270e09, 0x0e3c0c9c2affbb9f, 0xbaf22f95ff09bf1e, 0xd602073cb75869ff, 0xbe8eff09d1340109, 0x0ebb2f1c03ff3a2d, 0xbc6f7126ff09df27, 0x082d0e3ccc9a4bff, 0xf5b50409fa2b0e0a, 0xa9ffbb6c67eeff09, 0xff0a03c0043ac98e, 0xa15b39ff3c41cc07, 0x15310e0a1a060dbd, 0x91ff3bbda4eaff0a, 0xff0a230002bb3f0f, 0x5eed6effbdabd7ba, 0x7400060ab80002ba, 0x4638050a54010c0a, 0x2e18ff0a41300e0a, 0x0bbdf30684ffbe9e, 0xbb97b4e9ff0a4f09, 0x6665053aa1ae0cff, 0xfb0fff0a6162050a, 0x083d18d3e1ff3a3a, 0xbc2858ceff0a6f01, 0x981a053c02ee6dff, 0x85c3040a8a07060a, 0x85ff3c8245d4ff0a, 0xff0a930c053d9019, 0xbcd7d6ff3bfca469, 0xa501110aaa0806bb, 0xd7ffbd508388ff0a, 0xff0ab30f06bde02a, 0xbf2defffbcda0262, 0xe06b050b006e05ba, 0xcd060d0ad2c5040a, 0xe6ffbbba32aeff0a, 0xff0adb60053c82ac, 0x991659ff3b844b64, 0xed1d0e0af2c4043c, 0x8affbcc2b06cff0a, 0xff0afb220e3be85b, 0x5a7fe7ffbc8f8113, 0x16c2040b247005bd, 0x23deff0b1101080b, 0x0cbbc2ab20ff3d1e, 0x3d68acddff0b1f01, 0x36060d3e8674aeff, 0x6506ff0b31280e0b, 0x073b9e1541ffbba4, 0xbaa8bed4ff0b3f01, 0xef41013b4518d9ff, 0x9400060bd846050b, 0x6601080b7434030b, 0x1238ff0b6101070b, 0x043bbc51a0ffbd72, 0xbc6a58ddff0b6fcb, 0x862701bd474615ff, 0xbf84ff0b81010c0b, 0x08bd5f0e70ffbd91, 0xbc6ad728ff0b8f00, 0xb80b0bbd48a8d6ff, 0xa52a050baa35010b, 0x3bff3cee0ee4ff0b, 0xff0bb3020d3c8fb9, 0x554e92ffbca76b1b, 0xc507050bca08053c, 0x14ff3d62067eff0b, 0xff0bd30107bc942d, 0x095ee5ff3b8be980, 0x96a0ff0be13501bd, 0x74ff0bea060dbce0, 0xbdcc15ccffbdc753, 0x0c3b7e050c7f9405, 0x0c0dc7040c1b0c05, 0xb61dc6ff0c08000e, 0x0b05bdf3775dff3c, 0xffbcdc6842ff0c16, 0x0c2d7d053bb9281d, 0x19ea59ff0c280b0b, 0xca04b9baae2cffb9, 0xff3d3b3eaeff0c36, 0x0c5f7f053b3b81c8, 0x0c4cc9040c510008, 0x64edffbc06bd31ff, 0xe3ff0c5aca04bd20, 0xbca88018ffbb8ebb, 0x0c6c8c050c71130b, 0x4b3fff38ec1963ff, 0xb7ff0c7a8205b821, 0x3b3faac8ff3b248f, 0x0ca701070cc7010c, 0x0c94070e0c990d0e, 0xb8a1ff3b978f4bff, 0x1fff0ca2ca04bc18, 0x3ac3e95affbb9414, 0x0cb4c9040cb91f0e, 0x49c4ffb93eb776ff, 0xebff0cc2230e3bd3, 0x3b10c3e9ffbc8033, 0x0cdd070e0ceb0b0e, 0x940910ff0cd8090b, 0x060d3b31e455ffbc, 0xffbd071b32ff0ce6, 0x0cfd0002bd9ab365, 0x1e0ed9ff0cf81d0e, 0x0112bd167179ffbc, 0xff3c04cc26ff0d06, 0x0f270e0bbbc16c6b, 0x0d9a000b0e26050b, 0x0d36000d0d56020d, 0xf2b53dff0d280107, 0x6a0cff0d3102073b, 0x0e3c1d24c3ff3c43, 0xff0d4396050d4802, 0x29fb10ff3b05a534, 0x2e06ff0d510207bb, 0x053ba59042ff3c0d, 0x070d6c000e0d7a96, 0x3c7a17fcff0d6702, 0x7502073c7711ffff, 0x26ff3c9b1c29ff0d, 0x070d8c070d3cbfb9, 0x3c133b6dff0d8701, 0x9501073be5b086ff, 0x81ff3c134980ff0d, 0x040de2cc043c84c8, 0x0c0db4b4040dc2c9, 0x3b0eea32ff0daf00, 0xbdc004bb4d3ab5ff, 0xb6ffbbf12f3aff0d, 0x080dd4ca04babd31, 0x3c10c2a4ff0dcf00, 0xdd0008bb5bdebeff, 0x26ffbb97d1b8ff0d, 0x0e0e06cd043c357f, 0xff0df3000c0df81d, 0x92f2fcffbb5ec8a9, 0xde73ff0e011f0ebc, 0x0fbbea1f14ff3b88, 0xff0e13030b0e1800, 0xafbd30ff3d1e1400, 0x967bff0e21000cbc, 0x07bd1a0fc8ffbc5d, 0x0e0e72cb040eb601, 0x040e44080e0e5217, 0x3a9ab77fff0e3fca, 0x4d060d3c3aa4bfff, 0x1effb96d3380ff0e, 0x0d0e641d0ebc5d61, 0xbaea742bff0e5f00, 0x6d000d3cf6c679ff, 0xa0ff3bf26a30ff0e, 0x050e96000cbd3be3, 0xff0e8300080e8896, 0xc71e04ffbb9a1411, 0x1962ff0e91230e3a, 0x0e3c9c5d0eff3b5c, 0xff0ea300110ea80b, 0xf753ecffbbe674f7, 0xc22fff0eb1170ebc, 0x04bc136985ff3c26, 0x0e0ede000c0ee3c3, 0xff0ecb0b0b0ed000, 0x96ba90ff395018cf, 0x4072ff0ed9060d3b, 0xffbaf9a730ffbb9f, 0x0f07080e3c33360a, 0x0ef4000c0ef9c904, 0xad7bff3b43fbdaff, 0x44ff0f02070e3c4e, 0x3ca0a25eff3be1e9, 0x0f1496050f190008, 0x8a76ff3b7de33cff, 0x4cff0f220b0ebaad, 0x3c3ae825ff3b19ba, 0x0fbbc904103e9605, 0x0f5700120f77c304, 0x0f4401070f49000e, 0x83c4ffbba058b9ff, 0x30ff0f52010ebc3e, 0xbb96e780ffbac14d, 0x0f6400080f69110b, 0xdaf4ff3b74f175ff, 0xc0ff0f72b4043c01, 0xbad53240ff3b3871, 0x0f8d030e0f9bc604, 0x46c838ff0f880002, 0x01113b8b0589ff3c, 0xff3c7dc3feff0f96, 0x0fadc8043c205dc8, 0x69d4d0ff0fa8020e, 0x130bbc03993affbc, 0xff3c0b0670ff0fb6, 0x0ffa080e39eeb380, 0x0fd500020fe30012, 0xa0f3faff0fd0000c, 0x01073c719080ff3a, 0xff3c413252ff0fde, 0x0ff5cb043cccd053, 0x7be1e3ff0ff00008, 0xf0ff3d9b8160ff3d, 0x0c101e0008bb5a7d, 0xff100bcd04101000, 0x1da2b7ff3c6f22ba, 0xce54ff10190b0e3c, 0x0d3b734199ffbbf5, 0xff102bcd04103006, 0x7e46ecffbbcabe65, 0x49d0ff1039140e3b, 0x0ebc04b246ff3ccc, 0x111054000e10980b, 0xbc0c0414ff104f00, 0x78020e3af16bc0ff, 0x65010e106a010710, 0x60ff3aa03960ff10, 0xff1073cd04bb4ec5, 0xed7394ff3b4071b0, 0x85060e108a080e3b, 0xa4ff3c19b2e3ff10, 0xff109300023ba564, 0x4be480ff3bf27d60, 0xb7001110ce110ebb, 0x56bcff10a9010710, 0x94ff10b20207bcd3, 0xbcc1689affbcab0c, 0x10c4010710c90207, 0x762cffbca45d44ff, 0x11bcbaef78ffbca3, 0xff10db000210e900, 0x10e4140e3c0f0b48, 0x3658ffbd1c0e7cff, 0x94ff10f200023bf3, 0x3c2786dcff3c6387, 0x0000000800000013, 0x00000001000003e8, 0x0000000000001031, 0x04848c0508a60007, 0x012cc1040248c704, 0x005c021100a06a05, 0x002e4305003c5305, 0xccbd0cff00295304, 0xb904ba83133cff38, 0xffb95473e9ff0037, 0x004e6505bb2e1d23, 0x81339eff0049a704, 0xba04ba8d6d7cffba, 0xff3b19895fff0057, 0x00806c04bba3f6f7, 0x006d2c0400725e04, 0x6ebbffbaef0e74ff, 0x9cff007b34013c1f, 0xbcd09755ffbe2430, 0x008d00080092030e, 0xc16bff3cdae0e0ff, 0xaeff009b1205bbcb, 0x3cb71deeff3d6976, 0x00c8000d00e8c004, 0x00b5380400ba260e, 0x4159ffbbb7779fff, 0x5bff00c398043c8c, 0x3bbcbbefffbd3498, 0x00d5860500da0108, 0x696dffb986291cff, 0x08ff00e3020b3a81, 0x3b63fa02ffbba8be, 0x00fe070d010c230e, 0xdb38f4ff00f9060d, 0x170e3c56aec5ffbb, 0xff3b666568ff0107, 0x011e0006bd93fc0c, 0x338f11ff0119340e, 0x00023dd41c36ffbc, 0xffbe197665ff0127, 0x01bc75053ca5d54b, 0x015801120178070b, 0x01450002014a0208, 0x3873ff3c607404ff, 0x56ff0153c304bd4c, 0x3d18c63eff3c2d27, 0x01651905016a010e, 0x00ecffbcbbc8aaff, 0x07ff01730008bbc2, 0x3a8982cbff3c26a8, 0x018e010c019c310e, 0xe7edd3ff01890208, 0xc2043bba2211ffba, 0xff3ca1891eff0197, 0x01ae320ebc63903d, 0x04ae76ff01a90011, 0x0e0b3dc0a11affbc, 0xff3c6c64b3ff01b7, 0x02047a05bc168a0b, 0x01d6770501e47905, 0x94c69cff01d10108, 0x00063c5fcdc9ffbb, 0xffbc2d1df3ff01df, 0x01f60b0bbd1dbb12, 0xe92210ff01f1c504, 0x230ebbb5c205ff3c, 0xff3caff68eff01ff, 0x02287d053dcea662, 0x0215c204021a0108, 0xc26fff3bafedd2ff, 0x79ff0223000cbcbf, 0x3c62c8d8ffbbf8df, 0x02357f05023a0008, 0x421affbcb26608ff, 0x73ff02431f0ebab8, 0xb90679fbff3bce5e, 0x02dc250e0368ca04, 0x0278000202980008, 0x0265c904026a1d0e, 0x1131ffbb8677fdff, 0xd9ff0273010c3d06, 0xbd0a7ff8ffb98e46, 0x02858905028a0009, 0xeef4ff3b067d57ff, 0x14ff029300123d11, 0xba97be08ffbc3270, 0x02ae0e0e02bc180e, 0x7b8579ff02a9010c, 0x060d3cf233cdffbb, 0xff3b5dfc68ff02b7, 0x02ce1f0ebc75cb7e, 0x52c9bcff02c98605, 0x220e3c3e8101ff3d, 0xffbcaa1c30ff02d7, 0x0324070d3c66253b, 0x02f6c90403040012, 0x83bfe1ff02f12b0e, 0x010c3b9c33f7ffbc, 0xff3cc1e98fff02ff, 0x03160002bbc09090, 0x7b5b0dff03117c05, 0x2b0ebc23e10eff3a, 0xff3c5affa6ff031f, 0x03488305bb24376f, 0x03353705033a0e0b, 0xbe47ff3dc31e4aff, 0xeaff0343000c3cfd, 0xba28d855ff3d046a, 0x03550008035a8705, 0x76f5ff3c890982ff, 0x9bff03630108bb95, 0x3b764050ffbc0add, 0x03b4810503f88205, 0x0386790503947a05, 0x94fc6bff03816f05, 0x0002bc1f0096ff3a, 0xff3c0d2758ff038f, 0x03a601083dd15d31, 0x330408ff03a10b0b, 0x8005bd0d1147ffbc, 0xffbbb680d4ff03af, 0x03d8cb043c8bee7b, 0x03c5010c03ca170e, 0x7cbcffbdadcdceff, 0xe8ff03d3060dbc7b, 0xbd304b85ffbddaf8, 0x03e5cc0403ea0108, 0xc9c4ffbd635ec7ff, 0x1fff03f3230e3c0a, 0xbbeb0c0bff3d8c69, 0x0420010c04408405, 0x040d190e0412220e, 0xf5e4ffbb90ee4bff, 0x4eff041b310e3df2, 0xbc4a7bcbff3bfac5, 0x042d83050432130b, 0xf23effbc12b21eff, 0x97ff043b320e3d2f, 0xbcebe94dff3d84d2, 0x0456010c0464310e, 0xfa4526ff0451cb04, 0x070dbb9457d6ff3b, 0xffbc1b2139ff045f, 0x047600083db88ece, 0x07e0caff0471320e, 0x0b0b3bff66c1ff3d, 0xff3bd96922ff047f, 0x066a8d05bc27f9c0, 0x051c190e059f110b, 0x04b8000c04d80b0b, 0x04a5600404aa0a0b, 0x3fb5ff3c0f49e0ff, 0xf2ff04b30009bb3f, 0xbb065106ff3bb4ad, 0x04c5000804ca170e, 0xa880ffb901b099ff, 0x4fff04d30009bb0a, 0x3a88741cff3c9f4c, 0x04ee0d0e04fc100b, 0xee517cff04e99e04, 0xc5043c9aab6fffba, 0xffbce00b0dff04f7, 0x050e060d3cae59de, 0x2f3cf5ff0509080e, 0x000e3b91bfb8ffbc, 0xff3afe8855ff0517, 0x055b220ebdb81541, 0x053602080544c404, 0xfc653bff05310108, 0x000c3c8dc2b1ffbb, 0xff3cfbffdaff053f, 0x054d020dbe3373f0, 0x56070d3d84abf4ff, 0xa9ffbd191d3fff05, 0x04057f0d0b3c2e1f, 0xff056cc2040571c4, 0xd41d6fff3a2023fc, 0x00caff057ac5043c, 0x0cba6c4a2fffbc55, 0xff058c060d059100, 0x1fcf90ffbcb4c9e2, 0xaa96ff059a00023d, 0x12bcdba24bff3da8, 0x0b05eb070d05f900, 0x0405bd000805cb14, 0xbd09f9faff05b8a6, 0xc60108bc5bbd2dff, 0x35ffbc93c650ff05, 0x0405dd0009bda2db, 0x3c5826fbff05d8bc, 0xe6bd043b82c274ff, 0x7affbbcc8c91ff05, 0xff05f400083c1829, 0x0a3618ff3d93cb36, 0x2101120641060d3d, 0x0e000906131d0e06, 0xa5ffb9ebe4dcff06, 0xff061cc2043c0815, 0xb3751bff3d0066f2, 0x2e97040633220e3b, 0x5affbcfbd258ff06, 0xff063c230eba2bc4, 0x18150cffbcf74339, 0x57020e0665230ebc, 0xa68bff0652000806, 0x08bba35733ff3c9e, 0xbcf6458fff066001, 0x27a8ff3c52ba08ff, 0x000f078a93053d61, 0x8f0506ba1a0e06fe, 0x8c04068c9204069a, 0xffb9bc4762ff0687, 0x06959c04bca72db7, 0x848fff3c87d0e7ff, 0x780406ac170eb904, 0xffbb2af166ff06a7, 0x06b5070b3a114a95, 0xefd3ff3cccb7fcff, 0x040b06de1c0ebc7d, 0x8dff06cbb00406d0, 0xbd978733ffbca175, 0x605f31ff06d9070b, 0x020d3ced0440ffbc, 0x50ff06eb220e06f0, 0x3ad512d0ffbb8fab, 0x64d1b3ff06f91d0e, 0xcd04bb730b73ff3d, 0x000c0726010c0746, 0xd6ff0713cc040718, 0xba077d88ffb9a94b, 0xbe7b65ff07210009, 0xc304b92e54b8ff3a, 0x2eff073300080738, 0xbb98be4eff3aedbe, 0x8d0cbfff0741c604, 0x230e37ea3188ffbb, 0x0002075c9205076a, 0xff3c4ddd47ff0757, 0x07651d0ebcd9f17f, 0x2c45ffbbbe05bdff, 0x0008077c270ebd48, 0xffbc3c5e25ff0777, 0x078500093d899e11, 0xf63affbb811b5dff, 0x000f081a020d3c38, 0x030b07b6000807d6, 0x7aff07a3000207a8, 0xbb1126a4ff3be953, 0x918f92ff07b1c904, 0xc404bc4f650cff39, 0xdeff07c3070b07c8, 0xbc1720c7ff3b4015, 0xb0f64aff07d1230e, 0x0b0bbd005aa5ff3c, 0x6d0407ecbc0407fa, 0xffba54cbd7ff07e7, 0x07f5c804bc27d2d3, 0x1727ffbcebd8d2ff, 0x010c080c0008bc58, 0xff3c56f2b8ff0807, 0x0815000c3a1003ab, 0x44c0ffbc62f814ff, 0x140e0862000f3b9e, 0x0a0b0834b1040842, 0xffbc00b4a5ff082f, 0x083d070b3d2478b6, 0xea84ff3be7a8b5ff, 0x000208549505bb94, 0xff3c628b70ff084f, 0x085dcb04baca1d5c, 0xf91affbccec1deff, 0x9405088600113c06, 0xefff087300020878, 0x3a9ed070ff3bf1a4, 0xd942daff08810002, 0x200eb9f68332ffba, 0x09ff0893010c0898, 0x39951e6fffb9c48b, 0xe2690cff08a10008, 0x95053c202cddffba, 0x000d0aeac6040d26, 0x99040942a90409ce, 0x470508de700508fe, 0x57ff08cb340108d0, 0x3b1de893ffbb2d2d, 0x0d9946ff08d90207, 0x7704bc3535b2ff3c, 0xceff08eb000808f0, 0xbd7de5deffbc3818, 0x4514cdff08f9260e, 0x0806bd98b2c1ff3c, 0x00020914310e0922, 0xff3d152a6aff090f, 0x091d45053bc6aacb, 0x44d7ffb94f482fff, 0x530509340d0ebd11, 0xffbc233520ff092f, 0x093d050bbd66a24d, 0x188fffbd14c64cff, 0x340e098a0406bcb4, 0x7c05095c0107096a, 0xff3d1f3d55ff0957, 0x096577053c90833a, 0x2a17ff3c919cd0ff, 0xb704097c0006bc1e, 0xff3b90c675ff0977, 0x09852203bca1726e, 0x0c26ff399cead5ff, 0x000209ae030bbd5a, 0xbaff099b1e0509a0, 0xbd90cdffffbcc6eb, 0x389d4aff09a9010e, 0x000cbc92d141ff3c, 0xf4ff09bb460509c0, 0x3c0a28a9ffbc88c1, 0xdc1e8cff09c9020e, 0x2a0e3c957f04ffbc, 0x8c040a1a74050a5e, 0x130609ec7a0409fa, 0xff394459f5ff09e7, 0x09f5020ebb8d66b9, 0x9114ffbc109f7dff, 0x92040a0c090b3aa7, 0xff3b0deafdff0a07, 0x0a152a03ba36d641, 0x7695ffba900464ff, 0x0b0b0a3ec5043a2a, 0xc5ff0a2bc4040a30, 0xbb1b6eb6ffb9982f, 0x78bacfff0a390a0e, 0x170ebbdc7316ffba, 0x02ff0a4b88050a50, 0x3b49c200ffbbb825, 0x03fca0ff0a590011, 0x1206bcc51245ff3a, 0x66050a86010c0aa6, 0x53ff0a73c5040a78, 0x3bc95b26ffba0798, 0x35fa48ff0a81c304, 0x140b3c3ecbe0ff3b, 0x2cff0a9301110a98, 0xbc4519c2ffba8cfd, 0xfda16fff0aa1060d, 0x340ebcbc7ae3ff3b, 0x2e0e0abcbb040aca, 0xffbc1f1825ff0ab7, 0x0ac51606bd4a498e, 0x8b03ff39de8fa9ff, 0x000b0adcc2043ded, 0xff3d42f609ff0ad7, 0x0ae518053dea1f85, 0xe5e0ffbc60b6e0ff, 0x6c050c0a73053c80, 0xca040b3a65050b7e, 0xc7040b0c5f050b1a, 0xff3b0a89c1ff0b07, 0x0b156205bb0576b6, 0x0db6ffbc8b9debff, 0x00110b2c5d053c19, 0xffbc5b28deff0b27, 0x0b35600539823d30, 0x3fd7ff3c8d7e18ff, 0x070b0b5e000fbbde, 0x35ff0b4b00080b50, 0xbd369c5bff3a9437, 0xaf063fff0b590208, 0xca04bd02df0bff3c, 0x83ff0b6b68050b70, 0xbbebad4bff3cd3a8, 0x0f511bff0b790107, 0x72053c88d6a2ffbc, 0x010c0ba66e050bc6, 0x8fff0b9301110b98, 0x3c86806fffbcb09b, 0x47712aff0ba1cb04, 0x6f05bc7461a3ff3c, 0xbeff0bb3000f0bb8, 0x3d3de6caffbb0386, 0x610da9ff0bc1260e, 0x0b0b3b7ecba6ffbc, 0x01120bdcc7040bea, 0xff3e1282ffff0bd7, 0x0be501073ba09300, 0x46c6ffbcb2fc11ff, 0x170e0bfcc9043c2e, 0xff3caa176bff0bf7, 0x0c0500113d6c2b3b, 0x2f58ff3bc6482bff, 0x0b0b0c9aca043ce3, 0x00080c36340e0c56, 0xbcff0c2374050c28, 0xb7cd20f0ff3d9c2b, 0x2e894dff0c31310e, 0x00083c931f82ff3a, 0xdbff0c43c9040c48, 0x3d187ecbffbd172d, 0x15eb1aff0c51030b, 0x74053d9612ccff3b, 0x01080c6c02080c7a, 0xff3d5e6b68ff0c67, 0x0c75230e3c81f1c0, 0x2030ffbd6fbb88ff, 0x02070c8c78053c38, 0xffbc3744b7ff0c87, 0x0c957e05bd23cb28, 0xb536ff3c24a865ff, 0x000c0ce2010cbb2e, 0x77050cb42c0e0cc2, 0xff3bc8df8eff0caf, 0x0cbd330eb98b8feb, 0x06b2ffb9d5a7a9ff, 0x00110cd40e0b3c88, 0xffbb481fb4ff0ccf, 0x0cdd2d0eb985240c, 0xa6fdff3c1a6aa5ff, 0x01080d06230ebc78, 0x99ff0cf31d0e0cf8, 0x3c69809dff3adc55, 0x075d13ff0d010208, 0x0207bcc64c88ffba, 0xf7ff0d130b0b0d18, 0x3c1f7932ffbc5ca5, 0xdd6358ff0d21030b, 0x000c3cdd8298ffba, 0xc9040e2f2c0e0e34, 0x01110d7a030e0da3, 0x090b0d4c010e0d5a, 0xffb7d49cf7ff0d47, 0x0d55060d3b6bd968, 0xb24dff3af019a1ff, 0x78040d6c9604bb68, 0xff3bc63e2fff0d67, 0x0d75060dbbc5971c, 0x5b30ff3bceb263ff, 0x0d0e0d9e070d3d13, 0x6bff0d8b0b0b0d90, 0x3b29e400ffbb4807, 0xd8f627ff0d99130e, 0xf2ffbad10fa5ff3b, 0x0d0deb080e3d358d, 0x080dbdcb040dcb06, 0x3d42cc21ff0db801, 0xc600023ccb43fcff, 0xa0ff3ad93f4dff0d, 0x020dddcb04bb820c, 0xbbee6a48ff0dd800, 0xe60107bb56e8f6ff, 0xe2ff3bb163c9ff0d, 0x040e0f140e3c3e8e, 0xff0dfc01070e01cd, 0xcc6fb5ffbb1ed27e, 0xe9ffff0e0a00083b, 0x0e3c3f12e8ffbc8f, 0xff0e1ccb040e2122, 0x4dc595ff3c42ed1b, 0xde33ff0e2a020d3b, 0xffbb91fef0ffbc59, 0x0f4bcb043cd16588, 0x0e8400020ec8050b, 0x0e5696050e64b604, 0x467586ff0e510107, 0x010b3b2ec6e8ffbb, 0xffbc3eefe0ff0e5f, 0x0e76020dbc3a2650, 0x32fb66ff0e71220e, 0x0107bc9d0460ffbb, 0xffbc709ebcff0e7f, 0x0ea80008bbd25ed8, 0x0e95060d0e9a000f, 0x3a85ffbb3f66ecff, 0xbeff0ea3140ebcdd, 0x3c9f1e6fff39cdc6, 0x0eb5010c0eba070e, 0x233cff3ad9459bff, 0x40ff0ec3020bbc81, 0x3c7bcb64ff3b7db6, 0x0ee7000f0f070107, 0x15c2e8ff0ed9bc04, 0x5a1bff0ee2060dbd, 0x04bcd59eb0ff389d, 0xff0ef4070e0ef9c9, 0x54b194ff3bbac9f4, 0x2d77ff0f02060dbc, 0x12bb31ed92ff3ccf, 0x0d0f1dc4040f2b01, 0x3c04efd4ff0f1806, 0x26c6043c6b6183ff, 0x94ff3c53ca26ff0f, 0x0f0f3dc4043d6d75, 0x3c876205ff0f3800, 0x46070eba4395c0ff, 0x00ffbb9172d5ff0f, 0x0c0fdb0b0b3bb6ca, 0x0e0f7700080f9701, 0xff0f6402070f6906, 0xc6f8c0ff3bc8cb60, 0x886eff0f72050b3c, 0x0fbb133c33ffbc21, 0xff0f84020d0f8900, 0x40ca90ffbc35b440, 0x261bff0f92cd043c, 0x0ebbc705e8ffbcb7, 0x0e0fad00020fbb0b, 0xbc51e128ff0fa806, 0xb60011bc2434d8ff, 0x84ffbc8b2a84ff0f, 0x020fcd0011bce92b, 0xb951fc00ff0fc800, 0xd60112bbf4effcff, 0x00ffbc955e24ff0f, 0x0e0fff080e3a0815, 0xff0fec050e0ffa06, 0x0ff500023c9f7c70, 0x6748ff3c596870ff, 0x0d3cf8ab90ff3bd3, 0x0210150b0e101a06, 0x3b392200ff101000, 0x98eeffbc22e94dff, 0x60ff102300023c1b, 0xff102c140ebbe12a, 0x341403ff3d0ab168, 0x00000800000013bc, 0x000001000003e800, 0x0000000000102800, 0x848c0508b8000700, 0x2cc1040248c70404, 0x5c021100a06a0501, 0x2e7404003c530500, 0x9d58ff00290e0600, 0x0dbad226d4ffb91b, 0x3a3491bbff003706, 0x4e6505bb92b40bff, 0x8fe6ff0049a70400, 0x04ba7e91e3ffba68, 0x3b0a2eedff0057ba, 0x806c04bb939176ff, 0x6d2c0400725e0400, 0x38ffbad7269dff00, 0xff007b000c3c0f7d, 0x13c558ffbcbbbb68, 0x8d120500921206be, 0x38ff3d4973e8ff00, 0xff009b000c3c82e8, 0x125c66ffbca71301, 0xc8000d00e8c0043d, 0xb5810500ba260e00, 0x15ff3c8f06c5ff00, 0xff00c387043a31fe, 0x7e78f6ffbd973d88, 0xd5860500da0108ba, 0x01ffb9717d48ff00, 0xff00e30d0e3a68f1, 0x5424d7ff3bac9487, 0xfe070d010c230eba, 0x4ce4ff00f9060d00, 0x0e3c4136e1ffbbc5, 0x3b4f5b4bff010717, 0x1e0006bd852fa2ff, 0x7b6eff0119030b01, 0x02bc4ada8aff3ba9, 0xbe0a1dc2ff012700, 0xbc79053c953ff7ff, 0x582b050178770501, 0x45000f014a190601, 0x09ff3c8aeccdff01, 0xff0153030e3b83b3, 0xa76c87ffbbc625a8, 0x650b06016a62053a, 0x6effbc82f0c3ff01, 0xff01736305ba6af0, 0x9fc954ff3d2a8a3a, 0x8e260e019c2a0e39, 0x4868ff0189230e01, 0x053da6368effbc92, 0xbda251ceff019778, 0xae0002bcdfb79cff, 0x8df9ff01a9000601, 0x04bdb49d4aff3bd3, 0x3bfb421dff01b7c2, 0x047a05bd17c3f3ff, 0xd6c50401e40b0b02, 0xac48ff01d1c20401, 0x063d8892eaff3bf7, 0xbcd3aef0ff01df06, 0xf6220e3caac904ff, 0x1f00ff01f1c20401, 0x08bd8238ceff3cd1, 0x3db7e5a2ff01ff02, 0x280008be29a0faff, 0x157c05021a7e0502, 0x3fffbbfb7a8eff02, 0xff02238a05bd0b0f, 0x3b1393ffbb3ccf35, 0x35c504023a000c3b, 0xa7ffbc055f90ff02, 0xff02430002ba47c1, 0x8a4542ff3c40da08, 0xdc170e0368190ebb, 0x78010c0298140e02, 0x65cb04026a030b02, 0x1aff3a82265bff02, 0xff02730e0e3cf0e3, 0xfb7641ffbb607812, 0x850011028acb043b, 0x56ff3cbed9cfff02, 0xff02930002ba0dcf, 0xf20a4affbdaea8d2, 0xae0c0502bc060d3b, 0x0000ff02a9000802, 0x05bd56dc9cffbccd, 0x3bd846a0ff02b789, 0xcec804bd2a635fff, 0xafe3ff02c9010c02, 0x0c3cd78b43ffbb03, 0x3cabf3a1ff02d700, 0x240008bd04afcdff, 0xf600120304860503, 0x5533ff02f1c80402, 0x02bd02af41ffbc90, 0xbc952926ff02ff00, 0x16180e3b17aa94ff, 0x56d8ff0311001203, 0x05bcc25344ffbd4e, 0x3b42c42eff031f8b, 0x480208bc348c5eff, 0x35ca04033a140b03, 0x20ff3c967c8aff03, 0xff0343180ebc9859, 0x4b8e72ffbcb5b409, 0x55030b035a070b3d, 0x91ff3d35910cff03, 0xff0363010c3cca5a, 0x5b4ed9ffba5d93f4, 0xb47b0503f80002bd, 0x86230e0394310e03, 0x2f68ff0381730503, 0x0d3d0d4b4bffba84, 0x3b14d2fcff038f06, 0xa60011bc1d80fbff, 0x248dff03a17a0503, 0x0cbc76eef0ff3d06, 0xba538115ff03af00, 0xd8220e3c00bed4ff, 0xc5001103cac90403, 0x5fff3c040fc9ff03, 0xff03d3070dbcf419, 0xab813dffbd844861, 0xe52b0e03ea01083b, 0x3effbc6be489ff03, 0xff03f37d053b8411, 0x7e22c7ffbc573677, 0x208a05044001083b, 0x0d230e0412001104, 0x38ff3c129400ff04, 0xff041b000dbc2dea, 0xb9cadbffbcc03539, 0x2d000904322b0eb9, 0x2eff3dcca727ff04, 0xff043b0b0bbc7459, 0xa856beff3cd4f97b, 0x56000f0464000cbc, 0xf730ff0451050604, 0x0ebcb5c874ff3d26, 0xbb5c5c58ff045f32, 0x76cd043c45d386ff, 0x0ef0ff0471230e04, 0x0e3b715907ff3ca3, 0xbd3e5b46ff047f2b, 0xb28d053bc6ce1bff, 0x1c000f05a8230e06, 0xb8b40404d80a0b05, 0xa5010804aa220e04, 0x2effb8c1d34eff04, 0xff04b3030b3ce680, 0xb9e270ff3d3a0732, 0xc5000804cac604bc, 0x7dffbd26ec6fff04, 0xff04d3050bbbc597, 0x426000ffbdfdb946, 0xee860404fc9704bc, 0x22bdff04e9000c04, 0x0d3c939e29ffbcd9, 0xbd4d6adcff04f702, 0x0e220ebe20d4d9ff, 0x7848ff0509190e05, 0x0d3cc5da55ff3c0f, 0xbc9daee0ff051702, 0x64c5043a25dc2dff, 0x36110b0544011205, 0x26abff0531bc0405, 0x0e3bc39b07ffba26, 0x3ba3586eff053f08, 0x56030bba89a2ddff, 0x1e16ff0551170e05, 0x043c1a23f3ffbab4, 0xbcf63d12ff055faf, 0x880011bc0e331aff, 0x750d0e057a1f0e05, 0x4eff3c8641ddff05, 0xff0583c604bad171, 0x05bd36ffbcb2382e, 0x95060d059a01083d, 0xb6ffbb8d70a9ff05, 0xff05a3190ebcc10e, 0xa4000dff3c54fa42, 0xf4010c062f280ebb, 0xc6060d05d4000205, 0xce1aff05c1c70405, 0x123c858ac7ffbc90, 0x3b0e002eff05cf00, 0xe6060d3dc728f8ff, 0xca27ff05e1260e05, 0x0e3b978d0cffbd91, 0xbd99078bff05ef25, 0x0f0002bcb79dcdff, 0x557bff0601260e06, 0x40ff060ac204bd39, 0x3ba5d020ffbb62c8, 0x061c0b0b06210009, 0xc85bffbd81caf1ff, 0x40ff062acc04bd67, 0xbca30708ffbbaca3, 0x0657c50406770112, 0x0644030b0649be04, 0xe978ffbc172673ff, 0x5eff06520b0b3cd0, 0x3b53454cffbc6ae4, 0x06642b0e0669c704, 0x0733ff3d27815dff, 0x0dff06720011bcf0, 0xbb27d909ff3c99a2, 0x068db404069b010c, 0xcdc054ff0688af04, 0x01083cce7a7cffbc, 0xffbc0c1552ff0696, 0x06ad2b0e3bf864c8, 0x8366d3ff06a80008, 0x08ffbb393f18ff3c, 0x0d07c993053d3e21, 0x0406f9030e073d02, 0x0206d4020906e2a7, 0xbb4949b0ff06cf00, 0xdd010d3b65108fff, 0x6bffbce40832ff06, 0x0406f4030bbb0a1e, 0x3bc8acd5ff06efab, 0xbf30ff3cb06f80ff, 0xb504071dbc043d29, 0x3eff070aa704070f, 0x3b5e8ce5ffb9f6b9, 0x8fe03aff07182a0e, 0xbd043c6be617ffbb, 0xb2ff072a030b072f, 0x3bdbc320ff3d0a1a, 0xa10591ff07389205, 0x070b3c0a8c8effba, 0x5a040765bc040785, 0x7aff0752000c0757, 0xbd4d55afffb9f7f0, 0xaeab95ff0760000f, 0x0208ba420cd0ff3a, 0x2eff0772050b0777, 0x3baec820ffba02a0, 0x6abe35ff0780010c, 0x8e053d083d20ffba, 0x0002079b010907a9, 0xffbb1d0c13ff0796, 0x07a4010c3b7d2584, 0xa184ffbb522552ff, 0x910507bb000f3bb2, 0xff3b8c1bb7ff07b6, 0x07c4c604bc09936c, 0x0d86ff39c71cf7ff, 0x330e0835020db9dd, 0xc10407f5030b0815, 0x3eff07e2c00407e7, 0xbd7c698bff37fb20, 0x2821d6ff07f0c204, 0xbf043bc4314cff3d, 0x72ff0802bb040807, 0x3c119f06ffbaa92a, 0x5d02eaff08100002, 0x340eba9c200fffbc, 0x09bd3b1488ff081e, 0xbcd591c6ff082700, 0x713800ff08300109, 0x100bbc5cb528ff39, 0x6d04085d1f0e087d, 0x3bff084a0111084f, 0x3cc82965ff3b4d9b, 0x6da282ff08580d0e, 0xc9043a9ef18affba, 0x4fff086a000f086f, 0xbad5e604ffbd0bdd, 0xc2dc1dff0878280e, 0x230eb9c5d40bff3b, 0x060d08931d0e08a1, 0xff3ad8e385ff088e, 0x089c9405b8e967e3, 0x37abff3c6d3c9dff, 0x01ff08aacb04bc32, 0xff08b3280ebd80ca, 0x34776fff3afe6a4d, 0xfcc6040d1d9505bc, 0x54a90409e0000d0a, 0xf0000209109a0409, 0xdd960408e2510508, 0xb9ffbab089e6ff08, 0xff08eb6b05bc3a27, 0x376827ff3bd08b2d, 0xfd070e0902130ebc, 0x59ff3b4cbc53ff08, 0xff090b1c0ebc818b, 0xb75d05ff3cd5cf8f, 0x26310e093408063b, 0x7dcaff0921000209, 0x053be2231bff3d0a, 0xb9f83e91ff092f46, 0x460d0ebd045105ff, 0x89cbff09419d0409, 0x0bbbcbadf5ffbcc5, 0xbd05e5abff094f05, 0x9c0306bca21611ff, 0x6e340e097c010709, 0xb545ff09697f0509, 0x0b3c7e4c3cff3d11, 0xbbba4976ff097703, 0x8e7705bcc9dff7ff, 0x7e21ff0989340e09, 0x0ebcb72085ff3c92, 0xbb5766a8ff099730, 0xc0030bbd1c9eebff, 0xad300509b2ba0409, 0x71ffbc8b87c3ff09, 0xff09bb00023ad1c0, 0xb311c6ffbd8cde18, 0xcd3e0509d2000cbc, 0x91ffbc985048ff09, 0xff09db030e3be6c4, 0x8a0f44ffbca8dea8, 0x2c00060a702a0e3c, 0xfebe040a0c53050a, 0x2fe2ff09f9b30409, 0x04b98cfa4eff39fe, 0xbcbc4221ff0a07bf, 0x1e55053bc8fdf9ff, 0x9947ff0a19a1040a, 0x0c3a65de29ffbbe6, 0xb9c78a07ff0a2701, 0x501c05b87985d9ff, 0x3d000f0a420b0e0a, 0xdaff3b95ba82ff0a, 0xff0a4b200e38c28e, 0xc54c32ff3a19855f, 0x5dc1040a620108ba, 0x2effb8c0ef18ff0a, 0xff0a6b0a06bbabb3, 0x3b2a9effbc2a087b, 0x9800120ab8c204bb, 0x85120b0a8a2b0e0a, 0xadff3b59a220ff0a, 0xff0a932e0e3cbc7f, 0x569a60ffbccaf240, 0xa53b050aaa3f05b9, 0x2effb9ab08bdff0a, 0xff0ab34305bc0ecf, 0x2dd75eff3c3027bf, 0xce2d0e0adcc304ba, 0xd4d7ff0ac92b0e0a, 0x0d3d2ab135ff3ad5, 0xbb687832ff0ad706, 0xee130bbd934fa1ff, 0xd9cfff0ae9100b0a, 0x113d574409ff3b67, 0x3cc751b3ff0af701, 0x012605bd1aeff9ff, 0x4c13060b87c7040c, 0x1e01070b2c0b0b0b, 0x9c60ff0b190b060b, 0x073caa5b20ff3c43, 0xbd095597ff0b2702, 0x3e0006bd631f4aff, 0x8240ff0b39340e0b, 0x063e03f8d8ff3d97, 0xbe304bddff0b4707, 0x700208bdbedf5fff, 0x5d02070b62010e0b, 0x60ff3a689e40ff0b, 0xff0b6b030bbc203a, 0xaa5910ffbcfd1fe4, 0xf398ff0b790107bc, 0x9bff0b8213053cc9, 0xbc66508eff3c5428, 0x0baf020d0bc6c904, 0x0b9c02070ba1130e, 0xdf2bff3b735247ff, 0xe6ff0baa10053c02, 0xbc247554ffbd118e, 0x0bbc01070bc10002, 0x1ce2ffbd68a3dfff, 0x053d6dfd98ffbd02, 0xff0bd336010be107, 0x0bdc0b0e3ddaf07c, 0x61d5ff3c238e30ff, 0x03060bf30706bd25, 0xffbc6450cfff0bee, 0x0bfc0a063c52dd56, 0xbda2ffbba1b5d3ff, 0x00110c91000cbb42, 0x4d050c2d5b050c4d, 0xe6ff0c1a01070c1f, 0x3d09300cff3d8633, 0x2438a1ff0c28c704, 0x6405bd0a87e3ff3c, 0xfeff0c3a070d0c3f, 0x3ca35680ffbcbd16, 0xc48b3cff0c48c804, 0x130bba5cf988ffbb, 0x040d0c633e050c71, 0xffbbe0d5e2ff0c5e, 0x0c6c060d3b6bc2ee, 0x040bff3a619545ff, 0xca040c831d0e3bfc, 0xff3b1519e2ff0c7e, 0x0c8c1f0e3c0f66c4, 0x5394ffbdb1bcb5ff, 0x01120cd9340ebb65, 0x00020cabcb040cb9, 0xffba354047ff0ca6, 0x0cb4220e3b52015c, 0x09cbffbb3d12f9ff, 0x2f0e0ccbc9043b1c, 0xff3b25d304ff0cc6, 0x0cd4ca043c8b1390, 0x3c01ffbc80e398ff, 0x010c0cfd02063a83, 0xa5ff0cea040b0cef, 0x3bb76084ffbcb95d, 0x03adecff0cf8030b, 0x000fbd2e6835ff3c, 0x7bff0d0a030b0d0f, 0x3d2737c5ff3c3bb7, 0x833ba8ff0d18cb04, 0x000cbbcb169dff3c, 0x050b0e382c0e0e3d, 0x070d0d68000b0dac, 0x96050d4395040d51, 0xff3c4055e4ff0d3e, 0x0d4c96043beb1daa, 0x6929ffba3f7fc1ff, 0x36ff0d5a01073bd9, 0xff0d6302073c0a60, 0xaf75aaff3c87cf47, 0x7eb4040d8c230e3c, 0xe462ff0d7901070d, 0x0d3b9bec7dff3a80, 0xbcb6268bff0d8700, 0x9e010bbacebf1bff, 0xdae4ff0d99000d0d, 0x073bd93d60ffbbb6, 0xbc5ea57bff0da701, 0xf40107bca674cdff, 0xc600080dd40b0b0d, 0xbe22ff0dc1060d0d, 0x04bb232dc0ff3a6e, 0x3bbe1bcfff0dcfc6, 0xe61f0e3a4c55c9ff, 0x23edff0de11d0e0d, 0x0e3ca336a7ff3b6c, 0xbd06109cff0def23, 0x189605bbf84740ff, 0x0501110e0ac9040e, 0xd5ff3a7114c1ff0e, 0xff0e13cb043bf25a, 0xff86d1ff3ca35fef, 0x2502070e2a0b0b3b, 0x90ff3b688fe5ff0e, 0xff0e33cd04bbf4d1, 0x58c310ff3b225660, 0xcb043cbc74f8ffbc, 0x010c0eb6c3040f39, 0x060e0e6d000f0e8d, 0x07ff0e5a030b0e5f, 0xbd06c908ffbc4bb6, 0xbb75bbff0e68080e, 0x01123b2b7f46ffbb, 0xdbff0e7a0a0b0e7f, 0x37c89213ffbbd3ad, 0x778240ff0e88020b, 0x050b3c27ff98ff3b, 0x010b0ea396050ea8, 0xffbc07a04cff0e9e, 0xc8560cffbc846e44, 0x55ccff0eb1bd04bc, 0x0bbacab1c0ff3c06, 0x020ed500110ef509, 0x3b0e9ac0ff0ec700, 0x08865cff0ed0030b, 0x020bbce9af34ffbd, 0x62ff0ee20d0e0ee7, 0xbc2fc5fcffbb2b22, 0xe6453aff0ef0010e, 0x010e3b117ce7ffbb, 0x96050f0b00080f19, 0xff3c80ceceff0f06, 0x0f1400023c15dffc, 0x92e6ff3c1ebd58ff, 0xc9040f2b010c3bfd, 0xff3b212c69ff0f26, 0x0f3401123c1e4a72, 0x7968ffbc08c6f8ff, 0x010c0fc90b0b3c25, 0x060e0f6500080f85, 0x05ff0f5202070f57, 0x3cb31320ff3bb4b7, 0x11612dff0f60050b, 0x0111bb048302ffbc, 0xecff0f72cd040f77, 0xbbcc2b63ffbcb014, 0xde66b1ff0f80060d, 0x0b0e3c5e1140ffbb, 0x00020f9b060e0fa9, 0xffbc3ce440ff0f96, 0x0fa40011bcccb1d3, 0xdceaffbbb73795ff, 0x140e0fbb0012bcaf, 0xff3ac8d000ff0fb6, 0x0fc40111bbd11324, 0xf200ffbc866e54ff, 0xcc040fed080e39f4, 0x0e3c8f8998ff0fd6, 0xff0fe300020fe806, 0xbe4358ff3c43aac8, 0x060d3cdfcd98ff3b, 0x000210030b0e1011, 0xff3b269ea0ff0ffe, 0x100ccd04bc129ec8, 0x473cff3b962650ff, 0x20ff101a00023c1c, 0xff1023140ebbcaa6, 0x221203ff3cf9a5c0, 0x00000800000013bc, 0x000001000003e800, 0x0000000000117e00, 0x728c0508d3000700, 0x2cc1040248c70404, 0x5cb20400a0bb0401, 0x2e6105003cb00400, 0x7ff9ff00295c0500, 0x043b037730ffb979, 0xb9078558ff0037ac, 0x4e030d3b06a8cfff, 0xd71cff0049000c00, 0x0bba6ed975ff3ccc, 0xbc1e1c82ff005714, 0x80b5043ba0fac8ff, 0x6d230e00727f0500, 0x0affbb5b8930ff00, 0xff007b0109bb065f, 0x284473ffbbaa98bd, 0x8d000c009289053c, 0x34ff3b19b9f7ff00, 0xff009bb9043bdf17, 0x49d46eff3be947d1, 0xc8070d00e80209bb, 0xb5001200babc0400, 0xa3ff3b41ee5cff00, 0xff00c3030bbbb37e, 0x9902dbff3b46dc74, 0xd5000900da0e0e3a, 0x21ff3d0e952cff00, 0xff00e30108bce696, 0x25dec7ffbd55a087, 0xfe060d010c2b0ebc, 0xad7bff00f9080e00, 0x0ebbdf69ccff3c6b, 0x3c0a50afff010703, 0x1e000fbc946e5fff, 0x5300ff0119000201, 0x0bbe79d483ffbc18, 0x3cc94e95ff012703, 0xbc7905bbd96510ff, 0x58300e0178770501, 0x450d06014a6d0501, 0x7effbc57cce5ff01, 0xff015370053b34e6, 0x73143aff3cd9f346, 0x65310e016a0011bb, 0x76ff3d643470ff01, 0xff0173310e3c0c51, 0xc96920ffbc1a1594, 0x8e2f0e019c00063b, 0x09e7ff01892b0e01, 0x0dbd39d9b6ffbc21, 0xbd1e383dff019700, 0xae060e3b992955ff, 0x5a6dff01a9000801, 0x0c3b20cac0ff3d1a, 0xbcb75b1eff01b700, 0x047a05bdb04dddff, 0xd6c50401e4130b02, 0x5aeeff01d12a0e01, 0x063d0d60b6ffbc83, 0xbcbe83daff01df06, 0xf600093c99b4e5ff, 0x080aff01f1000c01, 0x0e3dc9ab43ff3cfa, 0xbd601c39ff01ff23, 0x28200ebdc611acff, 0x15190e021a1d0e02, 0x9cff3ab2ca9fff02, 0xff0223010cbc97cf, 0x8915abff3b675497, 0x350108023a7f053d, 0x0effbca18fcbff02, 0xff0243120b3b8a77, 0x742e3fff3aa8e085, 0xd3180e035f1c0ebb, 0x78000c0298060d02, 0x651206026a340502, 0xfdff3d6cff94ff02, 0xff02736005bba73d, 0xeb7b8fff3b64c81d, 0x85030b028a0b0ebb, 0x5eff3c1f48daff02, 0xff02938805bb8a6c, 0x7fe713ff3c1fd5f0, 0xa57e0502b3140ebb, 0xcb043de32ad4ff02, 0xff3b99bf89ff02ae, 0x02c5030bbcbd19e1, 0x1fcf6fff02c0010b, 0xc8043d6d0760ff3d, 0xff3aaea747ff02ce, 0x031b0008bcb2458b, 0x02ed010902fbc804, 0x259561ff02e8070d, 0x0011bc9107afff3d, 0xffbc5b9c9dff02f6, 0x030d000c3b81eeaf, 0x3ef730ff0308030b, 0xc904ba6029aeff3d, 0xffbcb7588eff0316, 0x033f010cbbee2355, 0x032cca040331000c, 0x298dff3b78f02eff, 0x87ff033a0b0bbc6d, 0x3cbae6afff3ae519, 0x034c190e03510b0b, 0x44a0ff3c582798ff, 0x57ff035a0012bcd5, 0x3cff843bff3d93a9, 0x03a2000203e6220e, 0x037d750503827605, 0x2cc2dcff0378060d, 0x4affbd98a102ffbb, 0x040394070d3e2500, 0xbcb43663ff038fc8, 0x9d0b0bbd61769eff, 0x5fffbd1ebfb4ff03, 0x0503c689053d09fd, 0xff03b3830503b888, 0x85ff21ff3baa8c12, 0xf610ff03c10208bc, 0x0ebdb7186effbe30, 0xff03d38a0503d81f, 0x4ac361ff3d418a6f, 0x9e25ff03e1000cbd, 0x043e2f7629ff3d31, 0x0d040e0108042ecd, 0xff03fb230e040007, 0xdc2728ffbb99f55f, 0x9bdbff0409230eba, 0x113cb54e46ffbd0c, 0xff041bcc04042000, 0xb50f24ff3b8fdee9, 0xf18fff0429230ebc, 0x0b3aa013bdff3cb7, 0x0b0444000f04520b, 0xbbd789f8ff043f03, 0x4d2b0ebd2f5d2eff, 0xe9ffba0ef7c2ff04, 0x0e046400023c59fe, 0x3c26387bff045f2b, 0x6d230ebbaf30dfff, 0x89ffbdb15020ff04, 0x0e06a98d05bc2f9a, 0x0b050a000f059623, 0x0404a6b40404c60a, 0xff0493b0040498b3, 0xa24591ff3b876cef, 0x8232ff04a1030bbc, 0x04bc520ef0ff3d5a, 0xff04b3010804b8c6, 0xd91c8dffbd03a0ad, 0x59f6ff04c1050b3b, 0x04bc2ef000ffbde4, 0x0c04dc000804eaa5, 0xbcc36c11ff04d700, 0xe597043b74c1eeff, 0xd8ffbdb32ffaff04, 0x0404fc220e3c3e88, 0x3c447cb4ff04f7ca, 0x05020dbd102a88ff, 0x2dffbc8dea20ff05, 0x120552c5043a1544, 0x040524110b053201, 0xba158954ff051fbc, 0x2d080e3bb00b8dff, 0x1aff3b9302c6ff05, 0x0e0544030bba77bf, 0xba89a1d7ff053f19, 0x4d220e3c1a602dff, 0x1cffbc049a43ff05, 0x0e05760011bcf083, 0xff05630d0e05681f, 0xbc7f7fff3c71a9b8, 0x65c2ff0571c604ba, 0x083cf0baf9ffbca0, 0xff0583060d058801, 0xadc072ffbb7e979f, 0xc063ff05910002bc, 0x0e3bf77fbaffbcb9, 0x0405e2000c062628, 0x1205b4260e05c2c1, 0x3afbcf95ff05af01, 0xbd030bbc8d99d0ff, 0xccffbcb26e3eff05, 0x0b05d40002bd3d0d, 0x3c290e77ff05cf0e, 0xdd250e3dad0dffff, 0xe9ffbda83c14ff05, 0x090606010c3c655f, 0xff05f3000205f800, 0xcc1707ffbc4f9614, 0xdaf0ff0601ba04bc, 0x023cc326faffbd6f, 0xff0613260e061800, 0x3cb880ffbd26ccef, 0x493eff062100093a, 0x12bc399178ffbd61, 0x0b064e2b0e066e01, 0xff063b010c064003, 0x0c54e8ffbc40b7f8, 0x9077ff0649010c3d, 0x0ebcb2a952ff3c62, 0xff065b000c06602d, 0x0f9c14ffba8180ab, 0x17efff0669010cbd, 0x0c3cd978acffbb3f, 0x040684c504069201, 0xbbfb848bff067fc2, 0x8dc9043cd36fdbff, 0xefffbc9a84fdff06, 0x0406a42b0ebb6636, 0x3ca1552eff069fc6, 0x1db9ff3b9e5d05ff, 0x020d07c993053d2b, 0x5c0406f9030e073d, 0x000e06cb900506d9, 0xff3a80ea00ff06c6, 0x06d4000fbcd4631c, 0xda90ff3c690bcfff, 0x6b0406eb0002bc21, 0xffbcde595dff06e6, 0x06f46104bb110e4a, 0x73e4ffbd3bb5beff, 0x030b071dbe043a84, 0x25ff070abb04070f, 0xbc0f5dedff3b1ee8, 0xea918eff0718bd04, 0xc504bd061b0bffba, 0xf9ff072ac404072f, 0x3d128d07ff3b112b, 0x68391dff0738c704, 0x050b3b3c1653ffbc, 0x200e076591050785, 0xb2ff075200020757, 0xbb085fc5ff395108, 0x916bb3ff0760220e, 0xcc04b8f13970ffbc, 0x50ff0772a2040777, 0x39d9fa0aff3b9398, 0x9c89c5ff0780000f, 0x0c0b3bf8b76dff3d, 0xc504079b920507a9, 0xff3ac4aef6ff0796, 0x07a46d04ba3974ca, 0x721cff3b624d32ff, 0x110b07bb910539c5, 0xffbb0090eeff07b6, 0x07c4000238ceebe8, 0xecdbffbbeecc03ff, 0xc8040847020dba5e, 0x2a0e07f595050815, 0x98ff07e2c50407e7, 0xbc50dcc3ff3b0d65, 0xf4293cff07f0010b, 0xc6043d95a054ff3d, 0x27ff0802170e0807, 0xbc3a22aeffbaa076, 0x15341bff0810000f, 0x0208bc94820fff3d, 0x0002082b1f0e0839, 0xffbce06f76ff0826, 0x0834070b3c07c9eb, 0x4574ffbc07440cff, 0x18ff0842170e3c08, 0x3cc1e540ff3d892e, 0x086f020b088f000f, 0x085c940508610002, 0x95efffbd73d873ff, 0xa9ff086a94053b17, 0x3c162dc8ff3d7fc6, 0x087c000c08819404, 0xedf7ff3b934a83ff, 0xefff088a1f0ebdae, 0xbbd73149ffb980cc, 0x08a5c80408b3cd04, 0xba3053ff08a0170e, 0x060db9d18144ffb9, 0xff3ac84bf4ff08ae, 0x08c59405b938999a, 0x39cc38ff08c00009, 0x000cbbd50b25ff3c, 0xff3a16fa42ff08ce, 0x0d539505ba46612a, 0x09fb000d0b17c604, 0x092b9904096fa904, 0x08fd4705090b7005, 0x1285a4ff08f83401, 0x02073b1012d2ffbb, 0xff3bf8754eff0906, 0x091d7804bc240d2b, 0xfe45f6ff09180008, 0x0d0ebd5edb41ffbb, 0xff3d03332dff0926, 0x094f0806bb25cb10, 0x093c230e0941310e, 0xb2b9ffbaace03bff, 0x89ff094a46053ccd, 0xbcee2b6fffb9df6c, 0x095c010e09610d0e, 0x25bfff3b584973ff, 0x6eff096a9d04bc54, 0xbcb8286affbd28eb, 0x0997020709b70306, 0x09847f050989340e, 0x73c1ff3cce3ac8ff, 0xd6ff099200063bfb, 0xbd1a8292ffbc1c33, 0x09a4010b09a97405, 0xb691ffbc9237e2ff, 0x80ff09b2230e3c5b, 0xbd30c2c1ffbb1b3d, 0x09cd000209db030b, 0xb1cf60ff09c8b804, 0x010ebd7d8fc5ffbc, 0xff3c3d3a58ff09d6, 0x09ed000cbc60d0cd, 0x9292efff09e83805, 0x010e3bfb4e4effbc, 0xffbd02d67aff09f6, 0x0a8b2a0e3c5565b8, 0x0a278c040a477405, 0x0a1439040a197904, 0xc937ffba17c0b6ff, 0xbdff0a227c043a09, 0xb9d2625dff3c0e5d, 0x0a3492040a39090b, 0x9013ff3b02ce8eff, 0xddff0a422a03ba12, 0x3a239907ffba84d8, 0x0a5d0b0b0a6bc504, 0x6ded47ff0a58c404, 0x060dbb09b4a8ffb9, 0xffbbb7fe25ff0a66, 0x0a7d220eb9d6bf6e, 0xe445f0ff0a78070e, 0x0011bbcc48e2ff3b, 0xff3c300d7bff0a86, 0x0ad3010dbcc702c6, 0x0aa50b050ab33c05, 0x9c17c2ff0aa00108, 0x310e3bb42c3affbb, 0xffbc6ff341ff0aae, 0x0ac596043a207f14, 0x949fb7ff0ac00108, 0x030bbde46988ffbc, 0xffbdbafecaff0ace, 0x0af7b904bd3ecdd2, 0x0ae4010b0ae9b504, 0x4d86ffbbd4843aff, 0xcbff0af20605b8f1, 0x3b8ed0f5ffbcf052, 0x0b04110b0b09bb04, 0x97f4ffbbf69558ff, 0x1bff0b120112bd23, 0xbb803cd7ff3bebaf, 0x0bab6b050c377305, 0x0b47030b0b67320e, 0x0b3403060b39000d, 0xa4ffff3d4ff59eff, 0x7aff0b42070ebc20, 0x3c04d7e6ffbadb2c, 0x0b5401110b590705, 0xf2acffbcb9eeedff, 0x36ff0b620b0b3d6c, 0xbacb01c1ffbb0922, 0x0b7dcb040b8b330e, 0xa21570ff0b780e0b, 0x000f3d8a40baff3c, 0xff3ab0a462ff0b86, 0x0b9d350ebe12569a, 0xbc89f2ff0b980008, 0x02063bf71190ffbb, 0xffbc1d6df6ff0ba6, 0x0bf36e053b857fa6, 0x0bc5280e0bd36d05, 0x000bd6ff0bc00002, 0x310e3cb1cc6effbc, 0xffbc5f777fff0bce, 0x0be5130b3c30f035, 0xc686b4ff0be00108, 0x010c3b89454bffbc, 0xffbd545ec2ff0bee, 0x0c17cb04bcc60d1a, 0x0c04070b0c09120b, 0xd087ffbb0b4994ff, 0x53ff0c12c7043bed, 0x3c866d19ff3d6a39, 0x0c2400120c29220e, 0xf0f3ffbd3c07ccff, 0x4dff0c326f053d01, 0x3a72de53ff3cbfe7, 0x0c8301070cc7ca04, 0x0c5500020c63190e, 0xdd627eff0c50c904, 0xc8043b9e02afffbb, 0xff3c3ebf6dff0c5e, 0x0c75030bb9211808, 0x81f77aff0c70000f, 0x0112b98106b5ffbc, 0xff3b8485f6ff0c7e, 0x0ca7c904bb5fc1ac, 0x0c9478050c991d0e, 0x62a2ffbc588c4dff, 0x7cff0ca2c804b990, 0x3c935226ffbaa1da, 0x0cb401080cb97405, 0x5c66ff3d70346cff, 0xcbff0cc2310ebbe4, 0xbd5c2dddffbbf390, 0x0cef360e0d0f010c, 0x0cdc76050ce10002, 0x1187ffbd5749f8ff, 0xc7ff0cea01123b57, 0x39852a20ffb9e5e0, 0x0cfc030b0d010207, 0x7490ff3cd0b7fcff, 0x20ff0d0a83053d40, 0xbdb9ab28ffbba927, 0x0d2502080d33260e, 0x0261c5ff0d201d0e, 0x82053c285c16ff3b, 0xffbc6801acff0d2e, 0x0d450207bd42ba81, 0xff063bff0d40060d, 0x7805bcc5f79affba, 0xff3d27e124ff0d4e, 0x0f8a000c3bfe5a12, 0x0de2000b0e6e0a0b, 0x0d7e020e0d9e020d, 0x330f23ff0d700107, 0x2064ff0d799605bb, 0x07bacf3f2cff3ae2, 0xff0d8b96050d9002, 0xd4a029ff3bf32043, 0xb1faff0d9995043b, 0x053b5323ceff3bde, 0x070db4000e0dc296, 0x3c4de46cff0daf02, 0xbd02073c4b2bd6ff, 0xe6ff3c80ed3fff0d, 0x070dd4070d3c9de9, 0x3bf196ddff0dcf01, 0xdd01073bb74ac5ff, 0x4fff3bf91394ff0d, 0x0e0e2acd043c59aa, 0x0d0dfcb3040e0a0d, 0xbb13ded7ff0df702, 0x05070d3b24c21cff, 0x55ffbb57c9b6ff0e, 0x0d0e1c050b3c05ae, 0xbb88e7e4ff0e1702, 0x25040d3b126272ff, 0xf3ff3cea75f3ff0e, 0x120e4e0008bc3b92, 0xff0e3b030b0e4000, 0x182332ffbb95af30, 0x7508ff0e49030bbc, 0x0bbc4e3bdcffbc2c, 0xff0e5b00110e6003, 0x7cba1cffbc4c7b0c, 0xe152ff0e69060dbc, 0x07bc85611effbc88, 0x0e0eba0e0b0efe01, 0x120e8cb3040e9a01, 0xbb33ea1bff0e8700, 0x9500083b822af8ff, 0xd6ff3b87c747ff0e, 0x0d0eac96053c1641, 0x39867ed8ff0ea706, 0xb5020ebb2c269bff, 0xe5ffbbe603e0ff0e, 0x0b0edec3043b4647, 0xff0ecb96050ed014, 0x75c300ff3b9f20b5, 0x97c4ff0ed900023a, 0x05bb098748ffbbaa, 0xff0eebcc040ef096, 0xd29079ff3b64d240, 0xd98eff0ef9cd043b, 0x05bb5d73b0ff3b5b, 0x120f26c9040f4696, 0xff0f1300080f1800, 0xacfcf9ffbac034a5, 0x3bb1ff0f21c6043b, 0x04ba07233bff3b90, 0xff0f33080e0f38cb, 0xeefb30ff3cd7f6fb, 0x1aa6ff0f410111bb, 0x0b3b2f6321ff3bf9, 0x020f5c02070f6a0b, 0x3a4b2f50ff0f5700, 0x65020e3bc0bdd5ff, 0x04ff3ba8d17eff0f, 0x040f7c0207bc4f75, 0x3ab4a660ff0f77cd, 0x85020ebc347b47ff, 0xe1ff3ba96c4cff0f, 0x0410aacb04bc91ec, 0x040fdabc04101ec3, 0x0d0facb6040fbab9, 0xbc178184ff0fa702, 0xb5040bba9acf88ff, 0xb0ffbc800ed7ff0f, 0x110fcc030ebc38af, 0x3a386f54ff0fc701, 0xd5020bbcf29d10ff, 0xc5ff3c02092bff0f, 0x0d0ffe050b3c8e98, 0xff0febbd040ff000, 0xf69400ff3b355855, 0x266aff0ff9bf04b9, 0x02bbbbb8e2ffbca4, 0xff100b0012101000, 0x3e3098ff3a7dd94b, 0x5d88ff1019c2043c, 0x0bbcb4a031ffbc10, 0x0c10460008106605, 0xff1033c404103801, 0x93c4c4ff3a5628e0, 0x5103ff1041c404bb, 0x0e3ca8afa4ffbb27, 0xff1053c904105807, 0xf0b530ff3ac755fb, 0x3a96ff10610d0ebc, 0x0e3c897c58ff3c06, 0x11107c0b0b108a01, 0x3c3393ccff107700, 0x8500123b9be262ff, 0xf0ff3c97116fff10, 0x0e109c010c3c58a4, 0xbd236f3cff109702, 0xa501123b7ac5e7ff, 0x00ffbbf632f0ff10, 0x0711310b0b3b5451, 0x0e10d6000f10f601, 0xff10c3020d10c81d, 0xb50c70ffbc799d78, 0x843aff10d1030b3b, 0x0ebc1737e0ff3cf1, 0xff10e3001210e80b, 0xc7b334ffbb9dca45, 0x72f4ff10f11f0ebc, 0x0dbce3c0b7ffbb76, 0x0e110ccd04111a06, 0xbc992334ff11070b, 0x150111bc067420ff, 0x10ff3b451740ff11, 0x07112c00083c292b, 0x3c0334d1ff112702, 0x8140ff3ca12ac0ff, 0x060e1155080e3cba, 0x08ff1142cc041150, 0xff114b00023c812f, 0xab3c98ff3c3019b0, 0x060d3cc96c38ff3b, 0x0002116b0b0e1179, 0xff3b15f520ff1166, 0x11740002bc03f54d, 0xe47cff3c406230ff, 0x13bb672ae8ff3bda, 0xe800000008000000, 0xca00000001000003, 0x0700000000000010, 0x0404698c0508b800, 0x04012cc1040248c7, 0x04005cb20400a0bb, 0x04002e6105003cb0, 0xb8ee1378ff0029ae, 0x37ac043b2ea1deff, 0x0fffb8f3eeeaff00, 0x04004e040d3af263, 0xbbebc8b9ff0049b1, 0x57190e3c568ed8ff, 0xdcff3a039969ff00, 0x050080b504bc06c8, 0xff006d230e00727f, 0xf1de28ffbb45953c, 0x6fd9ff007b8b05ba, 0x053c944e97ffbb76, 0xff008d010c009289, 0x1ac962ff3b570d3b, 0x3be9ff009bb8043c, 0x05376dd781ff3c00, 0x0d00c8000f00e888, 0xff00b5bc0400ba04, 0x5592caffbc907b44, 0x9561ff00c3070bbb, 0x123ca0fd2cffbb78, 0xff00d5070d00da00, 0xab3816ff3c1a39c9, 0xb847ff00e3060dbc, 0x02bcc4bad0ff39e4, 0x0900fe0d0e010c00, 0x3d11b358ff00f900, 0x07be04baca0436ff, 0x16ff3c46a64aff01, 0x0b011e010cbbbf68, 0x3c40e769ff011903, 0x270b0bbadd2644ff, 0xe7ff3ca1f851ff01, 0x0501bc7905bd4a82, 0x050158300e017877, 0xff01450108014a67, 0x14bab9ff3b4edf58, 0x63f3ff01530108bc, 0x123bf90609ffbc6d, 0xff01654001016a00, 0x06d50fffbd916b82, 0xad0cff0173310e3d, 0x023bb5450bffbc0a, 0x0e018e280e019c00, 0xbc62f1c4ff018923, 0x970006bdb7b8efff, 0x20ff3bad9f58ff01, 0x1201aec304bd9624, 0x3db510c2ff01a900, 0xb7c604bb47a0fcff, 0x3cffbcbd2903ff01, 0x0b02047a05bd6dda, 0x0e01d6c50401e413, 0xbc7c0a88ff01d128, 0xdf030b3cfa0324ff, 0x61ff3cac136aff01, 0x0901f6c204bc9d7d, 0x3d03b05dff01f100, 0xff0208bd42776fff, 0xf0ff3dbe9c97ff01, 0x0502280008bdfbc7, 0xff0215c204021a7e, 0xba6730ff3c16c13a, 0xecd2ff02238a05bc, 0x0c3b21adb7ffbb29, 0xff0235190e023a00, 0xe2a725ff3b2fdbbe, 0xf1d8ff02430002bb, 0x0ebb80bc95ff3c2e, 0x0e02dc0009035619, 0x0e02780111029818, 0xff02650012026a15, 0x28f3bdff3c676ae5, 0xe52cff0273060dbb, 0x0dbc4a1c27ff3ab7, 0xff0285040d028a05, 0xcda36bff3a94885c, 0xa79aff02930108bc, 0x0c3d0721b5ff3a74, 0x0602ae390502bc01, 0xbd9f16e0ff02a911, 0xb70208bd02cc20ff, 0xc3ff3c95c5a3ff02, 0x0b02ce8605ba360c, 0x3cd74cf8ff02c90b, 0xd787053da10906ff, 0xefffbd21525aff02, 0x12031283053d095a, 0x0b02f67a05030400, 0xbc814e16ff02f10b, 0xff140ebd7562d4ff, 0x34ffbc625d39ff02, 0xff030d0b0bbc93a9, 0xbe298effbab90672, 0x2800020336010c39, 0x3dd0ff0323010903, 0x0b3b61a47affbcf8, 0xbc288e6eff03310b, 0x48c804bbb379f6ff, 0xa004ff0343030b03, 0x093cf84508ffbc4c, 0xbd6b0225ff035101, 0xe68b05bb913bc2ff, 0x82770503a2310e03, 0x6f380503746d0503, 0x2eff3b1a2514ff03, 0xff037d6f05bbdd3e, 0xae6f21ff3d5d17c6, 0x8f220e039400023a, 0x4affbcf6d284ff03, 0xff039d0009bbae7a, 0x2e526fff3b6420e2, 0xb8000c03c6330ebc, 0x0282ff03b3c90403, 0x0bbc1ffbccff3c8e, 0x3cece140ff03c10b, 0xd8070d3c030b4eff, 0xf8d3ff03d3020603, 0x0b3ba149a4ffbb5d, 0x3d2075b2ff03e103, 0x25220e3c45ee17ff, 0x00cc040405010c04, 0xd340ff03fb060d04, 0xffbce62e34ff3ad5, 0x0417c804bdbd752e, 0xa48659ff04120b0b, 0x0b0bbd1bf558ffbd, 0xffbd826fffff0420, 0x0449c904bdd38e86, 0x04360b0b043bc804, 0x667aff3d58e4daff, 0x2fff0444010cbbbb, 0xbd6de576ffbc615c, 0x04560112045bcb04, 0xbc80ff3d8d9928ff, 0x46ff0464310ebcec, 0x3c91b2efffbb14ba, 0x0584110b067c8d05, 0x04bd0b0b0501190e, 0x048f0a0b049d000c, 0xffb668ff048a6004, 0x000fbb281e13ff3b, 0xffbcafe142ff0498, 0x04af170e3b6859a9, 0x0784d0ff04aa0008, 0x010cbb095c58ffb9, 0xff3bb20289ff04b8, 0x04e1100b3ccdc574, 0x04ce9e0404d30d0e, 0x7fc7ffbac6b3d3ff, 0xe3ff04dcc5043c89, 0x3ca34111ffbcce8f, 0x04ee070e04f3060d, 0xfd3effbc8198eeff, 0x20ff04fc000e3ba1, 0xbda514c4ff3af4dd, 0x0529c4040540220e, 0x0516060d051b0208, 0x62e5ffbb2183b2ff, 0x8cff0524000fbc93, 0x3cd35fa8ffbe2191, 0x600118ff0532020d, 0x1b33ff053bcc043d, 0x0d3c9dcd8effbd07, 0x0405560112056406, 0x3a41d22bff0551c5, 0x5fb4043c738366ff, 0x6fff3c3c2a68ff05, 0x0b05760b0bbb504c, 0x3bafbd3fff057107, 0x7f070dbc877d8dff, 0x42ff3d53d428ff05, 0x0805f00012bc8f6b, 0x0905b0070d05be02, 0xff059d070e05a200, 0x7a75a5ff3c3c265c, 0xf0c2ff05abbc043b, 0x083bd7cf58ffbbe0, 0x3d83131eff05b900, 0xd90a0e3cf10570ff, 0xcf000c05d4c90405, 0x8bffbb3abc70ff05, 0x3cb8c020ffbc8f74, 0x05e6000205eb0d0e, 0xcf10ffbcec48d8ff, 0x0dbd8275bcffbcd6, 0x0e06180112063806, 0xff06050009060a19, 0xf4ed83ffba19cc4d, 0xce07ff0613c2043b, 0x0e3b4b9e36ff3cb6, 0xff0625a304062a22, 0x601f16ffbcb82e24, 0xdb89ff063300083a, 0x0ebd0cae8cffbc1c, 0x0c064e0008065c01, 0x3bd8b050ff064900, 0x57a3043cd30519ff, 0xccffba79bc00ff06, 0x0e066e0108bc1632, 0xbcd434c3ff066923, 0x77000c3d34913fff, 0x3aff3cab68bcff06, 0x0d079c9305bbb8ec, 0x0406cc030e071002, 0x05069e630406ac65, 0xbb492b12ff069990, 0xa700093c01d1eaff, 0x80ff3d4cf420ff06, 0x0506be6b043bbe3d, 0xbd02fc60ff06b98e, 0xc7000dbdcb7548ff, 0x25ffbc711973ff06, 0x0b06f0be043a54a8, 0xff06ddbb0406e203, 0x0107aeff3b0f041f, 0x6b9eff06eb000dbc, 0x0ebb5b021fff3bc5, 0xff06fd2a0e07022b, 0x9e52b4ffb98bbd4c, 0x81e6ff070b2d0e3c, 0x0bb9fb1c48ffbcea, 0x040738bc04075807, 0xff0725000c072a57, 0x37f2ecff38551b64, 0x7c81ff0733a604bd, 0x08baef9ef5ff3a66, 0xff0745050b074a02, 0x9a3b75ffb9e14eb9, 0x6987ff0753000f3b, 0x053ba3a828ffbc87, 0x08076e2d0e077c8e, 0x39372cc6ff076901, 0x77c9043ac71897ff, 0xd1ff3caa65c7ff07, 0x04078e000fbc77b6, 0xbc6730fdff07899e, 0x97c6043b256accff, 0x34ff39a20181ff07, 0x0f082c020db99c26, 0x0407c8000807e800, 0xff07b56f0407ba7f, 0xcfb851ffbb38a09f, 0xb197ff07c3000d3b, 0x0b3a3b0380ffbbd2, 0xff07d5230e07da03, 0xcdaca9ff3c561ed8, 0x1126ff07e3090bbc, 0x0b3b27d47affbc51, 0x0407fe030b080c0b, 0x3af20323ff07f96d, 0x07c804bbdd0bceff, 0xd1ffbcb0af1aff08, 0x0c081e0008bc4e1b, 0x3c49432cff081901, 0x27000cb961b155ff, 0x00ffbc4c693fff08, 0x050874000f3b6e60, 0x040846230e085496, 0x3b087f73ff0841c3, 0x4f280ebc152a4dff, 0x16ff3d7e492dff08, 0x0e0866cc043b122c, 0x3be24895ff08610d, 0x6f0109bcd08d22ff, 0x00ff3d569cedff08, 0x05089800113cabd1, 0xff08850002088a94, 0x91b537ff3bd749c6, 0xa500ff089300023a, 0x0eb9c82227ffbabe, 0xff08a50b0b08aa1f, 0x0722feffba08e364, 0xfedbff08b3230e3a, 0x05bba24509ff3bb5, 0x040afcc6040d3895, 0x040954b40409e0c1, 0x0608f0770509109d, 0xff08dd450508e217, 0x0320b8ff39c60f90, 0xb3f3ff08eb050eba, 0x0ebc9dcdf8ffbab8, 0xff08fd020e090207, 0xb2724bffbb963a2e, 0x1a43ff090b0c0e3b, 0x053b171fa6ffbc5b, 0x120926070d093469, 0xbbe93d52ff092100, 0x2f0e0e3a8b21d4ff, 0xccff3c8b0cceff09, 0x050946010c3aafb1, 0xbaecbc1cff09416f, 0x4f0107b9c9ae64ff, 0x35ff3aa291b3ff09, 0x0e099c3103bc2dfa, 0x04096e0108097c32, 0xbcd004b0ff0969b8, 0x773d01bdb79713ff, 0x8dff3cf086b0ff09, 0x01098e060dbc5da0, 0xbcb94beeff09891a, 0x970d0338920f4eff, 0x1effbdc66034ff09, 0x0c09c0010c3d4781, 0xff09adb50409b200, 0x9fe87bffbc15c4e4, 0xdf3eff09bb000fba, 0x0239f95029ff3b93, 0xff09cd1d0e09d200, 0x7f1cefffbb843a3a, 0x13f5ff09dbc0043b, 0x023c3a499bff3b38, 0x0c0a2c00060a7000, 0x0309fe38050a0c01, 0xbda1ef1eff09f92b, 0x07090bbe2689b0ff, 0xbeffbb8ebb7bff0a, 0x0e0a1ec3043a8547, 0xbc20c91eff0a190e, 0x2700113bcd1a0dff, 0x24ff397e212eff0a, 0x0b0a501a05bc6a58, 0xff0a3d19060a4201, 0x408327ffbd17d661, 0x889dff0a4bc50439, 0x063d1163adff3b39, 0xff0a5d000c0a620a, 0xa3429fffbcf66dc9, 0xf44eff0a6b000fbd, 0x0539c0f891ffbcd1, 0x040a986b050ab86e, 0xff0a85060d0a8ac5, 0x63c4a8ffbba6970b, 0x09e4ff0a9363053c, 0x043c8c41b6ff3b69, 0xff0aa51d0e0aaac4, 0xa8cccaffbcae9ac3, 0xbdb3ff0ab3220e3b, 0x05bd4846d5ffbc81, 0x070ace01080adc70, 0x3da51754ff0ac902, 0xd7c2043d03d92aff, 0xf3ffbbbc7eaeff0a, 0x120aee060d3d0646, 0xbbbb6669ff0ae901, 0xf701073b4065bdff, 0x0bffba6e416fff0a, 0x050c1c73053b410b, 0x050b4c310e0b906b, 0x120b1e01080b2c63, 0x3bb35830ff0b1900, 0x270111bafeea66ff, 0x3fffbbab0a4cff0b, 0x050b3e00023b57cb, 0x3b6fdb81ff0b3968, 0x47230ebc45bafeff, 0xe6ffbb3b3659ff0b, 0x040b70330e3c8fc3, 0xff0b5d0e0b0b62cb, 0x69712aff3cbf22c9, 0x7ed5ff0b6b67053d, 0x0cbde1f41cffbb97, 0xff0b7d01120b8201, 0x6222ccff3c6bace8, 0x35c4ff0b8b0b0bba, 0x05bc84fbabff3bad, 0x0e0bb86d050bd86e, 0xff0ba500020baa23, 0xad727fffbbbb8cae, 0xb36dff0bb3240e3c, 0x0bbbf17770ffbdce, 0xff0bc501080bca13, 0x771648ffbcb2ac76, 0x3385ff0bd301073b, 0x04bd3c107bffbc04, 0x0e0bee120b0bfccb, 0x3b8e2056ff0be935, 0xf70107bcbc1822ff, 0xedff3d280793ff0b, 0x0e0c0e220e3c398e, 0x3c0deb51ff0c0919, 0x170b0bbd73cadbff, 0x22ffbbbc5d1cff0c, 0x050cacca043c05bf, 0x0e0c4800020c687b, 0xff0c35230e0c3a26, 0x584d44ffbc6f93ba, 0x6906ff0c437405bd, 0x0cbbea09a2ff3d52, 0xff0c55c7040c5a01, 0x235c06ff3c41494a, 0x6ab0ff0c637905ba, 0x0e3e052b09ff3bcc, 0x050c7e7e050c8c34, 0x3bc5017eff0c797d, 0x8780053d280165ff, 0xafffbc0ba4f2ff0c, 0x0d0c9e010739f3c0, 0x3d4276a5ff0c9900, 0xa70112bb64268dff, 0xadffbb6e29b0ff0c, 0x0c0cf4010cbd59b7, 0x080cc62f0e0cd400, 0x39d98ecaff0cc102, 0xcf300ebb539ae8ff, 0x46ffbc98de3aff0c, 0x110ce60e0b3b98e5, 0xbb3944d9ff0ce100, 0xef2b0eb9d912f1ff, 0xedff3c024111ff0c, 0x0e0d18280ebbd198, 0xff0d0581050d0a1d, 0xac7235ff3c22be88, 0x5bc4ff0d130108ba, 0x0bbc27581bff3c57, 0xff0d2502070d2a0b, 0x4cb122ffbc6171a4, 0xb3f0ff0d332a0e3c, 0x0b3c1cdfd3ffbd28, 0x0d0e41070d0eb20a, 0x0b0d8c230e0dd006, 0x0e0d5e1d0e0d6c05, 0x3abc6cdbff0d5903, 0x670002ba83f7c9ff, 0xdfffbbcd0980ff0d, 0x040d7e0d0e3bd2f5, 0xbc0d2811ff0d79a7, 0x87c8043bdc71deff, 0xebff3d898c1bff0d, 0x020db0000fbc34ae, 0xff0d9d01070da200, 0xb0fd4cffbbfd37e0, 0x5da9ff0dabcb04bc, 0x0c3c2116e0ffbb9a, 0xff0dbd01070dc200, 0x1e47e6ffbc5dd51a, 0x3758ff0dcb030bbc, 0x04bd13e35affbcbf, 0x120df801120dfdb3, 0xff0de5010b0dea00, 0xb2fb68ff3c1e60a0, 0x7691ff0df3010e3b, 0xffbc062073ff3a64, 0x0e21000f3d37c310, 0x0e0e96050e13bf04, 0x5052ffbd34e965ff, 0x05ff0e1ccb04bd9d, 0x3bc52c80ffbc9589, 0x0e2e070e0e33cb04, 0x14a3ffbb7f8a09ff, 0x69ff0e3c01073af8, 0x3bc89c47ffbc62fe, 0x0e69000b0e770002, 0xe02b38ff0e520107, 0x5f96050e6402073b, 0x14ff3c681171ff0e, 0x3c8e1f4fff3c43e6, 0x03e644ff0e720107, 0x0107bc136aa8ffbd, 0x96050e9f030b0ea4, 0xfeff0e8c00120e91, 0x3c9ab380ff3d20b3, 0x6ad28cff0e9a010b, 0x70ff3c37ef04ff3c, 0xff0ead010b3bce0e, 0xbbcb60ff3c3def28, 0x46ca040fc9080e3b, 0xe200120f02070e0f, 0xcfc3040ed4010e0e, 0x11ff38ff779eff0e, 0xff0edd020e3bedd5, 0x920fb4ffbc18d49d, 0xef01120ef4a404ba, 0x0dff3b2543bfff0e, 0xff0efd000f3ce358, 0x9271e6ffbbb33c9c, 0x18c8040f2600113b, 0x8ad2ff0f13c7040f, 0x023ca8d8cbffbc54, 0xbc0300e4ff0f2100, 0x38c7043b25817bff, 0x37e1ff0f3301120f, 0x0cbcfa1fd0ffba37, 0xbc20e39eff0f4100, 0x85060dbcf23368ff, 0x60010c0f65cb040f, 0x6eb8ff0f5b01080f, 0xff3cb61720ff3d39, 0x0f77cc04bc10d280, 0xb576fbff0f720107, 0x0b0bbac386f0ffbb, 0xff3b7edd50ff0f80, 0x0fa9000c3a778515, 0x0f9601070f9bcb04, 0x8230ffbbb71fb4ff, 0xe4ff0fa40107bc41, 0x3c17c05bff3b8fcf, 0x0fb601070fbb0b0b, 0x1c56ffbc17950bff, 0x94ff0fc4060e3c00, 0x3cb547c8ff3c0848, 0x10150e0e1059110e, 0x0fe7cc040ff50002, 0x1c1815ff0fe2060d, 0x0012bc3013c8ffbb, 0xff3d0efc14ff0ff0, 0x10070b0e3a28985e, 0xb42e48ff1002000c, 0x0111bcb315d1ffbb, 0xffbb9a8880ff1010, 0x1039060d3b469aca, 0x10260107102b0b0b, 0x3f98ffbb603c00ff, 0x58ff10340107bbed, 0xbc714820ffbc85b8, 0x10460b0b104b0107, 0xff44ffbc973d00ff, 0x49ff10540207bcaf, 0xbc84cb3fffbc823b, 0x106f130e1086150e, 0x033653ff106a0112, 0x01113d357f40ff3d, 0x23ff107c000c1081, 0x3c8b3492ff3b3d35, 0xaa000cbd47b220ff, 0x970108109c010710, 0xb6ff3ab1a12eff10, 0xff10a5cd04bbbb84, 0xe3145bff3b4c6832, 0xb71d0e10bc1f0e3b, 0xbcffbb7a66cfff10, 0xff10c500023d3fa6, 0x1df194ffbd5f1343, 0x000008000000133d, 0x000001000003e800, 0x0000000000110900, 0x848c0508ee000700, 0x2cc1040248c70404, 0x5cb20400a0bb0401, 0x2e6105003cb00400, 0x458fff0029ae0400, 0x043b1d2b32ffb8d6, 0xb8eaf9a5ff0037aa, 0x4e040d3a99bd7eff, 0xb1f9ff0049000c00, 0x0ebab0be2bff3cb6, 0x39ece1bbff005719, 0x80b504bbf29cb9ff, 0x6d230e00727f0500, 0x29ffbb31d316ff00, 0xff007bb404bad9ae, 0x5f1f8fffb9691853, 0x8d000c00928905bc, 0xa4ff3ae9b27dff00, 0xff009b070b3bb68b, 0xa66660ffbbcf6cc4, 0xc8070d00e802093b, 0xb5800500babd0400, 0x83ffbb969328ff00, 0xff00c32b0e3b2212, 0xdab5ceff3ba2626b, 0xd5000900da0e0ebb, 0x52ff3d02b70cff00, 0xff00e30208bcc91f, 0x01e67cffbd19ac6b, 0xfe2b0e010c0b0b3c, 0x73d0ff00f9870500, 0x12bb6bebaeffbc70, 0x3c038c38ff010701, 0x1e8405be2aa600ff, 0x41e2ff0119000201, 0x0dbc633fe3ff3bb0, 0x3c6f5352ff012706, 0xbc7905bb255555ff, 0x5829050178770501, 0x452605014a000c01, 0x1affba222388ff01, 0xff015319063d0a58, 0x8ac7eeff3c174c15, 0x65c404016a6105bb, 0x35ffbc6e1695ff01, 0xff01736305bb2089, 0x2dd1f9ff3d102b3b, 0x8e2f0e019c000639, 0x62a3ff01890e0e01, 0x0ebc1e58ecffbd9f, 0x3b90803bff019736, 0xae0108bce2bfe0ff, 0x3b9bff01a91c0e01, 0x06bda5f2b1ffbc6c, 0x3d723958ff01b705, 0x0400023ca6d5b4ff, 0xd67a0501e4c30402, 0x063dff01d1c20401, 0x0e3e137ab8ff3c31, 0x3a37e11eff01df23, 0xf6c604bc0cc181ff, 0xc01bff01f1010c01, 0x0cbc39917bff3b50, 0xbbfedaf9ff01ff00, 0x287b053c3b14cfff, 0x150d0b021a020802, 0xb8ff3c2e966fff02, 0xff022300123d7d64, 0x2d42faffbb8eb47b, 0x35010c023ac304bd, 0x45ff3a22bf3eff02, 0xff024383053c9bcd, 0xe6885dffbc3f093d, 0xdc180e03681c0e39, 0x7802080298030b02, 0x651406026acb0402, 0x99ffbcd9961bff02, 0xff0273020d3a1154, 0x96c408ff3c40c72f, 0x853d05028a030d3d, 0xe2ff3d01f52dff02, 0xff0293060ebc9485, 0x5b6927ff3cc3e3f8, 0xae010c02bc140e3d, 0x456fff02a9100e02, 0x043c07221bffbb3a, 0x3c2b20f2ff02b7cb, 0xce060dbc4488f7ff, 0xc9f2ff02c9c80402, 0x0c3b7d5873ffbcf2, 0x3c4e40a9ff02d700, 0x240008bc868bc8ff, 0xf601090304c80403, 0x1eecff02f1070d02, 0x11bc6ffb96ff3d14, 0xbc33477dff02ff00, 0x16000c3b783a45ff, 0x43e2ff0311000203, 0x0ebbf7d945ff3cf0, 0xbc1ae911ff031f19, 0x48010cbd2547e0ff, 0x35c904033a000c03, 0x70ff3c34e6eeff03, 0xff03435505bc1c58, 0x83c23bffbc6ef8a0, 0x558505035a0b0b3c, 0x7dffbcc9af38ff03, 0xff036300113c100f, 0xd91596ff3d77df9c, 0xb4000203f8220e3c, 0x86210e0394840503, 0x6358ff0381030b03, 0x053d201293ffbcea, 0x3c78ecc3ff038f24, 0xa6000cbce5568dff, 0xd3edff03a1001203, 0x0d3c53f116ffbcbe, 0xbd529d39ff03af07, 0xd889053c8d5c86ff, 0xc5830503ca880503, 0x68ff3b9a1546ff03, 0xff03d30208bc72ff, 0xa57faeffbe1f9f1c, 0xe58a0503ea1f0ebd, 0x44ff3d2d9e27ff03, 0xff03f3000cbd3465, 0x1d8f19ff3d20b659, 0x2001080440cd043e, 0x0d00110412010c04, 0xedff3bbfe81cff04, 0xff041b060dbb1654, 0x7bbeabff3b50ac09, 0x2dcc0404320011bc, 0xd0ff3b7c5894ff04, 0xff043b230ebca11c, 0x8bba4eff3ca491db, 0x56000f04640b0b3a, 0xe2f8ff0451030b04, 0x05bd1c70beffbbb6, 0x3ce38880ff045f79, 0x7600023bdec389ff, 0xadc3ff04712b0e04, 0x0ebb984b1bff3c1b, 0xbd67b0b9ff047f2b, 0xb28d05bbc26fedff, 0x1c000f05a8230e06, 0xb8b00404d80a0b05, 0xa59b0404aaa10404, 0x98ff3b778eeaff04, 0xff04b30002bcf9bb, 0x06bad5ff3d03c116, 0xc5010804cac604bd, 0x63ffbcc0bf4aff04, 0xff04d300023c4023, 0xc7d708ffbd203f7b, 0xee000804fc9904bd, 0x4abdff04e9000c04, 0x0e3bef4987ffbc9e, 0xbdbdf77aff04f703, 0x0ebe04bd300b08ff, 0xcd0eff0509000905, 0x043c265d75ff3b9f, 0x3ca1f248ff0517ca, 0x64c704bd09a3c8ff, 0x36bc040544080e05, 0x9917ff0531070e05, 0x093b239028ffb81c, 0x3c222516ff053f02, 0x569d04bbc350fdff, 0x2492ff0551050b05, 0x043cdea7b2ff3a6a, 0xbb58de54ff055fbc, 0x880d0e3b445677ff, 0x75c804057a060d05, 0x14ffbc8d4370ff05, 0xff058300123d2374, 0x982e72ff3c5c5f0e, 0x95140b059ac904bb, 0xf8ffbc9f5979ff05, 0xff05a3060d38da1b, 0x7da4e3ff3c0f7ecb, 0xf4000c062f280ebb, 0xc6260e05d4c10405, 0x3d4bff05c1011105, 0x0bbc88d950ff3a92, 0xbc9dd0edff05cf05, 0xe60008bd600055ff, 0x7e40ff05e10e0b05, 0x0e3de39b52ffba74, 0xbd981ee7ff05ef25, 0x18010c3c523d80ff, 0x050002060a000906, 0x08ffbc4010acff06, 0xff0613ba04bcb955, 0xac74d0ffbd569160, 0xaac0ff0621c2043c, 0x0dff062a0002bb55, 0xbd2ec027ffbcb1a2, 0x0657000f0677040b, 0x0644b2040649b404, 0x4794ffbc1139e4ff, 0x7aff0652be043d35, 0xbbb55399ffbd0fd9, 0x0664010c06690111, 0x3418ffbc148800ff, 0x6cff06722b0e3cf8, 0x3cd2f271ff3c0ca0, 0x068d330e0692000f, 0xb0995aff0688ca04, 0xe8ffbd8f3570ff3c, 0x0e06a40111bd2261, 0x3c2bd96bff069f2b, 0xad0b0bbb8f398cff, 0x81ffbc9dc7c6ff06, 0x0d07d29305bbbe52, 0x040702030e074602, 0x0d06d48f0506e240, 0x3c6e10a8ff06cf00, 0xdd00023b671600ff, 0x30ff3c891318ff06, 0x0506f4010b3cbd24, 0x3c25c169ff06ef8f, 0xfd0209bc4d1dc1ff, 0xa5ff3abebf9cff06, 0x0b0726be04bb7c3e, 0xff0713280e071803, 0xf47ddfff3b0c271f, 0x5cedff0721220ebb, 0x04bc2068aaffba0a, 0xff0733c4040738c5, 0x040e03ff3b0505f2, 0xb7c9ff0741c7043d, 0x0b3b1dbb63ffbc56, 0x04076ebc04078e07, 0xff075b000c076057, 0x258dd8ff383fd0a1, 0x7030ff0769a604bd, 0x08bad7a897ff3a4f, 0xff077b050b078002, 0x8acf0cffb9cac6b0, 0x4ebfff0789010c3b, 0x053cf2a2aeffba4c, 0x0407a42f0e07b28e, 0xbae50059ff079fb7, 0xadc9043b05455fff, 0x50ff3d29228fff07, 0x0407c4000fbc5ef1, 0xbba45ea0ff07bfbb, 0xcdc6043bd9e066ff, 0xc5ff3991cdb2ff07, 0x040862020db98c88, 0x0e07fe9505081ec8, 0xff07ebbd0407f02a, 0xceb6bdffba9693c9, 0x994cff07f994053b, 0x043d86847cff3ddb, 0xff080b170e0810c6, 0x23a1edffba971577, 0x7613ff0819030bbc, 0x08399ad4dfff3d27, 0x020834230e084200, 0xbd169b12ff082f00, 0x3d2a0e3aae34abff, 0xefff3cbe0f1dff08, 0x0b08540002bc04a0, 0xbd06c51cff084f05, 0x5d230e3b340b80ff, 0x45ff3cb3182eff08, 0x0508aa000fbc83e8, 0x04087c230e088a96, 0x3af5b2aaff0877c3, 0x85280ebc063f94ff, 0x16ff3d64db7eff08, 0x04089ccb043b038e, 0x3bafc7dbff0897c9, 0xa50109bd186ce8ff, 0x80ff3d38f29cff08, 0x0408cecd043c9aa2, 0xff08bb170e08c0c8, 0xcab18dffb9a7a46d, 0x8ea3ff08c9060db9, 0x05b93b1dc9ff3ab0, 0xff08db000908e094, 0xc80645ff3c24f673, 0x0f64ff08e9060dbb, 0x05badf8a17ff3b1e, 0x0d0b32c6040d6e95, 0x0e098a260e0a1600, 0x0609261c0e094620, 0xff09133e04091800, 0x262c7affbb61d354, 0x6610ff0921070b3c, 0x08badb2aeeffbc78, 0xff09337004093800, 0x261e67ffbc7fcda5, 0x3b46ff09411d0e3c, 0x01bb805333ffbcd4, 0x01095c3401096a36, 0xb8f7128dff095733, 0x65230e3c3f757cff, 0xb4ffbc898b84ff09, 0x0b097c80043cd0b9, 0x3a4cf81cff097702, 0x85250e3d2830ccff, 0xafff3b2a764cff09, 0x0309d2b5043cbb64, 0x0409a43a0509b22c, 0xba71e49eff099fa7, 0xad4b04bc90392eff, 0xd7ffbd57da63ff09, 0x0e09c4090bbb54fb, 0xbcfdab54ff09bf2a, 0xcd5d04bc2dbf5bff, 0xb9ffbdfb3f2aff09, 0x0609f62a0e3a82c6, 0xff09e3020709e800, 0xd282e6ffbd20650d, 0xdc49ff09f10008bd, 0x0cbcd92a2dff3ab6, 0xff0a03b8040a0800, 0xa8ea02ff3c29d9e2, 0x2fbbff0a11020bbc, 0x0e3c5d97b5ffbc5f, 0x0d0a6200080aa62b, 0x0b0a348b050a4203, 0xbc3a38c9ff0a2f01, 0x3dc40439a7bb56ff, 0x59ffbb8c416cff0a, 0x040a54240ebcfc30, 0xb8a22f34ff0a4fc5, 0x5d250ebbceb135ff, 0x9dffbc77b59cff0a, 0x060a86be04ba90f5, 0xff0a73010c0a7809, 0xe8d7a6ffb90a1537, 0xed2aff0a81aa043a, 0x0eba2d8af4ff3b53, 0xff0a9301110a982a, 0x0c59ebffbb01de1b, 0x9824ff0aa1c0043b, 0x0bb94d9230ff3c94, 0x0e0ace060d0aee0b, 0xff0abbc0040ac02e, 0xa93ba7ffb987915a, 0x8bd4ff0ac9c404bc, 0x0e3a8af3dcffb809, 0xff0adb2d0e0ae030, 0xe8ba9bffbaa35d21, 0xbafbff0ae9060bbc, 0x0dbb58ce88ff3c1d, 0x0e0b04120b0b1206, 0x3d06e531ff0aff2c, 0x0db704bc5753dfff, 0x01ff38abfcbdff0b, 0x040b2400123bb8ab, 0xbd180d82ff0b1fb8, 0x2d00023ca6adf1ff, 0x28ffbdabd764ff0b, 0x050c5273053c72c7, 0x0e0b82330e0bc66b, 0x050b54220e0b622b, 0xb8c42412ff0b4f61, 0x5dc904bb0f8003ff, 0x12ff3b1db429ff0b, 0x040b742c0ebb159a, 0xbe3a8f3eff0b6fc8, 0x7d0c0539518f61ff, 0xd8ff3d17e585ff0b, 0x080ba65b05ba9bc4, 0xff0b93c7040b9800, 0xfcd876ffbd80f9cd, 0x1f59ff0ba10112b9, 0x053a8ddb01ff3c81, 0xff0bb35c050bb85d, 0xcf617effbcbea5a6, 0x9be0ff0bc1340ebd, 0x05bc89faa8ff3ae8, 0x0e0bee6d050c0e6e, 0xff0bdb240e0be028, 0x6c4974ff3ba19642, 0x0a59ff0be9300e3d, 0x0b3a2e20aaffbc91, 0xff0bfb02070c000d, 0x8ce529ff3c809a6d, 0x8950ff0c09010cbc, 0x05bc86ea58ffbd21, 0x080c24000f0c326f, 0x3ae128b6ff0c1f02, 0x2d010cbd1c642dff, 0x78ff3cd5a660ff0c, 0x0e0c4472053d885a, 0xbc4ebc7fff0c3f2a, 0x4d01073b437444ff, 0xfeffbb2ef059ff0c, 0x070ce2ca043c9fd3, 0x0e0c7e220e0c9e01, 0xff0c6b78050c701d, 0x6c3eeeffbc31baed, 0x868dff0c79060db8, 0x0e3d053198ffbc1c, 0xff0c8b070d0c9023, 0xddea3cff3c086798, 0xbd9eff0c990112bc, 0x04bbb403e8ff3afe, 0x0e0cb4c7040cc2c9, 0x3b93555bff0caf23, 0xbd0011baa25521ff, 0xbfffbb3f0684ff0c, 0x0c0cd4310e3b0a31, 0xbab3e564ff0ccf00, 0xdd0207bc13b131ff, 0xadffbcf59476ff0c, 0x0e0d2a010cbdd4e6, 0x0d0cfc080e0d0a36, 0x3d7527d9ff0cf706, 0x050e0bbb8b4756ff, 0xe7ffba2707f4ff0d, 0x050d1c01073b4972, 0xbcf396f0ff0d1779, 0x2579053d4506daff, 0xc0ff3d45ad46ff0d, 0x0e0d4e280ebc35cf, 0xff0d3b1c0e0d401d, 0x2ce2b0ff3b56148b, 0x04efff0d49cc04bc, 0x0d3834a509ff3c94, 0xff0d5b00120d6006, 0x075c95ff3d95bcba, 0xe977ff0d69cb04bb, 0x0bbc333dd0ffbd75, 0x0b0e89060e0f9c13, 0x0e0dc2010c0dfd07, 0x120d94050b0da203, 0xba7cc982ff0d8f01, 0x9d99043b3788d1ff, 0x3affbac18715ff0d, 0x040db4cb04bca1e5, 0xbc0eed04ff0dafae, 0xbd0107bcad7ccbff, 0x55ffbbaf2280ff0d, 0x080dddbd043c4e42, 0xff0dd396050dd800, 0xa0b17cffbc56b9cd, 0x020bbb31db20ffbc, 0xf8ff0dea01070def, 0x3b909ec0ffbbc893, 0x9bd060ff0df8010e, 0xc304bbe217d3ffbc, 0x000d0e25bb040e45, 0xcdff0e1201120e17, 0x3c86fdcfff3c9ac0, 0x8d8e33ff0e200a0b, 0x00023b1fc156ffbb, 0xc1ff0e3200110e37, 0x3c316a27ff3afcac, 0xda3c8cff0e40000c, 0xc604bc880567ffbb, 0x000c0e5b00020e69, 0xff3bee8671ff0e56, 0x0e64010e3c265d49, 0x0899ff3bbde55fff, 0x020e0e7b000c3b24, 0xffbb482aadff0e76, 0x0e8400083baa0cfb, 0x765bffbb6c5d9eff, 0x01080f101d0ebc96, 0xbc040eb5c3040ed5, 0xb4ff0ea200020ea7, 0xba73e620ff3b6bf8, 0x0242a8ff0eb0060d, 0x070d3c89b9d9ffbc, 0xc9ff0ec2050b0ec7, 0x39c98b57ffba2332, 0x10a1feff0ed0c804, 0x00113c076d4aff3d, 0x00ff0ee200020ef0, 0xff0eeb140e38ec9c, 0x585020ffba9d7a9a, 0xfd030b0f02cb04bb, 0x9cffbc0c210dff0e, 0xff0f0b01123ca3e1, 0x5d6be0ffbc360355, 0x38000c0f580002bb, 0x25240e0f2a2b0e0f, 0x40ffbc0e19f2ff0f, 0xff0f33c0043b3978, 0xf1bb60ffbc52889b, 0x45c9040f4a000fbc, 0x00ffbc7769c0ff0f, 0xff0f53001239f8b8, 0x072236ffbd853370, 0x6e00110f7c9605bd, 0x9d26ff0f691f0e0f, 0x0ebcdae2a2ffbb80, 0x3bc5ccfbff0f7723, 0x8e030bbac6bcb8ff, 0xab23ff0f89cd040f, 0x12bbda2444ff3b25, 0x3cffac08ff0f9700, 0x6296053d16d6b8ff, 0xecc604101eca0410, 0xbe01070fccc3040f, 0x51d5ff0fb9b4040f, 0x11bb72e422ff39d0, 0xbc30a9ccff0fc700, 0xde030ebb1f87f0ff, 0xfbd9ff0fd900020f, 0x123af2bc9cff3c16, 0x3c4d3202ff0fe701, 0x07060d3bf245b0ff, 0x7144ff0ff9080e10, 0x60ff10020002bbec, 0xbb1f89c0ffbbab34, 0x1014c70410190012, 0xb140ffbc48f8c4ff, 0x0e3ba0dc40ff3992, 0x0e10461d0e104b1f, 0xff10330011103808, 0xf9cb8dff3bdfd611, 0x6df2ff104100083c, 0xffbb3aaa33ff3be1, 0x105d00023d836c3a, 0xf7b0f0ff10580012, 0xa0ffbc800ed0ffbc, 0x0e10e0110e3c2eb1, 0x07108e020e10ae0b, 0xff107b000e108001, 0x3d8188ffbc017be8, 0xea20ff1089060dbb, 0x023bc62c8cff3aec, 0xff109b060e10a000, 0x855623ff3c30a4a0, 0xd140ff10a900123b, 0x07ba94aa20ff3b87, 0xff10bb001210c001, 0x70b238ffbc9e65bc, 0xcd001210d20207bc, 0x78ffbc5555c8ff10, 0xff10db060dbc4998, 0x71eebcffbc68b628, 0x8794ff10e9140ebc, 0x000210fb0011bd06, 0xff3bf203f0ff10f6, 0x110400023bcb6d58, 0x0accff3c450b74ff, 0x0008000000133c0f, 0x0001000003e80000, 0x0000000010b80000, 0x8c0508e500070000, 0xc1040248c7040472, 0x620500a06705012c, 0x6c04003caa04005c, 0xedff00291106002e, 0x3a65a3fbffb8fb94, 0xbcae60ff0037a504, 0x02083aea5c24ffb9, 0x45ff00496105004e, 0xbc454725ffba84e3, 0x10ef60ff00573c05, 0x060dbb2d9bcaff3b, 0x000d0072010d0080, 0xffbc17154eff006d, 0x007b020bbd1a039b, 0xaa9bffbbbc8f54ff, 0x070d0092001239c3, 0xff3aac57d2ff008d, 0x009b0108bbdc7be8, 0xc7abffbc4a4322ff, 0x2b0e00e8ad043bac, 0x020800ba000f00c8, 0xff3a3f182eff00b5, 0x00c3080b3c4b62c7, 0xcdb2ffba23b5c1ff, 0x010d00da030b3a63, 0xffbc46f74eff00d5, 0x00e36d053c09760d, 0x5f75ff3b25b5a6ff, 0x0108010c7305bc28, 0xceff00f9ae0400fe, 0xbb1ada25ffbcb0ea, 0xe26262ff0107230e, 0xb504bac21729ff3b, 0xeeff0119ae04011e, 0xb9b16ee6ffbc5219, 0xef6d80ff0127070b, 0x75053b669726ffbb, 0x01120178070b01bc, 0x0002014a02080158, 0xff3c48abd3ff0145, 0x0153010cbd3870b2, 0xb698ff3c8406d9ff, 0x1e05016a010e3d15, 0xffbcb20d35ff0165, 0x01730008bb8c6d96, 0x5d1cff3c02751bff, 0xc204019c7105392c, 0x6bff01890006018e, 0xbc37c2edff3cb37c, 0x334a14ff01976d05, 0x01083c84cb17ffbb, 0x96ff01a9730501ae, 0xbcb24c5cffbd7f21, 0x92a900ff01b7190e, 0x8105bb3d4f82ff3d, 0x000801e41d0e0204, 0x11ff01d1020901d6, 0x3a924297ffbc6a9b, 0xf94fa5ff01df180e, 0x0b0b3d3d0376ff3b, 0x4bff01f1000601f6, 0xbcca8150ffbb681e, 0x7d3d10ff01ff1f0e, 0x89053b6d5107ff3d, 0xc204021a83050228, 0xff3c1250f4ff0215, 0x02230008bc467dad, 0xe8e5ffbb08131cff, 0x270e023a0a0b3ae3, 0xffbc35cf79ff0235, 0x0243010c3b09ffbe, 0xc684ff3b15d8acff, 0x180e03561c0e3c1d, 0x02080298030b02dc, 0x2905026acb040278, 0xff3bc3b86cff0265, 0x0273020dbb87747f, 0xb06fff3c2d8012ff, 0x000c028a030d3d87, 0xffbc85abb2ff0285, 0x0293040d3ce9ec7f, 0x9554ff3d88feebff, 0x010c02bc140e3d1a, 0xa9ff02a9070d02ae, 0xbcb1f1abffbae81c, 0x70610eff02b7140b, 0x060d3c7d9bccffba, 0x34ff02c9000c02ce, 0x3c08cd14ffbc12d1, 0x6940c5ff02d7c804, 0x0008bc8b57d6ff3b, 0x8605030413060312, 0x70ff02f1001202f6, 0xba51f06fffbc813c, 0xb741f6ff02ffc804, 0x0002bbb3338bff3b, 0xff3d35be30ff030d, 0x0336010c3d2373c8, 0x0323c9040328000c, 0xb5f1ff3c22cfceff, 0xb4ff03310b0bbc0c, 0x3c915066ff3a1759, 0x0343190e03480b0b, 0x4f70ff3c04047aff, 0x0dff03510012bcbc, 0x3cc36037ff3d5f16, 0x03a2000203e6220e, 0x0374800503828105, 0x48791cff036f7f05, 0x010c3e0775deffbb, 0xffbd3c46c4ff037d, 0x0394000cbd7404ab, 0x3ebf5aff038f060d, 0x070dbcabbebdff3c, 0xffbd393c35ff039d, 0x03c689053c303a59, 0x03b3830503b88805, 0xb2adff3b8aacbeff, 0xccff03c10208bc5a, 0xbd94f2eaffbe0fa8, 0x03d38a0503d81f0e, 0x5b24ff3d1c4189ff, 0x1aff03e1000cbd22, 0x3e0dcd96ff3d10a4, 0x040e060d042e8b05, 0x03fb011204002b0e, 0x6ad1ff3c1fd5d7ff, 0x75ff04090112bbfc, 0x3b5cd9a9ffbb8216, 0x041b2e0e04200002, 0x3c2effbc0dc09eff, 0x33ff0429cc043bb8, 0xbc63dd9eff3b4a55, 0x0444c8040452c904, 0x1d7c25ff043f0009, 0x010cbd2d5df4ff3d, 0xffbc4fba6bff044d, 0x0464cb04bd54c7ea, 0x88b504ff045f0208, 0x310ebc334240ff3d, 0xffbb0bf6afff046d, 0x06b28d053c82844c, 0x050a000f0596230e, 0x04a6b40404c60a0b, 0x0493000804980108, 0x56e6ff3b66e062ff, 0x8eff04a10208bc8c, 0x3d5c0230ff3c9313, 0x04b30d0e04b8220e, 0x2a01ff3d38a895ff, 0xa6ff04c10009bd0a, 0xbc8fdf37ff3d1260, 0x04dc870404ea9704, 0x8e767aff04d7000c, 0x030e3c1be8c0ffbc, 0xffbdfc26eaff04e5, 0x04fcbe04bd1e7058, 0xebfee5ff04f7220e, 0xc904bbd690c8ff3b, 0xff3ca14d6bff0505, 0x0552c50439d2b99a, 0x0524011205329c04, 0x82bd92ff051f080e, 0x00093c0b1502ff3a, 0xffbd1321ddff052d, 0x0544b5043b0b3417, 0x445e21ff053fa304, 0xb604ba100af6ffbc, 0xff3cc875ddff054d, 0x057600113911a5ca, 0x05630d0e05681f0e, 0x89d3ff3c47e625ff, 0x0bff0571c604ba5e, 0x3cd7d57affbc8f84, 0x0583060d05880208, 0x3ebdffbb2f0eddff, 0xcdff0591030bbc63, 0x3c90512cffbbf37d, 0x05e2000c0626280e, 0x05b4ca0405c20012, 0x6d7680ff05afc704, 0x250ebc1605c9ff3b, 0xffbd54f285ff05bd, 0x05d4060dbc2abfbc, 0xadf19bff05cf250e, 0x00083b1a5f13ffbc, 0xff3e4922bcff05dd, 0x0606010c3b76db80, 0x05f3000205f80009, 0xcc88ffbc2cdbceff, 0x70ff0601020dbca6, 0x3c9b35eeffbd411c, 0x0613000206180009, 0x7a4dffbc721efeff, 0x00ff0621cc04bd39, 0xbc655800ffba594d, 0x064e0108066e0d0b, 0x063b330e06400002, 0xdd42ff3ab1be37ff, 0x75ff06490009bcb6, 0x3c868c75ffbc44c6, 0x065b000c0660c404, 0x87f2ff3c2301bcff, 0x64ff06692a0e3e0f, 0x3c04d551ffbcd637, 0x0684000c06920e0b, 0xed8113ff067f0008, 0x00023d27f834ffbc, 0xff3de530a5ff068d, 0x06a4000c3c8fef88, 0x9b908bff069f0112, 0x0009bc139ad0ff3c, 0xffbc57b192ff06ad, 0x07c993053c9e9e4b, 0x06f9030e073d020d, 0x06d4040b06e20b0b, 0x1e1814ff06cf4804, 0xa704bb121976ff3c, 0xff3b2f539bff06dd, 0x06f4000c3d18c010, 0x5d7e78ff06ef8f05, 0x5effbc54e082ffbc, 0x0e071d140ebc8d0c, 0xff070a0209070f07, 0xd2fd66ff3b8acb2a, 0x41bfff0718010bbc, 0x0eba74911cffbc12, 0xff072a2b0e072f31, 0xb85a87ff3ade6260, 0x7866ff0738330ebb, 0x0bbc28dd43ff3c86, 0x040765bc04078507, 0xff0752000f0757ba, 0x801ab1ff39afdd1e, 0xf59eff0760060db9, 0x0bbc8fff8fff3b30, 0xff0772000f077703, 0x1cc7acffbb5b4708, 0x540bff078000023a, 0x05bba592eeff3c11, 0x04079ba70407a98e, 0xba2a6fdbff0796a1, 0xa4b6043c96bb41ff, 0xa9ffbbd9b4d2ff07, 0x0507bb000f3b0705, 0x3b73137bff07b691, 0xc4c604bbf5c64bff, 0xd4ff3983396eff07, 0x0f0859020db97cf6, 0x0407f50109081500, 0xff07e2950507e7c6, 0x0afaf6ff3b09bc0b, 0x6c26ff07f01d0ebb, 0x0eba859b88ff3c8e, 0xff0802000c080703, 0xd7d7e5ffbcc4e40b, 0x5717ff081000023b, 0x0bbc7383d7ff3c78, 0x04082bbc0408390b, 0xb9621e12ff08266d, 0x34c804bc006eebff, 0xc5ffbcb75d62ff08, 0x0c084b0008bc4921, 0x3c3157adff084601, 0x54000cb9ab3eabff, 0x00ffbc534b5fff08, 0x0b08a1000f3a8e86, 0x020873020b08810a, 0xbbedc0deff086e00, 0x7c000c3c769b1dff, 0x76ff3bd5d7f5ff08, 0x050893a504bbd1d3, 0x3da461d3ff088e94, 0x9c060d3cb02aa0ff, 0x88ff3b2e79eaff08, 0x0e08c50011bceb68, 0xff08b20d0e08b71d, 0x16b885ffba2ff6ca, 0xd577ff08c00b0b3b, 0x0ebc3132b9ff3c0e, 0xff08d20b0b08d71f, 0xe7d723ffb9f68f93, 0x32d7ff08e0000839, 0x053c045828ffbae6, 0x040b29c6040cde95, 0x040981b4040a0dc1, 0x05091d0a06093d9d, 0xff090a2305090f8e, 0xbda609ffb9c9c936, 0x27a7ff0918000f39, 0x0e3a5629dcffbb5e, 0xff092a050d092f00, 0x036de9ffbbef6676, 0x322cff09381606bb, 0x05bb5b77a6ff3b50, 0x120953070d096169, 0xbbd1f15eff094e00, 0x5c0e0e3a78b569ff, 0xa5ff3c79b928ff09, 0x050973010c3a9ae3, 0xbb1222d8ff096e71, 0x7c0107b881f4cdff, 0x10ff3a8aae39ff09, 0x0e09c93103bc1d64, 0x04099b010809a932, 0xbc301404ff0996b6, 0xa43003bd86c93bff, 0x02ffbbc387e4ff09, 0x0409bb060dbd33ca, 0xbb3acaf6ff09b6c0, 0xc439013cf8eb45ff, 0x87ff3d723d84ff09, 0x0c09ed010c3ca5b3, 0xff09dab50409df00, 0x8bfaecffbc05e00b, 0xc6a2ff09e8000fba, 0x0239ee9a41ff3b84, 0xff09fa1d0e09ff00, 0x6205e0ffbb7002a1, 0x0edeff0a08170e3b, 0x023bd92200ff3ad9, 0x0c0a5900060a9d00, 0x0e0a2b38050a3901, 0xbe7ccbd5ff0a2630, 0x34c504bdc4c922ff, 0xfeff3a7a64abff0a, 0x050a4b6505bb4a99, 0x391659a1ff0a4662, 0x5401083d075806ff, 0x6dffbc0e3256ff0a, 0x0f0a7d06063c0366, 0xff0a6a030d0a6f00, 0x9dae3affbdfcc0ab, 0x284cff0a78030bbd, 0x05bd7af100ff3c4d, 0xff0a8a020b0a8f25, 0xde5160ffbb93b2f9, 0xcfecff0a9810063b, 0x083ac24ab3ffbce3, 0x0e0ac52a0e0ae502, 0xff0ab20e0e0ab728, 0x6a827fff3ae49f2c, 0x907cff0ac00112bb, 0x043b28bdb7ffbd2e, 0xff0ad2000f0ad7c5, 0xa784e6ff3c86e5f8, 0x2f26ff0ae00112bb, 0x0fbb5ed8e6ff3d11, 0x050afb220e0b0900, 0xbd318839ff0af639, 0x04020d3b22ef97ff, 0x92ffbc98d017ff0b, 0x040b1b3b05bd9853, 0xbcf1f3cdff0b16c5, 0x2447053b2e783cff, 0xcbff3cf56f4bff0b, 0x050bc23601bac785, 0x3dca1dc4ff0b3607, 0x0b5e01070b7e0006, 0x0b4b38050b502701, 0x2080ffbd46ed8eff, 0x40ff0b590008bd82, 0xbd064480ffbc58fd, 0x0b6b000c0b700008, 0x9030ffbb90a880ff, 0x58ff0b79020d3cd6, 0xbbeaa0ecffbd033e, 0x0b941d050ba2cb04, 0x557b84ff0b8f0108, 0x01063d531a84ff3d, 0xff3cae2056ff0b9d, 0x0bb401063b341540, 0xd50cd3ff0baf0d05, 0x01073d0b0314ffbc, 0xffbd7b4de4ff0bbd, 0x0c526e05bdca0638, 0x0bee01080c0e0b06, 0x0bdb6c050be0010c, 0x7a18ff3bd4a409ff, 0x87ff0be90207bc82, 0x3b443ac8ffbc2578, 0x0bfb260e0c00280e, 0x2e4effbaaad2b6ff, 0xe6ff0c095c053d15, 0xbb91e7d7ff3b24d7, 0x0c2452050c322a0e, 0xb4c118ff0c1f4c05, 0x0e063d30e06bffba, 0xff3a9f9735ff0c2d, 0x0c44000dbbe02fdb, 0x38a3ecff0c3fcb04, 0x0e06bc3176fbffbd, 0xffbc214438ff0c4d, 0x0c9a260eb64b83de, 0x0c6c00080c7a230e, 0x603f88ff0c678405, 0xcb043b1a0b00ff3b, 0xff3a2b8b5fff0c75, 0x0c8ccb04bb47671d, 0x47c115ff0c87c904, 0x070dbd9641feffbc, 0xff3c7ef605ff0c95, 0x0cbec7043d92f87b, 0x0cab00020cb0280e, 0x237fff3dc9787dff, 0xc2ff0cb9350e3d1d, 0xbd2fc460ff3bb3d1, 0x0ccbc9040cd07705, 0xb2baff3c75ceaeff, 0x13ff0cd92d0e3b57, 0xbb9d0987ff3af951, 0x0df9000f0f0c0e0b, 0x0d32c6040d76c804, 0x0d04c0040d12110e, 0x3ca760ff0cffa404, 0x030ebbb37292ff3b, 0xff3c22bdb5ff0d0d, 0x0d2401073b055df3, 0x288393ff0d1f9605, 0x1d0ebc9c5269ffbb, 0xffbd0af362ff0d2d, 0x0d56010bbc833d96, 0x0d4396050d48130e, 0x6600ffbc95a6e0ff, 0xe0ff0d519605bc1f, 0x3c2a7280ffbbb24c, 0x0d631d0e0d68030b, 0x1678ff3c1a5180ff, 0xc8ff0d71c704bca2, 0x3dc94d84ff3d1939, 0x0d9e050b0db50002, 0x0d8b01070d90020d, 0xb190ffba9f0300ff, 0x13ff0d99170ebcaa, 0xbbe18f00ffbc9bec, 0x0dabc9040db0cb04, 0x5980ffbd33e240ff, 0x0ebd060ff0ffbd2d, 0x0b0dcb00080dd91d, 0x3c6d0900ff0dc601, 0xd4000dbbd4cc5cff, 0x16ff3c6875cbff0d, 0x0d0deb030bbaefaa, 0x3c11606dff0de602, 0xf4240e3d19a990ff, 0x40ffbcafa4f0ff0d, 0x0c0e80060ebb38fa, 0x110e25c3040e4501, 0xff0e12bc040e1701, 0x4267bfff38fe395e, 0xdd94ff0e20030ebb, 0x0bbc3b2bf0ff3bcb, 0xff0e3201080e3703, 0x1a470eff3a56d819, 0x71d1ff0e40010ebb, 0x0e3b297f8bff3bb7, 0x040e5b00120e6903, 0xbaddfb40ff0e56c3, 0x64050b3c5231dbff, 0xf3ffbc17477cff0e, 0xff0e72cc04bb5f73, 0x0e7b0002bc853f50, 0xff18ffbc0d0ba8ff, 0x170e0ec8cb04bcbb, 0x070d0e9a000c0ea8, 0xffbad15394ff0e95, 0x0ea3070e3d022b64, 0x45e6ff3c11ba0eff, 0x030b0ebac9043a12, 0xff3b5aae51ff0eb5, 0x0ec3030bbc5cd54f, 0x82afff3c12bac2ff, 0x96050eec01073cc3, 0xe0ff0ed9050b0ede, 0xbb3cd414ffbc4387, 0x22fda4ff0ee7000c, 0x0002bb8f019aff3b, 0x6dff0ef996050efe, 0xbb84e1e2ff3b36aa, 0x2594d0ff0f07060d, 0x96053c09ca68ff3b, 0x000e0f8ec904101a, 0x01070f3300110f4a, 0x64ff0f2900020f2e, 0xbaaadf00ffbba43d, 0x450008bc1eff38ff, 0x433bff0f40b4040f, 0xffb9d05100ff3b01, 0x0f6ec6043bab9850, 0x0f5b010e0f60030e, 0xbf27ff3b9ba943ff, 0x02ff0f69011239f3, 0x3bda0b90ff3c38ad, 0x0f7b00020f80c804, 0xcc54ffbc34dfe4ff, 0xc7ff0f890107bbd4, 0x3bd1c948ff37e251, 0x0fb6cb040fd6080e, 0x0fa300020fa80011, 0x5960ff3bb60060ff, 0xd0ff0fb10008bb99, 0x3d627dacff3d2a16, 0x0fc3060e0fc80002, 0x23c1ff3ba379adff, 0x40ff0fd10107bc00, 0x3c950158ff3bfa0a, 0x0fec000c0ffa0008, 0x3658c3ff0fe7cd04, 0x00113bcd7dccff3c, 0xffbb7525a0ff0ff5, 0x100ccd043b6b2135, 0xe797a0ff1007020d, 0x0012bc22314eff3a, 0xffbb9f71deff1015, 0x1098140e3b18548c, 0x1046020e1066cd04, 0x1033000210380011, 0xc760ffbb63f934ff, 0xb0ff10410107bbe8, 0x3ad53920ffba24df, 0x1053030e10580002, 0xd6abff3c3172e0ff, 0x55ff106101123b92, 0x3c03cbc0ff3a1390, 0x107c02071081020e, 0x8e4c28ff10770107, 0x80ff3bb9eb18ffbb, 0x07109300023baacb, 0xbc7adef8ff108e01, 0x2740ffbc482783ff, 0x000210aa0011bcf2, 0xff3bd9d050ff10a5, 0x10b300023bb71598, 0xbcecff3c31571cff, 0x0008000000133c00, 0x0001000003e80000, 0x000000000e660000, 0x8c0508e500070000, 0xc1040248c7040484, 0x021100a06a05012c, 0x7404003c5305005c, 0x1aff00291206002e, 0x3a0d9ca6ffb8d7b2, 0x38d55dff0037060d, 0x6505bb812524ff3a, 0x97ff0049a604004e, 0xba88c3f0ffba4b9e, 0xfb2ba0ff0057ba04, 0x2c04bb83df42ff3a, 0x010b007200020080, 0xffbac3790aff006d, 0x007b10063c0ab7ad, 0x2a27ffbc64cd69ff, 0x3e0400921c05ba1c, 0xff3bb621deff008d, 0x009b02123c8e88d3, 0x52aeffbba1f25bff, 0x000d00e8c0043c83, 0x430400ba1c0e00c8, 0xffbb40b401ff00b5, 0x00c36c043cbf452c, 0x70a0ffbd3fe8bbff, 0x860500da01083af0, 0xffb9783879ff00d5, 0x00e3080b3a3ade3d, 0x4353ffbb2498cbff, 0x0002010c230e3ba4, 0xfcff00f9220e00fe, 0x3c500b99ffbc7403, 0x60b0f0ff01070009, 0x0006bc2131d4ff3c, 0x04ff0119340e011e, 0x3dc1a11affbc13f7, 0xf7bafdff01270002, 0x75053c87b598ffbd, 0x02080178070b01bc, 0x0008014a020d0158, 0xff39ccf91aff0145, 0x01533205bc324efc, 0xde73ff3c10db14ff, 0x000f016a5505bb03, 0xffbd8c27fbff0165, 0x01732b0e3acc586d, 0x0ec5ff3cf1ba7fff, 0xc204019c71053c2e, 0x9cff01890006018e, 0xbc25629fff3ca189, 0x215c4dff01976d05, 0x01083c6f072cffbb, 0x22ff01a9000901ae, 0x3cff7c02ffbd3ef1, 0x83fe80ff01b7190e, 0x8105bb2a6143ff3d, 0x000801e41c0e0204, 0x4eff01d1120601d6, 0x3d0dcdcfffbc0817, 0xe0614eff01df180e, 0xc5043d6b27f5ff3b, 0x55ff01f17b0501f6, 0xbc33b071ff3c0c04, 0x01d65aff01ff0b0b, 0x89053c166389ffbb, 0x050b021a83050228, 0xff3bf21661ff0215, 0x02230008bc39e72b, 0x1ea8ffbaf4eee3ff, 0x010c023a090b3acd, 0xffba7e5a32ff0235, 0x0243170ebc80f639, 0x6beaffbb80fdcbff, 0x230e0368ca043bdb, 0x00090298070d02dc, 0x0012026a170e0278, 0xff3bc1d236ff0265, 0x02730002baf65852, 0x795cffbaaee115ff, 0x190e028a01093c95, 0xff3b901517ff0285, 0x02930002bc8ad8b8, 0xde05ff3b932c6cff, 0x020802bc0009bb97, 0xd7ff02a9030b02ae, 0xbd79272fffbccf90, 0x0893dbff02b7030b, 0x7905bcbcebf5ff3c, 0xc3ff02c9000c02ce, 0x3d042b97ff3cb131, 0xee733cff02d71f0e, 0xc9043d316614ffbb, 0x070d030402080324, 0xa2ff02f1310e02f6, 0x3b7ed6a4ffbbc1a0, 0x021257ff02ff5305, 0x6e053cce1ea1ffbc, 0x0dff03110b0b0316, 0xbc1bd38bff3c0f99, 0xae3c0fff031f7105, 0x280e3c1a6029ff3d, 0x050b033a01080348, 0xff3b8c5a2eff0335, 0x0343000c3d3d291c, 0xbdb2ffba97f56fff, 0x6905035a00113c61, 0xffbce2758aff0355, 0x0363010c3c94a96d, 0x9fbcffbb951fc9ff, 0x000203f8cd043b9f, 0x010c03942d0e03b4, 0xf2ff0381cb040386, 0xbb8d8518ff3c1311, 0x0c3ddfff038f8805, 0x0008bcf55d61ffbc, 0x03ff03a1890503a6, 0x3cf8439eff3bc24a, 0x0a1a8cff03af0206, 0x8a053c2ccfa4ffbc, 0xcb0403ca130b03d8, 0xffbc5b9dadff03c5, 0x03d30008bab6e10b, 0x4c34ffbc04559dff, 0x020d03ea010c3bf6, 0xff3d82dd57ff03e5, 0x03f30b0b3ac2dfa1, 0xec4bff3d45d097ff, 0x011204400b0b3e0e, 0x8b0504122b0e0420, 0xffbc203e13ff040d, 0x041b2c0e3c072e87, 0xc5e5ff3db3214cff, 0x360e0432030b3c21, 0xffbb556e20ff042d, 0x043b360ebbf490e0, 0xbea8ffbd139bd4ff, 0x2b0e04640002bd08, 0x9fff04517c050456, 0x3c3d3178ffbcb733, 0x460227ff045f310e, 0x2b0e3ab45127ffbc, 0x82ff0471230e0476, 0xbd030930ffbd8d20, 0x64a36dff047f2c0e, 0x8d05bc115ae0ff3d, 0x1d0e05a8110b06c4, 0x100b04d8bc04051c, 0xb90404aa010c04b8, 0xff39573ab3ff04a5, 0x04b3a404bba1d1e4, 0x3e10ffbc2a8682ff, 0x070e04ca060db984, 0xffbc644daeff04c5, 0x04d3000e3ba7354f, 0x29fbff3ad68d20ff, 0x010c04fcbf04bda7, 0x27ff04e9000904ee, 0xbbb5c4b3ff3c90ef, 0xa2aeceff04f7030b, 0xc0043d732290ff3b, 0x94ff05090002050e, 0xbd5bf826ffbc9a51, 0x630705ff0517c204, 0x220e3b351350ffbc, 0x1f0e0544b3040564, 0x7fff053100090536, 0xbbe7be89ffbce1f8, 0x8bb367ff053f060d, 0x0112bcbeaf54ff3c, 0x6fff0551070d0556, 0x3c2fc666ffbcf45e, 0x71d6feff055f000c, 0x070dbc67b45dff3c, 0xca04057acc040588, 0xff39cc68c8ff0575, 0x0583060dbca1cd4a, 0x49e0ff3cdab7b9ff, 0xc504059a230e3b46, 0xffbce3345bff0595, 0x05a3050bbc9ae66e, 0x9facffbaa32235ff, 0x010806380012bc71, 0x070e05d4a60405f4, 0xcbff05c1000e05c6, 0x3aeddfa0ffbb91c0, 0x12ad3dff05cf140b, 0x070ebccba104ffbd, 0xa9ff05e1000905e6, 0xbb42f190ff3ccf99, 0x34bc5dff05efc104, 0xbc043bfb7cf2ffbb, 0xb304060a00020618, 0xff3c315138ff0605, 0x0613000ebba0dc93, 0xb07eff3bdc5130ff, 0x140b062aca043d0e, 0xffbd87a8ddff0625, 0x0633cc04bc5ed884, 0x4480ff3d30eda9ff, 0x01110680060dbbb4, 0x000806521d0e0660, 0xff3b822a00ff064d, 0x065b200ebb893c1c, 0xea1dff3d99f703ff, 0x97040672170e3bba, 0xffbc9ffa1eff066d, 0x067b190e3b4892ac, 0xc02fffbcb12762ff, 0x000806a4010ebbda, 0x2eff0691000c0696, 0x3cbde9e0ff3bca74, 0x36eacdff069fa304, 0x0108bc063794ffb9, 0x05ff06b1230e06b6, 0x3cf3ebf6ffbcbb68, 0x9bcca5ff06bf000c, 0x9305bba101e6ff3c, 0x030e074f020d07db, 0x9f0406f4a704070b, 0x4cff06e1000206e6, 0x3b0dfd9fffbb1972, 0xcab273ff06efa004, 0x030bbbcbf715ffbc, 0x00ff070100020706, 0x3c55d400ffba9e84, 0x2fbe043d0979a0ff, 0x1c220e0721030b07, 0x89ffb9f91327ff07, 0xff072a000d3c017b, 0x4150dbff3bb28e98, 0x3c92050741040bbb, 0x53ffbbb2ebbbff07, 0xff074a070b3c83a8, 0x64b614ff3c942fa5, 0x77bc040797070bbb, 0x64000c0769570407, 0x72ff381ee30bff07, 0xff0772b304bd1504, 0x1ae9ccff397d9867, 0x84000f0789030bbb, 0x0dffbb455926ff07, 0xff0792040b3a0d1a, 0x39cb44ffbc95747b, 0xad2f0e07bb8e053b, 0x7b90ff07a8b60407, 0x023aea7169ffbae7, 0xbce05708ff07b600, 0xcd000f3cb7d55dff, 0x9260ff07c8bb0407, 0x043bc48614ffbb93, 0x3a19dd17ff07d6c5, 0x59020dba8369beff, 0x07000d0827c80408, 0xf4030b07f9011208, 0x1eff3ae5f569ff07, 0xff0802010b3c7bdc, 0xb6d430ffbca96451, 0x14070b08192a0ebb, 0xb5ff3b39d350ff08, 0xff08220002bb9b28, 0xc53564ff3d728c88, 0x3d0002084b02083d, 0x711aff0838230e08, 0x0e3c70799bffbced, 0x3b7c0ce0ff08462f, 0x540002bc6c3f59ff, 0xc0ff3cbf96c0ff08, 0x0408a1000f3d617e, 0x0b0873190e0881ca, 0x3c13cb78ff086e02, 0x7c1c0eba54f3fdff, 0x21ffbe19db8aff08, 0x0e089394053b32c7, 0x3bfeea5cff088e2b, 0x9ccc043d936192ff, 0xecffbcc9cb6dff08, 0x0508c500113bd87c, 0xff08b2010c08b794, 0xd40b4eff3b85154f, 0x855bff08c0000239, 0x0eb9b516b1ffbaab, 0xff08d20b0b08d71f, 0xd0a7abffb9dde7b5, 0xc84dff08e0230e39, 0x05bb989f98ff3b9f, 0x0d0b29c6040cf095, 0x050981260e0a0d00, 0x0e091d5905093d7e, 0xff090a050e090f06, 0xff9d05ffbbd02a9b, 0x8231ff09183601bc, 0x073bddacc3ffbadd, 0xff092a5204092f02, 0x4eb0e3ffbbb6c01d, 0x47dcff093880043c, 0x053c46fe27ffbd32, 0x040953070e096183, 0xbcf43f4bff094e66, 0x5c02073d9818d1ff, 0x4effbc86bb23ff09, 0x0e09730207bd5812, 0x3ca16b7dff096e07, 0x7cc0043bf45fb6ff, 0x86ffbbe6885aff09, 0x0509c9060b3cfd8d, 0x0b099b1d0109a96d, 0x3a90e105ff099605, 0xa44d04bbf0b0adff, 0xe2ffbd52b1fcff09, 0x0709bb8404bc1ccd, 0xbd965c0bff09b601, 0xc4020bbe4bc7fbff, 0x0cffbc923363ff09, 0x0609ed81053ca845, 0xff09da260109df0d, 0xbf12bfffbaf3ef9d, 0xa7e7ff09e8000c3b, 0x043c71adebffbca4, 0xff09fa840409ff8b, 0x38ce78ffbe28b1da, 0xbd01ff0a080207be, 0x0ebdc3bbe4ffbb9d, 0x050a5900060a9d2a, 0x040a2b6d050a3994, 0x39aebb1aff0a26c2, 0x34230ebb30e153ff, 0x9affba31fb30ff0a, 0x040a4b0a0bbbc6b1, 0x3bf72da4ff0a469c, 0x54010cbb44741cff, 0xa2ff3b32a2f9ff0a, 0x040a7d1c053cb271, 0xff0a6a12050a6fa0, 0x254689ff3a276bef, 0x7e98ff0a78a104ba, 0x063a65dba0ff3ca0, 0xff0a8a030b0a8f06, 0x317e2dff3a6bc93d, 0x9a2cff0a980207bc, 0x04bb88a8ebff3a27, 0x040ac57c050ae5c2, 0xff0ab2be040ab7c0, 0x58ad6dffba2d98ec, 0xcefdff0ac000123c, 0x0bbbdf5211ff3ca5, 0xff0ad2000f0ad705, 0x9556ccff3c218d6e, 0x4b1bff0ae00002bb, 0x04ba9df063ff3c55, 0x0e0afb2f0e0b09c3, 0x3a5825bdff0af62b, 0x04300e3ccd8a16ff, 0x6bffbdb82d8cff0b, 0x0b0b1b320ebbc267, 0x3b5a086eff0b160d, 0x2401123cb369bcff, 0xd4ffbccddad8ff0b, 0x050bd441013c0a0b, 0x030b7900060bbd46, 0x010b4b00080b5934, 0x3cc11b60ff0b4628, 0x54010c3b69dbc0ff, 0xb3ffbd104ca4ff0b, 0x010b6b3501bc2b43, 0xbd45e3c3ff0b6627, 0x740011bcb26a94ff, 0xe8ffbd83934cff0b, 0x030b9d3501bd0674, 0xff0b8a2a010b8f13, 0xb470c0ffbd2ac40e, 0xf8aaff0b980107bb, 0x033c4529cdff3ce5, 0xff0baa07050baf13, 0x2af980ff3db5e798, 0x0d74ff0bb8000fbb, 0x05bd052912ff3a1c, 0xff0bca00110bcf52, 0x96d8f8ffbda47fc4, 0x9405bcb73720ffbd, 0x0c050c207e050c64, 0x050e0bf2c7040c00, 0xffbc473cc6ff0bed, 0x0bfb0207bdd40f5f, 0xdde3ff3c478f37ff, 0xc8040c122703bc58, 0xff3ca241caff0c0d, 0x0c1b7c05bd47b1e7, 0x499bffba0e52daff, 0x01080c4480053c88, 0x6fff0c311d0e0c36, 0xbc0d4851ffbcd808, 0xaddab3ff0c3f220e, 0xc8043bae2886ffbb, 0x2bff0c51260e0c56, 0x3b490541ff3a9045, 0x7f92a6ff0c5f220e, 0x010c3abef790ffb9, 0x0d0e0c8c01070cac, 0x96ff0c79070e0c7e, 0xbc12c47eff3b88b9, 0x3927c7ff0c87c704, 0x1f0eba387226ff3c, 0xe2ff0c99000c0c9e, 0xba370d4cff3bbd19, 0x5aeb89ff0ca7240e, 0x080e3b7228deffbc, 0x00120cc2070e0cd0, 0xff3b02dfabff0cbd, 0x0ccbc804bc8a412d, 0xe564ffbd2cb753ff, 0x1d0e0ce20002bd8c, 0xffbc1fca13ff0cdd, 0x0ceb0112bd0a924f, 0xf680ff3bd52105ff, 0x7f040e4f2c0ebbbf, 0x01070d37070b0d45, 0x030b0d1b96050d29, 0x04bbeeeef8ff0d0d, 0xbb67b9dcff0d1678, 0x2400023b9d8e9bff, 0x68ff3bfea618ff0d, 0xff0d3200023bee50, 0x157698ff3c90e31c, 0x96e8ff0d4000023c, 0x0c3c9ce564ff3c18, 0x040d910b0b0dcc00, 0x050d63010b0d7188, 0xbac77e00ff0d5e96, 0x6c01073ab36d80ff, 0x30ffbc42d1a1ff0d, 0x0b0d83a304bbcbac, 0x39256cf2ff0d7e03, 0x8c220e3c05139dff, 0x44ff39ca2987ff0d, 0x050db51f0ebb8343, 0xff0da2c9040da796, 0xb031edff3a858e98, 0xd311ff0db00b0e3b, 0x0dbbb1f0bbff3ab5, 0xff0dc20e0b0dc706, 0x3ba880ffbc8957f8, 0xcb04bce40f30ffbb, 0x96050df4c3040e14, 0x03ff0de1bd040de6, 0xbba2524bffbaebd6, 0x7088e0ff0def030b, 0x020bbb418960ffbc, 0xf0ff0e01030e0e06, 0xbbbb37c7ffba08d3, 0x9e8b72ff0e0f000f, 0x010c3b6b4fabff38, 0x00080e2a2a0e0e2f, 0xffb9bd5931ff0e25, 0xf0e154ffbbdd2b4c, 0x3c060d0e410112bc, 0x4bffbc7751bbff0e, 0xff0e4acd04bbd2d9, 0xa4d850ffbbcb03a0, 0xe4a8ff0e5801113c, 0xe0ff0e61030b3cab, 0xbcbf2700ff3cefc3, 0x0000000800000013, 0x00000001000003e8, 0x000000000000109d, 0x04608c0508c10007, 0x012cc1040248c704, 0x005cb20400a0bb04, 0x002e6105003cb004, 0x6a76c2ff0029ae04, 0xac043b13b802ffb8, 0xffb91f8cb0ff0037, 0x004e040d3adb2740, 0xe55eb4ff0049b104, 0x1f0e3c3d6f49ffbb, 0xff3a015a3eff0057, 0x0080070bbbe43982, 0x006d73050072000f, 0x51dfffbb2b41bdff, 0x75ff007b010cbcca, 0xba30d062ff3b789e, 0x008db4040092b504, 0x3358ffb9e70ffeff, 0xf5ff009b350ebc10, 0xbbf43b65ff3bbd2a, 0x00c82b0e00e8060d, 0x00b5220e00babd04, 0x2d46ffbb826e8eff, 0xb3ff00c32a0e3bdb, 0x3c520b14ff3b0bfe, 0x00d5bc0400da2d0e, 0x3cf4ff3d9be7b1ff, 0xf2ff00e30109bcbd, 0xbc870243ffbb082a, 0x00fe0009010c0011, 0x102404ff00f94b05, 0x7d053c08f412ffbd, 0xffbcc04c14ff0107, 0x011e030bbba6976b, 0x841ae5ff0119230e, 0xbe04bb715dd0ff3c, 0xffbd0f6871ff0127, 0x01bc79053bf7f4fc, 0x0158040d01787705, 0x01450b06014a6105, 0x0a11ffbd07a522ff, 0xafff01530108bb19, 0x3c60e768ffbc1a9e, 0x01656d05016a7005, 0x70d9ffb87b7555ff, 0x0bff01731f0e3cec, 0xbc0f5c8cff3d1e62, 0x018e0006019c0002, 0x491ad4ff0189230e, 0x0f0e3b609f51ffbc, 0xff3c77a76eff0197, 0x01aec304bd818864, 0xb2b0c8ff01a90008, 0x0d0e3c8dfc3effbc, 0xffbda187f8ff01b7, 0x02040002bcbe5e75, 0x01d67a0501e4c304, 0x13dbacff01d1c204, 0x230e3e03da2fff3c, 0xff39bdf889ff01df, 0x01f6c604bbf63864, 0x455c6dff01f1010c, 0x000cbc22fe80ff3b, 0xffbbe0f090ff01ff, 0x022880053c2e8f55, 0x02157c05021a140b, 0xe3ddff3b89cdbeff, 0x10ff02230009bc09, 0xbcb95caeff3d1f09, 0x02358905023a010c, 0x603effbbb5d810ff, 0xf6ff0243230e3b04, 0x3d539cf9ffb9fb4a, 0x02dc0009034d190e, 0x0278020802980012, 0x0265c904026a170e, 0x3cf4ff3ca52e12ff, 0xabff02738905bcb8, 0x3beac8d4ff3d25a6, 0x0285c904028a7f05, 0xb4abff3d0b14f7ff, 0x2dff02938b05bd3b, 0xbcbd9b55ffbb9b2c, 0x02ae870502bc060d, 0x5c0afaff02a96e05, 0x01083c19d35bffb9, 0xff3dfb0980ff02b7, 0x02ce010c3b03805f, 0x3b8d5dff02c9000c, 0x0a0bbaa47508ff3d, 0xff3cd4c901ff02d7, 0x03128305bd431425, 0x02ed010c02f2060d, 0xec72ff3a00c3c7ff, 0x0b0b03047a05ba90, 0xffbc3cdb48ff02ff, 0x030dc904bd500164, 0x6f9bffbc581463ff, 0x000f032d010cbbbf, 0x05bcbb49cdff031f, 0xbc0ea906ff032889, 0x3f8b05bad2222fff, 0x9d6bff033a010903, 0x093bf2af19ff3d42, 0xbcfe6863ff034802, 0xdd8b05bbf5cf56ff, 0x7977050399310e03, 0x663805036b6d0503, 0xcaff3b01b371ff03, 0xff03746f05bbbec1, 0xb4ee82ff3d4323f0, 0x860012038b060d3a, 0xecff3c837dbdff03, 0xff0394000238b904, 0x23a211ffbbe65bb7, 0xaf000c03bd330eb8, 0xac6fff03aa020803, 0x0f3cc4737bffbbef, 0x3d1f031cff03b800, 0xcf070d3c56ca52ff, 0xe0edff03ca000203, 0x0bbb859604ff3b2f, 0x3d06c232ff03d803, 0x1c220e3c1c47adff, 0xf7cc0403fc010c04, 0x948bff03f2001203, 0xff3b837e5cffbc9b, 0x040ec804bd95d5be, 0x8001b1ff04090b0b, 0x0b0bbcc87650ffbd, 0xffbd36ef2eff0417, 0x0440c804bda47976, 0x042d000904320b0b, 0x31caff3d6c8412ff, 0x5eff043b060dbd43, 0x3d169b8bffbcbef6, 0x044d010c0452c904, 0x91daffbc332639ff, 0xa4ff045bcb04bd3d, 0xb9b24522ff3d453d, 0x057b140b068e8d05, 0x04abc50404efc704, 0x0486190e04942b0e, 0x3bd5dbff04810c0e, 0xc4043acdb111ffba, 0xffb960b733ff048f, 0x04a60009bc8abf99, 0x9cfffaff04a1020d, 0x84ff3aac75d3ffbc, 0x1204cf0b0b3d9dd2, 0xff04bc060d04c101, 0xc85701ff3cddf0b1, 0xb73eff04ca030bba, 0x0bbd0379e3ff3ba2, 0xff04dc060d04e10d, 0x83175effbcc670c8, 0x6024ff04ea230e3c, 0x0b3dd15d98ff3d3f, 0x040517010805370e, 0xff050400110509c9, 0x738987ffbc3e6a35, 0xf7c8ff0512020dbd, 0x0b3a553ed6ffbd09, 0xff0524000f052903, 0x2cadf9ffbd21b12c, 0x86d9ff0532010cba, 0x0e3d0efeadff3b8b, 0x0b054d010c055b0d, 0x3b657980ff054810, 0x56100bbb96c660ff, 0xfeffbd205cacff05, 0x12056d0108bd8300, 0xbc769860ff056800, 0x760012bb4bcb00ff, 0x7cffbd742ff4ff05, 0x08060b030ebdac92, 0x0805a7000e05c701, 0xff05940111059900, 0xcfabbaffba3cd16c, 0xc336ff05a297043c, 0x093a0fec80ffbcb9, 0xff05b4011205b900, 0x144f30ff3c37929e, 0xfc7cff05c2060dbd, 0x04bb91ae9bff3bcf, 0x0405dd001205ebb3, 0x3ba59758ff05d8b2, 0xe6000c3c909b46ff, 0x68ff39b4532fff05, 0x0c05fdc304bc5d36, 0xbcccb122ff05f801, 0x060011bd3a4794ff, 0x64ffbc35218cff06, 0x08064a0011bcc376, 0x0e0625cc04063302, 0x3b5079c0ff062014, 0x2e00093c1a6ce0ff, 0x6bffbc44e810ff06, 0x040645c904bad6dd, 0xbb2351c0ff0640c4, 0xc0a0ffbcafd5a6ff, 0x0111066e060d3c5b, 0x40ff065b1d0e0660, 0x3c04729aff3a9bf9, 0x33bebaff0669220e, 0x0108bc4f50a1ffb8, 0x17ff067bbe040680, 0xbc55740bffbcd2b0, 0x075df5ff06890208, 0x93053d11034aff3c, 0x030e0719020d07a5, 0x040b06be0b0b06d5, 0xe3ff06ab020e06b0, 0x3b0b97d5ffbb54b9, 0xa344f6ff06b99205, 0x000cbb7a29ccff3b, 0x96ff06cb000806d0, 0xbc4ae4f4ffbc4323, 0xf9140ebc80b7e6ff, 0xe6020906eb070e06, 0x66ff3b8120c6ff06, 0xff06f4010bbcbd80, 0x4ab971ffbc0321d3, 0x06250e070b2a0eba, 0xc5ff3b0e316fff07, 0xff07142b0ebc5d90, 0x0fa173ff3c56dc36, 0x41bc040761070bbb, 0x2e000c0733570407, 0x96ff380ef998ff07, 0xff073ca604bd061d, 0xb0c400ff3a383dbb, 0x4e000f0753030bba, 0x0bffbb319d28ff07, 0xff075c000239fdfc, 0x976ab9ff3c023e69, 0x77a70407858e05bb, 0x31abff0772a10407, 0x043c891aebffb9d6, 0xbbb999d1ff0780b5, 0x97000f3aca1d2cff, 0xdbd6ff07929e0407, 0x043b09bedeffbc3d, 0x393508eaff07a0c6, 0x35020db8f51789ff, 0xd1c40407f1c80408, 0xbe9a0407c3250e07, 0xf6ffbac9c43aff07, 0xff07ccc304b9faa3, 0xebc1abff3b37149c, 0xde960507e3030b3d, 0x0fff3cc45ac4ff07, 0xff07ec070bbb8768, 0x13bfa9ff3d114395, 0x07230e08150008bc, 0x3b98ff0802000208, 0x0e3a588ba5ffbcfb, 0x3ca446b1ff08102a, 0x270002bbe7844bff, 0x8051ff0822230e08, 0x0bbd528180ffbc44, 0x3cce0377ff083003, 0x7d000f3aab3cbdff, 0x4f020b085d0a0b08, 0x97a2ff084a000208, 0x043c538668ffbbcd, 0xbc245d04ff0858b3, 0x6fa504b9ae1305ff, 0x1c3bff086a940508, 0x0e3c9f3721ff3d94, 0xbb6c45ceff087808, 0xa1cd043be668d1ff, 0x8e170e0893c80408, 0xdbffb98611eaff08, 0xff089c060db9b633, 0x883961ff3a9d11ac, 0xae230e08b39405b9, 0x9aff3c22b84eff08, 0xff08bc000cbb9818, 0x1d91ceff3a2318a1, 0x05c6040d389505ba, 0x5db40409e9c1040b, 0xf9770509199d0409, 0xe6410108eb170608, 0x71ff39e3eaa3ff08, 0xff08f4050eb9bf74, 0x8c68d8ffba88650a, 0x06020e090b070ebc, 0x36ffbb85eb30ff09, 0xff0914000c3ba162, 0x241182ffbaa9a3cb, 0x2f090b093d0008bc, 0xfa0dff092a310e09, 0x0bbbe41150ff3a0d, 0xbc7bf62cff09380a, 0x4fb304ba944be3ff, 0xc3faff094a3c0109, 0x113a24d784ffbae9, 0xbafa020bff095801, 0xa50011bc6094d0ff, 0x77be040985010809, 0x83feff09722f0e09, 0x0e3c2236b2ffbb4c, 0xbc4f6a60ff098008, 0x9702073c03b87cff, 0xfddcff0992340109, 0x0ebb1c2f92ffbb20, 0xbc4d99efff09a026, 0xc9b8043c78ad73ff, 0xb6001209bb150e09, 0xa3ffbd5325efff09, 0xff09c40112b98cf2, 0x5e75e8ff3c82d7db, 0xd6060d09db0002bb, 0xe8ff3a1471cdff09, 0xff09e40906bcb9eb, 0xc7101fff3b1ddbd6, 0x3580050a790002ba, 0x07130b0a15220e0a, 0x3cd4ff0a0200060a, 0x0cbc152c1fff3a2c, 0xbbcee729ff0a1000, 0x270006bc9ad43eff, 0xf96dff0a2238050a, 0x053ae9c6f7ffbccc, 0x3bb0c883ff0a301a, 0x59310ebd45c796ff, 0x4686050a4b87050a, 0x86ff39110753ff0a, 0xff0a54230e3c2282, 0x41a858ff3ae5900b, 0x6684050a6b030bbc, 0x67ffbcefb278ff0a, 0xff0a74c5043c0d21, 0xa60800ff3d983bd1, 0xa16b050ac16e0539, 0x8e060d0a93c5040a, 0x0fffbb8d6422ff0a, 0xff0a9c330e3c520e, 0x1ea530ff3bc302c8, 0xae1d0e0ab3c404bd, 0x2dffbc97fc24ff0a, 0xff0abc1f0e3b9979, 0x23353affbbf83c03, 0xd7c2040ae56f05bd, 0x26cdff0ad2300e0a, 0x0c3dd489f5ff3937, 0x3d7e6818ff0ae001, 0xf7010c3e69bbebff, 0x552cff0af2c2040a, 0x0e39a9676affbb8e, 0x3bc8fabbff0b000a, 0x250108bb847a6fff, 0x5500110b99010c0c, 0x2778050b357a050b, 0x67aeff0b22cb040b, 0x0e3cb4fab3ffbae0, 0x3ab58330ff0b302a, 0x47c804bd04521eff, 0xcf55ff0b4200020b, 0x0b3bbab03dffbc3b, 0xbae61ee7ff0b5013, 0x79c7043bd5a8f5ff, 0x66260e0b6b060d0b, 0xe9ffbbb405b8ff0b, 0xff0b7479053c1614, 0xecebd5ff3da3d348, 0x8601110b8b340e3c, 0xbeffba728d72ff0b, 0xff0b9403063b584d, 0x478a8affbb5b831c, 0xc100020be177053c, 0xae76050bb32b0e0b, 0xcaffbb40b6c3ff0b, 0xff0bbc2d0e3cdade, 0x57065dffbdcce425, 0xce060d0bd30207bc, 0xa9ff3bad49a0ff0b, 0xff0bdcc704bcc8e4, 0x241e19ff3d560740, 0xf7280e0c05060d3c, 0x5935ff0bf27e050b, 0x123b8f83a8ff3d0d, 0x3d49ff07ff0c0000, 0x17080ebb7d62a7ff, 0x506aff0c12c8040c, 0x0ebc70b660ff3d3d, 0x3b82b6faff0c2026, 0xac7505bc495a6bff, 0x4807050c68060d0c, 0xb6d4ff0c3a36010c, 0x46ff0c4314063da3, 0x3c8c8c5affbd2bfc, 0x0c55c8040c5a6405, 0xe808ffbb88172dff, 0x60ff0c63000f3adb, 0xba8583bbffbc9c75, 0x0c7e3e050c8c0011, 0x62114aff0c79010c, 0x61053b735c2bff3d, 0xffbc0f1e4eff0c87, 0x0c9e000cb771a55a, 0x7bd6faff0c997005, 0xc9043c818642ff3d, 0xff3ce0aa7aff0ca7, 0x0cf4310e3bb0d232, 0x0cc67b050cd40e0b, 0xc6765bff0cc1000f, 0x010c3b19a3ecffbc, 0xffbada083bff0ccf, 0x0ce6220ebb8f34e0, 0x615dd7ff0ce1100b, 0xc704bbab61b0ff3d, 0xffbd98699cff0cef, 0x0d1801073bd8645f, 0x0d05320e0d0a7b05, 0x53f1ffbd53b19dff, 0xc4ff0d13cd04bb63, 0x3c6f0c6cffbb8435, 0x0d25020d0d2a000f, 0xfc73ff3c3ef33dff, 0xffff0d33000cbdd7, 0x3d25e356ff3c9b6d, 0x0e4a01070f661f0e, 0x0d8cbc040dc7c204, 0x0d5e080e0d6c000f, 0xdfc9d1ff0d59020e, 0x0112bc04d57cffb9, 0xffb9ee151eff0d67, 0x0d7e000e3c389e27, 0x6b2b9eff0d79000c, 0x020bbba7d9ceff38, 0xffba8d3007ff0d87, 0x0da796053b241596, 0x0d9dbf040da2070d, 0x5c86ffbbf4b502ff, 0x123c8d1b80ffbae1, 0xff0db400020db901, 0x13eff0ffbc7bb635, 0x0748ff0dc20002bc, 0x0bbc519190ffbd38, 0x0e0defcc040e0f0b, 0xff0ddc030e0de117, 0x07a1e5ff3aeb08f5, 0x4012ff0deacb04ba, 0x02bb3dbd91ff3c32, 0xff0dfccd040e0100, 0x0c55b7ff3bbc2deb, 0x5fd7ff0e0a060d3a, 0x0ebab33d66ffbbcb, 0x050e25c3040e331d, 0xbb69ed46ff0e2096, 0x2e010ebbc0165dff, 0xe2ff3bca335cff0e, 0x040e450e0b3b23c0, 0x3c6fbfb8ff0e40cd, 0xca34ffbcd95c58ff, 0xb4040eda030b3d67, 0x01120e7600020e96, 0xffff0e6395040e68, 0x3a938e47ff3c09a9, 0xa924e8ff0e718804, 0xa4043c8858a5ff3b, 0x54ff0e8378040e88, 0xbae29d32ff3c0684, 0x048430ff0e91010b, 0x000b3b5578cfff3c, 0x96050eac020d0eba, 0xff3b8b9b5fff0ea7, 0x0eb502073b22d704, 0xdeceff3c4fee58ff, 0xbd040ecc030e3c84, 0xffbbbba024ff0ec7, 0x0ed5c90439f1bf12, 0xd730ffbbc7c24fff, 0xc9040f229605b9c0, 0x060d0ef4000c0f02, 0xff3b4d7b69ff0eef, 0x0efdc604ba1f4ccb, 0x2e00ff3c13e0dcff, 0x00020f14080ebacc, 0xffba8f25f8ff0f0f, 0x0f1d000c3c3a3409, 0xcb65ff3b933436ff, 0xcd040f4600023985, 0x80ff0f33020e0f38, 0x3c090a37ff3ac14c, 0xfc13c2ff0f41110e, 0xcc043bc1b0ecffbb, 0xf9ff0f5301120f58, 0x3c2e31a8ffbb03a8, 0x34a051ff0f61cd04, 0x00023bbb9c00ff3c, 0x2b0e0fe8000c101a, 0xc9040f96cd040fb6, 0x09ff0f83030b0f88, 0x3ce68c80ffbbb775, 0x147bd0ff0f91220e, 0x9605bcd3a7aaff3c, 0x89ff0fa30b0b0fa8, 0xbca1a608ff3b9843, 0xd3968cff0fb1230e, 0xc004bb355660ffbc, 0x96050fcc030b0fd1, 0xffbc45bb40ff0fc7, 0x6e1980ffbc65c500, 0xde01070fe39605bb, 0x60ffbcee07c0ff0f, 0xbc8c6e60ffbcdb7e, 0x1007030b1015060d, 0x5352c0ff0ff9c904, 0x3180ff1002cb04bc, 0x113ae30600ff3bee, 0xbcd8caccff101001, 0x6f00ffbc5cefc0ff, 0x230e108f060dbd6e, 0x220e1046cd04104b, 0x9bff1033c9041038, 0x3ca192f8ff3c62b9, 0x82c0e0ff1041000f, 0x8cff3b5dca0dffbc, 0x08106f96053ceee5, 0xff105c000c106100, 0xe4395effbbe7b029, 0x22baff106a050b3b, 0x043d17fa48ffbc3a, 0xff107ccb041081cd, 0xcb3e00ff3b44be00, 0xdbe8ff108a030b3b, 0x0e3d086084ffbc0b, 0xbd1bf294ff109823, 0x000013bc0da0f8ff, 0x0003e80000000800, 0x00108b0000000100, 0xc100070000000000, 0x48c70404848c0508, 0xa0bb04012cc10402, 0x3cb004005cb20400, 0x29ae04002e610500, 0x3effb85302f1ff00, 0xff0037ac043b04f2, 0xc53cfbffb90f98f3, 0x49000c004e030d3a, 0x0aff3ca3ba97ff00, 0xff0057070dbacbd9, 0x86f5ffffbaf01797, 0x72000f0080070bbc, 0xbe8eff006d770500, 0x0cbcb178b1ffbb81, 0x3b5fc1dcff007b01, 0x92b504ba1f221dff, 0xf4b7ff008db40400, 0x01bc01c7d9ffb9cf, 0xbc24c382ff009b3d, 0xe8060d3bb2c883ff, 0xba000c00c8000800, 0x8b7fff00b5020b00, 0x09bad73e31ff3cb6, 0xbabf9b77ff00c300, 0xda220ebbd338ffff, 0xc8f3ff00d5210e00, 0x0ebd0fc3e1ff3b70, 0x3d2e17b9ff00e323, 0x0c0012b8aa7453ff, 0xf9870500fe070d01, 0x17ff3c0875bcff00, 0xff01070e0ebab3c3, 0xcd3858ff3c1d83d5, 0x190a0b011e0002bc, 0x6bff3c71bea0ff01, 0xff0127220ebd1414, 0x8e00fdff3c88b82c, 0x78070b01bc7505bc, 0x4a6c050158011201, 0xca8eff0145230e01, 0x0b3c940caeff3d87, 0x3b5798b0ff015305, 0x6a020e3d17937fff, 0xbddeff0165000f01, 0x0bbb393b2dffbc69, 0x3b786ce6ff017303, 0x9c310ebc5445c8ff, 0x89c204018e0e0601, 0x67ff3c1585baff01, 0xff0197000cbc10bb, 0xf9abdcffba27f17d, 0xa9011201ae320e3b, 0x35ff3d825405ff01, 0xff01b7140bbda968, 0x5e6928ff3be0214f, 0xe41c0e02048105bc, 0xd1001201d6000801, 0x4cffbc53022aff01, 0xff01df180e3b0808, 0x50eb80ff3bb333d4, 0xf17b0501f601083d, 0xe0ff3b7b0552ff01, 0xff01ff010cbc09bc, 0x092a50ffb95b33de, 0x1a8305022889053d, 0xa954ff0215c20402, 0x08bc275be6ff3c07, 0xbadc4812ff022300, 0x3a090b3acf995fff, 0x5e90ff0235c30402, 0x0e3a8091d9ffbc3d, 0xbb6ef284ff024317, 0x68ca043bc2f376ff, 0x980e0b02dc260e03, 0x6a060d0278800502, 0xc260ff02657c0502, 0x04bd070ab1ff392e, 0x3ab69dc9ff0273c9, 0x8ac8043d6b3a14ff, 0xe5edff0285000902, 0x0bbb48075fff3c61, 0x3d2e9badff029303, 0xbc0008bc808451ff, 0xa9000c02ae340502, 0xbcffbb099e7dff02, 0xff02b787053c23a8, 0xa846d1ffbc660df4, 0xc9020802ce000c3a, 0xd1ffbbf80ccdff02, 0xff02d789053b34a6, 0x46771aff3c1d7b1e, 0x04c904032401083d, 0xf1010c02f6280e03, 0x73ff3c25e35bff02, 0xff02ff030bbd6f24, 0x49f77aff3b9734c1, 0x117e0503160011bb, 0xf8ff3db40d92ff03, 0xff031f280e3bf9f9, 0x1a659dff3d1c0d8b, 0x3a7d0503480208bb, 0xbe29ff03357c0503, 0x05bd587d97ffbbdb, 0x3e1dcbf4ff03437e, 0x5a6e05bab5c3f0ff, 0x19d3ff03550b0b03, 0x05bc2f00b4ff3bee, 0x3db42dabff03636f, 0xf8cd043c037abaff, 0x94010c03b4000203, 0x81050d0386cb0403, 0x31ffbbe77792ff03, 0xff038f000c3c5c5d, 0xd5ac1eff3ba23278, 0xa1880503a6310ebb, 0x5dffbbf37ae9ff03, 0xff03af7d05bcc3bb, 0x11dfaaffba6b4c99, 0xca130b03d88a053d, 0xe9bbff03c5cb0403, 0x08ba9d92edffbc45, 0xbbebe404ff03d300, 0xea010c3bdba8a6ff, 0x71ecff03e5000c03, 0x0b3c858fb9ffbbe2, 0x3d316092ff03f30b, 0x400b0b3e014972ff, 0x12030b0420000f04, 0xc020ff040d020d04, 0x0dbb255ee0ffbbce, 0xbcf2ccf0ff041b02, 0x327905bd032d8cff, 0xdfa0ff042d300e04, 0x0b3cb05396ff3d64, 0x3ce8a7efff043b03, 0x6400023b97571cff, 0x517c0504562b0e04, 0x74ffbca13e24ff04, 0xff045f310e3c2e3b, 0x493bd0ffbc2ef713, 0x71230e04762b0e3a, 0x30ffbd7df3f3ff04, 0xff047f340ebcebdb, 0xcd4936ff3b34b326, 0xa8110b068e8d05bc, 0xd8bc04051c0e0e05, 0xaa030b04b8100b04, 0xf5c5ff04a59d0404, 0x0c3bf3edbdffbaa0, 0xb9330c52ff04b301, 0xcaa204bb389510ff, 0x5a5bff04c5000204, 0x04bc340fb9ff3b6e, 0xbd964d03ff04d3a7, 0xfc02093bc2aa14ff, 0xe9010904eebf0404, 0x21ff3d1a8a96ff04, 0xff04f7c0043c0b13, 0x9a7c34ffbd524b4a, 0x090b0b050e00113a, 0x6cff3aac627eff05, 0xff0517000f3d3c5f, 0x16e312ffbcda3bcd, 0x44140e0564b504bc, 0x31100e0536011105, 0x0eff3c3525d8ff05, 0xff053f0002bcae54, 0xdc8920ffbca4fa52, 0x51a7040556a804bd, 0xccff3bc363ebff05, 0xff055f030b3d572d, 0x13d13dff3b90f920, 0x7ab6040588cc04bc, 0x48b6ff0575011205, 0x04bc48fd2bff3ce3, 0xbc067a0dff0583bc, 0x9a0008388c2acfff, 0xc0a9ff0595000205, 0x083c0d6e22ff3db0, 0x3b69ba20ff05a302, 0x020012bceffbd0ff, 0xd4140b05f4070d06, 0xc1a60405c6000805, 0x2dffbcf34f06ff05, 0xff05cf0108bc45ee, 0x5bc4c2ffbc5defa0, 0xe1000905e60208bd, 0x7eff3bb8b0c4ff05, 0xff05ef0a0eba0aaf, 0xc00ee8ffbbb6236b, 0x9b70ff05fd000cbc, 0x0d3d6c4744ff3cd9, 0x0e062a0112064a06, 0xff06170008061c1d, 0x7c1e6dff3b599a5b, 0xe9aeff0625200ebb, 0x0e3b8dbbceff3d88, 0xff0637be04063c22, 0xf4555cffbb615639, 0xadafff0645230e3b, 0x0ebb16cf62ffbcb4, 0x0c06600008066e01, 0x3bb3f464ff065b00, 0x69000e3caa8744ff, 0x4aff3ae39e00ff06, 0x0e06800108bbd029, 0xbc99dc88ff067b23, 0x89000c3ce633c8ff, 0x95ff3c80a018ff06, 0x0d07a59305bb9481, 0x0406de0208071902, 0x0b06b01c0e06bebc, 0xbb8a10e7ff06ab01, 0xb9bb043ab2a40eff, 0xdcffb8ae6d5bff06, 0x0b06d0bd04bc87a1, 0x3d040249ff06cb03, 0xd900083c0163a0ff, 0x01ffbaef903aff06, 0x0b06f9b3043bcabb, 0xff06ef020b06f403, 0x803d42ffbb5816c0, 0x230e3cd5d090ff3c, 0x2bff0706170e070b, 0x3c8c9d42ffbb0fa2, 0x616c30ff0714010b, 0x070bbdb65298ffbd, 0xba040741bc040761, 0xedff072e000f0733, 0xb953b946ff39b57a, 0x3797e6ff073c060d, 0x030bbc7d1d55ff3b, 0x29ff074e000f0753, 0x39e49619ffbb1fda, 0x875d81ff075c040b, 0x8e053b24444effbc, 0xbf040777300e0785, 0xff39e7e420ff0772, 0x07800002b95482ac, 0x50b8ffbccb2b50ff, 0x6d0407971d0e3ca8, 0xff3a39d36bff0792, 0x07a0c8043924726e, 0x6719ff3b2eb351ff, 0x020b0835020dbb04, 0x000907d11d0e07f1, 0x2cff07bea30407c3, 0x3b755dfbffbb307b, 0xaf4945ff07cc170e, 0x220ebd0196f0ffbb, 0x0fff07debf0407e3, 0x3c3b655aff3dafb4, 0x369ef3ff07ec0002, 0x000c3c1cf729ffbc, 0x0a0b080700090815, 0xff3b23b5efff0802, 0x0810070bbbc64866, 0xb220ffbd1046fbff, 0x94050827b304bc35, 0xffbc495e75ff0822, 0x08300002bab905db, 0x2f4aff3c3598eeff, 0xca04087d000fba2b, 0x9405084f030b085d, 0xffbc437b64ff084a, 0x0858130e3b14fd74, 0x1eddff3a1f3ef8ff, 0x2d0e086f94053c7d, 0xff3c606139ff086a, 0x0878cc043dbd1490, 0x6ab7ffbcb6f5bfff, 0x1d0e08a100113bb9, 0xa0ff088e0d0e0893, 0x3b057a88ffba232d, 0xfde4e4ff089c0b0b, 0x1f0ebc22f290ff3b, 0xa4ff08ae0b0b08b3, 0x39b3dac8ffb9c73e, 0xd64bceff08bc0008, 0x95053beb6decffba, 0x000d0b05c6040d41, 0x9904095da90409e9, 0x070e08f971050919, 0x05ff08e6060e08eb, 0x3c83b6dcffbc31ff, 0xe40d4cff08f46105, 0x7604bbe62a27ffb9, 0xeaff09060008090b, 0xbd4ebea6ffbc0ff5, 0x0a81ddff0914070e, 0x08063b7b91abff3d, 0x260e092f310e093d, 0xffb7d8f547ff092a, 0x09389e043cc9ab3e, 0xf7b8ffbd1253efff, 0x5305094f0a0ebb98, 0xffbbc84c81ff094a, 0x09580008bd547a3e, 0x45cfffbcf1f6b8ff, 0x290509a53005bc83, 0x260e0977350e0985, 0xffba722332ff0972, 0x09803f01bc31f6f3, 0x3620ffbb8407beff, 0x08060997030bbcf7, 0xffbcc5ea45ff0992, 0x09a0310ebd66cd7b, 0x670cffbc4ca982ff, 0x010e09c9010bbdb5, 0x90ff09b6000809bb, 0x3d0c8c9dffbc0678, 0xb7d6fcff09c4300e, 0x000c3bd81eeaffbc, 0xe6ff09d6ba0409db, 0xbc5d6986ff3baff3, 0x26da47ff09e41306, 0x2a0ebd118de3ff3c, 0x8c040a3574050a79, 0x70050a0779040a15, 0xffb890e023ff0a02, 0x0a107c04bac4d726, 0x1d6cff3bff14d4ff, 0x92040a27090bb9cf, 0xff3ae6bba3ff0a22, 0x0a302f03ba0f8c91, 0x28e2ff3afad8a6ff, 0x0b0b0a59c5043a02, 0xe3ff0a46c4040a4b, 0xbab11abeff37d1aa, 0x7bda35ff0a540a0e, 0x170ebbae0e82ffb9, 0x10ff0a6688050a6b, 0x3b5736f6ffbb7f41, 0x8d301eff0a740011, 0xc204bc93a7daff3a, 0x2b0e0aa100120ac1, 0x2aff0a8e120b0a93, 0x3ca7e818ff3b4ac2, 0x60a128ff0a9c0002, 0x4105bcd6e367ffbb, 0x45ff0aaebf040ab3, 0xba11a5bbffba503e, 0xd9bc5dff0abc4305, 0x060dba45e01bff3c, 0x310e0ad7320e0ae5, 0xff3be52e66ff0ad2, 0x0ae001123da37451, 0x7516ffbcdcdb1cff, 0x2b0e0af72d0e3bc5, 0xff3aebfe01ff0af2, 0x0b0000123d40f52a, 0xec16ffbc677c7fff, 0x6b050c257305bdb5, 0xc8040b55320e0b99, 0x060d0b2700020b35, 0xffbcad0f75ff0b22, 0x0b3069053af7610d, 0x4a62ffbb23fcc1ff, 0x0b050b47070d3d27, 0xffbc563382ff0b42, 0x0b504a053a404fb8, 0x060cff3d18d7aeff, 0x0e0b0b79330ebcf6, 0xd1ff0b6669050b6b, 0x3d9d1df4ff3b1439, 0x139d45ff0b740108, 0x68053d9c23f2ff3d, 0x4fff0b86040b0b8b, 0x3b27b8c9ffbb6db3, 0x6359a7ff0b940b0b, 0x6e05bdb90a8dffbc, 0x230e0bc16d050be1, 0x8cff0bae00020bb3, 0x3c9a6aadffbbaa92, 0xba6550ff0bbc240e, 0x130bbbac4903ffbd, 0x00ff0bce310e0bd3, 0xbc979f3eff3be9f4, 0x530ea4ff0bdc0107, 0xcb04bd18237affbb, 0x350e0bf7120b0c05, 0xff3b60fdddff0bf2, 0x0c00250ebc9d79dc, 0x3e0dff3bae7a3dff, 0x260e0c172a0e3d0f, 0xffbb94eaceff0c12, 0x0c200b0bbd57edef, 0xace0ffbb91e505ff, 0x01070cb5ca043c46, 0x00020c511c0e0c71, 0x2dff0c3ec9040c43, 0x3b8ef173ffbbbdd8, 0x1c2a24ff0c4c000c, 0x00083b9de762ffba, 0x53ff0c5e78050c63, 0xb8109271ffbcd7c6, 0x978c4fff0c6c010b, 0xc9043acfef84ffbc, 0x78050c871d0e0c95, 0xffbc4ac9fcff0c82, 0x0c90c804b9e08eee, 0x1159ffbaaf1d30ff, 0x00080ca7020d3c83, 0xffbd4bf5f7ff0ca2, 0x0cb07c05bbb72bdc, 0x8debffbc365fe1ff, 0x000c0cfd010cbb3e, 0x75050ccf2c0e0cdd, 0xffbd13eeeaff0cca, 0x0cd82e0eb9815355, 0x7b8fff3cd3a56aff, 0x83050cef0b0b3a6e, 0xffbb92c8d3ff0cea, 0x0cf802073a146253, 0x1ab3ff3be3fd33ff, 0xcc040d21250ebab0, 0x4dff0d0e220e0d13, 0x3cf28c0dff3ab8e6, 0x321ea6ff0d1c8905, 0x290e3b8342bfffbc, 0x4bff0d2e01070d33, 0x3d2ee519ff3bf2fa, 0x50385eff0d3c2a0e, 0x1f0ebb50bcaeffbd, 0xc2040e5c01070f78, 0x000f0d95bc040dd0, 0x96040d67a4040d75, 0xffba8fcef9ff0d62, 0x0d70030b3c58197b, 0x3dadffba5f6746ff, 0x070b0d87000ebc96, 0xffbb8393acff0d82, 0x0d90b0043ab0ffa0, 0x4fe8ffbb80da29ff, 0x070d0db096053af5, 0x82ff0da6bf040dab, 0xbacad334ffbbdc3c, 0xc201113c7dfe40ff, 0x8a64ff0dbd00020d, 0x02bc0524c0ffbc62, 0xbd25a028ff0dcb00, 0x180b0bbc3c9c90ff, 0xea170e0df8cc040e, 0x880bff0de5030e0d, 0x04b9f423b6ff3ad3, 0x3c206cd9ff0df3cb, 0x0a0002bb2ac43bff, 0xc0cbff0e05000c0e, 0x12ba688b43ff3b7e, 0xbaa150deff0e1300, 0x3cc304bbb70971ff, 0x29000c0e2e000e0e, 0xf0ffbbc0b120ff0e, 0xff0e37010ebb6b43, 0x2fd4d0ffbab5fc70, 0x49060d0e4e1d0ebb, 0x1fff3b6cb79fff0e, 0xff0e570e0b3accd1, 0x509c60ffbbaf79a8, 0xa8b3040eec030b3d, 0x7a96040e8800020e, 0xde20ff0e7595040e, 0x0e3a4725daff3be7, 0x3c4059e8ff0e8301, 0x9a99043cafc8a0ff, 0x2160ff0e9578040e, 0x0dbb5b63abff3bf2, 0x3b92af35ff0ea306, 0xcc00123b44b060ff, 0xb9000b0ebebb040e, 0xaeff3b611bbaff0e, 0xff0ec7000bbc9eaf, 0x8166e0ff3c482525, 0xd9bb040ede030e3b, 0x1bffbb8c0c70ff0e, 0xff0ee7130e393bed, 0x0e8970ffbbc317d1, 0x14c9040f349605ba, 0x0101120f06000c0f, 0x05ff3947a8b8ff0f, 0xff0f0fc6043bb433, 0xb7c200ff3c051727, 0x2100020f26080eba, 0x3effba80d568ff0f, 0xff0f2f000c3c2795, 0x70d4b7ff3b847bca, 0x4a020e0f58cd0439, 0xf804ff0f4500020f, 0x04bb692e28ff3aad, 0x3b5d7183ff0f53cc, 0x6a110e3c1a5764ff, 0x684aff0f65020e0f, 0x12bc1e7824ff3b85, 0x3be7f9c0ff0f7300, 0x2300023b3ed378ff, 0xbf2b0e0ff1000c10, 0x9a000d0fa8240e0f, 0xf810ff0f9596050f, 0x12bca88150ff3c06, 0xbb1dfc86ff0fa300, 0xba0111bc9a5c70ff, 0xf755ff0fb50b0b0f, 0xffbc4bc1f0ff3a6b, 0x0fe301073ca66020, 0x0fd096050fd5000d, 0xcae0ffbb564a00ff, 0x20ff0fde9605bc4e, 0xbc7cc6c0ffbcd63a, 0x31f550ff0fec000d, 0x060dbcc58b60ffbc, 0xc9041010030b101e, 0x04bc3e30c0ff1002, 0x3bd65f80ff100bcb, 0x19cb043acc5200ff, 0xecffbc46d7c0ff10, 0xbd569718ffbcc31c, 0x104b220e1086060d, 0x1038020d103dc904, 0x4fc3ff3c4d5ba0ff, 0xecff1046030b3c4a, 0x3c95283dff3c8631, 0x10610111106f070b, 0x15b66bff105c000c, 0x030bbcd589a4ffbc, 0xff3b97ee11ff106a, 0x1081000cbbe55697, 0x1edd45ff107c0008, 0xecff3d08c7a8ff3b, 0xbcac3822ff3d0d3e, 0x0000000800000013, 0x00000001000003e8, 0x000000000000109d, 0x04848c0508f70007, 0x012cc1040248c704, 0x005c021100a06a05, 0x002e4305003c5305, 0x375504ff00295504, 0xb904ba5c2f16ff39, 0xffb7f930d9ff0037, 0x004e6505bb09678f, 0x3804f7ff0049a704, 0xba04ba5750b2ffba, 0xff3ae46edcff0057, 0x00806c04bb4f1447, 0x006d2c0400725e04, 0xfb44ffbaabf00bff, 0x84ff007b000c3be4, 0xbe06cbacffbca63e, 0x008d6d0400920008, 0xe260ff3d246a29ff, 0xceff009b1205bcb4, 0x3a451fe1ff3d0e3f, 0x00c8000d00e8c004, 0x00b5810500ba260e, 0x4203ff3c759041ff, 0x86ff00c37c04ba20, 0xbae88192ffbdb7ae, 0x00d5860500da0108, 0xf474ffb94c5e68ff, 0x72ff00e3020b3a2d, 0x3b20351bffbb910d, 0x00fe030d010c230e, 0x0ae171ff00f90f0e, 0x7805bdd2dcb1ffbc, 0xff3ce061b1ff0107, 0x011e0109bb01683a, 0x0fe14fff01190006, 0x0112bd7f46b1ffbc, 0xff3c59e9beff0127, 0x01bc79053df363e0, 0x0158040d01787705, 0x01450a0b014a0006, 0x7d63ff3bc92436ff, 0x85ff015304063d07, 0xbb2d73a1ffbd2280, 0x01656d05016a7005, 0x035affb8b99da1ff, 0x0dff017302083cce, 0x3c5a02bcffbc3824, 0x018e0006019c0002, 0x6a515fff01892a0e, 0x060e3b9718eeffbc, 0xff3cdb4c9dff0197, 0x01aec304bd4578f1, 0xa3e866ff01a90008, 0xc4043c6b52b3ffbc, 0xffbd592012ff01b7, 0x02040002bca13981, 0x01d67a0501e4c304, 0xfe93ffff01d1c204, 0x230e3dec8cb5ff3b, 0xff396ea1dfff01df, 0x01f6c604bbd884d6, 0x0b3ad6ff01f17e05, 0x0b0b38d7bb5fffbc, 0xffb96670d6ff01ff, 0x022880053c716e5c, 0x02157b05021a100b, 0x5f8aff3bb17d6eff, 0x0eff0223000cbbd8, 0x3d2ee9e3ff3b618c, 0x02358905023a010c, 0xa8c1ffbba03995ff, 0x55ff0243230e3ad4, 0x3d3fe3caffb982dc, 0x02dc00090368190e, 0x027802080298070b, 0x02651406026acb04, 0xb93fffbcff9a33ff, 0x9aff0273020d3a86, 0x3d507e45ff3c1a94, 0x0285000d028a020d, 0x0d00ff3cb1e084ff, 0x70ff0293000fb901, 0x3cde8e24ff3d3385, 0x02ae010c02bc0011, 0x9efc35ff02a90208, 0x170ebbcdf199ff3b, 0xff3b610457ff02b7, 0x02ce060d3ceccd2d, 0xd2dc78ff02c9010c, 0x010c3c046a2cffba, 0xff3c19aba4ff02d7, 0x0324060dbd2a72cb, 0x02f602090304010c, 0x0754deff02f18a05, 0x000fbbd66065ff3d, 0xffbca60f0dff02ff, 0x03168a05bb0df863, 0x2653b0ff03110209, 0x0e0e3be8dc89ff3d, 0xff3b1039ebff031f, 0x03488305bba43035, 0x03350002033a7b05, 0x9b94ffbbdfb5e8ff, 0xf1ff03430b0bbd04, 0xbc1d1e0cffbc46c3, 0x0355070d035a8405, 0x3b4eff3cba39f7ff, 0xb3ff03638a05bd82, 0x3a3304ebffbbb481, 0x03b4310e03f88b05, 0x03866d0503947705, 0x87dde8ff03810008, 0x6f05bba15a7eff3b, 0xff3d2b8a02ff038f, 0x03a6060d3a81f4ff, 0x6e0dadff03a10012, 0x0002391834e3ff3c, 0xffbbcd4ba1ff03af, 0x03d8330eb982770d, 0x03c5770503caca04, 0x0a14ff3b15766dff, 0xc7ff03d3010c3d20, 0x3cb22dbdffbb166e, 0x03e5020603ea070d, 0xade0ffbb39efa2ff, 0xa2ff03f3030b3b7c, 0x3c127042ff3cf034, 0x0420000c0440220e, 0x040d020804120012, 0x1900ffbc8b7a73ff, 0x0cff041b0009b9a6, 0xb9cf4e00ff3c0f4d, 0x042d010c0432cc04, 0x5ae6ffbc7551deff, 0xb0ff043b0208bd33, 0xbd452fe7ffbdbab5, 0x045600090464c804, 0x562067ff04510b0b, 0x0b0bbae55db9ff3d, 0xffbd2e69aaff045f, 0x0476c904bcca6e14, 0xe2537bff04710b0b, 0xca04bb003cb9ffbc, 0xff3d738f3eff047f, 0x06bb8d053a39b0c1, 0x051c0e0e05a8110b, 0x04b8070e04d88804, 0x04a5011204aa8604, 0x6a98ff389cc5d8ff, 0x8dff04b301113bf2, 0xbc1933c7ffbd9553, 0x04c5080e04ca7204, 0xaf5dffbb6945b5ff, 0x82ff04d3000f3c93, 0xbb8656a8ffbcfb8c, 0x04ee000904fc010c, 0xba553aff04e9100b, 0xb604bcb27037ff3a, 0xff3a8790a2ff04f7, 0x050ea404bc00042c, 0x929d58ff05099e04, 0xa504bd3de299ffbb, 0xff3d741431ff0517, 0x0564b5043add9ace, 0x0536100e0544140e, 0xa79144ff0531010b, 0x030b3caeec4cffbc, 0xffbc689169ff053f, 0x0556a804bd3f28ba, 0xafd9edff0551a704, 0x030b3d41a939ff3b, 0xff3b8279bfff055f, 0x0588190ebc050921, 0x05750208057abc04, 0xdbd5ffbbd46b81ff, 0xe1ff058300093d02, 0xbb81d971ff3c37a8, 0x0595c404059a220e, 0xfef6ffbbd249d4ff, 0x43ff05a3b604bc98, 0xb9a2b971ff3d0ca4, 0x05f40108062f0012, 0x05c6cb0405d40008, 0x45188dff05c1070d, 0xcc043d54a68cff3b, 0xffbcb255f9ff05cf, 0x05e6230ebbb6f033, 0x2fdd8eff05e1ca04, 0x250e3da8d7a0ff3c, 0xffbd48f72dff05ef, 0x0618ca043aec3ab3, 0x06050002060abc04, 0x10a8ff3b307a7fff, 0x00ff0613010c3cb0, 0xbd03c6b4ffbc2536, 0x06250208062acc04, 0xe260ff3d4e7e6aff, 0x0dbb8d5440ff3c4e, 0x0e06570111067706, 0xff06440008064900, 0x020a4dffbbf1be28, 0x08beff06521d0ebd, 0x0e3bf241efff3abe, 0xff0664b304066917, 0xaee547ffbb87f07a, 0x67b4ff0672190e3b, 0x0ebb943606ffbc9f, 0x0c068d0008069b01, 0x3ba1f590ff068800, 0x96000e3c9979bcff, 0x5eff3accdb00ff06, 0x0e06ad0108bbbb58, 0xbc8a79b2ff06a823, 0xb6030e3ccf2e98ff, 0x98ffbcc9c767ff06, 0x0d07db93053c5214, 0x04070b0208074f02, 0x0506dd190e06ebbc, 0x3a96bb90ff06d890, 0xe6bb04ba220963ff, 0x6eff39868a63ff06, 0x0b06fdbd04bc7423, 0x3ced9db1ff06f803, 0x06c6043be8e6c0ff, 0x4aff3b3116f9ff07, 0x0b072fbf04bb72fa, 0xff071c010b072102, 0x188e00ff3c3b1ce0, 0xdc61ff072a0d0ebb, 0x0e3d386c10ff3c2c, 0xff073c220e074123, 0x0c36e4ffbb837278, 0xe160ff074a010b3d, 0x0bbda41720ffbd4a, 0x040777bc04079707, 0xff0764000c07695a, 0xf17794ffb9fedecb, 0xae7eff0772000fbc, 0x0bb9f38fa6ff3aa4, 0xff0784000f078903, 0xcdb9f1ffbb0fde27, 0x9dc7ff0792000239, 0x05bb8a44a9ff3be9, 0x0407ad2f0e07bb8e, 0xba96ff92ff07a8b7, 0xb600023aa887baff, 0x0bffbcb6da30ff07, 0x0c07cd00093c960a, 0x39310901ff07c800, 0xd6c40439c107a7ff, 0xc0ff3a9867fbff07, 0x04086b020dbb8687, 0x0e080795050827c8, 0xff07f4c50407f92a, 0x402a16ff3adecb62, 0xf41cff08029405bc, 0x043d4befb8ff3dae, 0xff0814170e0819c6, 0x11be6affba5ac230, 0x67ecff0822000fbc, 0x0ebc43b7dcff3ce2, 0x09083d030b084b1f, 0x3cde46c8ff083801, 0x461d0ebb611920ff, 0xb0ffbbcc0d18ff08, 0x04085d070b3d29bb, 0xbcfc0b52ff0858c9, 0x66000cb95aac37ff, 0x1dffbce7087bff08, 0x0508b3000f3c2fbd, 0x040885c204089396, 0x3a489afdff0880c1, 0x8e0a0b3d6ef54bff, 0x26ffbc2cfc86ff08, 0x0408a5bc043b4929, 0x3cce1bb1ff08a099, 0xae0002bcc06c23ff, 0xa2ffbc8a1d1aff08, 0x0e08d700113ca82d, 0xff08c40d0e08c91d, 0xf042f6ffba12dc4d, 0x812fff08d20b0b3a, 0x0ebc12a717ff3be4, 0xff08e40b0b08e91f, 0xa1de7dffb9b3521a, 0xddc8ff08f2000839, 0x053bd3e2f0ffbac0, 0x040b3bc6040d7795, 0x040993b4040a1fc1, 0x06092f7705094f9d, 0xff091c4101092117, 0xb7c892ff39ce2313, 0x0b01ff092a050eb9, 0x0ebc7dd242ffba82, 0xff093c020e094107, 0x90ec53ffbb6fed83, 0x7ae4ff094a000c3b, 0x05bc1241abffba93, 0x120965070d097369, 0xbbc0ae85ff096000, 0x6e190e3a622774ff, 0x2eff3c3c1405ff09, 0x050985010cbb9707, 0xbb018b1fff098071, 0x8e010738b84325ff, 0x9aff3a8b4031ff09, 0x0809db0011bc0c43, 0x0e09adbe0409bb01, 0xbb38f777ff09a82f, 0xb6080e3c1fa493ff, 0x21ffbc3a8525ff09, 0x0109cd02073becf0, 0xbb3678a4ff09c834, 0xd6270ebb109846ff, 0x23ffbc401bbeff09, 0x0309ff33033ca0b2, 0xff09ec060d09f132, 0x3cedfcffbb48ce91, 0x0d6dff09fa010cbd, 0x053c996426ff3d9b, 0xff0a0c060d0a115c, 0x0fe998ff39a2bea1, 0x8072ff0a1a5d05bc, 0x023a9e767aff3caa, 0x0e0a6b80050aaf00, 0x0d0a3d140b0a4b22, 0xbb95774eff0a3807, 0x4600123c933e8fff, 0x99ffbbddbeb5ff0a, 0x050a5d7505bcbfac, 0x3a78ae1aff0a5874, 0x667e05bc959779ff, 0xdfff3b44f03bff0a, 0x050a8f310ebc7f9f, 0xff0a7c180e0a8187, 0xa79c9fffba477f55, 0x1669ff0a8a230e3b, 0x0bbc2ba9b6ff3ad4, 0xff0a9c87050aa103, 0x947cd3ffbbe1c71c, 0x7873ff0aaac5043c, 0x08b9a68000ff3d88, 0x0c0ad72a0e0af702, 0xff0ac41d0e0ac900, 0xd9a058ff3b10c0be, 0xd985ff0ad2060dbb, 0x043b1ef21effbb61, 0xff0ae4000f0ae9c3, 0xe917f4ff3c6902be, 0x153fff0af2320ebb, 0x0fbc2ea510ff3c98, 0x050b0d220e0b1b00, 0xbd1e4b37ff0b0839, 0x1639053b1e6a18ff, 0x63ffbe29aff4ff0b, 0x040b2d3b05bd13ff, 0xbcd5e6cfff0b28c5, 0x3647053ad112cdff, 0x9bff3cd104daff0b, 0x0c0c5b0108bab087, 0x050b8b00110bcf01, 0x040b5d78050b6b7a, 0xbac8b5c3ff0b58cb, 0x6600023ca6e0cbff, 0x35ffbd145541ff0b, 0x020b7dc804bb881e, 0xbc271a54ff0b7800, 0x86130b3ba7715fff, 0x8cffbad1d8dfff0b, 0x0d0bafc7043bbbab, 0xff0b9c340e0ba106, 0xab90baff3b268d85, 0x2697ff0baa7905bc, 0x123cd60e6bff3d92, 0xff0bbc250e0bc100, 0x4fd81fff3a02a0c9, 0x80a3ff0bcac9043d, 0x05ba8a5a88ff3b59, 0x060bf70d050c1712, 0xff0be400020be90a, 0x5579f1ff3bef2031, 0x5953ff0bf2220e3e, 0x06bdc596adffbb9a, 0xff0c04ca040c0912, 0x01c546ffbd9e0bc2, 0x5ed3ff0c12030ebe, 0x0ebd4485e9ff3b7a, 0x0b0c2d86050c3b2b, 0x3bd2022aff0c2814, 0x36220e3ade99f1ff, 0xdfffbaa221c5ff0c, 0x040c4d2c0e3c0048, 0xbe2c30f2ff0c48c8, 0x562d0ebc14b98dff, 0xd2ff3ce3f6faff0c, 0x070ceb7505bc0120, 0x050c8761050ca701, 0xff0c74310e0c7955, 0x5c15acffbb081210, 0x38ebff0c82030b3c, 0x04bca616d9ff3cae, 0xff0c94280e0c99ca, 0x3ed538ff3c81532a, 0x54a2ff0ca2000c3b, 0x12bc2e9549ff3d08, 0x0d0cbd2b0e0ccb00, 0xbc1627beff0cb807, 0xc6c7043c5f4099ff, 0x2bff3d00afdbff0c, 0x040cdd060d3b14b0, 0xbbb956d4ff0cd8c9, 0xe60002b959b7a3ff, 0xa6ff3d22e20aff0c, 0x0b0d33310e3c8173, 0x0f0d057b050d130e, 0xbcaff74aff0d0000, 0x0e010c3b1241b0ff, 0xd0ffbac67849ff0d, 0x0b0d25220ebb788b, 0x3c9585d9ff0d2011, 0x2ec804bb9656afff, 0x0dffbce83b7dff0d, 0x050d5701073bd69f, 0xff0d44320e0d497b, 0x44233bffbd3ea3d8, 0x9d71ff0d52cc04bb, 0x0f3c3ea79effbc18, 0xff0d64020d0d6900, 0xc1785bff3c32ccf7, 0x2435ff0d72000cbd, 0x0e3d166d79ff3c8b, 0x0d0e5301070f6f1f, 0x040dcb01110e0f07, 0x040d9dca040dabcb, 0x3b91e457ff0d9895, 0xa6060dba2f4358ff, 0x74ff3c9cc034ff0d, 0x040dbd0002bbf2eb, 0x3bb06e5dff0db8cd, 0xc6010c3a2ce61dff, 0xafffbac1c9c7ff0d, 0x040def060dbc2e7f, 0xff0ddc7f040de196, 0x002d54ff3a86fc60, 0x5eebff0deaa404bc, 0x0b3a792537ff3c62, 0xff0dfcb0040e0103, 0x739a00ff3d26d910, 0x85e0ff0e0a0008bc, 0x02bceca0e0ffbc80, 0xff0e1c96050e2100, 0xe1c8c3ffbce76939, 0x2ebd040e33c8043b, 0x68ff3c649800ff0e, 0x0b0e4596053ceacb, 0x3ba9c3b0ff0e4007, 0x4e010b3b9f5410ff, 0xd8ff3c42b3a0ff0e, 0x040ee3030b3c14e6, 0x120e7f00020e9fb4, 0xff0e6c95040e7101, 0x8db17fff3be09bc6, 0xa33aff0e7a010e3a, 0x0d3c9e3490ff3bed, 0xff0e8c010b0e9100, 0x72d3bbff3bd9ead8, 0x5a33ff0e9a000ebb, 0x123b6ec628ffb967, 0x0b0eb5020d0ec300, 0x3b4a98f4ff0eb000, 0xbe000bbc8ed150ff, 0x60ff3c34216eff0e, 0x040ed5030e3b68ec, 0xbbc9b983ff0ed0bb, 0xde0d0e39292220ff, 0x17ffbbb02b83ff0e, 0x040f2b9605ba7993, 0x0d0efd000c0f0bc9, 0x3b2da286ff0ef806, 0x06c604ba145ca6ff, 0x00ff3bef9020ff0f, 0x0e0f1dcb04baa562, 0xbc221b53ff0f1807, 0x2600113c906ff8ff, 0x3dff3b9eb0a4ff0f, 0x0e0f4f0b0e3adc58, 0xff0f3c00020f4102, 0x51dcbcff3b043c2c, 0xc796ff0f4a0012bb, 0x0e3ba3b76eff3bfe, 0xff0f5c110e0f6114, 0xe91060ffbc0e9f54, 0x9e88ff0f6a0011bb, 0x023b2bbe58ff3c1f, 0x040ff1000c102300, 0x050f9f000d0fbfcd, 0xff0f8c01070f9196, 0x4258c8ff3c268d10, 0x1d00ff0f9ac004bc, 0x0bbc97a790ffbc3a, 0xff0fac230e0fb103, 0x60c566ffbc9f3190, 0x12b0ff0fbacb04bb, 0x05bcb2bf6affbd08, 0x070fd50b0b0fe396, 0x3bda1785ff0fd001, 0xde0011bc25fbb8ff, 0xc0ffbcbb1d18ff0f, 0xff0fec0012bc3761, 0x291a60ffbcbc7454, 0xfe060d10030111bb, 0x94ffbcaf9a04ff0f, 0x04101e030bbd4121, 0xbc2b2bc0ff1010c9, 0xc0ef80ff1019cb04, 0x40ff3ab7e400ff3b, 0x0e10350011bc32f5, 0xbd03bde8ff103023, 0x59220ebbba0b50ff, 0x46020d104bc90410, 0x93ff3c38d260ff10, 0xff105401113c3614, 0x718d10ff3c863dcd, 0x6f050b107d96053c, 0x20bcff106a011210, 0x0c3aed64b4ffbc48, 0x3aa06880ff107800, 0x8f01113cfe3e08ff, 0xcdc0ff108a030b10, 0x043cf37e28ffbbdd, 0x3b12ae80ff1098cb, 0x0000133ba7b980ff, 0x0003e80000000800, 0x0011900000000100, 0x9d00070000000000, 0x48c70404848c0508, 0xa06905012cc10402, 0x3c5b05005c5c0500, 0x29ab04002e5a0500, 0xc0ffb92826c2ff00, 0xff00372e0139a547, 0x371478ffbc9e7434, 0x499604004e0008bb, 0x8bffb7c088d9ff00, 0xff0057a404bce122, 0x4deda3ff3c6f1f54, 0x725d05008040013b, 0xa38eff006d910400, 0x04bcf5b1f4ffb9cf, 0xbb38ceabff007b51, 0x9266053b9b58c4ff, 0x5c52ff008dc00400, 0x0dbba276c1ffba24, 0x3c383da0ff009b02, 0xe8c0043a310091ff, 0xba000900c8010c00, 0xbeb1ff00b58d0400, 0x0b3a486b2bff3a58, 0xbbf0c663ff00c302, 0xda010bbb49aa09ff, 0x2bc7ff00d58e0400, 0x0bbc3f08b5ffbb4c, 0x3b631b63ff00e313, 0x0c030d3bfdffe0ff, 0xf9310e00fe020d01, 0xfbff3c9b4781ff00, 0xff0107130ebcd815, 0xfccea6ffbcf0f41a, 0x190002011e310ebd, 0x1effbc1c7289ff01, 0xff012783053a6af6, 0xdd12d1ff3c7d59cc, 0x78000f01bc75053d, 0x4a0a0b0158000601, 0xfa0bff0145030b01, 0x05bc055df2ff3c16, 0x3d09ecebff015371, 0x6a04063d57ed0dff, 0x9eb9ff0165000201, 0x05badf9cf9ffbe08, 0x3c025862ff017329, 0x9c7305bc071553ff, 0x896205018ec20401, 0x34ffb9e94951ff01, 0xff019771053c9352, 0x8cbeccffb9de0a31, 0xa9230e01ae0e0bbc, 0x35ff3d0c940dff01, 0xff01b702083bbc0f, 0x4e844dffbcacb1fc, 0xe41f0e020481053c, 0xd1c30401d6000801, 0xd7ffbc77b369ff01, 0xff01df1d0e3afc67, 0xa5e95fff3c4328e3, 0xf1010801f62b0e3d, 0xaeffbc0e16a6ff01, 0xff01ff2d0e3b3d0f, 0x9d94adff3d37a30b, 0x1a83050228890538, 0x6e90ff0215c20402, 0x08bc1d2247ff3bfe, 0xbaca0a11ff022300, 0x3ac5043accff30ff, 0x0197ff0235050b02, 0x053b5c206effbbc5, 0xbd1edd7cff02438a, 0x68ca043b6c0f6fff, 0x98070d02dc230e03, 0x6a060d0278000202, 0x4947ff0265220e02, 0x123d2e51c8ffbc0a, 0xbaae159fff027300, 0x8a220ebd608d80ff, 0x8262ff0285880502, 0x093bc737e2ffb983, 0x3d01bb29ff029300, 0xbc0009bc2d32baff, 0xa9030b02ae0b0b02, 0xa5ffbc6ef833ff02, 0xff02b77905bd4722, 0x6894caffbd28ef72, 0xc9c80402ce1f0ebd, 0x3effbc36d552ff02, 0xff02d761053b817e, 0xda5b8fff3d084168, 0x048a050324c9043c, 0xf1280e02f6020803, 0x02ffbc9317b3ff02, 0xff02ff7905bb37ed, 0x97028cff3ad60f03, 0x11250e031600023c, 0x80ffbd305919ff03, 0xff031fc804bb5bb4, 0xbbe71eff3ccb0fb0, 0x3a01080348280e3d, 0x12d8ff0335000803, 0x0c3d473e75ff3c3f, 0x3c712d87ff034301, 0x5a0011bc9c5e86ff, 0x01f0ff03557e0503, 0x0bb9f00622ff3cd1, 0x3bff05b4ff036305, 0xf8cd04bb8187d4ff, 0x94010c03b4000203, 0x81030d0386cb0403, 0xf7ffbbbf198fff03, 0xff038f00083c3294, 0x9cd618ff3c01775c, 0xa1880503a62e0ebb, 0xe4ffbbd34cb6ff03, 0xff03af8605bcc14f, 0x20689dffb98d2a70, 0xca130b03d88a053d, 0xb0c7ff03c5cb0403, 0x08ba98c760ffbc33, 0xbbd61b7fff03d300, 0xea010c3bc3f3a9ff, 0xe354ff03e5130b03, 0x0b3cb00ce3ffbb8d, 0x3d1fc4c3ff03f30b, 0x4000023de885e6ff, 0x1284050420850504, 0x4d64ff040d000c04, 0x0c39fcb7bcff3c9e, 0xbd0cff0aff041b01, 0x328805bc2336b2ff, 0x3c49ff042d860504, 0x0c3d8c1392ff3c47, 0x39688d00ff043b01, 0x642b0e3c0d5b4cff, 0x51260e04560b0b04, 0x2bffbc9358e8ff04, 0xff045f230ebb6bf9, 0xd4730dffbd648ef3, 0x71000c04762c0ebc, 0x03ff3c8f3d48ff04, 0xff047f00123d84cb, 0xbbe424ffbc4ae02a, 0x9f230e066a8d053b, 0xcf0a0b0513000f05, 0xaab00404b8c60404, 0x8e08ff04a58c0404, 0x083c275fbaffba13, 0xbca0c66aff04b301, 0xc1020d3c34823aff, 0x190eba38c400ff04, 0xffbc5b5040ff04ca, 0x04f39704bda5d9db, 0x04e0000c04e58604, 0x6d2effbc7c9043ff, 0xacff04ee020d3c76, 0xbde3169affbd13b5, 0x0500220e0505be04, 0x11adff3bea806cff, 0x8dff050e020dbbbc, 0x3c3ee8b7ff3cedec, 0x053b9c04055bc804, 0x0528010c052d9b04, 0x06b4ff3acc811cff, 0x2eff0536050bbbbf, 0x3cad79d7ffbc2f28, 0x05480012054dbd04, 0x335fff3a71a3c0ff, 0x3aff0556000cbae1, 0x3b866647ffbb3098, 0x0571220e057f010c, 0xb77792ff056c000c, 0x000cbac8207fff3b, 0xffbc1eff67ff057a, 0x059101083ca07e06, 0xdb62ebff058cc904, 0x0a0bbb89ed2dffbc, 0xffbca0e7abff059a, 0x061d280e3cadfed3, 0x05cb060d05eb0002, 0x05b8c70405bd0108, 0xca20ffbc619ef4ff, 0x0aff05c6260ebb54, 0xbba0e918ff3d2714, 0x05d8250e05dd0012, 0x7c39ff3b7e0e95ff, 0x55ff05e6c204bc0f, 0x3e2dd700ffb924af, 0x05f8001205fd250e, 0x3801ffbd34de75ff, 0x0e0b060f000cbda8, 0xffbc20e269ff060a, 0x061800093cf40794, 0xd3d5ffbccd8722ff, 0xc4ff06268404b984, 0x04064a0011bd741a, 0xff06370008063cc6, 0xc1be2cffbc9e7ec6, 0x278bff06450002bc, 0x0dbb212e13ff3d16, 0xff06570208065c06, 0xad69c8ff3afce9e6, 0x6a0aff0665030bbc, 0x05bd1beed6ffbb9e, 0x0906fe030d078193, 0x0b069a310e06ba00, 0xff0687300e068c01, 0xcefc17ffbadc90d6, 0x35e5ff06952b0e3c, 0x0ebc3aec13ff3aa9, 0xff06a7c00406ac33, 0xe4df2fffbc45ded6, 0x9ef5ff06b5340e3c, 0x053c6bb495ffbc97, 0x0406d02b0e06de92, 0xb9bb1e0dff06cbc0, 0xd9300ebc93af9eff, 0x2eff3d458930ff06, 0x0406f0b8043c54db, 0x3b75ec30ff06ebb7, 0xf9010bbd28fe90ff, 0x54ffbcbfac2cff06, 0x0c073d5b043d15af, 0x1107189005072600, 0xbaafd163ff071301, 0x2101123c3c971bff, 0x83ffbacf23d4ff07, 0xff072f000fbcc360, 0x07380002bdbb2e50, 0x0a94ffbc8d2638ff, 0x7804076100023d1d, 0x1cff074e74040753, 0xbc6a3b55ff3970f3, 0x2f785bff075c0c0b, 0xc304ba221165ff39, 0x52ff076e040d0773, 0x3a4c3c3fffbc4499, 0xcbbff0ff077cc704, 0x020d3a1939d1ffbb, 0x950507cdc8040811, 0xc504079f2a0e07ad, 0xff3ac8834cff079a, 0x07a80002bc2cf29d, 0x754cff3d378af8ff, 0x190e07bfc6043d9d, 0xffba423004ff07ba, 0x07c80002bc088369, 0xf80dff3d1ee604ff, 0x230e07f100083bbe, 0xe0ff07de000207e3, 0x3a3847ecffbce60a, 0x7ae18aff07ec0002, 0x0002bbbdc07fff3c, 0xabff07fe010b0803, 0xbcba8612ffba9205, 0x8e4ff0ff080c230e, 0x000fbc8111fbff3c, 0x99040839000c0859, 0x55ff0826020e082b, 0xbd03ffbbff3c8d9c, 0x1fc817ff08349605, 0xa004bc8037d6ff3c, 0xadff0846020b084b, 0xbd2c01a9ff3bf3d8, 0x6f90b7ff0854a504, 0x0011b88ef39aff3d, 0x250e086f9405087d, 0xff3b3ae3e1ff086a, 0x087800023c922f45, 0xd5b3ffbaa22686ff, 0x030b088f1d0eb9bf, 0xff3ab86327ff088a, 0x08981f0eba22b290, 0x5297ffbc0e431aff, 0x96040d14010c3811, 0x021109c515060ad8, 0x680508f501070939, 0x630408c7940408d5, 0xff37972078ff08c2, 0x08d000113a6af7f9, 0x3463ffbb6c11c2ff, 0x040e08e769053be4, 0xff3ac202e4ff08e2, 0x08f0000f3c588b67, 0x0ab5ff3bbbb928ff, 0x890509197f04ba8d, 0xa5ff09067504090b, 0x3a1aa1e8ffba0c5a, 0xf190e6ff0914000f, 0x02073bddbe86ffbb, 0xe8ff0926170e092b, 0xbaa0c19fff3a4112, 0xeb9afaff09349104, 0x0108ba3ee1b7ffba, 0x1205096102120981, 0x3cff094e3b040953, 0x3c8c0499ff3a85a6, 0xfa49f4ff095c6a04, 0x00023bc0e740ffbc, 0x54ff096e61050973, 0xbc75e722ff3c1626, 0x3f14afff097c3e04, 0x0b053d6aa66dff3c, 0x3b0409975e0409a5, 0xffbb61fe5cff0992, 0x09a00208bd0a5f0b, 0x666bff3dabd64aff, 0x021209b70a06bcd5, 0xffbc0d18beff09b2, 0x09c001073d9ee228, 0x47e2ffbcdfdb80ff, 0x0d0e0a558404bd8e, 0x030e09f1000c0a11, 0x8bff09de021109e3, 0xbc3b8b02ffb93d90, 0x505414ff09ec8204, 0x000ebcf1dee6ffba, 0x79ff09fe030d0a03, 0xbbcb5f49ff3bce3a, 0xa8f7f1ff0a0c030b, 0x6f04bc98493cffbb, 0x0f0e0a27000c0a35, 0xffbbb0641bff0a22, 0x0a300f0e3ca53ecf, 0x2f77ffbdbc3ae2ff, 0x0f0e0a47030d3b5c, 0xffbd4a370fff0a42, 0x0a50030bbca8b290, 0x9045ffbd2f4a27ff, 0x85040a9d070ebdaa, 0x000e0a6f030e0a7d, 0xff3ba0a857ff0a6a, 0x0a7801083cecec04, 0xfab2ff3c53360fff, 0x13050a8f1706bc8e, 0xff3c4504afff0a8a, 0x0a98030bbc315188, 0x727dff3bab51c6ff, 0x00080ab8080ebc8e, 0x073e5a740cff0aaa, 0x3d9f4dcdff0ab301, 0xca06053dfb5bf3ff, 0x541fff0ac586040a, 0x063cf8156dff3b00, 0xbcc73406ff0ad316, 0xf8060e3aaba18bff, 0x2801110b6c9a040b, 0xfa01080b0899040b, 0xdc13ff0af598040a, 0x0c3c62e43bff3b04, 0x3af76076ff0b0300, 0x1a050ebc3c6664ff, 0x18f2ff0b15040e0b, 0x0b3cdcc45bffbc58, 0xbc7cd8abff0b2303, 0x4c0606bdb87109ff, 0x39000c0b3e040e0b, 0xeeffbac30892ff0b, 0xff0b470008bd6fdc, 0xa98a6dff3ca050d7, 0x5906050b5e010839, 0x0fffbbf7ad8dff0b, 0xff0b6700023ca3f5, 0x49ed6dffbc8bef02, 0x94030e0bb412063b, 0x8110060b862b050b, 0x56ffbb4c0f55ff0b, 0xff0b8f00083ba4ac, 0x03b98aff3b29e5c6, 0xa175050ba60b06bb, 0x99ffbcc7c6a5ff0b, 0xff0bafa004bc0394, 0x8ec1cdffbb0c7efd, 0xca000f0bd8000e3b, 0xbeeaff0bc5a9040b, 0x0bbc08f1f3ff3b70, 0x3a4d9970ff0bd30b, 0xeaa504bb8739abff, 0x38ddff0be518060b, 0x05bcdfd0daff3c85, 0x3b6cdcb3ff0bf329, 0x88be0437c03affff, 0x2423030c4427030c, 0x111b030c1631050c, 0xefff3b10a790ff0c, 0xff0c1f3e01bc2d07, 0xccd5aeffbc2b8618, 0x31310e0c360112bd, 0xf0ff3d177348ff0c, 0xff0c3f2d0ebcb9fd, 0xc67407ffbc174922, 0x5a070d0c682e033b, 0xc556ff0c5538050c, 0x053bd06b9bffbc93, 0xbaa508a8ff0c632f, 0x7a97043d873276ff, 0x2e18ff0c7513060c, 0x04bcadc59effb935, 0x3869924bff0c83bc, 0xd0c704b91571ecff, 0xa282050cb0300e0c, 0xba7fff0c9dc0040c, 0x04bb563b95ff3b7b, 0x3b84986eff0cabc1, 0xc20a0b3a026639ff, 0xa060ff0cbd13060c, 0x0e3cceda39ffbb24, 0x3ca3318fff0ccb34, 0xf40107bc046d41ff, 0xe1c8040ce681050c, 0x7fffba6da697ff0c, 0xff0cef86053b4473, 0xc6dc03ff397b7c6c, 0x01000f0d06c804b9, 0x91ff3bf04094ff0d, 0xff0d0f1005bc23ed, 0x9555afffbcd74853, 0x383c050f545d0539, 0x6800110dac15060e, 0x3a41010d4800020d, 0x2cddff0d3535010d, 0x083b3a5c5cffba8c, 0xbc022039ff0d4302, 0x5a070dbcb555e6ff, 0x7243ff0d55050b0d, 0x083bbb499dffbbe9, 0x3cc8ffa1ff0d6302, 0x8cc804bb57c937ff, 0x7931050d7ead040d, 0x1fff3a2c485dff0d, 0xff0d87b4043b96cb, 0xc78d9fff3bd366d2, 0x9919050d9eca043a, 0x13ffbd5ea912ff0d, 0xff0da702073ba1b8, 0xf0b14aff3c4cfdd5, 0xd4030b0df4070ebb, 0xc100080dc6030e0d, 0xbcffba53b579ff0d, 0xff0dcf060ebb9316, 0x25f53fffbc6d81ea, 0xe1000e0de68b043a, 0x14ff3bb0cd7fff0d, 0xff0def000ebcabbf, 0x449ff9ffbb97780b, 0x0a01110e18bc043b, 0xa254ff0e05030b0e, 0x06bd42aa2effbc91, 0xbc137aacff0e1316, 0x2a0008bd1095d1ff, 0xc775ff0e25c5040e, 0x0bbce850bcffba43, 0xbb9417a0ff0e3303, 0xc8190e3cd9c346ff, 0x645a050e8402080e, 0x51090e0e5645050e, 0xf0ff3ba04bd1ff0e, 0xff0e5f48053c56ed, 0x7bd936ffbc32e625, 0x7101080e76050e3b, 0xd8ff3b8fe4d8ff0e, 0xff0e7f120ebcb6da, 0x78d7c8ff3c974e8d, 0x9a070e0ea89b043a, 0x4485ff0e95050e0e, 0x0d3ca0ca52ffbc16, 0xbb0f57e3ff0ea306, 0xba110bbd0c7031ff, 0x83c3ff0eb501070e, 0x07bcafe37bffbd1c, 0x3cae34f3ff0ec301, 0x10060dbcad8c2aff, 0xe2080b0ef043050f, 0xcc01ff0edd40010e, 0x05bc3bc04aff3b33, 0x3c3e48c4ff0eeb42, 0x02220e3d285945ff, 0xefbfff0efd00080f, 0x0bb9fbd75fffbc82, 0xbbba6c54ff0f0b08, 0x341d0e3bef9e9bff, 0x218f040f261a0e0f, 0x19ffbcce469bff0f, 0xff0f2f070d3cfffb, 0xc93cfcffbd5ae7b8, 0x4101070f46280e3d, 0x0dffbbe9ede1ff0f, 0xff0f4f00123af9f9, 0x13ea59ffbb41b68f, 0xe80a0b1074110bbd, 0x84070d0fa400110f, 0x719a040f769e040f, 0x51ffbc8b0018ff0f, 0xff0f7f080e3bfbb4, 0x807845ffbd96db34, 0x91070e0f96ad04bc, 0x57ffbaead921ff0f, 0xff0f9f0d0e3cd995, 0xadb1fbffbcb159bd, 0xba0b0e0fc8060d3a, 0xd1d6ff0fb5070e0f, 0x0ebd2d36dcffbb18, 0x3c95c156ff0fc30d, 0xda0002bbb88348ff, 0x586eff0fd5030b0f, 0x043d2cceeeff3c72, 0x3d63be52ff0fe37c, 0x3000083a10658cff, 0x020b0e1010060d10, 0x4831ff0ffd0a0e10, 0x11bdbbd44cffbbca, 0x3b80b792ff100b01, 0x220012bcc51a95ff, 0x3288ff101d1d0e10, 0x043c804a0affbb98, 0x3d0f94adff102bbb, 0x54020ebbee7059ff, 0x4176041046060d10, 0xe7ffbcb4e619ff10, 0xff104fba04bd65ba, 0x8ce538ffbc8fa2e6, 0x61050e1066b1043c, 0x7dff3a5c2f6cff10, 0xff106f01123ced06, 0x6fd050ff3ac20b96, 0xc0070d1104170ebc, 0x92bc0410a0c00410, 0x7cedff108d070e10, 0x12bc5184f5ffbb3a, 0xbaab0036ff109b00, 0xb2c104bd303a17ff, 0x3826ff10ad100e10, 0x053da391a5ff3bfb, 0xbb2abe39ff10bb8c, 0xe4c1043bad67afff, 0xd1610510d6650510, 0x59ff3d1ed4d3ff10, 0xff10dfab04bdadea, 0xcde616ff3d50ff2f, 0xf1000810f601083d, 0x06ff3c4b5840ff10, 0xff10ffc504bd82d2, 0xb6f60cff3ddaa280, 0x2c180e114c190e3c, 0x190107111e001211, 0xc0ffbd892e4bff11, 0xff11276d05be041a, 0xa6a3b6ff3d8ee6ea, 0x390011113ebd04bc, 0xbdff3cc2d7b0ff11, 0xff1147070d3d71c7, 0xaf1e43ff3cb29c3b, 0x625e051170060dbd, 0x8c91ff115dc00411, 0x07bd759bb7ffbcaf, 0x3c9203d5ff116b01, 0x8200123b08b7c9ff, 0x5b88ff117d1d0e11, 0x0b3b416344ffbd2e, 0x3d7915adff118b13, 0x000013bdcf6e08ff, 0x0003e80000000800, 0x0010820000000100, 0xdc00070000000000, 0x48c30404848c0508, 0xa08005012c810502, 0x3c1606005c020800, 0x29a804002e7f0500, 0x79ffb98eafadff00, 0xff0037bd043a3101, 0x7686e5ff3a888f77, 0x497504004e200e3c, 0x03ff3b6d1e42ff00, 0xff0057070bbaf700, 0x1c0ebaff3c81d2d5, 0x727d050080010cbc, 0x67f7ff006dc00400, 0x0b3b4ced1fff3b1a, 0xbcdbd94fff007b05, 0x92070e3c2b4948ff, 0x1fdaff008d3d0500, 0x0e3c63b485ffbb27, 0xbc58eb4cff009b17, 0xe81e0e3a1c2cf7ff, 0xbaa70400c8c20400, 0xef6dff00b5011100, 0x043be4c573ffbbcb, 0x3cb3f698ff00c3b0, 0xda0009b9bdcc6bff, 0x8a44ff00d5010c00, 0x113e54454aff3dd7, 0xbc98e629ff00e300, 0x0c0108bce80634ff, 0xf9b40400feb80401, 0xb4ff3c884b1fff00, 0xff01070b0bbcdda9, 0x242d88ff3d85834a, 0x19070b011e000f3c, 0x4effbd880053ff01, 0xff01270b0b3cbdac, 0x769eb3ffbab04a18, 0x78b10401bcb404bd, 0x4ab0040158000901, 0x58f9ff0145af0401, 0x0e3c19af4cff38d2, 0xba9b57faff015323, 0x6a040dbcf7e107ff, 0xb3c5ff0165170e01, 0x043cbad14bff3b4b, 0xbb0ae340ff0173b0, 0x9cb304bc1108a3ff, 0x898705018e020d01, 0x4fffbb9a16f1ff01, 0xff01978b053d70a2, 0x389314ff3af08f64, 0xa9000201ae01093c, 0xaeffbc503955ff01, 0xff01b78405bac9cd, 0xbb1136ff3ce96264, 0xe4000c0204190e3b, 0xd1000901d60b0b01, 0x02ff3b69927eff01, 0xff01dfbc04bbbf1b, 0xd20464ffbbaf89ed, 0xf1b80401f6180eb8, 0x72ffbb86a494ff01, 0xff01ff00083ad1eb, 0x0cf0e4ff3c10e39e, 0x1a83050228280e3d, 0x5f02ff0215c00402, 0x093bbc2de3ffbc97, 0x3af830efff022300, 0x3a2a0ebc0bc6f9ff, 0x952cff0235010902, 0x043d922315ffbcb0, 0x3c2e5362ff0243b8, 0x680009bab3089cff, 0x98730502dcc40403, 0x6a02080278011202, 0xf873ff0265010c02, 0x12bdbf7b07ffbd24, 0xbcb14c19ff027300, 0x8a0106bd57ef4bff, 0x2437ff0285690502, 0x0e3d487120ff3b8f, 0xbc2566bfff029319, 0xbc000fbd2f3f27ff, 0xa9020d02ae750502, 0x80ff3d9d5988ff02, 0xff02b7030b3de50f, 0x984250ffbcc99a68, 0xc9030b02ce88053d, 0xa4ff3c39ffc7ff02, 0xff02d71d0ebc6f4f, 0xa83844ffbb3e8dab, 0x04170e0324280e3d, 0xf18a0502f6070d03, 0x00ff3a07b289ff02, 0xff02ff0108bc4a92, 0xd4e55fffbd955191, 0x11200e0316070dbc, 0x6fff3c705e29ff03, 0xff031f1f0e3a8c36, 0x251b44ff3d2b7fe4, 0x3a010c0348030bbc, 0xce2aff03352a0e03, 0x1239813064ff3c44, 0xbbf0b955ff034300, 0x5a89053ca77977ff, 0x79a1ff0355010803, 0x05ba3da427ffbac8, 0xbb7f28c1ff03638a, 0xf82b0e3b196454ff, 0x94000c03b4000203, 0x81190e0386870503, 0x49ff3c887c19ff03, 0xff038f070d3cdc4e, 0x7b9c43ff3c91aac7, 0xa1010903a6230ebb, 0x77ffbc7298b2ff03, 0xff03af060d3a9a24, 0xa570ddff3ba3f8ed, 0xca070d03d883053c, 0xf991ff03c5001103, 0x05bc371550ffbcbe, 0x3ca468d7ff03d37c, 0xea8405bc0eafb3ff, 0xd42bff03e5010c03, 0x0e3d55a408ffbc45, 0xb823903dff03f319, 0x40c704bc0a7222ff, 0x122c0e04200e0b04, 0x012cff040d010904, 0x053d329b50ff3dc7, 0x3c2e2740ff041b79, 0x322f0ebbbfe68fff, 0x1440ff042d790504, 0x0cbbfc1540ffbc34, 0xbd16af8eff043b00, 0x64010cbd3e76b8ff, 0x51000d0456c80404, 0xcaffbd122700ff04, 0xff045f01123cbc74, 0x1f57d3ffbac9518c, 0x71780504760002bd, 0xafff3d919748ff04, 0xff047f61053cfe84, 0xf96c5eff3d0fcea1, 0x9f100b06a08d053b, 0xd8190e051c011105, 0xaa070e04b8020804, 0x301eff04a5b20404, 0x04bbcab4ecff3a52, 0x3b2c1f74ff04b3c3, 0xca00023a68e49cff, 0x8eaeff04c5c90404, 0x043ccdc9ebffbc98, 0xbb0397bcff04d3c4, 0xfc220e3c144a32ff, 0xe9060d04eeb90404, 0xdeff3c1786bfff04, 0xff04f71d0ebc499a, 0xaa942affbb4c5b1b, 0x090e0b050e000cbc, 0x2effbb864de8ff05, 0xff051700083d9218, 0xbb356bff3b06130d, 0x44000c055b57043c, 0x314d0405360a0b05, 0x98ff3ccf09f5ff05, 0xff053f040d3d7e70, 0xb5f33cff3cc6b3e0, 0x51010d05560002bd, 0x38ffbc4d2de5ff05, 0x3d013b18ffbdbe07, 0x05710009057f010e, 0xfec32bff056c000e, 0x76043d61ffa7ff3b, 0xff3a417346ff057a, 0x0591030b3c170ed9, 0x9dde95ff058c000f, 0x000f3b9e40b6ffbb, 0xff3b2d84bfff059a, 0x0614110bbc4dd931, 0x05cb190e05d9060d, 0x05b8030e05bd070e, 0xa89bff3b52a7f8ff, 0x43ff05c6170ebd03, 0xbcc274fbff3c9a8e, 0xe98fb0ff05d40002, 0x000ebcfb7f28ffbc, 0x80ff05e6001105f4, 0xff05ef010cbb9543, 0xb335b0ff3bfa2d45, 0x01020e0606a704bb, 0x7bffbd06035aff06, 0xff060f0208bd992a, 0xfcba80ffbd75ae9c, 0x3c080e065c1d0eba, 0x29000e062e070d06, 0xf1ffbb470bb1ff06, 0xff063700083b560c, 0xba4c50ff3d3f020c, 0x49a404064ea8043c, 0x8eff3aadbc35ff06, 0xff0657b204bd0068, 0x46041eff3cdf8edc, 0x721f0e0680200ebb, 0x655cff066d000806, 0x0c3d23ce27ff3bf6, 0x3df37972ff067b00, 0x92010c3dcd9881ff, 0x6c73ff068d011206, 0x04bbaf6b58ff3b87, 0xbd517144ff069bc9, 0xc093053bc63c26ff, 0xf002080734020d07, 0xc21a0e06d0bc0406, 0xddfdff06bd190e06, 0x0e3d695d6dff3987, 0xbbe1d780ff06cb22, 0xe2c6043b3dfb48ff, 0x4edeff06ddc20406, 0x0e3ca72bafff3a65, 0xbbfb6940ff06eb31, 0x14c9043bfc4d0dff, 0x01bf040706170e07, 0x69ff3bf75a7aff07, 0xff070f9105bc93aa, 0x5927f0ff3cb3b552, 0x21050b0726220e3d, 0x2bffbc9559e0ff07, 0xff072f8f053bd247, 0x35e730ffbd93f218, 0x5cbc04077c070bbd, 0x49000f074eba0407, 0xc0ff3949c05eff07, 0xff0757060db93fca, 0x64155eff3b22ada6, 0x69000f076e030bbc, 0xd4ffbaf51f9aff07, 0xff0777040b39cd03, 0x15268cffbc71d1e5, 0x92bc0407a08e053b, 0xa2aaff078dbb0407, 0x043c91034aff39ba, 0xbb9627e1ff079bc2, 0xb2000f3ae38f54ff, 0xb1f7ff07ad910507, 0x04bbd9377bff3b54, 0x38b9e53aff07bbc6, 0x50020d381d872aff, 0xec1d0e080c2a0e08, 0xd9940507deb30407, 0x08ffbc0ff024ff07, 0xff07e7070b3a2b62, 0xa40cbfff3ba15da9, 0xf9ba0407febd04bb, 0x33ff3b69305aff07, 0xff0807bf04bd0ee9, 0x1891f2ff3d2c955e, 0x22ca0408302b0e3a, 0xec18ff081d030b08, 0x05bd1c5568ff3caf, 0xbcb8df26ff082b95, 0x422f0ebda6fbd5ff, 0x3990ff083d000c08, 0x043d341862ffba21, 0xbd128af8ff084bca, 0x980e0bbb842345ff, 0x6a95050878010b08, 0xcd49ff0865000208, 0x0c3bdc03feffbb1d, 0xbb0a6593ff087300, 0x8a0012bc27ba67ff, 0xc84aff0885940508, 0x0eba2043bbff3b62, 0xb9ac3ee9ff089317, 0xbc070d390381a7ff, 0xa9010c08aeb20408, 0x88ffbbb65c2bff08, 0xff08b7070e3c85a4, 0x65fa6bff3b27b83f, 0xc9940508cec804ba, 0x18ff3c19ce80ff08, 0xff08d7100b3d9401, 0x5aff88ff38c39800, 0x20c6040d5c9505bc, 0x78ba040a04000d0b, 0x1440010934000609, 0x010d030906330109, 0xd7ff39810f47ff09, 0xff090f1f04bb884f, 0xdea89dffbbce9e21, 0x211c0e09266a053b, 0x10ff3c899390ff09, 0xff092f0207bb4a0f, 0xcc1476ff3b14ae99, 0x4a01050958b804bc, 0x4c92ff0945030e09, 0x043c30e054ffbc59, 0x3ab2d7ddff095388, 0x6a0008bc1ee363ff, 0xb670ff0965010709, 0x0e3b2cfc2affbcbf, 0x3c82cf29ff09732d, 0xc003063d80c351ff, 0x927b0509a0010709, 0x3190ff098dc00409, 0x0e3ba83099ff3d13, 0x3cbc8032ff099b30, 0xb2bc04bcadc4fcff, 0x9481ff09ad090b09, 0x04bb57a855ffbd45, 0x3c40b609ff09bbbf, 0xe40002bbc4353dff, 0xd1010809d62a0509, 0x80ff3d37d620ff09, 0xff09df3805bc68ea, 0xadedb2ffbd472949, 0xf1030e09f6030bbd, 0xa4ff3bced420ff09, 0xff09ff000cbcb122, 0x00b3c4ffbc18ed9b, 0x5075050a942a0e3c, 0x225d050a305f050a, 0x8e51ff0a1d02080a, 0x04baa5b6b5ff39cf, 0xba3e0016ff0a2bb7, 0x420107bbf88277ff, 0xe7adff0a3dc4040a, 0x08bc17bf87ff3ac4, 0xba9e2464ff0a4b01, 0x74b604bba8a7e5ff, 0x61230e0a6601080a, 0x94ffba2173bfff0a, 0xff0a6f010cbb8975, 0xb51b92ffbb8a8d73, 0x81000f0a86ba04bc, 0x47ffbb392f5bff0a, 0xff0a8fc5043b6739, 0x1947efff393d61f1, 0xbc3c050adc010dbb, 0xa908060aae0b050a, 0x85ff3b37ac8aff0a, 0xff0ab7310ebc0516, 0x295e28ffbc56dcef, 0xc901080ace96043a, 0x88ffbc8867d9ff0a, 0xff0ad70002bdce86, 0x596806ffbdd20906, 0xf20c0b0b00b904bd, 0xcb9bff0aed95040a, 0x0bb8819c31ffba0a, 0xbc204686ff0afb14, 0x12bb043b68985eff, 0xbba3ff0b0d01120b, 0x053b9349e0ffbca7, 0x3a548bb5ff0b1b60, 0x4001083b3ee4e3ff, 0x7000110bb4010c0c, 0x426c050b507a050b, 0xaef5ff0b3dc7040b, 0x02b9ed3c3dff3d04, 0xbc86a6d3ff0b4b00, 0x62c8043a88ed27ff, 0x46a0ff0b5d00020b, 0x0b3ba34d2fffbc12, 0xbabc7d3bff0b6b13, 0x94c7043ba92186ff, 0x81260e0b86060d0b, 0x17ffbba53d79ff0b, 0xff0b8f01123c0736, 0x24a8e8ff3d2e8a92, 0xa1c9040ba6350ebd, 0xe2ff3b5b2ed5ff0b, 0xff0bafc804ba53d8, 0x4220deff3c6e841a, 0xdc27030bfc7805bb, 0xc900120bcec7040b, 0xc0ffbe4e281aff0b, 0xff0bd70c05be215b, 0x2787f2ffbdacfd8a, 0xe9060d0bee0207bc, 0x19ff399ae7fbff0b, 0xff0bf70002bc7537, 0x4b2b81ffbb74168a, 0x1200020c207a053c, 0xf1a9ff0c0d170e0c, 0x05bc6a47b6ff3ce4, 0x3c8015f9ff0c1b79, 0x32070e3d9cde59ff, 0x882aff0c2d00080c, 0x05bcbf2436ff3ba0, 0xbbb8b284ff0c3b82, 0xd075053b422354ff, 0x6c07050c8c060d0c, 0x5936010c5e01110c, 0x91ff3d945d94ff0c, 0xff0c670306bcd4c7, 0x5aa264ffbb00d180, 0x7960050c7e65053d, 0x2fff39eb4da5ff0c, 0xff0c87000fbbe8df, 0x222f36ffbc928f25, 0xa23e050cb00011b9, 0x43e9ff0c9d010c0c, 0x053b3736fcff3d3f, 0xbbee0163ff0cab61, 0xc2000c39d4b7efff, 0xc329ff0cbd70050c, 0x043c5bd3b7ff3d59, 0x3cc0eba9ff0ccbc9, 0x1876053b6cf02cff, 0xea010c0cf8c8040d, 0x2ef9ff0ce50b0b0c, 0x0e3dae227fff3d05, 0x3d5ec3d0ff0cf31f, 0x0aca043e08e720ff, 0x0c9aff0d05220e0d, 0x04bd141d1fffbc5f, 0x3cc8f69dff0d13cc, 0x3c2b0eba83b312ff, 0x2900120d2ecc040d, 0x02ffbb936e0cff0d, 0xff0d377d05b8b30b, 0x9fcf3dff3b8c2746, 0x49cc040d4e000fbb, 0x6bffbaf78449ff0d, 0xff0d570208bd012c, 0x9c223eff3b9c34c1, 0x6e01070f781f0e3c, 0xb0010c0debc1040e, 0x82000f0d90bc040d, 0x5ca7ff0d7d080e0d, 0x0e3b324da9ffbb40, 0xb9c7829cff0d8b02, 0xa296053afa04fdff, 0x4511ff0d9d030b0d, 0x12bbb28ad5ff397c, 0xbc158e21ff0dab01, 0xd4030bbcc39814ff, 0xc100080dc6010b0d, 0x00ffbc030bf0ff0d, 0xff0dcf9605baf0e0, 0x616168ffbca50596, 0xe100080de6050bbc, 0x00ffbc501a33ff0d, 0x3bf33c40ff3ab570, 0x0e1300110e33050b, 0x0e0000080e05000c, 0x4de3ff3b40db7bff, 0x34ff0e0ecd04bc42, 0xbce24a76ffbc8620, 0x0e2001120e25020b, 0x4cc5ffbbdd742aff, 0x90ff0e2e010cba77, 0x3bf8aa3aff3aaab8, 0x0e49070b0e570e0b, 0xacc010ff0e44c804, 0x010ebbe548a6ff3d, 0xff3b8f5703ff0e52, 0x0e691d0eb9d38e45, 0x65cbcfff0e64c304, 0xc0ff3b18f03fffbb, 0x040eec030b3d3c82, 0x020e8878040ea8b4, 0x3c70f154ff0e8300, 0x9a00023bdc4840ff, 0x8cc7ff0e9596040e, 0x043c036c4aff3b66, 0xbb3eac81ff0ea390, 0xcc00123b1bc397ff, 0xb9000b0ebebb040e, 0xdcff3b35f908ff0e, 0xff0ec7000bbc8094, 0x4dede3ff3c1ddebe, 0xd9000f0edec1043b, 0x70ffbcac36daff0e, 0xff0ee7030ebb293a, 0x4c164cff3a12ed63, 0x14c9040f349605bb, 0x01060d0f06000c0f, 0x5aff3b1b4139ff0f, 0xff0f0fc604ba2f6f, 0x989400ff3bcfbc5d, 0x2100020f26080eba, 0x8fffba53504bff0f, 0xff0f2f000c3c1248, 0x4b93eeff3b54771b, 0x4a030e0f580b0eb9, 0x7800ff0f4501120f, 0x043c0ace20ff39b1, 0x3ae059b0ff0f53cc, 0x6a110e3c03c2c8ff, 0xf28eff0f6500110f, 0x0ebbb76994ffbc25, 0xbbd2b0c0ff0f7314, 0x0800023bb55dc6ff, 0xbf01070fdf000c10, 0x9a00120fa896050f, 0xc0d3ff0f9500080f, 0x0dbc613fc8ff3c78, 0x3c13a070ff0fa300, 0xb10012bc0f6e72ff, 0x2b0ebca94c5cff0f, 0xffbb7a9650ff0fba, 0x0fda060dbc45b200, 0x0fd0cb040fd5000f, 0x36c0ffbc131950ff, 0xff3bcd7aa0ffbcaf, 0x0fe80012bcc938a0, 0xf10112bd2da9a8ff, 0x030bbc9dbb14ff0f, 0x80ff0ffe220e1003, 0xbb841fc0ff3baee2, 0x74060dbc207100ff, 0x34cd041039230e10, 0x21c9041026220e10, 0x38ff3c25e740ff10, 0xff102f000c3c6c32, 0x754cc0ff3b2ad973, 0x070b3cd4544cffbc, 0x000c104f0112105d, 0xffbbe7629dff104a, 0x1058000cbcb5dde8, 0x9315ffba55d4ebff, 0x000c106f00083bf9, 0xffbb28cb69ff106a, 0xf58310ff3ce520f8, 0xd318ff107d230e3c, 0x13bba63270ffbcec, 0xe800000008000000, 0x8b00000001000003, 0x0700000000000010, 0x04047b8c0508f700, 0x05012cc1040248c7, 0x05005c5c0500a069, 0x04002e5a05003c5b, 0xb90e4210ff0029ab, 0x37060d3967392eff, 0xf0ffbbb25617ff00, 0x04004e2f013a31be, 0xbc0ea6c5ff004935, 0x57010bbc9ee389ff, 0xb5ffbd136b03ff00, 0x05008040013ba453, 0xff006d910400725d, 0xdcf75bffb9ac9b06, 0x656eff007b5c04bc, 0x053bbd82cdffbb0c, 0xff008dc004009266, 0x96c778ffba131e0c, 0xbcc5ff009b020dbb, 0x043a207945ff3c25, 0x0900c8010c00e8c0, 0xff00b58d0400ba00, 0x294dc8ff3a478c37, 0xe53dff00c385053a, 0x0eba94cdf5ffbb5a, 0xff00d50a0b00da04, 0x8dc3a2ff3afa86b8, 0x4f77ff00e3050bba, 0x023c00ab50ffbb0f, 0x0c00fe0006010c00, 0xbc32f097ff00f901, 0x070f0e3a4eaa82ff, 0xafffbc113dffff01, 0x0e011e6c05bde31c, 0x3d391660ff011923, 0x272a0e3df6dcc9ff, 0x23ff3b85dd5fff01, 0x0f01bc7505bbf727, 0x0b01580006017800, 0xff0145030b014a07, 0x368613ff3c06af4b, 0x9a37ff01530a0bbc, 0x063d06bb8aff3c06, 0xff01650002016a04, 0xd14adcffbdf63680, 0xef99ff01732905ba, 0x05bbf92c73ff3be6, 0x04018e6d05019c73, 0xbb17366eff0189c4, 0x976f053a17f43eff, 0x0aff3d1aac94ff01, 0x0b01ae0208bc2b11, 0x3c07cbffff01a90e, 0xb7010cbc96cb78ff, 0x4fff3ceba14aff01, 0x0e02048105bd1a58, 0x0e01d6010c01e421, 0xb8871254ff01d11f, 0xdf0009bd6b88faff, 0x72ff3cf1dbbfff01, 0x0501f67b05bb3bd8, 0xbb680cb8ff01f179, 0xff010c3c55789cff, 0x90ff3a7e7bbdff01, 0x0502288905bc812b, 0xff02150012021a83, 0xa14e85ffbc60690c, 0x3f36ff02230008ba, 0x043ab66284ffbab4, 0xff0235050b023ac5, 0x3a021cffbbb0b418, 0x5a8fff02438a053b, 0x0e3b51a93cffbd0c, 0x0e02dc0111036819, 0x0c0278ca04029818, 0xff0265170e026a01, 0x229498ffbb023c2a, 0xc6a7ff0273c804bd, 0x06ba3574f8ff3c8a, 0xff02858505028a00, 0x1b0424ffbce57489, 0xf271ff02931206bb, 0x08bb0bb04fff3bd9, 0x0902aec80402bc00, 0x3c95fb8cff02a901, 0xb7c904b98f3f2dff, 0xadffbc522598ff02, 0x0802ce8605bab84c, 0x3d844115ff02c901, 0xd702083cb5d339ff, 0x6bff3c33dadcff02, 0x0e0324c804bc3781, 0x0502f6030e03040d, 0x3ce19d50ff02f118, 0xff19063b3fdde4ff, 0xe9ffbcf02078ff02, 0x0c0316020dbb7211, 0x3b2842b6ff031100, 0x1f000cbd3d5bb0ff, 0x52ffbd93f711ff03, 0x050348050dbcafa5, 0xff0335010e033a2a, 0xf9ae7dff3bd758f8, 0xbfcaff0343c904bc, 0x0839fa92b2ff3c86, 0xff03552905035a01, 0xe4dc31ff3d0fa3e6, 0xf466ff03633d05ba, 0x053d3ee178ff3980, 0x0503b4310e03f88b, 0x0403861106039477, 0x3b2c61ccff0381c8, 0x8f000cbb401e05ff, 0x58ffbaf12c03ff03, 0x1203a6060d3c4324, 0x3c5bdcdfff03a100, 0xaf84053899009dff, 0xb3ff38d36b8fff03, 0x0403d8330ebbae59, 0xff03c5000f03caca, 0x39e9f3ff3d636d93, 0x7831ff03d3010c3c, 0x0d3c9a728fffbaff, 0xff03e5020603ea07, 0x6766b9ffbb294a78, 0xa0d1ff03f3030b3b, 0x0e3c08ea67ff3cdb, 0x040417010c043722, 0xff040d060d0412cc, 0x7debccff3b4a4c2b, 0xc804bd75ca74ffbc, 0xd2ff04240b0b0429, 0xbc8b8f00ffbd571a, 0xfd9968ff04320b0b, 0xc904bd7b577effbc, 0xc804044d010c045b, 0xff3c91ef03ff0448, 0x04560b0bbc0784e6, 0xe480ffbd075823ff, 0x0208046dcb04bdb3, 0xff3d428253ff0468, 0x0476060dbca26128, 0x3ca1ff3b8992b3ff, 0x110b06bb8d05bba7, 0x880405130e0e059f, 0x860404af070e04cf, 0x3dff049c7e0404a1, 0x3b888b26ffba8144, 0x91c794ff04aa0002, 0x4d04bd1c046aff3c, 0x1eff04bc000c04c1, 0xbcea9e40ff3c90ea, 0x595c0cff04ca040b, 0x010cbcb9a3f2ffbb, 0x100b04e5000904f3, 0xff3a99ffcfff04e0, 0x04eebb04bc90343f, 0x588bff3a6cf885ff, 0xb2040505bc04bbf6, 0xff3b992f14ff0500, 0x050ebe04bb8d58de, 0x243fff3d1c640dff, 0x0008055bbb04bae7, 0x100e052d140e053b, 0xff3c0b5c9bff0528, 0x0536a804bca89d77, 0x18f2ff3c0f6fc3ff, 0x0111054d000239ca, 0xffbc107b61ff0548, 0x0556040bbd3df1dd, 0x45faff3c09b9e3ff, 0x0002057f0108bbeb, 0x27ff056c010c0571, 0x3c18dc40ffbaa88c, 0xfd785dff057a010c, 0x030bbc5a4da3ffba, 0xf9ff058c000f0591, 0x3b0aacabffbc9a8e, 0x81617aff059a010c, 0x00123d01af14ff3b, 0x000805eb0108062f, 0x0e0e05bdcb0405cb, 0xff3a35cec5ff05b8, 0x05c6cc043be6bd18, 0x1c50ffbca5c7efff, 0x000c05dd010ebba7, 0xff3a7ac9c0ff05d8, 0x05e6000cbce7491c, 0x48afff3ba91b85ff, 0x000c060fbc043c9c, 0x54ff05fc00020601, 0x3c9c9321ff3ba8a5, 0x3e66a0ff060ab304, 0xc904bcd9f564ff3b, 0x46ff061c010c0621, 0xbcfa40a7ffbc0a4a, 0x534055ff062a010c, 0x060d3d579030ffba, 0x1d0e065701120677, 0x90ff064401090649, 0x3be2d2e7ffba02d3, 0x1d61d9ff06520008, 0x220e3cb47bb7ff3a, 0x02ff0664be040669, 0x3be3b499ffbb315b, 0x8193c0ff06720008, 0x010ebcdb221dffbb, 0x000c068d0008069b, 0xff3b8fe70cff0688, 0x0696000e3c89f904, 0x5e6eff3af6b340ff, 0xc90406ad0108bbb0, 0xffbc2f8f8cff06a8, 0x06b6000cbcd6aa75, 0x3ff7ff3c5428f0ff, 0x030d07db9305bb98, 0x220e070b2c0e074f, 0x900506dd190e06eb, 0xff3a7b4e79ff06d8, 0x06e60009388e800d, 0xe320ffba8ece16ff, 0x230e06fd2a0ebce1, 0xff3c19fd07ff06f8, 0x07060009bc314c14, 0x3926ff3cd0182cff, 0x8e05072f2d0ebc5c, 0x00ff071cba040721, 0xbbbaec13ffbd75e7, 0x3a8135ff072a0009, 0x00093c8e8a40ffbd, 0xc1ff073c2f0e0741, 0xbb122d2dff3cb23d, 0x3d05e0ff074a010b, 0x55043ce69692ffbc, 0x0112077790050797, 0x49ff0764000f0769, 0x3a56fc77ffbc05df, 0xa8a227ff07720002, 0x51043a58dc49ff3c, 0xdfff0784040d0789, 0xbb5b0bd0ff3c0a29, 0xf6cdcdff07920112, 0x230ebd6617d0ffbb, 0xbc0407ad000f07bb, 0xffb95f6b3eff07a8, 0x07b6070b3ad39b03, 0x45dcffb957eea1ff, 0x8f0507cd90053968, 0xffbac52d3bff07c8, 0x07d691053b5496dc, 0xc7adffbbdec259ff, 0x0008086b020d3949, 0x040b0807050b0827, 0x8eff07f4000207f9, 0xbb0f5e59ff3ba9d9, 0x92f527ff08020002, 0x140e3b8341e6ffbc, 0xc9ff081495050819, 0x3b344b34ff3c41a1, 0x2626f4ff0822c604, 0x030b3ae5a058ffbc, 0xc404083d230e084b, 0xff3a967a7fff0838, 0x08462a0e3cd15438, 0x10ceffbdb203efff, 0x000d085d1d0e3c97, 0xff3ca1d6e5ff0858, 0x08660002bc200632, 0x3370ffbc031ae6ff, 0xca0408b3000f3cd4, 0x170e0885190e0893, 0xffb9d61ee0ff0880, 0x088e1c0e3cb5909e, 0x013cffbe086eb6ff, 0x2d0e08a594053b1d, 0xff3c580862ff08a0, 0x08aecc043dac52a8, 0x20bcffbc9f86ccff, 0xc80408d7cd043b9d, 0x11ff08c4170e08c9, 0xb999e2b2ffb94f6a, 0x995abdff08d2060d, 0x9405b9cc33e1ff3a, 0x0eff08e4000908e9, 0xbbdd29bfff3c024c, 0x178439ff08f2060d, 0x9505baf88dffff3b, 0x000d0b3bc6040d77, 0x05060993ba040a1f, 0x6605092f6905094f, 0x56ff091c33010921, 0x3bbb2f18ffbaeb46, 0x121791ff092a5904, 0x02073c493451ffbd, 0x25ff093c00080941, 0xbc3cc353ff3bf545, 0x448a00ff094a7304, 0x0105bbb4e064ffbd, 0x010e0965050e0973, 0xff3c644d27ff0960, 0x096e1706bd0a76f3, 0x6e9fff3bf0d6d3ff, 0x88040985b5043d3c, 0xff3afb2c6fff0980, 0x098e3101bc2f4e35, 0x8a8dffbcfda483ff, 0x010709db04063bdd, 0x8f0509adbb0409bb, 0xffbcd8aa00ff09a8, 0x09b6c004bbe32d00, 0xbc52ff3cb574e6ff, 0x360e09cd38053b92, 0xffbd1c7ab0ff09c8, 0x09d6320ebe01be30, 0xf3e6ffbbadd278ff, 0x2a0509ff00023c9b, 0xa0ff09ec020809f1, 0xbc6e2e2dff3cd176, 0x42eb6cff09fa3805, 0x030bbd9c8922ffbd, 0x52ff0a0c030e0a11, 0xbcb05455ff3bba25, 0x0928abff0a1a000c, 0x2a0e3c044709ffbc, 0x8c040a6b74050aaf, 0x70050a3d79040a4b, 0xffb8c5c3d1ff0a38, 0x0a467c04baabaf53, 0x68dbff3be34c1cff, 0x92040a5d090bb9bc, 0xff3ad395b2ff0a58, 0x0a662b03b9e66aea, 0xc20cff39013d9dff, 0x0b0b0a8fc5043a05, 0xdbff0a7cc4040a81, 0xba991410ff392933, 0x4628c2ff0a8a0008, 0x220ebbaa3237ff39, 0xe8ff0a9c070e0aa1, 0xbb87a002ff3bd614, 0x34982cff0aaa0012, 0xc204bc8dfd70ff3c, 0x2b0e0ad700120af7, 0xcdff0ac4010c0ac9, 0x3822305dff3c25a6, 0xa1ededff0ad22e0e, 0x41053a890d28ffbc, 0x55ff0ae4bf040ae9, 0xba7f3b5bffba43f0, 0xbf4181ff0af24305, 0x060dba421a33ff3c, 0x310e0b0d320e0b1b, 0xff3bb5d821ff0b08, 0x0b16100b3d8fbe55, 0xf9e4ffbb20ee75ff, 0x0b0b0b2d2f0ebd5a, 0xffbb893931ff0b28, 0x0b36300e3ca59150, 0x4248ffbda265e8ff, 0x010c0c5b0108bc54, 0x7a050b8b00110bcf, 0xcb040b5d78050b6b, 0xffba9d14bdff0b58, 0x0b6600023c9a66b4, 0x4c28ffbcfac4f6ff, 0x00020b7dc804bb65, 0xffbc03a5f4ff0b78, 0x0b86130b3b92f8b8, 0x37c2ffbaa9a3f9ff, 0x060d0bafc7043b98, 0x8eff0b9c340e0ba1, 0xbc9e14c6ff3b10a3, 0x76f4d2ff0baa7905, 0x350e3ca51009ff3d, 0xe7ff0bbcc9040bc1, 0xba3ea968ff3b4543, 0x56aa16ff0bcac804, 0x1205bb2eb717ff3c, 0x070e0bf7cb040c17, 0xbdff0be418060be9, 0x3b35fe37ffbccb5b, 0x6dccb5ff0bf20008, 0x1006bdea9f53ffbd, 0x83ff0c0402060c09, 0x3d2a447effbcb88d, 0xfcc06dff0c121206, 0xcd04bb147b2bffbd, 0x190e0c2d290e0c3b, 0xff3b3b64d5ff0c28, 0x0c362b0e3b62fcc5, 0xd160ffba387878ff, 0x060d0c4d320ebbfd, 0xff3c3a4585ff0c48, 0x0c566205baeb32ef, 0x5c06ffbda2d026ff, 0x060d0ceb7505bc8c, 0x14060c8707050ca7, 0x10ff0c7424030c79, 0xbd3515edff3c7431, 0xb4152dff0c82070e, 0x65053d5f6388ff3b, 0x91ff0c9460050c99, 0xbbd195a6ff39d3c5, 0x83e740ff0ca2000f, 0x0012b911f86cffbc, 0x010c0cbd3e050ccb, 0xff3d2c2384ff0cb8, 0x0cc662053b24e4df, 0x5a1bffbbe04810ff, 0x6d050cdd000c3a4a, 0xff3d488e63ff0cd8, 0x0ce6c9043c7f44c3, 0x3e72ff3cada0e6ff, 0xc8040d3376053b55, 0x0b0b0d05010c0d13, 0xff3cefbaf1ff0d00, 0x0d0e00123d9cb8a7, 0x4007ff3d7dcac0ff, 0x000c0d25ca043e06, 0xffbd3528d7ff0d20, 0x0d2e230ebc5ce3e9, 0x328bff38eb887cff, 0x78050d572c0e3ccc, 0x07ff0d44060d0d49, 0x3af232c3ffbc4eca, 0xdca19cff0d528305, 0x000fbb1a7088ffb8, 0x4fff0d64020d0d69, 0xbce7bb89ffbacef8, 0x80eaaaff0d720208, 0x1f0e3c94d58cff3b, 0xc1040e8001070f9c, 0x110e0db0bc040df4, 0x000f0d9d010c0dab, 0xffbac705e0ff0d98, 0x0da6000839c61b0b, 0xc980ffbc273158ff, 0x05bc9bcf70ffbad8, 0x0e0dc6bf040dd496, 0xbc0d2097ff0dc108, 0xcf060d3b239100ff, 0xd0ffbbb3c082ff0d, 0x0c0de601123ba186, 0xbbec6b6dff0de100, 0xef010bbc51b216ff, 0x80ffbc0ad190ff0d, 0x0e0e3c030bbd0d54, 0x080e0e010c0e1c01, 0xbb1b5e06ff0e0901, 0x17020bbc05b5e2ff, 0x0affbb805db0ff0e, 0x040e2e010cbccec5, 0x3a72c7a6ff0e29ca, 0x37030ebb85142fff, 0xa4ffbb9a08b8ff0e, 0x0f0e60080e3c8f16, 0xff0e4dc4040e5200, 0x5b0875ffb988b400, 0x1ac2ff0e5b0012bc, 0x0e3b419e77ff39f6, 0xff0e6d000f0e7211, 0x77759eff3b9cbfd0, 0x593aff0e7b130ebb, 0x0b39e44cf9ff3d1d, 0x020eccb3040f1003, 0x040e9e96040eac00, 0x3c58d930ff0e9978, 0xa7010e3b4f7eb2ff, 0x98ff3c132fe8ff0e, 0x120ebea4043c85b0, 0x3bc26300ff0eb901, 0xc7000fbb735bc8ff, 0x3bff3bc3a3a0ff0e, 0x0d0ef000113b0d0e, 0xff0edd000b0ee202, 0x677259ff3b23c688, 0x0e23ff0eeb010bbc, 0x0e3acf870bff3bed, 0xff0efd010c0f0201, 0x01c508ff3ab527ef, 0x0ddaff0f0b060dbc, 0x05bbc29c99ffbac6, 0x0c0f38c3040f5896, 0xff0f25bb040f2a00, 0x29d38dff3a15b45a, 0x66d8ff0f33b604bb, 0x043ba587e3ff3bc9, 0xff0f45c6040f4ac9, 0xb0b127ff3b47f1ab, 0x8331ff0f530112ba, 0x04ba623cd5ff3b85, 0x120f6e030e0f7ccd, 0xba06b1dbff0f6901, 0x77cc043bf9d970ff, 0x68ff3ac9ea50ff0f, 0x0e0f8e110e3bed2b, 0x3b4fb3a8ff0f8902, 0x970011bbe7e368ff, 0xb0ff3bb0abe0ff0f, 0x0c0fdb220e3ae8db, 0xff0fadc9040fbb00, 0x0fb6cb043c13e74b, 0xc854ff3c4265d0ff, 0x00020fd6030b3c59, 0x00ff0fcc010b0fd1, 0x3b5bd400ff3bcce1, 0x65c0ff3c165ea0ff, 0x000c103e0002bc10, 0x020d0ffecd04101e, 0xe9ff0ff4cb040ff9, 0xbc8df620ffbb7c9d, 0x100b0bbd0a6e7cff, 0x4a30ff100b960510, 0x0dbc27f318ff3b87, 0xbc161440ff101906, 0x39060dbcb48778ff, 0xf52cff102b011110, 0x80ff1034c904bc8d, 0x3adf5200ffbc12d3, 0x500011bd1c4be4ff, 0x2460ff104b230e10, 0x0bbb9593d0ffbcd5, 0x0c10660111107407, 0xbbd03f25ff106100, 0x6f030bbca3ae1eff, 0xdbff3b8179a9ff10, 0x0810869605bbdda5, 0x3ab6401eff108100, 0x9070ff3cdcf5f8ff, 0x0008000000133cdd, 0x0001000003e80000, 0x0000000010820000, 0x8c0508b800070000, 0xc1040248c704044e, 0x021100a06a05012c, 0x4305003c5305005c, 0xa7ff00295404002e, 0xba476c36ff3958fb, 0xc5f6beff0037b904, 0x6505bb04a9e8ff36, 0x84ff0049a604004e, 0xba6a9304ffba137f, 0xb4025cff0057b804, 0x6c04ba5ba912ff3a, 0x2c0400725e040080, 0xffba931194ff006d, 0x007b000c3bcf1879, 0xbb50ffbc9517e4ff, 0x120500920208bdf4, 0xff3d97b8bfff008d, 0x009b0a063c33b5f0, 0x1079ff3ca9a9a0ff, 0x000d00e8c004bceb, 0x810500ba260e00c8, 0xff3c5e5090ff00b5, 0x00c39804ba3d3317, 0x9a93ffbd10cbafff, 0x860500da01083bc8, 0xffb94dacf2ff00d5, 0x00e30d0e3a14c170, 0x5d7bff3b8020d7ff, 0x060d010c250ebac3, 0x9aff00f90e0b00fe, 0x3bb83d36ffbc61f6, 0xacd0bcff01070012, 0x01093cfe0c6cffba, 0xc2ff01196b05011e, 0xbbe6c491ffbd6856, 0xdae9b2ff01272b0e, 0x75053e6cfa14ff3c, 0x200e01780a0b01bc, 0x0906014ac6040158, 0xffbd1975e7ff0145, 0x01530806ba1b9a31, 0x0af0ff3d9841b5ff, 0x0008016a020d3bb0, 0xff3c006002ff0165, 0x01731105bbcd20e7, 0x2b4bff3cad0e6bff, 0x0b0b019cc4043bda, 0xb2ff01890002018e, 0x3c73c129ffbc9649, 0xf4e473ff01976105, 0x11053c1e25ebffbb, 0x8bff01a9100b01ae, 0x3d024c22ffbc003b, 0x0f5389ff01b77405, 0x81053ca0b5caffbb, 0x000801e4210e0204, 0x05ff01d1c30401d6, 0x3b0a951fffbc68d8, 0x1bfc50ff01df000c, 0x2a0e3ca87daaffbc, 0xffff01f1c60401f6, 0x3c89b272ffbbfc74, 0xd4569cff01ff7f05, 0x89053c6e7c1cffba, 0x050b021a83050228, 0xff3bcef81eff0215, 0x02230008bc03f166, 0x255dffbaa238d2ff, 0x8b05023ac5043aa4, 0xff3b8e2635ff0235, 0x02438a05bb51f8b9, 0xb1e4ffbcfca300ff, 0x060d0356190e3b3c, 0x8a050298010c02ca, 0x0208026a030b0278, 0xff3aa6c120ff0265, 0x027386053cbef1fa, 0x82c7ffbadc4f44ff, 0xc904028a02083bbb, 0xff3b9160f0ff0285, 0x02930111bd079d14, 0xc0a0ffbd46a9c4ff, 0xc80402bccc043cf7, 0xa9ff02a9000802ae, 0x3da6689cff3c22c2, 0x2c492bff02b70108, 0x0002bad3f38eff3c, 0xffbb1479e0ff02c5, 0x03120011bd9f73d4, 0x02e4180e02f2010c, 0xe7e9d7ff02dfcb04, 0x00023c4a89deffbb, 0xff3bcfd9d1ff02ed, 0x03040c0bbbe13999, 0x0d4762ff02ffc804, 0x170ebbcb1e10ff3c, 0xff3bace82aff030d, 0x0336000c3ce7f0ca, 0x032300020328140b, 0x1388ff3db559ccff, 0x9eff033187053d6b, 0x3d280520ff3ce799, 0x034389050348030b, 0xca96ff3d1755baff, 0x5fff0351010c3ce8, 0xbcf9f742ffbb9be6, 0x037e010b03c28b05, 0x036bcb040370020d, 0x3940ff3e0036f8ff, 0x00ff0379cb043cd8, 0xbbe87840ffbc8baf, 0x03948a0503a20208, 0xcf2a48ff038f3d01, 0xc904ba7bb6eeffbb, 0xff3ca3f7e5ff039d, 0x03b4c804baebaa0c, 0x0e98baff03af000c, 0x2b0e3c3aa92fff3a, 0xffbb46cbadff03bd, 0x040a220e3b9f6b8e, 0x03dc001203ea000c, 0x62fea6ff03d70208, 0x00023ad67a40ffbc, 0xff3c07fd4cff03e5, 0x03fccc04b9e02300, 0x46876bff03f7010c, 0x0b0bbd0ad315ffbc, 0xffbcab6eb4ff0405, 0x042e0012bd82bb5d, 0x041b00080420010c, 0x121eff3c76a3daff, 0x47ff0429cd04bc1f, 0x3b340600ffbd5718, 0x043b00080440230e, 0xa1b8ffbc62d175ff, 0xcfff0449000c3d47, 0xbbd242ecff3bce49, 0x0572110b06858d05, 0x04a2001104e60e0e, 0x0474a5040482c004, 0xa5f6e4ff046f9a04, 0x0b0b3c061144ffba, 0xffbb56c644ff047d, 0x0494010cbd0efa4b, 0x16988dff048f0b0b, 0x00023d6374b0ffbb, 0xff3d1aa83aff049d, 0x04c60d0e3b418113, 0x04b3080e04b89904, 0xcdceff39d78604ff, 0x6bff04c1a4043c37, 0xb9e9e344ffbc5222, 0x04d3000c04d80109, 0x4d6bff3b7e2cb3ff, 0x16ff04e1bd043d20, 0xbc1b6046ff3b8ef0, 0x050e0008052ebb04, 0x04fb840405000002, 0xe0adffbd124dc1ff, 0x8eff0509130e3b61, 0xbba92698ffbd27c8, 0x051b000f05200002, 0x08a4ffbd2af34fff, 0x35ff0529040bbc02, 0xbbd3befaff3bf7e8, 0x0544000205520108, 0x2c264fff053fca04, 0x010c3d72caaaff3a, 0xffbae41f82ff054d, 0x05640b0bbc447910, 0x436b07ff055f030b, 0x060d3bb1c945ffbb, 0xffbd5eec78ff056d, 0x05f900123b821756, 0x059ea80405be0108, 0x058b140b0590070e, 0x3d0cffbcc384b4ff, 0xe5ff0599a604ba60, 0x39df4166ffbcdd41, 0x05ab000905b0070e, 0x243aff3ca39eaaff, 0xd3ff05b90e0ebb4f, 0x3bb3885bffbb5d0d, 0x05d4bc0405e2ca04, 0xfec0d3ff05cf000c, 0x010cbc2ebe18ff3b, 0xffbc09e3b9ff05dd, 0x05f4cc04bce13a33, 0x2229caff05ef0208, 0x00ff3c42f7c0ff3d, 0x120641060dbb820a, 0x0806131d0e062101, 0x3b38d5f3ff060e00, 0x1c200ebb606c11ff, 0xf3ff3d5ae651ff06, 0x040633170e3b2d11, 0xbb5d4af0ff062eb3, 0x3c190e3b9f0a38ff, 0xc4ffbc8da303ff06, 0x080665010ebb5435, 0xff06520002065700, 0x06ec9eff3c838f84, 0x07c0ff0660000e3c, 0x04bb9ebb62ff3ade, 0xff067200080677be, 0x806405ffbcca8107, 0x11d1ff0680c9043c, 0x05bca58b43ff3bbb, 0x050719000f07a593, 0x0b06b5130e06d591, 0xff06a29b0406a701, 0xacd13dffbb0f2f91, 0x2f06ff06b00002bc, 0x0dbb21f12aff3b6d, 0xff06c2190e06c702, 0xfc39ffff3b989e62, 0xc6bbff06d08f05ba, 0x0bbc5dd10dff3b1c, 0x0406ebc50406f907, 0x3bf1a513ff06e6c2, 0xf4c7043dc933b6ff, 0x90ffbd235fe7ff06, 0x04070b060d3c73b4, 0xbc741d29ff0706a7, 0x14020ebaa88317ff, 0x8cff3d940341ff07, 0x0c0761cd043cca43, 0x040733000c074101, 0xb9cad675ff072ecc, 0x3c0009b93059c7ff, 0x1aff3aa504c5ff07, 0x080753c304b919d8, 0x3acadb8aff074e00, 0x5c180ebb8af39eff, 0x89ffbb51dfa1ff07, 0x050785230e3b1d25, 0xff07729005077792, 0x8329b2ffbc9215c1, 0x023dff07801d0e3c, 0x0ebd31383effbb9a, 0xff07920008079726, 0x795253ffba4cc474, 0xfc62ff07a02b0e3d, 0x0d3b300a90ffbbe9, 0x0b07f10008083502, 0x0207c3040b07d105, 0x3b98dd7bff07be00, 0xcc0002bb01085fff, 0x7effbc844307ff07, 0x0507e3140e3b6c43, 0x3c2e44c9ff07de95, 0xecc6043b22437dff, 0x38ffbc158974ff07, 0x0e0815030b3aceaa, 0xff0802c404080723, 0xbc6558ff3a876e7b, 0x24d2ff081094053c, 0x0dbd30a3d8ffbc49, 0xff08229405082700, 0x947f00ff3c903c28, 0x05a8ff08301d0e3c, 0x0f3b8afa48ffbc10, 0x04085d140e087400, 0xff084a070e084fb3, 0xedae2bffbb000376, 0x4703ff0858050bbc, 0x04bb2a61afff3c1d, 0x3dec3330ff0866ba, 0x6c8333ff086f170e, 0x00113b49440cffbc, 0x080e088a1d0e0898, 0xffba7cb993ff0885, 0x0893220e3b067b09, 0xaf76ff3c8bf0faff, 0x0b0b08aa1f0eba22, 0xffb994ff24ff08a5, 0x08b3230e399fb532, 0xe525ff3b88ec29ff, 0xc6040d389505bb8e, 0xb40409e0c1040afc, 0x770509109d040954, 0x410108e2170608f0, 0xff39b79b13ff08dd, 0x08eb050eb9b97d72, 0x3dc6ffba56e0c9ff, 0x00080902070ebc58, 0xff3aef583bff08fd, 0x090b0c0ebb37f258, 0xfb6fffbc32b66eff, 0x0112093433033b4a, 0x28ff092131030926, 0x3d1335daffbbdc70, 0x9356f5ff092f0b0b, 0x060d3c326e8aff39, 0xf5ff0941ab040946, 0xbaf93218ff393fc3, 0xffbed4ff094f0012, 0x32033c36982affba, 0x2e0e097cc004099c, 0x43ff09690002096e, 0x3ca39630ffbc806f, 0xae7f69ff09772f0e, 0x300ebb12479aff3d, 0x95ff09890012098e, 0xbe2b9154ff3ceaf2, 0xbe7279ff0997010c, 0x33033bda0e11ff3d, 0x011209b2010c09c0, 0xff3dc991b1ff09ad, 0x09bbb8043cc73779, 0x04d6ff3d0a5ea5ff, 0x010809d25205bc03, 0xff39138628ff09cd, 0x09db010cba02e61e, 0x9e13ff3966c547ff, 0x32030a7000023aad, 0x31050a0c33050a2c, 0x42ff09f92d0509fe, 0x3dc6f937ffbcf353, 0x331028ff0a07060d, 0x2b03bde0eac7ffbd, 0x36ff0a1902070a1e, 0x3dd91220ff3d89d6, 0x286ae0ff0a273405, 0x020bbd84648cff3c, 0x02080a4200120a50, 0xffbcd851c1ff0a3d, 0x0a4b000f3beeb33f, 0x1b70ffbc781262ff, 0xc4040a6252053a7a, 0xffbc23dd9dff0a5d, 0x0a6b220e3c014a66, 0x4161ffbb0283afff, 0x6b050ab86e053a9a, 0x060d0a8ac5040a98, 0xffbb738a8aff0a85, 0x0a93330e3c3e5832, 0x20b9ff3ba4a89fff, 0x6d050aaac504bd06, 0xffbbc21d0cff0aa5, 0x0ab3060dbd1825a1, 0x064affbd4ae8dfff, 0x01080adc7005bc63, 0x19ff0ac902070ace, 0x3ce44d1cff3d8616, 0x848335ff0ad70208, 0x060dbc64c6cdff3c, 0xe0ff0ae901120aee, 0x3b3c8e2fffbb8c30, 0xc1f53eff0af70107, 0x01083b478229ffb9, 0x00110b90010c0c1c, 0x6c050b2c7a050b4c, 0xddff0b19c7040b1e, 0xba16113fff3cefcf, 0x680d33ff0b270002, 0xc8043a6e6fb7ffbc, 0x7fff0b3900020b3e, 0x3b84462bffbbecf7, 0x98ad06ff0b47130b, 0xc7043b88fefbffba, 0x260e0b62060d0b70, 0xffbb9bf2c4ff0b5d, 0x0b6b0b0b3bf573f2, 0xa7bcff3cb18b65ff, 0xc9040b82350e3d87, 0xff3b3189b8ff0b7d, 0x0b8b000fba2b98ba, 0x46ebff3bba0b58ff, 0x220e0bd87805bbc7, 0x00120baacc040bb8, 0xff3c8ec3deff0ba5, 0x0bb3180eb91b9cf8, 0x46f0ffbdf7fa54ff, 0x070d0bca0207bcdf, 0xffbb98de2aff0bc5, 0x0bd34e05bd3d8d75, 0x6e4fffbc9ebebcff, 0x300e0bfc7a053bbc, 0x6eff0be979050bee, 0x3d864bcfff3c4e93, 0x929e62ff0bf70008, 0x070e3c9acf51ffbc, 0xe9ff0c0900080c0e, 0xbcae5ea7ff3b871b, 0xab5ea0ff0c178205, 0x75053b1faf5bffbb, 0x61050c6801070cac, 0x310e0c3a5f050c48, 0xffbb339caaff0c35, 0x0c43030b3c242545, 0x2e53ff3cd38628ff, 0x65050c5aca04bcc8, 0xff3cc28dd1ff0c55, 0x0c63000c3b905a59, 0xacb5ff3cefb153ff, 0x220e0c8c0012bc23, 0x29ff0c791f0e0c7e, 0xbd898535ffbb9f93, 0xa761f9ff0c870208, 0x060dbbbdd2fcff39, 0x7cff0c99c9040c9e, 0xb70aa426ffbb93f8, 0x0631d5ff0ca70002, 0x76053c3125c3ff3d, 0x060d0cd4c8040cf4, 0xe1ff0cc12b0e0cc6, 0x3c9dd5a1ff3db898, 0x8acf2fff0ccf010c, 0xca043d6469b0ff3c, 0x27ff0ce1000c0ce6, 0xbc46cd29ffbd230b, 0xac7a5bff0cefcc04, 0x300ebaedc261ff3c, 0x7e050d0acb040d18, 0xffbaba0ef0ff0d05, 0x0d137905ba33494a, 0x441affbbb9c3a5ff, 0x020d0d2a000fbb19, 0xffbaba464fff0d25, 0x0d330208bd134c46, 0x8883ff3b82af92ff, 0x01070f6f1f0e3c96, 0xbc040dc7c2040e53, 0x020d0d6c000b0d83, 0x5bff0d59020e0d5e, 0x3bb63d40ffbb3224, 0xa530edff0d67000e, 0x070d3bd14df9ff3b, 0x5eff0d79000f0d7e, 0x39486033ffbafb0a, 0xa79605bccebec7ff, 0x94010b0d99020d0d, 0x17ffbc2863c0ff0d, 0xff0da2bf043b4a43, 0xc19ad8ffbbfe078e, 0xb400020db9000fba, 0xa0ffbcfe64e0ff0d, 0xff0dc20002bbf9df, 0xc2cabcffbc2d4555, 0xef00020e0f0b0bbb, 0xdcc7040de1010b0d, 0xe3ff3bcbe6b8ff0d, 0xff0dea040dbbd036, 0xb80916ff3d2e78f0, 0xfc170e0e01cb043a, 0xfaffb9024768ff0d, 0xff0e0a060d3c09fd, 0x1a2e43ffbb8c3129, 0x25c6040e33c904ba, 0x6bb4ff0e20030e0e, 0x043bfbdd29ff39f2, 0xbbe23937ff0e2ec8, 0x45cb04ba5ff243ff, 0xb29bff0e4000020e, 0x083ca617c5ffbc06, 0x3b5d6d95ff0e4e00, 0xe3030bbadf70f5ff, 0x7f00020e9fb3040e, 0x6c95040e7196040e, 0x96ff3b9ee58dff0e, 0xff0e7a000eb90fce, 0xfc8a60ff3c7d09b0, 0x8c01110e91000d3b, 0x54ff3c3b40eaff0e, 0xff0e9a0111bc204a, 0x4765f4ff3a2123d8, 0xb5020d0ec3000b3b, 0x9503ff0eb096050e, 0x073a89b0ecff3b2d, 0x3bea7241ff0ebe02, 0xd5c1043c294078ff, 0xadf1ff0ed0000f0e, 0x0ebae53d7dffbc86, 0xbb1415d8ff0ede0d, 0x2b96053ae098b1ff, 0xfd000c0f0bc9040f, 0x74a5ff0ef801120e, 0x043b89618fffb8c8, 0x3baf9c12ff0f06c6, 0x1dcb04ba6f4c00ff, 0x1c26ff0f18060d0f, 0x12bbd23fbcff3c84, 0x3b6f6184ff0f2600, 0x4fcd043a7f61abff, 0x3c00020f41020e0f, 0x70ff3a44e330ff0f, 0xff0f4a030ebb4cb7, 0xab727dff3b162d60, 0x5c020e0f61110e3b, 0x18ff3b3aee7cff0f, 0xff0f6a0011bbd0b3, 0xd19270ff3b9f0113, 0xdf000c101100023a, 0x9f0b0b0fad2b0e0f, 0x8c00120f91240e0f, 0x62ff3a1f3ac7ff0f, 0xff0f9a0111bbf1b3, 0xa32fe0ff3a8c9200, 0x79e8ff0fa800123c, 0x04bc071240ffbca2, 0x050fc3030b0fc8c0, 0xbbfcaa20ff0fbe96, 0xe500ffbc140c00ff, 0x030b0fda9605bb9f, 0xffbc8f7f00ff0fd5, 0x2d18c0ffbc994040, 0xaab4ff0fe80012bc, 0xc9041003030bbd0c, 0x0bbc0424c0ff0ff5, 0x3bb86400ff0ffe01, 0x0ccb043b152b00ff, 0x18ffbc01f540ff10, 0x0e1074060dbc7f86, 0x0c102bc904103922, 0x3c051cf3ff102600, 0x3401123c075520ff, 0x38ff3c44db9bff10, 0x0b105d050b3c2ef5, 0xff104aca04104f03, 0x99f567ffbb4b2a8a, 0xf0cfff1058280e3b, 0x0cbcade180ffbc09, 0xff106a9605106f00, 0xc76868ff39ee66a7, 0x230e3ccd13a8ff3c, 0xffbcbfd3f0ff107d, 0x00000013bb869eb0, 0x000003e800000008, 0x00000f7d00000001, 0x088b000700000000, 0x0248c70404728c05, 0x00a06a05012cc104, 0x003c5305005c0211, 0x00291606002e7404, 0x10acffb86d40bfff, 0x09ff0037060d3b1b, 0xbb5fb56cff3a3ffa, 0x0049b004004eb504, 0xe59effb8e8399dff, 0x91ff00574101bb85, 0x3abc6b21ffbcc3dc, 0x00725e0400806c04, 0xa60bf9ff006d1d04, 0x34013b7f871bffbb, 0xffbddc4230ff007b, 0x00920008bc862f18, 0x0f5f52ff008d6d04, 0x1c05bcb42e00ff3d, 0xff3c7bbdc4ff009b, 0x00e8c004bc28a616, 0x00ba720500c87905, 0x0bee99ff00b50008, 0x000d3aa93c3bffbb, 0xff3beda8a1ff00c3, 0x00da330e3a953e31, 0xa30899ff00d5bf04, 0x7a053b0c3dafff39, 0xff3d7a604bff00e3, 0x010c000cbb7bbaeb, 0x00f9030e00fe000f, 0xcaf1ff3d1eee69ff, 0x25ff01076b05bda7, 0xbb88b001ffbdfb20, 0x01190008011e340e, 0x68b7ffbbd0e4bcff, 0x68ff0127030b3ba7, 0x3d094835ff3e06fc, 0x0178000f01bc7505, 0x014a070b01580006, 0xa7ba55ff0145010b, 0x0a0bbbb782f9ff3c, 0xff3bf1a22eff0153, 0x016a29053cf66d62, 0xd3085bff0165020d, 0x00023c9e07d7ffbb, 0xffbd456e9eff0173, 0x019c7305392b6b5c, 0x0189c504018e6d05, 0x0c31ffba8e1b18ff, 0x3cff01976f053b07, 0xbc1a1b57ff3d0ae5, 0x01a9230e01ae100b, 0x1fd5ff3d05e790ff, 0xa6ff01b7060d3b38, 0xbcec257fff3be75a, 0x01e41c0e02048105, 0x01d17c0501d60002, 0x36d1ffbbfeb068ff, 0x29ff01df0a0e3cb7, 0xbc23163eff3ca351, 0x01f17b0501f6c504, 0x4e41ff3be034a6ff, 0x04ff01ff0b0bbc09, 0x3c0ca297ffbada4b, 0x021a830502288905, 0x3e122fff02150012, 0x0008ba37162cffbc, 0xffba91fff6ff0223, 0x023ac5043a93bb54, 0x7fde50ff02358b05, 0x8a05bb3cf963ff3b, 0xffbce35f80ff0243, 0x03561c0e3b29d34b, 0x028f060d02d3180e, 0x026acc04026f1806, 0xfd4505ff0265030b, 0xd8ff3a821bd6ff3b, 0x0402810008bd8f81, 0xb94fce59ff027cca, 0x8a0d0e3b89ef7dff, 0x7fffbb397923ff02, 0x0502b3140ebc88da, 0xff02a0000902a584, 0xc9945dff3d6699e6, 0x15f4ff02ae85053a, 0x04b987bfa6ffbd84, 0xff02c0070b02c5cb, 0x4356f4ff3cdf11ab, 0xe060ff02ce170ebc, 0x0c3dbd0ecdffba3d, 0x0502fb0009031b01, 0xff02e8120602ed47, 0xe738b8ffbcf6b1dd, 0xfa2bff02f686053c, 0x0eb92622a5ff3c35, 0xff03087c05030d19, 0x1f9332ffbcc5b15c, 0x5364ff03160011bb, 0x0bbd12da08ffbd63, 0x0403310b0b03360c, 0x3be50fe5ff032cc8, 0xc484ffbb94c502ff, 0x000203480008bd8e, 0xff3c5dff55ff0343, 0x03518705bd14f7ab, 0x3bc6ff3cac725aff, 0xcc0403e6220e3d39, 0x82050382830503a2, 0x54ff036f81050374, 0xbdcc29ecffbb34de, 0x4883a8ff037d0b0b, 0x89053e0dcf9affbd, 0xd2ff038f88050394, 0xbd93e8f1ffbc9354, 0x568b0fff039d8a05, 0x0011bcbb729cff3d, 0x1f0e03b8000c03c6, 0xffbcaeb0f5ff03b3, 0x03c11f0e3d37ec7c, 0x1c0aff3d7c447eff, 0x0b0b03d801123e20, 0xffbc9a4a0cff03d3, 0x03e10008bd84ae38, 0x6667ff3c3714a5ff, 0x0108042ecd04bc5c, 0x000c0400000d040e, 0xffbd123017ff03fb, 0x04090002393ae455, 0x1085ffbb5d07f8ff, 0x230e0420010c3aaf, 0xff3c011aa6ff041b, 0x04298705bac8cf66, 0x08f1ff3bbcbe04ff, 0x011204520b0bbcf4, 0x01ff043f8a050444, 0x3a0272ddff3c25c4, 0xe91b3cff044d0208, 0x0002bc813c33ffbc, 0x81ff045f2b0e0464, 0xbb73f05aff3bf1ff, 0x54cf7bff046d230e, 0x8d05bbc34514ffbd, 0x000f0560230e064f, 0x010804c6ca0404d4, 0x010b0498000804a6, 0xff3c95cb60ff0493, 0x04a1220e3a39df9e, 0xd847ffbc443ee3ff, 0xbc0404b8030b3d04, 0xff3c5dc4a7ff04b3, 0x04c1050bbd8d2842, 0x3d10ff3d492a1dff, 0x88ff04cf050b3c09, 0xbcdc1430ffbdb682, 0x04fc080e051cc704, 0x04e9000804ee060e, 0x5720ff39fa0c71ff, 0x63ff04f7a504bb8d, 0x3a3ea860ff3b8315, 0x0509070b050e9f04, 0x9942ffba9faf16ff, 0x9aff05170b0e3cca, 0x37fdbc79ffbcec97, 0x0532060d05400d0e, 0x589328ff052d0008, 0x00123d029951ffbc, 0xff3c2f9a5eff053b, 0x0552c904bb9ac287, 0xa6f320ff054d170e, 0x060dbc7d2bcfff3a, 0xff3c08fb75ff055b, 0x05de280ebb4eb64c, 0x058c060d05ac0002, 0x0579050b057e0008, 0xf2f8ffbbb41486ff, 0x08ff05870108bc9b, 0x3cbae678ffbb0d31, 0x0599250e059e0012, 0xd926ff3aef0680ff, 0x00ff05a7c204bbfc, 0x3e1c8b9affb8a3fc, 0x05b9001105be250e, 0x4bd5ffbd28d535ff, 0x0e0b05d0000cbd9d, 0xffbc050acfff05cb, 0x05d900093cc6e73c, 0xe100ffbcba6763ff, 0x0002061d01083a06, 0x001205f8cc0405fd, 0xff3c85c958ff05f3, 0x90ec00ff39edac1d, 0x0a000f060f00093d, 0x2dffbcdb3159ff06, 0xff0618030bbbb0b8, 0x9c0048ff3cf426cd, 0x2a020d062fc4043b, 0x74ff3e03b7d6ff06, 0x0806412a0e3c0929, 0x3bb5fbc0ff063c02, 0x4a000fbd3b5b9cff, 0xe6ff3c399d87ff06, 0x0d076f93053ba81e, 0x04069f020806e302, 0x0e0671040b067fbe, 0x3a91633dff066c23, 0x7a220ebc2087e2ff, 0x54ffb91b732aff06, 0x0e0691cd04bc1e5e, 0x3a3ea51eff068c34, 0x9a01083d7de22cff, 0x10ffbd00b2ebff06, 0x0e06c3c904bc2fa1, 0xff06b0bf0406b517, 0x871597ff3bd6fb86, 0x862eff06be9105bc, 0x0b3d397f90ff3ca0, 0xff06d08f0506d503, 0x0a6e94ffbd89f5a0, 0x6020ff06de9005bd, 0x0bbbf8c200ff3c3d, 0x04070bbc04072b07, 0xff06f8030d06fd57, 0xa93433ffbd77278a, 0x19cfff0706230eb9, 0x0bba0f3529ffb945, 0xff0718000f071d03, 0xc15e1effbad0b9ae, 0x6396ff0726000239, 0x05bb6b8ee1ff3bd3, 0x0e0741a804074f8e, 0x38a4234aff073c09, 0x4aae043c5877e9ff, 0x1dffbcd263eeff07, 0x040761000f39cfdb, 0xbb793b8dff075cbb, 0x6ac6043bb47f6dff, 0xcaff3866ca5bff07, 0x0807ff020d38a80b, 0x0b079b050b07bb00, 0xff07880009078d04, 0x861b0dff3b0bf775, 0xa848ff0796cb04bb, 0x0e3cceb3aeffbc08, 0xff07a8950507ad19, 0x9a2cc9ff3c24acf1, 0xec17ff07b6c6043a, 0x0b3a395b49ffbc3c, 0x0407d1230e07df03, 0x3a73c52dff07ccc4, 0xda94053ca98e78ff, 0xd8ffbc350792ff07, 0x0e07f1000fbd1ef9, 0xbbe4c6aaff07ec17, 0xfac8043ba72460ff, 0x80ffbc9546a8ff07, 0x0e0847000fbbf170, 0x0e0819b104082714, 0x3a915babff081406, 0x22060dbcec1797ff, 0xa4ff3b4eeb89ff08, 0x0208399505bc9b72, 0x3c7b1857ff083400, 0x420a0bbaddefdeff, 0xfdffbca855ecff08, 0x0e086b00113ba699, 0xff08580d0e085d1d, 0xc5d766ffba01042f, 0x751cff08660b0b3a, 0x0ebc0a7f9cff3bc2, 0xff0878030b087d1d, 0x10fe40ff3aaf2f0b, 0x3ab6ff08861f0eba, 0x05b8b6a7c0ffbc01, 0x0d0acfc6040d0b95, 0x050927260e09b300, 0x0408c3600508e37e, 0xff08b0510408b5ba, 0x98f735ffba8e09c9, 0xef74ff08be00023b, 0x07bab3d683ffbd88, 0xff08d05f0408d502, 0x460c3affbbbe5cd3, 0x6b70ff08de80043c, 0x053c59c93cffbd32, 0x0408f90a0b090783, 0xbce80473ff08f480, 0x020207bb7065c4ff, 0x86ff3cad0c43ff09, 0x0e09190107bd28d0, 0x3c7c397aff09140d, 0x2251043bc80c78ff, 0x08ff3cbd3194ff09, 0x01096fb5043909ce, 0x0109410806094f3c, 0xbaef57bbff093c32, 0x4a340e3bab9ca1ff, 0x4fff3cc2d58dff09, 0x0509619204bc035d, 0xbc293eafff095c45, 0x6a2c0ebd84b0e9ff, 0x2aff3c4604f6ff09, 0x0609932a0ebc45c6, 0xff09800207098500, 0xb27968ffbd1d0689, 0xfb20ff098e0002bd, 0x0ebca2533eff3c61, 0xff09a0000c09a531, 0x72ccf6ffbc73844d, 0xe130ff09ae320e3c, 0x0e3b9f30d2ffbd37, 0x0509ff000f0a431c, 0x0109d1250309df8e, 0x3a4a2cffff09cc3f, 0xda000ebbd59294ff, 0x1bffbb99fd59ff09, 0x0409f1020b3b807f, 0xbb60ec57ff09ecc2, 0xfa140ebd0c5580ff, 0x54ffbb576177ff09, 0x050a23ba043ba8d9, 0xff0a105c050a155f, 0x173ce6ff38c59615, 0x84ccff0a1ea904bb, 0x043a9237f1ffbae2, 0xff0a30010e0a35bb, 0x25e655ff3c180d45, 0xf3deff0a3e1b0ebc, 0x043d58a7baff3999, 0x040a6b91040a8bc5, 0xff0a581d0e0a5d8f, 0x321519ffbcba4dc2, 0xcb93ff0a661e0eba, 0x0e3c35e8bcffbc82, 0xff0a7801060a7d1f, 0xa229afffbc1def2e, 0x5d4cff0a86230e3b, 0x0eba152b03ff3b37, 0x0e0aa100120aaf2a, 0x3c1f0670ff0a9c23, 0xaa39053d8373b0ff, 0xafff3c640f35ff0a, 0x0e0ac10111bcc160, 0x3c62a634ff0abc33, 0xca2b0ebcb337a3ff, 0xd0ffbd011507ff0a, 0x0c0bef0108bafd69, 0x050b1f00110b6301, 0x040af178050aff7a, 0xba8fac00ff0aeccb, 0xfa2a0e3c8edf26ff, 0x6aff3bc3415cff0a, 0x020b11c804bcd543, 0xbbd5452fff0b0c00, 0x1a130b3b6e17e1ff, 0xe5ffba896860ff0b, 0x0d0b43c7043b7697, 0xff0b30340e0b3506, 0x9468c7ff3aff2c2e, 0x2991ff0b3e070dbc, 0x04bd2552f8ff3d02, 0xff0b50000f0b55c8, 0xf1b26fff3c37b3e0, 0xb2b9ff0b5ec904bb, 0x05ba2a70bdff3c0c, 0x0e0b8b00020bab77, 0xff0b7873050b7d1f, 0x562ed9ff3cae0240, 0xead2ff0b860206bc, 0x053c0d1741ffbbf0, 0xff0b98cb040b9d47, 0x8420b1ffbc89874c, 0xce46ff0ba6010738, 0x0d3c2f7540ffbc5e, 0x050bc1280e0bcf06, 0x3cebcbadff0bbc7e, 0xca01113b33238bff, 0x03ffba998417ff0b, 0x040be1080ebcc23e, 0x3d273cfeff0bdcc8, 0xea0012bc4a9cbaff, 0x8dff3b5cf402ff0b, 0x0d0c7f7505bc2ba1, 0x060c1b07050c3b06, 0xff0c083b010c0d14, 0x0e6f55ff3d0b5d52, 0x19f5ff0c16070ebd, 0x053d490da8ff3ba2, 0xff0c28c8040c2d64, 0xa0ff6dffbb18435f, 0xe42aff0c36000f3a, 0x0eba2797bfffbc5f, 0x050c5100120c5f2b, 0xbc0c3d2bff0c4c62, 0x5a010cb9001736ff, 0x2aff3cb78fceff0c, 0x020c71c7043b3889, 0x3d087547ff0c6c00, 0x7a0002bc392388ff, 0x84ffbc7ae8d0ff0c, 0x0b0cc7310e3c8eb6, 0x0b0c99000f0ca711, 0xbca2b660ff0c9409, 0xa20e0e3c570be3ff, 0xdcff3b2e1de5ff0c, 0x050cb9c704ba85d3, 0xbddc0342ff0cb477, 0xc2c904bc02d40fff, 0x67ffbbf1dcc0ff0c, 0x050ceb01073abf4a, 0xff0cd8320e0cdd7b, 0x93e082ffbd34880d, 0xff00ff0ce6360ebb, 0x123d3d6b00ff3b8c, 0xff0cf8cc040cfd01, 0xa8367bffbbcba790, 0x9803ff0d06020d3c, 0x0ebd9a908aff3c3f, 0x040df91d0e0e6a22, 0x070d3200020d6d7f, 0xff0d2896050d2d01, 0xe8e688ff3c0b3054, 0x040b3c3b3800ff3b, 0x96050d48010b0d56, 0xff3bf27ae8ff0d43, 0x0d51030b3bda3300, 0x8d40ffbbd352d4ff, 0x050b0d68070bbb66, 0xff3b32d4b3ff0d63, 0x8e22b6ffbc14be98, 0x95020b0db5010c3c, 0x82020d0d8700110d, 0x2dff3a0dca89ff0d, 0xff0d90030e3b9b16, 0x827e17ffba8b2cd4, 0xa201120da7000dbb, 0x11ff3c0d7c69ff0d, 0xff0db0020dbb2685, 0xd66681ffb98530e1, 0xcbc9040dd9000839, 0x6befff0dc6c4040d, 0x113c073a42ffbb1a, 0xbbdd712fff0dd401, 0xeb020b3bc67ad8ff, 0xb800ff0de601110d, 0x0bbc01e3f8ffb7f1, 0xbca21be8ff0df403, 0x650e0b3a6c1680ff, 0x2596050e3c01110e, 0x1200080e171f0e0e, 0xfaffbbad5b0dff0e, 0xff0e2000023be4d5, 0x312c0bff3c4d8740, 0x32cd040e37030b3c, 0xf0ff3ab0fbf0ff0e, 0x3ce7db80ffbb425b, 0x0e52cb040e57030b, 0x80b500ff0e4d0002, 0x20ff3bfb0424ff3b, 0xff0e60cb043d1a2e, 0xc08000ffbbe9ec80, 0x00023d2818f0ffb7, 0x2b0e0ee3000c0f03, 0x000d0e9a240e0eb1, 0xe0ff0e87030b0e8c, 0x3cc1d440ffbb0caa, 0xa97a26ff0e950012, 0xc904bc8551b9ffba, 0x0b3c92de40ff0ea3, 0x3a7d0700ff0eac0b, 0xcc000dbbf320e0ff, 0xc201070ec7030b0e, 0xe0ffbc053e00ff0e, 0xbb8fe7c0ffbbe365, 0x0ed9030b0ede9605, 0xed00ffbc812580ff, 0x12bc1bc980ffbc89, 0xbcfd3340ff0eec00, 0x65f8a8ff0ef50111, 0xdb80ff0efec904bc, 0x0d3aab2600ffbbed, 0x120f4f050b0f6f06, 0x070f21000c0f2f01, 0xbbcd0615ff0f1c01, 0x2a030bbb84d3b4ff, 0x9cffbc5037c8ff0f, 0x040f41030bbcbb77, 0x3a0bd11aff0f3ccd, 0x4a280e3cd61410ff, 0x20ffbb817b40ff0f, 0x0c0f6a0008bc9c7e, 0xff0f6096050f6500, 0xb37790ffbaf3b768, 0x00ff3cb891b8ff3c, 0xff0f78230e3cc67e, 0x7250e0ffbcaca528, 0x00000800000013bb, 0x000001000003e800, 0x00000000000fe000, 0x848c0508b8000700, 0x2cc1040248c70404, 0x5c021100a06a0501, 0x2e4305003c530500, 0x8084ff0029540400, 0x04ba36e7ecff3948, 0x381672b0ff0037ba, 0x4eb504bb1b1e4eff, 0xa56aff00498b0400, 0x01bad37ec1ff39ab, 0xbcb04688ff005741, 0x806c043aa99359ff, 0x6d000200725e0400, 0x10ff3bba328aff00, 0xff007b3401b9512a, 0x7187f0ffbdc63b90, 0x8d02080092030ebc, 0x37ff39908f09ff00, 0xff009b0208bcfc9f, 0x177ecbff3cb6c1b1, 0xc8000d00e8c004bc, 0xb5430400ba1c0e00, 0x95ffbba38698ff00, 0xff00c36c043c9d2e, 0xd4cfb5ffbd3714cb, 0xd5860500da01083a, 0xdcffb9394e87ff00, 0xff00e3020b39fa2b, 0xdfcc48ffbb8b54fa, 0xfe060d010c230e3a, 0x9fa7ff00f9170e00, 0x123a7e7589ffbc96, 0xba9fbc8dff010700, 0x1e030b3ce75b72ff, 0x0b51ff0119010901, 0x063db982a9ff3b92, 0xbc01b437ff012700, 0xbc7905bdac3470ff, 0x580b0b0178770501, 0x450208014a030b01, 0x72ff3abbabf4ff01, 0xff015370053c48ea, 0x3604b2ffb8273aa8, 0x65170e016a1f0ebc, 0xe2ff3b64a2c2ff01, 0xff0173c2043d7a3b, 0x92f538ff3bce6e4f, 0x8e120b019c0002bb, 0xb121ff0189000601, 0x08bcad7d56ff3b84, 0xbbe0b807ff019702, 0xaec604bd2343e8ff, 0xf058ff01a9330e01, 0x053ca159b0ffbc55, 0xbc945885ff01b778, 0x040002bdc6b4f4ff, 0xd67a0501e4c30402, 0x5e5dff01d1c20401, 0x0e3dcd2de4ff3bb8, 0xb990bf2cff01df23, 0xf6c604bbc4440dff, 0x56dbff01f1010c01, 0x0bbc03f96bff3b49, 0xb9ca2015ff01ff0b, 0x2880053c664d25ff, 0x15c304021a140b02, 0x06ff3be1b3dbff02, 0xff0223230ebba721, 0x4736d2ff3bd04cde, 0x358905023a010c3d, 0x97ffbb7d60feff02, 0xff024384053a4a80, 0x4c5c35ff3d0e0d8d, 0xdc260e0368ca04bb, 0x78000202980b0b02, 0x65010c026a850502, 0x00ffbbfcd780ff02, 0xff027386053c93c6, 0x9faaaaffbd310b53, 0x85000f028a220ebb, 0x8dff3c358775ff02, 0xff02930009bb12bb, 0xe32be0ff3c8bb310, 0xae140b02bc070dbb, 0xeb85ff02a9000902, 0x0c3cb6ec48ffbd6a, 0xbb2f5ad3ff02b700, 0xce00093bd16f17ff, 0x1ebaff02c9010802, 0x05bca69b70ffbd62, 0x3c75cd3aff02d77f, 0x240108bc241997ff, 0xf6280e0304c90403, 0x9c81ff02f1010c02, 0x0bbd4e52cbff3c3e, 0x3b821cdbff02ff04, 0x160011bb3c1767ff, 0x8ee7ff0311000803, 0x0e3d00eb0eff3c04, 0x3d00fc10ff031f28, 0x48060dbafcd66dff, 0x35c804033a2b0e03, 0xcaff3d034591ff03, 0xff03432f0e399a8a, 0xdbf724ffbcae725b, 0x556d05035a2b0eba, 0xd8ffbc9da337ff03, 0xff03632f0ebb7849, 0x7a7f55ff3d960b66, 0xb4000203f8cd043b, 0x86010c03942d0e03, 0xc003ff0381cb0403, 0x04bb38096eff3bda, 0xbaca4af4ff038fcb, 0xa60008bc8fc962ff, 0xf077ff03a1890503, 0x063cb11c54ff3b81, 0xbbedf09dff03af02, 0xd88a053c0c488bff, 0xc5130603ca0c0b03, 0xf9ffbbe77cffff03, 0xff03d3020d3b2e44, 0xda14d6ff3ccc82f4, 0xe5130b03ea010c3a, 0xd8ffbb813428ff03, 0xff03f30b0b3c9a22, 0xcbdc59ff3d118a77, 0x20790504400b0b3d, 0x0d70050412340e04, 0xc4ff3af4e300ff04, 0xff041b00023d0c97, 0x9135e9ff3cd46d6c, 0x2d8a050432350ebc, 0x92ff3c162092ff04, 0xff043b030b39a482, 0x6c33eeff3c02de5d, 0x56260e04640002bc, 0xcd27ff0451020804, 0x053cdcdfb7ff3b1d, 0x3c5f02f0ff045f6e, 0x762b0ebb261892ff, 0x29e3ff0471010c04, 0x0ebd4d1742ffbcb1, 0x3d3a5478ff047f2c, 0x8e8d05bbd6f773ff, 0x1c0e0e05a8110b06, 0xb8070e04d8890405, 0xa5011204aa860404, 0x4effb967ef20ff04, 0xff04b3040b3bccaf, 0x1171f9ffbbcfbc82, 0xc5000204ca7204bd, 0x2cff3c16fed9ff04, 0xff04d3040bbc2f3c, 0xdfa6c3ffbb875aa4, 0xee0a0b04fc9104bc, 0xd23aff04e98e0404, 0x0ebc66a02aff3bc3, 0x3c3b3bf1ff04f709, 0x0e070e3d4f590dff, 0x008dff0509070b05, 0x0bbb9df75fff3c1a, 0xbac43d8eff051707, 0x64bb043b5e371dff, 0x3600020544000805, 0x990fff0531010b05, 0x0e3ab71ceaff3c90, 0xbb1533f4ff053f1f, 0x560002bc9545eaff, 0xf2ffff0551000f05, 0x0bbbea1991ffbd14, 0x3bd2aa29ff055f04, 0x881d0ebbbcf5a4ff, 0x75070d057a140e05, 0x47ffbd00cd04ff05, 0xff0583010cba9ed5, 0x296227ff3a158f80, 0x95000f059a220e3c, 0xe5ff3b57e300ff05, 0xff05a30e0bbc694c, 0x839b92ffb904f6e0, 0xf4070d060200123d, 0xc6000805d4140b05, 0xf673ff05c1a60405, 0x08bc3aae3dffbccc, 0xbc4451a0ff05cf01, 0xe60208bd3ae006ff, 0xc504ff05e1010e05, 0x043b6a1ff9ffbb0e, 0xbc15a0f1ff05efc9, 0xfd00083c1de940ff, 0xa0ff3d2cb4f4ff05, 0x04064a060d3ca59b, 0x09061c070e062ab7, 0x3bbde56bff061700, 0x25010cbac4e8b0ff, 0x44ffbb9c3c40ff06, 0x02063cba043d1052, 0x3c0c5c3cff063700, 0x45bb043d7660edff, 0x3effbd891f70ff06, 0x04066ec9043b1b69, 0xff065b080e0660be, 0xbf5109ffbb0f5876, 0xf4ceff06690002bc, 0x08bb5686f2ff3cb6, 0xff067b010c068000, 0xfc350bff3c03289d, 0x111aff06890108bc, 0x053c68a3a8ffbdd1, 0x080710020d079c93, 0x0e06bebc0406de02, 0xff06ab190e06b01a, 0x517dbdffb85438a9, 0xf2f8ff06b9220e3d, 0x043b35b2a8ffbbc2, 0xff06cb030b06d0bd, 0xcd4f40ff3cdd0171, 0x87bcff06d9be043b, 0x0e3a6f59b6ffbc5a, 0x0b06f4220e070223, 0x3b9488c0ff06ef09, 0xfd050bbbf2f710ff, 0xb0ff3c878d55ff06, 0xff070b010b3d3e1e, 0x7853c0ffbd1f7c70, 0x3891050758050bbd, 0x25010c072a0d0e07, 0x9bffbaa0412cff07, 0xff07338f05babc20, 0x48df6bff3adf3a32, 0x450108074acc04bb, 0x08ff3b0b1ad3ff07, 0xff0753000fbbced3, 0xd2da33ff3d8d5f44, 0x6e010c077c0c0b3b, 0xb6b5ff07691d0e07, 0x0b39c040f6ff3a0e, 0x3ac08ba1ff07770b, 0x8e220ebd04928eff, 0x1f92ff0789110e07, 0x0cb8146d34ffba88, 0x3b74e329ff079700, 0x2c020dbc38bd83ff, 0xc8050b07e8000808, 0xb5000207ba040b07, 0x32ff3b863556ff07, 0xff07c3c204bae50c, 0xc6a2a0ffba6efb91, 0xd5c60407dac904bc, 0x9bff3947ed8fff07, 0xff07e3ca043c3888, 0x74d308ffbd084835, 0xfe230e080c030bbb, 0x6523ff07f9c40407, 0x053c9899d8ff3a5b, 0xbc22ed4eff080794, 0x1e000fbd0f140cff, 0xe620ff0819170e08, 0x0c3b966d60ffbbcd, 0xbbef7518ff082700, 0x74000fbc94186fff, 0x46b8040854020b08, 0xca8fff0841950508, 0x02bc82a68cff3bf8, 0x3abfb97aff084f00, 0x6694043cc7d91aff, 0x730eff0861000c08, 0x0ebd91bd0cff3b37, 0x3a29987fff086f1f, 0x98270ebbea8c00ff, 0x850112088a1d0e08, 0x23ffb95d416cff08, 0xff089395053b0065, 0x54ba07ff3b365a74, 0xa5290e08aa0012bb, 0x64ff3d763839ff08, 0xff08b3050b3bf36c, 0xab0b49ff3abf7381, 0xfcc6040d389505bb, 0x54b40409e0c1040a, 0xf00a0609109d0409, 0xdd2f0e08e28a0508, 0x96ff36315c0bff08, 0xff08eb8b05b9d839, 0x21160dffbb2e5dab, 0xfd73040902030b3a, 0xf8ffbb939c01ff08, 0xff090b000f3a425c, 0x38aaffff3bef7e05, 0x26090b09340008bb, 0x0bd8ff0921310e09, 0x0bbbc1f056ff3a1d, 0xbc61bc87ff092f0a, 0x46b304ba88f5d6ff, 0x4a81ff09413c0109, 0x113a0c0782ffbacd, 0xbacd464eff094f01, 0x9c0011bc457a64ff, 0x6ebb04097c020709, 0x339eff0969000209, 0x083aecd267ffbc51, 0x3ba0c6c6ff097702, 0x8e280ebb73ef58ff, 0x92a7ff0989320509, 0x04bb75bffbffbc51, 0x3c0830f7ff0997b8, 0xc033033cde9506ff, 0xad340e09b2320309, 0x60ffbc094d3fff09, 0xff09bbb80439c8be, 0x24459bff3d80bd2b, 0xcd000209d257053c, 0x98ff3ae308bcff09, 0xff09dbb804ba91d7, 0x2452aaff3bb501eb, 0x2c80050a70000238, 0xfe230e0a0c280e0a, 0xe4bfff09f9220e09, 0x123b9a8245ffbbe7, 0x3d906bdbff0a0700, 0x1e6a05bd882a93ff, 0x81f6ff0a1902070a, 0x053a0a5a4bffba7a, 0x3cae0104ff0a276f, 0x50310ebb069d66ff, 0x3d180e0a4287050a, 0xc3ffb9253ce1ff0a, 0xff0a4b230e3b9a87, 0x15869dff3aea54aa, 0x5d84050a62030bbc, 0x15ffbcca3640ff0a, 0xff0a6bc5043c066c, 0x9c0000ff3d72d350, 0x982a0e0ab80208b6, 0x851d0e0a8a000c0a, 0x53ff3b1617b7ff0a, 0xff0a93060dbbb5c4, 0x0ccb36ffbb33250b, 0xa50b0b0aaac3043b, 0x35ff3b3bbbccff0a, 0xff0ab3320ebca41c, 0x0cb7faff3c7844cb, 0xce050b0adc000fbc, 0xd320ff0ac9020d0a, 0x05bd36bbc9ffbc28, 0xbd1055b2ff0ad739, 0xee3b053c62eb3aff, 0x1f4eff0ae9c5040a, 0x053a3e84fbffbcbd, 0x3cb273d7ff0af747, 0x1c0108ba627cdcff, 0x4c00110b90010c0c, 0x1e61050b2c2f0e0b, 0x17e0ff0b1900020b, 0x05bccc1290ff3d16, 0x3c9b9b42ff0b276c, 0x3ec7043a5de9eeff, 0xfb00ff0b39310e0b, 0x0bbb995442ff3cc7, 0x3bc83f44ff0b4703, 0x70c704bc7994dfff, 0x5d260e0b62060d0b, 0xe7ffbb92bb75ff0b, 0xff0b6b79053bdf35, 0x568863ff3d40a8f6, 0x7dc9040b82350e3c, 0xdbff3b0fce03ff0b, 0xff0b8b000fba0964, 0xb13805ff3b9bfdf4, 0xb834030bd87805bb, 0xa527030baa00120b, 0x7effbe3602baff0b, 0xff0bb32b03be5fb7, 0x31a06cffbcb76cfa, 0xc572050bca74053d, 0x0cffba94ae5fff0b, 0xff0bd301073cb425, 0xc3ac23ffbd00b895, 0xee00020bfc7a05ba, 0x7d2bff0be979050b, 0x0eba9f4e72ffbccd, 0x3d541b46ff0bf729, 0x0e01073beb5566ff, 0x0156ff0c097f050c, 0x053a91b4e0ffbcb1, 0x3c2ea4c9ff0c177e, 0xac750537ffe101ff, 0x4861050c6801070c, 0x3500020c3a5e050c, 0xd8ff3b985b29ff0c, 0xff0c43030bbb31d1, 0xa01e6cff3cc101d1, 0x5565050c5aca04bc, 0x29ff3cb078dfff0c, 0xff0c63000c3b84b2, 0x131c8aff3cd6fe9f, 0x7e11050c8cca04bc, 0xee34ff0c7907060c, 0x0ebd070315ffbe0b, 0xba47beacff0c8730, 0x9e000cbba149ecff, 0xc63eff0c9900020c, 0x0ebad69f36ffbc61, 0xbb1cdea1ff0ca72a, 0xf476053bfb34f6ff, 0xc6010c0cd4c8040c, 0x3eaaff0cc10b0b0c, 0x0e3d8603cbff3cbb, 0x3d18afa0ff0ccf1f, 0xe6ca043dce9fd4ff, 0x10ebff0ce1000c0c, 0x0bbc34aaeaffbd13, 0xbb0408d7ff0cef0b, 0x182b0e3ca64089ff, 0x0500120d0acc040d, 0x10ffbb77ef45ff0d, 0xff0d137d0539d7ea, 0x822d53ff3b8a97df, 0x25cc040d2a000fbb, 0xb2ff3a331478ff0d, 0xff0d337c05bcd2b6, 0x2a5970ff3a2a2e52, 0x14140e0f0c220e3c, 0x7a070b0d887f040e, 0x5e96050d6c01070d, 0xdb80ff0d59050b0d, 0x02bc05deb8ffbab8, 0x3bd19c48ff0d6700, 0x75010b3bc46118ff, 0x34ff3bda3b68ff0d, 0xff0d8300023c287f, 0x7fd814ff3bfa8a30, 0xb00d0e0dd0c9043c, 0x9d030e0da2000c0d, 0x72ff398e4bbaff0d, 0xff0dabc304baced6, 0xa3bfd6ffbb29cd12, 0xbdc5040dc2c8043a, 0x8eff3aa84fd5ff0d, 0xff0dcb010b3c3d89, 0x3c128aff3bf58a2b, 0xe6060d0df4080ebc, 0xaa3dff0de1cb040d, 0x04bb4b9a7fff3ce7, 0xbbddb440ff0defcb, 0x06110e3b1d8178ff, 0x2f00ff0e01000f0e, 0x0ebb6bec32ff3c48, 0x3cbdad0eff0e0f12, 0x9b000c3ada9f85ff, 0x37150e0e5700020e, 0x2d0b0b0e3201070e, 0xc0ff3c4ab9a0ff0e, 0x3bce74d0ff3c906c, 0x0e44030b0e49c004, 0x4800ffbd06dd04ff, 0x4bff0e52000fbb77, 0x3b66d306ff3d1efd, 0x0e6d000d0e7b000f, 0x8087e0ff0e680107, 0x010bbc6288f0ffbb, 0xff3b7d3d80ff0e76, 0x0e8d01073db3a618, 0x301168ff0e881f0e, 0x00083c07010bffba, 0xff3b04823fff0e96, 0x0ee31d0e3bac0eda, 0x0eb500080ec3000d, 0x1b7666ff0eb0030b, 0x030bbbe77680ff3b, 0xff3c814600ff0ebe, 0x0ed5000f3b152180, 0x106174ff0ed00008, 0x01123ae36600ffbc, 0xffbb505cb7ff0ede, 0x0f07050b3c12685b, 0x0ef4030b0ef9cd04, 0x51f5ff3c0bf1acff, 0xb8ff0f02030bbb77, 0xbce1531cffbca965, 0xc92c0e3d33a464ff, 0x5c000c0f7c00020f, 0x2ecd040f3c2b0e0f, 0x3de9ff0f29000f0f, 0x05bce5cd70ffbac7, 0x3ada8960ff0f3796, 0x4ec004bc184328ff, 0x3f40ff0f49030b0f, 0x05bb8183c0ffbbde, 0xbc705d80ff0f5796, 0x77060dbc0c3540ff, 0x6dc9040f72000f0f, 0x00ffbbd61280ff0f, 0xbc4ef968ff3a9a08, 0xc4060dbce3e150ff, 0x9600080fa496050f, 0x3cd7ff0f91230e0f, 0x0bbb849dd3ff3b46, 0xbbc1457cff0f9f05, 0xb601123cb2a498ff, 0x4f88ff0fb1030b0f, 0x0e3ca18538ffbb95, 0x3a9a3f00ff0fbf24, 0xa424ff3b48e1d0ff, 0x030b0fdb000fbc36, 0xff3caa60e0ff0fd6, 0x9ff0a0ffbc8cd7e0, 0x000008000000133c, 0x000001000003e800, 0x000000000010c100, 0x7b8c0508ca000700, 0x2cc1040248c70404, 0x5c021100a06a0501, 0x2e4305003c530500, 0x744aff0029540400, 0x04ba249d82ff3934, 0x37ceb94bff0037b9, 0x4e6505bad68379ff, 0x6fd1ff0049a70400, 0x04ba02e6e5ffba04, 0x3aa9d3afff0057b8, 0x801d04ba86a591ff, 0x6d070e0072340100, 0xdfff3bfcd3deff00, 0xff007b000cbaf52b, 0xc446d1ffbbc30778, 0x8d030b0092010ebc, 0xbfff3a2c8bcfff00, 0xff009b6c04bc72b0, 0x5b7c0aff3b61330a, 0xc8790500e8c0043c, 0xb5010800ba100e00, 0xe0ff37199467ff00, 0xff00c3120e3b9e75, 0x9661aeff3bd0d762, 0xd5011200da0009ba, 0x68ff3aa7fc8bff00, 0xff00e31f0e3a5b17, 0x0ced99ffbab65639, 0xfe070d010c1c0ebc, 0x1096ff00f9170e00, 0x0e3c8f9fb1ffbb8c, 0x3c2aa113ff01070e, 0x1e220ebd07d4e8ff, 0x40eaff0119060d01, 0x0ebc01e71fffbd4a, 0x3bac3bd1ff012723, 0xbc7905bba9ec9dff, 0x580b0b0178770501, 0x452b0e014a001201, 0xe9ffbc8b4c57ff01, 0xff0153c6043cee26, 0xacb622ffb8a72202, 0x656d05016a2f0e3b, 0xfbffba06789dff01, 0xff0173300e3c0f4e, 0xab4346ffbce7063e, 0x8e120b019c0002ba, 0xd860ff0189000601, 0x04bc9c2402ff3b6e, 0xbd7dca98ff0197c6, 0xae030bbbe70f65ff, 0x4f06ff01a92f0e01, 0x0e3cca0187ff3b82, 0xbba830f2ff01b728, 0x040002bcd339f6ff, 0xd67a0501e4c30402, 0xee91ff01d1c20401, 0x0e3db8a94cff3ba5, 0xb9824643ff01df23, 0xf6c604bbb0a39cff, 0xcb14ff01f10d0e01, 0x0c38c8ed9bffbcc1, 0xbbe1a5b2ff01ff00, 0x2880053c0f9be3ff, 0x150112021a100b02, 0x80ff3b2c9222ff02, 0xff0223000cbbdd32, 0x0d1743ffb8ee4800, 0x358405023a01083d, 0x96ff3c455987ff02, 0xff0243000fba104d, 0x4d1404ffbd002387, 0xd3180e035f1c0ebb, 0x6f1806028f060d02, 0x65010c026acc0402, 0x55ff3a1320eeff02, 0xbd817f4cff3bd8df, 0x027cc80402810008, 0x2c9effbb3b3218ff, 0x8dff028a070e3b01, 0xbc2ef8c7ffbadc8f, 0x02a5cb0402b3cc04, 0xa8d74dff02a00e0e, 0x0009bc0bc92bff3b, 0xffbd509ac7ff02ae, 0x02c5170e3ab8cd40, 0x18fe18ff02c08a05, 0x010c3c11803bffbc, 0xff3dba055aff02ce, 0x031b010c3d9e73f8, 0x02ed000202fb020d, 0x719910ff02e85905, 0x60053c5086f0ff3d, 0xff3b89e658ff02f6, 0x030d5505bca1ac50, 0x4f8ce8ff03080208, 0x0009bc1bad76ffbd, 0xff3b4a8ac9ff0316, 0x033f0b0bbb6570a1, 0x032c010903310012, 0xd138ff3b2a6a02ff, 0x09ff033a8a05bc06, 0xbc7a56deff3c46fb, 0x034c000203510008, 0xb04bff3c3d5355ff, 0xa9ff035a0012bd08, 0x3bfe5c60ff3d0b0a, 0x03abcc0403ef220e, 0x037d8205038b8405, 0xa79553ff03788005, 0x1f0ebd6cc3adffba, 0xff3d4b9b8fff0386, 0x039d000f3e2f4e9f, 0x4e33abff03980008, 0x89053d2ccfbeffbb, 0xffbce5b916ff03a6, 0x03cf060d3bc5cdbb, 0x03bc0b0b03c10006, 0xa60dffbc78f698ff, 0x4fff03ca0008bd69, 0xbc49e6c3ff3c2284, 0x03dc070d03e1000c, 0x8830ff3c9c1158ff, 0xf4ff03ea1f0ebd68, 0x3e0a09eaff3d647b, 0x041701080437cd04, 0x0404cb040409000d, 0x0bd4ffbcc16983ff, 0x15ff041200023c43, 0x3aa5622effbb464b, 0x0424230e0429010c, 0xed21ff3be326f4ff, 0x42ff04326c05bab1, 0x3c156d15ffbb6f81, 0x044d060d045b340e, 0x307d62ff04488a05, 0x0002ba66ad9dff3c, 0xff3b33526eff0456, 0x046d000cbc103659, 0x03e26cff04687a05, 0x0b0b3b5be7efff3d, 0xffbb49ca2dff0476, 0x06978d05bca582ad, 0x0501000f058d230e, 0x04af550404cf0111, 0x049c260404a1000d, 0xcffeff3cc4546aff, 0xcdff04aa040d3c41, 0xbc9a97b2ff395172, 0x04bc570404c16104, 0x0299ff3b06e5a0ff, 0x18ff04ca0011bcaa, 0xbd654b53ffbd7c3b, 0x04e5070b04f3ca04, 0x04a120ff04e0b404, 0xb604bc570fe6ff3b, 0xff3a7a3f47ff04ee, 0x04fc00023c25e571, 0xc510ffbda43ba0ff, 0x9e040549c804bcc8, 0x9c04051b9d040529, 0xff3a50fed5ff0516, 0x0524000cbc7f16c8, 0x544cffbc6c85dcff, 0x070e053b010c3cd7, 0xffba0f5f70ff0536, 0x05440008ba6b711b, 0xda48ff3bb32d42ff, 0x190e056d010cbbe2, 0x60ff055a0d0e055f, 0xbad51bafff3bedfb, 0xda5465ff05680002, 0x01083b39b79aff3c, 0x6bff057ac904057f, 0xbb30a3fcffbcb651, 0x86e951ff0588030b, 0x280e3c6bdf12ffbc, 0x060d05d90002061d, 0x050b05ab010805b9, 0xffbb8a42fdff05a6, 0x05b4030bbc6f02e4, 0xeaa6ffbbcae580ff, 0x250e05cb00123d0a, 0xff3aa84c80ff05c6, 0x05d4c204bbe325de, 0x9a95ffb871f800ff, 0x000c05fd260e3e0a, 0xadff05ea001105ef, 0xbd8e0d61ffbd1969, 0x9c55c0ff05f80009, 0x010cbd222770ffbc, 0x7aff060a0011060f, 0x3b7bb4efffbc80c7, 0x074d6eff06180009, 0x000cbbaa1b20ffbd, 0x2b0e0645060d0665, 0x57ff063201120637, 0xb9a4f0bbff3c4fbe, 0x8a2331ff0640050b, 0x0011bbd3d89fff3c, 0x88ff0652c6040657, 0x3cb2a4b8ffbc999b, 0x95870aff0660c504, 0x0208bcccf144ffbb, 0x2b0e067bc2040689, 0xffbb854fd5ff0676, 0x0684c404bd190b2a, 0x91f0ff3ccc68eeff, 0x10ff069200023903, 0xbd2891ecffbd7f7e, 0x072b020d07b79305, 0x06c7650406e7030e, 0x06b4900506b96304, 0x70e3ffbb6a03c7ff, 0xd0ff06c200093bfa, 0x3b9fd180ff3d355f, 0x06d4000806d96b04, 0xd860ffbdb6d158ff, 0x80ff06e2000dbce9, 0x39da9554ffbc60c7, 0x06fd070e070b140e, 0x4b39edff06f80209, 0x8d04bcada69aff3b, 0xffbb9fc49aff0706, 0x071d2a0eb981bff6, 0xfe1beeff0718250e, 0x2b0ebc39e350ff3a, 0xff3c42867dff0726, 0x0773070bbb004b66, 0x0745ba040753bc04, 0xb61c63ff0740000f, 0x060db90255dfff38, 0xff3b1486d1ff074e, 0x0765030bbc4c0e7a, 0xcfaf4cff0760000f, 0x2b0e3998e44affba, 0xffba428ae4ff076e, 0x07978e053ca2750a, 0x0784bf040789300e, 0xc4b8ff39b9f93bff, 0x43ff0792310eb98e, 0x3d5cd327ffbb3456, 0x07a46d0407a9000f, 0xe1a2ff3d3f964eff, 0x4cff07b2c604b9c1, 0x38be9255ff3838dd, 0x08030008083e020d, 0x07d5250e07e3050b, 0x07df0cff07d01f0e, 0x280ebc042cdbffb9, 0xff3d2dff54ff07de, 0x07f5c90439a8052f, 0x33eddcff07f0c604, 0xca043c261498ff39, 0xffbcf54ecbff07fe, 0x0827230ebb5c572b, 0x0814c4040819030b, 0x5738ff3a457523ff, 0x0bff0822000d3c89, 0xbb8e5a8fff3c764d, 0x99666fff08302a0e, 0x9e50ff0839ca04bd, 0x0bbcfc63ecff3d6e, 0x050866010b08860e, 0xff0853000f085895, 0x0a103fff3c11ae75, 0x7322ff0861000cba, 0x12bc14ba36ffbaef, 0xff08739405087800, 0x17c791ff3b4440c5, 0x5082ff0881170eba, 0x0538be481effb98f, 0x04089c000208aa94, 0xbb45e48aff0897be, 0xa5c9043c1c06daff, 0x37ffb8136126ff08, 0x0c08bc1d0ebc0875, 0xba28e132ff08b700, 0xc595053b4d24a3ff, 0x0bffbb081e53ff08, 0x040d4a9505bc8012, 0x0409f2c1040b0ec6, 0x0609229d040966b4, 0x0408f48e0509020a, 0xb968371eff08ef55, 0xfd000f397ceb76ff, 0xb4ffbb390503ff08, 0x040914030b3ab18b, 0xbb84d933ff090f73, 0x1d000f3a2eed0cff, 0x67ff3bd78aeeff09, 0x0b09460008bb2633, 0xff0933310e093809, 0xae8b73ff3a0d57cf, 0x2ebbff0941b004bb, 0x04393e5ef6ffbad5, 0xff09533c010958b3, 0xfc0e0cffbab8c333, 0x667dff09614b0539, 0x11b7344e72ffbc1b, 0x04098e020709ae00, 0xff097b00020980bb, 0xd523b5ffbc3c4804, 0xd203ff098900023a, 0x0ebabc91b1ff3bcd, 0xff099b230e09a027, 0x16b4a0ffbb28c54b, 0x24f8ff09a9b804bd, 0x043cdbdcbcff3bf5, 0x0409c4010c09d2b8, 0xbb8de2f1ff09bfb5, 0xcd02083bd9f98dff, 0x8eff3b8e90b7ff09, 0x0e09e40002bc5c27, 0xbb4cd8a3ff09df24, 0xed0906ba95f069ff, 0x91ff3b0c8759ff09, 0x0e0a820002bac042, 0x050a1e000f0a3e19, 0xff0a0b000c0a100a, 0xcd11edff3be98d38, 0x4391ff0a1919063d, 0x0e3b17e8daffbcca, 0xff0a2b170e0a3018, 0x8acb9bffba8cbe17, 0xc464ff0a39060dbd, 0x0b3cd4b0f5ffbbff, 0x0e0a5401070a6210, 0x3b203ec3ff0a4f23, 0x5d0b0bbbcc41f5ff, 0x37ff3b3a90c0ff0a, 0x0e0a74320ebca392, 0xbc176504ff0a6f2a, 0x7d00083c2ec8e5ff, 0xa0ffbc0a8178ff0a, 0x0c0aca6d05bd7965, 0x0d0a9c01080aaa01, 0xba1b0ea1ff0a9706, 0xa5060d3ca6d9edff, 0x55ffbbe91d64ff0a, 0x0e0abc220e3a018c, 0x3b85746fff0ab717, 0xc50e0bbc90ba49ff, 0x67ff3bfd9ad2ff0a, 0x0e0aee00083d2f3b, 0xff0adb220e0ae02a, 0x60c651ff3aac142a, 0x521fff0ae97005bb, 0x0c3c0b4408ff3d97, 0xff0afb260e0b0001, 0xd401c0ffb9f573e3, 0x88cdff0b09120ebb, 0x08bbcb30efff3bc5, 0x110ba2010c0c2e01, 0x050b3e7a050b5e00, 0xff0b2bcb040b306c, 0x3f029bff3b6e0cb3, 0x85ffff0b3900023d, 0x043aa98482ffbc4e, 0xff0b4b00020b50c8, 0x504761ffbbc21d53, 0xd67cff0b59130b3b, 0x043b5c5be6ffba75, 0x0e0b74060d0b82c7, 0x3ae9ca30ff0b6f35, 0x7d000fbca3f291ff, 0x97ffbd1a27a8ff0b, 0x0f0b94c8043cd579, 0x3c210f97ff0b8f00, 0x9dc904bbe0b7b6ff, 0x4aff3bf6110fff0b, 0x0e0bea7805ba0b38, 0x0e0bbccc040bca22, 0xbbb74df1ff0bb70d, 0xc576053c25339aff, 0x94ffbcd85b20ff0b, 0x0d0bdc0207bddf90, 0xbb727ea4ff0bd707, 0xe54505bd26a05fff, 0x21ffbcb0f378ff0b, 0x020c0e7a053ba5b4, 0xff0bfb180e0c0000, 0x5ecf19ff3ca57fb7, 0x6e98ff0c097905bc, 0x0e3d7f53f0ff3c2a, 0xff0c1bc8040c2008, 0x28de46ff3cc2c666, 0x4972ff0c290012bc, 0x05ba9691a5ff3b43, 0x0d0c7a02070cbe75, 0x040c4c0c060c5a07, 0xb9b34f04ff0c47c7, 0x55240e3a8ad1b4ff, 0x8dff39ce17ebff0c, 0x050c6c4905bc66ff, 0x3bd71c0eff0c6737, 0x75010c3d33c7d4ff, 0xb2ff3c7d4405ff0c, 0x0b0c9e2c0ebcc733, 0xff0c8b13050c900b, 0xc046d0ffbc83b66a, 0xc931ff0c99260eb9, 0x0bbb31cec6ffbc8e, 0xff0cab00020cb007, 0xdc749cffbcaa9cab, 0xe547ff0cb9c704bb, 0x0e3b95cb4aff3d39, 0x0c0ce6110b0d0631, 0xff0cd3030b0cd801, 0xccc7daffbae8675a, 0x1881ff0ce10d0eb9, 0x04bbf8683dff3c63, 0xff0cf377050cf8c7, 0xe4c11effbdc61887, 0xb869ff0d01c904bb, 0x073abb91edffbbd7, 0x050d1c020d0d2a01, 0x3c3b74d6ff0d1781, 0x257a053d200503ff, 0x4cffbcd0a1adff0d, 0x0b0d3ccc043a802c, 0x3c30621aff0d3702, 0x45320ebcc8bb14ff, 0xacff3ce0f6e3ff0d, 0x120f661d0e3bab75, 0x040de2c3040e6501, 0x120d7e000d0d9e95, 0xff0d6b030b0d7000, 0xf34706ff3b5f8614, 0x419dff0d7996053b, 0x113c4d7a26ff3c01, 0xff0d8b96050d9000, 0x44c494ff3bda3a19, 0x5c2fff0d99030b3b, 0x0f3c232ad9ffbbe2, 0x040db4000b0dc200, 0xbabbcf87ff0daf96, 0xbd020d3ba79805ff, 0x18ffbc017c77ff0d, 0x0c0dd4bc04bd0d72, 0x37fe3cd0ff0dcf01, 0xdd080ebbec7413ff, 0xa5ffbb0f3c2dff0d, 0x0d0e21090bbc5da2, 0x0e0dfc080e0e0a07, 0xbb1c5359ff0df707, 0x05ca04bc52b744ff, 0x3eff3b4dd4d2ff0e, 0xff0e13c804bb8079, 0x0e1c96053cd18418, 0xe3acff3b966fbdff, 0x010e0e450b0e3c15, 0xf1ff0e32000c0e37, 0x3be268dbff3b50bb, 0xc59c3dff0e40010c, 0x110ebc018ab5ff3a, 0xfcff0e52c4040e57, 0xbbb849bbff3b9ddd, 0xb6f0faff0e60150e, 0xca043937646eff3b, 0x000d0eb1c9040eda, 0x00020e83000e0e91, 0xff3bef24abff0e7e, 0x0e8c000c3a9fd1b0, 0x96dbffbc35f638ff, 0x0d0e0ea3c8043b44, 0xff3a8868ccff0e9e, 0x0eac000f3c0c2b83, 0x8419ffbb9fc266ff, 0x030b0ecc000c3ac2, 0x40ff0ec200080ec7, 0x3b7184c0ff3bc09f, 0xd5000f3c3717d8ff, 0xe0ff3ce58c20ff0e, 0x040f220b0e3c5dfc, 0x0b0ef401070f02cb, 0xbcda5940ff0eef03, 0xfd030bbc8d25c0ff, 0x40ffbc5dd76bff0e, 0x050f14cc04bc10fe, 0x3c48b290ff0f0f96, 0x1d000cbbf5e180ff, 0x2fffbbae1199ff0f, 0x020f460008bc8053, 0xff0f33030b0f3800, 0xab6f00ffbc6e6260, 0x0a26ff0f41020dbc, 0x043b92ac57ffbb84, 0xff0f53030b0f58cb, 0x063780ff3c68b140, 0x6520ff0f61000f3b, 0x023b2311c5ffbb18, 0x0e0fd6000c0fff00, 0x050f960b0b0fa42b, 0xff0f8300110f8896, 0x0abdd4ff3bbae977, 0xcbd4ff0f910012bb, 0x11bac066e0ffbc87, 0xbc928900ff0f9f00, 0xbfc004bbe04760ff, 0xb501070fba030b0f, 0x00ffbbd99c80ff0f, 0xbb692080ffbbb66f, 0x0fcc030b0fd19605, 0x3b00ffbc506d80ff, 0x11bbfc6000ffbc60, 0xbccd1798ff0fdf00, 0x3a46d8ff0fe80111, 0xf5c9040ffa030bbc, 0x00ffbbc0aa00ff0f, 0xbbc62a80ff3b0c3c, 0x104b000c107d9605, 0x101d060d102b0008, 0x3638a5ff1018230e, 0x0107bbb08cfeff3b, 0xffbc802d0fff1026, 0x103d050b3b8b91b8, 0x20cea0ff1038cd04, 0x060dbbe6a79cff3b, 0xff3ca0c758ff1046, 0x106f050b3cdfd2e8, 0x105c030b1061000f, 0x7900ff3c18d160ff, 0x15ff106acd04bbaf, 0xbc98c266ff3a8522, 0x21ad8cff10780011, 0x030b3ca96d78ff3d, 0xcd04109c011110b3, 0x0d3aa816d0ff108e, 0xbb866130ff109706, 0xaecb04bb2a8580ff, 0x1f00ff10a9c00410, 0xff3a8ad200ff3b04, 0x10bc060d3b657780, 0x38c8ff3c915e48ff, 0x0008000000133cd1, 0x0001000003e80000, 0x0000000010af0000, 0x8c0508ee00070000, 0xc1040248c7040484, 0x021100a06a05012c, 0x7404003c5305005c, 0x9cff00291106002e, 0xba1abac5ffb84477, 0x723578ff00370405, 0xb504b896b41bff3b, 0xe4ff0049b004004e, 0xbb67503dffb892d7, 0x9e456cff00574101, 0x170e3a9f27f8ffbc, 0x2c04007202080080, 0xffba67ef44ff006d, 0x007b0d063bda93c4, 0x35c3ffbb974dabff, 0x120500925305bcf0, 0xffbb351905ff008d, 0x009b030bbcbdd13e, 0x7a5dff3d98e41bff, 0x790500e8c004bb1d, 0x010800ba100e00c8, 0xff370a42daff00b5, 0x00c3000d3b8e9d77, 0x694aff38766ae1ff, 0xbf0400da0009ba71, 0xff3a8a4c26ff00d5, 0x00e31f0e3b349f67, 0xaba7ffbaa41a38ff, 0x000f010c000cbbfd, 0x6fff00f90f0e00fe, 0xbdab1e52ff3ca416, 0xa5713fff0107310e, 0x030e3ce36325ffbb, 0xa6ff01190012011e, 0x3e1b23a5ff3ca602, 0x27ee99ff01270e0b, 0x79053b2424c7ffbb, 0x0b0b0178770501bc, 0x0112014a0a0b0158, 0xff3c18f6d1ff0145, 0x01536f053ab94fa5, 0x5f60ffb984a19dff, 0x0008016a060dbc2f, 0xff3b9da24aff0165, 0x0173010c39249a70, 0x3b17ff3befecfcff, 0x280e019c0002bc82, 0x5fff0189230e018e, 0xbd968ad4ffbc0514, 0x71eae6ff01970006, 0xc304bd2e892dff3b, 0xffff01a9010801ae, 0x3cbfe34dffbc219c, 0x86b883ff01b70d0e, 0x0002bc8635baffbd, 0x7a0501e4c3040204, 0xc7ff01d1c20401d6, 0x3da631f7ff3b9556, 0x6a7ca9ff01df230e, 0xc604bb9ef9abffb9, 0x24ff01f17e0501f6, 0x39f0b682ffbbdb85, 0x7c9a7eff01ff0b0b, 0x7b053c48e12effba, 0x0008021a02080228, 0xffbc535946ff0215, 0x022300123cc95c39, 0x5a5bffbc4eb07cff, 0xc604023a090bbd2f, 0xffbb2cdb27ff0235, 0x02431d0ebc839bfc, 0xad96ffbb85a3dfff, 0x260e0368ca043bf6, 0x0b0b0298140b02dc, 0x0002026a070d0278, 0xffbb8cda42ff0265, 0x027301093b1c9883, 0x017bffbcef4dc0ff, 0x1f0e028a00083c4d, 0xff3c15bfdeff0285, 0x029302083d1035e8, 0x6b9bffbd0e5945ff, 0x000c02bc070dbd8e, 0x41ff02a9250e02ae, 0x3d08e2f2ffbb3099, 0x0a4226ff02b70008, 0x00093c35305cffbb, 0x5cff02c9010802ce, 0xbc98bc00ffbd4c06, 0x71705cff02d7190e, 0x01083c92599effbc, 0x33050304090b0324, 0x9aff02f1000f02f6, 0x3bc69bbfffbce5b8, 0x2384b0ff02ff310e, 0x80053cc66976ff3b, 0x71ff031100090316, 0x3c92ade9ffbbe340, 0xd6e452ff031f8105, 0x0208b9ed94fcff3c, 0x6305033a79050348, 0xff3bef2f22ff0335, 0x03437a05bc5f7936, 0x5787ff3d52fb2aff, 0x0d0b035a6d05badc, 0xff3c120527ff0355, 0x03637605bc42c975, 0xfdbcff3cab3fadff, 0x000203f8cd043afa, 0x010c03942d0e03b4, 0xbcff038188050386, 0xbb954716ff3ba171, 0x37fb3fff038f070d, 0x00083d3284c7ffbc, 0xd8ff03a1820503a6, 0x3c710091ff3af758, 0xcfd21aff03af0206, 0xcb043c019e56ffbb, 0x0d0e03ca110b03d8, 0xff3b51a58dff03c5, 0x03d3220ebc5b70d9, 0xfafbffbbb412abff, 0x850503ea8a053cec, 0xff3b30f892ff03e5, 0x03f3010cbc0cf370, 0xd2daff3b7cabf3ff, 0x011204400b0b3d84, 0x340e041279050420, 0xff3cc2fa69ff040d, 0x041b030b3bdf0b30, 0xedfaff3cc04ab8ff, 0x360e043202083b55, 0xffbccb9018ff042d, 0x043b030bbcbb5d20, 0x3564ffbb60d3d0ff, 0x6d0504646e05bcc2, 0x3eff0451300e0456, 0xbbda2909ff3dc15d, 0x67347eff045f0012, 0x7c053ca828acff3d, 0x30ff0471000c0476, 0xbc9d7601ff3c32a5, 0xca0abcff047f7d05, 0x8d05bb2a5e7dff3c, 0x0e0e059f110b06bb, 0x070e04d888040513, 0x030e04aa860404b8, 0xffb92b7cc6ff04a5, 0x04b301113beff681, 0x14c7ffbd6fa520ff, 0x720404ca060dbbe0, 0xff3b79f374ff04c5, 0x04d38704bc512c9e, 0xce48ff3c2042f5ff, 0x890404fc010c3b44, 0xdbff04e90b0b04ee, 0x3bfb31f8ffbcbb0c, 0xda1de1ff04f7af04, 0x070dbb056bb6ff3a, 0x6bff0509a404050e, 0x3b1f18c9ffbc0e24, 0x5b020d3d8db82aff, 0x2d000f053b2b0e05, 0xe177ff05288a0405, 0x083c0a0e1effbce3, 0xbcff82d3ff053600, 0x4d0009bd17f11aff, 0x4b90ff0548300e05, 0x04bcc80b65ff3c17, 0x3d8eb7bcff0556c5, 0x7fcc043cf045e8ff, 0x6c010c0571c40405, 0x65ffb9d93873ff05, 0xff057ac5043bc31a, 0x1e4e40ffbc35e91a, 0x8c001105910002ba, 0x12ff3d9d727aff05, 0xff059a140e3d826e, 0x037677ffbd611ddc, 0xeb0108062f00123c, 0xbdcb0405cb000805, 0xfd8fff05b8000c05, 0x043b9525d2ffba5a, 0xbc960307ff05c6cc, 0xdd010ebba6413dff, 0xb5adff05d8000c05, 0x0ebcce5ee1ff3ac6, 0x3c411288ff05e623, 0x0fbc04bc16b651ff, 0xfcb3040601000206, 0x7aff3bebd2acff05, 0xff060a9704bb9ec4, 0xc79e08ff3a61ce80, 0x1c010c0621c9043c, 0xc3ffbbe28eb6ff06, 0xff062aca04bcd350, 0x8e1ecaffbc6112c5, 0x571d0e0677060d3c, 0x44a8040649170e06, 0xbdffbaba3fecff06, 0xff065201083b384c, 0x107ba8ffbb62d89b, 0x64200e0669c604bd, 0x9cff3d85b356ff06, 0xff0672c7043b7739, 0x506f8affbd5361c7, 0x8d0008069b010e3a, 0x7760ff0688000c06, 0x0e3c698cabff3b3a, 0x3b200780ff069600, 0xad0108bb674934ff, 0x442bff06a8230e06, 0x0c3c93cfaeffbc3b, 0x3c3b80d0ff06b600, 0xdb9305bb92f586ff, 0x0b0208074f020d07, 0xdd040b06ebbe0407, 0x94d5ff06d8230e06, 0x0ebc132b65ff3a88, 0xb8bb5aa9ff06e622, 0xfd040bbc122e0aff, 0x7379ff06f8920506, 0x0b3c5e379affbb95, 0x3c8b1fb3ff070607, 0x2fc904bb4a843eff, 0x1c220e0721090b07, 0x98ff3bc1a0aeff07, 0xff072a8f053caf76, 0x83fe48ffbbbca140, 0x3c220e0741030bbc, 0x08ffbcb8af40ff07, 0xff074a0a0bbd3c61, 0x027100ffbc080315, 0x77040b0797050b3d, 0x6471040769720407, 0xe6ffb803563fff07, 0xff07722d0ebd87fa, 0x8d9104ffba25f59b, 0x849d0407892b0e3b, 0x14ff3c020d75ff07, 0xff0792000f3af83c, 0xd5ede2ff3e011cc0, 0xad190e07bb0b0b3b, 0x7c19ff07a8000907, 0x12b935e0e7ff3ae0, 0xbac99041ff07b600, 0xcd130bba11b682ff, 0x1134ff07c8c70407, 0x04bcbfef1bffbaac, 0xb7725579ff07d6c3, 0x62020dbabdb419ff, 0x07050b0827000808, 0xf41f0e07f9220e08, 0xa7ffb8f4995bff07, 0xff0802bd04bcc9a9, 0xa9af12ffbcdf88c5, 0x1496050819140e3b, 0xd6ff3bb0e35fff08, 0xff0822c604bb4906, 0x8d67d1ffbbfab741, 0x3d030b084b230e3a, 0xb54cff0838c40408, 0x0d3c7736afff3a31, 0x3c5dabcbff084600, 0x542a0ebb801e1cff, 0xca04bd8a0f67ff08, 0xff3d56c1b0ff085d, 0x08aa0e0bbce326b4, 0x087c9505088a010b, 0x2f31b4ff08779104, 0x011138e8697aff3c, 0xffbb35fe19ff0885, 0x089c0012bc3677b0, 0x30a0bbff08979405, 0x170eba0899d4ff3b, 0xffb980fb60ff08a5, 0x08ce940538ab4178, 0x08bb000208c0230e, 0x0845ff3ba9c078ff, 0x00ff08c9cb04bac9, 0xbc2b1d7dffbd5f9a, 0x08db000c08e01d0e, 0xa0f0ffba17fdf3ff, 0xf6ff08e900083b38, 0x3becc4afffbc1239, 0x0b32c6040d6e9505, 0x098a85050a16c104, 0x0926ac040946bf04, 0x0913350509189e04, 0xa7bfffb8661757ff, 0x0dff092102083802, 0xbabdefb9ff3a0a32, 0x0933000209380006, 0x38e0ff39e79651ff, 0x22ff0941050db772, 0x3a1ce36fffbb1680, 0x095c300e096a0002, 0x1a2d5eff09572c0e, 0x0112bd4b3f7effba, 0xff3d0bc792ff0965, 0x097c0112bc094434, 0xf16795ff09775105, 0x220e3c104f90ff3c, 0xff3b0afb46ff0985, 0x09d2000fbc05f2da, 0x09a4030b09b20107, 0x8922f8ff099f080e, 0xbb043c1d6505ffbb, 0xffbbbd6473ff09ad, 0x09c4090b3b905b39, 0x784a16ff09bf030b, 0x010ebc09658bff3b, 0xffbd38017aff09cd, 0x09f60107bbc0d3b2, 0x09e3bd0409e80c0e, 0x75edffb89ad270ff, 0x30ff09f100083ae6, 0xb8953807ffbad1ed, 0x0a0302080a08000c, 0x0fd1ff3b4d2c49ff, 0x08ff0a11070ebb3e, 0xbb65c5f6ff3ab23a, 0x0a6231030aa60002, 0x0a342d050a422f03, 0x0f98b9ff0a2f0207, 0x2e03bd88c884ffbc, 0xff3d9ade17ff0a3d, 0x0a54060d3ddb5104, 0xf17600ff0a4f2f0e, 0x0011bd5b52c9ff3c, 0xffbd5c5be4ff0a5d, 0x0a86c504be473247, 0x0a737d050a781e0e, 0x9134ffbbf6209eff, 0xd5ff0a8100063aa9, 0xbc26800eff3b0a33, 0x0a93070e0a980108, 0x8537ff3c51fd51ff, 0x9eff0aa10006bc2f, 0x3d33108bff3b4fae, 0x0ace6b050aee6e05, 0x0abb6a050ac00e06, 0x4ca1ffbb77e2c9ff, 0x11ff0ac9030d3cd2, 0x3b1b958affbb7002, 0x0adb6d050ae0c504, 0x8f7effbbaae777ff, 0x4cff0ae90108bd05, 0xbc991c0cffbd5ec0, 0x0b04c2040b127005, 0x35f770ff0aff300e, 0x010c3db4ddadff3b, 0xff3d13046bff0b0d, 0x0b24060d3e43ad43, 0x6f5033ff0b1f0111, 0x01073b3b4f0affbb, 0xffb9f59810ff0b2d, 0x0c5201083b290dca, 0x0b8200110bc6010c, 0x0b5478050b627a05, 0x95e58bff0b4fcb04, 0xcc043c7dfc41ffba, 0xffbb25dd0fff0b5d, 0x0b74c804bcec9862, 0x51bf34ff0b6f220e, 0x0002bbab3659ff3b, 0xff3b45f134ff0b7d, 0x0ba6c704ba513897, 0x0b93260e0b98060d, 0x9054ffbb89e76bff, 0xeaff0ba10b0b3bcb, 0x3d4cf761ff3c4e85, 0x0bb3c8040bb80012, 0x3a08ff3d8d6a9eff, 0xdfff0bc101113c94, 0x3b240a56ffba9dfc, 0x0beecb040c0e1205, 0x0bdb030e0be0070e, 0xa2e5ff3b9f712eff, 0x9cff0be90b0bbca3, 0xbd945bafffbd1a31, 0x0bfb12060c00170e, 0x5e00ffbde54aadff, 0xdcff0c093601bb18, 0x3d212da0ffbccd3e, 0x0c24c7040c32cd04, 0x79b102ff0c1f4505, 0x86053c01b2f0ffbd, 0xff3987b13cff0c2d, 0x0c44320eba02f824, 0xcc0c78ff0c3f7105, 0x62053b856038ffbc, 0xffbd928bacff0c4d, 0x0ce27505bc7ab144, 0x0c7e07050c9e060d, 0x0c6b36010c701406, 0xe260ff3d7201f8ff, 0xd7ff0c79070ebcf0, 0x3d396ae8ff3bb5a5, 0x0c8b1d030c906405, 0xb770ffbc982b01ff, 0x19ff0c99000f37c1, 0xba1923cbffbc4a04, 0x0cb400120cc22b0e, 0x355899ff0caf0207, 0xc904bc0e56d0ffba, 0xff3cbab283ff0cbd, 0x0cd4c7043b830556, 0xefacdcff0ccf300e, 0x00023d07b341ffba, 0xffbc6638ffff0cdd, 0x0d2a76053c79501f, 0x0cfc060d0d0ac804, 0x7ee7aaff0cf70112, 0x230ebcc0e760ff3d, 0xff3d230ec7ff0d05, 0x0d1cca04bc8a11df, 0x04bf24ff0d17000c, 0x230ebc1fb49effbd, 0xffbac6513eff0d25, 0x0d4e300e3cadc967, 0x0d3b7e050d40cb04, 0x2e97ffba2aeaefff, 0xddff0d497905b9a6, 0xbaf77c9fffbba69f, 0x0d5b360e0d600208, 0x2768ffba1155a5ff, 0x87ff0d69350e3d17, 0xbc92b2a5ff3c80d8, 0x0e8901120f781d0e, 0x0db9000d0dfdc304, 0x0d94030b0d990012, 0x5e4ddaff0d8f010b, 0x1fffb9227f40ff3b, 0x0b0dab96053bdaf3, 0x3c17383aff0da605, 0xb4020e3ae8ddacff, 0xd2ff3c01890bff0d, 0x0b0ddd010e3c7052, 0xff0dcab4040dcf0a, 0xb2a191ff3a9b5ffd, 0x4506ff0dd80011bb, 0x0b3b788f06ffb89b, 0xff0dea020d0def00, 0xb5868bff3a9bc598, 0x40eeff0df8000f3b, 0x0cbad8e94cffbc3d, 0x0e0e25ca040e4501, 0xff0e12020b0e1701, 0x41af15ffbaab05b5, 0x1363ff0e20070d3b, 0x0e3cbc907cffba4d, 0xff0e32060d0e3708, 0xc5b7abff3c60cc80, 0x4a34ff0e4000023a, 0x0dba93a951ff3afd, 0x0e0e5b00020e6906, 0x3a43acc0ff0e5603, 0x64cb04baff48e0ff, 0xcdffbc30a614ff0e, 0x0e0e7bc904bc44bf, 0xba35ef00ff0e7601, 0x84080e3caea8e0ff, 0xd1ffbbeca632ff0e, 0x040ef5ca04ba7cbb, 0x050eb5020b0ed5c9, 0xff0ea200080ea796, 0xe81e66ffbb8a515e, 0x8d00ff0eb0c704b8, 0x043b86a2aeff3975, 0xff0ec27f040ec790, 0x1e9831ff3a57ef5a, 0x4f34ff0ed0a404bc, 0x0f3a816ba1ff3c57, 0x3cce97c0ff0ede00, 0x0eeb030b0ef0000c, 0xc8a8ff3b97cd0bff, 0x0d3c47ca00ff3c24, 0x080f1d030b0f3400, 0xff0f0a01070f0f00, 0x080200ff3b95ed80, 0x9aa0ff0f1801073b, 0x073c433de0ff3c5f, 0xff0f2a00080f2f01, 0xf19700ffbc6eea40, 0xcb043b2f3500ff3a, 0x00080f4a01070f58, 0xffbc816ee0ff0f45, 0x0f53000fbcb861a0, 0xc350ffbc365dc0ff, 0x0b0e0f6a060dbbdb, 0xffbc04d9a3ff0f65, 0x0f739605b9e059f5, 0x4b00ff3c34a0d0ff, 0x000c0fed0002bbdd, 0x70ff0f89220e0fc4, 0x120fa4cd043c36ac, 0xbccd1688ff0f9601, 0x146580ff0f9f000d, 0x0b0bbbd65672ff39, 0x00ff0fb196050fb6, 0xbbf48200ff3b5869, 0x83e1b0ff0fbf0011, 0x0012bbc9d9e0ffbc, 0x11bcb89538ff0fcd, 0xbc27a628ff0fd601, 0x0fe3c9040fe8030b, 0x6c00ffbbad6600ff, 0x05bbb25980ff3afc, 0x081039000c106b96, 0x0e100b060d101900, 0xbabd9765ff10062c, 0x140b0b3c945c18ff, 0xa4ffbc578274ff10, 0x04102b050b3c0d22, 0x3b10b9f0ff1026cd, 0x340011bbcf96dcff, 0x68ff3cc97100ff10, 0x0b105d050b3c90b3, 0xff104a060d104f03, 0x892e80ff3bcefdc5, 0xf800ff1058cd04bc, 0x0ebc850617ffb845, 0x3d118294ff10661f, 0xa1030b3c987c18ff, 0x85240e1093cd0410, 0x47b0ff1080011110, 0x043a79e000ff3a97, 0x3aedd180ff108ec0, 0x9c00113b4e8500ff, 0x20ffbb197820ff10, 0xff10aa1f0ebb71e2, 0x82d4d8ff3cbc4cb0, 0x000008000000133c, 0x000001000003e800, 0x000000000011d800, 0x7b8c0508dc000700, 0x2cc1040248c70404, 0x5c5c0500a0690501, 0x2e5a05003c5b0500, 0x61ecff0029aa0400, 0x04b8dfb9ddffb8a2, 0xbb4fcda5ff0037b9, 0x4e3d013c46c2cbff, 0xd24dff0049940400, 0x0dbd068da2ffbb0d, 0x3c3d37a5ff005706, 0x8060053b8fb924ff, 0x6d00060072140b00, 0x9cff3aacb9c4ff00, 0xff007b0008bbfca9, 0x801f5bffbb1826cb, 0x8d110b009263053c, 0x0dffbac2d282ff00, 0xff009b0111b64d17, 0xf98d37ffb99d58b0, 0xc8010c00e8c0043a, 0xb5000900ba890500, 0x4aff39ff4eb8ff00, 0xff00c3010bbb2d25, 0x755edeffbb8eb519, 0xd5060d00da030eb8, 0xfdffbb843877ff00, 0xff00e3070d3b86d0, 0xcc794aff3b7c578b, 0xfe020d010c030d3a, 0x84edff00f9310e00, 0x06bcb19b47ff3c98, 0xbda133deff01070b, 0x1e310e3a973b0bff, 0xd923ff0119000201, 0x0e3a9f9d7fffbbd8, 0x3da38661ff012732, 0xbc75053c39b62cff, 0x5800060178000f01, 0x45030b014a070b01, 0xb0ff3bc22f28ff01, 0xff01537405bc2022, 0x872833ff3ca5c01d, 0x650002016a04063d, 0x79ffbdd1eae7ff01, 0xff01732905bb1762, 0xd47800ff3bb03422, 0x8e6d05019c7305bb, 0x76fcff0189c50401, 0x053af67e5effba85, 0x3cf65336ff01976f, 0xae0208bc04ae32ff, 0x210dff01a9000801, 0x0cbc1ee4dbff3c84, 0x3ccaaaa8ff01b701, 0x048105bd1231b0ff, 0xd6010c01e4210e02, 0xe8adff01d11f0e01, 0x0ebd52b260ffba8d, 0x3c0f21a5ff01df1d, 0xf62a0e3d956c3fff, 0x7538ff01f1c60401, 0x053c69aa68ffbbd4, 0xbac1d062ff01ff7f, 0x2889053c5ce557ff, 0x15c204021a830502, 0x3cff3be24b22ff02, 0xff02230008bc042f, 0xb247ceffba921cc2, 0x35040b023ac5043a, 0x74ffbb91a15dff02, 0xff0243310e3b1f83, 0x234d97ffbb798dee, 0xdc230e0368ca043d, 0x7800020298070d02, 0x65220e026a060d02, 0x2dffbbd01b87ff02, 0xff027300113d1637, 0x4a84e5ffbb027810, 0x858905028a220ebd, 0xd3ffb967f0f6ff02, 0xff029300093ba028, 0x08a389ff3cd6cd75, 0xae020802bc0009bc, 0x1c00ff02a9830502, 0x0cbcacc15fffbd3d, 0xbc8752d3ff02b701, 0xce7f053c56d685ff, 0xbcc0ff02c9000202, 0x0e3ca5549bff3c0c, 0xbbb8b749ff02d71f, 0x24c9043d16adc9ff, 0xf62b0e0304000203, 0x67e0ff02f1c80402, 0x12bca95615ff3a2a, 0x3bfed00cff02ff00, 0x160012bb87963cff, 0x601cff0311070d03, 0x0e3c613860ffbc26, 0x3c96e8b1ff031f2b, 0x480011bafb342bff, 0x350208033a690503, 0xd9ffbd4b4fc8ff03, 0xff03437e05bc601b, 0x16f05aff3d2c1167, 0x557505035a010c3b, 0x7bff3b048993ff03, 0xff03636905bbc964, 0x2988c3ffbc7b73fa, 0xb4810503ef82053c, 0x86790503947b0503, 0x4d8eff0381540503, 0x0ebb91ea08ff3ad6, 0x3d74c4e1ff038f31, 0xa60108bb966364ff, 0x6470ff03a1230e03, 0x04bcd93e56ff3c3c, 0x3c5967a6ff03afcb, 0xcfcb04bbb40c59ff, 0xa2fcff03c10d0e03, 0x4eff03ca060d3d9e, 0xbd286e33ffbd886d, 0x03dc000203e10108, 0x473bffbc85e05fff, 0x4cff03ea230ebd6e, 0xbc1429eaff3d67eb, 0x04172c0e04378405, 0x0404011104090009, 0xee2cff3d134c5bff, 0xa3ff04120209bcd5, 0xba0ee24dffbd0583, 0x0424020804290012, 0xfad5ffbc141851ff, 0x95ff0432320e3c12, 0xbba7299aff3c740b, 0x044d8505045b0011, 0xbc1da5ff04480b0b, 0xcb04bcc9656eff3b, 0xff3c1e0193ff0456, 0x046d230ebb85449c, 0x0dd7b7ff0468220e, 0x2a0e3cf93d36ffbb, 0xffbca91032ff0476, 0x06a98d05ba4c98e9, 0x05130e0e059f110b, 0x04af860404cf8904, 0x049c760404a17e04, 0x0bb2ffba144468ff, 0x46ff04aa010cbbe2, 0xbc7969dfff3ba073, 0x04bc000204c1040b, 0x09faff3b81665bff, 0x1eff04ca0002bc50, 0xbd57ae35ffbccc82, 0x04e5000204f3bf04, 0x0eaa1cff04e0b204, 0x010cbc262fa0ff3b, 0xff3a2d0fc9ff04ee, 0x0505c0043bba8b4b, 0xbe44e8ff0500050b, 0x0011bd631ec5ffbc, 0xff3bbfa3ddff050e, 0x055b020dbbbb4a1d, 0x052d9004053b300e, 0x92f35cff05281d0e, 0x000fbd425fb4ffbc, 0xff3bfd0066ff0536, 0x054d0009bcf75fc0, 0x4b31a9ff0548be04, 0xc504bc6c9e27ffbd, 0xff3d807228ff0556, 0x057f01123cd83ee8, 0x056c010c0571c404, 0xf887ff3a4e4075ff, 0x1bff057ac5043c71, 0x3a34c1d3ffbc42db, 0x058c170e05912b0e, 0x5745ffbc189c7aff, 0x60ff059a0008bae7, 0x3bde89e5ff3c9884, 0x05ebc10406260008, 0x05bd060d05cb010c, 0x59e4b2ff05b8080e, 0xb204ba05cb1bff3b, 0xff3a3f9bccff05c6, 0x05dd060dbc60dd54, 0xdb69a5ff05d8b204, 0x97043cac9e50ffbc, 0xffbb53bdd0ff05e6, 0x0606c3043d1a69f1, 0x3c0d4cff05f8000c, 0x7b7aff06010002bb, 0x0c3c8fc395ff3d8e, 0xff0613060d061801, 0x056959ffba404904, 0x4314ff0621c5043c, 0x0bbb975227ffbd2b, 0x0d06450108066514, 0xff063b000c064007, 0x254500ffbd426990, 0x00123c8c2120ffbb, 0x48ff0652000c0657, 0xbd500978ffbcf2af, 0x8f5734ff0660000c, 0x000cbd8fd318ffbd, 0x0002067b070e0689, 0xff3b08f342ff0676, 0x068400023c6c8259, 0x95f6ff3c657c39ff, 0x070e069b0012bab5, 0xffba969a7bff0696, 0x06a41d0e3c7db708, 0x2749ffbc1d05caff, 0x020d07c993053c3d, 0x480406f9030e073d, 0x010b06cb030b06d9, 0xff3ba656aaff06c6, 0x06d48f053c6acc1b, 0x5c10ff39377400ff, 0x000206eb4e04bba3, 0xffbcf89758ff06e6, 0x06f46504baa452bc, 0x6c6eff3b44b738ff, 0xa204071d140ebaf8, 0xe9ff070a9804070f, 0x3bf883f8ffbaefb6, 0x7f4c41ff0718a704, 0x2a0eba356757ffbc, 0xabff072a230e072f, 0xbc0a720dff3ad5ed, 0x32e6afff07382b0e, 0x050bbadc1339ff3c, 0x0d0e076591050785, 0x92ff0752010c0757, 0xba9bdd3cffba8e3a, 0x67afb6ff07600009, 0x320e3a7f4c5dffba, 0x8bff0772a3040777, 0x3a534326ff3b67d8, 0x84793eff0780000f, 0x0c0b3ac13986ff3d, 0x1d0e079b010c07a9, 0xff39cc07b9ff0796, 0x07a4bf0439d1b2f2, 0xc98bff3a73b1d3ff, 0x110b07bb91053a8e, 0xffbacb7bbbff07b6, 0x07c400023929374e, 0x069effbbc9a430ff, 0x00080850020dba2f, 0x040b07f5050b0815, 0x9fff07e2000907e7, 0xbb6e5c0dff3b025f, 0x54ac10ff07f00002, 0xa4043b7a01a2ffbc, 0x9cff08029a040807, 0x3cfa4de0ff3b88e1, 0x194a4dff08100009, 0x230e3c213f90ffbb, 0xc404082b030b0839, 0xff3a1ff121ff0826, 0x08341d0e3c5e7df3, 0xf255ffbb8dc0b9ff, 0x1eff0842c9043be3, 0xff084bca04bd7882, 0xcc6f9cff3d4147f0, 0x7896050898000fbc, 0x65c104086ac20408, 0xeeff3a67b986ff08, 0xff087301093d4ef0, 0x886253ffba80c32b, 0x859904088acb04bc, 0xceff3cb278dbff08, 0xff0893030bbade16, 0xc67cabff3d269fc7, 0xae000c08bc260e3c, 0xd449ff08a9230e08, 0x04bbd3624bff39cc, 0xbb7e844bff08b7b7, 0xce001239c9506bff, 0xbc55ff08c9000c08, 0x0b3cb722d4ff3b8d, 0x3a9f5493ff08d705, 0x5c010cbb90f496ff, 0x0415060b2096040d, 0x340107097802110a, 0x0694040914680509, 0xac0bff0901630409, 0x043a42356effb6d4, 0xbb1c1384ff090f95, 0x26000c3c12b6f1ff, 0x9799ff0921070d09, 0x053c1129faffb9e9, 0x3b56a74bff092f75, 0x58260e395f3689ff, 0x45210e094a8a0509, 0xf0ffba017b02ff09, 0xff0953040d3a2137, 0xd76ea6ff3bfa52ea, 0x65000f096a4101bb, 0x68ff3ae1e4c1ff09, 0xff09730008bb3480, 0x92b5ffffbc2837b5, 0xa0040d09c00108ba, 0x8d000c09926a0409, 0x94ffbab5ae20ff09, 0xff099b000c3c8cd8, 0x55352eff3c8b38c4, 0xad000809b245053a, 0x10ff3dc7f2a0ff09, 0xff09bb53053da336, 0x2a24f0ff3d8477d8, 0xd6060509e4030b3d, 0x5cffff09d1340109, 0x04ba3dbd94ffbc82, 0xbd645cc0ff09df5e, 0xf60b05bc1a7f87ff, 0x1d26ff09f10d0609, 0x063bbd5ac0ff3d49, 0xbcfbd896ff09ff12, 0x94020dbc782b20ff, 0x30010e0a50090e0a, 0x1d5e040a2216060a, 0x7bffbb858346ff0a, 0xff0a2b1806bcbdb3, 0x086994ff39d08bac, 0x3d000c0a4204053c, 0xfeffbb85473bff0a, 0xff0a4b030bbcc42b, 0xf9d713ff3c259b90, 0x6686040a740008bb, 0x1f94ff0a61000c0a, 0x0ebd0b3dafffbb9a, 0x3d58dc14ff0a6f0d, 0x860005baa76c0eff, 0x05fbff0a810b0e0a, 0x0d3d2ff3b9ff3e04, 0xbbabd7e4ff0a8f00, 0xdc00053cb7dc8aff, 0xae5c040abc6d040a, 0xc75aff0aa9000f0a, 0x0f3ac9678bffbc20, 0x3c14cb03ff0ab700, 0xce010ebabf2aabff, 0x713cff0ac9050d0a, 0x04ba7e3d18ffbcb6, 0xbd22c531ff0ad786, 0x0086043c23e0a0ff, 0xed020e0af2050d0b, 0x8effbb0ee7fdff0a, 0xff0afb1606bc858d, 0x3f1700ff3b514fcc, 0x0d000f0b12040ebb, 0x0effbbbdd629ff0b, 0xff0b1b01113b7ae6, 0x56e988ffbb6c4cdc, 0xb49a040c40060e3d, 0x5099040b7001110b, 0x3d020e0b4202080b, 0xccffb91d48f2ff0b, 0xff0b4b00063becbb, 0x8f595cffbcb1e975, 0x5d00110b62050e3a, 0x72ff3c438807ff0b, 0xff0b6b030bbc8694, 0xa58350ffbc5adc7a, 0x86040e0b940606bd, 0xe428ff0b81000c0b, 0x0bbd577a73ffba79, 0x3c8a7ce8ff0b8f03, 0xa60108b99c5877ff, 0x9b49ff0ba118060b, 0x02bbc02a65ff3c90, 0xbc84394aff0baf00, 0xfc12063b148681ff, 0xce2b050bdc030e0b, 0xcc22ff0bc910060b, 0x083b91cd99ffbb32, 0x3b1459f0ff0bd700, 0xee0906bae4a6c3ff, 0x57c7ff0be97a050b, 0x06bbb7d146ffbca7, 0xbd0123dcff0bf70b, 0x20000e3b64caecff, 0x0da9040c12000f0c, 0x79ff3b7027ddff0c, 0xff0c1b0b0bbbdfb6, 0x6764c3ff3a60da81, 0x2d18060c32a504bb, 0x61ff3c6ca4ebff0c, 0xff0c3b000cbccc9d, 0xbca353ffba0df1e5, 0x8c29030cd0be043b, 0x5e140b0c6c27030c, 0xd1feff0c5923030c, 0x053b8e83dfffbb86, 0xbae64412ff0c6725, 0x7e36013d24673aff, 0x4beeff0c79000f0c, 0x043b0effa0ff3d12, 0xbd7f47ccff0c87a0, 0xb0310ebca338d2ff, 0x9d13060ca252050c, 0x8cff39fc1946ff0c, 0xff0cab0506bb73da, 0x51b255ff38bf16bd, 0xbd9d040cc2000d3b, 0xa9ffbd3e678aff0c, 0xff0ccba904bc063c, 0xc22c35ffbbf4397c, 0xf8030d0d18000cba, 0xe537050ceabf040c, 0x64ffbcb5f2c5ff0c, 0xff0cf30c05bd7b33, 0x9d3edcff3c31899f, 0x052b0e0d0abf04bb, 0xe2ff3abd97d9ff0d, 0xff0d132d0e3caf85, 0xaba177ffba027514, 0x2e1e0e0d3c040d3a, 0x0ec3ff0d29030d0d, 0x0d3c8cbe5effbb99, 0x3c0609e6ff0d3702, 0x4e2d0ebbf2952dff, 0xdff2ff0d4911050d, 0x0739742b23ffbb55, 0xbaad58aeff0d5702, 0x9c5d053c346480ff, 0xf401080e803d050f, 0x9031050db0cb040d, 0x7d96040d8228010d, 0x43ffb97f1a41ff0d, 0xff0d8b2703bb211e, 0xf2c214ff3c1adc3a, 0x9d32050da2370539, 0x3bff3ca56c0cff0d, 0xff0dab39013ba15a, 0x239292ff3afe3a80, 0xc6300e0dd40d06bc, 0xc5ceff0dc101110d, 0x063c9bc168ffbd1b, 0xbb11ea27ff0dcf05, 0xe610063cd0976bff, 0x1490ff0de102070d, 0x053dbf82faff3b95, 0xbd0f49eeff0def0d, 0x3cb9043bbeac03ff, 0x0e41010e1cb4040e, 0xf5f1ff0e09ab040e, 0x023c6cd1eaffb915, 0xbc1573a4ff0e1700, 0x2e110b3b083c98ff, 0x4cb3ff0e2901120e, 0x05bca057d5ffbb13, 0x3a72bb90ff0e3737, 0x600b0b3d65d91dff, 0x4d030b0e52320e0e, 0x09ffbc309b87ff0e, 0xff0e5bc0043ad598, 0x9b625cffbb4f92d9, 0x6dbe040e720c053c, 0x74ff3d0bcc85ff0e, 0xff0e7b33033bd23f, 0xfeda18ffbc60a293, 0xccc7040f1045053b, 0x9e40010eacb9040e, 0x1df2ff0e99a3040e, 0x0bbca54228ff3b32, 0x3b3065b6ff0ea705, 0xbe00083c5b4b89ff, 0x39e3ff0eb940050e, 0x05bc811584ffbdf2, 0x3c708c4aff0ec73f, 0xf03f05bb99116bff, 0xddca040ee2310e0e, 0x30ff3deb400eff0e, 0xff0eebc9043d309c, 0x8aa444ffbcf8ad60, 0xfd02070f02030b3d, 0xbaff3d799834ff0e, 0xff0f0b280e3e2ab2, 0xb0ebc0ff3d0096bb, 0x38070e0f584605bc, 0x2552040f2a55040f, 0x76ffbb2689b2ff0f, 0xff0f3300113c0735, 0xabc528ffbcaae04b, 0x4535010f4a070dbb, 0x86ff39633056ff0f, 0xff0f539404bd4d20, 0x2b5985ffbb52b469, 0x6ec8040f7c58053d, 0xd33eff0f69230e0f, 0x05bb4c223fff3a92, 0x3cc8cd51ff0f774c, 0x8e5905bb737402ff, 0x0f4bff0f89070b0f, 0x0ebc8b3f38ffbb86, 0x3c2a4dbcff0f9714, 0xbc100b3a28a58cff, 0xec0b0e1030060d10, 0xbe090e0fcc0a0e0f, 0xa058ff0fb900080f, 0x04bc74fa04ffbbb7, 0x3d7f8d80ff0fc7a0, 0xde83053cd39e1dff, 0x26a3ff0fd900080f, 0x073dede925ffbdb9, 0xbd285c15ff0fe701, 0x10230ebc86eb91ff, 0xfd000810020d0e10, 0x69ff3bb800fdff0f, 0xff100b02073cb1a4, 0x496311ff39fea40b, 0x1d01121022c204bb, 0xe1ff3b7e0005ff10, 0xff102b0107bc9f70, 0xef8af4ffbc4687e2, 0x5800121078070e37, 0x45050e104a060e10, 0x35ffbb430d7aff10, 0xff1053070dbda0cd, 0x7d80dbff3ca0d550, 0x650d0b106a0002bd, 0x71ff3d1a4476ff10, 0xff1073020e3da7e0, 0x900983ffbc1f3f80, 0x8e070d109c080e3c, 0xe0a9ff1089001210, 0x0bbca8d1bcffbd8a, 0x3cbfb321ff109705, 0xae02083d8d5590ff, 0x05a7ff10a9010710, 0x043bad3e97ff3a12, 0xbd55748aff10b7bf, 0x4c140bbc45712aff, 0xe800121108000211, 0xd5c30410da070d10, 0xbaffbd366e08ff10, 0xff10e3130b3c56f2, 0x934b47ffbc102599, 0xf50b0e10fa060d3d, 0xfdffbcfeece0ff10, 0xff1103a904bb1e3b, 0x1f6deaff3d82f2e1, 0x1e0008112c030e3c, 0x7091ff1119110b11, 0x053c6ec596ffbbeb, 0xbce116a2ff112785, 0x3e060d3c932ca4ff, 0xeeffff11399d0411, 0x04bd09e668ff3ca0, 0xbcc0bd02ff1147a7, 0x94cc04bdcc50f4ff, 0x666c051174720511, 0x37edff11615f0511, 0x043aec8e25ffbbca, 0xbbe0c2d3ff116f9e, 0x86170e3c985117ff, 0xf50eff1181060d11, 0x0dbb2c9f96ffbc97, 0x3cbfcd98ff118f06, 0xb80207bc475b95ff, 0xa52b0e11aa340e11, 0x0fff3af732f8ff11, 0xff11b300023cb567, 0x8ca160ffbc825a83, 0xc57e0511ca8805bd, 0x53ffbc415dd4ff11, 0xff11d31d0ebd3ae5, 0x87c23aff3c1cd1d1, 0x000008000000133d, 0x000001000003e800, 0x0000000000107900, 0x608c0508dc000700, 0x2cc1040248c70404, 0x5c021100a06a0501, 0x2e4305003c530500, 0xe15aff0029540400, 0x04ba12ee43ff392f, 0x3835c791ff0037ba, 0x4eb504baff6bcbff, 0x8fc7ff0049b00400, 0x0dbb5243b4ffb884, 0x3a90c7dbff005707, 0x80170ebc46123eff, 0x6d6a040072020800, 0x0eff3ada4b32ff00, 0xff007b070e3c3fbb, 0x87eb4bffbcd82022, 0x8d120500920212bb, 0x29ffbb227b01ff00, 0xff009b0008bcde4c, 0x52bafeffbc0fe4b8, 0xc8790500e8c0043d, 0xb5000600ba100e00, 0xfeff3a667ab0ff00, 0xff00c3000dbbf4bd, 0x688dd9ff3893c5d4, 0xd5bf0400da0009ba, 0x8aff3a6524faff00, 0xff00e3230e3b1b50, 0x5d9212ffbaabcfd0, 0xfe0002010c000cbb, 0x7fbeff00f9300e00, 0x053c1f8ecfffbc90, 0x3b7c5cf9ff010789, 0x1e340ebb9ca309ff, 0x0436ff0119000801, 0x053bb23adeffbbae, 0x3d1d095bff01277a, 0xbc75053df816c8ff, 0x581e050178000f01, 0x45020d014a190501, 0x7effbc44b6abff01, 0xff0153140e3c92c0, 0xe3eb3fff3b6ead26, 0x650006016ac3043d, 0xe5ff3c3ee0f1ff01, 0xff01730108bcc5cf, 0x0d0efcffbbc82f02, 0x8e6e05019c73053c, 0x49e7ff0189060d01, 0x05bb3ea879ff39e3, 0x3d052effff01976f, 0xae0d0ebbeed32cff, 0x5bb9ff01a9000601, 0x08bc1ad414ffbdc0, 0xbb6a5e44ff01b702, 0x0481053ca860c3ff, 0xd6000801e41f0e02, 0x1f35ff01d1c30401, 0x0e3a4e4ecbffbc56, 0x3bec1081ff01df1d, 0xf62b0e3d849024ff, 0x3069ff01f1010801, 0x0e3b5db090ffbbe5, 0x3d1567d3ff01ff2d, 0x288905b98f2c8cff, 0x15050b021a830502, 0xd0ff3baf16e1ff02, 0xff02230008bbf508, 0xa073cfffba838069, 0x358b05023ac5043a, 0x21ff3b70cfe9ff02, 0xff02438a05bb24b5, 0x10e3dbffbccbada9, 0xdc060d0368190e3b, 0x788a050298010c02, 0x650208026a030b02, 0xb2ff3a89890fff02, 0xff027386053ca11a, 0xa001efffbaec4139, 0x850e0b028ac9043b, 0x1cffbca7319eff02, 0xff029300083b2d1b, 0x3c1b70ffbce76fb8, 0xae0b0b02bcca04bd, 0xffa9ff02a98a0502, 0x05bc1e4938ff3c0c, 0x3c429700ff02b787, 0xcecc043d306cabff, 0x9d47ff02c9140602, 0x05bb10c892ff3bcc, 0xbd64af50ff02d78a, 0x2400123b471140ff, 0xf6180e0304010c03, 0xe14dff02f1cc0402, 0x023ce3cd0bffbbca, 0x3bb7fe90ff02ff00, 0x16c904bbc7c121ff, 0x828cff0311000803, 0x0e3cc6bbaaffbb81, 0xbc824da4ff031f17, 0x48000c3c9776ccff, 0x358705033a890503, 0x40ff3cdc32aeff03, 0xff0343100b3d1f9d, 0x612b26ff3da769f0, 0x55170e035a030b3d, 0x8bff3cf77e46ff03, 0xff0363010c3d0096, 0xcefb18ffbb5cccff, 0x90010b03d48b05bc, 0x7dcb040382020d03, 0xf0ff3deb16b0ff03, 0xff038bcb043cc5ad, 0xc4e900ffbc590380, 0xa68a0503b40208bb, 0x727cff03a13d0103, 0x04ba2e7a7cffbb9a, 0x3c8ac3c6ff03afc9, 0xc6c804bb1f69d5ff, 0x2853ff03c1000c03, 0x0e3c2821b3ffb99b, 0xbb3b9b5bff03cf2b, 0x1c2b0e3b89c69aff, 0xee010c03fc000804, 0xb54fff03e9000c03, 0x0ebb884687ff3cad, 0xbd169feeff03f723, 0x0e0011bc2587d8ff, 0x4499ff0409c90404, 0x0ebb1213b4ffbd0a, 0x3cc74c15ff041723, 0x40cd04bace36baff, 0x2d00120432060d04, 0x46ffbbaecd2cff04, 0xff043b00083c3880, 0xa7db80ff3d3b672d, 0x4d00020452310e39, 0xefffbb8d9157ff04, 0xff045b000cbc6a15, 0x709a39ff3b156274, 0x84110b06a08d053c, 0xb4890404f80e0e05, 0x8600090494070e04, 0x2084ff0481640404, 0x0e3b411d10ffbb94, 0xba33799eff048f02, 0xa6060dbc3e401fff, 0xa9a7ff04a1720404, 0x04bc486a16ff3b64, 0x3c096095ff04af87, 0xd8c7043b549c90ff, 0xc5000804ca060d04, 0x57ff3b73a4b0ff04, 0xff04d3100bbb0f35, 0x33e2f2ffba5b2ae4, 0xe5030b04eac904bd, 0x2dffbd74c526ff04, 0xff04f3080e3c90f7, 0xd8ff34ffbcc4790c, 0x2000080540bb04bb, 0x0d01120512140e05, 0xf4ffbbf87f78ff05, 0xff051ba804bcdeba, 0x647618ff3bfab088, 0x2d01120532000239, 0x07ffbbd2fee4ff05, 0xff053b060dbd08d2, 0x8f6561ffbb006377, 0x560002056401083c, 0x76fbff0551bc0405, 0x0c3b1aa059ffbc0b, 0xba881c52ff055f01, 0x760b0bbc2c0fc2ff, 0x7527ff0571030b05, 0x0e3b9b215effbae6, 0x3c573a9aff057f18, 0x140008bd33df01ff, 0xb0010c05d0c10406, 0x9db60405a2060d05, 0x41ffba6f0c9eff05, 0xff05abb2043b7d82, 0x4a60c7ff3a2c72c7, 0xbd030e05c2b204bc, 0x67ffba017c8cff05, 0xff05cb030ebd1a19, 0xb3982eff3d7c7ec4, 0xe6001105f4c2043c, 0x3198ff05e1000905, 0x023d8f579cff3b8a, 0x3d7e8c85ff05ef00, 0x06010c3d107f18ff, 0x0e4aff0601060d06, 0x043bf023fdffba2d, 0x3dad0cd0ff060fc3, 0x5c000cbc5d265fff, 0x2e0002063c070e06, 0x5998ff0629060d06, 0x0e3b9f4262ffbbb0, 0x3b254a5bff063706, 0x4e090e3cd851b7ff, 0x52ddff0649060d06, 0x043c7c3ba0ffbd28, 0x3d2f1903ff0657b2, 0x80001139c9b54cff, 0x6d010e0672010806, 0x35ffbcb8cad1ff06, 0xff067b070e3c6d1c, 0x23a337ffbc4cd310, 0x8d170e06921d0e3c, 0x77ffbb9405a8ff06, 0xff069b0111bd5d9c, 0xac60ddff3ce842a5, 0x34020d07c09305bc, 0xd0650406f0030e07, 0xbd010e06c2900506, 0x24ffbba3e875ff06, 0xff06cb5c043c7a96, 0xe4f918ff3c242d55, 0xdd000806e26b04bb, 0xe0ffbda43eceff06, 0xff06eb000dbcd1c2, 0xffd7edffbc485baf, 0x06a1040714140e39, 0xed8dff0701a00407, 0x043dff72ebffb978, 0xbc519a1fff070fa7, 0x262a0eba234359ff, 0x899eff0721230e07, 0x0ebbf93396ff3ac0, 0x3c2102f0ff072f2b, 0x7c050bbac61138ff, 0x4e000f075c090e07, 0x04efff0749900407, 0x043c3cd413ffbaae, 0xb90bee61ff0757c8, 0x6e0b0ebc6e7820ff, 0x1ac4ff07690a0e07, 0x05bc95bea6ffbb41, 0xba4ccc2fff077791, 0xa00b0b3af7238aff, 0x8d00090792190e07, 0x0bff3ac3a76cff07, 0xff079b0012b9597d, 0x0fff82ffbabbecbf, 0xadc70407b2140bba, 0xcfffba474c7dff07, 0xff07bb070dbcb67b, 0xb10b36ffb9f2d764, 0x0c00080850020d3a, 0xde940507ec070e08, 0x98a1ff07d9010e07, 0x05bc856295ff3c33, 0x3acf7a58ff07e796, 0xfe9505bb3739f4ff, 0x5b43ff07f9cb0407, 0x04bc2b43caff3b83, 0xbb34b1eaff0807cb, 0x30040b3c114c05ff, 0x1dc7040822000208, 0x35ff3bf927d5ff08, 0xff082bc904bce338, 0x0b177cff3b197b94, 0x3dbf040842000d3d, 0x80ff3c4c0910ff08, 0xff084b1d0e3c53b4, 0x64d160ffbbbc0d4b, 0x78010b08980e0b3b, 0x650002086a950508, 0xa9ffbb2678e5ff08, 0xff0873c7043bad35, 0x275537ffbb115122, 0x850b0b088a0012bc, 0x18ff39f628d3ff08, 0xff0893170ebcaff8, 0xdde880ffb9555438, 0xae010c08bc060d38, 0x2c33ff08a9c20408, 0x0e3ac29fedffbaca, 0x3c29e239ff08b71d, 0xce94053d3e6d45ff, 0xed51ff08c9001208, 0x04bbf7e0aaff3acf, 0x3b12b300ff08d7c9, 0x5c9505bb8d2b3dff, 0x04c1040b20c6040d, 0x349d040978b4040a, 0x0617060914770509, 0xa652ff0901340309, 0x0eb8dec508ff3942, 0xba5815fcff090f05, 0x26010dbc438937ff, 0x51eeff0921290e09, 0x0dbdda60b9ffbb6d, 0xbb8c90baff092f02, 0x586905ba0155bdff, 0x455305094a070d09, 0x4bff3903f6ddff09, 0xff09534001ba3bea, 0x04bdb2ffbd01cf4d, 0x650008096a010c3c, 0x6fff3ab3d1d8ff09, 0xff09737205bad98a, 0xe79eb7ff3bccfe9a, 0xa0bf0409c03203bb, 0x8d00020992310309, 0xbfffbbeb07f2ff09, 0xff099b010c3be29b, 0x06f6beff3d1ce1be, 0xad010809b23103bc, 0x23ffbd24f106ff09, 0xff09bb00063c9379, 0xb73800ffbe499330, 0xd6000809e4270ebc, 0x3583ff09d1070d09, 0x0438a97eabff390d, 0x391b0a0aff09dfbf, 0xf663053aa2ae66ff, 0x2a42ff09f1280e09, 0x0bbaa2537fff3ceb, 0x3ac767ebff09ff0b, 0x940002bba7524fff, 0x3000120a50190e0a, 0x1d170e0a22180e0a, 0x57ff3a25a5e9ff0a, 0xff0a2b000cbd7731, 0x03cc00ff3b613b4d, 0x3d000f0a42070e3d, 0x9cffbc8b107dff0a, 0xff0a4b000c3c5d12, 0x610137ff3afc2f2e, 0x6601070a74100bbc, 0x2a32ff0a61230e0a, 0x0bbbb33f9eff3b0d, 0x3b246fffff0a6f0b, 0x86320ebc93312eff, 0x9e70ff0a812a0e0a, 0x083c1d9552ffbc08, 0xbbed733cff0a8f00, 0xdc6e05bd5db225ff, 0xae0d060abc6b050a, 0x3d43ff0aa96a050a, 0x0e3cbc885cffbb5d, 0xba26be89ff0ab715, 0xcec5043b852d33ff, 0xf82fff0ac96d050a, 0x11bcf0e648ffbb9c, 0xbc2891a3ff0ad700, 0x008405bd210161ff, 0xedc2040af26f050b, 0x2cff3b46364aff0a, 0xff0afb2b0e3d553a, 0xcbf049ffbb309564, 0x0d140e0b12040b3b, 0x15ffbb0b666fff0b, 0xff0b1b130b3c1222, 0x6914deffbabb8e27, 0xb4010c0c4001083b, 0x50340e0b7000110b, 0x3d230e0b42250e0b, 0x4eff3a410cb8ff0b, 0xff0b4b310ebd1b04, 0x5aa334ff3c170fd9, 0x5d02070b627905bc, 0xf0ff3e13dc50ff0b, 0xff0b6b8a053ca4a8, 0x03c639ff3c908bf8, 0x86060d0b94c7043d, 0x1743ff0b81340e0b, 0x05bc84efa7ff3ac1, 0x3cfc94e7ff0b8f81, 0xa6340e3b2a8f6bff, 0xd3e4ff0ba101110b, 0x063af978d0ffba40, 0xbb962a8bff0baf03, 0xfc78053c37969fff, 0xcec9040bdc220e0b, 0x1988ff0bc96d050b, 0x043b8b2234ff3cf8, 0xbc271c6eff0bd7ca, 0xee02073b81893cff, 0x27feff0be9070d0b, 0x02bd184f82ffbb6c, 0xbba093e2ff0bf700, 0x207a053c354698ff, 0x0d00020c122a0e0c, 0x6fffbbd419ffff0c, 0xff0c1b00083d2964, 0xb7aa47ffbc2184cc, 0x2dc8040c32080e3c, 0xd6ff3cc078aeff0c, 0xff0c3b0012bc0cdc, 0x8f2496ff3b2638f4, 0x8c01070cd07505ba, 0x5e0b0b0c6c61050c, 0xd5b9ff0c5955050c, 0x0ebbc67996ff3b87, 0xbc58eda1ff0c6731, 0x7eca043c2df9a5ff, 0xa7eaff0c7965050c, 0x0c3b6fbe71ff3c9e, 0x3cbfa99eff0c8700, 0xb0ca04bc0271f5ff, 0x9d00020ca245050c, 0x97ff3cb9e62cff0c, 0xff0cab0002bcb28f, 0x8ff320ffbb926234, 0xbd6c050cc2000c3a, 0xa3ffbaa2216bff0c, 0xff0ccb6005bc64c1, 0x4b9194ff3be11011, 0xf8c8040d187605ba, 0xe501110cea060d0c, 0x50ff3d66463fff0c, 0xff0cf3230ebcb10f, 0x781bf8ff3d12ad36, 0x05220e0d0aca04bc, 0x66ffbba0dd30ff0d, 0xff0d13230ebcc94e, 0x9e23afffbaaac4d9, 0x2e78050d3c2c0e3c, 0x931eff0d29060d0d, 0x053b19a4faffbc27, 0x39f6ce9eff0d3783, 0x4e000fbad0b9ebff, 0x2aa7ff0d49cc040d, 0x0ebcc882d2ffb9bb, 0x3cb099c0ff0d572d, 0x781f0e3b60fadeff, 0xd0bf040e5c01070f, 0x90bd040db0010c0d, 0x7d000f0d82080e0d, 0xa6ffbb144316ff0d, 0xff0d8b001138c596, 0x9caa6affbb02ff81, 0x9d000f0da2070e3b, 0xd0ffbcc9a2cbff0d, 0xff0dab0d0ebbc71c, 0x2a4f00ffbbffd580, 0xc6050b0dcb00083b, 0x6218ff0dc1010b0d, 0xffbc600063ffbc06, 0x757300ff3ba01240, 0xf801120e18190ebb, 0xe5cc040dea0a0b0d, 0x26ffba51a55cff0d, 0xff0df3110ebc0c30, 0x7c7505ff38dc2018, 0x05c9040e0aca043b, 0xc2ff3a9db2fdff0e, 0xff0e13cb043c2c65, 0xb3cf08ffbc801349, 0x2e000c0e3c0002ba, 0x0e10ff0e2901080e, 0x0dbb3bb1a8ff3bb7, 0x39c23a37ff0e3706, 0x4e070bbb4ffb06ff, 0x2229ff0e49050b0e, 0x043d21be8cffba35, 0xbcae26f3ff0e57c8, 0xec030bbb07fe3fff, 0x88010c0ea8030e0e, 0x7501080e7a010e0e, 0xd5ff3b1aa7acff0e, 0xff0e830112bb34fc, 0x0cba34ffbb3970db, 0x9501120e9a020b3b, 0xc0ff3bd64320ff0e, 0xff0ea300023be696, 0x6f278cffbc3176d8, 0xbecb040ecc0d0ebc, 0xc27dff0eb9020d0e, 0x08bbafc5acff3b3c, 0x3bd7fedaff0ec700, 0xde01123ca84b80ff, 0x13ecff0ed9110e0e, 0x043bec8a41ff3a33, 0xbcb36b9cff0ee7c0, 0x349605b9c6f95bff, 0x06000c0f14070e0f, 0x8002ff0f01060d0f, 0x04b9f80f74ff3b0f, 0x3b98c4beff0f0fc4, 0x26080e3a35388cff, 0x6fb8ff0f2100020f, 0x0b3c0f9d13ffbbe9, 0x3bce6eeaff0f2f05, 0x58110e3aad52fcff, 0x45030e0f4a0b0e0f, 0x06ffb8e81094ff0f, 0xff0f5300113b8d5b, 0x41a8a8ffbbe676bc, 0x6500020f6a060dbb, 0x20ffb9f21a80ff0f, 0xff0f73140e3b3022, 0xdffda8ffbbf2f760, 0xa0000c0fc0220e3b, 0xc2b5ff0f89c9040f, 0x00020f9b01123bb8, 0xff3c2538c0ff0f96, 0x020a60ff3c10958b, 0xadc9040fbb030b3c, 0x010b3b60df80ff0f, 0xff3b29ec00ff0fb6, 0xbb5280ff39a79000, 0x03000c10230002bb, 0xdecd040fec010710, 0x2be8ff0fd901110f, 0x05bac1be59ffbcb8, 0x3b40268eff0fe796, 0xf50011bbda6d20ff, 0x030bbcc04178ff0f, 0xffbbc970b0ff0ffe, 0x100c00113b9d0260, 0x150111bca650c0ff, 0x010bbc174408ff10, 0xffbbb6de00ff101e, 0x10502b0eb92f3000, 0x103d0107104b280e, 0xe4b016ff10389605, 0xc7043bb92400ffba, 0xff380ca000ff1046, 0x6368e0ff3c275463, 0x5d0112106b0107bc, 0x000d3c85ee78ff10, 0xff3949b500ff1066, 0x1074c0043c037170, 0xf800ffbc727588ff, 0x000800000013bb48, 0x0001000003e80000, 0x0000000010310000, 0x8c0508e500070000, 0xc1040248c7040484, 0x021100a06a05012c, 0x7404003c5305005c, 0x90ff00291206002e, 0x39f6186dffb8596d, 0xf1ea0dff00370605, 0xb504b7458468ff3a, 0x82ff00498b04004e, 0xbab3437dff39a952, 0x8b8812ff00574101, 0x6c043a77b7d0ffbc, 0x000200725e040080, 0xff3b9ab4c6ff006d, 0x007b3401ba1c07d8, 0x4753ffbdb08498ff, 0x00080092030ebc70, 0xff3c530882ff008d, 0x009b0008bc271bae, 0x0318ff3d00bcfaff, 0x070d00e8220e3c21, 0x210e00babe0400c8, 0xff39ab0430ff00b5, 0x00c3210ebc7bb25b, 0x94bcff3bfcb5d7ff, 0x001200da8904bd38, 0xff3b8526aeff00d5, 0x00e3070e3d33f5d8, 0xf63bffbcdda8aaff, 0xbb04010c010cbaf3, 0xfbff00f9000c00fe, 0x3b5043e7ffbb0298, 0xbc4da5ff01072b0e, 0x0009bbdd0619ff3b, 0x58ff0119230e011e, 0xb9877c3fff3cd9da, 0xfa9bb1ff0127ad04, 0x7505bc91b8d7ffbc, 0x00080178000f01bc, 0x1906014a29050158, 0xff3d0142e4ff0145, 0x0153000cbb951f50, 0xb477ffbba3a106ff, 0x0002016ac304bcc3, 0xffbcdced19ff0165, 0x017301083bae996c, 0x71d1ffbbaed4e9ff, 0x6d05019c73053bdd, 0xc3ff0189c504018e, 0x3ae646aeffba7056, 0xcb219eff01976f05, 0x0d0ebbd6f136ff3c, 0x59ff01a9000601ae, 0xbc0b5878ffbdad1f, 0x52ee61ff01b70208, 0x81053c978a45ffbb, 0x000801e4220e0204, 0x99ff01d11f0e01d6, 0xbd33bddbffbba75e, 0x36fad2ff01df000c, 0x0b0b3c64e90effbc, 0xf5ff01f1310e01f6, 0x3b8a3031ffbb9658, 0x5a55d2ff01ff0c0b, 0x89053b446c46ff3d, 0xc204021a83050228, 0xff3bc828d4ff0215, 0x02230008bbd98d6e, 0x67f6ffba6cb414ff, 0x050b023ac5043a90, 0xffbb95ed68ff0235, 0x0243010c3b10f02a, 0x8d94ff3b0f92f1ff, 0x230e0368ca04bcbd, 0x00020298070d02dc, 0x220e026a060d0278, 0xffbbc62ae2ff0265, 0x027371053d05c1c3, 0xbdbaff3d7700b0ff, 0x0111028a220ebc0c, 0xff39481994ff0285, 0x029300093bcd77d6, 0x7c13ff3cc10143ff, 0x020802bc0009bbf6, 0x03ff02a9830502ae, 0xbc9aef43ffbd29ed, 0x7bbf14ff02b7010c, 0x6d053c308a80ffbc, 0x4aff02c9610502ce, 0x3c793a9bff3cc196, 0x544f6eff02d77f05, 0xc904bb370ea0ff3c, 0x2c0e030400020324, 0x05ff02f1000c02f6, 0xbc7dde02ff3bd442, 0x63bff1ff02ff8005, 0x8a053bf24a45ffbb, 0xd3ff031100120316, 0x3b2fd352ffbbf050, 0xe403abff031f000c, 0x280e3d523e91ff3b, 0x7505033a000c0348, 0xff3cd6a0c8ff0335, 0x03430009bb9fb32a, 0xff88ff3cd0f33fff, 0x7305035a0011bc6b, 0xff3d2155f3ff0355, 0x036300083b2d105a, 0xa01bff3bbd9f3cff, 0x810503f88205bb66, 0x790503947a0503b4, 0x7dff03816f050386, 0xbc0a2512ff3a342d, 0x3f6434ff038f2b0e, 0x02083cf3e0afff3e, 0xceff03a1230e03a6, 0xbc904018ff3c843a, 0x20345bff03af010c, 0xcb04bb6fcbd0ff3c, 0x001203ca180e03d8, 0xffbcd3d412ff03c5, 0x03d30208bb83933e, 0x5cf8ffbdcf6736ff, 0x0b0b03ea230ebd96, 0xff3da5aca4ff03e5, 0x03f302083ba53715, 0xb034ffbce78da2ff, 0x010c044084053bc2, 0x83050412310e0420, 0xffbc2223b1ff040d, 0x041b02083d4a739f, 0x9243ffbc595577ff, 0x0002043200083c47, 0xff3c3d178aff042d, 0x043b8305bc824634, 0x29bdff3cb6e501ff, 0x0108046487053dc8, 0xa4ff04512d0e0456, 0xbb0279a7ffbd02ce, 0x861900ff045f010c, 0x88053c1fe322ffbb, 0xc9ff047100020476, 0xb903a7f7ff3d7630, 0x454cc8ff047f8905, 0x8d0539ab3d58ffbc, 0x0e0e05a8110b06bb, 0x040e04d80e0b051c, 0x880404aa8b0404b8, 0xffb9a71243ff04a5, 0x04b301093c0a7657, 0x8064ffbbc69c38ff, 0x060e04cabc043ab0, 0xffbc0103faff04c5, 0x04d3020939c2d6c9, 0xdf68ff3c0dabfeff, 0x040e04fc0002bbca, 0x6bff04e9100b04ee, 0xbc4bbdc4ff3c1f34, 0x83e167ff04f7070e, 0x060dbb690140ffbd, 0x2aff0509000c050e, 0xbc722aafffbb5017, 0x835fa2ff05170008, 0xb5043db2baf7ff3c, 0x1f0e0544b3040564, 0x93ff0531060d0536, 0x3c0a4b5cffbb8873, 0xef8dfdff053f000c, 0x030b3c89d1bbff3a, 0xcaff055101120556, 0x3d6c8de5ffbc02da, 0xb78903ff055f0108, 0xcc043d8ef874ffbc, 0x000f057ab6040588, 0xffbc4269abff0575, 0x0583bc043cc6a99b, 0xaa3fffbbbedc6eff, 0x0011059a000239d1, 0xff3d8d13faff0595, 0x05a3cd043d69866c, 0xa86affbc15f9adff, 0xc104062f00083c51, 0x060d05d4010c05f4, 0xbbff05c1b60405c6, 0x3b64286fffba5724, 0xf32a07ff05cf080e, 0x060dbc6e815effba, 0x22ff05e1a50405e6, 0x3bee81a5ffbc42d3, 0x3b5470ff05ef9704, 0xc3043d0086b9ffbb, 0x0012060a010c060f, 0xff3c376bfaff0605, 0x9bbeb8ff3d3d79a2, 0x1c190e0621010c3d, 0x02ff3bf703b2ff06, 0xff062ac504b824e5, 0x37eb0cffbd149b69, 0x57b2040677000cbb, 0x44050e0649060e06, 0x00ff3bc0cb3fff06, 0xff06520108bdbe4a, 0x6cbdf0ff3cdd1e52, 0x64070e0669bc04bb, 0xdcff3ba63bafff06, 0xff0672c204bc0c6d, 0x3c3534ff3c8746fc, 0x8d0108069b00123a, 0x34c4ff0688970406, 0x0e3c40a7d3ffbca0, 0xbc385790ff069607, 0xad060d3c13461dff, 0x3a8eff06a80b0e06, 0x043b81880cffbc4e, 0xbbeff3ebff06b6c9, 0xdb9305bdd4d6cbff, 0x0b0208074f020d07, 0xdd1a0e06ebbc0407, 0xa631ff06d8190e06, 0x0e3d3a3c80ffb7db, 0xbbc1b65aff06e622, 0xfdbd043b47ead4ff, 0x5608ff06f81f0e06, 0x043cf75d89ff3c22, 0xbc54a84bff0706be, 0x2fbf043a556992ff, 0x1cbc040721020b07, 0xc0ffbba91500ff07, 0xff072a0d0e3beac6, 0x1707d0ff3be99051, 0x3c170e0741230e3d, 0x85ffbc628d1bff07, 0xff074a010b3c1a0d, 0x5a0470ffbd0a0f80, 0x77040b0797050bbd, 0x6471040769720407, 0x2dff3803dc16ff07, 0xff0772040dbd740e, 0xc7bdbdffbb8630e8, 0x84c70407892d0eb9, 0xb7ff3b816fa6ff07, 0xff07920111bc5805, 0xe8be40ff3c51ec35, 0xad190e07bb0b0b3d, 0x16c1ff07a8000907, 0x12b943bd14ff3ab0, 0xbaa921d4ff07b600, 0xcd140bba019954ff, 0x5e78ff07c8c70407, 0x0dbca43c3cffba33, 0xb9da8f20ff07d607, 0x62020d3a9f56e1ff, 0x07050b0827000808, 0xf4940507f9b30408, 0xc5ffbc1de46cff07, 0xff08029405b9a120, 0x190203ff3c32c9f1, 0x1495050819190eba, 0xc2ff3c04b897ff08, 0xff0822c6043a2496, 0xd6a198ffbc1dd83b, 0x3db704084b230e39, 0x7faeff0838010808, 0x0b3c8660f4ffbc19, 0x3bf8626aff084603, 0x54c904baceab58ff, 0xca04bd609ddeff08, 0xff3d200b30ff085d, 0x08a1000fbcb44d18, 0x087cb304088a140e, 0xdbecf8ff0877070e, 0x060dbcc99dddffba, 0xff3b9943faff0885, 0x0893ba04bc98d499, 0x9cbc043dccd2c0ff, 0xa6ffbd204789ff08, 0x0c08c5cd04b98cf1, 0xff08b2011108b700, 0x2ec3aaff38e58c32, 0x9ec5ff08c0cc043a, 0x05baa646bfffb965, 0xff08d2000908d794, 0xd75939ff3bddcf89, 0x0aadff08e0060dbb, 0x05baf2a414ff3b30, 0x040b29c6040d6595, 0x040981b4040a0dc1, 0x05091d0a06093d9d, 0xff090a260e090f8a, 0x1adbeaff38392506, 0x31b1ff09188b05ba, 0x0b3a61b893ffbb0e, 0xff092a1a0e092f05, 0x1032baffb9a3dde4, 0x902eff09389c04bc, 0x08bc9d5f4cff3b22, 0x0e0953090b096100, 0x39dc4b97ff094e31, 0x5cb004bb908001ff, 0x4bffbac691b8ff09, 0x010973b304391ddd, 0xba8ee28dff096e3c, 0x7c011139e69432ff, 0x09ffba9197d4ff09, 0x0809c90011bc2ccf, 0x0e099bbe0409a901, 0xba20376cff099623, 0xa4080ebc1194c8ff, 0x9bffbc2e3a9dff09, 0x0109bb02073baf6e, 0x3aacba0eff09b634, 0xc4270ebadc8b5eff, 0x5dffbc21db74ff09, 0x0309ed33033c578d, 0xff09da020709df32, 0xeca71affbad5f51b, 0xaa29ff09e8b804bb, 0x053c0be2b9ff3d65, 0xff09fa0c0509ff57, 0x91d237ff3b8bf3d6, 0xe43dff0a08b804ba, 0x02b887174dff3b97, 0x050a5931030a9d00, 0x040a2b02070a3933, 0xbc353161ff0a26c3, 0x340b0b3d3e8687ff, 0x22ffbd905bd1ff0a, 0x070a4b3b05bd187d, 0x3d5628a4ff0a4602, 0x5402083db0d2d0ff, 0xd0ffbd645cd0ff0a, 0x0e0a7dc504bd5419, 0xff0a6ac4040a6f2b, 0xd89d5dffbb67dfd1, 0x2506ff0a78060d3b, 0x08bcc06e2fff3bbf, 0xff0a8a01110a8f01, 0xd6e4f7ffbb754d3a, 0x0c9bff0a98230ebc, 0x05bb6415f4ff3c1a, 0x060ac56b050ae56e, 0xff0ab26a050ab70e, 0xa9adebffbb4be6d4, 0xb6d5ff0ac0030d3c, 0x043b069a41ffbb5d, 0xff0ad2010c0ad7c3, 0x0a02e1ffbbbb796d, 0xf47bff0ae0140e3d, 0x05bc9cf1e4ff3bfe, 0x0f0afb6f050b0984, 0xbc9f46a7ff0af600, 0x042b0e3d10f1a6ff, 0x66ffbb1eecd3ff0b, 0x0e0b1b050b3bb78b, 0xbbdbecb5ff0b1607, 0x240a0b3ba2741aff, 0xe9ffbc3e8bceff0b, 0x0c0c4901083a6182, 0x050b7900110bbd01, 0x040b4bc8040b597a, 0x3c067b4bff0b46c7, 0x542f0ebc5d0314ff, 0x45ff3c5ffd95ff0b, 0x020b6bc804bcb434, 0xbbaf0572ff0b6600, 0x74130b3b37fc38ff, 0x6fffba52237aff0b, 0x0b0b9dc7043b3eca, 0xff0b8a260e0b8f07, 0x54c281ff3c1d8067, 0xc3faff0b98260ebb, 0x0e3c642e87ffbc21, 0xff0baac9040baf35, 0xfa1c65ff3ad76634, 0xa75dff0bb8010bb9, 0x053a1fa1a4ffbd0e, 0x0d0be534030c0578, 0xff0bd200060bd706, 0x925b8effbce664fd, 0xd24aff0be02703b9, 0x05be40e4aaffbe1b, 0xff0bf272050bf774, 0xa1bca1ffba72559a, 0x35c2ff0c00ca043c, 0x053bc02bebffbc93, 0x020c1b290e0c297a, 0xbbbee415ff0c1600, 0x2479053d22f1a9ff, 0x50ffbc5ab21dff0c, 0x040c3b080e3cb7ac, 0x3cad396aff0c36c8, 0x440012bbfd8d7bff, 0x7aff3b1599b4ff0c, 0x0d0cd97505ba80d4, 0x060c7507050c9506, 0xff0c620d060c6714, 0x503b8dffbc08169a, 0x9bcaff0c700002bd, 0x05bb618938ff3cea, 0xff0c8245050c8768, 0x0d4485ffbb353894, 0x51feff0c90cc043b, 0x043b7ad0fdffbb81, 0x0e0cab00110cb9c9, 0x3b8f3ac8ff0ca62a, 0xb4170ebc5a2d28ff, 0x7bffbb4991cbff0c, 0x050ccb2a0e3cf796, 0xbc79de3dff0cc66a, 0xd4300e3baf4cb6ff, 0x69ff3c675989ff0c, 0x040d217605bc0535, 0x0b0cf300110d01c8, 0x3d7f7fd4ff0cee04, 0xfc01123c077836ff, 0x90ff3d4f3f38ff0c, 0x0c0d13ca04bc9f5a, 0xbce1ec5aff0d0e00, 0x1ccc04bbef8102ff, 0x6aff3c8cfbe8ff0d, 0x040d45300ebb6b6d, 0xff0d327e050d37cb, 0x73f78dffb9e66ba8, 0x0b10ff0d407905b9, 0x0fbad18df7ffbb93, 0xff0d5201070d5700, 0x9dc71bff3b4fb832, 0x1b36ff0d600208bc, 0x0e3c6b6fe2ff3b12, 0x080e53020d0f6622, 0x0f0d9ecb040dd900, 0x0e0d8bc0040d9900, 0xba1dc7d7ff0d8611, 0x94000cbb9261c2ff, 0xdbff3cfa0e6bff0d, 0xbc9cbca7ffb99a09, 0x0db4030b0dc2000f, 0xd5e100ff0daf0107, 0x0107bc398110ffbb, 0xffbccdcf10ff0dbd, 0x0dd4010cbcc178d0, 0xe8c050ff0dcf0b0b, 0xb0ff3ba3e63dff3a, 0x040e21cb04bb8c37, 0x0e0df301070e01c4, 0xbb3a4855ff0dee07, 0xfc020b3b119680ff, 0x80ff3bef1300ff0d, 0x0b0e13c9043c31c8, 0x3ba7f900ff0e0e02, 0x1c030b3c841bf5ff, 0x80ff3c4502c0ff0e, 0x0b0e3c000c3b18ed, 0xff0e3201080e370b, 0xe28c98ff3c00c28d, 0x01073a5f4c40ff3b, 0x00ff0e49030b0e4e, 0xbba1d718ff3b2a1f, 0xda0b0bbc018b40ff, 0x7f9e040e9fc0040e, 0x6c00110e7101120e, 0xc7ff3bb0ceb5ff0e, 0xff0e7a000ebad970, 0xa0991bff3bfee851, 0x8c030b0e91000f3c, 0xcfffbb5416f8ff0e, 0xff0e9a010cbc87f5, 0x0d5173ffb9294000, 0xb5c1040ec31f0ebc, 0xd3cfff0eb0060d0e, 0x0d3ba39701ffbbe5, 0x3c894c4bff0ebe04, 0xccc904384a763eff, 0x00023ba648d5ff0e, 0xff3c14b310ff0ed5, 0x0f2296053bfdb4ec, 0x0ef400080f02c904, 0xe5a260ff0eef0011, 0x0e0b39f8822fffba, 0xff3c072c68ff0efd, 0x0f14cd043b06c357, 0xb0f3bfff0f0f0111, 0x060dbbc81b70ff3b, 0xff3ba67671ff0f1d, 0x0f460b0ebb031066, 0x0f33020e0f38030e, 0xe5ebffbaee655eff, 0x8cff0f4100113b78, 0xba283960ff3b600c, 0x0f5302070f58110e, 0x7d9cffbc0aa732ff, 0x90ff0f61060dbbae, 0xbaea01daff3bf3a7, 0x0fc40002101a2c0e, 0x0f960b0b0fa4000c, 0x0f83cd040f880107, 0x1380ffbb7c5d49ff, 0xe6ff0f91060d3b09, 0xbcad07b8ffbb698c, 0xbda480ff0f9f060d, 0x0011bc716010ffbb, 0x11bc95af10ff0fad, 0xbc0823a8ff0fb601, 0xa49480ff0fbfc904, 0x0008b91db000ffbb, 0x01110fec96051003, 0x5aff0fd9230e0fde, 0xbbdb7108ff3b2078, 0x820b8fff0fe7cb04, 0x030b3c27a875ffbb, 0x30ff0ff901110ffe, 0x3ac99df0ffbb7b76, 0x15050b3c630e10ff, 0xab00ff1010030b10, 0xffbb706b90ffbb7a, 0x102c020d3c841158, 0x7e8000ff1027030b, 0xa0ffbc74b040ff3c, 0x08000000133c7113, 0x01000003e8000000, 0x0000001163000000, 0x0508670007000000, 0x040248c70404068c, 0x1100a06a05012cc1, 0x04003c5305005c02, 0xff00291606002e74, 0x1255e3ffb85c7d79, 0x14c7ff003704053b, 0x05b7b228f2ff3b52, 0xff0049a604004e65, 0xed8e00ffb9dd7bf4, 0x6ba3ff0057ba04b9, 0x0ebb6d03c2ff3aa8, 0x0200720c05008017, 0x3bb403f5ff006d00, 0x7b1c05bbb0f72aff, 0x6eff3c1b25baff00, 0x0500925305baf746, 0xbb31d41dff008d12, 0x9b030bbca396a6ff, 0x2fff3d863d5bff00, 0x0500e8c004bb0720, 0x0800ba720500c879, 0xbaf36c13ff00b500, 0xc382043a78859fff, 0x2aff3ab8948fff00, 0x0400da00093a55fd, 0x3a4f1b2aff00d5bf, 0xe3230e3b08da2aff, 0xe6ffba9b7e94ff00, 0x0b010c000cbb4e52, 0xff00f9000f00fe07, 0x766a12ffbbe5b9c4, 0xabb6ff0107000f3c, 0x0bbba4f328ffbd5e, 0xff0119220e011e0b, 0xb7daa0ffbba4d693, 0xfc21ff012700083a, 0x053c49536effbbed, 0x0b0178770501bc79, 0x12014a0a0b01580b, 0x3c0c384bff014501, 0x53310e3aaadbe4ff, 0xbeffbb872009ff01, 0x0e016a00023c4b1c, 0x3c7127b7ff016519, 0x73c604bb0e4e7dff, 0x2aff3b67d680ff01, 0x06019c0e06bd41d7, 0xff0189340e018e00, 0x700682ffbbc207d3, 0xf1bbff019701113c, 0x08bd38ba2bff3d12, 0xff01a9060e01ae00, 0x138440ff3d2a8bba, 0x4340ff01b70f063c, 0x02bac36280ff3c7f, 0x0b01e4c304020400, 0xff01d1c20401d610, 0x382344ff3bb8970f, 0x81eeff01df7a05bc, 0x0ebb57269bff3d22, 0xff01f1010801f62f, 0xb803c1ffbaa1299f, 0x23feff01ff8a053b, 0x0c3dac50b0ff3a88, 0x08021a0b0b022800, 0xbbf15af0ff021500, 0x23140b3b75ced3ff, 0x44ffbc744fdaff02, 0x0e023ac504bb7592, 0xbb800547ff02351d, 0x4384053c76cf5fff, 0x68ff3c1c50e0ff02, 0x090329190ebc4fc9, 0x080298050b02dc00, 0x06026acb04027802, 0xbceb47caff026514, 0x73020d3a49a777ff, 0xeaff3bed6a3fff02, 0x06028a020d3d2faa, 0x3c9693d8ff028517, 0x930a0ebc075e49ff, 0xdbff3d161ce1ff02, 0x0c02bc140b3c9cb4, 0xff02a90c0b02ae00, 0x6b6a67ff39fd9bf1, 0xae2aff02b7c8043d, 0x0ebbd6da79ff3c2d, 0xff02c9140e02ce18, 0x9aa4dfff3b4aa3d0, 0xf796ff02d7000cbb, 0x0f3c761c3cffbb8f, 0xbca0d64dff02e500, 0x02fb001203098305, 0x8a8d24ff02f67a05, 0x010cbbe9c0adffbc, 0xff3b75b9f2ff0304, 0x031b8405bb8367fc, 0x6ecb79ff03160e0e, 0x030bbb318890ff3d, 0xffbc07c1aeff0324, 0x03958b0538e54722, 0x0343020d0351010b, 0xd38348ff033e310e, 0x2b0e3cb1a4e0ff3d, 0xffbc43d900ff034c, 0x03750208bbb24a00, 0x0362770503678a05, 0xd672ff39e6180bff, 0x62ff03700002ba84, 0x3c275821ffbba2f9, 0x0382000f0387c904, 0x5150ff3c92586aff, 0x6dff0390010c3b0a, 0xbc09b2a7ff3b0d27, 0x03bd220e03dd0112, 0x03aacc0403af010c, 0x5c3cffbb9036a8ff, 0xc3ff03b80008bd17, 0xbd0d4ae0ffbc9655, 0x03ca010c03cfc904, 0xa920ffbae4a0daff, 0x32ff03d8cb04bcf9, 0x3a98240bff3cf020, 0x03ea070b03f8020d, 0xf30208bc02c140ff, 0x20ffbcdc1260ff03, 0xff0401230ebd308e, 0x8102f8ffbd837f48, 0x2a110b06348d05bd, 0x5a0011049e0e0e05, 0x2cb404043a020804, 0xb159ff0427a80404, 0x0bbc1fe4ebff39af, 0x3c12dfd7ff04350b, 0x4c0002bcc4c010ff, 0x7501ff0447070e04, 0x04bc33caabffbcb3, 0x3b71cb3cff0455b3, 0x7e0d0ebc03a589ff, 0x6ba7040470a90404, 0x11ff38a12876ff04, 0xff0479060d3d0bf3, 0x06b819ff3abd7eef, 0x8ba20404900109bc, 0x39ffbc4f2b11ff04, 0xff0499bd043d0178, 0x0da143ff3b863ce2, 0xc6000804e6bb04bc, 0xb3100e04b8140e04, 0xb1ff3bfdbe04ff04, 0xff04c16f04bc8157, 0xf7fa2fffbd25fb58, 0xd3011104d800023a, 0xdcffbba7d8ceff04, 0xff04e1b604bcf6ef, 0x62f154ff3af0180d, 0xfc0002050a0108bc, 0x5605ff04f7190e04, 0x04bab3298bff3bfb, 0xb981937fff0505c6, 0x1c0b0bbc050f61ff, 0xaf4bff0517030b05, 0x083b8bd422ffbac0, 0xbcd0218aff052502, 0xa800083d5f2984ff, 0x56010c0576c10405, 0x4301110548060d05, 0x6eff3ae23015ff05, 0xff0551b204bb59e7, 0x279ba7ff3a51bf37, 0x63070e0568060dbc, 0xbfffbaa19a8dff05, 0xff0571000e3c2a36, 0xe758dfffbb2898d0, 0x83000c0591c2043c, 0x0002bb872086ff05, 0xff3d480926ff058c, 0x059ac3043c2b9dc5, 0xa3010c3d8c2ba8ff, 0xaaff3b2f333dff05, 0x0d05f0140bbc3321, 0x0c05c2010805d006, 0xbd2b9e34ff05bd00, 0xcb000c3c233220ff, 0xa0ffbd813b7eff05, 0x0405e20108bd6e57, 0x3c710d80ff05ddbc, 0xeb0208bc466020ff, 0xd0ffbd430190ff05, 0x110614000cbcdb51, 0xff06010011060601, 0xc7df8effb9a60a4f, 0xd6ffff060f02083b, 0x113beea6fbffbc21, 0xff06210108062600, 0x669e6eff3c13f440, 0xb5d6ff062f060dbb, 0x05bc707ca8ffbb06, 0x0e06c8020d075493, 0x0b06644804068403, 0xff0651010b065603, 0x5b8e55ff3ba62e6a, 0xc5f0ff065f000d3c, 0x043a2d1700ffbbb3, 0xff0671010b06764b, 0xa3bf38ffbd09bd4c, 0xbe78ff067f030bbc, 0x043ae4e7bfffbae9, 0x04069a030b06a8be, 0x3aa6b08cff0695bb, 0xa3000dbc03b122ff, 0xe6ff3bc427e5ff06, 0x0e06bac504bb311e, 0x3a6357baff06b530, 0xc3310e3cb2c992ff, 0x04ffbbbf10bdff06, 0x0b0710050b3bc7e1, 0x0406e2720406f004, 0x37ed5580ff06dd71, 0xeb2d0ebd5ba65bff, 0x71ffba0d22e1ff06, 0x04070200023b7d40, 0x3bebc68fff06fdc7, 0x0b000fbcf3e6f5ff, 0x35ff3c9ef14eff07, 0x0e07340b0bba2098, 0xff07210009072619, 0x302a82ff3a9e7ad3, 0x37d9ff072f0012b9, 0x0bb9e946f1ffba98, 0xff0741c704074614, 0x93cfc9ffba216e85, 0xb3d8ff074f070dbc, 0x0d3a8f67d6ffb9c4, 0x0b07a0000807db02, 0x020772030b078005, 0x3b907d72ff076d00, 0x7b0002baeeccf0ff, 0xb7ffbc4ce313ff07, 0x040792c9043b410c, 0xb85a8822ff078dc6, 0x9bcd043c14b8d5ff, 0xb0ffbbf93767ff07, 0x0e07c4230e3d2d5a, 0xff07b1170e07b622, 0x3f3558ff3b32ac48, 0x74c0ff07bfc904bb, 0x0e3d1e4be4ff3ab8, 0xbd4a27aeff07cd2a, 0x100a10ff07d6ca04, 0x000fbca24560ff3d, 0x9c040803000c0823, 0x5eff07f0940407f5, 0x3cc87d12ff3b1d9c, 0x842cdaff07febc04, 0xa0043c2113eaffbc, 0x28ff081094050815, 0xbd45705effbb7f12, 0x578866ff081ea504, 0xcd04b877eb33ff3d, 0x140e0839c8040847, 0xffb9242aaeff0834, 0x0842060db99d602d, 0x7e9aff3a8c2e2bff, 0x230e08599405b9fc, 0xff3becd5e9ff0854, 0x0862000cbbb158a5, 0x5cc7ff3a58dee5ff, 0x97040ce7010cba3c, 0x0211098f86040aab, 0x690508bf84040903, 0x7d0408918204089f, 0xffb8a62b3cff088c, 0x089a170ebb4a0044, 0x32dbff3b927b28ff, 0x011208b1070ebc85, 0xffbaedb2fdff08ac, 0x08ba080e3c2f6a25, 0x304dffbc6a5bc0ff, 0x000208e30b063ab5, 0x92ff08d0020608d5, 0x3c58cc03ff3a9745, 0xd46ec0ff08de0012, 0x010dbbff3da8ffbc, 0x32ff08f0010808f5, 0xbc5f51f3ff3bb5fc, 0x33f3b2ff08fe0105, 0x10063c88004effbb, 0x6a04092b000c094b, 0x20ff09183b04091d, 0xbc128a6fff3bb8a5, 0x94158cff09260208, 0x2601bcbf1e44ff3c, 0x5cff09383b04093d, 0xbda2b88bff3b693e, 0x191938ff09465e04, 0x0b05b9b85946ff3d, 0x5e0409610208096f, 0xffbb3724ffff095c, 0x096a030b3d34ef0e, 0x3eeaffbd1424a8ff, 0x1c0509810008bca3, 0xff3bb37b40ff097c, 0x098a0107bcb8268a, 0x5053ffbc9c4400ff, 0x88040a1f0105bd61, 0x020709bb030e09db, 0x7fff09a8020e09ad, 0xbd848f1dffbc257c, 0xd234a8ff09b60008, 0x330e3ce4eca7ff3d, 0xb0ff09c8000d09cd, 0x3d7377fbff3cceaa, 0xe7f6f4ff09d61001, 0x000f3ca28a13ff3a, 0x320e09f18b0409ff, 0xff3c1d067cff09ec, 0x09fa1606bc6eae30, 0x2b2affbdb44aa8ff, 0x150e0a11000cbcaf, 0xffba563defff0a0c, 0x0a1a01073ca8b75a, 0x64e1ffbc5da19dff, 0x55050a67010d3b58, 0x12050a391d0e0a47, 0xffbb9d47f1ff0a34, 0x0a429304bca99daf, 0xacabffba0f5fa8ff, 0x000d0a599604bcdd, 0xff3bd41029ff0a54, 0x0a62170ebcedb5e8, 0xd706ff3d94d0cdff, 0x45050a8b46053cad, 0xe2ff0a7807060a7d, 0x3b8d4c5bff3aefcc, 0x540f08ff0a868e04, 0x8b04bc745266ffbd, 0x95ff0a988a040a9d, 0x3c30a2ceffba0d62, 0x342b0bff0aa6000c, 0x8605bb08b465ffba, 0x9b040b3fa3040bcb, 0x9a040adb85050afb, 0xcaff0ac816060acd, 0x3c938cfcffb9455f, 0xa89874ff0ad60002, 0x00023cd3ab61ff3b, 0xdfff0ae8060e0aed, 0xbc55cf31ff3c2cb4, 0xf0d154ff0af6030b, 0x0012bdaf7c4bffbc, 0x00080b1179050b1f, 0xffbb00997dff0b0c, 0x0b1a070dbbdac1de, 0xd09aff3ba8f075ff, 0xa0040b31060dbc82, 0xff3a45d162ff0b2c, 0x0b3a040bba9a25ce, 0x71b2ffbc2a7c9aff, 0x28030b87a4043c7d, 0x190e0b591e0e0b67, 0xff3d337358ff0b54, 0x0b62050bbe0c980f, 0x816bffbcfd81e3ff, 0x000f0b79060e3c6d, 0xffbcb6ef1fff0b74, 0x0b82170ebae88a46, 0x2491ff3c87874eff, 0x010b0bab0b0b3bbd, 0x75ff0b9801080b9d, 0xbc5916d1ffbb84e1, 0xc6c539ff0ba6020b, 0x140b398b5d2fffbb, 0x0fff0bb800110bbd, 0xbb88fb96ffbc9ce0, 0x1e39a9ff0bc60012, 0xca04b9db6616ff3b, 0x1d0e0c17220e0c5b, 0x99040be901070bf7, 0xff3bff80b5ff0be4, 0x0bf21b0eba1615d6, 0xb116ff3a6399e2ff, 0xc4040c09000f3c1a, 0xff3cd22a24ff0c04, 0x0c12c2043bec1911, 0xb195ff3bb20fc6ff, 0x280e0c3bc204bbaa, 0x47ff0c2887050c2d, 0xbc0b0252ffbacec9, 0x9674e6ff0c36310e, 0x8905bcdbab46ff3b, 0xb4ff0c48c3040c4d, 0xba315e3bffbcda88, 0xc225f3ff0c560012, 0x8805bb2357baff3b, 0x170e0c83190e0ca3, 0x91ff0c700d0e0c75, 0x3ab7f451ff3cdd84, 0x2fa95bff0c7e8705, 0x8705bd29fc83ff3d, 0x56ff0c90cb040c95, 0x3a221c3dffbd4368, 0x1cb1eeff0c9ecb04, 0xcb043c44d931ff3d, 0x030b0cb90a0b0cc7, 0xff3b9720b1ff0cb4, 0x0cc2170e3c999b4b, 0xe135ff3bf01a15ff, 0x89050cd9000cbba9, 0xff3c5c7e9eff0cd4, 0x0ce21f0eb9adbb39, 0xc68affbb2d1d42ff, 0x3d050f275d053b85, 0xcb040d7f01080e0b, 0x29010d1b31050d3b, 0x52ff0d08360e0d0d, 0xbc6b944affb9778c, 0x7d6a93ff0d160605, 0x37053b80a4d3ffbb, 0xc0ff0d2802070d2d, 0x3c8a8e04ff3aba34, 0xea56afff0d363901, 0x0b0bbc12cbd8ff3a, 0x12060d5101070d5f, 0xff3d1c0feeff0d4c, 0x0d5a0d0639404455, 0x1a5cffbce2fc0bff, 0x170e0d711405bb4c, 0xff3ae0a707ff0d6c, 0x0d7a0d063cd93c94, 0x1974ffbcbf680dff, 0xb4040dc7b9043c52, 0xab040d9941010da7, 0xffb90ef20bff0d94, 0x0da202083c5f6619, 0xdf50ffbaec4caaff, 0x3d010db90112bc17, 0xff3cc67a15ff0db4, 0x0dc2b604bad60c33, 0xe4ddffb9f8b9f8ff, 0x030b0deb0e0bbd0f, 0xdeff0dd800060ddd, 0xbc1cd349ff3c64dc, 0x084ee3ff0de60b0b, 0x3403bcae0052ff3b, 0xc5ff0df800020dfd, 0x3d14f319ffbc5502, 0x7d84c7ff0e06070e, 0x45053cc60184ffb9, 0xb9040e57c7040e9b, 0xa3040e2940010e37, 0xff3b21b540ff0e24, 0x0e32040bbc90951c, 0xf456ff3a63a6b8ff, 0x40050e4900083c45, 0xffbdd915bdff0e44, 0x0e523e05bc669b5c, 0xe8cbff3cf11c87ff, 0x310e0e7b3f05bb3f, 0x20ff0e68c9040e6d, 0x3d9deadbff3df545, 0x77dfd8ff0e763e05, 0x0107bce81dc0ff3d, 0x00ff0e882b0e0e8d, 0x3c653dfbff3c9593, 0x65b4abff0e96040b, 0x4605bcb29e99ff3d, 0x070d0ec30a0e0ee3, 0xb1ff0eb064040eb5, 0xbc8acd4fffbb7bbd, 0x486d1bff0ebe9204, 0x070b3d4c0ecfff3b, 0x63ff0ed02a0e0ed5, 0xbb2664bbffbcc5b8, 0x5ef4a9ff0ede070d, 0x59053d747098ffbd, 0x0e0e0ef9c1040f07, 0xff3aee50f5ff0ef4, 0x0f024705bb03b2a7, 0xfa02ff3d2325e4ff, 0xbd040f1900023b02, 0xff3c0668f5ff0f14, 0x0f220e0bbbaa70e8, 0x5ab5ff3a31e196ff, 0x220e1047060dbcb5, 0x6b040f770b0e0fbb, 0x000e0f49040e0f57, 0xffbbb15fd5ff0f44, 0x0f52070e3b4255ea, 0x74caff3cf939abff, 0x090e0f690a0ebc90, 0xffbc335714ff0f64, 0x0f72b3043d43acab, 0x6fbbffbd9de1d8ff, 0x140e0f9bb204bc09, 0xd2ff0f88a6040f8d, 0x3d23250fff3c070b, 0xdf29bbff0f96140b, 0x00083c0290a0ffbb, 0xd2ff0fa8b4040fad, 0xba53a2bbffbcef4d, 0xf689a2ff0fb60002, 0x240e3beb18a8ffbb, 0xb4040fe30a0b1003, 0xe0ff0fd0230e0fd5, 0x3d763c3bff39b58b, 0x6e7265ff0fdebb04, 0x0107bd013fe1ffbc, 0x72ff0ff001110ff5, 0xbcf39065ff3d442d, 0x5affcbff0ffecc04, 0x0e0bbd2464c3ff3c, 0x011110192d0e1027, 0xff3b438976ff1014, 0x10220a0bbc8362ee, 0x46b2ffbb32730aff, 0xc20410390002bc72, 0xff3ccefa57ff1034, 0x1042340ebaece296, 0xa06fff3cc623ebff, 0x070e10d7bb04bd95, 0x020e107300111093, 0x96ff106076041065, 0xbc84ec89ff3a0edc, 0x3324cbff106eba04, 0x0002bd21658dff3c, 0x33ff1080a7041085, 0x3daaf49fff3d040e, 0xbe87ddff108e9f04, 0x080ebbe32268ff3c, 0x001110a9070d10b7, 0xffbd8d24e7ff10a4, 0x10b2050bbc6aa6db, 0xcd5cff3ca3019aff, 0x001210c90d0e3d92, 0xff3bf3cc91ff10c4, 0x10d20012bcdf2958, 0xa240ff3abe9fafff, 0x080e111f0e0e3cbf, 0x070d10f1100b10ff, 0xff3b7015eeff10ec, 0x10fa070d3d35994c, 0x4e23ffbbb8fbb8ff, 0xc1041111c3043dd8, 0xff3c062b08ff110c, 0x111a0b0e3d13da78, 0x361eff3cf94b62ff, 0x290e1143001138c5, 0x7fff1130bc041135, 0x3b092628ffbc20aa, 0x237ec4ff113e6305, 0x100bbc435945ff3c, 0x1cff1150090b1155, 0xbca67d0aff3c4482, 0xed4bd7ff115ec004, 0x0013bd20775cffbd, 0x03e8000000080000, 0x1028000000010000, 0x0007000000000000, 0xc70404698c0508c1, 0x6a050123c104023f, 0x5305005c021100a0, 0x1106002e7404003c, 0xffb8016041ff0029, 0x0037060dba24569a, 0xf60bff3a4c9b87ff, 0xb004004eb504bb42, 0xffb824f250ff0049, 0x00574101bb3551c2, 0x161bffbc7a7a25ff, 0x02080080170e3a74, 0x12ff006d29050072, 0xbb9342c1ff3b4abd, 0xb98f2bff007b0d06, 0x0006bcc87a2affbb, 0x7cff008d00080092, 0x3d3b2695ffbc085c, 0x200bb5ff009b1205, 0xc004bcbd722effbb, 0x100e00c8790500e8, 0x96ff00b5000d00ba, 0x39a4e21fff3c9d8f, 0xd1cf9cff00c3000d, 0x0009ba48e115ffb5, 0x35ff00d5bf0400da, 0x3af65585ff3a3a65, 0x8bf209ff00e3230e, 0x000cbb39b0edffba, 0x60ff00f56b050103, 0xff00fe050bbdd6ea, 0x9dcbfaff3c40a26b, 0x1000120115030ebb, 0x55ff3cae156eff01, 0xff011e140b3e0be2, 0x72eca5ffbb3c37f3, 0x6f770501b379053b, 0x410012014f0b0b01, 0x9e8eff013c2b0e01, 0x043cc91a59ffbc6f, 0xb6682e9bff014ac6, 0x6100023b7b6fbbff, 0xb881ff015c010c01, 0x04bb6e6c17ff3aa3, 0x3b50a777ff016ac6, 0x930002bd2e74dbff, 0x80230e01852a0e01, 0x77ffbbeb2a4cff01, 0xff018e0006bd65d7, 0x148ab6ff3b94ac01, 0xa0050b01a5c604bd, 0xfdff3c4b6b29ff01, 0xff01ae7805bc2bba, 0xae1fbcffbc393f00, 0xdb000601fb0002bd, 0xc87a0501cd000801, 0x03ff3ccbdd37ff01, 0xff01d6000cbb439e, 0x005919ffbbf953c6, 0xe8040e01ed000f3c, 0xf4ff3d0169dbff01, 0xff01f6030ebdca13, 0x76107eff3ce20301, 0x112b0e021f020d3d, 0x0432ff020c020802, 0x0e3d4db02fff38f3, 0xbd582f26ff021a2d, 0x310112bc2e1cf7ff, 0xa3faff022c0b0b02, 0x08bb1e7438ff3bd6, 0x3b063ed1ff023a01, 0x4d1b0ebc9a71feff, 0x8f190e02c1010c03, 0x610d0e026f070d02, 0xcfbbff025c030b02, 0x05bab4ea2dff3b5c, 0xbccc0b4bff026a0c, 0x818a05ba3ace84ff, 0x629eff027cc80402, 0x083cfbcfaeffbc4a, 0xbc4f83d8ff028a01, 0xa10006bd636c90ff, 0x3678ff029c001202, 0x05bd03c940ffbd4c, 0xff02ae020d02b352, 0x9472ebff3d4372d8, 0x82d0ff02bc1306bb, 0x043cf2a220ff3da0, 0x0202e901090309c8, 0xff02d6020802db00, 0x532664ff3b904037, 0xc5d3ff02e48a053d, 0x053e190e8cff3d1b, 0xff02f6020902fb83, 0xd257e4ffbc947430, 0x2a58ff03048405bb, 0x043b1286dbff3d3d, 0x05031f0108032dcc, 0x3a69ffb7ff031a89, 0x2889053c40be59ff, 0x63ffbac91110ff03, 0x12033f150ebd17f4, 0xbb514853ff033a00, 0x480009bd4c0458ff, 0xa6ff3cd4cf84ff03, 0x0e03dd060dbbb0b8, 0x0403790c0b03992b, 0xff03660009036bc8, 0x03ef95ff3c42594f, 0xaffcff0374cc04bc, 0x083c1bec9affbbef, 0xff03868305038b00, 0x239109ff3bccf1c3, 0xd1afff0394220ebc, 0x043c71e3eeffbb7f, 0x0b03af2f0e03bdcb, 0xbace7c17ff03aa0b, 0xb8310ebce84b7dff, 0x9dffbb874385ff03, 0x0c03cf0b0b3b6215, 0x3aadbdc5ff03ca01, 0xd807063c338b8dff, 0x85ffbb53b559ff03, 0x0404258a053c32f0, 0x0e03f7ca040405cc, 0x3c45d109ff03f21f, 0x000008bb09bf94ff, 0x1cffbc9c4c19ff04, 0x0b04171f0e3c0b2e, 0x3c9b13e4ff04120b, 0x202b0e3d37d2d6ff, 0x02ffbc87e740ff04, 0x040449280e38c9c9, 0xff0436010c043bc8, 0x8191a9ff3c169561, 0x8c24ff0444cc043d, 0x04ba4baf51ffbcb6, 0xff0456cb04045bcc, 0xbed4ebff3c67d9a7, 0x8bfdff0464090b3d, 0x05baf1300aff3cb7, 0x0e058d110b06858d, 0x0e04bd0e0b05010e, 0x04048f8b04049d04, 0xb99ec659ff048a88, 0x989d043bf8a715ff, 0xa9ffbbca8397ff04, 0x0e04afbc043a716f, 0xbbe741e6ff04aa06, 0xb8030b39a7f65bff, 0x7effbc292040ff04, 0x0e04e100023bd8ab, 0xff04ce010c04d304, 0x6ab6e7ffbbd4a668, 0x6a95ff04dc070e3d, 0x0dbb511dcdffbd6d, 0xff04ee070e04f306, 0x724cebffbc727302, 0x2b43ff04fc00083b, 0x0d3da28a90ff3c6f, 0x0b0529190e054902, 0xff0516b304051b05, 0x552a1dff3c6a285a, 0xf1c0ff05249d043d, 0x0ebb012a2bffbd0f, 0xff05360a0b053b30, 0x510691ffbb7a9255, 0xb8d4ff054400093c, 0x123d23afb2ffbca2, 0x0b055f060d056d01, 0xbbe060fdff055a0a, 0x68050b3b7e4a3eff, 0x8bff3b6b963dff05, 0x0b057f2b0ebb9476, 0x3d1d5440ff057a01, 0x88010cbb7873cbff, 0x44ff3c3c6c69ff05, 0x04060b00083d00d1, 0x0d05b9010c05d9c1, 0xff05a6b60405ab06, 0x4a4ecaffba5d7725, 0x8249ff05b4080e3b, 0x0dbc465e9fffbab2, 0xff05c6070e05cb06, 0x19313fffba91718d, 0xbcb0ff05d4000e3c, 0x043cd0365fffbb17, 0xff05e6000c05f4c2, 0x05ef0002bb733a8c, 0x7465ff3d34083cff, 0x90ff05fdc3043c1a, 0xff0606010c3d7c4e, 0x2137e9ff3b1dae3a, 0x33170e06531d0ebc, 0x20060d0625000e06, 0xb6ffbce0c576ff06, 0xff062eb304bba71d, 0xf805a8ff3b944fba, 0x401c0e0645000cb9, 0xf8ff3a915626ff06, 0xff064e0011bccb82, 0x38d5a0ff3b4dadab, 0x601f0e0665c204bd, 0xd6ff3d26c6dcff06, 0x0c067701113db669, 0x3b1fbf88ff067200, 0x80220e3cc5458fff, 0x9dff3b8df0c6ff06, 0x0d07a59305bcc217, 0x0406d5030e071902, 0x0406a78f0506b540, 0x3c52fc20ff06a220, 0xb000023af6fa80ff, 0x20ff3c7375f4ff06, 0x0506c7010b3c8fb9, 0x3c0bcce7ff06c28f, 0xd0000cbc2601ffff, 0x0cffbba493b8ff06, 0x0406f9a7043a7dab, 0xff06e69e0406eba3, 0x26a695ffba685304, 0x7a8dff06f4040b3c, 0x08bba0fd14ffbce8, 0xff07069105070b00, 0x8bca25ffbb6f226e, 0x5e40ff0714070b3b, 0x0bbbb6ccdbff3c1e, 0x090741070e076105, 0xff072e0011073300, 0xb0c510ffbb85574d, 0xdf26ff073cae043b, 0x09bc28f98affba62, 0xff074e310e075300, 0x3f4cfaffba9c0a5a, 0xd7a7ff075c000f3c, 0x0b3b0172eeffbb03, 0x090777190e07850b, 0x3a8ea1b3ff077200, 0x800012b91e8d02ff, 0x4dffba88fee7ff07, 0x0e07970011b9d1f3, 0x3aabb33eff079219, 0xa0180ebb1609f4ff, 0x28ffbaf54100ff07, 0x080835020d395664, 0x0d07d1050b07f100, 0xff07be230e07c300, 0xc24219ffbb91e5a0, 0x6c46ff07cc0009bc, 0x04bb5528f7ff3b3d, 0xff07de070b07e3c9, 0x1679a6ff3c08c29c, 0x4935ff07ecca04b9, 0x02bb359e70ffbcd7, 0x040807050b081500, 0xbaf4fde5ff0802c9, 0x10070bbcc5905bff, 0x9aff3c9c2980ff08, 0x0e0827c804ba7eab, 0xba2980d2ff08221d, 0x30230ebcf73660ff, 0xb2ff3c26926bff08, 0x0b087d0e0bbbcb8d, 0x0e084f9605085d01, 0x3b8ad415ff084a04, 0x580011ba96a002ff, 0x2fff3b7c0cb5ff08, 0x11086f0012bc2d4c, 0x39a16905ff086a00, 0x78170ebc331d8bff, 0x8cffb940511dff08, 0x0e08a194053780e6, 0xff088eaf04089323, 0xd10d9effbbf79790, 0x9042ff089c00093a, 0x0ebad3afe0ffbc7f, 0xff08ae000c08b31d, 0x26d5a3ffba1703ec, 0x8034ff08bc00083b, 0x053bd987a5ffbc04, 0x040b05c6040d4195, 0x04095db40409e9c1, 0x0608f9770509199d, 0xff08e6340308eb17, 0xd78576ff3930d382, 0x3cc5ff08f4000fb8, 0x0d3b015a96ffbb99, 0xff09068205090b01, 0xaa381bffbc623d5e, 0x9489ff0914030d3b, 0x03b99b12e6ffbba1, 0x0b092f0112093d33, 0xbc2fd191ff092a11, 0x380c063b7509d4ff, 0x06ff3b4fc2b2ff09, 0x04094f060dbcc248, 0x38f5f554ff094aab, 0x58110bbadf6ca6ff, 0x0bff3a2bee14ff09, 0x0109a531033bb035, 0x060977260109853d, 0xbd2d1814ff097200, 0x80270ebbf92a69ff, 0xe7ffbd59d372ff09, 0x0b099701083c5c3e, 0xbc69f49eff09920b, 0xa00002bd32d79dff, 0xa5ffbc1cd4ddff09, 0x0c09c9010c3c3f6f, 0xff09b6b50409bb00, 0x8e2fd5ffbbede310, 0x4640ff09c4000fba, 0x05393b22d6ff3b4a, 0xff09d62b0e09db73, 0xe9227eff3b4867b3, 0x53d8ff09e40d0ebb, 0x023b8d2f7cffbb97, 0x0e0a3580050a7900, 0x0d0a07130b0a1522, 0xbac7fba8ff0a0207, 0x10000c3c8c8ebbff, 0x18ffbaa16f01ff0a, 0x050a277505bc588f, 0x3a196a8cff0a2274, 0x30000fbc65a9b7ff, 0xe7ff3c7cd270ff0a, 0x050a59310ebb4f67, 0xff0a46180e0a4b87, 0x8d8ea9ff3a26671d, 0xba08ff0a54020d3b, 0x0b3ae9ce5bffbc57, 0xff0a6687050a6b03, 0xa0633affbb763a31, 0xa2edff0a74c5043c, 0x053b839880ff3d5a, 0x060aa16b050ac16e, 0xff0a8e6a050a930e, 0x98fe91ffbb35fe2e, 0x4328ff0a9c330e3c, 0x043c57a4e1ff3a0b, 0xff0aae6d050ab3c5, 0xce5203ffbb53bef2, 0x2fe9ff0abc0108bc, 0x05bc57bec9ffbd39, 0x040ad76f050ae584, 0x3abdbee2ff0ad2c2, 0xe02b0e3d3124b2ff, 0xa0ffbb0f139eff0a, 0x0e0af7030b3ba84c, 0xbaf9821fff0af214, 0x00200e3c00a031ff, 0x1aff3a4ba865ff0b, 0x0c0c250108bc03d8, 0x0e0b5500110b9901, 0x040b27070e0b3508, 0xbcab9ebdff0b22c7, 0x30c8043bbfb248ff, 0xdfff3c5e42b7ff0b, 0x070b475505bc86ce, 0xbd92bf47ff0b4201, 0x5073053c86c1b5ff, 0xdbffbb09dd6aff0b, 0x0e0b79c7043a8592, 0xff0b66130e0b6b23, 0x3956c8ffbb8a6d9e, 0x02d8ff0b74260e3c, 0x0e3b9e0479ffbca1, 0xff0b86c9040b8b35, 0xfb456aff3ac1223d, 0x587eff0b94000cb9, 0x053b4057c3ffbbd7, 0x0e0bc1350e0be112, 0xff0bae11050bb303, 0x2f7b08ff3b83cba0, 0x7a7cff0bbccb043c, 0x03bc09bae8ffbd37, 0xff0bce36010bd329, 0x85febdffbcc860ac, 0x6a2aff0bdc05063c, 0x043d84e588ff3e58, 0x0e0bf7c7040c05cd, 0x3bfc92ebff0bf231, 0x008605bd32c460ff, 0xdfff38aaae2aff0c, 0x050c176205b9d4df, 0xbda9687bff0c125a, 0x20320ebd3600ddff, 0xd3ff3b11f556ff0c, 0x0d0cb57505bc4bf2, 0x110c5107050c7106, 0xff0c3e0b0e0c4301, 0xefb6f4ff3c031e75, 0x6d00ff0c4c0306bc, 0x053d3118f0ff3b33, 0xff0c5e0c050c6364, 0x125620ffbb6e5433, 0x8d9aff0c6c000f38, 0x04b915cba7ffbc35, 0x0e0c8700110c95c9, 0x3b79befdff0c8228, 0x900002bc4311c0ff, 0xbcff3d0955ccff0c, 0x0e0ca7220e3bc3fd, 0xbb0aaeffff0ca21f, 0xb06a05bd68876cff, 0x79ffb993b0dcff0c, 0x0b0cfd310e3c2468, 0x050ccf00110cdd10, 0xbba89ea1ff0cca78, 0xd87605bb202e0bff, 0xe2ff3c2f876cff0c, 0x040cef000c39a98a, 0xbc851f2fff0ceac7, 0xf80207bb517398ff, 0xc5ff3bf5b9f2ff0c, 0x0d0d210107bcc3a4, 0xff0d0e81050d1302, 0x0d41e9ff3c16ad80, 0xb0b6ff0d1c7a053d, 0x04b8bb9143ffbcbf, 0xff0d2e020b0d33cc, 0xb130efff3c272dd9, 0x7b06ff0d3c320ebc, 0x0e3b973b98ff3cc3, 0x040e1d01070f301f, 0x050d5f00020d917f, 0x3baea280ff0d5a96, 0x7a030b3b89cc60ff, 0x7069040d7596050d, 0x7bffbbcec140ff0d, 0x3b93bdb0ffbbdb2a, 0x0d87070b0d8c000d, 0xcb24ffbb66f810ff, 0x0d3b5db375ff3c56, 0x0b0db9070e0dd902, 0xff0da696050dab0a, 0xb631bcffbbec3222, 0x8588ff0db40002b7, 0x0e3c82be53ffbc96, 0xff0dc6030b0dcb08, 0x866e30ff3b518d00, 0xa3acff0dd4000cbc, 0x0bb95a6ea8ff3b76, 0x040def050b0dfd0b, 0xb837549fff0deaca, 0xf8040dbb8264ecff, 0x42ff3d2336e0ff0d, 0x040e0f9605b91823, 0x39caafbcff0e0ac9, 0x1800123b427192ff, 0xdbffbb47beceff0e, 0x040ea4c9043a1b16, 0x0c0e49000f0e69c8, 0xff0e3600020e3b00, 0x846dbfff3aff6d3a, 0x97a0ff0e44070ebb, 0x0ebbc2f540ff3bf9, 0xff0e560d0b0e5b01, 0x83de9fff3ab0b51c, 0x41e3ff0e640002bb, 0x0ebad83446ff3bb1, 0x0b0e7f000f0e8d0d, 0xbcb9d6e0ff0e7a03, 0x88070eba4d2c00ff, 0xacffbba39a41ff0e, 0x0c0e9f060dba2f92, 0xba1d912bff0e9a00, 0x6144ff3b599f40ff, 0x060e0eec00023c66, 0x00120ebe020e0ecc, 0xff3af7cf30ff0eb9, 0x0ec796053a1a0090, 0x8980ff3b56d1c0ff, 0x000c0ede110e3b1e, 0xffbb24cf47ff0ed9, 0x0ee70b0bbc78f710, 0x2b58ff3aa5ff63ff, 0xcb040f1001123b8d, 0x43ff0efd060d0f02, 0xbbbb76e0ff3c7afd, 0x808da3ff0f0b080e, 0x00083b161089ff3b, 0xfcff0f1d0b0b0f22, 0x3ad20850ffbafa8c, 0x1cbc20ff0f2b000d, 0x00023a13f7f8ff3c, 0x2b0e0f97000c0fc0, 0x80ff0f45c3040f65, 0x080f57240e3c2c8d, 0xbb1362ecff0f5200, 0x600112bc68b9a8ff, 0xa0ff39939266ff0f, 0x050f80000d3c96db, 0xff0f7601070f7b96, 0x842760ffbb2e7600, 0x9605bbb22c60ffbb, 0x40ff0f8d01070f92, 0xbc188d40ffbc2df4, 0xa00011bbab6e00ff, 0x0111bc8a0f50ff0f, 0x0bbc0136c8ff0fa9, 0xff0fb6c9040fbb03, 0xd42555ffbb8bf400, 0x060dbbe51200ff39, 0xcd040fe8230e101a, 0x00ff0fd5020d0fe3, 0xff0fde220ebb6963, 0x10eeb3ff3bc83ceb, 0x000c3cbba3ccff3b, 0x96050ffe2c0e1003, 0xffbb8fb669ff0ff9, 0x598310ff3b780390, 0x10030b1015050b3c, 0xa8ff3c336ed4ff10, 0x3c8c9dc8ffbc17f4, 0x751b00ff1023230e, 0x00133ad0f2c0ffbc, 0x03e8000000080000, 0x0fd7000000010000, 0x0007000000000000, 0xc70404608c0508a6, 0x6a05012cc104023f, 0x6805005c021100a0, 0x3101002e020d003c, 0xffbafb1697ff0029, 0x003761053ae1da77, 0x2f39ff38608418ff, 0x7e04004e0108bb00, 0xff3ba75de7ff0049, 0x0057050bbbac21df, 0x77e8ffbbf85efdff, 0x000200801d043c54, 0x5eff006d000b0072, 0x3b1953d5ffbba56a, 0xb5ca20ff007b000c, 0x5305bcaed8f9ffbb, 0xabff008d29050092, 0xbc510251ff3b4a8c, 0x00c924ff009b030b, 0xc0043b1fb8f3ff3d, 0x100e00c8790500e8, 0x4aff00b5010800ba, 0x3b6f866affb8b6e0, 0x0e8c1bff00c30209, 0x330ebc001351ffba, 0x4cff00d5bf0400da, 0x3a940b69ff391529, 0x5fc9bbff00e37a05, 0x000cbb745792ff3d, 0x2d0e00fe0002010c, 0xffbc7e2263ff00f9, 0x01076c053c03015a, 0xf5fcff3d6d4b60ff, 0x220e011e0b0b39e3, 0xffbb8c268fff0119, 0x0127140b3acb1cc8, 0x98d9ffbcbf1ffdff, 0x770501b379053b64, 0x001101580b0b0178, 0x4cff01452b0e014a, 0x3cb4fe1bffbc57a8, 0x49a0e1ff01530208, 0x060d3ba6e288ffba, 0x2cff01650008016a, 0xb81eead4ff3b877a, 0x18768dff01730011, 0x1106bce004fcff3b, 0xc304018e0006019c, 0xff3b9fea65ff0189, 0x0197000fbbc35088, 0x1b0bffbd0ad348ff, 0x000c01ae010e3d0c, 0xffbabefb00ff01a9, 0xacf278ff3d0d354a, 0xdbc30401fb00023d, 0xc87a0501cd860501, 0xdeff3c1a773eff01, 0xff01d6010cbb4fdb, 0x154decffbb1a8e83, 0xe80d0e01edc6043c, 0x85ffbcb8c846ff01, 0xff01f60b0b3996ef, 0x39d8b1ffbab5ec07, 0x11080e021f0c0e3c, 0xe2a5ff020c010802, 0x0d3c73ef7cff3b83, 0xbcb710d0ff021a02, 0x3183053d6302e0ff, 0x6bb6ff022c7a0502, 0x05bbe07a06ff3c17, 0x3cd4a171ff023a84, 0x44190ebb476025ff, 0x8f010c02d3060d03, 0x61030b026f8a0502, 0xf1e7ff025ccb0402, 0x053c5236c3ff384d, 0xbabb678bff026a86, 0x8100083b9889afff, 0x8ba0ff027cc90402, 0x08bcd010f0ff3b3b, 0x3c669375ff028a02, 0xb30b0ebcef5367ff, 0xa0190602a5180502, 0x7cff3ba70f6eff02, 0xff02ae0b0b3c75e2, 0xf51158ff37f2fca2, 0xc00c0b02c5cc04bb, 0xecff3bbbc77eff02, 0xff02ce00023c8dad, 0x379d80ff3b53a5e0, 0xe0750503000012bd, 0x78053d34f84bff02, 0xd0ff02edca0402f2, 0xbd8c3a78ffbcbcce, 0x12ed2dff02fb010c, 0x000c3ba54e97ffbb, 0xc9040316ca040324, 0xff3cbf6594ff0311, 0x031f8b053cd547a8, 0xfb0eff3d29c840ff, 0x87050336030b3d8a, 0xff3cd02c70ff0331, 0x033f010c3cec690e, 0x15f7ffbb304259ff, 0x7a0503d47f05bcb4, 0x000d037079050390, 0x36ff035d000c0362, 0x3b3283d3ffbcc4a7, 0x99b49bff036b0009, 0x00023cbd1497ffb9, 0x9eff037d02080382, 0x3cb8e823ffbbd39d, 0xeffde5ff038b0b0b, 0xc9043e10c7efff3c, 0xc80403a67c0503b4, 0xff399132e6ff03a1, 0x03af00123d51242d, 0x532affbd6c1fdcff, 0x0e0b03c60108bc82, 0xff3c276f18ff03c1, 0x03cf010cbcaef875, 0x31deffbb0391d1ff, 0x0b0b041ccb043c80, 0x850503ee860503fc, 0xffbaddb367ff03e9, 0x03f7000cbd2dae92, 0x0b0dffbc0f7d89ff, 0x8205040e00083ad0, 0xffbcb7dcc0ff0409, 0x0417010c3a5c6bcf, 0x9979ff3c061e2eff, 0x000f0440090b3d2c, 0x61ff042d040b0432, 0x3c5a3850ffbc07ea, 0xc7c31cff043b0002, 0x1f0e3c40dc43ff3c, 0xa9ff044dcc040452, 0x3d2841d1ffbb3fba, 0xfa04adff045b0112, 0x8d05bccc4c70ffba, 0x0e0e0584110b067c, 0x040e04b40e0b04f8, 0x880404868b040494, 0xffb98ee5cbff0481, 0x048f01093bdfc995, 0x1517ffbba65656ff, 0x060e04a6bc043ab8, 0xffbbd021b0ff04a1, 0x04afbf0439972afa, 0x03d4ff3c2648f1ff, 0x060d04d80002bb1d, 0x0cff04c5000c04ca, 0x3c7794caff3b835e, 0x42b9c8ff04d3040e, 0x060dbd272481ffbb, 0x52ff04e5070e04ea, 0x3b5a11f9ffbc5a34, 0x574089ff04f30008, 0xb5043d924981ff3c, 0x1f0e0520b3040540, 0xb7ff050da9040512, 0xbbb1dec6ff3b789e, 0xd73882ff051b000c, 0x030b3c76e745ff3a, 0xe6ff052d01110532, 0x3d526a52ffbbeb8f, 0xa563c3ff053b0108, 0xcc043d6b47c8ffbc, 0x000f0556b6040564, 0xffbc2bdc2bff0551, 0x055fbc043cae9e9d, 0x17d5ffbbaec3aeff, 0x00120576000239e9, 0xff3d802d9aff0571, 0x057f070d3d5124a4, 0x55ddff3c1110c4ff, 0xc104060b0008bc91, 0x060d05b0010c05d0, 0x3fff059d170e05a2, 0xbb3f540dff3adbbe, 0xb85c2fff05ab040e, 0xb204bc073082ff3a, 0xd1ff05bd030e05c2, 0xbd0cb60bffbaf9c0, 0xf825eeff05cbb704, 0xc2043c36be2aff3c, 0xecff05dd000c05eb, 0xff05e60002bb5ae7, 0x0b0265ff3d22076c, 0xf8060d05fd010c3c, 0xd1ffbaaf8fefff05, 0xff0606c4043bbbc2, 0xf4ec18ffbcb6a7d4, 0x33260e064a2b0eba, 0x20140b0625230e06, 0xb9ffbcc62822ff06, 0xff062e250e3a3864, 0xe0b510ffbd3a7f2b, 0x40001206450111bb, 0x2eff3c34e070ff06, 0xbb0796b0ff3d035d, 0x0660060d066e0108, 0x69887cff065b000c, 0x2c0ebca9c9e0ffbc, 0xffbcc6f4a8ff0669, 0x06770011bcb6dbf0, 0x5e60ffbc0bf0c0ff, 0x020d079c93053b6c, 0x9f0406cc030e0710, 0x000e069e890406ac, 0xff3ac2f619ff0699, 0x06a70002bb90c364, 0xb598ffbc3b6729ff, 0xa00406be90053c20, 0xffbb559f80ff06b9, 0x06c7a7043daecca0, 0xe366ffbc9d58b3ff, 0x070e06f0140e3c3d, 0x7fff06dd020906e2, 0xbc9cafcdff3b3fe3, 0x8e0e21ff06eb8d04, 0x340eb879e367ffbb, 0x42ff06fd00080702, 0x3b9a4265ffba41fc, 0x66c29cff070b350e, 0x050bbcceef70ff3d, 0xc10407380a0e0758, 0x81ff0725000f072a, 0xb90e7dc4ff3b8180, 0xd5ec07ff07330008, 0x010b3cdb3fb3ffbb, 0xfcff0745000f074a, 0x39a62620ffbc0a17, 0x3999ceff0753320e, 0x0b0b3bd01676ffb9, 0x0009076e190e077c, 0xff3a805e5dff0769, 0x07770012b90eb19e, 0xf4a9ffba7697caff, 0xc204078e140bb9bc, 0xffbb4a7cf4ff0789, 0x0797070d3b9a05ac, 0xbdf9ffb9994332ff, 0x0008081a020d3a76, 0xb30407c8050b07df, 0x1cff07b5940507ba, 0xb9a61a4bffbc096a, 0x21c5a1ff07c39405, 0xcd04ba045cefff3c, 0x47ff07d5c90407da, 0xbbcd95bbff3aabe6, 0x03030b3d1d2760ff, 0xf0080e07f5010808, 0xbdffbc6273caff07, 0xff07fe00023b21a7, 0x70ff9bffbba37100, 0x101d0e0815230e3c, 0xb3ffbb6cebd4ff08, 0xbd0243d0ff3bad34, 0x0842140e0862000f, 0x082f030e0834a704, 0xbed0ff39b0ff3aff, 0x6bff083d050bbd10, 0xbb57a3f6ff3bc147, 0x084f000208549505, 0xa1f8ff3c64de4fff, 0x9cff085d1f0ebac4, 0xbd132406ffbb35e4, 0x08781d0e0886260e, 0xaffc2dff0873cc04, 0x010cba5b54c5ff38, 0xff3aa1bb8aff0881, 0x08980012bb64eef7, 0x85b862ff0893000c, 0x94053ca54ec8ff3b, 0xff3ad6e538ff08a1, 0x0d1d9505bb8709ab, 0x09cec1040aeac604, 0x08fe9d040942b404, 0x08d08d0408de1606, 0xaeff85ff08cb8c04, 0x8e043acc04deffb7, 0xffbc890a08ff08d9, 0x08f00a0e3a91053f, 0x8ad6beff08eb070e, 0x020d3c3377c9ffba, 0xffbb171f48ff08f9, 0x09223303bce24d2e, 0x090f310309140112, 0x9f5bffbbb5f062ff, 0x7fff091d01113d03, 0xba9308ebff3c22e8, 0x092f29050934060d, 0x2881ff3a318d0dff, 0xdfff093d110bbaaa, 0x3b9e962bff3a1abc, 0x096a070d098a0011, 0x0957220e095cbb04, 0x486affbb0402aaff, 0x77ff0965230ebc72, 0x3c315a6cff3a8454, 0x0977000c097c070e, 0x102dffbc258b9eff, 0xd6ff0985230ebdda, 0xbca437ebff3bd9ea, 0x09a0000c09ae2e0e, 0x924293ff099bb504, 0x0b0bba95fb3fffbb, 0xff3ad63e95ff09a9, 0x09c0060db90b1bd6, 0xe9b3c1ff09bb0112, 0x0b0bbb0e603fff3b, 0xffbaf74b00ff09c9, 0x0a5e0002bde54e1f, 0x09fa0d0e0a1a190e, 0x09e7c20409ec0008, 0xfa43ffbb5d913aff, 0xbbff09f5c4043c16, 0x3be4195fffbc0c4c, 0x0a07110e0a0c070d, 0x24edffbc5bd49eff, 0x91ff0a150e0e3ab7, 0xbac8f2c4ff3d4ae1, 0x0a3001070a3e100b, 0xfa630fff0a2b230e, 0x0b0bbb9ec9fbff3a, 0xff3b19b46fff0a39, 0x0a50310ebc79e1cc, 0xa45629ff0a4b6805, 0x320ebbdff47bff3b, 0xff3bc6ec81ff0a59, 0x0aa66f05bd1aca51, 0x0a781d0e0a860011, 0x563c2bff0a731c0e, 0x0108bd0ff405ff3a, 0xff3d00bd89ff0a81, 0x0a9810063b1737da, 0xdf0fcdff0a932b0e, 0x11063b7f91eaffbb, 0xffbc32ca84ff0aa1, 0x0aca82053a9bf5ce, 0x0ab770050abcc504, 0xfa06ff3c924764ff, 0x64ff0ac57705bb93, 0xbb4b0d99ff3cb4e1, 0x0ad702070adc0008, 0x9938ffba95b86eff, 0xf0ff0ae50e0e3bf9, 0xbac11653ff3ac537, 0x0b7e010c0c0a0108, 0x0b1a7a050b3a0011, 0x0b076a050b0c6c05, 0xcf0dffb84cd443ff, 0xebff0b1570053cf3, 0x373d7b87ffbc7b67, 0x0b270b0b0b2cc804, 0x1a57ffbb573cf5ff, 0xdfff0b3500023bab, 0xba52182eff3b3318, 0x0b5089050b5ec704, 0x9b5711ff0b4b060d, 0x310e3ca90270ffba, 0xff3b4898beff0b59, 0x0b70c8043da7542a, 0x0287c1ff0b6b000f, 0x7405bbd37388ff3c, 0xff3b0868baff0b79, 0x0bc67805b8476685, 0x0b98cc040ba6220e, 0xa48cc4ff0b930d0e, 0x00023c0c7ff5ffbb, 0xffbd58caa6ff0ba1, 0x0bb80207bb92c5c0, 0x2c18d7ff0bb3060d, 0x0002bc4b4b2eff3b, 0xffbb8c0c99ff0bc1, 0x0bea7a053c24adaf, 0x0bd7180e0bdc0002, 0x9865ff3c9a63f6ff, 0x68ff0be57905bc48, 0x3d527d8dff3bdb75, 0x0bf77f050bfc0107, 0x895bffbc9e8292ff, 0xd5ff0c057e053a47, 0x38802f5fff3c1646, 0x0c4d060d0c917505, 0x0c1f36010c2d0705, 0x2801113d691430ff, 0xd0ffbc966908ff0c, 0x050c3f64053cdb3e, 0xbb567f10ff0c3a0c, 0x48000f3803a364ff, 0xdfffbc2365d4ff0c, 0x050c712b0eb906d0, 0xff0c5e010c0c6345, 0xd18ff9ffbd63aeb6, 0x936bff0c6c0011bb, 0x043c279d34ffbb0a, 0xff0c7e300e0c83c7, 0x00ada3ffb9b19ee4, 0x25eeff0c8c00023d, 0x053c681e69ffbc3d, 0x0c0cb9c8040cd976, 0xff0ca60b0b0cab01, 0x46e3a7ff3c3c174f, 0x6b72ff0cb4280e3d, 0x043dee9bb4ff3d42, 0xff0cc6220e0ccbca, 0xad6367ffbb69debb, 0x7c26ff0cd40b0bbc, 0x0e3c8383f4ffbb77, 0x0e0cef78050cfd2c, 0xbbee7ca4ff0cea26, 0xf883053bc752faff, 0xfcff3a08b79fff0c, 0x0b0d0f000fbab0f2, 0xbc296e2cff0d0a07, 0x182d0e3c6cc6a3ff, 0x4eff3c9f3930ff0d, 0x070f031f0e3b3131, 0x0b0d647f040df001, 0xff0d3696050d4403, 0x0d3f0002bbc274f8, 0xf788ff3b780980ff, 0x000d0d5f0a0b3b84, 0x48ff0d55070b0d5a, 0x3c41506cffbb4fdf, 0x2bd8ff3b4787f5ff, 0x080e0dac020d3b9d, 0x96040d7e020e0d8c, 0xffbb637b18ff0d79, 0x0d87030b3c96f432, 0x8cf6ffba625070ff, 0xc0040d9e000cbc51, 0xff385b3c1cff0d99, 0x0da7c4043c24c4cc, 0x38e7ff3b8c3155ff, 0x090b0dd00b0bbb1b, 0x6bff0dbd01110dc2, 0x3abfd1f8ffbad95b, 0x1f7c08ff0dcb010e, 0x1d0eb9c699b7ff3b, 0xf7ff0ddd96050de2, 0xba84f32dff3abc47, 0x8beba0ff0deb0e0b, 0x030b3d1b3c90ffbb, 0x020b0e3c030e0e80, 0x02070e0e060d0e1c, 0xff3acb74b6ff0e09, 0x0e17000fbb5e6b35, 0x88b9ff3b817d4aff, 0x010e0e2e01113b00, 0xffb9ac3730ff0e29, 0x0e379004bbc5cd7e, 0xa958ffbbf51d63ff, 0x020d0e600d0e3b86, 0x88ff0e4d080e0e52, 0xbbaf7640ff3b6f27, 0x9107b3ff0e5bc904, 0x0112b9f33fbbffbb, 0xacff0e6d110e0e72, 0x3bbddc09ff3944b8, 0xa4b22cff0e7bc004, 0xc304ba3e2a77ffbc, 0xbb040ea8000c0ebf, 0x05ff0e95b4040e9a, 0x3a3a6673ffba7423, 0xe49b4dff0ea30b0b, 0xb604bbde4b40ffba, 0x113b9f2fb8ff0eb1, 0x3b846534ff0eba00, 0xe300083b3ba5b0ff, 0xd00b0e0ed51d0e0e, 0x61ff3ae74fe9ff0e, 0xff0ede050b39a8b3, 0xf20d70ffbb90d488, 0xf000110ef5010e3c, 0x70ff3b9e9f24ff0e, 0xff0efe060e3c361c, 0x6ef3a8ffb8992f66, 0x2b000f0f42220e3b, 0x18c9040f26030b0f, 0x010b3b346e80ff0f, 0xff3af3f400ff0f21, 0xce2a00ffb941a000, 0xfc50ff0f340111bb, 0xa5ff0f3dc9043be6, 0x3bad90e0ff3b92b3, 0x0f8500020fc02c0e, 0x0f600b0b0f6e000c, 0x083774ff0f5b0107, 0x060dbbb7b410ffba, 0xffbbaa83c0ff0f69, 0x0f80060dbc5502a0, 0xe895d0ff0f7b0112, 0xf0ffbb111880ffbb, 0x070fa90008bc7881, 0xff0f962b0e0f9b01, 0xdce1a4ffbb1eb2c0, 0x93b2ff0fa4280e3b, 0x0bbc0526d4ff3c08, 0xff0fb6030b0fbb05, 0x3976d0ffbb42afe0, 0x020d3c757350ffbb, 0x00ff0fcd030b0fd2, 0xbc53b680ff3c4c6b, 0x0000133c43c2c0ff, 0x0003e80000000800, 0x0010550000000100, 0x5500070000000000, 0x48c70404728c0508, 0xa06a05012cc10402, 0x3c6805005c021100, 0x293101002e020d00, 0x17ffbae1fac8ff00, 0xff003761053acb44, 0xe6bafdff384a1092, 0x497e04004e0108ba, 0x27ff3b96a162ff00, 0xff0057050bbb9aeb, 0x3f38c1ffbbdf88ac, 0x725e0400806c043c, 0x2ce9ff006d000200, 0x01ba7f788dff3b6d, 0xbd9d3d10ff007b34, 0x92010ebc41cc53ff, 0x9341ff008d000c00, 0x053cb8363dffbcaf, 0x3d06163fff009b12, 0xe8c0043bcc9e27ff, 0xba720500c8790500, 0xba4eff00b5000800, 0x043a534f2affbad6, 0x3a9fb18fff00c382, 0xda330e3a4b7599ff, 0x3d8eff00d5bf0400, 0x053a853d67ff3906, 0x3d4968beff00e37a, 0x0c230ebb5be884ff, 0xf9830500fe080e01, 0x85ffbbbbcdc8ff00, 0xff010700083ce57c, 0xd7eacbffbbd5cfce, 0x19050b011e80053b, 0x59ff3b92d651ff01, 0xff01278105bc2e2d, 0x9ea526ff3d4250c2, 0x78000f01bc7505ba, 0x4a020d01581e0501, 0xee79ff0145190501, 0x0c3d31e9a2ffbc33, 0x3b6e8ad1ff015300, 0x6ac3043d2dbe19ff, 0x553fff0165000601, 0x08bcacb885ff3c40, 0xbba92751ff017301, 0x9c73053bd501feff, 0x89060d018e6e0501, 0x36ff397ebf65ff01, 0xff01976f05bb107c, 0xb5be31ff3cd7e6bb, 0xa9230e01ae100bbb, 0xc3ff3cf3d196ff01, 0xff01b774053adf6f, 0x3c8327ffbd444c80, 0xe41f0e02048105bb, 0xd11d0e01d6000901, 0x92ff3ba00751ff01, 0xff01df02093d612c, 0xf6752dffbc83dd3e, 0xf1010801f62b0e3a, 0x69ffbbcff594ff01, 0xff01ff2d0e3b527d, 0x0ef385ff3d053008, 0x1a830502288905ba, 0xec93ff0215c20402, 0x08bbcd6e70ff3bba, 0xba2ee57eff022300, 0x3a090b3a620f5cff, 0xd566ff0235000202, 0x0ebc273c59ff3ade, 0xbb8a98a8ff024318, 0x56190e3ba034a7ff, 0x98010c02dc060d03, 0x6a450502788a0502, 0x7b71ff0265170e02, 0x08bd402c05ffba76, 0xba1273c4ff027301, 0x8a02083c0281ceff, 0xf502ff0285000202, 0x11bb84386cff3c04, 0xbd0af640ff029301, 0xbcca043d0e6d10ff, 0xa98a0502ae0b0b02, 0x6bff3bed8b9fff02, 0xff02b7c804bc1790, 0x74c826ff3d60a334, 0xc90d0e02cecc043c, 0x5fffbab213e7ff02, 0xff02d700023bcd1e, 0x2540f0ff3b3e7ba0, 0xf2750503120011bd, 0x73d0ff02edc80402, 0x053d0e9548ff3d4b, 0xff02ffca0403047a, 0x7c6940ffbc95dffb, 0xe2eaff030d7f05bd, 0x08b80522aaff3c77, 0x040328110b033602, 0xbd43aa6cff0323c9, 0x3100023c0cee24ff, 0xe8ffbd21facaff03, 0x0e03487f05bc0c63, 0xbd6f89b4ff03430d, 0x510b0bbc90072fff, 0xbfff3b4dff33ff03, 0x0f03e678053cbca0, 0x0d0382000c03a200, 0xff036f0306037405, 0x5caaa9ffbd98f3fb, 0xead6ff037d3305bc, 0x023ccbfd19ffbcad, 0xff038f030b039400, 0x94ba89ffbbbedaf3, 0x7fa7ff039d2a0e3c, 0x05bb6ad18cffbcbe, 0x0503b8630503c66d, 0x3a6eb2f8ff03b362, 0xc10b0b3d7c311eff, 0x6dff3b7568b0ff03, 0x0e03d86f05bc4a08, 0x3d8e04a8ff03d32b, 0xe11f0e3cc48551ff, 0xd1ff3d769c75ff03, 0x05042e8905ba9138, 0x0504008405040e88, 0x3bb3021eff03fb7b, 0x09870538fb95e2ff, 0x8dffbbd08affff04, 0x040420220e3c7b60, 0xbcbdbe9bff041bca, 0x29000cbdb7c730ff, 0xb8ff3b997ea6ff04, 0x0e04520011bc6391, 0xff043fc80404442b, 0xd2c786ff3bae6905, 0x2b4aff044d0002bb, 0x0e39b2e503ff3c51, 0xff045f0008046428, 0xbb5a71ffbb15c94a, 0x5143ff046d010c3c, 0x053ba7a56affbb20, 0x0f0557230e06228d, 0x1204c6ca0404d400, 0x0d0498550404a601, 0x3bd1d49aff049304, 0xa1000bbc864a50ff, 0x5fffbbaeca57ff04, 0x0404b84b04bd4c1b, 0xbc56f957ff04b348, 0xc15104bd7fbf00ff, 0x16ff3cd2c234ff04, 0xff04cf220e3acae0, 0x949088ffbcbdd7f0, 0xfcb204051cc804bd, 0xe9010c04ee080e04, 0xf0ff39d10f2cff04, 0xff04f7b004b87e4f, 0xb7bd05ffb94a50f7, 0x09030b050eb4043c, 0x4cff3bd771eeff05, 0xff0517b604bbc7cf, 0x23fbcfff3c82822a, 0x29030b05370d0e38, 0x060dbd5741eaff05, 0xff3cda702bff0532, 0x0549c9043b8fd1fa, 0x2e3811ff0544170e, 0x060dbc8f50c4ff3b, 0xff3c00a16aff0552, 0x05d5280ebb24f73b, 0x0571000f0591000c, 0x3b2720ff056c250e, 0x0008bd1d6f68ffbc, 0xeeff057e250e0583, 0xbb5e1f1fff3d12e4, 0x27d8dcff058c250e, 0x050b3b42fe13ffbd, 0x020d05a7260e05b5, 0xffbd1347d0ff05a2, 0x05b0000fbc82bfcb, 0xe10cff3cb34510ff, 0x000905c70b0bbb74, 0xffbcca2de2ff05c2, 0x05d0c7043bb07d80, 0x9945ffbd1df461ff, 0xb4ff05de8404bbbc, 0x0206020108bd3e57, 0xff05ef001205f400, 0xf7ac7aff3c6778c8, 0xfd29ff05fd000939, 0x043c1c5c17ffbbe1, 0xff060f020d0614c4, 0x09db48ff3de5f8fc, 0x2f04ff061d2a0e3c, 0x053bd18a9cffbc97, 0x0806ad020d073993, 0x0e0652bc04067202, 0xff063f230e064430, 0x0a6691ff398651f0, 0x1bc5ff064d010bbc, 0x04bc575480ff3d0b, 0xff065f000c0664bd, 0xc890b1ff3baca080, 0xd467ff066d040b3c, 0x043b6af83effbb19, 0x040688170e0696c9, 0x3b78596bff0683bf, 0x91010bbc4c8b12ff, 0x1bff3d0dfbb0ff06, 0x0e06a80a0b3c4fdc, 0xbc4b2740ff06a322, 0x0ac0ffbd23bbf0ff, 0x040b06f5050b3ce6, 0x710406c7720406d5, 0xffb986cc1aff06c2, 0x06d0040dbd47d2e8, 0xd13dffbb721a58ff, 0x011106e7290eb997, 0xff3aeb54fdff06e2, 0x06f08e053bf8180c, 0x027affbdd7533cff, 0x010c07190c0b3caa, 0x6aff07061d0e070b, 0x3a320c3dff379dc0, 0x00df5bff0714bf04, 0xc6043a6e6cd0ff3a, 0x3cff0726010c072b, 0xbb83d9b6ffba57f0, 0x328135ff0734c804, 0x020dba897b30ff3c, 0x050b0785000807c9, 0x00020757030b0765, 0xff3b855003ff0752, 0x07609505bad78b22, 0xa799ff3b41eb65ff, 0x020e07770009bc42, 0xff3c170e9bff0772, 0x0780000cbac8088b, 0x5541ffbcf2466aff, 0x000207a9000f3c45, 0x48ff0796c904079b, 0xbc5c73d9ff3a8a70, 0x14c339ff07a4c904, 0x000c3c9cc3d2ff3a, 0xf3ff07b6c80407bb, 0xbaf5d0f4ffbbc825, 0xc7da6fff07c40b0b, 0x0e0b3bc2afe0ffbc, 0x950507f1010b0811, 0x11ff07de000f07e3, 0xba5a354aff3bfd57, 0x01dc3eff07ec0112, 0x0012bc1c46b7ffbb, 0xdaff07fe94050803, 0xba03778aff3b1a4b, 0x36886eff080c170e, 0x940538825218ffb9, 0x00020827230e0835, 0xff3b909cf7ff0822, 0x0830250ebac3a0c0, 0x5691ffbd0c47b3ff, 0x000c08471d0ebc0e, 0xffba057fb5ff0842, 0x085095053b176958, 0x5761ffba670547ff, 0xc6040ccc9505bc4d, 0x0706097dc1040a99, 0x770408adb00408f1, 0x7f05087f7304088d, 0xffb95cb9daff087a, 0x0888010d3ae72c5c, 0x9dc8ffbbef3459ff, 0x9a04089f010c3aef, 0xffb980ebccff089a, 0x08a8080bb9970d66, 0x36c6ffbb3b9b3bff, 0xb40408d135053b2a, 0xe7ff08be320508c3, 0xbd263fecff3c7a62, 0xe3c0d1ff08cc3405, 0x060d3d0476edffb9, 0xeaff08de380508e3, 0x399170abffb905e7, 0x9dc886ff08ec070e, 0xab043aa36c3bff3a, 0x200e0919a9040939, 0x36ff09060108090b, 0x399201d8ff3ad415, 0xb18093ff09140305, 0x000fbc1df89cff3a, 0x8fff0926030b092b, 0x3c59a2e3ff3d2fa6, 0x3cde65ff09340305, 0x0108bab1c32dff3c, 0x070e094f0105095d, 0xffbb6c8c51ff094a, 0x09582a0ebd2abe83, 0xb7c4ff3a69c18aff, 0x350e096f4001bbde, 0xffbcf8fdd3ff096a, 0x097800053d6564eb, 0xfc2fffbc894b32ff, 0x190e0a0d0002bb03, 0x000809a90d0e09c9, 0xc1ff0996080e099b, 0xbb04f73cff3c0f68, 0xfc8a25ff09a4c404, 0x070d3bcd4a09ffbb, 0x82ff09b6180e09bb, 0x3c0bba72ffbbf694, 0x3697d3ff09c40e0e, 0x130bbab4daa4ff3d, 0xc20409df001109ed, 0xffbcd13e79ff09da, 0x09e8060dbb59f056, 0xa90affb9ee884cff, 0x2d0e09ff00113cbd, 0xff3c56ec7dff09fa, 0x0a082a0ebd176989, 0xd912ffbc9b1ab7ff, 0x0e0b0a5574053bb1, 0x5b050a27000d0a35, 0xff3b65a31aff0a22, 0x0a306905bca0a6ba, 0xe73dff3ab751faff, 0xc5040a47060dbaee, 0xffbc87a928ff0a42, 0x0a50220e3b9d714d, 0x3d56ffbbdb26c0ff, 0x02070a790e0e3d25, 0xb3ff0a66c5040a6b, 0xbb933392ff3af45a, 0x7dfa83ff0a740b0e, 0x00083c13c508ff3a, 0x12ff0a86270e0a8b, 0x3ba0806bffba5243, 0xde7736ff0a94190e, 0x0108bab57a35ffbb, 0x00110b2d010c0bb9, 0x78050ac97a050ae9, 0xe5ff0ab6cb040abb, 0x3c63d9feffbab3bf, 0xc12053ff0ac42a0e, 0xc804bca4881aff3b, 0xbdff0ad6280e0adb, 0xbc447868ff3a9627, 0x5218cbff0ae4130b, 0x10053b254c94ffba, 0x2a0e0aff19060b0d, 0xffbd59e660ff0afa, 0x0b08020dbd034808, 0x4250ff3b8f1d92ff, 0x310e0b1f6d05bc77, 0xffba954188ff0b1a, 0x0b2887053bbbbdab, 0xba58ffba90befcff, 0x68050b756a053a72, 0xcc040b4762050b55, 0xffbb290a75ff0b42, 0x0b506305bd400b51, 0x7438ff3d8f9ce1ff, 0xc9040b67ca043c17, 0xff3c5381cfff0b62, 0x0b70cb04bd51b8a2, 0x3030ff3d77832dff, 0xcc040b997405bd80, 0xd9ff0b8672050b8b, 0x3d03a1b3ff3b8eae, 0xba95f3ff0b947105, 0x85053b28cbc8ffbc, 0x3aff0ba675050bab, 0xb708fbd5ffbcb7b4, 0x846b33ff0bb40002, 0x7505bac0d41fff3b, 0x39050c05060d0c49, 0x1c050bd716060be5, 0xffbc15e023ff0bd2, 0x0be0040dbaf2cbb4, 0xe802ffbad45eb8ff, 0x00060bf7cc043be1, 0xffbb1a21a3ff0bf2, 0x0c00340e3c105bb4, 0xc0a7ff3c0895f1ff, 0x00110c29c904bc44, 0xafff0c162f0e0c1b, 0x3c554dccffbbb47e, 0x87be78ff0c24170e, 0x220e3cc52ccfffbb, 0xa1ff0c36180e0c3b, 0xbcc8372fff3c268d, 0x0e301bff0c44010c, 0x7605bbacac0eff3c, 0x010c0c71c8040c88, 0x2bff0c5e0b0b0c63, 0x3d330017ff3c2948, 0x2efa50ff0c6c280e, 0x00023dd6bf54ff3d, 0x0e3dc99928ff0c7a, 0xbbd77edbff0c8323, 0xac2b0e3c0f995fff, 0x9900120c9ecc040c, 0x7affbb3d1367ff0c, 0xff0ca77d053a4333, 0x40b639ff3b9211ad, 0xb90b0b0cbecd04bb, 0x25ff39ea232fff0c, 0xff0cc7340ebcb9ad, 0x5c8924ff3c4c1665, 0xd501120ee81d0ebb, 0x2095040d64c3040d, 0xf200020d00030b0d, 0xb418ff0ced010b0c, 0x0ebc25ae19ff3b2b, 0x3b62678bff0cfb02, 0x12000e3c3a3e69ff, 0xf8feff0d0d00120d, 0x0e3c1bfa45ff3caf, 0x3c48b5f3ff0d1b02, 0x44010c3b36725fff, 0x31010b0d36000f0d, 0xb5ffb88ff1beff0d, 0xff0d3f080ebc5428, 0x08624effba0ee3f4, 0x51bb040d56050bbc, 0xddffbc82d594ff0d, 0xff0d5fbd04bc4455, 0x8a4f40ff3b98d328, 0x8c00020dac070dba, 0x79070e0d7ec6040d, 0xbcff3ba98afdff0d, 0xff0d87110ebc1676, 0x10efb0ffba12a4aa, 0x99c9040d9e080e3b, 0x5affba1cc152ff0d, 0xff0da70b0e3b8074, 0xf4a33fffbbea2842, 0x9830ff0db5c804b9, 0x030b0dc796053cac, 0xff3b367348ff0dc2, 0x0dd0010b3b913560, 0x5fe0ff3c2152a8ff, 0x96050e65020b3bfe, 0xbc040e0100080e21, 0x3fff0deeb3040df3, 0x3bf4897bffbb87bf, 0x29fdd0ff0dfc000f, 0x000cba8accc0ffbc, 0x55ff0e0e030e0e13, 0xbb4fd0f8ffb9b9a1, 0x0d93abff0e1c010c, 0x000fbba4d560ff3b, 0x0d0e0e37130e0e45, 0xff3acafee5ff0e32, 0x0e40140ebc4974c0, 0x29abff3c9c6da0ff, 0x01070e57030e3b1f, 0xff3aec7d9cff0e52, 0x0e60000cb9955b80, 0x8a20ffbbaacd56ff, 0xc4040eadc8043b88, 0x7f040e7f90040e8d, 0xff38565aefff0e7a, 0x0e88020ebc0809f9, 0x6f2bff3c0a5a9bff, 0x000f0e9f000c3aa8, 0xff3d0b22d6ff0e9a, 0x0ea8030bbc97ea6b, 0x9c40ffbbdf4a2bff, 0x010c0ec80b0ebcc9, 0x95ff0ebe01070ec3, 0xbae25e60ffbc2d99, 0xda000f3c8504e0ff, 0x338aff0ed500080e, 0x0c3bac2f1affbba1, 0x38054136ff0ee300, 0x9c00023bd6a185ff, 0x2f2b0e0f61000c0f, 0x0a030b0f0f000d0f, 0x2640ff0f05c3040f, 0xffbc2b4870ff3c1c, 0x0f21230e3cbdeac0, 0x312c6dff0f1ccd04, 0x960539599266ffbc, 0xffb9c122e9ff0f2a, 0x0f4ac0043b93930b, 0x0f40030b0f459605, 0x9c00ffbb492300ff, 0x05bb9ea740ffbb19, 0xff0f5701070f5c96, 0x001c80ffbc1bb500, 0x0012bb989580ffbc, 0x0bbc5fa820ff0f6a, 0x0b0f80220e0f8e03, 0x3adb8e00ff0f7b01, 0x89c904b92e4000ff, 0x00ffbb6d6800ff0f, 0xff0f97cb04b9be28, 0xd153b0ffbbb98c00, 0xd6000c10119605bb, 0xba00080fc80e0b0f, 0x64daff0fb500110f, 0x0bba89f3ddffbc4f, 0xbac5e13bff0fc305, 0xd100123c934264ff, 0xb0ff3d0bb680ff0f, 0x0e0ff1020d3c4e48, 0x3b226380ff0fe322, 0x73c880ff0fecca04, 0x050b3b8d2d60ffbc, 0xe0ff0ffe000f1003, 0xbc02c47fff3c493d, 0x8089d8ff100c060d, 0x030b3d04fd8cff3c, 0xcb041039cd041047, 0x00ff1026000d102b, 0x3a3e6800ff396ea4, 0xe555f0ff10340112, 0x00113aafb500ff3a, 0xffbab70fa0ff1042, 0x10500012bb691350, 0xa8d0ff3cac3d08ff, 0x0008000000133c4a, 0x0001000003e80000, 0x00000000101f0000, 0x8c0508d300070000, 0xc1040248c7040472, 0x021100a06a05012c, 0x020d003c6805005c, 0xfbff00293101002e, 0x3ab6f06bffbacb61, 0x5b34deff00370f06, 0x0209ba989770ffb7, 0xd2ff0049b304004e, 0x3b6698e5ff3b1f45, 0x01ae22ff00578504, 0x170ebc60781dffbb, 0x3504007202080080, 0xffba9c9aa2ff006d, 0x007b0d0e3bada054, 0x5155ffbcb34540ff, 0x020800925305ba35, 0xffbc1e011aff008d, 0x009b030b3d290c34, 0xa746ff3d5e9513ff, 0x790500e8c004bac0, 0x2b0e00ba010b00c8, 0xffbb8a4914ff00b5, 0x00c3bc043c14d0b0, 0x35e5ff38acd8f8ff, 0xbf0400da330e3ac3, 0xff38f1a140ff00d5, 0x00e3020b3a6fd538, 0x18f6ff3d5963afff, 0x070d010c1c0ebb25, 0x05ff00f9170e00fe, 0x3c859aa4ffbb7c44, 0xdcd41eff0107170e, 0x6c05bd36a6a0ff3b, 0x1bff01192b0e011e, 0xbc98d379ff3d3c22, 0xf1165bff01278005, 0x790536cc9b33ffbb, 0x0b0b0178770501bc, 0x0208014a030b0158, 0xff3a814a18ff0145, 0x015370053c1ff106, 0xc91bffb9923745ff, 0x6205016a2f0ebc02, 0xffbabf7f9eff0165, 0x0173300e3bc0a193, 0x6792ffbcd3c468ff, 0x120b019c0002baa8, 0xbcff01890108018e, 0x3c1b952bffbb868b, 0x786d1fff01970208, 0x030bbd0ff69dffbb, 0xcbff01a90e0e01ae, 0x3ca0c96bffbc83af, 0x5bf1edff01b7280e, 0x0002bcb46542ffba, 0x140e01e4c3040204, 0x78ff01d10e0e01d6, 0x3d0149e4ffbb7401, 0x0728c3ff01df180e, 0x2f0eb98e0e50ffbd, 0x07ff01f1810501f6, 0xb98611c1ff3b12dd, 0x5a7ac6ff01ff8a05, 0x000c3d9b06dcff3a, 0x260e021a280e0228, 0xffbb541a98ff0215, 0x0223060dbc953281, 0xde98ff3bc9c297ff, 0x1d0e023ac504bc47, 0xffbb6ce85bff0235, 0x024384053c5efd1d, 0xa18cff3c05b648ff, 0x060d0356190ebc37, 0x01080298c80402dc, 0x1906026a000f0278, 0xffbd08cbc3ff0265, 0x0273000cbae0c03d, 0xa4abffbb3a678eff, 0x0111028a170e3b85, 0xffbb7a9a60ff0285, 0x0293010c3c1c554d, 0xb7d4ff3d2564d1ff, 0x0d0e02bc170e3d82, 0xfeff02a9030b02ae, 0xbabe9aebff3b568b, 0xb59429ff02b7000c, 0x02083bfe85eeffba, 0x99ff02c9010802ce, 0xbcf0ad41ff3bb3f1, 0x01f6e6ff02d7000c, 0x0012bd8e17eeff3b, 0xc80402f275050312, 0xff3d371b70ff02ed, 0x030478053d005328, 0xd261e0ff02ff7605, 0x010cbd4c3422ff3b, 0xffbb082256ff030d, 0x0336000c3b90d5b9, 0x0323c90403288705, 0x16d8ff3c9964f4ff, 0x7dff0331140b3cad, 0x3cf8cd20ff3d3626, 0x0343c9040348030b, 0x31c2ff3cb8c800ff, 0xacff0351070e3cd2, 0xbc59b647ff3d362e, 0x03a27a0503e67f05, 0x0374000d03827905, 0xa46328ff036f000c, 0x00093b214218ffbc, 0xffb9ce44f8ff037d, 0x039400023ca92d51, 0x5093b0ff038f0108, 0x0b0b3c3bb745ffbc, 0xff3cd38473ff039d, 0x03c6c9043e01be59, 0x03b3c80403b87c05, 0x2d90ff370aa750ff, 0xf5ff03c1060d3d3c, 0xbd62e329ffbc8109, 0x03d3230e03d80108, 0xb598ffbd459424ff, 0x1eff03e1010cbc06, 0x3c649bceffbaf448, 0x040e0b0b042ecb04, 0x03fb850504008605, 0xb4f9ffbac290aaff, 0x1aff0409000cbd19, 0x3ac9a09bffbc058e, 0x041b800504200008, 0x601dffbd5c93d7ff, 0x62ff0429010c390e, 0x3d1cff4bff3bf331, 0x044400020452090b, 0x91465bff043f0011, 0x000f3cc7a5bbff3c, 0xffbb39f6c0ff044d, 0x0464220e3c2dc4ac, 0x8a3f37ff045f0002, 0x2a0e3cfd2076ffbc, 0xffbbbf86bcff046d, 0x06a98d05b9bf64d5, 0x050a0e0e0596110b, 0x04a6040e04c60e0b, 0x0493000904988b04, 0x5d4eff3ab6f480ff, 0xc2ff04a1030ebb16, 0xbc818cdaffba88eb, 0x04b3060e04b8bc04, 0xd946ffbbbcf23cff, 0x2bff04c10209397e, 0xbbc20ff5ff3bdfc5, 0x04dc040e04ea0002, 0xbba176ff04d7ac04, 0x070e3da29beaffbb, 0xffbd451fb2ff04e5, 0x04fc060dbb0af046, 0x1aaa5eff04f7080e, 0x000c3bfe0cd3ffbc, 0xff3c579fadff0505, 0x0552bb043db16560, 0x0524140e05320008, 0xd2652bff051f100e, 0x8a04bc69679bff3b, 0xffbcc892daff052d, 0x054400023aeafad2, 0x8da4e4ff053f0111, 0x1d0ebcde65c9ffbb, 0xffbae518e8ff054d, 0x057601083ca0cb7a, 0x0563190e05680002, 0x655bff3be9988fff, 0x57ff0571010cbaa9, 0xbc0fecdeffb9eb03, 0x0583030b05880b0b, 0x8b77ffbab3e712ff, 0xe8ff0591060d3b80, 0x3be481b3ffbd2b6d, 0x05e2c10406260008, 0x05b4050e05c2010c, 0xacf9cdff05afb304, 0x060d3c462bc7ff3a, 0xffb924b87eff05bd, 0x05d4b204bbfc43d0, 0xdffbc0ff05cf030e, 0x090ebcfd3af5ffba, 0xff3cbf7430ff05dd, 0x0606c3043b89b4ae, 0x05f3060d05f80d0e, 0x65cbff3c797950ff, 0x49ff060100113d5d, 0x3d1713a4ffb90c03, 0x06131c0e0618010c, 0x8195ff3bc15a12ff, 0xe1ff0621c504ba67, 0x3806e295ffbcec6c, 0x064e170e066e1d0e, 0x063b97040640000e, 0xdedbffbc49bfa8ff, 0xefff0649b3043b84, 0xba236c8cff3b8ad0, 0x065b01110660c704, 0x3c10ff3c1a8375ff, 0x01ff06690012bc4d, 0xbd05c516ffbbda9b, 0x067b00020689220e, 0x84c9043da40522ff, 0xa6ff3c3ad173ff06, 0x12069b060d3d2dd8, 0x3c530a42ff069601, 0xa40012bcb0e820ff, 0x98ffbb30bcf3ff06, 0x0d07c09305bd9352, 0x0406f90208073402, 0x0406cb1d0e06d9be, 0x3a17cef2ff06c6a0, 0xd4230ebb03fd9dff, 0x68ff3b8a8d65ff06, 0x0406ebc604bbc114, 0x3a3756edff06e6c2, 0xf4310e3c8d0e40ff, 0xfaffbbdd55a4ff06, 0x0e071dc9043bc5f5, 0xff070a170e070f22, 0x4b9970ffb9cabbf7, 0x7455ff0718050b3c, 0x0b3d13b940ff3c0a, 0xff072a220e072f0a, 0x135c54ffbc36d680, 0x050b3ccf09a0ffbd, 0xc104075c0a0e077c, 0xb5ff07499004074e, 0x3aedc204ffbabbfc, 0x65d305ff0757060d, 0x010bbc225ef5ff3c, 0x94ff0769000f076e, 0x39a4b775ffbbf6c3, 0xd150e4ff0777310e, 0x0b0b3c1bed36ffb9, 0x00090792190e07a0, 0xff3a63cdbfff078d, 0x079b0012b910de0c, 0xc493ffba6e4a88ff, 0xc50407b2140bb9cb, 0xffbb402b4aff07ad, 0x07bb070d3c02b049, 0xfda6ffb96aabeeff, 0x00080847020d3a47, 0x030b07ec050b080c, 0x33ff07d9000207de, 0xbac1fd1aff3b6ff6, 0x2f5a3dff07e70002, 0x01113b3755aeffbc, 0x7dff07f9000d07fe, 0x3a2361cfff3c97e0, 0xb4cd7bff08070009, 0x230e3beb7435ffba, 0x220e0822030b0830, 0xff3b04684eff081d, 0x082b1d0e3cbdc4bb, 0xf909ffbb52fb7dff, 0x3eff0839c9043ba3, 0xff0842ca04bd34a3, 0x7137c0ff3cf6a9a0, 0x6f0a0b088f000fbc, 0x5c1f0e0861230e08, 0x70ffb9da8d58ff08, 0xff086a0002bcf90d, 0xa19086ff3d5a4d98, 0x7c95040881a504bb, 0xfbffbc6a5727ff08, 0xff088ac4043d306a, 0xb805b6ffbb7f2418, 0xa5c80408b3cd043b, 0xfbbbff08a0170e08, 0x0db9db3359ffb91f, 0x3a832806ff08ae06, 0xc59405b9fd29bdff, 0x14fcff08c0000908, 0x0dbbd55847ff3bc9, 0x3b33d843ff08ce06, 0x4a9505bad4f204ff, 0xfbc1040b17c6040d, 0x2b9d04096fb40409, 0xfd8d04090b160609, 0xc6f5ff08f88c0408, 0x043ab533beffb719, 0xbc76962fff09068e, 0x1d0a0e3a81a36eff, 0xdedeff0918070e09, 0x0d3c1f5c20ffba8e, 0xbb0fe982ff092602, 0x4f3303bcccdb6dff, 0x3c9e040941000209, 0x2effbcd247c4ff09, 0xff094a0b0bbad8b7, 0xefafbeff3c008e5f, 0x5cab040961060d3c, 0x6eff391c590dff09, 0xff096a110bbac257, 0x8cb7e4ff3a061e26, 0x97070d09b700113b, 0x84220e0989bb0409, 0xb7ffbafe4981ff09, 0xff0992230ebc5bff, 0x1d4398ff3a4d7950, 0xa4000c09a9070e3c, 0xdeffbc16f697ff09, 0xff09b2230ebdc480, 0x94aaf3ff3bbfe6f3, 0xcd320309db3303bc, 0x3c06ff09c8340e09, 0x0c3a9b0eedffbbd1, 0x3d4e030cff09d601, 0xed5c053babd1c9ff, 0xdfd5ff09e8060d09, 0x05bbfca685ff3911, 0x3c90b1a4ff09f65d, 0x8b00023a1c2fa1ff, 0x270d0e0a47190e0a, 0x14c2040a1900080a, 0x11ffbb70c4beff0a, 0xff0a22c4043bfd59, 0xb8c2aaffbbe34916, 0x340f0e0a39070d3b, 0xf5ffbc325240ff0a, 0xff0a42140e3a8875, 0x4d41c2ff3acd94c8, 0x5d01070a6b100b3d, 0x93a3ff0a58020d0a, 0x0bbb614774ff3c08, 0x3b0f93b7ff0a660b, 0x7d310ebc5b7941ff, 0xfe75ff0a78220e0a, 0x053b4d2eeaffbc40, 0xbd08ca37ff0a864f, 0xd36d053c1c5623ff, 0xa5130b0ab3010c0a, 0xdce6ff0aa00f0b0a, 0x0b3cf0c41fff380b, 0xbd5661bfff0aae14, 0xc5230ebbd02fe4ff, 0x6810ff0ac0170e0a, 0x0ebc15125dff3b79, 0x3d54ba20ff0ace27, 0xf7060d3bf5f01dff, 0xe400080ae9080e0a, 0xd4ff3c6fb28aff0a, 0xff0af20b0e3b5bb5, 0xb718cbffbcbb475c, 0x0480050b09230eba, 0x73ff3a2f6adaff0b, 0xff0b12010c3a83e3, 0xab76dbff3c1eb2f9, 0xab1f0e0c3701083d, 0x471d0e0b67cc040b, 0x34ca040b391c0e0b, 0x63ff3995e8efff0b, 0xff0b42000c3b7451, 0xc3fd7fff3ba15fc5, 0x540b0b0b59060dbc, 0xf8ffbc61a939ff0b, 0xff0b62000cbdb931, 0x34afe1ff3c6ec7f0, 0x7d00120b8b0b0e3d, 0x84ddff0b78080e0b, 0x0c3d293e6aff3b2e, 0xbb674f54ff0b8601, 0x9d1d0e3c7a9e2dff, 0x61a5ff0b9800110b, 0x0d3b089d15ffbbc3, 0xbd178d8eff0ba606, 0xf37905bb597cf8ff, 0xc5060d0bd302070b, 0xe6c3ff0bc078050b, 0x12bbfb21c6ff3a26, 0xbb62eb42ff0bce00, 0xe57405bcd4b198ff, 0x5bf1ff0be072050b, 0x053cba58aeff3a94, 0xbd12b836ff0bee75, 0x172d0e3acff93dff, 0x047a050c097f050c, 0xd3ff3ccee768ff0c, 0xff0c12cc04bb8459, 0xa65d3bff3aeb5351, 0x24c7040c290b0b3b, 0x2fff3afdd8ceff0c, 0xff0c327a05bb53f6, 0xb8d3ecffbd1fad8c, 0x83060d0cc77505bb, 0x5514060c6307050c, 0x2913ff0c5003060c, 0x08bcde1c38ff3caa, 0xbb94e4d8ff0c5e02, 0x7564053cd4780aff, 0x0dd7ff0c700c050c, 0x0f389580bbffbb17, 0xbc10a230ff0c7e00, 0xa7c904b882085fff, 0x94280e0c9900110c, 0xe6ff3b8a2d1eff0c, 0xff0ca20b0bbc32f0, 0xd77965ff3aec1e35, 0xb4cb040cb9220e3c, 0x1bff3b65a18dff0c, 0xff0cc26a05bd0246, 0x080c47ffba056a9b, 0xef0e0b0d0f310e3c, 0xdc000f0ce17b050c, 0x2dffbc85a27cff0c, 0xff0cea010c3b0616, 0x49769effb98883d2, 0xfc79050d010207bb, 0xccff3be63d9bff0c, 0xff0d0a000c38afff, 0xa6bde2ffbb456963, 0x1cc7040d2a020dbc, 0xcc043daec9c8ff0d, 0xff3af6593cff0d25, 0x0d3c000f3d06c9ab, 0xa82daeff0d37030b, 0x01073b0851cdffbd, 0xffbb8c115dff0d45, 0x0f39220e3c38eb6a, 0x0dbe00080e2f020d, 0x0d7e000f0d83cb04, 0x0d6b110e0d70c004, 0x23e4ffb9f098e8ff, 0x45ff0d79000cbb8a, 0xb89466dbff3cc641, 0xa7000fbc88b95fff, 0x9402070d99030b0d, 0x60ffbbc0dc40ff0d, 0xff0da20107bc3b43, 0xa6a0d0ffbcb0ec30, 0xb496050db9010cbc, 0xf0ff3b3ed040ff0d, 0xbb8891b0ffbaf563, 0x0de6c4040dfdcb04, 0x0dd3070e0dd80107, 0x5f00ffbaff8aabff, 0x80ff0de1020b3ac7, 0x3c0a04c0ff3ba853, 0x0df301070df8030b, 0xa3e0ff3c3d80c0ff, 0x0c3b1a0f80ff3c05, 0x080e130b0b0e1800, 0x3bcb354eff0e0e01, 0x76c0ff3b9f9720ff, 0x030b0e2a0107ba19, 0xff3b18df00ff0e25, 0xf13700ffbb93e5d0, 0x72000f0eb6010cbb, 0x4dc7040e5bcb040e, 0xfaefff0e48bd040e, 0x0e3b97d56bffba58, 0xbbffb859ff0e5617, 0x6d96053c5a12abff, 0x9aa6ff0e68030b0e, 0xff3c1f2c87ff3c6e, 0x0e96080ebb79a600, 0x0e83030e0e88070b, 0xeb92ffb8bf8db0ff, 0x00ff0e91c804bb52, 0x3b1986efff3989d1, 0x0ea3090b0ea8110e, 0xee6aff3b089370ff, 0x3fff0eb10108bb40, 0xbb819fbcff3a84d6, 0x0ed5b9040ef5bd04, 0x569f38ff0ec7010b, 0x4edcff0ed0030bbc, 0x0bbc5aaf04ffbcbc, 0xff0ee201070ee703, 0x05a010ffbc16cb04, 0xa25cff0ef0050bbc, 0x083b898ad8ffbc82, 0x0e0f0bc9040f1900, 0xba2c8649ff0f0603, 0x1401113c5815a2ff, 0xbcffbb6122caff0f, 0x120f2b020b3c8cc4, 0x3b26e680ff0f2601, 0x34030bbb9459a0ff, 0x80ffbc8fb6e5ff0f, 0x0210082c0ebab0f3, 0x040f80000c0fa000, 0x0d0f5b000f0f60cd, 0x3aa365e0ff0f5600, 0x33a8ffbb8050d5ff, 0x0b0b0f729605bc97, 0xff3b5a9de9ff0f6d, 0x0f7b0012bc0616b0, 0x3d80ffbc5b28b8ff, 0x01120f9b060d3a60, 0x04bbbc64f0ff0f8d, 0xbb55aa00ff0f96c9, 0x4a80ffb9ab2000ff, 0x00080fdf0107bc49, 0x2b0e0fba96050fc8, 0xffbb43143cff0fb5, 0x0fc3000f3c3a0770, 0x3ae8ff3a14c1a0ff, 0x030b0fda050b3bd0, 0xffbb255300ff0fd5, 0x3f7410ffbb1d0610, 0xecc7040ffa280e3c, 0x240e39caa400ff0f, 0xff3c80bd00ff0ff5, 0x1003c0043bef9b4d, 0xdc80ffbc450248ff, 0x030b101a020dbb1c, 0xff3c30eb00ff1015, 0x31e8b0ffbc4599c0, 0x000008000000133c, 0x000001000003e800, 0x0000000000101600, 0x698c0508d3000700, 0x2c8a050248c30404, 0x5cad0400a0b10401, 0x2eab04003c021200, 0xd888ff0029a00400, 0x0d39b6c2ecff3756, 0xbae50e32ff003706, 0x4e5e04bafb69b0ff, 0xc5c2ff00490d0e00, 0x04bc1d10e2ff3be3, 0x3d8433e0ff00576d, 0x8088053c40eb8dff, 0x6d070b0072b00400, 0xbbffbbe58374ff00, 0xff007b080e3aee32, 0x08828dff3bf98064, 0x8db00400920002bc, 0x9fffbcb8e7eeff00, 0xff009b0111bdbbbf, 0x22d82fff3b702b7e, 0xc8350e00e80906bd, 0xb5b20400ba850500, 0xdfff3aefd98fff00, 0xff00c3020db94dfa, 0x8b8ee1ffb97dc4fa, 0xd5bb0400dabf04ba, 0x01ff3991387eff00, 0xff00e36105bc66d0, 0xdaa325ff3b9d9309, 0xfe000f010cb5043c, 0x5b68ff00f9b30400, 0x043bdb4850ffbc7e, 0x3cd88fcfff0107b2, 0x1eb6043a8bdb46ff, 0x2325ff0119030b01, 0x043c028ec9ff3d9b, 0xbb26458aff0127bc, 0xbc070e3b32c1e0ff, 0x5800080178ae0401, 0x45a304014a000901, 0xd6ff3ad51695ff01, 0xff01539f043d3233, 0xf339ffffb9e93d63, 0x65010c016aa704bb, 0x63ffbac8acd1ff01, 0xff01730108bd12c5, 0x68bb29ff3d4f6c17, 0x8e060d019c00093c, 0x7a79ff0189010801, 0x0ebd150981ffbdcc, 0xbcf0b373ff019703, 0xae000f3bd51b6aff, 0xdc1dff01a9b00401, 0x0cbd012dc8ffbe1f, 0xbcbcc92cff01b700, 0x040a0e3c3f2a2eff, 0xd6080e01e4000902, 0x3992ff01d1000f01, 0x11bbb3ffa1ffbd18, 0x3d457724ff01df00, 0xf600023c8243b2ff, 0x711bff01f1001101, 0x053d217427ff3c2a, 0x3c882e85ff01ff8b, 0x280b0e3b991110ff, 0x158b05021a001102, 0x22ff3cfa9548ff02, 0xff022300093d8b92, 0x9e0930ffbd3ff996, 0x350a0b023a02093c, 0x78ffba678153ff02, 0xff02430d0e3b8667, 0x738c61ffbd93ecfe, 0xdcc404036800093c, 0x78011202987d0502, 0x650b0b026a010c02, 0xf1ffbd33c070ff02, 0xff0273220ebb8e62, 0x90e812ffbcddf792, 0x85000f028a0002bd, 0xd8ff3d61d4b3ff02, 0xff02930111badb4e, 0x94ea60ffbc8f7657, 0xae030b02bc000fbd, 0xd940ff02a9020d02, 0x02bd710bc8ff3c48, 0x3d9338d7ff02b700, 0xce88053d2b462cff, 0x69d0ff02c92a0e02, 0x0ebd8a878effbc0d, 0xbb4d7afcff02d71d, 0x24280e3d94011eff, 0xf6070d0304170e03, 0x2801ff02f18a0502, 0x08bc0fdcd1ff3896, 0xbd7e2282ff02ff01, 0x16cd04bcaf5a0fff, 0xfbf7ff0311200e03, 0x02b8448231ff3c3a, 0x3c7d0d00ff031f00, 0x488a05bcf39a3aff, 0x35060d033ac60403, 0x56ffbb82c487ff03, 0xff034301123c4268, 0x7fa5a8ffb982bb18, 0x550002035a2a0eba, 0x0affbc4e34c1ff03, 0xff0363010b3d63fa, 0x768064ff3cb341b9, 0xb4c60403dd140e3a, 0x8601090394000203, 0x7350ff03817f0503, 0x093d85bc7dff3c07, 0xbb308246ff038f02, 0xa6c5043c86fd67ff, 0xf510ff03a1830503, 0x053a8cf395ffbcf2, 0x3d1cf805ff03af7c, 0xd801123bf4038eff, 0xc5860503ca8a0503, 0x4eff3aee78d2ff03, 0xff03d30209bb640d, 0xbe0a81ff3a8a08ac, 0x0002bdb928b0ff3b, 0x01090405230e0425, 0x3dff03f2820503f7, 0xbc836ea8ff3b6a6a, 0x998fa7ff0400000c, 0x330e3a9ede22ff3c, 0x30ff0412120b0417, 0xbb5453f1ff3c79b8, 0x8b6fc8ff0420010c, 0x070d3d10de9bffbc, 0x0011043b83050449, 0xffbcb77ca8ff0436, 0x0444220ebbfb1acb, 0x00d0ffb842d57fff, 0xc604045b190ebbef, 0xff3bc1c3f3ff0456, 0x04647905bc3c0933, 0x9e0fff3c598682ff, 0x100b06978d053cd4, 0x0d0e050101110584, 0x080e049d0b0e04bd, 0x47ff048a070e048f, 0x3b2c096cffb9e29e, 0xcca1cfff0498000c, 0x060dbd17ee44ff3b, 0xeaff04aabc0404af, 0x3d4b434eff3be174, 0x4709b7ff04b80011, 0x0009bc8f58b2ff3c, 0x000c04d3bc0404e1, 0xff3abb71b6ff04ce, 0x04dcbf04bbd0f0a5, 0x1b78ff3c5b06a1ff, 0x000c04f30e0ebad7, 0xffbb9e44f3ff04ee, 0x04fc00023c1a3b6d, 0x97f5ffbc125135ff, 0x000205405704bb0f, 0x000d051b030b0529, 0xffbcf80b75ff0516, 0x0524000dbdd7bcf4, 0x00abff3c979b4aff, 0xc0ff0532020dbc86, 0xff053b000c3c7a14, 0xe449f0ff3d073970, 0x5673040564010e3c, 0x38dbff0551000e05, 0x093d46d6adffba43, 0x3d0d6628ff055f00, 0x76030b3b88f66cff, 0x7b5fff0571000f05, 0x0f3b99b13dffbb68, 0x3b23a2b2ff057f00, 0x14000cbc2eb458ff, 0xb0250e05d0000906, 0x9d140b05a2c90405, 0x76ffbbc14335ff05, 0xff05ab01083ad378, 0xe8e7adffbcca6c6c, 0xbdc40405c20112ba, 0xc4ffbc54bbd8ff05, 0xff05cb2a0e3c6442, 0xfaa1a0ff3c6e14db, 0xe6170e05f4c504bb, 0xf3aeff05e1a40405, 0x02bb9684baff3add, 0xbcd94078ff05ef00, 0x060112bbe41b66ff, 0x81c3ff0601230e06, 0x0ebcefd94cff3c33, 0xbcf536d4ff060f0e, 0x530109bb81be68ff, 0x2e0011063c230e06, 0xdacaff0629bc0406, 0x0d3944129eff3bf0, 0xba14e6bfff063706, 0x4e0112bbe8de65ff, 0xea31ff0649000906, 0xff3c7865b5ffbc6b, 0x0677c4043c4bc8c0, 0x066401110669b304, 0x54a0ff3b276e80ff, 0x07ff067200023c76, 0x3c61a407ff3cdb42, 0x068400020689060d, 0xa389ffbc0ae3fdff, 0xd3ff069202093bb4, 0x3b86a002ffbc4e33, 0x072b040d07b79305, 0x06c7c90406e70002, 0x06b4020b06b90008, 0xeffbffbbad9bcaff, 0x1bff06c298043ac5, 0x3c77e256ffbc3414, 0x06d4310e06d90009, 0x1bc5ffbd28340dff, 0x20ff06e2240e3bdc, 0x3d1b5ee0ff3dcd47, 0x06fda004070b0209, 0x642878ff06f80008, 0xa704bc284caeff3b, 0xffbc7e3657ff0706, 0x071d9205ba460ae0, 0xe5eba3ff0718c804, 0xa0043d26930cffbb, 0xffbc1fce40ff0726, 0x0773180e3c7bf6ef, 0x0745c6040753c804, 0x8a7aafff0740010c, 0x070db8956566ffb9, 0xff3b9045d1ff074e, 0x07650008bd17dea5, 0x777e49ff0760140e, 0x140ebcb1bb95ffbb, 0xff3ba84c52ff076e, 0x0797c604bbc8879a, 0x0784000f0789200e, 0x1a27ff3c3ea6c2ff, 0xdeff0792220e3ad2, 0x39e2d2edffbbbe9d, 0x07a4c80407a90111, 0xf57eff3bf04bf1ff, 0xf1ff07b2c704b8d0, 0xbb9bed4affbcd62e, 0x080300080847020d, 0x07d5040e07e3070e, 0x7ba824ff07d0030e, 0x01093cc0c68effb9, 0xffbaa74f22ff07de, 0x07f59505bcb27c9c, 0x612bcdff07f0cb04, 0xcb04bc1c8b09ff3b, 0xffbb2075baff07fe, 0x0827ca043c0f30c5, 0x0814220e0819c904, 0xb7e3ff3a89d957ff, 0x95ff08229405bc61, 0x3d7ea548ff3c8e60, 0x0834950508390002, 0xb3f8ffbbd41df4ff, 0xf0ff0842cb04bd05, 0xbadb913aff3c1fb2, 0x086f140e088f000f, 0x085c00020861a704, 0xcab4ffbc7a517eff, 0x5aff086a050b3bbc, 0xbb40b9fbff3bafea, 0x087c050b0881170e, 0xc45affbd00a1aeff, 0x25ff088ac7043c35, 0xbabfa225ff3cb7a1, 0x08a5000c08b3260e, 0x598f4fff08a0090e, 0x220eb99e02f5ff3a, 0xffba1e0c08ff08ae, 0x08c500123bb9713d, 0x741598ff08c0000c, 0x00093c93f1d2ff3b, 0xffbb4e44aaff08ce, 0x0d4a95053bde4c05, 0x09fb000d0b17c604, 0x092b5904096fbb04, 0x08fd020e090b6f05, 0x854a5aff08f82e04, 0x040ebd7512b1ffbb, 0xff3d071c73ff0906, 0x091d0008ba756b5e, 0x0b251aff09180107, 0x000ebc9c478dff3b, 0xffbc5fab70ff0926, 0x094f5a04bd90d4cf, 0x093c030b09410d0e, 0xd0c3ff3d5537d3ff, 0x30ff094a1d0e3d9f, 0xbaee7dc0ffbd3c90, 0x095c5d0409615e04, 0xfc7affba03f39eff, 0x16ff096a090bbdea, 0x3bea3f3fffbb0540, 0x0997010709b70306, 0x0984310e09895505, 0xe9ebff3db17ec8ff, 0xa7ff0992bf043c92, 0x3c1bccb9ff3cb3ee, 0x09a4020609a93805, 0x4bf5ffbdea5738ff, 0xb4ff09b2320ebd06, 0x3c840535ffbb707c, 0x09cd2a0509db0002, 0x4f906bff09c80b06, 0x3805bd0a0ee4ff3c, 0xffbd0b0d5fff09d6, 0x09ed030bbd70d55f, 0x7b5bdbff09e8010e, 0x3805bc6d3391ff3c, 0xffbba235d7ff09f6, 0x0a8b2a0e3c17b7f7, 0x0a278c040a477405, 0x0a1470050a197904, 0x1bfbffb8d506e4ff, 0x9fff0a22070dba7e, 0x3c3eb26dff3999b1, 0x0a3492040a39090b, 0x6472ff3ae0ce3aff, 0x44ff0a423103ba01, 0x398cd0bcff3a4aec, 0x0a5d0b0b0a6bc504, 0x5544f7ff0a58c404, 0x070dba9b3d43ff39, 0xffbaf2ef23ff0a66, 0x0a7d02073c092e4a, 0xf6709eff0a780108, 0x1d0e3b131456ffbb, 0xff3c242bdeff0a86, 0x0ad31206bc188972, 0x0aa5be040ab30208, 0x49840bff0aa0010d, 0xc004b7f22208ffbc, 0xff3c30feaeff0aae, 0x0ac5000fbaf4a4b7, 0x5010d6ff0ac00106, 0x030b3c0ae4e1ffbc, 0xff3c61a734ff0ace, 0x0af7300ebb44cb2c, 0x0ae4bb040ae91606, 0x698fffbd0154d3ff, 0x60ff0af20705bb8c, 0x3ded9b9eff3db0df, 0x0b04330e0b091406, 0xc5c6ff3b42bfa1ff, 0xc0ff0b1202073d15, 0x3db89e00ff3e06b2, 0x0bab1f0e0c370108, 0x0b471d0e0b67cc04, 0x0b34000f0b39170e, 0x685dffbac91d2cff, 0x21ff0b4275053aa9, 0xba2aed8cffbbc437, 0x0b541e0e0b59060d, 0xa690ff3cd0fad0ff, 0x25ff0b62000cbd42, 0x3d229e4eff3c56e7, 0x0b7d00120b8b0b0e, 0x1d112eff0b78080e, 0x00083d1851c6ff3b, 0xff3b5edd62ff0b86, 0x0b9d1d0ebc0b0be8, 0xafd7d3ff0b980012, 0x00113af5e7a7ffbb, 0xffbb43bd45ff0ba6, 0x0bf37905bd0865ce, 0x0bc5000f0bd30002, 0xac1ae1ff0bc0350e, 0x260ebbbe8b87ff3c, 0xffbc82152eff0bce, 0x0be5230ebb201117, 0xc9b63dff0be0c804, 0x060d3acc992fff3c, 0xff3af5ec77ff0bee, 0x0c172d0ebc17494b, 0x0c04260e0c097f05, 0x1e1effbc3ef5d0ff, 0x35ff0c12cc043c2e, 0x3b95ba3dff3ad3cb, 0x0c2400080c290b0b, 0xd28affbb74aeebff, 0xcbff0c327a05b9f2, 0xbba65865ffbd0fb5, 0x0c83060d0cc77505, 0x0c550b0e0c630805, 0xff1896ff0c50030e, 0x01113cde8be1ff3b, 0xffbc9c697aff0c5e, 0x0c750b053ccfc980, 0x82aadcff0c701706, 0xcc043ca83206ffbd, 0xffba7ea1ddff0c7e, 0x0ca7c9043b9bd459, 0x0c94050b0c990011, 0xe351ff3c3066e7ff, 0x42ff0ca27005bb88, 0xbc3ca6f0ff3c99a7, 0x0cb45d050cb92a0e, 0x07d4ffbce0f07dff, 0x23ff0cc2300eb88c, 0xbc0714faff3c3dec, 0x0cef100b0d0f310e, 0x0cdc77050ce10011, 0xd7e0ffbbc608ecff, 0x49ff0cea7605baf2, 0x39ca01a1ff3c0c37, 0x0cfcc7040d01000c, 0xcf46ffbc6ea675ff, 0x2aff0d0a0207bb31, 0xbc9efe15ff3bd9b9, 0x0d1cc7040d2a020d, 0x25cc043d9d4f30ff, 0x36ff3addb73cff0d, 0x040d3c01123cf29e, 0xbc2ace70ff0d37cd, 0x4502083bc55f29ff, 0x1cffbc8a3947ff0d, 0x0d0f30220ebdc53d, 0x040dbe00080e2f02, 0x040d7e000f0d83cb, 0xff0d6b110e0d70c0, 0x78a6d5ffb9d88966, 0x4200ff0d79020bbb, 0xff3b50e5cbffbb98, 0x0da7000fbc761a76, 0x0d9402070d99030b, 0x8960ffbbad9340ff, 0xf0ff0da20107bc28, 0xbc95f730ffbc9f3a, 0x0db496050db9010c, 0xd9f0ff3b2bbb69ff, 0x04bb75d320ffbadc, 0x070de6c4040dfdcb, 0xff0dd3020b0dd801, 0x19a000ffbb8e08c0, 0x7e80ff0de1020b39, 0x0b3bf86f00ff3b97, 0xff0df301070df803, 0xf08d40ff3c2a8d80, 0x000f3b0aa780ff3b, 0x01070e13030b0e18, 0xff3b099500ff0e0e, 0x0d5240ffbbd91800, 0x25000c0e2a0b0bbc, 0x80ff3ba9cd54ff0e, 0xba0a1e40ff3a0368, 0x0e72000f0eb6010c, 0x0e4dc7040e5bcc04, 0xd9b194ff0e48bf04, 0x170e3bc2131fffba, 0xffbbbcf30cff0e56, 0x0e64030b3c4443eb, 0x6d050b3cf047a0ff, 0x30ffba439800ff0e, 0x0b0e96080e3c22b1, 0xff0e83030e0e880a, 0x423eedffb94aa945, 0xd38fff0e910012bb, 0x0e3b12144dffb6b3, 0xff0ea3090b0ea811, 0x2da366ff3af5d631, 0x1b70ff0eb10108bb, 0x04bb6952b8ff3a6f, 0x0b0ed5b9040eecc1, 0xff0ecb030b0ed004, 0xfd10a0ffbc850750, 0x050bbc858c8cffbb, 0xb4ff0ee2030b0ee7, 0xbbff0c70ffbc2930, 0x10060d3b779380ff, 0xfd0b0e0f0201110f, 0x17ffbb630420ff0e, 0xff0f0b030ebc0c7e, 0x0ebfb0ffbb951846, 0x1d010e0f22c4043c, 0xf8ffbb435508ff0f, 0xff0f2b00113c1cd2, 0xa3b130ff3a7a9669, 0x9700020fff2c0e3c, 0x57cd040f77000c0f, 0x4d000d0f52000f0f, 0xabff3a930f40ff0f, 0xbc8814e0ffbb66f7, 0x0f6400080f699605, 0xdd70ff3b7d0145ff, 0x38ff0f72230ebb9b, 0x3a49d080ffbc453e, 0x0f8d030b0f92060d, 0x404c00ff0f88010b, 0x10ffb99a0000ffbb, 0xbc352970ffbba98e, 0x0fb62b0e0fd60107, 0x0fac00080fb1280e, 0x0b42ffbaa0d2d1ff, 0x04bc2f6630ff3b88, 0xff0fc396050fc8c0, 0xb6c500ffbb498c00, 0xb300ff0fd1010b39, 0x0e3cc09ea0ff3a96, 0x0d0fec050b0ff128, 0x3bed6d80ff0fe702, 0xcf20ffbb7c4c58ff, 0xd8ff0ffac0043ce0, 0xbb0d2d00ffbc314e, 0x201e30ff1008000c, 0x3a00ff1011030b3c, 0x13bc31d740ff3c1f, 0xe800000008000000, 0x8600000001000003, 0x070000000000000f, 0x04047b8c0508af00, 0x050123c104023fc7, 0x05005c021100a06a, 0x04002e020d003c68, 0x384e09d9ff0029be, 0x37190ebb800f71ff, 0x8dffb922b081ff00, 0x0d004e01083953b8, 0x3b616e50ff004906, 0x57010bbbb63e28ff, 0x56ffbcbf47eeff00, 0x050080170e3c109b, 0xff006d000200720c, 0xa7b97fff3b84c952, 0x50d1ff007b1c05bb, 0x06bb1095f2ff3bfe, 0xff008d0008009200, 0x1aaddeffbc127840, 0x3814ff009b1c053d, 0x04bcfc780bffbb9b, 0x0e00c8790500e8c0, 0xff00b5000d00ba10, 0x83f71cff3c8dc530, 0x7565ff00c3120e39, 0x09ba3eac3aff3bc4, 0xff00d5bf0400da00, 0xa8a220ff3a241cb5, 0xa3dbff00e3230e3a, 0x0cbb27e37cffba83, 0xff00f56b05010300, 0x00fe310ebdb83590, 0x8b4dffbb5df25eff, 0x220e01150b0b3c9a, 0xffbb838b57ff0110, 0x011e140b3afa683d, 0x2253ffbca70055ff, 0x000f01b375053b65, 0x0d0e014f0008016f, 0xfaff013c020d0141, 0x3ae7128dffbc7140, 0xd94366ff014a2905, 0xc304bc08787dff3c, 0x59ff015c00020161, 0x3bb7f6b8ffbcc8a8, 0xa4bb57ff016a0e0e, 0x73053baa9aebffbb, 0xc40401856d050193, 0xffbad40160ff0180, 0x018e6f0539f7aa70, 0x82ffff3ca5322cff, 0x000201a50d0ebba2, 0xffbd96954dff01a0, 0x01ae0208bc352130, 0x0d1dffbb0ec671ff, 0x1f0e01fb81053c8a, 0x1e0e01cd000201db, 0xff3bf35eb5ff01c8, 0x01d60a0e3d3c051e, 0xcf5fff3c67b7dfff, 0x7e0501ed0b0bbbfe, 0xffbbd50ee7ff01e8, 0x01f600083b7ff86a, 0x30ecffbb8e55d3ff, 0x8305021f89053c20, 0xd7ff020cc5040211, 0xbc1a1134ffba4231, 0x0e618cff021a0008, 0x090b3a7ccf1fffba, 0xa6ff022c010c0231, 0xbc4b976bffb6f0a0, 0xa7a756ff023a010c, 0xca043bfd5683ff38, 0x000c02d3260e035f, 0xc804026f220e028f, 0xb5ff025c0d0e0261, 0xbc06fce4ff3a3757, 0x82272aff026a5005, 0xc8043c11e470ffba, 0x1fff027c240e0281, 0x3ce18828ffbb36e1, 0x0f0192ff028a060d, 0x070dbcfe2d4cff3b, 0x0d0e02a5000202b3, 0xff3cbaa33fff02a0, 0x02ae220ebb6165ce, 0x88a8ff3a877647ff, 0x830502c500093ca3, 0xffbcfa278dff02c0, 0x02ce7f05bc6cdcaa, 0x5847ff3c3f2b85ff, 0xc904031b0108bb64, 0x010c02ed280e02fb, 0xff3c25b067ff02e8, 0x02f6040bbd3813f1, 0x2e96ff3b61177dff, 0x7e05030d0011baf4, 0xff3d93a811ff0308, 0x031600083bdd346f, 0x0944ff3ba55126ff, 0x2b0e033f060dbb9c, 0x87ff032c7c050331, 0x3b084ab5ff3cead6, 0xa2d446ff033a030b, 0x280ebba08ba4ff3b, 0xceff034c010c0351, 0xbd9c1c70ffbc159c, 0xad04eeff035a2b0e, 0x82053bca5c9fffbb, 0x6c0503ab6f0503ef, 0x0208037d4605038b, 0xff3b79f976ff0378, 0x03865905bb48f966, 0xdb9fff39892060ff, 0x010e039d000fbc04, 0xff3c11eac0ff0398, 0x03a60108bca8c1ea, 0x7e14ffbc23c53aff, 0x0b0b03cf220e3cc9, 0x14ff03bccb0403c1, 0x3d279bffffbced41, 0xa855dcff03ca1f0e, 0x0108bd890eddffbc, 0xb3ff03dc7d0503e1, 0xbce0e32fffbb9a91, 0x3f472cff03ea230e, 0x8405bb03c4cbff3c, 0x280e0417010c0437, 0x00ff040400120409, 0x3d8da502ff39fa3c, 0x3364c9ff04128305, 0x00083c14f7b8ffbc, 0x9eff042400020429, 0xbc51d23dff3c3398, 0x9d4abaff04328305, 0x010b3db6282aff3c, 0xcb04044d020d045b, 0xff3dba9620ff0448, 0x0456060d3c97fe00, 0x94dcffbc2629ebff, 0x8705046d01123c8a, 0xffbb8dad9eff0468, 0x04762b0e3a068113, 0x98dcffbcc42e1eff, 0x110b068e8d05ba83, 0x0e0b05130e0e059f, 0x000804af040e04cf, 0xf7ff049c9d0404a1, 0x3b900951ffba9d73, 0xdd525bff04aa010c, 0x0002bc83613dffb9, 0xf4ff04bcb20404c1, 0xbbd5aa89ff3b3488, 0x8433b8ff04ca0b0b, 0x0002bcb1223eff3a, 0x000c04e5060d04f3, 0xff3b906d7bff04e0, 0x04ee010e3c63df95, 0x898cff3b980780ff, 0x070e0505060dbcca, 0xffbc312b52ff0500, 0x050e070d3b422dab, 0xc0c2ff3c9cbe05ff, 0x0008055bbb04bd05, 0x010b052d0002053b, 0xff3c636ebdff0528, 0x05369b043a88a40f, 0xd96bff3c3fb139ff, 0x050b054d0002bc09, 0xffbcb0ab94ff0548, 0x05560b0b3aabea65, 0x95dcffba9a5048ff, 0x0002057f01083d25, 0x75ff056c190e0571, 0xba9d9c53ff3bd290, 0x402249ff057a0209, 0x00113c6d23e4ffbb, 0x80ff058cc9040591, 0xbca66680ff3bb2dc, 0xb471d6ff059a030b, 0x00083b9ac7f1ffba, 0x0b0e05e20e0e0626, 0x9f0405bd000c05cb, 0xff3b44e0deff05b8, 0x05c6b304bb9550dc, 0x91ecff3a965569ff, 0x3cff05d4a4043c3d, 0xff05dda5043d5e9f, 0xa256b1ffbd02c5fe, 0xf8010c0606170ebb, 0xa18fff05f3000c05, 0x043c99a2f0ff3bcf, 0xbd7cbbcdff0601c4, 0x18190e3c38222fff, 0x266dff0613001206, 0x09bc0785b0ff3b2f, 0x3b190571ff062100, 0x652b0ebc09c451ff, 0x40230e064e260e06, 0x6255ff063bc90406, 0x04bbcbb345ff3a82, 0xbd50707bff0649c7, 0x600108bc880f77ff, 0x66a8ff065b280e06, 0xff3cab0537ff3bc9, 0x068001083d3ee9a0, 0x596028ff0672cc04, 0x04f8ff067b060dbc, 0x0dbca3c438ffbc8c, 0xb89cb400ff068906, 0xa59305bc1ad4c0ff, 0xde02080719020d07, 0xb0300e06bebc0406, 0x7f11ff06ab230e06, 0x0bbbe534cbff396f, 0x3d01c805ff06b901, 0xd0330ebc3bbc26ff, 0x187eff06cb310e06, 0x0e3c807141ffb6f8, 0xbc9a2ff6ff06d934, 0x02c9043c1aa412ff, 0xef0d0e06f4000207, 0x35ffbb17dfcdff06, 0xff06fd070e3c7176, 0x50ff97ff3bfd4ebb, 0x0f030b07140a0bbb, 0x00ffbcc5e945ff07, 0x3cdbf980ffbb2abe, 0x07410a0e0761050b, 0x072e8f040733c104, 0xc5b8ffba7fa9faff, 0xb0ff073cc9043ab7, 0xbd8a4570ff3a81e7, 0x074e000c0753010b, 0x6586ff3b040d62ff, 0x4dff075c320ebb92, 0x3b9cd60fffb951fc, 0x0777010c07850c0b, 0x049397ff07721d0e, 0x0a0b3a235c7bffb8, 0xff38a4138eff0780, 0x0797070d3a3c57fd, 0x786ec7ff07928f05, 0x0002ba7ab055ff3a, 0xff3cbbd619ff07a0, 0x082c020dbbc1a5ee, 0x07d19a0407f10008, 0x07be960407c30209, 0x4b76ffb9d33b24ff, 0x40ff07cc9704bc13, 0x3d403e58ff3c1ea3, 0x07de000207e32a0e, 0xd83eff3b586c79ff, 0x6eff07ec2b0eb9cd, 0x3b0b8ac5ffbc85e6, 0x0807b7040815230e, 0x072c98ff08020108, 0x030b3c5e3f68ffbc, 0xff3bbb098eff0810, 0x081ec904bab5bbcc, 0x27ca04bd1cee4eff, 0xa0ff3ccfc220ff08, 0x0e086b000fbc5074, 0x0408460009085414, 0xbb2dc018ff0841c6, 0x4fc7043c59c6bbff, 0x57ff3bbeb78dff08, 0xff085dba04bc1bbc, 0x0866180e3dbdd440, 0x28dfffbc3a3b36ff, 0xc804088fcd043b50, 0x5bff087c170e0881, 0xb9b13f3bffb91d1e, 0x738e44ff088a060d, 0x9405b9dc05a7ff3a, 0xd6ff089c2c0e08a1, 0xbc669f38ff3b64d7, 0x883182ff08aa000c, 0x9505ba2a6140ff3a, 0xc1040af3c6040d26, 0x9d04094bb40409d7, 0x170608e777050907, 0x7dff08d4340308d9, 0xb8f9f502ff39360a, 0x86c5a2ff08e2000f, 0x060d3af250fbffbb, 0x04ff08f4000f08f9, 0xbb38f7a0ffb975ce, 0xddc6eaff09020012, 0x00083b9492acff38, 0x310e091d090b092b, 0xff3a051c05ff0918, 0x0926b004bb70dd1c, 0xf78effbacc102aff, 0x3c01093db3043948, 0xffba7288f9ff0938, 0x0946450539c9df23, 0x9bedffbc127749ff, 0x070d0993001138f0, 0x0d0e0965b7040973, 0xff3c5cf0daff0960, 0x096e260ebc792bd6, 0xb294ffbac5f989ff, 0x070e0985230e3c46, 0xffbd4de550ff0980, 0x098e2a0e3bab0021, 0xb8c7ffbd049701ff, 0x310309b733033cbb, 0x64ff09a4060d09a9, 0xbd3bdfb3ffbac7e4, 0x2d081fff09b2010c, 0x5c053a6be213ff3d, 0x22ff09c4060d09c9, 0xbbe7162eff38d75b, 0x80d368ff09d25d05, 0x00023a063679ff3c, 0x000f0a23190e0a67, 0x000c09f50a050a03, 0xff3c0917bdff09f0, 0x09fe020d3dc034f8, 0x5836ff39685c5bff, 0x180e0a15c204bca6, 0xffbc380b95ff0a10, 0x0a1e0d0e3cb49d27, 0x2abbff3b47e030ff, 0x01080a470b0bb9a3, 0xa7ff0a34c5040a39, 0xbb7b8391ff3b7048, 0x4b2cf3ff0a420006, 0x3805bc955f58ffbb, 0x23ff0a54c3040a59, 0x3ba3c47fffbd58d5, 0x9a101fff0a62060d, 0x6e053ba6421affbb, 0x220e0a8f0f060aaf, 0x11ff0a7cc2040a81, 0xbc545145ff3c707b, 0x84af41ff0a8a060d, 0x020d3c9124b1ffbb, 0x2aff0a9c070b0aa1, 0x3b0bafe2ffbba9ba, 0x66b2d0ff0aaa030d, 0x84053b0216d8ffbc, 0x010c0ac56f050ad3, 0xff3c54343dff0ac0, 0x0ace2b0e3dae3c41, 0x56e3ffbadb8183ff, 0x070e0ae5050b3ba2, 0xffbbd30700ff0ae0, 0x0aee0e0e3b84a981, 0x7cfbff3ac85d2bff, 0x010c0c130108bb49, 0x080e0b4300110b87, 0xc7040b15070e0b23, 0xffbc9ddecbff0b10, 0x0b1ec8043b9d55a2, 0x34e6ff3c42872cff, 0xc7040b355505bc7a, 0xff3cbabeb8ff0b30, 0x0b3e7305bc42de2f, 0xb5f6ffbab0e38bff, 0x230e0b67c7043a55, 0xf6ff0b540e0e0b59, 0x3c1498adffbb9b2a, 0x920a47ff0b62260e, 0x340e3b823f96ffbc, 0x78ff0b7401110b79, 0x3ab3c51fffba295b, 0x8d23f2ff0b820306, 0x6a053c14a07fffbb, 0x66050baf68050bcf, 0xf6ff0b9c0b0b0ba1, 0xbbb1655dff3b4a92, 0x46a7d2ff0baaca04, 0xca043bee2576ff3d, 0x09ff0bbcc9040bc1, 0xbd398b3cff3c3660, 0x608480ff0bcacb04, 0x7505bd6528e0ff3d, 0xcc040be574050bf3, 0xff3bf22c28ff0be0, 0x0beec904bc1d7d18, 0xac5effba6de220ff, 0x230e0c05130bbcdc, 0xff3b0004aeff0c00, 0x0c0e7e05bba43a31, 0x187dff3c232929ff, 0x060d0c9a7505ba3a, 0x36010c3607050c56, 0x113d54d498ff0c28, 0xbc6c7785ff0c3101, 0x4864053cbb0220ff, 0x2f99ff0c430c050c, 0x07391199acffbadc, 0x3a7a01fcff0c5101, 0x7a2b0ebb31d15dff, 0x67c8040c6c00020c, 0x0cffbb61fe7eff0c, 0xff0c7545053ba38c, 0x908ecfffbcbe500d, 0x87010c0c8cc704ba, 0x77ff3cdf36eaff0c, 0xff0c95300ebbc082, 0xb2b7deff3cbf36d5, 0xc2100b0ce2310ebb, 0xaf77050cb400110c, 0xeaffbbb23b33ff0c, 0xff0cbd7605bada8e, 0xb5ce6dff3bfc6392, 0xcf140b0cd4010739, 0x05ffbcabbccdff0c, 0xff0cdd7a053b2bea, 0xa98180ff3b86396b, 0xf87f050d060107bb, 0x3bffff0cf3320e0c, 0x05bb62d4e2ffbd12, 0x3c6ece80ff0d0183, 0x180b0bb9fe56f3ff, 0xbd08ff0d1302070d, 0x0e3c948462ff3b0b, 0x3d67e9deff0d2132, 0xd6220ebbdc0f60ff, 0x9a00080e02020d0e, 0x5a000f0d5fcb040d, 0x47080e0d4cc0040d, 0x3dffbac0a662ff0d, 0xff0d55000c3a16cf, 0x9529b7ff3cb1f510, 0x000fbc5d7e36ffb9, 0x02070d75030b0d83, 0xffbb9c37c0ff0d70, 0x0d7e0107bc17aee0, 0xf810ffbc8f4eb0ff, 0x96050d95010cbc86, 0xff3b1a8f12ff0d90, 0x5d3e20ffbac6c430, 0xc2cb040dd0030bbb, 0xaf96050db4c4040d, 0x00ff3ac6b2dbff0d, 0xff0dbd020bbb8511, 0x1c9c65ff3b24d000, 0xa600ff0dcb01073c, 0x0cbbc36280ff3af7, 0x080de60b0b0deb00, 0x3ba5e83eff0de101, 0x9c80ff3b7d4d60ff, 0xc4040dfd000fb9f8, 0xffbaa8ed00ff0df8, 0xec8900ffbb3ffc40, 0x4ecb040e6e000f39, 0x20c9040e2e140e0e, 0x63baff0e1b00080e, 0x073b9560dcffb982, 0xbc6122a0ff0e2901, 0x40170ebc0259c0ff, 0xbb6bff0e3b00020e, 0x04bce4d140ffbc2c, 0xbbd9c980ff0e49c9, 0x6996053c9fb3c0ff, 0x5f030b0e6402070e, 0x55ff3c456250ff0e, 0x3c88f540ff3c00ee, 0xb61f0ebb3ae500ff, 0x88080e0e961d0e0e, 0xc8f6ff0e83ca040e, 0x023b117edbffb95a, 0x3aac182aff0e9100, 0xa89605ba215541ff, 0x2e6fff0ea300080e, 0x0b3ba5b945ffbb5f, 0x39e5c680ff0eb103, 0xbf00023c996fe8ff, 0x030b3c0d1200ff0e, 0xb5ff0eccc9040ed1, 0x3b995930ff3b812b, 0x6f2c0e3bbdfbb5ff, 0x1d280e0f2b2a0e0f, 0xf8070b0efd000d0f, 0xa780ff0ef3230e0e, 0xffbb3ce9b3ff3c08, 0x0f0f00023ca8fc40, 0xacf375ff0f0a0011, 0x0107bbf9a1d0ffba, 0xffba537f0dff0f18, 0x0f26000c3bff7d5e, 0x9800ff3c8e9840ff, 0x070b0f6a0008b98a, 0x96050f45030b0f53, 0xffbbabcb3cff0f40, 0x0f4e000dbadb4e80, 0x5b80ffbb356480ff, 0x01070f6500023cad, 0xffbb3e1023ff0f60, 0x1ddbf0ff3b952540, 0x020d3b84ab70ffbc, 0xc0ff0f7c030b0f81, 0xbc200e80ff3c0f4d, 0x0000133c101b30ff, 0x0003e80000000800, 0x0010430000000100, 0xa600070000000000, 0x48c70404848c0508, 0xa06a05012cc10402, 0x3c6805005c021100, 0x29be04002e020d00, 0x1fff38397169ff00, 0xff00376105bb6682, 0xce6313ff385cd06d, 0x49b504004e0209ba, 0xfeff3b0d269dff00, 0xff0057080e3ad549, 0x96b4eeffbb84b6f1, 0x725e0400806c04bc, 0x214eff006d000200, 0x01ba8abad9ff3b4b, 0xbd989a58ff007b34, 0x920008bc40d9c0ff, 0xadcfff008d030b00, 0x053bc4b80eff3d09, 0x3c1eb6e1ff009b1c, 0xe8c004bc67e065ff, 0xba010b00c8790500, 0x04cfff00b5000c00, 0x04bbaca4c2ff3b12, 0x38a577aeff00c3bc, 0xda330e3ab58d27ff, 0x9708ff00d5bf0400, 0x043a44b703ff38e4, 0xbb30a4b3ff00e3bf, 0x0c000c3d4dffe4ff, 0xf9190e00fe0a0b01, 0xcaff3cae9053ff00, 0xff0107000f3c04e6, 0x58ecf0ffbd3f185b, 0x19060d011e0b0bbb, 0xd2ffbb90ee92ff01, 0xff01271b0e3c065c, 0xf2dbb2ff3c167ea9, 0x78770501bc7905bb, 0x4a001101580b0b01, 0x57bcff01452b0e01, 0x053c9b2cddffbc3c, 0x39f12deeff015370, 0x6a2f0eba4a46a6ff, 0x4d51ff01650c0b01, 0x0e3aaf22e4ff3d62, 0xbcbf0856ff017330, 0x9c2f0eba916596ff, 0x89c304018e2b0e01, 0x2cff3c1ba2c2ff01, 0xff01970006bbe3e6, 0x6dbbcfffbd111967, 0xa9000d01ae00063d, 0x3cffbd06515dff01, 0xff01b702063bb50b, 0xd7b348ffbd319148, 0xe4c30402040002bd, 0xd1c20401d6100b01, 0x25ff3ba5cf24ff01, 0xff01dfc204bc2463, 0xad5125ffbc214d2d, 0xf17a0501f62f0e3b, 0x7cff3d141569ff01, 0xff01ff8a05b9226c, 0x89a17aff3a6ddf81, 0x1ac5040228020d3d, 0x2c25ff0215c20402, 0x063d9be55dffbbb4, 0xbce919e8ff022300, 0x3a000fbaf4d92cff, 0x7f18ff0235010802, 0x0ebcdc2adcffb95c, 0xbb3bcdd2ff02431d, 0x68ca043bc3e7b5ff, 0x98c90402dc260e03, 0x6a00020278070d02, 0xd876ff02650d0e02, 0x0ebbc288acff3c84, 0x3b1452ceff027324, 0x8a00093d83872cff, 0xb7aeff0285020802, 0x0ebb7cc679ffbceb, 0xbbe06995ff029319, 0xbc000c3c52e06dff, 0xa9140602ae220e02, 0x4effbbdfc27aff02, 0xff02b70b0b3b17ef, 0x9c71d6ffbd114880, 0xc9000202ce220ebc, 0xfbffbbc81480ff02, 0xff02d7060d3b7f8b, 0x0dde0eff3d4beb42, 0x04c904032401083c, 0xf1010c02f6280e03, 0x8bff3c151ec2ff02, 0xff02ff310ebd25ab, 0x66d7f4ffbaea3ac4, 0x117305031600113b, 0xaeff3e7afe84ff03, 0xff031f280e3c2a42, 0x977dd2ff3cc6fbb6, 0x3a7d0503480208ba, 0x3437ff0335630503, 0x05bc2e42b2ff3bc6, 0x3e09d456ff03437e, 0x5a6e05b93c3362ff, 0xa20eff03550d0b03, 0x05bc1c5945ff3bda, 0x3d8d14b4ff03636f, 0xf882053bc06cc4ff, 0x947f0503b4060d03, 0x81050d0386000203, 0x62ffbb952a0fff03, 0xff038fcb043bd83a, 0xc469e6ffbbf9f745, 0xa1020803a6280e3a, 0x46ffbdb59897ff03, 0xff03af0208bd0672, 0x126225ffbc8273f9, 0xca7d0503d801083c, 0x693eff03c52b0e03, 0x02bcaf18a1ff3d05, 0xbc908e53ff03d300, 0xeacc04bd595cdaff, 0xc915ff03e52f0e03, 0x0bbcb1f1d9ff3c1b, 0x3b92e533ff03f30b, 0x408405bc687e42ff, 0x12cd0404202c0e04, 0x9b95ff040d830504, 0x0c3d193d34ff3b8c, 0x3d63c324ff041b01, 0x32340e3dfcc30cff, 0x670dff042d001204, 0x083c19901affbba0, 0xbcb30ba4ff043b02, 0x64310eba366d14ff, 0x51860504560b0b04, 0x71ff3c1fb624ff04, 0xff045f8705bbba90, 0x36acceffbc15967a, 0x71cb04047600083b, 0x8effbc9b3f16ff04, 0xff047f02083c3080, 0x349174ffbb3287ee, 0x9f010c067c8d053c, 0xd8220e051c060d05, 0xaa000804b8000204, 0xdce6ff04a5000e04, 0x0b3a928c8fffbc1d, 0xbce09988ff04b303, 0xca0111ba715d84ff, 0x1207ff04c5bd0404, 0x043be2d5c2ff3952, 0x3cd4b909ff04d367, 0xfc0111bb22e332ff, 0xe92b0e04ee000904, 0xf2ff3c17b66fff04, 0xff04f70002bbe653, 0x4530e7ffbc8487e7, 0x09230e050e030bbb, 0xc8ff3c73d4d1ff05, 0xff0517000fbb34fd, 0x4d8798ff3b3c6213, 0x441d0e0564c604bc, 0x31000c0536070b05, 0x2dff39356f94ff05, 0xff053f00093bd5bc, 0xb6d7e6ff39a99087, 0x51030b0556070bbb, 0x80ffbb214d6bff05, 0xff055f000c3d65aa, 0x409ef5ffbc2faa8a, 0x7a0011057fc704bd, 0xee39ff0575000c05, 0xff3d1c11cbff3c3e, 0x059100023de871e6, 0x44052dff058c0011, 0x230ebc1bcae3ff3c, 0xffb8fa426aff059a, 0x05f0bc04bc5ed333, 0x05cb0b0b05eb070d, 0x05b8b20405bd0002, 0x12f4ff3b86a9acff, 0xcaff05c60109bc82, 0x3bcb4312ffba8a57, 0x05d8000905dd0008, 0xe66aff3c35f478ff, 0xc5ff05e6b304bcf1, 0xbd8bb663ff3a6018, 0x38be043d807fd2ff, 0x0a060d0618030b06, 0x6e1aff0605011206, 0x09bc316aaaffbd58, 0x3c82506bff061300, 0x2a00023be37968ff, 0xf9d5ff0625001106, 0x0d3d746d75ffbd07, 0x3dabf853ff063306, 0x5ccc043e092a63ff, 0x49190e064e1d0e06, 0xe0ffba481f65ff06, 0xff0657220e3cc8d9, 0x5e509affbcddbbca, 0x690002066e0e0b3a, 0x86ff3d539670ff06, 0xff06772c0e3c4f3f, 0xc08ce0ffbb53a280, 0x10030d079c9305bb, 0xac310e06cc000907, 0x99a704069e010b06, 0x04ffbb856a21ff06, 0xff06a72b0e3c0605, 0x123181ff3a7ea080, 0xb9340e06becd04bc, 0x00ffba36075aff06, 0xff06c701083d4ad9, 0x15b610ffbce66842, 0xe22b0e06f0050bbc, 0x7946ff06dd2a0e06, 0x0ebcb95700ffbb09, 0x3d6d22a0ff06eb2f, 0x028f053c367662ff, 0x6672ff06fdc00407, 0x04bceb8330ff3b65, 0x3c2dfcc5ff070bbd, 0x5855043cfc4f7bff, 0x2a52040738900507, 0x4868ff0725000207, 0x11ba332975ff3b95, 0xbc31f044ff073301, 0x4a51043d50ec0dff, 0xad6fff07454d0407, 0x12bb8b7912ff3be2, 0xbbeeedfaff075301, 0x7c230ebd52d20aff, 0x69bc04076e000f07, 0x87ffba2e2252ff07, 0xff07778f053af1e9, 0x11df0bff378b53b0, 0x898f05078e900539, 0xb7ffbabb43feff07, 0xff079791053b56a2, 0x9a6a87ffbbb8a0f6, 0xdf00080823020db7, 0xbab30407c8050b07, 0xb7beff07b5940507, 0x05b99463bdffbbf3, 0x3c110bf6ff07c394, 0xdacd04b9a9ebf7ff, 0x8d0dff07d5c90407, 0xffbbb832d1ff3a86, 0x0803020b3d0a2d30, 0x07f00d0e07f59505, 0x1c79ffbb9cc3e0ff, 0x20ff07feb3043bdb, 0xbbf43da6ffbcb202, 0x0810030b0815170e, 0x4fc0ff3c4a1be1ff, 0xd1ff081e0002bb56, 0xb9f72b53ffbc3a90, 0x084b140e0862000f, 0x0838000c083db304, 0xa83cff3bb6e7d7ff, 0xc5ff08460109bbdd, 0xbbbfdf67ff3bbf9a, 0xaad8a0ff0854ba04, 0x7ea2ff085dbc043d, 0x04374a19bbffbd07, 0x0b0878c9040886cd, 0x3a1e74e5ff087309, 0x819405ba0df6bdff, 0xf9ff3b60bc9bff08, 0x0908989405b9f73c, 0x3bae68f1ff089300, 0xa1000cbbce0864ff, 0x65ff3a7525e8ff08, 0x040d269505ba1957, 0x0409ce000d0aeac6, 0x0208fe9a040942a9, 0x0408d0510508de00, 0xba19b9a2ff08cb97, 0xd9260ebbe3f3c4ff, 0x83ff3b10d996ff08, 0x0408f0130ebd072f, 0xb9db52eaff08eb90, 0xf91a0ebc9b4e68ff, 0x31ff3ccb2727ff08, 0x0e092208063bab22, 0xff090f0002091431, 0x79b568ff3cdd8db2, 0xbd25ff091d45053b, 0x0ebcaab3c7ff3b03, 0xff092f9d04093401, 0x49d141ffbcb461c8, 0x3968ff093d050b3c, 0x0ebc00c897ffbc9b, 0x0b096a330e098a34, 0xff0957ba04095c03, 0x2f9d2eff394b849b, 0x0043ff0965310ebc, 0x04bd077a7bff3bf8, 0xff09772f03097cba, 0x43c285ffbc99ddd5, 0x4c08ff0985000c3d, 0x033c9d35d5ffbcab, 0x0809a0080609ae32, 0xbc4b3111ff099b02, 0xa927033c4f8584ff, 0x00ff3d8bf820ff09, 0x0109c0b504bb57da, 0xbc9c869eff09bb3c, 0xc9000cbd78e5e2ff, 0xd3ff3b16112fff09, 0x080a5e2b0ebca767, 0x0509fa030d0a1a00, 0xff09e7010b09ec8b, 0x465fbdffbc241415, 0x9d10ff09f5960439, 0x0ebc052e89ff3bc3, 0xff0a07220e0a0c23, 0x9c56e4ffb99aab40, 0x5799ff0a152a0e3b, 0x043b6dc4daffbbbb, 0x040a300a060a3ebe, 0x38bdbd5eff0a2bbd, 0x39030d3b8e0927ff, 0x7effba5bf6e4ff0a, 0x050a50c4043b1d64, 0xb971c69cff0a4b65, 0x59010737fc8adbff, 0xebffbb2f50aaff0a, 0x0d0aa60b0b3b2c33, 0x040a782e0e0a8606, 0xb829e518ff0a73c0, 0x81c404bc97cce3ff, 0x21ff3921cf47ff0a, 0x0e0a98300eb9f694, 0xbbb650bdff0a932f, 0xa1340ebd1b0ac9ff, 0x1eff3bcc3a47ff0a, 0x040acac004bcffbb, 0xff0ab707060abcbe, 0x761e65ffba4321da, 0x8215ff0ac50112bc, 0x0ebc7d58e4ff3d19, 0xff0ad7c1040adc30, 0x5a354bffbdb097bf, 0x7d32ff0ae5010c3c, 0x08bbc819f1ff3c5e, 0x040b7e1f0e0c0a01, 0x0e0b1a1d0e0b3acc, 0xff0b07000f0b0c17, 0x9aeb56ffbab89eb8, 0x34f9ff0b1575053a, 0x0dba2f90daffbbb8, 0xff0b270b0b0b2c06, 0x9e90c8ffbc229dac, 0xb4ccff0b350b0bbd, 0x0c3d29be1bff3c7e, 0x070b501e0e0b5e00, 0xbb379b6bff0b4b01, 0x59050b3be8f624ff, 0xbcff3baa98b6ff0b, 0x0c0b700b0ebce23f, 0xba7f7459ff0b6b01, 0x791c0e3ca65a86ff, 0xaeffbaf0d18bff0b, 0x040bc61305bc46ad, 0x0b0b980f060ba6cc, 0xbd90b530ff0b930c, 0xa10b0b3b15d4a6ff, 0xd1ffbb299c80ff0b, 0x0b0bb8000c3d03e5, 0xbb1ef1daff0bb30b, 0xc10b0bbd0b70a9ff, 0xbbffbd26a2cfff0b, 0x0e0bea0b0bbcabc9, 0xff0bd7010c0bdc23, 0xf244f8ff3a4e0000, 0x65fdff0be501113b, 0x043b257c06ffba70, 0xff0bf7c8040bfcc9, 0x9c84ebffbb38358c, 0x0bbdff0c05ca043c, 0x0539d49ff3ffbc8d, 0x050c56060d0c9a75, 0x050c28cc040c366c, 0xbba70c2eff0c2319, 0x31340e398d870eff, 0xc8ff3c17cbf2ff0c, 0x0e0c48ca04bc29f4, 0xbbf422c5ff0c4322, 0x51cc043bb735b7ff, 0x89ffbccbef84ff0c, 0x050c7a2b0e3ae864, 0xff0c67070d0c6c68, 0x811cabffbb266866, 0xed5dff0c75cb043c, 0x04bb77159aff3a13, 0xff0c8700020c8cc7, 0x4a4274ff3cc60a0d, 0xcab4ff0c950002bc, 0x0e3c419e9bffbc25, 0x080cc2140b0ce231, 0xff0cafcb040cb402, 0xce51c2ff3ac19b13, 0xd6b2ff0cbd000fba, 0x04b9d11660ffbc60, 0xff0ccf00020cd4c9, 0x179183ffbcba3c8d, 0x2f0eff0cdd01073a, 0x0dba847222ff3b97, 0x040cf8cc040d0602, 0x3cfa01e5ff0cf3c8, 0x010207ba308a12ff, 0x00ff3ce88436ff0d, 0x0b0d18000f3b3f8f, 0xbd8e732cff0d1303, 0x21cd043bccc8cdff, 0x27ffbc15c32cff0d, 0x120f301d0e3ba94a, 0x0c0dacc3040e2f01, 0x0b0d5a95040d7a01, 0xff0d4790040d4c03, 0x6e1d0dff3c01b30a, 0x8543ff0d55050b3a, 0x0f3ad1d148ff3c35, 0xff0d67010b0d6c00, 0x3bc7cdff38e97104, 0xcaadff0d75080ebc, 0x0bbbea7831ffba01, 0x0b0d90b9040d9e05, 0xbc6f1c10ff0d8b03, 0x99030bbc30cabcff, 0x30ffbc17edecff0d, 0xff0da70012bbe4dc, 0x602fa0ffba141a00, 0xd4070d0deb090b3b, 0xc100110dc6080e0d, 0x53ffbc2c8756ff0d, 0xff0dcfca04badcd1, 0x578656ff3b351d59, 0x920cff0dddc804bb, 0xc5ff0de696053ca0, 0x3c085242ff3b67e9, 0x0e01010e0e0f0b0e, 0x1127d1ff0dfc000c, 0xc8043bb6ce02ff3b, 0xffba80e2b1ff0e0a, 0x0e21110e3af350fc, 0xd7dd3aff0e1c060d, 0x150ebbc9d4d0ffba, 0xff3b960efeff0e2a, 0x0ead9604b809d821, 0x0e5b88040e7b040b, 0x0e4869040e4d7804, 0xcbeaffbb9f20c0ff, 0x99ff0e56030b3b5a, 0xbc2f37e0ffbb85a7, 0x0e6895040e6d010b, 0x4a40ffbc6c1f40ff, 0x63ff0e769004bcf8, 0x3b2e7d40ffbc6826, 0x0e9188040e9f020e, 0x0a3206ff0e8c7f04, 0x9004bb953818ff3b, 0xff3c849c54ff0e9a, 0x0ea890043c164780, 0x1c80ffbccf58d8ff, 0x030b0eeca4043b3f, 0x96050ec700020ed5, 0xff3c27a260ff0ec2, 0x0ed0040e3bca2580, 0x3fc0ff3afc2ae0ff, 0x040b0ee7010ebc89, 0xff3b23ec00ff0ee2, 0x83fba0ff3c9b886d, 0x02030b0f10ae043d, 0x7428ff0efd01070f, 0x0b3bbd3d58ffbb7a, 0xbbdc0640ff0f0b05, 0x22b004bca35b2dff, 0x3da0ff0f1d020e0f, 0x043c8006c0ff3d15, 0x3a992766ff0f2bc8, 0xb70002ba08bdabff, 0x77000c0fa90b0b0f, 0x5200110f6001070f, 0xaaadff0f4d00080f, 0x0ebc4c7398ff3c24, 0x3bfded40ff0f5b22, 0x69230ebac82c43ff, 0x000fbc9a0150ff0f, 0xffbb452460ff0f72, 0x0f92030b3b863b20, 0xf64800ff0f84c904, 0x9500ff0f8d010bba, 0x0db9afd000ff3b03, 0xff0f9f020d0fa406, 0x8f18b0ffbbb04600, 0x060dbc20e240ffbb, 0xffbb809600ff0fb2, 0x10350e0bbc36cdb0, 0x0fe396051003000c, 0x0fd000120fd50008, 0x28a9ffbc35ea83ff, 0x37ff0fde050bba8b, 0x3c770890ffbaf6c9, 0x0ff0cd040ff5030b, 0xfa30ff3a711cf5ff, 0xe8ff0ffe0011bb27, 0x3c2f5060ff3c8a17, 0x1019060d1027050b, 0x85d7cbff1014030b, 0x030bbbaf7795ff3b, 0xffbc593080ff1022, 0x10301f0ebc9f585c, 0x9410ff3cf09848ff, 0x00ff103e1f0e3c6f, 0x3c41dd50ff3cfcb2, 0x0000000800000013, 0x00000001000003e8, 0x0000000000000fc5, 0x047b8c0508a60007, 0x012cc1040248c704, 0x005c021100a06a05, 0x002e020d003c6805, 0xb83bf6ff00293101, 0x0f063aa5ce32ffba, 0xffb5d6d028ff0037, 0x004e0209ba8dd3b1, 0xfe1258ff0049b504, 0x080e3abff600ff3a, 0xffbb6ee2e4ff0057, 0x0080170ebc87a2d3, 0x006d290500720208, 0x5df4ff3b0c2360ff, 0xfaff007b070ebb8b, 0xbc029cc0ffbcbc88, 0x008d030b00926c04, 0xfdfcff3987c377ff, 0x53ff009b2905bc9e, 0x3cff2003ffbc89ef, 0x00c8790500e8c004, 0x00b5930400ba7205, 0xbb05ffba384872ff, 0x58ff00c38204ba6f, 0x3a3e5deaff3a8f07, 0x00d5bf0400da0009, 0xab4cff3a110076ff, 0x03ff00e3230e3a81, 0xbb190295ffba6ff2, 0x00fe0002010c000c, 0x50527aff00f9300e, 0x8a053c21f020ffbc, 0xff3aff63caff0107, 0x011e0b0bbca768e1, 0x7cd3fcff0119220e, 0x00083afc5403ffbb, 0xffbbc1b818ff0127, 0x01bc79053c296e6c, 0x01580b0b01787705, 0x01452b0e014a0012, 0xa862ffbc29822bff, 0x98ff0153050b3c8b, 0xba8c6623ff3ad7a9, 0x01650108016a060d, 0x38abff3b5e64aeff, 0x81ff01732b0ebaea, 0x3ca4bf6effbc00f1, 0x018e0d0e019c0006, 0x7585f4ff0189070d, 0x1c0ebd45b7b8ffbd, 0xff3cadd730ff0197, 0x01ae000fbb23698b, 0x0f7ce8ff01a90108, 0x190e3cb4fed5ffbd, 0xff3c8bbc9bff01b7, 0x020400023d9c0ce5, 0x01d6100b01e4c304, 0x946fd4ff01d1060d, 0x7a05bc00167bff3b, 0xff3d0b56fbff01df, 0x01f62f0ebb2ed55e, 0xa2948dff01f10108, 0x7e053b92e854ffba, 0xffbc750657ff01ff, 0x0228000c3bced471, 0x02150108021a8a05, 0xf0c2ffbc10bda7ff, 0xbaff0223270e399b, 0x3c4af954ffba7cd6, 0x02351d0e023ac504, 0x2b11ffbb38fb84ff, 0xf1ff024384053c43, 0xbc2519aaff3c013d, 0x02d30002035f1c0e, 0x0278030e02981a0e, 0x02650111026a1906, 0x6d34ffb96afb21ff, 0xbfff0273cb04bd10, 0xbcca1610ff3c2f60, 0x0285cb04028acc04, 0xa317ff3b08ecf9ff, 0x3fff02930009bc94, 0xbbc9e201ff3c62e0, 0x02ae600502b3030b, 0x888e40ff02a90008, 0x90ff3d94d410ff3d, 0x0d02c5000c3d1e15, 0x3ca73595ff02c002, 0xcec804bd701660ff, 0x30ff3d199655ff02, 0x0d031b02083d55ab, 0x0602ed010c02fb06, 0xbbcf0ecdff02e814, 0xf6160638c9f4dbff, 0xd6ff3c223727ff02, 0x08030d0e0ebb8a60, 0xbaa2b29bff030800, 0x16170e3cfea822ff, 0x59ffbc8b317aff03, 0x0e033f060dbb3cfa, 0xff032c8705033117, 0x8b441eff3bc6fb08, 0x06fcff033a4705bc, 0x0e3d29c1f8ffbca6, 0xff034c000c035117, 0x95e7c2ff3c81048e, 0xdf77ff035a0011b9, 0x0e3c60efa4ffbc94, 0x0503ab890503ef22, 0x05037d8305038b88, 0xbb360bdcff037882, 0x86000f3d9c5290ff, 0x00ff3d14eb9eff03, 0x02039d0208bca1ee, 0xbd51a7abff039800, 0xa60b0bbddcaf0cff, 0x70ffbd48df0eff03, 0x0c03cf00023bdd34, 0xff03bc070d03c101, 0x270dd8ff3acab586, 0x20daff03ca070dbd, 0x0e3d7424e5ffbd04, 0xff03dc8a0503e11f, 0x06a1e0ff3ca4ce6b, 0x3ed4ff03ea000cbd, 0x043dcaae08ff3cd6, 0x0c041701080437cd, 0xff04040011040901, 0xe5c173ff3bcd61ad, 0x1ec9ff0412060dba, 0x0cbc1e61baff3b41, 0xff0424260e042901, 0xb7c388ff3b845984, 0x2e27ff04328705ba, 0x0ebcdf4abaff3bae, 0x02044d6e05045b34, 0x3c1a1408ff044800, 0x560b0b3d64a69aff, 0x10ff3bda1e6eff04, 0x0f046d030bba7183, 0xbb5bfd30ff046800, 0x7600023c9bc5f0ff, 0xcdff3ab5b477ff04, 0x0c06738d05bc8976, 0x0e0513060d059601, 0x0404af000204cf22, 0xff049c000804a1bb, 0x1d8163ff399aa796, 0x73e7ff04aa170ebc, 0x11bac64a9eff3c55, 0xff04bcbd0404c101, 0xcc26bfff393d113d, 0xdb8fff04ca010e3b, 0x11bb338926ff3c63, 0x0e04e5000904f301, 0x3c088a95ff04e02b, 0xee230ebbcf4b92ff, 0x96ffbc410567ff04, 0x04050501083a8ef3, 0x3bbfc790ff0500b4, 0x0e0208bb824a5dff, 0x22ff3c113af6ff05, 0x09055bc604bc3802, 0x0e052d1f0e053b00, 0xb8f63da4ff05280e, 0x36070b3baae968ff, 0xaaff3b1ce2fcff05, 0x0e054db104bc93df, 0xbac0ad6aff054807, 0x5600123c9e1f64ff, 0x96ff390ea19cff05, 0x120576c704bc5012, 0xff056c230e057100, 0x1dd410ff3cf2f660, 0x00023dd1334effbc, 0x0dff058300110588, 0xbc0c3699ff3c306b, 0xe13ecdff0591230e, 0xbc04bc488ae2ffb8, 0x0b0b05e2070d05e7, 0xb20405b4000205c2, 0xff3b7264a5ff05af, 0x05bd0109bc6a2223, 0xef94ffba790464ff, 0xa50405d400083bb6, 0xffbc46344eff05cf, 0x05ddb3043c505f99, 0x7b80ff3a49afc5ff, 0x043d674c7cffbd7b, 0x0d060f050b062fbf, 0xff05fc0112060106, 0x1facc9ffbd42c97d, 0xb888ff060a0008bc, 0x113d2e64e8ff3bff, 0xff061c0009062100, 0x6cc000ffbd233f84, 0xa955ff062a000938, 0x043da83a5cff3d2e, 0x0906450e0e0653c2, 0xbd4fdbc0ff064001, 0x4e0008bcda4303ff, 0xb8ffbac8299dff06, 0x1206652d0ebd0389, 0x3b80725dff066000, 0x6e0002bb7ac733ff, 0xb2ff3cffc16cff06, 0x0d078a93053c2700, 0x0406c3020806fe02, 0x040695b20406a3bc, 0x39274e62ff0690b1, 0x9e01083d2aefb0ff, 0x33ffbb32beddff06, 0x0e06b5bd043c716a, 0x3c01bec0ff06b01f, 0xbe040b3cdf6751ff, 0x77ffbb08ed6eff06, 0x0e06e7c9043b51f2, 0xff06d4c00406d917, 0x4e8320ff3b1f1b28, 0x8da5ff06e2050bbc, 0x0b3cf0a3a0ff3c09, 0xff06f4cb0406f90a, 0xab88e0ffbcd790e0, 0x050b3cc52e60ffbb, 0xc004072602080746, 0x73ff071301110718, 0x3a7530c0ffb8a007, 0xb6e23bff0721310e, 0xb0043c1850d7ffba, 0x11ff073391040738, 0xbcbf7846ffbb6bda, 0xc11073ff0741010c, 0x0b0b3ccf88fcff3a, 0x0009075c190e076a, 0xff3a4a63a3ff0757, 0x07650012b8f5f402, 0xeea8ffba7ca3fcff, 0xc504077c140bb9d2, 0xffbb2cffcdff0777, 0x07850a0e3be77b70, 0x5a4cff3a94ae8fff, 0x0008081a020dbaa7, 0x000d07b6050b07d6, 0xbbff07a3230e07a8, 0xbcb08a1effbb7b8b, 0x2b27deff07b10009, 0x060bbb30a484ff3b, 0x7fff07c3011107c8, 0x3a9e3533ff3c90a7, 0x8d8516ff07d10009, 0xb7043bd512feffba, 0x030e07ec010807fa, 0xff3c1bfbeeff07e7, 0x07f5a704bc45b56d, 0x2d68ffbbe5d190ff, 0x9405080cbc043cfe, 0xff3cd72d65ff0807, 0x0815000f39572b00, 0x48feff3ab9a4b8ff, 0xca040862000fbbca, 0xc9040834030b0842, 0xffbb28a6bdff082f, 0x083d140e3caf7209, 0x1b57ff3994b442ff, 0x2b0e085494053c80, 0xff3bc047daff084f, 0x085dcc043d6ecaa8, 0x82e3ffbc884933ff, 0xc8040886cd043b73, 0x09ff0873170e0878, 0xb9a9aeb8ffb8ef56, 0x61d785ff08810b0b, 0x9405bab5b23aff3a, 0x54ff0893230e0898, 0xbba7f83dff3bbb26, 0x25300cff08a1060d, 0x9505bace4944ff3b, 0xc1040aeac6040d1d, 0x9d040942b40409ce, 0x8e0508de0a0608fe, 0x71ff08cb230508d0, 0x39b35e48ffb9db59, 0x237111ff08d9000f, 0x010e3a9e661effbb, 0x6eff08eb020808f0, 0xbc08d081ffbaa37b, 0x896333ff08f90905, 0x33033bcd9583ffba, 0x110b091401120922, 0xffbc1684d9ff090f, 0x091d09063b69691d, 0xffbaff3b4882c8ff, 0x2a050934060dbc52, 0xff3a22947fff092f, 0x093d3905ba94a2fd, 0xb00cff3c6eaee2ff, 0x0108098a00113a8c, 0x3e05095c270e096a, 0xffbc2d43f8ff0957, 0x0965280ebac0828a, 0xa67aff3d444f21ff, 0x3401097c02073bb2, 0xff39af1e72ff0977, 0x0985010cbab0595f, 0x1bd5ffbb7a0735ff, 0x000c09ae2e0ebc6f, 0x4dff099bb50409a0, 0xba933342ffbb86c6, 0x98c27aff09a93103, 0x060d3a86486dffbc, 0x0cff09bb011209c0, 0xbafe816fff3bc15f, 0x916ce5ff09c90b0b, 0x0002bdbc488fffba, 0x19050a1a80050a5e, 0xc30409ec090609fa, 0xff3c709eacff09e7, 0x09f5000f3d5cfef3, 0x122fff3c43e132ff, 0x0d0e0a0c0006b92e, 0xffbbb7f6f5ff0a07, 0x0a150906b84d1ce1, 0x0a26ffbd1dcfd3ff, 0x82050a3ec504b988, 0x07ff0a2b060d0a30, 0x3c82bcfcff3d7df8, 0x3b44a2ff0a398605, 0x220e3b3d8ad5ffbb, 0x97ff0a4b88050a50, 0x3bf24360ffbbd45a, 0xc1eaa5ff0a590107, 0x6e05bd0ef437ffbb, 0x010c0a8613060aa6, 0xfcff0a73130b0a78, 0xbc24a19cffba4e32, 0xb6bb9aff0a81230e, 0x0a053c6444fcffb9, 0xbfff0a9301110a98, 0xbaffadeeffbc0b23, 0xbc6844ff0aa1200e, 0x84053c0417b1ff3a, 0xc2040abc6f050aca, 0xffba0e4a30ff0ab7, 0x0ac52b0e3d11ccd5, 0x89e9ffbac6d599ff, 0x070e0adc050b3b9a, 0xffbbbdda44ff0ad7, 0x0ae50a0b3b72dfee, 0x8fd0ffbc2911a4ff, 0x010c0c0101083a33, 0x340e0b3a00110b7e, 0x230e0b0c250e0b1a, 0xff390e75b2ff0b07, 0x0b152f0ebd0bfde6, 0x30bbff3c3df7c6ff, 0x0b0b0b2c7905bbb0, 0xff3cbbf420ff0b27, 0x0b35030b3e0a34c2, 0x50d7ff3d2ab59dff, 0x350e0b5ec7043c12, 0x66ff0b4b130e0b50, 0x3b5551b5ffbb5494, 0x3d3332ff0b59030b, 0x340ebbb049b1ffbd, 0xe5ff0b6b01110b70, 0x3a9b2e07ffba06a9, 0x204d2aff0b79030b, 0x0c053b76bf6bffbc, 0x220e0b9d2a0e0bbd, 0x45ff0b93170e0b98, 0x3dadecd4ffbd3ca8, 0xaf0002be2492f3ff, 0x5335ff0baa340e0b, 0x0d3d342372ffbe0b, 0x3d2f4190ff0bb802, 0xe1340e3e479b58ff, 0xce220e0bd3070d0b, 0xf5ff39c7d0ebff0b, 0xff0bdc02073a4665, 0x2d9d66ffbcb955cf, 0xee02070bf3030b3d, 0xf6ff3c0fb390ff0b, 0xff0bfc05063cddfe, 0x0e1320ffbcb67219, 0x4d060d0c9175053d, 0x1f01120c2d3a050c, 0xbb4cff0c1ac7040c, 0x043a6cf76bff3d2d, 0xbc95ee95ff0c28ca, 0x3f0112ba63aa67ff, 0x441fff0c3a44050c, 0x0bbae62e96ff3ce1, 0xbb96b1adff0c4807, 0x71c9043c2128faff, 0x5e010c0c63070d0c, 0xf4ffbbc902c7ff0c, 0xff0c6c49053ba33a, 0xe61c11ff3cc5dc6c, 0x7e6a050c832a0e3b, 0xc7ffbc45d486ff0c, 0xff0c8c300e3b9167, 0xe1d716ff3c248ae3, 0xb90e0b0cd9310ebb, 0xa6000f0cab7b050c, 0x5bffbc6b61d8ff0c, 0xff0cb4010c3afd0d, 0x2ff964ffb8fe1259, 0xc679050ccb0207bb, 0xb4ff3bc13e13ff0c, 0xff0cd4000c38c4b0, 0x84a923ffbaff7f81, 0xef7f050cfd0107bc, 0xa08aff0cea320e0c, 0x0dbb6b5f06ffbd02, 0x3c0f3ec8ff0cf806, 0x0fcc04bb9e1457ff, 0x4ae9ff0d0a020b0d, 0x0ebc9ec7f0ff3c10, 0x3c94f1d3ff0d1832, 0xe8220e3b14f988ff, 0x9100080e0b020d0e, 0x51000f0d56cb040d, 0x3e110e0d43050b0d, 0x91ff39bbadb0ff0d, 0xff0d4c170ebb1106, 0x4340c8ffb9233f21, 0x000fbc494216ff3c, 0x02070d6c030b0d7a, 0xffbb8ae340ff0d67, 0x0d750107bc07a920, 0x16e0ffbc808cb0ff, 0x96050d8c010cbc72, 0xff3b0e857bff0d87, 0x43b320ffbaac0d90, 0xb9c4040dd9cb04bb, 0xa6070e0dab01070d, 0x00ffbadf1355ff0d, 0xff0db4020b3a8e55, 0xd6cb80ff3b7f1900, 0xc6030b0dcb000d3b, 0x80ff3bdd0340ff0d, 0xff0dd4020b3b1367, 0x3788ebff3b17c000, 0xef030b0df4000f3c, 0xb800ff0dea01070d, 0xffbbae2300ff3ae5, 0x0e060b0bbbf31200, 0x8b3fb7ff0e01000c, 0x80ff39f03b00ff3b, 0x040e80000fb9c467, 0x040e37130e0e57cb, 0xff0e240d0e0e29c9, 0x2fb4ebff3869a176, 0xe165ff0e3296053c, 0x0ebc8bdfe0ffbc0d, 0xff0e44010b0e4917, 0x9ced56ff3bec4180, 0x4c80ff0e52010bbc, 0x053c9028c0ffbbc2, 0x0b0e6d01070e7b96, 0x3c5d3740ff0e6803, 0x7600083bc6f2b7ff, 0x20ff3c159ed0ff0e, 0xbb24c900ff3c8a46, 0x0ea81d0e0ec81f0e, 0x0e95090b0e9a080e, 0x296dffba803e8bff, 0xadff0ea301083a3e, 0xbb960967ff389e2c, 0x0eb5000c0eba9605, 0xc9feffbb44fc8bff, 0x55ff0ec3030b3b8c, 0x3c789170ff39db71, 0x0ed500020eda0112, 0x76b5ff3be488c0ff, 0x2bff0ee3c9043bae, 0x3b8d7e10ff3b6f77, 0x0f4f01110fae2c0e, 0x0f0f000c0f14030b, 0x0f05cd040f0a0008, 0x2608ffbbb7c790ff, 0xffbb1e5fb0ffbb5d, 0x0f2f050bbc192f40, 0x0f2501070f2a000c, 0xb418ffba5c3600ff, 0x02bc59abc0ffbba0, 0xff0f3c000c0f4100, 0xd13058ffba7aa600, 0xa1dbff0f4a0107bb, 0x0d3cc4cf88ffba18, 0x0d0f77240e0f9702, 0xff0f64070b0f6900, 0x995680ff39dac649, 0xbb00ff0f72030b3c, 0x0ebcdf9d20ffbaf4, 0xff0f84c9040f892a, 0xc14dd5ff3c819620, 0xc8abff0f9200023b, 0x0b3aab7335ffbb84, 0xff0fa4ca040fa903, 0xb2aec0ff3b982148, 0x0112bbf50300ff3c, 0x0b3c036f60ff0fb7, 0x3bf49000ff0fc003, 0x000013bc074700ff, 0x0003e80000000800, 0x0011990000000100, 0x9d00070000000000, 0x3fc70404728c0508, 0xa06a050123c10402, 0x3c6805005c021100, 0x29be04002e020d00, 0x10ff382a857dff00, 0xff00376105bb5747, 0xb9ac15ff385a9a67, 0x497e04004e0108ba, 0x16ff3b69d3f2ff00, 0xff0057af04bb94d4, 0x97fabeff3c167e47, 0x72060500801d043a, 0xc477ff006d010e00, 0x0cbb5837b8ff3bf1, 0xbb8d69afff007b00, 0x92010ebc910d70ff, 0x5078ff008d3b0400, 0x04bc31a81eff3aa8, 0xba8527baff009b35, 0xe8c0043bad38e5ff, 0xba010b00c8790500, 0x2a5fff00b5050d00, 0x04bb0c432dffbbf2, 0x389b533dff00c3bc, 0xda330e3aa08e6bff, 0xe072ff00d5bf0400, 0x053a245b73ff38b7, 0x3d2d5922ff00e37a, 0x03000cbb6fecceff, 0x81a1ff00f56b0501, 0xfaff00fe050bbda2, 0xbb48b1c3ff3c2550, 0x0110220e01150b0b, 0x1834ffbb638b92ff, 0x69ff011e1b0e3ae3, 0xbbd9e12bff3c06ee, 0x016f770501b37905, 0x01410a06014f6805, 0x3c1ee0ff013c2b0e, 0x000239c6e551ffbc, 0xff3b895eb2ff014a, 0x016102083a32bb8d, 0x4dcb95ff015c6f05, 0x170ebbb215b0ff3b, 0xffbc537edfff016a, 0x0193090e3c1ad984, 0x0180020d01850008, 0xda95ff3d30c895ff, 0x80ff018e0f063c91, 0xba7e3280ff3c4bdb, 0x01a0340e01a50006, 0x8479ffbb4b4472ff, 0x57ff01ae01083c67, 0x3cd928f4ffbd0d7c, 0x01db000601fb0002, 0x01c87b0501cd0008, 0x3bd0ff3c48b414ff, 0x07ff01d6000cbb32, 0x3be18cecffbbe939, 0x01e8090601ed0111, 0xe6eaff3d5277aaff, 0xa0ff01f6060e3cc2, 0xbddcd217ff3c3d2a, 0x0211030b021f020d, 0x460813ff020c0108, 0x040bbca019f0ff3c, 0xffbd3eca2aff021a, 0x02310112bbd5af88, 0xb554fcff022c0b0b, 0x0108bb01fef7ff3b, 0xff3a9585d0ff023a, 0x0356ca04bc84fec9, 0x028f840502d3230e, 0x02617a05026f0011, 0x1211abff025c070d, 0x7d05bc6292c7ff3d, 0xffbccd75d4ff026a, 0x0281060d3c4f79c3, 0xfceeceff027c220e, 0x0b0b3cbc0b1cffb9, 0xff3d28157eff028a, 0x02b38605bd4b008b, 0x02a0190e02a50012, 0xf2beff3b19d8ecff, 0xf1ff02aec904bd67, 0x3dcbc6e3ffbb7c25, 0x02c0020902c5000f, 0x4212ff3cda94a2ff, 0x50ff02ce0108bc55, 0xbb2c558dff3af7ea, 0x02fb02090312c904, 0x02e8870502ed070d, 0x503bffbb285316ff, 0xf4ff02f627033b16, 0x3c33eb89ff3d819f, 0x0308310e030d7905, 0xd00cff3cd4efa0ff, 0x05bd3fc790ff3dab, 0x110328060d033669, 0xba239cb7ff032301, 0x310b0b3ca7b196ff, 0x41ffbb9b40a0ff03, 0x1203487305bd15b5, 0x3e3d60a0ff034300, 0x517e053c576c50ff, 0x43ff3c04f812ff03, 0x0203e6cd04b89fdb, 0x050382cc0403a200, 0xff036f8505037489, 0x6f703effba251cbb, 0xc94aff037d2b0e3c, 0x11ba97799bffbc96, 0xff038f230e039400, 0x30f89effbc3e4230, 0xf2fcff039d85053b, 0x053b81ecddff3c59, 0x0503b8000803c68a, 0x3b8d9d0cff03b355, 0xc1010cbc6cfefdff, 0xd5ffbad70483ff03, 0x0c03d8010c3b8fcd, 0xbbfb4641ff03d300, 0xe10b0b3c43a4c4ff, 0x41ff3cbc542aff03, 0x0e042e340e3da31e, 0x0504000002040e31, 0xbc544429ff03fb7c, 0x092b0e3bb768fcff, 0x11ffbc9959f0ff04, 0x05042002083b3a8b, 0x3d96a078ff041b6e, 0x2986053b30bf38ff, 0x28ff3c10b027ff04, 0x0b045200113d19f4, 0xff043f0208044403, 0xaf835eff3c836964, 0xef86ff044d83053c, 0x0dbc8ece73ffbd16, 0xff045f0002046406, 0x69b5bfff3aa388d2, 0x9fb5ff046d010cbc, 0x053c7a7f2affbb58, 0x0d058d010c066a8d, 0x0204c6220e050106, 0x0404981f0e04a600, 0xba0c1664ff0493bd, 0xa1bc04bc06dc9fff, 0x97ff3b693c77ff04, 0x0404b801113d0ff7, 0x392a2985ff04b3bd, 0xc1010e3bb7bc71ff, 0x1aff3c4d1256ff04, 0x0c04e10012bb2195, 0xbc131200ff04d300, 0x21c298ff04dc0009, 0x0112bd4de17cffbd, 0xb3ff04eeb40404f3, 0x3bb018e8ffbc0ef3, 0x9eb0e4ff04fc030b, 0x0108bb7944a3ff3a, 0x0012052900090549, 0x46ff05160a0b051b, 0x3b512e10ffbb82d2, 0xcd6aa6ff0524070b, 0x070bbc36c637ff3b, 0xa4ff0536b304053b, 0xbb96a3ffff3bc209, 0x9505cfff0544c604, 0x00123ba3471effbb, 0x0d0e055f0208056d, 0xff3b0e59ccff055a, 0x0568c904bbba3e54, 0x0910ffbc21b7eaff, 0x0b0b057fb204bcef, 0xffbc82f282ff057a, 0x0588030b3c74e680, 0x5ea3ff3b12574fff, 0x070d05debc043c46, 0xa30405b9a40405d9, 0xbfff05a6030e05ab, 0x3c8e0a72ffbba25e, 0x68cf0bff05b40012, 0xa604bdccf9ebff3c, 0x0dff05c6030e05cb, 0x3dcd335cffbb2e8c, 0x40a38bff05d4a704, 0x3cffb9f01058ffbd, 0x0b0626be043d502b, 0x1105f8060d060603, 0xbd2f4eefff05f301, 0x010009bc0fb519ff, 0x88ff3c5dc775ff06, 0x09061800113bb327, 0xbd12ec64ff061300, 0x21000938552000ff, 0xfbff3d362ff3ff06, 0x0b064a00023da223, 0xff0637c604063c0b, 0xaffe64ff3c9eae46, 0x2deeff0645220ebb, 0x043d18145affbc28, 0xff0657050b065cc3, 0x5aa8d4ffbcb1d3c5, 0x52a9ff0665060dbd, 0x05bbf35409ff3ade, 0x0806fe020d078a93, 0x0e069abe0406ba02, 0xff06878f05068c1d, 0xddafd8ffbafd7488, 0x9f4aff0695910539, 0x0e3c2755e6ffbacf, 0xff06a7310e06ac33, 0x66885fff39154fa3, 0x0454ff06b5340e3c, 0x043bfb9579ffbc89, 0x0506d0000206dec9, 0x3c8d8f35ff06cb8f, 0xd9170e3a630000ff, 0xb0ffbb10c8beff06, 0x0506f0030b3c2e5a, 0xbd038240ff06eb8f, 0xf90a0bbc683be0ff, 0x80ffbafb7400ff06, 0x0e0746050b3cb176, 0x050718000f072609, 0xb84561f0ff071391, 0x21c8043c4c0628ff, 0x57ffb91f6293ff07, 0x0c07380b0ebc3979, 0xbae3e335ff073300, 0x41200ebc8618c6ff, 0x71ff3a51531bff07, 0x0e076a0b0bbaa7d8, 0xff07570009075c19, 0xdd5ab1ff3a362691, 0x6024ff07650012b8, 0x04b9bdd6d3ffba63, 0xff0777c304077cc9, 0xc76c24ffb8895af6, 0xcc21ff07850012ba, 0x0dbb1c7900ff3b25, 0x0407d60008081102, 0x0b07a8020907b69a, 0xbb8b842cff07a304, 0xb197043b2eedf5ff, 0x70ff3c1f6040ff07, 0x0407c82a0e3d312b, 0x3ce6ed74ff07c39c, 0xd12b0e3a093cbeff, 0x94ffbc70e896ff07, 0x0407fa230e3ad308, 0xff07e71d0e07ecc4, 0xe8f160ffb94e6b92, 0x58a0ff07f5c704bc, 0x043af2874bff3d6f, 0xbd0d9feeff0803c9, 0xba3560ff080cca04, 0x0e0bbc3a1470ff3c, 0x96050839010b0859, 0x09ff0826000f082b, 0xba5e4197ff3b973e, 0x778351ff08340012, 0x0012bc160282ff3b, 0x75ff08460011084b, 0xbc25fe3aff3997f6, 0x0d8198ff0854170e, 0x9405b95f34a6ffb9, 0x010e086fa404087d, 0xffbbdd1d1fff086a, 0x08780002bce39afc, 0x7360ff3b971813ff, 0x100b088f1d0ebabf, 0xff3c107dc1ff088a, 0x0898220e39adbe33, 0xccc2ff3b9da63eff, 0x96040d1d010cbbed, 0x160609c587040ae1, 0x020d08f580040939, 0x500408c7000c08d5, 0xffbb1619c4ff08c2, 0x08d0010bbbed5841, 0x3f08ffbc10db8fff, 0x230e08e754053af6, 0xffb8fe0dbaff08e2, 0x08f08305ba2e1c27, 0x394affb9b5d724ff, 0x0f050919180e3a34, 0x4aff09060111090b, 0x3c64f0e1ffbc4e20, 0x81c252ff09143103, 0x84043a8d64c2ff3b, 0xd0ff09263f01092b, 0xbc5be289ffbab429, 0x0c3cc8ff0934210e, 0x000cba9c1517ffbc, 0x0f050961050e0981, 0x4aff094e00050953, 0x3a8ef2abffbb550c, 0xd0fbd6ff095c000e, 0x84043cf1592bff3b, 0x68ff096e18060973, 0xbce15779ff3b2fde, 0x3a5db2ff097c1706, 0x010ebe1031f8ffbd, 0x84040997070509a5, 0xff373a6d8fff0992, 0x09a00f053cd8f3de, 0xe553ffbcc2f8a1ff, 0x500409b764043c8b, 0xff3ba72214ff09b2, 0x09c0030b3ca2392a, 0x4031ffbc81b3cdff, 0x89040a551706bd50, 0x000d09f106050a11, 0xfaff09de0d0e09e3, 0x3c62327cffbc7310, 0xb00b60ff09ec0f06, 0x01083d358156ff3c, 0xb7ff09fe03060a03, 0x3c35f492ff3a8dab, 0xd0e448ff0a0c060e, 0x10033b1506f4ffbc, 0x0e050a2719050a35, 0xffbc20e96bff0a22, 0x0a30020d3cce7516, 0x2aa9ffbd5815a1ff, 0x8a040a478b04bd81, 0xffbb91e7a9ff0a42, 0x0a508c043c26e191, 0x89aeffbb125a0aff, 0x02070a9d040e38a3, 0x020e0a6f01110a7d, 0xff3b99374cff0a6a, 0x0a781906bc1343e9, 0xe760ffbcaa5559ff, 0x00050a8f010e3c23, 0xffbccf3013ff0a8a, 0x0a9800023c011abe, 0x7e85ff3a2ec500ff, 0x00050ac188043db0, 0x30ff0aae030b0ab3, 0xbc93ec60ffbdde1a, 0x0fd408ff0abc000d, 0x000c3dc8010dff3d, 0x27ff0ace020d0ad3, 0xbd2b53fcff3cdf93, 0x47d910ff0adc030b, 0x060ebd5b1830ff3d, 0x01110b759a040c01, 0x01080b1199040b31, 0xcbff0afe98040b03, 0x3c434050ff3acccd, 0x08f83eff0b0c000c, 0x050ebc276a1aff3b, 0xdcff0b1e040e0b23, 0x3cc0944dffbc350a, 0x488ae6ff0b2c030b, 0x0806bd954f72ffbc, 0x0b0b0b47000c0b55, 0xff3c1373dbff0b42, 0x0b50040ebd011dec, 0x8170ffbd392663ff, 0x06050b6701083b7f, 0xffbbae3b3aff0b62, 0x0b7000023c857fb7, 0x8a4affbc69740fff, 0x030e0bbd12063b78, 0x02080b8f2b050b9d, 0xff3b6920c6ff0b8a, 0x0b980008bb834b78, 0xe231ff3b00ea61ff, 0x75050baf0b06bad1, 0xffbca3e8f6ff0baa, 0x0bb8a004bbddae79, 0x31abffbb3a5cb5ff, 0x000f0be1000e3b73, 0xefff0bcea9040bd3, 0xbbcbb972ff3b4adb, 0x075d61ff0bdc2905, 0xa5043b0b6e58ffbb, 0xbdff0bee18060bf3, 0xbcba4920ff3c4ee1, 0x3f45ecff0bfc2905, 0xbe04b7a45e41ff3b, 0x190e0c4d29030c91, 0x29050c1f00110c2d, 0xff3c6f3456ff0c1a, 0x0c282305bd2c1334, 0xc638ff3d3dccc2ff, 0x1b030c3f23033d93, 0xff3b02af4aff0c3a, 0x0c482703bc3a5ae8, 0xe125ff3c062f8aff, 0x51050c71310ebc71, 0x6bff0c5e2f0e0c63, 0x3b03a335ff396566, 0xc4e3d2ff0c6c5305, 0x0e0639813ca2ffbb, 0xddff0c7e0d060c83, 0xbcfc3bd1ffbb5fe5, 0x90cf25ff0c8c1206, 0x000c3dae5d72ff3b, 0xbf040cb9030d0cd9, 0xc6ff0ca629050cab, 0xbd3c01dfffbc8c89, 0x95b51cff0cb4260e, 0xbf04bc25f84fff3a, 0x77ff0cc62b0e0ccb, 0x3c95041fff3a879d, 0xc96258ff0cd40207, 0xc5043a4e5397ffb9, 0x300e0cef02070cfd, 0xff3a05ecbcff0cea, 0x0cf86c053b719acc, 0xfb90ff3aee10ccff, 0x02070d0f060d3b14, 0xff39834a47ff0d0a, 0x0d184a05b9c1e5e9, 0x4240ff3b53a500ff, 0x3e050f5d5d053a92, 0x7f040db5210e0e41, 0x62040d5168040d71, 0x0fff0d3e36040d43, 0x3abdd29effba803f, 0x288653ff0d4c6304, 0x00113aa43cf4ffbc, 0x14ff0d5e01070d63, 0x3b3233e6ffbb9eb7, 0x2f7db7ff0d6c0006, 0x3e01bc08ca15ff3c, 0x39010d879d040d95, 0xff398bb295ff0d82, 0x0d9000113c8dd367, 0x462fffbc493defff, 0x82040da78c04be50, 0xffbc7eb6e4ff0da2, 0x0db0170e3be3ebfa, 0x8704ffbaef04e6ff, 0x94040dfd220e3b89, 0x30010dcf41010ddd, 0xffbab17962ff0dca, 0x0dd80112bbf12468, 0x725fffbcbebbf9ff, 0x02070def9b0439e0, 0xff3bcec187ff0dea, 0x0df80a063d334911, 0x386bffbc443ae4ff, 0x3b010e21b3043c80, 0x23ff0e0e38010e13, 0x3c261021ff39d495, 0xdb8ddeff0e1c3705, 0x3d05bca9a1d6ff3b, 0xe4ff0e2e05050e33, 0xb97a3008ffbcb862, 0x646390ff0e3c0008, 0x00083cc75c8affbc, 0x53050e8dad040ed1, 0x00110e5f9e040e6d, 0xffbb8b2f16ff0e5a, 0x0e68a8043b7a1e68, 0xdbd3ffbc343482ff, 0x7f040e7f56053c80, 0xffbb768d17ff0e7a, 0x0e880b0bbc90dbbf, 0xea9dff3ab5585aff, 0x210e0eb10207bc1a, 0xcaff0e9e070d0ea3, 0x3d40eebfffbb8b0a, 0x204d08ff0eac5205, 0xaf04bbd298d2ffbd, 0x49ff0ebe070d0ec3, 0x3cbe21ecffbd0cd2, 0xfd7de4ff0ecc5b05, 0x9c04bc80596eff3b, 0x01080ef9090b0f19, 0x78ff0ee6040b0eeb, 0x3c2820c2ff385aec, 0x92ff44ff0ef4010b, 0x030ebba8397cffbc, 0x8fff0f06060d0f0b, 0x3b845744ffbc64ea, 0x13f779ff0f140012, 0x02083ca804afff3c, 0x0e0e0f2fbc040f3d, 0xff3c31a7caff0f2a, 0x0f3801073ba3e332, 0xc3daffbc5deaf5ff, 0x00020f4fb0043b45, 0xffbcc3acacff0f4a, 0x0f585c05bd3078f3, 0xda8fffbafa3943ff, 0x0002107d140bbca2, 0x73050fad80050ff1, 0xbc040f7fc1040f8d, 0xff3a3d9544ff0f7a, 0x0f88c304bc41a958, 0x585cff3c48ba98ff, 0xa7040f9f0112bb31, 0xffbb97cb41ff0f9a, 0x0fa80d0e3aaff2b8, 0xc96dff3c1bc389ff, 0x060d0fd1a404bcef, 0x59ff0fbea0040fc3, 0xbd3a536effbc59c0, 0xccfb08ff0fcc000e, 0xae043c19d7b5ffbc, 0x05ff0fde070e0fe3, 0xbc87baf6ff3d433d, 0x9a97dcff0fecb104, 0x9c04ba912039ffbc, 0x00081019040e1039, 0x9cff10069804100b, 0x3d0019f6ff3aaff9, 0xf7c417ff1014000e, 0x070ebc1dc835ffbc, 0xf1ff10260111102b, 0x3d8e21a9ff3ccedd, 0xe97ec5ff10340b0e, 0xa8043c7ecd8cffbc, 0x0011104f030b105d, 0xffbcdabb20ff104a, 0x10580c0bbbd15797, 0xc009ffbccffea4ff, 0xab04106fb204bd74, 0xff3c932665ff106a, 0x10780b0b3ad47526, 0x29b3ff3a3dc787ff, 0x060d110d180ebc83, 0x010710a9870510c9, 0x66ff10960b0e109b, 0x3b8e8a53ffbc7375, 0x60a8edff10a4a204, 0x080ebcab5f43ffbb, 0x6dff10b6010710bb, 0x3d336671ff3bbf9d, 0x98d336ff10c4c904, 0x170e3c23bd11ffbc, 0x0e0e10df070d10ed, 0xff3b0cea81ff10da, 0x10e8bc04bc13933d, 0x4637ff3d31c5f7ff, 0xc60410ff0011bc4d, 0xffbe02d795ff10fa, 0x11086c05bd925b64, 0x829cff3d2c2ee0ff, 0x070d11551c0ebd22, 0x060d1127c2041135, 0xff3d507e10ff1122, 0x113000113cd4d7fa, 0xf7f7ff3cfcd2f1ff, 0x00021147b904bbac, 0xffbb619000ff1142, 0x11500107bc879a55, 0xa550ffbe1f0f92ff, 0x001211791d0ebcc8, 0xe1ff11668705116b, 0xbc3f81e9ffbd8d65, 0xa58626ff1174c104, 0x200e3c3771b4ffbc, 0xfcff1186c704118b, 0x3d0e7a81ff3dc24b, 0x9b5543ff1194220e, 0x00133acd89c4ffbc, 0x03e8000000080000, 0x1151000000010000, 0x0007000000000000, 0xc70403fd8c050855, 0x6a05012cc1040248, 0x6805005c021100a0, 0xbe04002e020d003c, 0xff38197cc5ff0029, 0x00376105bb41bffd, 0x1adfff3844be8fff, 0xb304004e0209baa7, 0xff3ac0780bff0049, 0x00579f043b1ec611, 0xaef9ffbb7039feff, 0x02080080170ebc9d, 0x85ff006d29050072, 0xbb7fea43ff3af7ee, 0xfc6ca0ff007b0d06, 0x5305bcaa7d11ffbb, 0x4cff008d02080092, 0x3d1ad76cffbc052f, 0x4566b3ff009b030b, 0xc004bb425a5dff3d, 0x120e00c8790500e8, 0xf5ff00b5020b00ba, 0x3a353229ffbb804a, 0x76bd0fff00c39a04, 0x330eb9e02d15ffba, 0x0fff00d5bf0400da, 0x3a13eb87ff38a57f, 0xd95d5bff00e3340e, 0x78053cef937bffbb, 0x010800fe7405010c, 0xffbc87c019ff00f9, 0x01072b0e3aff510c, 0x6c6cff3d0f9950ff, 0x340e011e010cbc12, 0xffb8f81441ff0119, 0x01277f053da232aa, 0x6883ffbcd1e47aff, 0x000f01bc75053ad6, 0xc504015874050178, 0x3cff01450a06014a, 0x3a41bb4fffbc8232, 0x78bda4ff0153030b, 0xc404bb9bc2a1ff3c, 0x60ff0165020d016a, 0x3dab0660ff3d54f8, 0x8b89b3ff0173050b, 0x73053d2a8ea4ffbb, 0xc404018e6d05019c, 0xffbac46295ff0189, 0x01971c0e39a91e96, 0x641fff3d23e1e3ff, 0xc50401ae0e0bba39, 0xff3637d000ff01a9, 0x01b7c2043cd61ab0, 0xe10cff3d9cf6d7ff, 0x1f0e02048105bc00, 0x170e01d6180e01e4, 0xffb89a007aff01d1, 0x01df0008be045f78, 0x9457ffbbb4fb8dff, 0x010801f62b0e3cf2, 0xffbbc28f46ff01f1, 0x01ff2d0e3b28791e, 0xbed4ff3cee5ac3ff, 0x830502288905b9a0, 0x17ff02150112021a, 0x3bb59965ffbbbcbf, 0x805eeeff02230008, 0x0a0b3a6ed8abffb9, 0x79ff02350002023a, 0xbc025fe3ff3a9b24, 0x9f3ae7ff0243010c, 0x1c0e3bda6560ff39, 0x1b0e02ca0002034d, 0xcb040278cc040298, 0x3aff02650b0e026a, 0x3b44ceb3ffbb88a7, 0x51f8c8ff02730011, 0x8905bbac1a03ffbd, 0x3eff02858605028a, 0x3d95937bff3c9014, 0x67038bff02930b0b, 0x5905bc269edaff3c, 0x18ff02a5030b02b3, 0xff02aecb043d8613, 0x3462e0ff3d408f50, 0xb3c0ff02bc62053d, 0x35ff02c5c804bc8d, 0x3d0e88a0ff3d0974, 0x02f2060d03120208, 0x02df170e02e44705, 0x0c88ffbaafdc9aff, 0xd2ff02ed0209bd26, 0xbb59d570ff3bb8b0, 0x02ff000803040e0e, 0xe72bffbac2564cff, 0x87ff030d170e3ce4, 0xbb3d72adffbc82d5, 0x03288a05032d060d, 0x1b3da9ff0323cb04, 0x90ffbb31cacaff3c, 0x05033f170e3d70bc, 0xbbc709eaff033a82, 0x4800113bcf1185ff, 0xd2ffbc85cb34ff03, 0x0d0371010b3c4f2c, 0xff035ecb04036302, 0x6e4300ff3da6ef70, 0x9100ff036ccb043c, 0x05bbaea800ffbc40, 0x0503990c0b03b988, 0xff0386010c038b82, 0x328588ff39f82b29, 0x8728ff039483053b, 0x0db856b89effbc33, 0xff03a62b0e03ab06, 0x3640dfff3c0242cc, 0x3d80ff03b48705bb, 0x053cfe4480ffbb6d, 0x0c03cf220e03dd89, 0x3bce1490ff03ca00, 0xd8000cbd8471fcff, 0xb6ff3b7d4f52ff03, 0x0203ef0108bc5282, 0xbb179afdff03ea00, 0xf88a053b9de4c9ff, 0xbcff3c07ec44ff03, 0x0b062b8d05bbac73, 0x0b04950e0e051811, 0x040431050e04510e, 0xff041eb3040423bc, 0xb371e5ffb98af60e, 0x98c0ff042c0b0bbb, 0x0ebd1ba195ffbac1, 0xff043ea904044307, 0xb662cbff3bcd3384, 0x51dbff044c010cbb, 0x023b20037bffb888, 0x0e04678904047500, 0x3b54da74ff046201, 0x70a7043c1e359bff, 0x1bffbccff2a3ff04, 0x0e0487060d3c4fb9, 0xbc205776ff048207, 0x90070d3b2b33dcff, 0xecff3c950dfaff04, 0x0e04d4020dbcf389, 0x0e04af8a0404bd30, 0xbc60de49ff04aa1d, 0xb8000fbd2203f4ff, 0xc0ff3bd6bcdbff04, 0x0404cf0009bcd7ad, 0xbd2af229ff04cabe, 0xae4effbc309c36ff, 0x000204f82d0e3d17, 0xeaff04e5c40404ea, 0xbb083fcbff3a86b9, 0x28437bff04f3000f, 0x0112ba8ce0f0ffbc, 0x71ff0505ca04050a, 0x3c51417dffbbfeee, 0x7f5b7aff05130008, 0x00083b8d528aff3c, 0x090e0564140e05a8, 0x040e0536b3040544, 0xff3aecb88bff0531, 0x053f000cbb23fd25, 0x022effbacc5723ff, 0x0002055600093c2a, 0xffbc325f2eff0551, 0x055f01123c672045, 0x880bff3b36b520ff, 0x010c0588170ebc2e, 0x46ff0575bc04057a, 0x3d107548ff3c0184, 0x5d602dff0583060d, 0x190e3c37b65fffbd, 0x97ff0595010c059a, 0xbc7d5927ffbb2d57, 0xd77223ff05a30009, 0x140bbbe3e1baff3a, 0x070d05c7010805e7, 0x48ff05bdbc0405c2, 0x3bea7ee0ffbd11a8, 0xd900123c826380ff, 0x5ee8ff05d4000c05, 0x08bd2db450ffbcb9, 0xbd216170ff05e202, 0x0b1d0ebd443ec4ff, 0xf8c90405fd190e06, 0x9bff3a7fe943ff05, 0xff06061c0ebc2a31, 0xd91dabff3c84be20, 0x180002061dc204bc, 0x44ff3d8c6246ff06, 0xff0626220e3d085f, 0x510315ff3c3c936a, 0xbf030d07429305ba, 0x5b310e067b000906, 0x489205064d010b06, 0x33ff3b7b7b1eff06, 0xff06562b0ebc2aab, 0x056ca7ff3a5f9064, 0x68340e066d350ebc, 0x20ffba2ebf81ff06, 0xff067600083d3446, 0xe24413ffbc7def98, 0x91a404069f020bbc, 0xc16eff068c910406, 0x04ba3d47cfffbc14, 0xbd3c074eff069ab1, 0xb19205bc294eedff, 0xef99ff06ac2b0e06, 0x043cd69c5dffbadc, 0x3bfe4ce3ff06babd, 0xfe5b043d30b4c0ff, 0xd9900506e7000c06, 0xcdb7ff06d4011206, 0x123bdff7d8ffbac1, 0xbb07a156ff06e201, 0xf90112bc9e3038ff, 0x7f34ff06f4000206, 0xff3d0d490cffbc7e, 0x07220002bda88690, 0x070f740407147804, 0xbb49ff3a514febff, 0x07ff071d7b04bc51, 0xb8bc1fd8ff3b78c1, 0x072f050b0734c304, 0x2d19ffb935dbbdff, 0x0aff073dc7043a6d, 0x3a3b8866ffbbb1ff, 0x0785000807c9020d, 0x0760070e076e2f0e, 0x22938fff075b040e, 0x2c0ebb838ccfff3a, 0xff39d3ffe5ff0769, 0x0777300e3d08f6ca, 0x80ca04bdb286d0ff, 0x7fffbd165c68ff07, 0x0407a9000fbb3283, 0xff07969405079bb7, 0x2775ecff3ba18e33, 0x95caff07a40002bc, 0x0c3b783c02ffbb75, 0xff07b6c80407bb00, 0x182268ffbba9c5f7, 0xe96bff07c40b0bba, 0x0f3bd382c0ffbcab, 0x0907f1140e081100, 0xff07dec60407e300, 0x3d1a84ffbb1e947c, 0x79acff07ecc0043c, 0x05bbb70a4dff3be9, 0xff07fe020b080395, 0x262210ff3ca4e2bd, 0xea87ff080c1f0e39, 0x0ebd05ac51ffbad3, 0x0e0827000c083526, 0x3a51aaf3ff082209, 0x30220eb99a72ffff, 0xfaffba108162ff08, 0x0c084700123b9fe1, 0x3b5ac942ff084200, 0x5000093c8579e5ff, 0x96ffbb4059dcff08, 0x040cd5010c3bc771, 0x05097d87040a9996, 0x0508ad840408f164, 0x04087f8204088d37, 0xb806e581ff087a7a, 0x8834053a88c961ff, 0x14ffbc4a479eff08, 0x01089f2903bd095c, 0x3c90dec9ff089a36, 0xa83a05bd224d8cff, 0x30ffbb9affdbff08, 0x0608d10305b9a90d, 0xff08be400108c316, 0x76db7affbbf9fbad, 0xd406ff08cc010e3c, 0x06bd22c4b3ff3c5e, 0xff08de000208e308, 0x015575ff395eb3bf, 0x52d5ff08ec0002bc, 0x0f3bb07978ff3cc8, 0x040919000e093900, 0xff0906040d090b72, 0x627848ffbc74db93, 0x4f64ff0914000c3c, 0x0dbe09f558ffbba3, 0xff0926070e092b04, 0x2509a3ff3c122481, 0x2ec7ff0934040ebc, 0x0e3c1cc68eff3ccc, 0x0e094f020e095d07, 0x343049a6ff094a01, 0x588204bc6bc9ebff, 0x05ff3af8741aff09, 0x0c096f080e3c61a8, 0xbbf062ceff096a00, 0x780a0ebcca13d7ff, 0xb4ff3ca60f15ff09, 0x040a0d17063a0881, 0x0d09a9060509c989, 0xff09960d0e099b00, 0x4b93cdffbc5ac27a, 0xe5b6ff09a406063c, 0x083d0709bfff3bb3, 0xff09b6030609bb01, 0x23c29aff3a7f0222, 0x00a6ff09c4060e3c, 0x033b061ff4ffbcbc, 0x0509df180509ed10, 0xbbb84f92ff09da11, 0xe819053d0b82c3ff, 0x79ff3c63db78ff09, 0x0409ff8b04bd59af, 0xbb835096ff09fa8a, 0x088c043c16315aff, 0x38ffbb03b767ff0a, 0x0e0a55020738932e, 0x0e0a2701110a3504, 0x3b89e4f7ff0a2202, 0x30030bbc0489edff, 0x79ffba805761ff0a, 0x0c0a470002bcc37d, 0x3c34d25aff0a4200, 0x500208bd0bdd71ff, 0x20ff3d7e78b1ff0a, 0x0d0a79010ebc3441, 0xff0a6601080a6b00, 0x7d3100ff3d54bf85, 0xa43dff0a7401083b, 0x0d3c185eb6ffbc28, 0xff0a8600050a8b00, 0xb41de0ffbdc7e460, 0x49faff0a9488043b, 0x083b78fa55ff3dde, 0x050b2d00020bb901, 0x0b0ac9320e0ae94a, 0xff0ab6030d0abb0b, 0xe746daff3c445d7c, 0x5563ff0ac4060d3a, 0x01bc1c2b8cffbb1f, 0xff0ad6000f0adb38, 0xe51c45ff3bc5438c, 0x4f4bff0ae4bc04bb, 0x0e36c55aacffbc2c, 0x050aff5a050b0d26, 0x3b926828ff0afa51, 0x08b604bbcbb11fff, 0x57ff3906d814ff0b, 0x0e0b1f070dba4281, 0x3b4f3b9aff0b1a31, 0x280a0bbb871724ff, 0xe4ffbc67135fff0b, 0x060b757605bda746, 0x050b4774050b550c, 0x3a7dd800ff0b4255, 0x500111ba5ef79bff, 0x1dff3b2ad5c8ff0b, 0x0e0b67060ebcab17, 0x3b082c98ff0b6205, 0x7097043a0a8f57ff, 0x5dffbc7f7423ff0b, 0x110b997705bb28c8, 0xff0b86060d0b8b01, 0x657da4ff3cf16974, 0xaa4fff0b9497043b, 0x04bc4ed59affbdfe, 0xff0ba60c0e0bab9c, 0x4f0a45ff352e1e69, 0x14c7ff0bb47f053c, 0x053a17e751ffbabb, 0x0d0c0528050c4931, 0x040bd7a2040be505, 0x3b7722e9ff0bd2a0, 0xe0000c3cf53f23ff, 0xa3ffbc15017eff0b, 0x050bf70906bb15cf, 0x3b2edad1ff0bf225, 0x0012063cc5342bff, 0xb0ffbb340b86ff0c, 0x040c29070d3a97a7, 0xff0c1620030c1bba, 0x2f3a7affbc5e18fb, 0xa9d4ff0c240006ba, 0x05bbd626f5ff3ca8, 0xff0c362b030c3b30, 0x2e588eff3c58bac4, 0x74f8ff0c44190e3d, 0x05bd8f6730ff3cfb, 0x010c7123030c9133, 0xff0c5e030b0c633e, 0x9fa81cffbb4d89fb, 0x9cb0ff0c6c2a0ebc, 0x03bd976a05ffbde8, 0xff0c7e060d0c8330, 0x327273ff3d086ef5, 0xbab3ff0c8ca8043c, 0x05bd952d8cffbc2c, 0x030ca701120cb537, 0x3d59ffdfff0ca233, 0xb000023c2c3555ff, 0x01ffbcb7ba61ff0c, 0x0b0cc738053b3cfc, 0xbc9456f1ff0cc20e, 0xd0070dbdd54239ff, 0x07ffba0e607dff0c, 0x050f155d053bab9d, 0x040d6d210e0df93e, 0x040d0968040d297f, 0xff0cf601110cfb62, 0x891481ff3907a60c, 0xff23ff0d042701bb, 0x113aae85fdffbbbd, 0xff0d1601070d1b00, 0x2061efffbb8ed7f6, 0xf127ff0d2401123b, 0x0ebbf63877ff3c1d, 0x010d3f070d0d4d1e, 0x3a51607aff0d3a3e, 0x48170ebafc90d2ff, 0xd1ff3bddea55ff0d, 0x010d5f080b3ceaee, 0x3c4725b5ff0d5a34, 0x68070dbc818e25ff, 0x76ff3caf1163ff0d, 0x040db5220ebce51a, 0x040d8741010d9593, 0xb9ac9da6ff0d826f, 0x903b05bbcaa276ff, 0xc8ffbc84e0aaff0d, 0x070da79b04bd5a64, 0x3bc93e7dff0da202, 0xb0a2043d1d3d7bff, 0xebffbcb3b973ff0d, 0x010dd9b3043a48d0, 0xff0dc6070d0dcb3a, 0xd557afff3a4b45ae, 0xa1e1ff0dd44101bb, 0x05bb1bc041ff3c77, 0xff0de607060deb03, 0x19c559ffbbe35304, 0x560cff0df43303bd, 0x083b0f0a36ffbb64, 0x0d0e45100b0e8900, 0x0e0e177e040e2507, 0xbb269648ff0e1202, 0x2000113ba85920ff, 0x07ffbc3b1184ff0e, 0x040e37230eba8ee9, 0x3beb4c48ff0e32b2, 0x40b9043d6a165dff, 0x26ffbd6efc51ff0e, 0x0e0e6939013c0a74, 0xff0e5633010e5b22, 0x8c4d74ffbc2d6f54, 0xe8d7ff0e64070d3b, 0x0bbcec3c23ff3ccb, 0xff0e767a040e7b11, 0xe636d7ffbc0236c3, 0x9502ff0e84ad04bc, 0x04bc505ef2ffbb3c, 0x080eb10a0b0ed19c, 0xff0e9e00110ea301, 0x53e8c2ff3a392289, 0xdd6fff0eac020b3b, 0x11bb92fb67ffbc71, 0xff0ebe040e0ec300, 0x138238ffbbe47798, 0x7bc2ff0ecc040e3c, 0x043ca0fc58ff3b13, 0x0b0ee741010ef59d, 0x3d43b406ff0ee20b, 0xf00a0b3a44cbb7ff, 0xe5ffbaa42cf7ff0e, 0x0b0f070208bce0ac, 0x3ba0f294ff0f020b, 0x10b0043b7060a1ff, 0xd5ffbcd62f54ff0f, 0x051035130bbb31f7, 0x040f65010b0fa984, 0x0e0f37080e0f4593, 0xbb91cda3ff0f3207, 0x408e04bd0e55cfff, 0x68ff3c000d85ff0f, 0x0d0f579404bc23de, 0xbd113273ff0f5206, 0x60a404bd724c4bff, 0x38ffbc2f7569ff0f, 0x050f896a05bc8f34, 0xff0f760a0b0f7b68, 0x2aeab6ff380a4978, 0xec9eff0f8401123b, 0x08bc97c400ff3c04, 0xff0f9676050f9b01, 0xf1ee47ffb9912c47, 0xfe25ff0fa4020eba, 0x043b3a77d6ffbd1e, 0x040fd100080ff1af, 0xff0fbe060d0fc3a7, 0x06994affbb8dcd4e, 0xb2a4ff0fcc070e3c, 0x04ba68d577ff3d0d, 0xff0fde030b0fe397, 0x1abcd7ffbc3c4be5, 0xd1dfff0fec010ebd, 0x0bbcae8ec0ffbb97, 0x0410070012101503, 0xbc53ea16ff1002cb, 0x10010e3c81dd43ff, 0x58ffbc31b133ff10, 0x0e1027040e3bb640, 0x3b873dd3ff102203, 0x300b0b3d3f9da9ff, 0x9dffbb64ddcfff10, 0x0510c5070dbc468b, 0x0e1061bb0410816c, 0xff104e000e105318, 0x9719eaffbcc0a0fb, 0x533aff105c190e3a, 0x123ba9ce2cff3d2a, 0xff106e0207107300, 0x3ddb7bff3c695627, 0x321bff107c060dbc, 0x05bd6047f7ffba98, 0x0e10970b0e10a573, 0x3b1a1ff9ff10920a, 0xa00107bd871e96ff, 0xc0ff3ccf0e2bff10, 0x0e10b700083b641d, 0x3c1743e4ff10b207, 0xc0be04bb803f07ff, 0xefffbd126346ff10, 0x0e110d0e0e39be0f, 0x0410df030e10ed07, 0xbcf69088ff10da6d, 0xe801073ce1b110ff, 0xe8ffbdb4300fff10, 0x0810ff080ebd2256, 0x3dd8242fff10fa00, 0x080d0e3d5148f0ff, 0x61ffbd84458fff11, 0x041131c9043d82a6, 0xff111eb8041123b9, 0x43c090ffbd790458, 0xe513ff112c0002bc, 0x05bddb5680ffbd7c, 0xff113ecc0411437f, 0x4d2130ff3d7102a0, 0x83f8ff114c140e3d, 0x133e0f965cff3d84, 0xe800000008000000, 0xb400000001000003, 0x0700000000000011, 0x0404848c0508b800, 0x05012cc1040248c7, 0x05005c021100a06a, 0x04002e020d003c68, 0x380a267bff0029be, 0x376105bb2e5ffdff, 0xf8ff3831115aff00, 0x04004e0209ba9664, 0x3aad38d7ff0049b3, 0x57a2043b0ee581ff, 0x78ffbb5fdaa8ff00, 0x0200800c05bc9632, 0xff006d3e04007200, 0xbb585fff3a3969ec, 0x33b2ff007b030b3c, 0x05bc6e9b80ffbb32, 0xff008d030b009212, 0xbd27e4ff3b055bc2, 0x0e58ff009b01083c, 0x04bc6b648cff3b0e, 0x0500c8790500e8c0, 0xff00b5930400ba72, 0x546f15ffba263e61, 0x8bfcff00c3000dba, 0x093a44283fff3b8f, 0xff00d5bf0400da00, 0x3b94a7ff39fc129e, 0x89ceff00e3230e3a, 0x0cbb0c0219ffba5c, 0x0600fe000f010c00, 0xbd4458dcff00f910, 0x07310e3d1eb798ff, 0xb7ffbb0c45f7ff01, 0x0d011e0b0b3c9e22, 0xbb838157ff011906, 0x2700083bfecadeff, 0x31ffbba1cb2cff01, 0x0501bc79053c17c9, 0x1201580b0b017877, 0xff01452b0e014a00, 0x7abef2ffbc169f81, 0x496dff0153050b3c, 0x0eba6d7541ff3aa7, 0xff01656d05016a2f, 0xf33a83ffba1008a2, 0xdba9ff0173c2043b, 0x0ebbed577cff3bef, 0x0d018e0008019c07, 0x3d5b87c2ff018902, 0x970f063c83541cff, 0x80ff3c379780ff01, 0x0e01ae0006ba62da, 0xbd41daffff01a90d, 0xb70111baa11537ff, 0xd6ff3cd3f5fcff01, 0x0402040002bcf801, 0x0b01d6100b01e4c3, 0xbb226bddff01d10d, 0xdfc2043caaed24ff, 0x49ffbc0fd6a4ff01, 0x0e01f6250e3ba2fe, 0x3a4b7903ff01f123, 0xff060d3d536bcbff, 0x59ffbb5dedfeff01, 0x0b0228000c3c0f0f, 0xff0215030d021a05, 0x49cc07ff3c6d0f54, 0x9c24ff02238a053a, 0x043b458804ffbbb1, 0xff02351d0e023ac5, 0x306cecffbb2fcb20, 0x6dd7ff024384053c, 0x04bc145c70ff3bed, 0x0e02dc260e0368ca, 0x110278240e029825, 0xff02657605026a00, 0x8a9160ff3cdf3789, 0x2239ff0273060db9, 0x02bc755b70ff3aad, 0xff0285000c028a00, 0x22a400ffbd96ca89, 0xd184ff0293000cba, 0x0c3d85b645ff3d06, 0x0802ae000c02bc01, 0x3ce70488ff02a902, 0xb77f053cbbf478ff, 0x4affbc840e54ff02, 0x0802ce74053c828a, 0xbd4d7898ff02c902, 0xd70008bcb62c18ff, 0x45ffbd256343ff02, 0x0403240108bd6db0, 0x0c02f6280e0304c9, 0x3be2e91bff02f101, 0xff040dbd143533ff, 0x0aff3b95d857ff02, 0x0503160011ba6a96, 0x3e505150ff031173, 0x1f280e3c1e3d80ff, 0x3aff3cad9941ff03, 0x0503480208ba81a2, 0xff0335010c033a79, 0xe6d9e8ffbc604901, 0x0706ff03437a053a, 0x05b9b8ee58ff3d24, 0xff03550002035a6e, 0x6473a8ffbc00392f, 0x10aeff03636f053b, 0x053ba8dab2ff3d80, 0x0e03b46f0503f882, 0x0503866e05039434, 0xba79fb5dff03816c, 0x8f02083c2b6937ff, 0xbfff3b8f4cf0ff03, 0x0f03a602063d53b9, 0xbd38ef0fff03a100, 0xaf01113c119e67ff, 0x97ffbb32d519ff03, 0x0503d87d053c8ad0, 0xff03c50b0b03ca79, 0x54b88bff3b26b183, 0x96ebff03d37a05bc, 0x0b38dbf271ff3d36, 0xff03e5230e03ea14, 0xd59bcfff3c97c859, 0xf391ff03f3000cbb, 0x05bcb9c161ff3b3b, 0x0e0420010c044084, 0xff040d0011041222, 0xa65ae4ff3c340573, 0xf232ff041b83053d, 0x0b3bd6a20affbbeb, 0xff042d8305043213, 0xd83c6bffbc28c89e, 0x27a5ff043b320e3c, 0x11bca15e1aff3d29, 0x080456010c046400, 0x3bb8e510ff045101, 0x5f070dbadf10c8ff, 0x12ffbc01964aff04, 0x0b0476230e3d1bca, 0xbc16ce07ff04710b, 0x7f2a0e3caca9ebff, 0xa3ffbc922fd3ff04, 0x0c06858d05ba0049, 0x0e051c060d05a801, 0x0404b8000204d822, 0xff04a5000804aabb, 0x0ea807ff3995edeb, 0x96d2ff04b3030bbc, 0x093b938179ffbd28, 0xff04c5070e04ca00, 0x010f41ff3bfae34d, 0x8c08ff04d3000fbb, 0x113a260b2bffbbde, 0x0e04ee000904fc01, 0x3bea13c3ff04e92b, 0xf72b0ebbc28621ff, 0x21ffbc065d17ff04, 0x04050e01083c9593, 0x3ba2cc4dff0509b4, 0x170208bb657f5cff, 0xdcff3c0881dbff05, 0x0905640108bc26e2, 0x0b05360012054400, 0xbb6ed4b1ff05310a, 0x3f030e3b3a946cff, 0x41ff3c47f9d0ff05, 0x040556b604bbba33, 0x387d2f48ff0551b5, 0x5fbc043d2c13b2ff, 0x6affbccfdce8ff05, 0x0805880011baa718, 0xff05750d0e057a02, 0xa29c21ff3b03e541, 0x5469ff0583c904bb, 0x0ebcd3b555ffbc0f, 0xff0595010e059a02, 0x550221ffbbb51e85, 0x6355ff05a3050bbd, 0x043c485beaff3afe, 0x0405f4070d05f9bc, 0x1205c6a30405d4a4, 0xbac7e2b6ff05c101, 0xcf060dbcdb8ae9ff, 0x4effbdb917bfff05, 0x0205e6010b3c51f6, 0xbd432a3dff05e100, 0xefb204bae5a075ff, 0x1eff3c6d53f9ff05, 0x3d3a5a14ffbb01ea, 0x0621030b0641be04, 0x060e00090613060d, 0x932dffbabda0f4ff, 0xd5ff061c0009bcdb, 0x3b993d08ff3c45ea, 0x062e080e06330011, 0x3b24ffb9501800ff, 0x21ff063c0009bd05, 0x3d916d2cff3d2367, 0x0657030b06650002, 0xbe37d7ff0652c204, 0x1d0e3cc28bc9ffbb, 0xff3b9bd1b6ff0660, 0x0677c304bc514191, 0xa09ab9ff0672050b, 0x060dbd45cb29ffbc, 0xff3ac838ebff0680, 0x07a59305bbda9073, 0x06d502080719020d, 0x06a7190e06b5bc04, 0x585807ff06a29005, 0x0109ba68e5a6ff3a, 0xffb9ebaed1ff06b0, 0x06c7bd04bd8d5f44, 0xe74ae0ff06c21f0e, 0x000d3ccc7e0fff3b, 0xff3bf860f2ff06d0, 0x06f9bf04ba59e7de, 0x06e6910506eb070e, 0xb080ff3c486f7dff, 0xe0ff06f48e05bbe3, 0x3b6166e4ffbbf342, 0x0706170e070b230e, 0x569effbc27b6c9ff, 0x20ff07148f053bbb, 0xbc6910c0ffbced6a, 0x074102080761050b, 0x072e01120733c004, 0x22b5ffb8043b1fff, 0x65ff073c310e3a3c, 0x3c0ad3ceffba91d9, 0x074e000e0753b204, 0x15b3ffbc034055ff, 0x2cff075c9105bca5, 0xbbea8602ff3ba63d, 0x0777010c07850c0b, 0x1311eeff07721d0e, 0xbf043a3c421cffb9, 0xff394b1cd8ff0780, 0x0797220e3a5222ff, 0xab8334ff0792110e, 0x000c3a36d9b7ffb9, 0xff3b838754ff07a0, 0x082c020dbc1890e5, 0x07d1050b07f10008, 0x07bec10407c3030b, 0xf30effbaae88fbff, 0x0bff07cc95053b5e, 0xbc303c6dff3b4169, 0x07de6d0407e36f04, 0xfbddffbc2c2d8cff, 0x98ff07eca704bcc0, 0xba7d05ceff3b9c07, 0x0807c4040815230e, 0x72910eff08029405, 0x030bbb8d210cff3b, 0xff3c057233ff0810, 0x081ec904ba9bb47f, 0x27ca04bd01038eff, 0x20ff3ca47c00ff08, 0x050874000fbc246b, 0x040846c204085496, 0x3a85f923ff0841c1, 0x4f0a0b3d310ad8ff, 0xecffbc1105fbff08, 0x0e0866cb043b2c2e, 0x3b883f17ff08610d, 0x6f0109bca0cbc5ff, 0x15ff3d12f1bdff08, 0x0e0898260e3c3633, 0xff0885cc04088a1d, 0x478bb6ff38cae15c, 0x0e6eff0893010cba, 0x12bb8fb22eff3a71, 0xff08a5000808aa00, 0x314bfcff3be49197, 0xfa40ff08b39405bc, 0x0ebb5fb8b9ff3ae4, 0x050afc000f0d3826, 0x040954c00409e086, 0x0608f04c050910be, 0xff08dd020808e218, 0x5c2865ff3acce591, 0x54b6ff08ebaa04bb, 0x0d3c022b58ffbbc7, 0xff08fd6c05090204, 0x4c8a2eff3b325ca2, 0x1fdeff090b050dbb, 0x0c3bf607f9ffbcc2, 0x020926040d093400, 0xbd18ccfcff092100, 0x2f1105bbbbe28eff, 0x20ffbcff0820ff09, 0x08094647053c95ac, 0x3cae5069ff094101, 0x4f77053b948e8bff, 0xa4ffbc88cbe5ff09, 0x04099c070e3c516f, 0x05096e000c097cc1, 0xbd35e015ff096952, 0x7752053c30e13cff, 0x20ffbdba69e2ff09, 0x05098e000cbc8a55, 0xbbb482e8ff098959, 0x970e063bb45c48ff, 0x2aff3c500131ff09, 0x0c09c00c05bc3c18, 0xff09ad020709b200, 0xfe5087ffbbee9b70, 0x1e3cff09bb020d3c, 0x063da267daff3baa, 0xff09cd060d09d207, 0x65ff83ff3c3ae007, 0x0c3dff09dbc1043d, 0x0e3adb0f73ffbcd6, 0x080a2c090b0a7001, 0x0c09fe73040a0c01, 0x3b9efc3cff09f900, 0x0778043d11651fff, 0xabffbd3c200dff0a, 0x070a1e8d053b4f9b, 0xbdd9ccf6ff0a1902, 0x270002bd761fb0ff, 0x18ffbcd1babbff0a, 0x0d0a50020dbd23bd, 0xff0a3d4c040a4200, 0x0bff29ff3cdacbbc, 0x0d96ff0a4b5c043b, 0x05bc079f76ff3c11, 0xff0a5d01070a628e, 0x0f9342ffbb225b44, 0x20b9ff0a6b9504be, 0x0db75c0555ffbd04, 0x0e0a98030b0ab802, 0xff0a85110e0a8a1d, 0x109233ff3998f40c, 0x5f48ff0a93220ebc, 0x0db91ae827ff3cb4, 0xff0aa5b7040aaa00, 0x6ff425ff39ca14bf, 0x7023ff0ab3220e3c, 0x04bccd0b4effbbeb, 0x040ace7a040adc7b, 0xbca610b6ff0ac976, 0xd7020e3cd39fa3ff, 0x91ffbb0c9b9aff0a, 0x0e0aee0207be8174, 0xbb0a6b3aff0ae908, 0xf799043bcfdd37ff, 0x1fffbcc5bbb4ff0a, 0x0e0c1c00023bdc68, 0x040b4cc1040b9007, 0x040b1e5e040b2c73, 0xb7b4c29bff0b195c, 0x2713033bf49deeff, 0x47ffbc92e312ff0b, 0x050b3e0012bb162a, 0xbbfb4fc6ff0b3968, 0x47060dba886ff9ff, 0x2fffbb68e7d5ff0b, 0x050b70060d3cb1fb, 0xff0b5d010c0b6239, 0xb7b978ff3c0b5807, 0xe5c6ff0b6b0107ba, 0x053c938731ff3c01, 0xff0b7dc2040b827f, 0xb5c3e9ff3ceef89a, 0xa46dff0b8b0107bc, 0x053bbf16d0ffbb01, 0x040bb8250e0bd842, 0xff0ba599040baab0, 0x8daa54ffb8f6b52e, 0xf219ff0bb3001139, 0x043b638cbfffbba2, 0xff0bc58a040bca8c, 0x99ac25ff3746dd10, 0x01bfff0bd39c043d, 0x0e3d10edf3ffbd3b, 0x0d0bee080e0bfc21, 0xbc883207ff0be907, 0xf71c0e3cac295aff, 0xc7ff39c3c650ff0b, 0x050c0e4705bc0f44, 0x3b817bc5ff0c0945, 0x170208bc951f6eff, 0xd8ff3a4abd6dff0c, 0x0e0cac9c043a7349, 0x0c0c48020e0c6806, 0xff0c35010e0c3a01, 0x00ce99ffbabc64cf, 0xedccff0c430008bc, 0x0bbc160d6cffbb43, 0xff0c5597040c5a13, 0x22911bffb9bd7b5f, 0x4cb2ff0c6301123b, 0x0eb986d3b8ff3c23, 0x0b0c7e00060c8c07, 0x3c00cbe1ff0c790a, 0x877c043caba587ff, 0x33ff3a7cb5f5ff0c, 0x0c0c9e5b05bbae93, 0xba602ceaff0c9900, 0xa70b0e3b8f28d3ff, 0xb4ffbc365fc4ff0c, 0x0e0cf4070d3b7946, 0x040cc6b2040cd40b, 0xbc909ab7ff0cc19e, 0xcf0112bad00ef6ff, 0xf5ffb9d84f1fff0c, 0x050ce6010c3b3154, 0xbbb937a1ff0ce149, 0xef0107b9a8ebb3ff, 0x23ff3b447387ff0c, 0x040d1845053b383a, 0xff0d05190e0d0aab, 0x5ad311ff3c945a16, 0x0db3ff0d13000cbd, 0x043d105a69ff3c28, 0xff0d25190e0d2aba, 0xac240fff3a5d91f2, 0xf8a0ff0d33010c3c, 0x04bcd94bd8ffba26, 0x0b0e5c070d0f78ca, 0x040d8c00020dd012, 0x040d5e020b0d6cc0, 0xbb57834dff0d59bf, 0x670b0b3ab3a138ff, 0xdfff39b32c2fff0d, 0x0e0d7ec104bc231a, 0x39b2979aff0d792b, 0x87c204bcb09bfaff, 0xb1ff3b2557b2ff0d, 0x060db05f05baeed2, 0xff0d9d02060da203, 0x95d564ff3a5436c0, 0xc145ff0daba5043c, 0x0ebb810593ff3bd1, 0xff0dbdc6040dc228, 0x18eed9ffbc6d6314, 0x2270ff0dcb2a0e3c, 0x05bab92250ff3be2, 0x080df82a0e0e1860, 0xff0de5290e0dea00, 0x8f6783ffbb247aa1, 0xfe4aff0df39304bc, 0x053c0dfbb2ffbbfe, 0xff0e0544050e0a57, 0xb1f3ceff3b0730b5, 0x31deff0e135d05ba, 0x073cb071d9ffbb29, 0x020e2e000c0e3c01, 0x3ba76e0bff0e2900, 0x37c004bc8d5211ff, 0x85ff3cb3304bff0e, 0x020e4e270e3b29e2, 0xbe34e273ff0e4900, 0x57280ebdca5809ff, 0x26ff3cbad52dff0e, 0x040eec2a0ebc15d5, 0x0e0e88050b0ea8b9, 0xff0e75030b0e7a28, 0x288e4effbc80cc4f, 0x216bff0e83000c3d, 0x07bdd6700effbd14, 0xff0e95290e0e9a01, 0x005299ffbd8541f8, 0x78c4ff0ea3000cbe, 0x04be2d7c4cffbdbd, 0x0c0ebe050b0eccba, 0x3b9aa35cff0eb901, 0xc701073d20f85eff, 0xb5ffbc3371cfff0e, 0x0c0ede010cbd78d0, 0x3abde98dff0ed900, 0xe7270e3cb09ca2ff, 0x20ff3d8f2fbdff0e, 0x0b0f3400083baa96, 0x050f0600020f1406, 0x3c260df9ff0f013e, 0x0f010cbc2ea377ff, 0x38ff3cd08855ff0f, 0x040f2634013dc314, 0x3d369d4cff0f21b1, 0x2f5305bacbb260ff, 0xd6ffbdbd3c93ff0f, 0x0e0f580002bd19ac, 0xff0f45b7040f4a2d, 0x2d6fdcff3c36c8a7, 0xcd30ff0f53000c3d, 0x0cbd194394ffbbb3, 0xff0f65b9040f6a01, 0x935686ff3d20ad60, 0x8925ff0f73b9043c, 0x073d1317b5ff3df5, 0x0d100c8505109801, 0x0b0fa8cb040fc806, 0xff0f9500020f9a0c, 0x3d6089ff3c007fde, 0x7818ff0fa30112bc, 0x123c45eae8ff3d22, 0xff0fb5000c0fba00, 0x81702aff3ca28b82, 0xa4e3ff0fc32a0e3d, 0x12bb6796dcffbc44, 0x0c0fde310e0fec00, 0x3c8f08d4ff0fd900, 0xe7320ebc0e3b17ff, 0xb3ffbd0f9af8ff0f, 0x050ffe0108bc0924, 0xbe5526a6ff0ff96b, 0x07000cbd980e7cff, 0x2eff3ba416bfff10, 0x0410548805bd0ab1, 0x0c102601121034cb, 0x3cef2c9fff102100, 0x2f02083dc26d46ff, 0x20ffbb10b795ff10, 0x0c10460b0bbd67f0, 0x3ca2d5c3ff104100, 0x4f0002bc72e3b5ff, 0xc3ff3d0b9fceff10, 0x081078280e397bc9, 0xff1065cc04106a01, 0xc331c1ff37b8c416, 0x21d5ff1073cb04bc, 0x0e3d24b711ffbcf4, 0xff10852b0e108a2d, 0x546d6bffb8c4e99b, 0x80f9ff1093360e3c, 0x123d1407cdffbb88, 0x0d10e42c0e112800, 0x0c10b6010c10c407, 0x3c8fdcf7ff10b100, 0xbfcc043d0609c2ff, 0x77ff3cc8b75cff10, 0x0810d66905bc2960, 0xbc7d9e80ff10d101, 0xdf000cbd391874ff, 0x8dffbd7f17dcff10, 0x0e1108cb04bde4f1, 0xff10f5000210fa2f, 0xd5073bff3d1614f8, 0x982bff1103010c3b, 0x0ebd14fa9fffbde4, 0xff1115cd04111a30, 0xde1512ffbd201dea, 0x1997ff1123310e3b, 0x063b001a82ff3cc2, 0x0511506c05117005, 0xff113d060d11426b, 0x74b987ff3bf8297c, 0xfcfeff114b0112bc, 0x04bc90ffb0ff3da2, 0xff115d070b1162cb, 0xacc7f8ff3b8bd8b5, 0x4a3eff116bcd043c, 0x113b97b3e6ffbc4f, 0x0c11860207119401, 0xbc5d6545ff118101, 0x8f0b0b3cac4efcff, 0x3cffbd3432dfff11, 0x0c11a60002bc0053, 0x3bd66fa5ff11a100, 0xaf030d3ce76f5aff, 0xa8ffbc36ad31ff11, 0x08000000133c6266, 0x01000003e8000000, 0x00000011b4000000, 0x0508b80007000000, 0x040248c70404608c, 0x1100a06a05012cc1, 0x0d003c6805005c02, 0xff0029be04002e02, 0x1ceff7ff37f8a9f0, 0x5ba8ff00376105bb, 0x08ba875afaff381f, 0xff0049060d004e01, 0xb0e622ff3b2e6618, 0x50f0ff0057050bbb, 0x0e3c038e06ffbc01, 0x0400720208008017, 0x398e63f3ff006d6a, 0x7b0d0e3be9e291ff, 0x55ffbc97f717ff00, 0x0100920002ba95a1, 0xbb11e460ff008d36, 0x9b01083caa58c7ff, 0x6effbcd578d5ff00, 0x0500e8c0043c1a77, 0x0600ba100e00c879, 0x3a2221faff00b500, 0xc3bf04bbe28b37ff, 0xbcffba0e5632ff00, 0x0400da00093c095e, 0x39e2dd93ff00d5bf, 0xe3230e3a28d237ff, 0xe6ffba467be4ff00, 0x0d010c070dbafc03, 0xff00f9220e00fe06, 0x84dd4effbbd94b9d, 0x4da1ff01070e0eba, 0x0e3c1844a3ffbc27, 0xff01190002011e17, 0x3a0568ff3cbb608e, 0xbfb4ff01270108bb, 0x05bbf521e3ffbd77, 0x060178000f01bc75, 0x0d014a0a0b015800, 0x3b6e228bff014502, 0x537405bc186975ff, 0x56ff3ca423f8ff01, 0x02016a04063d4a00, 0xbda81e94ff016500, 0x73030bbb0321e0ff, 0x7bff3b21b94dff01, 0x05019c7305bbe41b, 0xff0189c404018e6d, 0xccc809ffbaaeff8a, 0xaebbff01976f0539, 0x0ebb87f279ff3c8a, 0xff01a9030b01ae0d, 0x8373c5ffbc1da3bc, 0x26b8ff01b70208bd, 0x053c66d685ffbad7, 0x0c01e4210e020481, 0xff01d1190e01d601, 0xae761aff3a0f0045, 0xee7bff01df170ebc, 0x053cd10cd1ff3a63, 0xff01f10d0b01f67b, 0x1fb1b6ffbb17d36c, 0xc4e3ff01ff010c3c, 0x05bc3cd6e7ff3a0c, 0x12021a8305022889, 0xbbb25823ff021501, 0x2300083b9b0a55ff, 0x3fffb949b5c7ff02, 0x02023a0a0b3a75df, 0x3a9bfd52ff023500, 0x43010cbbf09acdff, 0xc5ff399bd302ff02, 0x090344190e3bc72d, 0x080298030b02dc00, 0x06026acb04027802, 0xbcc54f48ff026513, 0x73020db9ea0df6ff, 0x9aff3ba1ee98ff02, 0x0c028a020d3d11f4, 0xbc10e184ff028500, 0x93000f3c16a329ff, 0x49ff3ce86bd6ff02, 0x0b02bcc9043c5159, 0xff02a90b0b02ae14, 0x2b7575ff3adbdad0, 0x1c8bff02b78705bd, 0x0e3c9b1886ff3b37, 0xff02c9060d02ce17, 0x3df25effba08424e, 0xb014ff02d77b05bc, 0x0b3b8e7461ffbcee, 0x0502fbc804030003, 0xff02f1060d02f68a, 0x947d1effbc1798e9, 0xe8ff3c48088effbc, 0x050324010c3d9714, 0xff0311000203167c, 0xf35e50ffbbd12a60, 0xb25aff031f000fbc, 0x02bac17077ffbc52, 0xff03310109033600, 0x7cb503ffbd1edacc, 0x07dcff033f8905bb, 0x053c948879ffbb19, 0x0503907a0503d47f, 0x0d03621806037079, 0x3b8a7640ff035d02, 0x6bcb04ba6540beff, 0xf5ffbcb35fc1ff03, 0x08038200023cc28b, 0xbc014594ff037d02, 0x8b0b0b3c7e1a33ff, 0x61ff3cad4c65ff03, 0x0803b401083de0bc, 0xff03a1070d03a600, 0x9978d4ffbb123add, 0xeee4ff03af280e3d, 0x04bc71304effbd70, 0xff03c1001103c6c9, 0x509d99ffbcd9a8fc, 0x5c37ff03cf010cbb, 0x053c40ef1fffbae1, 0x0e03fc8305041c84, 0xff03e9000203ee1f, 0xe2b1cfff3ddd70b4, 0xc01cff03f7310e3c, 0x0e3c359a48ffba9d, 0xff04090008040e31, 0x418a71ff3b689b7d, 0xcd91ff0417010c3d, 0x053bfdd2b8ffbc64, 0x0c0432cb04044086, 0x3abfdda2ff042d00, 0x3b0b0bbcc909f5ff, 0xa3ff3c013e7fff04, 0x0504520012bbbedc, 0x3c119d02ff044d88, 0x5b250eba900111ff, 0xaaff3b913eb3ff04, 0x0c06858d05bafad1, 0x0804f8060d057b01, 0x040494230e04b401, 0xff0481c8040486c9, 0x47e560ff38e9ae09, 0x16c3ff048f00123c, 0x0e3a9a99bfffbcc0, 0xff04a1000204a626, 0xfb110bffbc10fcb1, 0x70c9ff04af040bbc, 0x023b39f92dffbba4, 0x0c04ca011204d800, 0xbbbd8a3eff04c500, 0xd3bf04bce631caff, 0x44ff3d28730eff04, 0x0e04ea020dbd137f, 0x3c9e6d78ff04e517, 0xf3ca043b119887ff, 0x30ff3a9b163eff04, 0x090540c6043c3846, 0x0b05121d0e052000, 0x3a4c24fdff050d0b, 0x1bc2043a8894f2ff, 0x21ff39b5ff05ff05, 0x0e0532b604bc6978, 0xbb06ff9dff052d07, 0x3b00113c396695ff, 0x63ff3ac8aa8fff05, 0x12055bc704bc6284, 0xff05510e0b055600, 0xfb5a52ff3cfed0c1, 0x00023dbf6466ff3b, 0xc0ff05680011056d, 0xbbe4d4adff3c2176, 0x4b1d81ff0576230e, 0x0109bc36862bffb9, 0x180e05c71d0e0602, 0x0d0b0599bd0405a7, 0xffbb742cb1ff0594, 0x05a2be043b9d5d7e, 0x9f8eff3d22d895ff, 0x030b05b9060d3982, 0xffbc8f3a0dff05b4, 0x05c20b0b3cdeda99, 0xffe4ff3c3cbbf4ff, 0x070d05e2220ebc81, 0xbcff05d8c40405dd, 0xbd1bd53fffbb0087, 0xf40b0b3d5cf80cff, 0xec19ff05ef2d0e05, 0x023c92d39dffbb2b, 0x3d0cd2b3ff05fd00, 0x41030bbc422b68ff, 0x1c0002062ac60406, 0xa0bbff0617000e06, 0x04bd1851f2ffbc0d, 0x3c45190aff0625b3, 0x3c190ebc6e991dff, 0xeb3fff0637011206, 0xff3cad9893ff3cf7, 0x0665c4043c08c794, 0x065201120657070e, 0xd628ff3c345498ff, 0x89ff0660be04b9eb, 0x3b96eaebff3d66c3, 0x06720e0e0677ca04, 0x882bffbc341fa4ff, 0x80ff0680190ebcbd, 0x3cd48716ffbc476b, 0x0710020d079c9305, 0x06b5000206d50208, 0x06a28f0406a79005, 0x7e1bffbb5510f0ff, 0x49ff06b091053bb6, 0x3a17e6edffbc3099, 0x06c2000806c7020b, 0x18c8ffbb132e7aff, 0xbbff06d091053c74, 0x3ab8ab9affbb1565, 0x06e2020b06f0070e, 0xeb6d04bbcceb80ff, 0xe0ffbba1a468ff06, 0x0b0702230e3c75b1, 0x3c176095ff06fd01, 0x0b8f05ba5352efff, 0x40ffbcd5ac40ff07, 0x080758050bbc51c2, 0x11072ac004073802, 0xb7ee02e8ff072501, 0x33cc043a29527aff, 0x4affba739ab5ff07, 0x0e074ab0043bf28b, 0xbc136904ff074501, 0x53010cbcae296bff, 0xefff3a91c22aff07, 0x0e077c0b0b3cba55, 0xff07690009076e19, 0x01599fff3a1fd4f1, 0x1c4cff07770012b9, 0x04b9c56842ffba57, 0xff0789c304078ec9, 0x9f73c6ffb8bdb0a9, 0xbaccff0797cb04ba, 0x0d3a6c09aaffbaf2, 0x0b07e80008082c02, 0x0407ba030b07c805, 0xba1b07f7ff07b5c9, 0xc3c2043bacedf3ff, 0x34ff3a8fb99eff07, 0x1107da060bbc6acb, 0x3c7ca10eff07d501, 0xe300093a20cd9aff, 0xb7ffba88b173ff07, 0x0b080c170e3bbfa8, 0xff07f9020b07fe04, 0x20a9c9ffbbab7b97, 0x6f97ff080700023c, 0x0bbbce6f1cff3c16, 0xff0819c904081e05, 0x8f4600ffbc113e28, 0x5f88ff0827000f3a, 0x0fbba6bc4aff3c0c, 0x090854140e087400, 0xff0841060e084600, 0x56d5edffbba7091d, 0xea93ff084f080e3b, 0x0ebc2b2f83ff3b92, 0xff08611f0e086622, 0x3dd359ff3aaf394c, 0xe406ff086fca04bd, 0x043a7ad61aff3cee, 0x0e088ac8040898cd, 0xb9032f76ff088517, 0x93060db98a62feff, 0x9bff3a5b4df7ff08, 0x0908aa000cb9e083, 0x37e1baeaff08a502, 0xb300093c01adfcff, 0x06ff3b4215dfff08, 0x0f0d38260ebbd712, 0x0709e086050afc00, 0x0409105a04095402, 0x0608e2130408f025, 0xbb30c857ff08dd04, 0xeb040ebbe54f72ff, 0x6dff3b0783e5ff08, 0x0509024904ba96d0, 0x3b274920ff08fd71, 0x0b1106bc48df97ff, 0xdcff3bc18bb6ff09, 0x0509348504bb90c9, 0xff0921170e09267c, 0x395098ff3b8a458a, 0xcb11ff092f070eba, 0x0cbc8a9a24ff3c8a, 0xff09411106094600, 0xe794a3ff3c35926c, 0x44f8ff094f030bba, 0x08bb1470b8ff3c13, 0x05097c8405099c01, 0xff0969000c096e80, 0x87b8a1ffb79e309b, 0x0fa7ff097781053b, 0x0b390f1d2effbd23, 0xff0989020d098e03, 0xd5dc8dffbb70e29f, 0xabb6ff099790043c, 0x06bd3a2e24ff3ca4, 0x0309b2350509c000, 0xbba1b355ff09ad1b, 0xbb6105bd31b68aff, 0xb7ff3c02cce7ff09, 0x0409d20605bbd4e4, 0x3ba1959eff09cd8b, 0xdb9604bc6c1b75ff, 0x5affbd037cb3ff09, 0x040a70010ebc5134, 0x0c0a0c63040a2c6f, 0xff09f9001109fe00, 0x693cedff3c45ef09, 0x8cd8ff0a075b04bb, 0x05bb6a241cff3cc3, 0xff0a19000c0a1e89, 0x3040daff3de92a0e, 0x4519ff0a27000c3d, 0x053da40c6dff3c10, 0x0e0a4201070a508e, 0xbe0108dbff0a3d00, 0x4b050b3d664506ff, 0xbeffbd22e3fdff0a, 0x0b0a620107be0a15, 0xbbaf37c4ff0a5d07, 0x6b9105bcf0854fff, 0xecffbc5553d8ff0a, 0x080ab8020d3c1f71, 0x040a8a94040a9800, 0xbaf138ffff0a858a, 0x9300023c499badff, 0xf0ffbc20a03bff0a, 0x040aaa1d0ebb0daa, 0xbce5f958ff0aa597, 0xb3220ebbb7cc2aff, 0xb3ff3cb7bd9cff0a, 0x040adc7b04bb4979, 0xff0ac970040ace78, 0xad7657ffbcf1c337, 0x0505ff0ad7000c3c, 0x043c1fad06ffbe69, 0xff0ae901070aee91, 0x5704f6ff3c19757e, 0x1637ff0af797043d, 0x023b513573ffbd3f, 0x040b90070e0c1c00, 0x050b2c73040b4cc1, 0xff0b1935010b1e6d, 0x3e6c50ffb9bac6c6, 0xa5c1ff0b27010e38, 0x11bbae7f18ff39f5, 0xff0b3901080b3e00, 0x23adabffb9f52744, 0x9d86ff0b47060dbc, 0x113ca02eddffbb51, 0x040b6273050b7000, 0x3cb44fc0ff0b5dc2, 0x6b0008bd0f6474ff, 0x94ff3bddc7ebff0b, 0x0c0b823905bb1390, 0x3bfad1acff0b7d01, 0x8b0107baa55a1bff, 0x7bff3be9d0d3ff0b, 0x040bd834033c84c6, 0x040baa41010bb893, 0x390110aaff0ba591, 0xb33105baea77efff, 0xbcffbbc48ea8ff0b, 0x110bca230e3bf37d, 0xbb881067ff0bc500, 0xd39c043c49d768ff, 0x04ffbcc705f6ff0b, 0x040bfca5043cc8d2, 0xff0be90b0b0beea2, 0xae27e3ffba41dfca, 0x7bcaff0bf7170ebb, 0x043ad043f4ff3c51, 0xff0c09090e0c0eb9, 0x8bed1bffbcb647b4, 0x27a4ff0c1701073a, 0x04bb51d957ff39f5, 0x0e0c6875050caccd, 0x040c3a060d0c4823, 0x39c8cffaff0c359f, 0x430011baa72a60ff, 0x45ffbab38f67ff0c, 0x0b0c5a250e3c751e, 0xbc128bccff0c5514, 0x638404bd7332e8ff, 0xc3ffbca5d55cff0c, 0x040c8c77053d0282, 0xff0c7901110c7eb6, 0x03541fffbab48bc9, 0x42d2ff0c87070ebd, 0x0c3c3d8511ffbc0c, 0xff0c99a8040c9e00, 0x96d176ff3996816a, 0xd7e2ff0ca71d0e3a, 0x0e3bff443effba4c, 0x080cd485050cf41f, 0xff0cc1140e0cc601, 0x96f71cffbd511880, 0xe4e0ff0ccf0b0bbd, 0x07bc2c25eaff3cd1, 0xff0ce1140e0ce601, 0xac38ebff3bea9f36, 0xd78bff0cef9105bb, 0x0e3bff0ff2ff3a89, 0x0e0d0a060d0d1823, 0xbd079158ff0d0522, 0x13000c3d0d6dd4ff, 0xbdffbcb162e5ff0d, 0x050d2a000cbd5662, 0xbc9c0db7ff0d258f, 0x3301083aa60bd5ff, 0xe0ff3d06efc3ff0d, 0x0d0f78ca043c12e3, 0x020dd0120b0e5c07, 0x030d6cc0040d8c00, 0xff0d5940010d5e2c, 0x43c527ff39c3da66, 0xbf37ff0d67060dbc, 0x0ebb8af6caff396c, 0xff0d79280e0d7e30, 0x8a3288ffbd09bd31, 0xfc66ff0d87070bbb, 0x053bc0f6fdffbb77, 0x060da2010c0db057, 0x3b6f523aff0d9d06, 0xabc704bbb467f4ff, 0xf0ff3b90aea2ff0d, 0x040dc2280ebc169e, 0xbc6375a6ff0dbdc6, 0xcb290e3c0f97a9ff, 0x0bffbc906acfff0d, 0x0e0e186005388bf7, 0x0e0dea00080df82a, 0xbb1407ffff0de529, 0xf39304bc811054ff, 0xd7ffbbe57e6bff0d, 0x050e0a57053bff91, 0x3af357abff0e0544, 0x130112baa027e5ff, 0xb0ff3be6be41ff0e, 0x0c0e3c0107bce37a, 0xff0e2900020e2e00, 0x7e6080ff3b96afc5, 0x4506ff0e37c004bc, 0x113b18e585ff3ca1, 0xff0e492a0e0e4e00, 0xa8619dff3d159b44, 0xacf3ff0e57c804bb, 0x0e3c4c2f1fffbc3f, 0x0b0ea8b9040eec2a, 0x0b0e7a280e0e8805, 0xbc67d627ff0e7503, 0x83000c3d17b347ff, 0x71ffbd055146ff0e, 0x040e9a0107bdc0fe, 0xbcc31c43ff0e9587, 0xa3000cbd9a3fa7ff, 0x11ffbdaa8649ff0e, 0x0b0eccba04be1c23, 0xff0eb9030b0ebe0c, 0x873f49ff3c22e37d, 0xb34cff0ec70107bc, 0x0cbdb7bd20ffbc9d, 0xff0ed9000c0ede01, 0x9ef362ff3aaaeba2, 0xde2aff0ee7270e3c, 0x083b998720ff3d80, 0x020f14060b0f3400, 0xff0f013e050f0600, 0x1d2cb7ff3c1572fb, 0xade7ff0f0f010cbc, 0x053daf9234ff3cbb, 0xff0f2134010f2653, 0xaa5020ff3be24ca0, 0x0d18ff0f2fb504bd, 0x02bcaac4edffbd48, 0x040f4a2d0e0f5800, 0x3bc2adadff0f45b1, 0x53000c3cb35043ff, 0x05ffbba1d244ff0f, 0x0e0f6a010cbd09f0, 0x3d109c08ff0f652b, 0x73b9043c849aaaff, 0x25ff3ddcfb6eff0f, 0x05109801073d0462, 0x040fc8060d100c85, 0x0e0f9a0c0b0fa8cb, 0xbc2de719ff0f9531, 0xa32e0e3be1d55eff, 0xc3ff3d3b8300ff0f, 0x040fba280e3c49a9, 0x3c7bc026ff0fb5cc, 0xc300123db0b1d5ff, 0x15ff3d4577c7ff0f, 0x0e0fec0011bba0b2, 0xff0fd9000c0fde31, 0x000202ff3c80bb22, 0x3ea8ff0fe7320ebc, 0x08bbf6dbacffbd01, 0xff0ff96b050ffe01, 0x88d9d4ffbe3fd5fc, 0x8ea8ff10070208bd, 0x05bbd6367affbd20, 0x0f1034cb04105488, 0xff10210108102600, 0x32bedcff3bbf8000, 0x0312ff102f0008bc, 0x0b3d27b8f4ff3d97, 0xff1041000c10460b, 0x5a99b2ff3c928d33, 0x52daff104f0002bc, 0x0e39629a14ff3cfb, 0x0c106a0108107828, 0xbcb4d8c1ff106500, 0x73000c393a4d40ff, 0x82ff3c360c6eff10, 0x0c108a290e3d895f, 0x3d1e910dff108500, 0x932d0e3e08ff03ff, 0xd0ff3a82185fff10, 0x0e11280002bb5062, 0x0d10c4cb0410e42a, 0xff10b1030b10b603, 0x41f226ffbbe7d780, 0xe4d3ff10bf8505bd, 0x0fbd27b704ff3d84, 0xff10d1cc0410d600, 0x944bb2ff3cba69e2, 0x57dbff10df0012bc, 0x0ebd84ba74ffbc27, 0x0410fa6c0511082b, 0x3d4c8bcfff10f5cc, 0x0371053bd304fbff, 0x66ffbc2b2ff8ff11, 0x12111acb043c37c6, 0xbd5f86e6ff111501, 0x232c0e3c7730e0ff, 0xe8ffbccf1afeff11, 0x04117000123b9baa, 0x051142000c1150cc, 0xbc7e89a8ff113d6b, 0x4b45053c9260f3ff, 0xc0ffbb4234bcff11, 0x05116200083cdebb, 0xbd2572eeff115d7a, 0x6b010c3b29f705ff, 0xa8ff3c4702f8ff11, 0x121194cb04bbe189, 0xff1181060d118601, 0x50ed7cff3d1e6ff3, 0xb31aff118f1c05bc, 0x0e3aa314adffbd82, 0xff11a12a0e11a62b, 0xba45cbffbb5d3dfd, 0x2b61ff11af2d0ebc, 0x13bb681b31ff3cd5, 0xe800000008000000, 0xbc00000001000003, 0x070000000000000f, 0x04047b8c0508e500, 0x05012cc1040248c7, 0x05005c021100a06a, 0x04002e020d003c68, 0x37dfcbe8ff0029be, 0x376105bb0d3e56ff, 0x73ff380f6cd2ff00, 0x04004e0209ba73a3, 0x3aa1495cff0049b5, 0x57020e3a170016ff, 0x76ff3a952477ff00, 0x120080030bbbfe12, 0xff006d2905007202, 0x9233c4ff3ae83b95, 0x6822ff007b0008bc, 0x083bb60e8aff3d01, 0xff008d170e009200, 0xd47fa3ffbb834676, 0x65aaff009b1006bc, 0x04bbee7041ff3c1b, 0x0e00c8790500e8c0, 0xff00b5020b00ba12, 0x1c3ee9ffbb6ad6f4, 0x710fff00c39b043a, 0x09b90abdf9ffba89, 0xff00d5bf0400da00, 0x17f099ff39cc2d4c, 0xa2f2ff00e3230e3a, 0x0cbae2d01fffba32, 0x0800fe0002010c00, 0x3b8aea3cff00f900, 0x076c05bc50b0f9ff, 0x90ff3d453dfcff01, 0x0e011e0b0b3a874c, 0xbb42cc71ff011922, 0x27110b3ae19b74ff, 0xcbffbc88e37eff01, 0x0501bc79053b4309, 0x1201580b0b017877, 0xff01456105014a00, 0xc729c3ff3cd0c8f2, 0xee9eff0153c604bb, 0x0e3b1e825fffb8cd, 0xff01656205016a2f, 0xa50876ffbab4003e, 0x7554ff0173300e3b, 0x0eba86f156ffbcb2, 0x04018e2b0e019c2f, 0x3c2412f0ff0189c3, 0x970006bbc06e1eff, 0x6fffbd06bfabff01, 0x0e01ae00063d3968, 0x3bb222baff01a936, 0xb70206bce1a380ff, 0xecffbcebad5bff01, 0x0402040002bdad24, 0x0401d6100b01e4c3, 0x3b9394a0ff01d1c2, 0xdf070ebc0fb867ff, 0x59ffbcf7924dff01, 0x0501f62f0e39c16d, 0x3af0bac1ff01f17f, 0xff8a05b92deef1ff, 0x19ff3a5c891bff01, 0x0e0228020d3d759b, 0xff02150806021a2b, 0xc68cc7ff3c5785c3, 0x98bbff02232d0ebb, 0x0fbc07c96bffbd50, 0xff02350108023a00, 0xc2df4affb9ef7d73, 0x255dff02431d0ebc, 0x0e3ba15a27ffbb0b, 0x0e02d30002035f1c, 0x040278cc0402981a, 0xff02650b0e026acb, 0x29d83affbb70f406, 0x9f3aff027300123b, 0x05bbb24acaffbd35, 0xff02850008028a89, 0x17bd1dff3bf7f264, 0x7d55ff0293010c3d, 0x083c4945fbffbc36, 0x0d02ae030b02bc00, 0x3cfb03e0ff02a902, 0xb7c8043d7495b8ff, 0x00ff3cf05a4bff02, 0xff02c5030bbc6152, 0x02ce000c3d6ffe80, 0xf6b0ff3d2101f0ff, 0x060d031b02083d2b, 0x140602ed010c02fb, 0xffbbadf282ff02e8, 0x02f60b0e38f3e270, 0x3fdcffbb82c0beff, 0x0009030d140e3c11, 0xff3ca34514ff0308, 0x0316170ebac5f28e, 0xbee6ffbcb0aee5ff, 0x010c033f060dbb3b, 0x94ff032c47050331, 0x3cb322c6ff3b409d, 0x34e8f1ff033acb04, 0x170ebd1b6f38ffbb, 0xb4ff034c78050351, 0x3b6e6efbffbcbc2d, 0x75fcbeff035a0011, 0x8a053c3489c6ffbc, 0x2e0e03ab0d0b03ef, 0x020d037d050d038b, 0xff3acae0b4ff0378, 0x03860011bd020d12, 0x304effbb8b408fff, 0x2f0e039d00113a5e, 0xff3d57773aff0398, 0x03a6000c3b8bac61, 0xe1c2ffbb690adaff, 0xca0403cfcb043b1d, 0xe5ff03bc6d0503c1, 0x3aeb5ed9ffbbc662, 0x8f1f0bff03ca8605, 0x00113ce2ab79ff3b, 0xe8ff03dc010803e1, 0xbb410de5ffbc6689, 0xa0cba9ff03ea230e, 0x0108babfc118ff3c, 0x000c041700020437, 0x3eff04040b0b0409, 0x3ca54a0dffbc3018, 0x114755ff04122b0e, 0x2b0e3b9e3e13ffbc, 0xf1ff042400090429, 0xbbb20212ff3d95b3, 0x15c666ff04320b0b, 0x8b05bc87b589ff3c, 0x1f0e044d2b0e045b, 0xffbd3209d9ff0448, 0x04560b0bbc7f024c, 0x8694ff3c6557a4ff, 0x220e046d0111bc39, 0xffbc537e8cff0468, 0x0476020d3b7aa63c, 0x8c90ffbcaf4960ff, 0x010c06b28d05bd58, 0x220e050a060d0596, 0x1f0e04af000204cf, 0x9bff049cbd0404a1, 0xbbf422f9ffb9e39f, 0xb366ddff04aa0108, 0x00093df9abe0ff3b, 0x30ff04bc070e04c1, 0xbaf9820aff3bdf73, 0xd24267ff04ca040b, 0x00123a29d166ffbb, 0x230e04e5000804ea, 0xffbd297b08ff04e0, 0x136920ffbd165880, 0xf7c50404fc0112bc, 0x8cff3949df4fff04, 0xff0505c2043c06d9, 0xa2b35effbb6c161c, 0x320008055201083a, 0x1f000c0524070b05, 0xa3ffbb0e4c73ff05, 0xff052d00123bfebc, 0x19137cff39b2977e, 0x3f1f0e0544000cbc, 0xebff399ed373ff05, 0xff054d0002bc10ae, 0x107dbdff3c7db311, 0x680208057600123b, 0x3ddeff05630d0e05, 0x04bb91715aff3ae0, 0xbc03b819ff0571c9, 0x88050bbcc11f6bff, 0x10a3ff0583ae0405, 0x0e3b3d4459ffbc66, 0x3c14d7f0ff059119, 0x260109bc61f7b8ff, 0xc2170e05e21d0e06, 0xaf050b05b40b0e05, 0x2eff3c50c987ff05, 0xff05bdb204bbc4fb, 0xa613aaff3d05a34d, 0xcf000905d4060d3a, 0x8fff3ccd51d9ff05, 0xff05dd0b0bbc5e0b, 0x7558d6ff3c157915, 0xf8c4040606220ebc, 0x99a5ff05f3030b05, 0x043cb7c80fffbc31, 0xbd23a9f9ff0601c9, 0x18030b3c3bd140ff, 0xc6e9ff0613000806, 0x08bd29e387ff3c67, 0xbc0c2da3ff062100, 0x6e030b3d79abf7ff, 0x40b304064ec20406, 0xaa0eff063b000206, 0x043c316353ffbcde, 0xbd0ccec9ff0649bc, 0x60c604bc2bb1c6ff, 0xdf95ff065b0e0e06, 0x0e3c0fe45fff3b04, 0x3cc8d485ff066919, 0x92c4043bf63408ff, 0x7f01110684070e06, 0x43ff3c224c25ff06, 0xff068dbe04b9d440, 0x87d36bff3d4faff9, 0x9f001106a4190e3b, 0xf0ffbbaeeca7ff06, 0xff06ad0209bc82a4, 0x270028ff3c9b97e6, 0x3d020d07c993053d, 0xe2bc040702020807, 0xcfb10406d4b20406, 0xfbff394810cdff06, 0xff06dd020b3d17ab, 0x76d964ff3c37bd5e, 0xef040b06f4070bbb, 0x8fffbaa1f4d4ff06, 0xff06fd090b3c632c, 0x7963b8ffbd21eacc, 0x18220e0726c904ba, 0x502cff0713090b07, 0x05bbf100ebff3b0f, 0x3cc5b280ff07218f, 0x380a0b3b19a555ff, 0xf120ff0733220e07, 0xffbc8f5938ffbb9c, 0x0785050b3c9afea0, 0x0757c00407650208, 0xd63564ff07520112, 0x310e3a186300ffb7, 0xffba746ee9ff0760, 0x0777b2043bef07bd, 0xd727ddff07727d04, 0x9105bc81f30bffba, 0xff3b8d7a61ff0780, 0x07a90b0bbbd6b712, 0x07960009079b190e, 0xd316ff3a0fd908ff, 0xabff07a40012b8e8, 0xb9b1aa60ffba4199, 0x07b6c30407bbc904, 0x81c3ffb8aab80dff, 0xbaff07c4cb04ba8f, 0x3a546f1fffbada74, 0x081500080859020d, 0x07e7c80407f5050b, 0x6a06a8ff07e2c104, 0xc9043c0fd021ffba, 0xffbc9e0165ff07f0, 0x0807190e3b1ae0e3, 0xca8158ff08029505, 0xc304b9ed0e85ff3b, 0xffbc4a5248ff0810, 0x0839b7043a8e1800, 0x0826a704082b0108, 0x501fff3c034a33ff, 0x00ff0834030ebc56, 0x3ce57668ffbbde1f, 0x08469405084bbc04, 0x3ac9ff3cb5d9f5ff, 0x3fff085495053a47, 0x3b1ec67bffbad733, 0x0881010b08a10e0b, 0x086e050e08739505, 0x7d2bff3be2bf11ff, 0xe6ff087c010ebaa0, 0xba87c293ffbbf56e, 0x088e080e08930012, 0x338fffbaadf313ff, 0x47ff089c170e3b16, 0xb891ca59ffb91343, 0x08b7230e08c59405, 0xf423d2ff08b2060d, 0xcb04b9a38650ff3a, 0xffbd35485bff08c0, 0x08d71d0ebbfba55b, 0xfe87eeff08d2000c, 0x00083b161abfffb9, 0xffbbd0ec14ff08e0, 0x0d5c95053bddb76e, 0x0a04000d0b20c604, 0x093d9a040981a904, 0x090f5904091d0002, 0x8664b3ff090a5105, 0x170ebba76afaffba, 0xff3c8e36feff0918, 0x092f0006bb1f0e4e, 0x4059b9ff092a5e04, 0x12053c429897ffbc, 0xff3b4cb415ff0938, 0x09610806bcc07135, 0x094e00020953310e, 0x202cff3cc41482ff, 0x48ff095c9e043b64, 0xbab97b7affbceaf7, 0x096e000e0973010e, 0x3f91ffbc0002c2ff, 0xfdff097c050b3c92, 0xbbdf4019ffbc8c99, 0x09a0010509c03005, 0x09963401099b0208, 0x1fcbff3d9c8758ff, 0x053c3cc280ff3d82, 0xff09ad000209b229, 0x038a29ffbc49af8f, 0x801dff09bb030bbb, 0x0bbc6704f1ffbd12, 0x0e09d6020e09e401, 0x3d46d658ff09d100, 0xdf02083c8822c0ff, 0x60ffbc93d64bff09, 0x0509f600083bff9f, 0xbd08bc8fff09f13e, 0xff3f053b200dc2ff, 0x59ff3c940e88ff09, 0x040a943b053bc6e4, 0x050a3099040a50b3, 0xff0a1d97040a2237, 0xb3136eff391c4ee3, 0xeb27ff0a2b3801ba, 0x07bbe01983ff3b3b, 0xff0a3d02080a4202, 0xec784dff3a8cf6d9, 0x9ee0ff0a4b9b04ba, 0x0539fd89c3ff3c5f, 0x060a6602080a742b, 0x39ee04f1ff0a6100, 0x6f18053a97ddf0ff, 0x3cffb9c35ffeff0a, 0x060a86010cbc0d26, 0x3bf58fe1ff0a8100, 0x8f2c05bb986a4aff, 0xd6ffbd34f351ff0a, 0x040adc2f0ebb3029, 0x050aae02080abcb2, 0xb8de28baff0aa990, 0xb7af04399cc4edff, 0x5fffb8d25851ff0a, 0x070ace3d01bc0b21, 0xbc83d679ff0ac901, 0xd7b604bdaf9f08ff, 0xbdff3ad0913aff0a, 0x0c0b00060db9b773, 0xff0aed00060af201, 0xb8657fff3b1abf51, 0xd11eff0afb020dbb, 0x0ebb6e6ae9ff3d47, 0xff0b0d050b0b1230, 0xa091d6ffbc99ecea, 0x71a7ff0b1bc104bd, 0x08bbf8b0fdff3c35, 0x040bb41f0e0c4001, 0x0e0b501d0e0b70cc, 0xff0b3d180e0b421c, 0x2dddb4ff3a4500b5, 0xec65ff0b4b000c3b, 0x0dbcad3857ff3b92, 0xff0b5d1e0e0b6206, 0x2568bdff3cc40748, 0x8571ff0b6b000cbd, 0x0e3d0415a2ff3c16, 0x050b8600080b941d, 0xbbccb199ff0b8188, 0x8f000c3b6b1a7bff, 0x71ff3accd6abff0b, 0x0b0ba6060dbc1c37, 0x3c543c91ff0ba105, 0xaf0e0bbd55f1a4ff, 0xf2ffbc450c58ff0b, 0x020bfc79053ccd51, 0x0e0bce000f0bdc00, 0x3c8ff8fbff0bc935, 0xd7260ebbadfd0cff, 0x43ffbc63771aff0b, 0x0e0bee280ebb022c, 0x3bb68f66ff0be926, 0xf777053d092463ff, 0x0eff3b0ad6faff0b, 0x050c202b0ebc8165, 0xff0c0d7a050c127c, 0x86e1d4ff3ccdcd47, 0xbc4cff0c1b060dbc, 0x05b9dfa1d6ff3b38, 0xff0c2dc9040c327a, 0x9f7645ff3cd68343, 0x9872ff0c3b2e0ebc, 0x05bb2e1e5cff3c28, 0x050c8c01070cd075, 0x0d0c5e0b0b0c6c61, 0xbb0eb758ff0c5905, 0x675e053bc5691fff, 0xbeffbb7be774ff0c, 0x0b0c7eca04bcc8f8, 0x3ade03f5ff0c790b, 0x87000c3c3d094dff, 0xfaff3c929480ff0c, 0x050cb0ca04bbeb1c, 0xff0c9d02070ca20c, 0xda41abffbd080422, 0xc5bbff0cab5c05bd, 0x0cbb4a9564ff3a02, 0xff0cbd6c050cc200, 0x4fcd41ffba41f782, 0x0356ff0ccb0c0bbc, 0x0e3c350bc0ffbb6a, 0x050cf80d0b0d1831, 0xff0ce501070cea7e, 0x823993ff3b52b75f, 0x3e27ff0cf30a0bbb, 0x043745912effba38, 0xff0d0500020d0ac9, 0x3f7b53ffbca530f5, 0x38e5ff0d13140bba, 0x0d3acac589ff3c94, 0x040d2ecc040d3c02, 0x3ce649c5ff0d29c8, 0x3702073a869a58ff, 0x80ff3cd074edff0d, 0x080d4e000f3b54fb, 0xbc3db60eff0d4902, 0x57cd04bda8b7dfff, 0x2dffbbe90f3eff0d, 0x040ecd1f0e3bad3f, 0x020dac78040dba7f, 0x050d7e01070d8300, 0x3c07eaccff0d7996, 0x801cff3c1d8c74ff, 0x030b0d9569043c3f, 0xffbb68dea0ff0d90, 0x0da7070b3b7a5540, 0x1ea532ff0da2010b, 0x40ff3ac5a1e0ff3c, 0xff0db5030b3c6f2c, 0x886b7bffbb5dcbb5, 0x06cc040e4a000c3b, 0xd8060d0de6180e0e, 0x29d0ff0dd3ca040d, 0x123b7d2a9affb8ba, 0xbaa05ea1ff0de101, 0xf81c0e3cb95460ff, 0x738eff0df3ca040d, 0x0f3ca1bf66ff3b6a, 0x3ba2c6cdff0e0100, 0x2a0b0ebc13c31cff, 0x1700080e1c060d0e, 0x1cff3aab2a87ff0e, 0xff0e25080ebbc1ab, 0xd08b42ff3b2a80a6, 0x37060d0e3c190e3c, 0x31ff3af6f292ff0e, 0xff0e450002bb8d11, 0xdbd7f0ff3b5f955b, 0x72070b0e89000e39, 0x5f050b0e6401070e, 0xbeffbc3e8946ff0e, 0xff0e6db604bcd4e0, 0xbd23c4ffbaac56cb, 0x3ddcff0e7b0a0bbb, 0x94ff0e840b0bbc6a, 0xbb69d348ff3aaf42, 0x0e9f060e0ead070e, 0x02f89aff0e9a010e, 0x020bba87e618ff3b, 0xffbb8b3848ff0ea8, 0x0ebf0b0e3bd217bf, 0xd1854fff0eba0b0b, 0x190e3bde00bbffbb, 0xff3abfc824ff0ec8, 0x0f4b0002ba8fa49f, 0x0f14000c0f3d0b0b, 0x0eef00120efd9605, 0x49b566ff0eea0008, 0x000dbc36a0c8ff3c, 0xff3b8e4525ff0ef8, 0x0f060011bb1c0acf, 0x0f000dbc3e71e8ff, 0x10ffbbe933f0ff0f, 0xff0f1d00123b3d55, 0x0f2f030bbc08fb50, 0x4fa000ff0f2a010b, 0x000fbaa8c900ff39, 0xffbb3c3b00ff0f38, 0x0f46230ebb73fda0, 0x48c0ffbc232510ff, 0x96050fa50008bb79, 0x010b0f65c0040f85, 0xffbc0589f8ff0f60, 0x0f770107babaea80, 0xe5ba9fff0f72230e, 0x050bbaa04997ff3a, 0xff3a35bac0ff0f80, 0x0fa0030b3caff148, 0x0f96cb040f9b010b, 0x3000ff3a61e900ff, 0xff3ac8c280ff3a0d, 0x0fae030b3c699fe0, 0xb7050b3b1d0420ff, 0x60ff3b1a2790ff0f, 0x08000000133c59f7, 0x01000003e8000000, 0x0000000f6b000000, 0x0508940007000000, 0x040248c70404578c, 0x1100a06a05012cc1, 0x0d003c6805005c02, 0xff00293101002e02, 0x96a79cffbaa7e237, 0x1529ff003761053a, 0x0bba5b4662ff3801, 0xff00490a0b004e0e, 0x807cccffb98dec1b, 0x85d3ff0057060d3b, 0x04bc1d4444ff3ba7, 0x0b0072340100801d, 0xbba56f64ff006d00, 0x7b030e3ac54831ff, 0x24ffbad977d7ff00, 0x0500920212bc35e9, 0x3ae16409ff008d29, 0x9b030bbc858968ff, 0x5eff3cc0bc9fff00, 0x0500e8c0043b86d8, 0x0800ba100e00c879, 0xb94c74adff00b501, 0xc3000d3b49e217ff, 0x9fff39129cc2ff00, 0x0400da330eb9c4ef, 0x3852eecaff00d5bf, 0xe3020b39dfd8e2ff, 0x85ff3d378a60ff00, 0x0d010c1c0ebb4d8b, 0xff00f9170e00fe07, 0x71427fffbb38a843, 0x99e0ff0107170e3c, 0x05bd143316ff3ba5, 0xff01192b0e011e6c, 0x6c2477ff3d25236b, 0x5690ff01278005bc, 0x053a15a557ffbbc4, 0x0b0178770501bc79, 0x0e014a001101580b, 0xbbd3f459ff014530, 0x5370053c9a2fadff, 0xbeff39a1a812ff01, 0x08016a060dba84e5, 0x3b55b0e1ff016501, 0x732b0ebadd456dff, 0xebffbbf53683ff01, 0x02019c340e3c9673, 0xff0189120b018e00, 0xcd279cff3b4ddc8b, 0xedfdff0197280ebb, 0x0dbc875553ff3aa8, 0xff01a9000801ae02, 0xc3daa4ffbce028bf, 0x9148ff01b7030b3c, 0x023d6a6640ffbcc1, 0x0b01e4c304020400, 0xff01d1060d01d610, 0xe11987ff3b85242f, 0xcffeff01df7a05bb, 0x0ebb120910ff3cf2, 0xff01f17f0501f62f, 0x1c8932ff3ad8a800, 0x7bf6ff01ff8a05b9, 0x0d3d5d0b99ff3a46, 0x0e021ac504022802, 0xbc68c8b6ff021530, 0x2300063d3128b8ff, 0xc4ffbcbdb7a7ff02, 0x0e023a000fbb054c, 0x3bf534bfff023519, 0x431d0ebc6c31b0ff, 0x8dffbafa7671ff02, 0x09033b190e3b9137, 0x06028f0a0b02d300, 0xff0261030e026f17, 0x026acb043d797de0, 0xd781ff3b9925baff, 0x01110281000c3c88, 0xff3b07a486ff027c, 0x028a0002bbf03f55, 0x00c8ff3c8e5f28ff, 0x800502b38205bab9, 0xabff02a0001102a5, 0xba8cf0b2ff3c3022, 0x54a8a0ff02ae0d0e, 0x8305bce97483ff3d, 0x39ff02c0c80402c5, 0xbce19790ff3d17ce, 0x4cfb4fff02ce0208, 0x030bbb417feeff3b, 0x8a0502f2c80402f7, 0x60ff02e8060d02ed, 0xbc847e2cffbc16f6, 0x7157ff3c2fc8b2ff, 0x010c031b83053d87, 0x60ff03087c05030d, 0x3a905685ffbc84ef, 0x119682ff0316c804, 0x010c3ba1fa64ffbc, 0xecff03288b05032d, 0x3b10964effbb27cc, 0x85430aff0336c804, 0x7805bb94d643ff3c, 0x70050387710503cb, 0x6e0503590b0b0367, 0xff3a61c721ff0354, 0x036201113cba06f8, 0xc520ffbb03717fff, 0x01080379c8043ce1, 0xffbcc1ca97ff0374, 0x038202083d3ef57e, 0xaf8bff3d857d0aff, 0x060d03ab72053db9, 0x5cff0398010c039d, 0xbd489de0ffbd3c74, 0xd954f4ff03a6010c, 0x000cbdec4964ffbd, 0x79ff03b8000203bd, 0xbc2143c4ff3cd31d, 0x1aeccdff03c6040b, 0x8905bb883d72ff3d, 0x220e03f3cb040413, 0xaeff03e0880503e5, 0xbd20a402ffbbdad1, 0xa91bfcff03ee8605, 0x7b053b9933a1ffba, 0x6dff04002d0e0405, 0xbbb5fc53ff3d2ed6, 0x1698b1ff040e8605, 0x130bbc3032a7ffba, 0x090b0429010c0437, 0xff3ba651b7ff0424, 0x0432030bbba6c22c, 0xdc0dffbc14c9baff, 0x010c044900023c2b, 0xff3b4d165dff0444, 0x0452250ebc400189, 0x65f8ff3c8430f0ff, 0x110b06618d053a8a, 0x0e0b04ef0e0e0572, 0x0008048b040e04ab, 0x23ff04789d04047d, 0x3b7304d5ffba92ae, 0x2ba384ff0486000c, 0x0002bbebdeeeff3b, 0xbcff0498b204049d, 0xbba7ae56ff3b0c95, 0x683d3fff04a60b0b, 0x0002bc93bce6ff3a, 0xac0404c1040e04cf, 0xffbb80a144ff04bc, 0x04ca060d3d8d662e, 0x56edff3c21dd38ff, 0x030e04e1060dbce5, 0xff3c26031cff04dc, 0x04ea0011bbffaed6, 0x7bedffbc8d4d59ff, 0x300e052e020d3ca3, 0x040b0509190e0517, 0xff3cb66ff8ff0504, 0x051202083ac92539, 0x1cb3ff3b80e899ff, 0xbe0405290009bccf, 0xffbd14e2d9ff0524, 0x0b7e82ffbc1df16f, 0x44140e05522f0e3d, 0x5a51ff053f100e05, 0x0ebc554932ff3b99, 0x39c969f7ff054d23, 0x640112bb0f3033ff, 0xf3eeff055f000205, 0x0e3c10705bffbc10, 0x3c134b0bff056d31, 0xe7c8043cf94640ff, 0x9e000205be010c05, 0x8bbd040590c10405, 0xe3ff3989a4feff05, 0xff0599c704bc3aaa, 0x6e70c9ff3becb150, 0xab9d0405b0080ebc, 0x20ffbba010d5ff05, 0xff05b900083b7753, 0xd48fcdff3ac8f159, 0xd40d0e05e2c504bb, 0xb5f7ff05cfb20405, 0x043bc36373ffbc34, 0xbd49ce95ff05ddc4, 0xca25ffbc5de720ff, 0x0108061d140b3d02, 0xe0ff05f8060d05fd, 0xbc19c160ff3c828c, 0x060a000c060f0e0e, 0x8518ffbca12788ff, 0x24ff0618000cbd1c, 0xbd048660ffbd2d0b, 0x0633cc040641000c, 0xaec2f9ff062e0112, 0xcd04ba202f29ff3b, 0xffbc6a4450ff063c, 0x0653230ebbc71de5, 0xe0c82cff064e190e, 0x01123bb227dcffba, 0xffbc575d5aff065c, 0x077893053c513da0, 0x06b1020806ec020d, 0x0683190e0691bc04, 0x18c23aff067e9105, 0x220eba35868bff3a, 0xffbb94cd67ff068c, 0x06a3bd043b45c05c, 0xb3546fff069e2e0e, 0x330ebbcf7260ff3c, 0xff3a1da54dff06ac, 0x06d5c904bc0ab9a3, 0x06c2c00406c7170e, 0xb560ff3acab500ff, 0x40ff06d0010bbc1e, 0x3bb9b592ff3cc093, 0x06e2030b06e70a0b, 0x1600ffbc6c4c4bff, 0x0b3c8b7ec0ffbaef, 0x0407140208073405, 0xff070101120706c0, 0x09267fffb7c0cb97, 0xfda3ff070f310e3a, 0x043bd72095ffba5b, 0xff072191040726b0, 0x829d11ffba379f05, 0xc92eff072f010cbc, 0x0b3ca42a4aff3a58, 0x09074a190e07580b, 0x3a017647ff074500, 0x530012b8d18b78ff, 0x0effba2e3d99ff07, 0x04076ac904b99fe6, 0xb899a630ff0765c3, 0x730012ba8127c0ff, 0x9cff3b16424dff07, 0x080808020dbb065b, 0x0b07a4050b07c400, 0xff07910002079603, 0x9e1309ff3b51bc6a, 0x9914ff079f9505ba, 0x04bc18f82bff3b38, 0xff07b16d0407b66f, 0xb1e4cdffbc1df196, 0xa6b6ff07bfa704bc, 0x02ba572bd6ff3b87, 0x0407dac70407e800, 0x3a00eba6ff07d5c0, 0xe3050b3d59ea00ff, 0x80ffbcad1c11ff07, 0x0e07fac8043c0047, 0xba3a2fc6ff07f51d, 0x03230ebccf2d20ff, 0x15ff3be7fe4eff08, 0x0e0850100bbb8e7e, 0x1208226d0408301f, 0x3b24ec60ff081d01, 0x2b0d0e3c9f07c5ff, 0x6affb9e37300ff08, 0x0e0842010c3a7c08, 0xbbe97b55ff083d22, 0x4b00093ae60f3bff, 0x1bffbb54d3f2ff08, 0x040874010cbd200a, 0xff0861c0040866c9, 0xe6ca87ffba876e3b, 0x0797ff086f01123a, 0x0dbc6d8083ffba6f, 0xff08811d0e088606, 0x2b9fb4ff3c0c8845, 0x9c00ff088f020e3d, 0x05bbf3e0e4ff3c04, 0x0d0ad8c6040cf995, 0x040930a90409bc00, 0x0508cc000208ec9a, 0xff08b9880408be51, 0x0c1bb4ffb9cc4efa, 0x73f7ff08c7020ebc, 0x0e3b1472d6ffbc90, 0xff08d9070e08de15, 0x40b109ff3ba5529b, 0x2728ff08e71a0ebc, 0x063b6136d1ff3d2c, 0x020902310e091007, 0x3cc4bdefff08fd00, 0x0b350e3b22893eff, 0xccffbc53e69aff09, 0x0b09229d043c3974, 0xbb751b1dff091d03, 0x2ba704bd03c6d1ff, 0x67ffb94c5c6eff09, 0x0e0978340ebc8240, 0x02094a030b095833, 0x3bd37ce4ff094500, 0x53310ebbd922a7ff, 0xebff3bdac745ff09, 0x05096aba04bced08, 0x3c842bd7ff096523, 0x73000c3d663dccff, 0xcfffbc860fc3ff09, 0x04099c000c3c8cb3, 0xff09892203098eb5, 0xc7f08cff3c944d52, 0x41a4ff09973705bc, 0x06bcc26440ff3bec, 0xff09a9320309ae0a, 0xa2394bffb8e04c5d, 0xea1cff09b70b06bc, 0x0ebce54080ffbddc, 0x040a0874050a4c2a, 0x0509da790409e88c, 0xb890558eff09d570, 0xe3070dba1dd10fff, 0x8dff3949306fff09, 0x0409fa090b3c2977, 0x3ab1d06bff09f592, 0x032b03ba1dfc2dff, 0xb5ffb99cb825ff0a, 0x0b0a2cc504398466, 0xff0a19c4040a1e0b, 0x4ddaa5ff394c5910, 0x557cff0a270a0eba, 0x07bb763057ff3a37, 0xff0a3900080a3e02, 0xb689dfffbc1fe8b0, 0x4d82ff0a47170eb9, 0x04bbbcc483ff3c0a, 0x0e0a7400120a94c2, 0xff0a6100020a662b, 0x9f05d1ff3b6ea7a2, 0xda24ff0a6f00023c, 0x06bcc425d1ffba76, 0xff0a81060d0a8604, 0x3f7ac9ff39a7e956, 0xd024ff0a8f0906bc, 0x0dbbc00986ff3aae, 0x0e0aaa320e0ab806, 0x3b983b37ff0aa531, 0xb301123d7ccc8fff, 0x52ffbc9d38a5ff0a, 0x110acac3043bd7ac, 0xbc0eb4eeff0ac500, 0xd30207bd806bdfff, 0x00ff3bde0dfeff0a, 0x0e0bf80108bc632e, 0x020b28cc040b6c1f, 0x050afa0e0b0b0800, 0xbc57a1b2ff0af536, 0x03060d3a1e00bdff, 0x56ff3c987333ff0b, 0x070b1a000c3b78df, 0xbad73c11ff0b1501, 0x2384053b497c0eff, 0xc4ff3abd5edbff0b, 0x110b4c0b0ebb5856, 0xff0b39080e0b3e00, 0x06f972ff3b32160a, 0xd674ff0b4700083d, 0x0ebbfb27d1ff3b36, 0xff0b5900120b5e1d, 0x1dcafaffbb902c59, 0xcf8bff0b6700023b, 0x05bc7afac8ff3d03, 0x040b94cc040bb413, 0xff0b812a0e0b86c9, 0x0187e0ffbd3c410a, 0xdd74ff0b8f000cbd, 0x08bba29979ff3c9c, 0xff0ba101070ba600, 0x109fa9ffbc9244fe, 0x9305ff0baf0b0bbd, 0x0bbcf24f8fffba48, 0x050bca00120bd813, 0x3c899a04ff0bc553, 0xd3060d3ab99214ff, 0x2dff3a244bebff0b, 0x040bea0002bbe866, 0xbc905509ff0be5c8, 0xf3070d39a9fff1ff, 0x3bff3b59f441ff0b, 0x070c887505bd0d30, 0x050c2461050c4401, 0xff0c1153050c1655, 0x9c138bffb8878e92, 0x7087ff0c1f02083c, 0x04bb3f96e5ffbcc6, 0xff0c3165050c36ca, 0x4541e0ff3c8228d6, 0xec11ff0c3f000c3b, 0x0bbbd39a05ff3c83, 0x080c5a020d0c6801, 0x3cdaa5afff0c5502, 0x6357053d762d8cff, 0x74ffbd6cbf63ff0c, 0x0b0c7a070bbc8f9f, 0x3b1c1871ff0c7503, 0x836405bcc7202dff, 0x17ff3a0ba781ff0c, 0x0b0cd0310eb9d50c, 0x040ca202080cb014, 0x3aa679f9ff0c9dcb, 0xab000fba96ffafff, 0x92ffbc4c0ed3ff0c, 0x040cc2000cb9a896, 0xbc68a211ff0cbdc8, 0xcb180ebade5d57ff, 0x57ffba8969ceff0c, 0xff0cd9c7043c4237, 0x0ceb02073d843930, 0x084ee0ff0ce68505, 0x00123c11432fffbb, 0xff3cd30179ff0cf4, 0x0e6a1f0e3bbd24b4, 0x0d49000d0d577f04, 0x0d1b01070d200002, 0xf4a6a0ff0d169605, 0xb4ff3c0dcb34ff3b, 0x040d4496053c2c59, 0xff0d31030b0d3669, 0x614cc0ffbb519520, 0x0160ff0d3f070b3b, 0xff3c57416cff3b51, 0x0d52030b3c0f41d4, 0x8e35ffbb479db5ff, 0xb0040dde000c3b75, 0xa4040d83ae040d9a, 0x29ff0d70040b0d75, 0x3b9fc8faffba5f2b, 0x073800ff0d7e030b, 0x030bbc09d79bffb8, 0x80ff0d90020d0d95, 0x3cf71580ff3c67b7, 0xbec004bbb144a0ff, 0xab00020db0000d0d, 0x60ffbc9133c0ff0d, 0xff0db90111bb906a, 0x34ef57ffbae64b3b, 0xcbcd040dd0170e3b, 0xd5ff38660a91ff0d, 0xff0dd9000fbb8c4b, 0x4d640bff3ca3e710, 0x060a0b0e26000e3a, 0xf3050b0df801070e, 0xdaffbc2b7b8bff0d, 0xff0e01030bbc947f, 0x605180ffbb9ca473, 0x13b3040e180b0bb9, 0xb6ffbb9f5d98ff0e, 0xff0e210e0b3b07aa, 0x3f3680ffbb65ac30, 0x3c060e0e4a070ebb, 0x5179ff0e3700020e, 0x0bba37d7cbff3b4c, 0xbb7a988fff0e4502, 0x5c0b0e3bbd1554ff, 0xb19eff0e57c8040e, 0x0eba86d687ffbc86, 0x3aac9a53ff0e6519, 0xe80002ba81470cff, 0xb1000c0eda0b0b0e, 0x8c060d0e9a96050e, 0x3564ff0e87c9040e, 0x07bb30a0bbff3b34, 0x3c10d313ff0e9501, 0xa3230ebc90fea0ff, 0xc704bc2b6688ff0e, 0xffbbd1e1f0ff0eac, 0x0eba00113b2a6610, 0xcc030bbbf69120ff, 0xe000ff0ec7010b0e, 0x0dba97e900ff393a, 0xbb296800ff0ed502, 0xe3060dbb5b9760ff, 0x90ffbb605b00ff0e, 0x050f540008bc12d4, 0x0c0f14230e0f3496, 0xff0f0100110f0600, 0x96afc6ffbc07b850, 0xdc00ff0f0f220e3b, 0x0cbc574680ffb9fd, 0xff0f212b0e0f2600, 0x5af750ffbbac7e13, 0xadd2ff0f2f030b3b, 0x0b3b2c8a55ff3c23, 0x0e0f4a010b0f4f03, 0x3a0b9900ff0f4524, 0xaf00ff3a64e9c0ff, 0x0b3c524310ff3ab4, 0xff0f61030b0f6605, 0x0abd30ff3b0d5080, 0x00133c442b70ff3b, 0x03e8000000080000, 0x1082000000010000, 0x0007000000000000, 0xc70404848c0508e5, 0x6a05012cc1040248, 0x6805005c021100a0, 0xbe04002e020d003c, 0xff37d16a47ff0029, 0x00370f06bb063926, 0x4924ff379fe86eff, 0xb504004e0209ba82, 0xff3a880034ff0049, 0x0057080e39e2cb54, 0xdb91ffbb0e5862ff, 0x5e0400806c04bc46, 0x88ff006d00020072, 0xbaaee5eeff3b12a9, 0x017d59ff007b000c, 0x0008bd815c88ffbc, 0xbaff008d29050092, 0x3d0e0346ff3bd2cc, 0x084377ff009b1c05, 0xc004bc5815d0ff3c, 0x720500c8790500e8, 0x72ff00b5930400ba, 0xba29757affba1b77, 0x828ad1ff00c3000d, 0x330e3a2e479aff3b, 0x66ff00d5bf0400da, 0x39c9763eff383ddc, 0x170de5ff00e37a05, 0x000cbb76793eff3d, 0x2c0e00fe310e010c, 0xffb9c3ac32ff00f9, 0x0107320ebc420ea9, 0xab08ff3d8a256fff, 0x220e011e0b0b395f, 0xffbb38668eff0119, 0x012774053ae3bcb9, 0x3f2affbc6f491bff, 0x770501bc79053b4d, 0x001201580b0b0178, 0x7eff01457105014a, 0xbc6ca17aff3bb632, 0x0f2ae7ff0153050e, 0x2f0e3a2364f7ffbb, 0x79ff01650c0b016a, 0x3a9dd5cbff3d497f, 0xd87cd9ff0173c204, 0x250ebbda5c80ff3b, 0x1106018e7805019c, 0xffbb8bdccdff0189, 0x0197c5043cabaa45, 0xe91cffbbc91e80ff, 0x000601ae260ebd3a, 0xff3e22ea2dff01a9, 0x01b72a0ebc74d500, 0xcc43ffbc9c3707ff, 0xc3040204000239b0, 0x230e01d6050b01e4, 0xffbc8d3e0fff01d1, 0x01df000c394963fb, 0xee63ffbb9fe61dff, 0x2b0e01f6c6043b14, 0xffbb3536d7ff01f1, 0x01ff0b0b3c04d508, 0xe263ffbb02bf5cff, 0x050b0228000c3c2d, 0x61ff0215030d021a, 0x39f943d4ff3c60c1, 0xe8abe8ff0223c404, 0xc504bbe0a641ffb9, 0x68ff0235090b023a, 0x3bb72c70ffbba353, 0x7fa3f2ff02430108, 0x8805bc5b1df0ff3b, 0x850502dcc8040368, 0x79050278010c0298, 0xffff02650208026a, 0x3af53154ffbbcc7a, 0xf87377ff02737a05, 0x00083b3e7696ff3c, 0x2aff02857805028a, 0xbc1195a5ff3c77ad, 0x9e1b5bff02937f05, 0x87053cbae66eff3b, 0x1f0e02ae260e02bc, 0xffbcdd820fff02a9, 0x02b7000cbbcc47e7, 0x90c7ffbcb17412ff, 0x280e02ce0009bd96, 0xff3c81fd5aff02c9, 0x02d7010cbcd3c12d, 0xf216ffbc890af2ff, 0x001103248705bd86, 0x2b0e02f6c9040304, 0xffbc66a8d1ff02f1, 0x02ffcc043d0f471e, 0xd5e9ff3b869eceff, 0x59050316cc04bbb6, 0xff3a5e20baff0311, 0x031f220ebb4b1a30, 0x7ddbffbb35bfe0ff, 0x000c034800023bd4, 0x00ff03350009033a, 0xbd0e380cffba51b8, 0xb36dc9ff0343190e, 0xcb043d898f99ff3c, 0xd0ff03550208035a, 0xbc12ab92ff3ca2ba, 0xdb02aaff03630b0b, 0x8905391789b7ffbc, 0x2b0e03b4000c03f8, 0x240e03860b0b0394, 0xff3cab4d7fff0381, 0x038f0002bcb6b0c0, 0x8132ff3cee5a0aff, 0x0b0b03a6310e3bee, 0xffbbcf0e6eff03a1, 0x03af340ebc3f9fa6, 0xf474ffbb1a4a20ff, 0x000803d80012bc0a, 0x9aff03c50b0b03ca, 0xbcf472f8ffbb0e85, 0x354a6bff03d3170e, 0xcd043c5020c3ffbc, 0xcdff03e5010803ea, 0xbcdbd43effbc7be3, 0xefd613ff03f30008, 0x280eb8bed100ff3c, 0xc804042000120440, 0x4fff040d00090412, 0xbb6ed9f5ff3c6f88, 0xd95d84ff041b8a05, 0x0008bbc9a81fff3b, 0x74ff042d0b0b0432, 0xbbb9a7daff3aa5b7, 0xa03a8aff043b000c, 0x2a0e3cb8de45ffbb, 0x030b04568a050464, 0xffbc7d7a28ff0451, 0x045f000cbd9117ad, 0xdf11ff3c038bd8ff, 0x130b0476010cbc09, 0xffbb409e16ff0471, 0x047f030b3b1aec2d, 0xcf48ffbbc8b229ff, 0x110b06b28d053bdd, 0x0e0b051c0e0e059f, 0x8b0404b8040e04d8, 0xfbff04a5880404aa, 0x3bc644b9ffb9a4d7, 0x9044f5ff04b39d04, 0x00023a764cedffbb, 0x89ff04c5b20404ca, 0xbb96e9a5ff3afd0d, 0xcd891cff04d30108, 0x00023bcd8da6ffba, 0x001204ee890404fc, 0xff39cb6895ff04e9, 0x04f7a7043bd87672, 0x3f54ffbcabb63bff, 0x080e050e060d3c26, 0xffbbfa3975ff0509, 0x0517000c3bf9578d, 0xc110ff3c19145aff, 0xb3040564b5043d96, 0x1d0e05361f0e0544, 0xffb9c3b584ff0531, 0x053f000cbca1dbd8, 0x6334ff3a2de68eff, 0x01120556030b3c50, 0xffbbdb8e99ff0551, 0x055f01083d351885, 0x4d78ffbc94ccd3ff, 0xb6040588cc043d44, 0xf3ff05750111057a, 0xbc29a3ebff3c8502, 0x8ade27ff0583bc04, 0x140e3a1e3a3dffbb, 0x0cbd2b8590ff0591, 0x37acddb7ff059a01, 0x26c8043c996020ff, 0xcb000205eb010c06, 0xb8bd0405bdc10405, 0x2dff3977c1faff05, 0xff05c60009bc2800, 0x7c50e1ff3c0436e2, 0xd8bd0405dd080ebb, 0x06ff3a860584ff05, 0xff05e60b0e3c1c69, 0x05ba9fffbd53c5a1, 0x01050e0606b204bb, 0xe93dff05fc010e06, 0xffbc2d02cdff3bf3, 0x0618bb04bd3079bd, 0x5ccce2ff0613010e, 0x030e3ca2cce5ffbc, 0xffbccf76aeff0621, 0x066e000c3aa70934, 0x06400012064e0008, 0xb02ec7ff063b230e, 0x00023ca77b4fff3a, 0xffbb3d806eff0649, 0x066000023c27f6b8, 0xb24aadff065b0012, 0xc904bd1bbd38ffbc, 0xff3bed38efff0669, 0x0692230eba826101, 0x067f170e0684190e, 0xf2e1ff3acbc037ff, 0x4fff068d0009bc34, 0xbc7f5f5fff3c19fd, 0x069f011106a4cc04, 0x5110ffbca0aedcff, 0x57ff06ad00083c3c, 0xbc623988ff3b9cc7, 0x0746030d07d29305, 0x06e2310e07020009, 0x06cf300e06d4010b, 0x48a9ffbaf260e3ff, 0xe4ff06dd2b0e3cb7, 0xbbfac384ff3a63ec, 0x06efc00406f4330e, 0x2af8ffbc48d570ff, 0x43ff06fdc3043c9e, 0xbc3da4b3ff3cdfbb, 0x07182b0e0726050b, 0xcb4ea6ff0713190e, 0x2f0ebc2d2ad7ffb8, 0xff3d4eae35ff0721, 0x07388f053c051af8, 0x5b7e41ff0733c004, 0xa704bcd7fe10ff3b, 0xff3ba8b788ff0741, 0x078e55043c9c2683, 0x07600002076e9005, 0x7563fbff075b0112, 0x030b3c6ac95bffba, 0xff3b0a08fcff0769, 0x07805104bb9f9c0c, 0xe202a3ff077b010b, 0x01123c40dabbffba, 0xffbbe0f385ff0789, 0x07b2230ebd387bd6, 0x079fbc0407a4000f, 0xbc5fffba843657ff, 0x41ff07ad070b3ae3, 0x391faf71ffb82788, 0x07bf8f0507c49005, 0xf773ffba938b65ff, 0xf7ff07cd91053b46, 0x38639ab0ffbb9bfc, 0x081500080859020d, 0x07f02f0e07fe050b, 0x1e503cff07eb2c0e, 0x300e3cfb70c7ff38, 0xffbda2b040ff07f9, 0x0810cd04bbcbb001, 0x4aaca2ff080bc904, 0xe0ffbb9a9c68ff3a, 0x040839000f3cde51, 0xff08261d0e082bc4, 0xba7560ffb90eb321, 0xf866ff08340002bc, 0x0c3bc9eb4affbbbe, 0xff0846c804084b00, 0x5d7ee8ffbb86ca20, 0x820bff08540b0bba, 0x0b3bb3c9a0ffbc98, 0x090881010b08a10e, 0xff086e1c0e087301, 0xc9d0dcffba85c02a, 0xaaeaff087c02093b, 0x123c04a942ffbc55, 0xff088e0011089300, 0x1a3621ff39737d82, 0x81fbff089c170ebc, 0x05b8d1b451ffb8e4, 0x0e08b7a40408c594, 0xbbc71841ff08b201, 0xc0ca04bcce2803ff, 0x06ff3abf34deff08, 0x0c08d71d0ebadfa7, 0xb9e49a8bff08d200, 0xe001083b046d97ff, 0x16ffbb90d2ccff08, 0x040d5c95053cc6f2, 0x040a0dc1040b29c6, 0x06093d9d040981b4, 0x0e090f8a05091d0a, 0x379a9ad8ff090a2e, 0x188b05ba17f2cdff, 0x22ffbac6685dff09, 0x05092f000e3a2392, 0x3a3f3e98ff092a04, 0x38150ebba34656ff, 0x6eff3adb3001ff09, 0x0609613403b8a59d, 0xff094ea104095302, 0x95e7e5ffbbac7fc0, 0x814aff095c010cba, 0x0e3c975b7eff3a97, 0xff096e020709732d, 0x8a60a2ff3951f588, 0x9735ff097c0a06ba, 0x11bc96ea09ff3add, 0x0409a9070d09c900, 0xff09960d0e099bb7, 0x5fa598ff3c4a103a, 0x38f4ff09a4280ebc, 0x0e3bcc6f1cffb99c, 0xff09b6010c09bb07, 0x04ef14ffbcdc743f, 0x31efff09c4080ebe, 0x03bafedee7ff3cd9, 0x0d09df330509ed33, 0xbab01319ff09da06, 0xe83f05bd1f6617ff, 0x1aff3cab7fd1ff09, 0x0d09ff5c05bc40d8, 0x38fb1125ff09fa06, 0x085d05bbc77a48ff, 0x26ff3c67b294ff0a, 0x0e0a9d000239e686, 0x060a39000f0a5919, 0xff0a26030b0a2b15, 0x117f6fffbce0827a, 0x1d8cff0a34000cbc, 0x043d7ac410ffbb39, 0xff0a46180e0a4bc2, 0xa2f44effbc219204, 0x21b1ff0a540d0e3c, 0x0b37d13c6aff3b38, 0x0e0a6f01070a7d10, 0x3b13b3b0ff0a6a23, 0x780b0bbb6c23c9ff, 0xf0ff3b1feff3ff0a, 0x0e0a8f320ebc4417, 0xbbb5085fff0a8a2a, 0x98010c3bfc24c5ff, 0x1fffbd43958fff0a, 0x0b0ae56e05b9acec, 0x0d0ab702080ac505, 0xbb9de5b2ff0ab202, 0xc0000f3b86b844ff, 0xc5ffbd050d09ff0a, 0x060ad7000f39f4ff, 0x3c8c2c78ff0ad20b, 0xe0330e3af0b6fdff, 0x05ffba80340eff0a, 0x040b097f05bd0d29, 0xff0af670050afbc4, 0x82e964ff3c72c00c, 0x5c4aff0b047705bb, 0x0bbc2a81c8ff3c94, 0xff0b1602070b1b0f, 0x3e0745ffba0b7a87, 0x0052ff0b24140b3b, 0x083b540102ffbc54, 0x0c0bbd220e0c4901, 0x0e0b59000f0b7900, 0xff0b46020d0b4b1c, 0x370700ff3b5bd925, 0x52c6ff0b54210ebc, 0x043ba3713eff3d31, 0xff0b66c7040b6bc9, 0xfa2a01ff3b6ec43f, 0x891fff0b74060dba, 0x0e3a06f788ff3ba5, 0x0e0b8f060d0b9d17, 0xbb96bcabff0b8a14, 0x98080e3be03f42ff, 0x15ffbbbdac26ff0b, 0x0e0baf7e053b8acc, 0x3c80fcedff0baa21, 0xb87f05bc5274e2ff, 0x16ffbc9dabdeff0b, 0x050c05ca04bb1bb5, 0x0e0bd700020be571, 0xbc9901f7ff0bd226, 0xe06d05b9b80991ff, 0xbdff3b47dc87ff0b, 0x050bf7c9043cc487, 0x3c02ba7cff0bf277, 0x000012398a5438ff, 0x13ff3c5066e1ff0c, 0x0c0c29230ebc420e, 0xff0c160b0b0c1b00, 0x088818ffbbd67e7a, 0x339aff0c24cb043b, 0x0e3bcd6fb2ff3caf, 0xff0c36cb040c3b25, 0x21028dffbd686112, 0x2b31ff0c44cb043c, 0x05baebddc9ff3bba, 0x050c9501070cd975, 0x120c670b0b0c7561, 0x3c4c0bcdff0c6200, 0x70c8043a075eb5ff, 0x3effbc82994bff0c, 0x0b0c87ca043826ab, 0x3a7dd025ff0c820b, 0x9063053c22beb6ff, 0xc5ff3cf1fa4dff0c, 0x0e0cb90012bb9aca, 0xff0ca6cb040cab22, 0xf35061ff39cd2e1f, 0xbabbff0cb40208bc, 0x04bba17b94ff3a15, 0xff0cc600020ccbc8, 0xdf111fffbbfde164, 0x6b12ff0cd4310e3a, 0x0ebb308a67ff3b16, 0x050d010e0b0d2131, 0xff0cee000f0cf37b, 0xea4bd4ffbc47e6f6, 0x78aeff0cfc010c3a, 0x0bbb1d0f07ffb8ba, 0xff0d0e00020d1310, 0xa28960ff3d59b6d6, 0x4a44ff0d1c000cbc, 0x0d3b45b5cbffbb1e, 0xff0d2ec7040d3c02, 0x0d37cc043d6e0090, 0xa13fff3b1469cbff, 0x02080d4e01123cac, 0xffbaa8d087ff0d49, 0x0d57030b3c2f31bd, 0xfeb3ffbd719276ff, 0xb3040f39020e3c27, 0x78040dbe00020e41, 0x030b0d7e01070d83, 0xff3bff3a90ff0d79, 0x1b1d88ff3bdc2f90, 0x99040b0da79e043c, 0x4509ff0d9400110d, 0x0fbbdf50a0ff3a84, 0x3c212ec7ff0da200, 0xb0010bb9e85095ff, 0xa404bc97bfc6ff0d, 0xffbc2b6d85ff0db9, 0x0e06010ebadd69b3, 0x0dd8010b0de6050b, 0x05015eff0dd37804, 0x020dbb379817ff3c, 0xffba6bd700ff0de1, 0x0df8000e3b85e6ab, 0x8f82f9ff0df30a0b, 0xa704bb1da984ff3b, 0xffbca2a9e8ff0e01, 0x0e21030bbb2ab70a, 0x0e1790040e1cae04, 0xf277ffbba9538eff, 0x123cde6020ff3b80, 0xff0e2e000f0e3301, 0xb8ba40ff3aa9a9a4, 0xe800ff0e3c90043a, 0x0b3d6e7520ff3c61, 0x040e8401070ebf09, 0x0b0e5f000e0e64bb, 0xbc043f5fff0e5a05, 0xa769ffbc902826ff, 0x01110e76000cbd76, 0xffbac741c0ff0e71, 0x0e7f020b3c287e80, 0x121dffbb9a821aff, 0x00020ea8000ebc12, 0x8fff0e95050b0e9a, 0xbc5e3934ffbb8176, 0x36787bff0ea3ba04, 0xb904bb80fbd0ff3a, 0x0bbcec769fff0eb1, 0x3bb100deff0eba00, 0x07010e3af7c1faff, 0xd9000c0ee700080f, 0x9adcff0ed40b0b0e, 0x0bbb69c897ff39db, 0x3b16962eff0ee211, 0xf900113bcc1b4eff, 0x5dbdff0ef4000e0e, 0x043b871807ff3a91, 0x3b1ae010ff0f02bb, 0x22000c3c21b68bff, 0x831fff0f14000f0f, 0x94ff0f1db904bcde, 0xbba459cbff3b2b2e, 0x17a092ff0f2b0002, 0xbb90ff0f34bb04bd, 0x04bc2e7a52ff3c17, 0x0b0f5801120f6f90, 0xff0f4e96050f5303, 0x1f99d6ff3beb0812, 0x030bbc2344bbff3c, 0x20ff0f6501070f6a, 0xbc3157b0ffbc75a3, 0xff170ebcc8ec98ff, 0x9b040e0fbb040d0f, 0x8801070f8d030b0f, 0xb0ffba0fea80ff0f, 0xff0f96040b3c104f, 0x7c0f18ffbc0ef680, 0xa8b0040fad080ebc, 0x2fff3c508b80ff0f, 0xff0fb6050bba34f4, 0x1a9b90ff3b065dd1, 0xd1bc040fdf140e3c, 0x3ab3ff0fcc00020f, 0x043a2c459eff3c22, 0xbc3fe043ff0fdabf, 0xf1000f384b1922ff, 0x95a0ff0fecc9040f, 0x0dbb76d2cdffbcc8, 0x3b3c99d6ff0ffa06, 0x3ecb04bc21e947ff, 0x10bf04101ec60410, 0x1d0e3b5eea80ff10, 0xffbc2d8949ff1019, 0x1030000cbaa65773, 0x265477ff102b050b, 0xc9043c325e59ff3b, 0xffbba6d6acff1039, 0x1062cd043b15691f, 0x104f180e10540012, 0x983bffbb7bbc20ff, 0x82ff105d0b0bbc87, 0x3bae7379ffbaa1d7, 0x106f01111074000c, 0xfb37ff3acd8fa6ff, 0x14ff107d0111bba9, 0x3c1edddcffbae006, 0x0000000800000013, 0x00000001000003e8, 0x0000000000000fa1, 0x04848c0508af0007, 0x012cc1040248c704, 0x005c021100a06a05, 0x002e020d003c6805, 0xbc725cff0029be04, 0x190ebaf19a39ff37, 0xffb8e04240ff0037, 0x004e010839587941, 0x2b9f35ff00497b04, 0xaf04bb84381eff3b, 0xff3bec9809ff0057, 0x0080030bb99136d1, 0x006d0c0500720008, 0x67afffbb095652ff, 0xecff007b1c053c2c, 0xbc92ee4bff3a6293, 0x008d350400921205, 0x6bdcffbb95cd83ff, 0xa7ff009b00063ca4, 0xbc5e801fff3b3c28, 0x00c8790500e8c004, 0x00b5000d00ba100e, 0xf39aff3c79551bff, 0x78ff00c3010d38dc, 0xb96b6fcdffbbcf1f, 0x00d5bf0400da0009, 0xe552ff39b28dcbff, 0x2bff00e3230e39d2, 0xbacef44effba236e, 0x00fe7405010c7805, 0x642064ff00f90108, 0x00083b0acb7affbc, 0xffbc559701ff0107, 0x011e010c3cf6a8ce, 0xd45e65ff0119340e, 0x7f053d92dab6ff36, 0xffbcb93c68ff0127, 0x01bc75053ad72a69, 0x015800060178000f, 0x0145020d014a070b, 0xb929ff3b2507d9ff, 0x2dff01535705bc26, 0x3cb1e698ffbc0c5f, 0x01650002016a0406, 0x1479ffbd977a6dff, 0xa6ff0173030dbb05, 0x3b8f2c2effbb8fdb, 0x018e6e05019c7305, 0x00c687ff0189060d, 0x0108bad52ce1ff39, 0xffbc3e5448ff0197, 0x01ae0d0e3c25e5ee, 0x087970ff01a9c204, 0xc204bd6c1ae2ffbc, 0xff3d1f4f4bff01b7, 0x020481053b1a8853, 0x01d6010c01e4220e, 0x098a8cff01d1190e, 0xc304bc5a32b6ff3a, 0xff3cc5cdf1ff01df, 0x01f6260eb9ad5530, 0xa95c7dff01f1060d, 0x0012bba79e1dff3c, 0xff3c1f5747ff01ff, 0x02288905bb404ce7, 0x02150112021a8305, 0x14a2ffbbaced69ff, 0x02ff022300083b9b, 0x3a8c7727ffb99946, 0x02350a0b023ac504, 0x77f3ffbb0ef20dff, 0xdaff0243010c3abe, 0xbca6a6bdff3b17af, 0x02dc01110368190e, 0x0278c9040298180e, 0x02650011026a170e, 0x11c1ff3b8d8ed0ff, 0xabff02730b0bbb14, 0xbd118da5ff395e02, 0x0285060d028a170e, 0x1af4ffba1b024aff, 0x7dff0293cb04bbed, 0x3d790302ff3abf4e, 0x02ae7c0502bc7d05, 0xbbacbdff02a90208, 0x02083c805a00ffbb, 0xff3dbe93d8ff02b7, 0x02ce02083da78d84, 0x20a6a7ff02c90008, 0xc8043be9d326ffba, 0xff3be944ccff02d7, 0x03240b0bbc167c88, 0x02f6070e0304c804, 0xd6a465ff02f11805, 0x020dbb81a96cff3c, 0xffbb5aec05ff02ff, 0x0316020dbcdcf51d, 0x03a463ff0311090e, 0x29053bb78352ffbc, 0xff3ce7e858ff031f, 0x034814063b28f389, 0x03350208033a010c, 0x7422ff3c4487e5ff, 0x58ff034300083d10, 0x3d23d6f8ff3d76b3, 0x03554705035a010c, 0x7c2cff3b57b4a9ff, 0xc0ff036300083cbc, 0xbc7f19a0ffbc059c, 0x03b47a0503f87f05, 0x0386000d03947905, 0x03396eff03810206, 0x0009bba7b3dfffbe, 0xffb9b49935ff038f, 0x03a600023c88da71, 0xfdb3ddff03a10208, 0x0b0b3c48f57dffbb, 0xff3c89cd91ff03af, 0x03d801083dc69075, 0x03c5070d03ca0008, 0x8c34ffbae88f80ff, 0xcdff03d3280e3d89, 0xbc54551affbd5843, 0x03e57c0503eac904, 0xd2bdff3c3873ccff, 0x44ff03f3010cbc61, 0x3c2834c7ffbabad7, 0x0420830504408405, 0x040d000904121f0e, 0x7c08ff3d14d10eff, 0xe7ff041b0011bc8a, 0x3b574358ffbb9e6e, 0x042d00080432310e, 0x424cff3b7a8cd8ff, 0x85ff043b010c3d2e, 0x3c0155eaffbc445c, 0x0456cb0404648605, 0x9f208cff0451060d, 0x0b0bbce3c41affbb, 0xff3be95fc2ff045f, 0x0476000cbb9f847d, 0x03dee7ff04710008, 0x250ebaebf8afff3c, 0xff3b6d6292ff047f, 0x067c8d05bafa28c6, 0x051c060d059f010c, 0x04b8000204d8220e, 0x04a57d0404aa9604, 0x745affbb928745ff, 0x35ff04b3140e3bd4, 0x3aabcff3ffbb7d92, 0x04c5000c04ca0112, 0x377cffba3dcd2aff, 0x4eff04d39b043b62, 0xbb399e71ff3bdcbc, 0x04ee000904fc0112, 0x2e644eff04e9230e, 0x00023a57bc78ff3c, 0xffbc5ba5a4ff04f7, 0x050e0209baeb950b, 0x1d413eff05090108, 0x00023b8b2e61ffbb, 0xff3c9e0b20ff0517, 0x0564c6043d241578, 0x053600110544010b, 0x1001d4ff0531070d, 0x000cbc69be70ff3c, 0xffbc86ed51ff053f, 0x0556070b3b0bc322, 0x2ec556ff0551000c, 0x000c3bf9ab1affba, 0xffb96345f0ff055f, 0x057fc704bb8d871d, 0x0575230e057a0011, 0xd090ff3cc22fb2ff, 0x023dab08ceffbc40, 0xff058cc904059100, 0x0e7967ffbc42bd7e, 0x7d3aff059a230e3c, 0x04bc183866ffb961, 0x0405eb070d05f0bc, 0x0e05bd060e05cba4, 0xbb50964fff05b803, 0xc6010b3d0c45f4ff, 0xf8ff3b10810bff05, 0x0b05dda504be1af9, 0x3d41df28ff05d80b, 0xe6010bbd04f800ff, 0x66ffbcd24501ff05, 0x3d2fb004ff37f53d, 0x0618030b0638be04, 0x0605190e060a0009, 0x5346ff3c0eafd5ff, 0x93ff0613060dbb27, 0x3b63edf0ffbcad33, 0x0625bd04062a0009, 0x4c18ffbc2295e0ff, 0x00ff063300113d02, 0x3d6be197ff3ae7a8, 0x064e0b0b065c0011, 0xc2d0f8ff06490002, 0xc504bb23b9e3ff3c, 0xffbc71e002ff0657, 0x066e030b3b245569, 0x2c656dff06690008, 0x0108bc27906aff3c, 0xffbbd63175ff0677, 0x079393053bbc247c, 0x06cc02080707020d, 0x069e040b06acbe04, 0x8b8d39ff0699230e, 0x000dbbf191e2ff3a, 0xff3ba73a07ff06a7, 0x06bec504bb0a834e, 0xdacd84ff06b9300e, 0x2a0e3ca3c3d1ff39, 0xffbc4e432dff06c7, 0x06f0c90438be4fd0, 0x06ddc00406e2170e, 0x4320ff3aae6dd2ff, 0xe0ff06eb0002bc10, 0x3c052e70ff3bc3f9, 0x06fd8f0507020a0b, 0x9f33ffbca6de40ff, 0x0b3c79aa80ffbb9b, 0x04072f0208074f05, 0xff071c01120721c0, 0x08c15dffb77ae143, 0x1110ff072a030e3a, 0x04b9b83cacff3c58, 0xff073c9c040741ae, 0x905419ff394e9db0, 0x3e26ff074a030bbc, 0x0bbc5f5a45ff3b2d, 0x090765190e07730b, 0x39e3e73cff076000, 0x6e0012b8d78d4cff, 0x9effba176187ff07, 0x040785c904b98751, 0xb8aa0b42ff0780c3, 0x8ecb04ba6bc82bff, 0x8fffbac13c68ff07, 0x080823020d3a3d47, 0x0b07bf050b07df00, 0xff07ac000d07b103, 0x8f3b85ffbba35016, 0xab88ff07ba00023a, 0x0b3b3726dfffbc0f, 0xff07cc000f07d10b, 0x34ca57ff397f5ac7, 0xf101ff07dac804bc, 0x083c2d42caff3c00, 0x0407f5ca04080302, 0xb9e8ae2dff07f0c9, 0xfe1d0e3ca7bf74ff, 0xd7ffb8b948b3ff07, 0x0b0815070ebc19ec, 0xbc53eac0ff081002, 0x1e0d0e3a9430abff, 0xc5ff3c358d60ff08, 0x0b086b0e0b3c93b0, 0x0e083d1c0e084b01, 0xb9d857d8ff083819, 0x460009be049b02ff, 0x68ff3b2cc495ff08, 0x05085d00123d10be, 0x3ab5e52bff085895, 0x66170ebabf4375ff, 0x97ffb8cda8d6ff08, 0x0e088f9405b8bcba, 0xff087c060d088123, 0xa45720ff3ad5d7d1, 0x91f3ff088acc04b9, 0x0ebbeb1f18ffbcd8, 0xff089c100b08a11d, 0x5918b8ff3c01c806, 0x9f37ff08aa950539, 0x05bc212e74ff3929, 0x0d0af3c6040d2695, 0x04094ba90409d700, 0x0508e76505090799, 0xff08d4000208d943, 0x322b15ffba338627, 0x45baff08e2260ebb, 0x07bc3f08efff3bc8, 0xff08f41a0e08f901, 0x2e554bff3c4de7b4, 0x3600ff09027704bc, 0x063bead81fffbcba, 0x0e091d310e092b08, 0xbb145f2bff091826, 0x269e043c91c0f2ff, 0xa7ffbcce888eff09, 0x05093d1806ba2855, 0xbc7f26d1ff09381c, 0x460208bb951f92ff, 0xf8ffb9177f8cff09, 0x06099302073d1bde, 0x050965340e097303, 0x3d650dc3ff09603e, 0x6e030b3c153186ff, 0xbaffbc0d0058ff09, 0x0209850108bcb2bf, 0xbc909b99ff098000, 0x8e2b05bb5af973ff, 0x72ffbaf682bdff09, 0x0509b776053c2428, 0xff09a4000209a913, 0x2e74b1ffbd442efc, 0x3d41ff09b2000cbc, 0x0e3c145e97ffbbf6, 0xff09c47f0509c923, 0x51c7bfffbd5feec3, 0xb8e4ff09d279053b, 0x05bd28949cffbc28, 0x050a2355040a6726, 0x0509f5000b0a030e, 0xbb7db869ff09f00b, 0xfe5204bd2d605fff, 0x22ffba860714ff09, 0x0b0a15000cbb81be, 0xbc8d478cff0a1000, 0x1e010db9c91b84ff, 0x20ffbbd37457ff0a, 0x050a4712033a87d3, 0xff0a3413050a3919, 0xe28b44ffbb501c7e, 0x44b4ff0a421c013c, 0x02bd01ef39ff3b29, 0xff0a54bc040a5900, 0xb92672ff3adb8dfa, 0xa8ffff0a62060d3b, 0x043c7da29effb9a4, 0x040a8f92040aaf97, 0xff0a7c00120a818c, 0x8287f3ffbaed915e, 0x3caaff0a8a070e3a, 0x0dba7e7a22ff3b10, 0xff0a9c48050aa106, 0xe4fa90ffbb222382, 0x6fecff0aaa140eb9, 0x043acd27f1ff3a29, 0x0f0ac5070b0ad399, 0x3bcdfebeff0ac000, 0xce060d3a15be62ff, 0x9fffbbe2df9eff0a, 0x030ae5060d3aa82f, 0x3b722665ff0ae034, 0xee0108b9b15f5dff, 0x2cff3a619d2cff0a, 0x0e0c1301083a4d17, 0x0e0b43cc040b871f, 0x0f0b15170e0b231d, 0xbaa986b5ff0b1000, 0x1e75053a80972cff, 0x91ffbbe308b2ff0b, 0x0b0b35060dba0d6b, 0xbc073521ff0b300b, 0x3e0b0bbd89cb13ff, 0x92ff3c3cf910ff0b, 0x070b67000c3d091b, 0xff0b541d0e0b5901, 0xcdd43fffbb434bac, 0xe9cbff0b620008bc, 0x0e3b4b328bff3c0d, 0xff0b7400020b791c, 0x7a397dff3bddeea9, 0x3cc0ff0b828a05bb, 0x05bbd0e56cffbd10, 0x050baf74050bcf78, 0xff0b9c6b050ba171, 0xd24704ff399caf90, 0x642bff0baac704ba, 0x053ca93b9affbd04, 0xff0bbc00080bc175, 0x31cc64ffbd37840f, 0xa1a6ff0bca0107bc, 0x053c1b44a7ffbc76, 0x0e0be501110bf379, 0x3bc08a49ff0be025, 0xee030bbc97d1f2ff, 0x26ff3ba01a55ff0b, 0x050c0501073cef81, 0x3cd818a6ff0c007a, 0x0e81053a4bdb8eff, 0xf9ff3a96b27eff0c, 0x0d0c9a7505ba5788, 0x010c3607050c5606, 0x3d3ad3c8ff0c2836, 0x9ac9e2ff0c311406, 0x65053c0b0b13ffbc, 0x3dff0c4360050c48, 0xbbb7b378ff3a8152, 0x046e74ff0c51000f, 0xca043a73415affbc, 0x010b0c6c030b0c7a, 0xffbccb5a59ff0c67, 0x0c75070d3c3d3c52, 0x899cffbb3b68e1ff, 0x41050c8c010c3c51, 0xffbe279ae6ff0c87, 0x0c95180e3bd57396, 0xaf91ff3c5a6fa3ff, 0x110b0ce2310ebbe2, 0x050b0cb4010c0cc2, 0xffbab95b78ff0caf, 0x0cbd0d0e39ca6b5b, 0xf8e8ff3c4806aeff, 0x2c0e0cd48405bbce, 0xff3ab5a20fff0ccf, 0x0cdd85053c1e98ca, 0x9b81ffbc6a535eff, 0x79050d06340ebac0, 0x51ff0cf30b0b0cf8, 0x3e073600ff3c752a, 0x733a8fff0d010208, 0x020d3c953e8bffbb, 0x30ff0d1301070d18, 0x3ce8148bff3bf852, 0x11f63aff0d21000f, 0x1f0ebb1f038cffbd, 0x000d0d847f040ea0, 0x070b0d6801070d76, 0x050b0d4c96050d5a, 0xff3ab111f0ff0d47, 0x0d550002bb0d02c0, 0x4300ff3be5b4b8ff, 0xd0ff0d6300023be7, 0x3c3a8decff3bc62a, 0x0b9a94ff0d710002, 0x030b3bf78eb8ff3c, 0xffbb2dc1f5ff0d7f, 0x0e14000c3b62e575, 0x0db0060d0dd0cc04, 0x0d9dc7040da2ca04, 0x3419ff39f9e79dff, 0x6cff0dabcb04bac7, 0xbb216d07ff3c29e2, 0x0dbd00080dc20112, 0x52f5ffbabda624ff, 0x40ff0dcbb0043a3b, 0x3c17a500ff3cc823, 0x0de6060d0df40b0e, 0x90fe0cff0de10107, 0x080e3b14c49fffbb, 0xff3b1d936fff0def, 0x0e06190e3cbb9ae2, 0x6ad5b1ff0e010011, 0x00113ae78725ffbb, 0xff3b225238ff0e0f, 0x0e5c000eb955e91d, 0x0e2e01070e3c030b, 0x20fcc7ff0e290008, 0x0002bc4cc99dffbc, 0xffbba859ceff0e37, 0x0e4eb9043a102200, 0xdff84bff0e490002, 0x010cb92e68abffbb, 0xffb9895a15ff0e57, 0x0e80070ebb88eca6, 0x0e6d00020e72060e, 0x0009ff3b397abfff, 0x90ff0e7b010cba23, 0x3c85c14bff3b36f4, 0x0e8d0b0b0e920b0e, 0x03d5ffbbac3cb4ff, 0x49ff0e9b140e3bcb, 0xba12d63eff3ac398, 0x0f070b0b0f150002, 0x0ec7c0040eccc304, 0x0ebd96050ec2030b, 0x6000ffbae04200ff, 0xffbabcd400ffbae5, 0x0ee7230e3c02eb00, 0x0edd00080ee20107, 0x6ad8ffb89534b5ff, 0x0ebc83c7a8ffbc35, 0xff0ef4030b0ef92b, 0xb42d14ff3b24d12b, 0x2d80ff0f020107b9, 0x1238748000ffbbb2, 0xbc06b780ff0f1000, 0x8a0008bb5432c0ff, 0x41230e0f6196050f, 0x2e220e0f33000f0f, 0xc0ff3899d000ff0f, 0xff0f3c060dbc457b, 0xf96f60ff3b857de3, 0x4e2b0e0f53000cbb, 0xfbffbba3cee2ff0f, 0xff0f5c050b3b471c, 0x7e7410ff3b047bdc, 0x77240e0f85030b3c, 0x0000ff0f72c7040f, 0x123a12f600ffb8e6, 0x3a8e0f20ff0f8001, 0xaa90ff3a6ed700ff, 0x60ff0f93030b3c3a, 0xff0f9c050b3ae9cf, 0x2dfbb0ff3ae52c80, 0x000008000000133c, 0x000001000003e800, 0x0000000000102800, 0x848c0508d3000700, 0x2cc1040248c70404, 0x5c021100a06a0501, 0x2e020d003c680500, 0x9629ff0029be0400, 0x05bad970ceff37a9, 0x38061f0cff003761, 0x4e0209ba451b49ff, 0x3840ff0049b30400, 0x043acb1eb4ff3a3f, 0xbb443008ff0057a8, 0x806c04bcd2e380ff, 0x6d000200725e0400, 0x2eff3b01293aff00, 0xff007b3401baaa11, 0xebdb03ffbd6a06d0, 0x8d020800921006bb, 0x05ff3c5297b4ff00, 0xff009b000ebc2cb0, 0x01a579ffbcc069b8, 0xc8790500e8c004bb, 0xb5000600ba100e00, 0x35ff39fc0be2ff00, 0xff00c3000dbbce4c, 0xa3164fff3a1cd5ce, 0xd5be0400da330eb9, 0x8fffb7d647e7ff00, 0xff00e3340e3b3ca9, 0xcfa0ddffbbd080ff, 0xfe070b010c000c3c, 0x778bff00f9000f00, 0x0d3c4206bfffbbe8, 0xbd137481ff010703, 0x1e0b0bbb1728f9ff, 0xbaccff0119220e01, 0x083ac9b9c5ffbb23, 0xbb85edfbff012700, 0xbc79053c0ae490ff, 0x580b0b0178770501, 0x450112014a0a0b01, 0x39ff3bf7d9cbff01, 0xff0153710539f65f, 0x161823ff3823b7f2, 0x651f0e016a0002bc, 0x2fff3c6e19d6ff01, 0xff0173c604bb011e, 0x1c0be7ff3b1a3fa8, 0x8e0d0e019c0006bd, 0xd780ff0189010c01, 0x0fbd45c659ffbb59, 0x3be78d10ff019700, 0xae0a06bb131efeff, 0xbab1ff01a9000f01, 0x0e3cb06bb8ffbd08, 0x3c7e9497ff01b709, 0x040002bbcf1ba5ff, 0xd6860501e4c30402, 0x0c1aff01d17a0501, 0x0ebb1b9267ff3bbd, 0x3bf75915ff01df19, 0xf62f0ebb4f84b2ff, 0x09f4ff01f1810501, 0x05b89ce34bff3aa2, 0xbc64d1f9ff01ff7e, 0x28000c3ba5a285ff, 0x15030d021a050b02, 0x0dff3c476078ff02, 0xff02238a0539ebe8, 0x241791ffbba0f937, 0x35040b023ac3043b, 0x7cffbc9c81deff02, 0xff024301083bf3b3, 0xf779a0ff3b8470a3, 0xdc060d0368190ebb, 0x7801080298c80402, 0x651906026a000f02, 0xb3ffbcd2abd4ff02, 0xff02730209bb0a1e, 0xcb09f7ff3b7431d8, 0x850111028a030bba, 0xa6ffbb2aad24ff02, 0xff0293010c3c18c6, 0x460140ff3cd6551a, 0xae011102bc170e3d, 0x3f2cff02a9540502, 0x0d3bb6ae2dffbaa3, 0xb999262fff02b705, 0xce02083c046731ff, 0x0c4fff02c9010802, 0x12bcd874d9ff3b96, 0xbd55acbeff02d701, 0x240012bb8e9880ff, 0xf67b0503047f0503, 0x5f40ff02f1770502, 0x0ebc3a19b4ff3be7, 0x3c7dde11ff02ff17, 0x1685053d591477ff, 0x7077ff03110e0e03, 0x05bc4bd8a7ff3c51, 0x3c8da0d9ff031f86, 0x4802083970a619ff, 0x350002033a140b03, 0x29ff3bc4037bff03, 0xff03430002bc8668, 0xb9a2cbffbd22aa1a, 0x557505035a7f05bb, 0xc0ff3a0c6500ff03, 0xff03630b0bbc9bca, 0x95b672ff3b0d17d8, 0xb4770503f878053c, 0x86340e0394750503, 0xe547ff0381020803, 0x0d3ab7454effba3e, 0xbca7bc6fff038f00, 0xa60b0b3b6274d3ff, 0x3534ff03a1010c03, 0x08bd81aee4ff3bf2, 0xbca8ab5aff03af01, 0xd800083cdb0475ff, 0xc5000903ca010903, 0x51ff3d24c505ff03, 0xff03d3060d3d6e20, 0xce8938ff3d17fdc2, 0xe5020803ea310e3c, 0xfdffbd15713bff03, 0xff03f3010cbaffcd, 0xdac8b0ff3c38eca1, 0x20cb04044089053c, 0x0d88050412220e04, 0xafffbbc8e48dff04, 0xff041b8605bd0b50, 0x88e955ffba8394a1, 0x2d2d0e04327b053b, 0xa6ff3d15a463ff04, 0xff043b2a0ebbb525, 0xcbfee0ffbc035096, 0x562b0e04640011b9, 0xe72dff0451010c04, 0x0ebbfd03cfffb839, 0x3cf1a4d9ff045f2e, 0x76280e3ae08ce0ff, 0x5e00ff0471000804, 0x0e3c89121cffbb89, 0xbade361eff047f31, 0x978d053ba34eefff, 0x1c0e0e05a8110b06, 0xb8050e04d80e0b05, 0xa5b30404aabc0404, 0xc9ffb99dd3baff04, 0xff04b30b0bbba624, 0x0a2cf9ffbab0a860, 0xc5000904ca070ebd, 0x6dff3b4af924ff04, 0xff04d3010cbbeeff, 0xf953a0ffb814b617, 0xee070e04fca2043a, 0x17aaff04e9030e04, 0x0dbcb60583ff3b6f, 0x3be528f0ff04f706, 0x0ea7043d7a3dacff, 0x95e5ff0509000905, 0x0ebb9a5fd4ffbcfc, 0x3d1cd1d3ff051704, 0x64020dbc76f16aff, 0x36190e05442b0e05, 0x3dc8ff0531020805, 0x083d338c13ff3bff, 0x3b415abcff053f02, 0x56be04bcbb7993ff, 0x4990ff0551000d05, 0x04bd081c26ff3cac, 0x3c73167bff055fc6, 0x880008bc51e540ff, 0x75140e057a060d05, 0x04ffbc29b0a4ff05, 0xff0583070b3a45a9, 0xe15a1aff3b7dab99, 0x95000c059a0112bb, 0x0dffba22db85ff05, 0xff05a3000c3bd65c, 0xfc39f6ff3be33c2e, 0xf4010c061dc804bb, 0xc6c10405d4000205, 0xd791ff05c1bd0405, 0x04bc1a09a7ff39b0, 0x3c7707d0ff05cfc3, 0xe6080e3b132328ff, 0x6d73ff05e1000805, 0x083bc6d22eff380b, 0x3ad4e254ff05ef00, 0x18c504bbb41688ff, 0x05b204060a0d0e06, 0xc6ffbc06d4adff06, 0xff0613170e3babd4, 0x16ef20ffbd09cb74, 0x140b3cefbb6affbc, 0x00120645010c0653, 0xd8ff063202080637, 0xbc6af200ffbd08a2, 0x0cb3c0ff0640000c, 0x060dbce69240ffbd, 0xff3c83e5c0ff064e, 0x0677000cbc110900, 0x0664cb040669cc04, 0x19fcff3b1891e9ff, 0x38ff067201083c8a, 0xba44c9c0ffbc5264, 0x0684190e0689230e, 0x9e76ffbaadf41dff, 0xa6ff0692cc043b8d, 0x3a951bb6ffbc5756, 0x072b020d07b79305, 0x06c7bc0406e70208, 0x06b4910506b9190e, 0x71acff39e3792bff, 0x8dff06c21a0eba3f, 0xba6b6a3aff3d2942, 0x06d42e0e06d9bd04, 0x7860ff3ca5a922ff, 0xf7ff06e22b0ebb89, 0xbb271503ff3b0962, 0x06fd170e070bc904, 0xb818f0ff06f8bf04, 0x9105bbec5649ff3a, 0xff3b8cab5bff0706, 0x071d030b3ca9eee0, 0x962e60ff07188f05, 0x050bbc104340ffbc, 0xffbb6edd00ff0726, 0x0773050b3b94872b, 0x0745c00407530208, 0x61cbd7ff07400112, 0x030e39f62a2cffb7, 0xff3c4275c0ff074e, 0x0765ae04b9a5d012, 0x39f450ff07609c04, 0x010cbc81e54bff39, 0xff3a135a13ff076e, 0x07970b0b3c919daa, 0x078400090789190e, 0xfe93ff39cd1cefff, 0x2cff07920012b8c1, 0xb97392b4ffba083e, 0x07a4c30407a9c904, 0x3448ffb8990b11ff, 0x76ff07b2cb04ba54, 0x3a2a59d4ffbaade9, 0x080300080847020d, 0x07d5c80407e3050b, 0xa50d08ff07d0bd04, 0xc9043bc3a5eeffba, 0xffbc8dd8feff07de, 0x07f501113b08a7ff, 0x645a7bff07f00a0b, 0x000cbb91762cff3c, 0xffbb66b720ff07fe, 0x0827170e3aa6bdc0, 0x081494050819040b, 0x666aff3c6188e6ff, 0xc9ff08220d0eb880, 0xbc420e54ff3a10cb, 0x0834bf040839050b, 0x9aa7ffbc836176ff, 0xfbff0842000fbb21, 0xbb96af35ff3bea08, 0x086f1f0e088f100b, 0x085c011108616d04, 0x4c0dff3b178277ff, 0x24ff086a0d0e3c8f, 0x3a6687c0ffb9c6b6, 0x087c220e0881010c, 0x21bbffbbd1f7c2ff, 0x1fff088a00093ac8, 0xbd0ff52bffbb40fc, 0x08a5170e08b3190e, 0x9e92faff08a0a504, 0x001239568758ffbb, 0xff3c31f8c4ff08ae, 0x08c59605bc267961, 0x176ac1ff08c0cc04, 0x1d0ebb595b36ff3c, 0xff3c8e89eeff08ce, 0x0d5395053b16d23b, 0x09fb000d0b17c604, 0x092b9904096fa904, 0x08fd7504090b7205, 0x7ee5a9ff08f85904, 0x060e3bcf69e8ffba, 0xffbc9007fbff0906, 0x091d6204ba5d5aee, 0x0e83c1ff09180a0e, 0x0d0ebde05128ffbc, 0xff3c373ef9ff0926, 0x094f2005bbe1687a, 0x093c120509410008, 0xcf57ffbc781b35ff, 0x98ff094a300ebd4b, 0x3bf99584ffbc117c, 0x095c330e0961350e, 0x4acaff3b4334f9ff, 0xa2ff096aa004bcb2, 0xbcb71bb5ff3d1033, 0x0997030609b70207, 0x09843e050989340e, 0x4644ff3d4e2603ff, 0x8dff0992b5043c06, 0xbc1d0919ffbccf11, 0x09a4230509a90108, 0x6742ff3ab8e49cff, 0x7bff09b20105bc24, 0x3b035d0cff3d4b39, 0x09cd170509db7705, 0x6e048eff09c83b01, 0x000cbc8c034fff3d, 0xffbbdcdba4ff09d6, 0x09ed8b053bfc7dcf, 0x8a41b1ff09e80002, 0xc004bc9add87ffbd, 0xffbba5e3d9ff09f6, 0x0a8b2a0e3cbcf349, 0x0a276f050a477305, 0x0a149e040a19280e, 0x4868ff37d87fb1ff, 0x71ff0a22ba043993, 0xbc634020ff3958e1, 0x0a340b0e0a399904, 0xc4b9ffbb7da973ff, 0xecff0a42060e3b68, 0x3b3f1707ffbc2181, 0x0a5da4040a6ba504, 0xea4d4cff0a58000f, 0x070eba5794d2ff3a, 0xff3c8925ffff0a66, 0x0a7da704bc14a4f9, 0x17374aff0a78a604, 0x010cbcb0871effbc, 0xff3a21e3e4ff0a86, 0x0ad30207baa2f03b, 0x0aa5c0040ab32f0e, 0x3f437aff0aa0060d, 0x2c0ebb4d4e3dff39, 0xff3a8880ddff0aae, 0x0ac5010cbca8ca16, 0xdc3b8cff0ac00b0b, 0x020dba028f6dff38, 0xff3bf257f5ff0ace, 0x0af72c0ebb52a7ee, 0x0ae441050ae90002, 0xf425ff3b92c61bff, 0x6dff0af2140b3bd8, 0x3cd34337ffbae0c6, 0x0b04c0040b092e0e, 0x5872ffbb57059bff, 0x32ff0b120a06bd35, 0xbc4ab122ff3b2f8b, 0x0bab1f0e0c370108, 0x0b4702070b670008, 0x0b34040d0b39cb04, 0xdd47ff398380e9ff, 0xcdff0b42100bbace, 0x3bbc5db5ffbb0ae6, 0x0b5400110b598805, 0xd971ff3c3d87f5ff, 0x5eff0b62ca04bb4b, 0x3c1776caffba9df1, 0x0b7d02070b8b0002, 0x7def73ff0b787e05, 0x14053a8850c4ff3c, 0xffbd42cdafff0b86, 0x0b9d000cbaaa6b69, 0x616371ff0b980011, 0x1c0e3b4fbbc6ffbb, 0xffbaf6fe45ff0ba6, 0x0bf37805bc94a62a, 0x0bc571050bd37405, 0x8d05b7ff0bc06b05, 0xc704babd3facff39, 0xffbcee4debff0bce, 0x0be575053c984f38, 0xaa86cbff0be00e0b, 0xcb04bd2737b9ffbb, 0xff3881d86bff0bee, 0x0c1779053cf1f193, 0x0c04280e0c090111, 0x1dbdff3be15252ff, 0xd2ff0c12030bbc91, 0x3cd78dc9ff3b9017, 0x0c247a050c290107, 0x78fcff3cc27c97ff, 0x79ff0c3281053a37, 0xba41fb84ff3a87a0, 0x0c83060d0cc77505, 0x0c55020d0c630705, 0x948b50ff0c500d0e, 0x02083cb91e70ff3c, 0xffbcb73ae4ff0c5e, 0x0c7563053baa55f4, 0x271c92ff0c706205, 0x260e3c9cf9aeffba, 0xffbc169effff0c7e, 0x0ca72b0e3aaa434e, 0x0c94010c0c994505, 0x93b2ffbd3d8532ff, 0xd2ff0ca20011bbb7, 0x3bd6813effbad3bb, 0x0cb4010c0cb9c704, 0x2c73ff3cc0b83bff, 0xa3ff0cc2300ebc04, 0xbb919347ff3c9fef, 0x0cef110b0d0f310e, 0x0cdc030b0ce1010c, 0x676fffba5c3755ff, 0x05ff0cea0d0e3932, 0xbbba465dff3c3406, 0x0cfc300e0d018405, 0x9571ff3a9f71a7ff, 0xa6ff0d0a85053c98, 0xbaad589dffbc52e4, 0x0d2585050d330207, 0x159725ff0d20020d, 0x030bbb89129eff3c, 0xff3b40deebff0d2e, 0x0d45320e3c6d2fea, 0xb74887ff0d40cc04, 0x060d3cc7fb1aff3b, 0xffbbeae81eff0d4e, 0x0f27220e3ca654c4, 0x0da378040e26020d, 0x0d6c030b0d716904, 0xd000ffbb3f94e0ff, 0x070b0d9501073b47, 0xd5ff0d8296050d87, 0x3bcf6f78ff3a74c7, 0x27e620ff0d900a0b, 0x00023bb259b8ff3c, 0xff3bfb4970ff0d9e, 0x0deb90043bdecd40, 0x0dbd030b0dcb0111, 0x7aebdcff0db8020e, 0x020e3bf7d7d6ff3b, 0xff3c1653fdff0dc6, 0x0ddd8804bc13b8fb, 0xbf4d00ff0dd87f04, 0x020ebb7e8cd2ff39, 0xffbb99e440ff0de6, 0x0e06cb04bc783abb, 0x0dfc070e0e01000f, 0x2602ffb9b451c1ff, 0x0fbc3b2a2eff3ae4, 0xff0e13030b0e1800, 0x2406ebffbb09de1a, 0x16cfff0e21010cbc, 0x0cbb131a20ff3ad5, 0x040e69000f0ead01, 0x040e44c7040e52cb, 0xbacb8a50ff0e3fbf, 0x4d00023b8d3700ff, 0xf7ffbc518c49ff0e, 0x070e649605bb8df1, 0x3bdac16cff0e5f02, 0x6200ff3c6616c0ff, 0x0a0b0e8d0b0bbac7, 0xddff0e7a000e0e7f, 0xb969470bffbb80da, 0x2307ccff0e88080e, 0x030eb9b60a04ff3a, 0x13ff0e9a00080e9f, 0x3aa930b2ffbb029a, 0x473b9cff0ea8050e, 0x000e3aa58769ff3c, 0xb9040ed5050b0ee3, 0xa8ff0ec2030b0ec7, 0xbc297724ffbc441e, 0x00138eff0ed09605, 0x0011bba96080ffbc, 0xffbac68760ff0ede, 0x0f07060dbacea0c0, 0x0ef400020ef90111, 0xc5c0ff3aabd7ebff, 0xe6ff0f02030ebbe7, 0x3bd521ccffbb98f9, 0x0f14c6040f19060e, 0xb02cff3a8e9484ff, 0x95ff0f22080ebbdb, 0xb83ae174ff3c4c4a, 0x0f4fc3040f930002, 0x0f45030b0f4ac004, 0xc9d500ff0f409605, 0x00ffbace7000ffba, 0x3beba700ffbaa9f2, 0xf1bfc0ff0f58c604, 0x6e96050f7c000cbb, 0x77c0ff0f6900110f, 0x0dbaaa7244ff3b5e, 0xb93898cdff0f7706, 0x850011bc1cb6a8ff, 0x0111bbd813a0ff0f, 0xffbb382de0ff0f8e, 0x10110008ba0ee000, 0x0fbf030b0fdf9605, 0x0fac020d0fb1ca04, 0x2b70ffbbebf81cff, 0x80ff0fba000f3b36, 0xbb3c6afbff3c29df, 0x0fcc0e0b0fd10107, 0x48d8ffbb0548c3ff, 0xf0ff0fda050b3c85, 0x3ca57890ffbb7652, 0x0ff5240e1003010b, 0xcf0000ff0ff0000d, 0x000d3a044400ffb8, 0xff3a9e9fc0ff0ffe, 0x100c030b39e15400, 0xffe0ff3a7fb4c0ff, 0xe0ff101a030b3c27, 0xff1023050b3ad26d, 0x1c95b0ff3ace41a0, 0x000008000000133c, 0x000001000003e800, 0x0000000000105e00, 0x848c0508ca000700, 0x2cc1040248c70404, 0x5c021100a06a0501, 0x2e020d003c680500, 0xe223ff0029010800, 0x053ae68ce7ffba2e, 0x37f16ba5ff003761, 0x4e0108ba3165a1ff, 0xedecff0049220e00, 0x0b3b22518affbaa1, 0xbcb9e1f4ff005701, 0x80170e3ba9ececff, 0x6d35040072020800, 0x5bffbabde867ff00, 0xff007b12053b6674, 0x222335ffbca82af0, 0x8d1a0100925305bc, 0x72ff3bb9e1d8ff00, 0xff009b030bbc29b8, 0xc6f7baff3d23070a, 0xc8790500e8c004ba, 0xb5000c00ba010b00, 0xefff3b2c6128ff00, 0xff00c30a0bbb839e, 0x28ec2fffba42586e, 0xd5bf0400da330e3a, 0x11ff38148551ff00, 0xff00e3020b383ed3, 0x4f4553ff3d22104c, 0xfe2b0e010c0012bb, 0xacdbff00f9250e00, 0x02bcad1639ffba87, 0x3d584aaaff010700, 0x1e060d3c0b0fb1ff, 0x7bfdff0119170e01, 0x0eba426d5fffbc4d, 0x3d1601e2ff012722, 0xbc7905bbea3c2aff, 0x580b0b0178770501, 0x456005014a001101, 0x1cff3cb9f38fff01, 0xff01537005bb9cb5, 0x72cc49ff39870f0f, 0x650008016a060dba, 0xd8ff3b62ab5dff01, 0xff01730012b897aa, 0xc120f3ff3b014691, 0x8e0002019c340ebc, 0xf40aff0189120b01, 0x0ebb9dcdf2ff3b47, 0x3b02e846ff019728, 0xae020dbc6a127dff, 0x2720ff01a9030b01, 0x0bbcce65a0ff3cc0, 0xbca6d3b3ff01b703, 0x0400023d512100ff, 0xd6100b01e4c30402, 0x242dff01d10b0b01, 0x043c81a62cffbaf2, 0xbc06ae3aff01dfc2, 0xf6260e3b997fbfff, 0xb55eff01f1050b01, 0x05396443ddff3c70, 0x3c6c21b4ff01ff7a, 0x28020dbae20ef5ff, 0x15c204021ac50402, 0xf6ffbb933bc8ff02, 0xff022300063d8862, 0x35c1eeffbca55473, 0x350606023a000fbb, 0xb7ffbc4242d0ff02, 0xff02431d0e3be063, 0x851206ffbb05c5e0, 0xdc8b050368ca043b, 0x780e0e0298190e02, 0x651806026a010c02, 0x1affbb5252f1ff02, 0xff027300023b00bb, 0x5263b7ff3cc2719f, 0x851706028a18063b, 0x60ffba6a247cff02, 0xff0293c8043c51c9, 0xbb258cffbcabe490, 0xae010c02bc0b0bbb, 0xc5f4ff02a9050b02, 0x05bb4dc470ff3b27, 0x3a201462ff02b78a, 0xce0e0b3d0f04c5ff, 0x3230ff02c9010c02, 0x053d55a667ff3b47, 0xbb07d32cff02d77f, 0x24c9043b586706ff, 0xf6000203040b0b03, 0xf9a5ff02f1000c02, 0x09bc966d1effbb90, 0x3d1cade9ff02ff00, 0x160002bb4bc663ff, 0xf047ff0311010803, 0x0dbc0a0114ff3c03, 0xbca7ba5bff031f06, 0x480b0b3a1ac795ff, 0x350012033a000c03, 0x90ffb97c2600ff03, 0xff03430011bca7e6, 0xafdb2eff3c69f618, 0x550011035a01083d, 0x33ffbafae99aff03, 0xff0363190e3c4430, 0xb7afd8ffbc24fd28, 0xb48b0503f8cd04bc, 0x86000c0394020d03, 0xa826ff0381cb0403, 0x063c134e41ffbccb, 0x3c7df483ff038f14, 0xa6040dbaeff5ceff, 0x0edaff03a10d0e03, 0x0cbc843cc4ff3c09, 0x3af1c780ff03af00, 0xd82b0ebac686e1ff, 0xc5000903ca001103, 0x8cffbc299338ff03, 0xff03d3230e3c295a, 0x81dc62ff3c4be462, 0xe5310e03ea060dbb, 0x7bffbb1f6335ff03, 0xff03f30b0b3c6db2, 0x38597dff3c500f12, 0x20010c0440340e3d, 0x0d320e0412020804, 0xceffbc6451faff04, 0xff041b7c053b6241, 0x4ef5e1ffbc2b2c5e, 0x2d0108043202083c, 0x42ff3b1a864bff04, 0xff043b230e3c8dcc, 0x4968bbffbd138f20, 0x56000f0464030b3b, 0x5da0ff0451020d04, 0x0ebaa2d340ffbb98, 0x3c912d17ff045f35, 0x7600023c6a988dff, 0x2fcbff04717a0504, 0x0cbb32783fff3be8, 0x3c1f6ff8ff047f00, 0x978d05bc96354cff, 0x1c0e0e05a8110b06, 0xb8050e04d80e0b05, 0xa5020804aa0d0b04, 0x5dffb9d867c6ff04, 0xff04b3000cbc073e, 0x94c251ffb9c221c7, 0xc5a90404ca070e3c, 0x22ff3bab6d06ff04, 0xff04d3010cbb9dc6, 0xe064a1ffb805da05, 0xee070e04fca2043a, 0x2eeaff04e9030e04, 0x0dbca3d1c4ff3b57, 0x3bce3e70ff04f706, 0x0ea3043d613781ff, 0xf406ff0509000805, 0x04bcb3d2c8ffbd51, 0xbc4b4434ff0517b0, 0x64b5043c20f438ff, 0x361f0e0544b30405, 0x24fbff05311d0e05, 0x04bc937bc8ffb9e0, 0xbb06b56aff053fb2, 0x56030b3c20cd4fff, 0x6dc5ff0551000f05, 0x08bbcc9229ff3d22, 0xbc8757adff055f01, 0x88cc043d2ea458ff, 0x750002057a2d0e05, 0xd4ff3a38aed0ff05, 0xff05830b0bba5f01, 0xc13f77ff3ad0afc0, 0x950012059a0002bc, 0x00ff3d3c23e4ff05, 0xff05a301113cfb2f, 0xa30570ff3bcab54e, 0xf4010c061dc804bc, 0xc6150e05d4000205, 0xab11ff05c1b20405, 0x0ebbf646eeff3b2d, 0x3c5252ccff05cf17, 0xe6080e392a450dff, 0x0726ff05e19d0405, 0x0e3b44b710ffbb9c, 0xbbc9d933ff05ef0d, 0x18c50439d15b8cff, 0x05b204060a0d0e06, 0xd4ffbbf2b202ff06, 0xff0613170e3b9aa5, 0x07d740ffbcf807d7, 0x070e3cd7c24affbc, 0x010c063300020653, 0xffbbe94620ff062e, 0x06450012bd78fc30, 0xad8100ff0640010c, 0x010c3b5f7440ffbb, 0xff3b9376a0ff064e, 0x06770d0eb92bfc00, 0x0664010806690002, 0xa350ff3defa380ff, 0xc5ff0672010c3c45, 0xbc3dce16ff3b74fe, 0x068400080689000c, 0xf715ff3ba480bfff, 0x3eff0692280e3a2a, 0xbc0bee41ffba9e27, 0x0722020d07ae9305, 0x06c7be0406e70208, 0x06b48f0506b91d0e, 0x55ebffbaf2c6e1ff, 0xa5ff06c2230e39c8, 0xbba7ce7dff3b7cf3, 0x06d4ca0406d92b0e, 0x48b7ff3b94edeaff, 0xaeff06e22d0ebd03, 0x3569ec4fffbcba6b, 0x06f4020b0702070e, 0xfd6d04bbd07980ff, 0x20ffbba98604ff06, 0x0e07148e053c511a, 0xbbb406abff070f0d, 0x1d030bbc52a4c0ff, 0xa5ff3ae37b5aff07, 0x08076a050bbb11d1, 0x12073cc004074a02, 0xb74b3613ff073701, 0x45310e39dd8b07ff, 0xfaffba3299d9ff07, 0x04075cb2043bc357, 0x39275c30ff07579c, 0x659105bc4aaa86ff, 0x92ff3b5a9380ff07, 0x0c078e0c0bbbc8ca, 0xff077b1d0e078001, 0x64b3c8ffb98b1ed9, 0x4088ff0789bf043a, 0x0e3a38c7fcff37cf, 0xff079b0e0e07a022, 0x3131d3ffb939ad41, 0xc4d9ff07a9000c3a, 0x0dbc0a5d21ff3b75, 0x0e07fa0008083e02, 0x0407cc070e07da2f, 0xba968c1eff07c7c4, 0xd500093c8e2d3eff, 0xbfff3ac8591eff07, 0x0907ec310ebb400b, 0xbc72fa5cff07e700, 0xf59405bd93120cff, 0x50ff3cb54240ff07, 0x0d081e070bbbe2dc, 0xff080b9605081000, 0xab2e40ffbc6c07ae, 0x3899ff0819ca043b, 0x0bbbf657afff3b4c, 0xff082b9505083009, 0x5c6055ffbca1cb05, 0xcb92ff08391d0e3b, 0x0b3c021f64ffbacf, 0x0f0866190e088610, 0xff0853bd04085800, 0xb2503effba49e354, 0xa20cff086101093a, 0x11389c64f3ff3854, 0xff08730b0b087800, 0x0942adff3b590e9e, 0x7364ff0881220ebd, 0x0c3a9672abffbbb1, 0x04089cc90408aa01, 0xba6c3153ff0897bf, 0xa501123ab6debbff, 0x49ffba46883bff08, 0x0e08bc060dbc581a, 0x3bf9fcd0ff08b71d, 0xc5c2043d1cfe2bff, 0x49ff3c4b5282ff08, 0x040d419505bba9d1, 0x0409f2c1040b0ec6, 0x0509229d040966b4, 0x0108f41706090277, 0x39a21422ff08ef41, 0xfd050eb9b9dd41ff, 0x51ffb946727bff08, 0x1209148205bc15c7, 0xbb11a875ff090f01, 0x1d9005ba142dafff, 0x83ff3aa9d57dff09, 0x0609463403b96968, 0xff09339f04093802, 0x913223ffbc14cbcb, 0x073bff0941010cba, 0x0d3c8803d8ff3a7b, 0xff09530112095806, 0x5f126dffbb4159f6, 0x9cefff096145053a, 0x113a530659ff3b34, 0x05098e010809ae00, 0xff097bbc0409805a, 0xb5c427ffbb2126ce, 0x7144ff09895e053c, 0x07ba837b68ff3bc8, 0xff099b340109a002, 0x9f0f2eff3b67d1c0, 0xc1f8ff09a9010cba, 0x03bc5e0f1effbb63, 0x0709c4320309d233, 0xb9f50322ff09bf02, 0xcdb804bba2220eff, 0x6bff3d194351ff09, 0x0d09e45c05bab9ed, 0x38d1b410ff09df06, 0xed5d05bbb484b0ff, 0x19ff3c4fd34aff09, 0x0e0a82000239ce2b, 0x080a1e0d0e0a3e19, 0xff0a0b0b0b0a1000, 0x0b726cff39d4b38b, 0xeed6ff0a19c2043c, 0x0d39a3ef59ffbc6e, 0xff0a2b110e0a3007, 0xa8f5aaffbc1ca390, 0xdef4ff0a390e0e3a, 0x0bbb153cfdff3d28, 0x0d0a5401070a6210, 0x3c0564f2ff0a4f02, 0x5d0b0bbb236481ff, 0x22ff3b0c9cccff0a, 0x0e0a74320ebc327e, 0xbba3555aff0a6f2a, 0x7d010c3be20359ff, 0xd9ffbd300d7eff0a, 0x0b0aca6e05b91b1c, 0x0d0a9c02080aaa05, 0xbb83d8ddff0a9702, 0xa5000f3b80efc5ff, 0x22ffbceee30bff0a, 0x040abc010c3a2064, 0xbb89cd3cff0ab7c5, 0xc5220e3b1179fcff, 0x45ff3b1eb03dff0a, 0x0d0aee82053c938d, 0xff0adb2a0e0ae006, 0xe5aaeaffbbed4d30, 0xa1b7ff0ae9220e3b, 0x053c6e567bffbb17, 0xff0afb1f0e0b0083, 0x5c3edeff3c71a77c, 0x3265ff0b09140bbc, 0x083b4fdf61ffb9fa, 0x0b0ba2220e0c2e01, 0x020b3e050b0b5e07, 0xff0b2b25050b3000, 0x49e5bdffbc8b3888, 0x7bffff0b390a0eba, 0x043be9511dffba3a, 0xff0b4b02070b50c7, 0x4ab416ff3d9defaf, 0xa717ff0b59ca04bb, 0x083cad3c09ffbc69, 0x0b0b74130b0b8200, 0xbadd2845ff0b6f10, 0x7d8905bcb4a448ff, 0x8dff3a988d08ff0b, 0x0e0b941c0e3b8db3, 0xbb35667aff0b8f0e, 0x9d0c053b11169cff, 0x23ff3d9b3ed0ff0b, 0x050beaca04bbe4d3, 0x040bbc73050bca74, 0x3b0f0d0dff0bb7c9, 0xc5040bbbcdeb35ff, 0xa2ffbcaf147bff0b, 0x040bdc000f3d227f, 0x3bb6baafff0bd7c9, 0xe50112bc73b89dff, 0xb0ffba7bed48ff0b, 0x0c0c0e230ebc6fb8, 0xff0bfb060d0c0000, 0xb509efff3b57d840, 0x572eff0c09cc04bb, 0x0e3b317293ff3c82, 0xff0c1bcb040c2025, 0x0f06a9ffbd4f9200, 0xe363ff0c29cb043c, 0x05bae35daaff3ba3, 0x050c71060d0cb575, 0xff0c4302060c5107, 0x0c4c07063d314e58, 0x762dffbcfc1225ff, 0x60050c636505ba35, 0xff3a797ecfff0c5e, 0x0c6c190ebbb2a474, 0x9a73ffbc71d7a2ff, 0x00110c95ca043712, 0xdcff0c82070d0c87, 0x3c0ef52effbb503b, 0x3a1ba9ff0c90190e, 0x43053c18d0a5ffbc, 0xc2ff0ca2010c0ca7, 0xbc6f68feffbe1663, 0x8c7c4aff0cb00b0b, 0x310e3bbd37feffbb, 0x000f0cdd0b0b0cfd, 0x3aff0cca0a0b0ccf, 0x3c6078e5ffbc723e, 0x4e9fdeff0cd8260e, 0x2d0e3b83a632ffba, 0xaeff0ceac9040cef, 0x3b135f55ffbbc27e, 0xc3768fff0cf82f0e, 0x01073c0c346dffbd, 0x130b0d137f050d21, 0xffbb28c3e7ff0d0e, 0x0d1c8305bce727ce, 0xfddcff3c5c3008ff, 0x79050d33320eb993, 0xff3d3fd45cff0d2e, 0x0d3c010c3bc2d5c0, 0x106eff3b595090ff, 0x01120f6f1d0ebd0d, 0x010e0dd9020e0e65, 0x00110d75000e0d95, 0xe0ff0d629c040d67, 0xba9850e8ff3b9731, 0x9646ccff0d700a0b, 0x090b3a1f7364ffbb, 0xecff0d82010c0d87, 0xbbe3f075ff39b0d6, 0xb9ba2eff0d900008, 0x000b3b8e4276ff3a, 0x02070dab96040db9, 0xffba3d5304ff0da6, 0x0db402073b0ed4e5, 0xa676ff3ba6dfd5ff, 0xb9040dcb060d3bd9, 0xff3a1fc715ff0dc6, 0x0dd40012bb74c7da, 0x0822ffbbcb2a6bff, 0x060e0e210002bca5, 0x0b0b0df301070e01, 0xff3ba8eeb5ff0dee, 0x0dfc0b0b3af86683, 0x55f8ff3a59a58bff, 0x030b0e130a0e3b60, 0xff3c20e81bff0e0e, 0x0e1c0b0ebb814d9c, 0x635bff3c225ac8ff, 0x0b0b0e45070d39fd, 0xf3ff0e32060d0e37, 0x38994131ffba93d2, 0x560aa4ff0e40060d, 0x0107ba6000b6ff3b, 0x9cff0e52030b0e57, 0x3b7d71d0ff3c3725, 0xa39ab8ff0e60010b, 0x020b3a3b6400ff3b, 0x110e0ea896050eec, 0x00020e830d0e0e91, 0xffbc6b5a15ff0e7e, 0x0e8c000dbaf0d09a, 0x3f20ffbc4b34c0ff, 0x040d0ea300083d12, 0xffbc669aa3ff0e9e, 0x3a5500ffba819f55, 0xbec8040ecc000f3b, 0x8e32ff0eb9020d0e, 0x0bbb8711b5ff3b41, 0x3c8f6fc0ff0ec701, 0xde030e3bbfe200ff, 0xfeceff0ed901070e, 0x0cba33bec0ff3aa0, 0xbba33e2dff0ee700, 0x34030e3b49b740ff, 0x06060d0f14010c0f, 0xbd3cff0f01a4040f, 0x043a9033b0ff3b82, 0x3cb56560ff0f0fb0, 0x26030b3c0b0640ff, 0x0d10ff0f2101070f, 0x0bbc2ad470ffbc90, 0xbb2a68a0ff0f2f09, 0x4f90043c1f5048ff, 0x4596050f4a030b0f, 0x10ffbc0790f0ff0f, 0xbca8cf90ffbc4508, 0x0f5c010c0f610b0e, 0xc800ffbb0b41d8ff, 0xaaff0f6a01073c4f, 0xba85fcdeff3ab676, 0x0ffa0008103e0e0b, 0x0f9f060d0fb6030b, 0x0f8c000f0f91ca04, 0x0debffbac4480aff, 0x33ff0f9a000f3af0, 0x3a7a2a23ff3bb101, 0x0fac01070fb1000c, 0x6be0ffbaa2f280ff, 0x05bc3ca790ffbb84, 0x0c0fcc1f0e0fda96, 0xbc51aa30ff0fc700, 0xd5230e3bc92333ff, 0x46ff3b1d4545ff0f, 0x0d0fec0002bb2a63, 0x395bf600ff0fe706, 0xf5060dbc0d0ac8ff, 0x20ff3c173310ff0f, 0x0d100c00023c6080, 0x3b845fd0ff100706, 0x30050bbc28d658ff, 0x1dcd041022060d10, 0x30ff3b294ec0ff10, 0xff102b030b3abb82, 0x0e343cffbb9d92c0, 0x1ff8ff10391f0ebc, 0x0e3c0ced20ff3c9a, 0x3ce4f6d0ff10471f, 0x1054001110590002, 0x74c0ffbbfd9d20ff, 0x133c6fe980ffbb36, 0xe800000008000000, 0xfb00000001000003, 0x070000000000000f, 0x0404608c0508af00, 0x050123c104023fc7, 0x05005c021100a06a, 0x04002e020d003c68, 0x379954b9ff0029be, 0x370c06bac69a10ff, 0x2dff38025a9dff00, 0x04004e0e0bba675b, 0x3a8155d9ff004998, 0x57060d3b828b19ff, 0x97ff3b9037edff00, 0x0400806c04bc1034, 0xff006d010800725e, 0xa58e3fff3a21f08c, 0xe3ddff007b0008bb, 0x083d2faf00ffbc83, 0xff008d6d04009200, 0x027940ff3ca8c9f9, 0x0f82ff009b1205bd, 0x04bb953acaff3c9b, 0x0e00c8790500e8c0, 0xff00b5000d00ba10, 0x9d465fff3c60c621, 0xcc48ff00c3000d38, 0x0eb991c146ff3a17, 0xff00d5bf0400da33, 0x2bbe10ff3805ab14, 0x112fff00e3bf0438, 0x0c3d173564ffbb45, 0xff00f56b05010300, 0x00fe050bbd89d4ff, 0xbf6bff3c15a452ff, 0x220e01150b0bbb13, 0xffbb1b29bbff0110, 0x011e140b3ac618b8, 0x4e46ffbc7682d9ff, 0x760501b379053b4b, 0x000d014f7305016f, 0x53ff013c0a0e0141, 0x3c9957c0ffbc0787, 0xe33bb3ff014a060d, 0x0108bb04e7dfff37, 0x22ff015c0f0b0161, 0xbc5d62ccff3b13d5, 0xf28526ff016ac604, 0x230e3d79c91dff3b, 0x0a060185c2040193, 0xffbd11f221ff0180, 0x018e0d0e3bbf4f9e, 0x87e7ffbd657ef6ff, 0x000901a5250ebb07, 0xff3d7b20e5ff01a0, 0x01ae060dbc087540, 0x7830ffbb116c29ff, 0xc30401fb00023bfa, 0x010801cd100b01db, 0xffbb28afdbff01c8, 0x01d6070e3bf7c3d4, 0x336effbce5ddbdff, 0x810501ed2f0e39f3, 0xff3a892f6eff01e8, 0x01f68a05b9093710, 0x7229ff39345424ff, 0xc404021f000c3d45, 0xb6ff020c7b050211, 0xba83187bff3cdabd, 0x432657ff021a0008, 0xc304ba5de133ffbc, 0x6cff022c040b0231, 0x3bdc4a28ffbc88fd, 0x000790ff023a300e, 0x190ebc5c1fabff3b, 0xc80402ca060d0344, 0x000f026f0108028f, 0x23ff025c19060261, 0xbaf2b38dffbcbbc2, 0x5b972eff026a0209, 0x0112baad2c1fff3b, 0x8aff027c010c0281, 0x3d329200ff3cc1a1, 0x4a00a4ff028a0111, 0x0d0e3c15518dffbb, 0x620502a5880502aa, 0xffba4c4f9eff02a0, 0xf0e4d0ff3bddcf07, 0xb7000c02bc170ebc, 0x12ffba972bd0ff02, 0xff02c501083bcf0b, 0xe347baff3b8ad3f7, 0xf2cb040312cc04bc, 0xdf000202e40d0e02, 0x22ff3cb788e1ff02, 0xff02ed180eba1675, 0x063806ffbb557993, 0xff8a05030401083b, 0xe2ff3bd79cafff02, 0xff030d0b0b3cc155, 0x46b682ffbd4956d4, 0x1f00080324000cbc, 0x75ff3cfe6af8ff03, 0x0503360009bcb232, 0x3c90f7e1ff03318b, 0x3f86053bc1019fff, 0xabffbcd72c6eff03, 0x0503d47805baeb39, 0x0503707505039077, 0xff035d6205036265, 0x910cf2ff39e28899, 0xb1ecff036b6a053c, 0x0b3a6f3e8affbc4a, 0xff037d010c03820b, 0x6906e5ff3be19ce4, 0x7fd4ff038bca04bd, 0x0b3bac0392ff3ce6, 0x0c03a6000203b40d, 0x3c21b059ff03a101, 0xaf010c3ce95c8bff, 0x6aff3b4cc0e0ff03, 0x1203c6230ebda67d, 0x3dae8d58ff03c100, 0xcf0208bdd59d02ff, 0xadffbd310652ff03, 0x04041c8905bb9b1e, 0x0e03ee010c03fccb, 0x3a92cd78ff03e92f, 0xf7c904ba822a25ff, 0xb1ffbbf2660bff03, 0x0b040e86053bb6ee, 0x3bb58f20ff04090b, 0x17cd04bafc4d46ff, 0x05ffbc64040bff04, 0x0b044000113b28b5, 0xff042d010c043203, 0x9eaa7bffbb935398, 0xa9a8ff043b2a0ebc, 0x0e3b72eff9ffbb18, 0xff044dc904045225, 0xbf9dc9ffbacc9fdf, 0x3df8ff045b310e3c, 0x053b9331e2ffbab3, 0x0e0584110b06738d, 0x0e04b40e0b04f80e, 0x0904860008049404, 0x3ab82bd4ff048100, 0x8f010cba594836ff, 0x6effb8a81fa8ff04, 0x0404a60002bc5390, 0x3ad509d2ff04a1b2, 0xaf0b0bbb8bf434ff, 0xceff3a42c486ff04, 0x0d04d80002bc8477, 0xff04c5000c04ca06, 0x5620b6ff3b80b286, 0xc614ff04d3a7043c, 0x123c06e8b0ffbc47, 0xff04e5a20404ea00, 0xc17c44ffbc946466, 0xb68cff04f3060dbc, 0x043c821cd8ffbb2e, 0x04052000080540ba, 0xff050d1d0e051284, 0x1685ccffbc962b06, 0x5b5dff051b140ebd, 0x0f3ab76abdffbbf9, 0xff052d020d053200, 0x7777b6ffbad0919e, 0x8915ff053bb904bd, 0x04bc384845ff3ad0, 0x0b055602080564bc, 0xbc626dbeff055103, 0x5f000cba7b6f2eff, 0x73ff38265666ff05, 0x0e0576170e3d934d, 0xbc3ae3e6ff057114, 0x7fbd043c246d1fff, 0x8eff3c3442e7ff05, 0x0c05f9c804b9db4a, 0x0405b0000205d001, 0xff059db20405a2c1, 0x661f71ff3b1a9a31, 0x38adff05abc304bb, 0x0e3b093bfeff3c66, 0xff05bd0e0e05c214, 0x8153fcff3990d92d, 0x9f64ff05cb060d3c, 0x0e3bf827afffbbc7, 0x0405e60d0e05f419, 0xbbda6d00ff05e1b2, 0xefc4043b8b2ed3ff, 0x80ffbd194a3dff05, 0x3cc22edaffbbeb4d, 0x060f0108062f140b, 0x6f6480ff060a060d, 0x0e0ebc008e00ff3c, 0xe0ff061c02080621, 0xbc5484f0ffbcf4f4, 0xce8690ff062a0208, 0x170ebcfdcc58ffbc, 0x0011064500090653, 0xffb93e6d46ff0640, 0x064e0e0e3be9fc1e, 0xb9daffba874474ff, 0x220e0665000cbd00, 0xff3bc61b2aff0660, 0x066e190e39638c29, 0x9054ffbc216949ff, 0x020d07939305ba97, 0xbc0406c302080707, 0x91050695190e06a3, 0xff39f5e85eff0690, 0x069ebb04ba365199, 0x0bfcff3a557b6fff, 0x040b06b5070bbc33, 0xffba86ce78ff06b0, 0x06be090b3c493300, 0x6187ffbd13a585ff, 0x010b06e7020bba74, 0xabff06d4c90406d9, 0xbbe42dc0ff3bc94a, 0x8ae09aff06e20d0e, 0xbc04bc3d9440ffbb, 0x38ff06f46d0406f9, 0x3c10f0d5ffbb9892, 0x85ca00ff07028f05, 0x030bbb156366ff3b, 0x2a0e072f040d074f, 0x9fff071ca0040721, 0xbc9dc947ff3973a6, 0x86f723ff072a2f0e, 0xa004bcb5921cff3d, 0x8fff073c9e040741, 0x3c2976f9ffba1f99, 0x2f635aff074a070e, 0x0a0b398d7cc3ffbb, 0x00080765040b0773, 0xffbc65a261ff0760, 0x076e010c3c154bd3, 0x741cffb9d5d349ff, 0xcd040785230ebab2, 0xff39c271d6ff0780, 0x078e2a0ebc0c1fb2, 0xbad5ffbb2adbbdff, 0x00080823020d39cf, 0x030b07bf050b07df, 0x0fff07ac000d07b1, 0x3a872d82ffbb9764, 0x3180d9ff07ba9505, 0x0009bc0708f0ff3b, 0xf4ff07cca40407d1, 0xbaea868dff3b9571, 0x75df0cff07da9505, 0xb704bbd2c503ff3c, 0x0d0e07f594050803, 0xff3bbde669ff07f0, 0x07fea704bc87b690, 0xeeccff3bb45e6dff, 0x0d0e0815bc04bc84, 0xff3b0d4800ff0810, 0x081e95053c7ac9d2, 0x3743ffbab6f327ff, 0x010b086b0e0b3b09, 0x9405083d9704084b, 0xff3c86bbceff0838, 0x0846000ebb5515e5, 0x4264ffbc4c5669ff, 0x0c0b085d0012ba2a, 0xff3974829dff0858, 0x0866170ebc8a3ce9, 0x338cffb8a9f3e1ff, 0x0002088f9405b6ee, 0x1aff087cbe040881, 0x3bdaedfeffbb5faa, 0xc02e1dff088ac904, 0x1d0ebbdf2e19ff38, 0x0aff089c000c08a1, 0x3ae78415ffb9e8ac, 0xb5cf68ff08aa220e, 0x9505bba9496fff3b, 0x98040af3c6040d2f, 0x8005094b930409d7, 0x2b0e08e702110907, 0x5aff08d4850408d9, 0x3abeff3cffb910e7, 0x9df5d0ff08e29004, 0x01083b208998ffba, 0xafff08f4120608f9, 0xbc155586ff3ba104, 0xb1ae48ff09020b05, 0x0002bcbbe012ffb9, 0x8f04091d8205092b, 0xffbc1d9e4cff0918, 0x09268f043c54d313, 0x5ff4ff398f29a0ff, 0x8f05093d070e3c1f, 0xff3b5abdd2ff0938, 0x0946060dbb07537f, 0xf9fcffbc0016a1ff, 0x970409930a0b3c81, 0x070b0965000c0973, 0xff3a28fbbbff0960, 0x096e070bbc86a749, 0x4a2fffbbe50a1cff, 0x000f0985070bbce8, 0xff3c571c6fff0980, 0x098e17033ac71806, 0xf24dff3c539128ff, 0x000e09b7060ebc85, 0x4fff09a4120609a9, 0xb9f95b74ffbc7f67, 0x2d6574ff09b20207, 0x070ebbf8426cffba, 0xd5ff09c44b0509c9, 0x3cc15390ffbb997a, 0xc6f691ff09d2080e, 0x070d3b40ebceffbc, 0x41050a23130b0a67, 0x020609f5000f0a03, 0xffbaf2f0d6ff09f0, 0x09fe3f053acb8bba, 0x7100ffbae60dcfff, 0x9c040a1573053ae6, 0xff3b38049aff0a10, 0x0a1eb004b9e4b11a, 0xd436ffb92ce2aaff, 0x72050a47be0439ca, 0xc1ff0a34a7040a39, 0x3aa7ef9affbaa14d, 0xd33b04ff0a427705, 0xc104b98204d8ffbb, 0x19ff0a5400020a59, 0x3c2b3601ffbb4738, 0x793f00ff0a62060d, 0x3d013b46c827ffbb, 0x34010a8f30050aaf, 0x75ff0a7c16030a81, 0xbd48ada3ff3cb008, 0x33e3edff0a8aa004, 0x3c013cdaa849ff3a, 0xebff0a9c190e0aa1, 0xbd343fb1ffbc03eb, 0xc9e882ff0aaab204, 0x4001be3a43c8ffbd, 0x25030ac534050ad3, 0xffbc16b666ff0ac0, 0x0ace030bbd921286, 0xcd0cff3baa5773ff, 0x230e0ae54905be34, 0xff3c4f83f3ff0ae0, 0x0aee230ebc2779f5, 0x5b82ff3b51b7beff, 0x1f0e0c130108bc5c, 0x00020b43cc040b87, 0xc9040b150c0b0b23, 0xffbbd3a1daff0b10, 0x0b1e080e3b791ba9, 0x3050ffbbf9ebe3ff, 0x01070b35000c3c1b, 0xffbad0e4a0ff0b30, 0x0b3e87053b26c25a, 0xe75cffba02f3d1ff, 0x00120b670b0ebb0d, 0xf1ff0b54080e0b59, 0x3ce9af14ff3b17ab, 0x22e367ff0b620008, 0x1d0ebbe205f3ff3b, 0x36ff0b7400120b79, 0x3b111f25ffbb83bc, 0xcab099ff0b82060d, 0x78053a85a1a4ffbc, 0x72050baf74050bcf, 0xcbff0b9ccc040ba1, 0xbc5eb5eeff3a7c3b, 0x7f4646ff0baa0107, 0x75053caa8d50ffbc, 0x38ff0bbc00080bc1, 0xbbee7eb9ffbd19c6, 0x636d55ff0bca0107, 0x79053c0135d7ffbc, 0x310e0be501110bf3, 0xffbc57c75cff0be0, 0x0bee00023ce3b75b, 0x17a1ff3d0eeaffff, 0x060d0c0503063c22, 0xff3abc95a0ff0c00, 0x0c0e0406babd5d3e, 0x5d39ffbd2a2de2ff, 0x060d0ca375053c29, 0x3b010c3f07050c5f, 0x50ff0c2c36010c31, 0x3c6640c0ff3d1f93, 0x1c2e43ff0c3a0706, 0x6405ba235078ffbd, 0x0dff0c4c0c050c51, 0x394d4639ffba9cea, 0xe81625ff0c5a7205, 0xca043afd23cfffba, 0x6d050c7501070c83, 0xffb9ff8194ff0c70, 0x0c7e4c053c63056a, 0x67f8ff3b6879ddff, 0xcb040c954305bb23, 0xffbd331c0bff0c90, 0x0c9e0b0b3d4eb15c, 0x4c00ffbb7cdf9aff, 0xcd040ceb010c3baa, 0x170e0cbd00110ccb, 0xffbaace2dcff0cb8, 0x0cc60002bb80d9cf, 0xa01bffbb072007ff, 0x00120cdd77053abf, 0xff3ccb5a60ff0cd8, 0x0ce600023d6ed6d0, 0x2ebfff3bcbca0bff, 0x0b0b0d0fc804ba54, 0x7bff0cfc030b0d01, 0x3d0cc423ffbc386e, 0xa7a580ff0d0ac704, 0x0d0e3e19982aff3d, 0xcfff0d1cca040d21, 0x39d8889dff3c771f, 0xd70decff0d2a7f05, 0x220ebc2e14deffba, 0x00080e2f020d0f15, 0x69040d7178040db5, 0x40ff0d4c030b0d51, 0x3b19aee0ffbb4692, 0x0d5e01070d63030b, 0xd028ff3baf50e8ff, 0xabff0d6c070b3bd1, 0x3bda4af0ff39e76b, 0x0d87070b0d959004, 0xa8d5fcff0d820112, 0x020ebbaa2f18ff3b, 0xff3bf21568ff0d90, 0x0da7110ebc597b20, 0xb48235ff0da2070e, 0x020b3b172ea7ffb9, 0xffbba9bf40ff0db0, 0x0dfd030bb9a9041c, 0x0dcf01070dddc404, 0x2eb880ff0dca020b, 0x020bb7098000ffbb, 0xff3b9b5b00ff0dd8, 0x0defcb043ba87380, 0x0b69e0ff0dea0107, 0x01073bd03140ff3c, 0xff3b5e9900ff0df8, 0x0e18000fbb326600, 0x51ed00ff0e0a090b, 0x7eabff0e13cb04bb, 0x0bbb8a9c80ff3a59, 0xff0e25000c0e2a0b, 0x09ce80ff3b5f6e2d, 0x000fbac80ae0ff3a, 0x030b0e729c040eb6, 0x00110e4d000e0e5b, 0xff3b20294eff0e48, 0x0e56020bbbf53b0b, 0x4300ff3c0ee6e0ff, 0x000e0e6d0a0b3c63, 0xff3c1af91bff0e68, 0xe49fa8ff3cd19a70, 0x88000b0e96bf043c, 0x2fd9ff0e8302070e, 0x053bc3e29dff3b96, 0xbbbdcf27ff0e9196, 0xa8c704bcc75e33ff, 0xbf2bff0ea3020b0e, 0x043bcf6984ffbbb5, 0xbba29e4fff0eb1cb, 0xf51f0e3bc1abdeff, 0xd0000e0ede1d0e0e, 0x065cff0ecb00020e, 0x043a40be11ffbb35, 0x3a562f5fff0ed9ba, 0xf00e0b38792929ff, 0xee01ff0eeb01070e, 0xff3b979b25ffbb09, 0x0efe00023cce1150, 0x10030b3bdb7da0ff, 0x9e55ff0f0bc9040f, 0xff3b1e39e0ff3ae2, 0x0f8100023b69a46b, 0x0f38c0040f3dc304, 0x0f2e96050f33030b, 0x2a00ffbaa20500ff, 0xffba6dbe00ffbaa6, 0x0f46c6043bd8fe80, 0x6a000cbbd4aac0ff, 0x57000f0f5ccd040f, 0xf0ff39b53f33ff0f, 0xff0f650107bc5bed, 0xca8a60ff3ab5c347, 0x5520ff0f730012bb, 0x00ff0f7cc904bbca, 0xbb05fa40ff3969a0, 0x0fc496050fe40008, 0x0f9f230e0fad000c, 0x833a6dff0f9a060d, 0x0107bbe1b100ff3b, 0xffbb990d56ff0fa8, 0x0fbf050b3b14d14b, 0x237bc0ff0fbaca04, 0x90ff3ac27808ffbc, 0x040fdf030b3c6c99, 0x3aa263c0ff0fd1c0, 0x799555ff0fda000f, 0x60ff3a4d1e80ffb8, 0x0b0ff6050b3c0814, 0x3aaaa2a0ff0ff103, 0xaae0ff3aa6e140ff, 0x0008000000133bfd, 0x0001000003e80000, 0x0000000010e50000, 0x8c0508dc00070000, 0xc1040248c704047b, 0x021100a06a05012c, 0x020d003c6805005c, 0xbeff0029be04002e, 0xbab2bdf5ff3789f8, 0xe74c1cff00376105, 0xb204ba205344ff37, 0xcaff0049100b004e, 0xba4318e2ff3ad73b, 0x9a8ebaff0057220e, 0x030b3b8c1497ffbc, 0x3401007200060080, 0xff3cc71e00ff006d, 0x007b29053b9ae1de, 0x2fdbff3ac3ea98ff, 0x350400921205bc7e, 0xffbb834135ff008d, 0x009b35053c904df7, 0x67d0ffbc4ef9feff, 0x790500e8c0043b28, 0x050d00ba010b00c8, 0xffbbc3e1acff00b5, 0x00c30a0bbaa88f8c, 0xaf01ffba2f8602ff, 0xbf0400da330e3a18, 0xff37f0a30cff00d5, 0x00e37d05381a9339, 0x7539ff3c83fe47ff, 0x0008010c1b0ebc17, 0xb4ff00f9850500fe, 0x3bb0bab5ffbc5c74, 0x8fda83ff0107170e, 0x01093ce1db19ffbb, 0x10ff01190002011e, 0x3abc4277ffbbbc8f, 0xdc6410ff01272b0e, 0x79053e4cac44ff3b, 0x68050178770501bc, 0x2b0e014a0a060158, 0xffbc1c3da5ff0145, 0x015300023a310f8a, 0xccdbff3b6ba039ff, 0x7005016a020839cc, 0xff3b1ce98eff0165, 0x0173170ebbaec989, 0x6fa0ffbc5507dfff, 0x2c0e019c2f0e3c02, 0xd5ff0189c504018e, 0xbbb36b44ff3b9cb8, 0xe26ee4ff0197030b, 0x0006bcfd5d80ff3c, 0x93ff01a9000d01ae, 0x3ba9cfd0ffbce480, 0x954670ff01b7320e, 0x0002bcb4ac00ffbd, 0x860501e4c3040204, 0xacff01d1180e01d6, 0xb914be9dffbc62ee, 0x9f3756ff01df8705, 0x250eb9d06cadff3c, 0xf8ff01f1060d01f6, 0xbab17e8cff3c34fc, 0x5a04dfff01ff060d, 0x000c3bf85979ffbb, 0x0108021a190e0228, 0xffbb06d777ff0215, 0x0223290e3bd46b18, 0x98fdffbbfc6c85ff, 0x230e023ac3043b00, 0xffbb147aedff0235, 0x0243300e3c50220e, 0x1c75ff3ae673faff, 0x8b05035fca04bc46, 0x8a0502981c0e02dc, 0x190e026a01080278, 0xffba1fc205ff0265, 0x027389053c5a9b70, 0x8cedff3ab7a1a3ff, 0xc804028a01083c84, 0xff3b8a4ba1ff0285, 0x0293c904bcb2ddae, 0x26f0ffbcddf65dff, 0x0e0b02bc000cbd15, 0xcdff02a9050b02ae, 0xbc03efa2ff3ae402, 0x8c1ef0ff02b71d0e, 0x84053ae43b03ffbd, 0x4cff02c9280e02ce, 0x3a0f372bff3be81e, 0x9bde5dff02d78605, 0x0c0b3b11643fffbc, 0xc904030400020324, 0x47ff02f1000902f6, 0xbb4ca2c5ffbc9300, 0xec3b35ff02ff000c, 0x00093d08dae3ffbb, 0x3dff031100120316, 0x3d6017a0ff3cc68b, 0xaf0e06ff031f230e, 0x0002bd319decff3b, 0x220e033a2b0e033f, 0xff3c022752ff0335, 0x299041ffba9a0f00, 0x4c0009035100113d, 0x93ff3c691b4bff03, 0xff035a0012bc5bd5, 0x27fb5cffbcd927ff, 0xab8b0503efcd04bc, 0x7d0011038b010c03, 0xb0e0ff0378250e03, 0x12bba09060ff3bf8, 0x3d0485f5ff038600, 0x9d0208ba3e4ee8ff, 0x5139ff0398070d03, 0x0b3d15e86eff38c9, 0xba002f0dff03a60b, 0xcf2b0ebc9854f6ff, 0xbc000903c1001203, 0x24ffbc15643fff03, 0xff03ca230e3c1322, 0x60c96cff3c1f574f, 0xdc310e03e1060dbb, 0x50ffbb067cbcff03, 0xff03ea00083c4e91, 0x7c2b90ff3cfa6515, 0x176e050437340ebb, 0x0465050409670504, 0x88ffbc5f2eccff04, 0xff0412070dbbdd3e, 0x24e2b0ff3d68fb8d, 0x247b0504297c05bd, 0xe9ffbaf34f0fff04, 0xff04328305bd078d, 0x9f792eff3c6aabb0, 0x4d030b045b00113a, 0x53e8ff0448020804, 0x0c3c914e83ff3c81, 0xbc81ff58ff045601, 0x6d060dbcfbb734ff, 0xce39ff0468000204, 0x0cbc4c7841ff36c7, 0xbb4729c5ff047601, 0xb28d053c697432ff, 0x0a060d0596010c06, 0xafa80404cfbe0405, 0x9c7d0404a17e0404, 0x78ffbb47a3bdff04, 0xff04aa9b04bd87d9, 0x28c887ff3b6bc4ab, 0xbc050b04c1ac04bb, 0x82ffbbeb1504ff04, 0xff04ca010bbce8ea, 0xdca3abff3caef028, 0xe5220e04eabf0438, 0x056bff04e0010804, 0xff3d5f8c5cff3c25, 0x04fcc0043c00dbd5, 0x18f956ff04f7000c, 0xc104bd69e0b8ffbd, 0xffbcab6c09ff0505, 0x055201083a79824d, 0x0524070b05320008, 0xffce02ff051f000c, 0x00123bca429fffba, 0xff39ced806ff052d, 0x0544000cbc05bf01, 0x71f8e7ff053f0b0b, 0x00023b6cdb5bffbb, 0xff3c6a1d1cff054d, 0x057600123b0d73c5, 0x0563bc0405680208, 0xe732ff3b1f79dfff, 0xf5ff0571170ebb4f, 0xbd144124ffbbd8b9, 0x05830b0b0588b204, 0x39fdffbc51fce8ff, 0x8bff0591190e3c2c, 0xbb88d3e7ff3be954, 0x05e21f0e06260109, 0x05b40a0b05c20b0e, 0x75e46eff05af080e, 0x0008bd18a4a6ff3c, 0xffba6c7681ff05bd, 0x05d4b204bc5c153c, 0x2d4f19ff05cf010b, 0x060d3d77b674ffbd, 0xff3bbac6a2ff05dd, 0x0606220eba85f51d, 0x05f3011105f8c404, 0x19e2ff3cb03523ff, 0x7aff06010002bc07, 0xbc9567b3ffbd9cdc, 0x0613ca0406182d0e, 0x2e62ff3a704227ff, 0xb7ff06210002bc69, 0x3bee3028ff3c9ac6, 0x064e0002066e050b, 0x063b000e06409d04, 0x5098ffbb8d379dff, 0x2fff0649010bbca4, 0xbc96eb70ffbd190b, 0x065b000e0660b304, 0x93efffbbe33468ff, 0x7bff0669bc043c48, 0x3afc7c51ffbcf8f4, 0x0684070e0692c404, 0x174d2fff067f000e, 0xbe043c30f55cff39, 0xff3d26d689ff068d, 0x06a4ca043baac2a0, 0x273400ff069f0012, 0x190ebc663a5bffb9, 0xffbc041b7bff06ad, 0x07c993053ca1a370, 0x07020208073d020d, 0x06d4190e06e2bc04, 0xdd502fff06cf9105, 0x220eba2415a6ff39, 0xffbb8876adff06dd, 0x06f4c6043b4f41bc, 0x839028ff06efc204, 0xc7043c817124ffb8, 0xffbc1ebd6eff06fd, 0x0726c9043ad5c493, 0x071391050718070e, 0xbd00ff3bfa7420ff, 0x4dff0721170ebbad, 0x3bba37c0ffbb22f1, 0x0733030b07380a0b, 0xf955ffbc30b120ff, 0x0b3c60a700ffba80, 0x0407650208078505, 0xff075201120757c0, 0xde3779ff37f844f2, 0xc4dcff0760c50439, 0x04bb15ff24ff3afb, 0xff0772020b0777b2, 0xc0ca1affbc63953e, 0x70f1ff0780ca04bb, 0x0bbc0159d4ff3b31, 0x09079b190e07a90b, 0x39b429cfff079600, 0xa40012b8c26711ff, 0x11ffb9f27eeeff07, 0x0407bbc904b99103, 0xb8d14efbff07b6c3, 0xc4cb04ba4ff3aeff, 0x2affbaa274ceff07, 0x080850020d3a4dc8, 0x0907f5050b081500, 0xff07e2000d07e700, 0x114c22ffbb7358eb, 0x2376ff07f0170e3b, 0x043b82bb2affbb98, 0xff08029a040807a4, 0xc82460ff3aaeb13f, 0x43f3ff0810000c3c, 0x0e3a8124a3ffbba7, 0x05082b220e083923, 0x3b1ea9c4ff082694, 0x34c704babca095ff, 0xb3ff3d46ff40ff08, 0xff0842c904bb0662, 0x084b0002bce020dc, 0x84d3ffbbd10455ff, 0x000c0898000f3c4f, 0x9404086a9c040878, 0xff3b1d9496ff0865, 0x0873140e3cb9ecd2, 0x0082ffbc1909dcff, 0x020b088a98043c7c, 0xff3c9b813fff0885, 0x0893060dbd374dac, 0xaeb0ff3a0f1b99ff, 0x000c08bc260ebcb3, 0x62ff08a90a0e08ae, 0xb986653aff3a499e, 0x8c5406ff08b7010c, 0x9405ba326ad4ffb9, 0xeaff08c9000208ce, 0x3c113487ffbb96b5, 0xd97d7eff08d7cd04, 0x95053906714bffbb, 0x000d0b20c6040d5c, 0x99040978a9040a04, 0x4305091465050934, 0x2aff090100020906, 0xbb032406ffba1da1, 0x168252ff090f170e, 0x0008bb9b160bff3c, 0x85ff092102070926, 0xbc3ce1e8ff3c0426, 0x1a658dff092f7d04, 0x08063c2dcff9ffbd, 0x230e094a310e0958, 0xffbb5c887aff0945, 0x095345053c68d355, 0xd1b3ff3b745fa6ff, 0x2905096a9d04bc78, 0xffbcea7668ff0965, 0x0973a704bbc1985c, 0x18e5ffb9cdf4bcff, 0x290509c03005bc53, 0x10060992260e09a0, 0xff3c9247ccff098d, 0x099b1106bb081107, 0xe7e8ffbc0db554ff, 0xbf0409b208063c25, 0xff3c97d76aff09ad, 0x09bb070ebd096ae0, 0xfeb9ffbb65d760ff, 0x010e09e4010bbd28, 0x28ff09d1680509d6, 0xbc3b0b80ff3cebed, 0x7cf869ff09df0208, 0xae043bc8331cffbc, 0xbcff09f1250e09f6, 0x3ccfa795ffbd0849, 0x482038ff09ffb504, 0x2a0e3b28477dff3c, 0x5f050a5075050a94, 0x02080a225d050a30, 0xff39882354ff0a1d, 0x0a2b280eba847b96, 0xef5effb9eef5ffff, 0xc4040a420107bcbd, 0xff3a9bcfccff0a3d, 0x0a4b0108bbf2b797, 0x56faffba889cacff, 0x210e0a74040dbb99, 0xa2ff0a619f040a66, 0xbc2cb571ffbb8dea, 0x587b45ff0a6f030b, 0xc30439a4d3b8ff3c, 0x32ff0a8100020a86, 0x3a756eebffba8ec8, 0x998d02ff0a8f8905, 0xc2043a22811cffba, 0x39050abc7c050adc, 0x1bff0aa907060aae, 0xbb769ae3ff3a65ba, 0x655e33ff0ab7c104, 0x7e053b15b63bffba, 0x68ff0ac90a0b0ace, 0x3cd7a336ff3b850d, 0x2ad708ff0ad7060d, 0x060dbc9b2d90ff3b, 0x310e0af2320e0b00, 0xff3b893c73ff0aed, 0x0afb01123d62d960, 0x18e9ffbc826e08ff, 0x2b0e0b122d0e3bbe, 0xffbaee7ae6ff0b0d, 0x0b1b01073d192bb6, 0x519eff3a63df7cff, 0x1f0e0c400108bd31, 0x1d0e0b70cc040bb4, 0x000f0b42170e0b50, 0xffba8f4e94ff0b3d, 0x0b4b75053a566219, 0xb1ddffbbde92d3ff, 0xc8040b62060dba0e, 0xffbd73170cff0b5d, 0x0b6bcb04bbd4d5c4, 0xb254ff3c6c758eff, 0x01070b94000c3d40, 0x4aff0b81060d0b86, 0xbc19e5baff3ae298, 0xb9176dff0b8f1d0e, 0x8a05bb27d1b2ff3b, 0x87ff0ba11c0e0ba6, 0xbcfc78c5ffbba461, 0xac359aff0baf0d0e, 0x7805bb21d25eff3b, 0x00080bdc6c050bfc, 0x16ff0bc900120bce, 0xbb77175cff3c50fc, 0x9c9e24ff0bd70b0b, 0x6e05bb4bc665ff3b, 0xc0ff0be9cc040bee, 0xbd29d519ffbb4b2b, 0x530115ff0bf70002, 0x79053c2a23b4ffbb, 0x280e0c1201120c20, 0xff3bf20d14ff0c0d, 0x0c1b030bbc72a5fd, 0x32bfff3aeed76dff, 0x00120c3201073cb3, 0xff3b269f49ff0c2d, 0x0c3b81053a0d79b3, 0x6b0eff3a791833ff, 0x060d0cd07505ba2c, 0x060e0c6c08050c8c, 0x0dff0c5917060c5e, 0x3bf83110ff3d049e, 0x1e32faff0c670111, 0x0e0b3caf2acbffbc, 0xb7ff0c79240e0c7e, 0xbad78065ff3b011a, 0x115477ff0c87260e, 0xca043b64682effbc, 0x010b0ca2030b0cb0, 0xffbcba5439ff0c9d, 0x0cab070d3c2421cc, 0x6025ffbb2283dfff, 0x41050cc2010c3c32, 0xffbe02df7eff0cbd, 0x0ccb180e3bb0cfc2, 0x2568ff3c3526e5ff, 0xcd040d18010cbbc7, 0x170e0cea00110cf8, 0xffba9b98dcff0ce5, 0x0cf30002bb67ee7d, 0x7644ffbaf339bcff, 0x0b0b0d0a00023aac, 0xff3aa8952cff0d05, 0x0d132b0e3c464a8b, 0x6a15ffbb9f6700ff, 0x0b0b0d3cc8043b9c, 0x99ff0d290d0e0d2e, 0x3ce2bca9ffbccbd9, 0x96e1c0ff0d370002, 0x0d0e3e0a3c26ff3d, 0x6bff0d49ca040d4e, 0x39c2e099ff3c5e69, 0xcfbb17ff0d570112, 0x1d0e3c18417fffbb, 0x030e0e8001120f93, 0x010e0db000080df4, 0x00110d8200020d90, 0xff3a3dd079ff0d7d, 0x0d8b030bbb67e719, 0x7022ff3b0cfb14ff, 0xc6040da2000239a1, 0xff3a8cf16fff0d9d, 0x0dab000fbb838a0c, 0x1ae8ffbc17b572ff, 0x050b0dd4c304bb1a, 0x77ff0dc100020dc6, 0x3a482140ffbbba36, 0xee469dff0dcf0002, 0x000cbb79e5bcff3a, 0x66ff0de1060d0de6, 0x3b6f1f0aff39e619, 0xadcce9ff0def0108, 0x0002bc13d5f0ff38, 0x000c0e1ccb040e3c, 0xc0ff0e09050b0e0e, 0xbb8b1e33ff3af384, 0x8096acff0e17050b, 0xcd043c6b3798ffbb, 0xe3ff0e2901070e2e, 0x388083baff3b8ed2, 0x9eceb2ff0e37110e, 0x080e3ae14bb8ffbb, 0x000c0e52c8040e60, 0xff39d999aeff0e4d, 0x0e5b060dbc3e8d0d, 0xcecbff3c5bae5aff, 0x01070e720b0e3a4e, 0xffbc196457ff0e6d, 0x0e7bc8043b21116e, 0x9ceeff3b61b62dff, 0x96050f07020bba15, 0x0d0e0eac110e0ec3, 0xa0ff0e9900020e9e, 0xbacd680fffbc51b9, 0x3aaa40ff0ea79504, 0x00083d02ad50ffbc, 0xb3ff0eb9040d0ebe, 0xb9ce7555ffbc46ef, 0xe7000f3adfde00ff, 0xd4c7040ed900080e, 0x00ff39ce21d1ff0e, 0xff0ee2030e3c0096, 0x28d200ff39f38800, 0xf401070ef9030ebb, 0xc0ff3a8ccea4ff0e, 0xff0f02000cba2353, 0x352780ffbb931cfd, 0x2fc4040f4fc8043b, 0x1cbf040f21000d0f, 0x78ffba1bb43bff0f, 0xff0f2aa404bc4d90, 0x21bfc3ff3b93eb3c, 0x3c000f0f41000c3a, 0x6eff3cc8ed28ff0f, 0xff0f4a030bbc2a33, 0xb7a1c0ffbbad0b2b, 0x6501070f730b0ebc, 0xb0b9ff0f60010c0f, 0x0f3c3d4a30ffbbfb, 0x3a514dc7ff0f6e00, 0x850002bb6be4c0ff, 0x55d5ff0f80030b0f, 0x08bcb80ce0ffbbe6, 0xb9506cc9ff0f8e00, 0x8f00083b08a196ff, 0xdac704101e030b10, 0xb5c0040fbac3040f, 0x40d8ff0fb096050f, 0xffb7596000ffbb88, 0x0fcc00023bc34b80, 0xc57f55ff0fc79605, 0x9605bc243f00ffbb, 0xff3ab4f900ff0fd5, 0x0ffe000f388c4000, 0x0feb000c0ff0020d, 0xe4abff3b771ec7ff, 0xc0ff0ff9cd04b98c, 0x3c9497c0ff3cabec, 0x100b000c1010cd04, 0x4070ff3acdd422ff, 0x68ff1019000c3b73, 0xbc0c7d50ffbadc27, 0x103d1f0e105d0107, 0x1033000c10380e0b, 0xaaf3ffbc51055fff, 0x0e3cb97600ff3bb6, 0xff104a9605104f23, 0x0135b8ff3b22ccab, 0x40c0ff1058c704bc, 0x02bb2d4d20ff3b96, 0xff106a0012106f00, 0x5922c0ffbc6c9210, 0x7c050b1081060d3b, 0x88ff39b59100ff10, 0xff108a050b3c9531, 0xed64a8ffbc066b0c, 0xa5030b10bc1f0e3c, 0x2f68ff10a0cd0410, 0x0bbb86eb60ff3b0a, 0xff10b2001210b705, 0x5e23b0ffbbf91220, 0x060d3c8c6fc0ff3b, 0xa0ff10c9000210e0, 0x0b10db050b3b652f, 0x3a999260ff10d603, 0x4d00ff3a963120ff, 0x13bc1a39b8ff3be4, 0xe800000008000000, 0x9900000001000003, 0x0700000000000011, 0x0404578c0508a600, 0x05012cc1040248c7, 0x0d005ca60400a06a, 0x01002e5604003c07, 0x392c3fe7ff002936, 0x3701093a7dc41eff, 0x79ff39b5217fff00, 0x04004ea004bb6118, 0x393f92feff004945, 0x57080ebba68f79ff, 0x47ffbda3959eff00, 0x0500804101bbade1, 0xff006d010c00724d, 0x314267ffbbcb6fb2, 0xfbb2ff007b3c013c, 0x0fbce20282ffbb42, 0xff008d340e009200, 0x8a3a06ff3b677b82, 0xbc68ff009b030bbc, 0x04ba6fec67ff3b2e, 0x0e00c8790500e8c0, 0xff00b5010900ba10, 0xa5650fff3ac5d638, 0x669cff00c30209bb, 0x09bbd89ddaffb8ef, 0xff00d5140e00da02, 0x13dbfdff3a19a6b4, 0xced4ff00e3070eba, 0x113b1d3592ffbba8, 0x0500fe2b0e010c00, 0x3d05c052ff00f96c, 0x070002bb1e35cbff, 0xd9ff3d453e05ff01, 0x05011e060d3bf668, 0x3aaf259cff011982, 0x27220ebb9f621bff, 0xf4ff3d074abeff01, 0x0501bc7905bbbfb0, 0x0b01580b0b017877, 0xff01450208014a03, 0x066a8aff367ba3b1, 0x8617ff015312063c, 0x0e3a49bc93ffbae7, 0xff01656105016a2f, 0xa02cd1ffbac0e122, 0xcd6eff0173300e3b, 0x06ba5f8408ffbc9f, 0x0d018e000f019c00, 0xbc02c8a9ff018902, 0x972b0e3c85d262ff, 0x24ff39528202ff01, 0x0f01ae0108bbe7ba, 0xbcccc2b5ff01a900, 0xb7190e3c9c6b0dff, 0xccff3bc3ff70ff01, 0x04020400023d3b85, 0x0b01d6100b01e4c3, 0xbae6b84aff01d10d, 0xdfc2043c8e8d3fff, 0xf8ffbbeec207ff01, 0x0801f62f0e3b924f, 0xba9d46a9ff01f101, 0xff7f053b6fbf91ff, 0x40ffbc27e6afff01, 0x060228000c3bb647, 0xff02150108021a12, 0x0dd952ffbb8bfd6d, 0xe43dff02237a053a, 0x043cbfe2c0ffbc14, 0xff0235040b023ac3, 0xbf6f85ffbc819c2b, 0x683cff0243300e3b, 0x0ebc324cbeff3acf, 0x0402dc1c0e033b1e, 0x060278040d0298cc, 0xff0265c904026a17, 0x9d8aaaff3ce1d175, 0xf3e2ff0273c9043b, 0x0dbbab5dceff3b8c, 0xff02852a05028a05, 0x182755ffbd6236f8, 0x0041ff02930002bc, 0x05b9fcb190ff3a6e, 0x0e02ae000802bc26, 0xbb9b93b7ff02a90d, 0xb70b0b3b8e972fff, 0xfcffbb1e1dccff02, 0x0502ce190ebc3df5, 0x3c2ed970ff02c989, 0xd70208b9b62094ff, 0x60ff3cd34a90ff02, 0x0b031200083d2467, 0x0c02f6030b03040b, 0xbd21cffdff02f100, 0xff020dbc785f10ff, 0x80ff3c9f3688ff02, 0xff030d46053d1418, 0x1527e8ff3cbdedf0, 0x1f0108032400113d, 0xb1ffbdc8789dff03, 0xff032d2905bd7c37, 0x0336020dbd53fa1b, 0xb077ff3cc8038bff, 0x1f0e03cb8405bcc5, 0xc804036700020387, 0x04ff035476050359, 0x3dbcd394ff3df464, 0x097244ff0362060d, 0x8105bc50f100ff3d, 0x4dff03740b0b0379, 0xbc0769c0ff3ca3e2, 0x8663b4ff03820b0b, 0x83053d790762ffbd, 0x2d0e039d300e03ab, 0xffb9c0a35dff0398, 0x03a6310e3bb5a088, 0xa0e0ffbb9f9aabff, 0x000203bd310e3b20, 0xff3bbb8cb1ff03b8, 0x03c6010c3d348766, 0x6d91ffbc28a459ff, 0x040d04138b053bf0, 0x320e03e5020d03f3, 0xff3c1269eaff03e0, 0x03ee030bbc97adf4, 0x25cdff3e3744b8ff, 0x87050405cc043cbb, 0xffbbaa092eff0400, 0x040e00083a80272e, 0xe842ff3c22eb94ff, 0x00080437000cbabf, 0xfcff042400020429, 0xbc227b21ff3d0933, 0xacce9aff0432250e, 0xc9043b760b13ffbb, 0x72ff044400020449, 0x3cb48063ffbc6f35, 0xa7a255ff0452220e, 0x8d053a873a1affbc, 0x0e0e057b110b067c, 0x040e04ab0e0b04ef, 0x7e04047d8b04048b, 0xffba6f4a78ff0478, 0x04860d0b3aedf3b1, 0x9c00ffbab602a3ff, 0xbc04049d00023c80, 0xffba7b5143ff0498, 0x04a601083bed4552, 0x5b35ffbabf5ee9ff, 0x010c04cfb1043bb5, 0xdfff04bc070e04c1, 0x3c234aa8ffbb48ef, 0xfe2030ff04ca000e, 0x010c3d63a434ffbb, 0x2aff04dc000c04e1, 0x3ba51a58ffbcc68a, 0xe28738ff04ea100b, 0xbb04bd3811d4ffbc, 0x00080517ba040537, 0xc7ff0504b5040509, 0x3bd09657ffb9e5d7, 0x62de20ff0512000f, 0x030b37dd2845ffbc, 0x63ff052400080529, 0xbbbb8b88ffbc7f5b, 0xc01a13ff0532190e, 0x0108bcef3038ffbc, 0x1d0e054d0e0b055b, 0xff3a9d751aff0548, 0x05560009ba8e59ea, 0xaa38ff3d85c82cff, 0x230e056d0b0b3c45, 0xff3a4f8811ff0568, 0x0576060d3bb81941, 0xc5ceffbd20b017ff, 0x010c05f0c8043c00, 0x120e05a7000205c7, 0x31ff0594b2040599, 0xbbdb2898ff3b089f, 0x2e75dbff05a2170e, 0x080e396e495aff3c, 0x26ff05b4b30405b9, 0x3bb58efcffb92e56, 0xd03996ff05c20008, 0xc504bb99cbb7ff3a, 0x000805dd0e0e05eb, 0xff3b703a65ff05d8, 0x05e6c404bb971250, 0xa940ffbd0c4bb5ff, 0x0e3caa186affbbef, 0x0e0618140e063817, 0xff0605ca04060a0e, 0x90ed3effb9f8b9db, 0x15c8ff061300023c, 0x11bce84218ffbc73, 0xff06250008062a00, 0x3f40a0ffbcaab86b, 0xbcbdff063300083b, 0x0e3bda2ce3ff3d24, 0x11064e0009065c19, 0xbb97e234ff064900, 0x570011bcb3c021ff, 0xc3ffbb9f3100ff06, 0x08066e1f0e3c7762, 0xba77d79aff066900, 0x7700113d1355eeff, 0xc4ff3b4bd7b4ff06, 0x0d078a9305bae31d, 0x0406cc020806fe02, 0x04069eb20406acbc, 0x38d235aaff0699b1, 0xa7020b3d07c0b0ff, 0x7bff3c2cbaeeff06, 0x0e06bebd04bb4fc0, 0x3b14a9c0ff06b91f, 0xc700083cb77eb4ff, 0x44ffbab4e103ff06, 0x0e06f092053b7fd4, 0xff06dd030b06e207, 0x44f8a0ff39292333, 0x9e6aff06eb91053c, 0x0b3bfcd6c0ffbaba, 0xbba12d00ff06f901, 0x46050bbc01de00ff, 0x18c0040726020807, 0x7140ff0713011107, 0x0439c7ff9aff37df, 0xba1679b3ff0721cc, 0x38010c3bc284aeff, 0x24f6ff0733190e07, 0x043bd56230ffbb05, 0x3babfbcdff0741c4, 0x6a0b0b3ce9b726ff, 0x570009075c190e07, 0x7fff39a2259eff07, 0xff07650012b8aef5, 0x828316ffb9da3ef7, 0x77c304077cc904b9, 0xbbffb8bc5f30ff07, 0xff07850012ba3b27, 0xe3b713ff3b0f4aa0, 0xd60008081a020dba, 0xa8c80407b6050b07, 0xf2b3ff07a3c10407, 0x043be6a04cffba28, 0xbc8174b5ff07b1c9, 0xc86f043af4db67ff, 0x950cff07c36d0407, 0x04bca1f0adffbc08, 0x3bb22864ff07d1a4, 0xfab704ba58494aff, 0xe7940507ec010807, 0xf8ff3a32256eff07, 0xff07f5030ebc114e, 0xcb4728ffbbfd5b40, 0x07030b080c170e3c, 0x9aff3bf63266ff08, 0xff0815c404bb3d16, 0xddc46fffbbcff8fb, 0x4296050862000fb8, 0x2fc1040834c20408, 0x93ff3a930a36ff08, 0xff083d0a0b3d1d07, 0x1fe920ffbc07a70c, 0x4f99040854b9043b, 0x0fff3c8a7041ff08, 0xff085d0002bcada5, 0x81ab4fffbc28bd84, 0x78c8040886cd043c, 0xd03aff0873170e08, 0x0db96c4e30ffb8f3, 0x3a6663b6ff088106, 0x98000cba04dfc7ff, 0x8227ff0893020908, 0x093beb9a2aff38cf, 0x3b234725ff08a100, 0x1d010cbbbfc0f6ff, 0xce87040aea96040d, 0xfe80040942160609, 0xd0000c08de020d08, 0xbc20ff08cb021208, 0x0b3bfbb200ffbb91, 0xbc02cba8ff08d901, 0xf050053ac3edf0ff, 0x534cff08eb7c0408, 0x12bb1862ecffb847, 0xbac5edcaff08f901, 0x2202083bf3d96bff, 0x0f3e010914000f09, 0xebff3b8636cbff09, 0xff091d4a053af9a8, 0x30c6afffbbf2a438, 0x2f010709341705ba, 0xe5ff3c92786aff09, 0xff093d2003bacf97, 0x18abc7ffbc606e7c, 0x6a060e098a000cba, 0x578404095c030b09, 0x62ff3b55c577ff09, 0xff096580043d0686, 0x796538ff3a8ef6aa, 0x778404097c020dbc, 0x61ff3c07ee2bff09, 0xff0985000fbd5b16, 0x99be5affbd067d3c, 0xa0180609ae010e3b, 0xbda9ff099b000f09, 0x0b3bfb16f7ffbc40, 0xb9070d81ff09a903, 0xc064043c873abeff, 0x1cfaff09bb590409, 0x0f3ca5ef67ff3c10, 0xbd208e98ff09c900, 0x5e0107ba914fcaff, 0xfa92040a1a95040a, 0xe78b0409ec220e09, 0x44ff3b925bd6ff09, 0xff09f5000fb9adcf, 0xab5e01ffbac8e443, 0x072a0e0a0c070d3a, 0x0cff3aa908b1ff0a, 0xff0a153c01bc09aa, 0x40413cffbd3c8561, 0x30070b0a3e0111bc, 0x8305ff0a2b070e0a, 0x12bc4c6035ff3b4d, 0x3cbbba9bff0a3901, 0x502e053b43310dff, 0x76baff0a4b020d0a, 0x06bcef7abbff3c7c, 0xbcb37f41ff0a5900, 0xa6080ebd97a909ff, 0x7800020a8601080a, 0x3572ff0a732b050a, 0x0dbbbc5530ff3c46, 0x3a29a458ff0a8107, 0x9800123c14e1aaff, 0x7761ff0a9300020a, 0x06bb0a4bc2ffbca9, 0x3af6e294ff0aa100, 0xca9504bc538ce9ff, 0xb7090b0abc07060a, 0xe1ff3b415923ff0a, 0xff0ac5010dba1ae8, 0x1a00e2ffbbd4242f, 0xd739010adc070b3c, 0x36ff3c7cb7e2ff0a, 0xff0ae5000fbc9493, 0xc458d0ffbc4b23e1, 0x7e00020c0a01083c, 0x1a320e0b3a4a050b, 0x07040d0b0c0b0b0b, 0xd5ff3c246752ff0b, 0xff0b15060d3aa4f5, 0x08f5e8ffbb1a8ec4, 0x27000f0b2c3801bc, 0x7aff3ba8c6cfff0b, 0xff0b35ae04bbdea8, 0x0c334effbc7c61a6, 0x5054050b5e260ebb, 0xc06cff0b4b9b040b, 0x0bbc1c31ceff3bcd, 0x3a541467ff0b590b, 0x70060dbab640c2ff, 0xf33cff0b6b01060b, 0x11bcc8ef4eff3b46, 0x3b61c9f4ff0b7900, 0xc67605bce9a9faff, 0x98060d0ba611060b, 0x2de8ff0b93090b0b, 0x12bb0b95d4ff3b54, 0xbb7cf0a9ff0ba100, 0xb8080e3c7e478dff, 0xa153ff0bb3070e0b, 0x0d3c4dbdf0ff3a4f, 0xbbc9738aff0bc105, 0xea7705b8e38bddff, 0xd7060d0bdc01110b, 0x6bff3cd13260ff0b, 0xff0be50d0e3aea29, 0xebb770ffbd5801f5, 0xf79b040bfc9c04bb, 0x54ffba18cb3aff0b, 0xff0c057f053c2128, 0x02bf2fffba85e7fb, 0x56060d0c9a51053a, 0x282e0e0c364b050c, 0xb6d5ff0c232a0e0c, 0x04bb86f02cffbab1, 0x399eb631ff0c31b1, 0x48c0043b6f5a04ff, 0x88daff0c4302070c, 0x04bba06abcff3bd4, 0xbdd3ccbfff0c51c1, 0x7a00123be10d9fff, 0x67bc040c6c070d0c, 0xabffbb724302ff0c, 0xff0c75030b3c0ee4, 0x5e3146ffbb88b5e2, 0x870d0b0c8c230e3c, 0x9bff3ca3f204ff0c, 0xff0c9500023d49c7, 0xdd86f7ffbc0fa9dc, 0xc263050ce2310e3c, 0xaf100b0cb454050c, 0x47ffbb8f26b2ff0c, 0xff0cbd020dbcba35, 0xf5fba0ff3c001243, 0xcf6a050cd4c604b9, 0x33ff3b6c89ecff0c, 0xff0cddc804badff5, 0x0c65e8ffbb164f3a, 0xf8090b0d06020639, 0xf5faff0cf3af040c, 0x04bac725aeff3cd0, 0x3c8d9bd1ff0d01c7, 0x18030b3b2c73a8ff, 0x7030ff0d1301070d, 0xffbd199edcffbda1, 0x0f5d5d05be1e8dc0, 0x0db501080e413b05, 0x0d5182040d71be04, 0x0d3e3c010d438004, 0xf7afff39b0a556ff, 0x14ff0d4c3a053bc0, 0xbcef221cff3b8416, 0x0d5e170e0d638704, 0xd2deff3c4d41a0ff, 0x05ff0d6c8b04bc09, 0x3a5de589ff3bf86c, 0x0d870b0b0d950112, 0xb49000ff0d823705, 0x0008bd7349faff3d, 0xffbe2facd4ff0d90, 0x0da7020dbd8c3969, 0xc680a2ff0da20d06, 0xbf043b7be621ff3c, 0xffbc8e7ac1ff0db0, 0x0dfdcb04bb2029d8, 0x0dcf140b0dddac04, 0x5ae220ff0dca3705, 0x170ebc27f383ffba, 0xffbb99d96dff0dd8, 0x0def2f033b5e610e, 0x856ce4ff0dea2d03, 0x030b3d01a8cdff3a, 0xffbc06a8efff0df8, 0x0e2102073b51a0ed, 0x0e0e350e0e130002, 0x903dffbc246fc6ff, 0xfeff0e1c12063c8c, 0x3b4c0037ff3d3fa9, 0x0e2e1d030e330306, 0xf1b9ff3a5e429aff, 0x90ff0e3c300e3db3, 0xbd0eef47ff3b52d1, 0x0e8d01120ed10208, 0x0e5fc3040e6d0008, 0x6b0675ff0e5abf04, 0x50053beff06fffba, 0xffbd0e6255ff0e68, 0x0e7fa8043c153a07, 0xb2f04dff0e7a0a0b, 0x070d3c10d718ffba, 0xff3b9b4106ff0e88, 0x0eb1020d3c14c93a, 0x0e9e3b010ea30002, 0x06baffbd1352b4ff, 0x97ff0eac2a0e3d68, 0x3d99e50cffbae23a, 0x0ebe00020ec3300e, 0xc3b9ffbc3241c9ff, 0xadff0eccc004bae0, 0x3c430040ffbd3146, 0x0ef9220e0f190b0b, 0x0ee6070e0eeb9b04, 0x8b4aff3b9c48dbff, 0x27ff0ef40107bc49, 0xbc7a0f98ffbcf215, 0x0f0601110f0b5105, 0x5ae7ffbad010f6ff, 0x06ff0f14c804bcdb, 0xbc8b9abfff3cb2dc, 0x0f2f5b050f3d0107, 0x8a9846ff0f2a9b04, 0xb3043b27217eff3c, 0xff3d905a99ff0f38, 0x0f4f0d0e3d0a8b38, 0x4b0a70ff0f4a060d, 0x060dbcb53b10ffbd, 0xff3c958583ff0f58, 0x107d140bbbe042da, 0x0fad80050ff10002, 0x0f7fc1040f8d7305, 0x0b5717ff0f7abc04, 0x6505bc279510ff3a, 0xff3c535661ff0f88, 0x0f9f2b0ebaf7a331, 0x974406ff0f9a060d, 0x090b3b3e9d3cffbb, 0xff3a55a87eff0fa8, 0x0fd1080ebcccdd43, 0x0fbe060d0fc3070e, 0x76e4ffbc4245f4ff, 0xeeff0fcc82053b96, 0xbc5adcf1ffbd5277, 0x0fdebd040fe30008, 0x1414ffbb64d87fff, 0x06ff0fecb7043b5e, 0xbb367e2dffbd9679, 0x1019030e10399c04, 0x10069804100b0008, 0x1d7eff3af772f0ff, 0x1aff1014070d3ce6, 0x3c8588faffbc8d31, 0x1026070e102b9a04, 0x01bbff3c7fff88ff, 0x76ff1034070eb901, 0x3c96f55fff3d20b6, 0x104f0c0b105da904, 0xa46abbff104a170e, 0x0008bb41c689ffbc, 0xffbd90dba4ff1058, 0x106fab043c3d55dd, 0xdac34aff106a0112, 0xb704bc8b5d7fff3c, 0xffbbbb60b0ff1078, 0x110d00083b043905, 0x10a9070d10c9080e, 0x1096070e109b8904, 0x794effbb514699ff, 0x78ff10a40011bd5b, 0x3c86d614ff3a2cc8, 0x10b6a60410bbab04, 0x2440ff3bc7c9c5ff, 0x67ff10c4b9043d4d, 0x3e1497e3ff3dcc50, 0x10df0d0e10ed0107, 0x6ee384ff10da0a0e, 0x160ebcbe6dc7ff3c, 0xff3ccd4fa0ff10e8, 0x10ff68053b7caecc, 0x2cdeeaff10fa6205, 0x69053cdb852cffbc, 0xffbd3e38c3ff1108, 0x1155050ebb6240cf, 0x1127ba041135060d, 0x9c5719ff1122a004, 0x8d05bd4950ffffbc, 0xff3d4f9d7aff1130, 0x114772053cebd9f6, 0xd18e3eff1142000e, 0x73053be2d5aeffbc, 0xffbd46e0ffff1150, 0x1179af04bc866381, 0x11660002116b6405, 0x0a6cffbcb9a66dff, 0x3bff1174a3043d5b, 0x3dbb1759ff3d2dae, 0x1186060d118b090e, 0x8661ffbd83fca7ff, 0xd1ff11940207ba95, 0xbc529ab2ff3ba50b, 0x0000000800000013, 0x00000001000003e8, 0x0000000000000faa, 0x04728c0508ca0007, 0x012cc1040248c704, 0x005ca60400a06a05, 0x002e5604003c070d, 0x114264ff00293401, 0x01093a603267ff39, 0xff39a304b7ff0037, 0x004ea004bb4a9619, 0x004225ff00499904, 0x080ebc49d48effbb, 0xffbd9339dcff0057, 0x00804101bb9c7dea, 0x006d010c00724d05, 0x8895ffbbb717afff, 0x17ff007b3c013c1f, 0xbccb68a7ffbb2f7c, 0x008d000c0092010b, 0xe40bff3c7b214fff, 0xefff009b360ebc1b, 0xbc72c6bcff3990ca, 0x00c8790500e8c004, 0x00b5930400ba7205, 0x1696ffba12810cff, 0x84ff00c3000dba00, 0x3a1cbb79ff3b369e, 0x00d5bf0400da0009, 0x53b9ff3993bd97ff, 0xe1ff00e3230eb75f, 0xbabc1ef7ffba103a, 0x00fe2b0e010c0011, 0x4c02f9ff00f90d0e, 0x2c0eb820762cffbc, 0xff3d31849eff0107, 0x011e060d3bddc4c4, 0x9da19dff01198205, 0x0009bb8f71e3ff3a, 0xff3cd12400ff0127, 0x01bc7905bc73e28e, 0x01580b0b01787705, 0x01455d05014a0012, 0xf63dff3cd0cbccff, 0xf3ff01530a0bbb7a, 0xba9d65beff3a8879, 0x01651f0e016a0002, 0xd0bfff3c54fd86ff, 0xccff0173c604bada, 0xbd0d7d4fff3b08f5, 0x018e280e019c2a0e, 0x83e1bcff0189000f, 0x020839eaf5bdffbc, 0xffbd49dc57ff0197, 0x01ae0002bca54a3e, 0xa739adff01a9360e, 0x030bbc9f9180ff3b, 0xff3cbdfe5bff01b7, 0x0204000fbc25395d, 0x01d6010801e4080b, 0x8156d3ff01d1330e, 0x040bbc12141eff3b, 0xffbc95239dff01df, 0x01f600063b33f31c, 0xcf7b70ff01f18705, 0xc2043bfa7873ff3c, 0xff3cd5ba3eff01ff, 0x0228c604bc486767, 0x02150008021a8705, 0x3112ffbb74d15eff, 0x32ff02232a0e3a5b, 0x3c018776ffbaaf18, 0x02358305023a8705, 0x73bdff3ad857d9ff, 0x8fff02432a0e3cef, 0xbc7c9202ffb95ec8, 0x02d38b050356ca04, 0x02781c0e028f1d0e, 0x0265010c026a0e0e, 0x4a34ff39bc1a77ff, 0xc7ff0273130e3be0, 0xba42974cffbc92d7, 0x063d84ff02810008, 0x6c8dff028a01083d, 0x08bd62feedffbdb4, 0x0402a58a0502b301, 0xbae2e28dff02a0c9, 0xae010c3b79e0cfff, 0x2fff3b962458ff02, 0x0502c51f0e3d18c9, 0x3d8b2fccff02c076, 0xce220e3b96a520ff, 0xffffbc2806feff02, 0x090312c8043a866f, 0x0202ed0b0b02fb00, 0x3b3b4c60ff02e800, 0xf600083cf1857eff, 0xe4ffbbc53060ff02, 0x0b030d02093c346e, 0xbd0fdfdaff03080b, 0xf000ffbcbde674ff, 0xc90403360b0b37dd, 0xddff032300110328, 0xbb6befc4ffbca2e7, 0xd0d4cbff0331000c, 0x01083cf58fbbffbb, 0xe9ff03430e0e0348, 0x3b22a0c5ff3cb799, 0x2e3313ff03510c0b, 0xcd04bb890c0cffbd, 0x010c03a28b0503e6, 0x250e037400110382, 0xff3bdf01b8ff036f, 0x037dcc04bb92ef0c, 0x2811ffbab01785ff, 0x290e03942a0e3b51, 0xffbb988b98ff038f, 0x039d6105bd013ae7, 0xca92ffbbd30bf4ff, 0x2e0e03c6000c3ba6, 0xa4ff03b3001203b8, 0x3c19e99dffbb189b, 0x3705e4ff03c10011, 0x0b0b3be7a242ff3d, 0xd0ff03d3000f03d8, 0x3b3e9ccfffbcf002, 0xb75270ff03e10008, 0x340e3adf8a99ffbc, 0x8905040e8a05042e, 0x9dff03fb010c0400, 0x3bc0b145ffbae48c, 0x1b8fa9ff0409320e, 0x0002bc1bf124ff3d, 0x4cff041b230e0420, 0x38c77a08ff3c2e84, 0x76125eff0429320e, 0x030b3c08e18cffbc, 0x360e0444000f0452, 0xffb9353a00ff043f, 0x044d010cbac92280, 0xdcb3ff3c13cb0fff, 0x0b0b0464000c3c8b, 0xffbbfaa89eff045f, 0x046d00123c53331f, 0x6f5bffbce67636ff, 0x010c06a08d05bbea, 0x220e050a060d058d, 0xba0404a6000204c6, 0xa7ff0493000c0498, 0xbb418657ff3ab642, 0x587358ff04a1000f, 0x0009ba940d58ff3c, 0x3eff04b3070e04b8, 0xbabd7768ff3bbc15, 0xb71529ff04c1000f, 0x011239f1af71ffbb, 0xbe0404dcc50404ea, 0xff3bb2ee3dff04d7, 0x04e5c604bc1edd3d, 0x8216ff3d242d4fff, 0x000804fc030b39e5, 0xffbb7e20cbff04f7, 0x0505000f3c10f9a5, 0x74ffff3b735148ff, 0x010b0552c604bc2d, 0x9d04052400120532, 0xff3c0ecafeff051f, 0x052d000cbc3c5c58, 0xf33cffbc716eb4ff, 0x070b05440d0e3a9c, 0xff3b0f94a2ff053f, 0x054d170eba9cd91d, 0xb19dff3b90a595ff, 0x0011056dc704bb81, 0x32ff0563000c0568, 0x3cd207fcff3b9622, 0x7f00123d9aa262ff, 0x39a7ff057a1d0e05, 0x0e3be295bbffbb66, 0x3a575bb8ff058823, 0x140109bcc51e48ff, 0xb9bd0405d9190e06, 0xa6000805abb20405, 0xcaff3bc9bc24ff05, 0xff05b4030bbcaad9, 0xcdd550ff3bfa7a00, 0xc6030b05cbbf04bb, 0x4bffbb194a92ff05, 0xff05d40b0b3ced0c, 0x81c4aeff3b92f309, 0xef000905f41d0ebb, 0xa125ff05ea000205, 0xff3b949b53ff3c9a, 0x0606220ebd1ed878, 0x6c0486ff0601c404, 0x0b0bbcc84533ffba, 0xffba80f867ff060f, 0x065c050b3c4301e9, 0x062e9d04063c0002, 0x7d2120ff0629000e, 0xbf04bc92beecffbb, 0xffbcdd02faff0637, 0x064eb304bc460a9b, 0xca8f08ff0649000e, 0xbc043c36d190ffbb, 0xffbcdee0c9ff0657, 0x0680c4043aeead76, 0x066d01120672070e, 0x41c3ff3c202983ff, 0x98ff067bbd04ba75, 0x3ca13c33ff3d68fd, 0x068d00120692ca04, 0xa928ffb9617c00ff, 0x22ff069b060dbc51, 0xbbbb31fbff3c8a2f, 0x0722020d07ae9305, 0x06d0be0406f00208, 0x06bd8f0506c21d0e, 0x503dffbadbf8f8ff, 0x45ff06cb010839e4, 0x3d52eaf5ff3968e9, 0x06dd300e06e2c604, 0x56edff3953ba94ff, 0xb5ff06eb2a0e3c81, 0x394297dfffbc4698, 0x0706010b07149205, 0xcd6a00ff07019005, 0x170e3c878280ffb9, 0xffba5aad61ff070f, 0x071d0d0e3ac57a2b, 0xc300ffbb910f00ff, 0x0208076a050bbbe9, 0x0112073cc004074a, 0xff37c9137eff0737, 0x0745310e39b3ffaa, 0x72dcffba116618ff, 0xa704075cb2043bae, 0xffbb83a96dff0757, 0x0765030bbc34b1d2, 0x89fdff3b07fbf8ff, 0x190e078e0b0bbc3f, 0xc0ff077b00090780, 0xb89d7589ff3991ee, 0xc46b52ff07890012, 0xc904b96aea86ffb9, 0xe5ff079bc30407a0, 0xba287051ffb8a987, 0x90f504ff07a9cb04, 0x020d3a351fb3ffba, 0x050b07fa0008083e, 0x300e07cc030b07da, 0xff3a256b09ff07c7, 0x07d5c504bc09ed10, 0x089aff3aab0057ff, 0x000f07ec0b0bbc4f, 0xff3911f0d0ff07e7, 0x07f5010cbc1ce9dd, 0x3555ff3c3143d5ff, 0x0108081eb7043a87, 0x0dff080ba7040810, 0xbc2adaacff3be9f6, 0xe40540ff0819030e, 0xbc043cb6f348ffbb, 0x00ff082b020b0830, 0x3c43b1dbffbaca33, 0xaec1f4ff08399505, 0x130b3af483aaffba, 0x6b0408666d040886, 0xc9ff085301110858, 0x3d5a2e20ff3a52fd, 0xb6cee6ff0861000f, 0x000f3c0af9fcffbc, 0x2eff0873000c0878, 0xba2e1ef3ff3b893e, 0x20262cff0881230e, 0x0108ba8d0813ff38, 0x060d089ccc0408aa, 0xff3adc8d8cff0897, 0x08a59605ba0f86be, 0x20edffbb24e6c2ff, 0x010e08bcc6043ba3, 0xff3bf5e80eff08b7, 0x08c51d0e3a389117, 0x3032ffbc022b8aff, 0xc6040d4a95053cf3, 0x930409f298040b0e, 0x0211092280050966, 0x850408f42b0e0902, 0xffb903130eff08ef, 0x08fd90043aa847a4, 0x2d8effba91b7d4ff, 0x1206091401083b11, 0xff3b8e4a35ff090f, 0x091d0b05bc01931a, 0xa6abff390ec2a6ff, 0x820509460002bca5, 0x26ff09338f040938, 0x3c432836ffbc0917, 0xd808cfff09418f04, 0x070e3c14eb2eff39, 0x01ff09538f050958, 0xbaf8781bff3b3e62, 0x77c701ff0961020d, 0x0a0b398e62f7ffbc, 0x070b098e000c09ae, 0x8eff097b000f0980, 0x3ac5c5bdff3b9b4e, 0x03b8f6ff09899504, 0x0012bc18f097ffbd, 0xfbff099b070d09a0, 0x3c8bbc31ffbcb4ca, 0x979e25ff09a94205, 0x050ebba382d2ffba, 0x020e09c4011109d2, 0xffbbe6287bff09bf, 0x09cd09063a507e4e, 0xdf49ffbd45f934ff, 0x011209e4070e3b52, 0xff3ca4459eff09df, 0x09ed080ebb02d2da, 0xf6cfffbcb24c0eff, 0x130b0a82070d3b19, 0x000f0a1e41050a3e, 0xf7ff0a0b02060a10, 0x3ab9ab21ffbae548, 0xd8bccbff0a19120b, 0x73053d11be1cffba, 0x16ff0a2b9c040a30, 0xb9c392caff3b207b, 0x0e17ecff0a39b004, 0xbe0439b4ec50ffb9, 0xa7040a5472050a62, 0xffba8c9a91ff0a4f, 0x0a5d77053a9cf7ee, 0x8296ffbbb6ad5aff, 0x00020a74c104b90f, 0xffbb2b4d2eff0a6f, 0x0a7d060d3c1a8a6b, 0xb5c4ffbb633e8eff, 0x30050aca3d013b3b, 0x140b0a9c3a010aaa, 0xff3c11bcaaff0a97, 0x0aa5030bbcfeaa16, 0x6348ffbdbb467dff, 0x1e0e0abc3c013cf1, 0xffbc0ab497ff0ab7, 0x0ac5b204bd320cae, 0xfa5cffbdb610beff, 0x25030aee4001be27, 0x94ff0adb110b0ae0, 0x3c9c0fa8ffbd1b33, 0x3f0313ff0ae9a104, 0x6805be25f2a3ffbd, 0x85ff0afb0d0e0b00, 0x3bf09b9effba9601, 0xf5c85dff0b09080e, 0x0108bb91b209ff3b, 0xcc040ba21f0e0c2e, 0x0e0b0b3e00020b5e, 0x57ff0b2b36050b30, 0x3979df06ffbc3271, 0x0b5a06ff0b39100b, 0x000c3b9d2b5fff3d, 0x94ff0b4b01070b50, 0x3b11a8ccffbac836, 0xa8c11aff0b598505, 0x000cbb33fe8fff3a, 0x1d0e0b7401070b82, 0xffbb0fd836ff0b6f, 0x0b7d0e0bbcad2f71, 0xb52dff3b16f091ff, 0x1c0e0b948a053be4, 0xffbb90a4eaff0b8f, 0x0b9d1c0ebce2dcd4, 0xaf0fff3ae968e6ff, 0x74050bea7805bba6, 0xcc040bbc2d0e0bca, 0xff3ac7aafbff0bb7, 0x0bc52f0ebc24a722, 0xf0b8ff3ce6d983ff, 0x0e0b0bdc7505ba0a, 0xffbb19f474ff0bd7, 0x0be5cb04bd0bb7cf, 0xf4f4ffba820765ff, 0x01120c0e79053cd2, 0x35ff0bfb310e0c00, 0x3cd99128ffbc3229, 0xf45006ff0c090002, 0x01073bf7f0e9ff3c, 0x82ff0c1b00120c20, 0x39cce834ff3b0faa, 0x672807ff0c298105, 0x7505ba311a09ff3a, 0x07050c7a060d0cbe, 0x02070c4c01110c5a, 0xff3bccb354ff0c47, 0x0c550002bc976cb7, 0xfc10ffbb47dc80ff, 0x1d030c6c64053cf5, 0xffbc86dc96ff0c67, 0x0c757205382a69d2, 0x535bffbac5a0bcff, 0x00110c9ec9043afb, 0x35ff0c8b280e0c90, 0xbc1f97b8ff3b7c29, 0xc302daff0c990002, 0x2a0eb9987cebff3c, 0xe6ff0cab5d050cb0, 0xba1bd43dffbcc099, 0x0c14aaff0cb9010c, 0x7605bb7ee440ff3c, 0x01120ce600020d06, 0x28ff0cd300120cd8, 0x3dab6e78ff3d4777, 0x39b240ff0ce12b0e, 0x230ebc700980ffbc, 0x4cff0cf3c8040cf8, 0xbbf1c357ff3c8782, 0xc4d0f7ff0d01280e, 0x2c0e3b189a1cff3c, 0x060d0d1c78050d2a, 0xffbc0e354bff0d17, 0x0d2583053b386bcf, 0x9383ff3a5f3edfff, 0x0b0b0d3c2d0eba2b, 0xff3bad97d3ff0d37, 0x0d452f0e3d07ffeb, 0x6258ffbcf479f2ff, 0x7f040ec41f0e3ac9, 0x01070d9a000d0da8, 0x96050d7e070b0d8c, 0xc0ff0d6b030b0d70, 0x3aae49e8ffbb11ac, 0xabe7f0ff0d790002, 0x0a0b3bad77c0ff3b, 0xff3c0dead4ff0d87, 0x0d9500023b8e21c8, 0x44f0ff3bd09f68ff, 0xf5ff0da3030b3bcd, 0x3b5144b5ffbb1751, 0x0df4cc040e38000c, 0x0dc6c7040dd4170e, 0xd2427eff0dc1060d, 0x060eba6e9cb8ff39, 0xff3b3eadc7ff0dcf, 0x0de61c0eba8db60b, 0xdc2469ff0de1010b, 0x000f3c173c64ffbb, 0xff3b885b5bff0def, 0x0e180b0ebbfce8ad, 0x0e0500080e0a060d, 0x2454ff3abc6340ff, 0x88ff0e13080ebba0, 0x3c9dbae4ff3b06a9, 0x0e2500020e2a110e, 0xc6c0ffbb8e4041ff, 0xfbff0e330002bab0, 0xba0b4825ff3b330c, 0x0e60030b0e80000e, 0x0e4db6040e520107, 0xc860ffbb81bb4dff, 0x80ff0e5bb604bc1f, 0xbb77db7bffb923f2, 0x0e6d010c0e72b904, 0x347cffbb3660cfff, 0xa4ff0e7b010cbc0e, 0xbb4ad3daff39a6c9, 0x0e96060e0ea4070e, 0xc85a47ff0e91010e, 0x020bba630f5dff3a, 0xffbb5d20e6ff0e9f, 0x0eb60b0e3b9db232, 0x577d75ff0eb1c804, 0x190eba7bbc47ffbc, 0xff3a8f03b5ff0ebf, 0x0f390002ba6c9490, 0x0f02000c0f2b0b0b, 0x0ee600080eeb0012, 0x296910ff0ee19605, 0xd8ffbbeb3a90ff3c, 0xff0ef4220ebc0c20, 0x0efd230e3bbac020, 0xa0baffbb87f315ff, 0xe0ff0f0b0012b837, 0x0b0f1d030bbbc0e3, 0x39817400ff0f1801, 0x26cb04baf46300ff, 0xa0ffbb558b00ff0f, 0xff0f34230ebb09e3, 0x2fdcc0ffbbec6160, 0x850b0b0f930008bb, 0x57030b0f65cb040f, 0x2fe9ff0f52000c0f, 0x0dbb427500ff3ab4, 0x3ad37740ff0f6000, 0x77000fbcd84060ff, 0xdd80ff0f72050b0f, 0x0e3c9e6040ff3b29, 0x3b385f73ff0f8026, 0x8e0e0bbb2b0f6cff, 0xc0ffbb8c1a90ff0f, 0x0b0fa5050b3c6316, 0x3a83ad60ff0fa003, 0xd620ff3a80a2c0ff, 0x0008000000133bcb, 0x0001000003e80000, 0x00000000104c0000, 0x8c0508a600070000, 0xc1040248c704047b, 0xa60400a06a05012c, 0x4101003c120b005c, 0x95ff00296805002e, 0xbbf1736effb85e2a, 0xeaf9f8ff0037000d, 0xa504b9e445adff3a, 0xebff00499c04004e, 0xbb5089aeff3a311b, 0x2877c7ff0057170e, 0x5b05bc618610ff3d, 0x2905007258050080, 0xffba83ca38ff006d, 0x007b140b3ad1943d, 0x08e3ffba345429ff, 0x00090092220ebcbc, 0xffba02e2feff008d, 0x009b060dbc873556, 0x5514ff3b8442e3ff, 0x790500e8c004bb3e, 0x000d00ba100e00c8, 0xff3c499344ff00b5, 0x00c3170e385cbb23, 0x7564ffbb8d3acaff, 0x140e00da02093a7e, 0xff3a097e3fff00d5, 0x00e3070eba0853bd, 0x2128ffbb961fd5ff, 0x070d010c1c0e3b11, 0xdcff00f9170e00fe, 0x3c4aee8cffbad91d, 0xb9fc28ff0107170e, 0x6c05bd08f6afff3b, 0x40ff01192b0e011e, 0xbc3cac71ff3d1196, 0xb059afff01278005, 0x79053a61cfa1ffbb, 0x0b0b0178770501bc, 0x2b0e014a00120158, 0xffbbcd704cff0145, 0x01530a0b3c48e1eb, 0xa83aff3a75a82aff, 0x1f0e016a0002ba8d, 0xff3c3fb0fdff0165, 0x0173320ebac4eed9, 0x6eb4ff3b103d7dff, 0x7805019c230ebcb3, 0xe3ff01890108018e, 0x3be41c38ffbc24c5, 0xf631ceff0197060d, 0x00123b3db2ecffbc, 0xfdff01a9010c01ae, 0xbd1334a4ff3acc5c, 0x139835ff01b7280e, 0x000fb9e35038ff3d, 0x010801e40a0b0204, 0x37ff01d1330e01d6, 0xbbf3e6c3ff3b7b2d, 0xec0e19ff01df8505, 0xc604bcd3d98dffbb, 0x39ff01f1c20401f6, 0x3cfea9f3ff3bd601, 0x2d80beff01ff8905, 0xc604bd5eeb32ffba, 0x8a05021a0a0b0228, 0xff3b8d7004ff0215, 0x0223c204bbc4bc57, 0xda05ffb89448fbff, 0x8305023a8705bad1, 0xff3ac2b599ff0235, 0x02432a0e3cd781bf, 0x5034ffb948806fff, 0x8b05035fca04bc63, 0x1c0e028f1d0e02d3, 0x020d026a8a050278, 0xff3bdea69bff0265, 0x0273010839151029, 0x6987ff3a5091ebff, 0x0002028a010cbcd1, 0xffbda261b1ff0285, 0xf1a1f0ffbd4c4bd5, 0xa56e0502b371053c, 0x49ceff02a00d0b02, 0x0ebb936207ff3ae2, 0x3d8faeb9ff02ae2b, 0xc583053b9eaba7ff, 0xd1ccff02c0310e02, 0x053c4a4e5effba7a, 0x3c98a7d9ff02ce84, 0x1b0012ba2d6299ff, 0xed190e02fb250e03, 0x8525ff02e8000802, 0x083b6cc021ffbbf7, 0xbaa26755ff02f600, 0x0d060dbcf4e8faff, 0x5145ff03080b0b03, 0x0bbcf3c464ffbb97, 0x3c088aa5ff03160b, 0x3fc9043d21e4dbff, 0x2c190e03312b0e03, 0xe6ff3c076480ff03, 0xff033ac804bba442, 0x86e234ff3cdbb7c2, 0x4c010c03510b0b3b, 0x88ff3bc604a0ff03, 0xff035a01083dd91d, 0xafc548ff3c066a73, 0xab8b0503efcd04bc, 0x7d0011038b010c03, 0xb4c0ff0378250e03, 0x12bb843d8fff3bc8, 0x3cef356fff038600, 0x9d0208ba2cc5deff, 0x0791ff03987c0503, 0x0bbb0217d0ff3ba3, 0xb9063588ff03a60c, 0xcf2b0ebc8b3742ff, 0xbc000903c1000803, 0xe5ffbca54b73ff03, 0xff03ca000f3b832f, 0x61d090ffbcfa8220, 0xdc000803e100123a, 0x48ff3cc958cdff03, 0xff03ea310ebbc32c, 0x1a2218ffbaff5b15, 0x178505043700023c, 0x047c050409840504, 0x80ffbb83f546ff04, 0xff04120b0b3be10c, 0x06f189ffbd08be92, 0x242b0e04298805bc, 0x47ff3ceb29e7ff04, 0xff0432010c3a2fe4, 0xe7d1caffb84091c0, 0x4d0b0b045b2b0e3b, 0x6c4dff0448010c04, 0x0cbc150418ff3c83, 0xbc599ae3ff045601, 0x6d350ebd1f2c38ff, 0x8085ff0468001104, 0x0b3c37b25effbb5d, 0x3b9d54b3ff047603, 0x7c8d05bcc5cbd1ff, 0xf80e0e0584110b06, 0xaf040e04cf0e0b04, 0x9c880404a18b0404, 0xcaffb98af6adff04, 0xff04aa030e3b93b4, 0x4d9c28ffb9f27f22, 0xbcb20404c10002bc, 0xebff3ac44e5cff04, 0xff04ca0b0bbb832c, 0x679868ff3a14ddcd, 0xe5bb0404f3070dbc, 0x4a1aff04e0a70404, 0x0e3cc5bff8ffb9a7, 0xbc4dc303ff04ee0d, 0xa4f4ffbcfd7964ff, 0xba040540bb04bcb5, 0x1d0e051284040520, 0xffbc8524c0ff050d, 0x051baa04bd072d14, 0xeb0aff3b5fd32eff, 0x00080532030bba8e, 0xffbc6ec493ff052d, 0x053b190ebbbaaf00, 0xbe28ffbcabf763ff, 0xbc0405640108bcdb, 0x69ff05510b0b0556, 0x3d397f2dffbbc605, 0xa6b93fff055f0002, 0x0b0bba4b1905ff3a, 0xa6ff0571030b0576, 0x3b3c996effba7122, 0x1069a4ff057f060d, 0xc8043be1977dffbd, 0x000205d0010c060b, 0xbd0405a2c10405b0, 0xff39638d61ff059d, 0x05abc704bbf753c7, 0x1061ff3bab47bbff, 0x9d0405c2c604bc5b, 0xffbb936a25ff05bd, 0x05cb060d3a63c10e, 0xccf7ffbc431cebff, 0x050e05ebb2043b4b, 0xeeff05e1970405e6, 0xbbb87e57ff3c104d, 0xfdb704bd195bd5ff, 0x055eff05f8000805, 0x0e3baf0b73ff3c9e, 0xbcaf60c9ff060603, 0x38070e3a6a141bff, 0x1c010c0621000206, 0x98ffbbae9ce0ff06, 0xff062a010cbd58b1, 0x06330012ba0fe280, 0x7f00ff3b9fb260ff, 0x0002065c0d0e3a72, 0x24ff06490208064e, 0xbbed7330ff3d6115, 0x543619ff0657010c, 0x000cbc2afce3ff3b, 0x90ff0669140b066e, 0x3b14d5efffbc949f, 0x02a97fff0677230e, 0x9305bbe27938ff38, 0x02080707020d0793, 0x040b06acbe0406cc, 0x84ff0699250e069e, 0xbbe38991ff3a7096, 0x8c09a4ff06a7220e, 0x2b0ebc0042c3ff39, 0x44ff06b92a0e06be, 0x3c7d37e8ffbad486, 0xa8cd89ff06c72d0e, 0x020bb9859cbeffbc, 0xb30406e28e0506f0, 0xffbbb79740ff06dd, 0x06eb070ebc22d900, 0x3b66ffbb9a2900ff, 0x8f050702230e3b30, 0xff3bd0ceeeff06fd, 0x8329c0ffba3cf37a, 0x2f0208074f050bbc, 0x1c01120721c00407, 0xaaff37b4f552ff07, 0xff072a060e39a1ff, 0x84c2fdff3c79be53, 0x3c8f050741010cb9, 0x4fff3b5cb1c7ff07, 0xff074ac404bb36fe, 0xd0a4e2ff3b93fc73, 0x65190e07730b0b3c, 0x56d2ff0760000907, 0x12b88db5abff3983, 0xb9b0c73dff076e00, 0x85c904b9536d19ff, 0x96d7ff0780c30407, 0x04ba17985effb898, 0xba82760dff078ecb, 0x1a020d3a23034bff, 0xbf050b07d6000808, 0xac000207b1030b07, 0xc0ff3b303763ff07, 0xff07ba0002ba89c6, 0x368ca1ffbbf90765, 0xcc040e07d1cd043b, 0xdeff3b888798ff07, 0x3cc6d080ffba6a9c, 0x07ecc40407fa000f, 0x23c34aff07e79405, 0xca04bb568eb4ff3b, 0xff3b982bdaff07f5, 0x080c000cbb4cf032, 0x5db1d2ff0807c804, 0x0b0bb9c46e90ffbb, 0xffbc84caf9ff0815, 0x0862100b3bae7340, 0x08346d0408421f0e, 0xf4c26dff082f6b04, 0x0d0ebbcbf9dcff3b, 0xffb9bcbd04ff083d, 0x0854010c3a6575ea, 0xe1cd37ff084f000c, 0x00023b903686ffba, 0xff3ae2d220ff085d, 0x0886190ebc709d1a, 0x0873000c0878170e, 0x6972ffba3df98cff, 0x2aff088100113a95, 0xbc148773ff3c2520, 0x0893cc0408989605, 0xc4c4ff3c0a1facff, 0xc6ff08a11f0ebb33, 0xbbf16cc6ff3c812a, 0x0aeac6040d269505, 0x0942b40409cec104, 0x08de0a0608fe9d04, 0x08cb550408d08e05, 0xa361ffb919cb26ff, 0x3dff08d9000f3935, 0x3a3b19d3ffbb04ee, 0x08eb330308f0030b, 0x08b1ff3b82ccaeff, 0x32ff08f9000fbacd, 0xbb2115c8ff3ba467, 0x09140b0609223303, 0xc4c042ff090f3305, 0x01113bebf138ffba, 0xffbd26b50cff091d, 0x09342a0ebb06db61, 0xfa4e15ff092f9e04, 0x030b397d2e86ffbb, 0xff3b5f4950ff093d, 0x098a3103baa56d47, 0x095cc004096a3003, 0xeb72c8ff09570002, 0x01083ba84644ffba, 0xffbd824d55ff0965, 0x097c00123ce039b0, 0xb5d703ff0977010c, 0xb804bd410fc8ffbd, 0xffbd044ac1ff0985, 0x09ae010c3c15acd5, 0x099bb50409a0000c, 0x7f8dffbbb9162eff, 0xa5ff09a93705ba4d, 0x3988b4eeff3ae83b, 0x09bb2b0e09c07205, 0xa109ff3b1cd667ff, 0x1bff09c9220ebbc3, 0x3c6ff091ffbab2b4, 0x0a1a190e0a5e0002, 0x09ec020e09fa0d0e, 0x1917b4ff09e7000f, 0x070e3c2c3079ffbc, 0xffbb294af3ff09f5, 0x0a0c070d3a90d5c3, 0x6b673aff0a076205, 0x0e0e3a9227f6ffbc, 0xff3d176ab3ff0a15, 0x0a3e130bbb1c6786, 0x0a2bc2040a300011, 0x30c0ffbcbc07ecff, 0x64ff0a39060dbb19, 0x3cbdef22ffb9a89d, 0x0a4b2b0e0a50c204, 0x5d65ffbc66b0faff, 0x9eff0a59220e3c92, 0x3bb12e82ffbc8baa, 0x0a860e060aa66e05, 0x0a73060d0a782b0e, 0x08bfffbc0d4dc9ff, 0xb4ff0a812d0e3b7a, 0xbb008e6aff3cec4a, 0x0a93150e0a986805, 0x2b18ff389d0801ff, 0x56ff0aa101073ba4, 0x3ca92f36ffbd240f, 0x0abc120e0aca8205, 0xf9e48dff0ab7030e, 0x70053bc09ff6ffbb, 0xff3c3657aeff0ac5, 0x0adc8305bb4fffe7, 0x5a0993ff0ad71f0e, 0x130bbc465edeff3c, 0xffb9efdf92ff0ae5, 0x0c0a01083b27cada, 0x0b3a00080b7e1f0e, 0x0b0ccb040b1a0207, 0xfa344eff0b07040d, 0x0111bad66ec5ff39, 0xff3a7a06c7ff0b15, 0x0b2c88053c0ed127, 0x2a98bbff0b270011, 0xca04bb37fa8eff3c, 0xffbaa4e966ff0b35, 0x0b5e7e053c03b466, 0x0b4b78050b50060d, 0x1838ffb94e8583ff, 0x11ff0b597b053cb6, 0x3cdc8a16ff3bac72, 0x0b6b060d0b708005, 0x25b5ffbd1c49f5ff, 0x3bff0b79c904bc20, 0xb9abc8dcffbb4766, 0x0ba674050bc67805, 0x0b936e050b987005, 0xcae8ffba713d68ff, 0xeeff0ba1010c3bb9, 0xbb2d9a9eff3ca5e2, 0x0bb30d0b0bb87505, 0x11f2ffbb2b577bff, 0x22ff0bc10107bcee, 0x3bcb7f6bffbc4f85, 0x0bdc01110bea7905, 0x20585fff0bd7310e, 0x330e3cc3cf75ffbc, 0xff3c9ae11eff0be5, 0x0bfc0306b9a66d9a, 0x9b6e9dff0bf7060d, 0x0406bac8df21ff3a, 0xffbd194409ff0c05, 0x0c9a75053c178800, 0x0c36340e0c56060d, 0x0c2361050c28cd04, 0xbfa5ffba129bccff, 0xd7ff0c310b0b3998, 0x3c925874ffbb8740, 0x0c43360e0c48040b, 0x7318ffbce00961ff, 0xabff0c51cb043b52, 0xbbeb8f66ff3c0d0f, 0x0c6c68050c7a2b0e, 0xe64fe7ff0c67070d, 0xcb043c28e736ffba, 0xffb9327775ff0c75, 0x0c8cc704bb7ff518, 0xb23826ff0c870002, 0x300ebc449c15ff3c, 0xff3c8d3e9dff0c95, 0x0ce2010cbb86de69, 0x0cb4070b0cc2000f, 0x8d6e05ff0caf020d, 0xcb04bcfabaa2ff3b, 0xff3c67fba3ff0cbd, 0x0cd400123ab6d683, 0xedcb96ff0ccf070d, 0x060d3c4d0473ffba, 0xffb83bc6a4ff0cdd, 0x0d06c8043c1973f5, 0x0cf3030b0cf80b0b, 0x07c7ffbc4071a4ff, 0x98ff0d01c7043ce6, 0x3df79df4ff3d862f, 0x0d13ca040d180d0e, 0x1c71ff3c455a34ff, 0x66ff0d2102083913, 0xbc4f9d51ffbb26dc, 0x0df0020d0f03220e, 0x0d6801070d767804, 0x0d4c070b0d5a9605, 0xa02dc0ff0d47050b, 0x0002bb09beb0ff3a, 0xff3b7fd660ff0d55, 0x0d63010b3bff7380, 0xb728ff3b9c1ef8ff, 0xa8ff0d7100023b9a, 0x3bb8be08ff3bbbc2, 0x0d9500020db59004, 0x0d8b96050d90030b, 0x4188ffbbe4b330ff, 0x12bbb12590ffbc02, 0xff0da296050da701, 0xd482eeff3b0fd046, 0x5ae5ff0db088043b, 0x04bc02d26bffbaa9, 0x110dcb000f0dd0cb, 0xba8a1b6dff0dc600, 0x5a3eff3a9d7162ff, 0x030b0de2000fbc0d, 0xffbafabd66ff0ddd, 0x0deb010cbc122f80, 0x68a0ff3aac6307ff, 0x9c040e77000fbb11, 0x000e0e1c030b0e33, 0xd6ff0e09010b0e0e, 0xbc0442dbff3abe84, 0xe4d000ff0e17020b, 0x000e3c345de0ff3b, 0x01ff0e290a0b0e2e, 0x3cc91270ff3c06d4, 0x57cb043cb08ef0ff, 0x4401110e49b9040e, 0xf2ffbcf8fe28ff0e, 0xff0e52c704bb656d, 0x90655bff3ada2ec5, 0x64030b0e690107bb, 0x25ff3bd3692bff0e, 0xff0e7200083b2788, 0x733300ff3bcd0ee0, 0x9fca040ebf080e3c, 0x8c00020e91090b0e, 0x6bffbb650afdff0e, 0xff0e9a0108ba2789, 0x9f8936ffb8687225, 0xac96050eb100113b, 0xfcffba965209ff0e, 0xff0ebacb043b84ab, 0xd31cb8ff3c9e1f86, 0xd50b0e0ee30002bb, 0x4653ff0ed000120e, 0x0eba069be3ff3c57, 0xbb19244eff0ede11, 0xf50b0e3ae0c23fff, 0x0388ff0ef0000c0e, 0x08bc3f0820ffbb25, 0x371af3dcff0efe01, 0xb7030bbb5797dbff, 0x14230e0f58000d0f, 0x010b3bbab600ff0f, 0x96050f2a240e0f38, 0xff3a8a5100ff0f25, 0x0f339605b9055800, 0x8780ffbbe490d0ff, 0x96050f4ac0043a73, 0xffba828800ff0f45, 0x0f530107babc9780, 0x7380ffbc151340ff, 0x000f0f7c230ebbc0, 0xc6040f7200020f77, 0xffbba0b440ff0f6d, 0x0ea680ff38ff8000, 0x01123ace4520ffbc, 0x01070f92000c0f97, 0xff3a98bdb5ff0f8d, 0xc24280ffbb0566d0, 0xa4000c0fa9280ebb, 0x00ff3bcefee0ff0f, 0xff0fb201073c70a5, 0x436a00ff3b108a33, 0xdf000d0fedcb04bb, 0xcc00020fd1c0040f, 0x00ffbace4d00ff0f, 0xff0fda0002bac909, 0x916b00ff3c6b9600, 0xabc0ff0fe800023b, 0x0ebcc2a060ffbc7e, 0x02100ccd04102c2b, 0xbc4488e0ff0ffe00, 0x2edcabff1007230e, 0x230e3ba44c80ffb9, 0x49ff10190012101e, 0x3c82d644ffba68c6, 0xc00239ff10270107, 0x050b3baffad5ffba, 0x02bc002740ff1035, 0xbbca0080ff103e00, 0x8e89e0ff1047070b, 0x00133bd63e00ff3c, 0x03e8000000080000, 0x104c000000010000, 0x0007000000000000, 0xc704047b8c0508d3, 0x6a05012cc1040248, 0x6805005c021100a0, 0xbe04002e020d003c, 0xffb82343e1ff0029, 0x00370c06baac51d1, 0x21b5ff382464beff, 0xa504004e0108ba66, 0xffba049da4ff0049, 0x00570a0bba21e2e9, 0xb6c3ffbbfbd7d8ff, 0x02080080170e3bd9, 0x74ff006d25040072, 0x3b15e3d9ffbb06e5, 0x0d45d9ff007b030b, 0x6c04bcb57808ffbc, 0x5fff008d030b0092, 0xbc7b3707ffba2690, 0x794616ff009b2905, 0xc0043cdd338bffbc, 0x010b00c8790500e8, 0x47ff00b52b0e00ba, 0x3c1fde5affbb2190, 0x37a08dff00c3bc04, 0x330e3a8e1ec4ff38, 0x8cff00d5bf0400da, 0x38be4cc5ff3791ef, 0xaf37feff00e3aa04, 0x7805ba085fe6ff3d, 0x0e0b00fe7405010c, 0xff3b587edeff00f9, 0x01072b0ebc4fe509, 0x351fff3cf5f1d7ff, 0x340e011e010cbc0a, 0xff38dfbb1fff0119, 0x01277a053d86060e, 0x9397ffbcc3091dff, 0x000f01bc75053aa0, 0x0d0e015800080178, 0x49ff0145020d014a, 0x39ac76abffbc60eb, 0xb76f62ff01532905, 0x5505bc03131bff3c, 0xe8ff01650a06016a, 0xbb6b9748ffbd2e97, 0x92f043ff01730108, 0x73053bc34998ffbc, 0xc404018e6d05019c, 0xffbab3018aff0189, 0x01976f0539ac173b, 0x3a7eff3c7a4f2fff, 0x070d01aec504bb51, 0xffbc04d907ff01a9, 0x01b702083c7363aa, 0x5409ffbb63d7edff, 0x210e020481053d0d, 0x1f0e01d6010c01e4, 0xffbad4a414ff01d1, 0x01df120bbd34a106, 0x6a67ff38e14d34ff, 0x0e0b01f67b053cba, 0xffbacf5042ff01f1, 0x01ff01083c21bff5, 0x86c0ffbbb5727dff, 0x8305022889053b07, 0x59ff02150112021a, 0x3bc4cf09ffbba5c1, 0x0a2637ff02230008, 0xc5043a6d5e76ffba, 0x27ff02358b05023a, 0xbb101b54ff3b195f, 0x374f4bff0243010c, 0xca04bc97b061ff3b, 0x220e02dc250e035f, 0x0011027884050298, 0x3bff02657605026a, 0x3b53bc86ff3d181d, 0x54919cff02730108, 0x000fbc13abd6ff3a, 0xc0ff0285c804028a, 0x3d02bd41ffbc1c5d, 0x9922c6ff02931f0e, 0x000cbc3866e2ffb8, 0xc90402ae000902bc, 0xffbc168253ff02a9, 0x02b70002bcb0076e, 0xed91ff3cd11578ff, 0xc80402ce010839c4, 0xff3bce5e39ff02c9, 0x02d7060dbc25d5fd, 0x25d7ff3d117652ff, 0x00120324070d3c27, 0x640502f6c8040304, 0xff3bed37f4ff02f1, 0x02ff7f05bc0eb27b, 0x8df9ffbbcbeee9ff, 0x0009031600023ccb, 0xffbb3ceeceff0311, 0x031f010c3c360d57, 0x7da7ff3a8cf13cff, 0x8705033f00083bf6, 0xb6ff03356d05033a, 0x3ccf24abff3c485e, 0x510208bbbcdf40ff, 0xec0fff034c0e0b03, 0x0cbcc567fdff3b5f, 0x3c08de5cff035a01, 0xefcd043d3f8b83ff, 0x8b010c03ab8b0503, 0x78250e037d001103, 0x79ff3bb4a2bcff03, 0xff0386cc04bb6e08, 0x408f67ffba98b1f8, 0x981406039d020d3b, 0x47ff3cbdcef3ff03, 0xff03a6070dbb58c5, 0x085e09ffbaf3dba9, 0xc1000803cf000c3d, 0x624fff03bc2e0e03, 0x123d002422ff3bbf, 0xbb991323ff03ca00, 0xe10b0b3c0291a9ff, 0x1f5aff03dc0d0e03, 0x083b21a743ffbd5e, 0xbc990199ff03ea00, 0x37340e3abde5f5ff, 0x0902080417010c04, 0x964bff04047f0504, 0x05bbc0d4c4ffbd0c, 0xbc13f8a8ff04127c, 0x29260e3c30662dff, 0x6f80ff0424020804, 0x08bcf67e3aff3b72, 0x38119387ff043201, 0x5b000c3c508565ff, 0x480b0b044d830504, 0xcdffbb928c50ff04, 0xff04560b0b3c9f5a, 0xeeeacbffbbff7626, 0x68010c046d0b0b3b, 0x87ffbbc977c1ff04, 0xff047683053bb15b, 0xd2576fffbca58386, 0x9f110b06a08d05bb, 0xcf0e0b05130e0e05, 0xa1000804af060e04, 0x0ba8ff049c050e04, 0x0ebc3dadf2ff390f, 0xbaba176dff04aa03, 0xc1010bbc5db1fcff, 0x8952ff04bc011104, 0x0ebd3f52b1ffbb59, 0x3ac4ec95ff04ca07, 0xf3a20439d4ba1fff, 0xe0030e04e5070e04, 0x50ff3b77ff7cff04, 0xff04ee060dbc8d23, 0x49481fff3b9b41d5, 0x00040e0505100b3d, 0x74ff3d0f612bff05, 0xff050ea304bc4a8b, 0x240842ffbd1056b5, 0x3bb304055bb504bc, 0x28060d052d1f0e05, 0x12ffbb1c22a5ff05, 0xff0536af043be616, 0x04fe16ffbb9f1ecb, 0x480112054d030b3c, 0xeeffbbbe63c2ff05, 0xff055601083d13ac, 0x247f28ffbc74362c, 0x710008057f02093d, 0xdecaff056cb90405, 0x04babb292bff3c35, 0xbb779f6cff057abc, 0x91030b3af56277ff, 0xdcb6ff058c190e05, 0x0e3cb4d8f0ff3c80, 0x3bae99c4ff059a19, 0x26c8043d004068ff, 0xcb000205eb010c06, 0xb8b20405bd120e05, 0x86ff3afd6f3aff05, 0xff05c60009bbc5d1, 0x821927ff3b653f57, 0xd8b30405dd080ebc, 0xf5ffb96b9ebfff05, 0xff05e60d0e3ba098, 0x041991ffbbae8d87, 0x010008060f00023a, 0xdc54ff05fc060d06, 0x083bf44438ffbab0, 0xbd156940ff060a01, 0x21070ebca45048ff, 0x72f5ff061c001206, 0xffbc031170ff3d34, 0x065c140b3dc841f6, 0x06370012063c0108, 0x8060ffbbd59f00ff, 0x0011064e000c3c78, 0xffbc102c60ff0649, 0x06570e0ebcc36f70, 0xc730ffbcd69f00ff, 0x00020680c904bca7, 0x0cff066d170e0672, 0xbd87d1e7ff3c1465, 0xa4130bff067b0008, 0x0a0e3b4935c5ff3d, 0x1eff068d010c0692, 0x3cfd83c0ff3bf165, 0x9d87c6ff069b190e, 0x930539d8f240ffbb, 0x0208072b020d07b7, 0x1d0e06d0be0406f0, 0x61ff06bda00406c2, 0xbac9fd52ff39df12, 0x935ae6ff06cb9105, 0x1d0e3c10347cffba, 0x64ff06dd190e06e2, 0xbd069cb9ff3b9d72, 0x02d571ff06eb040b, 0x070e3bc04728ffbb, 0x80ff06fd020b070b, 0xff0706000cbb8abe, 0x13ee80ffbbb5090c, 0x180d0e071d8e053c, 0x00ffbb8d9a00ff07, 0xff0726030bbc1290, 0xff2525ff3ad95ae2, 0x5302080773050bba, 0x4001110745c00407, 0x36ff37a2d87aff07, 0xff074ec5043991ce, 0x08403bff3af1c0cd, 0x60a3040765ae04bb, 0xe7ffbaeae42bff07, 0xff076eca04bc4399, 0xf6248cff3b0eae7e, 0x89190e07970b0bbb, 0x692bff0784000907, 0x12b87f1875ff396c, 0xb99f1999ff079200, 0xa9c904b93e48d2ff, 0x554eff07a4c30407, 0x12ba086fb5ffb889, 0x3afefdffff07b200, 0x47020dbacd3f7dff, 0xe3050b0803000808, 0xd0c90407d5030b07, 0x60ffba136ac8ff07, 0xff07decc043b8c93, 0xb1060bffbb155e10, 0xf0c90407f50b0b3c, 0x26ff3a0bafeaff07, 0xff07fe010cbba68c, 0x856ad5ff3c210139, 0x19070b0827170e3a, 0xce85ff0814020b08, 0x053bd64cf7ffbb8e, 0xbbfa8a90ff082295, 0x39c9043ba7f600ff, 0x795cff0834230e08, 0x04bccc575cffbaca, 0x3c8c48bcff0842ca, 0x8f0e0bbb1c06cfff, 0x619605086f010b08, 0xe411ff085c050e08, 0x0dbaa301deff3b6f, 0xbc3d11cfff086a06, 0x810012baa8a1e1ff, 0xfa1eff087c001108, 0x0ebc0f1024ff3922, 0xb88c9761ff088a17, 0xb39405b7004298ff, 0xa0060d08a5100b08, 0x86ffbb9b89eeff08, 0xff08aea4043d0096, 0xe1778dffbc04e03f, 0xc0000e08c5b20439, 0x47ffb6233ad4ff08, 0xff08ce1d0ebc184e, 0x0ed5edff39da1387, 0x17c6040d539505bb, 0x6fa90409fb000d0b, 0x0b0002092b9a0409, 0xf8000508fd510509, 0x37ff3b3a3db9ff08, 0xff0906290eba2087, 0xef0874ff3b144e54, 0x185e04091d0006bc, 0x6effbc235804ff09, 0xff092612053c306b, 0xa97919ff3b5d01b6, 0x410002094f9c04bc, 0xc8ffff093c3c0109, 0x0ebcf079b2ff3d0a, 0x3c76ace0ff094a29, 0x619e043d8f9ff5ff, 0xa830ff095c7c0509, 0x043b3f1680ffbca5, 0x3d0025dbff096a9f, 0xb70207baa84b6eff, 0x8900020997030609, 0x4cf2ff0984810509, 0x0b3a955636ff3c89, 0xbc007ef5ff099203, 0xa901053c16688cff, 0x9ed2ff09a4020809, 0x023b8e7e00ff3d60, 0xbc213b41ff09b200, 0xdb7705b9d24654ff, 0xc83b0109cd1c0509, 0x71ff3d5c8882ff09, 0xff09d6000cbc7651, 0xdf050fffbbbd5356, 0xe8300e09ed83053b, 0x5dffbcd85320ff09, 0xff09f60002bd9516, 0xa314c7ffbcbd93cb, 0x4775050a8b2a0e3b, 0x19c2040a2702110a, 0x4c1fff0a1490040a, 0x0e399e07b8ffb840, 0x39e4c6c5ff0a2226, 0x393505bc11be5aff, 0xc18bff0a340b050a, 0x02bc1b914bff3bbc, 0x3baa93fbff0a4200, 0x6b050d3cf6f59aff, 0x58a7040a5d0d0e0a, 0x39ffbc025130ff0a, 0xff0a661d0e3b8903, 0xbda40cffbba2b6e9, 0x78010c0a7d260e3b, 0x3fff39a550d0ff0a, 0xff0a860112baafdf, 0x5b40ddffbc8ed453, 0xb33c050ad3010d3c, 0xa034010aa50b050a, 0x50ffbb3c1c43ff0a, 0xff0aae3c013c29c5, 0xb10f50ffbba3a73b, 0xc02b0e0ac59604bc, 0xb7ff3c1a4ecbff0a, 0xff0ace030bbcad2c, 0x096149ffbd96287e, 0xe9b5040af7b904bd, 0xbaacff0ae460050a, 0x0539b3f22affb8cf, 0xbcbbd710ff0af206, 0x09bb043b32e392ff, 0x787cff0b040b0b0b, 0x05bce8e06affbb9c, 0x3a51c083ff0b1260, 0x3701083af354c7ff, 0x67cc040bab1f0e0c, 0x39170e0b471d0e0b, 0x76f7ff0b34000f0b, 0x043a3f5fc1ffba77, 0xbb365dceff0b42cb, 0x59060d3baf914aff, 0x4bd0ff0b54030b0b, 0x0cbd077ad5ff3c91, 0x3b8ae7ccff0b6200, 0x8b000c3ccd2ca4ff, 0x781d0e0b7d01070b, 0xcaffbb04bc9cff0b, 0xff0b860012bc9cd2, 0xdebe23ff3b1a1e5c, 0x9887050b9d8a053b, 0xf8ffbb1fc2deff0b, 0xff0ba6190ebcbf43, 0x8ad6e1ff3a8e6c05, 0xd36c050bf37805bb, 0xc06a050bc500080b, 0xd4ffbafe5541ff0b, 0xff0bce0b0b3c4d15, 0x363a4dff3b88915d, 0xe0070b0be5000fbb, 0xf9ffbb094c4fff0b, 0xff0bee77053cfa7d, 0x2c8c3bffba1967f0, 0x09280e0c177905bc, 0x31a0ff0c0400020c, 0x0e3cdf9bb9ffbcba, 0xbc82f33bff0c1230, 0x2901073a33a09aff, 0xd978ff0c2400120c, 0x05398484baff3b0a, 0x3a4c09d0ff0c3281, 0xc77505ba2b3ed1ff, 0x636c050c83060d0c, 0x5068050c55cc040c, 0x6affb9664b59ff0c, 0xff0c5e2a0eba8847, 0x14fa4fffbce406f7, 0x70220e0c75ca043c, 0x78ffbbb4afeaff0c, 0xff0c7e280e3bb374, 0x3e465eff3d0b5086, 0x9900120ca7c904bc, 0x25c0ff0c94040b0c, 0x0bbb6f7104ff3c0f, 0xbaec9b75ff0ca20b, 0xb9220e3caca022ff, 0x614fff0cb41f0e0c, 0x05bd2b2128ffbab8, 0xb9f741abff0cc26a, 0x0f190e3bbae392ff, 0xe1080e0cef0b0e0d, 0xa94fff0cdc000c0c, 0x11bb057a71ff3b69, 0x3ca97913ff0cea00, 0x010012bc67b7abff, 0x2f1aff0cfccb040d, 0x0dbc3130d6ffbb71, 0x3a80f963ff0d0a06, 0x3302083c0a090cff, 0x200b0b0d25c8040d, 0xa1ff3ac55156ff0d, 0xff0d2e0002bc4225, 0xc01e71ff3b80c426, 0x40020d0d45000f39, 0xa5ff3c78aaecff0d, 0xff0d4e010cbd7b5b, 0x68528aff3ad1e282, 0x7701120f4b1d0ebc, 0xa700080deb030e0e, 0x7900020d87010e0d, 0xf857ff0d7400110d, 0x0bbb3cc08eff3a2f, 0x3b292859ff0d8202, 0x99010b39eff9c4ff, 0x455dff0d9400120d, 0x0e3b941d88ff3a8b, 0xbb83baeaff0da202, 0xcbc304ba88f869ff, 0xb800020dbd070b0d, 0x67ffbba2139fff0d, 0xff0dc600023a588f, 0x60b64cff3b1fa7f5, 0xd8020b0ddd000cbb, 0x6dffbb1d70f3ff0d, 0xff0de601083b41fc, 0x03b5c0ffb802645d, 0x130b0b0e330108bc, 0x00010c0e05ca040e, 0x7cffb9c5b238ff0e, 0xff0e0e000c3c5fc9, 0x70ad37ff3a4a38e0, 0x20140e0e25060dba, 0x8fff3a81c6ecff0e, 0xff0e2ecd043bb91f, 0x44d76bff3b03a129, 0x49cd040e570012bb, 0xeec8ff0e44050e0e, 0x0ebb2ad708ffbbb5, 0x3b1ed160ff0e5214, 0x690002382e2d55ff, 0x9180ff0e64cd040e, 0x0dbb820c68ffba2c, 0xbbaf8605ff0e7206, 0xd1030ebbf3212cff, 0xa3000c0ec3060d0e, 0x90000f0e950a0b0e, 0x8effba1e2cdcff0e, 0xff0e9ea4043b31c8, 0x0eb669ff3c8aac2b, 0xb0010c0eb5090b3b, 0x29ff3abd2c00ff0e, 0xff0ebebc04bbb539, 0xeb61b3ffbc998cf0, 0xb360ff0ecc070dba, 0x043c038c40ff3caa, 0x0b0ef090040f10b9, 0xff0ee696050eeb03, 0x1ae0a0ffbbca5300, 0xb004bc8615b8ffbc, 0x58ff0efd050e0f02, 0x3ad01e2bffbbb623, 0xb3480dff0f0b030b, 0xbb04bc7f0400ffbb, 0x010b0f26030b0f2b, 0xff3ce93e60ff0f21, 0x738400ff3d29ce80, 0x38000f0f3dbe04ba, 0xa0ff3be0dbddff0f, 0xff0f46c0043a45ce, 0xac3eaeffbb9856c8, 0xd60e0b0ff60008b9, 0x7200110f92030b0f, 0x6801070f6d000c0f, 0x70ffba417d80ff0f, 0xbc17a540ffbb80c2, 0x0f7fc7040f84ca04, 0x4378ffbacdd325ff, 0x3eff0f8d280e3a28, 0xbad5c880ff3b77cc, 0x0fa81f0e0fb69605, 0x315972ff0fa3000c, 0x00123ba4061affbc, 0xff3b578923ff0fb1, 0x0fc80002bac19cff, 0xd0cbd0ff0fc30012, 0x00113929ba00ffbb, 0xff3c627070ff0fd1, 0x0fe800023c04a9f0, 0x14ad00ff0fe3060d, 0x0011bbd1d520ffbb, 0xff3ca6ef10ff0ff1, 0x102c050b3c4ec7b0, 0x10101f0e101e060d, 0xf909f0ff100b030b, 0x030b3b481410ff3a, 0xff3a4e7880ff1019, 0x1027030b3a86f900, 0x1658ffbb72b3c0ff, 0x230e103e0002bbe0, 0xffbbf95230ff1039, 0x1047060d3b4442a0, 0xd2f0ff3bbc40c0ff, 0x0008000000133c7c, 0x0001000003e80000, 0x000000000f980000, 0x8c0508d300070000, 0xc1040248c704047b, 0x021100a06a05012c, 0x020d003c6805005c, 0xc8ff0029be04002e, 0xba9b1654ffb812f1, 0xd9e68fff00376105, 0xb204b9f89ac6ff37, 0x7fff0049100b004e, 0xba312f85ff3ad852, 0x8da667ff0057220e, 0x170e3b632aa1ffbc, 0x2905007201090080, 0xff3a561204ff006d, 0x007b0002bb87ddca, 0x1220ffb983a000ff, 0x0002009202083dae, 0xffba175b5fff008d, 0x009b1205bc87fe0e, 0xd320ff3d46fe10ff, 0x790500e8c0043c7a, 0x000600ba100e00c8, 0xff39cfb56fff00b5, 0x00c3bf04bbbeee9d, 0x7613ffb98aaac2ff, 0xbf0400da00093bf5, 0xff397ad242ff00d5, 0x00e3230e3782dee3, 0x589cffb9fa4f08ff, 0x310e010c000cbaa3, 0x87ff00f92c0e00fe, 0xbc24c3fdffb9e958, 0xae8600ff0107000f, 0x0b0b3c885696ffbc, 0x55ff01190106011e, 0xbd846f4eff3a2412, 0x5ed98aff0127140b, 0x79053b4624ebffbc, 0x0b0b0178770501bc, 0x7105014a00110158, 0xff3ba4ab66ff0145, 0x01537005bc3f3b2c, 0xa7d1ff391333f9ff, 0x6305016a0208ba60, 0xff3b5f5b24ff0165, 0x01735d05bbaa9a0b, 0x95deffbc94c19cff, 0x0002019c340e3c41, 0x5fff0189120b018e, 0xbba07966ff3b2cb7, 0x16b5c3ff0197280e, 0x040dbc33abe5ff3b, 0x8aff01a9030b01ae, 0xbc447b60ff3c36f4, 0x3aaba9ff01b70006, 0x000fbd6a0714ff3d, 0x010801e4080b0204, 0x08ff01d18b0501d6, 0xbd0c2ff4ff39764e, 0xa9812eff01df010b, 0xc604bc7efd25ff3b, 0x6eff01f1c30401f6, 0x3cf14bdaff3c0a0c, 0x0853c2ff01ff8905, 0xc604bd49c5c2ffba, 0x8a05021a0a0b0228, 0xff3b811024ff0215, 0x0223c204bbb2e2bb, 0x493effb929247aff, 0x010c023a8705bab5, 0xff3a519943ff0235, 0x02438a053cbf613f, 0x7180ffbbd00a5bff, 0x8b05035fca043b97, 0x010902981c0e02dc, 0x8a05026a00090278, 0xff3a06cee3ff0265, 0x0273010cbc841f58, 0x74feff3baf6b18ff, 0xc904028a00023d17, 0xffbb7bd55dff0285, 0x0293030b3d216fba, 0x12ceffbc48d0ebff, 0x0b0b02bc000cba6a, 0x7fff02a9030b02ae, 0xbbea25d6ff3abb1c, 0x8d5048ff02b72a0e, 0x84053ba62bf7ffbb, 0x68ff02c9000202ce, 0x3b90417cffba8cd1, 0x88937eff02d78605, 0x02083aff076effbc, 0x0b0b030400120324, 0xfeff02f1c80402f6, 0xbc57189fff3c5f53, 0xa17c57ff02ff060d, 0xc9043b8a7b74ffbc, 0x5aff03112b0e0316, 0x3c659362ffb99a9b, 0x7c6cbcff031f0b0b, 0x000c3a8f5900ff3d, 0x35ff03310e0e033f, 0xff033ac904bcfb68, 0xb2cfa0ff3c2542e9, 0x4c020d0351000fbb, 0x20ffbd2bbc30ff03, 0xff035a0b0b3d1009, 0x130912ffbdae17b4, 0xab8b0503efcd04bd, 0x7d0011038b010c03, 0x926bff0378250e03, 0x04bb563adeff3ba2, 0xba896d4dff0386cc, 0x9d2a0e3b2d4de0ff, 0x0a2dff0398250e03, 0x0ebc8ff9c4ffbb42, 0x3ba1daf7ff03a633, 0xcf000cbbf5bd0eff, 0xbccc0403c1280e03, 0x12ff3bee3f7cff03, 0xff03ca0b0bbbae69, 0x7d8853ff3abcf884, 0xdc001103e1cb043c, 0xe0ff3d11670bff03, 0xff03ea0008ba8cb2, 0x349492ffbc0f7886, 0x17850504370002b9, 0x047c050409840504, 0xe4ffbb71ca72ff04, 0xff0412010c3bcad1, 0xc17a2fffbce03938, 0x242b0e04298805bb, 0x95ff3ccce37eff04, 0xff0432310e3a08bc, 0x021725ff3a5a9f50, 0x4d0b0b045b2b0e3c, 0x051dff0448850504, 0x0cbc13243dff3c98, 0xbc4f8dbcff045601, 0x6d2c0ebd0f28deff, 0xc0d8ff0468010c04, 0x123d8e16bfff3c8f, 0xbc05221eff047600, 0xa98d053b9b1e84ff, 0x130e0e059f110b06, 0xaf040e04cf0e0b05, 0x9c000904a18b0404, 0x58ff3a813e1eff04, 0xff04aa9b04bae6ef, 0x933140ffbb74057b, 0xbcb20404c100023a, 0x24ff3ab4ee41ff04, 0xff04ca0108bb6fbc, 0x9d8be8ffbab24d4a, 0xe5060d04f300023b, 0xc8edff04e0000904, 0x0ebaf0cdabff3c02, 0x3b3d6034ff04ee02, 0x050d0ebc640344ff, 0x343dff0500001205, 0x043c02b086ffbca7, 0xbc5a5930ff050ea2, 0x5bba04bcd9ffe0ff, 0x2daf04053b140e05, 0x0ba0ff05289c0405, 0x12bbf4145aff3be2, 0x3c899d3cff053601, 0x4d0109bd925388ff, 0x2141ff0548a80405, 0x0cba8671ddff3b91, 0x3c29c12fff055600, 0x7fbc043d0bbed0ff, 0x6c030b0571020805, 0xc1ffbc44496eff05, 0xff057a000cb9bcef, 0x85a593ff3a12e666, 0x8cc404059102083d, 0x7bff3b40a47eff05, 0xff059a000fba9d91, 0x93ef8cffbc9ec189, 0xeb010c0626c8043b, 0xbd140e05cb000205, 0xc20dff05b80e0e05, 0x0ebd7c364cffba92, 0x3c2ff9faff05c617, 0xdd140e38c0c9dbff, 0xb16cff05d80d0e05, 0x0d3bf0720fffb961, 0xbba7f913ff05e606, 0x0f01083bcc950eff, 0xfc00080601000206, 0x51ff3b076bfcff05, 0xff060a070ebd0678, 0xb43b5eff3bb31435, 0x1c00020621030e3d, 0x80ffbc93e1d8ff06, 0xbd1490a8ff39bc6a, 0x064e0008066e000c, 0x063b00110640230e, 0x11f1ff3915e4e4ff, 0xceff064900023c5d, 0xbc1b5298ff3b6b76, 0x065b01120660060d, 0x31e4ff3bf81269ff, 0x5dff06690108bb5c, 0x39defb55ffbc3b2f, 0x0684220e0692250e, 0xc846c0ff067f0002, 0x01113ad22768ffbb, 0xff3c776752ff068d, 0x06a40111bcf4e1d4, 0x91fc9bff069fcc04, 0xe0ff3b046d8dffbc, 0x0d07b793053c701b, 0x0406f90208072b02, 0x0b06cb1a0e06d9bc, 0xbb312b37ff06c602, 0xd4220e3a4bb47fff, 0xb0ffbb948503ff06, 0x0b06eb070b3b4852, 0xba6417e7ff06e604, 0xf4280e3c2f0d94ff, 0xb0ffbc861cfdff06, 0x0e071d230e3b9727, 0xff070a070e070f17, 0x016e8dff3b3a6946, 0xcb80ff0718010bbb, 0x053b0f092bff3c6c, 0xbc6ecf80ff07268f, 0x73050bbbb25140ff, 0x45c0040753020807, 0x8f11ff0740011107, 0x043983376bff3792, 0xb9f56253ff074ecc, 0x65010c3badb52aff, 0x525dff07608f0507, 0x0ebb26731cff3b4c, 0xbaab2580ff076e03, 0x970c0b3c9b9b58ff, 0x8401110789010c07, 0x3dff39baf51eff07, 0xff0792bf04bb4c62, 0x28da54ffb87d0917, 0xa40e0e07a9220e3a, 0xf7ffb900e18cff07, 0xff07b2000c3a3261, 0xf5cc2bff3b668381, 0x0300080847020dbb, 0xd5000907e3050b08, 0x2e3fff07d0000d07, 0x0e3b02cae5ffbb5d, 0x3b70ffbaff07de03, 0xf5c604bb909448ff, 0x73b6ff07f0c00407, 0x04bc0b10faff3a7d, 0x3cc1ee60ff07fec7, 0x2702083a24ded3ff, 0x14c7040819000208, 0x9eff3b9f18d4ff08, 0xff0822c804bc2cc8, 0x6ba837ffbab76667, 0x34c404083994053b, 0x35ff3bbf2980ff08, 0xff0842020b3c6c01, 0x77e000ffbc47aa40, 0x6f010b088f0e0b3a, 0x5c1c0e0861010908, 0x1cffba57c1dcff08, 0xff086a02093ba815, 0xf8b49dffbc3b905a, 0x7c9405088100123b, 0x34ff3aedd057ff08, 0xff088a170eb9f8b5, 0xe6de5bffb87d1103, 0xa5000208b39405b6, 0x04a6ff08a0c90408, 0x043c14e2d7ffb9ab, 0xb88bad24ff08aec9, 0xc5b204bbcdd7d8ff, 0xf64eff08c0000e08, 0x0ebc091342ffb612, 0x390c9ea9ff08ce26, 0x4195053b16735bff, 0xfb98040b17c6040d, 0x2b8005096f930409, 0xfd2b0e090b021109, 0x00c2ff08f8850408, 0x043a945253ffb8dd, 0xba8242d6ff090690, 0x1d01083b037e11ff, 0x987fff0918100609, 0x06bb801386ff3b91, 0x3c399deeff09260a, 0x4f0002bc3962d1ff, 0x3c8f040941820509, 0xeeffbbf49d7bff09, 0xff094a1d0e3c3014, 0x58e2b7ff3ab45e50, 0x5c000e0961070ebd, 0x3affba20154fff09, 0xff096a060d3b829f, 0x678f11ffbbd700bf, 0x971d0e09b73d013c, 0x8433030989320109, 0x66ffbdcc8a95ff09, 0xff0992170ebd0a17, 0x50f5acff3c82c6f1, 0xa4380109a9130bbc, 0xc6ff39ce35e2ff09, 0xff09b296043c2823, 0x289522ff3d0e7854, 0xcd1d0e09db4001bb, 0xbc97ff09c83f0109, 0x01bdcaa7e4ffbcc1, 0xbbd1fbb1ff09d63e, 0xed0e0e3d3da494ff, 0xd0e0ff09e8030e09, 0x0e3b791a2effbbaa, 0xbc924155ff09f614, 0x8b070dba4eacfdff, 0x2741050a47130b0a, 0x142b050a19000f0a, 0x51ff3a9925f3ff0a, 0xff0a222e0338ce6c, 0x5b91f3ffbbbd0416, 0x349c040a397305ba, 0xc8ff3b0d9f35ff0a, 0xff0a42b004b9bced, 0xa97c73ffb8d30aef, 0x5d72050a6bbe0439, 0xeea4ff0a583a050a, 0x05ba3bbe63ff3ad3, 0xbba47083ff0a6677, 0x7dc104b8d93196ff, 0x05bcff0a7801120a, 0x0dbb3af6e7ff3ba3, 0xbb4dedb7ff0a8606, 0xd33d013b23c87cff, 0xa534010ab330050a, 0xe051ff0aa0190e0a, 0x0ebd3d6a3dff3ca9, 0x3d0a8981ff0aae19, 0xc53c013c1f7ec9ff, 0xdad7ff0ac0170e0a, 0x0ebca5bc96ffbd8f, 0xbd8adf9bff0ace17, 0xf73e01bdfd2db5ff, 0xe400080ae9030b0a, 0xa5ffbba35740ff0a, 0xff0af202083ca23a, 0x4ecd70ffbddf0788, 0x04030e0b09070e3c, 0x17ff3c86f0c9ff0b, 0xff0b12080ebc848d, 0xa863abff3cb43d7f, 0xa2220e0c2e01083a, 0x47190e0b671c0e0b, 0x340b0b0b39c8040b, 0xbbffb9ab3a05ff0b, 0xff0b4201113c130d, 0x265d76ffb9f132b2, 0x54000c0b5906063b, 0x62ff3b84a2c7ff0b, 0xff0b62030b3d1cf8, 0x98b29bff3c439607, 0x7dc7040b8b0002bc, 0xc3b3ff0b7885050b, 0x12bc88e69eff3d84, 0xbc858e4bff0b8601, 0x940c053cb45cbbff, 0x210e3d8d1b64ff0b, 0xffbb9b11e8ff0b9d, 0x0beaca043bc7b047, 0x0bbc00020bca7305, 0x622700ff0bb7c904, 0x310ebc79fbc2ffba, 0xff3b131351ff0bc5, 0x0bdc74053c7700f8, 0x3566f2ff0bd7070b, 0x8f053d112126ffbc, 0xffbab6931aff0be5, 0x0c0e230eba728a11, 0x0bfb00120c000107, 0x70cbff3b642206ff, 0x23ff0c098e053ca6, 0xbc289bc8ff3b9d43, 0x0c1bcb040c20250e, 0x68d5ffbd395409ff, 0x06ff0c29cb043c06, 0xbacbdfccff3b82c0, 0x0c71060d0cb57505, 0x0c4336010c510705, 0x4c300e3d1dd4d0ff, 0xebffb858a078ff0c, 0x050c636305bcba2f, 0xba382dc0ff0c5e62, 0x6c000c3c8eec54ff, 0xf2ff3abf566aff0c, 0x110c95c904baa5a8, 0xff0c82280e0c8700, 0x1160aaff3b6a110e, 0x09faff0c90000cbc, 0x0e3b4b161aff3cf7, 0xff0ca2180e0ca722, 0x9290efff3bfe9d98, 0x898cff0cb06a05bc, 0x0c3ba83344ffb9de, 0x0e0cddcd040cfd01, 0xff0cca060d0ccf32, 0x041ff9ffba96434b, 0xe6f9ff0cd8cb043a, 0x053ccf3727ff3b26, 0xff0cea060d0cef77, 0xb1a48bff3d555b25, 0x25cbff0cf885053c, 0x043b783e7effbadf, 0x020d13c7040d21c8, 0x3cdabb1bff0d0e00, 0x1c0b0bbd6172d8ff, 0xa0ff3d075c9fff0d, 0x040d330d0e3ddf21, 0x3c318d77ff0d2eca, 0x3ccb04b9b68593ff, 0x8bffbc166222ff0d, 0x040eb21f0eba427d, 0x0b0da301070db17f, 0x040d6396050d7103, 0xbb072960ff0d5e69, 0x6c0002baf7886bff, 0x70ff3b8d3898ff0d, 0x0d0d8c050b3b8e7c, 0xff0d8269040d8700, 0x0c5b90ff3b1e9600, 0x070b3b48c375ff3b, 0x0bbaf00840ff0d95, 0x3be7e218ff0d9e0a, 0xac00023aeea1a0ff, 0xc8ff3baaf628ff0d, 0x040e26000c3ba83e, 0x040ddd110e0de2b6, 0xff0dca01120dcf90, 0x9eb4d6ff3b643421, 0xd438ff0dd8070ebb, 0xff3b75df60ff390b, 0x0e06190ebc808468, 0x0df396050df8b904, 0xf775ffbb16b5afff, 0x26ff0e01cd04bc8e, 0xbb462361ffb816a4, 0x0e13cc040e181c0e, 0x4ef0ff3ca026d8ff, 0xffff0e2100113ba1, 0xba5f5058ff3b03c1, 0x0e4e0a0b0e6e000e, 0x0e3b050b0e400107, 0x6d18ffbba15826ff, 0x33ff0e49030bbc50, 0x3b323408ffbaca53, 0x0e5bbd040e600b0b, 0xd538ff3b663004ff, 0x80ff0e69b604baaa, 0xbb37a26dff3abc5f, 0x0e84060e0e92070e, 0xb473c4ff0e7f010e, 0xc404ba35dde3ff3a, 0xff3a0d8c4eff0e8d, 0x0ea40b0e3bd9206c, 0x438aadff0e9fc804, 0x150eba460a32ffbc, 0xff3aac6785ff0ead, 0x0f392a0eba11279e, 0x0ee7000d0f2b280e, 0x0ecb010b0ed99605, 0xd401073a911100ff, 0x80ff3be3bee0ff0e, 0xff0ee20002bba80f, 0x32a000ffbc039840, 0xfd030b0f0bcb0438, 0xebcaff0ef8230e0e, 0x0b3bade7f0ffba5a, 0xbb3e6100ff0f0605, 0x1d0111bc8fac40ff, 0x1500ff0f18220e0f, 0x0bb9550a6cff3b5c, 0x3c526280ff0f2603, 0x34c904b98c5400ff, 0x00ff3c69f540ff0f, 0x080f812c0ebac98a, 0x070f65000f0f7c00, 0xff0f5200020f5701, 0x707750ffbb4b2ad0, 0x7d80ff0f6000023b, 0x02bbaceca8ffba30, 0xff0f7201070f7700, 0x164c80ffba95cd8e, 0x60ffbbc22220ff3b, 0xff0f8a01123b30a2, 0x0f93030b3bc5a880, 0xd600ff3b555300ff, 0x000800000013bbe1, 0x0001000003e80000, 0x000000000fce0000, 0x8c0508e500070000, 0xc2040248c7040484, 0xbc0400a0be04012c, 0x2a0e003c0f06005c, 0x52ff0029a704002e, 0x3a0bc431ffb4e76c, 0xe7f2feff00370002, 0x5405ba3de101ff38, 0x5bff00497c04004e, 0xbad0d97fffba2c7d, 0x69ca61ff00575505, 0xbd04bae5a14fff3c, 0x19060072000f0080, 0xff3d0585cdff006d, 0x007b1f0ebbe76d53, 0xbff4ffb91ae885ff, 0x01120092060dbc50, 0xff3cc5a37fff008d, 0x009b00123b0faa30, 0x6206ff3cc6d98eff, 0x0d0e00e80112bcb6, 0x000900ba000200c8, 0xff3d1cfac0ff00b5, 0x00c37805bb878296, 0x490fff3d48c093ff, 0x7e0500da8205bb8b, 0xffb9b896e8ff00d5, 0x00e383053c2b4a39, 0xd0f3ffbbbbfc8cff, 0x1905010c71053a99, 0x3fff00f90c0600fe, 0xbbfbeee8ff3b5b54, 0x7d7093ff0107c004, 0x050b3bb1f23affbb, 0x31ff0119300e011e, 0xb96f2d2effbce7df, 0x6db32cff01270108, 0x88053cabec2dffbb, 0x040d0178000f01bc, 0x8405014a010b0158, 0xff3c85609bff0145, 0x0153c3043e221baa, 0x223bffbcd04d51ff, 0x0008016a1105bafc, 0xff3d48fe21ff0165, 0x0173040bbb2cad57, 0xe150ffbba3e078ff, 0x8305019c02083c12, 0x9cff01890b0b018e, 0xb94ee9f6ffbb4ef0, 0xa0e5b4ff01978405, 0x070dbab91b6eff3c, 0x1dff01a95a0501ae, 0x3b04d46cffbbf8f7, 0x6bc3a5ff01b71f0e, 0x0e0b3cd9c958ffbc, 0x1f0e01e48a050204, 0x24ff01d10d0e01d6, 0x3b61117cffbc5b7d, 0xd1738cff01df070b, 0x8b05bcbc724fff3a, 0x1dff01f1000801f6, 0x3cf09c46ff3be7b9, 0x0f502cff01ff010b, 0xc504bb682e33ff3d, 0x060d021a89050228, 0xff3da32dd2ff0215, 0x02231d0e3c3185a5, 0xe2d7ffbaa05c62ff, 0x1f0e023a00093ca9, 0xffbc4d64d2ff0235, 0x0243060d3a6fb73f, 0xf575ff3cbec05cff, 0x060d0368190e3be4, 0x010c0298011102dc, 0xc804026a17060278, 0xff3b8e5d8dff0265, 0x0273cc04bbae0667, 0x95c7ff3ab06d20ff, 0x130e028a160ebb7d, 0xff3aad904cff0285, 0x02930209bcaa53a6, 0x8813ff3c320c6fff, 0xc80402bc0b0bbb11, 0x7bff02a9010802ae, 0x3c0a4d00ffbc0704, 0x03a387ff02b7050d, 0x0d0e3bbb33a7ffba, 0x80ff02c9390502ce, 0x3c68f630ffba116e, 0xd042a2ff02d7170e, 0xcc043b107160ff3c, 0x7e050304c9040324, 0x97ff02f17c0502f6, 0x3d8f58cbff3b1a5c, 0x49e01aff02ff0011, 0x8305bc08c20fff3a, 0xe9ff0311140e0316, 0xbcc222cbff3d05d3, 0x90f5f6ff031f0a0b, 0x010cbac86235ff3c, 0x8b05033a180e0348, 0xff3d27f346ff0335, 0x03430b0bbbe32a75, 0xaa52ff3bc8ffe6ff, 0x140e035a0009bbf8, 0xffbbcbd9a0ff0355, 0x036300023c9b4f9e, 0xe7c0ffbbaf03b4ff, 0x230e03f87f053ae1, 0x7b050394001203b4, 0xc7ff038173050386, 0x3cef3df6ffbc07a0, 0xfe0108ff038f7d05, 0x11063cdf3bf4ffbc, 0x3dff03a1c90403a6, 0xbc88919dff3b9546, 0x2ec199ff03af1606, 0x7e05bbb2f376ff3c, 0x000c03ca040d03d8, 0xffbc12dbbcff03c5, 0x03d37d053bc27460, 0x036bff38ae089aff, 0x070d03ea00123d7d, 0xffbcf920deff03e5, 0x03f3280e3cb109ed, 0xc25dffbd012e9cff, 0x0008044084053ab7, 0x040b04120b0b0420, 0xff3c3a030fff040d, 0x041b8205bca0f9de, 0x7bd9ffbc883e19ff, 0x02080432280e3c02, 0xff3cc5ff18ff042d, 0x043b83053a9fb66a, 0x2e7bffbae5849dff, 0x060d046486053c91, 0xd0ff0451230e0456, 0xbb3b1344ff3c74b6, 0xa5a494ff045f230e, 0x000c3a872677ffbc, 0x84ff04710b0b0476, 0x3b29e0ccffbb614d, 0x2b5d7eff047f0b0b, 0x8d053975973cffb9, 0x060d05a8010c06bb, 0xa80404d8be04051c, 0x0a0b04aaa70404b8, 0xffbad5dedfff04a5, 0x04b30b0b3a61a86d, 0x2237ff3d0f1c49ff, 0x030b04caaf04bcf3, 0xff3893df2aff04c5, 0x04d3b004bc7a8d75, 0x7973ff3bb458e3ff, 0x010804fcbf0439a6, 0x2bff04e9020d04ee, 0x3bed5ed5ff3bcb67, 0xc0c0c4ff04f70208, 0x000f3aad7c00ff3d, 0xd8ff05090208050e, 0xbc8e3ac0ff3c0be3, 0xb9f6c0ff0517c104, 0x010837a60b6effbc, 0x070b054400080564, 0x2cff0531000c0536, 0x3bb3e124ffbaeacb, 0xc14becff053f0012, 0x000cbbef937cff39, 0xecff05510b0b0556, 0x3b56fc4fffbb48eb, 0xb7d6c8ff055fbb04, 0x00123c1e6fb8ffba, 0xbc04057a02080588, 0xff3b24a68aff0575, 0x05830a0bbb5b2870, 0xd374ffbcf58fd8ff, 0x0002059a030bbbdb, 0xffbd13d62eff0595, 0x05a3040bb9ae064e, 0xe780ffbd3c88d4ff, 0x1d0e062f01093bd5, 0xa40405d4170e05f4, 0x2dff05c19e0405c6, 0xbd1086d1ffbb288a, 0x3c4134ff05cfb204, 0x050bba80b2fdff3c, 0x85ff05e1000805e6, 0xbd19d0bfff3a5a45, 0x93c75aff05ef0b0b, 0x220eb6259111ff3c, 0xc404060acc04060f, 0xffb93def74ff0605, 0x34ee44ffbcd0bb19, 0x1c030b06210b0b3d, 0x14ff3b9ca708ff06, 0xff062a0002bbaf9b, 0xd6c1cdff3ce674bd, 0x5700020677050bbb, 0x44000e06499d0406, 0x5cffbb5d4c25ff06, 0xff0652080ebc84b9, 0x0a566effbccf50f4, 0x64b3040669c604bc, 0x09ff3bf251a8ff06, 0xff06720111bc2452, 0x1ed2d2ff3cbe09b4, 0x8dbc04069bc4043c, 0xe3d7ff0688000e06, 0x123c0c8864ffba26, 0x3ce243f6ff069601, 0xadcc043bccd648ff, 0x723fff06a8011106, 0x0e3a1ce300ffbc0e, 0x3c81b8c7ff06b622, 0xc993053a3bf280ff, 0x0b0208073d020d07, 0xdd2a0e06ebbc0407, 0x7d84ff06d8a70406, 0x0d3a1dd451ffba55, 0xbbd1a6acff06e600, 0xfd330e3c71c7e6ff, 0x51e2ff06f8cc0406, 0x0e3cf540a2ff39d3, 0xbc701421ff070634, 0x2f230e3c0b4bf2ff, 0x1c8f050721090b07, 0x86ff3b86ed35ff07, 0xff072a0002b94a4c, 0x910d1aff3b38d1ab, 0x7c40ff0738010bbb, 0x0bbc56ee00ffbba0, 0x0407650208078505, 0xff075201120757c0, 0x6c2f4eff3783eaee, 0x6901ff0760030e39, 0x04b91b8a92ff3c1a, 0xff0772a3040777b2, 0x0c0c51ffbadd5e63, 0x4c8fff07809205bc, 0x0bbc3cd489ff3ae6, 0x05079b920507a90c, 0xbaaeff36ff07968f, 0xa46d043a7f9b5bff, 0x5dff3b015832ff07, 0x0e07bb220eb9b21f, 0xb910b24dff07b611, 0xc4000c3a3cbee8ff, 0xaeff3b4f764dff07, 0x080859020dbbdd37, 0x0e07f5050b081500, 0xff07e21d0e07e71f, 0x107b7aff3a14c820, 0xdd87ff07f000023d, 0x0ebc19ac05ff3bdf, 0xff08020009080701, 0xa29092ffbb098b07, 0x8e90ff08100009bc, 0x0f3c1a40b8ffb9cf, 0x0e082bc404083900, 0xb919819aff08261d, 0x340002bca22a20ff, 0x28ffbb6f06d7ff08, 0x05084b000c3b8fc9, 0xbb0e6fc3ff084696, 0x540b0b3b0163f8ff, 0x20ffbc6d9c62ff08, 0x0908a1110b3b9906, 0x120873010c088100, 0xb8b34e86ff086e01, 0x7c030b39f2324cff, 0x95ff3c2857dfff08, 0x0e0893cc04bbec70, 0x3a698911ff088e23, 0x9c94053d210ef3ff, 0xbdffbc0f6b59ff08, 0x0d08c5230e39bfbc, 0xff08b2180e08b707, 0xfc0f0effb8801b32, 0xe058ff08c0c80439, 0x04bc3026a0ff3d84, 0xff08d2001208d7cb, 0x420375ffbd81b00c, 0x7149ff08e0280ebc, 0x05bb89072bff3c18, 0x040b29c6040d6595, 0x04098166040a0d97, 0x04091d1206093d59, 0xff090a2a04090f57, 0x0171c8ffba57bd8c, 0x175bff0918020b3a, 0x0b3a445e11ffbbca, 0xff092a010e092f03, 0x72b59bff3b3dcac6, 0xda57ff09385204bb, 0x0bbd10d0c8ffbb93, 0x0f0953050b096106, 0x3b35793eff094e00, 0x5c5b04ba2f23dcff, 0x1cffbd6bc3afff09, 0x060973070bbc0528, 0x3b9c0c09ff096e04, 0x7c160e3db62b6dff, 0x8bff3b25e1f7ff09, 0x0309c92703bb3377, 0x05099b220e09a90b, 0xbcd18e69ff09960a, 0xa41a01bc22cc91ff, 0xa7ffbb2d8403ff09, 0x0109bb0211bc4034, 0x3b07f7e3ff09b639, 0xc46c043bb2102aff, 0x69ffbd8e4ba8ff09, 0x0109ed2a033d4857, 0xff09da011109df38, 0x902c02ffbbd4bc8e, 0x4df1ff09e8060d3c, 0x03bc76e3dfffbd0c, 0xff09fa001209ff34, 0xaa6943ffbb0410fd, 0xced8ff0a08010c3b, 0x01b83136caffba29, 0x010a59070d0a9d40, 0x040a2bb0040a393e, 0xbaff87d8ff0a26ae, 0x343d013b8d45beff, 0xb5ff3b5e8b19ff0a, 0x040a4b9c04bd8bcd, 0x3c6d0a98ff0a469a, 0x54b0043d609c9fff, 0xb5ff3c42c059ff0a, 0x030a7d3005bc5d5a, 0xff0a6a98040a6f2d, 0xfbb63eff3d404ea5, 0x3bb3ff0a78a604ba, 0x013d109168ff3d75, 0xff0a8a170e0a8f3c, 0x7f7153ffbd67872b, 0x93f5ff0a98a104bc, 0x05bdfe8ff8ffbd34, 0x070ac501080ae501, 0xff0ab2a7040ab702, 0x17c0f1ffbdb5b74f, 0x96d8ff0ac0ab04bd, 0x07bc949b28ff3ba4, 0xff0ad20e0e0ad701, 0xf7c7beffbc01d1de, 0x5bbaff0ae02e0ebc, 0x03bc8f05ceff3b32, 0x030afb24030b0934, 0x3c83b498ff0af61b, 0x042805bc87af68ff, 0xeaff3babbbd3ff0b, 0x050b1baa043aec7c, 0x3a51749dff0b165f, 0x240112ba913dffff, 0x9dff399b0975ff0b, 0x0e0c490108b90382, 0x0f0b79000c0bbd22, 0x0b0b4b1c0e0b5900, 0x3b22995bff0b4603, 0x541e0ebc29a864ff, 0x06ff3d3e03c2ff0b, 0x020b6bc9043bf0dd, 0xbbb5dc8dff0b6600, 0x74060db87f9be6ff, 0xaeff3b846c9cff0b, 0x050b9d8505b932ba, 0xff0b8a170e0b8f0c, 0x7dfe18ffbd296cd4, 0x45ffff0b9882053d, 0x053c0c3d15ffba7f, 0xff0baa86050baf89, 0xfb9cb2ff3ca090bc, 0xf58cff0bb88b05bb, 0x04ba052028ff3c10, 0x050be56f050c05ca, 0xff0bd266050bd768, 0x0dba92ff3a0129c5, 0x6f0cff0be0c9043d, 0x05bcf9d6d8ff3ab1, 0xff0bf2c8040bf774, 0x9185eeffbc1a038a, 0x4a80ff0c00260e3c, 0x0e39f25aa2ffbb78, 0x120c1b01070c2923, 0x3b4d51f8ff0c1600, 0x2488053c95cbebff, 0x95ff3bd98bc0ff0c, 0x0e0c3b2f0ebb8c95, 0xbb9623e1ff0c362a, 0x44300e3b498f00ff, 0xbbffbc9ee987ff0c, 0x0d0cd97505b921d8, 0x0e0c7508050c9506, 0xff0c6215060c670b, 0x04eb43ff3d5513b4, 0x0d09ff0c70220e3c, 0x053a9c1eb7ffbcd1, 0xff0c820b0e0c870b, 0x75ee7fffbc8ccdc9, 0xc564ff0c90cc04bd, 0x043b8025c6ffba01, 0x050cab47050cb9c9, 0x3ae363daff0ca645, 0xb400123d713665ff, 0xa9ffbb32ea11ff0c, 0x050ccb2a0e3c0749, 0xbca8853dff0cc65d, 0xd4010cb9874bb1ff, 0xc8ff3bf105b8ff0c, 0x040d21010cbb65dd, 0x0e0cf3320e0d01cd, 0xb994dcd6ff0cee25, 0xfc330eba2a75a6ff, 0x11ffbc35daa2ff0c, 0x0d0d1377053c6ad7, 0x3d400535ff0d0e06, 0x1c00023c9fe0ebff, 0x73ff3b958239ff0d, 0x050d450208ba50d8, 0xff0d3201070d377d, 0x86a3c0ff3c70b16b, 0xa60dff0d40150eba, 0x04bbc646beff3bc0, 0xff0d5287050d57c9, 0x1b7af4ff3a237280, 0x91c4ff0d6001113d, 0x0e3cd99c2affbc44, 0x070dba7f040ea91f, 0x050d9e070b0dac01, 0xff0d82030b0d9096, 0x0d8b050bbae3e830, 0x0760ff3b1c3d25ff, 0xc8ff0d99010bbad8, 0x3b7e32b0ff3b803c, 0xd6c4a0ff0da70002, 0x00023bd0b1e0ff3a, 0xff3b99dd88ff0db5, 0x0e2f000c3b976bb0, 0x0de6110e0debb604, 0x0dd301120dd89004, 0xd5f4ff3b4d621dff, 0xa1ff0de1a404bb8e, 0xb966c65cff3ab853, 0x0f190ebc6754c0ff, 0xfc060d0e01b9040e, 0xccffb837ba8eff0d, 0xff0e0acd04bc1528, 0x32530fffb807942d, 0x1ccc040e211c0ebb, 0x70ff3c9022f8ff0e, 0xff0e2a00123b912d, 0x48fb76ff3aed29fe, 0x4e070b0e65000eba, 0x44b6040e49050b0e, 0x81ff39a50c30ff0e, 0xbc7ea634ffbb9f41, 0xf10918ff0e570a0b, 0x4b4cff0e600b0bbb, 0x0ebaf73215ff3a82, 0x020e7b060e0e8907, 0x3b0e5b6dff0e7600, 0x84090bb9f750dbff, 0x4aff39a97f7cff0e, 0x040e9b0b0e3bef65, 0xbc2ffcd3ff0e96c8, 0xa4bc04ba323c32ff, 0x64ff3c26aca0ff0e, 0x0c0f5d000238a03c, 0x110ef001070f2200, 0x050ecb00080ed000, 0x3c31019aff0ec696, 0xb930ffbbbb4050ff, 0x240e0ee2cb04bbdf, 0xff39e8f580ff0edd, 0x0eebcd043b71b795, 0x4aabffbba9797aff, 0xcb040f0b240eb927, 0x40ff0f01c7040f06, 0x3af40800ffbb9741, 0x142b0ebc6ac7f0ff, 0x000d3b0744c0ff0f, 0xffba302500ff0f1d, 0x0f2b0011ba0d8800, 0x3d010bbbb4cd80ff, 0x4000ff0f38c9040f, 0x04b8c12000ff3907, 0xff0f4a030b0f4fcb, 0x2b5700ffbb162000, 0x6200ff0f58020dbb, 0x08bac2a840ffbab5, 0x040fa90b0b0fb700, 0x0c0f7b030b0f89cb, 0x3a890149ff0f7600, 0x84000dbb1ff955ff, 0x20ff3a721a00ff0f, 0x0e0f9b000cbc9f96, 0xba9c9af3ff0f962b, 0xa4050b3b8a8166ff, 0x50ff3a2152a0ff0f, 0xff0fb20e0b3c61e2, 0x3a6f50ffbb6792e0, 0xc4030b0fc9050b3c, 0x00ff3a3f2640ff0f, 0x3baa17e0ff3a7847, 0x0000000800000013, 0x00000001000003e8, 0x0000000000001190, 0x04698c0508940007, 0x012c8a050248c304, 0x005cad0400a0b104, 0x002e8905003c1406, 0x03a3edff00299c04, 0x040bb79686fcff38, 0xff3b0abc24ff0037, 0x004e1a0ebb41bdd3, 0x5849b8ff00491806, 0x070b3b2e6094ffbb, 0xff3c9270d5ff0057, 0x00808805bc0cb954, 0x006d060d0072b004, 0xaad4ffbb2e8edfff, 0x71ff007b080e3b8a, 0xbbf4be91ff3be323, 0x008d00020092af04, 0xf0c2ffbd8b6258ff, 0x5eff009b0012b9cf, 0xbc98032bff3cd509, 0x00c8350e00e80906, 0x00b5b20400ba8505, 0x874cff3aee1030ff, 0xdbff00c3020db97e, 0xba8caa04ffb7a750, 0x00d5bb0400dabf04, 0x432aff3a25252cff, 0x21ff00e30a0bbc3c, 0xb9f0c78aff3c9246, 0x00fe000f010cb504, 0x5c661eff00f94505, 0x030e3b7c489cffbc, 0xff3b90c848ff0107, 0x011eb60438a082ac, 0x8a47b7ff0119030b, 0xbc043be9dcfcff3d, 0xffbb0fee3dff0127, 0x01bc070e3b2a9fca, 0x0158ae040178b904, 0x01459f04014aa304, 0x925eff3a77f91fff, 0xb9ff0153a704bc24, 0x3c5b4d16ffbcf3c7, 0x01650002016a000f, 0x2004ffbdfce2f8ff, 0x50ff01738b05be4e, 0xbc8834afff3c3cfd, 0x018e0002019c0009, 0x928374ff01890008, 0x8b05bccc54b1ffbe, 0xffbc6c7843ff0197, 0x01aebb043d6f8571, 0x2747edff01a9010c, 0x8b053d164f2aff3c, 0xffbcf1be1bff01b7, 0x020401093aec5c09, 0x01d6011101e47a04, 0xbdc76bff01d12604, 0x6404b8f729f3ff3c, 0xffbc13ef4aff01df, 0x01f6200ebd47c0f1, 0xadc4b4ff01f1000c, 0x220e3b9eb137ffba, 0xffbccfae23ff01ff, 0x0228080e3b6839f8, 0x02150002021a000f, 0x7fe0ff3d940bf7ff, 0x36ff02230209bc83, 0x3bb99495ff3ccaa8, 0x0235000f023a0d0e, 0x927fffbdaecc5eff, 0x18ff0243b804bbfc, 0xbb2c2b20ff3cf09b, 0x02dcc40403680009, 0x0278011202988605, 0x0265060d026a220e, 0x517aff3c23570bff, 0x29ff0273230ebc7f, 0xbcf63e74ffbdbdca, 0x0285000f028a0002, 0xb035ff3d168057ff, 0x5eff02930806ba49, 0xbbda57ffffbcdaa0, 0x02ae0d0e02bc0002, 0x2e9d1aff02a90012, 0x030bbceca20cffbd, 0xffbd242079ff02b7, 0x02ce02083c39ae9e, 0x986eabff02c90b0b, 0x000fb9fdedd6ffbc, 0xff3ca6c8ecff02d7, 0x0324280e3b6d2fd6, 0x02f6070d0304170e, 0xb92b76ff02f18a05, 0x0208bbe1b0e9ffb8, 0xffbd2b7579ff02ff, 0x0316cd04bb9b29fa, 0x0f6bd5ff0311200e, 0x000239809077ff3c, 0xff3c4d2848ff031f, 0x0348120bbc96bfa6, 0x0335030b033a310e, 0xa5c5ff3b4e4048ff, 0x28ff0343320ebaff, 0x3a12da67ff3d012d, 0x03550002035a000c, 0x9e22ff3c28d2cfff, 0x2cff03630002baa4, 0x3ae28c55ffbbc4e1, 0x03b4c60403dd170e, 0x038601090394050b, 0x844106ff03818705, 0x010b3d5e8bacff3d, 0xffba1a60d0ff038f, 0x03a60e0e3c9422ea, 0x5e1a60ff03a1010c, 0x00113aa74a15ff3c, 0xffbcb94647ff03af, 0x03bd000fbabf29c9, 0xcf8305bd967878ff, 0x893bff03ca000203, 0x05bc346a0fff3b12, 0x3b9a76ceff03d887, 0x250209ba00a0ceff, 0xf7230e0405000204, 0x6b6fff03f2000c03, 0x0ebbdec5d2ff3c94, 0x3c28d024ff040031, 0x17000fbc0dfd04ff, 0x6171ff0412070b04, 0x0e3ca3feacffbb4e, 0x3a25af37ff042019, 0x490b0bbc2b322fff, 0x36310e043b890504, 0x90ff3bf20312ff04, 0xff044400023d911e, 0x7f583dff3bde5015, 0x561f0e045b7c05bb, 0x4dffbd016d71ff04, 0xff0464c6043a1e85, 0xa24a86ff3ca29464, 0x8d010c066a8d05ba, 0xbdbe040501060d05, 0x8f220e049d2a0e04, 0x64eeff048a000c04, 0x0bb9dc91a3ff3971, 0xbb37a763ff04980a, 0xaf00083b885a24ff, 0x7811ff04aa000f04, 0x0f3c04911bffbcf7, 0x3d9a1c79ff04b800, 0xe1bf043bc86719ff, 0xce220e04d3010804, 0x2bff3bd5a255ff04, 0xff04dc02083bb710, 0x9c2200ff3dad7a4c, 0xee000c04f3c1043a, 0x7effbc235aa8ff04, 0xff04fcc204bd093d, 0xed64b9ff3c640120, 0x2900090549010839, 0x160a0b051b001205, 0xf4ffbb88a73dff05, 0xff0524070b3b164d, 0xf0adfcff3ba80083, 0x36a604053bb004bb, 0xf3ffba86eb05ff05, 0xff054400123c5bf5, 0xd41bf5ff3a4b3eb4, 0x5f0208056d0012bb, 0x2f89ff055abc0405, 0x0ebb453df4ff3b14, 0xbba90623ff056817, 0x7f020ebd055c7cff, 0x0673ff057a010e05, 0x0bbd38e6bdffbbc6, 0x3968bd8dff058803, 0xdebc043bf4a776ff, 0xb9a40405d9070d05, 0xa6011105ab9e0405, 0x28ffba8734c5ff05, 0xff05b4060dbcb4da, 0x4908feffbd961d41, 0xc6030e05cba5043c, 0x0bffbc3088d7ff05, 0xff05d4050e3de4d1, 0x1623b3ff3b570631, 0xbf043d1e9484ffbb, 0x060d0606030b0626, 0xd6ff05f3011205f8, 0xbba4793fffbd07f8, 0x7a344cff06010109, 0x00123c5b35bcff3b, 0x80ff0613080e0618, 0xbcd65ec8ff3b2228, 0x0368edff0621be04, 0xc0043bc0588fff3d, 0x0109063c0e0e064a, 0xffbd180f52ff0637, 0x06450002bc4dbfe0, 0x81d0ff3b92efa0ff, 0x0b0b065c0012bce2, 0xff3c0f1604ff0657, 0x0665030bba791cab, 0xe565ff3b47ef1cff, 0x020d07789305bb7c, 0xbc0406ba020806ec, 0x190e068c1a0e069a, 0xff38a2c3b6ff0687, 0x069501093d1a3223, 0x88e8ffba04a030ff, 0x340e06accb04bd71, 0xff397ad06aff06a7, 0x06b5cc043d2b2190, 0xa580ffbca882d2ff, 0x170e06de92053a74, 0x1cff06cbbf0406d0, 0xbbad6b25ff3a9b43, 0xcc7466ff06d9050b, 0x0d0e3bf75b20ffb9, 0xffbb89b200ff06e7, 0x0734050bbbdbfa00, 0x0706c00407140208, 0x6d721dff07010112, 0x030e39548fbfff37, 0xff3c0af81bff070f, 0x0726ca04b90bfca2, 0x3af3d1ff0721190e, 0x01113c809753ffba, 0xff3b286a1fff072f, 0x07580b0bbd02ba5e, 0x07450009074a190e, 0xb865ff3953bbc3ff, 0x25ff07530012b843, 0xb91e463dffb9a075, 0x0765c304076ac904, 0xb731ffb88408dbff, 0x93ff0773cb04ba11, 0x3a407dffffba74e9, 0x07c400080808020d, 0x07961f0e07a4050b, 0x05e7efff07911d0e, 0x220e3d0208baff3a, 0xffbcb9ed09ff079f, 0x07b6040e3ab34450, 0xbc37b1ff07b1010e, 0x00093c3fe89affbb, 0xffbaaa1d96ff07bf, 0x07e8b7043bf99fa2, 0x07d5030e07da0108, 0xbe75ff3c04154cff, 0x60ff07e3030ebbf4, 0x3ca55898ffbbdd3d, 0x07f5940507fabc04, 0xe549ff3c776000ff, 0x2fff0803230e39e9, 0xbb9f3610ff39faf7, 0x0830010b08500e0b, 0x081d0e0e0822180e, 0x397cffb9e3176fff, 0x40ff082b00093c6d, 0x3c8ef5bcffbbbf3b, 0x083d001108420012, 0xb570ff39450875ff, 0x48ff084b170ebc01, 0x372081d0ffb8aad7, 0x0866ca0408749405, 0xb7a9e4ff0861220e, 0x00083cbcfe5eff39, 0xffbb9d2a8eff086f, 0x08861d0e3c03a1d0, 0xde4f7bff0881000c, 0x00083ac62768ffb9, 0xffbb860148ff088f, 0x0d14260e3be35984, 0x09bc86050ad8000f, 0x08ecbe040930c004, 0x08be180608cc4c05, 0x3a6bceff08b9bd04, 0x00023b2cf5f9ff3a, 0xffbc160ec8ff08c7, 0x08de240e3ae75b32, 0x6ccdd8ff08d9b004, 0x250eb97e2ac8ff3b, 0xffbd4103f8ff08e7, 0x0910000cba89b762, 0x08fdbf040902030b, 0x03a9ffbcd76104ff, 0xe5ff090b020d3aab, 0x3c91b228ffbc8311, 0x091d010809222905, 0x1dcdff3cb496abff, 0x7aff092b77053b90, 0x3c3f37fbffbc157a, 0x0958c1040978070e, 0x0945000c094a5205, 0x46b4ffbd1ec8f6ff, 0x00ff09530008bda7, 0x3c86c71bffbb81b4, 0x09655905096a000c, 0xac51ffbb8d40d8ff, 0xd4ff09730e063ba7, 0xbc29050bff3c3f63, 0x098e020d099c040d, 0xee9005ff09891606, 0x070b3c4eb4f3ff3a, 0xff3b471711ff0997, 0x09ae0008bc187b7a, 0x3a2917ff09a9060d, 0x02083d698d9effbb, 0xff3ca52e58ff09b7, 0x0a4ca704bb5253d4, 0x09e800020a080108, 0x09d5030b09daa504, 0x25f4ff3ae2572eff, 0x7aff09e3060ebc23, 0xbe3de36bff3cb369, 0x09f5060d09faa304, 0x72a0ffba846e0eff, 0x9dff0a03a5043cdf, 0x3c3949e1ff3d2dfe, 0x0a1e88050a2c0107, 0x175c5eff0a19040b, 0x010bbc135420ff3d, 0xff3b17d9c0ff0a27, 0x0a3e030bbd462472, 0x01ba53ff0a39020d, 0x8705bca5658dffbd, 0xffbd6e66bcff0a47, 0x0a94220ebdc994d2, 0x0a66060d0a741f0e, 0x913ebcff0a61020d, 0x87053b9f449bffbb, 0xffbe4634f1ff0a6f, 0x0a86c404bbbe44a5, 0x5683f9ff0a81b804, 0x050b3ccad5feff3b, 0xffba19aa63ff0a8f, 0x0ab8030b3c959c82, 0x0aa5240e0aaa0108, 0x7eedff3b74abc8ff, 0x60ff0ab30002bcce, 0xbd97ff05ffbca969, 0x0ac5000d0acac304, 0x9f69ffbbb9d97aff, 0x5aff0ad3050bbcc9, 0xbaae654dffbd09d4, 0x0b6c070e0bf80002, 0x0b0873040b28c104, 0x0af55a040afa5d04, 0x5222ff39004639ff, 0x8fff0b03060e39bc, 0x3b627669ffbb8d80, 0x0b1500110b1a060e, 0xa6e2ffbbbfaeb9ff, 0x19ff0b2397043602, 0x3bdaa02dff3bcea2, 0x0b3e7f050b4c0011, 0xdb67d1ff0b39c204, 0xc704bc9e1f7cff3c, 0xffba2d8bacff0b47, 0x0b5e39053bce761b, 0xea6a60ff0b59010c, 0x8805bada03adff3b, 0xff3c7c7850ff0b67, 0x0bb434033be83266, 0x0b8641010b949304, 0xf793abff0b819104, 0x1a0ebb120f98ff38, 0xffba6f9469ff0b8f, 0x0ba6230ebbdeaf3e, 0xbe06acff0ba19c04, 0x9c04bb78d068ff3b, 0xffbcb2285aff0baf, 0x0bd8a4043cb79b2b, 0x0bc5250e0bca3d05, 0xd18bffbb490349ff, 0x5bff0bd34105bc8f, 0xbaeed28cff3ba30f, 0x0be50c0b0bea0108, 0xec67ff3a9e151fff, 0xdaff0bf3b104bacd, 0x39c16833ffbbae15, 0x0c4475050c88cd04, 0x0c16060d0c24230e, 0xcdc1f9ff0c119f04, 0x0012ba861180ff39, 0xffbaaa5fadff0c1f, 0x0c36250e3c515836, 0x02561dff0c31ba04, 0x84043c7005f4ffbd, 0xffbc931c32ff0c3f, 0x0c6877053ce87eda, 0x0c55b4040c5a090b, 0xc37fffbc269e70ff, 0x81ff0c63080e3ba1, 0x3c2fcf09ffbbff8a, 0x0c7501110c7a000c, 0xd07eff39ed9d17ff, 0x59ff0c83cb043b12, 0x3ba2be5bffb99fa1, 0x0cb001070cd01f0e, 0x0c9d0b0b0ca2190e, 0xa51cff3a7e971aff, 0x53ff0cab94053c9e, 0xba8cb9d5ffbc6088, 0x0cbd01080cc28505, 0x8415ffbd502fe3ff, 0x49ff0ccb050bbac2, 0x3bc2df70ffbc9005, 0x0ce600120cf4230e, 0xc823a3ff0ce10b0b, 0x220ebd598df9ffbc, 0xffbcf9a9b7ff0cef, 0x0d06000c3cf2fd43, 0x16d144ff0d010b0b, 0x8505bc7c5d07ffbb, 0xffbacff04dff0d0f, 0x0f54ca043d212301, 0x0dac130b0e38070d, 0x0d48000c0d68020b, 0x0d35320e0d3a5605, 0xaebdffbac16099ff, 0xb4ff0d43000f3bf1, 0x3a887c0fff3d1dc9, 0x0d5500020d5a010b, 0xd209ffbbcdc3faff, 0x26ff0d632d05bc88, 0xbb13cf79ffbb0134, 0x0d7e14060d8cc904, 0xcb7cbdff0d796905, 0x7f043b0b7266ffb9, 0xffbd6071c9ff0d87, 0x0d9e00123c4991a3, 0xe42f6aff0d992b0e, 0x7405bd302bd0ff3c, 0xff3bc83d4fff0da7, 0x0df40d06bbfa4b5e, 0x0dc6a7040dd40011, 0xa82836ff0dc1a404, 0x0002bd5a4a52ffbb, 0xff3c51b5f4ff0dcf, 0x0de6060d38e54be7, 0x3932ffff0de10002, 0x0002ba0facb9ff3b, 0xffbd83e1adff0def, 0x0e18000c3cb3fa75, 0x0e0501110e0a9704, 0x88bbff3cfc85adff, 0xa7ff0e13b304bbd1, 0x3bee62f5ffbc143b, 0x0e2537010e2a0605, 0x6759ff3b98b440ff, 0xa8ff0e33be04bd35, 0xbcd55eddff3c0317, 0x0e84b9040ec82a0e, 0x0e56280e0e64050b, 0x4e085fff0e51030b, 0x000c3d0cfec9ffbc, 0xffbcf00b7eff0e5f, 0x0e760107bdae0aa3, 0x501c5eff0e71290e, 0x000cbdcda426ffbd, 0xffbd9a014eff0e7f, 0x0ea8010cbe0ae842, 0x0e950c0b0e9aba04, 0xc4a8ffbc0c9dd5ff, 0x0bff0ea3bc04bd90, 0xbc0f7ddbff3c6334, 0x0eb501070eba0002, 0x4ce6ff3d0f6482ff, 0x6bff0ec3ba04bc92, 0x3d682643ff3cfe28, 0x0ef0050b0f100008, 0x0edd02070ee20002, 0x1c5effbb628aecff, 0xdbff0eeb010c3ccb, 0x3d98b517ff3c9e01, 0x0efd27010f022901, 0x6240ff3bf5dc48ff, 0xacff0f0b34013d52, 0xbd392584ff3c1aab, 0x0f262d0e0f340002, 0x0f7c05ff0f21b704, 0x000c3d1097aaff3c, 0xffbbbe0805ff0f2f, 0x0f46b904bd0161f4, 0xf7421aff0f41010c, 0x030b3dc2efb2ff3c, 0xff3ce60b68ff0f4f, 0x1074010c3b86f8f5, 0x0fa42a0e0fe80002, 0x0f760b0b0f84cb04, 0x46c12fff0f713805, 0x0006bc8f914eff3c, 0xff3db0b504ff0f7f, 0x0f960111bb427e00, 0xaeaab8ff0f910107, 0x000cbd6d8627ffbc, 0xffbc8fc831ff0f9f, 0x0fc8300e3c538d39, 0x0fb500080fba0b0b, 0xc4d7ff3c0eba0aff, 0x14ff0fc300083a8d, 0x3c9b3a1effbb8e14, 0x0fd5cb040fda0306, 0xd8ffffbd021e84ff, 0x96ff0fe3cb043abe, 0x3bdb86ffff3c9a23, 0x1010cb0410300706, 0x0ffd0b0b1002330e, 0xff0cff3b9893e7ff, 0xd2ff100b13053cb4, 0xbc42bb23ffbd8a9e, 0x101d00121022330e, 0xecf5ff3ba58a34ff, 0x52ff102b340ebc11, 0xbab66635ff3ca1f0, 0x1046000d10545405, 0x2d9491ff1041000c, 0x13053c0fefa4ffbd, 0xffbc8907b1ff104f, 0x1066000fbb921371, 0x63e81cff1061000c, 0x0a063b51eb40ffbd, 0xffbc314becff106f, 0x110402073c5e20f4, 0x10a00e0b10c0060d, 0x108d520510920b0b, 0x31baff3c776602ff, 0xbfff109b0107bbc8, 0xbda3b538ffbc9fb9, 0x10ad010710b2cb04, 0x630aff3c637a00ff, 0x83ff10bb00023d40, 0x3c874570ffba2c0a, 0x10d60b0b10e40011, 0xc04ae5ff10d1030b, 0x340ebc872e03ff3b, 0xff3b8918a9ff10df, 0x10f60b0bbd42f776, 0xadae28ff10f10107, 0x0108bd34120bffbc, 0xffbe541b3aff10ff, 0x114c0b0bbd47a282, 0x111e090b112c0706, 0x4003c8ff1119320e, 0x340e3d0194f1ffbc, 0xff3caa225bff1127, 0x113e0c05bb9ebc49, 0x7976f8ff11390a06, 0x020dbd8626deff3d, 0xffbbfd02a0ff1147, 0x11708305bd8d91bf, 0x115d430511626105, 0xde0eff3c18a4ecff, 0xf5ff116b290ebcb0, 0x3b7dd5cdff3d4eb3, 0x117d000811828605, 0xb8d0ffbe003703ff, 0x80ff118b0002bd67, 0x3d46e770ffbc5058, 0x0000000800000013, 0x00000001000003e8, 0x0000000000000f86, 0x04698c0508a60007, 0x012cc1040248c704, 0x005c5c0500a06905, 0x002e5a05003c5b05, 0xe8c43cff0029ab04, 0xb90439a060cdffb8, 0xffbb34d97dff0037, 0x004e2f013c42ec1e, 0xb4ec47ff00492904, 0x2b0ebc855d25ffbb, 0xff3b98bd74ff0057, 0x0080030bbc14f63f, 0x006d67050072220e, 0x1f2dffb9bf7171ff, 0xa4ff007b0009bb95, 0xbb2a9196ff3bafb0, 0x008d02080092a004, 0xdb9cff3a92d72dff, 0xa4ff009b00083bbf, 0x3aad4e73ffbc00af, 0x00c8ac0400e8010c, 0x00b50f0e00ba0206, 0x548affb95051a5ff, 0xe6ff00c3ab04ba24, 0xbdc4d946ffbbb349, 0x00d56b0500da6d05, 0x0aecff3b4e9c43ff, 0xb8ff00e3ae04bc18, 0x371fc2ceffbb8891, 0x00fe8a05010c0008, 0x1090b2ff00f9b004, 0x0b0bbb1e615bff3b, 0xff3c19400cff0107, 0x011e020ebc75b351, 0xe60f20ff01190108, 0x8505bceedbd8ffbb, 0xff3c25d43bff0127, 0x01bc7905b9405e2d, 0x0158000f01787705, 0x01450208014a030e, 0xae8cffbc243fadff, 0x78ff01531e053c0f, 0xbb24a96bff3bf12e, 0x0165070d016a6005, 0xdb18ffba0183d4ff, 0xc1ff017363053c70, 0xba96f8e4ff3d047f, 0x018e0008019c090e, 0x16070fff0189020d, 0x0f063c3d36f4ff3d, 0xff3c57b300ff0197, 0x01ae00063aaece80, 0xf388e0ff01a9000d, 0x010838a4ed44ffbc, 0xffbcafbd98ff01b7, 0x020400023cf3531c, 0x01d6100b01e4c304, 0x118553ff01d10108, 0x7a053be2f25fffbb, 0xff3cdb0adeff01df, 0x01f6250ebaf2c247, 0xf75539ff01f1230e, 0x060d3d40e0ffff39, 0xffbb4fc047ff01ff, 0x022880053be49691, 0x0215060d021a100b, 0xc206ff3a002113ff, 0xc1ff02230009bc27, 0xbc97a55aff3c9b50, 0x02358305023a0b0b, 0xb0abffbc25f57dff, 0x07ff0243130b3ba4, 0xbae22316ffbc7347, 0x02dc0a0603688805, 0x027881050298280e, 0x02650009026a6a05, 0x0db4ffbcdedbe4ff, 0x67ff0273cc043c1f, 0xbc4fa4c0ff3b2af1, 0x02850e0b028a060d, 0xc42effbc217cf6ff, 0x82ff029384053c74, 0xbba4113aff3b825a, 0x02ae620502bc6305, 0x8387a0ff02a90208, 0x0112bb904e4aff3b, 0xff3dd4764cff02b7, 0x02ce8705bc45d407, 0xcaf385ff02c92a0e, 0x060db98a6419ffbc, 0xff3acf9e19ff02d7, 0x032460053d5d10ba, 0x02f659050304000c, 0x19e289ff02f11105, 0x1406ba1dd8aeffbc, 0xff3d5e87cdff02ff, 0x03162f0e3c25401e, 0x4487c5ff03110f06, 0xca043b25c301ffbc, 0xff3b507a1aff031f, 0x0348cb043cb42821, 0x0335000f033a010e, 0x67a4ff3c6f4345ff, 0xb7ff034300083bf2, 0xbbe352eeffbcb6bb, 0x0355000d035a020d, 0x001affba8eba66ff, 0xe3ff03630d0e3c91, 0xbcde3a8bff3bfbd8, 0x03b4310e03f8000f, 0x0386010b03940009, 0xef6cebff03812d0e, 0x030b3d8fd808ffbb, 0xffbd1391cdff038f, 0x03a60209bbf6978d, 0xbd2b84ff03a1c804, 0xc804bc5bd3c0ff3c, 0xffbc4c9a89ff03af, 0x03d8330e3c7ac8e0, 0x03c5000803ca020d, 0x50c0ffbd6e8d30ff, 0xbfff03d3320e3cc6, 0x3d549693ff3e0e93, 0x03e5c80403ea340e, 0x6ac0ffbcfee6ddff, 0x6dff03f3350e3be4, 0xbb9e4eb4ff3d0d75, 0x0420000204400112, 0x040d0d0b0412000c, 0x568effbb687264ff, 0xfdff041bcc043ba8, 0x3adc0a71ffbbdc4d, 0x042d890504320008, 0xea97ffbcb351d9ff, 0x2fff043b000c39f5, 0x3c115dc2ffbbaccf, 0x044d010c0452030b, 0x6a55ff3b6b4b50ff, 0x02080464010c3d24, 0xffbd2c790fff045f, 0xacfbdeffbc3bc738, 0x84110b06858d05bd, 0xbd0e0b05010e0e05, 0x8f8b04049d040e04, 0xf488ff048a5a0404, 0x0f3a25b2a0ffbb61, 0xbc39e9f0ff049800, 0xaf0002b98e62baff, 0x34f6ff04aabc0404, 0x0e3be3c757ffba6b, 0x3afe47dbff04b808, 0xe1a204baaf4262ff, 0xce990404d3a00404, 0x2bff3b75ed51ff04, 0xff04dc060dbc0b15, 0x3a280cff3aeea1c0, 0xee000c04f3100b3d, 0x35ffbbf8883cff04, 0xff04fc02083cd820, 0x1ee460ffbc8964fb, 0x2084040540bb043c, 0x9b00ff0512130e05, 0xe8ff051b1d0e3b84, 0xbcef55b8ffbc9e92, 0x052db5040532b604, 0x5e27ffb9170833ff, 0x94ff053b00113c18, 0xbc0cd961ff3ca139, 0x05560e0b05640108, 0x55b6aaff05511d0e, 0x190eba89bafbff3a, 0xff3c4a6828ff055f, 0x0576010c3d774aa8, 0x9003f0ff0571bf04, 0x060dba049105ff3b, 0xff3c83da5aff057f, 0x060bc804bc5d66a6, 0x05b0000205d0010c, 0x059dc10405a2070d, 0x5ac8ffba5a2939ff, 0xe4ff05ab00083b70, 0x3c7e1e60ff3d2c48, 0x05bd9d0405c2c604, 0xca0dffbb80a353ff, 0xe2ff05cb00083a5d, 0xbc3a0eb8ff3b2451, 0x05e6050e05ebb204, 0xfe7057ff05e19704, 0xa5ffbbc9f01bff3b, 0x0e05fdb304bd0e15, 0xbc07dd36ff05f801, 0x06030e3c94d306ff, 0x00ffbc8fcadcff06, 0x020641070e3a8196, 0xff061c010c062100, 0x437070ffbb7fd640, 0x2e00120633010cbd, 0x00ffbb3ee680ff06, 0xff063c00123a4bcf, 0x5ea100ff3b86bea0, 0x5700020665c9043a, 0xddafff0652190e06, 0x08bd65f495ff3c27, 0x3d9958dfff066000, 0x7700113b2ff0e7ff, 0x1208ff0672cd0406, 0x08bb8fd4b3ff3b63, 0x38c62dddff068000, 0x939305bc0058ebff, 0xd502080707020d07, 0xa7900506b5000206, 0x88d5ff06a29d0406, 0x053bc4c6f1ffbb47, 0xbc1760a1ff06b091, 0xc7020b3a02607dff, 0x2bc6ff06c2c70406, 0x053d021322ff3a0b, 0xbafe39ceff06d091, 0xf9230e3abe137fff, 0xe6030b06eb920506, 0x4bff3ae2481dff06, 0xff06f4bf04ba1313, 0xc5fa80ffbb77da00, 0xcc40ff07028f05bb, 0x0bbb8f2880ffbc40, 0x04072f0208074f05, 0xff071c01120721c0, 0x3f4f72ff3755b0f4, 0xc4d9ff072a310e39, 0x0c3b9cfef3ffb9e4, 0xff073c8f05074101, 0x11bd7fff3b31ef71, 0x9b00ff074ac404bb, 0x0b3ca9948aff3b48, 0x090765190e07730b, 0x393e8ec9ff076000, 0x6e0012b8302872ff, 0x6cffb9906940ff07, 0x040785c904b90e73, 0xb86da5fcff0780c3, 0x8ecb04ba032520ff, 0x02ffba5c6ba2ff07, 0x08081a020d3a2d3e, 0x0b07bf050b07d600, 0xff07ac2f0e07b103, 0x1344d0ff3a1f31d5, 0x7e52ff07bac204bc, 0x04bc444ed6ff3adf, 0xff07ccc90407d1cd, 0x75b384ff3a18e8c6, 0x000f3cb7f800ffbb, 0x1d0e07ecc40407fa, 0xffb9163679ff07e7, 0x07f50002bc925720, 0x81a9ffbb557dbaff, 0x9605080c000c3b82, 0xffbb06dd51ff0807, 0x08150b0b3ae2a110, 0x2740ffbc56a252ff, 0x190e0862100b3b88, 0x080e0834000f0842, 0xff389bf7acff082f, 0x083d180e394ce05a, 0x6704ffb910d8a1ff, 0x050b0854000c3b31, 0xff3b8400b7ff084f, 0x085d220ebb7ef3bc, 0x98feffbbaed45bff, 0x190e08861c0e3bd0, 0x3fff08730b0e0878, 0xbab2d270ff39a710, 0x747b7bff08819405, 0x96053c1a500dffbd, 0x0cff0893cc040898, 0xbb120f6cff3c0f5e, 0x5c3891ff08a10008, 0x95053a67efe0ff3c, 0x98040aeac6040d26, 0x80050942930409ce, 0x2b0e08de021108fe, 0xdfff08cb850408d0, 0x3a89c917ffb8c704, 0x7342ecff08d99004, 0x01083ae116c7ffba, 0xf4ff08eb0b0508f0, 0xba02fbe9ff3be809, 0x655fbeff08f91205, 0x0002bd1c916bffbb, 0x1d0e091482050922, 0xffbbb22387ff090f, 0x091d1d0ebdd7a25a, 0xa7c4ff3ab9fbf7ff, 0x8f050934070ebd42, 0xff3b1c7149ff092f, 0x093d0112badd538f, 0x096cff3a9f6a4eff, 0x9704098a0a0bbc3f, 0x9604095c000c096a, 0xffbb10dae8ff0957, 0x0965070b3b4aebda, 0x777cffbbb2c72bff, 0x000f097c070bbccb, 0xff3c44d835ff0977, 0x098530013acb3756, 0xe36eff3bef5fcbff, 0x000f09ae040ebc6b, 0x64ff099b000609a0, 0xbb54db71ffbdb0c0, 0xf367caff09a90008, 0x0107bbd34863ff3a, 0x97ff09bb0d0e09c0, 0x39333babff3c4c97, 0x9edf8dff09c99604, 0x070dbb9da0d5ff3b, 0x3b050a1a130b0a5e, 0xa70409ec010509fa, 0xffbc3a05deff09e7, 0x09f52303398e7f71, 0x9d2effbb89b61dff, 0x42050a0c0b0b38b5, 0xff384944efff0a07, 0x0a1500113a121bc4, 0x723fffbcfcc21eff, 0x72050a3ebe04b810, 0x18ff0a2ba8040a30, 0x3a5989e2ffb9b895, 0x93c0ecff0a397705, 0xc104b83ea1c1ffbb, 0xbbff0a4b2d0e0a50, 0x3c98e813ff3a5336, 0xbd24e4ff0a59140b, 0x4001b8cff6a0ffbc, 0x34010a8630050aa6, 0xb0ff0a73190e0a78, 0xbd2aa45aff3c961a, 0xa4181fff0a813b01, 0x3c01bae02dc2ff3c, 0x29ff0a931e0e0a98, 0xbd0cd4ceffba6fab, 0x1efba0ff0aa1a104, 0x230ebde48fd3ffbd, 0x0b0b0abc010c0aca, 0xffba22fec0ff0ab7, 0x0ac5bc043c0d12b4, 0xf0feff3c3876ccff, 0x00020adc2a0ebc65, 0xffbd53bad4ff0ad7, 0x0ae50008bb379b1f, 0xd5d0ffbc0ed3a2ff, 0x1f0e0c0a01083c85, 0x02070b3a00080b7e, 0x040d0b0ccb040b1a, 0xff3a4b18bbff0b07, 0x0b150111bac33c72, 0x2c16ff3a5b2940ff, 0x00020b2c88053c00, 0xff3c3d137eff0b27, 0x0b35ca04bab95d0b, 0xfc64ffbaa54315ff, 0x02070b5e00023bec, 0xa7ff0b4bc9040b50, 0x3bc1098bffbb8342, 0x2ffa37ff0b591405, 0x000cbab8876bffbd, 0x42ff0b6b00110b70, 0x3b29b892ffbb5103, 0xc2c5a5ff0b791c0e, 0x7805bc6af377ffba, 0x00080ba66c050bc6, 0x59ff0b9300120b98, 0xbb4e4e7bff3c2d9d, 0x132f13ff0ba1000f, 0x6e05ba91b74fff3c, 0x3aff0bb301110bb8, 0x3ce7fb05ffbc3412, 0xfd78c6ff0bc1260e, 0x79053bc8be23ffbb, 0xc7040bdc220e0bea, 0xff3c86d783ff0bd7, 0x0be501113d5b6dda, 0x68fcffbbfc7852ff, 0x060d0bfc03063c29, 0xff3a8c4fd2ff0bf7, 0x0c050406bab17e4d, 0x520effbd0a9059ff, 0x060d0c9a75053c03, 0x0b0e0c3608050c56, 0x7cff0c2300020c28, 0x3b70fcf0ff3c95b4, 0x9442c9ff0c310d06, 0x140bbcbbe0c7ff39, 0xaaff0c43300e0c48, 0xbac98f65ff39998a, 0x0951aaff0c51c804, 0xc9043b722b02ffbc, 0x45050c6c49050c7a, 0xff3aa063a0ff0c67, 0x0c7500113c8d9211, 0x425fffbb21b37cff, 0x1f0e0c8c220e3bcb, 0xffba6bb747ff0c87, 0x0c95340ebd11c360, 0x8a8dff3af54768ff, 0x070d0ce2190ebcd8, 0x78050cb401120cc2, 0xffbc01f558ff0caf, 0x0cbd8705bae3d1cc, 0xa3c6ff3c9c9ff6ff, 0x010c0cd4ca043b8c, 0xff3cef52c7ff0ccf, 0x0cdd0107bca1121c, 0xdb60ffbd4aefdeff, 0xc8040d060208bc0d, 0xbaff0cf30c0b0cf8, 0xbc56cc2cff3ab692, 0x5114abff0d010002, 0x000f3a0a5308ff3b, 0x96ff0d13020d0d18, 0xbd605d13ff3c5f21, 0x4f88d6ff0d21030b, 0x1f0ebac14e05ff3c, 0x01070d847f040e85, 0x96050d4d030b0d76, 0x02babfdfa0ff0d3f, 0x3b597600ff0d4800, 0x68070b3b6d72f0ff, 0x5e000d0d63050b0d, 0x35ff3af59380ff0d, 0xbab52ec0ff3b2baf, 0x21e7a0ff0d710002, 0x010b3bbf22d8ff3b, 0xff3b8b96e0ff0d7f, 0x0df9000c3b84d1f8, 0x0db0110e0db5b604, 0x0d9d01110da29004, 0x24dcff3b3f7768ff, 0x82ff0dab9e04bb79, 0xb9b6559fff3a990e, 0xd9190ebc4e8af0ff, 0xc6000b0dcbca040d, 0xf6ff3b8d18afff0d, 0xff0dd4060dba154f, 0x288d24ff3b05f9ab, 0xe600020deb000dba, 0x00ffbc5c19cbff0d, 0xff0df4c804ba9760, 0x643091ff3c27c932, 0x21060d0e41010b39, 0x0e030e0e13020d0e, 0x00ffbbbf5440ff0e, 0xff0e1c070ebb578a, 0xe0c7b5ffbc0d6550, 0x2e01070e33b904bb, 0x00ffbb7344b0ff0e, 0xff0e3c000eba0ee1, 0x3c6c60ffb9ae2100, 0x57030b0e65000d3b, 0xf3c0ff0e5200080e, 0x043bddbc40ff3b89, 0x3b8f2680ff0e60bd, 0x77190ebb73142bff, 0x2decff0e72cd040e, 0x0e3c6de6bdffb963, 0xbaca9cf6ff0e801d, 0xbbc0043b84e590ff, 0x9f01070ea400020e, 0xea00ff0e9a96050e, 0xffbab8c000ffbac9, 0x0eb60107ba564f00, 0x5a45a0ff0eb1010b, 0xa8ffbaf9a880ffbb, 0x070f1e0002bc1c76, 0x050ede000d0efe01, 0xff0ed4030b0ed996, 0x4c8300ff3b88b880, 0x0012bbfa8f40ff3c, 0x9cff0eeb00080ef0, 0xbbcd4d90ff3b48e8, 0x01e10bff0ef90008, 0x230e3b18eda0ffbb, 0x0dbc554770ff0f07, 0xbb945cc0ff0f1000, 0x95fe80ff0f192b0e, 0xcb04bab1de00ff3a, 0x01070f46030b0f54, 0x90ff0f33020d0f38, 0x3a889a40ffbb0998, 0x07da00ff0f41000d, 0x000d3c187dc0ff3a, 0xff3b648d00ff0f4f, 0x0f6f0112bc8e89c0, 0x0f6596050f6a0e0b, 0x6478ff368ae492ff, 0x0b3c366240ff3bc7, 0xff0f7c280e0f8105, 0xbf7580ff3bd491e0, 0x00133c8252a0ffba, 0x03e8000000080000, 0x0fe0000000010000, 0x0007000000000000, 0xc70404698c0508c1, 0x6a05012cc1040248, 0x6805005c021100a0, 0xbe04002e020d003c, 0xffb766a997ff0029, 0x00376105ba7026e9, 0x354aff37e03910ff, 0x9804004e0e0bb9f4, 0xff3a410365ff0049, 0x0057060d3b5adf3c, 0x072dff3b7cdb71ff, 0x060500801d04bbf8, 0x35ff006d12060072, 0x3beb9ad8ffbb3f4b, 0x6e56c2ff007b000c, 0x010ebc8a02b0ffbb, 0x48ff008d09050092, 0xbbf3ad7aff3ba102, 0x03fec0ff009b4c04, 0xc0043ba40292ffba, 0x010b00c8790500e8, 0x51ff00b5410100ba, 0xba9ddfdbffbcb798, 0x2a45ccff00c3bc04, 0x330e3a4b2c26ff38, 0xa8ff00d5bf0400da, 0x3894fa82ff36cdf5, 0xc05380ff00e3340e, 0x00113cae3dd3ffbb, 0x080e00fe2b0e010c, 0xff3c7beaecff00f9, 0x01072c0ebb348104, 0x7d8aff3d1f11a6ff, 0x8205011e060d3bfc, 0xff3aa9cab9ff0119, 0x0127220ebb812e38, 0x46f5ff3cef7829ff, 0x000f01bc7505bbe5, 0x080b015800060178, 0x22ff0145010b014a, 0xbbe4fdfbff3c1f58, 0x2ca260ff01535205, 0x04063ca2e4b4ffbc, 0x99ff01650002016a, 0xbad88407ffbd82b8, 0x722d5fff0173c504, 0x73053bdfa7e1ffbb, 0x6c05018e6e05019c, 0xff38bb1a3eff0189, 0x0197190ebc126b76, 0x9551ff3d255255ff, 0x230e01ae0e0bba38, 0xff3cc71b21ff01a9, 0x01b7c20437be67cb, 0xb840ff3d8a32cbff, 0x220e02048105bbef, 0x0e0b01d6000801e4, 0xff3a303c4dff01d1, 0x01dfc304bc94bd7d, 0x6fe6ff3c976b91ff, 0x060d01f6260eba19, 0xff3c9a393fff01f1, 0x01ff0012bb9d0218, 0x0aa1ff3c0bca8dff, 0x830502288905bb04, 0x4bff02150a0e021a, 0xbb59a12bff3ca8ae, 0x146880ff02230008, 0xc5043a690e6effba, 0x36ff02350a0b023a, 0x3a8ac272ffbafef3, 0x8df825ff02438a05, 0x88053b0bab02ffbc, 0x280e02dc0a060368, 0x010c027881050298, 0x92ff02657b05026a, 0xba9cb485ff3c78cd, 0xb0f597ff02730b0b, 0x060dbbec81e1ff3b, 0xc1ff02850b0b028a, 0x3c5a7064ffbc13ea, 0x932d3fff0293030b, 0x6505bb4f622eff3c, 0x020602ae620502bc, 0xffbb830c76ff02a9, 0x02b7000c3b8033ef, 0xfce9ffbce31003ff, 0x010c02ce2b0e3d39, 0xffba927954ff02c9, 0x02d702083b6618d0, 0xc368ffbb29cc09ff, 0x4505032461053b8b, 0x000c02f600080304, 0xffba9f4bf4ff02f1, 0x02ff11053ba2240a, 0xa4ecffbc457d26ff, 0x2a0e03162b0ebab1, 0xff3b1d5b3bff0311, 0x031f0008bc80e722, 0x7b44ff3d3d2c1cff, 0x16060348cb043c2f, 0x7dff03350008033a, 0xbb56a8abffbcbbab, 0x39fc5cff0343010e, 0x020dbc3cad22ff3c, 0x0dff0355070e035a, 0x3c650225ffbbfd82, 0xe2a988ff03630d0e, 0x000fbcc80184ff3b, 0x310e03b4330e03f8, 0x010b038600090394, 0xff3caed00dff0381, 0x038f0209bc40b01e, 0x21b9ff3c8a95d7ff, 0x320e03a6020dbbba, 0xff3cb27be0ff03a1, 0x03af030bbd56b240, 0x04c3ff3e03798fff, 0xc80403d8340e3d39, 0x6aff03c5000803ca, 0xbd2542a2ffbcb2db, 0x2089c0ff03d3030b, 0x030b3cb70e80ffbc, 0xc0ff03e5010803ea, 0xba2df340ff3dce9b, 0x981cebff03f3020d, 0x0112bc2026f0ffbb, 0xc804042000020440, 0xe3ff040d2b0e0412, 0xbc1db4d2ff3c1a69, 0xc84466ff041bcc04, 0x00083ab7610cffbb, 0x60ff042d8a050432, 0x3c1b2919ffbb9a3d, 0x9b873fff043b000c, 0x030b3c02d45affbb, 0xd0ff044d010c0452, 0x3d13f94dff3b53c3, 0x045f02080464010c, 0x0018ffbd1b39bfff, 0x05bd9baf7affbc29, 0x0d0584010c06978d, 0x0204bd220e050106, 0x0e048fbb04049d00, 0xbaa7750eff048a1f, 0x98170e3c226e21ff, 0xf4ff3c3ccb47ff04, 0x0e04af0009baf967, 0x3baa82dfff04aa07, 0xb8070bba9bd258ff, 0x9bffbb9d3005ff04, 0x0904e101113a1c68, 0xff04ce2b0e04d300, 0xb84849ff3bb9a18e, 0x7c20ff04dc230ebb, 0x043ae3bf45ffbc28, 0xff04eec20404f3c5, 0x9fbea3ffbb4238a4, 0x82e8ff04fcc9043c, 0x04ba819117ffbc1b, 0x120529010b0549c6, 0xff0516ac04051b00, 0x6f7d09ff3be6a606, 0xdcf3ff0524000cbc, 0x0e39c22b39ffbc5a, 0xff05369604053b0d, 0x9145adff3ad624c9, 0x19ccff0544170eba, 0x04bb759a72ff3b84, 0x0b055f00120564c7, 0x3cc185fbff055a0e, 0x9da2ff3aded7b7ff, 0x0b0b057600023d8b, 0xff3c6f00e7ff0571, 0x057f230e38e6934c, 0x68a1ffba6d198bff, 0x010806140e0bbc06, 0xb20405b0000805d0, 0xd1ff059da40405a2, 0x3cba545effbb908b, 0x9e20feff05abbc04, 0xb2043b453244ffbb, 0x08ff05bd060d05c2, 0xbb232a6cffbd6c32, 0x58583bff05cb070e, 0x040ebc0a620aff3c, 0x030e05e60a0b05f4, 0xff3cc874a0ff05e1, 0x05ef0111bd17b1ac, 0xc04cffbcf44603ff, 0x030b0606bc043c45, 0xff3d9e027cff0601, 0x060f030bbd85d76d, 0xed1cffbc5209adff, 0x0002065c01083c74, 0xc404062e0d0e063c, 0xff3ab537bbff0629, 0x0637220e3dcb4500, 0xe8a1ffbc069eddff, 0xb304064ebc043d0d, 0xff3c10424aff0649, 0x0657c404bd406adc, 0x7a8fff3d45ff98ff, 0x00020680070e3b93, 0x18ff066d030e0672, 0xbd2fe530ffbc3f1b, 0x042170ff067b060d, 0x0a0e3b185ea8ffbd, 0x0d3ce7ea00ff0689, 0x3a604e00ff069206, 0xa59305bce97954ff, 0xe702080719020d07, 0xb91a0e06c7bc0406, 0x0523ff06b4b30406, 0x0e3b52086effb900, 0xbb82462dff06c222, 0xd9c6043b1cf17cff, 0xeb42ff06d4c20406, 0x043c68f4cdffb945, 0xbc1676f5ff06e2c7, 0x0b230e3aa291f2ff, 0xf8c00406fd170e07, 0x15ff3a233300ff06, 0xff07060a0bbbac39, 0x3ac6c0ff3af33180, 0xd7c0ff0714010b3c, 0x0bbc2d8480ffbb80, 0x0e07419105076105, 0xff072e010c07330d, 0x8b284dffba88ad82, 0x081aff073c220eba, 0x0e3a663947ffba3e, 0xff074ea304075332, 0x70cdb2ff3b32b91f, 0x7557ff075c01123a, 0x0b3d484abfffbc04, 0x090777190e07850b, 0x392b7f34ff077200, 0x800012b81e8ae5ff, 0xa5ffb981f909ff07, 0x040797c904b90033, 0xb855e673ff0792c3, 0xa0cb04b9ec0f74ff, 0x5dffba466125ff07, 0x080835020d3a1bea, 0x0907d19a0407f100, 0xff07be960407c302, 0xede66effb8b6f2d6, 0xfb48ff07cc0002bb, 0x0e3c16e680ff3d1d, 0xff07de011207e32a, 0x8b3b6bffbc3a56e3, 0x817bff07ec2b0e3a, 0x083b06394effbc60, 0x0b0807230e081502, 0x3a832dd2ff080207, 0x10c904babe9f2eff, 0xa8ffbcbdbadcff08, 0x0b0827070e3b99d8, 0xbb4ba755ff082209, 0x300d0e3b6a8100ff, 0x6bff3bc68340ff08, 0x0e087d000f3c4e3f, 0x04084f9404085d14, 0x3ba0870cff084a90, 0x58c004bcf57d20ff, 0x84ff3b1778ffff08, 0x0b086f020bbb2056, 0x3c06862dff086a01, 0x78bc043e029242ff, 0xaeffbdbfaf0aff08, 0x0408a1cd04ba3d75, 0xff088e170e0893c8, 0xbb56cdffb8ca0e26, 0x63b4ff089c060db9, 0x0cb9ef1e3eff3a54, 0xff08ae020908b300, 0xdda910ff398da947, 0x8c63ff08bc00093b, 0x05bbae8256ff3b14, 0x040b05c6040d2695, 0x04095d660409e997, 0x0408f90f06091959, 0xff08e6370408eb58, 0x2cd35cffba14ff7c, 0x0f53ff08f4120e3a, 0x07bb6abe01ff3b57, 0xff09060002090b02, 0xc2213fffbbdc964b, 0xed08ff09141106ba, 0x0b3b89c09bffbc04, 0x0e092f000d093d09, 0x3d56143eff092a07, 0x38060bba9ad948ff, 0x40ff3848e926ff09, 0x05094f0c053b8080, 0xba9cb751ff094a03, 0x585a04bbf4b797ff, 0x55ff3bdff98fff09, 0x0b09a527033ab1d9, 0x1209770108098513, 0xbb2a2e12ff097200, 0x8023033b951af3ff, 0xbfffbb02da1bff09, 0x01099728013ba5c2, 0xba8288aeff099226, 0xa0060dbca442e9ff, 0xe5ff3c79f3c3ff09, 0x0109c92a033c003c, 0xff09b6011109bb38, 0x82cb63ffbbbf4f05, 0x1d83ff09c4060d3c, 0x03bc5ce2c8ffbcfb, 0xff09d6001209db34, 0x9b39daffbaec1484, 0xd23cff09e4010c3b, 0x01b585edd9ffba19, 0x0d0a35070d0a7940, 0x010a07aa040a1506, 0x3a292d73ff0a023f, 0x10300e3cfa2d2aff, 0x3fffbc31f574ff0a, 0x010a279c04bad055, 0x3a47a1d0ff0a223e, 0x3000123cfae83fff, 0xe7ff38c84a56ff0a, 0x030a593005bd76e6, 0xff0a4626010a4b2d, 0x5f3a62ffbdaa06c6, 0xaf8dff0a54b3043b, 0x013c5a3cc4ff3d52, 0xff0a66170e0a6b3c, 0x32720effbd4fe2bb, 0x24b1ff0a74030bbc, 0x04bdb597d4ff3ca1, 0x030aa12a030ac1a3, 0xff0a8e23030a9327, 0x2425c2ffbc3ea599, 0xf7abff0a9c9e043c, 0x05bcaa0febffbd69, 0xff0aae9b040ab351, 0x3d1a22ff3ae39fde, 0x1990ff0abc130b38, 0x04bb301a9dff3882, 0x0e0ad7070b0ae5a5, 0xbb2e3419ff0ad22a, 0xe000053b8470c8ff, 0x6effbd3080a1ff0a, 0x0d0af7a7043bf4e8, 0xbc3e96f4ff0af207, 0x0051053c83e6aaff, 0x3eff398056c7ff0b, 0x0e0c0a0108399bf8, 0x0e0b551c0e0b7e22, 0x0b0b27c8040b3519, 0xb9bab3d3ff0b220e, 0x3001123c0d8f42ff, 0x5effba2fcb74ff0b, 0x020b4706063ac29f, 0x3db201adff0b4200, 0x50030b3c6ee899ff, 0x20ff3c2a37eeff0b, 0xff0b5e0c05bc8524, 0x0b7000023d6577b0, 0x16ad45ff0b6bc704, 0x0008bc3ee81bff3d, 0xff3aa1565bff0b79, 0x0bc6ca04bb3dfb33, 0x0b9800020ba67105, 0x868525ff0b93260e, 0x2a0eb9f104c3ffbc, 0xff3c6d76fdff0ba1, 0x0bb8c9043a270805, 0xb2a6c2ff0bb3340e, 0x0012bc88b86eff3a, 0xff3c2b8297ff0bc1, 0x0bea230ebc0e7fba, 0x0bd70b0b0bdc000c, 0xf575ffbbc2cb4bff, 0x33ff0be5cb043adf, 0x3b792e8dff3c8097, 0x0bf72a0e0bfc2f0e, 0x4053ffbb806bc2ff, 0xc4ff0c05300e3b2f, 0xb91602b2ffbc8ca8, 0x0c56060d0c9a7505, 0x0c2814060c360805, 0x2b1f54ff0c230111, 0x15063ca8fad0ffbc, 0xff3d382204ff0c31, 0x0c48210e3be492c0, 0x738c9cff0c437005, 0x2a0ebcc8044dff3a, 0xffbacab3f4ff0c51, 0x0c7ac90437e6e989, 0x0c670b0b0c6c4905, 0x7720ffbb8d3ec3ff, 0xd6ff0c7500123c1a, 0x3bb6eee1ffbb1187, 0x0c876a050c8c2a0e, 0x15e7ffbc19a419ff, 0xdaff0c95300e3b57, 0xbba4de88ff3bd706, 0x0cc201070ce2190e, 0x0caf180e0cb47805, 0x678affbcd68a0fff, 0x74ff0cbd0011be39, 0x3b63baafffbb4117, 0x0ccf010c0cd4180e, 0x052affba54ebc2ff, 0x26ff0cdd01113c2e, 0x3cfb85c2ffbbfff0, 0x0cf8c8040d060208, 0x298ae3ff0cf38105, 0x0002bbfd4114ff3b, 0xff3b3c2c40ff0d01, 0x0d18000f39f8fbce, 0x48d154ff0d13020d, 0x010cbd49ed63ff3c, 0xff3ac1ee1dff0d21, 0x0f0c220ebc34e3f9, 0x0d9a00080e1d020d, 0x0d5a000f0d5fcb04, 0x0d47110e0d4cbb04, 0xe370ffb99a5065ff, 0x21ff0d55050bbc39, 0x3ba64cbcff395e58, 0x83000fbc1079e6ff, 0x7002070d75030b0d, 0xc0ffbaa4cc00ff0d, 0xff0d7e0107bb9a66, 0x183f60ffbc29b660, 0x9096050d95010cbc, 0x50ff3ab1cc5bff0d, 0xbb140120ffbaf169, 0x0dc2c4040de2030b, 0x0daf070e0db40107, 0x0400ffba8dd380ff, 0x80ff0dbd020b39f8, 0x3b8dba00ff3ba3ec, 0x0dcf020b0dd4cb04, 0x306eff3aec6400ff, 0x00ff0ddd01073bfd, 0xbae52a00ff3b7650, 0x0df80b0b0dfd000c, 0x4768dcff0df30108, 0x20ff3b0295d0ff3b, 0x0b0e0f070ebae6df, 0xbb50b100ff0e0a09, 0x18000db8f12000ff, 0x60ff3aa85300ff0e, 0x040ea4000fbaa35a, 0x0e0e49030b0e609c, 0xff0e3600120e3b00, 0xd2aed1ff3af12209, 0x5940ff0e44020bbb, 0x0e3c2089e0ff3bca, 0xff0e560a0b0e5b00, 0xad0978ff3bff4eb0, 0xb9043c9e01c0ff3c, 0x96050e7601110e84, 0xffbc842724ff0e71, 0x0e7f060dbd2afe49, 0xbe20ffbbb9c39eff, 0x030e0e96cb043c9e, 0xff3b1e5eafff0e91, 0x0e9f030bbb381155, 0xe572ff3be6c655ff, 0x1d0e0eec1f0e3b2f, 0xcc040ebe080e0ecc, 0xffb93dc270ff0eb9, 0x0ec700023a899953, 0xd9abff3a79d45dff, 0x0e0b0ede0107ba1d, 0xffbaf0b3e0ff0ed9, 0x0ee7050b3c93d010, 0x5c70ff39982a4dff, 0x20ff0ef500023cd6, 0x040f07030b3bafc8, 0x3a51032bff0f02c9, 0xbcabff3a9035c0ff, 0xc0040fc92c0e3b24, 0x96050f26010b0f46, 0xffbc0cd138ff0f21, 0x0f410107bb4471e0, 0x0f3796050f3c0002, 0x4680ffbab5b900ff, 0xffbae0b100ffbaa6, 0x0f850002ba40e100, 0x0f6001070f6e000c, 0x313d2bff0f5b0011, 0x230eba82dc06ff3b, 0xffbc3ff380ff0f69, 0x0f770012ba541900, 0x80cd04bbb0b860ff, 0xe0ffba9d2000ff0f, 0x0c0fa90107bb03b2, 0xff0f962b0e0f9b00, 0xe00820ffba6a6777, 0x74a0ff0fa4050b3b, 0x0d3c59e1b0ffba20, 0xff0fb6240e0fbb02, 0x57be80ff3b90e240, 0x5030ff0fc4050bbb, 0x0d3c8d40a0ffbaf3, 0xff0fd6030b0fdb02, 0xab4b80ff3b7fe800, 0x00133bc136a0ffbb, 0x03e8000000080000, 0x1004000000010000, 0x0007000000000000, 0xc70404698c05089d, 0x6a05012cc1040248, 0x070d005ca60400a0, 0x3401002e5604003c, 0xff38f47e61ff0029, 0x003701093a4ef2ae, 0x6df4ff3994ce73ff, 0x3e04004ea004bb35, 0xff3a1cd2eaff0049, 0x0057080ebb892994, 0x5b27ffbd843530ff, 0x580500805b05bb88, 0x2dff006d53050072, 0x399af144ff39d487, 0x3119b7ff007b140b, 0x6205bca8e4d0ffba, 0xd9ff008d61050092, 0xbca53c37ffbab0b0, 0x649e8cff009b6305, 0xc004ba4590c6ff3c, 0x010b00c8790500e8, 0x85ff00b5050d00ba, 0xba70e2b1ffbba7a9, 0x1940cfff00c3bc04, 0x330e3a36dac5ff38, 0x30ff00d5bf0400da, 0x388617e4ff36b979, 0xecfa29ff00e37a05, 0x0012bb6d2a47ff3c, 0x000200fe0d0e010c, 0xff3d8ccb33ff00f9, 0x0107070dbcd87c81, 0x573aff3b526c1aff, 0x0109011e060dbc2a, 0xffbb1737e7ff0119, 0x012700093b859866, 0x127dff3cb8224bff, 0x770501bc7905bc7d, 0x030b0158000f0178, 0x66ff0145c504014a, 0x3c269a61ffbb01c4, 0xd87d2bff01530006, 0x6105bbfdcfcaff3b, 0x6bff01655705016a, 0xbc000325ff3a08aa, 0x486e7aff01736305, 0x0e06ba8bf9b2ff3d, 0x070d018e0e0e019c, 0xffbd142620ff0189, 0x01970006bcb7f57a, 0xf7d5ff393f9e1fff, 0x000c01ae010ebc3a, 0xffbb4d76a0ff01a9, 0x01b711063c9ba054, 0x7e44ff3c33dd4cff, 0x080b0204000f3d80, 0x8b0501d6010801e4, 0xff3a142bb0ff01d1, 0x01df0006bcfa6d6d, 0xc81affbc56f55eff, 0x280e01f602063c1d, 0xffb92cdd61ff01f1, 0x01ff06063c95377e, 0xb9ecffbcbd4220ff, 0x87050228c604ba77, 0xa7ff02150008021a, 0x3a2ee6cfffbb3e97, 0x6b3a1cff0223310e, 0x2f0e3b3efaadff39, 0x8eff02357f05023a, 0x3b1f4878ff3d0b01, 0x46ac8dff02430011, 0x88053bb2cd29ffbd, 0x010c02dcc8040368, 0x280e027879050298, 0x0dff02656105026a, 0x3c8b0623ffbb608d, 0x21a2edff0273040b, 0x7a05bc30bb42ff3b, 0xceff02850002028a, 0x3d4870c6ff3a71dc, 0x84a6b3ff0293340e, 0x85053da063f8ff3a, 0x780502ae000802bc, 0xff3c33bfa5ff02a9, 0x02b77f05bbef965f, 0x8da3ff3b7dda70ff, 0x001102ce00023c9a, 0xff3c8f7059ff02c9, 0x02d70b0bbd225f62, 0x82d8ffbcf36269ff, 0x001103248705bd54, 0x130b02f600080304, 0xff3b7c3740ff02f1, 0x02ff8605bc7fba1c, 0x47d6ffba2b65b4ff, 0x2b050316cc043c39, 0xff3b76677aff0311, 0x031f0208bad8b151, 0xb508ff3a974b02ff, 0x000f034800023c03, 0x80ff0335300e033a, 0xbc28bfb8ffbd2ebc, 0xfa3b35ff03430b0b, 0xcb043cf293a0ff3d, 0xdfff03550208035a, 0xbc0508f9ff3c8b3d, 0xad49e4ff0363010c, 0x000fbcc3cd97ffba, 0x310e03b4330e03f8, 0x020d038600090394, 0xff3c597c79ff0381, 0x038f0209bc4f1949, 0x84b9ff3c79742dff, 0x000803a6020dbba7, 0xffbd413a00ff03a1, 0x03af320e3ca0a2a0, 0x76fdff3df1b4e3ff, 0xc80403d8340e3d21, 0xf2ff03c5030b03ca, 0xbca0f8aaffbd14bb, 0xa4c040ff03d30208, 0x030bbc107c00ff3c, 0x90ff03e5c80403ea, 0xba1c8dc0ff3db9f2, 0x88e6ebff03f3020d, 0x0111bc102310ffbb, 0x01080420010c0440, 0xa1ff040d130b0412, 0x3ae7b942ffbbc724, 0x8e5278ff041b8a05, 0x8905bb9269ffff3b, 0x6bff042d00090432, 0x3c44e414ffbc6b1b, 0x591108ff043b0008, 0x030b3c0315efffba, 0x2bff044d02080452, 0x3b3e96b0ff3d052d, 0x045f01080464010c, 0xc0deff3b2204a0ff, 0x05bd8c1deeffbd1b, 0x0e058d110b067c8d, 0x0e04bd0e0b05010e, 0x09048f0011049d03, 0x39957a92ff048a00, 0x98060dbb9295aaff, 0x5fffba701b3eff04, 0x0e04afc7043b8510, 0xba8d3c02ff04aa0b, 0xb80a0b3a8c646bff, 0x83ffbccaa487ff04, 0x0404e1040e3bdc8b, 0xff04ce030e04d3ac, 0xe0a5c4ff3b30b670, 0x1c2bff04dc0108bc, 0x123c8299d0ff3d36, 0xff04ee070d04f300, 0x83b11cffbccad6ce, 0x436dff04fc070ebc, 0x0d3bee91edffbc63, 0x0f05292b0e054902, 0xff0516ca04051b00, 0x468e00ff3b85a00a, 0xe283ff05240008bd, 0x09bcc2c834ffbca8, 0xff0536300e053b00, 0x52cb49ff3be3fdb5, 0xa0d0ff0544c504bc, 0x083c5e7250ff3d31, 0x0e055f060d056d00, 0xbc8614efff055a13, 0x68070b39e873b5ff, 0x0cff3b515732ff05, 0x0c057f0112bbbe8e, 0xb94d19d3ff057a00, 0x88000c3bb1b695ff, 0x9eff3bcb2e8bff05, 0x0c0602c804bbd7cf, 0x0d05b9000205d901, 0xff05a6c10405ab07, 0x4d98ccffba460766, 0x829cff05b400083b, 0x0e3c6685c0ff3d1b, 0xff05c6bd0405cb08, 0xf1699aff39c1236b, 0x6faeff05d40d0e3b, 0x0e39bd4b24ffbb9e, 0x0805ef0d0e05fd19, 0x3b0772f7ff05ea01, 0xf8c404bc1acebeff, 0xa0ffbcf0b86bff05, 0x3c91636affbbbb01, 0x061801080638140b, 0xac8c80ff06130e0e, 0x02083c6caaa0ffbb, 0x30ff06250e0e062a, 0xbc993700ffbcbf6e, 0xfff460ff06330e0e, 0xc904bcbd50b0ffbb, 0x060d064e0002065c, 0xffbd4b982cff0649, 0x0657060d3c0f8a1e, 0xe7e5ff3c4de304ff, 0x0008066e0011bb88, 0xff39b42a66ff0669, 0x067700123bc1c481, 0x229cffbc9e5cf6ff, 0x020d078a9305bac7, 0xbc0406cc020806fe, 0x230e069e300e06ac, 0xff39b87428ff0699, 0x06a7310ebbdfbfee, 0x815aff3cb75520ff, 0x340e06becd04bc15, 0xffb8ce1245ff06b9, 0x06c701083d1acff0, 0x15a0ffbcc29a96ff, 0x170e06f09205bb8f, 0xddff06ddc00406e2, 0xbb9b0015ff3a47a8, 0x442debff06eb230e, 0x010bbbd62520ff3b, 0xffbb632500ff06f9, 0x0746050bbbb84280, 0x0718000f0726090e, 0x13b416ff07139004, 0x00093c0b6c3effbb, 0xff3a99da69ff0721, 0x0738000fbaebb236, 0x11e093ff0733000c, 0x0b0ebbae21ceff3d, 0xffbc180e64ff0741, 0x076a0b0b3a719a5c, 0x07570009075c190e, 0xb0c3ff391a5834ff, 0x6dff07650012b80e, 0xb8e6c73bffb969f2, 0x0777c304077cc904, 0x7392ffb8408598ff, 0x9fff0785cb04b9d4, 0x3a0c52c4ffba328a, 0x07d600080811020d, 0x07a8c40407b6070e, 0x347638ff07a3040e, 0x0002bb896a73ff39, 0xffbbf40700ff07b1, 0x07c895053caebe2b, 0xcad3a3ff07c3bd04, 0xcb043bb0f779ffba, 0xffbb094a28ff07d1, 0x07fa230e3be275e4, 0x07e7940507ec220e, 0x123bff3b04d3e2ff, 0x24ff07f5070bbaab, 0xbc768555ff3c4602, 0xaac1bcff08032a0e, 0x4680ff080cca04bc, 0x0fbb474160ff3c3c, 0x040839ca04085900, 0xff0826bc04082bc0, 0x92dd6fffba73fb17, 0xf02eff0834c1043c, 0x05392b4a1dffbd9c, 0xff08460008084b94, 0x061866ff3cacf8ec, 0x76daff0854cc04bc, 0x0e3b525149ffbc7c, 0x0e086f000c087d26, 0x3a4526ddff086a08, 0x78010cb982b3a1ff, 0x09ffb99ddbe6ff08, 0x0e088f0012b9e59b, 0x3c3085bcff088a2b, 0x9800093a5ccaa2ff, 0x7bffbb200bfdff08, 0x040d0295053bb313, 0x0409c598040ae1c6, 0x1108f58005093993, 0x0408c72b0e08d502, 0xb814d7ffff08c283, 0xd0900439decd61ff, 0x4bffba744553ff08, 0x0d08e701083abeb9, 0x3ac36729ff08e204, 0xf0030b3d6ddea8ff, 0x2fffbc22d04bff08, 0x05091900023c21fe, 0xff0906010b090b82, 0x5465edffbc888c18, 0xc6c3ff0914010cbb, 0x0ebb842405ff3aba, 0xff09268f05092b07, 0xc06492ff3b0f56ed, 0xc3dbff0934060dba, 0x073c4fc028ffbbb2, 0x0e0961060d098102, 0xff094e000f095309, 0xc7fd6bffbc40df9f, 0xde35ff095c170e3a, 0x0ebabb3a00ff3c40, 0xff096e060e097307, 0xad031aff3ad47f03, 0x2fdcff097c070d3c, 0x053c40fb7dffbbd9, 0x0e0997001109a542, 0xbc1b3091ff09921d, 0xa096043caf11b0ff, 0x13ff3c240c75ff09, 0x0609b74405bbbe29, 0xbbf069d3ff09b200, 0xc0230ebd63828bff, 0x45ffbb88f21cff09, 0x0b0a55070dbc89ea, 0x0b09f13b050a1113, 0xff09de010809e311, 0xaf843dff3a3e5bb1, 0x3694ff09ec0012ba, 0x0b3d282224ffbd69, 0xff09fe44050a030b, 0xef2256ff3a9d9d5b, 0x06b4ff0a0c001139, 0x04b755c0d5ffbce3, 0x040a2772050a35be, 0xbaae9e75ff0a22a2, 0x3076053a6e541fff, 0xfcffbb696664ff0a, 0x020a47c104b9a5f8, 0xbb4ea894ff0a4200, 0x50060d3bfcfd39ff, 0x5fffbb3c59ceff0a, 0x0e0a9d41013b1005, 0x080a6f170e0a7d19, 0xbd7ec39aff0a6a01, 0x7813053c022b75ff, 0x8dffbcdf4a40ff0a, 0x0e0a8f3b013d6a0e, 0xbdace5f5ff0a8a1f, 0x981e0ebb1700aaff, 0x68ff3d199892ff0a, 0x050ac1bc04bd4bc5, 0xff0aae0e0e0ab34c, 0x9d66dcff3c985556, 0x96a6ff0abc52053b, 0x0e3b0b70f1ffbbb0, 0xff0ace01070ad30e, 0x9f140bff3d1f17c9, 0x4218ff0adc02073b, 0x083c6e87beffbc4c, 0x0e0b5a220e0be601, 0x0e0b11c7040b311c, 0xff0afe00110b030d, 0x5c29c5ffbc94ee85, 0x8a32ff0b0c0b0bbb, 0x0e3c97e908ffb4f8, 0xff0b1ec8040b2318, 0x223040ff3b854e95, 0xd0cdff0b2c8c05b8, 0x05bb4543d5ff3c08, 0x3d4e8550ff0b3a0c, 0x0b47200e0b4c0002, 0xce57ff3b04d24dff, 0x7bff0b55000fbcc6, 0xba8ab4acff3b7a5a, 0x0b826f050ba2ca04, 0x0b6f62050b746805, 0x831dffbadf2b24ff, 0xdaff0b7d6d053c6c, 0x3c8793ceffbbeae5, 0x0b8f00110b947405, 0x0f02ffbc62705eff, 0x60ff0b9d260e3c53, 0x39fadd32ffbb5790, 0x0bb8000c0bc6290e, 0x9d06fbff0bb3280e, 0x280e3d22c4afffbb, 0xff3bd066d0ff0bc1, 0x0bd82a0e3d2c2eb3, 0x5e0648ff0bd3030b, 0x0207bca827dbff3c, 0xffba9a7840ff0be1, 0x0c7675053b4c0d4a, 0x0c12340e0c32060d, 0x0bff010c0c043403, 0x4d20ff3e0b3f5cff, 0xf8ff0c0d00023b1d, 0x3a5c6ee5ffbac717, 0x0c1f04060c240002, 0x056cffbb37e75aff, 0x6dff0c2dcc043c5d, 0xbcf13e7dffbc204a, 0x0c4847050c56c904, 0x2638bfff0c434505, 0x00123d4f1ec0ff3a, 0xffbb0a5089ff0c51, 0x0c68230e3bcf4e37, 0x95835bff0c635e05, 0x0d0b39dcff0affbc, 0xffbb1582eaff0c71, 0x0cbe310e3bca0bf5, 0x0c9079050c9e0c0b, 0x8e6a76ff0c8bc904, 0x0b0bbba0e7f7ff3b, 0xff39478793ff0c99, 0x0cb0060dbcbdf4d7, 0xb75c2dff0cab140b, 0x0012baabff4bffbc, 0xffba9e593dff0cb9, 0x0ce201073c8f1df3, 0x0ccf130b0cd47f05, 0x2a5dffbb48ac47ff, 0x26ff0cdd8305bcdc, 0xba7824dfff3c440a, 0x0cef79050cf4320e, 0x71d2ff3d2bf55fff, 0x08ff0cfd010c3bae, 0xbcf0981bff3b0d35, 0x0e0b01120f151d0e, 0x0d56c6040d88030e, 0x0d28b8040d36c304, 0xae79b9ff0d23050b, 0x020eba6683e6ff39, 0xffbaf2696aff0d31, 0x0d4800023aaa68cc, 0xf9238bff0d430008, 0x060d3b8569f3ff3a, 0xffbb3eda0dff0d51, 0x0d71c7043a282659, 0x0d6700080d6c000c, 0x2c46ffbc2aae85ff, 0x08bd0432a0ffbc81, 0xff0d7e01070d8300, 0x310745ffbb5d9827, 0x01083bd891d0ff39, 0x070d0db00b0b0dd0, 0xa3ff0d9db9040da2, 0xb9332b01ff3b2f88, 0x8b1518ff0dabc804, 0x060d3b871e10ff3c, 0xdcff0dbd110e0dc2, 0x3bbdaa30ff3961f7, 0xe0c253ff0dcbcd04, 0x0011bb40570bff3a, 0xcc040de6cd040df4, 0xffbba24d08ff0de1, 0x0def0002bb2554fb, 0x62a0ffba32f280ff, 0x060d0e06080e3a21, 0xff3bb45610ff0e01, 0xbe991bffbbd99e68, 0x5796050e89020bbb, 0x29bc040e3700080e, 0xae63ff0e24b3040e, 0x0f3ba5c4e2ffbb3b, 0xbbfbc91bff0e3200, 0x49000cbac51037ff, 0xbbc5ff0e4401070e, 0x0c39aff800ffbb1b, 0x3ae39672ff0e5201, 0x72130ebb321aa0ff, 0x68000c0e6d0d0e0e, 0xe5ffba36bbe8ff0e, 0xbc6b8f00ff3af147, 0x0e7f000d0e84020d, 0xe580ffbaa27900ff, 0x0e3c81ed20ff3b0b, 0x0d0eb1010c0ed103, 0xff0e9e00080ea306, 0x65690aff39fd2972, 0xde40ff0eac070d3b, 0x0b3bf9fc00ff3c8e, 0xff0ebe01070ec303, 0x0f92d0ffbc791e50, 0x5900ff0ecc090bbc, 0x0e3c127b00ffbae1, 0x020ee7010c0ef50b, 0x3c8aafc0ff0ee200, 0xf0030bbb110fecff, 0x80ff3c2ed558ff0e, 0x0d0f07040d3c37d3, 0x3aa84944ff0f0202, 0x10000f3c8adc10ff, 0xb1ffbb4ccc92ff0f, 0x080fe40e0b3a4e20, 0x0e0f65000c0fa000, 0x0b0f3796050f451f, 0x3b06f7beff0f3205, 0x40cd04bc9b8e2eff, 0x69ff3a8432d0ff0f, 0x070f5700113c0263, 0x3b9535a0ff0f5201, 0x60230ebc2cc190ff, 0x75ff3a684ce2ff0f, 0x0d0f800002baba18, 0xff0f76230e0f7b06, 0xfef880ffba747400, 0x050bbb9f0c60ffba, 0x28ff0f8d060d0f92, 0xbc5cfc98ff39ba47, 0xcfd998ff0f9b0011, 0x00023c4417f0ff3c, 0x70ff0fad00110fb2, 0x3b102da0ffbbc1a2, 0x0fc800120fd6050b, 0x61d210ff0fc3030b, 0x1f0ebbcd5f78ffbb, 0xff3b18fb35ff0fd1, 0x0fdf1f0e3ae34710, 0x2f80ff3c61b1c0ff, 0x00110ff600023bb9, 0xffbbed5820ff0ff1, 0x0fff0011ba9aa680, 0x9c50ff3c850810ff, 0x0008000000133c25, 0x0001000003e80000, 0x0000000010790000, 0x8c0508ca00070000, 0xc1040248c7040484, 0x021100a06a05012c, 0x020d003c6805005c, 0xb8ff0029be04002e, 0xba645bb4ffb81fd7, 0xd82f12ff00376105, 0x0209b9d66181ff37, 0x15ff0049b304004e, 0x39cbe083ff3a0741, 0x041786ff0057020e, 0x170ebba3fc8fff3b, 0x6a04007202080080, 0xffb8740ea4ff006d, 0x007b12053bb7b56e, 0x29c4ffbca5ed87ff, 0x260100922905bc03, 0xff3b811207ff008d, 0x009b0008bc5d32ba, 0x9c21ffbbe5c9aaff, 0x790500e8c0043ce4, 0x010800ba100e00c8, 0xffb98e9927ff00b5, 0x00c3120e3b246ae2, 0xefb4ff3bc4735fff, 0xbf0400da0009b98b, 0xff39622f79ff00d5, 0x00e3230eb9117004, 0xf947ffb9f11f54ff, 0x080e010c0011ba8c, 0x66ff00f9010900fe, 0x3c1b3280ff3dc169, 0x089f5bff01070d0e, 0x030d3a6b115cffbd, 0xacff01190002011e, 0x3c94cb2fffbc890b, 0x4fbf00ff01270d0e, 0x75053994c487ff3c, 0x29050178000f01bc, 0x360e014a020d0158, 0xffbbaa3d38ff0145, 0x01530d0ebd934a18, 0xaef0ffb9947a4dff, 0x0a06016a55053cad, 0xffbd0682f5ff0165, 0x01730208bba1fa09, 0xd5b9ffbbd26d98ff, 0x6d05019c73053c30, 0xb7ff0189c404018e, 0x3997efc9ffbab369, 0xef970bff01970108, 0x0d0e3c05f808ffbb, 0xf0ff01a9740501ae, 0xbd57e85effbbc756, 0x35755bff01b77405, 0x81053be49570ffbc, 0x010c01e4210e0204, 0xd7ff01d11c0e01d6, 0xbca472aaff3a2442, 0x5582b7ff01df180e, 0x7b053cc668a6ffbb, 0x55ff01f1130b01f6, 0x3c27127dffbaa883, 0xd4019cff01ffc504, 0x89053b7cb80bffbb, 0xc504021a83050228, 0xff3a15feceff0215, 0x02230008bbeb07a4, 0xf0f4ffb9e3d2eaff, 0x0a0b023ac5043a44, 0xffbae71fa0ff0235, 0x0243010c3a6bf29b, 0x8579ff3b0c2ba1ff, 0x0b0603688805bc86, 0x78050298130b02dc, 0x7505026a0b0b0278, 0xff3b3b0415ff0265, 0x0273c804bc9910bf, 0xf760ff3d00b661ff, 0x000f028a070b3c5b, 0xffbbd6ff98ff0285, 0x0293000f3c12d128, 0xe569ff3c106234ff, 0x220e02bc8705bb1a, 0xa1ff02a90d0e02ae, 0xbb8b84eeff3c3402, 0xde0295ff02b7c804, 0x2b0ebab5530cff3a, 0xc2ff02c9000202ce, 0x3c0d1a41ff3d0656, 0xd75bb8ff02d7060d, 0x61053cab3c55ffbc, 0x000d030400080324, 0xabff02f1540502f6, 0x3d58535cff3b9dda, 0xa627bfff02ff5905, 0x11053c6722beff3a, 0xb6ff031119060316, 0x3b1a9c4dffbc987f, 0xfff62bff031fcc04, 0xcb04bc04d9c3ff38, 0x000e033a010e0348, 0xff3c8cbdd4ff0335, 0x03430c063c0a4551, 0x6162ff3d0e7d0eff, 0x0002035a020dbc7a, 0xff3cb74252ff0355, 0x036316063b8f108d, 0x85baffbc236e8cff, 0x310e03f8000f3c8d, 0x020d0394000903b4, 0xb0ff0381010b0386, 0xbae055b7ff3d74bd, 0x08c8a0ff038f190e, 0x000dbc520d05ff3d, 0xc0ff03a1020903a6, 0xbd24fa70ffbc6087, 0x7c92ccff03af0209, 0x020db9144a00ff3c, 0x8a0503ca340e03d8, 0xffbc7aedbeff03c5, 0x03d3030b3c2268f0, 0x6cd5ff3d24ff3eff, 0x030b03eac804bb76, 0xff3e298046ff03e5, 0x03f38a053d2c0af8, 0xa8f0ffbb8188e0ff, 0x020804400f0e3c95, 0x8a05041200080420, 0xffbba49d4bff040d, 0x041b0c0b3b4545c4, 0x431dffbcfdcfacff, 0x0b0e04328a053d0b, 0xffbcacb590ff042d, 0x043b0c0b3ba9ccb7, 0x9b2cffbd5869eeff, 0x010804640111bc42, 0x06ff045189050456, 0x3a60d8d0ffbc01f3, 0xf2d53aff045f8a05, 0x030bbb72dd22ff3a, 0x90ff0471010c0476, 0x3cefb7b2ff3b2b87, 0xcdb5d9ff047f010c, 0x8d05bd7c35dfffbc, 0x060d05a8010c06a9, 0xa80404d8be04051c, 0x0a0b04aaa70404b8, 0xffbaa9dff8ff04a5, 0x04b30b0b3a6f4b20, 0x763dff3d00e580ff, 0x030b04caaf04bcd9, 0xff39b420b3ff04c5, 0x04d3020dbc5eca5a, 0x42baff3a48af55ff, 0x040b04fc000f3989, 0x4eff04e9020804ee, 0xbd8b93e5ff3b58d1, 0x6c3ec8ff04f7ca04, 0x030bbd03633cff3c, 0xbdff05090208050e, 0x3c9d8befff3b7710, 0x8fffb7ff0517c504, 0x01083a1bd9dbffbb, 0x070b054400080564, 0x5dff0531000c0536, 0x3b9bd2ffffbadd1d, 0x84aab9ff053f0012, 0x000cbbc396f4ff39, 0x3aff05511d0e0556, 0xbbcda584ff3a427b, 0x4b939dff055f0002, 0x00123ab067bbff3c, 0xbc04057a02080588, 0xff3b0c20b6ff0575, 0x0583c904bb40cb37, 0xad40ffbbab751cff, 0x040b059ac904bc8b, 0xffbb22f5d2ff0595, 0x05a3190e3b7a1cee, 0x7c90ff3ca0a3b1ff, 0x010806380e0bb9d7, 0xb20405d4000805f4, 0xcbff05c1a40405c6, 0x3ca80a26ffbb81fa, 0x8f9623ff05cfbc04, 0xc9043b3258b9ffbb, 0x00ff05e1c50405e6, 0xbd290f2affbbcaeb, 0x1265a9ff05ef030b, 0x040e3d14d7eeffbd, 0x030e060a0a0b0618, 0xff3cb1155eff0605, 0x06130111bd081550, 0x7a04ffbcdce893ff, 0x030b062abc043c33, 0xff3d8e4862ff0625, 0x06330a0bbd70792b, 0x699cffbc4077b3ff, 0x100b066501083c82, 0x023d14324cff0645, 0xff0652b204065700, 0xea7c3cffbbdf8ad1, 0x7602ff066000113a, 0x023b733342ff3c5a, 0x04067b070e068900, 0xbc2325bbff0676c3, 0x840a0ebd21e4f0ff, 0xccff3ccbe0e0ff06, 0x0e069bc404bc8fd2, 0x3b4d1c10ff069603, 0xa4070ebce61840ff, 0x30ff3b1e75c0ff06, 0x0d07ae93053c163f, 0x0206f90208072202, 0x0406cb900506d900, 0xbb81648fff06c687, 0xd4c9043b7dbe0dff, 0x11ffba75dda0ff06, 0x0806eb020bbca561, 0xbb084f60ff06e600, 0xf491053c49a2c6ff, 0xf1ffbae98b49ff06, 0x05071d000f3aaa9e, 0xff070a070e070f92, 0x2e2708ff3b5dd9ab, 0x6e00ff0718bf04b9, 0xffbba5d580ffbb4c, 0x076a050bbbc7d1c0, 0x073c7004074a040b, 0xc6266cff0737030d, 0x2b0e3a5bb418ffbc, 0xffb9e3f60dff0745, 0x075c290e3aa3d46f, 0x8bc762ff07570d0e, 0xc104390e6d25ff3b, 0xffbc6778deff0765, 0x078e0c0b3d03f196, 0x077b1d0e0780010c, 0xc237ffb9be1e22ff, 0x37ff07890a0b3a85, 0x39b45eb6ffb91dbb, 0x079b0e0e07a0220e, 0xf46cffb85141bdff, 0x00ff07a991053a1b, 0xbc0e9febff3b0a2a, 0x07fa0008083e020d, 0x07cc000907da050b, 0x4c9952ff07c7000d, 0x180e3b0275d9ffbb, 0xffbb8dbd85ff07d5, 0x07eca4043b804d80, 0xa2636dff07e79e04, 0x95053d52afc4ff3a, 0xff3b044ff7ff07f5, 0x081e0002bb43c5a9, 0x080bc0040810c704, 0xb360ffb96610f1ff, 0xb8ff081995053d2d, 0xbcc15c2cffbb8390, 0x082b95050830020b, 0x5d97ffb9d0d100ff, 0x10ff0839030bbbf8, 0xbab9a87eff3b6af6, 0x08666d040886130b, 0x0853001208580112, 0xa07affbbe84395ff, 0xb0ff086194053b52, 0x3b968f5bff3d23ad, 0x0873000c0878000f, 0x0bf0ff3b7c2731ff, 0x64ff0881230eba3d, 0xba825626ff386c60, 0x089ccc0408aa0108, 0xc03f98ff0897060d, 0x0009ba0a687fff3a, 0xff39c2854eff08a5, 0x08bc1d0ebbc7d0b6, 0x31b9c3ff08b7070e, 0x1f0ebc0f4245ff3b, 0xff3d9a4cd6ff08c5, 0x0d3895053c6d2364, 0x09f297040b0ec604, 0x0922100609661706, 0x08f48b0409028005, 0x5c4b83ff08ef6e05, 0x8f04ba2ec419ff38, 0xffbb7990d7ff08fd, 0x091400083a6224fb, 0x128f56ff090f8405, 0x000c3ae216d7ff3a, 0xff38e0b925ff091d, 0x09461306bc41a533, 0x09336f040938000f, 0x8bd5ffbb85a77cff, 0x25ff094196043c40, 0x3c80760dffbb6461, 0x0953950409580008, 0x3ec9ffbb69bf62ff, 0x2dff09619604bcb3, 0xbc795522ff3a6630, 0x098e050d09ae030e, 0x097b12050980020d, 0x1dd7ff3b3782acff, 0xa4ff098904053cb1, 0xbc96b28cff39fddd, 0x099b7f0409a0000f, 0x8938ffbaf031afff, 0x92ff09a9020ebccd, 0xbc2ba12bff3b66f1, 0x09c4010d09d2000c, 0x9e4848ff09bf070e, 0x000f3d2d3895ffbb, 0xffbc1c8f38ff09cd, 0x09e402073bc12557, 0x2cfae0ff09df000f, 0x0108bb9358acffbd, 0xff3cbbc058ff09ed, 0x0a820207bdb15b3c, 0x0a1e220e0a3e070d, 0x0a0b40010a10a804, 0x867effbc32f456ff, 0x70ff0a19060db931, 0x3b4fd947ffb9bd09, 0x0a2b09060a304405, 0xbf34ff3a4b2410ff, 0x33ff0a390b0bbb44, 0xbb0c301dff397395, 0x0a54080e0a620d0e, 0x21b432ff0a4f070e, 0xb6043cac52c3ffbc, 0xffbcce447fff0a5d, 0x0a740e0ebda513a7, 0x49025eff0a6f000c, 0x170e3ce35850ffba, 0xffbc8f225fff0a7d, 0x0aca41013a32fa53, 0x0a9c0a030aaa3e01, 0x8de365ff0a97000f, 0x2c03bccf082bffba, 0xff3a9ef3b6ff0aa5, 0x0abc9d04bc6bd1da, 0xca1835ff0ab79a04, 0x220e3d83d838ff3c, 0xffbd85b827ff0ac5, 0x0aee00023c1ac436, 0x0adb030b0ae02103, 0x4d31ff3bed4e30ff, 0xffff0ae9b404bd3b, 0xba95ac2cffb95336, 0x0afb9a040b002e0e, 0xf631ffbb8855d6ff, 0x28ff0b090306b8d5, 0xbc028978ff3c14f4, 0x0ba2190e0c1c0108, 0x0b3e170e0b5e010c, 0x0b2b0d0e0b30140e, 0x7ee6ffbaa94d68ff, 0xe9ff0b39ca043b0e, 0x3c074ac7ff3abae6, 0x0b4b82050b508605, 0x1274ff3a93a83aff, 0x81ff0b5989053c8b, 0xba2d5fd6ffbcac92, 0x0b740f0e0b82180e, 0xae560fff0b6f0002, 0x0012bb854b13ff3b, 0xffbc165c66ff0b7d, 0x0b9486053b35dc86, 0x3093b6ff0b8fc704, 0x89053ca998b5ffbd, 0xffbcb6c87cff0b9d, 0x0bd80c053b4fb3b6, 0x0bb3220e0bb82a0e, 0x96a5ff3d39de60ff, 0x340e0bca0002be0f, 0xffbdf8a74aff0bc5, 0x0bd30a063d1d975a, 0xff80ff3e38dad8ff, 0xc7040bfc68053d28, 0x48ff0be9310e0bee, 0xbc5d8977ff3c6aa8, 0x1377a4ff0bf76105, 0x6d053c4452fcffbb, 0xbeff0c0969050c0e, 0xb91a84faffbce0b6, 0xcb666cff0c177705, 0x7505b9b9ca50ff3a, 0x07050c68060d0cac, 0x02060c3a3b010c48, 0xff3d0f0e48ff0c35, 0x0c43300e3c7e7200, 0xa078ff395d1b88ff, 0x0c050c5a6405bcf4, 0xffba877fe4ff0c55, 0x0c63720538f3c3fd, 0x0335ffbab2dce1ff, 0x44050c8cc9043afb, 0xc4ff0c79010c0c7e, 0xbb877130ff3d058d, 0x4d2f1fff0c87280e, 0x220ebbd1e3b8ff3b, 0x76ff0c99cb040c9e, 0xbcac9f48ff3b321c, 0xd11b3dff0ca7340e, 0x7b05bcbff8dbff3a, 0x260e0cd478050cf4, 0x6eff0cc1060d0cc6, 0x3adcb2eeffbcabcd, 0x575d09ff0ccf0b0b, 0x2a0e3cdfc6b0ff3b, 0x02ff0ce179050ce6, 0x3b4e50b4ff3ca39e, 0x2d829aff0cef7905, 0x180e3aacb951ffbc, 0x87050d0a01120d18, 0xffbb3a231bff0d05, 0x0d1387053aca497d, 0xb037ff3c7c4321ff, 0x2a0e0d2a7c053b29, 0xffbce6beb0ff0d25, 0x0d33220ebb3f6007, 0xb14fffbb8b78cbff, 0x01120f5d1d0e3ad3, 0x00080dd0030e0e53, 0x00020d6c010e0d8c, 0xa5ff0d5900110d5e, 0xbb126874ff3a478c, 0x861950ff0d67000c, 0x020e3ae707feff39, 0xc2ff0d79010b0d7e, 0xbb63dbc2ff3a939d, 0xd7957eff0d870002, 0x0a0bbad5cb63ff3a, 0x050b0da200020db0, 0xffbb5a0f25ff0d9d, 0x0dab0108bc2695b4, 0xc969ff3a9aa64dff, 0x00020dc2060dbb19, 0xff3b5f6ea0ff0dbd, 0x0dcb0012bac5e960, 0x66b4ff3acf4c6aff, 0x01080e18000c3be6, 0x00080dea050b0df8, 0xff3b06f63dff0de5, 0x0df3ca04bb1f8af5, 0x8ef5ffbaa55028ff, 0xcd040e0a00123a23, 0xffbb2946beff0e05, 0x0e13080e3976d7d1, 0x89cbffbb18f0e5ff, 0xc7040e33c804bbab, 0x43ff0e29060d0e2e, 0xbc927df5ff3b50e0, 0x45cb04bca16197ff, 0x4279ff0e400e0e0e, 0x08bbeb350eff3bc0, 0xb903ac56ff0e4e00, 0xd1020bbbca76ccff, 0x7f00080e9f96050e, 0x6c0d0e0e71110e0e, 0xc0ffbb20c54dff0e, 0xff0e7a040d3becfb, 0x8e4400ffbc27677a, 0x8c02080e91000c3a, 0x40ffba84ba72ff0e, 0xff0e9a010cbba23a, 0x204b20ff3accd464, 0xb50d0e0eba130ebb, 0x8178ff0eb0020d0e, 0xffba05f79aff3b62, 0x0ecc020dbc5400c0, 0x923980ff0ec7c004, 0x00ff3afbd100ffba, 0x040f19c8043c69de, 0x0b0eeb90040ef9c4, 0xbb884673ff0ee603, 0xf499043a030a8bff, 0xc3ff3bceabe9ff0e, 0x0b0f0b050b39cac2, 0xba6e4933ff0f0603, 0x14000fbca5d7e0ff, 0xd6ff3d146aacff0f, 0x070f3d0b0ebc0421, 0xff0f2a010c0f2f01, 0x257190ffbbd7d6e0, 0x8d55ff0f38030b3c, 0x0cbb0f8190ff3aff, 0xff0f4a030b0f4f00, 0x734ebbffbb316ae5, 0xe582ff0f58cd04b9, 0x0b3c5971b6ff3a12, 0x0c0ff10008103e0b, 0x070f8d1f0e0fad00, 0xff0f7a050b0f7f01, 0xb68bfeff3b1bdc7e, 0xca66ff0f88050bbc, 0x123cd07b00ff3867, 0xff0f9a96050f9f00, 0xce4e70ff3ba08112, 0x11bbff0fa8230ebb, 0x0bbaa542f3ff3a51, 0x0d0fc3030b0fd105, 0x3ad1088fff0fbe06, 0xcc0011bbe6f470ff, 0xa0ffbc8d263cff0f, 0x0d0fe30002bb7752, 0xbad38f40ff0fde06, 0xec0011bb8f24c0ff, 0xf0ff3cbb10a8ff0f, 0x0e100300023c307b, 0xbbae4570ff0ffe23, 0x1e030b3b01c2a0ff, 0x3d10ff1010001110, 0xf0ff1019cd04bb4b, 0x3abfb240ff3ae607, 0x102b060d1030050b, 0xd5e8ff3b11dc38ff, 0x00ff10390011bbb8, 0x3ba6aac0ff3c4b20, 0xa18d0cff1047cd04, 0x541f0e10590e0b3c, 0xc0ffbc58c630ff10, 0x0d106b0002bb06e8, 0xba8b2f80ff106606, 0x741f0ebbd59c20ff, 0xb0ff3c6f74e0ff10, 0x08000000133c150c, 0x01000003e8000000, 0x0000000f74000000, 0x0508af0007000000, 0x040248c70404728c, 0x0400a06a05012cc1, 0x01003c120b005ca6, 0xff00293d01002e41, 0x52b7a7ffb8df3d46, 0x81a5ff0037000d3a, 0x04b9c1b872ff3ade, 0xff00499d04004ea5, 0xcb9d58ff3a0f2871, 0x6542ff0057170eba, 0x05bc4899bbff3d19, 0x050072580500805b, 0x39bfae1aff006d53, 0x7b140b398b30cfff, 0x3affba1fc891ff00, 0x040092ab04bc9806, 0xbae3ec0fff008da8, 0x9bae043c7246e2ff, 0xf4ffbc0995e5ff00, 0x0d00e8220e38184a, 0x0400babe0400c807, 0xb97c6f38ff00b5ad, 0xc3210eba3a32a5ff, 0x87ff3bcfa1aaff00, 0x0c00da8904bd2b83, 0x3b11543fff00d501, 0xe3070e3c97e36fff, 0x40ffbcc98711ff00, 0x02010c010cbaf012, 0xff00f9b90400fe00, 0xb268a8ff3b3233ed, 0x6cb5ff0107ab04ba, 0x09bb817e63ff3bea, 0xff0119230e011e00, 0xeee74dff3cc28de2, 0xbdb3ff0127ad0439, 0x05bc704d65ffbcd9, 0x080178000f01bc75, 0x0d014a0d0e015800, 0xbc3555a8ff014502, 0x531105394049cdff, 0xd1ff3d102182ff01, 0x06016a00023b7ef1, 0x3b926710ff016500, 0x735505bcdd8cf0ff, 0x62ffbb86b8daff01, 0x05019c73053bac3a, 0xff01896c05018e6e, 0x0548bbff384a2a14, 0x937fff01970108bc, 0x0b3c0cf7c6ffbc0c, 0xff01a92f0e01ae10, 0xa4c557ff3c602f88, 0x453eff01b77405bc, 0x05ba92cef2ffbd20, 0x0501e41c0e020481, 0xff01d1060601d67b, 0xb8de09ffbc4e3ced, 0x4f63ff01df7e053b, 0x0e3a1cfc02ff3cb4, 0xff01f1010c01f61e, 0x2ccf3affbd24fdf7, 0x4e6fff01ff1f0ebc, 0x05b7ceb6dbff3c95, 0x12021a8305022889, 0xbb6f9e56ff021501, 0x2300083bd929ffff, 0x36ffb9cd0ae2ff02, 0x05023ac5043a313f, 0x3aeefcf5ff02358b, 0x430011bb080535ff, 0xb2ff3bf66b68ff02, 0x06035f8805bbb3ec, 0x05028f250e02d30a, 0x05026a6505026f67, 0xbc73e8f3ff026561, 0xc2faff3d564afcff, 0x87050281cc04bdf0, 0xff39ea2dc3ff027c, 0x028a73053c527c2d, 0x3a03ffbdaf304fff, 0x6e0502b36f05bac2, 0x2aff02a0630502a5, 0xbba6d0b0ff3b1962, 0xb0df91ff02ae2b0e, 0x2a0e3cc814c5ff3d, 0x16ff02c0ca0402c5, 0xbca5ab2cff39321a, 0x7d5b2bff02ce8305, 0x000f3b15b730ffba, 0x030d02fb050d031b, 0x93ff02e8290502ed, 0x3a1d2c83ffbc9978, 0xe4db85ff02f61306, 0xc9043b6e49a6ffbc, 0xb6ff03085205030d, 0x3ca4f4f8ffbcb720, 0xbb4a31ff03165405, 0x020dbc548c69ff3c, 0xc80403311406033f, 0xffbb321bb5ff032c, 0x033a030b3c94d344, 0x873dffbb7d7800ff, 0x0f0603512c0e3bab, 0xffbc0d37c5ff034c, 0x035a300eb95e100b, 0x4509ff3c142dfeff, 0x010c03ef01113a08, 0x8b05038b130b03ab, 0x95ff03780008037d, 0xbafc9343ffbc61fc, 0x13acc5ff03860008, 0x89053a3ee68fff3c, 0x32ff0398000c039d, 0xbc70f8e7ff3c45c5, 0xbbcb92ff03a60008, 0xc804ba80e7cfff3b, 0x000803c1030b03cf, 0xffbc7042b0ff03bc, 0x03ca0b0b3d88dcff, 0x1540ff3cbde2b2ff, 0x0d0e03e18905bb39, 0xff3c63a510ff03dc, 0x03ea060dbc689f7b, 0xbf94ff3babb12bff, 0x330e0437cb04bb81, 0x010b0409310e0417, 0xff3cbf29b8ff0404, 0x0412030bbaaa132f, 0xcbe9ff3dc8e2a8ff, 0x00080429340e3cb9, 0xffbc8453eaff0424, 0x04320008bcff2cc3, 0x1a58ffbb27c840ff, 0x02080452030b3d9f, 0x0f3cd7beeeff0444, 0xbb71e1ceff044d00, 0x642b0e3b1a6070ff, 0x9650ff045f0b0b04, 0x0ebc445f94ffbd25, 0x3ba39cd5ff046d31, 0x858d05ba5ff3abff, 0x0a0e0e058d110b06, 0xa6040e04c60e0b05, 0x9300090498000804, 0x5fff3aad597eff04, 0xff04a1000cba38fc, 0xa18976ff3b382306, 0xb39a0404b80002bb, 0x05ff3ae4d5baff04, 0xff04c16904baab60, 0x6bb64fffbd268ec5, 0xdc070e04eaa20439, 0x5a1fff04d7030e04, 0x0dbc56ce2dff3b58, 0x3b3f7202ff04e506, 0xfca3043d2cbecdff, 0x9ad6ff04f7000804, 0x0ebc0dea08ffbd03, 0x3c59feacff050504, 0x49bb04bc1bda18ff, 0x1b130e0529840405, 0x010b3b64d400ff05, 0xffbc06ee00ff0524, 0x053ba904bcd9d7bc, 0x101a02ff0536170e, 0x030bbaed99ddff3c, 0xff3b44250eff0544, 0x056d0108bb6bd925, 0x055ac804055f140e, 0xd3fbffbc9917e1ff, 0xf0ff0568230e3bc9, 0xbabdb983ff3a39f6, 0x057a280e057f010c, 0x6215ffb9a1abd9ff, 0xe2ff0588060d3ba3, 0xbc30fecaff3c6d2b, 0x05d9010c0602c804, 0x05ab150e05b90002, 0x076628ff05a6b204, 0x0009bbb23689ff3b, 0xff3b4b910fff05b4, 0x05cbc604bc8ca474, 0x6e8ac3ff05c69d04, 0x250e3a57af90ffbb, 0xffbc10b219ff05d4, 0x05fdc5043bfbf496, 0x05eab20405ef0e0e, 0x326fffbbbe4d86ff, 0x2bff05f8170e3b51, 0xbb9ed1c0ffbcda1d, 0x4a000c3c81624aff, 0x1c230e062a000806, 0xe691ff0617011106, 0x12baf68a30ff3c23, 0x3c6c457eff062500, 0x3c280ebb423dc6ff, 0xc5cbff0637010806, 0x0e3ab27d09ffbca2, 0x3d668204ff064529, 0x6e230e3b3e2a5aff, 0x5b170e0660190e06, 0x55ff3a394e16ff06, 0xff06690009bbf01a, 0x621e5aff3c22d8f6, 0x7bcc0406800112bc, 0x6cffbc66f5b6ff06, 0x3c5a4db0ff3b0c18, 0x0707020d07939305, 0x06b5bc0406d50208, 0x06a2a10406a71a0e, 0x6f6dff3ac9a570ff, 0xf3ff06b0050bbb1e, 0x3b945c6dffbb2acc, 0x06c28f0506c7bd04, 0xd9c0ff3c971702ff, 0x5fff06d0330ebba5, 0xbc00300cff39c06c, 0x06eb170e06f9230e, 0xf21818ff06e6c004, 0xc904bb8af495ff39, 0xff3b6d2e40ff06f4, 0x07028f05b94d3000, 0x0000ffbc112fc0ff, 0x0208074f050bbb3c, 0x01110721c004072f, 0xff3774935eff071c, 0x072a030e395a2732, 0xc9bbff3c00d29dff, 0x060d0741040bb94c, 0xff3b441c56ff073c, 0x074a9005bb229f3a, 0x3d00ffbd107dc7ff, 0x920507730c0b38c3, 0x63ff07608e050765, 0x38ed033cffb99037, 0xe47880ff076e6d04, 0x220eb9a54577ff3a, 0x0eff07800e0e0785, 0x3a0c5c5affb83c54, 0x3fc93dff078e000c, 0x020dbbca7583ff3b, 0x050b07df00080823, 0xc70407b1c80407bf, 0xff3977640dff07ac, 0x07bac9043cbd4426, 0x74b6ffbc6149c4ff, 0x950407d1060b3add, 0xff3a3ff36bff07cc, 0x07da000c3c5419af, 0xd865ffbb20390eff, 0xb704080302083a8c, 0x00ff07f0950507f5, 0xbc344908ffb853b0, 0xcf5817ff07febc04, 0x9405b9398c29ff3b, 0x80ff0810c4040815, 0x3c349435ff3b8d5b, 0x5ce880ff081e030b, 0x000fba3bb000ffbb, 0x9004084b9104086b, 0xfaff0838000e083d, 0x3c8194f4ffbb9bfe, 0x8ec80eff0846010e, 0x02093dde85c0ffbd, 0x38ff0858010b085d, 0x3a540e73ff3915e7, 0x3685a4ff0866010e, 0xcd04bc9ccaf4ff3b, 0x000c0881c804088f, 0xff3a335374ff087c, 0x088a060dbacf9d6d, 0x4045ff3a4855b7ff, 0x020908a1000cb9c8, 0xff39b4ea18ff089c, 0x08aa060d3bcd3089, 0x4556ff3b7f14baff, 0xc6040d2f9505bb32, 0x660409d797040af3, 0x120609075904094b, 0x2a0408d9570408e7, 0xffba36a99bff08d4, 0x08e2020b39d852d1, 0x2976ffbbb488bfff, 0x010e08f9030b3a27, 0xff3b4099f3ff08f4, 0x09025604bb395faa, 0x1bd9ffbb87c502ff, 0x050b092b060bbd1c, 0x69ff09188205091d, 0x3bbc11a5ff39662a, 0x6f535aff09262301, 0x000fbc64f7adff3b, 0xffff09384405093d, 0x3c9c6151ff3ad799, 0xd0672bff0946160e, 0x2703bb5f9dd0ff3a, 0x220e097310050993, 0x8cff096025030965, 0x3bf303e1ffbc3bc4, 0x79772bff096e1203, 0x000c3c01a5daffbb, 0x72ff098022030985, 0x3b629c35ffbb793d, 0xaff37eff098e0208, 0x2a03bb70fbb3ff3b, 0x011109a9380109b7, 0xffbbabca0fff09a4, 0x09b2060d3c6bd7c5, 0xb0f6ffbce21c42ff, 0x001209c93403bc46, 0xffbad11bdcff09c4, 0x09d2010c3b8b978d, 0xd4baffba0bc714ff, 0x3f010a674101b63b, 0x00110a03250e0a23, 0x15ff09f0140b09f5, 0x3bb6ca22ffbc3595, 0x036e10ff09fe9c04, 0x3b01be26809aff3d, 0x07ff0a1021010a15, 0x3aa9e51effbc2126, 0x229422ff0a1e0a0b, 0xac04bc20f5efff3b, 0x170e0a39310e0a47, 0xffbcfff723ff0a34, 0x0a42010c3cd43d77, 0x5134ff3b6c096eff, 0x35050a59b804bd1c, 0xffbc65d068ff0a54, 0x0a620305bd68b7c2, 0x05bfffbd7d08b2ff, 0x2a030aaf65053bbd, 0x24030a8127030a8f, 0xffbbd7bd4bff0a7c, 0x0a8a9e043c03190b, 0x3f88ffbd5193a1ff, 0x2e050aa12e03bcb0, 0xffbc7fb4efff0a9c, 0x0aaa34033b8445e5, 0x0b6eff3bea56f5ff, 0x6b050ad3330eb982, 0x46ff0ac068050ac5, 0x3b8668f0ff3b085f, 0x9b2f20ff0ace9904, 0x0006b9815d1aff3a, 0xb9ff0ae001070ae5, 0xbc11f1beff3b8891, 0x0ad2edff0aee6f05, 0x0108bdfd2022ffbd, 0x010c0b87190e0c13, 0x140e0b23170e0b43, 0x54ff0b100d0e0b15, 0x3b003ee8ffba985f, 0xa8364cff0b1eca04, 0x86053bf3868fff3a, 0x3aff0b3082050b35, 0x3c7a546bff3a84e4, 0xb4c549ff0b3e8805, 0x180ebaa3de40ffbc, 0x00020b590e0e0b67, 0xff3ba2abb0ff0b54, 0x0b620c05bb6fed8b, 0x22cbffbdb7cb15ff, 0x00110b798605bae8, 0xff3cc835f5ff0b74, 0x0b828805bb21d512, 0xf418ffbcbdf17cff, 0x61050bcf060d3b03, 0x12060ba101110baf, 0xffbbdd4329ff0b9c, 0x0baa000c3c0fa2a0, 0xb032ffbbe7fe35ff, 0x7c050bc100023c46, 0xffbb91f8e9ff0bbc, 0x0bca6c053a8cd4fc, 0x215cff3c8a66ccff, 0x7f050bf300123a8e, 0xceff0be0c7040be5, 0xbb42db4dff3c082e, 0x4bb08cff0bee8505, 0xc9043b3c324fffbb, 0x49ff0c00c7040c05, 0x3da74cd7ff3c791d, 0xafed92ff0c0e0b0b, 0x7505bd9decc6ffbc, 0x07050c5f060d0ca3, 0x02080c3101110c3f, 0xffbc80c43fff0c2c, 0x0c3a300e3bd51b47, 0x8400ff3ce1be80ff, 0x0c050c51640539ce, 0xffba73e5d8ff0c4c, 0x0c5a000f38db635f, 0x66a8ffbbbc1666ff, 0x030b0c83c9043a3d, 0xd9ff0c702f0e0c75, 0x3cda0f1aff3ab689, 0x4d6153ff0c7e230e, 0x220ebbccc708ff3b, 0x4bff0c90180e0c95, 0xbc6594efff3be7c0, 0xfefd22ff0c9e6a05, 0x010c3b6d850dffb9, 0x070b0ccb000f0ceb, 0x04ff0cb8020d0cbd, 0xbcc6201fff3b2043, 0x4e23cdff0cc68c05, 0x780538791091ff3c, 0x98ff0cd8260e0cdd, 0x3c1cfbb1ffbbc54a, 0x68310bff0ce6cb04, 0xc804ba139bceff3a, 0xc7040d010b0b0d0f, 0xffb9dbd368ff0cfc, 0x0d0a00023ce8ad4b, 0x5768ff3d6fb7e0ff, 0x01070d210d0e3dc2, 0xffba016decff0d1c, 0x0d2a7f053c1ae129, 0xdf0fff39e91f52ff, 0x7f040e7c1f0ebbfc, 0x96050d6d01070d7b, 0x60ff0d48030b0d5f, 0x0b0d5a000dba714b, 0x3a67f2e0ff0d5507, 0x0135ff3b705e30ff, 0x00ff0d68010b3b16, 0x3b5dbc00ff3b458d, 0x848c48ff0d760002, 0x000c3b900478ff3b, 0x110e0dacb6040df0, 0x01120d9990040da7, 0xff3b2dfa33ff0d94, 0x0da20a0bbb540f40, 0xac04ffb93e9d8eff, 0x0ebc2a0960ff3a77, 0x0e0dc2110e0dd019, 0xb8ac76acff0dbd0b, 0xcb060dba95aed3ff, 0x67ff3b0c9943ff0d, 0x050de20011bb23a8, 0x39559f35ff0ddd96, 0xeb0b0b3b9d24c3ff, 0x63ffbacabd71ff0d, 0x0b0e38000e3b4078, 0x0b0e0a01070e180a, 0xbb6a1531ff0e0505, 0x13030bbc231370ff, 0x20ffba50669aff0e, 0x040e2abd043b457b, 0xbb91d7e0ff0e25b3, 0x3301073b4ea4beff, 0xa8ffbb0c42b6ff0e, 0x0e0e5c070e3b075b, 0xff0e49060d0e4e06, 0x29f01bffba9a9d5e, 0x9c53ff0e57090b3a, 0x0e3bd1ecc1ff39e4, 0xff0e69c8040e6e0b, 0x77b6a7ffbc1037d5, 0xc620ff0e77bc04ba, 0x0e385462a6ff3c19, 0x0e0eda2a0e0f5d2c, 0x0d0eaccb040ecc28, 0xff0e99070b0e9e00, 0x3e1680ff391d3edb, 0x4164ff0ea7030b3c, 0x0fbc1b016bffb7ff, 0xff0eb9030b0ebe00, 0xb39c00ff3c3e1c40, 0x5255ff0ec7000239, 0x0439cb8017ffba45, 0x3c524ec0ff0ed5c9, 0x22030bbb0f1a00ff, 0xf496050f0200020f, 0xa400ff0eefc0040e, 0x04ba64b000ffb9ce, 0xba650700ff0efdc0, 0x140107bb856600ff, 0x3b80ff0f0f000d0f, 0x04ba8adf00ffbb1f, 0xbbf4aff0ff0f1dc0, 0x46cd04bb309a00ff, 0x33c0040f38070b0f, 0x80ffbaa71680ff0f, 0xff0f41000d3c63c5, 0x9fda00ffba806a00, 0x5300080f580002bb, 0xc0ffba64f7cdff0f, 0xbb81eb60ff3ae991, 0xb6ad00ff0f660112, 0x8900ff0f6f030b3b, 0x13bb8ef700ff3b59, 0xe800000008000000, 0x6300000001000003, 0x0700000000000011, 0x0404728c0508ca00, 0x05012cc1040248c7, 0x05005c021100a06a, 0x04002e020d003c68, 0xb80797f6ff0029be, 0x370d06ba564712ff, 0x6eff37e0516eff00, 0x04004e0e0bba1b91, 0x3a32c8ddff004998, 0x57060d3b49969fff, 0x0fff3b61f211ff00, 0x080080030bbbdf1b, 0xff006d0c05007200, 0x16e8caffbb0adc6b, 0xdb46ff007b1c053c, 0x05bc8ab5c8ff3a4f, 0xff008d0b05009212, 0x85365bffbb6f95c5, 0xcb12ff009b35053c, 0x043b1375d4ffbc41, 0x0e00c8790500e8c0, 0xff00b50a0e00ba10, 0xd3411aff36889177, 0xe278ff00c3000d39, 0x09b979b2e0ff39eb, 0xff00d5140e00da02, 0x002468ff39fdadf4, 0xc676ff00e3070eba, 0x123b062844ffbb82, 0x0e00fe2b0e010c00, 0x3c6370cbff00f908, 0x070002bb314e5aff, 0xdfff3d0e0980ff01, 0x0e011e060d3be0d8, 0xbc2d7cbaff011917, 0x27220e3953ff83ff, 0xa3ff3cd52f11ff01, 0x0f01bc7505bc06a3, 0x0d01582905017800, 0xff0145360e014a02, 0x7e0b20ffbb9116d1, 0x2666ff0153030ebd, 0x053c7b8aeaffbc23, 0xff0165190e016a55, 0xb5c81bffb91879b2, 0x9c88ff01730108bc, 0x053b872507ffbc7d, 0x05018e6e05019c73, 0x3835f2bfff01896c, 0x976f05bbefe949ff, 0xbaff3c905271ff01, 0x0401aec504bb3d43, 0x3ceea393ff01a9c2, 0xb70208bba44e73ff, 0xf3ffbb52492dff01, 0x0e020481053cec1c, 0x0e01d6180e01e41c, 0xb9e1448dff01d117, 0xdf0008bdeb5d51ff, 0x2dffbb9cb3dfff01, 0x0e01f601083cf8e5, 0xbc48fbffff01f123, 0xff010c3b1bafe1ff, 0x4effba82537fff01, 0x05022889053ce963, 0xff0215170e021a83, 0x5c608bff3bd4fb35, 0x89ceff02230008bb, 0x043a1f8575ffb9b8, 0xff0235050b023ac5, 0x5a42a4ffbb33a87d, 0x32e7ff02438a053a, 0x053b0791b9ffbc81, 0x0e02dc0a06036888, 0x0502788105029828, 0xff0265010c026a6a, 0xe8eb1aff3c663baa, 0xdf85ff0273220ebc, 0x0d3b838e2dffbb8c, 0xff0285c904028a06, 0x8bdce8ffbb3864f6, 0xeee3ff029384053c, 0x05bb97b1ecff3b80, 0x0802ae620502bc63, 0x3b471736ff02a902, 0xb7c804bb8ca770ff, 0x83ff3e000466ff02, 0x0c02ce67053c83e4, 0xbcfc2ae7ff02c901, 0xd76d05b98737b9ff, 0x83ffbb703814ff02, 0x0d0324000f39e2a9, 0x0502f6030d030405, 0xbc8a1fb3ff02f129, 0xff0d0e3a0d7481ff, 0x5aff3bd45ad2ff02, 0x050316c904bcd555, 0xbca4d09dff031152, 0x1f54053c947617ff, 0x29ff3ca88f94ff03, 0x0503480111bc3f4b, 0xff03351105033a32, 0x21eeafffbb59016a, 0xf93dff03430b0b3b, 0x06bbb57258ffba87, 0xff03550b0b035a12, 0xefe22dff3c46ff93, 0x52f2ff0363030b3c, 0x123c01cd8cffbb73, 0x0403b4000203f801, 0x0b0386ca040394cc, 0xbb5c2555ff03810e, 0x8f010c3b8a92e2ff, 0xa3ffbb8720fbff03, 0x0503a60b0bbc6d55, 0x3c565843ff03a18b, 0xaf89053b6f4839ff, 0x8cffbc7c4655ff03, 0x0503d800083813e3, 0xff03c5c80403ca89, 0x060d11ff3a83ae20, 0x3c09ff03d3030bbd, 0x0c3b12bf2fffbc58, 0xff03e5010803ea00, 0xbde3a9ffbc441109, 0x3f6aff03f3cd04ba, 0x04bbc2e992ff3c31, 0x080417000d0437cb, 0xff040d0109041200, 0xc5efd0ffbd41a2b5, 0x340e3d8c03f8ffbc, 0x45ff0424330e0429, 0xbc9bf2f2ff3c0c97, 0x925ea8ff0432030b, 0x030b3d371e18ff3d, 0x000f044d010c0452, 0xffbb59b1c0ff0448, 0xc22bd6ff3b0af070, 0x5f020804642b0e3c, 0x00ffbd09c675ff04, 0xff046dcd043a8ca0, 0xcae510ff3bdc6ecd, 0x96010c06978d05bb, 0xc6be04050a060d05, 0x98980404a69b0404, 0x165dff04930a0b04, 0x0b3af039f5ffbafe, 0xbc3c562bff04a103, 0xb8ba043cb4dc7bff, 0xd143ff04b39d0404, 0x04ba4b1fe1ffbc92, 0xbd0f9e15ff04c1bb, 0xea000f3a972a90ff, 0xd7020804dc040b04, 0x25ff3b422486ff04, 0xff04e5c704bd7bd6, 0xb280bcff3cb91a2e, 0xf70e0b04fcc1043b, 0x15ffbcd771f5ff04, 0xff0505c204bad993, 0x28870cff3cbb0ce3, 0x32110b05520108ba, 0x1f070b05240b0b05, 0xa2ff3aac3d30ff05, 0xff052d0012bb2e79, 0x343896ffbb5e7600, 0x3f040e0544070d3c, 0x52ff3b3fb491ff05, 0xff054d0008ba0e27, 0x572a60ff3d0e154c, 0x68bc04057600123c, 0x72cbff0563000205, 0x043b838437ffba7a, 0xbba4a3ecff0571ca, 0x88b2043bc3e06fff, 0xba9bff0583000c05, 0x0ebc86f5f4ff3ad4, 0x3b92ba32ff059119, 0x0b0109bb61d4e7ff, 0xc2bd0405e2190e06, 0xaf0a0e05b40a0b05, 0xc9ff3c3309b7ff05, 0xff05bd0108bb9b1b, 0xd79872ffbaa477ae, 0xcf030b05d4bf04bc, 0xc2ffbb57f3a5ff05, 0xff05ddc2043cb6a6, 0x898843ffbca7557b, 0xf81d0e0606070d3a, 0xecd4ff05f3000905, 0x0ebd175dc4ff3c46, 0xbc4a7d98ff060122, 0x66dcff39cf8480ff, 0x00020653050b3d23, 0x7d04062580040633, 0xff3ae26f60ff0620, 0x062e0209bb832c88, 0x8280ffbcbf3cc9ff, 0x9e040645b304bc3e, 0xffba7fc337ff0640, 0x064ebc043c2a955c, 0x25d4ffbcb989f9ff, 0x0b0b0677c4043aaf, 0x54ff0664070e0669, 0x3cc66f4eff3be376, 0x1c0b1cff06720002, 0xcc04bc2cbdc8ffbd, 0x98ff0684060d0689, 0xbc37e95affbbac87, 0x812711ff0692060d, 0x93053b8535d0ff3c, 0x0009072b030d07b7, 0x010b06c7310e06e7, 0xaaff06b4300e06b9, 0x3c995630ffbadcaf, 0x7385c4ff06c22b0e, 0xc604bbdeb203ff3a, 0x35ff06d4c00406d9, 0xbb6ad658ffbc3363, 0x0171a4ff06e2020b, 0x050bb73b47e4ff3d, 0xbf0406fd020b070b, 0xffbbf630deff06f8, 0x07069205bcbaf03a, 0xa11fffbb1fbf04ff, 0xc004071d8f053c88, 0xff3b562f47ff0718, 0x0726140ebccc15e4, 0x9159ff3bf24894ff, 0x9005077355043cac, 0x4e04074552040753, 0xff3b3a43edff0740, 0x074e0111baba5fd4, 0x073dffbc1e892aff, 0x010b076551043d30, 0xffbaff7e1dff0760, 0x076e01123c2ebe29, 0xe48affbbc96adeff, 0x000f0797230ebd26, 0xb4ff0784bc040789, 0x3b06bb06ffba8c6f, 0x4154b3ff0792070b, 0x900538f0beedffb7, 0x2aff07a48f0507a9, 0x3b2c7e19ffba69eb, 0xb7ba44ff07b22a0e, 0x020d3a0a31f5ffbb, 0x050b08030008083e, 0xcb0407d5030b07e3, 0xff3a2cab3eff07d0, 0x07de9505bbee6e64, 0xffd4ff3b34f695ff, 0x0a0b07f50111bbe8, 0xff3c46dbb7ff07f0, 0x07fe000cbb9172d2, 0x84ddffbb3f8f50ff, 0xc4040827230e3a7d, 0x5bff08141d0e0819, 0xbc88fa60ffb93b61, 0x951cb6ff0822030b, 0xc904ba395d33ff3b, 0x04bc9c791cff0830, 0x3c23dd40ff0839ca, 0x860e0bbb1dc860ff, 0x5800080866010b08, 0x591eff0853000e08, 0x0e3a581adbffbba6, 0xba937445ff086117, 0x780012bc46ac3eff, 0xaf1cff0873950508, 0x0ebaa4a163ff3aa5, 0xb85d4e8eff088117, 0xaa9405b8c701e6ff, 0x97c904089cca0408, 0xbfffb97797c1ff08, 0xff08a500083beb8b, 0xee6cb4ffbb8434ff, 0xb7010c08bcb2043b, 0xa1ffbb7ba57aff08, 0xff08c5260e3cd203, 0x1a7304ff38acd9a4, 0x0e070d0d41270e3b, 0x660d0e09f200110b, 0x02070e0922080e09, 0xef060e08f4000809, 0xc5ffba2be745ff08, 0xff08fd060e3bbdad, 0xd14610ffbb46d142, 0x0f00080914000c3a, 0x56ff39b90bd6ff09, 0xff091d7804bc36e2, 0x11f955ffbc11eb75, 0x386e0409465405bd, 0xb04bff0933640409, 0x0ebb998d25ffb992, 0x3c8e58bdff09410c, 0x580c0e397451f7ff, 0x7381ff0953ba0409, 0x043c14d2d2ff3ce6, 0x3bfde189ff0961c5, 0xae4101bb8c7ef6ff, 0x808204098ea30409, 0x3b5aff097b800409, 0x0e3b3ad7d5ffbae6, 0xbc751063ff09891d, 0xa0250e3c03816fff, 0x2861ff099b360109, 0x033c869430ff3da1, 0x3c86417aff09a926, 0xd2260ebd2c9908ff, 0xbf010809c4140e09, 0xb5ffbbd955e3ff09, 0xff09cd170ebc9134, 0x35ea90ff3b0be0ec, 0xdf000c09e4050bbb, 0x77ffbbc879c2ff09, 0xff09ed4505bd0799, 0xc0c1e7ffbe2683d0, 0x3ebc040a82210ebd, 0x106b050a1e060d0a, 0xb8dfff0a0b5d050a, 0x0eba6e854fff399a, 0xbae8715fff0a191d, 0x30000c3c3b90eaff, 0xcbf5ff0a2b110b0a, 0x0e3c141aa6ff3a0e, 0x3c27dcaeff0a3917, 0x628d053d06c8b9ff, 0x4fbd040a54060d0a, 0xecffbbd0d5fbff0a, 0xff0a5d0e0e3ac582, 0xfd863eff3c41f8f1, 0x6fc7040a749105bb, 0xd8ff397c93f9ff0a, 0xff0a7d000c3a4282, 0xb53bc0ff3a14d5d0, 0xaacd040aca0002ba, 0x9772040a9cc7040a, 0xcfffb91e26e7ff0a, 0xff0aa5cc043b4cdc, 0xd243eaff3adc0393, 0xb701080abc220ebc, 0x40ffbbe3fec0ff0a, 0xff0ac5010c3cfca1, 0xf188b5ff3d567cf9, 0xe00a060aee06053d, 0x893fff0adbab040a, 0x0e3d9de65dff3ca5, 0x3c1f5689ff0ae923, 0x00060dbc241875ff, 0xf61fff0afb07050b, 0x05ba7155e3ff3cd4, 0x3ce36971ff0b0965, 0x2e780539f6ab3dff, 0x5e70040ba272040c, 0x303c010b3e6f040b, 0xaa57ff0b2b61040b, 0x08bbbb2d02ff391b, 0x3b2f9d51ff0b3902, 0x50070ebb79c2f9ff, 0x1c76ff0b4b010e0b, 0x013c383201ff3ca5, 0xbcb44995ff0b593b, 0x82070b3c3630e4ff, 0x6f100e0b7400110b, 0x3dffba40837aff0b, 0xff0b7d030b3c794f, 0xa5ba58ff3d955f6d, 0x8f140e0b9435013d, 0x75ffbd10f1e2ff0b, 0xff0b9d030e3c3707, 0x6366dfffbbb93b7f, 0xca140b0bea8804bc, 0xb787040bbc20030b, 0x4aff3bd3cdb1ff0b, 0xff0bc5000cbcfa40, 0x8beb32ff3bedcc9a, 0xd780040bdc82043c, 0x08ff3bcce3fcff0b, 0xff0be5000cbcfa99, 0xf86e67ff3c0688f8, 0x008c040c0e070e3c, 0x80c9ff0bfb000c0c, 0x0ebe0a8e79ffbd46, 0x3ca2ad1dff0c0903, 0x20080ebca000e2ff, 0xcfa4ff0c1b050b0c, 0x0e3cf5ba72ffbac3, 0xbc9d80edff0c290d, 0xbe080e3bb43352ff, 0x5a000c0c7a00110c, 0x47000f0c4c90040c, 0x43ffbcdb2c48ff0c, 0xff0c550a0b3c388c, 0xa4e5ceffbbce8bb3, 0x67030e0c6c070b3a, 0xa6ff3c6c8331ff0c, 0xff0c75070ebba0a0, 0x6eb576ff3c70fc05, 0x90030b0c9e8b053d, 0xbb1aff0c8b000c0c, 0x0b3cfcf320ff3d88, 0x3c7ce600ff0c9905, 0xb0020ebd241470ff, 0x1a25ff0cab02070c, 0x053c960560ffba8d, 0x3d15075bff0cb993, 0x06230e3dc376a0ff, 0xd80d0e0ce6140e0d, 0x9577ff0cd300080c, 0x0b3bb948abffbce7, 0xbaa3e2c7ff0ce10c, 0xf800083c8f6583ff, 0x1c6bff0cf3000c0c, 0x0ebcf2b1a0ffbc29, 0xbbee8bb4ff0d011f, 0x2a0b0b3c08a253ff, 0x17250e0d1c050b0d, 0xe8ff3d0f7458ff0d, 0xff0d2501073c203e, 0xa8f566ff3d1beb6d, 0x755cff0d3301073d, 0x90ff0d3c79053e0d, 0x3dc8a01cff3dcb88, 0x0e65140b0f81cb04, 0x0d9501070dd9010b, 0x0d67000f0d752b0e, 0xd7c287ff0d620208, 0x0208bd332e9dffbb, 0xffbb55c4daff0d70, 0x0d8702083bcf09e6, 0x0446f4ff0d822c0e, 0x020dbb071fb1ff3c, 0xff3c940ad2ff0d90, 0x0db90208ba48ba5c, 0x0da655040dab050d, 0x232eff3b920112ff, 0xd4ff0db4c004bc5a, 0xbca9ccc5ffbb8adc, 0x0dc6a6040dcb030d, 0xaef8ffba114231ff, 0x02ff0dd401113d2a, 0xbd549bc3ff3c19bb, 0x0e01c0040e210b0b, 0x0dee040b0df36905, 0xd685ff39a0e69fff, 0xe4ff0dfc000fb961, 0xba91a97aff3c2150, 0x0e0e07060e13300e, 0x73ebffbad37fceff, 0x96ff0e1c310e3b38, 0x3b70da86ffb97a87, 0x0e3794040e453c01, 0xbf48b4ff0e326f04, 0x3b01bc301a80ffba, 0xff3b31afa6ff0e40, 0x0e57290e3d470915, 0x3a36d1ff0e529c04, 0x4f05bd4fd388ffbc, 0xffbc8ce7a4ff0e60, 0x0ef55c05baa7f045, 0x0e9154050eb1310e, 0x0e7e52050e83060d, 0x703aff3b4b92d7ff, 0xa7ff0e8c0012bc69, 0xbd4a8997ff3b68ef, 0x0e9e000c0ea35505, 0x6d06ff3c9ef79bff, 0x71ff0eac00023d5e, 0xbd1c977aff3b70b4, 0x0ec7a9040ed51305, 0xae62cfff0ec20c03, 0x06063c22cc28ffbb, 0xff3b21c7fdff0ed0, 0x0ee7a804bc5b1b02, 0x212e47ff0ee20006, 0x3f013c02f682ffbd, 0xff3bbd1330ff0ef0, 0x0f3d6205bc219afd, 0x0f0f280e0f1d6005, 0x81ca7fff0f0a5f05, 0x290ebc102562ff3d, 0xffbddf4627ff0f18, 0x0f2f00083baf8821, 0x4b5054ff0f2a6105, 0x0111bd4e8aa8ff3c, 0xffbd1e8ebfff0f38, 0x0f6163053d1216b5, 0x0f4e01080f53000c, 0xb7fcff3d0ce66fff, 0xc8ff0f5cc5043d8d, 0x3d83a59cff3dcc76, 0x0f6ec8040f730112, 0xa069ff39f8d4dfff, 0x64ff0f7c00083c6c, 0xbc119de3ffbd2ed5, 0x0fd6010c10500c05, 0x0f96020d0f9b2a0e, 0x972eff3cdc1240ff, 0x300e0fb6320ebe1c, 0x44ff0fac02070fb1, 0xbc97420aff3d7eac, 0xc80002bdba16beff, 0xe3c5ff0fc332030f, 0x073e0bf6a4ffbd95, 0xbe02a57aff0fd102, 0x150002bdf60dd4ff, 0xf0360e0ffe050610, 0xe208ff0feb29030f, 0x053deebc7aff3c50, 0x3c7ef825ff0ff907, 0x100111bcde5ff5ff, 0x9be8ff100b020710, 0xffbdbcba08ffbd37, 0x103002073d37a7e0, 0x178140ff1022020d, 0xd2daff102b2a0e3c, 0x0e3e3a8ebeff3e3b, 0xff103d0d0610422a, 0x69e260ffbdf4acb8, 0xd1e0ff104b020d3c, 0x053d9f37a8ff3c20, 0x0e109c011110e013, 0x08106e0b06107c32, 0xbe1d2761ff106900, 0x770b0bbd8d5b1eff, 0x06ffbcc68fd3ff10, 0x02108e0d053c3da3, 0xbc2080d9ff108900, 0x9701083e13bab2ff, 0xc0ffbc675880ff10, 0x0e10c000023a36c7, 0xff10ad070610b236, 0xa05e95ff3d507a0e, 0xbb60ff10bb01063c, 0x0bba33b700ff3cd9, 0xff10cd010810d20b, 0x2df08eff3c4389e0, 0x000aff10db010cbc, 0x0d3ceb889eff3bd4, 0x0711087d05112807, 0xff10f5310e10fa01, 0x01cbacff3a112e26, 0xb997ff11030008bc, 0x0e3afcdb55ffbb8b, 0xff1115060d111a2d, 0x5d1d98ffbb1d5447, 0x1023ff112302073c, 0x0b3bca79ddffbb84, 0xff11356d05114303, 0x113e0107bda535a6, 0xa75dffb8d3cd80ff, 0x000211550107bcb4, 0xffbcc18928ff1150, 0x115e6905bd2283ee, 0x46dbffbcd5fac5ff, 0x000800000013bd97, 0x0001000003e80000, 0x000000000faa0000, 0x8c0508af00070000, 0xc1040248c7040472, 0xa60400a06a05012c, 0x4605003c3d01005c, 0x8aff00297a04002e, 0x3a81963fff369c70, 0x1703c6ff00373a01, 0xa404ba4b9ec7ffba, 0xe7ff00497504004e, 0xb9656ed8ff3a0431, 0x035be7ff00576905, 0x5b053d3c69a1ffbc, 0x5305007258050080, 0xff39b8f00cff006d, 0x007b100b39809f9f, 0x0cb6ff3a1cd45cff, 0x00090092220ebc83, 0xffba04ca6cff008d, 0x009b060dbc658a4f, 0x6819ff3b6a5543ff, 0x790500e8c004bb18, 0x0a0e00ba100e00c8, 0xff3675ad90ff00b5, 0x00c3bf0439be2126, 0x55b9ffb98bce26ff, 0xbf0400da00093be1, 0xff3948e45bff00d5, 0x00e3230e37c04cb1, 0xdd95ffb9b8bf53ff, 0x0d0e010c0012ba61, 0xd4ff00f9000200fe, 0xbcc001e4ff3d7dda, 0x265b3bff01070009, 0x060dbc4faab0ff3b, 0xf2ff0119030b011e, 0xbaee31ecff3b7487, 0x8bb01aff01270109, 0x7905bcda310fff3c, 0x060d0178760501bc, 0x220e014a010c0158, 0xffb9889b04ff0145, 0x0153310eba919751, 0x2a29ff3b1e11bfff, 0x2f0e016a300e3c78, 0xffba9541f5ff0165, 0x0173310ebd6d6fe1, 0x2e97ff3d31da87ff, 0x280e019c2a0ebbd2, 0x5dff0189230e018e, 0x3c58b83affbbeb45, 0x433a50ff01970208, 0x060dbcc68b1fffbd, 0x67ff01a90e0b01ae, 0xbc45835bff3b8793, 0x88336cff01b7010c, 0x0002bbbf0397ff3c, 0x000801e400060204, 0xb9ff01d17b0501d6, 0xbafbfdccff3c1a02, 0xd83838ff01df000c, 0x000f3bbab641ffbb, 0x18ff01f10f0601f6, 0x3cd502a5ffbda5e5, 0xb32741ff01ff030e, 0x000c3d45e4b1ff3c, 0x070d021a190e0228, 0xff3a32be42ff0215, 0x0223280e3c7ec770, 0x895affbbda371bff, 0x8305023a84053a8c, 0xffbaa50f09ff0235, 0x024301093ceffce6, 0xd3dcffbb990d01ff, 0x0a06036888053bb7, 0x81050298280e02dc, 0xc904026a6a050278, 0xffbc853f13ff0265, 0x02730108bd53ac50, 0xd6a4ffbbf4d7f3ff, 0x0b0b028a060d3b3a, 0xffbc00b3f7ff0285, 0x029384053c35a9a6, 0x8675ff3b681462ff, 0xcb0402bc6905bb88, 0xffff02a9630502ae, 0xbbf69cb9ff3ba854, 0x0d08daff02b7020d, 0x7905bbfc4b98ff3c, 0x39ff02c9040b02ce, 0xbb5c7d73ff3c306a, 0xe70c46ff02d77a05, 0x000fb882f85aff3c, 0x030d0304050d0324, 0x68ff02f1290502f6, 0x39fe9fa3ffbc789f, 0xbf1e69ff02ff0d0e, 0xc904bcbffffaff3b, 0x5fff031152050316, 0x3c859d78ffbc9455, 0xb8e143ff031f260e, 0x020d3d25bb1eff3b, 0x300e033a12060348, 0xff3c8aad04ff0335, 0x0343030b3a14d350, 0xa532ffbb5afdd2ff, 0x0f06035a2b0e3be9, 0xffbc0a24aeff0355, 0x0363ca04b93c33c5, 0x0bdbff3b01b2e3ff, 0x010c03f801113c50, 0x8b050394130b03b4, 0xd5ff038100080386, 0xbafcb368ffbc4bde, 0x38c05bff038fc804, 0x00113a9a4ca1ff3c, 0x3aff03a1010803a6, 0xbb376dd0ff3bdbca, 0x1aa333ff03af310e, 0xc8043c24fdc6ffbb, 0x000803ca030b03d8, 0xffbc429c71ff03c5, 0x03d30b0b3d71ec32, 0x175cff3ca98b3bff, 0x000903ea8905bb46, 0xffbc554481ff03e5, 0x03f3060d3c131196, 0x58dbff3b9f21edff, 0x000d0437cb04bb64, 0x0009041200080417, 0xffbd36a130ff040d, 0x7c0720ffbcdfccd5, 0x24330e0429340e3d, 0xb2ff3bfd100fff04, 0xff04320008bc8c5a, 0x83bb98ff3d24ce48, 0x4d010c0452030b3d, 0xecc0ff0448000f04, 0xff3afa1720ffbb43, 0x04642b0e3caec10e, 0x0ace1cff045f0b0b, 0x300ebbf34068ffbd, 0xff3c503f60ff046d, 0x068e8d05bb234680, 0x050a060d058d010c, 0x04a6230e04c60108, 0x0493c8040498c904, 0xc8b3ff394a340dff, 0x4bff04a101113bdb, 0xbbafdd77ff3b5ba9, 0x04b3030b04b8250e, 0xe715ffbab9e2e0ff, 0x06ff04c1040bbd28, 0x3b01d43bffbb9523, 0x04dc0d0e04ea000f, 0xeefc7aff04d7030b, 0x030b3bee83c5ff3c, 0xffbc074f8eff04e5, 0x04fc00023c0bf2da, 0xa19963ff04f7000c, 0x000cbcbb4352ffbb, 0xff3ad116b1ff0505, 0x0552c604bb612df3, 0x052400110532010b, 0xdb6df8ff051f070d, 0x000cbc47cd46ff3b, 0xffbc48da6dff052d, 0x05440d0eb9ec648e, 0x60f795ff053f0209, 0x170ebb19145bffb8, 0xff3b78667eff054d, 0x056dc704bb52cfc2, 0x0563230e05680011, 0xca90ff3c8ff4a1ff, 0x113d7b6b04ffbc62, 0xff057a1f0e057f00, 0xf047b9ffbb0448bf, 0x3acaff0588230e3b, 0x09bca61cadffb98e, 0x0405d9190e060201, 0x1105abb30405b9bb, 0x39c35025ff05a601, 0xb40b0bbc26aa2cff, 0xe0ffbd8c9ff5ff05, 0x0405cb030e3b4c99, 0xbd0dc7a6ff05c6bc, 0xd40b0bbc0ebb71ff, 0x60ff3bab597bff05, 0x0e05fd070dbb0e5e, 0xff05ea0e0b05ef28, 0xe4cc99ffbbcfd90d, 0xb447ff05f8030b3b, 0xffbb83e5c6ff3c62, 0x064a050b3d130fc4, 0x061c0002062ac704, 0x950461ff0617080e, 0xb304bbb6f26affbc, 0xff3bd11a00ff0625, 0x063c060dbc0d4730, 0x757ad0ff06370209, 0x02093c3bf7e4ff3b, 0xff3c9d2b92ff0645, 0x066ec4043cb9a1a7, 0x065b070e06600b0b, 0x975eff3bccb74fff, 0x20ff06690c0b3cb2, 0xbcb934e8ffbc03dd, 0x067b01110680190e, 0xbac0ffbc0f6abbff, 0xc7ff0689220e3a02, 0xba6f5380ff3c948b, 0x0707020d07939305, 0x06bebc0406de0208, 0x06aba10406b01a0e, 0x40afff3ab5c309ff, 0x52ff06b90109bb17, 0xbd544e88ffb9e39f, 0x06cb000206d0000d, 0x0cdfffbafd6231ff, 0x9bff06d900083c27, 0x3b773ea9ffbafc8c, 0xb864fcff06e76d04, 0xf4070e06f9230ebb, 0x4eff3b3e8cabff06, 0xff0702010bb8ee16, 0x0430c0ffbb1e2a00, 0x2f0208074f050bbc, 0x1c01120721c00407, 0x37ff378b865bff07, 0xff072a030e397ab2, 0x2db09bff3be7eb23, 0x3c9c040741ae04b9, 0xe5ff3a56507cff07, 0xff074aca04bc117f, 0xcefc74ff3ae86240, 0x65010c07730c0bbb, 0x9946ff07601d0e07, 0x0b3a74e6faffb9ad, 0xb90ad800ff076e0a, 0x85220e399dea09ff, 0xd908ff0780110e07, 0x0b3a16b6faffb8a8, 0xbc30c9f8ff078e10, 0x23020d394f93f7ff, 0xbf050b07df000808, 0xac2b0e07b12f0e07, 0x92ffb7bf9bedff07, 0xff07baca043c89e1, 0x2cf229ffbd02b108, 0xcc9e0407d1a404bb, 0x0bff3aab844bff07, 0xff07da95053d4006, 0x31ea6eff3aea0a77, 0xf594050803b704bb, 0x45e9ff07f0040b07, 0x04bb9c40c0ff3bad, 0x3bb7db57ff07fea7, 0x15bc04bc3edf70ff, 0x0000ff0810940508, 0x0eb8842cdbff3c4c, 0x3b294a21ff081e0d, 0x6b0e0bba10cc34ff, 0x3d1c0e084b010b08, 0x7f3dff0838190e08, 0x09bdf0ccc3ffb9d4, 0x3b1df993ff084600, 0x5d00123cea47d2ff, 0x8356ff08580c0b08, 0x0ebc775f1fff3994, 0xb8472bdfff086617, 0x8f9405b8b31be7ff, 0x7c010e0881a40408, 0x28ffbb895ebcff08, 0xff088a0002bcb064, 0xbd4a60ff3b60ad9b, 0x9c100b08a11d0eba, 0xc5ff3bea5bd2ff08, 0xff08aa00023882d0, 0xee4ebbffbbcc9d8e, 0xf3c6040d2f95053a, 0x4b660409d797040a, 0xe711060907590409, 0xd4570408d9011108, 0x47ffb9a815ebff08, 0xff08e258043aa29d, 0xa693beff3a779750, 0xf4000c08f90108bb, 0x28ffba0667bcff08, 0xff0902030ebbf5e6, 0xbdd52cff3ac9ffa6, 0x1d000d092b090b3c, 0x7553ff0918170e09, 0x05bbc3caa7ff3c80, 0x3a112655ff09268d, 0x3d0c05bac78677ff, 0xfaf4ff0938030509, 0x04bbd8dc46ffba75, 0x3bc73700ff09465a, 0x9327033a941bacff, 0x650b060973130b09, 0x3cfbff09608c0409, 0x0ebb01c509ff3a3b, 0x3c7cce07ff096e30, 0x852701bc1de1faff, 0xe53cff0980090309, 0x0839fa6818ffbc61, 0x3c4e5f3dff098e02, 0xb72a033b4ec85bff, 0xa42c0509a9380109, 0x6bffbb839e2dff09, 0xff09b285043c6957, 0xf9e4ffffbc841178, 0xc4001209c93403bc, 0x1bffbab59203ff09, 0xff09d2010c3b75b3, 0xc6d86affba0009d4, 0x23070d0a674001b8, 0xf5aa040a03060d0a, 0x3758ff09f03f0109, 0x0e3cc9460fff3a1d, 0xbc22fd8eff09fe30, 0x159d04baa67252ff, 0x2ec2ff0a103e010a, 0x123cc87ce8ffb9a0, 0xb921532bff0a1e00, 0x473005bd481a92ff, 0x342d010a3998040a, 0xdcff3d9c7d10ff0a, 0xff0a4234013cd092, 0x32b1e0ffbcb1ce66, 0x5437050a593c013c, 0x58ffbd192b30ff0a, 0xff0a62030bbbf919, 0x95e6dfff3cab37b0, 0x8f01080aaf0105bd, 0x7ca7040a8102070a, 0x16ffbda240d7ff0a, 0xff0a8a0005bd04d2, 0x15da9cffbce8f99e, 0x9c02080aa10107bb, 0xb7ffbd085340ff0a, 0xff0aaa2f0ebc1ebb, 0x874426ff3b328a26, 0xc527030ad32a03bc, 0xf51cff0ac025050a, 0x033c11e414ffbba1, 0xbd3c5298ff0ace28, 0xe5330ebc9bee5dff, 0x8e7dff0ae00c050a, 0x0e37ddf012ff3aea, 0xbb6ce6adff0aee36, 0x130108bc790c38ff, 0x4300080b871f0e0c, 0x15cb040b2302070b, 0xf78dff0b10040d0b, 0x0dba9a2121ff3a25, 0x3a84cc5eff0b1e07, 0x3588053c7fc07dff, 0xc537ff0b3000110b, 0x0ebb30764fff3c05, 0x3b712d43ff0b3e1d, 0x677e05bbc4e32bff, 0x547d050b59060d0b, 0xc4ff397a4482ff0b, 0xff0b627b053e0015, 0xc0052bff3b647c52, 0x74000c0b79070e3c, 0x0dff3bb4da29ff0b, 0xff0b828005bc0dd1, 0x4ca211ffbc700285, 0xaf6c050bcf7805ba, 0x9c6a050ba100080b, 0x38ffbad1c683ff0b, 0xff0baa010b3c2de2, 0x87d89dffbd140ab2, 0xbccc040bc16e053a, 0x00ffbb0d25edff0b, 0xff0bca260ebd1009, 0xa8b802ffbbdfb9c3, 0xe5cd040bf379053b, 0x8915ff0be0cc040b, 0x0ebd4fb9bbffbb09, 0x3cd18e6fff0bee36, 0x0501073b34cc00ff, 0x08b5ff0c007a050c, 0x0539d319c3ff3cb4, 0x3a6dcad9ff0c0e81, 0xa37505b93d427eff, 0x3f07050c5f060d0c, 0x2c36010c3104060c, 0xfbff3d00d078ff0c, 0xff0c3a01113c1c0f, 0xc68830ffbc355eb8, 0x4c60050c5165053c, 0x8aff3a544f45ff0c, 0xff0c5a000fbba92e, 0x9daba7ffbbc5994c, 0x7547050c83c9043a, 0x18ddff0c7045050c, 0x123d3f0af8ff3a06, 0xbaf3d48dff0c7e00, 0x952a0e3bc8464cff, 0xe44bff0c906a050c, 0x043b563b95ffbbfb, 0xbb40c33eff0c9ecb, 0xeb190e3be6eb29ff, 0xbd78050ccb01070c, 0x678bff0cb8180e0c, 0x12be26030effbcc0, 0xbb0bd787ff0cc600, 0xdd180e3b3e02afff, 0x5fe1ff0cd8100b0c, 0x12bb5365ebff3b2b, 0xbbd4b76dff0ce601, 0x0f130b3cea4451ff, 0xfc2b0e0d01020d0d, 0x72ff3c3dfed2ff0c, 0xff0d0a000fbb5117, 0xbd781dffbc86bc09, 0x1cc8040d21000c3a, 0x01ffbc81f3fcff0d, 0xff0d2a1f0ebb25c2, 0x09a545ff3d8a7a74, 0x1d020d0f0c220e3c, 0x68cb040da300080e, 0x55b9040d63000f0d, 0xcddeff0d5001120d, 0x12ba8f8a8eff3a7d, 0xbb462274ff0d5e01, 0xa12cff3af9b14cff, 0x030b0d8c000fbbea, 0x00ff0d7902070d7e, 0xbb8ca3c0ffba9b08, 0x199460ff0d870107, 0x010cbc09dca0ffbc, 0xb7ff0d9902070d9e, 0xbb0086b8ff3a9159, 0xeb030bbb088fa0ff, 0xbd01070dcbc4040d, 0xc000ff0db8020b0d, 0x0b3873e000ffbae2, 0x3b8bd280ff0dc602, 0xddcb043b88a480ff, 0x0a6bff0dd801070d, 0x073b91ecc0ff3bdf, 0x3b5a5300ff0de601, 0x06000cbad4f600ff, 0xfc01080e010b0b0e, 0x20ff3b32fdbcff0d, 0xbb05c110ff3aea19, 0x90c700ff0e0f000d, 0x7600ff0e18000f3a, 0x0fb7750000ffbafb, 0x040e69cb040ea400, 0x0e0e3b040b0e499c, 0xbaa52474ff0e3600, 0x440a0b3bf93c20ff, 0x90ff3c1e9cf0ff0e, 0x050e5bb9043c96d9, 0xbb8a357cff0e5696, 0x64c704bc94db9bff, 0x40ff3abb1ee9ff0e, 0x0b0e8d0107bb7853, 0xff0e7a060d0e7f03, 0x152c00ff3c857dc0, 0x5c00ff0e88050b3a, 0x083b4b39d5ffbbc3, 0xff0e9a02070e9f00, 0x405480ff3b5e7e55, 0x1f0e3c5d4a80ff3c, 0x080e0ecc1d0e0eec, 0x5cff0eb9cc040ebe, 0x3adb4567ffb8987a, 0x8aebedff0ec70d0e, 0x960539e87bcfffba, 0x6cff0ed901070ede, 0x3b8443bdffbb09eb, 0x26be00ff0ee7030b, 0x00023c5e1bf0ffb9, 0x043bef4240ff0ef5, 0xff0f02c9040f07cb, 0x705f00ff3a28e7ab, 0xc0043b0cb7ebff3a, 0x96050f22010b0f42, 0xffbbb09750ff0f1d, 0x0f3d0107bb443840, 0x0f3396050f380002, 0x1d80ffbaf4a100ff, 0xffbb0bb740ffbae8, 0x0f932c0ebaaf8c00, 0x5c2300ff0f4fc304, 0x65000c0f73240e3b, 0x4c62ff0f60cd040f, 0x023b072daeffba74, 0xbb20132bff0f6e00, 0x850111bbfec380ff, 0x2a68ff0f8096050f, 0x053b75223dffba87, 0x3b7b27a6ff0f8e96, 0xa5000fbb079240ff, 0x3200ff0fa0030b0f, 0xffbb66ec00ff3b5e, 0x000000133bac4660, 0x000003e800000008, 0x0000104c00000001, 0x08ca000700000000, 0x0248c70404728c05, 0x00a06a05012cc104, 0x003c3d01005ca604, 0x00297a04002e4605, 0x4180ff368cca29ff, 0xa9ff00373a013a69, 0xba37424bffba07e9, 0x00497504004ea404, 0x7e6cff39edf320ff, 0x49ff00576905b94e, 0x3d29923fffbbec72, 0x0072370500800012, 0x9297ceff006d2f01, 0x070d3c798416ff3d, 0xff3b2b5adeff007b, 0x0092a904bbe786c1, 0xbe32f6ff008d060d, 0xaa04bd369b70ffb9, 0xff3c894beeff009b, 0x00e8c004b96fb3cc, 0x00ba100e00c87905, 0x37d052ff00b5000d, 0xbf04372b8608ff3c, 0xffb97ba67aff00c3, 0x00da330e3bcacd35, 0xa0d2dfff00d5bf04, 0x020b390f2ec0ff37, 0xff3d05f6bbff00e3, 0x010c0011bb45968c, 0x00f9010900fe080e, 0x9cc8ff3da7a807ff, 0x22ff01070d0e3c0f, 0x3a163929ffbcf1ba, 0x01190002011e030d, 0x368dffbc75a34fff, 0xefff012700023c8b, 0x3b53995effbb3b6d, 0x0178000f01bc7505, 0x014a0d0e01580008, 0x1e0876ff0145020d, 0x1105b8e83822ffbc, 0xff3d004224ff0153, 0x016ac4043b82792c, 0x30464fff01650006, 0x020ebc749687ff3c, 0xffbc352aeaff0173, 0x019c73053b072843, 0x0189100b018e6e05, 0x63b1ff38758388ff, 0x48ff0197190eba0f, 0xba38a1daff3d1143, 0x01a9230e01ae100b, 0xacb6ff3cb7e912ff, 0xe2ff01b70008baa9, 0xbc1eb7a0ff3d11a3, 0x01e4210e02048105, 0x01d1180e01d60009, 0xe67effbad52e2dff, 0x55ff01df02093c91, 0x3afd0a06ffbc85bc, 0x01f1c60401f62a0e, 0xdf61ffbb983174ff, 0x7fff01ff7e053c35, 0x3bf70aa6ffbac9b2, 0x021a830502288905, 0x892110ff0215c504, 0x0008bbc2ce58ff3a, 0xffb9d30b6eff0223, 0x023ac5043a08846d, 0x1a6d45ff0235050b, 0x220e3a738fbcffbb, 0xffbbdfa1e0ff0243, 0x035f1c0e3bb050e2, 0x028f020e02d30002, 0x026a000802782905, 0xa086e0ff0265000e, 0x000e3d4fe208ff3c, 0xffbad1380bff0273, 0x028a60053bfe5cfd, 0x3f4717ff0285c904, 0xe0ffbc988daeff3c, 0x0402b3190ebdada1, 0xff02a0cb0402a5cc, 0x40ff8eff3ab3e16b, 0x99c0ff02ae040ebc, 0x043bc4eeecff3d5a, 0xff02c0020d02c5cb, 0xa3d99dff3cc3ec98, 0x23a0ff02ce000c3b, 0x083d474040ff3cca, 0x0502fb060d031b02, 0xff02e8170e02ed47, 0xfdc510ffba812166, 0x1583ff02f6000dbc, 0x0e3b3b2c88ffbbcc, 0xff03080009030d14, 0x961d06ff3c6ab875, 0x0c52ff03160009ba, 0x0e3a906bbaffbc33, 0x040331000f033f17, 0x3c8a76b8ff032ccb, 0x3a0c0bbb829d5aff, 0xb5ffbb53f04aff03, 0x04035100123ba4ce, 0xbc8a2c5fff034cca, 0x5a0b0bbc0c16c8ff, 0xc4ffbbc422ecff03, 0x0b03ef8a053c9df9, 0x05038b3f0103ab0b, 0xff03783203037d1d, 0xa66055ff3c8ce32c, 0x90dcff038600083a, 0x0dbcde625bffbda9, 0xff0398cb04039d03, 0x904716ffbb9c89a2, 0xdfc8ff03a62a0e3b, 0x043a345079ffba0f, 0x0503c1820503cfcc, 0xb774102fff03bc81, 0xca8405bcd4e87aff, 0x04ff3c581b59ff03, 0x0e03e1010839a3d6, 0xbcfb9365ff03dc23, 0xea7c05bbb44689ff, 0x59ffbba8a457ff03, 0x02043701083b4f80, 0x040409cc04041700, 0xba15d12dff0404ca, 0x12070dbc75760aff, 0x15ff3aa2504bff04, 0x0904292b0e3d78df, 0x3d7450dbff042400, 0x320b0bbb664b76ff, 0xbdff3b0cd87eff04, 0x0c04521f0ebc5705, 0xff04480208044d00, 0x383bd0ffbd3ee53b, 0x8b05bcfc31a8ffbd, 0x76ff045f220e0464, 0xbc19c71eff3d55c9, 0xc038baff046d000f, 0x8d053b0719baffbc, 0x0e0e0584110b068e, 0x040e04c60e0b050a, 0x000f0498070d04a6, 0xffb99d86f0ff0493, 0x04a16b04b97eccc4, 0xc41bffbbac3a9bff, 0x9a0404b800023ca3, 0xff3acbb1b9ff04b3, 0x04c1080eba88737f, 0xb963ff3ad53df3ff, 0x010c04eabb04bacc, 0xc7ff04d7070e04dc, 0x3bd2ddefffbb0911, 0x0049ccff04e50008, 0x0208bb544aa0ff3d, 0xfbff04f7020904fc, 0xbc153c98ffbcbf20, 0xbcf500ff0505100b, 0xb7043bbd1e00ff3b, 0xb5040532b6040540, 0x32ff051fb3040524, 0xbbb2e843ff3a0e83, 0x426ee6ff052d0112, 0x170ebc3b45abff3c, 0xffbd958d74ff053b, 0x0564c704bd29a8f8, 0x0551020905560008, 0x9899ffba81e26cff, 0x9aff055f00023c48, 0xba071788ff3bfa8f, 0x057101080576c904, 0xcd83ffbcb84b55ff, 0x0cff057f020839ab, 0xbbc2f0b9ff3b005e, 0x05d0010c0614c804, 0x05a2be0405b00002, 0x30812bff059dbd04, 0x190ebbfb9d5aff39, 0xff3c10cfb0ff05ab, 0x05c20109ba97dac7, 0xc67369ff05bdc604, 0x000cbbbf71f3ffb9, 0xffbafb14ebff05cb, 0x05f4b2043c021cdd, 0x05e1000e05e6010e, 0x8649ffba58d088ff, 0x4bff05ef00113cde, 0xbcb9e91eff3c3bdf, 0x0601010e0606b704, 0x482effbc0e4caaff, 0x15ff060fc5043c6c, 0x3c498ef4ffbb1e95, 0x062a0002064a070e, 0x1188d0ff06250208, 0x0208bb549340ffbd, 0xc0ff06370011063c, 0x3a447700ff3b7190, 0x7ac000ff06450012, 0x0d0e39af9e00ffba, 0x010c06600002066e, 0xff3ab44fabff065b, 0x0669010c3d62d350, 0x3c1dff3b1b050cff, 0x00020680c904bc32, 0xffbc1befe9ff067b, 0x0689190e3bec783c, 0x4aa0ffbb8438a2ff, 0x020d07ae930539e1, 0xbc0406de02080722, 0x190e06b01a0e06be, 0xff37b957c8ff06ab, 0x06b9bb043d0cb363, 0xc7a3ff3a0f049cff, 0xcc0406d0330ebc13, 0xff39cde6d5ff06cb, 0x06d9340e3cdaa70c, 0xeab2ffbc4b2d37ff, 0x00020702020b3bb1, 0x00ff06efbf0406f4, 0x3ba4ff80ff3a1432, 0xd56355ff06fd8e05, 0x8f05bb300b00ffbb, 0xebff070f0d0e0714, 0x3c336800ffb92e97, 0x8cfe7aff071d220e, 0x050bbc3eab60ff39, 0xc004074a0208076a, 0xc7ff07370112073c, 0x3961a1c9ff377b24, 0xd0ba06ff0745030e, 0x020bb91c51d4ff3b, 0xaaff0757000f075c, 0xbbf05ea6ff3c527a, 0xc12500ff07650002, 0x0b0b3b458577ffbb, 0x00090780190e078e, 0xff393aa1dfff077b, 0x0789001236d26aea, 0xc716ffb9a5a918ff, 0xc30407a0c904b980, 0xffb870633cff079b, 0x07a9cb04b9e303f8, 0xf296ffba317fb0ff, 0x0008083e020d3a19, 0x030b07da050b07fa, 0x58ff07c7cb0407cc, 0xbbdbf72fff3a1ead, 0x000129ff07d5cc04, 0xc6043c9de604ffbb, 0x40ff07e7c00407ec, 0xbc004632ff3a5f9f, 0xf8d476ff07f5c904, 0x0002bb3ae5b7ff3b, 0xc0040810c704081e, 0xffb981a61eff080b, 0x0819030b3d1ac3f0, 0xb4cdffbc729eeaff, 0x220e0830c90439af, 0xff398344e9ff082b, 0x0839cb04bc8c5f7c, 0x578bff3c23cb60ff, 0x280e0886000fba2c, 0x00020858b3040866, 0xffbc3960a4ff0853, 0x0861c0043aa7ea74, 0x2ecaff3bf5214eff, 0xcb0408780002bae3, 0xff3dab8d4cff0873, 0x0881030b3c4f48db, 0xafcbffbcde71b0ff, 0xc80408aacd043bc1, 0xdeff0897170e089c, 0xb9aeed02ffb8decc, 0x43d0b2ff08a50b0b, 0x000cbaa28fddff3a, 0xa9ff08b7270e08bc, 0xbae181bcff3addcb, 0x0b541dff08c50009, 0x9505bb989b9cff3b, 0x000d0b0ec6040d4a, 0x170e0966170609f2, 0x520409020e060922, 0xa9ff08ef430408f4, 0x3b8bb252ffbb005e, 0x6e930aff08fd7105, 0x93043b28233eff3c, 0x31ff090f13060914, 0xbba5d301ffbcf8d0, 0x1c5652ff091d010e, 0x1d0ebbe01cd7ff3c, 0x010b09381c0e0946, 0xffbcb4fd52ff0933, 0x09419104baeb0a69, 0x9026ffbcb0f316ff, 0x53050958c1043a81, 0xff395deac9ff0953, 0x096100063af870b2, 0xaca6ff3bf8b2b4ff, 0x010e09ae050ebc5f, 0x000c0980a704098e, 0xff3a241d17ff097b, 0x0989030b3d211829, 0x1b1dff3be101cdff, 0x000c09a08804bcb7, 0xffbc012c3dff099b, 0x09a9030ebda98c75, 0x39a6ffbc472102ff, 0x000809d2030b3c1e, 0xb4ff09bf030509c4, 0xbc1f10a7ffbd3568, 0x8d0090ff09cd7a04, 0x000c3bb2fa20ff3d, 0x7aff09df990409e4, 0x3c601453ff3d2e2b, 0x620150ff09ed0002, 0x2a0e3d9eda48ff3c, 0x8c040a3e74050a82, 0x70050a1079040a1e, 0xffb7a8e6caff0a0b, 0x0a19000eb8a42037, 0x9967ffbc168d3eff, 0x70050a30090b3a37, 0xffb9e0ba2aff0a2b, 0x0a392f03b9426c79, 0x80f4ff3a9ac07aff, 0x0b0b0a62c504b719, 0x40ff0a4fc4040a54, 0xba03ad75ff3948c9, 0x9d889dff0a5d0008, 0x0207bb52439cff3a, 0x0eff0a6f80050a74, 0xbb712491ffbac635, 0xea7910ff0a7d170e, 0x0207bbbe62c9ff3b, 0xc0040aaa2f0e0aca, 0xf9ff0a97b6040a9c, 0xbae161f0ff38c8c9, 0x0aa093ff0aa52c0e, 0x8005bc9c0870ff39, 0x12ff0ab700080abc, 0x3a95ac05ffbb5c6e, 0x197ea0ff0ac5040b, 0x2c0e3c93feabffbb, 0xc5040ae000020aee, 0xff3ba99639ff0adb, 0x0ae9060dbc4c3b06, 0xf51dffbaf3777fff, 0xc0040b002e0e3cae, 0xffbb2e2defff0afb, 0x0b095d05bd25e1ba, 0xfb29ff3accdaf0ff, 0x190e0c2e01083c1c, 0x170e0b5e010c0ba2, 0x0d0e0b30140e0b3e, 0xffba4f3c9eff0b2b, 0x0b3963053b094ceb, 0xce0cffbb43c6d0ff, 0x82050b5083053b9b, 0xff3a84c006ff0b4b, 0x0b59140b3cd116d2, 0x2ec7ffbb8ebc04ff, 0x00020b82c8043b4b, 0xe6ff0b6f8b050b74, 0x3d262cedffbc310f, 0x93dbf9ff0b7dc704, 0x7e053d254409ffbc, 0x5eff0b8f7c050b94, 0x3d2c7542ff3a10a7, 0x965406ff0b9d8005, 0x060dba7ea883ffbc, 0x01120bca61050bea, 0x7bff0bb745050bbc, 0xbb1275c0ffbd14ab, 0xa0a475ff0bc55b05, 0x00023d014b72ffb9, 0xbdff0bd77c050bdc, 0x3a94235bffbb8b13, 0xaea4f2ff0be57b05, 0x00123a007cccff3b, 0x250e0c0080050c0e, 0xffbb5c08b1ff0bfb, 0x0c0981053a723464, 0xe811ff3c9c04efff, 0xc7040c20c9043a10, 0xff3c6122a5ff0c1b, 0x0c29030b3d94c9dd, 0xdfdbffbb2ad746ff, 0x060d0cbe7505bd57, 0x0b0e0c5a08050c7a, 0x27ff0c47050e0c4c, 0x3ccc1000ff3b692a, 0x15ea88ff0c550111, 0x120b3c627920ffbc, 0x27ff0c6712050c6c, 0xb81271faffbc419b, 0x42f5ecff0c75010c, 0xc9043bfb49a6ffbb, 0x010b0c90050b0c9e, 0xffbcb1923aff0c8b, 0x0c99010c3c088d15, 0xe955ffbb71461bff, 0x4b050cb04c053b76, 0xffbb51839eff0cab, 0x0cb94f053d513b00, 0x3735ffbd013f30ff, 0x0e0b0d06310e3a61, 0xc8040cd87b050ce6, 0xff3b4e3221ff0cd3, 0x0ce1010cba9ef85e, 0xead9ff3937531bff, 0x87050cf8100bbb10, 0xff3cd5d561ff0cf3, 0x0d01110b3d88a9b8, 0xbec4ffbcc44376ff, 0x81050d2a010737c5, 0x8bff0d17c9040d1c, 0xbc27ec59ff3ca856, 0x5d0cacff0d258305, 0xcc04ba110db5ff3c, 0xe1ff0d37020b0d3c, 0xbca6fcd1ff3c102f, 0x4dbe98ff0d45320e, 0x220e3ac30214ff3c, 0x00080e41020d0f54, 0x000f0d83cb040dbe, 0x01120d70b9040d7e, 0xff3a646c7dff0d6b, 0x0d790011ba813002, 0x5255ffbb238cf3ff, 0x0fbbd32aacff3ac8, 0x070d99030b0da700, 0xb927f000ff0d9401, 0xa20107bb3f17c0ff, 0xc0ffbc0a38a0ff0d, 0x050db9010cbbf826, 0x3a830465ff0db496, 0xcf40ffbae8c2b0ff, 0xc4040e06030bbaf5, 0x020b0dd801070de6, 0xffbacc1400ff0dd3, 0x0de1020b385b6000, 0xf500ff3b7bae00ff, 0x01070df8cb043b75, 0xff3bc8bc6bff0df3, 0x0e0101073b835540, 0xaa00ff3b447e00ff, 0x0b0b0e21000cbabf, 0x8cff0e1701080e1c, 0x3ad2b040ff3b2117, 0x33c404baf0c1e0ff, 0x1200ff0e2e090b0e, 0x04b9728000ffbb1d, 0x3a824d00ff0e3ccb, 0xc8000fba8d0f80ff, 0x6dc7040e8dcb040e, 0x5a030b0e5f090b0e, 0x55ff39c0a403ff0e, 0xff0e68000e3bdb9b, 0xcf901eff3bd8b9f0, 0x7a000c0e7f020bbb, 0x9aff3c471ee0ff0e, 0xff0e88170ebad0af, 0x83f620ffbbac248c, 0xa3030b0eb101073c, 0x4000ff0e9e060e0e, 0x0e3c7048c0ff3a06, 0x3b36e6d5ff0eac17, 0xc30008bbafd300ff, 0x3e55ff0ebe02070e, 0xff3c2d18c0ff3b48, 0x0f10080e3c472980, 0x0ee2090b0ef0c904, 0x3565aeff0eddb304, 0x0108baab7e7bff3a, 0xff38f27554ff0eeb, 0x0f02060d3b834a2a, 0x9247e2ff0efdcb04, 0xcb04bbc97e08ff3c, 0xffbb8efc08ff0f0b, 0x0f340d0e3a9e7942, 0x0f21060d0f260a0e, 0x4a7effbb8d9d9bff, 0xf4ff0f2f0012bc1d, 0xbaa98832ff3bac96, 0x0f4100080f46cc04, 0x2679ff3b08ebc8ff, 0x70ff0f4fcd04bb87, 0x39f71666ffbab267, 0x0f61010b0f81c004, 0x7c0107bb773b10ff, 0x7296050f7700020f, 0x80ffbadc2a00ff0f, 0xbafb7d00ffbad0e7, 0xe40002ba9dfe00ff, 0xad060d0fc401070f, 0x9a240e0f9fc9040f, 0x00ff380f2492ff0f, 0xff0fa896053c39a4, 0xd02620ffbb237edb, 0xba00080fbf96053a, 0x70ff3bad8229ff0f, 0xbbb4df50ffbb980a, 0x211aa0ff0fcd230e, 0xc580ff0fd6000dbc, 0x00ff0fdf020dbb81, 0x3ad87900ff398cbc, 0x100c000810230107, 0x0ff92b0e0ffe9605, 0x4b0dffba9266c7ff, 0x40ff100701123b8e, 0xba38deabff3bb981, 0xd46c00ff1015030b, 0x2080ff101e050b3a, 0x0b3b9ff960ff3ae4, 0x041039cb04104705, 0x39f28800ff1034c7, 0x42010b3c0979c0ff, 0x70ffbb285300ff10, 0x3c83d108ffba8ff3, 0x0000000800000013, 0x00000001000003e8, 0x000000000000101f, 0x047b8c0508b80007, 0x012cc1040248c704, 0x005ca60400a06a05, 0x002e4101003c120b, 0x35e81eff00296805, 0x000dbbe3d22effb8, 0xff3ac65407ff0037, 0x004ea504b9b755bb, 0x0f18ffff00499c04, 0x170ebb1c3ffbff3a, 0xff3d050d70ff0057, 0x00800012bc2b7cce, 0x006d0e0b00723705, 0x4d55ff3d78a3c1ff, 0x44ff007b070d3c47, 0xbbd05fb3ff3b1a38, 0x008d060d0092a904, 0x58abffb9ab2d82ff, 0x4bff009baa04bd24, 0xb957ba73ff3c7722, 0x00c8790500e8c004, 0x00b50a0e00ba100e, 0x9b6dffb6cafe70ff, 0xb8ff00c3350e39a7, 0x3a8e4b7fffb931ba, 0x00d5bf0400da0009, 0x62fdff3932ca62ff, 0xbeff00e3230eb70c, 0xba4c54c8ffb9a753, 0x00fe230e010c7805, 0xaa4eadff00f90008, 0x2a0e3caa4728ffbc, 0xffbccf9d18ff0107, 0x011e010cb99bec3d, 0x518bc0ff0119340e, 0x7b053d80379eff39, 0xffbcb382cdff0127, 0x01bc78053a5e4afe, 0x01582b0e01780012, 0x0145c304014a280e, 0x1803ff3c8d3d37ff, 0xc8ff01536305bb77, 0xbc945712ffba9368, 0x01656305016a2d0e, 0xcd26ff3e23f5f1ff, 0xcaff0173300e3d47, 0x3c823124ffbce45a, 0x018e100b019c060d, 0xa5e561ff0189000d, 0x610539219177ff3b, 0xffbac3f7f2ff0197, 0x01ae02083bb83b91, 0xb74447ff01a90b0b, 0x010cbd1cdce6ffba, 0xff3cc929ccff01b7, 0x02040a0ebc6974d0, 0x01d6000801e40002, 0xab66f2ff01d10b0b, 0xc3043c668c5fffbb, 0xffbcd4da98ff01df, 0x01f601083caa19d2, 0x7ac576ff01f1000d, 0x060d3b8e0c74ffbc, 0xffbc3e2481ff01ff, 0x0228290e3ce47859, 0x0215c304021a0d0e, 0x9caaff3c39acd8ff, 0x53ff0223c204bc8e, 0x3ab10cf0ffbb9109, 0x02352f0e023a7a05, 0x8228ff3c658438ff, 0x1cff0243c204bb54, 0xbb0effc6ff3bde37, 0x02dc000203681c0e, 0x0278c9040298030e, 0x0265000c026a030b, 0x4c80ff3a0b0366ff, 0xf0ff0273020d3cd7, 0x3c4542d5ff3d6487, 0x0285010c028a0111, 0x7120ffbb062bf5ff, 0x0eff0293030b3bc7, 0xbd15db89ff3bff84, 0x02aecc0402bc1a0e, 0xc058e2ff02a9cb04, 0x010cbc2db2ceff3a, 0xff3ab216c8ff02b7, 0x02ce00083c69be2f, 0x7330c0ff02c95205, 0x030b3c86200dffbc, 0xff3d335370ff02d7, 0x032402083cf8aed0, 0x02f647050304060d, 0x686f59ff02f1170e, 0x000dbce46490ffba, 0xffbbb7ad03ff02ff, 0x03160e0e3b2874d2, 0xb47344ff0311ca04, 0x00093ce9e134ff37, 0xffbc181e48ff031f, 0x0348170e3a0cf244, 0x03352b05033a000d, 0xfe80ff3dbc9f90ff, 0xd5ff0343030b3b8a, 0x3aa5715bff3c3181, 0x0355180e035a0011, 0xbcb6ffbcffc8acff, 0x60ff0363110bbc02, 0x3caedb2cffbbab42, 0x03b4130b03f88a05, 0x0386000c0394040d, 0x8425beff03810206, 0x340ebbcb8964ffbd, 0xffbb33c448ff038f, 0x03a687053c6fb644, 0x1b0eefff03a18205, 0x310ebb2c1b23ff3b, 0xffba92d0a6ff03af, 0x03d8c9043c0a5eff, 0x03c56d0503cac804, 0x4b3dffbbd58babff, 0x77ff03d3000c3b28, 0xbc8db8aeff3c4d70, 0x03e5001103eacb04, 0xb61cff3c5399b9ff, 0x3bff03f300113adf, 0x3a014bfdffbb936f, 0x0420000204400108, 0x040dca040412cc04, 0xea3effba06d5bbff, 0xf5ff041b1f0ebc5c, 0x3a921537ff3d5ffb, 0x042d000904322b0e, 0x43f6ff3d5be25bff, 0xbeff043b0b0bbb4f, 0xbc41852fff3afd85, 0x0456000c045b1f0e, 0x25cf70ff04510b0b, 0x78ffbd2bce4bffbd, 0x0e046d8b05bce2f9, 0xbc922435ff046828, 0x76220e3a6cfd6cff, 0x0fffbc48903fff04, 0x0c068e8d053b2d99, 0x0e0513060d059f01, 0x0404af000204cf22, 0xff049c000804a1bb, 0xcdb3d2ff395c8425, 0x1d48ff04aa030bbb, 0x0d3b6c6fa3ffbd1c, 0xff04bcc40404c102, 0x2cc608ff3a2eaafb, 0xbd4aff04cac8043d, 0x113addd46effb95f, 0x0404e5c50404f301, 0x3b882d60ff04e0be, 0xeec604bc0c138cff, 0xbcff3d1299ecff04, 0x0e0505030b3a5e77, 0x3c3bf5dfff050023, 0x0e000fbaf2ccadff, 0xebff3b158683ff05, 0x0b055bc604bc1ed7, 0x04052d0012053b01, 0x3be400c5ff05289d, 0x36000cbc226129ff, 0x07ffbc36296dff05, 0x04054d0d0eb9e4c1, 0xb9c05182ff0548a3, 0x561d0eb8db72a0ff, 0x8dff3af80ffbff05, 0x0b057fc704bba7bf, 0xff056c0d0b05710e, 0xef136bff3c2c9f30, 0xa96eff057a00123c, 0x113d62c02cff3a3f, 0xff058c280e059100, 0x2462c3ffb9b3827a, 0x82adff059a230e3c, 0x0bbc96cad3ffb985, 0x0e05e20b0e06260e, 0x0405bd000205cb08, 0x3af6f75dff05b8b2, 0xc6030bbc8e843bff, 0x55ff3c116124ff05, 0x0b05dd0009b9a9b0, 0xbc69eb69ff05d801, 0x5810ffbd895aabff, 0x000806060002bc1f, 0xcbff05f3ac0405f8, 0x3b52fc05ffbd23ca, 0x9455bbff06010d0e, 0x060d3ba8da66ff3d, 0x4aff06130e0e0618, 0xba13cc84ff3c65f9, 0x18dc6eff06210d0e, 0x0002bbcabf60ffbd, 0xc304064e220e0653, 0x4eff063b00080640, 0xbcbb3daaff3babca, 0x298867ff06491d0e, 0x13ffbd35f02dffbb, 0x0e066ebc043cf0ad, 0xff0664b304066903, 0x8a7900ff3bd8f160, 0x060dbd5c6b80ffbc, 0x87ff067bc9040680, 0xbc184eedff3ccd8b, 0x38fef3ff06890011, 0x9305bc6277c0ff3c, 0x02080710020d079c, 0x1a0e06bebc0406de, 0x89ff06ab020b06b0, 0x3a22e205ffbb1409, 0x11ca7fff06b99105, 0xcb043ba0eef0ffbb, 0x4cff06cb340e06d0, 0x3d0832f0ff39997b, 0x9d3b6cff06d9cc04, 0x230e3a791355ffbc, 0xbf0406f4170e0702, 0xff3a015b7aff06ef, 0x06fd0002bb702e92, 0xd1e0ff3a0dc155ff, 0x00ff070b010b3ba3, 0xbc08e980ffbb2f59, 0x0738090e0758050b, 0x07250002072a000f, 0x95bbff3c175c06ff, 0xa8ff07330009baa1, 0xbad70288ff3a86c4, 0x0745000c074a000f, 0xf952ff3d0307adff, 0x7aff07530b0ebb9c, 0x3a61db4dffbc0a07, 0x076e190e077c0b0b, 0x27f8bdff07690009, 0x001236bd51d4ff39, 0xffb99518dbff0777, 0x078ec904b967cded, 0x5857c1ff0789c304, 0x0b0eb9cc4fd7ffb8, 0xff3c01ce56ff0797, 0x082c020db99c8968, 0x07c8050b07e80008, 0x07b5c90407ba030b, 0xd64effba196f8eff, 0x6bff07c3c2043b87, 0xbc3fc3bcff3af91d, 0x07d5000207da6f04, 0xff08ffbc8c53cdff, 0x88ff07e3a404bbda, 0xba204971ff3b886b, 0x07fec404080c000f, 0x5d34baff07f91d0e, 0xc704bc7610c0ffb9, 0xff3d0b49f0ff0807, 0x081e000c3a7125ed, 0x283077ff0819c804, 0x0b0b39b4f7d0ffbb, 0xffbc3a5f0eff0827, 0x08740e0b3b8f1560, 0x08469d040854010b, 0x4e0d33ff08419405, 0x9405bb4ec1d0ff3c, 0xffbb96fb7eff084f, 0x086600123909f5e7, 0xf06e2eff0861060d, 0x170e392c6bb2ffbb, 0xffb8571607ff086f, 0x08989405b8bd3d73, 0x0885060d088a100b, 0x10c9ffbb89a336ff, 0x0eff0893010c3ce8, 0x37d200d6ff388c1c, 0x08a5ab0408aab204, 0x82bbff3943130dff, 0x23ff08b31d0ebbfc, 0xbaeec478ff39b071, 0x0afcc6040d2f9505, 0x0954930409e09804, 0x08f0021109108005, 0x08dd850408e22b0e, 0x6c5dffb8add002ff, 0xdfff08eb90043a80, 0x3a9ec98bffba77f1, 0x08fd0b0509020108, 0x3be2ff3bd2e4c4ff, 0xd9ff090b0a06ba2a, 0xbc138250ff3c3888, 0x0926820509340002, 0xad645bff09218f04, 0x010c3c2c41feffbb, 0xff3aa89f5cff092f, 0x0946070ebb78d687, 0x647653ff0941000e, 0x020d3b5c3009ffba, 0xffbc32eb23ff094f, 0x099c02073a7f115d, 0x096e070e097c060d, 0x9eeec4ff09690002, 0x170e3adef66fffbb, 0xff3c11ba9dff0977, 0x098e070ebab4f1f4, 0xbecc84ff0989060e, 0x070d3c97f5a5ff3a, 0xffbbbfc70bff0997, 0x09c042053c293301, 0x09ad1c0e09b20011, 0xf2acff3bfa68d2ff, 0xbeff09bb9404bc8b, 0x3b82dd0fffbb9b3d, 0x09cd000609d24405, 0xbff7ffbbe0942cff, 0x9fff09db230ebd4c, 0xbc78e887ffbb6e64, 0x0a2cb2040a700208, 0x09fe1d030a0ca704, 0x098e35ff09f93f01, 0xa1043c8d29aeffbb, 0xff3a7942f0ff0a07, 0x0a1e0108bb300d34, 0x06e124ff0a190002, 0xab043afd595fff3b, 0xff3b025c10ff0a27, 0x0a500c05bb303cad, 0x0a3d000f0a420505, 0x185eff3bd55281ff, 0x64ff0a4b0605bc33, 0x3bd9dbe5ffba97d8, 0x0a5d27030a62330e, 0xfe4fff3aba2dddff, 0x5eff0a6b01063983, 0xbbfd6328ffbaa100, 0x0a989a040ab8000c, 0x0a8501110a8a0b0b, 0x96e3ffbb4806f1ff, 0xfbff0a9348053c76, 0xbd2b3598ffbc5585, 0x0aa5070e0aaaaa04, 0xe01cffbb23913aff, 0x71ff0ab3190e3bd5, 0x3af05404ffbb1bfc, 0x0ace030d0adc000f, 0x1b0836ff0ac90d0e, 0x170e3ba93372ffbc, 0xff3b6f4413ff0ad7, 0x0aeebd04bd0021bd, 0x7ddd3cff0ae9a604, 0x2a0ebb8a4e61ffba, 0xffbb244d5bff0af7, 0x0c1301083bf70f4e, 0x0b43cc040b871f0e, 0x0b1512060b231005, 0x1e040ebda5e26dff, 0xcfff3ba32329ff0b, 0x0e0b35060dbc9f9e, 0x38b79537ff0b301d, 0x3e8605bc8f42ffff, 0xbeff3baf7850ff0b, 0x120b670b0eba0277, 0xff0b54080e0b5900, 0xc5edc2ff3b12a449, 0xd775ff0b6200063c, 0x0e3b0da833ffbbfa, 0xff0b7400110b791d, 0xdf3a71ffbb5507e5, 0x9a92ff0b82060d3a, 0x053b987fc7ffbcb0, 0x050baf00020bcf78, 0xff0b9c36010ba10c, 0xcecae5ffbd8a02ec, 0x32d2ff0baac8043c, 0x053b0df9bfffbbaa, 0xff0bbc12060bc155, 0x130598ffbbbc5715, 0xd49eff0bca060d3c, 0x05bb381b2dff3bc9, 0x020be52a0e0bf379, 0xbc9a6911ff0be000, 0xee01123ca4211cff, 0x29ffbc1a1b84ff0b, 0x120c0501073c1710, 0x3ae8ec65ff0c0000, 0x0e810539d92cf5ff, 0x63ff3a511a3cff0c, 0x0d0ca37505b94c18, 0x070c3f07050c5f06, 0xff0c2c0f0e0c3102, 0xba4868ff3c79e170, 0xd360ff0c3a020dbb, 0x05bc73d797ff3c4b, 0xff0c4c5f050c5165, 0xa2ddf9ff3a745a61, 0xb94fff0c5a000fbb, 0x043a937fe1ffbbb1, 0x050c7547050c83c9, 0x399cd138ff0c7045, 0x7e00113d2c2391ff, 0xffffbad75b76ff0c, 0x040c95220e3bb3e1, 0x3b3e72c7ff0c90cb, 0x9e300ebc912911ff, 0x89ff3b28e408ff0c, 0x040ceb010cbbb0f9, 0x0b0cbd070d0ccbca, 0x3a3b6befff0cb80b, 0xc6c704bb0f1944ff, 0x7cff3ce1d05dff0c, 0x040cdd80053c1ef2, 0x3b9448a2ff0cd8cb, 0xe68405bb0fd4fcff, 0x0dff3b4d067dff0c, 0x0b0d0fc804ba6e80, 0xff0cfc220e0d0103, 0x03c7b5ffbd06f983, 0x845dff0d0a0b0b3c, 0x053d9c6d0dff3ca0, 0xff0d1c8b050d218c, 0x631ad6ffba021415, 0x667cff0d2ac904bd, 0x0ebbac1bc1ff3cdd, 0x0d0e02040d0f1e22, 0x040d8300080dc702, 0x050d5501070d6378, 0x3ad811bbff0d5096, 0x5e00023b55efd8ff, 0xb8ff3b83ec28ff0d, 0x040d75a7043b8e3e, 0x37aeffc4ff0d70a4, 0x7e000cbba5a194ff, 0xdbff3aceb4b5ff0d, 0x070da7c404b9b994, 0xff0d94070e0d9901, 0xc7a400ffba7ad555, 0x8300ff0da2020b39, 0x0e3b5d5c00ff3b62, 0xff0db4020b0db917, 0xff5155ff390ba000, 0xe580ff0dc2cb043b, 0x0b39f01378ff3b4a, 0x050ddd010b0df405, 0xbc832fe0ff0dd896, 0xef9605bc463040ff, 0x80abff0dea080e0d, 0xffbb78ff00ff3a9e, 0x0dfd00023c9b6be0, 0x0140ff3b69ed00ff, 0x0d0e0e92000c3d09, 0x080e0e2ecc040e4e, 0x70ff0e1b070d0e20, 0x3b67fcd8ffb96b2b, 0xe08e4dff0e29c904, 0x0008bbbc4110ffb9, 0xc8ff0e3b060e0e40, 0x3b961cb3ffba43c4, 0x7ddd2eff0e49060d, 0x01113aa950d4ffbb, 0x060d0e64c8040e72, 0xff3a941c79ff0e5f, 0x0e6dc9043ca21025, 0x09daffbb9765eaff, 0x010b0e84ca043a01, 0xff3c333560ff0e7f, 0x0e8d1d0ebab8395e, 0x9100ffbbc38610ff, 0x040b0eda000e3a21, 0x010b0eac01070eba, 0xffbb2fd590ff0ea7, 0x0eb5b604bbbfabff, 0x4bb5ff3a14b780ff, 0x00120ecc0008bad2, 0xff396753abff0ec7, 0x0ed50011bb3e6106, 0x6268ffbadbf960ff, 0x01120efe060d3b96, 0x63ff0eeb080e0ef0, 0xbb312a4bff3a5d0d, 0xd435c1ff0ef9cd04, 0x090b3c446226ff39, 0x93ff0f0b00110f10, 0xb912e21fffbc2165, 0x9b9896ff0f190012, 0xc0043c52dbc7ff3a, 0x96050f34010b0f54, 0xffbb929210ff0f2f, 0x0f4f0107bb17dfe0, 0x0f4596050f4a0002, 0x0380ffbac62600ff, 0xffbae25700ffbabc, 0x0fae0002ba8e3180, 0x0f8001070f972b0e, 0x0f6d060d0f72000c, 0x04f2ffb9620133ff, 0xc0ff0f7b060d3b26, 0xbb7d3a80ffba5a78, 0x10fe60ff0f89230e, 0x9680ff0f92c704bc, 0x073abfacc0ffbb69, 0xff0fa4030b0fa901, 0x8c6280ffbb5d3b00, 0x0107ba7a6000ffbb, 0xca040fd6cb040ff6, 0x95ff0fc3000c0fc8, 0xbbe1a080ff3ac589, 0x665840ff0fd19605, 0x0111baf0bd00ffbc, 0x3cff0fe396050fe8, 0x3ba6f45bffba1d4e, 0x3acd25ff0ff1050b, 0x050b3c4388c0ff3b, 0xc704100ccb04101a, 0xff39da4800ff1007, 0x1015000f3bf77480, 0x8e50ffbb177e00ff, 0x133c6d4510ffba81, 0xe800000008000000, 0xc600000001000003, 0x0700000000000011, 0x04047b8c0508dc00, 0x05012cc1040248c7, 0x04005ca70400a06a, 0x04002e6205003c9a, 0x374d7358ff002993, 0x371d0e3a9c8b25ff, 0x57ff3a95270aff00, 0x01004e1e05ba8171, 0xba8fe4c7ff00493f, 0x57010cbbf8388aff, 0x05ffbb17749aff00, 0x0d0080650539338e, 0xff006d0206007207, 0x870554ffbaa993e4, 0x43abff007b0d0e3a, 0x04b87ff5bdffbdb9, 0xff008daa040092b3, 0x6b2b93ff3c54f879, 0x89c0ff009bbb04bb, 0x04bc0f408aff3bb7, 0x0500c8790500e8c0, 0xff00b5930400ba72, 0xde5ec0ffba07383c, 0x6f9aff00c38204b9, 0x0939f47eaaff3a25, 0xff00d5120e00da02, 0x0fc452ff3a037f99, 0x279cff00e3170eba, 0x12bc0853c8ffbaa6, 0x0e00fe2b0e010c00, 0xba28d3c1ff00f925, 0x077905bc8ca679ff, 0x92ff3bd9495dff01, 0x0e011e060d3d079e, 0xbc1a055bff011917, 0x27220e39b74e0bff, 0x75ff3cbca145ff01, 0x0f01bc7505bc12a4, 0x0d01582905017800, 0xff01451805014a02, 0x695e17ffbc522cb8, 0xb976ff01530d0eb7, 0x023c8ef8a0ffb992, 0xff01650006016a00, 0xccd9b3ff3b6f318f, 0x1570ff0173c204bc, 0x05bac2162fff3c3b, 0x05018e6e05019c73, 0x379cfc16ff01896c, 0x970108bbdca213ff, 0xaaffbc00ee81ff01, 0x0201ae0d0e3bf9b2, 0xbd37adfaff01a900, 0xb77405bc4474f4ff, 0x3cffbc2ad982ff01, 0x0e020481053bbf84, 0x0b01d6000801e422, 0x398abb1cff01d10e, 0xdfc304bc80a1a6ff, 0x38ff3c8081f6ff01, 0x0d01f6260eba9e11, 0x3c90c326ff01f106, 0xff0b0bbb6f6b7eff, 0x82ffbb0fd4d5ff01, 0x05022889053b2c43, 0xff0215340e021a83, 0xac3090ffbb0060dc, 0xb86fff022300083c, 0x043a0747e6ffb9bc, 0xff0235050b023ac5, 0x5ee5a2ffbb0a842e, 0x820fff024300113a, 0x0ebba08294ff3bf2, 0x0e02dc000203681c, 0x0b0278c904029803, 0xff0265020d026a03, 0x2c8e2cffbc03cb00, 0x4240ff027319063c, 0x0f3d0d01d4ff3be3, 0xff0285030b028a00, 0x06df2dff3be5f6ce, 0x825aff0293010cbd, 0x0e3bb37f6bffbaf1, 0x0402aecc0402bc19, 0x3aa41f7cff02a9cb, 0xb7040ebc1c541eff, 0x1bff3d442f10ff02, 0x0802ce020d3b9aa9, 0x3bf72cd5ff02c900, 0xd7050d3d0e9f58ff, 0xf3ffbd8b2558ff02, 0x0d032402083c430d, 0x0e02f64505030406, 0xba58a62dff02f117, 0xff0209bd8eb4d0ff, 0x30ff3b3b14c3ff02, 0x080316140ebb18c3, 0xba9e2685ff031100, 0x1f180e3c532159ff, 0x6bffbc832354ff03, 0x040348170ebaf9d5, 0xff03358305033ac8, 0xa5658bff3d3e08e0, 0xa7a3ff0343000f3b, 0x113a04b6edff3c08, 0xff03558805035a00, 0xdf3dd9ffbc56fc49, 0x0b00ff03633905bb, 0x053c3aeddeffbcd7, 0x0e03b40d0b03f88a, 0x050386890503942e, 0xbaada0cbff038187, 0x8f0008bbde09d4ff, 0x5effbba12102ff03, 0x0e03a600113c749b, 0x3d21f07dff03a12f, 0xaf000c3b5e86b4ff, 0xd8ffbb289dd4ff03, 0x0403d8cb043a9566, 0xff03c5c80403cac9, 0x0c19a9ff3992feb8, 0xb898ff03d30012bc, 0x053adc9039ff3c3f, 0xff03e5790503ea7d, 0x3c2c74ffbb85ff90, 0x5a05ff03f382053c, 0x08b9e28ac0ffbca3, 0x0404200002044001, 0xff040dca040412cc, 0x46d2d8ffb9f2b381, 0xf5d4ff041b8b05bc, 0x0ebadc3041ff3c49, 0xff042d000904322b, 0x3a89f6ff3d45e552, 0x73bcff043bc804bb, 0x0ebc0184bbff3be4, 0x0b0456000c045b1f, 0xbd153ab0ff04510b, 0x46e8ffbd1aa013ff, 0x2d0e046d8b05bccc, 0xffbc2db0e1ff0468, 0x0476220e3c2099c2, 0x3d0cffbc3481d6ff, 0x110b06b28d053b1c, 0x0e0b05130e0e059f, 0x9d0404af040e04cf, 0xafff049c990404a1, 0xbc76eeddffb90923, 0xec0d6fff04aa0b0b, 0x00023c7ae625ff39, 0x30ff04bcb20404c1, 0xbb37a336ff3a9fba, 0x6665dbff04ca0b0b, 0x0012bc479320ff39, 0x000e04e57d0404f3, 0xffbb82c2baff04e0, 0x04eea2043bf2c090, 0x98e8ffbcdb753aff, 0x7e0405050002bc62, 0xff3bcb04a9ff0500, 0x050e060dbba34b93, 0x17d4ffbb608942ff, 0xb304055bb5043c5f, 0x0f0e052d140e053b, 0xff3c6546bbff0528, 0x05369504bc035b81, 0x2ff0ffbc0746d4ff, 0x0111054d030b3ac9, 0xffbb9e47beff0548, 0x055601083d0704c5, 0x53e8ffbc4afc73ff, 0xc404057f260e3d13, 0xa7ff056c01120571, 0xbb0c048cff3b32d9, 0x0144c5ff057ac504, 0x280e3a6e4ba0ffbc, 0x11ff058c00090591, 0x3c7c4575ffbc7e1c, 0x81ea99ff059a0108, 0xc8043b9f114bffb9, 0x000205eb010c062f, 0xc10405bdc60405cb, 0xffba247ca2ff05b8, 0x05c6060d3b90bf53, 0x7174ffbc960483ff, 0x070e05dd080eb7ee, 0xff39bafba6ff05d8, 0x05e60b0e3c0056a9, 0xb138ffbd264886ff, 0x010e060fb204ba59, 0x34ff05fc000e0601, 0x3cc3fa31ffbaaacc, 0x207eebff060a0011, 0xb304bcab9d45ff3c, 0xb4ff061c010e0621, 0x3c5b652bffbbe589, 0xe4b5acff062ac504, 0x000c3c39a414ffba, 0x230e065700080677, 0x0eff064400120649, 0x3c5562b5ffba907c, 0x38605eff06520012, 0x250ebab9a246ff3c, 0x89ff066401080669, 0xb89fa13effbc90a0, 0x68c1b5ff06722b0e, 0x280ebc0cabc6ff3c, 0xc904068d190e069b, 0xff3b05838aff0688, 0x06960112bb95686b, 0xc758ff3bd1a393ff, 0x2d0e06ad0111bc59, 0xffbc81a10aff06a8, 0x517600ff3b48fc9b, 0x34020d07c093053c, 0xe2bc040702020807, 0xcfb30406d41a0e06, 0xeaffb9845f99ff06, 0xff06dd220e3b4261, 0x258f7bffbb672da3, 0xef340e06f4cd043b, 0x80ff38234c15ff06, 0xff06fd00083cf528, 0xb6e2a8ffbc388b98, 0x18230e07269205bc, 0x6b3bff0713170e07, 0x0b3b13de80ffb9e6, 0xbb1dd000ff072101, 0x2f010bbbf67100ff, 0x80ffbb362d00ff07, 0x08077c050bbb99ef, 0x12074ec004075c02, 0x373c7785ff074901, 0x57c504394c5847ff, 0xc2ff3ae54df8ff07, 0x04076e010cbaff25, 0x3ac75e50ff0769c3, 0x77c404bb53f1b8ff, 0x2eff3b1e36e6ff07, 0x0e07a00b0b3c9418, 0xff078d0009079219, 0xaa6d73ff39172ba5, 0x30afff079b001236, 0x04b9509e69ffb986, 0xff07adc30407b2c9, 0xb7e11cffb842b6cc, 0x049bff07bbcb04b9, 0x0d3a0bf3f0ffba2c, 0x0b080c0008085002, 0x0e07de1f0e07ec05, 0x3a08ad0aff07d91d, 0xe7220e3ce3e4ccff, 0x83ffbca8452fff07, 0x0f07fe0b0b3a908d, 0x390a0cafff07f900, 0x07010cbc06285bff, 0x55ff3c11c6d9ff08, 0x05083000023aac09, 0xff081d010b082295, 0xae651fff3be58fee, 0x2500ff082bbf04ba, 0x04bca7cd34ffbb32, 0xff083d1d0e0842c8, 0x5d7580ffb9fd1368, 0xd90cff084b030bbc, 0x0b3a337ee4ff3ba2, 0x0408786d04089813, 0xff08650111086a6b, 0x37e7c4ff3949e660, 0xf29eff087301113d, 0x0fbca3bca6ff3c00, 0xff08850a0b088a00, 0x01b5a8ffba65e9c8, 0xe6e6ff0893230e3b, 0x08ba808997ff3830, 0x0d08aecc0408bc01, 0x3ab00288ff08a906, 0xb70009b9e81110ff, 0xd6ff39b0675bff08, 0x0e08ce1d0ebbb105, 0x3b1d77e4ff08c907, 0xd7280ebc03ec12ff, 0xe0ff3d09a5c6ff08, 0x0f0d5c260ebc6a6c, 0x050a040a0e0b2000, 0x0d0934780509788e, 0x0e09060208091405, 0xb8c81b5dff090107, 0x0f0b05bb50c405ff, 0x30ff3b9ccc38ff09, 0x0509260b06bc5b76, 0x3a7f650bff09214a, 0x2f3a043c1d59caff, 0xe4ffbc0741adff09, 0x040958030d3bf3d4, 0xff09458a04094a91, 0x8491bbffbbe2b628, 0x92e2ff0953000c3c, 0x0bbd1629faff3c00, 0xff09659304096a07, 0x5d67ddff3c2444fa, 0x2216ff09737304bb, 0x0ebc334879ff3ca7, 0x0409a0940409c003, 0xff098d000c099290, 0x5e4fe6ff3818fea6, 0xd138ff099b8f053c, 0x05bd87bb10ffbc3a, 0xff09ad020e09b28f, 0x5e08c5ff3a269c10, 0xe33aff09bb9005bd, 0x0d3ba99fb9ff3cc1, 0x0209d6070e09e404, 0xbc1dedffff09d100, 0xdf0008b9940651ff, 0x13ff3b8eefb3ff09, 0x0e09f6070dbc8073, 0xbbfda08dff09f107, 0xff9305bd271637ff, 0x28ff3d05ef0bff09, 0x020a94b1043dafd2, 0x060a30020d0a5000, 0xff0a1d00060a2209, 0xce63f6ff3b02cfd4, 0xaeb7ff0a2b7304bb, 0x053c710c68ffbc0d, 0xff0a3d08060a4280, 0x091f55ff3a8e3900, 0x198aff0a4b230eba, 0x06bd8e77a0ff3bc4, 0x050a66220e0a7412, 0x3c39d171ff0a6103, 0x6f030b3b3a4e41ff, 0x5cffbae82137ff0a, 0x040a868804bca3de, 0xbb32bee8ff0a8186, 0x8f97043cbdcd03ff, 0xb4ffbd52381aff0a, 0x0b0adc0a06bc8ce8, 0x0e0aae010b0abc03, 0xbadf394cff0aa923, 0xb78b05bd08bfaaff, 0x6fff3c74feafff0a, 0x040ace220e3a91d4, 0xbb713f67ff0ac9b9, 0xd700063b97f97fff, 0x04ffbc6e73baff0a, 0x0c0b00bc043bf8e3, 0xff0aedb8040af200, 0x487518ffbc2344c4, 0x4e3eff0afb0108bd, 0x04bbd83626ff3b23, 0xff0b0d030b0b12bd, 0xa9fac5ff3d8f5c81, 0x4ba5ff0b1b050d3c, 0x043c2b9238ffba23, 0x080bb4010b0c40c5, 0x0c0b50c1040b7000, 0xff0b3d230e0b4200, 0x3c9646ff39a420b0, 0x3cabff0b4b0107bb, 0x04bba0cff0ffba91, 0xff0b5d00020b62c2, 0xd2f491ffbbd0cae2, 0xdd5eff0b6b1d0ebc, 0x043acacd93ff3c7a, 0x010b8641040b9461, 0xb886c397ff0b813c, 0x8f0b0ebb5b84edff, 0x0cffbbb51320ff0b, 0x0e0ba6000cbb0bfe, 0xbbe9d289ff0ba119, 0xaf7a043a54af64ff, 0xf1ffbbfe7dbcff0b, 0x0e0bfca704bc6a7b, 0x040bce0b0e0bdc14, 0xb9b5d224ff0bc9a5, 0xd7a204bc7ae418ff, 0xe6ff3a4d4c59ff0b, 0x040bee6d053a91bf, 0xba026f2aff0be987, 0xf771053a17d7c2ff, 0xd2ffbc039d99ff0b, 0x050c20250eba1808, 0xff0c0db1040c1261, 0x7836c5ffbabbcf32, 0xc437ff0c1baf043a, 0x0d39e48347ff3ad6, 0xff0c2d00020c3206, 0x8a098fff3cd275b4, 0x6de6ff0c3bb0043d, 0x0e3c4fbe6cffbd38, 0x020c8cca040cd023, 0x050c5e7b050c6c00, 0x3cf597b4ff0c593b, 0x677e05bb361898ff, 0x2eff3c47fcb8ff0c, 0x0e0c7e070dba2bab, 0xba141786ff0c791d, 0x8700083b338205ff, 0x1dffbc9fa422ff0c, 0x050cb0170e3bb05f, 0xff0c9d8f050ca292, 0xa73e57ff3b1b8c68, 0xef44ff0cab93053b, 0x053a2c8ea9ffbb86, 0xff0cbdcc040cc277, 0x451b7fff3bf13145, 0xdc86ff0ccb0207bc, 0x05bb268a8affb7ce, 0x040cf8cb040d1887, 0xff0ce5240e0ceac9, 0x9cc27effbd9376c8, 0xc922ff0cf30012bc, 0x0e3cf120d8ffbda1, 0xff0d05070d0d0a25, 0xad0147ffbb255407, 0x518fff0d13cd043d, 0x05ba330742ff3d4f, 0x0b0d2e88050d3c8b, 0x3cc7279aff0d2903, 0x370012bbf6421eff, 0x60ff3c9ee40cff0d, 0x0e0d4e050b3d8fde, 0x3cb1a6edff0d4925, 0x57c7043b9aad00ff, 0xb4ffbcd4ef14ff0d, 0x0d0f9cca043b38b6, 0x0e0df4100b0e8007, 0x050d900b0b0db029, 0xff0d7dbb040d825e, 0x68b16fffba51935a, 0x82f8ff0d8bbb04bb, 0x04bc22c396ff3a0b, 0xff0d9d00080da29c, 0xba9274ff39b24c84, 0xd411ff0dab5705bc, 0x04bd1f3563ffbdaf, 0x060dc6c1040dd4c3, 0x380bd03eff0dc113, 0xcf0a0bbb04b1c8ff, 0x6dffbad8c06eff0d, 0x060de668053ba833, 0xb941e961ff0de114, 0xef0107bcfb23fdff, 0xa9ffbb15d290ff0d, 0x120e3c130b3b6ac9, 0x040e0e01070e1c01, 0xbba2c9faff0e09c3, 0x1769043d19640bff, 0xd1ffbaf03aefff0e, 0x0e0e2e0108bcced2, 0x3cbb77c3ff0e292a, 0x3701073da6c951ff, 0xbaff3d6eec72ff0e, 0x070e6000083dd6ad, 0xff0e4d060d0e5201, 0xf65701ff3b01622e, 0x0d9aff0e5b0012ba, 0x04bc1381a8ff3b6e, 0xff0e6d060d0e72bd, 0xfd66c8ff3af1081b, 0x57fbff0e7bc104bb, 0x0e3ae86a6bff3c1a, 0x0b0eccb9040f102a, 0x0b0e9e280e0eac05, 0xbc248a7bff0e9903, 0xa7b2043d0782ccff, 0x38ffbd019c1eff0e, 0x0e0ebe0107bdaf4c, 0xbd2436d3ff0eb928, 0xc7000cbda31c42ff, 0x7dffbd831096ff0e, 0x040ef0010cbdf24c, 0xff0edd0c0b0ee2ba, 0x7e66f7ffbc06aa8a, 0xf1d0ff0eeb6d05bd, 0x07bc05118aff3c3b, 0xff0efd0b0b0f0201, 0x863210ff3d0a92d7, 0x6a15ff0f0b00023d, 0x083d031d41ffbc24, 0x020f38050b0f5800, 0xff0f2574040f2a00, 0xa72a94ff3c45ca4d, 0x7975ff0f33000cbb, 0x013d2e3495ff3c8e, 0xff0f453b050f4a2d, 0xe24c40ff3caaba88, 0x92d3ff0f53000cba, 0x02bd3f7bbaffbca4, 0x040f6e2d0e0f7c00, 0x3be53cedff0f69b7, 0x77010c3cfbbd94ff, 0xecffbc4055a0ff0f, 0x040f8e010cbd11d8, 0x3ccb8fc0ff0f89b9, 0x97b9043c256d6eff, 0x8dff3da9a3e3ff0f, 0x0210aa010c3cb520, 0x040fec2a0e103000, 0x050fbe0b0b0fcccb, 0x3c313027ff0fb938, 0xc70006bc7dbd9cff, 0x40ff3d9b758cff0f, 0x0c0fde000fbafd46, 0xbc687c9aff0fd900, 0xe701073c46574bff, 0xb4ffbc91c8dbff0f, 0x0410101605bd4eee, 0xff0ffd1d031002cb, 0x2424d4ffbc974f50, 0xdd3eff100b13053d, 0x07bd728bc0ffbc17, 0xff101d000c102201, 0x6d0f8cff3baf37e4, 0x14d5ff102bcb04bb, 0x053c17f877ffbc12, 0x071046070610660c, 0xbdeae938ff104102, 0x582a0ebddd3234ff, 0xce26ff10530d0610, 0x083cc712f0ffbe0c, 0xbc871f5aff106102, 0x8a00123d65b5e4ff, 0x777905107c310e10, 0xcfff3b9c47a1ff10, 0xff1085090b3c8fe1, 0x742350ff3bce40c2, 0x970006109ccc04bc, 0xd1ff3aaa3524ff10, 0xff10a5cd04bc0985, 0x4a0b6cffbc6dd62d, 0xf6060d113a02073b, 0xc80b0b10d60c0b10, 0x9c59ff10c3000610, 0x073c7036ecffbba6, 0xbcdeb8dbff10d101, 0xe8340ebd9322a3ff, 0xa35eff10e30c0510, 0x023c150991ff3d91, 0xbb58803eff10f100, 0x1a0011bd8312a3ff, 0x07340e110c6f0511, 0x50ff3b11a302ff11, 0xff11152b0ebd2ba6, 0x533cb1ffbcd02660, 0x27030b112c0b0bbb, 0x40ffbc40a473ff11, 0xff11355105bd2f85, 0x2f8f9effbb5797d5, 0x62050611820b0bbe, 0x4f320e1154090b11, 0x8cffbc2b62e7ff11, 0xff115d350e3d001c, 0x8f1a33ff3ca0b1d9, 0x6f0c0511740002bc, 0x72ffbdae77b3ff11, 0xff117dcb04bd3d77, 0xba515cff3d796ea8, 0x98740511a68305bc, 0xd4cbff11934a0511, 0x08bc243d01ff3bb8, 0x3d4fb6feff11a100, 0xb88605bc5506cbff, 0xea64ff11b3000811, 0x02bd52fac0ffbde7, 0xbc453ac0ff11c100, 0x0000133d323690ff, 0x0003e80000000800, 0x000ff20000000100, 0xd300070000000000, 0x48c70404848c0508, 0xa0be04012cc10402, 0x3c8b05005caa0400, 0x297005002e810500, 0x81ffb627f60eff00, 0xff0037a80439e802, 0x089013ffba238a98, 0x49a404004e120e3c, 0x9fff3a168b3cff00, 0xff0057020dbc82f0, 0x923975ff3abe61b4, 0x728a050080060dbc, 0xb7f4ff006dbc0400, 0x0b3b4d4f3dffb90e, 0x3bd029ccff007b0b, 0x92ab04baa1705dff, 0xa511ff008d190e00, 0x113d7eb0ebffbc33, 0x3a46316bff009b00, 0xe80108bbf3e436ff, 0xba010b00c8000f00, 0x87f0ff00b5000c00, 0x0bbccec3eeff3d18, 0xbd5379bfff00c302, 0xda7f05bc30370fff, 0xf8c6ff00d5070d00, 0x05bd8cd1dcffbace, 0x3ca273d2ff00e381, 0x0c210e3a9d64f9ff, 0xf9800500fe100601, 0x9eff3c9dd676ff00, 0xff010700023b4642, 0x9aa60effbc712166, 0x190111011e220e3a, 0xf3ffbd4419ecff01, 0xff01272c0e3cd2d1, 0xc3cc15ff3baaf989, 0x78770501bc7905bb, 0x4a001201580b0b01, 0x7724ff0145710501, 0x0dbc4085e9ff3b90, 0xb7aea0ffff015306, 0x6a060d3b91e98dff, 0x00ccff0165010801, 0x0ebafb0791ff3b38, 0x3cbf7e4eff01731f, 0x9c340ebb938ea5ff, 0x89130e018e0c0601, 0x34ffbc9e262fff01, 0xff01970008baa93f, 0xe814abff3c80d2cc, 0xa9030b01ae040d3a, 0x65ff3c36aaeaff01, 0xff01b70006bc2135, 0x44cf84ff3d264afb, 0xe4c30402040002bd, 0xd10d0b01d6100b01, 0x96ffbad1a2cfff01, 0xff01dfc2043c87bf, 0x8582e4ffbbe4a348, 0xf1000f01f6300e3b, 0x3dff3c4e03a7ff01, 0xff01ff0012ba1eb1, 0xe87262ff3d5c7a84, 0x1ac4040228000cb9, 0x0f91ff02157b0502, 0x04b9d2ad9cff3cb7, 0xbc3a4a7fff0223c5, 0x3ac504babd0ba0ff, 0x00f6ff02351d0e02, 0x053c0eca34ffbb5c, 0x3bbd5d95ff024384, 0x681c0ebbeac8ccff, 0x980a0e02dc000203, 0x6a38050278020d02, 0x1543ff0265190602, 0x04bc52d16dffbcad, 0x3d2f1328ff0273c9, 0x8a5205bbf02c5bff, 0xc534ff0285020e02, 0x0f3c0156f7ffbb82, 0xbcbd0d05ff029300, 0xbc7e05bade5476ff, 0xa9ca0402ae7c0502, 0x74ffba9fdd23ff02, 0xff02b700113bba8e, 0x4632d0ff3d7f6060, 0xc9001102ce8405bc, 0x9dffbcbbdadaff02, 0xff02d7070bbb75b1, 0x78e606ff3cb99fd4, 0x04060d032402083a, 0xf1110602f6500503, 0x7cffbd806f88ff02, 0xff02ff0209ba29e0, 0x097c6aff3b605ef9, 0x11ca0403160e0ebb, 0x0affb8bce36eff03, 0xff031f00093cd098, 0x2dec4fffbbff65a7, 0x3a030b0348170e3a, 0x55dbff0335000c03, 0x0b3c840abeffbb67, 0xbb0becc6ff03430c, 0x5a00123b8afa6dff, 0xd0d0ff0355ca0403, 0x0bbbc15a30ffbc4d, 0xbba6d6adff036311, 0xf88a053c940620ff, 0x94300e03b40d0b03, 0x81060d0386240e03, 0x72ffbb8fa7cdff03, 0xff038f2b0e3b8c19, 0x7e5807ffbad17541, 0xa1310e03a60b0b3b, 0x81ffbb0e1ab2ff03, 0xff03af010c3ae603, 0x2d0bfdff3bc0fbc1, 0xcac90403d8cb043d, 0x4b6cff03c5c80403, 0x05bbfc2e10ff3984, 0x3a6df61cff03d382, 0xea00113c26a13bff, 0x98e0ff03e5010803, 0x0eba7d676cffbc15, 0x3c93056bff03f323, 0x400108baabe6b1ff, 0x12000c0420000204, 0xf342ff040d0b0b04, 0x043c299b13ffbbce, 0x3bf03536ff041bc8, 0x322b0ebb97f1d6ff, 0x1b2fff042d000904, 0x0bbb27e282ff3d32, 0x3b093798ff043b0b, 0x648b05bc25a5e1ff, 0x512d0e04562f0e04, 0x94ffbc2e64e8ff04, 0xff045f310ebde3c8, 0x405afbff3d5e931f, 0x71220e0476230e3b, 0x89ffbc2274d6ff04, 0xff047f000c3c016a, 0x0d7a40ff3a079582, 0xa8110b06bb8d05bc, 0xd80e0b051c0e0e05, 0xaa020804b8040e04, 0xb919ff04a5bc0404, 0x0cbbc4ba8dff3900, 0xb954125aff04b300, 0xca0002bc27b016ff, 0x0c36ff04c5bc0404, 0x0e3bbbe09affba1a, 0x3ad2528dff04d30a, 0xfc0012bad350c3ff, 0xe96f0404ee000204, 0x20ffbb6b5e84ff04, 0xff04f7a2043bda7a, 0x4bf008ffbcc5831a, 0x098904050e0002bc, 0xddff3b95a942ff05, 0xff0517060dbbb05a, 0x48c8a5ffbb4a150c, 0x44140e0564bb043c, 0x3100020536100e05, 0xc8ff3c6f87f0ff05, 0xff053f000cbc5367, 0x0008d2ffbba3180a, 0x51060d05560109bd, 0x8bffba2af363ff05, 0xff055f000c3b8f37, 0xefb3f5ff3c1c6ad4, 0x7a0e0b058801083c, 0x889aff05751d0e05, 0x0eba499477ff3a2e, 0x3c3bc030ff058319, 0x9a0b0b3d62d4a8ff, 0xd3f5ff0595010c05, 0x083bfc24edff3a3b, 0xbc8ab9e0ff05a302, 0x3800083d282ad8ff, 0xd4000c05f4bc0406, 0xc1a30405c6a40405, 0xe8ffb6c5a9a7ff05, 0xff05cfb2043ccc7d, 0xd31bb5ffbc5cb8bc, 0xe1080e05e6b204b9, 0x29ff3b6ef00dff05, 0xff05ef01093d5777, 0xe67debffbb82c91e, 0x0a001206180d0e3b, 0x4df8ff0605010c06, 0x0cbc46330eff3b7c, 0xba6057a9ff061300, 0x2a140e3c730d7fff, 0xbdd4ff0625000906, 0x0e3b095ad7ffbce0, 0x3c3d25f3ff063317, 0x80000cb924a81dff, 0x52030e0660b20406, 0xa77dff064d011206, 0x04bc6cdeb8ff3af7, 0x3cf23f1bff065ba5, 0x720d0e3c368505ff, 0x28d6ff066d070e06, 0x04bbbed549ff3b27, 0x3be88efaff067bc5, 0x9bb204baa13c41ff, 0x9197040696050e06, 0x63ffbc983c7cff06, 0xbd2397c2ffbb4997, 0x06a8010806adb304, 0x5bd8ff3c91c6b9ff, 0xbbff06b60111bbe7, 0x3c113be3ffbb6bf0, 0x0734020d07c09305, 0x06eb0002070b0208, 0x06d8870406dd9005, 0x6e6bffbb77a1f6ff, 0x84ff06e6c9043b6e, 0xbc9199ceffba558e, 0x06f8920506fd020b, 0xb63cff3bb46de2ff, 0xcfff07069105bc07, 0x3a72bb27ffbad500, 0xa59614ff0714000c, 0x2191050726070ebb, 0x80ff3bd6adc0ff07, 0xff072f9105bba42e, 0x1ce155ffba74c161, 0x5c0208077c050b3b, 0x490112074ec00407, 0x51ff37299d57ff07, 0xff0757030e3937e8, 0x03c2c8ff3bbdb2e6, 0x69000c076e020bb9, 0xa1ffbc32c159ff07, 0xff07778e053b564e, 0x547bbfff3c45cb15, 0x92190e07a00b0b39, 0x0e09ff078d000907, 0x1236995911ff3908, 0xb9718a08ff079b00, 0xb2c904b93bc118ff, 0x39ddff07adc30407, 0x04b9a57d50ffb82f, 0xba1ad09aff07bbcb, 0x47020d39fbea8aff, 0xec9a04080c000808, 0xd9000c07de960507, 0xf5ff3b21664fff07, 0xff07e77f04bb87cf, 0x1b03ceff3b69853a, 0xf99c0407fe2a0ebc, 0x2dff3cbf6878ff07, 0xff08072b0e39f662, 0xadd1faffbc57af68, 0x22050b0830a7043a, 0x24d7ff081d010808, 0x05bbd10ee0ff3a9f, 0x3c5ae800ff082b94, 0x39ac043cc2acc8ff, 0x170ebd7ed7e0ff08, 0xff3a89349aff0842, 0x088f0e0bba62950f, 0x08619605086f010b, 0x6d140bff085c050e, 0x0112ba9a1a24ff3b, 0xffbae2ea1bff086a, 0x08810012bc57cb5a, 0x96cac1ff087c080e, 0x170e3af077daffba, 0xffb85b0dbfff088a, 0x08b39405b87f5869, 0x08a0060d08a5230e, 0x4a5dff3a95833bff, 0x41ff08aecb04b9a1, 0xbba83fbbffbd0b22, 0x08c0010e08c5b204, 0xbfd4ffba8b1b70ff, 0xe4ff08ce260ebc2e, 0x3b259ba7ff38cd91, 0x0b17c6040d539505, 0x096f930409fb9804, 0x090b0211092b8005, 0x08f8850408fd2b0e, 0x9c86ffb896fc33ff, 0x24ff090690043a61, 0x3a8e8d7affba5e6c, 0x09181206091d0108, 0x5cadff3b35d3f6ff, 0x15ff09260107bbec, 0xbc7b0e62ff3ad155, 0x09418205094f0002, 0x6d2b85ff093c1d0e, 0x1d0ebdc0a58affbb, 0xff3a8d398cff094a, 0x0961070ebd32ed83, 0x4dd0feff095c000e, 0x5e043b45e9edffba, 0xffbd399260ff096a, 0x09b70a0bbafc5218, 0x0989070b0997000c, 0xa897a9ff0984000f, 0x00023b09e550ff3b, 0xffbc8d84b5ff0992, 0x09a9070b3ba3cd37, 0xdc646cff09a49604, 0x070d3ab06e52ffbb, 0xffbcaa951cff09b2, 0x09db020d3db017eb, 0x09c8010d09cd9504, 0x9a0effbc827b3aff, 0xaeff09d6090e3beb, 0xbba29525ffbcbf44, 0x09e8960409ed0b0b, 0x68b7ff3bfd14ffff, 0x19ff09f61d0eba40, 0x3c0b1aa3ffbb9526, 0x0a47b2040a8b0208, 0x0a191d030a27a704, 0xb7ef11ff0a141603, 0x250e3be42607ffbb, 0xffba029a1aff0a22, 0x0a39010839d22e29, 0xf04225ff0a340002, 0xab043ae697c9ff3a, 0xff3aeeb077ff0a42, 0x0a6b2c03bb1e15af, 0x0a5828050a5d0906, 0x5964ff3bd09c3bff, 0xd3ff0a66330ebc4d, 0xbcaf289bffbd6289, 0x0a78040d0a7d5305, 0xc5dbffbb464ca3ff, 0xc2ff0a861f0e3a87, 0x3a21ca48ff388ceb, 0x0ab39a040ad3000c, 0x0aa001110aa50b0b, 0x32c4ffbb35b03bff, 0x1fff0aae23033c61, 0xbc648481ffbd55a9, 0x0ac0070e0ac5aa04, 0x6a9dffbb040054ff, 0xfbff0ace190e3bc0, 0x3ad2c4f2ffbb09d8, 0x0ae9050d0af7000f, 0x1afd02ff0ae49a04, 0x080b3af95f60ffbc, 0xffbd112466ff0af2, 0x0b09bd04b81d0d88, 0x61d65bff0b04a604, 0x2a0ebb78a9f6ffba, 0xffbb178d07ff0b12, 0x0c3701083bd68625, 0x0b67010c0bab190e, 0x0b39000d0b47170e, 0xd821eeff0b340008, 0x0d0e3b8ee855ffbb, 0xffba5a998eff0b42, 0x0b5983053b2292de, 0xd276a3ff0b548205, 0xcb043cbadeafff39, 0xffbb8ba42aff0b62, 0x0b8b140e3b8e2464, 0x0b780c0b0b7d0008, 0xa069ffba3d7ba2ff, 0xc3ff0b860b0b3be4, 0xbc7f7442ffb9f6ca, 0x0b9811050b9dcc04, 0x5cd6ffbd5e976eff, 0xb8ff0ba600023b95, 0xbcb01fbaffba43bb, 0x0bd364050bf3060d, 0x0bc01e050bc51e0e, 0x4333ffbd6bcd82ff, 0x5eff0bce0c053bb9, 0xb9c723e4ff3c2c23, 0x0be0260e0be56b05, 0x28cdffbd144138ff, 0x7dff0bee02073c5b, 0xb98e2feaff3a22c7, 0x0c0936050c170012, 0xf8d1ecff0c042905, 0xc704be292b1effbd, 0xff3baf84ebff0c12, 0x0c29c904b98559bb, 0x489775ff0c24c704, 0x0b0b3d860af4ff3c, 0xffbc86e839ff0c32, 0x0cc77505bd822bad, 0x0c6307050c83060d, 0x0c5036010c553b01, 0xf600ff3cf6eed0ff, 0x40ff0c5e300e3c4e, 0xbcc753ecffba8e65, 0x0c7060050c756505, 0x269fff3a2a7bacff, 0xe6ff0c7e190ebb8b, 0x39bf5af3ffbc3df3, 0x0c9944050ca7c904, 0xf38672ff0c94010c, 0x7405bb8631e5ff3c, 0xff39b67b30ff0ca2, 0x0cb92a0ebc56d7e0, 0x6fa388ff0cb45e05, 0x300e398da64fffbc, 0xff3ba68122ff0cc2, 0x0d0f310ebba003f8, 0x0ce102080cef140b, 0xe88e86ff0cdcc804, 0x300e3936c1c2ff3a, 0xffbadf8524ff0cea, 0x0d01c9043c42bf75, 0x708a5aff0cfc0002, 0x01073a9df736ffbc, 0xff3b5f7c91ff0d0a, 0x0d337905ba44d4a8, 0x0d20000f0d25320e, 0x6bd6ffbc6a3300ff, 0xa7ff0d2e340e3dbe, 0xbbf520aaff3c0e7c, 0x0d40130b0d457a05, 0x37fbff3b266d58ff, 0x02ff0d4ecc04bd88, 0x3b8b6ae3ffbc3275, 0x0db17f040ea91f0e, 0x0d7a030b0da30107, 0x004dc0ff0d6c9605, 0x2fd0ff0d750002ba, 0x0d3b356be0ff3b4b, 0x0b0d90070b0d9e00, 0x3add5f40ff0d8b04, 0x9900023a4e936bff, 0x30ff3b0361c0ff0d, 0x3b1fe2f5ff3ba4db, 0x6d38b0ff0dac0002, 0x000c3b7fcd50ff3b, 0x110e0de2b6040e26, 0x050b0dcf0a0b0ddd, 0xff393d44f2ff0dca, 0x0dd8030ebbb6f1d6, 0x9f0cff3a8f5a5bff, 0x04bc176910ffbc2f, 0x0b0df8170e0e06cb, 0x3b88d3c0ff0df300, 0x01030bb9f4bc6dff, 0xcbffba216649ff0e, 0x0e0e1800113c1d42, 0x3afd6922ff0e130b, 0x21080e36f684a9ff, 0x83ffbbb6292fff0e, 0x0b0e65000eb93446, 0x0b0e40050b0e4507, 0xbb70e1daff0e3b03, 0x9b04ffba703c3bff, 0xb3040e570c0bbc59, 0xffbb8366d8ff0e52, 0x0e600d0b3a9fe78a, 0xcae4ffbab2d3a0ff, 0x030b0e89060dbb3a, 0x10ff0e7601120e7b, 0x3a8f349dffbbf1be, 0xbadf82ff0e840002, 0x090bbab13f93ff3a, 0xe0ff0e96bc040e9b, 0xbad82b3cff3bad05, 0x895ce5ff0ea40012, 0x00023c4047c5ff3a, 0x000c0f192b0e0f4b, 0x0b0b0ed901070ef0, 0xd0ff0ec600120ecb, 0x3881699aff3b5d87, 0xd50460ff0ed40012, 0x230eba4ecd00ffbb, 0x04bc027440ff0ee2, 0xbb598500ff0eebc7, 0xf900113a50db00ff, 0x010bbb63be80ff0e, 0x00ff0f06c9040f0b, 0xb9627000ff39aa00, 0xabbf00ff0f140112, 0xc004bb1b29abffb9, 0x030b0f2f01070f34, 0xffbaa9a680ff0f2a, 0x806980ffbab2c500, 0x4196050f460107ba, 0x00ffbb8fde00ff0f, 0xbaea4000ffbb6a26, 0x0f9796050fb70107, 0x0f69000c0f772b0e, 0xa003bdff0f64230e, 0x050bbb6b1bd4ff3a, 0xffb8f2e600ff0f72, 0x0f89000c3c2195b0, 0xcc2480ff0f84000d, 0x030b3bdda16bffba, 0xff3b04a300ff0f92, 0x0fa0c004bb899580, 0xb2030bbb08e7c0ff, 0x1580ff0fad000d0f, 0xff3a42a455ff3b69, 0x0fed050b3bd55340, 0x0fd1000f0fdf280e, 0x735b00ff0fcc000d, 0x030b3c260dc0ff3b, 0xffba08bc80ff0fda, 0x0fe8000dbaf5a660, 0xd600ffbb8405d0ff, 0x133c507de0ffba24, 0xe800000008000000, 0x8b00000001000003, 0x0700000000000010, 0x04047b8c0508ee00, 0x05012cc1040248c7, 0x01005ca60400a06a, 0x04002e4605003c3d, 0xb6b7b016ff00297a, 0x373a013a512e02ff, 0x3dffb9f7b2cdff00, 0x04004ea404ba2224, 0x39d472fdff004975, 0x576905b90321ccff, 0x07ffbbc70c0bff00, 0x0500805b053d1604, 0xff006d5305007258, 0x8c3bffff39457e93, 0x3112ff007b011239, 0x0e3c210dafffbc0f, 0xff008d0109009222, 0x8924ddffb89229f3, 0x05d3ff009b060dbc, 0x04bad512e3ff3b53, 0x0b00c8790500e8c0, 0xff00b52b0e00ba01, 0x15e05bffbb08767d, 0x3552ff00c3bc043c, 0x0e3a289da7ff376a, 0xff00d5bf0400da33, 0xcfc01eff37c952ac, 0x2711ff00e3bf0438, 0x113d02bee9ffbb31, 0x0900fe080e010c00, 0x3d96ab5fff00f901, 0x070d0e3bfe252fff, 0x75ffbcdcd89aff01, 0x08011e0002396c55, 0x3b039fd2ff011900, 0x270008bc21c9c9ff, 0x04ffbb24567aff01, 0x0f01bc75053c1444, 0x0201580008017800, 0xff01452905014a00, 0x61cf8eff3c8e7441, 0x4037ff01531105ba, 0x02bbf70300ff3c43, 0xff01650006016a00, 0xb117caff3b57697f, 0x7e72ff01735505bc, 0x053b952b90ffbb68, 0x0b018e6e05019c73, 0x385837bcff018910, 0x976f05ba0093bfff, 0xe1ff3c834f87ff01, 0x0401ae0111bb32bb, 0xbb1689d2ff01a9c5, 0xb7c4043c69570cff, 0x80ffbafc2360ff01, 0x0e02048105bca7ce, 0x0501d6060d01e422, 0x3dc5104bff01d176, 0xdf1f0e3b9d9746ff, 0x2bff3a807993ff01, 0x0801f6260ebccb81, 0xbbdd8702ff01f101, 0xff0b0b3c2e9955ff, 0x75ffbb0989acff01, 0x05022889053b1471, 0xff02150b0b021a83, 0xfbd94dffbb9b30bf, 0xd774ff022300083a, 0x043a0cdcbeffb9a0, 0xff02358b05023ac5, 0xfaf8c3ff3afafac8, 0xfba8ff0243220eba, 0x053bb0e257ffbbc3, 0x0e02dc0a06035f88, 0x0502788105029828, 0xff02650009026a6a, 0x3434f0ffbc9abe81, 0xfc93ff027371053c, 0x0dba09ff43ff3cac, 0xff02858205028a06, 0xaa6cf8ffbd4194d2, 0x3ec1ff0293cd043b, 0x053c5aded1ffbb31, 0x0502aecb0402bc67, 0x3b95e760ff02a963, 0xb7020dbc8ef2a3ff, 0x84ff3bf7ee00ff02, 0x0c02ce010cbbdda5, 0x3b3f8d1fff02c900, 0xd70108bb5db838ff, 0x77ffbac97917ff02, 0x05032460053bf43b, 0x0402f6000c03042b, 0x3a702f83ff02f1ca, 0xff0f0ebbcdafd9ff, 0xdcff3919d7f4ff02, 0x0d03162f053bc17d, 0xbcc17ef7ff031102, 0x1f5505bd94c2ddff, 0x6bffba09d193ff03, 0x0e0348cb043c0d32, 0xff0335010e033a05, 0xa21de7ff3bfdb771, 0xaf79ff03436e05bb, 0x063ad79b49ffbc8a, 0xbd46fd50ff03510b, 0x00033aff035a030e, 0x01113bb6ab29ffbc, 0x280e03ab010c03ef, 0x070d037dcb04038b, 0xffba3259bbff0378, 0x0386260ebc67e970, 0x0ff4ff3b6ab5acff, 0x0008039d000c3d74, 0xff3c0c544aff0398, 0x03a6310ebab27cdb, 0x0b44ffbbd9c3e9ff, 0x030b03cfc80437c5, 0x61ff03bc000803c1, 0x3d547262ffbc291e, 0x8e34dfff03ca0b0b, 0x8905bb3fee9cff3c, 0x9aff03dc000903e1, 0x3c03cd52ffbc4126, 0x988093ff03ea060d, 0xcb04bb667b35ff3b, 0x00090417310e0437, 0xa0ff04048a050409, 0x3bde7a35ffbc6329, 0x4b301aff04120209, 0x020dbb83d6e4ff3c, 0x80ff042400020429, 0xbbf10ed4ff3cb952, 0xb8e7ebff0432320e, 0x2b0e3cd1f525ff3d, 0x010c044d030b045b, 0xffbacb7695ff0448, 0x045602083c92b62e, 0xd540ffbce7aa4aff, 0x0208046dcd043b48, 0xff3bd7114dff0468, 0x04760208bb541c40, 0xfcf0ffbbe61370ff, 0x110b06b28d05bb47, 0xc30405130d0e059f, 0x0b0e04af010c04cf, 0x1dff049c0a0e04a1, 0xbcb0c38dff36c777, 0x649465ff04aa0012, 0x0b0eba6c5bfaff3c, 0xc3ff04bc080e04c1, 0xbd3c241effb9f2ba, 0xc43a32ff04ca0108, 0xc4043d9670f1ff3b, 0x001104e5000804f3, 0xff3d60f55bff04e0, 0x04ee0108bbc4ef41, 0xf31cffbda7bb00ff, 0x02090505c904bbb4, 0xff3c4a3f44ff0500, 0x050e010cbafca0e5, 0x71e2ff3bcceec0ff, 0x0011055b0108bc8f, 0x000c052dc604053b, 0xff3ac05f8eff0528, 0x05360002bbf0329a, 0x4e1fff3cb5f75cff, 0xc604054d020dbb1c, 0xff3aeb79d4ff0548, 0x0556010cbca37dab, 0xd844ff3928b8eaff, 0x0e0e057f0012ba3d, 0x2fff056cc5040571, 0xbd3e7cd4ffbc52f1, 0xe4cd71ff057ac904, 0xc904bc4708cdff3b, 0xe3ff058c000c0591, 0xbb4a6c76ff3b816a, 0xbedc1bff059a000c, 0xc8043c23d12cffba, 0x000205eb010c062f, 0xc60405bd070d05cb, 0xff395bbc23ff05b8, 0x05c60008bc0de7a6, 0x33a0ff3d01c32cff, 0x0e0e05dd140e3c4c, 0xff37b40b93ff05d8, 0x05e6060d3c5d6d39, 0x7506ffbb97cf78ff, 0x030e060fb2043bda, 0x10ff05fc010e0601, 0xbbe3e325ff3bcd83, 0x09e66bff060a050e, 0xb304bcdb09c1ff3b, 0x86ff061c010e0621, 0x3c441014ffbc0472, 0xd9b65aff062a0002, 0x000c3be8396bffba, 0x230e065700080677, 0xe4ff064400120649, 0x3c3fc6eaffba89d1, 0x663d58ff06520002, 0x250ebc0008a8ff3b, 0x40ff0664220e0669, 0xbc59cc7dff3ae3ce, 0x28fd4eff0672cc04, 0x280ebbccaf4cff3c, 0xc904068d190e069b, 0xff3af2133bff0688, 0x06960112bb87075e, 0x9172ff3bbfa859ff, 0x2d0e06ad0112bc4f, 0xffbc689fa9ff06a8, 0x3cc5b0ff3b39ad9b, 0x46000f07d293053c, 0xe2010807028e0507, 0xcf000c06d4000206, 0xc7ff3c93dd09ff06, 0xff06dd030b3a3061, 0x3987f4ffbc399276, 0xef020806f4070bba, 0x20ff3d1f26c1ff06, 0xff06fd090b3c3fa9, 0xba045bff3af88fdb, 0x18bb040726bc04bc, 0x219cff07131f0e07, 0x0b39ab0453ffb8fb, 0xbccc1432ff072103, 0x38000c3bae6d5eff, 0x73e9ff0733020d07, 0x043d92f988ff3bc7, 0x3d3d938bff0741bd, 0x8e000cba69f9e9ff, 0x600a0e076e280e07, 0xa3bdff075b010807, 0x0ebac5b92bff380d, 0xbc4fd5a4ff07690b, 0x808f05b9a950eaff, 0x84c8ff077b8e0507, 0x0bbbeb0553ff3b8c, 0xba524a3cff07890b, 0xb21d0e3bd3dbc1ff, 0x9f130b07a48e0507, 0x47ffbadced0bff07, 0xff07ad01123bb75b, 0xbe641bff39cd726e, 0xbf910507c4200e39, 0x03ff3c91ce9eff07, 0xff07cd220ebba959, 0x97b77effbc12ace8, 0x1e00080862020d3a, 0xf0000907fe050b08, 0x2ea7ff07eb030e07, 0x0e3af2eb87ffbb99, 0xbb52b87fff07f923, 0x10c6043c04402cff, 0xfa72ff080bc00408, 0x04bbe6dc65ff3a2a, 0x3be111eaff0819c9, 0x420002bb1763f7ff, 0x2fc7040834050b08, 0x05ff3acca8efff08, 0xff083d070bbc59bc, 0x97f866ff3c995d7a, 0x4f1d0e0854c8043a, 0xc0ffba009c9bff08, 0xff085d230ebc45e5, 0x817ef2ff3b772af4, 0x8a010b08aa0e0bbb, 0x77190e087c1c0e08, 0x53ffb99fc3ceff08, 0xff08850009bdd8e3, 0xd61ac5ff3b2da2d6, 0x979405089c00123c, 0xd9ff3ad50da2ff08, 0xff08a5170eb9d43c, 0x65cf6dffb8452603, 0xc0010c08ce9405b8, 0xf4fcff08bbaf0408, 0x023a021fbeffbb94, 0x3c2649aeff08c900, 0xe01d0ebc68d713ff, 0xa5adff08db100b08, 0x0538c7c16dff3bd3, 0x3a8fb52eff08e995, 0x659505bbf1c1caff, 0x1698040b32c6040d, 0x468005098a93040a, 0x182b0e0926021109, 0xe341ff0913850409, 0x043a4b0d1fffb887, 0xba482e30ff092190, 0x380b053a804becff, 0xf065ff09333b0409, 0x123c9606daffb975, 0xbc133b56ff094102, 0x6a1d0e3bbf83beff, 0x577f04095c010809, 0xccffb9f4d28fff09, 0xff0965000c3ac472, 0x7d52eeffbac05867, 0x77010b097c8605bc, 0x68ffbd04a444ff09, 0xff0985010bbdc526, 0x104bc0ffbb802f20, 0xb2480509d24e05bd, 0x9f380109a4390109, 0x24ff3b020149ff09, 0xff09ad45053d5547, 0xc13bb8ffba86da24, 0xbf190e09c49604bc, 0xf7ff3cdaecc5ff09, 0xff09cd49053bb799, 0x2f9821ff3d3b6b61, 0xe8960409f656053a, 0x8f58ff09e3170e09, 0x0ebb945c3cffbcfb, 0x3c069c2cff09f10d, 0x08050ebbd47d11ff, 0x08b0ff0a0301110a, 0x05bd02beedffbab2, 0x3cbb6bfbff0a1158, 0xa6070d3ac1ac00ff, 0x4242050a62130b0a, 0x2f02070a34000c0a, 0x85ff3a8ac39fff0a, 0xff0a3d0011bb800f, 0xe947dfffbc228d84, 0x4f310e0a54030b39, 0x63ff3a0b6e1bff0a, 0xff0a5d0112b9b6ed, 0xf27d73ff393f36d3, 0x7872050a86be04ba, 0x5071ff0a73a7040a, 0x053a68d62cffba5c, 0xbb47721fff0a8176, 0x98c104b988300cff, 0xe2a1ff0a9301120a, 0x0dbb783dc6ff3b71, 0xbb2cf09fff0aa106, 0xeea1043af841f7ff, 0xc0190e0ace9e040a, 0x567bff0abb00020a, 0x0537bf02feff3caf, 0xbd4ca1b7ff0ac931, 0xe00008bc014e5dff, 0x146cff0adb3f050a, 0x0bbd029f01ffbe0f, 0xbbadf35fff0ae90e, 0x123401bcdfe99bff, 0xff16050b042d010b, 0x5aff3db06f4fff0a, 0xff0b0da7043c5e43, 0xfe6c0affbdfda05a, 0x1f230e0b246805bc, 0x13ff3be16f8dff0b, 0xff0b2d080ebc2c45, 0x825344ff3bd5a12b, 0xbd1f0e0c490108bb, 0x5910050b79cc040b, 0x4f030e0b54130e0b, 0x52ff3c228decff0b, 0xbd8aa70dffbc737e, 0x0b661d0e0b6b060d, 0x3627ffb7b37321ff, 0x2aff0b748605bc83, 0xb9e4a9f5ff3b9822, 0x0b8f01070b9d000c, 0xbdfbc1ff0b8a1e0e, 0x0e0bbcc886e9ffba, 0xff3adeb716ff0b98, 0x0baf8a053bbae6ad, 0x60f3ecff0baa8705, 0x0d0ebca64608ffbb, 0xff3b819668ff0bb8, 0x0c057805bad3f2bb, 0x0bd700080be56c05, 0x9c0819ff0bd26a05, 0x010c3c26e4fcffba, 0xff3b6343a3ff0be0, 0x0bf76e05bb2a5c77, 0x157dd5ff0bf20112, 0x6f053ccbf657ffbc, 0xff3c91f797ff0c00, 0x0c297905b9dbcf40, 0x0c1600020c1b280e, 0xce66ffbc8a92c4ff, 0x21ff0c2401123cbd, 0x3c0346f6ffbc133e, 0x0c367a050c3b0107, 0xaedbff3ca1cb60ff, 0x3eff0c44810539c3, 0xb94b73caff3a5ce3, 0x0c95060d0cd97505, 0x0c673b010c750705, 0xde3d50ff0c620206, 0x02073c3a43d0ff3c, 0xff3b9a87c8ff0c70, 0x0c876405bc32e4b7, 0x53ed25ff0c821d03, 0x72053903f402ffbc, 0xffba985ffcff0c90, 0x0cb9c9043afba6e3, 0x0ca6010c0cab4405, 0x8cccff3cdb2c33ff, 0x38ff0cb47305bb71, 0xbc29f2b3ff39aa11, 0x0cc644050ccb0002, 0x7e56ffbcb60d1fff, 0xccff0cd42a0e3b42, 0x3b537d43ffbbbec8, 0x0d01000f0d21010c, 0x0cee020d0cf30a0b, 0xaff8ff3abed9dfff, 0x82ff0cfcc704bc9f, 0x3c0c3473ff3d29b8, 0x0d0ecb040d137805, 0xcc92ffbb1ae23dff, 0x3cff0d1cca043c4d, 0x37a5ccb8ff3a2cba, 0x0d37c7040d45c804, 0xaae462ff0d320002, 0x0002bd4b25e8ff3c, 0xff3c3705f0ff0d40, 0x0d572b0e3d40bd94, 0x75a333ff0d520d0e, 0x0b0bbb64721aff3b, 0xff3bafca35ff0d60, 0x0f66220e3d871de2, 0x0df400110e80020d, 0x0d99020e0db9000b, 0x0d8602070d8b9605, 0x779affba284c48ff, 0x53ff0d9401073aa0, 0xbb4bfd24ffbb0fff, 0x0da696050dab000d, 0x91b6ff38387f95ff, 0x75ff0db40107b9a6, 0x3b01ff3bff3bfba1, 0x0dcf010b0ddd9604, 0xf63740ff0dca0107, 0x030b3b5393ddff3a, 0xffbc1f74fdff0dd8, 0x0def01073af84248, 0x627d60ff0dea030b, 0x1affbc49e9efffbc, 0x0e0e3cb904bbf879, 0x0b0e0e0a0b0e1c02, 0xba7708aeff0e0907, 0x1700023c15cc20ff, 0xd6ffba7d5540ff0e, 0x0c0e2e030b3c6158, 0x3b02a846ff0e2900, 0x37080ebb5cff40ff, 0x0affbc39ce25ff0e, 0x120e60bc043ba9e1, 0xff0e4d030b0e5201, 0x0e9698ffbba2017c, 0xd888ff0e5b030bbb, 0x0bba8f4a00ff3ca0, 0xff0e6d96050e7202, 0x80deabffbb6a706d, 0xc8afff0e7b170e39, 0x0fb92ac8c3ff3ae0, 0x040ecccb040efe00, 0x0b0e9e090b0eacc7, 0xb7cef782ff0e9903, 0xa799043bb229d3ff, 0x25ff3bba2e60ff0e, 0x0e0ebe170ebbc3d3, 0xbaf41ec7ff0eb90d, 0xc7010bbc1e578fff, 0x00ffbaf5f800ff0e, 0x0d0ee7030b3c6941, 0x3c53fac0ff0ed906, 0x4d3680ff0ee20207, 0x050b3c2b6680ff3b, 0x08bbaa5580ff0ef0, 0x3b7ee72bff0ef900, 0x461f0e38bcf000ff, 0x18080e0f261d0e0f, 0xb1c0ff0f13cc040f, 0x0e3a8af964ffb84c, 0xbbd37822ff0f210a, 0x38960538a6c360ff, 0xb22dff0f33000c0f, 0x0b3b74dcc0ffbb03, 0xb8d95200ff0f4103, 0x58030b3c465910ff, 0x4d55ff0f53c9040f, 0x0239e41c00ff38f2, 0x3bda0f00ff0f6100, 0x0800023af90055ff, 0x9200120fd6960510, 0x8801070f8d00080f, 0x38f0ff0f83000c0f, 0xffbb4cf840ff3c00, 0x9c2230ffbbead140, 0xa801070fb6000dbb, 0xdaabff0fa3c3040f, 0x043c3f86c0ff3ac9, 0xba672400ff0fb1c0, 0xc8230ebb43c480ff, 0x94b0ff0fc3000c0f, 0x0439990000ffbbc2, 0x3c2b12c0ff0fd1c9, 0xdf0011baa68344ff, 0x000dbbb614f0ff0f, 0x00ff0fec240e0ff1, 0xba98af80ffbbe062, 0x1b1700ff0ffacb04, 0xbc00ff1003cd043c, 0x07ba45a180ffbb52, 0x0b10390008105001, 0x0e1026cd0410340e, 0xba16c540ff102124, 0x2f260e3b8d7ab0ff, 0xc4ff3b897240ff10, 0x3c0ec570ffbb4391, 0x1046030b104b050b, 0xcb00ff3acda880ff, 0x0e3b9398a0ff3adb, 0x0d1066000f107d28, 0x3b5b0500ff106100, 0x78050b3c1572c0ff, 0x2000ff1073030b10, 0xffbadd15c0ffb9f6, 0x1086c0043c3ba480, 0x5a00ffbb6da420ff, 0x000800000013ba14, 0x0001000003e80000, 0x0000000011a20000, 0x8c0508a600070000, 0xc1040248c704047b, 0xaa0400a0be04012c, 0x8105003c8b05005c, 0xa0ff00297005002e, 0x39d2b935ffb59655, 0x13d08bff0037a804, 0x000f3bf5bc1fffba, 0x73ff0049a604004e, 0xbd340184ffb9e2da, 0xdb2a8fff0057a404, 0x060dbc360b50ffb9, 0xb40400728a050080, 0xffba8a2cfeff006d, 0x007b0b0b3adcbf7a, 0x9bfdff3bbb44afff, 0x001200920108ba91, 0xffba876a27ff008d, 0x009b0012bbc18a18, 0x8530ff3b9d7779ff, 0x000f00e80108bbdf, 0x000600ba8a0500c8, 0xff3a90c4caff00b5, 0x00c3020dbc3c7b1a, 0xe4a2ffbc446972ff, 0x000800da8705bd2b, 0xffbb6ec572ff00d5, 0x00e3bf043bb38fab, 0x3dabff3c42b60dff, 0x1e0e010c1f0e3a9c, 0xc4ff00f9000c00fe, 0x3bf8c391ffba34c1, 0x785cf7ff0107070d, 0x220ebd4cdc75ff3d, 0x45ff01190112011e, 0x3c0b62afffbd31ea, 0xa15988ff01278205, 0x7905bc7be26dff3a, 0x0b0b0178770501bc, 0x5505014a00120158, 0xff3d339dc9ff0145, 0x0153060dbb209e27, 0x125cffb6995c25ff, 0x0108016a060d3b80, 0xff3b26f04cff0165, 0x01732b0ebae7a583, 0xaf5bffbbb59811ff, 0x0002019c340e3c7c, 0xddff0189120b018e, 0xbb91809dff3b44ab, 0x55a60eff0197050b, 0x020dbbc97fc5ff3c, 0x10ff01a9030b01ae, 0xbc867093ff3cb9e2, 0x1ad92aff01b70008, 0x0002bc936e08ff3d, 0x100b01e4c3040204, 0xa8ff01d1c20401d6, 0xbbe5ab8bff3b88c4, 0xc16d26ff01df7a05, 0x250ebae3c0c3ff3c, 0x63ff01f1230e01f6, 0x3d2e66eaff3a2f9f, 0x3dffeeff01ff060d, 0x000c3bc365e4ffbb, 0x070d021a190e0228, 0xff3a588ce9ff0215, 0x0223290e3c6f158d, 0x59adffbbcf3237ff, 0xc404023ac5043aaf, 0xffba600c23ff0235, 0x024384053c4c87e3, 0x6a2aff3baa7177ff, 0x0a0603688805bbd3, 0x80050298280e02dc, 0x6505026a6a050278, 0xff3b421b4bff0265, 0x02730108bd0509b3, 0x88bdffbbf2f4ebff, 0x8705028a01083b11, 0xffbbc39d10ff0285, 0x0293000c3c81e76a, 0x9a8effbbee5a1bff, 0x620502bc68053bad, 0x50ff02a90d0b02ae, 0xbb9e1014ff3b26bf, 0x2e06acff02b76305, 0x8105bb763226ff3d, 0x1bff02c97d0502ce, 0x3aabbd95ffba98b6, 0x077bd7ff02d7010c, 0x050d3b4cb73dffba, 0x030b0304030d0324, 0x56ff02f1cb0402f6, 0x3bd186adffbbda13, 0xce8c6fff02ff0b06, 0x030b3b8738a8ff3c, 0x38ff0311040d0316, 0xbc36fb09ff3c8599, 0xb82c5dff031f190e, 0x000fbce85f5cffbb, 0x5205033ac9040348, 0xffbc8b7125ff0335, 0x0343230e3c588e7b, 0x876aff3bba323eff, 0x2405035a10063d0a, 0xff3bb2d3d4ff0355, 0x03631105bbb29109, 0xaafcffbb362588ff, 0x000203f801123a8d, 0xc8040394cc0403b4, 0xf5ff0381010c0386, 0x3c4e6880ff3ade3d, 0x414018ff038f000c, 0x0b0bbbc14889ff3b, 0xabff03a1000803a6, 0x3b2749f3ff3c2cbf, 0x51bfc7ff03af8905, 0x280eba23ff77ffbc, 0x8a0503ca000903d8, 0xff3c289c68ff03c5, 0x03d3230ebb75c47d, 0x2948ffba9c01aaff, 0x2b0e03ea8905bcfd, 0xffbcd3dbb4ff03e5, 0x03f32a0ebb0d26cb, 0x79cbffbd288638ff, 0x00080437310e38f8, 0x2b0e041202090420, 0xff3c539036ff040d, 0x041b040d3a23e16e, 0x6f49ffbd09cf20ff, 0x65ff0429c8043ba2, 0xff0432070bbd1b18, 0x7094fdff3bdfc1be, 0x4d8a05045b320ebc, 0x2c50ff0448000204, 0x0b3da66a53ff3ced, 0xba728e00ff045607, 0x6d020d3c40d060ff, 0x18ccff0468340e04, 0x043c01515dffbc56, 0x3d2f257bff0476c8, 0x6a8d05b9d734dbff, 0x13060d058d010c06, 0xaf230e04cf010805, 0x9cc80404a1c90404, 0xa6ff39231848ff04, 0xff04aa01123bae05, 0x8b924bff3b28dfc2, 0xbc030b04c1250ebb, 0xc4ffbabe12e0ff04, 0xff04ca040bbd0f89, 0x02cfbfffbb83a81e, 0xe50d0e04f3000f3b, 0xb7beff04e0040b04, 0x0b3b1711d9ff3ce7, 0xbbf683e7ff04ee03, 0x0500023be32897ff, 0xde00ff0500000c05, 0x0cbca3a716ffbb8e, 0x3abf0f7cff050e00, 0x52c604bb4c6d8dff, 0x2d02080532010b05, 0x3b74ff0528001105, 0xffbb9f500eff3abd, 0x05440d0ebd2cdd98, 0x99081aff053f0209, 0x170ebb1ef8b8ffb8, 0xff3b57be58ff054d, 0x056dc704bb340da3, 0x0563050b05680012, 0xc351ff3d0a693aff, 0x123d4fb2fcff3bfc, 0xff057a1d0e057f00, 0xa9c83bffbb13d1ae, 0x34caff058800093b, 0x043c4f3df5ffbbd1, 0x1105d9070d05debc, 0x0d05ab000805b901, 0x3bd9315fff05a606, 0xb4060dbb542732ff, 0x8bffbca144cfff05, 0x0b05cb00083b9bda, 0xba9220eaff05c603, 0xd40d0ebc91971dff, 0xeaff3cd4cfa9ff05, 0x3d1659b4ffbc8340, 0x0606030b0626be04, 0x05f3000905f8060d, 0x87d3ffbb00d0e3ff, 0x8cff0601080ebc94, 0x3b0feaccff3c329f, 0x0613080e06180012, 0x90b8ff3b1d1280ff, 0xd9ff06210009bccc, 0x3d1e1c12ff3c8a34, 0x063c0b0b064a0011, 0x9af677ff06370002, 0x0008ba82f4a3ff3c, 0xffbc06bf29ff0645, 0x065c030b3bf061e8, 0x84066cff06570d0e, 0x0e0b3bce294dffbc, 0xffbbb9cedaff0665, 0x078a93053b175d0a, 0x06ba8e0506fe000f, 0x068c0002069a0108, 0x8513c5ff0687000c, 0x57043a1ebd9bff3c, 0xffbd9595c0ff0695, 0x06ac030bbbb15134, 0x147dd9ff06a70208, 0xa7043c2c7ea0ff3d, 0xffbd8621ccff06b5, 0x06debc043b6e33e6, 0x06cb170e06d0bb04, 0xd935ffba8962a2ff, 0x01ff06d9050b3b86, 0x3c020145ffbcbbae, 0x06ebbd0406f0000c, 0xdb18ffbb2e3ec7ff, 0x6cff06f9bd043d7e, 0xba529592ff3d2a9e, 0x07262a0e0746000c, 0x0713af040718ba04, 0x2d25ffb9f49695ff, 0x69ff0721c6043aa0, 0x3a96c749ffbaee81, 0x0733001207380112, 0x331fff3b9ddcb9ff, 0x7bff07410008ba24, 0x3af21b4dffbcaabe, 0x075c8e05076a1d0e, 0xc6d550ff0757130b, 0x01123ba5055affba, 0xff39b8e6a6ff0765, 0x077c000239ab5a54, 0xe5be0fff0777c704, 0x0208bbcb9417ff3b, 0xff3b647b4aff0785, 0x081a020dbd2ed635, 0x07b6050b07d60008, 0x07a3c10407a8c804, 0xaec5ffba15c9ceff, 0x99ff07b1c9043bbb, 0x3ac73a64ffbc4599, 0x07c3c90407c8cc04, 0x0055ff39bdbe15ff, 0xf5ff07d1280ebbf7, 0x3c78bf1cff3a94c1, 0x07ec050b07fa070b, 0xa562c4ff07e70002, 0x01083ab66789ffbb, 0xff3ca25880ff07f5, 0x080c090b3ba30b00, 0x36b355ff0807070e, 0x000dbc9898c0ffbb, 0xff3c1172cbff0815, 0x08620e0bba56af82, 0x08341c0e0842010b, 0x8fca54ff082f190e, 0xcb04bdc332fbffb9, 0xff3bc7aea3ff083d, 0x08540012bc8edd97, 0xda3745ff084f060d, 0x170e390783beffbb, 0xffb8316f61ff085d, 0x08869405b84ed161, 0x0873c9040878ca04, 0x8c46ffb98f93b2ff, 0xb6ff0881060d3bd0, 0x3b7e2973ffbbb43f, 0x08931d0e0898000c, 0x1f16ffb9e6c303ff, 0xf2ff08a1070eba77, 0xbb1fd61eff3bafbf, 0x0aea96040d26010c, 0x0942640509ce8704, 0x08de370508fe8404, 0x08cb800408d08204, 0x68d9ff3891173aff, 0xf0ff08d9000c3a67, 0xbbbedb1cffbc9b52, 0x08eb360108f02903, 0x5418ff3c64ad61ff, 0x11ff08f95605bcfb, 0x38c8cab7ffba21b0, 0x0914160609220305, 0x1d4caaff090f0b06, 0x030e3c1e45a2ffbc, 0xff3b002eb3ff091d, 0x09340b05bd3dccd9, 0x8df109ff092f000c, 0x10063b5da769ff3c, 0xffbb138f9eff093d, 0x098a000f3c39f5b5, 0x095c7504096a000e, 0x4922a8ff0957040d, 0x000c3c1af94effbc, 0xffbba2ad69ff0965, 0x097c050dbdfc6ca7, 0xfdd730ff0977070e, 0x8905bc120203ff3b, 0xff3c5d5ab7ff0985, 0x09ae8504bb78a539, 0x099b070d09a00008, 0x6b7dff3a630089ff, 0x2cff09a9000c3be2, 0xbc1600d8ffbb5bd8, 0x09bb020809c00d0e, 0xeacbff3c384717ff, 0x2dff09c9130ebc50, 0x3b5d86d2ffbcb895, 0x0a1a89040a5e1706, 0x09ec010509fa0605, 0xadf406ff09e7030d, 0x11063d313d01ff3c, 0xff3c1bc6e4ff09f5, 0x0a0c0c053cdd641e, 0x17acc0ff0a07010d, 0x020d3c622815ffbc, 0xffbbec4558ff0a15, 0x0a3e10033aec4f6d, 0x0a2b06050a301905, 0xd386ffbc1a86f9ff, 0x12ff0a39020d3c91, 0xbd466b43ffbd1e53, 0x0a4b8a040a508b04, 0x81d0ffbb8b262dff, 0xa0ff0a5902073be5, 0xba84d669ffb9bbb3, 0x0a8619060aa6040e, 0x0a73000e0a780111, 0x8051ff3bd1e7caff, 0x22ff0a818b04b906, 0x3ccc49c7ffbc8539, 0x0a9302080a98000d, 0x26abff3d038a79ff, 0x82ff0aa10005b94a, 0x3c07bb54ffbcd74c, 0x0abc000c0aca0002, 0xbfeed6ff0ab7020d, 0x020dbd07d8c0ff3c, 0xffbd36dbf1ff0ac5, 0x0adc000d3b8a7b2b, 0x2ff4b6ff0ad7050e, 0x00053d53cc9affbd, 0xffbcdc8000ff0ae5, 0x0c0a01083da77ec3, 0x0b3a4a050b7e0002, 0x0b0ca7040b1a0605, 0xb2dfc2ff0b074001, 0xa904bce19388ffbb, 0xff3c80688fff0b15, 0x0b2c0705bc190c5f, 0x4dd31fff0b27030b, 0xa8043ca0e680ff3d, 0xffbac4530aff0b35, 0x0b5e250e3aed13b2, 0x0b4b030d0b50080e, 0x97d7ffbc5dc545ff, 0x2cff0b599c04ba69, 0xb9878c8aff3b3791, 0x0b6b4b050b70c004, 0x59d6ffbcbbea79ff, 0x78ff0b7900063b0f, 0xbcdbfb89ff3a1de1, 0x0ba60a0e0bc6200e, 0x0b9302070b980b05, 0x520dffbb6e8f3bff, 0x56ff0ba10f053ba8, 0x3aac8fcdff3ba377, 0x0bb300120bb8b404, 0x1a2bffbbe4be8bff, 0x3dff0bc17405ba6d, 0x3967d157ff3b1a18, 0x0bdc000f0bea0605, 0x95fdcfff0bd79704, 0x9f04bb726c1cffbd, 0xff3c9e3eadff0be5, 0x0bfc6805bc1d0403, 0x067c3dff0bf7060d, 0xb8043bca01ceffbb, 0xff3b2df335ff0c05, 0x0c9a3105ba595f6f, 0x0c36050d0c562805, 0x0c23a0040c28a104, 0x7d58ff3b6a603aff, 0x73ff0c3106063ce7, 0xbba6f25bffba04ce, 0x0c4325050c480906, 0x6a0eff3b2fae6eff, 0x5bff0c5112063c9d, 0x3a9411acffbafb95, 0x0c6cba040c7a070d, 0xa656c5ff0c670111, 0x01123bad8a83ffbb, 0xff3cb43256ff0c75, 0x0c8c3005bbaa5670, 0x18f3b3ff0c872f05, 0x190e3d4b2377ff3b, 0xff3cac5427ff0c95, 0x0ce23305bd582637, 0x0cb43e010cc22303, 0xc46906ff0caf9a04, 0x300ebd505c60ffbb, 0xffbdb9b73fff0cbd, 0x0cd43205bd641663, 0xdec58fff0ccf060d, 0xa8043c26776bff3c, 0xffbc21b288ff0cdd, 0x0d06000cbd802c23, 0x0cf3c1040cf8060d, 0xbac7ffba594227ff, 0x8bff0d01280eba9f, 0x3bb72034ffbaab4f, 0x0d1300120d18b304, 0xcaeeffba30c9aeff, 0x22ff0d21070d3b53, 0x3b2a6c46ffba8388, 0x0e4a3e050f665d05, 0x0d7a7f040dbe210e, 0x0d4c62040d5a6804, 0x4228a5ff0d473a05, 0x0f0e3ab7f572ff39, 0xff3ad5eef9ff0d55, 0x0d6c3501bbae4383, 0xb912b7ff0d671f0e, 0x41013c71d1adffba, 0xff3c622bb9ff0d75, 0x0d9e3c053ab3b98e, 0x0d8b02080d902703, 0xddf0ff3beabd83ff, 0x93ff0d992803bc8c, 0xba74ca12ffbd514c, 0x0dab3d050db00008, 0xb82affbd07a89cff, 0xbcff0db90e0e3c12, 0x3c1f42f1ff3cdf37, 0x0de601110e06220e, 0x0dd389040dd83a05, 0x506cffbaca4e12ff, 0x71ff0de1ac04bc0a, 0x3cc694e7ffbc8f10, 0x0df3010b0df8030b, 0x47cbffbcc6ad75ff, 0x90ff0e0194043907, 0x3ccfe3cdff3bd96e, 0x0e1c9d040e2a9e04, 0x0f7275ff0e173801, 0x070d3bbec6eeff3a, 0xff3c112240ff0e25, 0x0e3c3905bd9f2f05, 0x1ca565ff0e370c06, 0x3d05bc4f05fbff3b, 0xffbc774c6aff0e45, 0x0eda00063b95c458, 0x0e7602080e965a05, 0x0e633f050e684005, 0x5d54ffba8753ccff, 0x73ff0e7145053c6e, 0xb9b2dc74ff3bb877, 0x0e839f040e88ac04, 0x9f89ffbbaad0d0ff, 0x3dff0e91070ebcde, 0xbad6c920ff3d2844, 0x0eac030b0eba040b, 0x5a4c4fff0ea78904, 0x0002bc0804b3ff3b, 0xffbd0b5240ff0eb5, 0x0ecc100bbe189bf6, 0x0c692cff0ec70112, 0x5c05bce4a734ff3c, 0xffbc132a1bff0ed5, 0x0f2200023c0d13fc, 0x0ef401070f02030e, 0xca2fb5ff0eef0706, 0x0d06bc728e6bffbb, 0xff39a83dcaff0efd, 0x0f149404bc849ce2, 0x6f9411ff0f0f030b, 0x0107bca2fffbffbb, 0xffbcc2b22cff0f1d, 0x0f460406bd3cf775, 0x0f33030b0f38a104, 0x4d80ffba04d26fff, 0x43ff0f410107bc61, 0xbd08278effbc0dc8, 0x0f53010e0f580b0b, 0x080dffbb094817ff, 0x18ff0f6101113b0a, 0x3a2055cdffbc5a31, 0x0ffa00021086140b, 0x0f9673050fb68005, 0x0f8302070f88c104, 0xaa2cff3aad7f1fff, 0x66ff0f91c304bc28, 0xbacd92cdff3c35d4, 0x0fa3a1040fa80112, 0xb396ffbb4601d4ff, 0x4dff0fb10d0e3a4d, 0xbcd310d8ff3c20ae, 0x0fcc81050fda220e, 0x8c6f64ff0fc7c204, 0x060d3bec63aeffbc, 0xffbbb42521ff0fd5, 0x0fec260e3b1adf73, 0xfa195aff0fe78205, 0x01073c35e87fffbb, 0xffbc47164bff0ff5, 0x10429c043bca9520, 0x101400081022060e, 0xd31e89ff100f070d, 0x9a043cc9e061ff3a, 0xffbc76ddd6ff101d, 0x1034070e3c210b83, 0xabc85eff102f0111, 0x0c0e3d79fe87ff3c, 0xffbce9833cff103d, 0x1066a8043c5f7463, 0x10530d0b1058220e, 0x9f5fffbc8552c0ff, 0x56ff1061050bbd3e, 0x3d2a521bff3b1ca1, 0x1073080e1078af04, 0x651affbb9c3412ff, 0xd9ff1081b6043c7d, 0x3ad5a77dffbc3cc9, 0x10d2080e11160008, 0x10a4850410b2070d, 0x553feeff109f060d, 0x070e3b717255ffbc, 0xff3c2c8e67ff10ad, 0x10c4ab04bc10b27e, 0xdbcd77ff10bf070e, 0x00023d508639ff3a, 0xff3dd995e3ff10cd, 0x10f601073d91a04a, 0x10e30a0e10e80d0e, 0x160dff3c4c2e29ff, 0x68ff10f1060dbcad, 0xbb41c73eff3c4b75, 0x1103000211080a0e, 0xbe92ff3d279959ff, 0x64ff11110d0ebd9d, 0xba8d223bffbca7aa, 0x113ec304115e030e, 0x112b060d11307005, 0x96aeffbcc402c1ff, 0xf7ff113901083b23, 0xbd43eeebffbc9d50, 0x114b01071150060d, 0xbf91ff3c98c30aff, 0x30ff1159010e3d50, 0xbc56e0d5ff3c217d, 0x1174ab0411820108, 0x44c57eff116f060d, 0xc004bc9eff12ff3d, 0xffbc5a2984ff117d, 0x1194b104bb294fca, 0x20977dff118f050e, 0x070e3db60404ffbd, 0xffbc63a276ff119d, 0x000000133c25b45d, 0x000003e800000008, 0x00000fd700000001, 0x08e5000700000000, 0x0248c70404848c05, 0x00a06a05012cc104, 0x003c3d01005ca604, 0x00296d04002e3901, 0x8a1affb9114d9cff, 0x16ff00378f043a1b, 0xbb84438aff3a5ee6, 0x00497504004ea404, 0xc992ff39bf43bcff, 0x7bff00576905b8eb, 0x3d0703c1ffbbb323, 0x00720c0600805b05, 0x96ee98ff006d060d, 0x5505bba1cfb1ff39, 0xff3a144351ff007b, 0x00926205bb92e604, 0x9f3c8eff008d6105, 0x6305bc92e760ffba, 0xff3c4a63f0ff009b, 0x00e8c004b9c59095, 0x00ba010b00c87905, 0x517d3fff00b5040d, 0x0a0bba846369ffbb, 0xffba2d0582ff00c3, 0x00da330e39fcac58, 0x0d25e9ff00d5bf04, 0x7d05393f68abff38, 0xff3c5fe09cff00e3, 0x010c0012bc04b3e7, 0x00f9080e00fe2b0e, 0xe106ff3c363564ff, 0xafff01072c0ebb1d, 0x3ba69135ff3ce105, 0x0119030b011e060d, 0xe7b2ff3b83f0ceff, 0x8fff01270009bac4, 0xbc8f76afff3c94d1, 0x0178770501bc7905, 0x014a001201580b0b, 0xacbbffff01455d05, 0x060dbb691acaff3c, 0xffb689e166ff0153, 0x016a2f0e3b668769, 0x261e9dff01650c0b, 0xc6043a69e233ff3d, 0xff38f29bc2ff0173, 0x019c340ebc7759e1, 0x0189130e018e0e06, 0xdd3effbc8bb366ff, 0x13ff01970008ba81, 0x39163eabff3c8f88, 0x01a9030b01ae020d, 0xfde5ff3ca74b72ff, 0xcdff01b7030bbc71, 0x3d0b5d0affbc84af, 0x01e4c30402040002, 0x01d10f0b01d6100b, 0xb87effba78224bff, 0x69ff01dfc2043c58, 0x3b78cfcfffbbd0f8, 0x01f1810501f62f0e, 0x0c2dff3a0edf28ff, 0xbaff01ff300eb8a7, 0x3b380f0cffbcde6f, 0x021a0a0e0228190e, 0xf33d1dff02150108, 0x7f053ca1b2e2ff3a, 0xffbc51bf2cff0223, 0x023a010cba895898, 0x3a5e12ff02357b05, 0x050bbb48040dff3c, 0xffbc81e347ff0243, 0x036888053cada8bf, 0x0298280e02dc0a06, 0x026a740502788105, 0xd932e5ff02657105, 0x7505bd64150eff3b, 0xff3ca1d25bff0273, 0x028a840539d09aa6, 0xa1d7e0ff02850b0b, 0x030b3c619b2effbb, 0xff3cff486aff0293, 0x02bc6805bb35a744, 0x02a9620502aecb04, 0x3038ff3aa12fb4ff, 0x07ff02b7020d3c6f, 0xbbc4240dff3bd890, 0x02c97d0502ce8105, 0x90dbffba8970d2ff, 0x9aff02d7010c3a9a, 0x3b383e86ffb9f3df, 0x0304420503246105, 0x02f1000802f63905, 0xd9eeff3b0785ebff, 0x32ff02ff1006ba9e, 0xbb84fa08ffbcbc3b, 0x0311011103162b0e, 0x4dc1ffbb499de3ff, 0x18ff031f020d3b43, 0x3d08c613ff3be201, 0x033a010e0348cb04, 0xb1fc68ff03350111, 0x0f063c1263b7ff3a, 0xffbc98d8d2ff0343, 0x035a1706bc05f18e, 0xd3c30bff03551606, 0x000f3d1b5b8dff3a, 0xffbc78eac0ff0363, 0x03f801113b4c77aa, 0x0394130b03b4010c, 0x0381310e0386cc04, 0x083dffbb4361f2ff, 0x9fff038f0208bc4f, 0x3c180f71ffbb1a4e, 0x03a1000803a60009, 0x8372ff3c0d5ae5ff, 0x69ff03af000cba1c, 0xbc0069cfff3b5a98, 0x03ca000803d8070d, 0x0cc5f6ff03c50b0b, 0x0108bc3990a7ff3b, 0xff3c2162b9ff03d3, 0x03ea8a05bb9f1167, 0xce2bc3ff03e5140e, 0xcb04bb045685ff3c, 0xff3d543530ff03f3, 0x0440cb043dacb89c, 0x04120a0b0420310e, 0x20f208ff040d8a05, 0x02093bfd0bcdffbd, 0xff3bcb9a08ff041b, 0x0432020dbb5594c7, 0xfbbf23ff042d340e, 0x030b3c851225ffbb, 0xff3d9da843ff043b, 0x04642b0e3c9bd945, 0x04510b0b04560208, 0x2450ffbccc976bff, 0xc0ff045f000cbb16, 0xbb084f4bff3b8a7d, 0x047102080476cd04, 0x59a0ff3bd98100ff, 0xf0ff047f030bbb3e, 0xbbdb53d0ffbb4c81, 0x059f110b06b28d05, 0x04d80e0b05130e0e, 0x04aa000804b8060e, 0x749a9aff04a5050e, 0x030ebc2da053ff39, 0xffba220c71ff04b3, 0x04ca0b0bbc3f8e35, 0x093e13ff04c5b204, 0x0d0eba8a5ca9ff3b, 0xff3abdf402ff04d3, 0x04fc0d0ebcb9545d, 0x04e9ac0404ee070e, 0x5ec4ffbb505228ff, 0x1aff04f7a2043ce3, 0xbc003002ff3c6cde, 0x05090009050e000c, 0xdac4ffbc58a3c0ff, 0x043ba2c860ffbcc1, 0x02053b010b055bbb, 0xff05280009052d00, 0xe3db60ff3bdb4834, 0xf757ff0536a4043c, 0x0b3b00883bffbc4e, 0xff0548030b054d0a, 0x24e084ff3a17b08c, 0x4bcbff0556a904bc, 0x08ba924920ff3c70, 0x040571020d057f01, 0x3b3a3afdff056cc7, 0x7abc04bca66259ff, 0x24ffbb985ac9ff05, 0x0e0591010c3a14af, 0xb9eac926ff058c28, 0x9ac9043b85433fff, 0x5aff3c196004ff05, 0x04062f0008bd2663, 0x1105cb000c05ebbc, 0xff05b89c0405bd01, 0x8cadb4ff3b0d7cf9, 0x399aff05c6b304bb, 0x043a06b7ecff3c7e, 0xff05d8a40405ddb2, 0x808f74ffbb5cbfd9, 0xc1deff05e6b3043c, 0x123b5d8c04ffbbc7, 0x0406010002060f01, 0x3c28fd8dff05fcbd, 0x0a190ebaa88886ff, 0xfdff3bc307d2ff06, 0x020621be04ba5f55, 0xbbe947afff061c00, 0x2ac404bcbb561cff, 0x6fff3c45fef3ff06, 0x0d066e000ebb21d9, 0x0206490108065706, 0xbc932578ff064400, 0x52000cbc56f9fcff, 0xd2ffbc6311a0ff06, 0x080669010cbd2d25, 0xbc5bc094ff066401, 0x0008ffb9d30155ff, 0xb2040692000c3c70, 0x7eff067f080e0684, 0x3d0550fbff3ba11f, 0x7a7346ff068db704, 0x00113ab9c55cffbb, 0x97ff069fb30406a4, 0x3b1e231fff3ca01f, 0xce8c3cff06ad0112, 0x93053be83a49ffbb, 0x0208073d020d07c9, 0x030b06e2be040702, 0x9aff06cf230e06d4, 0xbbc991fbff3a8f0b, 0x65a412ff06dd220e, 0x2b0ebc009a35ff38, 0x45ff06efca0406f4, 0xbcf5aa6fff3b8219, 0x38fc27ff06fd300e, 0x8e053ac5fd81ffbc, 0x40ff070f070e071d, 0xff07180d0e3bd505, 0x289480ffbbbafcab, 0x2abf04072f030bbc, 0xe9ff3b9b371cff07, 0xff0738bf04ba929f, 0x036c00ffbc0b5495, 0x650a0e0785050b3a, 0x52030d0757020907, 0x14ffbc13b469ff07, 0xff0760c8043a6d4b, 0x6c63beffbb6fb7d1, 0x72000f0777010bbd, 0xb6ffbbcfef73ff07, 0xff0780330e39bbab, 0x1e84c0ffb8845798, 0x9b190e07a90b0b3a, 0x68e3ff0796000907, 0x1238039fcdff391e, 0xb986252aff07a400, 0xbbc904b90df939ff, 0x015fff07b68e0507, 0x04b9db172bff3aaa, 0xba326ee0ff07c4cb, 0x59020d39afddf4ff, 0xf5050b0815000808, 0xe22f0e07e7030b07, 0x16ff3a123c19ff07, 0xff07f0cc04bc1210, 0x902739ffbadaebee, 0x02c0040807c6043c, 0xe5ff3a1065a8ff08, 0xff0810c704bbd0f5, 0x208804ff3c9e28ba, 0x2b01080839b7043a, 0x6b2cff0826a70408, 0x04bbf14c8fff3ba6, 0xbbbb82d0ff0834a7, 0x4bbc043c9411b8ff, 0xbd0bff0846940508, 0x0e39129425ff3c35, 0x3b13b75bff08540d, 0xa1000fb9fdd370ff, 0x73b8040881020b08, 0xb141ff086e940508, 0x04bb9a19cbff3cab, 0x3d89cbedff087cba, 0x932b0e3c31521fff, 0x7fc4ff088eca0408, 0x0ebbb93821ffb9de, 0x3d459e5dff089c2f, 0xc5cd04bc2b1de5ff, 0xb2170e08b7c80408, 0x1dffb8dbff15ff08, 0xff08c0060db9af51, 0xe9684bff3a3a9c12, 0xd2020908d7000cb9, 0x15ff39bbfa1aff08, 0xff08e0060d3bbc04, 0x23ecb5ff3b71e4fa, 0x29c6040d659505bb, 0x8166040a0d97040b, 0x1d1106093d590409, 0x0a3a01090f0b0609, 0x7fffb943988dff09, 0xff091856043a2ffa, 0x233168ffbb812a3f, 0x2a000c092f01083c, 0x2effb9fd6bcbff09, 0xff0938030ebbdc42, 0xab21f2ff3ac84f02, 0x53000d0961090b3c, 0x1fa2ff094e070e09, 0x05ba8b3190ff3d33, 0x3a0d0729ff095c8d, 0x730c05ba185d6fff, 0xa9c8ff096e010509, 0x04bbc0a1e7ff3b8b, 0x3bb488e4ff097c5a, 0xc927033a88f5afff, 0x9b100509a9240309, 0x0ffeff0996000609, 0x053ab1e982ffbbd6, 0x3be852a0ff09a418, 0xbb3401ba28c1a9ff, 0xc777ff09b6000f09, 0x02bab306b8ff3c04, 0x3c64dddbff09c400, 0xed2a033ba57b68ff, 0xda8e0409df380109, 0xa9ffbacbbab1ff09, 0xff09e896043c71eb, 0x7d9212ffbc92b6d0, 0xfa001209ff3403bd, 0x02ffbaabacb3ff09, 0xff0a08010c3b58c2, 0x64c8eaffba03db48, 0x593f010a9d4101b9, 0x2b03060a3998040a, 0x3931ff0a2638010a, 0x05bc34fcdeff3c05, 0xbe5364a3ff0a3407, 0x4b2d01bdd03a4bff, 0x81e1ff0a4621010a, 0x01ba82a531ffbc16, 0x3ac23054ff0a543d, 0x7d9d04bb946005ff, 0x6a00120a6f220e0a, 0xfbff3c86a512ff0a, 0xff0a78080bbd46c8, 0x1dc2c9ff3c350286, 0x8a00080a8fac043d, 0x31ffbc0ccd30ff0a, 0xff0a981c053c701a, 0xe6ff18ffbb50666b, 0xc529030ae56505bc, 0xb223030ab727030a, 0x4bffbbe90847ff0a, 0xff0ac0220e3bdbd4, 0x774743ffbd801e69, 0xd2110b0ad72c03bc, 0x92ffbbf6eaa0ff0a, 0xff0ae02b0ebccf99, 0xdbc5dfffb919fb9c, 0xfb67050b092b0e38, 0xb3b8ff0af69c040a, 0x043bfe9ea9ffbc6b, 0x38996b5cff0b04bc, 0x1b000fb7c5e0fcff, 0x6fdbff0b16010b0b, 0x0e3c20650effbbd9, 0x3cd1e96cff0b242c, 0x490108bbaf6c0eff, 0x79010c0bbd190e0c, 0x4b000d0b59170e0b, 0x912aff0b4600080b, 0x0e3b769e48ffbbc7, 0xba5aa6daff0b540d, 0x6b83053b0fb522ff, 0xdb14ff0b6682050b, 0x043ca5f8e2ff382e, 0xbb7af6f9ff0b74cb, 0x9d180e3b82664cff, 0x8a00020b8f0e0e0b, 0xb4ff3b8ccc77ff0b, 0xff0b98060dbb4fa4, 0xcb018fff3ba7b066, 0xaac7040baf8605bb, 0x1affbd249238ff0b, 0xff0bb888053c849f, 0x025d52ffbca37482, 0xe564050c05060d3b, 0xd21c0e0bd7210e0b, 0x53ffbbd89078ff0b, 0xff0be000023cd4b6, 0x849170ff3a30d89e, 0xf2c8040bf70012ba, 0x01ff3d75ca28ff0b, 0xff0c002a0e3c9331, 0xed7851ff3a373a6d, 0x1b80050c29001237, 0xf680ff0c16250e0c, 0x053a679e16ffbb29, 0x3c884abaff0c2481, 0x3bc90439e96062ff, 0x24f3ff0c36c7040c, 0x0b3d7174feff3c36, 0xba2ac95eff0c4403, 0xd90207bd2fd46cff, 0x7553050c956c050c, 0x621e050c67ca040c, 0x4affbcf55b97ff0c, 0xff0c70040dbb159f, 0xa2682cffbb8232fc, 0x82000f0c8755053b, 0x38ff3be930ebff0c, 0xff0c9061053d081b, 0x61c593ffbb02b133, 0xabcb040cb96d053b, 0xf42eff0ca6000c0c, 0x0e3c59a573ffbc34, 0xbd25be8aff0cb42b, 0xcb7b053b16621bff, 0x692fff0cc602080c, 0x0eba8a7abdff3b68, 0x3ab99c66ff0cd418, 0x215105ba77e868ff, 0xf3310e0d014a050d, 0x367bff0cee47050c, 0x12bd2b208bffbb67, 0x3d48af64ff0cfc01, 0x13230ebbba8ce8ff, 0x1b38ff0d0e4d050d, 0x05bd173343ff3cef, 0x3d914546ff0d1c4c, 0x450b0b3cb1a376ff, 0x32070d0d3700120d, 0xceffbb88be97ff0d, 0xff0d40010c3c85e0, 0x16dabdff3a8d9f27, 0x52230e0d57c9043c, 0x28ffbc295269ff0d, 0xff0d600111bcf024, 0x9b1f32ffbb8f8c8e, 0xcc7f040ecd1f0e3c, 0x95030b0dbe01070d, 0x8269040d8796050d, 0xabff3a284800ff0d, 0xff0d90010b39712c, 0x5d9450ff3b49fd90, 0xab050b0db0070b3b, 0xf76bff0da678040d, 0xff3b369bf5ff3b21, 0x0db90002ba3051c0, 0xadc8ff3b1d1cc0ff, 0xe0ff0dc700023b86, 0x3b867768ff3b7c35, 0x0e0fb6040e53000c, 0x0dea110e0defb404, 0x1c7f8eff0de5050b, 0xc0ffba7f261aff39, 0x020e01000ebc0a0d, 0xbb1c2e54ff0dfc00, 0x0a010e3b6f4635ff, 0x9cff3ba295f8ff0e, 0x0e0e33190e3c0369, 0xff0e20c8040e2511, 0x0479d3ffb8959bc5, 0x628bff0e2e060dba, 0x0dbaf05676ff3ae9, 0xff0e4000020e4500, 0xa177abffbc5a104b, 0x5135ff0e4e000fba, 0x0438b923dcff3c59, 0x0e0e7bc7040e89c8, 0xff0e68030b0e6d00, 0x242e12ffbb5b033a, 0x9980ff0e760002ba, 0x0db8f13d8dff3b2a, 0xbc0adc90ff0e8402, 0xad000fbc8917ebff, 0x9a050b0e9f00080e, 0x69ffbb5fd62dff0e, 0xff0ea8030b39ead1, 0x5ab239ff3b5dd5b3, 0xba00110ebfcb04bb, 0x11ffbb6aa61bff0e, 0xff0ec800083badd8, 0xa05c35ff3a22154a, 0x3d0b0b0f4b0002bb, 0xf400120f1496050f, 0xea000c0eef00080e, 0x40ff3be8da33ff0e, 0xbb8bac50ffbb36c7, 0x0f01000d0f06cb04, 0x41c7ff3aed4dabff, 0x4bff0f0fcd04ba8a, 0xb9457555ffbb246b, 0xa306d0ff0f1d230e, 0x2ac7040f2f240ebb, 0x40ffbbc918c0ff0f, 0xff0f38cd043c0c01, 0x41a880ffbb0a5300, 0x8340ff0f460012ba, 0x04ba289c00ffbbd8, 0x050f6101070f66c0, 0xbae57380ff0f5c96, 0x7160ffbb1213a0ff, 0x96050fae0107bb50, 0x230e0f80cd040f8e, 0xff3812110bff0f7b, 0x0f89000c3b8fd55c, 0xc5e8ffbade66f9ff, 0x000d0fa0cd043ace, 0xff3b5afa80ff0f9b, 0x0fa9030b3a86f380, 0x7d00ff38f88a00ff, 0x000d0fc0cb043bcc, 0xff3b4a8d00ff0fbb, 0x0fc9cd043c07dc80, 0xd2050bb9df9000ff, 0xb0ffba689e00ff0f, 0x08000000133c2a3c, 0x01000003e8000000, 0x0000000ffb000000, 0x0508ee0007000000, 0x040248c704047b8c, 0x0400a06a05012cc1, 0x01003c3d01005ca6, 0xff00296d04002e39, 0x0bfc26ffb902c614, 0x9b8aff00378f043a, 0x0ebb6e1320ff3a48, 0xff00491306004e07, 0xde9acfff3a72a2b9, 0x53ddff00570d0eba, 0x12ba7b12d4ff3a89, 0x0100723705008000, 0x3d820e8cff006d2f, 0x7b070d3c3f1bdcff, 0xc2ff3b121b34ff00, 0x0900926905bba401, 0xb50dee57ff008d02, 0x9b060dbc2ecb72ff, 0xdaff3c5da2afff00, 0x0500e8c004bc8efa, 0x0d00ba010b00c879, 0xbca5341aff00b500, 0xc3bc04ba6cd907ff, 0x14ff3531a896ff00, 0x0e00daa1043a208a, 0xb9d0538fff00d515, 0xe3220ebaf1b730ff, 0x2eff3a19901aff00, 0x0c010c030e3affb3, 0xff00f9000200fe01, 0x8c2398ff3d353098, 0x6c8aff010700123c, 0x063e15e67fff3d05, 0xff01190108011e00, 0x03d0ceffba5c9047, 0x7a73ff0127000f3b, 0x053c5f8cccffbd15, 0x050178000f01bc75, 0x05014a020d015833, 0xbc3ce444ff014518, 0x5318053a5fbf6eff, 0x03ff3ca68462ff01, 0x02016a02083ad23b, 0xbc821488ff016500, 0x735705bafd6ba1ff, 0xbdffbc3808b2ff01, 0x05019c73053c0e5a, 0xff0189c404018e6e, 0x8ffffbffba33f408, 0xd496ff0197010838, 0x0e3beaf876ffbbee, 0xff01a90e0b01ae2f, 0x5bd756ff3c1b75ce, 0x74b2ff01b70108bb, 0x05bd3aaf31ff3b8c, 0x0c01e4210e020481, 0xff01d11f0e01d601, 0x30c2a5ffbb08b1dc, 0xb034ff01df1d0ebd, 0x053d2d6de1ff3b76, 0xff01f1130b01f67b, 0x129532ffbad78d43, 0xd723ff01ff01083c, 0x053aef2731ffbb97, 0x12021a8305022889, 0xbb401c8cff021501, 0x2300083bc75af7ff, 0xa3ffb994fcdaff02, 0x09023a0a0b3a221b, 0xbb44900dff023501, 0x43010c3baeb629ff, 0x50ffb89c7b72ff02, 0x06036888053bb14a, 0x050298280e02dc0a, 0x05026aca04027880, 0xb97efd30ff02657f, 0x7376053c8d1b67ff, 0xecffbcea3ac6ff02, 0x04028a010c3aaf48, 0x3a503810ff0285cd, 0x93230e3d07f709ff, 0x96ffba18c61aff02, 0x0502bc6805bc85a9, 0xff02a90d0b02ae61, 0x8ae60fff3b0e1a2d, 0xae97ff02b72f0ebb, 0x05b943bba2ff3d28, 0xff02c9000f02ce81, 0x5c518eff3ba70b88, 0x7c35ff02d7010cba, 0x0f3b25d1efffb9db, 0x0503043305032400, 0xff02f1000802f62a, 0x8c8c14ff3c8645a1, 0x83b1ff02ff020dbb, 0x05bd019a84ffba93, 0xff0311050d031660, 0x18855affb9b61cd0, 0x6a12ff031f040d3c, 0x05bc910450ffbb3d, 0x06033a1105034839, 0xbbea9f11ff033519, 0x430d0e3b8bf9d5ff, 0x15ffba90eeb8ff03, 0x06035a020d3b59b0, 0x3c26568bff035514, 0x630b0bba04d3d4ff, 0xc8ffbabc35f3ff03, 0x0203f80112bbcab6, 0x0e0394010803b400, 0xff0381000c03862b, 0x3f611aff3c2398bc, 0x9463ff038f010cbb, 0x0e3c35ed21ffb995, 0xff03a10e0e03a62b, 0xcf1898ffbc3c1ccd, 0x1731ff03af0b0bb9, 0x08bcda53f3ffbbea, 0x0403ca890503d800, 0xba8a24d5ff03c5c8, 0xd30b0bbce24d71ff, 0x1cffbb6f2a10ff03, 0x0803ea000c3b688c, 0xbc265895ff03e501, 0xf32c0eb6dfb013ff, 0xc3ff3c101119ff03, 0x0d0437cb04bba31d, 0x0904120008041700, 0xbd307630ff040d00, 0xbae0ffbcb60b6bff, 0x320e0429340e3d56, 0xff3b98dd35ff0424, 0x04320008bb7820b1, 0x0620ff3d083af8ff, 0x0002045b000f3d61, 0x80ff04482b0e044d, 0xbc31d300ffbc5da4, 0x911de0ff04562b0e, 0x030bb9a5e6e0ffbc, 0xdeff04680208046d, 0x38e1d200ff3c92e7, 0x427a56ff0476010c, 0x8d05bd203a97ffbc, 0x060d059f010c06bb, 0x230e04cf01080513, 0xc80404a1c90404af, 0xff390d29b4ff049c, 0x04aa00083b9fb926, 0xd7a4ffbaf0ddc6ff, 0x030b04c1250e3be6, 0xffbab2a6cbff04bc, 0x04ca040bbd0121da, 0x46e0ffbb6d3728ff, 0xa70404f3020d3aef, 0xa0ff04e0990404e5, 0x3d0d54b0ff3d185b, 0x229bf2ff04eebf04, 0x00023b28a22cff3c, 0x80ff0500230e0505, 0x3c8ce5fcffbbfcd2, 0x224c03ff050eca04, 0x01083c0ac018ff39, 0x0012053b0009055b, 0xcfff05280a0b052d, 0x3b03ac37ffbb8c42, 0x9aa753ff0536070b, 0xb604bbbe2fdbff3b, 0x1dff05480012054d, 0x3b9aa912ffbafd9e, 0xa665d0ff0556bc04, 0x0011ba37067affbc, 0xb2040571b304057f, 0xffba0608eeff056c, 0x057a02083c05ff24, 0x94f8ffba988a8cff, 0x010e0591020ebbd7, 0xffbbaa7e76ff058c, 0x059ac904bd214dad, 0x237bff3b30b089ff, 0x1d0e062f01093c1e, 0x0a0e05cb0b0e05eb, 0x77ff05b8070b05bd, 0xbb602469ff3c2598, 0x16e27dff05c60002, 0x030bbd9c263effbd, 0xadff05d8000905dd, 0xbc5ca23affba210d, 0x3fa15cff05e6b204, 0xcc043b5195ffff3d, 0x00080601030b060f, 0xff3bc4285aff05fc, 0x060ac404bc92d59d, 0xe364ff3cb432efff, 0x060d06210002bc13, 0xff3cb89ff0ff061c, 0x062a0b0b3cf86e38, 0x55eeff3c4c3540ff, 0xc7040677050bba8a, 0xa904064900020657, 0xffbbc4fe28ff0644, 0x0652b304bc89480b, 0x58a9ff3ba3874fff, 0x02090669060dbc02, 0xff3b2aab50ff0664, 0x06720e0e3c1a4154, 0x9a0dff3caadc7bff, 0x0b0b069bc5043c8a, 0x8dff06880111068d, 0x395dab2fff3bfe39, 0x08c0f0ff06960002, 0xcc04bc0042c8ffbd, 0x53ff06a8060d06ad, 0xbc566a56ffbb1cdb, 0x82d9a0ff06b6190e, 0x93053c552e04ffbb, 0x02080746020d07d2, 0x040b06ebbe04070b, 0xbaff06d8230e06dd, 0xbbd6cd1eff3a7c0a, 0x6dd01dff06e6220e, 0x2b0ebbf337a6ff39, 0x5eff06f82a0e06fd, 0x3c65490bffbadf6a, 0x267c9eff0706300e, 0x8e053ab2313bffbc, 0xc0ff0718070e0726, 0xff0721020b3bbfb7, 0x3ad900ffbbee4b55, 0x33bf040738030bbb, 0xe9ff3b8bb19cff07, 0xff0741bf04ba83f5, 0xec9000ffbbfacbab, 0x6e090e078e050b39, 0x5b91050760000f07, 0x9cffba37cc7aff07, 0xff0769c8043c2609, 0x85ce62ffb8ad4546, 0x7b310e0780000fbc, 0xa1ffbb66929eff07, 0xff07890b0e3d31fd, 0x4366bcffbbef1c60, 0xa4010c07b20c0b3a, 0x62b3ff079f1d0e07, 0x0b3a77bb4cffb99f, 0xb8a4562fff07ad0a, 0xc4220e398285e3ff, 0x1163ff07bf0e0e07, 0x0539e079d4ffb841, 0x3afd80d7ff07cd91, 0x62020dbc01632bff, 0xfe050b081e000808, 0xebcb0407f0030b07, 0x8eff3a139b6eff07, 0xff07f9c204bbdf11, 0x3634b4ff3b005523, 0x0b6d0408106f04bc, 0xbdffbbc51836ff08, 0xff0819a404bc81b3, 0x02d451ff3b63d575, 0x34c4040842000fba, 0x05f8ff082f940508, 0x02bb2828c1ff3b08, 0xbb06fb69ff083d00, 0x54000c3b3e1e8fff, 0x2e07ff084fc80408, 0x0b38ab7f40ffbb0d, 0xbc270946ff085d0b, 0xaa100b3b728d00ff, 0x7c6d04088a1f0e08, 0xf937ff08776b0408, 0x0ebbb1579cff3bbd, 0xb9963b2fff08850d, 0x9c010c3a50d5a4ff, 0xd061ff0897220e08, 0x093a887d44ffbba7, 0xbb32e0c1ff08a500, 0xce190ebcfae508ff, 0xbb0d0e08c00e0e08, 0x0cff393fadc4ff08, 0xff08c900093a51bf, 0x4f6f0bffba6b16ce, 0xdbcc0408e00012bc, 0xa9ffbd4bb080ff08, 0xff08e9cc04bb1374, 0x55c065ff3c387be9, 0x29c6040d6595053a, 0x8a66040a1697040b, 0x260f060946590409, 0x1337040918580409, 0x46ffb9d9f314ff09, 0xff0921070e3a1bf9, 0xec9118ff3c172908, 0x33000c09385604ba, 0x71ffbafdc4daff09, 0xff09411206bbdc17, 0x83c770ff3c68c7ad, 0x5c050b096a060bbc, 0xeae1ff0957010509, 0x0438b6f934ff3ca2, 0xbd4d0829ff09655b, 0x7c070bbbd2c215ff, 0x8e71ff0977000609, 0x0e3d94b2daff3b67, 0x3aeed675ff098516, 0xd28a04bb0f0664ff, 0xa4011209b2670409, 0x5261ff099f3b0109, 0x03bc730000ffbbac, 0x3ca28724ff09ad2e, 0xc43303bbb1140aff, 0x4634ff09bf0a0609, 0x0d3bfbf24dff3a80, 0xbb882eb0ff09cd01, 0xf63201b97c216bff, 0xe3050d09e8130b09, 0x3eff39a9c03dff09, 0xff09f10d03bc1a07, 0x5a2acbffbc9cf740, 0x0338010a0839013c, 0xbeff3b8aa5a1ff0a, 0xff0a1101123d16a5, 0x972505ff3989cb4d, 0x623f010aa64101ba, 0x3402060a4298040a, 0xddc7ff0a2f070d0a, 0x113cd4144bffbba7, 0xbdc88fd3ff0a3d01, 0x542d013d7322dcff, 0x3dd3ff0a4f10010a, 0x0ebb2b2210ffbc5f, 0xba984cc9ff0a5d1e, 0x869d043a61b1bbff, 0x7300120a78220e0a, 0x12ff3c725c41ff0a, 0xff0a810a0bbd32e8, 0x13ba05ff3c0a229d, 0x9300080a98ac043d, 0xa6ffbbfd715fff0a, 0xff0aa1030b3c5817, 0xa01f5bff3c3710c3, 0xce29030aee6505bc, 0xbb00020ac023050a, 0x34ffbca6f8aeff0a, 0xff0ac929053bb426, 0x3c599dff3c538d59, 0xdb110b0ae02c03bc, 0xf8ffbbde398dff0a, 0xff0ae9020bbcbad6, 0x11e5a6ffbbd0295f, 0x046b050b12340e38, 0x592aff0aff02070b, 0x0bb93c8a7eff3b75, 0xb965c9c2ff0b0d12, 0x1bb00438256cadff, 0x0006be3fd710ff0b, 0xffba1d3818ff0b24, 0x0c490108bd678553, 0x0b79010c0bbd190e, 0x0b4b070b0b590107, 0xc2e69aff0b462505, 0x91053c1e9c47ffbc, 0xff3ac229e8ff0b54, 0x0b6b8805bb2eca5e, 0x152697ff0b668605, 0x170ebbe513dbff3a, 0xff3a63fdd1ff0b74, 0x0b9dc804bac608e5, 0x0b8a02070b8f060e, 0x5754ffbd7f0dcaff, 0xbfff0b980002bdb7, 0x3cc42d22ffbad77d, 0x0baa7a050baf7e05, 0x73a8ff39a70b2dff, 0xcfff0bb880053cea, 0xba665e10ffbc8f98, 0x0be562050c05060d, 0x0bd201110bd70306, 0xe1f2ffbbacd862ff, 0x6dff0be000023bf9, 0xbb5b140bff3bfb7d, 0x0bf26b050bf70002, 0x9dd2ffbb244131ff, 0xc0ff0c00010cb9f8, 0x3baaa7a5ff39ec2f, 0x0c1b7f050c290011, 0xecc3b0ff0c16c704, 0x8505bb0d9be6ff3b, 0xffbb55d27dff0c24, 0x0c3bc9043b258e60, 0x23ee0eff0c36c704, 0x0b0b3d594fb0ff3c, 0xffbc4fbeaeff0c44, 0x0cd97505bd58579c, 0x0c7507050c95060d, 0x0c6202070c670111, 0x4ef4ff3b9146a7ff, 0xe0ff0c70300ebc4c, 0xbac33500ff3cac29, 0x0c820c050c876405, 0xfc14ffba1a0830ff, 0xebff0c90260e3966, 0x3aa424bbffbbe126, 0x0cab040b0cb9c904, 0x90730dff0ca6c704, 0x280e3c4662f4ffbb, 0xff3b844f08ff0cb4, 0x0ccb220ebbfb0f7a, 0xa83400ff0cc61f0e, 0x300ebcd95fc5ff39, 0xff3afd9a7fff0cd4, 0x0d21190ebba25404, 0x0cf378050d010107, 0x61987cff0cee0e0e, 0x0012bd2c7f9fff3d, 0xffbb0713deff0cfc, 0x0d13180e3b229eff, 0x4d6d38ff0d0e7705, 0x0111379ccf78ff3c, 0xffbbb83e2aff0d1c, 0x0d450b0b3cd7c3bc, 0x0d32070b0d37000f, 0xfa27ffbc3c270dff, 0xf2ff0d40050b3c27, 0xb9b3796cff3bf2a8, 0x0d52220e0d57000c, 0xb47fffbc11c740ff, 0x8eff0d601f0eba2d, 0x3bdd473bff3d7757, 0x0dd57f040ee81f0e, 0x0d95030b0dc70107, 0x0d8269040d879605, 0x0cabff3a177400ff, 0xe0ff0d9000023959, 0x3b35caa0ff3b476b, 0x0da269040db0050b, 0xab000d3b3e9ee0ff, 0x35ff3af6b060ff0d, 0xff0db9070b3b2459, 0x0dc20a0bba1eb000, 0x66b0ff3b726c00ff, 0x20ff0dd0010b3b0d, 0x3b62fd50ff3b720a, 0x0e18b6040e5c000c, 0x0df3110e0df8b404, 0x0cd924ff0dee050b, 0x20ffba65a23bff39, 0x120e0a0008bbf87f, 0x3b9253c8ff0e0500, 0x1300023bec8ae8ff, 0xc8ffbb0c9015ff0e, 0x0e0e3ccb043b5758, 0xff0e29000b0e2e17, 0xea481aff3b6c1b21, 0x151fff0e37030bb9, 0x123c0a6274ffba2b, 0xff0e490e0e0e4e00, 0x836f60ff3ad38b0c, 0x7868ff0e57080eb8, 0x0bb92d61afffbba3, 0x0e0e8400080ea402, 0xff0e71000f0e7603, 0xa10b70ffbb85bd28, 0xcdc5ff0e7f01123a, 0x0ebaf32df8ffbc1f, 0xff0e91010c0e9603, 0xc16215ffba8885b0, 0x2ccdff0e9f000f3a, 0x0e3bdd2680ff3986, 0x0b0eba010c0ec806, 0x3a8f1157ff0eb505, 0xc3030bba218ebbff, 0xd5ffbbe45528ff0e, 0x0c0eda070ebab84e, 0x3b320234ff0ed501, 0xe30b0e3c68c63dff, 0xa1ffbaafbe98ff0e, 0x0e0f6f0002399679, 0x070f2f0b0b0f3d2b, 0x120f0a000c0f1801, 0x3b383000ff0f0500, 0x130011389a499aff, 0xb7ffbb248000ff0f, 0xff0f21230eba4e50, 0x0f2ac704bbe9c600, 0x0f00ffbb3a5c80ff, 0x80ff0f3800123a69, 0xba17c000ffbbc2dc, 0x0f53030b0f58c004, 0x9c6a00ff0f4e9605, 0x00ffba8a6c00ffba, 0x0b0f6a0107bae97a, 0xbb33c600ff0f6503, 0x3000ffbb6e2400ff, 0x260e0fe40008baa9, 0xcd040f9b000c0fa9, 0x2bff0f8801070f8d, 0x3ba7d960ff3a01c7, 0xc09880ff0f960012, 0x220e3c39ee68ff39, 0xff39ab2400ff0fa4, 0x0fcd000cbbc9d800, 0x0fba96050fbf2b0e, 0xb755ffbbb6f26cff, 0xe0ff0fc8010b3b77, 0x3b8b44b8ffbaa568, 0x0fda01110fdf050b, 0xb32bffbbbfbd98ff, 0x0b3c1516d0ff3b59, 0xff0ff1030b0ff605, 0xe6ec20ff3ada3380, 0x00133b8d1d20ff3a, 0x03e8000000080000, 0x1124000000010000, 0x0007000000000000, 0xc70404848c0508af, 0x6a05012cc1040248, 0x3d01005ca60400a0, 0x6d04002e3901003c, 0xffb8eb643cff0029, 0x00378f0439fbf8ed, 0x4460ff3a348bf8ff, 0x1106004e070ebb56, 0xff3a6a3c34ff0049, 0x00570d0ebac539d9, 0xf6ceff3a7730a2ff, 0x370500800012ba61, 0xeaff006d0e0b0072, 0x3c154c45ff3d5b73, 0x037ebcff007b070d, 0x6905bb939b32ff3b, 0xa6ff008d68050092, 0xbbcd8289ff38810b, 0xa38700ff009b030b, 0xc0043c3fadecffbc, 0x720500c8790500e8, 0xadff00b5930400ba, 0xb9c8765bffb9ede0, 0xc481b8ff00c3000d, 0x000939e2c9ceff3a, 0xa6ff00d5bf0400da, 0xb94a65ceff39255d, 0x47e669ff00e31d0e, 0x0012bb3aacfaffb8, 0x000c00fe6c05010c, 0xffb96a7c00ff00f9, 0x01077f053ce99bc3, 0xaddbffbbcb1ea0ff, 0x0109011e060d3a79, 0xffbac6e93fff0119, 0x012788053b8ef820, 0x672fffbb63eb54ff, 0x770501bc79053cf6, 0x001201580b0b0178, 0x0cff01457105014a, 0xbc286081ff3b78ed, 0xa6a7feff0153060d, 0x02083b3b692bff37, 0x16ff0165320e016a, 0xbbdb5f2cff3accc9, 0xe40875ff0173010c, 0x2f0ebcb33ae4ff3b, 0xc304018e2b0e019c, 0xff3c166c1bff0189, 0x01970009bb4f71be, 0x0c10ffbcd72d83ff, 0x030b01ae00063c32, 0xff3c51f65eff01a9, 0x01b702063ae1dd6f, 0xbfa0ffbc692815ff, 0x080b0204000fbd75, 0x820501d6010801e4, 0xffbbfc0f91ff01d1, 0x01df020b3b4c00cf, 0x6e16ff3c2429feff, 0x010901f60006bc7e, 0xff3c7d3ba7ff01f1, 0x01ff0806bbb7b207, 0xdbe8ffbc9b5881ff, 0x090b0228c6043adf, 0xf7ff02158a05021a, 0xbb91b38cff3b822e, 0xcb73beff02232b0e, 0x2f0e3b93dc5cffba, 0xeaff02357f05023a, 0x3b25edf7ff3cde91, 0x951b82ff0243060d, 0x8805bd3a64caff3b, 0x280e02dc0a060368, 0x220e027881050298, 0x90ff0265c904026a, 0xbc978995ff3b14bd, 0x6e42d1ff02738005, 0x84053d197b4cff3a, 0x98ff02850b0b028a, 0x3c4bbcfeffbb8c97, 0x81d3bdff02938705, 0x68053bd1206effbb, 0x040d02aecb0402bc, 0xffbbd178f4ff02a9, 0x02b7020d3b9ab3c2, 0x97d3ff3bc1758aff, 0x300e02ce8105bbae, 0xff3a9976d4ff02c9, 0x02d7010cbafb9cab, 0x3ce4ffb9c589c6ff, 0x030d0324050d3b15, 0xcb0402f6030b0304, 0xffbbc628eaff02f1, 0x02ff1e053baeaf7b, 0xba9cff3d77c55aff, 0x630503160d0e3b8f, 0xff3a260312ff0311, 0x031f0b063d3f441b, 0x60ddffbd025f4cff, 0x320503480111bc61, 0x6bff03351105033a, 0x3af0dc66ffbb2109, 0x4edc21ff03431706, 0xc9043a5605ebffbb, 0xe5ff03555205035a, 0x3c2ec425ffbc6bea, 0x79c84bff03635405, 0x0112bc29e7fbff3c, 0x010803b4000203f8, 0x00080386140e0394, 0xff3bbd7321ff0381, 0x038f2b0e3d764b7c, 0x1892ffbb23402eff, 0x010c03a62b0e3b47, 0xff39594de8ff03a1, 0x03af0b0bbbe1a001, 0x7ec3ffbbd2ae71ff, 0x890503d80008bcc4, 0xcbff03c5c80403ca, 0xbccbac17ffba78a8, 0x573f92ff03d30b0b, 0x000c3b514ae7ffbb, 0x20ff03e5010803ea, 0xb6c97562ffbc15b6, 0x3ec516ff03f30108, 0x310e3a8c2ce1ff3c, 0x8a05042000090440, 0x80ff040d00080412, 0xbc47ba31ffbb216a, 0x4e10ebff041b0002, 0x000d3c4953cdffbc, 0x80ff042d02090432, 0xbcbe7e80ffbbd53e, 0x188000ff043b1f0e, 0x320e3c275554ffba, 0x090b0456020d0464, 0xff3ba24ae0ff0451, 0x045f030b3cd7ed70, 0x3678ff3e0cd794ff, 0x030b0476000d3d0d, 0xff3d4141d0ff0471, 0x047f330ebd1329ab, 0x6aa7ff3c8f4e60ff, 0x010c06858d05bb4c, 0x0108051c060d05a8, 0xc90404b8230e04d8, 0x0bff04a5c80404aa, 0x3b8fc033ff38fe18, 0x113d7eff04b30112, 0x250ebb7c3599ff3b, 0xf5ff04c5030b04ca, 0xbce87023ffbaa0c8, 0x557e52ff04d3040b, 0x000f3ad75968ffbb, 0x020804eebf0404fc, 0xff3b6f30fbff04e9, 0x04f702083caa4f0a, 0x1d6cff3c16edf9ff, 0x000c050e0002bc52, 0xffbb5e1473ff0509, 0x0517000ebc8c0e93, 0x640affbcb613d8ff, 0x0009056401083932, 0x0a0b053600120544, 0xffbb7c7832ff0531, 0x053f030e3aed02a4, 0xab77ff3c327dceff, 0x070e0556ac04bb47, 0xffb9d7cd85ff0551, 0x055f010e3c96d0b3, 0x00e9ff3c19f2b8ff, 0xbc0405880012bb57, 0x6dff05750002057a, 0x3b63b585ffba57cd, 0x8f5b52ff0583c004, 0xc904bb2cd2f0ffbc, 0x6fff0595c404059a, 0xbbb3ec49ff3b27a2, 0x1b6f52ff05a3000c, 0xbc043ca1b1edff3b, 0x010b05f4070d05f9, 0x7d0405c6060d05d4, 0xff3ba9fb88ff05c1, 0x05cfa704bcd36e11, 0xaf93ff3c23d21bff, 0x000805e60111bce0, 0xff3b01612dff05e1, 0x05ef0008bba08efe, 0x9801ffbc18dd76ff, 0x043d09260cff3c85, 0x080621050b0641bf, 0xff060e060d061300, 0xd1a9e1ffbc150c6d, 0xbd90ff061c030e3a, 0x093d48a1ccffbc81, 0xff062ebd04063300, 0x4ccf13ffbc1ae4a0, 0x6b74ff063c01113c, 0x043c5cf0d0ff3d09, 0x0906570e0e0665c2, 0xbcf01e4dff065201, 0x600008bc65a949ff, 0x70ffbb8a5f8aff06, 0x0b06770011bcb8d9, 0x3c00c577ff06720b, 0x80030bbaa4fdf4ff, 0x3bff3b773c4eff06, 0x0d07939305bb458f, 0x0206d50208070702, 0x0406a7900506b500, 0xbb46d716ff06a29d, 0xb091053ba1ed63ff, 0xf0ffbbea9228ff06, 0x0506c7020b3a49a8, 0x3bb13366ff06c292, 0xd0c604bbf65c2cff, 0x0fffb920f06dff06, 0x0e06f99205bb8b8f, 0xff06e68e0506eb23, 0x815bc0ffbafeec00, 0x3780ff06f48f053a, 0x0bbaddbd00ffbbce, 0xbb638300ff070201, 0x4f050bbb85dd00ff, 0x217004072f040b07, 0x82f8ff071c030d07, 0x043a2a40b1ffbcb0, 0xb9c14f6cff072acc, 0x4100023b3623e8ff, 0x0440ff073cc70407, 0x0fbcbf7652ff3bb7, 0x3c806a78ff074a00, 0x730c0bba29763dff, 0x6091050765920507, 0x26ffb836e0a1ff07, 0xff076e6d0439f40e, 0x8fca0aff3ad74edb, 0x80010c0785c604b9, 0x64ffb9eec5a2ff07, 0xff078ec804bb532f, 0xfcbac8ff3c2684b6, 0xdf00080823020db9, 0xb11f0e07bf050b07, 0x4430ff07acc40407, 0x0e3c04c860ffb947, 0xbc98195cff07ba22, 0xd1010e3a79ed7bff, 0xd814ff07cc000907, 0x0ebc8b4d17ffbad4, 0x3c172039ff07da04, 0x030208ba000ec7ff, 0xf0030b07f5170e08, 0x11ff3b1d2062ff07, 0xff07fe050bbb12c4, 0x0b601dffbb567b0c, 0x1094050815c4043b, 0x00ff3b4d4755ff08, 0xff081e0002bb2111, 0xde7280ff3c73fb00, 0x4b010b086b0e0b3b, 0x38110e083d180e08, 0xb1ffba27ac23ff08, 0xff084600093c9019, 0x4cb126ffbba480a3, 0x580b0b085d00123c, 0xa9ff399e3155ff08, 0xff0866170ebc880b, 0xed1ec8ffb7ad16a7, 0x81010c088f9405b8, 0x8f78ff087ca40408, 0x0239d6b1c5ffbbbd, 0x3c15418bff088a00, 0xa11d0ebc512a6bff, 0x0234ff089c100b08, 0x0e38b4b74eff3bbe, 0x3ba4c1f2ff08aa22, 0xf0270ebb69e0eaff, 0xaa000b0ac6070d0c, 0x072e04094b4b0409, 0xd96a0508e7000d09, 0xf16eff08d43f0108, 0x05bb206d82ff3bcc, 0x3d795b68ff08e27f, 0xf9060d3d4c830eff, 0x7125ff08f4160608, 0x013bff30a6ffbb07, 0xbd5edf6fff09023f, 0x2b0e06bd12ae79ff, 0x183f01091d020709, 0x84ffbd9b1914ff09, 0xff0926080ebd2a72, 0xfd03dbffbbb68269, 0x38000c093d010ebc, 0x21ff3c3731a5ff09, 0xff09460002bbdd4a, 0xf2e6b9ffbc2c7a65, 0x61020709663c01bc, 0x4b1cff095c040509, 0xffbd870856ffbd7f, 0x098a1806bd68d4b2, 0x0977030e097c180e, 0x4dd7ff3baa4ba7ff, 0x34ff098502053c69, 0xbc967ce8ffbce0cd, 0x09970207099c020d, 0x5f7bff3b115db5ff, 0x49ff09a596043c0d, 0xbd523598ffbbc0ee, 0x09f6ae040a3a5205, 0x09c80d0609d61606, 0x069671ff09c3a904, 0x6004bb70b558ff38, 0xffbb4bd2a4ff09d1, 0x09e8020e3b0ea59b, 0x9cac3eff09e3000e, 0x18063b97f7a4ff3a, 0xffbb2eab4cff09f1, 0x0a1a5105bc62f8ba, 0x0a0702070a0c4f05, 0x7847ff39ce022bff, 0xaeff0a15220eba8f, 0x3d11ee83ffbb3e27, 0x0a27000f0a2cb804, 0x0875ffbdbc4276ff, 0x86ff0a35230ebd1d, 0xbe8304f5ffbbf2b7, 0x0a626e050a820111, 0x0a4fc6040a54010c, 0xec87ffbac147e3ff, 0x6fff0a5dbf04bbda, 0x3b4fbfedff3789df, 0x0a6f030b0a74010c, 0x8919ffbadab458ff, 0x4fff0a7d720539ba, 0xba9c4b48ff3bdc80, 0x0a9889040aa6050d, 0xa5493aff0a93070e, 0x040bbb77d95eff3b, 0xff3af6c929ff0aa1, 0x0ab89f04bb850180, 0xea99b1ff0ab38605, 0x030bbb78b33cff3b, 0xff3bce1150ff0ac1, 0x0be67305bb355686, 0x0b1688040b5a190e, 0x0ae863040af66905, 0xbefac4ff0ae36104, 0x3e01bc37f186ff39, 0xff3a449c98ff0af1, 0x0b0800123c0b93c1, 0xa3e00bff0b03000c, 0x060e3c4b965dff3b, 0xff3d605ffdff0b11, 0x0b3a0d0ebd5feeb8, 0x0b27070e0b2c080e, 0x9f68ffbc50dd45ff, 0x09ff0b350a0b3ca0, 0xbcdaff9cffba3a10, 0x0b47170e0b4c000c, 0x0fd1ffbb91e46fff, 0x19ff0b550e0e3c08, 0x3bf9e6f3ff3cd31a, 0x0b820e0b0ba2b204, 0x0b6f6e040b748a04, 0xdd53ffbb919c8fff, 0xfbff0b7dac043bfd, 0x3bf62d0fffbc58c4, 0x0b8fac040b941e0e, 0xe343ffbd9fd3ecff, 0xbfff0b9d110bbc6d, 0xbc105da2ffbd097e, 0x0bb801080bc61e0e, 0x5d8416ff0bb30c0b, 0x02073dc7d5f8ff3d, 0xff3ccc9debff0bc1, 0x0bd81f0ebc73fd8b, 0x6c19c6ff0bd36305, 0xb304bcba03e3ffbd, 0xff3d2ee65cff0be1, 0x0c7600113a72cf2f, 0x0c12000c0c32030e, 0x0bff000b0c04000f, 0xac88ffbc267f2eff, 0x32ff0c0d8d04bd5a, 0xbbcd6afbff3c30b7, 0x0c1f030b0c24000e, 0xc78fff3aeb8909ff, 0x36ff0c2d050b3c95, 0x3d4a2014ff3cabb9, 0x0c48000c0c56070e, 0x45874cff0c430107, 0x010c3b9b8bf5ffbc, 0xffbd241bacff0c51, 0x0c68080ebda52459, 0x9202d1ff0c63030b, 0x090b3c97ba96ffbb, 0xffbb0e6a86ff0c71, 0x0cac8b05bc23c23c, 0x0c90b3040c9e070b, 0x76fe2aff0c8b000c, 0xb7043cb27f60ff3d, 0xff3dcd6008ff0c99, 0x0ca79b043de5a695, 0xc9c0ffbd17ce60ff, 0x020e0cd0bf04bb84, 0x75ff0cbd8c050cc2, 0xbb358a89ff3cc9a7, 0x4f9d36ff0ccb030b, 0x080e3ad3ac00ff3d, 0x00ff0cdd02070ce2, 0x3c9bb200ffbb8207, 0xaceb78ff0ceb030b, 0xcb04bd0e2feaffbc, 0x15050e14130b0f30, 0x12030d4416060d88, 0x2b0e0d1663040d24, 0xffb9f8cb51ff0d11, 0x0d1f2e013b1b02cb, 0x61a8ffba853c72ff, 0x3f010d360008bc2a, 0xff3958bb23ff0d31, 0x0d3f0606bc13103f, 0xab8eff3bc6a5fbff, 0x9c040d68bf043a29, 0x09ff0d5502070d5a, 0x3d68632aff3b9e52, 0x1d2026ff0d630305, 0xc3043ddb6bb0ff3e, 0x9cff0d752a0e0d7a, 0x3dc1c5c4ff3a82f0, 0x1e79a0ff0d83c604, 0x0012bcc90638ffbc, 0x02080db00a0b0dd0, 0x15ff0d9d2a0e0da2, 0x3a6c0d92ffbc4776, 0x552174ff0dab2a0e, 0xa7043c8dea5fffbc, 0x90ff0dbd000c0dc2, 0xbcb8042cffbbca74, 0x662779ff0dcb0002, 0x360ebbc12a18ff3b, 0x010b0de6060d0df4, 0xffbbc136e5ff0de1, 0x0def280e393f5bd3, 0x665effbd0128dfff, 0x000c0e06000f39fa, 0xffbcce2783ff0e01, 0x0e0f0006bbc22f4b, 0x5c6bffbccdbf94ff, 0xad040ea4bc043c34, 0x140b0e4023050e60, 0x39ff0e2d80040e32, 0x3be71b93ffbcf996, 0x18049fff0e3b3601, 0x0006ba301e9affbb, 0x4bff0e4da7040e52, 0x3cc0c901ffb9f15d, 0x02c79dff0e5b0107, 0x0105bcd3eca7ffbc, 0x2e0e0e7607060e84, 0xff3e2a02fbff0e71, 0x0e7f000cbc36dc54, 0x8399ffbbafb670ff, 0x09060e963505bd48, 0xff3c18b22cff0e91, 0x0e9f0107bc875c9e, 0xbf2eff39ab89caff, 0x01110eec060dbc6c, 0x01120ebec0040ecc, 0xff3cfd462bff0eb9, 0x0ec7c604bb552d90, 0x14bbffbbbbec91ff, 0x43050edec0043bd0, 0xffbb9aef76ff0ed9, 0x0ee70008bd5b9318, 0xde03ffbcf7d98cff, 0x280e0f1000123c10, 0x01ff0efd000c0f02, 0x3d42f9b1ff3bbea7, 0x06e3adff0f0bbd04, 0x0108393470d3ff3d, 0x66ff0f1d51050f22, 0xbd2e7964ffbe0f9d, 0xa4b6d3ff0f2bbd04, 0x0c053bbe8e80ffbd, 0x2a0e0f8e010c1008, 0x23ff0f450d060f4a, 0x3cba70d0ffbdfe1c, 0x0f6002070f6e300e, 0x334420ff0f5b020d, 0x020d3de64e48ffbc, 0xffbcc91290ff0f69, 0x0f80340ebb777120, 0xa6ee8aff0f7b0002, 0x3203bdcdc2aaffbd, 0xffbd8561a6ff0f89, 0x0fcd00023dfc7b7c, 0x0fa829030fb60506, 0xc52102ff0fa30b0b, 0x350ebc10c499ff3d, 0xff3cfc5db0ff0fb1, 0x0fc801113e33047d, 0x34ff00ff0fc30207, 0x08ffbd9c86fbffbd, 0x050fe80a063d10b4, 0x3c98678bff0fda07, 0x03764dff0fe30111, 0x0108bc0ee300ff3e, 0x60ff0ff5020d0ffa, 0xbde6e056ff3d1293, 0x46aca9ff10030b0b, 0x290e3db28c25ffbd, 0x01081054280e1098, 0x00111026cc041034, 0xffbc744334ff1021, 0x102fcd043cb8678d, 0xa89effbd4e00aeff, 0x000c1046060dbbb6, 0xff3c0f1cc7ff1041, 0x104f070d3d30f51a, 0x1cc8ff3b26b9a5ff, 0x000c1078cc04bcf6, 0x2eff10650b0b106a, 0x3d3e50d3ff3cb394, 0x851850ff10738705, 0x01073de6b5a6ff3d, 0x42ff10857a05108a, 0x3cb17ab6ff3db782, 0x438ce8ff10930008, 0x63053b127270ff3d, 0x600510c0300e10e0, 0x06ff10ad5e0510b2, 0x3d19f165ffbbaa79, 0x173f97ff10bb0012, 0x350ebda6077dff3c, 0x86ff10cd010710d2, 0x3c4d343dffbb7efd, 0x4f9ec2ff10db0111, 0x010b3bc4eb22ffbc, 0x810510f62b0e1104, 0xffbdb07658ff10f1, 0x10ff020dbd7041b6, 0x37fcffbc6b26a3ff, 0x2a0e11166c053d26, 0xffbd6d44aaff1111, 0x111f2a0e3c6bdf3b, 0x4ee1ffbcb31229ff, 0x000800000013bab5, 0x0001000003e80000, 0x0000000010550000, 0x8c05088b00070000, 0xc1040248c7040484, 0xa70400a06a05012c, 0x9c04003ca604005c, 0x92ff00296904002e, 0x3988a338ffb838a7, 0x2c07f6ff0037a204, 0x030d3aba5818ffbb, 0x40ff00492905004e, 0x3c816fb5ffbd2b2f, 0x895825ff0057220e, 0x6205bbfc3401ff3b, 0xa9040072010d0080, 0xff3b4611a0ff006d, 0x007b0111bc14fc9f, 0xa5b1ffbac42ec7ff, 0x67050092000f3b1d, 0xff3ca3ca1fff008d, 0x009b130b3b149a8e, 0x3fd1ffbad76262ff, 0x790500e8c0043b92, 0xb00400ba120e00c8, 0xff395d55a8ff00b5, 0x00c39b04bb5063b8, 0x1a85ffba097eb1ff, 0x0f0e00da0209b7eb, 0xff39de5235ff00d5, 0x00e37b05b9cf263b, 0xfd17ffbb8b5e75ff, 0x230e010c7805ba86, 0x26ff00f9000800fe, 0x3c992a85ffbc87f2, 0x69543fff01070e0b, 0x010cbc2fac34ff3b, 0x1fff0119030b011e, 0xb9cf2d50ff3ba7d1, 0x9b6c22ff01277b05, 0x79053a1de72dffbc, 0x0b0b0178770501bc, 0x300e014a00110158, 0xffbb8c457dff0145, 0x01535e053c519be9, 0xf354ff3a31cb01ff, 0x6305016a0208ba8c, 0xff3b314230ff0165, 0x0173010cbb80434b, 0x4e9aff3bcd3abbff, 0x7805019c230ebca1, 0xd2ff01890108018e, 0x3bcf2729ffbbf44a, 0x656df6ff01971f0e, 0x0011bd01c0cfff3a, 0x0fff01a9010c01ae, 0xbd0529e2ffba28db, 0xf62962ff01b7280e, 0x0002b7024eabff3c, 0x860501e4c3040204, 0xb2ff01d1180e01d6, 0xb8b36d1fffbc484f, 0xfcb9f4ff01df190e, 0x0b0bbb301441ff3b, 0x09ff01f18b0501f6, 0x3cd61d62ffbad58e, 0xa4497eff01ff120b, 0x190eba5521b6ff3c, 0x0108021a0b0e0228, 0xff3b0f172eff0215, 0x022381053c9340e3, 0x17daffbc1683a9ff, 0x7b05023a010cba32, 0xff3c2c7ce3ff0235, 0x02430009bb3009bb, 0x8897ff3cae787fff, 0x0a0603688805bc4e, 0x81050298280e02dc, 0x7f05026a01080278, 0xffbc4a0018ff0265, 0x0273220e3c1c3301, 0xb177ffbb8edcc6ff, 0x8205028a060d3b8f, 0xffbd3531fdff0285, 0x0293030b3b9dd18f, 0xfc9bff3c6de046ff, 0x610502bc6805bb0e, 0xa7ff02a9020802ae, 0xbb88c36aff3b05ba, 0xfd585dff02b7300e, 0x8105bace9c6dff3c, 0x01ff02c96d0502ce, 0x3951660affbb6fc9, 0xb1c9a6ff02d7010c, 0x000f3b065067ffb9, 0xc9040304050d0324, 0x9fff02f1320502f6, 0x3c4cfe03ffbb75e9, 0xba079bff02ff2905, 0xc904bb266979ffbc, 0xefff0311070e0316, 0xbc872c09ff3bf0e3, 0x9f8f2fff031f280e, 0x39053cff7c2aff3b, 0x1806033a00080348, 0xff3b8f3471ff0335, 0x03431105b70f3f25, 0x753affbc09632fff, 0x0b06035a01113992, 0xff3d19d558ff0355, 0x03631006bb27ebdf, 0xe4c0ff3c2acedcff, 0x000203f801123aa3, 0xc8040394cc0403b4, 0x4bff03812b0e0386, 0xbbad5620ff3be12d, 0xdaa897ff038f8b05, 0x0b0b3808baabffbb, 0xb0ff03a18b0503a6, 0x3b1e7d81ff3c28d8, 0x32f945ff03af8905, 0x0008ba01c1b1ffbc, 0xc80403ca890503d8, 0xffba5fcacbff03c5, 0x03d3030bbcb74e17, 0x6495ffbc10feafff, 0x010803ea000c3a6c, 0xffbc06bd7fff03e5, 0x03f38a05b6b56e8f, 0x7fd1ff3c08ea3dff, 0x00090440310ebb21, 0x010b0412020d0420, 0xff3d258c00ff040d, 0x041b8a05bb359500, 0x2b55ffbc177f7dff, 0x8a0504320209baf7, 0xff3c4133d1ff042d, 0x043bc804bc921970, 0x1970ffbc05b3a5ff, 0x020d0464320e3c83, 0xb0ff04518a050456, 0x3b921060ff3cc255, 0xfd8408ff045f030b, 0x020d3cfe2ed0ff3d, 0xe7ff0471340e0476, 0x3bc22dc6ffbc267d, 0x084fd0ff047fc804, 0x8d05bb0b2989ff3d, 0x550405690108067c, 0x000c04cf000804dd, 0x000f04aa4d0404b8, 0xff3c230e62ff04a5, 0x04b3020d3910e8d5, 0x5375ff3c101596ff, 0x28ff04c10111bc9d, 0xff04ca48043c4fba, 0x532370ffbc987c43, 0x2bebff04d8000cbd, 0x043d665664ff3c68, 0x0e050501120525c8, 0xff04f2140b04f708, 0xb72df0ffb98214c9, 0xc7e6ff05002b0e3a, 0x04bc359e07ff39e1, 0xff05120002051757, 0x930430ffbdbbb644, 0xe000ff0520010e3c, 0x11badbce69ff3c49, 0x04053b0008054900, 0xbc9dbecbff0536c9, 0x44ca043a92b03bff, 0xb5ff3c9f0a40ff05, 0x0d055b060dbabc72, 0xbc962a70ff055602, 0x6400083a809bb0ff, 0x2cffb99b18ceff05, 0x0e05f0030bbcf2b6, 0x040595b20405b507, 0xff0582860405879e, 0x3871baffbb8a7902, 0xbcacff0590ad043b, 0x0cbcd750a3ff3c99, 0xff05a2000c05a701, 0xaabcc3ffbbfce68d, 0xcd38ff05b002083c, 0x043ce2ee88ff3d83, 0x0805cb010c05d0bc, 0xbbb04797ff05c602, 0x286bff3c597091ff, 0x000f05e202083d7e, 0xff3cdb03edff05dd, 0x05eb000fbacc627d, 0xe9e1ffbd577aa3ff, 0x040b0638000fbacb, 0x0d0e060ab5040618, 0xff3cdee2abff0605, 0x0613020d3d01d978, 0x4755ff3c075dd5ff, 0xbc04062aca043ca4, 0xffbaafe4d3ff0625, 0x0633050b3c0989d4, 0x6b60ffbd48aa88ff, 0x220e065c000cbc55, 0x61ff06490012064e, 0x3b20201bffba8af3, 0xf5f5bfff0657ca04, 0x050e3bd93fbfffbb, 0x60ff06699704066e, 0xbc0b8244ffbd12ea, 0x3957ddff06770d0e, 0x9305bbb565afff3b, 0x020806f5020d0781, 0x1d0e06acbe0406cc, 0x9dff0699a004069e, 0xbac54501ff3a03c1, 0x5d6415ff06a7250e, 0x000dbba4f74fff3b, 0xaeff06b9070b06be, 0xbc1638f2ff3c1225, 0x4dd33dff06c79005, 0x000f3afbcdf3ffbb, 0xb30406e2020b06f0, 0xffbbb016a0ff06dd, 0x06ebbf043aaad9ab, 0xad33ff3b68fcbaff, 0x0bbbaf47dcffba53, 0x0b071d090e073d05, 0xff070a0209070f02, 0x9d8d2dffbb17753f, 0xe56fff0718080ebc, 0x0f3ccdda09ff3a3a, 0xff072a170e072f00, 0x3cbdc5ffbc2ffe73, 0x6bdaff07380b0e3b, 0x0b3a345582ffbbd6, 0x090753190e07610b, 0x39264f58ff074e00, 0x5c0012384b3d37ff, 0x49ffb99aa187ff07, 0x040773c904b94a0f, 0x372619cbff076ec3, 0x7ccb04ba291fb9ff, 0x33ffba172139ff07, 0x0807ff020d39d614, 0x0907ad050b07cd00, 0xff079a030e079f00, 0xe0f245ffbb89e799, 0x6494ff07a8030e3a, 0x05bb872571ff3b6f, 0xff07ba000c07bf95, 0xe40076ffbc3e726c, 0x0d9eff07c8000c3b, 0x0ebb9f543fff3b1b, 0x0407e3230e07e82a, 0xba229512ff07dec4, 0x4ef8ff3a975134ff, 0xc0ff07f1ca04bc7f, 0xff07fa94053c015d, 0xc225c0ffbbaeca80, 0x276d040847130b3b, 0x1400120819011208, 0xf3ffbbb95a3bff08, 0xff08226b043b1978, 0x8e72f6ff3d236164, 0x34000c0839000fbc, 0x63ff3b734b7eff08, 0xff0842230eba0d34, 0x8ac6a1ff383663c9, 0x5dc604086b0108ba, 0xfb8eff0858c10408, 0x0d3a920fb9ffba92, 0x3a7d4969ff086606, 0x7d1d0eba04ddbfff, 0x7430ff0878070e08, 0x02bbeecae5ff3b09, 0xbd1543f6ff088600, 0x0b95053d779654ff, 0xb398040acfc6040d, 0xe380050927930409, 0xb52b0e08c3021108, 0xcd20ff08b0830408, 0x04392a38f0ffb760, 0xba47146aff08be90, 0xd50b053a5c7bf8ff, 0x0722ff08d03b0408, 0x123c885e8bff39b9, 0xbc0433f5ff08de02, 0x078f053bb40704ff, 0xf4020708f9010c09, 0x42ff3a290d29ff08, 0xff0902001239f08b, 0x520318ffbcab2937, 0x14000e0919000cbb, 0xcfff3b8385ccff09, 0xff0922020bba8fdf, 0xa8517fff3c1bb3a6, 0x4f000c096f0a0bbc, 0x3c96040941080b09, 0x43ffba3740edff09, 0xff094a020d3bd419, 0x5cfef4ff3cec3282, 0x5c96040961070bbc, 0x13ffbbc1425cff09, 0xff096a070d3aa878, 0x9a8ddfffbc9742b6, 0x8501110993050e3d, 0x6bd4ff0980020e09, 0x063affcfb8ffbb98, 0xbd188e97ff098e09, 0xa5070e3b94c5f6ff, 0xca5fff09a0070d09, 0x0ebe54ea33ff3c2b, 0xbc94a5d8ff09ae08, 0x43070d3ac7910dff, 0xdf130b09ff140b0a, 0xcca60409d1c10409, 0x7cff3a45cf48ff09, 0xff09da030dba0b17, 0x01f36bff38adc4ae, 0xec001209f19c0439, 0x6effbc09521aff09, 0xff09fa030e3d17c5, 0xc076acff3cdb790a, 0x1500050a232905bc, 0x675fff0a100b0e0a, 0x03bcef31b0ff3b28, 0xbd9488f0ff0a1e03, 0x3599043abc7a7fff, 0x9bd0ff0a3000080a, 0x08bc2aaec2ff3bfc, 0x392a684bff0a3e02, 0x8ba1043b6e538cff, 0x5d080e0a6b9e040a, 0x4f18ff0a58000c0a, 0x083cc0f283ffbbbe, 0xbc4e8b81ff0a6600, 0x7d00083b2bf6dfff, 0xbe80ff0a785b050a, 0x0cbc9c31eaffbd75, 0xbb86b61cff0a8601, 0xaf3401bca12d68ff, 0x9c15030aa12d010a, 0x8cff3d9e9e0cff0a, 0xff0aaa1f0e3c4a8c, 0xe770bfffbdda7470, 0xbca3040ac16805bc, 0xa1ffbc3a19dbff0a, 0xff0aca080e3ba6d4, 0x6592cdff3baa5395, 0x631f0e0bef0108bb, 0xff1d0e0b1fcc040b, 0xec000f0af1170e0a, 0x51ffbac6d711ff0a, 0xff0afa75053a16fb, 0x0240a1ffbc0d4733, 0x0c030b0b11060dba, 0x22ff3c929e91ff0b, 0xff0b1acb04bce934, 0x292f61ff3c417ac9, 0x3501070b43000c3d, 0x6876ff0b301d0e0b, 0x05bc79e529ffbb05, 0x3a8fdf80ff0b3e92, 0x558a053b9faadcff, 0x8935ff0b50070d0b, 0x0e3cd58852ffbc1b, 0x3b7928bcff0b5e0d, 0xab7805bad1ad78ff, 0x7d00080b8b6c050b, 0x78e5ff0b78330e0b, 0x0cbb87ad2eff3afe, 0x3b51e535ff0b8601, 0x9d6e05bb09720fff, 0x0d15ff0b98cc040b, 0x02bcf66d11ffbb00, 0xbb10818bff0ba600, 0xcf79053bd98f3eff, 0xbc00020bc1280e0b, 0x34ffbc753ef6ff0b, 0xff0bcacd043cac76, 0xcd2f18ffbbdce507, 0xdc7c050be103063c, 0x3fffbb636aafff0b, 0xff0bea2a0e3a5c58, 0x4698f4ffba89bb80, 0x3b060d0c7f7505bd, 0x0d3b010c1b07050c, 0x2cd0ff0c0836010c, 0x0e3c22d090ff3cdc, 0xba8855d7ff0c1630, 0x2d6505bc938a9aff, 0x0b9dff0c2860050c, 0x0ebb6a8927ff3a23, 0xbc26b17fff0c3619, 0x5fc9043959d073ff, 0x4c4a050c5150050c, 0xbeff3abe8474ff0c, 0xff0c5a74053d1bf9, 0x370f4fff39163f02, 0x6c43050c714c05bc, 0xa0ffbc5d67d9ff0c, 0xff0c7a4f053cbb84, 0xbd02bfffbceb2380, 0xa701070cc7190e39, 0x940b0b0c9978050c, 0xd1ffbd9703fcff0c, 0xff0ca20012bbed44, 0x136f1bffbaf27c9e, 0xb4100b0cb9180e3b, 0x5fff3b0a44f5ff0c, 0xff0cc20112bb368a, 0xc1fb59ffbba60f7a, 0xdd02080ceb0e0b3c, 0x6382ff0cd801070c, 0x0f38caeac6ff3ab0, 0xbc45620aff0ce600, 0xfd000c3aeedd2eff, 0xe4e5ff0cf8c8040c, 0x07baf651adffbc54, 0x3c31b55dff0d0602, 0x271d0ebcc73568ff, 0x91110e0e0b000c0f, 0x3f01070d4d7f040d, 0x2c96050d31030b0d, 0x18ffb9761a00ff0d, 0xff0d3a070b3b0a7d, 0x0ba9c8ff3aa2eb1b, 0x3bc0ff0d4800023b, 0x0e3b38c750ff3b2b, 0x080d63060e0d7107, 0xba042345ff0d5e00, 0x6c00113a9106dbff, 0x99ffbbc52fb2ff0d, 0x080d83060db9eb7d, 0xb8762243ff0d7e00, 0x8cc804bb35d92fff, 0x03ff3c2b6d12ff0d, 0x020dc7c404b94982, 0x050dab030b0db000, 0xbcaf6d50ff0da696, 0xc000ffbc7805c0ff, 0x000f0dc20107b88e, 0xffbb0f7320ff0dbd, 0x40cc80ffbbac6f76, 0xddc8040deb00023b, 0x8136ff0dd801070d, 0x0438af6000ff3c85, 0xbc43eec7ff0de6c9, 0xfd000f3afec4b0ff, 0xb72bff0df8010b0d, 0x0e3cbc6875ffbb4a, 0x3a8114d9ff0e0614, 0x9b020bb9f18bbaff, 0x37bc040e5700080e, 0x24000f0e29b3040e, 0x05ffbba09cb0ff0e, 0xff0e32030e3b6399, 0xc659ebffb9ae7840, 0x44010c0e4996053b, 0x20ffbbdd175aff0e, 0xff0e52000f3a8ba9, 0xed4148ff3b4973d5, 0x6d01070e7bc404ba, 0xd240ff0e6801080e, 0x0fbb0c0f20ffba36, 0x3b20f500ff0e7600, 0x8d000f3984ab00ff, 0x2000ff0e880d0e0e, 0x11b9a66800ffb8bd, 0x3bd9f240ff0e9601, 0xe3060e3ba4fc20ff, 0xb5bf040ec3010c0e, 0x3040ff0eb0030e0e, 0x04bcb64bd0ffba02, 0x3c43c315ff0ebec1, 0xd5030b3886c426ff, 0x833cff0ed001110e, 0x0ebc3f2c05ffbb95, 0xb8339964ff0ede03, 0x07070ebbf2e518ff, 0xf4030b0ef9010c0f, 0x44ffb94d81c7ff0e, 0xff0f0201123ba269, 0xf2c290ff3c83a9c5, 0x14c8040f190b0b3b, 0x78ffbb185e09ff0f, 0xff0f22080e377539, 0x5a8346ff3c9b23e3, 0xb2000c101a0b0b38, 0x4ec7040f6e050b0f, 0x44240e0f49000d0f, 0xa0ff39558d55ff0f, 0xbb8b2e40ffbab427, 0x0f5b030b0f60060d, 0xabb8ff3adeabd5ff, 0xe0ff0f6901073bab, 0xbb793cd8ffba61aa, 0x0f841f0e0f920107, 0xab2cb6ff0f7f0008, 0x230e3c3f3ad0ffbc, 0xff3aa2aa00ff0f8d, 0x0fa40002bae3bf27, 0xd38fe0ff0f9f230e, 0x060d39f55e00ffbb, 0xff3c2b7e60ff0fad, 0x0ffa050b3cbacf78, 0x0fcccb040fda030b, 0x141ccdff0fc7c904, 0x000fbb5cde00ff39, 0xff3bfe121aff0fd5, 0x0fec020db9facf00, 0x9bfe40ff0fe7280e, 0x060dbb75b400ff3b, 0xffbb9e6d4cff0ff5, 0x100c0002bc6c9888, 0x1661c0ff10070012, 0x00113703a000ffbb, 0xff3ca5d7d8ff1015, 0x1023cd043c0f5030, 0x3500023c925bc8ff, 0xa000ff1030060d10, 0x11bbb08a80ffb9c8, 0xff10420e0b104700, 0x5fed60ffbc3aae00, 0x9000ff10500e0b3c, 0x133c16e9c0ff39b2, 0xe800000008000000, 0x4c00000001000003, 0x0700000000000010, 0x0404848c0508b800, 0x04012cc1040248c7, 0x05005caa0400a0be, 0x05002e8105003c8b, 0x368f52d6ff002970, 0x37a80439bd9088ff, 0x6fffba02f066ff00, 0x04004e000f3bdaa7, 0xb9c0f71aff0049a6, 0x57a404bd2254bcff, 0x68ffb9cd98efff00, 0x050080060dbc258c, 0xff006db40400728a, 0xbe4d5affba850939, 0x7e63ff007b0b0b3a, 0x04ba8ce1c3ff3ba6, 0xff008d190e0092ab, 0x677dcfffbc1edbeb, 0x031fff009b000c3d, 0x08b98e5fe6ffbb81, 0x0b00c80a0b00e801, 0xff00b5000c00ba01, 0xbaabbfff3d0cc78a, 0xd6e4ff00c3000fbc, 0x0db8acd377ffbc7f, 0xff00d51c0500da07, 0x41bbd5ffbcbfb74b, 0x5c11ff00e386053b, 0x0e3b5129d7ffbd2b, 0x0200fe6005010c21, 0xbc5acb60ff00f900, 0x0780053b2eed74ff, 0x72ff3ca9509bff01, 0x05011e010c3b121c, 0x3729cf92ff01198b, 0x27220e3d6675abff, 0xd4ffbd83c998ff01, 0x0501bc7905bc115b, 0x0601586805017877, 0xff01456505014a0a, 0x767546ffb9e8a5d3, 0x67f5ff01530002bc, 0x0438f6a004ff3b40, 0xff0165010c016ac3, 0x61a32dffba8f2082, 0xb7cdff0173c4043c, 0x0e37c83421ffbc75, 0x0e018e2a0e019c34, 0x3935d0dbff018926, 0x970002bc88d5bcff, 0x2cff3b81b15bff01, 0x0201ae040dbbcd58, 0xbc2abc0bff01a900, 0xb778053b57c566ff, 0xbbff3c0fffebff01, 0x04020400023d7042, 0x0501d6860501e4c3, 0x3b429040ff01d17a, 0xdf8705bac8d08bff, 0x5dff3c9279eaff01, 0x0501f62f0eb942bb, 0x39d8f368ff01f181, 0xff8a05b9446efdff, 0x4fff3994a781ff01, 0x0502288a053d2a3f, 0xff02152b0e021a88, 0xd1c3e4ffb9e937f2, 0x6c95ff02231f0e3b, 0x05bc8f56a3ff3b6d, 0xff0235000f023a8b, 0x2b769affbc62283a, 0xd90eff0243010c3c, 0x0ebc997e29ffbb18, 0x0e02dc000203681c, 0x040278030d02980b, 0xff02653305026ac9, 0xeae6c0ffbc56390d, 0x7200ff0273010e3c, 0x05bc7a0105ffbb74, 0xff0285020e028a52, 0xd3e4a0ffbb7ce21f, 0x94c0ff0293c9043b, 0x0bbc9c2ee3ff3b6c, 0x0c02ae330502bc0b, 0xbc11c25fff02a900, 0xb7030b3c06380cff, 0x23ff3c96b34cff02, 0x0802ce0c0b3b9341, 0xbd1da2ecff02c902, 0xd70d0ebcd8ac74ff, 0x77ff3c256686ff02, 0x0d03240208b99901, 0x0502f6cc04030406, 0x39ecd1c7ff02f18a, 0xff0112bc0aa3b1ff, 0x5fff3c915050ff02, 0x0b03160009bb6123, 0xbc9f0d51ff03110b, 0x1f0109ba581739ff, 0xa1ff3cba882fff03, 0x0d0348170ebaadc1, 0xff03352b05033a00, 0x5eac8dff3da7b720, 0xdd69ff0343000c3b, 0x12b9275659ff3bb5, 0xff03558705035a00, 0xdbd3e2ffbc3985f4, 0xa9f0ff03632b05bb, 0x053c03cbfeffbd16, 0x0103b40b0b03f88a, 0x080386010c03943f, 0xbd9d39b0ff038100, 0x8f2803bca0f442ff, 0xb0ff3cebcf40ff03, 0x0203a602083a3bad, 0x3a9042beff03a100, 0xaf7505baf65075ff, 0xf8ff3ba366b7ff03, 0x0503d8cc04b9ca07, 0xff03c57b0503ca82, 0xf86fb2ff3afeaf58, 0x27d3ff03d38405bb, 0x0838d4d494ff3c33, 0xff03e5230e03ea02, 0x352649ffbc84f95d, 0xa6f3ff03f38105bb, 0x083c4ddee3ffbb5a, 0x0404200002044001, 0xff040dc8040412cc, 0xd2005aff3b5d6cc3, 0xba45ff041b8b05bb, 0x0ebabc5b39ff3c27, 0xff042dcb0404322b, 0x39568bff3b56eead, 0x24eaff043b010c3d, 0x05bc83c462ffb8cd, 0x040456280e04648b, 0xbca4f36dff0451cc, 0x5f000cbb991503ff, 0x1bff3c760a70ff04, 0x0e04760112bc220f, 0x3ba1b80aff047123, 0x7f230ebb0341d8ff, 0x55ffbd2fe520ff04, 0x08067c8d05bb56c9, 0x0804dd5504056901, 0x0404b8000c04cf00, 0xff04a5011104aa4d, 0x5cba66ff3b757088, 0x97e6ff04b3000e3c, 0x0f3c01ad0cffbc8d, 0xff04c5480404ca00, 0x3e0648ffbc893ca3, 0x01123c3af458ffbd, 0xff3c50f453ff04d8, 0x0525c8043d4f4dc0, 0x04f7080e05050112, 0x59382fff04f2110b, 0xb4043a9b84a1ffb9, 0xffba0a9c33ff0500, 0x0517000f3a4d021d, 0x96bddfff0512c204, 0x030b3c42440fffb9, 0xff3b9c7343ff0520, 0x05490011bbece58d, 0x0536290e053b0008, 0x5252ffbb2cb984ff, 0xd7ff0544ca043c26, 0xbaa99a75ff3c8f22, 0x0556c904055b060d, 0xec8dffbc2bb197ff, 0x95ff056400083ab6, 0xbcda70bdffb98b96, 0x05ac070e05f0050b, 0x0587000f0595b204, 0xcc702bff0582040b, 0xae04bc6766c0ff3c, 0xffbbbf74e0ff0590, 0x059e000cbcfa23c8, 0xa7010cbbe39c4dff, 0x9eff3c99c3c0ff05, 0x0b05d002083d325c, 0xff05bd170e05c203, 0x9f1b4dffbb9732f0, 0x47eaff05cb010c3b, 0x04bd138e9aff3ca4, 0xff05dd000c05e2bc, 0x2c2195ffbc0f1fd4, 0xc8e2ff05eb000f3d, 0x04bb0fb50affbd2c, 0x040618000c0638c8, 0xff0605ae04060ac4, 0x0e00efff3bbb15f0, 0xb8dbff06130b0b3a, 0x08bc8375f4ffbb43, 0xff06250e0e062a02, 0x997dbeffb9bfd06f, 0x561dff06330d0ebc, 0x083b23ed80ffbc35, 0x04064e010c065c02, 0xbc0477f5ff0649c9, 0x5701123b2813f6ff, 0x0eff3b1ec7e9ff06, 0x04066e00123ce9d1, 0xbaeb5d2bff0669c9, 0x77010cbc4bd940ff, 0xe7ff3c105d2cff06, 0x0d079c93053d1252, 0x0e06cc0009071003, 0x0e069ebf0406ac2a, 0xba41496fff06991d, 0xa792053b2ffd28ff, 0xe4ff3963ed2aff06, 0x0b06be2b0ebd0a0b, 0x3d0cec40ff06b903, 0xc72d0e3aa76f66ff, 0x6fffbcceaf10ff06, 0x0406f0020bb9bd22, 0xff06dd000206e2a0, 0x8c1ccdffbc82e4c0, 0xc837ff06eb010b3a, 0x05bd2693fdffbc2e, 0xff06fd2b0e070292, 0xb9fb4fffbad0046d, 0x49b5ff070bbf043c, 0x043d19ee23ff3bc5, 0x0407389005075855, 0xff07254e04072a52, 0x0705d3ff3b11c1e7, 0x8210ff07330111bb, 0x0f3d181e75ffbc1a, 0xff07455104074a00, 0xcb32eeffba7c58f1, 0x4ff0ff0753010bbc, 0x0e3c4db9a2ff3aab, 0x04076e000f077c23, 0xba4517aeff0769bc, 0x77050b3b1412e5ff, 0xcfff391fba12ff07, 0x0e078e0002381138, 0xbc1efdd8ff078926, 0x97250e38baa8bdff, 0xc0ff3c379d8fff07, 0x08082c020dba6f87, 0x0407c8050b07e800, 0xff07b5940507bab3, 0x2d33a2ffbbd7b569, 0x78b5ff07c394053a, 0x0eba5a6692ff3c08, 0xff07d5070b07da01, 0xdf4622ffbca0966c, 0xeacbff07e3020e3a, 0x0fb91b8d75ff3c6d, 0x0507fec404080c00, 0x3affdf88ff07f994, 0x079405bb16ba37ff, 0x70ffba946236ff08, 0x05081e000c3b4fb5, 0xbad26059ff081996, 0x270b0b3acf8b10ff, 0x00ffbc1bb55eff08, 0x040874000f3b44cb, 0x040846010e085491, 0x3a0d341dff084184, 0x4f9004bd42171fff, 0x50ff3cc6bdbaff08, 0x0b086602093dc0e9, 0x3a0c1b6aff086101, 0x6f010e3a587707ff, 0x58ff3b1a68edff08, 0x0e0898260ebc8aee, 0xff0885cc04088a1d, 0x1e026dff3855c923, 0x3c44ff0893010cba, 0x05bb212c1eff3a78, 0xff08a52a0e08aa94, 0x020460ff3cac83d7, 0x8cf3ff08b32d0eba, 0x053b663a95ffbb7e, 0x040afcc6040d3895, 0x050954930409e098, 0x0e08f00211091080, 0xff08dd830408e22b, 0x1934beffb74a50ad, 0x2c41ff08eb900439, 0x083a466fddffba33, 0xff08fd0b05090201, 0xf334a3ff3bbee73f, 0x26d1ff090b0107b9, 0x05bc78db07ff3abc, 0x070926010c09348f, 0x3a18256aff092102, 0x2f001239d87d23ff, 0xceffbc9a0b82ff09, 0x0e0946000cbb3d02, 0x3b6cbda4ff094100, 0x4f020bba817c88ff, 0x8aff3c0c21a8ff09, 0x0d099c0207bc977c, 0x0f096e090e097c06, 0xbc18a755ff096900, 0x77170e3b0073abff, 0x41ff3c1f3e8dff09, 0x04098e070ebaaff3, 0xb8c904e1ff098995, 0x97070d3c318ea5ff, 0x7cffbbab56b7ff09, 0x1109c042053c1453, 0xff09ad1d0e09b200, 0xa29597ffbc0b19d4, 0x641fff09bb96043c, 0x08bbaba36fff3c0b, 0xff09cd950409d200, 0x000635ffbb4ad85d, 0x0efaff09db9704ba, 0x0d3ab2059affbbfd, 0x050a2c130b0a7007, 0x0509fe000f0a0c41, 0x3a8ee589ff09f92b, 0x07120b39fb89b2ff, 0x7affba9b9505ff0a, 0x050a1e71053d0094, 0x3c80286fff0a1943, 0x279904ba212fe9ff, 0xdfff3b79d6c1ff0a, 0x040a50be0439a3c5, 0xff0a3d00120a42af, 0xc492c8ffbb0eec4f, 0x7954ff0a4b120539, 0x04ba2e1305ff3bc9, 0xff0a5d00020a62c1, 0xd9b518ffbb72f2fd, 0xc742ff0a6b060d3b, 0x013adbdfc9ffbb0f, 0x030a98190e0ab82e, 0xff0a8502080a8a0e, 0x041cc8ffbd21dd70, 0xc87bff0a931705bd, 0x013ced0041ff3e12, 0xff0aa526010aaa2d, 0xe61c71ffbdd8b6ad, 0xceeaff0ab32f033c, 0x04bcdf8ebcffbdc2, 0x040ace9d040adca3, 0x3ab91ae1ff0ac99c, 0xd79e043d07a1bfff, 0xd7ffb902617bff0a, 0x0e0aeead04bc3ce7, 0x3c4d225bff0ae919, 0xf70d0ebc4a7278ff, 0xb7ffbc73a8a0ff0a, 0x0e0c1c01083b5166, 0x050b4ccc040b901f, 0x080b1e0c0e0b2c10, 0x3a8faf70ff0b1900, 0x27020d3c44ac32ff, 0x9eff3b5c6e00ff0b, 0x0e0b3e060dbd3ba0, 0xb898b55eff0b391d, 0x478605bc6266fbff, 0x45ff3b846c06ff0b, 0x0c0b700b0eb9ddc3, 0xff0b5d060d0b6201, 0xb12777ffbb57ade5, 0x8fdcff0b6b0b0b3b, 0x0e3ca7599cff3b7a, 0xff0b7d89050b821e, 0xf3b667ffbc17923f, 0xcb32ff0b8b001138, 0x05bcb0bd35ff3b99, 0x080bb86c050bd878, 0xff0ba56a050baa00, 0x1752bcffba676f9f, 0x213eff0bb30b0b3c, 0x05bac836c9ff3b42, 0xff0bc501120bca6e, 0xb93fcfffbbfac1c2, 0x0e48ff0bd300023c, 0x053bc3cdbaffbb02, 0x020bee280e0bfc79, 0xbc5cb8b1ff0be900, 0xf7300e3c9b3733ff, 0xdcffbc31db3dff0b, 0x120c0e00063abeb3, 0x3a8b5259ff0c0901, 0x17030bbae4ca7bff, 0xc0ffba0bdfc0ff0c, 0x0d0cac7505bd0aec, 0x060c4807050c6806, 0xff0c35020d0c3a04, 0x9777f5ff3ab03100, 0x6784ff0c43300e3c, 0x05bd354922ffba75, 0xff0c550c050c5a64, 0x1e80caffba1d9092, 0x7e31ff0c63720539, 0x043afeda4fffbaa5, 0x0c0c7e44050c8cc9, 0x3cc51e27ff0c7901, 0x87280ebb44bbf3ff, 0x04ff3b418e83ff0c, 0x0e0c9e0002bbaed3, 0x3b6af940ff0c992f, 0xa7ca04bc01076bff, 0x5affbc0fdd5bff0c, 0x070cf4190e3a2885, 0x040cc6180e0cd401, 0x3c4831f5ff0cc1c7, 0xcf7d053a3c9eafff, 0x99ff3cfdec26ff0c, 0x0e0ce6010cbc04ba, 0x3b448320ff0ce10b, 0xef170ebb03758cff, 0x54ff3c1e5469ff0c, 0x0e0d180b0bbc9080, 0xff0d05020d0d0a2b, 0x54897eff3c31979d, 0xecd2ff0d130208ba, 0x0e3bd89c8effb74b, 0xff0d2500120d2a1c, 0x739f01ff3a4ca2db, 0xe4edff0d33c8043d, 0x0e3a37ef40ffbc00, 0x120e4a020d0f2722, 0x040d83000b0dbe00, 0x0e0d5e96050d6c96, 0xb9f0158bff0d5902, 0x67000dbab0d87cff, 0x0dffbade6060ff0d, 0xff0d750107bb2d5d, 0x0d7e96053ba94655, 0x2be8ff39d16b00ff, 0x010b0da79604ba88, 0xdfff0d9401070d99, 0x3b4bafdaff3af820, 0xf645c9ff0da29504, 0x0107bc0f0ca4ff3a, 0x62ff0db4010b0db9, 0xbc4f57fbffbc36bb, 0x06b904bbd76bb2ff, 0xd8070b0de6020e0e, 0x11a4ff0dd378040d, 0x11bae04d3bff3aaa, 0xbb276e5eff0de101, 0xf8050b3c3f4de1ff, 0x52c5ff0df301120d, 0x12ba98e436ff3bad, 0xbb3ab7e2ff0e0101, 0x2abe04bc4e26daff, 0x17030b0e1c01110e, 0x50ffbb8999a4ff0e, 0xff0e250002bafa5f, 0x86b800ff3c9d99f5, 0x37c4040e3c020b3b, 0x6bffba4b7500ff0e, 0xff0e45c004bb86c2, 0x1f4597ffbb119a39, 0x96cb040ebf000f3a, 0x6800020e76130e0e, 0xb722ff0e63bf040e, 0x123be5cb80ff3a3a, 0xbcaa90a0ff0e7101, 0x88170eba2ecd97ff, 0x6b80ff0e83010b0e, 0x02bc583966ff3bc0, 0xba8ee400ff0e9100, 0xba02073c4c5d00ff, 0xa7030b0eac01070e, 0xdbff3b6fee55ff0e, 0xff0eb500083ab1b0, 0x29d440ff3b1d3fab, 0x1f0e3c118080ff3c, 0x080e0ee71d0e0f07, 0xc0ff0ed4cc040ed9, 0x3a653c70ffb8c684, 0x6b0ff7ff0ee20002, 0x9605b9d23eefff3a, 0xe9ff0ef40b0b0ef9, 0x3bc5fa95ffbac284, 0xf182abff0f02030b, 0x00023c53c2d0ffb7, 0x123bc7d900ff0f10, 0x3acf1855ff0f1901, 0x2e48d5ff0f22c904, 0x070bb9c5ca00ffba, 0x000c0f7ccb040ff6, 0x000d0f57030b0f6e, 0x00ff0f44230e0f49, 0xba8da610ff3b1d32, 0xa9fe6bff0f52230e, 0x000d3ba5ed9affba, 0x80ff0f64c0040f69, 0x3bb9e600ffbaf1d4, 0x77c904bc2dcb00ff, 0x80ff398db000ff0f, 0x0e0fb2cd04bbb0c9, 0xff0f8d01120f9b28, 0x0f96030b3c18a9dc, 0xd480ff3c5b7a40ff, 0x010b0fad030b3c20, 0xff3aaaa480ff0fa8, 0x2decc0ffbaca8d55, 0xc801070fd6000c3c, 0xb838ff0fc396050f, 0x0b38f3bc00ff3b9e, 0x3a363180ff0fd103, 0xe8030bba45ce80ff, 0x2720ff0fe301110f, 0x0f3bc31680ffbb5f, 0xbb7b7d00ff0ff100, 0x08000dbbb39d50ff, 0x3580ff1003240e10, 0x04babdbf00ff3c33, 0xbc034040ff1011cb, 0x102700121035000c, 0xd40f4bff10229605, 0x0008bba12a70ff3a, 0xffbad47511ff1030, 0x104700023b5ab570, 0x075800ff1042230e, 0x50ff36ecc000ffbb, 0x08000000133c00fb, 0x01000003e8000000, 0x000000115a000000, 0x0508a60007000000, 0x040248c704047b8c, 0x0400a0be04012cc1, 0x02003c000d005cac, 0xff00298e04002e00, 0x546bc5ffba9f6274, 0xb9dbff0037000cbc, 0x043c7b2523ffbc45, 0xff00498105004ea3, 0xc224d8ffb85c62af, 0xb938ff0057060db9, 0x0dba049328ff3b42, 0x0f00728505008006, 0xb90efd91ff006d00, 0x7b00083a058d4aff, 0x66ff3b453f55ff00, 0x0e00927705bb8052, 0xbc52b738ff008d17, 0x9b080e3ad7e634ff, 0xbaff3bbda082ff00, 0x0e00e80108bb16fa, 0x0c00ba070d00c82b, 0xbb53c535ff00b500, 0xc384053b0d656eff, 0xb4ffbd1f7d70ff00, 0x0e00da1606ba39a2, 0xbc9225dfff00d52d, 0xe31905395ee808ff, 0x40ff3e05e294ff00, 0x0d010c280e3e6b12, 0xff00f9000200fe06, 0x62b652ffbc58bb28, 0xf00dff010700123b, 0x0e3cdf1bfbff3bc0, 0xff01190011011e2c, 0xf69b1cffbce6dfc9, 0x75a2ff012701123b, 0x053b09b5fdffbc63, 0x0b0178770501bc79, 0x05014a001201580b, 0x3b6fef58ff014571, 0x53c604bc148bf6ff, 0x03ffb921810cff01, 0x0e016a02083ad9ca, 0x3ab447d6ff016532, 0x735d05bbcd048cff, 0x94ffbc5d1712ff01, 0x0e019c2a0e3c0fef, 0xff01890d0b018e28, 0x6ace8affbbf03a14, 0xacd1ff019702083b, 0x0bbc4e9874ffbd1c, 0xff01a90b0b01ae12, 0x872e0bff3aeb17e8, 0x51bfff01b7c3043c, 0x02bad1be63ffbd3e, 0x0b01e4c304020400, 0xff01d1060d01d610, 0xaa7835ff3b70c460, 0x2573ff01df070ebb, 0x0e3a399806ffbcc4, 0xff01f17a0501f630, 0xb9838cff3bf6c4f0, 0xbe81ff01ff0011b9, 0x0eba0cd99eff3d48, 0x08021a0a0e022819, 0x3abb5c79ff021501, 0x230a0b3c836525ff, 0x13ff3bfd280bff02, 0x05023a010cbb6174, 0x3c17157aff02357b, 0x438305bb1d4449ff, 0x82ffbbd94100ff02, 0x0203681c0e3cc005, 0x0502980b0e02dc00, 0x05026a020d027852, 0xbc49d5e5ff026538, 0x73020e3cb195e8ff, 0x60ffbb639842ff02, 0x0c028ac9043bbd06, 0x3c2d86c0ff028501, 0x93050dbc63758bff, 0xa6ffbbc59766ff02, 0x0502bc0b0bbcb755, 0xff02a9860502ae87, 0x760a0aff3b89716a, 0x374bff02b7030b3d, 0x0eb98fd70fff3caf, 0xff02c9ca0402ce0d, 0x51587aff3cb7e1cf, 0x603aff02d70c0bbc, 0x08b989b43cffbcef, 0x040304060d032402, 0xff02f18a0502f6cc, 0xf98d04ff39d522f6, 0x45b9ff02ff2605bb, 0x0e3b48e7f2ffbb84, 0xff0311ca0403160f, 0xc58d82ff39623b54, 0xc5d1ff031f00093c, 0x0b3a9272c3ffbbf5, 0x0b033a160603480c, 0x3c073741ff033503, 0x43000fbbde5228ff, 0x79ff3c49424aff03, 0x05035a0112bb25bc, 0xb8fc8379ff03558a, 0x63cb043c822969ff, 0x2bff3ccc197dff03, 0x0b03f88a053c1276, 0x0503943f0103b40b, 0xff0381c80403861d, 0x4aaeb4ff390eb2ab, 0xc1b4ff038f03063c, 0x0dbdd6af0cffbcd3, 0xff03a1000c03a604, 0x9a7648ffbbf87a85, 0x1b2dff03afcc043a, 0x043b3f9e56ffb8c0, 0x0503ca820503d8cc, 0x38e449b9ff03c581, 0xd38405bcaeaa64ff, 0xa4ff3c213d6cff03, 0x1103ea880538bf88, 0xbb4d13dfff03e500, 0xf302083aea98b4ff, 0xe2ffbc8cfc38ff03, 0x02044001083c0f97, 0x040412cc04042000, 0xb9d496e2ff040dca, 0x1b1f0ebc0be9afff, 0x60ff3d2e7110ff04, 0x0504322b0e3a289e, 0x3d1ae3f0ff042d8b, 0x3b0b0bbb54833eff, 0xe7ff3b5059feff04, 0x0c045b1f0ebc0007, 0xff04510b0b045600, 0xff0920ffbced4fb0, 0x8b05bc9e9f88ffbc, 0x99ff0468280e046d, 0x3a9d087affbc4b2d, 0x1c443dff0476220e, 0x8d053b064a70ffbc, 0x550405600108067c, 0x000c04c6000804d4, 0x000f04a14d0404af, 0xff3c06b648ff049c, 0x04aa020db983246b, 0xde32ff3be96aa8ff, 0x50ff04b80111bc7e, 0xff04c148043c2842, 0x2b05a8ffbc7706c6, 0x0f18ff04cf030bbd, 0x0c3d3a92c8ff3c3c, 0x0b04fc0008051c00, 0xff04e9040b04ee0b, 0x12082bffbb3bff1d, 0x08ceff04f70e0b3b, 0x0bba36ff0affbbfd, 0xff0509030b050e0b, 0x0bbaa6ff3b599bb3, 0xef9aff05170012bb, 0x123bbe9c37ffba3b, 0x0e05320008054001, 0x3ad970f9ff052d03, 0x3b220eba384585ff, 0x2dff39b46e08ff05, 0x04055200083c95c9, 0xbaa99441ff054dbe, 0x5b88043bbcfec1ff, 0x9fff3cbd3e94ff05, 0x0e05f0070bbbdd9c, 0x08058cb20405ac07, 0xff0579050b057e02, 0xaf4580ffba2d384d, 0x2c07ff0587010c3c, 0x0c3c8f2654ffbcb8, 0xff0599000c059e01, 0x8a6360ffbbccd96d, 0xbe50ff05a702083c, 0x083bff8f00ff3d50, 0x0e05c2030b05d002, 0xbb9076bdff05bd19, 0xcbbf043bb9ad8eff, 0xc5ff3ce86b89ff05, 0x0c05e2bc043b2e44, 0xbc00cfdcff05dd00, 0xeb000f3d1aeb05ff, 0x25ffbd1b8191ff05, 0x0e06380002bb0156, 0x0e060a000c061809, 0x3bb2a40cff060503, 0x13060dbbef55e3ff, 0x43ffbd024698ff06, 0x0c062a0d0ebc234f, 0x3a42064dff062500, 0x330e0e3ca675cdff, 0xedffbc556b36ff06, 0x0c065c030e3a8833, 0xff06490b0b064e00, 0xb7393dff3bf4e95d, 0x039dff06570112bb, 0x083ae50809ffbc10, 0xff0669070e066e02, 0xd7bd7fff3bc2314d, 0x8b0dff06770011ba, 0x053bd084a5ffbb67, 0x080707020d079393, 0x0b06acbe0406cc02, 0xff0699230e069e04, 0xd564e8ff3a6a66c5, 0x40beff06a7000dbb, 0x0ebad83d1bff3ba7, 0xff06b9cc0406be33, 0xc491a7ff3a0df1df, 0x7eb7ff06c7340e3c, 0x0b3b4b1cf2ffbc40, 0x0e06e28e0506f002, 0xbb9b7dc0ff06dd0d, 0xebb304bc098c40ff, 0x33ffbb9ca280ff06, 0x050702230e3b20c8, 0x3b88e0abff06fd8f, 0xd800ffb9b92d38ff, 0x9105074f050bbc13, 0x010c07210d0e072f, 0xffba6770f3ff071c, 0x072a0009ba53e386, 0x7091ffba5735efff, 0x030d0741020b3aaa, 0xffbd90d304ff073c, 0x074a000fba6d4968, 0xdf3bff3c085c5aff, 0x010c07730c0b3a96, 0x31ff07601d0e0765, 0x3a6815f4ffb995aa, 0xb95f4aff076e0a0b, 0xc604396637a1ffb8, 0xc6ff0780010c0785, 0xbb3d2f56ffb9d492, 0x1701a1ff078ec804, 0x020db9df76dfff3c, 0x050b07d60008081a, 0x2c0e07b12f0e07bf, 0xff3790ee3aff07ac, 0x07baca043cc53251, 0x2b24ffbcf60ef0ff, 0x950507d1cd04bb05, 0xff3abb1d61ff07cc, 0x9cbde0ffba9a6ebb, 0xec050b07fa070b3c, 0x0c60ff07e7170e07, 0x0ebb362457ff3b00, 0x3c43abb0ff07f522, 0x0c1d0e3ce65ca0ff, 0x9a40ff0807a70408, 0x0ebb252ad8ff3c3d, 0x3c8d9720ff081522, 0x62130bbc6b2c55ff, 0x34011208426d0408, 0x9510ff082f000b08, 0x043b09ca8affbba8, 0x3d12d25cff083d6b, 0x54000fbc80a536ff, 0x14e2ff084f0a0b08, 0x0e3b026c87ffba4c, 0x3814fe57ff085d23, 0x860108ba6f0250ff, 0x73c1040878c60408, 0x97ffba84f3bfff08, 0xff0881140b3a82c9, 0xc03f62ffbc87d0b1, 0x93190e08981d0e39, 0x90ff38be9074ff08, 0xff08a1060dbc5e94, 0x2e3c00ff3d04208c, 0xea8f050d0b270e3a, 0x427a0409ceb6040a, 0xde790408fe000209, 0xcb630408d0680408, 0x26ffb83ff5e3ff08, 0xff08d987053a4680, 0x869dd3ff38050707, 0xeb190e08f0060dbb, 0xfaff3a9aa67fff08, 0xff08f9000c3c2102, 0x9c0804ffba283b60, 0x14000e092213063c, 0x9bb3ff090f6b0409, 0x07bc02b192ffbb38, 0x3b3f5775ff091d02, 0x341706ba12202eff, 0x20aaff092f150609, 0x04bbfa4995ff37db, 0x3b862590ff093d73, 0x8a0012bca19925ff, 0x5c0a0b096a0b0b09, 0x5051ff0957070d09, 0x043b458911ffbbbf, 0x3b3c7b12ff09659b, 0x7c0f0b3afdc469ff, 0xca06ff0977070d09, 0x0b3c50d99cffbcb4, 0xbc5dca9aff098514, 0xae010739d9c1daff, 0x9b0b0509a0000209, 0x62ffbba4323dff09, 0xff09a90a0b3b04ac, 0x4a5831ff39bd4bcd, 0xbb020809c0060d3a, 0xbaffba78a527ff09, 0xff09c96d05bb8f43, 0xbc1342ff3c877b4a, 0x1a060d0a5e000fb9, 0xecbc0409fa030d0a, 0xa983ff09e7000c09, 0x0ebbcc82e0ffbcde, 0xba9821b6ff09f51d, 0x0c050e3af86602ff, 0x47f1ff0a07030b0a, 0x0e3b70bd2affbc5f, 0x3bf481dfff0a1522, 0x3ebf04bb21311fff, 0x2b8b050a30000c0a, 0x00ff3dcb66b6ff0a, 0xff0a39b7043d20a5, 0x94f37cffbe4d19da, 0x4b00080a50130ebd, 0x00ffbc80b594ff0a, 0xff0a598b053aca35, 0x533360ff3d51becc, 0x862f050aa62f033c, 0x73070d0a78230e0a, 0x13ffbc4f94c5ff0a, 0xff0a81b9043cc289, 0x7a0580ffbdb46603, 0x93b8040a98260e3b, 0x42ff3e096887ff0a, 0xff0aa100023d95bd, 0x26dd20ffbcdf4700, 0xbccb040aca140b3b, 0x1946ff0ab761050a, 0x12391a873fffba41, 0xbb30731aff0ac500, 0xdc5f053b30df8dff, 0xac34ff0ad75d050a, 0x04bb6cb052ff3a7c, 0xba59e353ff0ae5c9, 0xef01073a96ad52ff, 0x2890050b6363040b, 0x0c010e0b1100020b, 0x5ed1ff0b07040d0b, 0xff3c65601dff3cbe, 0x0b1a4c04ba65bbfc, 0x235a043c74e700ff, 0x1affbbc028aaff0b, 0x040b4c030bba4af9, 0xff0b39010e0b3e5c, 0x804231ffbb5e8afa, 0x8588ff0b4761043b, 0x04bc45f555ffbccf, 0xff0b59000d0b5e61, 0xd99438ffbc38aa80, 0x230e3c9b21f3ffbb, 0x050b0b8b93050bab, 0x86ff0b7892050b7d, 0xbb86bc21ff3a90e0, 0xaa3e80ff0b860002, 0x070ebb2c49abff3a, 0x86ff0b98070b0b9d, 0x3b07b216ffbb186d, 0xa736bbff0ba6070d, 0xcc043be183daffba, 0x060d0bc1070b0bcf, 0xffbb3579bfff0bbc, 0x0bcac7043c5fcaaf, 0x2e8dffbcbc9e95ff, 0x92050be1000cbb9f, 0xff3cb9930bff0bdc, 0x0bea00083b45cae0, 0xbfdcff3c8be26bff, 0x1d0e0c7f0a0b3d6d, 0x030b0c1b000f0c3b, 0xf0ff0c08b0040c0d, 0xbbcf19c4ff3abaa5, 0x809364ff0c16070e, 0x070e3aa5910cff3c, 0xb4ff0c28060d0c2d, 0xbbec8bb6ff3a5302, 0x26ce41ff0c369005, 0x220e3a52eb86ff3c, 0x010b0c51cd040c5f, 0xffbc553655ff0c4c, 0x0c5a000c3c663cca, 0x3fb7ffbc14af3dff, 0x020d0c71000fbd02, 0xffbb499c95ff0c6c, 0x0c7a0111bcdf9daa, 0x6104ff3b608a09ff, 0x000d0cc7ab043c68, 0x90040c99080e0ca7, 0xffbc882c41ff0c94, 0x0ca200023ca77b00, 0xb50cffbd047839ff, 0x000c0cb90112bd4a, 0xff3b564816ff0cb4, 0x0cc2000c3c8adb80, 0xbc5cff3c9e9020ff, 0x91050ceb010c3d8b, 0x08ff0cd8c5040cdd, 0xbb2a4bf4ff3b1a4c, 0x3bf6c6ff0ce6220e, 0xc604bc153c2bff3b, 0x20ff0cf8010e0cfd, 0x3cd44ad4ff3c1f10, 0xd835faff0d060207, 0xcb04bc00e9d4ff3b, 0x15050e2f130b0f4b, 0x12030d5f16060da3, 0x2b0e0d3168040d3f, 0xffb8973fa0ff0d2c, 0x0d3a13053b0beef6, 0x693affbb542e87ff, 0x01050d51ad043c68, 0xff3b089fe6ff0d4c, 0x0d5a290eba449978, 0xb930ff3c0bf73dff, 0x9c040d83b8043a7d, 0x57ff0d7002070d75, 0x3d50649eff3b8eb5, 0xca66caff0d7e0207, 0x2a0e3e0d5b10ff3d, 0x28ff0d90000f0d95, 0x3bc1c887ffbc1084, 0xc057e4ff0d9e0207, 0x00123d8cd650ff3d, 0x2a0e0dcb050b0deb, 0x08ff0db8280e0dbd, 0xbccc4830ffbb58d6, 0xabcd8eff0dc60208, 0xc5043c95e0c5ff3a, 0x15ff0dd8b8040ddd, 0x3b0a2ec0ffbbf9a9, 0x180546ff0de62a0e, 0xc004bbc7b90bff3d, 0x0e030e0130010e0f, 0xff3c190ab4ff0dfc, 0x0e0a2a0eba41295c, 0x86a6ff3a2c8eb8ff, 0x2b0e0e21300eb9d2, 0xff39053be2ff0e1c, 0x0e2a0207bc46ef2a, 0x0accff37c22fbfff, 0x00080ebfbe043b52, 0xb5040e5b4f050e7b, 0xb8ff0e482a0e0e4d, 0x3afaf8d3ffbc1ac3, 0x8b7671ff0e564d05, 0xbd04bdb007cfffbc, 0x8dff0e682a0e0e6d, 0x3c2d9067ffbc38fe, 0xdcd00fff0e760112, 0x5305bdbb6933ffbc, 0x0a060e9135050e9f, 0xff3b0c7f27ff0e8c, 0x0e9a4405bbe9d70e, 0xe04bff3b04ec90ff, 0x54050eb10002bbcb, 0xffbdaf664cff0eac, 0x0eba280e3c4d49ee, 0xc951ffbdd3d163ff, 0x280e0f07010cbd30, 0xc4040ed9c6040ee7, 0xff3cfa07d1ff0ed4, 0x0ee20002bd5517da, 0xf49aff3d9492dcff, 0x01120ef9c0043cc8, 0xff3d0951f4ff0ef4, 0x0f024505bc8c4737, 0x43b5ff3b3246f9ff, 0x2b0e0f2b060dbafd, 0x10ff0f1801070f1d, 0x3c9edfbeff3795bc, 0x44f693ff0f262d0e, 0x00113a6626a6ffbd, 0x6eff0f38300e0f3d, 0xbcf85049ff3ab686, 0xab232cff0f46c104, 0x0c05bcaeed36ffbd, 0x300e0fbb010c103e, 0x0d060f692a0e0f89, 0xffbde4b405ff0f64, 0x0f7b02083ca7c790, 0x5ed5a0ff0f760a06, 0x0a06bcb4fb80ffbb, 0xff3dcf455cff0f84, 0x0fad0002bc215fa0, 0x0f9a360e0f9f3203, 0xc194ffbd9c291bff, 0xd8ff0fa80506bd03, 0xbd963e2eff3de33a, 0xb1ed2aff0fb60208, 0x300ebdc0736affbd, 0x01110fda02070ffa, 0x1cff0fd02a0e0fd5, 0x3e11bc80ff3e18a2, 0xec2a0ebbdf1680ff, 0x76faff0fe701110f, 0x053cb8f000ffbdc5, 0x3c96a8eeff0ff507, 0x1e05063d920733ff, 0x0b290310100b0b10, 0x94ff3db16968ff10, 0xff101929033e15b3, 0x991e3cffbc007cdd, 0x2b0108103001113d, 0x09ffbdc56e56ff10, 0xff10390002bd52ce, 0x00a1e0ff3d03b7b0, 0x8a011110ce1305bc, 0x5c350e106a070610, 0x51cdff1057020710, 0x08bca83406ff3d94, 0x3b7fa754ff106502, 0x7c0a06bd681410ff, 0xf638ff1077010810, 0x08bd2cf5b6ffbdcf, 0x3a59c98fff108501, 0xae010cbcf9ac84ff, 0x9b0b0b10a0000210, 0x50ff3cc7d1a7ff10, 0xff10a902073b589c, 0xa0c090ff3c364072, 0xbb2a0e10c0030bbb, 0x40ffbbdd49a0ff10, 0xff10c9360ebc0e42, 0xb18200ff3d04b09c, 0xf67d051116070db9, 0xe3030b10e8010710, 0x40ff3c811135ff10, 0xff10f10008bb52b4, 0xcb69deffbb4509f0, 0x032c0e11082d0e3a, 0xa8ffbadb3436ff11, 0xff111102073c8708, 0xbc7d7fffbb674db0, 0x2c0107113a030b3b, 0x8bd4ff1127010c11, 0x0c3c8086d8ffbc2f, 0xbc5c49b8ff113501, 0x4c0008bd4d8a4eff, 0xedc3ff1147010711, 0x08bd990eb0ffbd17, 0xbd1f53c4ff115501, 0x000000bccf49a9ff }; const std::vector<uint64_t> &get_conv_model_xehpc_common_data() { static std::vector<uint64_t> data( _data, _data + sizeof(_data) / sizeof(_data[0])); return data; } // clang-format on } // namespace jit } // namespace intel } // namespace gpu } // namespace impl } // namespace dnnl ```
Chuck Walker (born May 10, 1957) is an American boxer. He competed in the men's light middleweight event at the 1976 Summer Olympics. At the 1976 Summer Olympics, he lost to Jerzy Rybicki of Poland. References External links 1957 births Living people Light-middleweight boxers American male boxers Olympic boxers for the United States Boxers at the 1976 Summer Olympics Boxers at the 1975 Pan American Games Pan American Games bronze medalists for the United States Pan American Games medalists in boxing People from Marion, Arkansas Sportspeople from the Memphis metropolitan area Boxers from Arkansas Medalists at the 1975 Pan American Games 20th-century American people
```go // Code generated by private/model/cli/gen-api/main.go. DO NOT EDIT. package sagemaker import ( "github.com/aws/aws-sdk-go/aws" "github.com/aws/aws-sdk-go/aws/client" "github.com/aws/aws-sdk-go/aws/client/metadata" "github.com/aws/aws-sdk-go/aws/request" "github.com/aws/aws-sdk-go/aws/signer/v4" "github.com/aws/aws-sdk-go/private/protocol" "github.com/aws/aws-sdk-go/private/protocol/jsonrpc" ) // SageMaker provides the API operation methods for making requests to // Amazon SageMaker Service. See this package's package overview docs // for details on the service. // // SageMaker methods are safe to use concurrently. It is not safe to // modify mutate any of the struct's properties though. type SageMaker struct { *client.Client } // Used for custom client initialization logic var initClient func(*client.Client) // Used for custom request initialization logic var initRequest func(*request.Request) // Service information constants const ( ServiceName = "sagemaker" // Name of service. EndpointsID = "api.sagemaker" // ID to lookup a service endpoint with. ServiceID = "SageMaker" // ServiceID is a unique identifier of a specific service. ) // New creates a new instance of the SageMaker client with a session. // If additional configuration is needed for the client instance use the optional // aws.Config parameter to add your extra config. // // Example: // // mySession := session.Must(session.NewSession()) // // // Create a SageMaker client from just a session. // svc := sagemaker.New(mySession) // // // Create a SageMaker client with additional configuration // svc := sagemaker.New(mySession, aws.NewConfig().WithRegion("us-west-2")) func New(p client.ConfigProvider, cfgs ...*aws.Config) *SageMaker { c := p.ClientConfig(EndpointsID, cfgs...) if c.SigningNameDerived || len(c.SigningName) == 0 { c.SigningName = "sagemaker" } return newClient(*c.Config, c.Handlers, c.PartitionID, c.Endpoint, c.SigningRegion, c.SigningName, c.ResolvedRegion) } // newClient creates, initializes and returns a new service client instance. func newClient(cfg aws.Config, handlers request.Handlers, partitionID, endpoint, signingRegion, signingName, resolvedRegion string) *SageMaker { svc := &SageMaker{ Client: client.New( cfg, metadata.ClientInfo{ ServiceName: ServiceName, ServiceID: ServiceID, SigningName: signingName, SigningRegion: signingRegion, PartitionID: partitionID, Endpoint: endpoint, APIVersion: "2017-07-24", ResolvedRegion: resolvedRegion, JSONVersion: "1.1", TargetPrefix: "SageMaker", }, handlers, ), } // Handlers svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler) svc.Handlers.Build.PushBackNamed(jsonrpc.BuildHandler) svc.Handlers.Unmarshal.PushBackNamed(jsonrpc.UnmarshalHandler) svc.Handlers.UnmarshalMeta.PushBackNamed(jsonrpc.UnmarshalMetaHandler) svc.Handlers.UnmarshalError.PushBackNamed( protocol.NewUnmarshalErrorHandler(jsonrpc.NewUnmarshalTypedError(exceptionFromCode)).NamedHandler(), ) // Run custom client initialization if present if initClient != nil { initClient(svc.Client) } return svc } // newRequest creates a new request for a SageMaker operation and runs any // custom request initialization. func (c *SageMaker) newRequest(op *request.Operation, params, data interface{}) *request.Request { req := c.NewRequest(op, params, data) // Run custom request initialization if present if initRequest != nil { initRequest(req) } return req } ```
```xml <?xml version="1.0" encoding="UTF-8" standalone="no"?> <document type="com.apple.InterfaceBuilder3.CocoaTouch.XIB" version="3.0" toolsVersion="10117" systemVersion="15F34" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" useTraitCollections="YES"> <dependencies> <deployment identifier="iOS"/> <plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="10085"/> </dependencies> <objects> <placeholder placeholderIdentifier="IBFilesOwner" id="-1" userLabel="File's Owner"/> <placeholder placeholderIdentifier="IBFirstResponder" id="-2" customClass="UIResponder"/> <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" id="gTV-IL-0wX" customClass="AvatorCollectionViewCell"> <rect key="frame" x="0.0" y="0.0" width="100" height="100"/> <autoresizingMask key="autoresizingMask"/> <view key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center"> <rect key="frame" x="0.0" y="0.0" width="100" height="100"/> <subviews> <imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleAspectFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="Taiwan-Flag.jpg" translatesAutoresizingMaskIntoConstraints="NO" id="lLl-6R-Nmm"> <rect key="frame" x="10" y="10" width="80" height="80"/> </imageView> </subviews> <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="calibratedWhite"/> </view> <constraints> <constraint firstItem="lLl-6R-Nmm" firstAttribute="top" secondItem="gTV-IL-0wX" secondAttribute="top" constant="10" id="77E-gc-ij7"/> <constraint firstItem="lLl-6R-Nmm" firstAttribute="leading" secondItem="gTV-IL-0wX" secondAttribute="leading" constant="10" id="Rkf-uD-GJ2"/> <constraint firstAttribute="bottom" secondItem="lLl-6R-Nmm" secondAttribute="bottom" constant="10" id="nSx-OI-7id"/> <constraint firstAttribute="trailing" secondItem="lLl-6R-Nmm" secondAttribute="trailing" constant="10" id="xSv-U6-5Mb"/> </constraints> <connections> <outlet property="imageView" destination="lLl-6R-Nmm" id="IPj-vU-owq"/> </connections> </collectionViewCell> </objects> <resources> <image name="Taiwan-Flag.jpg" width="480" height="319"/> </resources> </document> ```
Vologda (, ) is a city and the administrative center of Vologda Oblast, Russia, located on the river Vologda within the watershed of the Northern Dvina. Population: The city serves as a major transport hub of the Northwest of Russia. The Ministry of Culture of the Russian Federation has classified Vologda as a historic city, one of 41 in Russia and one of only three in Vologda Oblast. 224 buildings in Vologda have been officially recognized as cultural heritage monuments. History Foundation The official founding year of Vologda is 1147, based on the 17th century "Tale of Miracles of Gerasimus of Vologda" and Ivan Slobodsky's 1716 "Chronicler", which tells the story of the arrival of the monk Gerasimus who founded the Trinity Monastery near the Vologda river. This date, which would make Vologda about the same age as Moscow, was introduced by the historian Aleksey Zasetsky in 1780. However, historians and archaeologists have expressed doubts on the official founding year, due to the age and secondary nature of the sources and also due to archaeological excavations dating no earlier than the 13th century. Instead, they believe that the city was founded in the 13th century with Vologda being mentioned in a 1264 agreement between the Novgorod Republic and the Grand Prince of Vladimir as an outlying possession of the Novgorod Republic. The nucleus of Vologda in the 13th century was not located in the area which is now the city center, but rather the area known now as "Lazy ground" (), close to the Resurrection church. This area was the center of Vologda up to 1565. Until that year, no stone constructions existed in Vologda; all of the city fortifications, bridges, houses, churches, and industrial enterprises were made of wood. Early history The unique position of Vologda on important waterways connecting Moscow, Novgorod, and the White Sea (via the Northern Dvina) made it attractive for the Novgorod Republic, as well as for the princes of Tver and Moscow, who fought numerous wars between the 13th and the 15th centuries. In 1371, Dmitry Prilutsky, a monk from the Nikolsky Monastery in Pereslavl-Zalessky, founded Nikolsky Monastery, now known as Spaso-Prilutsky Monastery, close to the city. Dmitry Donskoy, the Grand Prince of Moscow, was the chief benefactor of the monastery and viewed it as a stronghold of the influence of the Grand Duchy of Moscow in the Northern lands in competition with Novgorod. In 1397, during the reign of Vasily I, Vologda was added to the Grand Duchy of Moscow. Subsequently, the city was several times attacked by Novgorod forces. During the Muscovite Civil War, Vologda played a key role. After Vasily II the Blind, the Grand Prince of Moscow, was defeated by Dmitry Shemyaka in 1447, he swore to never start a war against Shemyaka, was exiled to Vologda, and got the city as a personal possession. From there Vasily traveled to the Kirillo-Belozersky Monastery where the hegumen released him from the oath. The civil war continued, and in 1450, Vologda was besieged by the troops of Dmitry Shemyaka; however, they did not manage to occupy the town. After the death of Vasily in 1462, Vologda passed to the possession of his son Andrey Menshoy and became the center of the Principality of Vologda. In 1481, after the death of Andrey who had no successors, Vologda passed to Ivan III, the Grand Duke of Moscow, and was included to the Grand Duchy of Moscow. Under Ivan the Terrible During the reign of Tsar Ivan the Terrible, Vologda became one of the major transit centers of Russia's trade. The foreign trade was conducted mostly with England, Holland, and other western countries via the White Sea. Arkhangelsk was the major foreign trade haven, and Vologda stood on the waterway connecting Moscow with Arkhangelsk. The trade with Siberia was conducted via the Sukhona and the Vychegda, and Vologda also played an important role as a transit center. The state courtyard was built in the city on the bank of the Vologda. In 1553, Vologda was visited by the English seafarer Richard Chancellor who officially established diplomatic relations between the Tsardom of Russia and England. In 1554, trading agent John Gass described Vologda to English merchants as a city with an abundance of bread where the goods were twice as cheap as in Moscow and Novgorod, and that there was no city in Russia that would not trade with Vologda. Following the reports of John Gass, in 1555 England opened a trading office in the city, and the first Russian ambassador sent to England for negotiations became Osip Nepeya, a native of Vologda. In 1565, Ivan the Terrible introduced the policy of Oprichnina and included Vologda in the structure of Oprichnina lands. That year, he visited the city for the first time and decided to make it the center of Oprichnina and consequently the capital of the country. The Tsar ordered to build a new fortress. It was decided to build it not in the former town center, but rather in another part of the town, limited on the one side by the river, and on the other side by what are now Leningradskaya, Oktyabrskaya, and Mira Streets. The fortress was surrounded by a moat. Ivan the Terrible traveled to Vologda in person to supervise the foundation of the fortress on April 28, 1566, which was the day to celebrate the memory of Saint Jason (Nason in the Russian tradition) and Saint Sosipater. Therefore, the territory of the fortress located in the new part of Vologda was named the "Nason-gorod" (Nason-town). The other name of the Nason-gorod was the Vologda Kremlin (currently, the name is sometimes referred only as the Bishop's courtyard). Between 1568 and 1570, a new cathedral was built in the new fortress. The Saint Sophia Cathedral became the first stone building in Vologda. The design of the cathedral copied the Dormition Cathedral of the Moscow Kremlin. This was the idea of Ivan the Terrible who wanted to make his new capital similar to Moscow. He personally supervised the construction, headed by the architect Razmysl Petrov. In 1571, Vologda became the center of the Diocese of Vologda and Perm that was formed in 1492 and previously had its main church in the distant settlement of Ust-Vym in Perm lands. Thereby, Vologda was strengthened not only in trading, military and political influence, but also in ecclesiastical affairs. However, in 1571 Ivan the Terrible unexpectedly stopped the construction work in Vologda and left the city for good. Presumably, this was connected with his decision to abolish Oprichnina, and Vologda was not needed as the second capital any longer. According to the legend, when Ivan visited the Saint Sophia Cathedral, a little stone fell from the roof on his head. The superstitious Tsar who received a serious head injury took it as a sign of misfortune and decided to leave the city. In any case, it is known that the Tsar wanted even to demolish the cathedral, and that the cathedral was never consecrated during his lifetime. The consecration took place only during the reign his son Feodor I in 1587. Parts of the incomplete fortress which were later in the 17th century strengthened with wooden walls stayed up to the 19th century when they were disassembled by the city authorities and local residents and used as a material for stone building. Time of Troubles The Time of Troubles for Vologda began with a plague epidemic in 1605. In 1608, when Russia was split into areas controlled by Tsar Vasily Shuysky and areas controlled by the pretender False Dmitry II supported by Polish troops, the people of Vologda made an oath to False Dmitry. By gaining Vologda not only did he get control over Russian and English trading warehouses, but he also positioned himself to gain control over northern Russia. However, abuses and property seizures by the new administration sent to Vologda caused extreme discontent among the population. As a result, Vologda denounced False Dmitry II and supported Shuysky. Moreover, in February 1609 a national home guard headed by Nikita Vysheslavtsev was formed in Vologda and went to fight against False Dmitry II. In 1612, people of Vologda rendered sizable food and military help to the home guard organized by Kuzma Minin and Dmitry Pozharsky, which eventually defeated Polish troops. However, after the city sent huge military forces to support the second home guard, it remained without sufficient protection, and on September 22, 1612 one of the Lithuanian extortionate groups seized Vologda without resistance, later burning down the city and killing and imprisoning many of its inhabitants. Under the Romanovs After 1613, Vologda quickly recovered due to its convenient location and once again became an important center of foreign trade. During the reign of Peter the Great, Vologda became one of the main military bases of Russia. Military and technical equipment for fortresses and military ships under construction was stored there. Vessels which delivered food supplies to Arkhangelsk were constructed in Vologda. Peter intended to hold them on Lake Kubenskoye, north of Vologda. However, after personally inspecting the lake in 1692, he abandoned the idea deciding that the lake is improper for that purpose. Peter the Great visited Vologda on no less than ten occasions, on six of which (in 1692, 1693, 1694, 1702, 1722, and 1724) he stayed in the city for extended time. He always stayed in a small house of the Dutch merchant Goutman, which in 1872 was bought by the city authorities, and in 1885 was transformed into the memorial museum of Peter the Great and became the first museum of Vologda. However, after St. Petersburg was founded and foreign trade was rerouted to the Baltic Sea, the importance of Vologda as a center of foreign trade decayed. In 1722, Peter issued the decree restricting trade through Arkhangelsk, which damaged Vologda even further. In the course of the administrative reform carried out in 1708, Vologda lost its functions as an administrative center and was included as a town of Archangelgorod Governorate. The revival began only during the reign of Catherine the Great who in 1780 made Vologda the center of Vologda Viceroyalty, a successor of Archangelgorod Governorate. In 1796, the viceroyalty, administered by a governor-general, was transformed into Vologda Governorate, the borders of which stretched up to the Ural mountains in the east. The center of Vologda was rebuilt according to the plan of a provincial city issued in 1781. The street network is still in use now. A new economic lifting of the city was connected with a steamship movement across the Sukhona and with the building of a new railroad line connecting Vologda with Yaroslavl and Moscow (1872), with Arkhangelsk (1898), with St. Petersburg and Vyatka (1905). In 1871, the Danish merchant Friedrich Buman opened a specialized butter factory in the manor of Fominskoye, from Vologda. It was the first butter factory both in Vologda Governorate and in Russia. Since then Vologda became the center of the butter industry, and the Vologda butter, a special type of butter with the taste of nuts invented by Nikolay Vereschagin and Buman, became a world trademark. In 1911, the manor of Fominskoye together with the Buman's creamery was given to the state and became the base for the Vologda dairy institute. Thereby Vologda turned to one of the largest dairy centers of Russia. Since the 15th century, Vologda was a political exile destination and was even known as "Siberia close to the capital". In the 19th–20th centuries, such persons as Joseph Stalin, Vyacheslav Molotov (later the Minister of Foreign Affairs), Nikolai Berdyaev (the famous Russian philosopher), Boris Savinkov (later known as a successful terrorist), Mariya Ulyanova, and Alexander Bogdanov were sent to Vologda. Anatoly Lunacharsky chose to go there to join Bogdanov, and to marry Anna Alexandrovna Malinovskaya, Bogdanov's sister. Soviet period Soviet power was established in Vologda in December 1917, and up to the summer of 1918 co-existed with the zemstvo and municipal administration. In February 1918, Vologda became the "diplomatic capital of Russia" for several months. Embassies located in Saint Petersburg were threatened by the German army, so Western powers, led by American Ambassador David R. Francis, relocated them to Vologda. However, pressured by the Bolsheviks, on July 24, 1918, the diplomats were compelled to leave Vologda and repatriate via Arkhangelsk. During the Russian Civil War, Vologda was the location of the headquarters of the 6th Red Army. The army opposed the White Army under command of Evgeny Miller and the military forces of Entente in northern Russia. In 1924 the government ordered to close the Vsegradsky cathedral, that used to be one of the biggest and most revered in the city. In 1929, the Vologda Governorate was abolished and included into the structure of a new formation, Northern Krai, which also included former Arkhangelsk and Northern Dvina Governorates, as well as the Komi-Zyryan Autonomous Oblast. The administrative center of Northern Krai was located in Arkhangelsk. In December 1936, Northern Krai was abolished and divided into the Komi ASSR and Northern Oblast, with the administrative center still located in Arkhangelsk. On September 23, 1937, Northern Oblast was divided into Arkhangelsk Oblast and Vologda Oblast by the decision of the Central Executive Committee of the Soviet Union. According to the same decision, districts of former Cherepovets Okrug of Leningrad Oblast were attached to Vologda Oblast. These districts currently make for the western part of Vologda Oblast. Thereby the current borders of Vologda Oblast were determined. In the 1930s, a flax factory, a coach-repair factory, and a sawmill, "Northern Communard," were constructed. During World War II, martial law was declared in Vologda, and its industrial enterprises shifted to military production. In the fall of 1941, Finnish troops crossed the borders of Vologda Oblast, and Vologda thus became a front city. The inhabitants were mobilized to dig trenches. In the city, bomb-proof shelters and elementary shelters were under construction, systems of air defense which protected the railway junction and the military-industrial enterprises were developed. As a result, though attempts of bombardments were numerous, no bombs fell on the city. To commemorate these events, a monument to the air defense forces was later erected on Zosimovskaya Street in Vologda. The monument has the shape of an anti-aircraft gun. In addition, Vologda was a railway hub used to supply the army and to evacuate equipment. It also served as a large hospital center. Residents of Vologda donated blood, money, and jewellery. The tank detachment "Vologda Collective Farmer" was funded by these donations. To commemorate these events the monument to the tank T-34 was built on Mira Street. Between 1961 and 1985, Anatoly Drygin was the first secretary of the CPSU Vologda Oblast Committee and the head of the oblast. During this period, notable changes in many aspects of economy both of the city and of the oblast occurred. In particular, a bearing plant, a mechanical plant, and an optical-mechanical factory were built in Vologda. A polytechnical university was opened. A large-scale poultry farm was established. A major construction initiative was carried out, and, in particular, the first buildings higher than five floors were constructed. The city expanded, with new residential areas built; in particular, Byvalovo, GPZ, the fifth and the sixth Microdistricts. In 1976, the Vologda trolleybus system opened. Post-Soviet period In November 1991, the city administration was formed and the reform of local governments began. In October 1993, the Soviets of People's Deputies of all levels were abolished. After the dissolution of the Vologda Soviet, the City Duma was established. The first Duma elections took place on March 20, 1994. This first Duma only had six seats, but in 1995, after the next elections, it was expanded to thirty deputies. On July 25, 1996, the City Duma adopted the main city document: the Charter of Vologda. On October 6, 1996, the first mayoral elections in the history of Vologda took place. Alexey Yakunichev was elected and became the head of the city. His term ended in 2008. In 2003, the construction of a ring road started. Before that, the М8 highway connecting Moscow and Arkhangelsk ran through the city center, causing congestion. Since the completion, the ring road connects the highways А114 (Vologda – Novaya Ladoga), Р5 (Vologda – Medvezhyegorsk), and М8 (Moscow – Arkhangelsk). On August 25, 2005, the City Duma approved the new Charter of Vologda. Even though the deputies introduced more than four hundred amendments and the document increased more than twice in volume as compared with the Charter of 1996, the changes were relatively minor. On October 12, 2008, Yevgeny Shulepov was elected to be the City Head. Administrative and municipal status Vologda is the administrative center of the oblast and, within the framework of administrative divisions, it also serves as the administrative center of Vologodsky District, even though it is not a part of it. As an administrative division, it is, together with one rural locality, incorporated separately as the city of oblast significance of Vologda (one of the four in Vologda Oblast)—an administrative unit with the status equal to that of the districts. As a municipal division, the city of oblast significance of Vologda is incorporated as Vologda Urban Okrug. Politics The key subjects of power in the city are: The Vologda City Duma is a representative body. It comprises 30 deputies elected based on universal, equal, and direct suffrage in 30 single-mandate constituencies. The term of office of the City Council is five years. The Vologda City Duma is controlled and accountable to all elected officials (including the head of the city of Vologda), the city administration, and the Chamber of Control and Accounts. The activities of the city duma are managed by its chairman and presidium (consisting of the chairman, deputy chairmen, heads of factions and standing committees, and a representative of the head of the city of Vologda). The only faction in the Vologda City Duma is the United Russia faction (26 people). The Mayor of Vologda is the highest official in the city, authorized to manage the city economy, budget, distribution of funds, and management of the city administration. On 24 November 2017, Sergei Voropanov (United Russia) was appointed acting mayor of Vologda, being the first deputy head of the city. On 26 November 2019, he was appointed to the post of mayor. The head of the city of Vologda is a city official authorized for external municipal relations, accountable to the federal authorities. Appointed by deputies of the city duma and the governor for five years. Reports to the Vologda City Duma at least once a year. Since 26 September 2016, Yuri Sapozhnikov has been appointed mayor of Vologda. The Vologda city administration is an executive and administrative body. It consists of 7 departments (directly carry out management), 5 departments and 2 departments (provide the work of the administration). The head of administration is the head of the city of Vologda. Deputy heads of the city are heads of departments. The Chamber of Control and Accounts of the city of Vologda is a control body. It is formed by the Vologda City Duma and reports to it. Controls the execution of the budget and the disposal of property owned by the city, conducts budgetary examinations of municipal legal acts, and audits the effectiveness of the use of budgetary funds. Climate Vologda's climate is mild humid continental (Dfb) under the Köppen classification and temperate continental with mild summer and cold winter (Dclo) under the Trewartha classification. Winter is long and cold but not severe and lasts for five months. Spring and autumn are cool, summer is mild, the coldest months are January and February, the warmest month is July. Rain is most frequent in the summer and autumn. Mean annual temperature: Mean annual speed of wind: 3.0 m/s Mean annual humidity of air: 80% Demographics The population of the city and the oblast consists mainly of ethnic Russians. A considerable part of the city population are government officials and civil servants of different levels – according to various estimates, their number reaches fifty thousand people. The reason is that Vologda is not only a big city but also the administrative center of Vologda Oblast. Around 43 million hectares of farmland is unused, hence government has announced giving away free land. Vologda will lend 468,000 hectares of land for agriculture and raising livestock purpose. Culture and art Vologda is one of the best preserved big cities of Russia combining traditional wooden architecture and stone monuments. In Vologda, 193 monuments of architecture and history are designated as cultural monuments of federal significance. The most known of them are Vologda Kremlin (Bishop's courtyard) Saint Sophia cathedral Spaso-Prilutsky Monastery ensemble of the Vladimir churches Konstantin and Elena church, St. John the Baptist Church in Roshcheniye with its frescoes Dmitry Prilutsky church Church of the Intercession on Kozlyona architectural ensembles of the Stone bridge and of the Revolyutsii Square Of 116 historical cities of Russia only 16 have monuments of wooden architecture. Vologda is among them. Trademarks Vologda's trademark products include Vologda lace, butter, and flax. Museums In Vologda, there are ten museums, four showrooms of the Vologda Regional Art Gallery, and the gallery "Red bridge". The largest cultural center of the Russian North is the Vologda State Museum Reserve. Its structure now includes the following museums, Vologda Kremlin (Bishop's courtyard) Peter the Great's house museum (Peter's house) – the first museum of Vologda (opened in 1885) Expocenter "Vologda at a boundary of centuries" Museum "World of the forgotten things" K. N. Batyushkov's apartment museum Museum "Literature. Art. 20th century" Alexander Mozhaysky's house museum Museum "Vologda exile" Museum of Architecture and Ethnography (Semyonkovo) Additionally, Vologda is home to a unique Russian private museum of political history—the Museum of Diplomatic Corps which highlights the short stay of diplomatic corps in Vologda in 1918. Theaters Drama theater Theater for children and youth Puppet theater "Teremok" Chamber theater Philharmonic society of Valery Gavrilin Children's musical theater Annual festivals The following annual theater festivals are held in Vologda: "Voices of History" (the beginning of July, every year) Valery Gavrilin international music festival (every year, from October until December) "Summer in the Kremlin" (every even year, from June until July) The annual open international festival of multimedia art "Multimatograf" Exhibitions Among annual exhibitions which take place in Vologda are the following: "Russian Flax" "Russian Wood" "Gates of the North" "Your Home" Literature Many notable Russian writers and poets were born or worked in Vologda. The best known of them were Konstantin Batyushkov, Varlam Shalamov, Nikolay Rubtsov, and Vasily Belov and Vladimir Gilarovsky. Contemporary literature of Vologda is represented by a number of authors which include Nata Suchkova, Maria Markova, Galina Schekina, and Anton Chorny. Institutions of higher education Vologda State Technical University Vologda State Pedagogical University N.V. Vereschagin Vologda State Dairy Academy Vologda Institute of Law and Economy of the Federal Penal Service Vologda Institute of Business Branches: Vologda branch of the Moscow State Law Academy Vologda branch of the Northwestern Academy of Public Service Vologda branch of the Saint Petersburg State University of Engineering and Economics Vologda branch of the International Academy of Business and New Technologies Transportation Vologda is a major transportation hub, located at the intersection of highways, railways, and waterways. The public transport network is well developed in the city: There are both bus and trolleybus lines. The city has four big automobile bridges: two automobile bridges across the Vologda and two bridges across railways. There is one pedestrian bridge (the Red bridge) in the city center. Railway Vologda is the largest sorting and transit spot of the Northern Railway. It includes the stations Vologda-1, Vologda-2, Rybkino, and Losta. The stretch between Vologda-2 and Losta is the most active one in the railroad network of the Russian Federation, with more than 120–150 pairs of trains running through it daily. Suburban trains and long-distance trains originate from the railway station of Vologda-1. Air The Vologda Airport is situated 10 km from the city centre along the Arkhangelsk highway. Yak-40 aircraft carry out regular passenger flights to Moscow, Ukhta, Velikiy Ustyug, Kichmengsky Gorodok, and Vytegra. Helicopters Mi-2 and Mi-8 are used by the Vologda aviation company. They are used for the emergency aircraft and for the oil pipeline service. Highways The following highways go through Vologda: Federal highway М8 (Moscow–Yaroslavl–Vologda–Arkhangelsk–Severodvinsk). The entrance to Vologda from the Moscow side (south) is Okruzhnoe shosse and Koneva street, from the Arkhangelsk side (north) to Chernyshevskaya street. Road А-114 (Vologda–Cherepovets–Novaya Ladoga). The entrance to Vologda is Leningradskoe shosse and Okruzhnoe shosse. Line Р-5 (Vologda–Kirillov–Vytegra–Pudozh–Medvezhyegorsk). The entrance to Vologda is Alexander Klubov street. Roads of local importance lead to Mozhaiskoye and Norobovo, Fetinino (through Semyonkovo) Gryazovets and Rostilovo (old Moscow highway). The new ring road with modern exits connecting roads A-114, Р-5 and М-8 (the Arkhangelsk destination) is under construction around Vologda. The Arkhangelsk direction is still not connected by the ring road. Urban public transport The municipal transportation of Vologda is carried out by bus and trolleybus routes, and also by lines of fixed-route taxis. Regular bus service started in Vologda in 1929, the trolleybus service was open in 1976. As of November 2009, in Vologda there were five trolleybus routes, nineteen municipal bus routes, and about forty marshrutkas (routed taxis). The main transport companies are the open society "VologdaElectroTrans" (trolleybuses), PATP-1 and PATP-32 (municipal bus routes). Industry Currently, there are more than ten thousand enterprises of various patterns of ownership in Vologda. The most notable ones are: Closed joint-stock company "Vologda Bearing Factory" – produces bearings of various types Open joint stock company "Vagron" – alcohol production Open joint stock company "Vologda Machine-Building Plant" – produces various processing equipment for agriculture Open joint stock company "Vologda Optical and Mechanical Plant" – produces optical devices State-owned enterprise "Vologda Railway-Carriage Repair Works", branch of the Open Society of the Russian Railway – produces various trains, makes repair and reconstruction of old carriages Open joint stock company "Byvalovsky machinery plant" – the leading enterprise of the Northwest of Russia that produces cranes Open joint stock company "ElectroTechMash" – produces electric household and technological products Limited liability company "Central operating company" – building, designing, management of dwellings, management of the commercial real estate Open joint stock company "Trans-alpha" (former "Vologda mechanical factory") – produces trolleybuses and buses Opened joint-stock company "Vologda building designs and road machines factory" – produces mobile buildings for household, public, and industrial use Closed joint-stock company "SoyuzLesMontazh" – produces a wide range of equipment for wood processing and equipment for the paper industry Traditional national crafts are presented by the closed joint-stock company «Snowflake» (lace), limited liability company "Hope" and other enterprises. Sports Vologda has large sports venues such as the stadiums "Dynamo", "Locomotive", "Vityaz", the swimming pools "Dynamo" and "Lagoon", the sports and concert complex "Spectrum", fitness centers, regional athletic spots. Vologda is a home to: the male soccer team "Dynamo" the female basketball team "Chevakata" Twin towns – sister cities Vologda is twinned with: Burgas, Bulgaria Grodno, Belarus Kouvola, Finland Sevastopol, Ukraine Yevpatoria, Ukraine Notable people Arts Konstantin Batyushkov (1787–1855), poet Valery Gavrilin (1939–1999), composer Varlam Shalamov (1907–1982), writer, poet Georgi Vasilyev (1899–1946), film director, screenwriter Apollo Korzeniowski and his son Joseph Conrad, writers, were expelled to Vologda via court-martial order Anya Monzikova (born 25 August 1984), model and actress Sciences Alexander Bykov (born 1962), historian, numismatist Khariton Chebotaryov (1746–1815), historian, rector of the Moscow University Nikolay Devyatkov (1907–2001), engineer and inventor Grigory Landsberg (1890–1957), physicist Sports Uno Aava (born 1928), Estonian racing driver Yuliya Chekalyova (born 1984), cross-country skier Zhanna Gromova (born 1949), figure skating coach Nikolay Gulyayev (born 1966), speed skater Aleksandr Vladimirovich Kulikov (born 1988), football player Natalia Podolskaya (canoeist) (born 1993), canoeist Artur Rylov (born 1989), football player Tamara Rylova (born 1931), speed skater Adam Vishnyakov (born 1991), former professional football player Artem Yashkin (born 1975), football player See also Northern Thebaid References Notes Sources Brumfield, William. Vologda Album (Moscow: Tri Kvadrata, 2005) (in English and in Russian) Sources External links Official website of Vologda Official website of Vologda Vologda in photos: photoarchive by William Brumfield Tracing Russia's Past and Present in Vologda Detailed information on Spaso-Prilutsky Monastery Unofficial website of Vologda View from St. Sophia Cathedral bell tower Russian Pillow Lace Historic architecture of Vologda Russia Beyond the Headlines. Treasures of the Vologda Region Vologda Urban Okrug Vologodsky Uyezd
Ṭha (also romanized as Ttha) is a consonant of Indic abugidas. In modern Indic scripts, Ṭha is derived from the early "Ashoka" Brahmi letter after having gone through the Gupta letter . As with the other cerebral consonants, ṭha is not found in most scripts for Tai, Sino-Tibetan, and other non-Indic languages, except for a few scripts, which retain these letters for transcribing Sanskrit religious terms. Aryabhata used Devanagari letters for numbers, very similar to the Greek numerals, even after the invention of Indian numerals. The values of the different forms of ठ are: ठ = 12 (१२) ठि = 1,200 (१२००) ठु = 120,000 (१ २० ०००) ठृ = 12,000,000 (१ २० ०० ०००) ठॢ = 1,200,000,000 (१ २० ०० ०० ०००) ठे = 12 (१२×१०१०) ठै = 12 (१२×१०१२) ठो = 12 (१२×१०१४) ठौ = 12 (१२×१०१६) Historic Ttha There are three different general early historic scripts - Brahmi and its variants, Kharoṣṭhī, and Tocharian, the so-called slanting Brahmi. Ttha as found in standard Brahmi, was a simple geometric shape, and did not vary much throughout the centuries. The Tocharian Ttha did not have an alternate Fremdzeichen form. The third form of ttha, in Kharoshthi () was probably derived from Aramaic separately from the Brahmi letter. Brahmi Ttha The Brahmi letter , Ttha, is probably derived from the altered Aramaic Teth , and is thus related to the modern Greek Theta. Several identifiable styles of writing the Brahmi Ttha can be found, most associated with a specific set of inscriptions from an artifact or diverse records from an historic period. As the earliest and most geometric style of Brahmi, the letters found on the Edicts of Ashoka and other records from around that time are normally the reference form for Brahmi letters, with vowel marks not attested until later forms of Brahmi back-formed to match the geometric writing style. Tocharian Ttha The Tocharian letter is derived from the Brahmi , but does not have an alternate Fremdzeichen form. Kharoṣṭhī Ttha The Kharoṣṭhī letter is generally accepted as being derived from the altered Aramaic Taw , and is thus related to T and Tau. Devanagari Ṭha Ṭha (ठ) is a consonant of the Devanagari abugida. It ultimately arose from the Brahmi letter , after having gone through the Gupta letter . Letters that derive from it are the Gujarati letter ઠ, and the Modi letter 𑘙. Devanagari-using Languages In all languages, ठ is pronounced as or when appropriate. Like all Indic scripts, Devanagari uses vowel marks attached to the base consonant to override the inherent /ə/ vowel: Conjuncts with ठ Devanagari exhibits conjunct ligatures, as is common in Indic scripts. In modern Devanagari texts, most conjuncts are formed by reducing the letter shape to fit tightly to the following letter, usually by dropping a character's vertical stem, sometimes referred to as a "half form". Some conjunct clusters are always represented by a true ligature, instead of a shape that can be broken into constituent independent letters. Vertically stacked conjuncts are ubiquitous in older texts, while only a few are still used routinely in modern Devanagari texts. Lacking a vertical stem to drop for making a half form, Ṭha either forms a stacked conjunct/ligature, or uses its full form with Virama. The use of ligatures and vertical conjuncts may vary across languages using the Devanagari script, with Marathi in particular avoiding their use where other languages would use them. Ligature conjuncts of ठ True ligatures are quite rare in Indic scripts. The most common ligated conjuncts in Devanagari are in the form of a slight mutation to fit in context or as a consistent variant form appended to the adjacent characters. Those variants include Na and the Repha and Rakar forms of Ra. Nepali and Marathi texts use the "eyelash" Ra half form for an initial "R" instead of repha. Repha र্ (r) + ठ (ṭʰa) gives the ligature rṭʰa: Eyelash र্ (r) + ठ (ṭʰa) gives the ligature rṭʰa: ठ্ (ṭʰ) + rakar र (ra) gives the ligature ṭʰra: प্ (p) + ठ (ṭʰa) gives the ligature pṭʰa: ष্ (ṣ) + ठ (ṭʰa) gives the ligature ṣṭʰa: ष্ (ṣ) + ठ্ (ṭʰ) + य (ya) gives the ligature ṣṭʰya: ठ্ (ṭʰ) + य (ya) gives the ligature ṭʰya: Stacked conjuncts of ठ Vertically stacked ligatures are the most common conjunct forms found in Devanagari text. Although the constituent characters may need to be stretched and moved slightly in order to stack neatly, stacked conjuncts can be broken down into recognizable base letters, or a letter and an otherwise standard ligature. छ্ (cʰ) + ठ (ṭʰa) gives the ligature cʰṭʰa: ढ্ (ḍʱ) + ठ (ṭʰa) gives the ligature ḍʱṭʰa: ड্ (ḍ) + ठ (ṭʰa) gives the ligature ḍṭʰa: द্ (d) + ठ (ṭʰa) gives the ligature dṭʰa: ङ্ (ŋ) + ठ (ṭʰa) gives the ligature ŋṭʰa: ठ্ (ṭʰ) + ब (ba) gives the ligature ṭʰba: ठ্ (ṭʰ) + भ (bʰa) gives the ligature ṭʰbʰa: ठ্ (ṭʰ) + च (ca) gives the ligature ṭʰca: ठ্ (ṭʰ) + छ (cʰa) gives the ligature ṭʰcʰa: ठ্ (ṭʰ) + द (da) gives the ligature ṭʰda: ठ্ (ṭʰ) + ड (ḍa) gives the ligature ṭʰḍa: ठ্ (ṭʰ) + ढ (ḍʱa) gives the ligature ṭʰḍʱa: ठ্ (ṭʰ) + ध (dʱa) gives the ligature ṭʰdʱa: ठ্ (ṭʰ) + ग (ga) gives the ligature ṭʰga: ठ্ (ṭʰ) + घ (ɡʱa) gives the ligature ṭʰɡʱa: ठ্ (ṭʰ) + ह (ha) gives the ligature ṭʰha: ठ্ (ṭʰ) + ज (ja) gives the ligature ṭʰja: ठ্ (ṭʰ) + झ (jʰa) gives the ligature ṭʰjʰa: ठ্ (ṭʰ) + ज্ (j) + ञ (ña) gives the ligature ṭʰjña: ठ্ (ṭʰ) + क (ka) gives the ligature ṭʰka: ठ্ (ṭʰ) + ख (kʰa) gives the ligature ṭʰkʰa: ठ্ (ṭʰ) + क্ (k) + ष (ṣa) gives the ligature ṭʰkṣa: ठ্ (ṭʰ) + ल (la) gives the ligature ṭʰla: ठ্ (ṭʰ) + ळ (ḷa) gives the ligature ṭʰḷa: ठ্ (ṭʰ) + म (ma) gives the ligature ṭʰma: ठ্ (ṭʰ) + न (na) gives the ligature ṭʰna: ठ্ (ṭʰ) + ङ (ŋa) gives the ligature ṭʰŋa: ठ্ (ṭʰ) + ण (ṇa) gives the ligature ṭʰṇa: ठ্ (ṭʰ) + ञ (ña) gives the ligature ṭʰña: ठ্ (ṭʰ) + प (pa) gives the ligature ṭʰpa: ठ্ (ṭʰ) + फ (pʰa) gives the ligature ṭʰpʰa: ठ্ (ṭʰ) + स (sa) gives the ligature ṭʰsa: ठ্ (ṭʰ) + श (ʃa) gives the ligature ṭʰʃa: ठ্ (ṭʰ) + ष (ṣa) gives the ligature ṭʰṣa: ठ্ (ṭʰ) + त (ta) gives the ligature ṭʰta: ठ্ (ṭʰ) + थ (tʰa) gives the ligature ṭʰtʰa: ठ্ (ṭʰ) + ट (ṭa) gives the ligature ṭʰṭa: ठ্ (ṭʰ) + ठ (ṭʰa) gives the ligature ṭʰṭʰa: ठ্ (ṭʰ) + व (va) gives the ligature ṭʰva: ट্ (ṭ) + ठ (ṭʰa) gives the ligature ṭṭʰa: Bengali Ttha The Bengali script ঠ is derived from the Siddhaṃ , and is marked by a similar horizontal head line, but less geometric shape, than its Devanagari counterpart, ठ. The inherent vowel of Bengali consonant letters is /ɔ/, so the bare letter ঠ will sometimes be transliterated as "ttho" instead of "ttha". Adding okar, the "o" vowel mark, gives a reading of /t̳ʰo/. Like all Indic consonants, ঠ can be modified by marks to indicate another (or no) vowel than its inherent "a". ঠ in Bengali-using languages ঠ is used as a basic consonant character in all of the major Bengali script orthographies, including Bengali and Assamese. Conjuncts with ঠ Bengali ঠ exhibits conjunct ligatures, as is common in Indic scripts. Conjunct ligatures with ঠ are all based on the ঠ glyph, with little to no alteration aside from the addition of marks suggesting the conjoining letter. ণ্ (ṇ) + ঠ (ṭʰa) gives the ligature ṇṭʰa: ণ্ (ṇ) + ঠ্ (ṭʰ) + য (ya) gives the ligature ṇṭʰya, with the ya phala suffix: ন্ (n) + ঠ (ṭʰa) gives the ligature nṭʰa: ষ্ (ṣ) + ঠ (ṭʰa) gives the ligature ṣṭʰa: ষ্ (ṣ) + ঠ্ (ṭʰ) + য (ya) gives the ligature ṣṭʰya, with the ya phala suffix: Gujarati Ṭha Ṭha (ઠ) is the twelfth consonant of the Gujarati abugida. It is derived from the Devanagari Ṭha with the top bar (shiro rekha) removed, and ultimately the Brahmi letter . Gujarati-using Languages The Gujarati script is used to write the Gujarati and Kutchi languages. In both languages, ઠ is pronounced as or when appropriate. Like all Indic scripts, Gujarati uses vowel marks attached to the base consonant to override the inherent /ə/ vowel: Conjuncts with ઠ Gujarati ઠ exhibits conjunct ligatures, much like its parent Devanagari Script. While most Gujarati conjuncts can only be formed by reducing the letter shape to create a "half form" that fits tightly to following letter, Ṭha does not have a half form. A few conjunct clusters can be represented by a true ligature, instead of a shape that can be broken into constituent independent letters, and vertically stacked conjuncts can also be found in Gujarati, although much less commonly than in Devanagari. Lacking a half form, Ṭha will normally use an explicit virama when forming conjuncts without a true ligature. True ligatures are quite rare in Indic scripts. The most common ligated conjuncts in Gujarati are in the form of a slight mutation to fit in context or as a consistent variant form appended to the adjacent characters. Those variants include Na and the Repha and Rakar forms of Ra. ર્ (r) + ઠ (ʈʰa) gives the ligature RṬha: ઠ્ (ʈʰ) + ર (ra) gives the ligature ṬhRa: ઠ્ (ʈʰ) + ઠ (ʈʰa) gives the ligature ṬhṬha: ટ્ (ʈ) + ઠ (ʈʰa) gives the ligature ṬṬha: ષ્ (ʂ) + ઠ (ʈʰa) gives the ligature ṢṬha: Telugu Ṭha Ṭha (ఠ) is a consonant of the Telugu abugida. It ultimately arose from the Brahmi letter . It is closely related to the Kannada letter ಠ. Most Telugu consonants contain a v-shaped headstroke that is related to the horizontal headline found in other Indic scripts, although headstrokes do not connect adjacent letters in Telugu. The headstroke is normally lost when adding vowel matras. Telugu conjuncts are created by reducing trailing letters to a subjoined form that appears below the initial consonant of the conjunct. Many subjoined forms are created by dropping their headline, with many extending the end of the stroke of the main letter body to form an extended tail reaching up to the right of the preceding consonant. This subjoining of trailing letters to create conjuncts is in contrast to the leading half forms of Devanagari and Bengali letters. Ligature conjuncts are not a feature in Telugu, with the only non-standard construction being an alternate subjoined form of Ṣa (borrowed from Kannada) in the KṢa conjunct. Malayalam Ṭha Ṭha (ഠ) is a consonant of the Malayalam abugida. It ultimately arose from the Brahmi letter , via the Grantha letter Ttha. Like in other Indic scripts, Malayalam consonants have the inherent vowel "a", and take one of several modifying vowel signs to represent syllables with another vowel or no vowel at all. Conjuncts of ഠ As is common in Indic scripts, Malayalam joins letters together to form conjunct consonant clusters. There are several ways in which conjuncts are formed in Malayalam texts: using a post-base form of a trailing consonant placed under the initial consonant of a conjunct, a combined ligature of two or more consonants joined together, a conjoining form that appears as a combining mark on the rest of the conjunct, the use of an explicit candrakkala mark to suppress the inherent "a" vowel, or a special consonant form called a "chillu" letter, representing a bare consonant without the inherent "a" vowel. Texts written with the modern reformed Malayalam orthography, put̪iya lipi, may favor more regular conjunct forms than older texts in paḻaya lipi, due to changes undertaken in the 1970s by the Government of Kerala. ണ് (ṇ) + ഠ (ṭʰa) gives the ligature ṇṭʰa: ഷ് (ṣ) + ഠ (ṭʰa) gives the ligature ṣṭʰa: Odia Ṭha Ṭha (ଠ) is a consonant of the Odia abugida. It ultimately arose from the Brahmi letter , via the Siddhaṃ letter Ttha. Like in other Indic scripts, Odia consonants have the inherent vowel "a", and take one of several modifying vowel signs to represent syllables with another vowel or no vowel at all. As is common in Indic scripts, Odia joins letters together to form conjunct consonant clusters. The most common conjunct formation is achieved by using a small subjoined form of trailing consonants. Most consonants' subjoined forms are identical to the full form, just reduced in size, although a few drop the curved headline or have a subjoined form not directly related to the full form of the consonant. The second type of conjunct formation is through pure ligatures, where the constituent consonants are written together in a single graphic form. ଠ generates conjuncts only by subjoining and does not form ligatures. Kaithi Ṭha Ṭha (𑂘) is a consonant of the Kaithi abugida. It ultimately arose from the Brahmi letter , via the Siddhaṃ letter Ttha. Like in other Indic scripts, Kaithi consonants have the inherent vowel "a", and take one of several modifying vowel signs to represent syllables with another vowel or no vowel at all. Conjuncts of 𑂘 As is common in Indic scripts, Kaithi joins letters together to form conjunct consonant clusters. The most common conjunct formation is achieved by using a half form of preceding consonants, although several consonants use an explicit virama. Most half forms are derived from the full form by removing the vertical stem. As is common in most Indic scripts, conjucts of ra are indicated with a repha or rakar mark attached to the rest of the consonant cluster. In addition, there are a few vertical conjuncts that can be found in Kaithi writing, but true ligatures are not used in the modern Kaithi script. 𑂩୍ (r) + 𑂘 (ṭʰa) gives the ligature rṭʰa: Comparison of Ṭha The various Indic scripts are generally related to each other through adaptation and borrowing, and as such the glyphs for cognate letters, including Ṭha, are related as well. Character encodings of Ṭha Most Indic scripts are encoded in the Unicode Standard, and as such the letter Ṭha in those scripts can be represented in plain text with unique codepoint. Ṭha from several modern-use scripts can also be found in legacy encodings, such as ISCII. References Conjuncts are identified by IAST transliteration, except aspirated consonants are indicated with a superscript "h" to distinguish from an unaspirated cononant + Ha, and the use of the IPA "ŋ" and "ʃ" instead of the less dinstinctive "ṅ" and "ś". Indic letters
Major League Baseball 2K11 or, in short, MLB 2K11, is an MLB licensed baseball simulation video game published by 2K. MLB 2K11 is available for Microsoft Windows, Xbox 360, PlayStation 2, PlayStation 3, PlayStation Portable, Nintendo DS, and Wii. Commentators The commentary is delivered by the trio of Steve Phillips, Gary Thorne, and John Kruk. Kruk is absent in the Wii version. Cover athlete Roy Halladay of the Philadelphia Phillies is the cover athlete of the game replacing Gold Glove Award winner Evan Longoria from MLB 2K10. New features PC, Xbox 360, PlayStation 3 The "main" version of MLB 2K11 retains the features of Major League Baseball 2K10 but adds new content. Some of the new features include the Dynamic Player Rating System (DPRS), which updates a players ability with the last four weeks of a real player's activity, which will include slumps and hot streaks. The DPRS will only affect hitting and pitching; it will not affect a player's fielding ability. There will be no option to play without the DRPS turned on, however, the DPRS does not affect trades, due to the DPRS being a short term value. Franchise modes will reflect player values based on franchise stats, not real life. The My Player career mode has similarly been improved and tweaked. The umpires will now have a more random strike zone, while pitch ratings affect ability to locate pitches. The game will feature more AI gameplay sliders than any MLB 2K game before, and for the first time, tweaking sliders will not affect achievements. Poor fielders will be "locked out" of good animations, and the fielding rating will affect how close to the ball the fielder must be to reach it. Base stealing has been revamped, and will take into account many variables such as the speed of the runner, type of pitch, lead, and the catcher's arm. Wii The Wii version has its own unique features, including the Mini-Diamond, a new multiplayer mode set in fantasy venues, such as a low gravity Space ballpark to a Circus environment, while the Total Control Pitching and Hitting feature utilizes the Wii Remote and Nunchuk. The Wii version also retains the Franchise, Tournament and Home Run Derby modes of the main version. There is no "My Player" or "MLB Today" career mode for the Wii. PlayStation 2, PlayStation Portable The PlayStation 2 and PlayStation Portable versions are less feature-rich than the main version as they are reskins of Major League Baseball 2K6, but they still feature Franchise and Season play, the Home Run Derby and a unique Manager Showdown feature in which a player sets up a lineup and a starting pitcher and plays the game strictly from the manager's role as strategist. The PSP version adds The Farm, which allows the player to engage in Minor League Baseball games. Nintendo DS The Nintendo DS version features both a Season Mode and a Postseason Mode, as well as utilizing the touch screen for the Total Control Pitching and Hitting Feature. The game also features 250 collectible virtual trading cards. Promotion In January, game publisher 2K Sports announced that they would continue a contest from the previous year. Players had a chance to win $1,000,000 for pitching a perfect game on the Xbox 360 or PS3 versions of the game. The contest began on April 1, 2011. This caused controversy as former WWE wrestler, Stevie Richards had done this before and tried to claim the Million dollars for the Perfect Game he had pitched but had done it before the contest officially began. Brian Kingrey, a music teacher from Hammond, Louisiana, claimed the prize by throwing a perfect game with Roy Halladay within two hours of the start of the contest. Reception Reception for the game has been mixed. IGN rated both the Xbox 360 and PlayStation 3 versions with a 7.0 while the readers favored the 360 version of the game over the PS3 ranging from a 7.3 out of 10 for the 360 to a 6.5 out of 10 for the PS3. The 360 version of the game ran at a smoother frame rate according to most reviews. GameZone gave the game a 7/10, stating "Overall, it is still a unique baseball experience, but unfortunately, after playing it for a little while, you will want an improved product. Let's hope for something even better in 2012." GameSpot gave the game a 7.5/10, praising its online mode improvements, but criticizing its lack of significant changes from last year's version of the game. There were also complaints of several bugs, such as the player fatigue in Franchise mode (player energy would decrease if a game was simulated, but not if the game was actually played) and injury recovery (pitchers who were on "rehab assignments" after injuries would not appear in management screens for setting pitching rotations, yet a player would have to clear a roster spot for him and could only access him from the bullpen; players affected by this bug also could not be demoted or promoted to different levels of the organization). One of the more frustrating aspects of the game is the extraordinarily poor managerial decisions made by computer-controlled teams. Intentional walks are often issued with only one out and under other conditions where such decisions would be unlikely in a real baseball game. Pitchers are removed from games too early, sometimes when pitching shutouts and showing no obvious signs of fatigue. The computer-controlled team will often attempt steals under unfavorable conditions, particularly attempts to steal third base when the computer-controlled team is down by multiple runs and the base runner is already in scoring position with strong batters coming to the plate. The computer-controlled team also tends to bring in a left-handed relief pitcher to face right-handed batters (and vice versa) when the bullpen has good right-handed relief pitchers available and the right-handed batter is more likely to make an out under such a match-up. Finally, the relief pitcher is often allowed to bat, even though they are going to be replaced in the next inning and the bench is full of potential batters. Soundtrack Pearl Jam - "Rearviewmirror" Shout Out Louds - "Please Please Please" Joan Jett - "Bad Reputation" The Willowz - "Repetition" TAB the Band - "Bought and Sold" Trenchtown - "Pourin' Rain" Trenchtown - "Unpaid Holiday" Corroded - "Come On In" Five Finger Death Punch - "Hard to See" The Wolfmen - "Better Days" double0zero - "The Hi Hi's" We Are Scientists - "You Should Learn" USS - "Anti-Venom" There is a different menu screen for the Wii versions "2K BEATS" screen. See also MLB 11: The Show Gary Thorne John Kruk Steve Phillips 2K Sports References 2011 video games 2K Sports games Major League Baseball video games Sports video games with career mode Xbox 360 games PlayStation 2 games PlayStation 3 games PlayStation Portable games Wii games Nintendo DS games Sports video games set in the United States Windows games Multiplayer and single-player video games Take-Two Interactive games MLB 2K Video games developed in the United States Video games set in Maryland Visual Concepts games
```python # # path_to_url # # Unless required by applicable law or agreed to in writing, software # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. """ Set up Flask stuff """ from flask import Blueprint, render_template from flask import send_from_directory from flask import request, redirect import questions """ configure blueprint """ webapp_blueprint = Blueprint( 'webapp', __name__, template_folder='templates', ) """ Renders home page """ @webapp_blueprint.route('/') def serve_home(): return render_template('home.html') """ Serves static file with angular client app """ @webapp_blueprint.route('/client/') def serve_client(): return send_from_directory('webapp/static/client', 'index.html') """ Serves static files used by angular client app """ @webapp_blueprint.route('/client/<path:path>') def serve_client_files(path): return send_from_directory('webapp/static/client', path) """ Handles definition and storage of new questions - GET method shows question entry form - POST method save question """ @webapp_blueprint.route('/questions/add', methods=['GET', 'POST']) def add_question(): if request.method == 'GET': return render_template('add.html', question={}, action='Add') elif request.method == 'POST': data = request.form.to_dict(flat=True) image_file = request.files.get('image') questions.save_question(data, image_file) return redirect('/', code=302) else: return "Method not supported for /questions/add" ```
```html+django CORE_SECRET={{core_secret}} REGISTRY_URL={{registry_url}} JOBSERVICE_SECRET={{jobservice_secret}} CORE_URL={{core_url}} REGISTRY_CONTROLLER_URL={{registry_controller_url}} JOBSERVICE_WEBHOOK_JOB_MAX_RETRY={{notification_webhook_job_max_retry}} JOBSERVICE_WEBHOOK_JOB_HTTP_CLIENT_TIMEOUT={{notification_webhook_job_http_client_timeout}} {%if internal_tls.enabled %} INTERNAL_TLS_ENABLED=true INTERNAL_TLS_TRUST_CA_PATH=/harbor_cust_cert/harbor_internal_ca.crt INTERNAL_TLS_KEY_PATH=/etc/harbor/ssl/job_service.key INTERNAL_TLS_CERT_PATH=/etc/harbor/ssl/job_service.crt {% endif %} {% if internal_tls.verify_client_cert %} INTERNAL_VERIFY_CLIENT_CERT=true {% endif %} HTTP_PROXY={{jobservice_http_proxy}} HTTPS_PROXY={{jobservice_https_proxy}} NO_PROXY={{jobservice_no_proxy}} REGISTRY_CREDENTIAL_USERNAME={{registry_username}} REGISTRY_CREDENTIAL_PASSWORD={{registry_password}} {% if metric.enabled %} METRIC_NAMESPACE=harbor METRIC_SUBSYSTEM=jobservice {% endif %} {% if trace.enabled %} TRACE_ENABLED=true TRACE_SERVICE_NAME=harbor-jobservice TRACE_SAMPLE_RATE={{ trace.sample_rate }} TRACE_NAMESPACE={{ trace.namespace }} TRACE_ATTRIBUTES={{ trace.attributes | to_json | safe }} {% if trace.jaeger.enabled %} TRACE_JAEGER_ENDPOINT={{ trace.jaeger.endpoint if trace.jaeger.endpoint else '' }} TRACE_JAEGER_USERNAME={{ trace.jaeger.username if trace.jaeger.username else '' }} TRACE_JAEGER_PASSWORD={{ trace.jaeger.password if trace.jaeger.password else '' }} TRACE_JAEGER_AGENT_HOSTNAME={{ trace.jaeger.agent_host if trace.jaeger.agent_host else '' }} TRACE_JAEGER_AGENT_PORT={{ trace.jaeger.agent_port if trace.jaeger.agent_port else '' }} {% endif %} {%if trace.otel.enabled %} TRACE_OTEL_ENDPOINT={{ trace.otel.endpoint }} TRACE_OTEL_URL_PATH={{ trace.otel.url_path if trace.otel.url_path else '' }} TRACE_OTEL_COMPRESSION={{ trace.otel.compression }} TRACE_OTEL_TIMEOUT={{ trace.otel.timeout }} TRACE_OTEL_INSECURE={{ trace.otel.insecure }} {% endif %} {% endif %} {% if cache.enabled %} _REDIS_URL_CORE={{redis_url_core}} {% if redis_url_cache_layer %} _REDIS_URL_CACHE_LAYER={{redis_url_cache_layer}} {% endif %} CACHE_ENABLED=true CACHE_EXPIRE_HOURS={{ cache.expire_hours }} {% endif %} ```
HMCS Ypres was one of twelve naval trawlers constructed for and used by the Royal Canadian Navy (RCN) during the First World War. Named after the Second and Third battles of Ypres, the ship entered service in 1918, patrolling the east coast of Canada for submarine activity. Following the war, the ship remained in service with as a patrol and training ship. In 1938, the vessel recommissioned as a gate vessel, re-designated Gate Vessel 1, in service at Halifax, Nova Scotia. On 12 May 1940, the gate vessel was rammed and sunk in a collision with the British battleship . Design and description The RCN's Battle-class trawlers formed part of the Canadian naval response to Admiralty warnings to Canada about the growing German U-boat threat to merchant shipping in the western Atlantic. Intended to augment anti-submarine patrols off Canada's east coast, these ships were modelled on contemporary British North Sea trawlers, since the standard types of Canadian fishing vessels were considered unsuitable for patrol work. Twelve vessels were ordered on 2 February 1917 from two shipyards, Polson Iron Works of Toronto and Canadian Vickers of Montreal. Those vessels built at Polson Iron Works displaced and were long overall with a beam of and a draught of . They were propelled by a steam-powered triple expansion engine driving one shaft creating giving the vessels a maximum speed of . All twelve trawlers were equipped with a QF 12-pounder 12 cwt naval gun mounted forward. This was considered to be the smallest gun that stood a chance of putting a surfaced U-boat out of action, and they also carried a small number of depth charges. The trawlers were named after battles of the Western Front during the First World War that Canadians had been involved in. They cost between $155,000 and $160,000 per vessel. Service history Ypres was constructed by Polson Iron Works at Toronto and was launched on 16 June 1917. Intended for use during the 1917 shipping season, the construction of the vessels was delayed by the entry of the United States into the war. With higher wages found south of the border, a shortage of skilled labour developed in the shipyards, coupled with a shortage of construction material. The trawler was commissioned on 13 November 1917. Ypres sailed to Halifax following her commissioning for defence of the Atlantic coast of Canada. For the defence of shipping in Canadian waters in 1918, the entire Battle class was assigned to work out of Sydney, Nova Scotia. The ship remained in Canadian service following the end of the war until being paid off in 1920. After being recommissioned on 1 May 1923 as a training ship on the east coast, having been re-designated a minesweeper in 1922. With sister ship , Ypres trained with the destroyers on the east coast until November 1932 she was again paid off and was placed in reserve. Refitted as a gate vessel in 1938 and recommissioned, Ypres, designated Gate Vessel 1, formed part of the Halifax boom defences until 12 May 1940, when she was rammed and sunk by the British battleship Revenge. Sinking The battleship was departing to escort two troop transports sailing for the United Kingdom when a request was made for the boom to be opened for her at 1830. Revenge began making her way towards the gate, which opened at 1826. However, before arriving at the gate, the battleship stopped inside the harbour, closer to the gate. The two troop transports had not joined up with the battleship on time and the officer in charge of gate operations did not inform the gate vessels of the change in departure time. When the ships finally did sail, the gate vessels had little time to get the gate open fully. Gate Vessel 1 reported the gate being open at 2055 and at 2056, Revenge rammed the gate vessel, rolling the trawler almost onto her side and flooding Gate Vessel 1 through her upper deck openings. The trawler, attached to the boom, bounced off the side of the battleship, which dragged the trawler and boom for roughly before the battleship came to a halt. Gate Vessel 1 was abandoned as the ship settled onto the boom and sank at roughly 2125. There was no loss of life in the collision, with Revenge collecting thirteen members of the crew and Gate Vessel 2 (sister Festubert) collecting five more sailors, one of them a member of Revenges crew who had jumped overboard to save a Canadian. Revenge and her convoy sailed once ascertaining that there had been no deaths. Another Battle-class trawler, , assumed Ypres position as Gate Vessel 1. After this incident, the crews of other gate vessels would pretend to make elaborate preparations for a collision every time Revenge visited Halifax. References Notes Citations Sources External links Battle-class trawlers Battle-class trawlers World War I naval ships of Canada Maritime incidents in May 1940 Ships sunk in collisions Shipwrecks of Canada 1917 ships Auxiliary ships of the Royal Canadian Navy Ships built in Toronto
```objective-c /* * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), * to deal in the Software without restriction, including without limitation * the rights to use, copy, modify, merge, publish, distribute, sublicense, * and/or sell copies of the Software, and to permit persons to whom the * Software is furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice (including the next * paragraph) shall be included in all copies or substantial portions of the * Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * * Authors: * Ke Yu * Zhiyuan Lv <zhiyuan.lv@intel.com> * * Contributors: * Terrence Xu <terrence.xu@intel.com> * Changbin Du <changbin.du@intel.com> * Bing Niu <bing.niu@intel.com> * Zhi Wang <zhi.a.wang@intel.com> * */ #ifndef _GVT_EDID_H_ #define _GVT_EDID_H_ #include <linux/types.h> struct intel_vgpu; #define EDID_SIZE 128 #define EDID_ADDR 0x50 /* Linux hvm EDID addr */ #define GVT_AUX_NATIVE_WRITE 0x8 #define GVT_AUX_NATIVE_READ 0x9 #define GVT_AUX_I2C_WRITE 0x0 #define GVT_AUX_I2C_READ 0x1 #define GVT_AUX_I2C_STATUS 0x2 #define GVT_AUX_I2C_MOT 0x4 #define GVT_AUX_I2C_REPLY_ACK 0x0 struct intel_vgpu_edid_data { bool data_valid; unsigned char edid_block[EDID_SIZE]; }; enum gmbus_cycle_type { GMBUS_NOCYCLE = 0x0, NIDX_NS_W = 0x1, IDX_NS_W = 0x3, GMBUS_STOP = 0x4, NIDX_STOP = 0x5, IDX_STOP = 0x7 }; /* * States of GMBUS * * GMBUS0-3 could be related to the EDID virtualization. Another two GMBUS * registers, GMBUS4 (interrupt mask) and GMBUS5 (2 byte indes register), are * not considered here. Below describes the usage of GMBUS registers that are * cared by the EDID virtualization * * GMBUS0: * R/W * port selection. value of bit0 - bit2 corresponds to the GPIO registers. * * GMBUS1: * R/W Protect * Command and Status. * bit0 is the direction bit: 1 is read; 0 is write. * bit1 - bit7 is slave 7-bit address. * bit16 - bit24 total byte count (ignore?) * * GMBUS2: * Most of bits are read only except bit 15 (IN_USE) * Status register * bit0 - bit8 current byte count * bit 11: hardware ready; * * GMBUS3: * Read/Write * Data for transfer */ /* From hw specs, Other phases like START, ADDRESS, INDEX * are invisible to GMBUS MMIO interface. So no definitions * in below enum types */ enum gvt_gmbus_phase { GMBUS_IDLE_PHASE = 0, GMBUS_DATA_PHASE, GMBUS_WAIT_PHASE, //GMBUS_STOP_PHASE, GMBUS_MAX_PHASE }; struct intel_vgpu_i2c_gmbus { unsigned int total_byte_count; /* from GMBUS1 */ enum gmbus_cycle_type cycle_type; enum gvt_gmbus_phase phase; }; struct intel_vgpu_i2c_aux_ch { bool i2c_over_aux_ch; bool aux_ch_mot; }; enum i2c_state { I2C_NOT_SPECIFIED = 0, I2C_GMBUS = 1, I2C_AUX_CH = 2 }; /* I2C sequences cannot interleave. * GMBUS and AUX_CH sequences cannot interleave. */ struct intel_vgpu_i2c_edid { enum i2c_state state; unsigned int port; bool slave_selected; bool edid_available; unsigned int current_edid_read; struct intel_vgpu_i2c_gmbus gmbus; struct intel_vgpu_i2c_aux_ch aux_ch; }; void intel_vgpu_init_i2c_edid(struct intel_vgpu *vgpu); int intel_gvt_i2c_handle_gmbus_read(struct intel_vgpu *vgpu, unsigned int offset, void *p_data, unsigned int bytes); int intel_gvt_i2c_handle_gmbus_write(struct intel_vgpu *vgpu, unsigned int offset, void *p_data, unsigned int bytes); void intel_gvt_i2c_handle_aux_ch_write(struct intel_vgpu *vgpu, int port_idx, unsigned int offset, void *p_data); #endif /*_GVT_EDID_H_*/ ```
```shell #!/usr/bin/env bash # vim:ts=4:sts=4:sw=4:et # # Author: Hari Sekhon # Date: 2020-03-24 15:36:53 +0000 (Tue, 24 Mar 2020) # # path_to_url # # # If you're using my code you're welcome to connect with me on LinkedIn and optionally send me feedback to help steer this or other code I publish # # path_to_url # set -euo pipefail [ -n "${DEBUG:-}" ] && set -x srcdir="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" # shellcheck disable=SC1090,SC1091 . "$srcdir/lib/utils.sh" # used by usage() in lib/utils.sh # shellcheck disable=SC2034 usage_description="Returns a list of Shippable projects ids and names, or a single project name if the project id is given as an arg" # shellcheck disable=SC2034 usage_args="[<project_id>]" if [ -z "${SHIPPABLE_ACCOUNT_ID:-}" ]; then usage "SHIPPABLE_ACCOUNT_ID environment variable is not set (get this value from your Web UI Dashboard)" fi help_usage "$@" project_id="" if [ $# -gt 0 ]; then project_id="$1" shift || : fi if [ -n "$project_id" ] && ! [[ "$project_id" =~ ^[[:alnum:]]+$ ]]; then usage "invalid project id '$project_id' argument specified, must be alphanumeric" fi jq_query_common='[.id, .sourceRepoOwner.login, .name] | @tsv' # API returns list without project id or hashmap with project id jq_query=".[] | $jq_query_common" if [ -n "$project_id" ]; then jq_query="$jq_query_common" fi "$srcdir/shippable_api.sh" "/projects/$project_id?sortBy=createdAt&sortOrder=-1&ownerAccountIds=$SHIPPABLE_ACCOUNT_ID" "$@" | jq -r "$jq_query" ```
```c++ #ifndef BOOST_MPL_INT_HPP_INCLUDED #define BOOST_MPL_INT_HPP_INCLUDED // // (See accompanying file LICENSE_1_0.txt or copy at // path_to_url // // See path_to_url for documentation. // $Id: int.hpp 49267 2008-10-11 06:19:02Z agurtovoy $ // $Date: 2008-10-10 23:19:02 -0700 (Fri, 10 Oct 2008) $ // $Revision: 49267 $ #include <boost/mpl/int_fwd.hpp> #define AUX_WRAPPER_VALUE_TYPE int #include <boost/mpl/aux_/integral_wrapper.hpp> #endif // BOOST_MPL_INT_HPP_INCLUDED ```
```php <?php /* core classes with .compare_objects support */ class myDateTime extends DateTime {} (function() { return new myDateTime('now') == new DateTime('+1 seconds'); })(); /* class comparison with string: needs to have __toString */ class myClassHasToString { public function __toString() { return ''; } } class myMiddlewareClass extends myClassHasToString {} (function() { return '' == new myMiddlewareClass(); })(); /* false-positive: global context should not influence analysis */ $compared = date_create('today') == date_create('today'); ```
```php <?php /* * * * path_to_url * * Unless required by applicable law or agreed to in writing, software * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the */ namespace Google\Service\BeyondCorp; class your_sha256_hashdata extends \Google\Model { /** * @var string */ public $createTime; /** * @var string */ public $endTime; /** * @var bool */ public $requestedCancellation; /** * @var string */ public $statusMessage; /** * @var string */ public $target; /** * @var string */ public $verb; /** * @param string */ public function setCreateTime($createTime) { $this->createTime = $createTime; } /** * @return string */ public function getCreateTime() { return $this->createTime; } /** * @param string */ public function setEndTime($endTime) { $this->endTime = $endTime; } /** * @return string */ public function getEndTime() { return $this->endTime; } /** * @param bool */ public function setRequestedCancellation($requestedCancellation) { $this->requestedCancellation = $requestedCancellation; } /** * @return bool */ public function getRequestedCancellation() { return $this->requestedCancellation; } /** * @param string */ public function setStatusMessage($statusMessage) { $this->statusMessage = $statusMessage; } /** * @return string */ public function getStatusMessage() { return $this->statusMessage; } /** * @param string */ public function setTarget($target) { $this->target = $target; } /** * @return string */ public function getTarget() { return $this->target; } /** * @param string */ public function setVerb($verb) { $this->verb = $verb; } /** * @return string */ public function getVerb() { return $this->verb; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(your_sha256_hashdata::class, your_sha256_hashhaApplicationOperationMetadata'); ```
```css Importer Sass Operators Referencing Parent Selectors SassScript Number Functions SassScript String Operations ```
```javascript /** * @license Apache-2.0 * * * * path_to_url * * Unless required by applicable law or agreed to in writing, software * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. */ 'use strict'; // MODULES // var propertyDescriptorIn = require( '@stdlib/utils/property-descriptor-in' ); // MAIN // /** * Tests if an object's own or inherited property is non-enumerable. * * @param {*} value - value to test * @param {*} property - property to test * @returns {boolean} boolean indicating if an object property is non-enumerable * * @example * var defineProperty = require( '@stdlib/utils/define-property' ); * * var obj = { * 'boop': true * }; * * defineProperty( obj, 'beep', { * 'configurable': true, * 'enumerable': false, * 'writable': true, * 'value': true * }); * * var bool = isNonEnumerablePropertyIn( obj, 'boop' ); * // returns false * * bool = isNonEnumerablePropertyIn( obj, 'beep' ); * // returns true */ function isNonEnumerablePropertyIn( value, property ) { var desc = propertyDescriptorIn( value, property ); return ( desc !== null && desc.enumerable === false ); } // EXPORTS // module.exports = isNonEnumerablePropertyIn; ```
```go // or more contributor license agreements. See the NOTICE file // distributed with this work for additional information // regarding copyright ownership. The ASF licenses this file // // path_to_url // // Unless required by applicable law or agreed to in writing, // "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY // specific language governing permissions and limitations // Package mallocator defines an allocator implementation for // memory.Allocator which defers to libc malloc. It requires // usage of CGO. package mallocator ```
Biryubash (; , Böröbaş; , Pürömučaš) is a rural locality (a village) in Novotroitsky Selsoviet, Mishkinsky District, Bashkortostan, Russia. The population was 378 as of 2010. There are 3 streets. Geography Biryubash is located 27 km northeast of Mishkino (the district's administrative centre) by road. Refandy is the nearest rural locality. References Rural localities in Mishkinsky District
On 6 July 2013, Boko Haram insurgents attacked the Government Secondary School in the village of Mamudo in Yobe State Nigeria and killed at least 42 people. Most of the dead were students, though some staff members were also killed. Background Boko Haram was founded in 2002 to seek the establishment of an Islamic state and fight against the Westernization of Nigeria, which the group says is the root cause of criminal behaviour in that country. From 2009 to 2013, violence linked to the Boko Haram insurgency resulted in 3,600 deaths, including 1,600 civilians. In mid-May 2013, Nigeria declared a state of emergency in Adamawa, Borno, and Yobe States aiming to end the Boko Haram insurgency. The resulting crackdown has led to the capture or killing of hundreds of Boko Haram members, with the remainder retreating to mountainous areas from which they increasingly targeted civilians. Since 2010, Boko Haram has targeted schools, killing hundreds of students. A spokesperson said such attacks would continue as long as government soldiers continued to interfere with traditional Koran-based education. More than 10,000 children are no longer able to attend school due to attacks by Boko Haram. Roughly 20,000 people fled Yobe State to Cameroon during June 2013 to escape the violence. In June 2013, Nigerian soldiers beat students at a Koran-based school, angering Boko Haram members. An attack on 16 June by Boko Haram militants killed seven children, two teachers, two soldiers, and two militants. The next day, militants killed nine students who were taking exams. On 4 July, gunmen attacked and killed a school headmaster and his family. Mamudo is from Potiskum, Yobe State's largest city. Boko Haram have carried out several major attacks there. Attack Before dawn on 6 July 2013, gunmen attacked a secondary school in Mamudo, Yobe State, northeastern Nigeria, where they killed at least 42 people. A local eyewitness described the situation: "It was a gory sight...There were 42 bodies; most of them were students. Some of them had parts of their bodies blown off and badly burnt while others had gunshot wounds." Most of the dead were students, with a few staff members and a teacher also killed. Some were burned alive while others died of gunshot wounds. At the morgue, parents struggled to identify their children, as many bodies were burned beyond recognition. Survivors were taken to a nearby clinic, guarded by the Nigerian army. According to survivors, the gunmen gathered the victims in a central location and then began shooting and throwing explosives. The assailants also brought fuel, which they used to set the school on fire. Six students who escaped were found hiding in the bushes with gunshot wounds and taken to the hospital. More than 100 others were missing as of 6 July. Reactions On 7 July, Yobe State governor Ibrahim Gaidam called the attackers cold-blooded murderers and "devoid of any shred of humanity". He ordered all secondary schools in the state to close until September, the start of the new academic year. He also requested that the national government end the mobile phone blackout in the state, saying the lack of mobile service prevented citizens from alerting authorities of suspicious people in the area prior to the attack. References 2013 mass shootings in Africa 2013 murders in Nigeria 2010s massacres in Nigeria Attacks on schools in Nigeria Deaths by firearm in Nigeria High school shootings Islamic terrorist incidents in 2013 July 2013 crimes in Africa July 2013 events in Nigeria Mass murder in 2013 Mass shootings in Nigeria Mass murder in Yobe State Massacres perpetrated by Boko Haram School massacres Terrorist incidents in Nigeria in 2013
```java /** * * This copyrighted material is made available to anyone wishing to use, modify, * copy, or redistribute it subject to the terms and conditions of the GNU * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY * for more details. * * along with this distribution; if not, see <path_to_url */ package org.bytesoft.bytetcc.supports.springboot.controller; import java.beans.PropertyEditorSupport; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import javax.transaction.xa.XAException; import javax.transaction.xa.Xid; import org.bytesoft.bytetcc.CompensableCoordinator; import org.bytesoft.common.utils.ByteUtils; import org.bytesoft.common.utils.CommonUtils; import org.bytesoft.compensable.CompensableBeanFactory; import org.bytesoft.compensable.aware.CompensableBeanFactoryAware; import org.bytesoft.transaction.remote.RemoteCoordinator; import org.bytesoft.transaction.xa.XidFactory; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.PathVariable; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMethod; import org.springframework.web.bind.annotation.ResponseBody; @Controller public class CompensableCoordinatorController extends PropertyEditorSupport implements CompensableBeanFactoryAware { static final Logger logger = LoggerFactory.getLogger(CompensableCoordinatorController.class); static final String HEADER_PROPAGATION_KEY = "X-PROPAGATION-KEY"; @Autowired private CompensableCoordinator compensableCoordinator; @Autowired private CompensableBeanFactory beanFactory; @RequestMapping(value = "/org/bytesoft/bytetcc/prepare/{xid}", method = RequestMethod.POST) @ResponseBody public int prepare(@PathVariable("xid") String identifier, HttpServletResponse response) { try { XidFactory xidFactory = this.beanFactory.getCompensableXidFactory(); byte[] byteArray = ByteUtils.stringToByteArray(identifier); Xid xid = xidFactory.createGlobalXid(byteArray); return this.compensableCoordinator.prepare(xid); } catch (XAException ex) { logger.error("Error occurred while preparing transaction: {}.", identifier, ex); response.addHeader("failure", "true"); response.addHeader("XA_XAER", String.valueOf(ex.errorCode)); response.setStatus(500); return -1; } catch (RuntimeException ex) { logger.error("Error occurred while preparing transaction: {}.", identifier, ex); response.addHeader("failure", "true"); response.setStatus(500); return -1; } } @RequestMapping(value = "/org/bytesoft/bytetcc/commit/{xid}/{opc}", method = RequestMethod.POST) @ResponseBody public void commit(@PathVariable("xid") String identifier, @PathVariable("opc") boolean onePhase, HttpServletResponse response) { try { XidFactory xidFactory = this.beanFactory.getCompensableXidFactory(); byte[] byteArray = ByteUtils.stringToByteArray(identifier); Xid xid = xidFactory.createGlobalXid(byteArray); this.compensableCoordinator.commit(xid, onePhase); } catch (XAException ex) { logger.error("Error occurred while committing transaction: {}.", identifier, ex); response.addHeader("failure", "true"); response.addHeader("XA_XAER", String.valueOf(ex.errorCode)); response.setStatus(500); } catch (RuntimeException ex) { logger.error("Error occurred while committing transaction: {}.", identifier, ex); response.addHeader("failure", "true"); response.setStatus(500); } } @RequestMapping(value = "/org/bytesoft/bytetcc/rollback/{xid}", method = RequestMethod.POST) @ResponseBody public void rollback(@PathVariable("xid") String identifier, HttpServletResponse response) { try { XidFactory xidFactory = this.beanFactory.getCompensableXidFactory(); byte[] byteArray = ByteUtils.stringToByteArray(identifier); Xid xid = xidFactory.createGlobalXid(byteArray); this.compensableCoordinator.rollback(xid); } catch (XAException ex) { logger.error("Error occurred while rolling back transaction: {}.", identifier, ex); response.addHeader("failure", "true"); response.addHeader("XA_XAER", String.valueOf(ex.errorCode)); response.setStatus(500); } catch (RuntimeException ex) { logger.error("Error occurred while rolling back transaction: {}.", identifier, ex); response.addHeader("failure", "true"); response.setStatus(500); } } @RequestMapping(value = "/org/bytesoft/bytetcc/recover/{flag}", method = RequestMethod.GET) @ResponseBody public Xid[] recover(@PathVariable("flag") int flag, HttpServletResponse response) { try { return this.compensableCoordinator.recover(flag); } catch (XAException ex) { logger.error("Error occurred while recovering transactions.", ex); response.addHeader("failure", "true"); response.addHeader("XA_XAER", String.valueOf(ex.errorCode)); response.setStatus(500); return new Xid[0]; } catch (RuntimeException ex) { logger.error("Error occurred while recovering transactions.", ex); response.addHeader("failure", "true"); response.setStatus(500); return new Xid[0]; } } @RequestMapping(value = "/org/bytesoft/bytetcc/forget/{xid}", method = RequestMethod.POST) @ResponseBody public void forget(@PathVariable("xid") String identifier, HttpServletResponse response) { try { XidFactory xidFactory = this.beanFactory.getCompensableXidFactory(); byte[] byteArray = ByteUtils.stringToByteArray(identifier); Xid xid = xidFactory.createGlobalXid(byteArray); this.compensableCoordinator.forget(xid); } catch (XAException ex) { logger.error("Error occurred while forgetting transaction: {}.", identifier, ex); response.addHeader("failure", "true"); response.addHeader("XA_XAER", String.valueOf(ex.errorCode)); response.setStatus(500); } catch (RuntimeException ex) { logger.error("Error occurred while forgetting transaction: {}.", identifier, ex); response.addHeader("failure", "true"); response.setStatus(500); } } @RequestMapping(value = "/org/bytesoft/bytetcc/getIdentifier") @ResponseBody public String getIdentifier(HttpServletRequest request, HttpServletResponse response) { RemoteCoordinator nativePartcipant = (RemoteCoordinator) this.beanFactory.getCompensableNativeParticipant(); response.addHeader(HEADER_PROPAGATION_KEY, nativePartcipant.getIdentifier()); return nativePartcipant.getIdentifier(); } @RequestMapping(value = "/org/bytesoft/bytetcc/getApplication") @ResponseBody public String getApplication(HttpServletRequest request, HttpServletResponse response) { RemoteCoordinator nativePartcipant = (RemoteCoordinator) this.beanFactory.getCompensableNativeParticipant(); response.addHeader(HEADER_PROPAGATION_KEY, nativePartcipant.getIdentifier()); return CommonUtils.getApplication(nativePartcipant.getIdentifier()); } public CompensableBeanFactory getBeanFactory() { return this.beanFactory; } public void setBeanFactory(CompensableBeanFactory tbf) { this.beanFactory = tbf; } public CompensableCoordinator getCompensableCoordinator() { return compensableCoordinator; } public void setCompensableCoordinator(CompensableCoordinator compensableCoordinator) { this.compensableCoordinator = compensableCoordinator; } } ```
```perl6 ######################################################################### # OpenKore - Packet sending # This module contains functions for sending packets to the server. # # This software is open source, licensed under the GNU General Public # Basically, this means that you're allowed to modify and distribute # this software. However, if you distribute modified versions, you MUST # also distribute the source code. # See path_to_url for the full license. ######################################################################## #bysctnightcore package Network::Send::kRO::RagexeRE_2018_04_04b; use strict; use base qw(Network::Send::kRO::RagexeRE_2018_03_07b); sub new { my ($class) = @_; my $self = $class->SUPER::new(@_); my %packets = ( '0437' => ['actor_action', 'a4 C', [qw(targetID type)]], '0368' => ['actor_info_request', 'a4', [qw(ID)]], '0361' => ['actor_look_at', 'v C', [qw(head body)]], '0369' => ['actor_name_request', 'a4', [qw(ID)]], '0819' => ['buy_bulk_buyer', 'a4 a4 a*', [qw(buyerID buyingStoreID itemInfo)]], #Buying store '0815' => ['buy_bulk_closeShop'], '0811' => ['buy_bulk_openShop', 'a4 c a*', [qw(limitZeny result itemInfo)]], #Selling store '0817' => ['buy_bulk_request', 'a4', [qw(ID)]], #6 '035F' => ['character_move', 'a3', [qw(coordString)]], '0202' => ['friend_request', 'a*', [qw(username)]],# len 26 '022D' => ['homunculus_command', 'v C', [qw(commandType commandID)]], '0363' => ['item_drop', 'a2 v', [qw(ID amount)]], '07E4' => ['item_list_window_selected', 'v V V a*', [qw(len type act itemInfo)]], '0362' => ['item_take', 'a4', [qw(ID)]], '0436' => ['map_login', 'a4 a4 a4 V C', [qw(accountID charID sessionID tick sex)]], '02C4' => ['party_join_request_by_name', 'Z24', [qw(partyName)]], '0438' => ['skill_use', 'v2 a4', [qw(lv skillID targetID)]], '0364' => ['storage_item_add', 'a2 V', [qw(ID amount)]], '0365' => ['storage_item_remove', 'a2 V', [qw(ID amount)]], '023B' => ['storage_password'], '0360' => ['sync', 'V', [qw(time)]], '0AF4' => ['skill_use_location', 'v4 C', [qw(lv skillID x y unknown)]], #11 ); $self->{packet_list}{$_} = $packets{$_} for keys %packets; my %handlers = qw( actor_action 0437 actor_info_request 0368 actor_look_at 0361 actor_name_request 0369 buy_bulk_buyer 0819 buy_bulk_closeShop 0815 buy_bulk_openShop 0811 buy_bulk_request 0817 character_move 035F friend_request 0202 homunculus_command 022D item_drop 0363 item_list_window_selected 07E4 item_take 0362 map_login 0436 party_join_request_by_name 02C4 skill_use 0438 skill_use_location 0AF4 storage_item_add 0364 storage_item_remove 0365 storage_password 023B sync 0360 ); $self->{packet_lut}{$_} = $handlers{$_} for keys %handlers; return $self; } 1; ```
MITIM may refer to: Man in the Iron Mask, a name given to a prisoner arrested as Eustache Dauger in 1669, and held in a number of jails Master in International Technology & Innovation Management, a master's degree offered at: Graduate School of Management (St. Petersburg State University) Lappeenranta University of Technology
Bhimbandh Wildlife Sanctuary is a wildlife sanctuary in Bihar in the south-west of Munger District. Etymology During the Mahabharata period, when the Pandavas were on their exile, they had also come to this forest during that time. For his livelihood, Bhima built a dam to merge the two sources. That is why this place was named Bhimbandh. Geography Bhimbandh Wildlife Sanctuary is located in the south west of Munger district near the town of Haveli Kharagpur. The forests cover an area or 681.99 km² on the hills and undulating tract of Kharagpur Hills. It is situated at a distance of 56 km from southern border of Munger, 20 km from Jamui Railway Station, 45 kilometers from the Bariarpur railway station, and 200 km from Patna Airport. Bhimbandh is situated south of the Ganges River, at the northern edge of Chota Nagpur Plateau and west of Santhal Pargana. it is surrounded on all sides by densely inhabited non-forestry areas. In the valley portions and at the foothills are several hot springs of which the finest are at Bhimbandh, Sita Kund and Rishi Kund. All the hot springs maintain nearly almost same temperature all year round. Of them, the Bhimbandh springs have the hottest temperature (52 °C to 65 °C) and discharge (0.84-1.12 cum/sec) and constitute the best area for the exploration of geothermal energy potential. There are number of places of tourist interest near the Sanctuary, including Rishi Kund, Sita Kund, Ha-Ha Punch Kumari, Rameshwar Kund, and Kharagpur Lake. Climate The climate is normal for the Munger district. There are three distinct seasons in this zone, summer (March to May), monsoon (June to September) and winter (October to February). Average annual rainfall of this district is 1146 mm. Fauna Fauna include: tiger (8), leopard (36), peafowl (637), wild bear (1063), Indian hare (507), langur (3388), monkey (1612), sahil (57), bear (96), cheetal (187), barking deer (559), Van Murgi (863), nilgai (255), python (39), newala (36), gaur (39), and hyena (36) are the major fauna of the Bhimband. Other fauna include the jungle cat, fishing cat, and leopard cat. Small mammals include the rare hispid hare, Indian gray mongoose, small Indian mongooses, large Indian civet, small Indian civets, Bengal fox, golden jackal, sloth bear, Chinese pangolin, Indian pangolins, hog badger, Chinese ferret badgers, and particolored flying squirrel. Crocodiles are found in Kharagpur lake and Kalidah near Rameshwar kund. Among snakes, cobra and kraits are of common occurrence while pythons are occasionally seen. Common bird species are peafowl, grey partridge, quail, Malabar hornbill, pied hornbill, swallow, nightjars, drongo, paradise flycatcher, kingfisher, bulbul, mynas, pigeon, wood pigeon, blue jay, owl, falcon, kite, eastern imperial eagle, greater spotted eagle, white-tailed eagle, Pallas's fish eagle, grey-headed fish eagle, lesser kestrel and vulture. Birds such as the lesser white-fronted goose, ferruginous duck, Baer's pochard duck and lesser adjutant, greater adjutant, black-necked stork, and Asian openbill stork migrate from Central Asia to the park during winter. The main animals found at Bhimbandh Wildlife Sanctuary are tigers, panthers, wild boars, sloth bear, sambar deer, chitals, four-horned antelope and nilgais. However, the sanctuary is more famous for its bird life rather than the land animals. It is home to more than 100 species of resident birds, which stay here all year around. The number increases in the winter migratory season when there is an influx of birds from the Central Asia region. Flora There are two major biomes present in Bhimbandh, grassland and forest. The sanctuary area has mainly sal forest, forest, Bamboo forest, grassland and many small forests of many miscellaneous species of flora. The top canopy of Bhimbandh mainly consists Shorea robusta (sal), Diospyros melanoxylon (kendu), Boswellia serrata (salai), Terminalia tomentosa (Asan), Terminalia belliriica (Bahera), Terminalia arjuna (Arjun), Pterocarpus marsupium (Paisar). The top canopy of Bhimbandh mainly Madhuca indica (Mahua) and Holarrhena antidysenterica. Bhimbandh's ground Flora includes Flemengia chappar and Zizyphus xylopyrus. climber flora include Bauhinia vahlii and Smilex protifrera. Creeper flora includes Butea superba and Butea parviflora. Administration Administered under Munger district, this village lies within the Gangta police station, has an area of 4137 acres. The villagers in Bhimbandh are mainly engaged in the field of agriculture. The Government of Bihar recently allotted Rs 9 crore for the promotion of tourism in the area. Bihar chief minister Nitish Kumar visited in 2017 and instructed the officials to channel the hot spring to use in irrigation. Transport Visitors can access this place by road from Munger town or from Bhagalpur Junction Railway Station. Bariarpur railway station on Jamalpur Bhagalpur section is the nearest railway station as also the nearest road link on NH 80. From Bariarpur there is a direct road to Haveli Kharagpur. There are private taxi services from Haveli Kharagpur to Bhimbandh. One can also take taxi from Jamui railway station. Road Route: Bariarpur - galimpur - Kharagpur - Gangta - Bhimbandh - Jamui. References External links Directory of Indian Government Websites, Munger Chota Nagpur dry deciduous forests Wildlife sanctuaries in Bihar Munger district 1976 establishments in Bihar Protected areas established in 1976
Philip Vincent Belloc Jebb (15 March 1927 - 7 April 1995), was a British architect and Liberal Party politician. Background Jebb was the son of Reginald Jebb and Eleanor Belloc. He was a grandson of the writer and Liberal MP Hilaire Belloc. He was also a grandson of the civil engineer George Robert Jebb. He was educated at Downside School and King's College, Cambridge. In 1955 he married Lucy Margaret Pollen, sister of the architect Francis Pollen. They had two sons and two daughters. His brother Anthony became a monk of the Benedictine order at Downside Abbey, taking the name Dom Philip Jebb. Professional career Following National service, Jebb read architecture at Cambridge, qualified as an architect and eventually went into private practice. In 1967-70 he enlarged Abbey House, adjacent to Audley End House, to three times its former size for the Hon. Robin Neville. Around 1967 he aided portrait painter Dominick Elwes in the design of a Mediterranean-style apartment complex in Andalucia, Spain, which was completed in 1970. In 1971, Jebb designed a restaurant for Winston Churchill's house, Chartwell, on behalf of the National Trust. In the early 1980s he designed Government House on Lundy Island, which is now available to rent for holidays through the Landmark Trust. The renovation and remodelling of country houses, and the addition of features necessary for their opening to the public, was a Jebb speciality. The Dowager Duchess of Devonshire spoke highly of his public lavatories at Chatsworth House. Political career Jebb came forward as a last-minute Liberal candidate for the new Central division of Norfolk at the 1950 General Election. The seat included much of the old Norfolk East constituency which had been represented by the former Liberal, Frank Medlicott, who had not been opposed by an official Liberal candidate before. Jebb was defeated into third place and did not stand for parliament again. External links Philip Jebb architect The Independent obituary References 1927 births 1995 deaths Liberal Party (UK) parliamentary candidates 20th-century English architects Alumni of King's College, Cambridge People educated at Downside School
```python # # # path_to_url # # Unless required by applicable law or agreed to in writing, software # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # ============================================================================== """Common functions for repeatedly evaluating a checkpoint.""" import logging import os import time import numpy as np import tensorflow as tf from object_detection.core import box_list from object_detection.core import box_list_ops from object_detection.core import keypoint_ops from object_detection.core import standard_fields as fields from object_detection.utils import label_map_util from object_detection.utils import ops from object_detection.utils import visualization_utils as vis_utils slim = tf.contrib.slim def write_metrics(metrics, global_step, summary_dir): """Write metrics to a summary directory. Args: metrics: A dictionary containing metric names and values. global_step: Global step at which the metrics are computed. summary_dir: Directory to write tensorflow summaries to. """ logging.info('Writing metrics to tf summary.') summary_writer = tf.summary.FileWriter(summary_dir) for key in sorted(metrics): summary = tf.Summary(value=[ tf.Summary.Value(tag=key, simple_value=metrics[key]), ]) summary_writer.add_summary(summary, global_step) logging.info('%s: %f', key, metrics[key]) summary_writer.close() logging.info('Metrics written to tf summary.') # TODO: Add tests. def visualize_detection_results(result_dict, tag, global_step, categories, summary_dir='', export_dir='', agnostic_mode=False, show_groundtruth=False, min_score_thresh=.5, max_num_predictions=20): """Visualizes detection results and writes visualizations to image summaries. This function visualizes an image with its detected bounding boxes and writes to image summaries which can be viewed on tensorboard. It optionally also writes images to a directory. In the case of missing entry in the label map, unknown class name in the visualization is shown as "N/A". Args: result_dict: a dictionary holding groundtruth and detection data corresponding to each image being evaluated. The following keys are required: 'original_image': a numpy array representing the image with shape [1, height, width, 3] 'detection_boxes': a numpy array of shape [N, 4] 'detection_scores': a numpy array of shape [N] 'detection_classes': a numpy array of shape [N] The following keys are optional: 'groundtruth_boxes': a numpy array of shape [N, 4] 'groundtruth_keypoints': a numpy array of shape [N, num_keypoints, 2] Detections are assumed to be provided in decreasing order of score and for display, and we assume that scores are probabilities between 0 and 1. tag: tensorboard tag (string) to associate with image. global_step: global step at which the visualization are generated. categories: a list of dictionaries representing all possible categories. Each dict in this list has the following keys: 'id': (required) an integer id uniquely identifying this category 'name': (required) string representing category name e.g., 'cat', 'dog', 'pizza' 'supercategory': (optional) string representing the supercategory e.g., 'animal', 'vehicle', 'food', etc summary_dir: the output directory to which the image summaries are written. export_dir: the output directory to which images are written. If this is empty (default), then images are not exported. agnostic_mode: boolean (default: False) controlling whether to evaluate in class-agnostic mode or not. show_groundtruth: boolean (default: False) controlling whether to show groundtruth boxes in addition to detected boxes min_score_thresh: minimum score threshold for a box to be visualized max_num_predictions: maximum number of detections to visualize Raises: ValueError: if result_dict does not contain the expected keys (i.e., 'original_image', 'detection_boxes', 'detection_scores', 'detection_classes') """ if not set([ 'original_image', 'detection_boxes', 'detection_scores', 'detection_classes' ]).issubset(set(result_dict.keys())): raise ValueError('result_dict does not contain all expected keys.') if show_groundtruth and 'groundtruth_boxes' not in result_dict: raise ValueError('If show_groundtruth is enabled, result_dict must contain ' 'groundtruth_boxes.') logging.info('Creating detection visualizations.') category_index = label_map_util.create_category_index(categories) image = np.squeeze(result_dict['original_image'], axis=0) detection_boxes = result_dict['detection_boxes'] detection_scores = result_dict['detection_scores'] detection_classes = np.int32((result_dict['detection_classes'])) detection_keypoints = result_dict.get('detection_keypoints', None) detection_masks = result_dict.get('detection_masks', None) # Plot groundtruth underneath detections if show_groundtruth: groundtruth_boxes = result_dict['groundtruth_boxes'] groundtruth_keypoints = result_dict.get('groundtruth_keypoints', None) vis_utils.visualize_boxes_and_labels_on_image_array( image, groundtruth_boxes, None, None, category_index, keypoints=groundtruth_keypoints, use_normalized_coordinates=False, max_boxes_to_draw=None) vis_utils.visualize_boxes_and_labels_on_image_array( image, detection_boxes, detection_classes, detection_scores, category_index, instance_masks=detection_masks, keypoints=detection_keypoints, use_normalized_coordinates=False, max_boxes_to_draw=max_num_predictions, min_score_thresh=min_score_thresh, agnostic_mode=agnostic_mode) if export_dir: export_path = os.path.join(export_dir, 'export-{}.png'.format(tag)) vis_utils.save_image_array_as_png(image, export_path) summary = tf.Summary(value=[ tf.Summary.Value( tag=tag, image=tf.Summary.Image( encoded_image_string=vis_utils.encode_image_array_as_png_str( image))) ]) summary_writer = tf.summary.FileWriter(summary_dir) summary_writer.add_summary(summary, global_step) summary_writer.close() logging.info('Detection visualizations written to summary with tag %s.', tag) def _run_checkpoint_once(tensor_dict, evaluators=None, batch_processor=None, checkpoint_dirs=None, variables_to_restore=None, restore_fn=None, num_batches=1, master='', save_graph=False, save_graph_dir=''): """Evaluates metrics defined in evaluators. This function loads the latest checkpoint in checkpoint_dirs and evaluates all metrics defined in evaluators. The metrics are processed in batch by the batch_processor. Args: tensor_dict: a dictionary holding tensors representing a batch of detections and corresponding groundtruth annotations. evaluators: a list of object of type DetectionEvaluator to be used for evaluation. Note that the metric names produced by different evaluators must be unique. batch_processor: a function taking four arguments: 1. tensor_dict: the same tensor_dict that is passed in as the first argument to this function. 2. sess: a tensorflow session 3. batch_index: an integer representing the index of the batch amongst all batches By default, batch_processor is None, which defaults to running: return sess.run(tensor_dict) To skip an image, it suffices to return an empty dictionary in place of result_dict. checkpoint_dirs: list of directories to load into an EnsembleModel. If it has only one directory, EnsembleModel will not be used -- a DetectionModel will be instantiated directly. Not used if restore_fn is set. variables_to_restore: None, or a dictionary mapping variable names found in a checkpoint to model variables. The dictionary would normally be generated by creating a tf.train.ExponentialMovingAverage object and calling its variables_to_restore() method. Not used if restore_fn is set. restore_fn: None, or a function that takes a tf.Session object and correctly restores all necessary variables from the correct checkpoint file. If None, attempts to restore from the first directory in checkpoint_dirs. num_batches: the number of batches to use for evaluation. master: the location of the Tensorflow session. save_graph: whether or not the Tensorflow graph is stored as a pbtxt file. save_graph_dir: where to store the Tensorflow graph on disk. If save_graph is True this must be non-empty. Returns: global_step: the count of global steps. all_evaluator_metrics: A dictionary containing metric names and values. Raises: ValueError: if restore_fn is None and checkpoint_dirs doesn't have at least one element. ValueError: if save_graph is True and save_graph_dir is not defined. """ if save_graph and not save_graph_dir: raise ValueError('`save_graph_dir` must be defined.') sess = tf.Session(master, graph=tf.get_default_graph()) sess.run(tf.global_variables_initializer()) sess.run(tf.local_variables_initializer()) sess.run(tf.tables_initializer()) if restore_fn: restore_fn(sess) else: if not checkpoint_dirs: raise ValueError('`checkpoint_dirs` must have at least one entry.') checkpoint_file = tf.train.latest_checkpoint(checkpoint_dirs[0]) saver = tf.train.Saver(variables_to_restore) saver.restore(sess, checkpoint_file) if save_graph: tf.train.write_graph(sess.graph_def, save_graph_dir, 'eval.pbtxt') counters = {'skipped': 0, 'success': 0} with tf.contrib.slim.queues.QueueRunners(sess): try: for batch in range(int(num_batches)): if (batch + 1) % 100 == 0: logging.info('Running eval ops batch %d/%d', batch + 1, num_batches) if not batch_processor: try: result_dict = sess.run(tensor_dict) counters['success'] += 1 except tf.errors.InvalidArgumentError: logging.info('Skipping image') counters['skipped'] += 1 result_dict = {} else: result_dict = batch_processor(tensor_dict, sess, batch, counters) for evaluator in evaluators: # TODO: Use image_id tensor once we fix the input data # decoders to return correct image_id. # TODO: result_dict contains batches of images, while # add_single_ground_truth_image_info expects a single image. Fix evaluator.add_single_ground_truth_image_info( image_id=batch, groundtruth_dict=result_dict) evaluator.add_single_detected_image_info( image_id=batch, detections_dict=result_dict) logging.info('Running eval batches done.') except tf.errors.OutOfRangeError: logging.info('Done evaluating -- epoch limit reached') finally: # When done, ask the threads to stop. logging.info('# success: %d', counters['success']) logging.info('# skipped: %d', counters['skipped']) all_evaluator_metrics = {} for evaluator in evaluators: metrics = evaluator.evaluate() evaluator.clear() if any(key in all_evaluator_metrics for key in metrics): raise ValueError('Metric names between evaluators must not collide.') all_evaluator_metrics.update(metrics) global_step = tf.train.global_step(sess, tf.train.get_global_step()) sess.close() return (global_step, all_evaluator_metrics) # TODO: Add tests. def repeated_checkpoint_run(tensor_dict, summary_dir, evaluators, batch_processor=None, checkpoint_dirs=None, variables_to_restore=None, restore_fn=None, num_batches=1, eval_interval_secs=120, max_number_of_evaluations=None, master='', save_graph=False, save_graph_dir=''): """Periodically evaluates desired tensors using checkpoint_dirs or restore_fn. This function repeatedly loads a checkpoint and evaluates a desired set of tensors (provided by tensor_dict) and hands the resulting numpy arrays to a function result_processor which can be used to further process/save/visualize the results. Args: tensor_dict: a dictionary holding tensors representing a batch of detections and corresponding groundtruth annotations. summary_dir: a directory to write metrics summaries. evaluators: a list of object of type DetectionEvaluator to be used for evaluation. Note that the metric names produced by different evaluators must be unique. batch_processor: a function taking three arguments: 1. tensor_dict: the same tensor_dict that is passed in as the first argument to this function. 2. sess: a tensorflow session 3. batch_index: an integer representing the index of the batch amongst all batches By default, batch_processor is None, which defaults to running: return sess.run(tensor_dict) checkpoint_dirs: list of directories to load into a DetectionModel or an EnsembleModel if restore_fn isn't set. Also used to determine when to run next evaluation. Must have at least one element. variables_to_restore: None, or a dictionary mapping variable names found in a checkpoint to model variables. The dictionary would normally be generated by creating a tf.train.ExponentialMovingAverage object and calling its variables_to_restore() method. Not used if restore_fn is set. restore_fn: a function that takes a tf.Session object and correctly restores all necessary variables from the correct checkpoint file. num_batches: the number of batches to use for evaluation. eval_interval_secs: the number of seconds between each evaluation run. max_number_of_evaluations: the max number of iterations of the evaluation. If the value is left as None the evaluation continues indefinitely. master: the location of the Tensorflow session. save_graph: whether or not the Tensorflow graph is saved as a pbtxt file. save_graph_dir: where to save on disk the Tensorflow graph. If store_graph is True this must be non-empty. Returns: metrics: A dictionary containing metric names and values in the latest evaluation. Raises: ValueError: if max_num_of_evaluations is not None or a positive number. ValueError: if checkpoint_dirs doesn't have at least one element. """ if max_number_of_evaluations and max_number_of_evaluations <= 0: raise ValueError( '`number_of_steps` must be either None or a positive number.') if not checkpoint_dirs: raise ValueError('`checkpoint_dirs` must have at least one entry.') last_evaluated_model_path = None number_of_evaluations = 0 while True: start = time.time() logging.info('Starting evaluation at ' + time.strftime( '%Y-%m-%d-%H:%M:%S', time.gmtime())) model_path = tf.train.latest_checkpoint(checkpoint_dirs[0]) if not model_path: logging.info('No model found in %s. Will try again in %d seconds', checkpoint_dirs[0], eval_interval_secs) elif model_path == last_evaluated_model_path: logging.info('Found already evaluated checkpoint. Will try again in %d ' 'seconds', eval_interval_secs) else: last_evaluated_model_path = model_path global_step, metrics = _run_checkpoint_once(tensor_dict, evaluators, batch_processor, checkpoint_dirs, variables_to_restore, restore_fn, num_batches, master, save_graph, save_graph_dir) write_metrics(metrics, global_step, summary_dir) number_of_evaluations += 1 if (max_number_of_evaluations and number_of_evaluations >= max_number_of_evaluations): logging.info('Finished evaluation!') break time_to_next_eval = start + eval_interval_secs - time.time() if time_to_next_eval > 0: time.sleep(time_to_next_eval) return metrics def result_dict_for_single_example(image, key, detections, groundtruth=None, class_agnostic=False, scale_to_absolute=False): """Merges all detection and groundtruth information for a single example. Note that evaluation tools require classes that are 1-indexed, and so this function performs the offset. If `class_agnostic` is True, all output classes have label 1. Args: image: A single 4D image tensor of shape [1, H, W, C]. key: A single string tensor identifying the image. detections: A dictionary of detections, returned from DetectionModel.postprocess(). groundtruth: (Optional) Dictionary of groundtruth items, with fields: 'groundtruth_boxes': [num_boxes, 4] float32 tensor of boxes, in normalized coordinates. 'groundtruth_classes': [num_boxes] int64 tensor of 1-indexed classes. 'groundtruth_area': [num_boxes] float32 tensor of bbox area. (Optional) 'groundtruth_is_crowd': [num_boxes] int64 tensor. (Optional) 'groundtruth_difficult': [num_boxes] int64 tensor. (Optional) 'groundtruth_group_of': [num_boxes] int64 tensor. (Optional) 'groundtruth_instance_masks': 3D int64 tensor of instance masks (Optional). class_agnostic: Boolean indicating whether the detections are class-agnostic (i.e. binary). Default False. scale_to_absolute: Boolean indicating whether boxes, masks, keypoints should be scaled to absolute coordinates. Note that for IoU based evaluations, it does not matter whether boxes are expressed in absolute or relative coordinates. Default False. Returns: A dictionary with: 'original_image': A [1, H, W, C] uint8 image tensor. 'key': A string tensor with image identifier. 'detection_boxes': [max_detections, 4] float32 tensor of boxes, in normalized or absolute coordinates, depending on the value of `scale_to_absolute`. 'detection_scores': [max_detections] float32 tensor of scores. 'detection_classes': [max_detections] int64 tensor of 1-indexed classes. 'detection_masks': [max_detections, None, None] float32 tensor of binarized masks. (Only present if available in `detections`) 'groundtruth_boxes': [num_boxes, 4] float32 tensor of boxes, in normalized or absolute coordinates, depending on the value of `scale_to_absolute`. (Optional) 'groundtruth_classes': [num_boxes] int64 tensor of 1-indexed classes. (Optional) 'groundtruth_area': [num_boxes] float32 tensor of bbox area. (Optional) 'groundtruth_is_crowd': [num_boxes] int64 tensor. (Optional) 'groundtruth_difficult': [num_boxes] int64 tensor. (Optional) 'groundtruth_group_of': [num_boxes] int64 tensor. (Optional) 'groundtruth_instance_masks': 3D int64 tensor of instance masks (Optional). """ label_id_offset = 1 # Applying label id offset (b/63711816) input_data_fields = fields.InputDataFields() output_dict = { input_data_fields.original_image: image, input_data_fields.key: key, } detection_fields = fields.DetectionResultFields detection_boxes = detections[detection_fields.detection_boxes][0] output_dict[detection_fields.detection_boxes] = detection_boxes image_shape = tf.shape(image) if scale_to_absolute: absolute_detection_boxlist = box_list_ops.to_absolute_coordinates( box_list.BoxList(detection_boxes), image_shape[1], image_shape[2]) output_dict[detection_fields.detection_boxes] = ( absolute_detection_boxlist.get()) detection_scores = detections[detection_fields.detection_scores][0] output_dict[detection_fields.detection_scores] = detection_scores if class_agnostic: detection_classes = tf.ones_like(detection_scores, dtype=tf.int64) else: detection_classes = ( tf.to_int64(detections[detection_fields.detection_classes][0]) + label_id_offset) output_dict[detection_fields.detection_classes] = detection_classes if detection_fields.detection_masks in detections: detection_masks = detections[detection_fields.detection_masks][0] output_dict[detection_fields.detection_masks] = detection_masks if scale_to_absolute: # TODO: This should be done in model's postprocess # function ideally. detection_masks_reframed = ops.reframe_box_masks_to_image_masks( detection_masks, detection_boxes, image_shape[1], image_shape[2]) detection_masks_reframed = tf.to_float( tf.greater(detection_masks_reframed, 0.5)) output_dict[detection_fields.detection_masks] = detection_masks_reframed if detection_fields.detection_keypoints in detections: detection_keypoints = detections[detection_fields.detection_keypoints][0] output_dict[detection_fields.detection_keypoints] = detection_keypoints if scale_to_absolute: absolute_detection_keypoints = keypoint_ops.scale( detection_keypoints, image_shape[1], image_shape[2]) output_dict[detection_fields.detection_keypoints] = ( absolute_detection_keypoints) if groundtruth: output_dict.update(groundtruth) if scale_to_absolute: groundtruth_boxes = groundtruth[input_data_fields.groundtruth_boxes] absolute_gt_boxlist = box_list_ops.to_absolute_coordinates( box_list.BoxList(groundtruth_boxes), image_shape[1], image_shape[2]) output_dict[input_data_fields.groundtruth_boxes] = ( absolute_gt_boxlist.get()) # For class-agnostic models, groundtruth classes all become 1. if class_agnostic: groundtruth_classes = groundtruth[input_data_fields.groundtruth_classes] groundtruth_classes = tf.ones_like(groundtruth_classes, dtype=tf.int64) output_dict[input_data_fields.groundtruth_classes] = groundtruth_classes return output_dict ```
```smalltalk // See COPYING for details using System; using System.Text; using System.Collections.Generic; using System.IO; using System.Reflection; namespace NDesk.DBus { class MessageWriter { protected EndianFlag endianness; protected MemoryStream stream; public Connection connection; //a default constructor is a bad idea for now as we want to make sure the header and content-type match public MessageWriter () : this (Connection.NativeEndianness) {} public MessageWriter (EndianFlag endianness) { this.endianness = endianness; stream = new MemoryStream (); } public byte[] ToArray () { //TODO: mark the writer locked or something here return stream.ToArray (); } public void CloseWrite () { int needed = Protocol.PadNeeded ((int)stream.Position, 8); for (int i = 0 ; i != needed ; i++) stream.WriteByte (0); } public void Write (byte val) { stream.WriteByte (val); } public void Write (bool val) { Write ((uint) (val ? 1 : 0)); } unsafe protected void MarshalUShort (byte *data) { WritePad (2); byte[] dst = new byte[2]; if (endianness == Connection.NativeEndianness) { dst[0] = data[0]; dst[1] = data[1]; } else { dst[0] = data[1]; dst[1] = data[0]; } stream.Write (dst, 0, 2); } unsafe public void Write (short val) { MarshalUShort ((byte*)&val); } unsafe public void Write (ushort val) { MarshalUShort ((byte*)&val); } unsafe protected void MarshalUInt (byte *data) { WritePad (4); byte[] dst = new byte[4]; if (endianness == Connection.NativeEndianness) { dst[0] = data[0]; dst[1] = data[1]; dst[2] = data[2]; dst[3] = data[3]; } else { dst[0] = data[3]; dst[1] = data[2]; dst[2] = data[1]; dst[3] = data[0]; } stream.Write (dst, 0, 4); } unsafe public void Write (int val) { MarshalUInt ((byte*)&val); } unsafe public void Write (uint val) { MarshalUInt ((byte*)&val); } unsafe protected void MarshalULong (byte *data) { WritePad (8); byte[] dst = new byte[8]; if (endianness == Connection.NativeEndianness) { for (int i = 0; i < 8; ++i) dst[i] = data[i]; } else { for (int i = 0; i < 8; ++i) dst[i] = data[7 - i]; } stream.Write (dst, 0, 8); } unsafe public void Write (long val) { MarshalULong ((byte*)&val); } unsafe public void Write (ulong val) { MarshalULong ((byte*)&val); } #if !DISABLE_SINGLE unsafe public void Write (float val) { MarshalUInt ((byte*)&val); } #endif unsafe public void Write (double val) { MarshalULong ((byte*)&val); } public void Write (string val) { byte[] utf8_data = Encoding.UTF8.GetBytes (val); Write ((uint)utf8_data.Length); stream.Write (utf8_data, 0, utf8_data.Length); WriteNull (); } public void Write (ObjectPath val) { Write (val.Value); } public void Write (Signature val) { byte[] ascii_data = val.GetBuffer (); if (ascii_data.Length > Protocol.MaxSignatureLength) throw new Exception ("Signature length " + ascii_data.Length + " exceeds maximum allowed " + Protocol.MaxSignatureLength + " bytes"); Write ((byte)ascii_data.Length); stream.Write (ascii_data, 0, ascii_data.Length); WriteNull (); } public void WriteComplex (object val, Type type) { if (type == typeof (void)) return; if (type.IsArray) { WriteArray (val, type.GetElementType ()); } else if (type.IsGenericType && (type.GetGenericTypeDefinition () == typeof (IDictionary<,>) || type.GetGenericTypeDefinition () == typeof (Dictionary<,>))) { Type[] genArgs = type.GetGenericArguments (); System.Collections.IDictionary idict = (System.Collections.IDictionary)val; WriteFromDict (genArgs[0], genArgs[1], idict); } else if (Mapper.IsPublic (type)) { WriteObject (type, val); } else if (!type.IsPrimitive && !type.IsEnum) { WriteValueType (val, type); /* } else if (type.IsGenericType && type.GetGenericTypeDefinition () == typeof (Nullable<>)) { //is it possible to support nullable types? Type[] genArgs = type.GetGenericArguments (); WriteVariant (genArgs[0], val); */ } else { throw new Exception ("Can't write"); } } public void Write (Type type, object val) { if (type == typeof (void)) return; if (type.IsArray) { WriteArray (val, type.GetElementType ()); } else if (type == typeof (ObjectPath)) { Write ((ObjectPath)val); } else if (type == typeof (Signature)) { Write ((Signature)val); } else if (type == typeof (object)) { Write (val); } else if (type == typeof (string)) { Write ((string)val); } else if (type.IsGenericType && (type.GetGenericTypeDefinition () == typeof (IDictionary<,>) || type.GetGenericTypeDefinition () == typeof (Dictionary<,>))) { Type[] genArgs = type.GetGenericArguments (); System.Collections.IDictionary idict = (System.Collections.IDictionary)val; WriteFromDict (genArgs[0], genArgs[1], idict); } else if (Mapper.IsPublic (type)) { WriteObject (type, val); } else if (!type.IsPrimitive && !type.IsEnum) { WriteValueType (val, type); } else { Write (Signature.TypeToDType (type), val); } } //helper method, should not be used as it boxes needlessly public void Write (DType dtype, object val) { switch (dtype) { case DType.Byte: { Write ((byte)val); } break; case DType.Boolean: { Write ((bool)val); } break; case DType.Int16: { Write ((short)val); } break; case DType.UInt16: { Write ((ushort)val); } break; case DType.Int32: { Write ((int)val); } break; case DType.UInt32: { Write ((uint)val); } break; case DType.Int64: { Write ((long)val); } break; case DType.UInt64: { Write ((ulong)val); } break; #if !DISABLE_SINGLE case DType.Single: { Write ((float)val); } break; #endif case DType.Double: { Write ((double)val); } break; case DType.String: { Write ((string)val); } break; case DType.ObjectPath: { Write ((ObjectPath)val); } break; case DType.Signature: { Write ((Signature)val); } break; case DType.Variant: { Write ((object)val); } break; default: throw new Exception ("Unhandled D-Bus type: " + dtype); } } public void WriteObject (Type type, object val) { ObjectPath path; BusObject bobj = val as BusObject; if (bobj == null && val is MarshalByRefObject) { bobj = ((MarshalByRefObject)val).GetLifetimeService () as BusObject; } if (bobj == null) throw new Exception ("No object reference to write"); path = bobj.Path; Write (path); } //variant public void Write (object val) { //TODO: maybe support sending null variants if (val == null) throw new NotSupportedException ("Cannot send null variant"); Type type = val.GetType (); WriteVariant (type, val); } public void WriteVariant (Type type, object val) { Signature sig = Signature.GetSig (type); Write (sig); Write (type, val); } //this requires a seekable stream for now public void WriteArray (object obj, Type elemType) { Array val = (Array)obj; //TODO: more fast paths for primitive arrays if (elemType == typeof (byte)) { if (val.Length > Protocol.MaxArrayLength) throw new Exception ("Array length " + val.Length + " exceeds maximum allowed " + Protocol.MaxArrayLength + " bytes"); Write ((uint)val.Length); stream.Write ((byte[])val, 0, val.Length); return; } long origPos = stream.Position; Write ((uint)0); //advance to the alignment of the element WritePad (Protocol.GetAlignment (Signature.TypeToDType (elemType))); long startPos = stream.Position; foreach (object elem in val) Write (elemType, elem); long endPos = stream.Position; uint ln = (uint)(endPos - startPos); stream.Position = origPos; if (ln > Protocol.MaxArrayLength) throw new Exception ("Array length " + ln + " exceeds maximum allowed " + Protocol.MaxArrayLength + " bytes"); Write (ln); stream.Position = endPos; } public void WriteFromDict (Type keyType, Type valType, System.Collections.IDictionary val) { long origPos = stream.Position; Write ((uint)0); //advance to the alignment of the element //WritePad (Protocol.GetAlignment (Signature.TypeToDType (type))); WritePad (8); long startPos = stream.Position; foreach (System.Collections.DictionaryEntry entry in val) { WritePad (8); Write (keyType, entry.Key); Write (valType, entry.Value); } long endPos = stream.Position; uint ln = (uint)(endPos - startPos); stream.Position = origPos; if (ln > Protocol.MaxArrayLength) throw new Exception ("Dict length " + ln + " exceeds maximum allowed " + Protocol.MaxArrayLength + " bytes"); Write (ln); stream.Position = endPos; } public void WriteValueType (object val, Type type) { MethodInfo mi = TypeImplementer.GetWriteMethod (type); mi.Invoke (null, new object[] {this, val}); } /* public void WriteValueTypeOld (object val, Type type) { WritePad (8); if (type.IsGenericType && type.GetGenericTypeDefinition () == typeof (KeyValuePair<,>)) { System.Reflection.PropertyInfo key_prop = type.GetProperty ("Key"); Write (key_prop.PropertyType, key_prop.GetValue (val, null)); System.Reflection.PropertyInfo val_prop = type.GetProperty ("Value"); Write (val_prop.PropertyType, val_prop.GetValue (val, null)); return; } FieldInfo[] fis = type.GetFields (BindingFlags.Public | BindingFlags.NonPublic | BindingFlags.Instance); foreach (System.Reflection.FieldInfo fi in fis) { object elem; elem = fi.GetValue (val); Write (fi.FieldType, elem); } } */ public void WriteNull () { stream.WriteByte (0); } public void WritePad (int alignment) { stream.Position = Protocol.Padded ((int)stream.Position, alignment); } } } ```
```objective-c // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. An additional grant // of patent rights can be found in the PATENTS file in the same directory. #pragma once struct CompactionIterationStats { // Compaction statistics // Doesn't include records skipped because of // CompactionFilter::Decision::kRemoveAndSkipUntil. int64_t num_record_drop_user = 0; int64_t num_record_drop_hidden = 0; int64_t num_record_drop_obsolete = 0; int64_t num_record_drop_range_del = 0; int64_t num_range_del_drop_obsolete = 0; uint64_t total_filter_time = 0; // Input statistics // TODO(noetzli): The stats are incomplete. They are lacking everything // consumed by MergeHelper. uint64_t num_input_records = 0; uint64_t num_input_deletion_records = 0; uint64_t num_input_corrupt_records = 0; uint64_t total_input_raw_key_bytes = 0; uint64_t total_input_raw_value_bytes = 0; // Single-Delete diagnostics for exceptional situations uint64_t num_single_del_fallthru = 0; uint64_t num_single_del_mismatch = 0; }; ```
Santa Rosa de Calamuchita is a small village in the province of Córdoba, Argentina. It had about 10,000 inhabitants at the . The village is located in the center of the Calamuchita Valley, in the middle of a landscape that includes hills (the Sierras) as well as rivers and lakes; the area is a major tourist attraction. Other important nearby towns in the Valley are Villa General Belgrano and Embalse (the latter is home to a nuclear power plant). External links Santa Rosa de Calamuchita Hotels Web site of Santa Rosa de Calamuchita Santa Rosa de Calamuchita - Official website. Pasta Restaurant in Santa Rosa de Calamuchita - Official website. Populated places in Córdoba Province, Argentina Tourism in Argentina Cities in Argentina
Mario Cassano (born 8 October 1983) is an Italian former professional footballer who played as a goalkeeper. Club career Born in Vizzolo Predabissi, Lombardy, Cassano started his senior career at Serie D side Voghera, located at near-by province. In summer 2001, he joined A.C. Fiorentina and played twice for first team. In August 2002, after the bankrupt of La Viola, he joined Empoli F.C. which also located in Tuscany. After 3 seasons as backup goalkeeper, he joined Serie B side Piacenza, where he played as first choice except 2006–07 season behind Ferdinando Coppola (and also injured) and first season shared the role with Gabriele Aldegani. In 2009–10 season, he swapped club with Christian Puggioni, both joined the team on loan. In January 2010, Sampdoria signed Cassano on loan, due to the injury of their first choice Luca Castellazzi and sent Vincenzo Fiorillo to Reggina on loan. However, he worked as backup of Marco Storari, another new signing. At the end of the loan spell, he came back to Piacenza. Cassano was the first choice until December 2011. He was questioned by the prosecutor on 21 March 2012. Cassano was banned from football in June 2012. Italian football scandal On 1 June 2012 the prosecutor requested to ban Cassano for 5 years due to involvement in 2011–12 Italian football scandal. It was suspected that the match AlbinoLeffe–Piacenza on 20 December 2010, Atalanta–Piacenza on 19 March 2011 were fixed. Eventually FIGC announced to ban him for 5 years on 18 June 2012. International career Cassano has capped for Italy U20 team, the feeder team of U21 team, which the coach also tested several other players. He also received several U21 call-up but did not play. References External links AIC Football profile National team data 1983 births Living people People from Vizzolo Predabissi Italian men's footballers Italy men's youth international footballers Men's association football goalkeepers Serie A players Serie B players Serie C players Serie D players ASD AVC Vogherese 1919 players ACF Fiorentina players Empoli FC players Piacenza Calcio 1919 players LFA Reggio Calabria players UC Sampdoria players Footballers from the Metropolitan City of Milan
```objective-c /* This code contributed by Triffid_Hunter and modified by Kliment why double up on these macros? see path_to_url */ #ifndef _FASTIO_ARDUINO_H #define _FASTIO_ARDUINO_H #include <avr/io.h> #include "macros.h" /* magic I/O routines now you can simply SET_OUTPUT(STEP); WRITE(STEP, 1); WRITE(STEP, 0); */ /// Read a pin #define _READ(IO) ((bool)(DIO ## IO ## _RPORT & _BV(DIO ## IO ## _PIN))) /// write to a pin // On some boards pins > 0x100 are used. These are not converted to atomic actions. An critical section is needed. #define _WRITE_NC(IO, v) do { if (v) {DIO ## IO ## _WPORT |= _BV(DIO ## IO ## _PIN); } else {DIO ## IO ## _WPORT &= ~_BV(DIO ## IO ## _PIN); }; } while (0) #define _WRITE_C(IO, v) do { if (v) { \ CRITICAL_SECTION_START; \ {DIO ## IO ## _WPORT |= _BV(DIO ## IO ## _PIN); }\ CRITICAL_SECTION_END; \ }\ else {\ CRITICAL_SECTION_START; \ {DIO ## IO ## _WPORT &= ~_BV(DIO ## IO ## _PIN); }\ CRITICAL_SECTION_END; \ }\ }\ while (0) #define _WRITE(IO, v) do { if (&(DIO ## IO ## _RPORT) >= (uint8_t *)0x100) {_WRITE_C(IO, v); } else {_WRITE_NC(IO, v); }; } while (0) /// toggle a pin #define _TOGGLE(IO) do {DIO ## IO ## _RPORT = _BV(DIO ## IO ## _PIN); } while (0) /// set pin as input #define _SET_INPUT(IO) do {DIO ## IO ## _DDR &= ~_BV(DIO ## IO ## _PIN); } while (0) /// set pin as output #define _SET_OUTPUT(IO) do {DIO ## IO ## _DDR |= _BV(DIO ## IO ## _PIN); } while (0) /// check if pin is an input #define _GET_INPUT(IO) ((DIO ## IO ## _DDR & _BV(DIO ## IO ## _PIN)) == 0) /// check if pin is an output #define _GET_OUTPUT(IO) ((DIO ## IO ## _DDR & _BV(DIO ## IO ## _PIN)) != 0) /// check if pin is an timer #define _GET_TIMER(IO) (DIO ## IO ## _PWM) // why double up on these macros? see path_to_url /// Read a pin wrapper #define READ(IO) _READ(IO) /// Write to a pin wrapper #define WRITE(IO, v) _WRITE(IO, v) /// Write to a pin wrapper, non critical. /// This macro is cheaper than WRITE(IO,v) on ports H,I,J,K,L, as _WRITE_C disables / enables interrupts /// and stores the old CPU flags on the stack. /// This macro should only be called, where it cannot be interrupted. #define WRITE_NC(IO, v) _WRITE_NC(IO, v) /// toggle a pin wrapper #define TOGGLE(IO) _TOGGLE(IO) /// set pin as input wrapper #define SET_INPUT(IO) _SET_INPUT(IO) /// set pin as output wrapper #define SET_OUTPUT(IO) _SET_OUTPUT(IO) /// check if pin is an input wrapper #define GET_INPUT(IO) _GET_INPUT(IO) /// check if pin is an output wrapper #define GET_OUTPUT(IO) _GET_OUTPUT(IO) /// check if pin is an timer wrapper #define GET_TIMER(IO) _GET_TIMER(IO) /* ports and functions added as necessary or if I feel like it- not a comprehensive list! */ #if defined (__AVR_ATmega168__) || defined (__AVR_ATmega328__) || defined (__AVR_ATmega328P__) // UART #define RXD DIO0 #define TXD DIO1 // SPI #define SCK DIO13 #define MISO DIO12 #define MOSI DIO11 #define SS DIO10 // TWI (I2C) #define SCL AIO5 #define SDA AIO4 // timers and PWM #define OC0A DIO6 #define OC0B DIO5 #define OC1A DIO9 #define OC1B DIO10 #define OC2A DIO11 #define OC2B DIO3 #define DEBUG_LED AIO5 /* pins */ #define DIO0_PIN PIND0 #define DIO0_RPORT PIND #define DIO0_WPORT PORTD #define DIO0_DDR DDRD #define DIO0_PWM NULL #define DIO1_PIN PIND1 #define DIO1_RPORT PIND #define DIO1_WPORT PORTD #define DIO1_DDR DDRD #define DIO1_PWM NULL #define DIO2_PIN PIND2 #define DIO2_RPORT PIND #define DIO2_WPORT PORTD #define DIO2_DDR DDRD #define DIO2_PWM NULL #define DIO3_PIN PIND3 #define DIO3_RPORT PIND #define DIO3_WPORT PORTD #define DIO3_DDR DDRD #define DIO3_PWM &OCR2B #define DIO4_PIN PIND4 #define DIO4_RPORT PIND #define DIO4_WPORT PORTD #define DIO4_DDR DDRD #define DIO4_PWM NULL #define DIO5_PIN PIND5 #define DIO5_RPORT PIND #define DIO5_WPORT PORTD #define DIO5_DDR DDRD #define DIO5_PWM &OCR0B #define DIO6_PIN PIND6 #define DIO6_RPORT PIND #define DIO6_WPORT PORTD #define DIO6_DDR DDRD #define DIO6_PWM &OCR0A #define DIO7_PIN PIND7 #define DIO7_RPORT PIND #define DIO7_WPORT PORTD #define DIO7_DDR DDRD #define DIO7_PWM NULL #define DIO8_PIN PINB0 #define DIO8_RPORT PINB #define DIO8_WPORT PORTB #define DIO8_DDR DDRB #define DIO8_PWM NULL #define DIO9_PIN PINB1 #define DIO9_RPORT PINB #define DIO9_WPORT PORTB #define DIO9_DDR DDRB #define DIO9_PWM NULL #define DIO10_PIN PINB2 #define DIO10_RPORT PINB #define DIO10_WPORT PORTB #define DIO10_DDR DDRB #define DIO10_PWM NULL #define DIO11_PIN PINB3 #define DIO11_RPORT PINB #define DIO11_WPORT PORTB #define DIO11_DDR DDRB #define DIO11_PWM &OCR2A #define DIO12_PIN PINB4 #define DIO12_RPORT PINB #define DIO12_WPORT PORTB #define DIO12_DDR DDRB #define DIO12_PWM NULL #define DIO13_PIN PINB5 #define DIO13_RPORT PINB #define DIO13_WPORT PORTB #define DIO13_DDR DDRB #define DIO13_PWM NULL #define DIO14_PIN PINC0 #define DIO14_RPORT PINC #define DIO14_WPORT PORTC #define DIO14_DDR DDRC #define DIO14_PWM NULL #define DIO15_PIN PINC1 #define DIO15_RPORT PINC #define DIO15_WPORT PORTC #define DIO15_DDR DDRC #define DIO15_PWM NULL #define DIO16_PIN PINC2 #define DIO16_RPORT PINC #define DIO16_WPORT PORTC #define DIO16_DDR DDRC #define DIO16_PWM NULL #define DIO17_PIN PINC3 #define DIO17_RPORT PINC #define DIO17_WPORT PORTC #define DIO17_DDR DDRC #define DIO17_PWM NULL #define DIO18_PIN PINC4 #define DIO18_RPORT PINC #define DIO18_WPORT PORTC #define DIO18_DDR DDRC #define DIO18_PWM NULL #define DIO19_PIN PINC5 #define DIO19_RPORT PINC #define DIO19_WPORT PORTC #define DIO19_DDR DDRC #define DIO19_PWM NULL #define DIO20_PIN PINC6 #define DIO20_RPORT PINC #define DIO20_WPORT PORTC #define DIO20_DDR DDRC #define DIO20_PWM NULL #define DIO21_PIN PINC7 #define DIO21_RPORT PINC #define DIO21_WPORT PORTC #define DIO21_DDR DDRC #define DIO21_PWM NULL #undef PB0 #define PB0_PIN PINB0 #define PB0_RPORT PINB #define PB0_WPORT PORTB #define PB0_DDR DDRB #define PB0_PWM NULL #undef PB1 #define PB1_PIN PINB1 #define PB1_RPORT PINB #define PB1_WPORT PORTB #define PB1_DDR DDRB #define PB1_PWM NULL #undef PB2 #define PB2_PIN PINB2 #define PB2_RPORT PINB #define PB2_WPORT PORTB #define PB2_DDR DDRB #define PB2_PWM NULL #undef PB3 #define PB3_PIN PINB3 #define PB3_RPORT PINB #define PB3_WPORT PORTB #define PB3_DDR DDRB #define PB3_PWM &OCR2A #undef PB4 #define PB4_PIN PINB4 #define PB4_RPORT PINB #define PB4_WPORT PORTB #define PB4_DDR DDRB #define PB4_PWM NULL #undef PB5 #define PB5_PIN PINB5 #define PB5_RPORT PINB #define PB5_WPORT PORTB #define PB5_DDR DDRB #define PB5_PWM NULL #undef PB6 #define PB6_PIN PINB6 #define PB6_RPORT PINB #define PB6_WPORT PORTB #define PB6_DDR DDRB #define PB6_PWM NULL #undef PB7 #define PB7_PIN PINB7 #define PB7_RPORT PINB #define PB7_WPORT PORTB #define PB7_DDR DDRB #define PB7_PWM NULL #undef PC0 #define PC0_PIN PINC0 #define PC0_RPORT PINC #define PC0_WPORT PORTC #define PC0_DDR DDRC #define PC0_PWM NULL #undef PC1 #define PC1_PIN PINC1 #define PC1_RPORT PINC #define PC1_WPORT PORTC #define PC1_DDR DDRC #define PC1_PWM NULL #undef PC2 #define PC2_PIN PINC2 #define PC2_RPORT PINC #define PC2_WPORT PORTC #define PC2_DDR DDRC #define PC2_PWM NULL #undef PC3 #define PC3_PIN PINC3 #define PC3_RPORT PINC #define PC3_WPORT PORTC #define PC3_DDR DDRC #define PC3_PWM NULL #undef PC4 #define PC4_PIN PINC4 #define PC4_RPORT PINC #define PC4_WPORT PORTC #define PC4_DDR DDRC #define PC4_PWM NULL #undef PC5 #define PC5_PIN PINC5 #define PC5_RPORT PINC #define PC5_WPORT PORTC #define PC5_DDR DDRC #define PC5_PWM NULL #undef PC6 #define PC6_PIN PINC6 #define PC6_RPORT PINC #define PC6_WPORT PORTC #define PC6_DDR DDRC #define PC6_PWM NULL #undef PC7 #define PC7_PIN PINC7 #define PC7_RPORT PINC #define PC7_WPORT PORTC #define PC7_DDR DDRC #define PC7_PWM NULL #undef PD0 #define PD0_PIN PIND0 #define PD0_RPORT PIND #define PD0_WPORT PORTD #define PD0_DDR DDRD #define PD0_PWM NULL #undef PD1 #define PD1_PIN PIND1 #define PD1_RPORT PIND #define PD1_WPORT PORTD #define PD1_DDR DDRD #define PD1_PWM NULL #undef PD2 #define PD2_PIN PIND2 #define PD2_RPORT PIND #define PD2_WPORT PORTD #define PD2_DDR DDRD #define PD2_PWM NULL #undef PD3 #define PD3_PIN PIND3 #define PD3_RPORT PIND #define PD3_WPORT PORTD #define PD3_DDR DDRD #define PD3_PWM &OCR2B #undef PD4 #define PD4_PIN PIND4 #define PD4_RPORT PIND #define PD4_WPORT PORTD #define PD4_DDR DDRD #define PD4_PWM NULL #undef PD5 #define PD5_PIN PIND5 #define PD5_RPORT PIND #define PD5_WPORT PORTD #define PD5_DDR DDRD #define PD5_PWM &OCR0B #undef PD6 #define PD6_PIN PIND6 #define PD6_RPORT PIND #define PD6_WPORT PORTD #define PD6_DDR DDRD #define PD6_PWM &OCR0A #undef PD7 #define PD7_PIN PIND7 #define PD7_RPORT PIND #define PD7_WPORT PORTD #define PD7_DDR DDRD #define PD7_PWM NULL #endif /* _AVR_ATmega{168,328,328P}__ */ #if defined (__AVR_ATmega644__) || defined (__AVR_ATmega644P__) || defined (__AVR_ATmega644PA__) || defined (__AVR_ATmega1284P__) // UART #define RXD DIO8 #define TXD DIO9 #define RXD0 DIO8 #define TXD0 DIO9 #define RXD1 DIO10 #define TXD1 DIO11 // SPI #define SCK DIO7 #define MISO DIO6 #define MOSI DIO5 #define SS DIO4 // TWI (I2C) #define SCL DIO16 #define SDA DIO17 // timers and PWM #define OC0A DIO3 #define OC0B DIO4 #define OC1A DIO13 #define OC1B DIO12 #define OC2A DIO15 #define OC2B DIO14 #define DEBUG_LED DIO0 /* pins */ #define DIO0_PIN PINB0 #define DIO0_RPORT PINB #define DIO0_WPORT PORTB #define DIO0_DDR DDRB #define DIO0_PWM NULL #define DIO1_PIN PINB1 #define DIO1_RPORT PINB #define DIO1_WPORT PORTB #define DIO1_DDR DDRB #define DIO1_PWM NULL #define DIO2_PIN PINB2 #define DIO2_RPORT PINB #define DIO2_WPORT PORTB #define DIO2_DDR DDRB #define DIO2_PWM NULL #define DIO3_PIN PINB3 #define DIO3_RPORT PINB #define DIO3_WPORT PORTB #define DIO3_DDR DDRB #define DIO3_PWM OCR0A #define DIO4_PIN PINB4 #define DIO4_RPORT PINB #define DIO4_WPORT PORTB #define DIO4_DDR DDRB #define DIO4_PWM OCR0B #define DIO5_PIN PINB5 #define DIO5_RPORT PINB #define DIO5_WPORT PORTB #define DIO5_DDR DDRB #define DIO5_PWM NULL #define DIO6_PIN PINB6 #define DIO6_RPORT PINB #define DIO6_WPORT PORTB #define DIO6_DDR DDRB #define DIO6_PWM NULL #define DIO7_PIN PINB7 #define DIO7_RPORT PINB #define DIO7_WPORT PORTB #define DIO7_DDR DDRB #define DIO7_PWM NULL #define DIO8_PIN PIND0 #define DIO8_RPORT PIND #define DIO8_WPORT PORTD #define DIO8_DDR DDRD #define DIO8_PWM NULL #define DIO9_PIN PIND1 #define DIO9_RPORT PIND #define DIO9_WPORT PORTD #define DIO9_DDR DDRD #define DIO9_PWM NULL #define DIO10_PIN PIND2 #define DIO10_RPORT PIND #define DIO10_WPORT PORTD #define DIO10_DDR DDRD #define DIO10_PWM NULL #define DIO11_PIN PIND3 #define DIO11_RPORT PIND #define DIO11_WPORT PORTD #define DIO11_DDR DDRD #define DIO11_PWM NULL #define DIO12_PIN PIND4 #define DIO12_RPORT PIND #define DIO12_WPORT PORTD #define DIO12_DDR DDRD #define DIO12_PWM OCR1B #define DIO13_PIN PIND5 #define DIO13_RPORT PIND #define DIO13_WPORT PORTD #define DIO13_DDR DDRD #define DIO13_PWM OCR1A #define DIO14_PIN PIND6 #define DIO14_RPORT PIND #define DIO14_WPORT PORTD #define DIO14_DDR DDRD #define DIO14_PWM OCR2B #define DIO15_PIN PIND7 #define DIO15_RPORT PIND #define DIO15_WPORT PORTD #define DIO15_DDR DDRD #define DIO15_PWM OCR2A #define DIO16_PIN PINC0 #define DIO16_RPORT PINC #define DIO16_WPORT PORTC #define DIO16_DDR DDRC #define DIO16_PWM NULL #define DIO17_PIN PINC1 #define DIO17_RPORT PINC #define DIO17_WPORT PORTC #define DIO17_DDR DDRC #define DIO17_PWM NULL #define DIO18_PIN PINC2 #define DIO18_RPORT PINC #define DIO18_WPORT PORTC #define DIO18_DDR DDRC #define DIO18_PWM NULL #define DIO19_PIN PINC3 #define DIO19_RPORT PINC #define DIO19_WPORT PORTC #define DIO19_DDR DDRC #define DIO19_PWM NULL #define DIO20_PIN PINC4 #define DIO20_RPORT PINC #define DIO20_WPORT PORTC #define DIO20_DDR DDRC #define DIO20_PWM NULL #define DIO21_PIN PINC5 #define DIO21_RPORT PINC #define DIO21_WPORT PORTC #define DIO21_DDR DDRC #define DIO21_PWM NULL #define DIO22_PIN PINC6 #define DIO22_RPORT PINC #define DIO22_WPORT PORTC #define DIO22_DDR DDRC #define DIO22_PWM NULL #define DIO23_PIN PINC7 #define DIO23_RPORT PINC #define DIO23_WPORT PORTC #define DIO23_DDR DDRC #define DIO23_PWM NULL #define DIO24_PIN PINA7 #define DIO24_RPORT PINA #define DIO24_WPORT PORTA #define DIO24_DDR DDRA #define DIO24_PWM NULL #define DIO25_PIN PINA6 #define DIO25_RPORT PINA #define DIO25_WPORT PORTA #define DIO25_DDR DDRA #define DIO25_PWM NULL #define DIO26_PIN PINA5 #define DIO26_RPORT PINA #define DIO26_WPORT PORTA #define DIO26_DDR DDRA #define DIO26_PWM NULL #define DIO27_PIN PINA4 #define DIO27_RPORT PINA #define DIO27_WPORT PORTA #define DIO27_DDR DDRA #define DIO27_PWM NULL #define DIO28_PIN PINA3 #define DIO28_RPORT PINA #define DIO28_WPORT PORTA #define DIO28_DDR DDRA #define DIO28_PWM NULL #define DIO29_PIN PINA2 #define DIO29_RPORT PINA #define DIO29_WPORT PORTA #define DIO29_DDR DDRA #define DIO29_PWM NULL #define DIO30_PIN PINA1 #define DIO30_RPORT PINA #define DIO30_WPORT PORTA #define DIO30_DDR DDRA #define DIO30_PWM NULL #define DIO31_PIN PINA0 #define DIO31_RPORT PINA #define DIO31_WPORT PORTA #define DIO31_DDR DDRA #define DIO31_PWM NULL #define AIO0_PIN PINA0 #define AIO0_RPORT PINA #define AIO0_WPORT PORTA #define AIO0_DDR DDRA #define AIO0_PWM NULL #define AIO1_PIN PINA1 #define AIO1_RPORT PINA #define AIO1_WPORT PORTA #define AIO1_DDR DDRA #define AIO1_PWM NULL #define AIO2_PIN PINA2 #define AIO2_RPORT PINA #define AIO2_WPORT PORTA #define AIO2_DDR DDRA #define AIO2_PWM NULL #define AIO3_PIN PINA3 #define AIO3_RPORT PINA #define AIO3_WPORT PORTA #define AIO3_DDR DDRA #define AIO3_PWM NULL #define AIO4_PIN PINA4 #define AIO4_RPORT PINA #define AIO4_WPORT PORTA #define AIO4_DDR DDRA #define AIO4_PWM NULL #define AIO5_PIN PINA5 #define AIO5_RPORT PINA #define AIO5_WPORT PORTA #define AIO5_DDR DDRA #define AIO5_PWM NULL #define AIO6_PIN PINA6 #define AIO6_RPORT PINA #define AIO6_WPORT PORTA #define AIO6_DDR DDRA #define AIO6_PWM NULL #define AIO7_PIN PINA7 #define AIO7_RPORT PINA #define AIO7_WPORT PORTA #define AIO7_DDR DDRA #define AIO7_PWM NULL #undef PA0 #define PA0_PIN PINA0 #define PA0_RPORT PINA #define PA0_WPORT PORTA #define PA0_DDR DDRA #define PA0_PWM NULL #undef PA1 #define PA1_PIN PINA1 #define PA1_RPORT PINA #define PA1_WPORT PORTA #define PA1_DDR DDRA #define PA1_PWM NULL #undef PA2 #define PA2_PIN PINA2 #define PA2_RPORT PINA #define PA2_WPORT PORTA #define PA2_DDR DDRA #define PA2_PWM NULL #undef PA3 #define PA3_PIN PINA3 #define PA3_RPORT PINA #define PA3_WPORT PORTA #define PA3_DDR DDRA #define PA3_PWM NULL #undef PA4 #define PA4_PIN PINA4 #define PA4_RPORT PINA #define PA4_WPORT PORTA #define PA4_DDR DDRA #define PA4_PWM NULL #undef PA5 #define PA5_PIN PINA5 #define PA5_RPORT PINA #define PA5_WPORT PORTA #define PA5_DDR DDRA #define PA5_PWM NULL #undef PA6 #define PA6_PIN PINA6 #define PA6_RPORT PINA #define PA6_WPORT PORTA #define PA6_DDR DDRA #define PA6_PWM NULL #undef PA7 #define PA7_PIN PINA7 #define PA7_RPORT PINA #define PA7_WPORT PORTA #define PA7_DDR DDRA #define PA7_PWM NULL #undef PB0 #define PB0_PIN PINB0 #define PB0_RPORT PINB #define PB0_WPORT PORTB #define PB0_DDR DDRB #define PB0_PWM NULL #undef PB1 #define PB1_PIN PINB1 #define PB1_RPORT PINB #define PB1_WPORT PORTB #define PB1_DDR DDRB #define PB1_PWM NULL #undef PB2 #define PB2_PIN PINB2 #define PB2_RPORT PINB #define PB2_WPORT PORTB #define PB2_DDR DDRB #define PB2_PWM NULL #undef PB3 #define PB3_PIN PINB3 #define PB3_RPORT PINB #define PB3_WPORT PORTB #define PB3_DDR DDRB #define PB3_PWM OCR0A #undef PB4 #define PB4_PIN PINB4 #define PB4_RPORT PINB #define PB4_WPORT PORTB #define PB4_DDR DDRB #define PB4_PWM OCR0B #undef PB5 #define PB5_PIN PINB5 #define PB5_RPORT PINB #define PB5_WPORT PORTB #define PB5_DDR DDRB #define PB5_PWM NULL #undef PB6 #define PB6_PIN PINB6 #define PB6_RPORT PINB #define PB6_WPORT PORTB #define PB6_DDR DDRB #define PB6_PWM NULL #undef PB7 #define PB7_PIN PINB7 #define PB7_RPORT PINB #define PB7_WPORT PORTB #define PB7_DDR DDRB #define PB7_PWM NULL #undef PC0 #define PC0_PIN PINC0 #define PC0_RPORT PINC #define PC0_WPORT PORTC #define PC0_DDR DDRC #define PC0_PWM NULL #undef PC1 #define PC1_PIN PINC1 #define PC1_RPORT PINC #define PC1_WPORT PORTC #define PC1_DDR DDRC #define PC1_PWM NULL #undef PC2 #define PC2_PIN PINC2 #define PC2_RPORT PINC #define PC2_WPORT PORTC #define PC2_DDR DDRC #define PC2_PWM NULL #undef PC3 #define PC3_PIN PINC3 #define PC3_RPORT PINC #define PC3_WPORT PORTC #define PC3_DDR DDRC #define PC3_PWM NULL #undef PC4 #define PC4_PIN PINC4 #define PC4_RPORT PINC #define PC4_WPORT PORTC #define PC4_DDR DDRC #define PC4_PWM NULL #undef PC5 #define PC5_PIN PINC5 #define PC5_RPORT PINC #define PC5_WPORT PORTC #define PC5_DDR DDRC #define PC5_PWM NULL #undef PC6 #define PC6_PIN PINC6 #define PC6_RPORT PINC #define PC6_WPORT PORTC #define PC6_DDR DDRC #define PC6_PWM NULL #undef PC7 #define PC7_PIN PINC7 #define PC7_RPORT PINC #define PC7_WPORT PORTC #define PC7_DDR DDRC #define PC7_PWM NULL #undef PD0 #define PD0_PIN PIND0 #define PD0_RPORT PIND #define PD0_WPORT PORTD #define PD0_DDR DDRD #define PD0_PWM NULL #undef PD1 #define PD1_PIN PIND1 #define PD1_RPORT PIND #define PD1_WPORT PORTD #define PD1_DDR DDRD #define PD1_PWM NULL #undef PD2 #define PD2_PIN PIND2 #define PD2_RPORT PIND #define PD2_WPORT PORTD #define PD2_DDR DDRD #define PD2_PWM NULL #undef PD3 #define PD3_PIN PIND3 #define PD3_RPORT PIND #define PD3_WPORT PORTD #define PD3_DDR DDRD #define PD3_PWM NULL #undef PD4 #define PD4_PIN PIND4 #define PD4_RPORT PIND #define PD4_WPORT PORTD #define PD4_DDR DDRD #define PD4_PWM NULL #undef PD5 #define PD5_PIN PIND5 #define PD5_RPORT PIND #define PD5_WPORT PORTD #define PD5_DDR DDRD #define PD5_PWM NULL #undef PD6 #define PD6_PIN PIND6 #define PD6_RPORT PIND #define PD6_WPORT PORTD #define PD6_DDR DDRD #define PD6_PWM OCR2B #undef PD7 #define PD7_PIN PIND7 #define PD7_RPORT PIND #define PD7_WPORT PORTD #define PD7_DDR DDRD #define PD7_PWM OCR2A #endif /* _AVR_ATmega{644,644P,644PA}__ */ #if defined (__AVR_ATmega1280__) || defined (__AVR_ATmega2560__) // UART #define RXD DIO0 #define TXD DIO1 // SPI #define SCK 52 #define MISO 50 #define MOSI 51 #define SS 53 // TWI (I2C) #define SCL DIO21 #define SDA DIO20 // timers and PWM #define OC0A DIO13 #define OC0B DIO4 #define OC1A DIO11 #define OC1B DIO12 #define OC2A DIO10 #define OC2B DIO9 #define OC3A DIO5 #define OC3B DIO2 #define OC3C DIO3 #define OC4A DIO6 #define OC4B DIO7 #define OC4C DIO8 #define OC5A DIO46 #define OC5B DIO45 #define OC5C DIO44 // change for your board #define DEBUG_LED DIO21 /* pins */ #define DIO0_PIN PINE0 #define DIO0_RPORT PINE #define DIO0_WPORT PORTE #define DIO0_DDR DDRE #define DIO0_PWM NULL #define DIO1_PIN PINE1 #define DIO1_RPORT PINE #define DIO1_WPORT PORTE #define DIO1_DDR DDRE #define DIO1_PWM NULL #define DIO2_PIN PINE4 #define DIO2_RPORT PINE #define DIO2_WPORT PORTE #define DIO2_DDR DDRE #define DIO2_PWM &OCR3BL #define DIO3_PIN PINE5 #define DIO3_RPORT PINE #define DIO3_WPORT PORTE #define DIO3_DDR DDRE #define DIO3_PWM &OCR3CL #define DIO4_PIN PING5 #define DIO4_RPORT PING #define DIO4_WPORT PORTG #define DIO4_DDR DDRG #define DIO4_PWM &OCR0B #define DIO5_PIN PINE3 #define DIO5_RPORT PINE #define DIO5_WPORT PORTE #define DIO5_DDR DDRE #define DIO5_PWM &OCR3AL #define DIO6_PIN PINH3 #define DIO6_RPORT PINH #define DIO6_WPORT PORTH #define DIO6_DDR DDRH #define DIO6_PWM &OCR4AL #define DIO7_PIN PINH4 #define DIO7_RPORT PINH #define DIO7_WPORT PORTH #define DIO7_DDR DDRH #define DIO7_PWM &OCR4BL #define DIO8_PIN PINH5 #define DIO8_RPORT PINH #define DIO8_WPORT PORTH #define DIO8_DDR DDRH #define DIO8_PWM &OCR4CL #define DIO9_PIN PINH6 #define DIO9_RPORT PINH #define DIO9_WPORT PORTH #define DIO9_DDR DDRH #define DIO9_PWM &OCR2B #define DIO10_PIN PINB4 #define DIO10_RPORT PINB #define DIO10_WPORT PORTB #define DIO10_DDR DDRB #define DIO10_PWM &OCR2A #define DIO11_PIN PINB5 #define DIO11_RPORT PINB #define DIO11_WPORT PORTB #define DIO11_DDR DDRB #define DIO11_PWM NULL #define DIO12_PIN PINB6 #define DIO12_RPORT PINB #define DIO12_WPORT PORTB #define DIO12_DDR DDRB #define DIO12_PWM NULL #define DIO13_PIN PINB7 #define DIO13_RPORT PINB #define DIO13_WPORT PORTB #define DIO13_DDR DDRB #define DIO13_PWM &OCR0A #define DIO14_PIN PINJ1 #define DIO14_RPORT PINJ #define DIO14_WPORT PORTJ #define DIO14_DDR DDRJ #define DIO14_PWM NULL #define DIO15_PIN PINJ0 #define DIO15_RPORT PINJ #define DIO15_WPORT PORTJ #define DIO15_DDR DDRJ #define DIO15_PWM NULL #define DIO16_PIN PINH1 #define DIO16_RPORT PINH #define DIO16_WPORT PORTH #define DIO16_DDR DDRH #define DIO16_PWM NULL #define DIO17_PIN PINH0 #define DIO17_RPORT PINH #define DIO17_WPORT PORTH #define DIO17_DDR DDRH #define DIO17_PWM NULL #define DIO18_PIN PIND3 #define DIO18_RPORT PIND #define DIO18_WPORT PORTD #define DIO18_DDR DDRD #define DIO18_PWM NULL #define DIO19_PIN PIND2 #define DIO19_RPORT PIND #define DIO19_WPORT PORTD #define DIO19_DDR DDRD #define DIO19_PWM NULL #define DIO20_PIN PIND1 #define DIO20_RPORT PIND #define DIO20_WPORT PORTD #define DIO20_DDR DDRD #define DIO20_PWM NULL #define DIO21_PIN PIND0 #define DIO21_RPORT PIND #define DIO21_WPORT PORTD #define DIO21_DDR DDRD #define DIO21_PWM NULL #define DIO22_PIN PINA0 #define DIO22_RPORT PINA #define DIO22_WPORT PORTA #define DIO22_DDR DDRA #define DIO22_PWM NULL #define DIO23_PIN PINA1 #define DIO23_RPORT PINA #define DIO23_WPORT PORTA #define DIO23_DDR DDRA #define DIO23_PWM NULL #define DIO24_PIN PINA2 #define DIO24_RPORT PINA #define DIO24_WPORT PORTA #define DIO24_DDR DDRA #define DIO24_PWM NULL #define DIO25_PIN PINA3 #define DIO25_RPORT PINA #define DIO25_WPORT PORTA #define DIO25_DDR DDRA #define DIO25_PWM NULL #define DIO26_PIN PINA4 #define DIO26_RPORT PINA #define DIO26_WPORT PORTA #define DIO26_DDR DDRA #define DIO26_PWM NULL #define DIO27_PIN PINA5 #define DIO27_RPORT PINA #define DIO27_WPORT PORTA #define DIO27_DDR DDRA #define DIO27_PWM NULL #define DIO28_PIN PINA6 #define DIO28_RPORT PINA #define DIO28_WPORT PORTA #define DIO28_DDR DDRA #define DIO28_PWM NULL #define DIO29_PIN PINA7 #define DIO29_RPORT PINA #define DIO29_WPORT PORTA #define DIO29_DDR DDRA #define DIO29_PWM NULL #define DIO30_PIN PINC7 #define DIO30_RPORT PINC #define DIO30_WPORT PORTC #define DIO30_DDR DDRC #define DIO30_PWM NULL #define DIO31_PIN PINC6 #define DIO31_RPORT PINC #define DIO31_WPORT PORTC #define DIO31_DDR DDRC #define DIO31_PWM NULL #define DIO32_PIN PINC5 #define DIO32_RPORT PINC #define DIO32_WPORT PORTC #define DIO32_DDR DDRC #define DIO32_PWM NULL #define DIO33_PIN PINC4 #define DIO33_RPORT PINC #define DIO33_WPORT PORTC #define DIO33_DDR DDRC #define DIO33_PWM NULL #define DIO34_PIN PINC3 #define DIO34_RPORT PINC #define DIO34_WPORT PORTC #define DIO34_DDR DDRC #define DIO34_PWM NULL #define DIO35_PIN PINC2 #define DIO35_RPORT PINC #define DIO35_WPORT PORTC #define DIO35_DDR DDRC #define DIO35_PWM NULL #define DIO36_PIN PINC1 #define DIO36_RPORT PINC #define DIO36_WPORT PORTC #define DIO36_DDR DDRC #define DIO36_PWM NULL #define DIO37_PIN PINC0 #define DIO37_RPORT PINC #define DIO37_WPORT PORTC #define DIO37_DDR DDRC #define DIO37_PWM NULL #define DIO38_PIN PIND7 #define DIO38_RPORT PIND #define DIO38_WPORT PORTD #define DIO38_DDR DDRD #define DIO38_PWM NULL #define DIO39_PIN PING2 #define DIO39_RPORT PING #define DIO39_WPORT PORTG #define DIO39_DDR DDRG #define DIO39_PWM NULL #define DIO40_PIN PING1 #define DIO40_RPORT PING #define DIO40_WPORT PORTG #define DIO40_DDR DDRG #define DIO40_PWM NULL #define DIO41_PIN PING0 #define DIO41_RPORT PING #define DIO41_WPORT PORTG #define DIO41_DDR DDRG #define DIO41_PWM NULL #define DIO42_PIN PINL7 #define DIO42_RPORT PINL #define DIO42_WPORT PORTL #define DIO42_DDR DDRL #define DIO42_PWM NULL #define DIO43_PIN PINL6 #define DIO43_RPORT PINL #define DIO43_WPORT PORTL #define DIO43_DDR DDRL #define DIO43_PWM NULL #define DIO44_PIN PINL5 #define DIO44_RPORT PINL #define DIO44_WPORT PORTL #define DIO44_DDR DDRL #define DIO44_PWM &OCR5CL #define DIO45_PIN PINL4 #define DIO45_RPORT PINL #define DIO45_WPORT PORTL #define DIO45_DDR DDRL #define DIO45_PWM &OCR5BL #define DIO46_PIN PINL3 #define DIO46_RPORT PINL #define DIO46_WPORT PORTL #define DIO46_DDR DDRL #define DIO46_PWM &OCR5AL #define DIO47_PIN PINL2 #define DIO47_RPORT PINL #define DIO47_WPORT PORTL #define DIO47_DDR DDRL #define DIO47_PWM NULL #define DIO48_PIN PINL1 #define DIO48_RPORT PINL #define DIO48_WPORT PORTL #define DIO48_DDR DDRL #define DIO48_PWM NULL #define DIO49_PIN PINL0 #define DIO49_RPORT PINL #define DIO49_WPORT PORTL #define DIO49_DDR DDRL #define DIO49_PWM NULL #define DIO50_PIN PINB3 #define DIO50_RPORT PINB #define DIO50_WPORT PORTB #define DIO50_DDR DDRB #define DIO50_PWM NULL #define DIO51_PIN PINB2 #define DIO51_RPORT PINB #define DIO51_WPORT PORTB #define DIO51_DDR DDRB #define DIO51_PWM NULL #define DIO52_PIN PINB1 #define DIO52_RPORT PINB #define DIO52_WPORT PORTB #define DIO52_DDR DDRB #define DIO52_PWM NULL #define DIO53_PIN PINB0 #define DIO53_RPORT PINB #define DIO53_WPORT PORTB #define DIO53_DDR DDRB #define DIO53_PWM NULL #define DIO54_PIN PINF0 #define DIO54_RPORT PINF #define DIO54_WPORT PORTF #define DIO54_DDR DDRF #define DIO54_PWM NULL #define DIO55_PIN PINF1 #define DIO55_RPORT PINF #define DIO55_WPORT PORTF #define DIO55_DDR DDRF #define DIO55_PWM NULL #define DIO56_PIN PINF2 #define DIO56_RPORT PINF #define DIO56_WPORT PORTF #define DIO56_DDR DDRF #define DIO56_PWM NULL #define DIO57_PIN PINF3 #define DIO57_RPORT PINF #define DIO57_WPORT PORTF #define DIO57_DDR DDRF #define DIO57_PWM NULL #define DIO58_PIN PINF4 #define DIO58_RPORT PINF #define DIO58_WPORT PORTF #define DIO58_DDR DDRF #define DIO58_PWM NULL #define DIO59_PIN PINF5 #define DIO59_RPORT PINF #define DIO59_WPORT PORTF #define DIO59_DDR DDRF #define DIO59_PWM NULL #define DIO60_PIN PINF6 #define DIO60_RPORT PINF #define DIO60_WPORT PORTF #define DIO60_DDR DDRF #define DIO60_PWM NULL #define DIO61_PIN PINF7 #define DIO61_RPORT PINF #define DIO61_WPORT PORTF #define DIO61_DDR DDRF #define DIO61_PWM NULL #define DIO62_PIN PINK0 #define DIO62_RPORT PINK #define DIO62_WPORT PORTK #define DIO62_DDR DDRK #define DIO62_PWM NULL #define DIO63_PIN PINK1 #define DIO63_RPORT PINK #define DIO63_WPORT PORTK #define DIO63_DDR DDRK #define DIO63_PWM NULL #define DIO64_PIN PINK2 #define DIO64_RPORT PINK #define DIO64_WPORT PORTK #define DIO64_DDR DDRK #define DIO64_PWM NULL #define DIO65_PIN PINK3 #define DIO65_RPORT PINK #define DIO65_WPORT PORTK #define DIO65_DDR DDRK #define DIO65_PWM NULL #define DIO66_PIN PINK4 #define DIO66_RPORT PINK #define DIO66_WPORT PORTK #define DIO66_DDR DDRK #define DIO66_PWM NULL #define DIO67_PIN PINK5 #define DIO67_RPORT PINK #define DIO67_WPORT PORTK #define DIO67_DDR DDRK #define DIO67_PWM NULL #define DIO68_PIN PINK6 #define DIO68_RPORT PINK #define DIO68_WPORT PORTK #define DIO68_DDR DDRK #define DIO68_PWM NULL #define DIO69_PIN PINK7 #define DIO69_RPORT PINK #define DIO69_WPORT PORTK #define DIO69_DDR DDRK #define DIO69_PWM NULL #define DIO76_PIN PINJ5 #define DIO76_RPORT PINJ #define DIO76_WPORT PORTJ #define DIO76_DDR DDRJ #define DIO76_PWM NULL #define DIO77_PIN PINJ6 #define DIO77_RPORT PINJ #define DIO77_WPORT PORTJ #define DIO77_DDR DDRJ #define DIO77_PWM NULL #define DIO78_PIN PINE2 #define DIO78_RPORT PINE #define DIO78_WPORT PORTE #define DIO78_DDR DDRE #define DIO78_PWM NULL #define DIO79_PIN PINE6 #define DIO79_RPORT PINE #define DIO79_WPORT PORTE #define DIO79_DDR DDRE #define DIO79_PWM NULL #define DIO80_PIN PINE7 #define DIO80_RPORT PINE #define DIO80_WPORT PORTE #define DIO80_DDR DDRE #define DIO80_PWM NULL #define DIO81_PIN PIND4 #define DIO81_RPORT PIND #define DIO81_WPORT PORTD #define DIO81_DDR DDRD #define DIO81_PWM NULL #define DIO70_PIN PING4 #define DIO70_RPORT PING #define DIO70_WPORT PORTG #define DIO70_DDR DDRG #define DIO70_PWM NULL #define DIO71_PIN PING3 #define DIO71_RPORT PING #define DIO71_WPORT PORTG #define DIO71_DDR DDRG #define DIO71_PWM NULL #define DIO72_PIN PINJ2 #define DIO72_RPORT PINJ #define DIO72_WPORT PORTJ #define DIO72_DDR DDRJ #define DIO72_PWM NULL #define DIO73_PIN PINJ3 #define DIO73_RPORT PINJ #define DIO73_WPORT PORTJ #define DIO73_DDR DDRJ #define DIO73_PWM NULL #define DIO74_PIN PINJ7 #define DIO74_RPORT PINJ #define DIO74_WPORT PORTJ #define DIO74_DDR DDRJ #define DIO74_PWM NULL #define DIO75_PIN PINJ4 #define DIO75_RPORT PINJ #define DIO75_WPORT PORTJ #define DIO75_DDR DDRJ #define DIO75_PWM NULL #define DIO76_PIN PINJ5 #define DIO76_RPORT PINJ #define DIO76_WPORT PORTJ #define DIO76_DDR DDRJ #define DIO76_PWM NULL #define DIO77_PIN PINJ6 #define DIO77_RPORT PINJ #define DIO77_WPORT PORTJ #define DIO77_DDR DDRJ #define DIO77_PWM NULL #define DIO78_PIN PINE2 #define DIO78_RPORT PINE #define DIO78_WPORT PORTE #define DIO78_DDR DDRE #define DIO78_PWM NULL #define DIO79_PIN PINE6 #define DIO79_RPORT PINE #define DIO79_WPORT PORTE #define DIO79_DDR DDRE #define DIO79_PWM NULL #define DIO80_PIN PINE7 #define DIO80_RPORT PINE #define DIO80_WPORT PORTE #define DIO80_DDR DDRE #define DIO80_PWM NULL #define DIO81_PIN PIND4 #define DIO81_RPORT PIND #define DIO81_WPORT PORTD #define DIO81_DDR DDRD #define DIO81_PWM NULL #define DIO82_PIN PIND5 #define DIO82_RPORT PIND #define DIO82_WPORT PORTD #define DIO82_DDR DDRD #define DIO82_PWM NULL #define DIO83_PIN PIND6 #define DIO83_RPORT PIND #define DIO83_WPORT PORTD #define DIO83_DDR DDRD #define DIO83_PWM NULL #define DIO84_PIN PINH2 #define DIO84_RPORT PINH #define DIO84_WPORT PORTH #define DIO84_DDR DDRH #define DIO84_PWM NULL #define DIO85_PIN PINH7 #define DIO85_RPORT PINH #define DIO85_WPORT PORTH #define DIO85_DDR DDRH #define DIO85_PWM NULL #undef PA0 #define PA0_PIN PINA0 #define PA0_RPORT PINA #define PA0_WPORT PORTA #define PA0_DDR DDRA #define PA0_PWM NULL #undef PA1 #define PA1_PIN PINA1 #define PA1_RPORT PINA #define PA1_WPORT PORTA #define PA1_DDR DDRA #define PA1_PWM NULL #undef PA2 #define PA2_PIN PINA2 #define PA2_RPORT PINA #define PA2_WPORT PORTA #define PA2_DDR DDRA #define PA2_PWM NULL #undef PA3 #define PA3_PIN PINA3 #define PA3_RPORT PINA #define PA3_WPORT PORTA #define PA3_DDR DDRA #define PA3_PWM NULL #undef PA4 #define PA4_PIN PINA4 #define PA4_RPORT PINA #define PA4_WPORT PORTA #define PA4_DDR DDRA #define PA4_PWM NULL #undef PA5 #define PA5_PIN PINA5 #define PA5_RPORT PINA #define PA5_WPORT PORTA #define PA5_DDR DDRA #define PA5_PWM NULL #undef PA6 #define PA6_PIN PINA6 #define PA6_RPORT PINA #define PA6_WPORT PORTA #define PA6_DDR DDRA #define PA6_PWM NULL #undef PA7 #define PA7_PIN PINA7 #define PA7_RPORT PINA #define PA7_WPORT PORTA #define PA7_DDR DDRA #define PA7_PWM NULL #undef PB0 #define PB0_PIN PINB0 #define PB0_RPORT PINB #define PB0_WPORT PORTB #define PB0_DDR DDRB #define PB0_PWM NULL #undef PB1 #define PB1_PIN PINB1 #define PB1_RPORT PINB #define PB1_WPORT PORTB #define PB1_DDR DDRB #define PB1_PWM NULL #undef PB2 #define PB2_PIN PINB2 #define PB2_RPORT PINB #define PB2_WPORT PORTB #define PB2_DDR DDRB #define PB2_PWM NULL #undef PB3 #define PB3_PIN PINB3 #define PB3_RPORT PINB #define PB3_WPORT PORTB #define PB3_DDR DDRB #define PB3_PWM NULL #undef PB4 #define PB4_PIN PINB4 #define PB4_RPORT PINB #define PB4_WPORT PORTB #define PB4_DDR DDRB #define PB4_PWM &OCR2A #undef PB5 #define PB5_PIN PINB5 #define PB5_RPORT PINB #define PB5_WPORT PORTB #define PB5_DDR DDRB #define PB5_PWM NULL #undef PB6 #define PB6_PIN PINB6 #define PB6_RPORT PINB #define PB6_WPORT PORTB #define PB6_DDR DDRB #define PB6_PWM NULL #undef PB7 #define PB7_PIN PINB7 #define PB7_RPORT PINB #define PB7_WPORT PORTB #define PB7_DDR DDRB #define PB7_PWM &OCR0A #undef PC0 #define PC0_PIN PINC0 #define PC0_RPORT PINC #define PC0_WPORT PORTC #define PC0_DDR DDRC #define PC0_PWM NULL #undef PC1 #define PC1_PIN PINC1 #define PC1_RPORT PINC #define PC1_WPORT PORTC #define PC1_DDR DDRC #define PC1_PWM NULL #undef PC2 #define PC2_PIN PINC2 #define PC2_RPORT PINC #define PC2_WPORT PORTC #define PC2_DDR DDRC #define PC2_PWM NULL #undef PC3 #define PC3_PIN PINC3 #define PC3_RPORT PINC #define PC3_WPORT PORTC #define PC3_DDR DDRC #define PC3_PWM NULL #undef PC4 #define PC4_PIN PINC4 #define PC4_RPORT PINC #define PC4_WPORT PORTC #define PC4_DDR DDRC #define PC4_PWM NULL #undef PC5 #define PC5_PIN PINC5 #define PC5_RPORT PINC #define PC5_WPORT PORTC #define PC5_DDR DDRC #define PC5_PWM NULL #undef PC6 #define PC6_PIN PINC6 #define PC6_RPORT PINC #define PC6_WPORT PORTC #define PC6_DDR DDRC #define PC6_PWM NULL #undef PC7 #define PC7_PIN PINC7 #define PC7_RPORT PINC #define PC7_WPORT PORTC #define PC7_DDR DDRC #define PC7_PWM NULL #undef PD0 #define PD0_PIN PIND0 #define PD0_RPORT PIND #define PD0_WPORT PORTD #define PD0_DDR DDRD #define PD0_PWM NULL #undef PD1 #define PD1_PIN PIND1 #define PD1_RPORT PIND #define PD1_WPORT PORTD #define PD1_DDR DDRD #define PD1_PWM NULL #undef PD2 #define PD2_PIN PIND2 #define PD2_RPORT PIND #define PD2_WPORT PORTD #define PD2_DDR DDRD #define PD2_PWM NULL #undef PD3 #define PD3_PIN PIND3 #define PD3_RPORT PIND #define PD3_WPORT PORTD #define PD3_DDR DDRD #define PD3_PWM NULL #undef PD4 #define PD4_PIN PIND4 #define PD4_RPORT PIND #define PD4_WPORT PORTD #define PD4_DDR DDRD #define PD4_PWM NULL #undef PD5 #define PD5_PIN PIND5 #define PD5_RPORT PIND #define PD5_WPORT PORTD #define PD5_DDR DDRD #define PD5_PWM NULL #undef PD6 #define PD6_PIN PIND6 #define PD6_RPORT PIND #define PD6_WPORT PORTD #define PD6_DDR DDRD #define PD6_PWM NULL #undef PD7 #define PD7_PIN PIND7 #define PD7_RPORT PIND #define PD7_WPORT PORTD #define PD7_DDR DDRD #define PD7_PWM NULL #undef PE0 #define PE0_PIN PINE0 #define PE0_RPORT PINE #define PE0_WPORT PORTE #define PE0_DDR DDRE #define PE0_PWM NULL #undef PE1 #define PE1_PIN PINE1 #define PE1_RPORT PINE #define PE1_WPORT PORTE #define PE1_DDR DDRE #define PE1_PWM NULL #undef PE2 #define PE2_PIN PINE2 #define PE2_RPORT PINE #define PE2_WPORT PORTE #define PE2_DDR DDRE #define PE2_PWM NULL #undef PE3 #define PE3_PIN PINE3 #define PE3_RPORT PINE #define PE3_WPORT PORTE #define PE3_DDR DDRE #define PE3_PWM &OCR3AL #undef PE4 #define PE4_PIN PINE4 #define PE4_RPORT PINE #define PE4_WPORT PORTE #define PE4_DDR DDRE #define PE4_PWM &OCR3BL #undef PE5 #define PE5_PIN PINE5 #define PE5_RPORT PINE #define PE5_WPORT PORTE #define PE5_DDR DDRE #define PE5_PWM &OCR3CL #undef PE6 #define PE6_PIN PINE6 #define PE6_RPORT PINE #define PE6_WPORT PORTE #define PE6_DDR DDRE #define PE6_PWM NULL #undef PE7 #define PE7_PIN PINE7 #define PE7_RPORT PINE #define PE7_WPORT PORTE #define PE7_DDR DDRE #define PE7_PWM NULL #undef PF0 #define PF0_PIN PINF0 #define PF0_RPORT PINF #define PF0_WPORT PORTF #define PF0_DDR DDRF #define PF0_PWM NULL #undef PF1 #define PF1_PIN PINF1 #define PF1_RPORT PINF #define PF1_WPORT PORTF #define PF1_DDR DDRF #define PF1_PWM NULL #undef PF2 #define PF2_PIN PINF2 #define PF2_RPORT PINF #define PF2_WPORT PORTF #define PF2_DDR DDRF #define PF2_PWM NULL #undef PF3 #define PF3_PIN PINF3 #define PF3_RPORT PINF #define PF3_WPORT PORTF #define PF3_DDR DDRF #define PF3_PWM NULL #undef PF4 #define PF4_PIN PINF4 #define PF4_RPORT PINF #define PF4_WPORT PORTF #define PF4_DDR DDRF #define PF4_PWM NULL #undef PF5 #define PF5_PIN PINF5 #define PF5_RPORT PINF #define PF5_WPORT PORTF #define PF5_DDR DDRF #define PF5_PWM NULL #undef PF6 #define PF6_PIN PINF6 #define PF6_RPORT PINF #define PF6_WPORT PORTF #define PF6_DDR DDRF #define PF6_PWM NULL #undef PF7 #define PF7_PIN PINF7 #define PF7_RPORT PINF #define PF7_WPORT PORTF #define PF7_DDR DDRF #define PF7_PWM NULL #undef PG0 #define PG0_PIN PING0 #define PG0_RPORT PING #define PG0_WPORT PORTG #define PG0_DDR DDRG #define PG0_PWM NULL #undef PG1 #define PG1_PIN PING1 #define PG1_RPORT PING #define PG1_WPORT PORTG #define PG1_DDR DDRG #define PG1_PWM NULL #undef PG2 #define PG2_PIN PING2 #define PG2_RPORT PING #define PG2_WPORT PORTG #define PG2_DDR DDRG #define PG2_PWM NULL #undef PG3 #define PG3_PIN PING3 #define PG3_RPORT PING #define PG3_WPORT PORTG #define PG3_DDR DDRG #define PG3_PWM NULL #undef PG4 #define PG4_PIN PING4 #define PG4_RPORT PING #define PG4_WPORT PORTG #define PG4_DDR DDRG #define PG4_PWM NULL #undef PG5 #define PG5_PIN PING5 #define PG5_RPORT PING #define PG5_WPORT PORTG #define PG5_DDR DDRG #define PG5_PWM &OCR0B #undef PG6 #define PG6_PIN PING6 #define PG6_RPORT PING #define PG6_WPORT PORTG #define PG6_DDR DDRG #define PG6_PWM NULL #undef PG7 #define PG7_PIN PING7 #define PG7_RPORT PING #define PG7_WPORT PORTG #define PG7_DDR DDRG #define PG7_PWM NULL #undef PH0 #define PH0_PIN PINH0 #define PH0_RPORT PINH #define PH0_WPORT PORTH #define PH0_DDR DDRH #define PH0_PWM NULL #undef PH1 #define PH1_PIN PINH1 #define PH1_RPORT PINH #define PH1_WPORT PORTH #define PH1_DDR DDRH #define PH1_PWM NULL #undef PH2 #define PH2_PIN PINH2 #define PH2_RPORT PINH #define PH2_WPORT PORTH #define PH2_DDR DDRH #define PH2_PWM NULL #undef PH3 #define PH3_PIN PINH3 #define PH3_RPORT PINH #define PH3_WPORT PORTH #define PH3_DDR DDRH #define PH3_PWM &OCR4AL #undef PH4 #define PH4_PIN PINH4 #define PH4_RPORT PINH #define PH4_WPORT PORTH #define PH4_DDR DDRH #define PH4_PWM &OCR4BL #undef PH5 #define PH5_PIN PINH5 #define PH5_RPORT PINH #define PH5_WPORT PORTH #define PH5_DDR DDRH #define PH5_PWM &OCR4CL #undef PH6 #define PH6_PIN PINH6 #define PH6_RPORT PINH #define PH6_WPORT PORTH #define PH6_DDR DDRH #define PH6_PWM &OCR2B #undef PH7 #define PH7_PIN PINH7 #define PH7_RPORT PINH #define PH7_WPORT PORTH #define PH7_DDR DDRH #define PH7_PWM NULL #undef PJ0 #define PJ0_PIN PINJ0 #define PJ0_RPORT PINJ #define PJ0_WPORT PORTJ #define PJ0_DDR DDRJ #define PJ0_PWM NULL #undef PJ1 #define PJ1_PIN PINJ1 #define PJ1_RPORT PINJ #define PJ1_WPORT PORTJ #define PJ1_DDR DDRJ #define PJ1_PWM NULL #undef PJ2 #define PJ2_PIN PINJ2 #define PJ2_RPORT PINJ #define PJ2_WPORT PORTJ #define PJ2_DDR DDRJ #define PJ2_PWM NULL #undef PJ3 #define PJ3_PIN PINJ3 #define PJ3_RPORT PINJ #define PJ3_WPORT PORTJ #define PJ3_DDR DDRJ #define PJ3_PWM NULL #undef PJ4 #define PJ4_PIN PINJ4 #define PJ4_RPORT PINJ #define PJ4_WPORT PORTJ #define PJ4_DDR DDRJ #define PJ4_PWM NULL #undef PJ5 #define PJ5_PIN PINJ5 #define PJ5_RPORT PINJ #define PJ5_WPORT PORTJ #define PJ5_DDR DDRJ #define PJ5_PWM NULL #undef PJ6 #define PJ6_PIN PINJ6 #define PJ6_RPORT PINJ #define PJ6_WPORT PORTJ #define PJ6_DDR DDRJ #define PJ6_PWM NULL #undef PJ7 #define PJ7_PIN PINJ7 #define PJ7_RPORT PINJ #define PJ7_WPORT PORTJ #define PJ7_DDR DDRJ #define PJ7_PWM NULL #undef PK0 #define PK0_PIN PINK0 #define PK0_RPORT PINK #define PK0_WPORT PORTK #define PK0_DDR DDRK #define PK0_PWM NULL #undef PK1 #define PK1_PIN PINK1 #define PK1_RPORT PINK #define PK1_WPORT PORTK #define PK1_DDR DDRK #define PK1_PWM NULL #undef PK2 #define PK2_PIN PINK2 #define PK2_RPORT PINK #define PK2_WPORT PORTK #define PK2_DDR DDRK #define PK2_PWM NULL #undef PK3 #define PK3_PIN PINK3 #define PK3_RPORT PINK #define PK3_WPORT PORTK #define PK3_DDR DDRK #define PK3_PWM NULL #undef PK4 #define PK4_PIN PINK4 #define PK4_RPORT PINK #define PK4_WPORT PORTK #define PK4_DDR DDRK #define PK4_PWM NULL #undef PK5 #define PK5_PIN PINK5 #define PK5_RPORT PINK #define PK5_WPORT PORTK #define PK5_DDR DDRK #define PK5_PWM NULL #undef PK6 #define PK6_PIN PINK6 #define PK6_RPORT PINK #define PK6_WPORT PORTK #define PK6_DDR DDRK #define PK6_PWM NULL #undef PK7 #define PK7_PIN PINK7 #define PK7_RPORT PINK #define PK7_WPORT PORTK #define PK7_DDR DDRK #define PK7_PWM NULL #undef PL0 #define PL0_PIN PINL0 #define PL0_RPORT PINL #define PL0_WPORT PORTL #define PL0_DDR DDRL #define PL0_PWM NULL #undef PL1 #define PL1_PIN PINL1 #define PL1_RPORT PINL #define PL1_WPORT PORTL #define PL1_DDR DDRL #define PL1_PWM NULL #undef PL2 #define PL2_PIN PINL2 #define PL2_RPORT PINL #define PL2_WPORT PORTL #define PL2_DDR DDRL #define PL2_PWM NULL #undef PL3 #define PL3_PIN PINL3 #define PL3_RPORT PINL #define PL3_WPORT PORTL #define PL3_DDR DDRL #define PL3_PWM &OCR5AL #undef PL4 #define PL4_PIN PINL4 #define PL4_RPORT PINL #define PL4_WPORT PORTL #define PL4_DDR DDRL #define PL4_PWM &OCR5BL #undef PL5 #define PL5_PIN PINL5 #define PL5_RPORT PINL #define PL5_WPORT PORTL #define PL5_DDR DDRL #define PL5_PWM &OCR5CL #undef PL6 #define PL6_PIN PINL6 #define PL6_RPORT PINL #define PL6_WPORT PORTL #define PL6_DDR DDRL #define PL6_PWM NULL #undef PL7 #define PL7_PIN PINL7 #define PL7_RPORT PINL #define PL7_WPORT PORTL #define PL7_DDR DDRL #define PL7_PWM NULL #endif #if defined (__AVR_AT90USB1287__) || defined (__AVR_AT90USB1286__) || defined (__AVR_AT90USB646__) || defined(__AVR_AT90USB647__) // SPI #define SCK DIO9 #define MISO DIO11 #define MOSI DIO10 #define SS DIO8 // change for your board #define DEBUG_LED DIO31 /* led D5 red */ /* pins */ //#define AT90USBxx_TEENSYPP_ASSIGNMENTS // Use Teensy++ 2.0 assignments #ifndef AT90USBxx_TEENSYPP_ASSIGNMENTS // Use traditional Marlin pin assignments #define DIO0_PIN PINA0 #define DIO0_RPORT PINA #define DIO0_WPORT PORTA #define DIO0_PWM NULL #define DIO0_DDR DDRA #define DIO1_PIN PINA1 #define DIO1_RPORT PINA #define DIO1_WPORT PORTA #define DIO1_PWM NULL #define DIO1_DDR DDRA #define DIO2_PIN PINA2 #define DIO2_RPORT PINA #define DIO2_WPORT PORTA #define DIO2_PWM NULL #define DIO2_DDR DDRA #define DIO3_PIN PINA3 #define DIO3_RPORT PINA #define DIO3_WPORT PORTA #define DIO3_PWM NULL #define DIO3_DDR DDRA #define DIO4_PIN PINA4 #define DIO4_RPORT PINA #define DIO4_WPORT PORTA #define DIO4_PWM NULL #define DIO4_DDR DDRA #define DIO5_PIN PINA5 #define DIO5_RPORT PINA #define DIO5_WPORT PORTA #define DIO5_PWM NULL #define DIO5_DDR DDRA #define DIO6_PIN PINA6 #define DIO6_RPORT PINA #define DIO6_WPORT PORTA #define DIO6_PWM NULL #define DIO6_DDR DDRA #define DIO7_PIN PINA7 #define DIO7_RPORT PINA #define DIO7_WPORT PORTA #define DIO7_PWM NULL #define DIO7_DDR DDRA #define DIO8_PIN PINB0 #define DIO8_RPORT PINB #define DIO8_WPORT PORTB #define DIO8_PWM NULL #define DIO8_DDR DDRB #define DIO9_PIN PINB1 #define DIO9_RPORT PINB #define DIO9_WPORT PORTB #define DIO9_PWM NULL #define DIO9_DDR DDRB #define DIO10_PIN PINB2 #define DIO10_RPORT PINB #define DIO10_WPORT PORTB #define DIO10_PWM NULL #define DIO10_DDR DDRB #define DIO11_PIN PINB3 #define DIO11_RPORT PINB #define DIO11_WPORT PORTB #define DIO11_PWM NULL #define DIO11_DDR DDRB #define DIO12_PIN PINB4 #define DIO12_RPORT PINB #define DIO12_WPORT PORTB #define DIO12_PWM NULL #define DIO12_DDR DDRB #define DIO13_PIN PINB5 #define DIO13_RPORT PINB #define DIO13_WPORT PORTB #define DIO13_PWM NULL #define DIO13_DDR DDRB #define DIO14_PIN PINB6 #define DIO14_RPORT PINB #define DIO14_WPORT PORTB #define DIO14_PWM NULL #define DIO14_DDR DDRB #define DIO15_PIN PINB7 #define DIO15_RPORT PINB #define DIO15_WPORT PORTB #define DIO15_PWM NULL #define DIO15_DDR DDRB #define DIO16_PIN PINC0 #define DIO16_RPORT PINC #define DIO16_WPORT PORTC #define DIO16_PWM NULL #define DIO16_DDR DDRC #define DIO17_PIN PINC1 #define DIO17_RPORT PINC #define DIO17_WPORT PORTC #define DIO17_PWM NULL #define DIO17_DDR DDRC #define DIO18_PIN PINC2 #define DIO18_RPORT PINC #define DIO18_WPORT PORTC #define DIO18_PWM NULL #define DIO18_DDR DDRC #define DIO19_PIN PINC3 #define DIO19_RPORT PINC #define DIO19_WPORT PORTC #define DIO19_PWM NULL #define DIO19_DDR DDRC #define DIO20_PIN PINC4 #define DIO20_RPORT PINC #define DIO20_WPORT PORTC #define DIO20_PWM NULL #define DIO20_DDR DDRC #define DIO21_PIN PINC5 #define DIO21_RPORT PINC #define DIO21_WPORT PORTC #define DIO21_PWM NULL #define DIO21_DDR DDRC #define DIO22_PIN PINC6 #define DIO22_RPORT PINC #define DIO22_WPORT PORTC #define DIO22_PWM NULL #define DIO22_DDR DDRC #define DIO23_PIN PINC7 #define DIO23_RPORT PINC #define DIO23_WPORT PORTC #define DIO23_PWM NULL #define DIO23_DDR DDRC #define DIO24_PIN PIND0 #define DIO24_RPORT PIND #define DIO24_WPORT PORTD #define DIO24_PWM NULL #define DIO24_DDR DDRD #define DIO25_PIN PIND1 #define DIO25_RPORT PIND #define DIO25_WPORT PORTD #define DIO25_PWM NULL #define DIO25_DDR DDRD #define DIO26_PIN PIND2 #define DIO26_RPORT PIND #define DIO26_WPORT PORTD #define DIO26_PWM NULL #define DIO26_DDR DDRD #define DIO27_PIN PIND3 #define DIO27_RPORT PIND #define DIO27_WPORT PORTD #define DIO27_PWM NULL #define DIO27_DDR DDRD #define DIO28_PIN PIND4 #define DIO28_RPORT PIND #define DIO28_WPORT PORTD #define DIO28_PWM NULL #define DIO28_DDR DDRD #define DIO29_PIN PIND5 #define DIO29_RPORT PIND #define DIO29_WPORT PORTD #define DIO29_PWM NULL #define DIO29_DDR DDRD #define DIO30_PIN PIND6 #define DIO30_RPORT PIND #define DIO30_WPORT PORTD #define DIO30_PWM NULL #define DIO30_DDR DDRD #define DIO31_PIN PIND7 #define DIO31_RPORT PIND #define DIO31_WPORT PORTD #define DIO31_PWM NULL #define DIO31_DDR DDRD #define DIO32_PIN PINE0 #define DIO32_RPORT PINE #define DIO32_WPORT PORTE #define DIO32_PWM NULL #define DIO32_DDR DDRE #define DIO33_PIN PINE1 #define DIO33_RPORT PINE #define DIO33_WPORT PORTE #define DIO33_PWM NULL #define DIO33_DDR DDRE #define DIO34_PIN PINE2 #define DIO34_RPORT PINE #define DIO34_WPORT PORTE #define DIO34_PWM NULL #define DIO34_DDR DDRE #define DIO35_PIN PINE3 #define DIO35_RPORT PINE #define DIO35_WPORT PORTE #define DIO35_PWM NULL #define DIO35_DDR DDRE #define DIO36_PIN PINE4 #define DIO36_RPORT PINE #define DIO36_WPORT PORTE #define DIO36_PWM NULL #define DIO36_DDR DDRE #define DIO37_PIN PINE5 #define DIO37_RPORT PINE #define DIO37_WPORT PORTE #define DIO37_PWM NULL #define DIO37_DDR DDRE #define DIO38_PIN PINE6 #define DIO38_RPORT PINE #define DIO38_WPORT PORTE #define DIO38_PWM NULL #define DIO38_DDR DDRE #define DIO39_PIN PINE7 #define DIO39_RPORT PINE #define DIO39_WPORT PORTE #define DIO39_PWM NULL #define DIO39_DDR DDRE #define AIO0_PIN PINF0 #define AIO0_RPORT PINF #define AIO0_WPORT PORTF #define AIO0_PWM NULL #define AIO0_DDR DDRF #define AIO1_PIN PINF1 #define AIO1_RPORT PINF #define AIO1_WPORT PORTF #define AIO1_PWM NULL #define AIO1_DDR DDRF #define AIO2_PIN PINF2 #define AIO2_RPORT PINF #define AIO2_WPORT PORTF #define AIO2_PWM NULL #define AIO2_DDR DDRF #define AIO3_PIN PINF3 #define AIO3_RPORT PINF #define AIO3_WPORT PORTF #define AIO3_PWM NULL #define AIO3_DDR DDRF #define AIO4_PIN PINF4 #define AIO4_RPORT PINF #define AIO4_WPORT PORTF #define AIO4_PWM NULL #define AIO4_DDR DDRF #define AIO5_PIN PINF5 #define AIO5_RPORT PINF #define AIO5_WPORT PORTF #define AIO5_PWM NULL #define AIO5_DDR DDRF #define AIO6_PIN PINF6 #define AIO6_RPORT PINF #define AIO6_WPORT PORTF #define AIO6_PWM NULL #define AIO6_DDR DDRF #define AIO7_PIN PINF7 #define AIO7_RPORT PINF #define AIO7_WPORT PORTF #define AIO7_PWM NULL #define AIO7_DDR DDRF #define DIO40_PIN PINF0 #define DIO40_RPORT PINF #define DIO40_WPORT PORTF #define DIO40_PWM NULL #define DIO40_DDR DDRF #define DIO41_PIN PINF1 #define DIO41_RPORT PINF #define DIO41_WPORT PORTF #define DIO41_PWM NULL #define DIO41_DDR DDRF #define DIO42_PIN PINF2 #define DIO42_RPORT PINF #define DIO42_WPORT PORTF #define DIO42_PWM NULL #define DIO42_DDR DDRF #define DIO43_PIN PINF3 #define DIO43_RPORT PINF #define DIO43_WPORT PORTF #define DIO43_PWM NULL #define DIO43_DDR DDRF #define DIO44_PIN PINF4 #define DIO44_RPORT PINF #define DIO44_WPORT PORTF #define DIO44_PWM NULL #define DIO44_DDR DDRF #define DIO45_PIN PINF5 #define DIO45_RPORT PINF #define DIO45_WPORT PORTF #define DIO45_PWM NULL #define DIO45_DDR DDRF #define DIO46_PIN PINF6 #define DIO46_RPORT PINF #define DIO46_WPORT PORTF #define DIO46_PWM NULL #define DIO46_DDR DDRF #define DIO47_PIN PINF7 #define DIO47_RPORT PINF #define DIO47_WPORT PORTF #define DIO47_PWM NULL #define DIO47_DDR DDRF #undef PA0 #define PA0_PIN PINA0 #define PA0_RPORT PINA #define PA0_WPORT PORTA #define PA0_PWM NULL #define PA0_DDR DDRA #undef PA1 #define PA1_PIN PINA1 #define PA1_RPORT PINA #define PA1_WPORT PORTA #define PA1_PWM NULL #define PA1_DDR DDRA #undef PA2 #define PA2_PIN PINA2 #define PA2_RPORT PINA #define PA2_WPORT PORTA #define PA2_PWM NULL #define PA2_DDR DDRA #undef PA3 #define PA3_PIN PINA3 #define PA3_RPORT PINA #define PA3_WPORT PORTA #define PA3_PWM NULL #define PA3_DDR DDRA #undef PA4 #define PA4_PIN PINA4 #define PA4_RPORT PINA #define PA4_WPORT PORTA #define PA4_PWM NULL #define PA4_DDR DDRA #undef PA5 #define PA5_PIN PINA5 #define PA5_RPORT PINA #define PA5_WPORT PORTA #define PA5_PWM NULL #define PA5_DDR DDRA #undef PA6 #define PA6_PIN PINA6 #define PA6_RPORT PINA #define PA6_WPORT PORTA #define PA6_PWM NULL #define PA6_DDR DDRA #undef PA7 #define PA7_PIN PINA7 #define PA7_RPORT PINA #define PA7_WPORT PORTA #define PA7_PWM NULL #define PA7_DDR DDRA #undef PB0 #define PB0_PIN PINB0 #define PB0_RPORT PINB #define PB0_WPORT PORTB #define PB0_PWM NULL #define PB0_DDR DDRB #undef PB1 #define PB1_PIN PINB1 #define PB1_RPORT PINB #define PB1_WPORT PORTB #define PB1_PWM NULL #define PB1_DDR DDRB #undef PB2 #define PB2_PIN PINB2 #define PB2_RPORT PINB #define PB2_WPORT PORTB #define PB2_PWM NULL #define PB2_DDR DDRB #undef PB3 #define PB3_PIN PINB3 #define PB3_RPORT PINB #define PB3_WPORT PORTB #define PB3_PWM NULL #define PB3_DDR DDRB #undef PB4 #define PB4_PIN PINB4 #define PB4_RPORT PINB #define PB4_WPORT PORTB #define PB4_PWM NULL #define PB4_DDR DDRB #undef PB5 #define PB5_PIN PINB5 #define PB5_RPORT PINB #define PB5_WPORT PORTB #define PB5_PWM NULL #define PB5_DDR DDRB #undef PB6 #define PB6_PIN PINB6 #define PB6_RPORT PINB #define PB6_WPORT PORTB #define PB6_PWM NULL #define PB6_DDR DDRB #undef PB7 #define PB7_PIN PINB7 #define PB7_RPORT PINB #define PB7_WPORT PORTB #define PB7_PWM NULL #define PB7_DDR DDRB #undef PC0 #define PC0_PIN PINC0 #define PC0_RPORT PINC #define PC0_WPORT PORTC #define PC0_PWM NULL #define PC0_DDR DDRC #undef PC1 #define PC1_PIN PINC1 #define PC1_RPORT PINC #define PC1_WPORT PORTC #define PC1_PWM NULL #define PC1_DDR DDRC #undef PC2 #define PC2_PIN PINC2 #define PC2_RPORT PINC #define PC2_WPORT PORTC #define PC2_PWM NULL #define PC2_DDR DDRC #undef PC3 #define PC3_PIN PINC3 #define PC3_RPORT PINC #define PC3_WPORT PORTC #define PC3_PWM NULL #define PC3_DDR DDRC #undef PC4 #define PC4_PIN PINC4 #define PC4_RPORT PINC #define PC4_WPORT PORTC #define PC4_PWM NULL #define PC4_DDR DDRC #undef PC5 #define PC5_PIN PINC5 #define PC5_RPORT PINC #define PC5_WPORT PORTC #define PC5_PWM NULL #define PC5_DDR DDRC #undef PC6 #define PC6_PIN PINC6 #define PC6_RPORT PINC #define PC6_WPORT PORTC #define PC6_PWM NULL #define PC6_DDR DDRC #undef PC7 #define PC7_PIN PINC7 #define PC7_RPORT PINC #define PC7_WPORT PORTC #define PC7_PWM NULL #define PC7_DDR DDRC #undef PD0 #define PD0_PIN PIND0 #define PD0_RPORT PIND #define PD0_WPORT PORTD #define PD0_PWM NULL #define PD0_DDR DDRD #undef PD1 #define PD1_PIN PIND1 #define PD1_RPORT PIND #define PD1_WPORT PORTD #define PD1_PWM NULL #define PD1_DDR DDRD #undef PD2 #define PD2_PIN PIND2 #define PD2_RPORT PIND #define PD2_WPORT PORTD #define PD2_PWM NULL #define PD2_DDR DDRD #undef PD3 #define PD3_PIN PIND3 #define PD3_RPORT PIND #define PD3_WPORT PORTD #define PD3_PWM NULL #define PD3_DDR DDRD #undef PD4 #define PD4_PIN PIND4 #define PD4_RPORT PIND #define PD4_WPORT PORTD #define PD4_PWM NULL #define PD4_DDR DDRD #undef PD5 #define PD5_PIN PIND5 #define PD5_RPORT PIND #define PD5_WPORT PORTD #define PD5_PWM NULL #define PD5_DDR DDRD #undef PD6 #define PD6_PIN PIND6 #define PD6_RPORT PIND #define PD6_WPORT PORTD #define PD6_PWM NULL #define PD6_DDR DDRD #undef PD7 #define PD7_PIN PIND7 #define PD7_RPORT PIND #define PD7_WPORT PORTD #define PD7_PWM NULL #define PD7_DDR DDRD #undef PE0 #define PE0_PIN PINE0 #define PE0_RPORT PINE #define PE0_WPORT PORTE #define PE0_PWM NULL #define PE0_DDR DDRE #undef PE1 #define PE1_PIN PINE1 #define PE1_RPORT PINE #define PE1_WPORT PORTE #define PE1_PWM NULL #define PE1_DDR DDRE #undef PE2 #define PE2_PIN PINE2 #define PE2_RPORT PINE #define PE2_WPORT PORTE #define PE2_PWM NULL #define PE2_DDR DDRE #undef PE3 #define PE3_PIN PINE3 #define PE3_RPORT PINE #define PE3_WPORT PORTE #define PE3_PWM NULL #define PE3_DDR DDRE #undef PE4 #define PE4_PIN PINE4 #define PE4_RPORT PINE #define PE4_WPORT PORTE #define PE4_PWM NULL #define PE4_DDR DDRE #undef PE5 #define PE5_PIN PINE5 #define PE5_RPORT PINE #define PE5_WPORT PORTE #define PE5_PWM NULL #define PE5_DDR DDRE #undef PE6 #define PE6_PIN PINE6 #define PE6_RPORT PINE #define PE6_WPORT PORTE #define PE6_PWM NULL #define PE6_DDR DDRE #undef PE7 #define PE7_PIN PINE7 #define PE7_RPORT PINE #define PE7_WPORT PORTE #define PE7_PWM NULL #define PE7_DDR DDRE #undef PF0 #define PF0_PIN PINF0 #define PF0_RPORT PINF #define PF0_WPORT PORTF #define PF0_PWM NULL #define PF0_DDR DDRF #undef PF1 #define PF1_PIN PINF1 #define PF1_RPORT PINF #define PF1_WPORT PORTF #define PF1_PWM NULL #define PF1_DDR DDRF #undef PF2 #define PF2_PIN PINF2 #define PF2_RPORT PINF #define PF2_WPORT PORTF #define PF2_PWM NULL #define PF2_DDR DDRF #undef PF3 #define PF3_PIN PINF3 #define PF3_RPORT PINF #define PF3_WPORT PORTF #define PF3_PWM NULL #define PF3_DDR DDRF #undef PF4 #define PF4_PIN PINF4 #define PF4_RPORT PINF #define PF4_WPORT PORTF #define PF4_PWM NULL #define PF4_DDR DDRF #undef PF5 #define PF5_PIN PINF5 #define PF5_RPORT PINF #define PF5_WPORT PORTF #define PF5_PWM NULL #define PF5_DDR DDRF #undef PF6 #define PF6_PIN PINF6 #define PF6_RPORT PINF #define PF6_WPORT PORTF #define PF6_PWM NULL #define PF6_DDR DDRF #undef PF7 #define PF7_PIN PINF7 #define PF7_RPORT PINF #define PF7_WPORT PORTF #define PF7_PWM NULL #define PF7_DDR DDRF #else // AT90USBxx_TEENSYPP_ASSIGNMENTS -- Use Teensyduino Teensy++2.0 assignments. /* AT90USB 51 50 49 48 47 46 45 44 10 11 12 13 14 15 16 17 35 36 37 38 39 40 41 42 25 26 27 28 29 30 31 32 33 34 43 09 18 19 01 02 61 60 59 58 57 56 55 54 Port A0 A1 A2 A3 A4 A5 A6 A7 B0 B1 B2 B3 B4 B5 B6 B7 C0 C1 C2 C3 C4 C5 C6 C7 D0 D1 D2 D3 D4 D5 D6 D7 E0 E1 E2 E3 E4 E5 E6 E7 F0 F1 F2 F3 F4 F5 F6 F7 Marlin 00 01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 Teensy 28 29 30 31 32 33 34 35 20 21 22 23 24 25 26 27 10 11 12 13 14 15 16 17 00 01 02 03 04 05 06 07 08 09(46*47)36 37 18 19 38 39 40 41 42 43 44 45 The pins 46 and 47 are not supported by Teensyduino, but are supported below. */ #define DIO0_PIN PIND0 #define DIO0_RPORT PIND #define DIO0_WPORT PORTD #define DIO0_PWM NULL #define DIO0_DDR DDRD #define DIO1_PIN PIND1 #define DIO1_RPORT PIND #define DIO1_WPORT PORTD #define DIO1_PWM NULL #define DIO1_DDR DDRD #define DIO2_PIN PIND2 #define DIO2_RPORT PIND #define DIO2_WPORT PORTD #define DIO2_PWM NULL #define DIO2_DDR DDRD #define DIO3_PIN PIND3 #define DIO3_RPORT PIND #define DIO3_WPORT PORTD #define DIO3_PWM NULL #define DIO3_DDR DDRD #define DIO4_PIN PIND4 #define DIO4_RPORT PIND #define DIO4_WPORT PORTD #define DIO4_PWM NULL #define DIO4_DDR DDRD #define DIO5_PIN PIND5 #define DIO5_RPORT PIND #define DIO5_WPORT PORTD #define DIO5_PWM NULL #define DIO5_DDR DDRD #define DIO6_PIN PIND6 #define DIO6_RPORT PIND #define DIO6_WPORT PORTD #define DIO6_PWM NULL #define DIO6_DDR DDRD #define DIO7_PIN PIND7 #define DIO7_RPORT PIND #define DIO7_WPORT PORTD #define DIO7_PWM NULL #define DIO7_DDR DDRD #define DIO8_PIN PINE0 #define DIO8_RPORT PINE #define DIO8_WPORT PORTE #define DIO8_PWM NULL #define DIO8_DDR DDRE #define DIO9_PIN PINE1 #define DIO9_RPORT PINE #define DIO9_WPORT PORTE #define DIO9_PWM NULL #define DIO9_DDR DDRE #define DIO10_PIN PINC0 #define DIO10_RPORT PINC #define DIO10_WPORT PORTC #define DIO10_PWM NULL #define DIO10_DDR DDRC #define DIO11_PIN PINC1 #define DIO11_RPORT PINC #define DIO11_WPORT PORTC #define DIO11_PWM NULL #define DIO11_DDR DDRC #define DIO12_PIN PINC2 #define DIO12_RPORT PINC #define DIO12_WPORT PORTC #define DIO12_PWM NULL #define DIO12_DDR DDRC #define DIO13_PIN PINC3 #define DIO13_RPORT PINC #define DIO13_WPORT PORTC #define DIO13_PWM NULL #define DIO13_DDR DDRC #define DIO14_PIN PINC4 #define DIO14_RPORT PINC #define DIO14_WPORT PORTC #define DIO14_PWM NULL #define DIO14_DDR DDRC #define DIO15_PIN PINC5 #define DIO15_RPORT PINC #define DIO15_WPORT PORTC #define DIO15_PWM NULL #define DIO15_DDR DDRC #define DIO16_PIN PINC6 #define DIO16_RPORT PINC #define DIO16_WPORT PORTC #define DIO16_PWM NULL #define DIO16_DDR DDRC #define DIO17_PIN PINC7 #define DIO17_RPORT PINC #define DIO17_WPORT PORTC #define DIO17_PWM NULL #define DIO17_DDR DDRC #define DIO18_PIN PINE6 #define DIO18_RPORT PINE #define DIO18_WPORT PORTE #define DIO18_PWM NULL #define DIO18_DDR DDRE #define DIO19_PIN PINE7 #define DIO19_RPORT PINE #define DIO19_WPORT PORTE #define DIO19_PWM NULL #define DIO19_DDR DDRE #define DIO20_PIN PINB0 #define DIO20_RPORT PINB #define DIO20_WPORT PORTB #define DIO20_PWM NULL #define DIO20_DDR DDRB #define DIO21_PIN PINB1 #define DIO21_RPORT PINB #define DIO21_WPORT PORTB #define DIO21_PWM NULL #define DIO21_DDR DDRB #define DIO22_PIN PINB2 #define DIO22_RPORT PINB #define DIO22_WPORT PORTB #define DIO22_PWM NULL #define DIO22_DDR DDRB #define DIO23_PIN PINB3 #define DIO23_RPORT PINB #define DIO23_WPORT PORTB #define DIO23_PWM NULL #define DIO23_DDR DDRB #define DIO24_PIN PINB4 #define DIO24_RPORT PINB #define DIO24_WPORT PORTB #define DIO24_PWM NULL #define DIO24_DDR DDRB #define DIO25_PIN PINB5 #define DIO25_RPORT PINB #define DIO25_WPORT PORTB #define DIO25_PWM NULL #define DIO25_DDR DDRB #define DIO26_PIN PINB6 #define DIO26_RPORT PINB #define DIO26_WPORT PORTB #define DIO26_PWM NULL #define DIO26_DDR DDRB #define DIO27_PIN PINB7 #define DIO27_RPORT PINB #define DIO27_WPORT PORTB #define DIO27_PWM NULL #define DIO27_DDR DDRB #define DIO28_PIN PINA0 #define DIO28_RPORT PINA #define DIO28_WPORT PORTA #define DIO28_PWM NULL #define DIO28_DDR DDRA #define DIO29_PIN PINA1 #define DIO29_RPORT PINA #define DIO29_WPORT PORTA #define DIO29_PWM NULL #define DIO29_DDR DDRA #define DIO30_PIN PINA2 #define DIO30_RPORT PINA #define DIO30_WPORT PORTA #define DIO30_PWM NULL #define DIO30_DDR DDRA #define DIO31_PIN PINA3 #define DIO31_RPORT PINA #define DIO31_WPORT PORTA #define DIO31_PWM NULL #define DIO31_DDR DDRA #define DIO32_PIN PINA4 #define DIO32_RPORT PINA #define DIO32_WPORT PORTA #define DIO32_PWM NULL #define DIO32_DDR DDRA #define DIO33_PIN PINA5 #define DIO33_RPORT PINA #define DIO33_WPORT PORTA #define DIO33_PWM NULL #define DIO33_DDR DDRA #define DIO34_PIN PINA6 #define DIO34_RPORT PINA #define DIO34_WPORT PORTA #define DIO34_PWM NULL #define DIO34_DDR DDRA #define DIO35_PIN PINA7 #define DIO35_RPORT PINA #define DIO35_WPORT PORTA #define DIO35_PWM NULL #define DIO35_DDR DDRA #define DIO36_PIN PINE4 #define DIO36_RPORT PINE #define DIO36_WPORT PORTE #define DIO36_PWM NULL #define DIO36_DDR DDRE #define DIO37_PIN PINE5 #define DIO37_RPORT PINE #define DIO37_WPORT PORTE #define DIO37_PWM NULL #define DIO37_DDR DDRE #define DIO38_PIN PINF0 #define DIO38_RPORT PINF #define DIO38_WPORT PORTF #define DIO38_PWM NULL #define DIO38_DDR DDRF #define DIO39_PIN PINF1 #define DIO39_RPORT PINF #define DIO39_WPORT PORTF #define DIO39_PWM NULL #define DIO39_DDR DDRF #define DIO40_PIN PINF2 #define DIO40_RPORT PINF #define DIO40_WPORT PORTF #define DIO40_PWM NULL #define DIO40_DDR DDRF #define DIO41_PIN PINF3 #define DIO41_RPORT PINF #define DIO41_WPORT PORTF #define DIO41_PWM NULL #define DIO41_DDR DDRF #define DIO42_PIN PINF4 #define DIO42_RPORT PINF #define DIO42_WPORT PORTF #define DIO42_PWM NULL #define DIO42_DDR DDRF #define DIO43_PIN PINF5 #define DIO43_RPORT PINF #define DIO43_WPORT PORTF #define DIO43_PWM NULL #define DIO43_DDR DDRF #define DIO44_PIN PINF6 #define DIO44_RPORT PINF #define DIO44_WPORT PORTF #define DIO44_PWM NULL #define DIO44_DDR DDRF #define DIO45_PIN PINF7 #define DIO45_RPORT PINF #define DIO45_WPORT PORTF #define DIO45_PWM NULL #define DIO45_DDR DDRF #define AIO0_PIN PINF0 #define AIO0_RPORT PINF #define AIO0_WPORT PORTF #define AIO0_PWM NULL #define AIO0_DDR DDRF #define AIO1_PIN PINF1 #define AIO1_RPORT PINF #define AIO1_WPORT PORTF #define AIO1_PWM NULL #define AIO1_DDR DDRF #define AIO2_PIN PINF2 #define AIO2_RPORT PINF #define AIO2_WPORT PORTF #define AIO2_PWM NULL #define AIO2_DDR DDRF #define AIO3_PIN PINF3 #define AIO3_RPORT PINF #define AIO3_WPORT PORTF #define AIO3_PWM NULL #define AIO3_DDR DDRF #define AIO4_PIN PINF4 #define AIO4_RPORT PINF #define AIO4_WPORT PORTF #define AIO4_PWM NULL #define AIO4_DDR DDRF #define AIO5_PIN PINF5 #define AIO5_RPORT PINF #define AIO5_WPORT PORTF #define AIO5_PWM NULL #define AIO5_DDR DDRF #define AIO6_PIN PINF6 #define AIO6_RPORT PINF #define AIO6_WPORT PORTF #define AIO6_PWM NULL #define AIO6_DDR DDRF #define AIO7_PIN PINF7 #define AIO7_RPORT PINF #define AIO7_WPORT PORTF #define AIO7_PWM NULL #define AIO7_DDR DDRF //-- Begin not supported by Teensyduino //-- don't use Arduino functions on these pins pinMode/digitalWrite/etc #define DIO46_PIN PINE2 #define DIO46_RPORT PINE #define DIO46_WPORT PORTE #define DIO46_PWM NULL #define DIO46_DDR DDRE #define DIO47_PIN PINE3 #define DIO47_RPORT PINE #define DIO47_WPORT PORTE #define DIO47_PWM NULL #define DIO47_DDR DDRE //-- end not supported by Teensyduino #undef PA0 #define PA0_PIN PINA0 #define PA0_RPORT PINA #define PA0_WPORT PORTA #define PA0_PWM NULL #define PA0_DDR DDRA #undef PA1 #define PA1_PIN PINA1 #define PA1_RPORT PINA #define PA1_WPORT PORTA #define PA1_PWM NULL #define PA1_DDR DDRA #undef PA2 #define PA2_PIN PINA2 #define PA2_RPORT PINA #define PA2_WPORT PORTA #define PA2_PWM NULL #define PA2_DDR DDRA #undef PA3 #define PA3_PIN PINA3 #define PA3_RPORT PINA #define PA3_WPORT PORTA #define PA3_PWM NULL #define PA3_DDR DDRA #undef PA4 #define PA4_PIN PINA4 #define PA4_RPORT PINA #define PA4_WPORT PORTA #define PA4_PWM NULL #define PA4_DDR DDRA #undef PA5 #define PA5_PIN PINA5 #define PA5_RPORT PINA #define PA5_WPORT PORTA #define PA5_PWM NULL #define PA5_DDR DDRA #undef PA6 #define PA6_PIN PINA6 #define PA6_RPORT PINA #define PA6_WPORT PORTA #define PA6_PWM NULL #define PA6_DDR DDRA #undef PA7 #define PA7_PIN PINA7 #define PA7_RPORT PINA #define PA7_WPORT PORTA #define PA7_PWM NULL #define PA7_DDR DDRA #undef PB0 #define PB0_PIN PINB0 #define PB0_RPORT PINB #define PB0_WPORT PORTB #define PB0_PWM NULL #define PB0_DDR DDRB #undef PB1 #define PB1_PIN PINB1 #define PB1_RPORT PINB #define PB1_WPORT PORTB #define PB1_PWM NULL #define PB1_DDR DDRB #undef PB2 #define PB2_PIN PINB2 #define PB2_RPORT PINB #define PB2_WPORT PORTB #define PB2_PWM NULL #define PB2_DDR DDRB #undef PB3 #define PB3_PIN PINB3 #define PB3_RPORT PINB #define PB3_WPORT PORTB #define PB3_PWM NULL #define PB3_DDR DDRB #undef PB4 #define PB4_PIN PINB4 #define PB4_RPORT PINB #define PB4_WPORT PORTB #define PB4_PWM NULL #define PB4_DDR DDRB #undef PB5 #define PB5_PIN PINB5 #define PB5_RPORT PINB #define PB5_WPORT PORTB #define PB5_PWM NULL #define PB5_DDR DDRB #undef PB6 #define PB6_PIN PINB6 #define PB6_RPORT PINB #define PB6_WPORT PORTB #define PB6_PWM NULL #define PB6_DDR DDRB #undef PB7 #define PB7_PIN PINB7 #define PB7_RPORT PINB #define PB7_WPORT PORTB #define PB7_PWM NULL #define PB7_DDR DDRB #undef PC0 #define PC0_PIN PINC0 #define PC0_RPORT PINC #define PC0_WPORT PORTC #define PC0_PWM NULL #define PC0_DDR DDRC #undef PC1 #define PC1_PIN PINC1 #define PC1_RPORT PINC #define PC1_WPORT PORTC #define PC1_PWM NULL #define PC1_DDR DDRC #undef PC2 #define PC2_PIN PINC2 #define PC2_RPORT PINC #define PC2_WPORT PORTC #define PC2_PWM NULL #define PC2_DDR DDRC #undef PC3 #define PC3_PIN PINC3 #define PC3_RPORT PINC #define PC3_WPORT PORTC #define PC3_PWM NULL #define PC3_DDR DDRC #undef PC4 #define PC4_PIN PINC4 #define PC4_RPORT PINC #define PC4_WPORT PORTC #define PC4_PWM NULL #define PC4_DDR DDRC #undef PC5 #define PC5_PIN PINC5 #define PC5_RPORT PINC #define PC5_WPORT PORTC #define PC5_PWM NULL #define PC5_DDR DDRC #undef PC6 #define PC6_PIN PINC6 #define PC6_RPORT PINC #define PC6_WPORT PORTC #define PC6_PWM NULL #define PC6_DDR DDRC #undef PC7 #define PC7_PIN PINC7 #define PC7_RPORT PINC #define PC7_WPORT PORTC #define PC7_PWM NULL #define PC7_DDR DDRC #undef PD0 #define PD0_PIN PIND0 #define PD0_RPORT PIND #define PD0_WPORT PORTD #define PD0_PWM NULL #define PD0_DDR DDRD #undef PD1 #define PD1_PIN PIND1 #define PD1_RPORT PIND #define PD1_WPORT PORTD #define PD1_PWM NULL #define PD1_DDR DDRD #undef PD2 #define PD2_PIN PIND2 #define PD2_RPORT PIND #define PD2_WPORT PORTD #define PD2_PWM NULL #define PD2_DDR DDRD #undef PD3 #define PD3_PIN PIND3 #define PD3_RPORT PIND #define PD3_WPORT PORTD #define PD3_PWM NULL #define PD3_DDR DDRD #undef PD4 #define PD4_PIN PIND4 #define PD4_RPORT PIND #define PD4_WPORT PORTD #define PD4_PWM NULL #define PD4_DDR DDRD #undef PD5 #define PD5_PIN PIND5 #define PD5_RPORT PIND #define PD5_WPORT PORTD #define PD5_PWM NULL #define PD5_DDR DDRD #undef PD6 #define PD6_PIN PIND6 #define PD6_RPORT PIND #define PD6_WPORT PORTD #define PD6_PWM NULL #define PD6_DDR DDRD #undef PD7 #define PD7_PIN PIND7 #define PD7_RPORT PIND #define PD7_WPORT PORTD #define PD7_PWM NULL #define PD7_DDR DDRD #undef PE0 #define PE0_PIN PINE0 #define PE0_RPORT PINE #define PE0_WPORT PORTE #define PE0_PWM NULL #define PE0_DDR DDRE #undef PE1 #define PE1_PIN PINE1 #define PE1_RPORT PINE #define PE1_WPORT PORTE #define PE1_PWM NULL #define PE1_DDR DDRE #undef PE2 #define PE2_PIN PINE2 #define PE2_RPORT PINE #define PE2_WPORT PORTE #define PE2_PWM NULL #define PE2_DDR DDRE #undef PE3 #define PE3_PIN PINE3 #define PE3_RPORT PINE #define PE3_WPORT PORTE #define PE3_PWM NULL #define PE3_DDR DDRE #undef PE4 #define PE4_PIN PINE4 #define PE4_RPORT PINE #define PE4_WPORT PORTE #define PE4_PWM NULL #define PE4_DDR DDRE #undef PE5 #define PE5_PIN PINE5 #define PE5_RPORT PINE #define PE5_WPORT PORTE #define PE5_PWM NULL #define PE5_DDR DDRE #undef PE6 #define PE6_PIN PINE6 #define PE6_RPORT PINE #define PE6_WPORT PORTE #define PE6_PWM NULL #define PE6_DDR DDRE #undef PE7 #define PE7_PIN PINE7 #define PE7_RPORT PINE #define PE7_WPORT PORTE #define PE7_PWM NULL #define PE7_DDR DDRE #undef PF0 #define PF0_PIN PINF0 #define PF0_RPORT PINF #define PF0_WPORT PORTF #define PF0_PWM NULL #define PF0_DDR DDRF #undef PF1 #define PF1_PIN PINF1 #define PF1_RPORT PINF #define PF1_WPORT PORTF #define PF1_PWM NULL #define PF1_DDR DDRF #undef PF2 #define PF2_PIN PINF2 #define PF2_RPORT PINF #define PF2_WPORT PORTF #define PF2_PWM NULL #define PF2_DDR DDRF #undef PF3 #define PF3_PIN PINF3 #define PF3_RPORT PINF #define PF3_WPORT PORTF #define PF3_PWM NULL #define PF3_DDR DDRF #undef PF4 #define PF4_PIN PINF4 #define PF4_RPORT PINF #define PF4_WPORT PORTF #define PF4_PWM NULL #define PF4_DDR DDRF #undef PF5 #define PF5_PIN PINF5 #define PF5_RPORT PINF #define PF5_WPORT PORTF #define PF5_PWM NULL #define PF5_DDR DDRF #undef PF6 #define PF6_PIN PINF6 #define PF6_RPORT PINF #define PF6_WPORT PORTF #define PF6_PWM NULL #define PF6_DDR DDRF #undef PF7 #define PF7_PIN PINF7 #define PF7_RPORT PINF #define PF7_WPORT PORTF #define PF7_PWM NULL #define PF7_DDR DDRF #endif // AT90USBxx_TEENSYPP_ASSIGNMENTS Teensyduino assignments #endif // __AVR_AT90usbxxx__ #if defined (__AVR_ATmega1281__) || defined (__AVR_ATmega2561__) // UART #define RXD DIO0 #define TXD DIO1 // SPI #define SCK DIO10 #define MISO DIO12 #define MOSI DIO11 #define SS DIO16 // TWI (I2C) #define SCL DIO17 #define SDA DIO18 // timers and PWM #define OC0A DIO9 #define OC0B DIO4 #define OC1A DIO7 #define OC1B DIO8 #define OC2A DIO6 #define OC3A DIO5 #define OC3B DIO2 #define OC3C DIO3 // change for your board #define DEBUG_LED DIO46 /* pins */ #define DIO0_PIN PINE0 #define DIO0_RPORT PINE #define DIO0_WPORT PORTE #define DIO0_DDR DDRE #define DIO0_PWM NULL #define DIO1_PIN PINE1 #define DIO1_RPORT PINE #define DIO1_WPORT PORTE #define DIO1_DDR DDRE #define DIO1_PWM NULL #define DIO2_PIN PINE4 #define DIO2_RPORT PINE #define DIO2_WPORT PORTE #define DIO2_DDR DDRE #define DIO2_PWM &OCR3BL #define DIO3_PIN PINE5 #define DIO3_RPORT PINE #define DIO3_WPORT PORTE #define DIO3_DDR DDRE #define DIO3_PWM &OCR3CL #define DIO4_PIN PING5 #define DIO4_RPORT PING #define DIO4_WPORT PORTG #define DIO4_DDR DDRG #define DIO4_PWM &OCR0B #define DIO5_PIN PINE3 #define DIO5_RPORT PINE #define DIO5_WPORT PORTE #define DIO5_DDR DDRE #define DIO5_PWM &OCR3AL #define DIO6_PIN PINB4 #define DIO6_RPORT PINB #define DIO6_WPORT PORTB #define DIO6_DDR DDRB #define DIO6_PWM &OCR2AL #define DIO7_PIN PINB5 #define DIO7_RPORT PINB #define DIO7_WPORT PORTB #define DIO7_DDR DDRB #define DIO7_PWM &OCR1AL #define DIO8_PIN PINB6 #define DIO8_RPORT PINB #define DIO8_WPORT PORTB #define DIO8_DDR DDRB #define DIO8_PWM &OCR1BL #define DIO9_PIN PINB7 #define DIO9_RPORT PINB #define DIO9_WPORT PORTB #define DIO9_DDR DDRB #define DIO9_PWM &OCR0AL #define DIO10_PIN PINB1 #define DIO10_RPORT PINB #define DIO10_WPORT PORTB #define DIO10_DDR DDRB #define DIO10_PWM NULL #define DIO11_PIN PINB2 #define DIO11_RPORT PINB #define DIO11_WPORT PORTB #define DIO11_DDR DDRB #define DIO11_PWM NULL #define DIO12_PIN PINB3 #define DIO12_RPORT PINB #define DIO12_WPORT PORTB #define DIO12_DDR DDRB #define DIO12_PWM NULL #define DIO13_PIN PINE2 #define DIO13_RPORT PINE #define DIO13_WPORT PORTE #define DIO13_DDR DDRE #define DIO13_PWM NULL #define DIO14_PIN PINE6 #define DIO14_RPORT PINE #define DIO14_WPORT PORTE #define DIO14_DDR DDRE #define DIO14_PWM NULL #define DIO15_PIN PINE7 #define DIO15_RPORT PINE #define DIO15_WPORT PORTE #define DIO15_DDR DDRE #define DIO15_PWM NULL #define DIO16_PIN PINB0 #define DIO16_RPORT PINB #define DIO16_WPORT PORTB #define DIO16_DDR DDRB #define DIO16_PWM NULL #define DIO17_PIN PIND0 #define DIO17_RPORT PIND #define DIO17_WPORT PORTD #define DIO17_DDR DDRD #define DIO17_PWM NULL #define DIO18_PIN PIND1 #define DIO18_RPORT PIND #define DIO18_WPORT PORTD #define DIO18_DDR DDRD #define DIO18_PWM NULL #define DIO19_PIN PIND2 #define DIO19_RPORT PIND #define DIO19_WPORT PORTD #define DIO19_DDR DDRD #define DIO19_PWM NULL #define DIO20_PIN PIND3 #define DIO20_RPORT PIND #define DIO20_WPORT PORTD #define DIO20_DDR DDRD #define DIO20_PWM NULL #define DIO21_PIN PIND4 #define DIO21_RPORT PIND #define DIO21_WPORT PORTD #define DIO21_DDR DDRD #define DIO21_PWM NULL #define DIO22_PIN PIND5 #define DIO22_RPORT PIND #define DIO22_WPORT PORTD #define DIO22_DDR DDRD #define DIO22_PWM NULL #define DIO23_PIN PIND6 #define DIO23_RPORT PIND #define DIO23_WPORT PORTD #define DIO23_DDR DDRD #define DIO23_PWM NULL #define DIO24_PIN PIND7 #define DIO24_RPORT PIND #define DIO24_WPORT PORTD #define DIO24_DDR DDRD #define DIO24_PWM NULL #define DIO25_PIN PING0 #define DIO25_RPORT PING #define DIO25_WPORT PORTG #define DIO25_DDR DDRG #define DIO25_PWM NULL #define DIO26_PIN PING1 #define DIO26_RPORT PING #define DIO26_WPORT PORTG #define DIO26_DDR DDRG #define DIO26_PWM NULL #define DIO27_PIN PING2 #define DIO27_RPORT PING #define DIO27_WPORT PORTG #define DIO27_DDR DDRG #define DIO27_PWM NULL #define DIO28_PIN PING3 #define DIO28_RPORT PING #define DIO28_WPORT PORTG #define DIO28_DDR DDRG #define DIO28_PWM NULL #define DIO29_PIN PING4 #define DIO29_RPORT PING #define DIO29_WPORT PORTG #define DIO29_DDR DDRG #define DIO29_PWM NULL #define DIO30_PIN PINC0 #define DIO30_RPORT PINC #define DIO30_WPORT PORTC #define DIO30_DDR DDRC #define DIO30_PWM NULL #define DIO31_PIN PINC1 #define DIO31_RPORT PINC #define DIO31_WPORT PORTC #define DIO31_DDR DDRC #define DIO31_PWM NULL #define DIO32_PIN PINC2 #define DIO32_RPORT PINC #define DIO32_WPORT PORTC #define DIO32_DDR DDRC #define DIO32_PWM NULL #define DIO33_PIN PINC3 #define DIO33_RPORT PINC #define DIO33_WPORT PORTC #define DIO33_DDR DDRC #define DIO33_PWM NULL #define DIO34_PIN PINC4 #define DIO34_RPORT PINC #define DIO34_WPORT PORTC #define DIO34_DDR DDRC #define DIO34_PWM NULL #define DIO35_PIN PINC5 #define DIO35_RPORT PINC #define DIO35_WPORT PORTC #define DIO35_DDR DDRC #define DIO35_PWM NULL #define DIO36_PIN PINC6 #define DIO36_RPORT PINC #define DIO36_WPORT PORTC #define DIO36_DDR DDRC #define DIO36_PWM NULL #define DIO37_PIN PINC7 #define DIO37_RPORT PINC #define DIO37_WPORT PORTC #define DIO37_DDR DDRC #define DIO37_PWM NULL #define DIO38_PIN PINA0 #define DIO38_RPORT PINA #define DIO38_WPORT PORTA #define DIO38_DDR DDRA #define DIO38_PWM NULL #define DIO39_PIN PINA1 #define DIO39_RPORT PINA #define DIO39_WPORT PORTA #define DIO39_DDR DDRA #define DIO39_PWM NULL #define DIO40_PIN PINA2 #define DIO40_RPORT PINA #define DIO40_WPORT PORTA #define DIO40_DDR DDRA #define DIO40_PWM NULL #define DIO41_PIN PINA3 #define DIO41_RPORT PINA #define DIO41_WPORT PORTA #define DIO41_DDR DDRA #define DIO41_PWM NULL #define DIO42_PIN PINA4 #define DIO42_RPORT PINA #define DIO42_WPORT PORTA #define DIO42_DDR DDRA #define DIO42_PWM NULL #define DIO43_PIN PINA5 #define DIO43_RPORT PINA #define DIO43_WPORT PORTA #define DIO43_DDR DDRA #define DIO43_PWM NULL #define DIO44_PIN PINA6 #define DIO44_RPORT PINA #define DIO44_WPORT PORTA #define DIO44_DDR DDRA #define DIO44_PWM NULL #define DIO45_PIN PINA7 #define DIO45_RPORT PINA #define DIO45_WPORT PORTA #define DIO45_DDR DDRA #define DIO45_PWM NULL #define DIO46_PIN PINF0 #define DIO46_RPORT PINF #define DIO46_WPORT PORTF #define DIO46_DDR DDRF #define DIO46_PWM NULL #define DIO47_PIN PINF1 #define DIO47_RPORT PINF #define DIO47_WPORT PORTF #define DIO47_DDR DDRF #define DIO47_PWM NULL #define DIO48_PIN PINF2 #define DIO48_RPORT PINF #define DIO48_WPORT PORTF #define DIO48_DDR DDRF #define DIO48_PWM NULL #define DIO49_PIN PINF3 #define DIO49_RPORT PINF #define DIO49_WPORT PORTF #define DIO49_DDR DDRF #define DIO49_PWM NULL #define DIO50_PIN PINF4 #define DIO50_RPORT PINF #define DIO50_WPORT PORTF #define DIO50_DDR DDRF #define DIO50_PWM NULL #define DIO51_PIN PINF5 #define DIO51_RPORT PINF #define DIO51_WPORT PORTF #define DIO51_DDR DDRF #define DIO51_PWM NULL #define DIO52_PIN PINF6 #define DIO52_RPORT PINF #define DIO52_WPORT PORTF #define DIO52_DDR DDRF #define DIO52_PWM NULL #define DIO53_PIN PINF7 #define DIO53_RPORT PINF #define DIO53_WPORT PORTF #define DIO53_DDR DDRF #define DIO53_PWM NULL #undef PA0 #define PA0_PIN PINA0 #define PA0_RPORT PINA #define PA0_WPORT PORTA #define PA0_DDR DDRA #define PA0_PWM NULL #undef PA1 #define PA1_PIN PINA1 #define PA1_RPORT PINA #define PA1_WPORT PORTA #define PA1_DDR DDRA #define PA1_PWM NULL #undef PA2 #define PA2_PIN PINA2 #define PA2_RPORT PINA #define PA2_WPORT PORTA #define PA2_DDR DDRA #define PA2_PWM NULL #undef PA3 #define PA3_PIN PINA3 #define PA3_RPORT PINA #define PA3_WPORT PORTA #define PA3_DDR DDRA #define PA3_PWM NULL #undef PA4 #define PA4_PIN PINA4 #define PA4_RPORT PINA #define PA4_WPORT PORTA #define PA4_DDR DDRA #define PA4_PWM NULL #undef PA5 #define PA5_PIN PINA5 #define PA5_RPORT PINA #define PA5_WPORT PORTA #define PA5_DDR DDRA #define PA5_PWM NULL #undef PA6 #define PA6_PIN PINA6 #define PA6_RPORT PINA #define PA6_WPORT PORTA #define PA6_DDR DDRA #define PA6_PWM NULL #undef PA7 #define PA7_PIN PINA7 #define PA7_RPORT PINA #define PA7_WPORT PORTA #define PA7_DDR DDRA #define PA7_PWM NULL #undef PB0 #define PB0_PIN PINB0 #define PB0_RPORT PINB #define PB0_WPORT PORTB #define PB0_DDR DDRB #define PB0_PWM NULL #undef PB1 #define PB1_PIN PINB1 #define PB1_RPORT PINB #define PB1_WPORT PORTB #define PB1_DDR DDRB #define PB1_PWM NULL #undef PB2 #define PB2_PIN PINB2 #define PB2_RPORT PINB #define PB2_WPORT PORTB #define PB2_DDR DDRB #define PB2_PWM NULL #undef PB3 #define PB3_PIN PINB3 #define PB3_RPORT PINB #define PB3_WPORT PORTB #define PB3_DDR DDRB #define PB3_PWM NULL #undef PB4 #define PB4_PIN PINB4 #define PB4_RPORT PINB #define PB4_WPORT PORTB #define PB4_DDR DDRB #define PB4_PWM &OCR2A #undef PB5 #define PB5_PIN PINB5 #define PB5_RPORT PINB #define PB5_WPORT PORTB #define PB5_DDR DDRB #define PB5_PWM NULL #undef PB6 #define PB6_PIN PINB6 #define PB6_RPORT PINB #define PB6_WPORT PORTB #define PB6_DDR DDRB #define PB6_PWM NULL #undef PB7 #define PB7_PIN PINB7 #define PB7_RPORT PINB #define PB7_WPORT PORTB #define PB7_DDR DDRB #define PB7_PWM &OCR0A #undef PC0 #define PC0_PIN PINC0 #define PC0_RPORT PINC #define PC0_WPORT PORTC #define PC0_DDR DDRC #define PC0_PWM NULL #undef PC1 #define PC1_PIN PINC1 #define PC1_RPORT PINC #define PC1_WPORT PORTC #define PC1_DDR DDRC #define PC1_PWM NULL #undef PC2 #define PC2_PIN PINC2 #define PC2_RPORT PINC #define PC2_WPORT PORTC #define PC2_DDR DDRC #define PC2_PWM NULL #undef PC3 #define PC3_PIN PINC3 #define PC3_RPORT PINC #define PC3_WPORT PORTC #define PC3_DDR DDRC #define PC3_PWM NULL #undef PC4 #define PC4_PIN PINC4 #define PC4_RPORT PINC #define PC4_WPORT PORTC #define PC4_DDR DDRC #define PC4_PWM NULL #undef PC5 #define PC5_PIN PINC5 #define PC5_RPORT PINC #define PC5_WPORT PORTC #define PC5_DDR DDRC #define PC5_PWM NULL #undef PC6 #define PC6_PIN PINC6 #define PC6_RPORT PINC #define PC6_WPORT PORTC #define PC6_DDR DDRC #define PC6_PWM NULL #undef PC7 #define PC7_PIN PINC7 #define PC7_RPORT PINC #define PC7_WPORT PORTC #define PC7_DDR DDRC #define PC7_PWM NULL #undef PD0 #define PD0_PIN PIND0 #define PD0_RPORT PIND #define PD0_WPORT PORTD #define PD0_DDR DDRD #define PD0_PWM NULL #undef PD1 #define PD1_PIN PIND1 #define PD1_RPORT PIND #define PD1_WPORT PORTD #define PD1_DDR DDRD #define PD1_PWM NULL #undef PD2 #define PD2_PIN PIND2 #define PD2_RPORT PIND #define PD2_WPORT PORTD #define PD2_DDR DDRD #define PD2_PWM NULL #undef PD3 #define PD3_PIN PIND3 #define PD3_RPORT PIND #define PD3_WPORT PORTD #define PD3_DDR DDRD #define PD3_PWM NULL #undef PD4 #define PD4_PIN PIND4 #define PD4_RPORT PIND #define PD4_WPORT PORTD #define PD4_DDR DDRD #define PD4_PWM NULL #undef PD5 #define PD5_PIN PIND5 #define PD5_RPORT PIND #define PD5_WPORT PORTD #define PD5_DDR DDRD #define PD5_PWM NULL #undef PD6 #define PD6_PIN PIND6 #define PD6_RPORT PIND #define PD6_WPORT PORTD #define PD6_DDR DDRD #define PD6_PWM NULL #undef PD7 #define PD7_PIN PIND7 #define PD7_RPORT PIND #define PD7_WPORT PORTD #define PD7_DDR DDRD #define PD7_PWM NULL #undef PE0 #define PE0_PIN PINE0 #define PE0_RPORT PINE #define PE0_WPORT PORTE #define PE0_DDR DDRE #define PE0_PWM NULL #undef PE1 #define PE1_PIN PINE1 #define PE1_RPORT PINE #define PE1_WPORT PORTE #define PE1_DDR DDRE #define PE1_PWM NULL #undef PE2 #define PE2_PIN PINE2 #define PE2_RPORT PINE #define PE2_WPORT PORTE #define PE2_DDR DDRE #define PE2_PWM NULL #undef PE3 #define PE3_PIN PINE3 #define PE3_RPORT PINE #define PE3_WPORT PORTE #define PE3_DDR DDRE #define PE3_PWM &OCR3AL #undef PE4 #define PE4_PIN PINE4 #define PE4_RPORT PINE #define PE4_WPORT PORTE #define PE4_DDR DDRE #define PE4_PWM &OCR3BL #undef PE5 #define PE5_PIN PINE5 #define PE5_RPORT PINE #define PE5_WPORT PORTE #define PE5_DDR DDRE #define PE5_PWM &OCR3CL #undef PE6 #define PE6_PIN PINE6 #define PE6_RPORT PINE #define PE6_WPORT PORTE #define PE6_DDR DDRE #define PE6_PWM NULL #undef PE7 #define PE7_PIN PINE7 #define PE7_RPORT PINE #define PE7_WPORT PORTE #define PE7_DDR DDRE #define PE7_PWM NULL #undef PF0 #define PF0_PIN PINF0 #define PF0_RPORT PINF #define PF0_WPORT PORTF #define PF0_DDR DDRF #define PF0_PWM NULL #undef PF1 #define PF1_PIN PINF1 #define PF1_RPORT PINF #define PF1_WPORT PORTF #define PF1_DDR DDRF #define PF1_PWM NULL #undef PF2 #define PF2_PIN PINF2 #define PF2_RPORT PINF #define PF2_WPORT PORTF #define PF2_DDR DDRF #define PF2_PWM NULL #undef PF3 #define PF3_PIN PINF3 #define PF3_RPORT PINF #define PF3_WPORT PORTF #define PF3_DDR DDRF #define PF3_PWM NULL #undef PF4 #define PF4_PIN PINF4 #define PF4_RPORT PINF #define PF4_WPORT PORTF #define PF4_DDR DDRF #define PF4_PWM NULL #undef PF5 #define PF5_PIN PINF5 #define PF5_RPORT PINF #define PF5_WPORT PORTF #define PF5_DDR DDRF #define PF5_PWM NULL #undef PF6 #define PF6_PIN PINF6 #define PF6_RPORT PINF #define PF6_WPORT PORTF #define PF6_DDR DDRF #define PF6_PWM NULL #undef PF7 #define PF7_PIN PINF7 #define PF7_RPORT PINF #define PF7_WPORT PORTF #define PF7_DDR DDRF #define PF7_PWM NULL #undef PG0 #define PG0_PIN PING0 #define PG0_RPORT PING #define PG0_WPORT PORTG #define PG0_DDR DDRG #define PG0_PWM NULL #undef PG1 #define PG1_PIN PING1 #define PG1_RPORT PING #define PG1_WPORT PORTG #define PG1_DDR DDRG #define PG1_PWM NULL #undef PG2 #define PG2_PIN PING2 #define PG2_RPORT PING #define PG2_WPORT PORTG #define PG2_DDR DDRG #define PG2_PWM NULL #undef PG3 #define PG3_PIN PING3 #define PG3_RPORT PING #define PG3_WPORT PORTG #define PG3_DDR DDRG #define PG3_PWM NULL #undef PG4 #define PG4_PIN PING4 #define PG4_RPORT PING #define PG4_WPORT PORTG #define PG4_DDR DDRG #define PG4_PWM NULL #undef PG5 #define PG5_PIN PING5 #define PG5_RPORT PING #define PG5_WPORT PORTG #define PG5_DDR DDRG #define PG5_PWM &OCR0B #endif #ifndef DIO0_PIN #error pins for this chip not defined in arduino.h! If you write an appropriate pin definition and have this firmware work on your chip, please submit a pull request #endif #endif /* _FASTIO_ARDUINO_H */ ```
"Tell Me Something" is the second single by Australian pop rock band Indecent Obsession, released by Melodian Records and MCA Records in 1989. The single peaked at number 17 on the Australian ARIA Chart. Early in 1990, "Tell Me Something" peaked at No. 31 on the Billboard Hot 100 in the U.S. and No. 91 on the Official Charts in the UK. Track listing Chart performance See also List of 1990s one-hit wonders in the United States References External links 1989 singles 1989 songs Indecent Obsession songs MCA Records singles
```xml import React from 'react'; import type { Meta, StoryObj } from '@storybook/react'; import { expect, within, userEvent } from '@storybook/test'; import { getRouter } from '@storybook/nextjs/router.mock'; import Router, { useRouter } from 'next/router'; function Component() { const router = useRouter(); const searchParams = router.query; const routerActions = [ { cb: () => router.back(), name: 'Go back', }, { cb: () => router.forward(), name: 'Go forward', }, { cb: () => router.prefetch('/prefetched-html'), name: 'Prefetch', }, { // @ts-expect-error (old API) cb: () => router.push('/push-html', { forceOptimisticNavigation: true }), name: 'Push HTML', }, { // @ts-expect-error (old API) cb: () => router.replace('/replaced-html', { forceOptimisticNavigation: true }), name: 'Replace', }, ]; return ( <div> <div>Router pathname: {Router.pathname}</div> <div>pathname: {router.pathname}</div> <div> searchparams:{' '} <ul> {Object.entries(searchParams).map(([key, value]) => ( <li key={key}> {key}: {value} </li> ))} </ul> </div> {routerActions.map(({ cb, name }) => ( <div key={name} style={{ marginBottom: '1em' }}> <button type="button" onClick={cb}> {name} </button> </div> ))} </div> ); } export default { component: Component, parameters: { nextjs: { router: { pathname: '/hello', query: { foo: 'bar', }, prefetch: () => { console.log('custom prefetch'); }, }, }, }, } as Meta<typeof Component>; export const Default: StoryObj<typeof Component> = { play: async ({ canvasElement, step }) => { const canvas = within(canvasElement); const routerMock = getRouter(); await step('Router property overrides should be available in useRouter fn', async () => { await expect(Router.pathname).toBe('/hello'); await expect(Router.query).toEqual({ foo: 'bar' }); }); await step( 'Router property overrides should be available in default export from next/router', async () => { await expect(Router.pathname).toBe('/hello'); await expect(Router.query).toEqual({ foo: 'bar' }); } ); await step('Asserts whether forward hook is called', async () => { const forwardBtn = await canvas.findByText('Go forward'); await userEvent.click(forwardBtn); await expect(routerMock.forward).toHaveBeenCalled(); }); await step('Asserts whether custom prefetch hook is called', async () => { const prefetchBtn = await canvas.findByText('Prefetch'); await userEvent.click(prefetchBtn); await expect(routerMock.prefetch).toHaveBeenCalledWith('/prefetched-html'); }); }, }; ```
The Union of Independent Italian Communists () was a political party in Italy. The party was led by Donato Leone and Luigi Ardore. The party contested the Potenza-Matera constituency in the 1946 Constituent Assembly election. It obtained 1,776 votes (0.69% of the votes in the constituency). The list had three candidates; Donato Leone, Luigi Ardor and Antonio Ceglia. References Defunct communist parties in Italy
Elizabeth Dee is an American art gallery owner. She is the founder of Independent Art Fair and the Elizabeth Dee Gallery. Art career Gallery The gallery has exhibited artists Alex Bag, Mark Barrow, Derek Jarman, Harry Dodge and Stanya Kahn, Jeff Keen, Miranda Lichtenstein, Virgil Marti, Ryan McNamara, Josephine Meckseper, Carl Ostendarp, Adrian Piper, Meredyth Sparks, and Ryan Trecartin, amongst many others. Events X Initiative took place in 2009-2010 at the former Dia Center for the Arts in New York. Dee is also the co-founder of Independent, a hybrid collective exhibition forum highlighting international galleries and non-profit spaces which takes place annually. Publications She has also co-published monographic publications on Josephine Meckseper (Sternberg Press), Ryan Trecartin (Dee/Rizzoli Skira) and Meredyth Sparks (Monografik Editions) and is the co-editor of the X Initiative Yearbook (Mousse Publishing, Milan). Film production Elizabeth Dee has co-produced ten movies by Ryan Trecartin including I-Be AREA (2007) and the seven video cycle Any Ever (2007-2010) which includes: Trill-ogy Comp (2009): Sibling Topics (section a), K-CoreaINC.K (section a), P.opular S.ky (section ish), Re'Search Wait'S (2009-2010): Temp Stop (Re'Search Wait'S), Roamie View: History Enhancement (Re'Search Wait'S), The Re'Search (Re'Search Wait'S) and Ready (Re'Search Wait'S). References External links X Initiative official site monocle.com nytartleadersnetwork.com independenthq.com, Independent New York/Brussels official site vogue.com Year of birth missing (living people) Living people American art dealers Women art dealers Businesspeople from New York City
Nugroho Wisnumurti (23 March 1940 – 8 June 2023) was an Indonesian diplomat. He was Indonesia's permanent representative to the United Nations in Geneva from 2000 to 2004. Education National Resilience Institute (Lemhannas), Jakarta (1988) Columbia Law School, New York City (1973) University of Indonesia Faculty of Law (1965) Curriculum vitae Ambassador/Permanent Representative of the Republic of Indonesia to the United Nations (in New York City) (1992–97) Ambassador to Jamaica, the Bahamas, Guatemala and Nicaragua (1992–1997) Representative of Indonesia to the United Nations Security Council (1995–1996) President, United Nations Security Council (August 1995 and November 1996) Chairman, Coordinating Bureau of the Non-Aligned Movement (1992–1995) Member, UN Group of Experts on Defensive Security (1991–92) Member, Group of Experts of the Non-Aligned Movement South Centre on UN's Role in Promoting International Cooperation (1991–1992) Negotiator/Chief Negotiator for various agreements on maritime delimitation with neighboring countries (1977–1989) Deputy Head, Indonesia's Delegation to the Conference on Disarmament, Geneva (1982–1986) Member and Secretary, Indonesia's Delegation to the Third UN Conference on the Law of the Sea (1974–1982) Member, Indonesia's Delegation to the UN Seabed Committee (1971–1974) Personal life and death Wisnumurti was married to Nan Irama Wisnumurti. They had one daughter. Wisnumurti was a first cousin, once removed, of Prof. Mr. Soenario, S.H. (1902–1997), Indonesia's minister of foreign affairs from 1953 to 1955. Wisnumurti died at his residence in Pondok Kelapa, North Jakarta, on 8 June 2023, at the age of 83. He was buried at his family plot in Kebon Sari, Balerejo, Madiun. Notes 1940 births 2023 deaths People from Surakarta University of Indonesia alumni Columbia Law School alumni Columbia Law School Indonesian diplomats Permanent Representatives of Indonesia to the United Nations Ambassadors of Indonesia to Nicaragua Ambassadors of Indonesia to Guatemala Ambassadors of Indonesia to the Bahamas Ambassadors of Indonesia to Jamaica Indonesian expatriates in Switzerland Indonesian expatriates in the United States
The Caudron C.690 was a single-seat training aircraft developed in France in the late 1930s to train fighter pilots to handle high-performance aircraft. It was a conventional low-wing cantilever monoplane that bore a strong resemblance to designer Marcel Riffard's racer designs of the same period. Caudron attempted to attract overseas sales for the aircraft, but this resulted in orders for only two machines - one from Japan, and the other from the USSR. In the meantime, the first of two prototypes was destroyed in a crash that killed René Paulhan, Caudron's chief test pilot. Despite this, the Armée de l'Air eventually showed interest in the type, and ordered a batch of a slightly refined design. The first of these was not delivered until April 1939, and only 15 C.690Ms were supplied before the outbreak of war. Variants C.690 Single-seat fighter trainer aircraft. Four aircraft built. C.690M Slightly refined version for the Armee de l'Air. Only 15 aircraft were built. Operators Armee de l'Air Imperial Japanese Air Force - One aircraft only (KXC1) . soviet Air Force - One aircraft only. Specifications (C.690M) See also References Bibliography Further reading 1930s French military trainer aircraft C.690 Low-wing aircraft Single-engined tractor aircraft Aircraft first flown in 1936
Smiggle is an Australian-based retail store chain that sells stationery and related accessories. It was founded in Melbourne by Stephen Meurs and Peter Pausewang in 2003 and acquired by the Just Group in July 2007. As of February 2016, the chain has stores located across Australia (135), New Zealand (23), Singapore (17), United Kingdom (100), Hong Kong (14), Malaysia (22) and the Republic of Ireland (3). Smiggle is renowned for its use of vibrant bold colours and quirky graphics on most of its branded products. History Smiggle started as an idea by Stephen Meurs and Peter Pausewang who saw a gap in the market for fun, engaging, collectable, fashionable, and affordable stationery aimed at the 5 to 14 year age group. In late 2002, Meurs started designing, developing and producing the first lines of Smiggle stationery, while Kate Martino was tasked to look for suitable retail sites around Melbourne. They decided on the name, 'Smiggle' as a mashup word for smile and giggle, reflecting their aims for the products. In addition to retailing, Meurs and Pausewang wanted to get into wholesaling, so they entered as late applicants in a Sydney trade fair with just two weeks to prepare. Commenting on that first trade fair, Martino told Dynamic Business; "To our amazement the reaction we got was overwhelming so we thought, well we're onto something here." The Smiggle team then recruited a wholesale manager, allowing the wholesaling and retailing arms of the new business to grow in tandem. In March 2003, Smiggle opened its first retail outlet on Chapel Street, South Yarra, a famous shopping, dining and entertainment precinct within inner-Melbourne. "We branded our product very quickly from the early days, and we did that simply by choosing where we sat our stores," adds Martino. "We sat down as a team and worked out where we felt we needed to chase the sites and set up the original Smiggle stores. Given we're all Melbourne people and it's the city we know best, we purposely chose our sites in Melbourne close to schools, private girls schools and areas where we felt we could easily brand the product. But we realised for the retail aspect to grow we needed many sites," she explains. "So from South Yarra we opened [the second outlet at] Westfield Southland, which was our very first centre store. We then opened Brighton, Melbourne Central, Hawthorn and so on." In July 2007, the Just Group acquired the chain for a reported $29 million, making it the seventh brand they acquired - along with Just Jeans, Jay Jays, Portmans, Jacqui E, Dotti, and Peter Alexander Sleepwear - and the first outside fashion retailing. The Managing Director of the Just Group, Jason Murray said; "While it is our first move outside apparel, it is an ideal fit with our existing brands, infrastructure and target demographic, and is consistent with our stated aim of acquiring fashion-based retail assets that are relatively immature". At that stage, Smiggle consisted of 3 street-side stores and 15 shopping centre locations (11 in Melbourne, 5 in Sydney, and 2 in Brisbane), with limited wholesale distribution to 80 Australia Post outlets and Smiggle-branded stands within Myer department stores. In August 2008, Solomon Lew's public company vehicle, Premier Investments, took over Just Group for $810 million, delisting the public company from the Australian Securities Exchange. In December 2008, Smiggle opened its first overseas store in New Zealand. In March 2009, Smiggle was the subject of national controversy when they commenced selling voodoo doll pencil cases which included a space to place a small photo, complete with accompanying black and red heart-shaped pins to stick into the doll-shaped item. The product was blamed for one case involving a 13-year-old girl being bullied by other school pupils using it. "Kids Free 2B Kids" lobby group director Julie Gale told the media, "I think it's typical lack of awareness from retailers... just thinking it's a cute idea not really thinking it through," adding, "It's just not appropriate." A week later Smiggle withdrew the pencil cases from shelves, leaving the chain's Manager for Retail Operations, Kate Martino to write, "It was certainly never our intention to have our product used in a negative manner." As of September 2009, the chain had 65 stores located across Australia. In April 2010, The Just Group and Lagardère Group's Asia Pacific subsidiary, LS Travel Retail, announced the company had licensed the Smiggle brand in order to open three travel retail outlets at Melbourne Airport, Adelaide Airport and Gold Coast Airport, with the option to open more in the Asia Pacific region. They have since opened another store in Melbourne Airport and one in Cairns Airport. In September 2010, Smiggle was bestowed with the Australia Retailers Association's Retailer of the Year at the annual Australian Retail Awards. In April 2011, Smiggle expanded into Singapore with its first shop opening in Plaza Singapura, closely followed by another outlet within Lot One. As of June 2013, the Singaporean network has grown to a total of 14 stores. The Just Group announced that eight out of the top ten most profitable Smiggle stores were located in Singapore, adding that they were also looking for new Asian retail locations in Japan, Malaysia and Indonesia to open in 2013. However, by September 2013, Premier Investments admitted that after further examination of the Japanese market, Smiggle's possible expansion there was unlikely because its target market was "already saturated." In mid-2012, it was announced that Smiggle's sales grew by 14% to A$78.3 million in the 52 weeks (a year) to 28 July 2012. In October 2012, Smiggle's store count consisted; 100 stores across Australia, 23 in New Zealand, and 13 in Singapore. In mid-2013, the New Zealand Herald found after one visit to Willowbank School that most children have stationery bought from Smiggle. One boy said, "the rubbers don't really work. [But they come in quirky shapes and colours and] smell nice". Another student admitted that the products are expensive - "[$11 for a pencil case. No better than the one] my mum bought at the $2 shop for $2." However, the products are so highly prized that some children leave them at home in case they get stolen. At that time, John Addis, a director at Intelligent Investor, warned potential investors in a Sydney Morning Herald piece that, "Smiggle has 'fad' written all over it. 'Hot' brands tend to cool." Adding he "wouldn't want to bet on the chain's long-term durability." In August 2013, the company instructed property agents to search for suitable locations in the south-east of the United Kingdom in order to open five to six initial test stores in the 2014 fiscal year. The first store opened in February 2014 within Westfield Stratford City breaking the chain's one-day sales record, previously held by the first Singaporean store. Smiggle Group General Manager, John Cheston said he hopes to reach the 200-250 store target in four to five years, adding that the UK will "unquestionably" be the retailer's biggest market globally. That month it was also reported that Smiggle's sales grew a further 18.1% in financial year, 2012/13. In October 2013, Smiggle had 150 stores in Australia; 23 in New Zealand; and 17 in Singapore. In 2016, Smiggle opened its first store in the Republic of Ireland in Dundrum. In 2017 stores are planned for Dublin City, Cork City and Limerick. In October 2017, Smiggle opened new store at the Trafford Centre, its 110th UK store. In the same month Smiggle added jewellery to its product line-up. As of January 2018, Smiggle has 138 stores open in the UK, rising from 42 in January 2016. Style and products Smiggle is known for its innovative design and use of colour. It has been credited with filling a gap in the Australian stationery market for "fashion-forward, bold stationery". Products from Smiggle come in various bright colours which are generally targeted at children and other young demographics. The brand features five key colour areas - purple, blue, pink, green, white, black and the newly introduced colour, orange. But some products can deviate from this, containing a wide variety of colours, and stocked away from the store's bloc-colour arrangements. Smiggle's website and stores mainly focus on selling stationery, with other categories including; bags, wallets, and other travel accessories; food and drink containers; hard and soft pencil cases; various watches, slap bands, bracelets, necklaces, lanyards, and badges; novelty games and party accessories; speaker cases and speakers, computer tablet, laptop and mobile phone cases, headphones, alarm clocks, and booklights; diaries; and various gift packs. In the past, the chain has also sold other items such as USBs and USB hubs - the latter of which are shaped as octopuses or dinosaurs - and luna lights. For Smiggle's tenth birthday in February 2013, they commenced selling a Limited Edition Birthday range, highlighting favourite designs from the preceding ten years. John Cheston, General Manager of Smiggle said, "Looking back over the last ten years, we have chosen our fans' most popular items and recreated them in an array of bold colours. Also, to celebrate our birthday, we thought it was only fitting to create a limited range of party products for our fans to enjoy, so they can celebrate with us." References External links Official website Official British website Official Republic of Ireland website The Just Group: Smiggle LS Travel Retail: Smiggle Companies based in Melbourne Office supply companies of Australia Office supply companies of New Zealand Retail companies established in 2003 2007 mergers and acquisitions 2003 establishments in Australia
```smalltalk using Microsoft.CodeAnalysis; namespace Roslynator.CSharp.Analysis.Documentation; internal abstract class ElementInfo<TNode> where TNode : SyntaxNode { protected ElementInfo(TNode node, int insertIndex, NewLinePosition newLinePosition) { Node = node; InsertIndex = insertIndex; NewLinePosition = newLinePosition; } public abstract string Name { get; } public TNode Node { get; } public int InsertIndex { get; } public NewLinePosition NewLinePosition { get; } } ```
The Calais Branch is a mothballed railroad line in Maine that was operated by the Maine Central Railroad Company (MEC). The Calais Branch is long and connects Brewer to Calais. It was constructed in 1898 and carried freight and passengers over the years. Passenger service was discontinued in 1957 and freight service was discontinued over the majority of the western end of the line in 1984. The line also includes a spur to Eastport which joins the Calais Branch at Ayers Junction. History The Calais Railway was chartered in 1832 as one of the first railway charters granted by the state of Maine. Construction started in 1835. The company was reorganized as the Calais Railroad in 1838 and opened a railway from Calais to Salmon Falls in 1839. Horses pulled cars over the railway until it was abandoned in 1841. The railway was re-activated and extended to Baring in 1852 as the Calais & Baring Railroad. Lewy's Island Railroad was chartered in 1854, and extended the railway from Baring through New Brunswick to Princeton in 1857. The railway was reorganized as the Saint Croix & Penobscot Railroad (StC&P) in 1870. The Washington County Railroad was chartered in 1893 to take control of StC&P and connect it to MEC's Bar Harbor branch at Washington Junction. The Washington County Railroad was completed in 1898, and became the Calais branch in 1911 after MEC gained controlling stock interest in 1904. The Calais Branch was the longest of three MEC Eastern Division branches converging near Bangor. Trains leaving Bangor for Calais first traveled over the Bar Harbor branch. The Calais branch was considered to include the Bar Harbor branch after passenger service to Mount Desert Ferry was discontinued in 1937, and the first from Bangor to Brewer Junction have recently been considered part of the Bucksport branch. Route Milepost 0: Bangor Milepost 1.2: Brewer Junction with the Bucksport branch Milepost 10.5: Holden Milepost 17.3: Green Lake Milepost 29.1: Ellsworth Milepost 31.5: Washington Junction with the branch to Mount Desert Ferry Milepost 40.8: Franklin Milepost 55.8: Unionville Milepost 60.3: Cherryfield Milepost 66.1: Harrington Milepost 69.9: Columbia Milepost 77.2: Jonesboro Milepost 84.8: Whitneyville Milepost 88.7: Machias Milepost 110.6: Dennysville Milepost 117.4: Ayers Junction with the Eastport branch Milepost 130.0: Saint Croix Junction with the Princeton branch to Woodland Milepost 133.5: Calais Decline The last passenger train from Bangor to Calais operated on 25 November 1957. Diesel-era freight service often used ALCO RS-2s, RS-3s and RS-11s between Bangor and Calais. A GE 44-ton switcher working out of Calais over the light rail of the Eastport branch was believed to be the last use of that model locomotive in regularly scheduled freight service on a class I railroad until the Eastport branch was abandoned in 1978. The paper mill at Woodland provided most of the traffic in the later years of operation. The mill originated or terminated over 6,000 carloads in 1973, while cumulative pulpwood and lumber loading at Ellsworth, Franklin, Cherryfield, Columbia Falls, Whitneyville, Machias, and Dennysville contributed less half that volume. Current The Brewer–St. Croix Junction segment was abandoned in 1987 and later acquired by the Maine Department of Transportation (MaineDOT). The Downeast Scenic Railroad leased the Brewer–Washington Junction segment in 2006 for operation as a heritage railway between Ellsworth and Green Lake. The Washington Junction–Ayers Junction segment was dismantled in 2011; its right of way is used for an interim rail trail, the Down East Sunrise Trail. An isolated eastern section of the Calais Branch is in operation between St. Croix Junction and Milltown, where there is a connection with the New Brunswick Southern Railway at the Milltown Railway Bridge into Canada. At St. Croix Junction, the Woodland Spur continues northwest to Woodland, running through New Brunswick, Canada for several miles along the way. Together, these operable sections of the Calais Branch and the Woodland Spur measure in length. The Woodland Spur is the only MEC trackage that crossed into New Brunswick. The spur was owned and operated by Pan Am Railways until being sold in 2012 to Woodland Rail; Woodland Rail has now contracted operation to New Brunswick Southern Railway. References Maine Central Railroad Maine logging railroads Rail infrastructure in New Brunswick Pan Am Railways Calais, Maine
Wansdyke was a county constituency represented in the House of Commons of the Parliament of the United Kingdom. It elected one Member of Parliament (MP) by the first past the post system of election. The constituency was created for the 1983 general election, and abolished at the 2010 general election. History Until 1997, it was a safe seat for the Conservative Party. It then became a Labour-held marginal until its abolition. Boundaries 1983–1997: The District of Wansdyke wards of Bathampton, Batheaston, Bathford, Camerton, Charlcombe, Freshford, Hinton Charterhouse, Keynsham East, Keynsham North, Keynsham South, Keynsham West, Midsomer Norton North, Midsomer Norton Redfield, Newton St Loe, Peasedown St John, Radstock, Saltford, and Westfield, and the District of Kingswood wards of Badminton, Bitton North Common, Bitton Oldland Common, Bitton South, Blackhorse, Bromley Heath, Hanham Abbots East, Hanham Abbots West, Oldland Cadbury Heath, Oldland Longwell Green, Siston, and Springfield. 1997–2010: The District of Wansdyke wards of Cameley, Camerton, Chew Magna, Chew Stoke, Clutton, Compton Dando, Farmborough, Harptrees, High Littleton, Hinton Charterhouse, Keynsham East, Keynsham North, Keynsham South, Keynsham West, Midsomer Norton North, Midsomer Norton Redfield, Newton St Loe, Paulton, Peasedown St John, Publow, Radstock, Saltford, Stowey Sutton, Timsbury, and Westfield, and the Borough of Kingswood wards of Bitton North Common, Bitton Oldland Common, Bitton South, Hanham Abbots East, and Hanham Abbots West. From 1997, Wansdyke covered the part of Bath and North East Somerset not in the Bath constituency. It also contained six wards or parts of wards from South Gloucestershire Council. It was named after the former Wansdyke district, itself named after the Wansdyke, a historical earthwork. The constituency was located between the cities of Bristol and Bath, including the towns of Keynsham, Midsomer Norton, Radstock and Saltford, as well as the Chew Valley to the south of Bristol. It also covered parts of South Gloucestershire to the east of Bristol, including Bitton, Longwell Green and Oldland Common. At the 2010 general election the seat was replaced with a new North East Somerset constituency. The parts in South Gloucestershire were transferred to the Kingswood constituency. Members of Parliament Elections Elections in the 2000s Elections in the 1990s Elections in the 1980s See also List of parliamentary constituencies in Avon References Constituencies of the Parliament of the United Kingdom established in 1983 Constituencies of the Parliament of the United Kingdom disestablished in 2010 Parliamentary constituencies in South West England (historic) Politics of Bath and North East Somerset Parliamentary constituencies in Somerset (historic)