blob_id
stringlengths 40
40
| directory_id
stringlengths 40
40
| path
stringlengths 3
616
| content_id
stringlengths 40
40
| detected_licenses
listlengths 0
112
| license_type
stringclasses 2
values | repo_name
stringlengths 5
115
| snapshot_id
stringlengths 40
40
| revision_id
stringlengths 40
40
| branch_name
stringclasses 777
values | visit_date
timestamp[us]date 2015-08-06 10:31:46
2023-09-06 10:44:38
| revision_date
timestamp[us]date 1970-01-01 02:38:32
2037-05-03 13:00:00
| committer_date
timestamp[us]date 1970-01-01 02:38:32
2023-09-06 01:08:06
| github_id
int64 4.92k
681M
⌀ | star_events_count
int64 0
209k
| fork_events_count
int64 0
110k
| gha_license_id
stringclasses 22
values | gha_event_created_at
timestamp[us]date 2012-06-04 01:52:49
2023-09-14 21:59:50
⌀ | gha_created_at
timestamp[us]date 2008-05-22 07:58:19
2023-08-21 12:35:19
⌀ | gha_language
stringclasses 149
values | src_encoding
stringclasses 26
values | language
stringclasses 1
value | is_vendor
bool 2
classes | is_generated
bool 2
classes | length_bytes
int64 3
10.2M
| extension
stringclasses 188
values | content
stringlengths 3
10.2M
| authors
listlengths 1
1
| author_id
stringlengths 1
132
|
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
424526fe4c6b2ac3f5a89f36e3f865f5c458509b | 9d2bafb07baf657c447d09a6bc5a6e551ba1806d | /ros2_ws/build/ros2srv/build/lib/ros2srv/api/__init__.py | c1fba609b68266f574397fa8a54e3448c92a64c2 | []
| no_license | weidafan/ros2_dds | f65c4352899a72e1ade662b4106e822d80a99403 | c0d9e6ff97cb7cc822fe25a62c0b1d56f7d12c59 | refs/heads/master | 2021-09-05T20:47:49.088161 | 2018-01-30T21:03:59 | 2018-01-30T21:03:59 | 119,592,597 | 1 | 0 | null | null | null | null | UTF-8 | Python | false | false | 2,818 | py | # Copyright 2017 Open Source Robotics Foundation, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import os
from ament_index_python import get_resource
from ament_index_python import get_resources
from ament_index_python import has_resource
def get_all_service_types():
all_service_types = {}
for package_name in get_resources('rosidl_interfaces'):
service_types = get_service_types(package_name)
if service_types:
all_service_types[package_name] = service_types
return all_service_types
def get_service_types(package_name):
if not has_resource('packages', package_name):
raise LookupError('Unknown package name')
try:
content, _ = get_resource('rosidl_interfaces', package_name)
except LookupError:
return []
interface_names = content.splitlines()
# TODO(dirk-thomas) this logic should come from a rosidl related package
return [n[:-4] for n in interface_names if n.endswith('.srv')]
def get_service_path(package_name, service_name):
service_types = get_service_types(package_name)
if service_name not in service_types:
raise LookupError('Unknown service name')
prefix_path = has_resource('packages', package_name)
# TODO(dirk-thomas) this logic should come from a rosidl related package
return os.path.join(
prefix_path, 'share', package_name, 'srv', service_name + '.srv')
def service_package_name_completer(**kwargs):
"""Callable returning a list of package names which contain services."""
return get_all_service_types().keys()
def service_type_completer(**kwargs):
"""Callable returning a list of service types."""
service_types = []
for package_name, service_names in get_all_service_types().items():
for service_name in service_names:
service_types.append(
'{package_name}/{service_name}'.format_map(locals()))
return service_types
class ServiceNameCompleter(object):
"""Callable returning a list of service names within a package."""
def __init__(self, *, package_name_key=None):
self.package_name_key = package_name_key
def __call__(self, prefix, parsed_args, **kwargs):
package_name = getattr(parsed_args, self.package_name_key)
return get_service_types(package_name)
| [
"[email protected]"
]
| |
34a1bc435f15323b65afae54e614c78de3b10f20 | 4012f290d83ae7f4c09d7440f26d2acd7e63efbe | /1165.py | 6450daed28443ca9a0500ef96a76167a16f51d03 | []
| no_license | jinaur/codeup | ffc2d0fdf73892c1f46d80021ad8f4c1293c9e2e | 5f75ace909e2b3151171932cc3ee9f3c49dd46d9 | refs/heads/master | 2023-04-15T07:42:06.244806 | 2021-04-25T13:59:42 | 2021-04-25T13:59:42 | 277,760,813 | 1 | 0 | null | null | null | null | UTF-8 | Python | false | false | 115 | py | a, b = list(map(int, input().split()))
while True :
if a >= 90 :
break
a += 5
b += 1
print(b) | [
"[email protected]"
]
| |
39490f513add0e0a5c8110a317483eff540be3e1 | e84e699767444315ac2096b3ece1659ba2873ae3 | /radio/templatetags/show_stars.py | bd6749ed39e9404bd4b450a2938de695e41ca7a1 | [
"BSD-3-Clause"
]
| permissive | ftrain/django-ftrain | 1e6ac41211dba5e69eabf1a4a85c2aec0c048959 | af535fda8e113e9dcdac31216852e35a01d3b950 | refs/heads/master | 2021-01-21T01:46:53.957091 | 2009-12-28T15:31:26 | 2009-12-28T15:31:26 | 259,071 | 2 | 0 | null | null | null | null | UTF-8 | Python | false | false | 2,808 | py | import math
from django.template import Library, Node, TemplateSyntaxError, VariableDoesNotExist, resolve_variable
from django.conf import settings
register = Library()
IMG_TEMPLATE = '<img src="%s" alt="%s"/>'
PATH_TO_WHOLE_STAR = IMG_TEMPLATE % (settings.MEDIA_URL + 'e/stars/star.png', "Whole Star")
PATH_TO_THREE_QUARTER_STAR = IMG_TEMPLATE % (settings.MEDIA_URL + 'e/stars/three-quarter.png', "3/4 Star")
PATH_TO_HALF_STAR = IMG_TEMPLATE % (settings.MEDIA_URL + 'e/stars/half.png', "1/2 Star")
PATH_TO_QUARTER_STAR = IMG_TEMPLATE % (settings.MEDIA_URL + 'e/stars/quarter.png', "1/4 Star")
PATH_TO_BLANK_STAR = IMG_TEMPLATE % (settings.MEDIA_URL + 'e/stars/blank.png', "Empty Star")
class ShowStarsNode(Node):
""" Default rounding is to the whole unit """
def __init__(self, context_var, total_stars, round_to):
self.context_var = context_var
self.total_stars = int(total_stars)
self.round_to = round_to.lower()
def render(self, context):
try:
stars = resolve_variable(self.context_var, context)
except VariableDoesNotExist:
return ''
if self.round_to == "half":
stars = round(stars*2)/2
elif self.round_to == "quarter":
stars = round(stars*4)/4
else:
stars = round(stars)
fraction, integer = math.modf(stars)
integer = int(integer)
output = []
for whole_star in range(integer):
output.append(PATH_TO_WHOLE_STAR)
if self.round_to == 'half' and fraction == .5:
output.append(PATH_TO_HALF_STAR)
elif self.round_to == 'quarter':
if fraction == .25:
output.append(PATH_TO_QUARTER_STAR)
elif fraction == .5:
output.append(PATH_TO_HALF_STAR)
elif fraction == .75:
output.append(PATH_TO_THREE_QUARTER_STAR)
if fraction:
integer += 1
blanks = int(self.total_stars - integer)
for blank_star in range(blanks):
output.append(PATH_TO_BLANK_STAR)
return "".join(output)
""" show_stars context_var of 5 round to half """
def do_show_stars(parser, token):
args = token.contents.split()
if len(args) != 7:
raise TemplateSyntaxError('%s tag requires exactly six arguments' % args[0])
if args[2] != 'of':
raise TemplateSyntaxError("second argument to '%s' tag must be 'of'" % args[0])
if args[4] != 'round':
raise TemplateSyntaxError("fourth argument to '%s' tag must be 'round'" % args[0])
if args[5] != 'to':
raise TemplateSyntaxError("fourth argument to '%s' tag must be 'to'" % args[0])
return ShowStarsNode(args[1], args[3], args[6])
register.tag('show_stars', do_show_stars)
| [
"[email protected]"
]
| |
a789a909f89e7fc0ec0c3ce4cbafd1e65fa6a22e | 113ef54e42a047e9e631b557012411ecfac72c47 | /siphon/web/apps/submissions/migrations/0006_auto_20160224_0639.py | 8a5b27e311ba3669f3c194106114013581a4ae54 | [
"MIT"
]
| permissive | siphoncode/siphon-web | 77bd241d5f3912ee78155c2b71b75fb59e1b5e27 | c398427dc1b73f70b94cd2f60a13e4d26c71610e | refs/heads/master | 2021-01-19T21:48:15.253451 | 2016-08-04T16:53:18 | 2016-08-04T16:53:18 | null | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 464 | py | # -*- coding: utf-8 -*-
# Generated by Django 1.9.2 on 2016-02-24 06:39
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('submissions', '0005_auto_20160224_0629'),
]
operations = [
migrations.AlterField(
model_name='submission',
name='display_name',
field=models.CharField(max_length=32),
),
]
| [
"[email protected]"
]
| |
1623370bd8827bb2e17d37abd93f5adbe40eac9a | 82b946da326148a3c1c1f687f96c0da165bb2c15 | /sdk/python/pulumi_azure_native/synapse/v20190601preview/outputs.py | 9b9be8c3152a42585cb9ee4150575f664e3c4fa2 | [
"BSD-3-Clause",
"Apache-2.0"
]
| permissive | morrell/pulumi-azure-native | 3916e978382366607f3df0a669f24cb16293ff5e | cd3ba4b9cb08c5e1df7674c1c71695b80e443f08 | refs/heads/master | 2023-06-20T19:37:05.414924 | 2021-07-19T20:57:53 | 2021-07-19T20:57:53 | 387,815,163 | 0 | 0 | Apache-2.0 | 2021-07-20T14:18:29 | 2021-07-20T14:18:28 | null | UTF-8 | Python | false | false | 140,125 | py | # coding=utf-8
# *** WARNING: this file was generated by the Pulumi SDK Generator. ***
# *** Do not edit by hand unless you're certain you know what you are doing! ***
import warnings
import pulumi
import pulumi.runtime
from typing import Any, Mapping, Optional, Sequence, Union, overload
from ... import _utilities
from . import outputs
from ._enums import *
__all__ = [
'AutoPausePropertiesResponse',
'AutoScalePropertiesResponse',
'CmdkeySetupResponse',
'ComponentSetupResponse',
'CustomerManagedKeyDetailsResponse',
'DataLakeStorageAccountDetailsResponse',
'DynamicExecutorAllocationResponse',
'EncryptionDetailsResponse',
'EntityReferenceResponse',
'EnvironmentVariableSetupResponse',
'IntegrationRuntimeComputePropertiesResponse',
'IntegrationRuntimeCustomSetupScriptPropertiesResponse',
'IntegrationRuntimeDataFlowPropertiesResponse',
'IntegrationRuntimeDataProxyPropertiesResponse',
'IntegrationRuntimeSsisCatalogInfoResponse',
'IntegrationRuntimeSsisPropertiesResponse',
'IntegrationRuntimeVNetPropertiesResponse',
'LibraryInfoResponse',
'LibraryRequirementsResponse',
'LinkedIntegrationRuntimeKeyAuthorizationResponse',
'LinkedIntegrationRuntimeRbacAuthorizationResponse',
'LinkedIntegrationRuntimeResponse',
'ManagedIdentityResponse',
'ManagedIntegrationRuntimeErrorResponse',
'ManagedIntegrationRuntimeNodeResponse',
'ManagedIntegrationRuntimeOperationResultResponse',
'ManagedIntegrationRuntimeResponse',
'ManagedIntegrationRuntimeStatusResponse',
'ManagedVirtualNetworkReferenceResponse',
'ManagedVirtualNetworkSettingsResponse',
'PrivateEndpointConnectionForPrivateLinkHubBasicResponse',
'PrivateEndpointConnectionResponse',
'PrivateEndpointResponse',
'PrivateLinkServiceConnectionStateResponse',
'PurviewConfigurationResponse',
'SecureStringResponse',
'SelfHostedIntegrationRuntimeNodeResponse',
'SelfHostedIntegrationRuntimeResponse',
'SelfHostedIntegrationRuntimeStatusResponse',
'SkuResponse',
'SqlPoolVulnerabilityAssessmentRuleBaselineItemResponse',
'SsisEnvironmentReferenceResponse',
'SsisEnvironmentResponse',
'SsisFolderResponse',
'SsisPackageResponse',
'SsisParameterResponse',
'SsisProjectResponse',
'SsisVariableResponse',
'VirtualNetworkProfileResponse',
'VulnerabilityAssessmentRecurringScansPropertiesResponse',
'WorkspaceKeyDetailsResponse',
'WorkspaceRepositoryConfigurationResponse',
]
@pulumi.output_type
class AutoPausePropertiesResponse(dict):
"""
Auto-pausing properties of a Big Data pool powered by Apache Spark
"""
@staticmethod
def __key_warning(key: str):
suggest = None
if key == "delayInMinutes":
suggest = "delay_in_minutes"
if suggest:
pulumi.log.warn(f"Key '{key}' not found in AutoPausePropertiesResponse. Access the value via the '{suggest}' property getter instead.")
def __getitem__(self, key: str) -> Any:
AutoPausePropertiesResponse.__key_warning(key)
return super().__getitem__(key)
def get(self, key: str, default = None) -> Any:
AutoPausePropertiesResponse.__key_warning(key)
return super().get(key, default)
def __init__(__self__, *,
delay_in_minutes: Optional[int] = None,
enabled: Optional[bool] = None):
"""
Auto-pausing properties of a Big Data pool powered by Apache Spark
:param int delay_in_minutes: Number of minutes of idle time before the Big Data pool is automatically paused.
:param bool enabled: Whether auto-pausing is enabled for the Big Data pool.
"""
if delay_in_minutes is not None:
pulumi.set(__self__, "delay_in_minutes", delay_in_minutes)
if enabled is not None:
pulumi.set(__self__, "enabled", enabled)
@property
@pulumi.getter(name="delayInMinutes")
def delay_in_minutes(self) -> Optional[int]:
"""
Number of minutes of idle time before the Big Data pool is automatically paused.
"""
return pulumi.get(self, "delay_in_minutes")
@property
@pulumi.getter
def enabled(self) -> Optional[bool]:
"""
Whether auto-pausing is enabled for the Big Data pool.
"""
return pulumi.get(self, "enabled")
@pulumi.output_type
class AutoScalePropertiesResponse(dict):
"""
Auto-scaling properties of a Big Data pool powered by Apache Spark
"""
@staticmethod
def __key_warning(key: str):
suggest = None
if key == "maxNodeCount":
suggest = "max_node_count"
elif key == "minNodeCount":
suggest = "min_node_count"
if suggest:
pulumi.log.warn(f"Key '{key}' not found in AutoScalePropertiesResponse. Access the value via the '{suggest}' property getter instead.")
def __getitem__(self, key: str) -> Any:
AutoScalePropertiesResponse.__key_warning(key)
return super().__getitem__(key)
def get(self, key: str, default = None) -> Any:
AutoScalePropertiesResponse.__key_warning(key)
return super().get(key, default)
def __init__(__self__, *,
enabled: Optional[bool] = None,
max_node_count: Optional[int] = None,
min_node_count: Optional[int] = None):
"""
Auto-scaling properties of a Big Data pool powered by Apache Spark
:param bool enabled: Whether automatic scaling is enabled for the Big Data pool.
:param int max_node_count: The maximum number of nodes the Big Data pool can support.
:param int min_node_count: The minimum number of nodes the Big Data pool can support.
"""
if enabled is not None:
pulumi.set(__self__, "enabled", enabled)
if max_node_count is not None:
pulumi.set(__self__, "max_node_count", max_node_count)
if min_node_count is not None:
pulumi.set(__self__, "min_node_count", min_node_count)
@property
@pulumi.getter
def enabled(self) -> Optional[bool]:
"""
Whether automatic scaling is enabled for the Big Data pool.
"""
return pulumi.get(self, "enabled")
@property
@pulumi.getter(name="maxNodeCount")
def max_node_count(self) -> Optional[int]:
"""
The maximum number of nodes the Big Data pool can support.
"""
return pulumi.get(self, "max_node_count")
@property
@pulumi.getter(name="minNodeCount")
def min_node_count(self) -> Optional[int]:
"""
The minimum number of nodes the Big Data pool can support.
"""
return pulumi.get(self, "min_node_count")
@pulumi.output_type
class CmdkeySetupResponse(dict):
"""
The custom setup of running cmdkey commands.
"""
@staticmethod
def __key_warning(key: str):
suggest = None
if key == "targetName":
suggest = "target_name"
elif key == "userName":
suggest = "user_name"
if suggest:
pulumi.log.warn(f"Key '{key}' not found in CmdkeySetupResponse. Access the value via the '{suggest}' property getter instead.")
def __getitem__(self, key: str) -> Any:
CmdkeySetupResponse.__key_warning(key)
return super().__getitem__(key)
def get(self, key: str, default = None) -> Any:
CmdkeySetupResponse.__key_warning(key)
return super().get(key, default)
def __init__(__self__, *,
password: 'outputs.SecureStringResponse',
target_name: Any,
type: str,
user_name: Any):
"""
The custom setup of running cmdkey commands.
:param 'SecureStringResponse' password: The password of data source access.
:param Any target_name: The server name of data source access.
:param str type: The type of custom setup.
Expected value is 'CmdkeySetup'.
:param Any user_name: The user name of data source access.
"""
pulumi.set(__self__, "password", password)
pulumi.set(__self__, "target_name", target_name)
pulumi.set(__self__, "type", 'CmdkeySetup')
pulumi.set(__self__, "user_name", user_name)
@property
@pulumi.getter
def password(self) -> 'outputs.SecureStringResponse':
"""
The password of data source access.
"""
return pulumi.get(self, "password")
@property
@pulumi.getter(name="targetName")
def target_name(self) -> Any:
"""
The server name of data source access.
"""
return pulumi.get(self, "target_name")
@property
@pulumi.getter
def type(self) -> str:
"""
The type of custom setup.
Expected value is 'CmdkeySetup'.
"""
return pulumi.get(self, "type")
@property
@pulumi.getter(name="userName")
def user_name(self) -> Any:
"""
The user name of data source access.
"""
return pulumi.get(self, "user_name")
@pulumi.output_type
class ComponentSetupResponse(dict):
"""
The custom setup of installing 3rd party components.
"""
@staticmethod
def __key_warning(key: str):
suggest = None
if key == "componentName":
suggest = "component_name"
elif key == "licenseKey":
suggest = "license_key"
if suggest:
pulumi.log.warn(f"Key '{key}' not found in ComponentSetupResponse. Access the value via the '{suggest}' property getter instead.")
def __getitem__(self, key: str) -> Any:
ComponentSetupResponse.__key_warning(key)
return super().__getitem__(key)
def get(self, key: str, default = None) -> Any:
ComponentSetupResponse.__key_warning(key)
return super().get(key, default)
def __init__(__self__, *,
component_name: str,
type: str,
license_key: Optional['outputs.SecureStringResponse'] = None):
"""
The custom setup of installing 3rd party components.
:param str component_name: The name of the 3rd party component.
:param str type: The type of custom setup.
Expected value is 'ComponentSetup'.
:param 'SecureStringResponse' license_key: The license key to activate the component.
"""
pulumi.set(__self__, "component_name", component_name)
pulumi.set(__self__, "type", 'ComponentSetup')
if license_key is not None:
pulumi.set(__self__, "license_key", license_key)
@property
@pulumi.getter(name="componentName")
def component_name(self) -> str:
"""
The name of the 3rd party component.
"""
return pulumi.get(self, "component_name")
@property
@pulumi.getter
def type(self) -> str:
"""
The type of custom setup.
Expected value is 'ComponentSetup'.
"""
return pulumi.get(self, "type")
@property
@pulumi.getter(name="licenseKey")
def license_key(self) -> Optional['outputs.SecureStringResponse']:
"""
The license key to activate the component.
"""
return pulumi.get(self, "license_key")
@pulumi.output_type
class CustomerManagedKeyDetailsResponse(dict):
"""
Details of the customer managed key associated with the workspace
"""
def __init__(__self__, *,
status: str,
key: Optional['outputs.WorkspaceKeyDetailsResponse'] = None):
"""
Details of the customer managed key associated with the workspace
:param str status: The customer managed key status on the workspace
:param 'WorkspaceKeyDetailsResponse' key: The key object of the workspace
"""
pulumi.set(__self__, "status", status)
if key is not None:
pulumi.set(__self__, "key", key)
@property
@pulumi.getter
def status(self) -> str:
"""
The customer managed key status on the workspace
"""
return pulumi.get(self, "status")
@property
@pulumi.getter
def key(self) -> Optional['outputs.WorkspaceKeyDetailsResponse']:
"""
The key object of the workspace
"""
return pulumi.get(self, "key")
@pulumi.output_type
class DataLakeStorageAccountDetailsResponse(dict):
"""
Details of the data lake storage account associated with the workspace
"""
@staticmethod
def __key_warning(key: str):
suggest = None
if key == "accountUrl":
suggest = "account_url"
if suggest:
pulumi.log.warn(f"Key '{key}' not found in DataLakeStorageAccountDetailsResponse. Access the value via the '{suggest}' property getter instead.")
def __getitem__(self, key: str) -> Any:
DataLakeStorageAccountDetailsResponse.__key_warning(key)
return super().__getitem__(key)
def get(self, key: str, default = None) -> Any:
DataLakeStorageAccountDetailsResponse.__key_warning(key)
return super().get(key, default)
def __init__(__self__, *,
account_url: Optional[str] = None,
filesystem: Optional[str] = None):
"""
Details of the data lake storage account associated with the workspace
:param str account_url: Account URL
:param str filesystem: Filesystem name
"""
if account_url is not None:
pulumi.set(__self__, "account_url", account_url)
if filesystem is not None:
pulumi.set(__self__, "filesystem", filesystem)
@property
@pulumi.getter(name="accountUrl")
def account_url(self) -> Optional[str]:
"""
Account URL
"""
return pulumi.get(self, "account_url")
@property
@pulumi.getter
def filesystem(self) -> Optional[str]:
"""
Filesystem name
"""
return pulumi.get(self, "filesystem")
@pulumi.output_type
class DynamicExecutorAllocationResponse(dict):
"""
Dynamic Executor Allocation Properties
"""
def __init__(__self__, *,
enabled: Optional[bool] = None):
"""
Dynamic Executor Allocation Properties
:param bool enabled: Indicates whether Dynamic Executor Allocation is enabled or not.
"""
if enabled is not None:
pulumi.set(__self__, "enabled", enabled)
@property
@pulumi.getter
def enabled(self) -> Optional[bool]:
"""
Indicates whether Dynamic Executor Allocation is enabled or not.
"""
return pulumi.get(self, "enabled")
@pulumi.output_type
class EncryptionDetailsResponse(dict):
"""
Details of the encryption associated with the workspace
"""
@staticmethod
def __key_warning(key: str):
suggest = None
if key == "doubleEncryptionEnabled":
suggest = "double_encryption_enabled"
if suggest:
pulumi.log.warn(f"Key '{key}' not found in EncryptionDetailsResponse. Access the value via the '{suggest}' property getter instead.")
def __getitem__(self, key: str) -> Any:
EncryptionDetailsResponse.__key_warning(key)
return super().__getitem__(key)
def get(self, key: str, default = None) -> Any:
EncryptionDetailsResponse.__key_warning(key)
return super().get(key, default)
def __init__(__self__, *,
double_encryption_enabled: bool,
cmk: Optional['outputs.CustomerManagedKeyDetailsResponse'] = None):
"""
Details of the encryption associated with the workspace
:param bool double_encryption_enabled: Double Encryption enabled
:param 'CustomerManagedKeyDetailsResponse' cmk: Customer Managed Key Details
"""
pulumi.set(__self__, "double_encryption_enabled", double_encryption_enabled)
if cmk is not None:
pulumi.set(__self__, "cmk", cmk)
@property
@pulumi.getter(name="doubleEncryptionEnabled")
def double_encryption_enabled(self) -> bool:
"""
Double Encryption enabled
"""
return pulumi.get(self, "double_encryption_enabled")
@property
@pulumi.getter
def cmk(self) -> Optional['outputs.CustomerManagedKeyDetailsResponse']:
"""
Customer Managed Key Details
"""
return pulumi.get(self, "cmk")
@pulumi.output_type
class EntityReferenceResponse(dict):
"""
The entity reference.
"""
@staticmethod
def __key_warning(key: str):
suggest = None
if key == "referenceName":
suggest = "reference_name"
if suggest:
pulumi.log.warn(f"Key '{key}' not found in EntityReferenceResponse. Access the value via the '{suggest}' property getter instead.")
def __getitem__(self, key: str) -> Any:
EntityReferenceResponse.__key_warning(key)
return super().__getitem__(key)
def get(self, key: str, default = None) -> Any:
EntityReferenceResponse.__key_warning(key)
return super().get(key, default)
def __init__(__self__, *,
reference_name: Optional[str] = None,
type: Optional[str] = None):
"""
The entity reference.
:param str reference_name: The name of this referenced entity.
:param str type: The type of this referenced entity.
"""
if reference_name is not None:
pulumi.set(__self__, "reference_name", reference_name)
if type is not None:
pulumi.set(__self__, "type", type)
@property
@pulumi.getter(name="referenceName")
def reference_name(self) -> Optional[str]:
"""
The name of this referenced entity.
"""
return pulumi.get(self, "reference_name")
@property
@pulumi.getter
def type(self) -> Optional[str]:
"""
The type of this referenced entity.
"""
return pulumi.get(self, "type")
@pulumi.output_type
class EnvironmentVariableSetupResponse(dict):
"""
The custom setup of setting environment variable.
"""
@staticmethod
def __key_warning(key: str):
suggest = None
if key == "variableName":
suggest = "variable_name"
elif key == "variableValue":
suggest = "variable_value"
if suggest:
pulumi.log.warn(f"Key '{key}' not found in EnvironmentVariableSetupResponse. Access the value via the '{suggest}' property getter instead.")
def __getitem__(self, key: str) -> Any:
EnvironmentVariableSetupResponse.__key_warning(key)
return super().__getitem__(key)
def get(self, key: str, default = None) -> Any:
EnvironmentVariableSetupResponse.__key_warning(key)
return super().get(key, default)
def __init__(__self__, *,
type: str,
variable_name: str,
variable_value: str):
"""
The custom setup of setting environment variable.
:param str type: The type of custom setup.
Expected value is 'EnvironmentVariableSetup'.
:param str variable_name: The name of the environment variable.
:param str variable_value: The value of the environment variable.
"""
pulumi.set(__self__, "type", 'EnvironmentVariableSetup')
pulumi.set(__self__, "variable_name", variable_name)
pulumi.set(__self__, "variable_value", variable_value)
@property
@pulumi.getter
def type(self) -> str:
"""
The type of custom setup.
Expected value is 'EnvironmentVariableSetup'.
"""
return pulumi.get(self, "type")
@property
@pulumi.getter(name="variableName")
def variable_name(self) -> str:
"""
The name of the environment variable.
"""
return pulumi.get(self, "variable_name")
@property
@pulumi.getter(name="variableValue")
def variable_value(self) -> str:
"""
The value of the environment variable.
"""
return pulumi.get(self, "variable_value")
@pulumi.output_type
class IntegrationRuntimeComputePropertiesResponse(dict):
"""
The compute resource properties for managed integration runtime.
"""
@staticmethod
def __key_warning(key: str):
suggest = None
if key == "dataFlowProperties":
suggest = "data_flow_properties"
elif key == "maxParallelExecutionsPerNode":
suggest = "max_parallel_executions_per_node"
elif key == "nodeSize":
suggest = "node_size"
elif key == "numberOfNodes":
suggest = "number_of_nodes"
elif key == "vNetProperties":
suggest = "v_net_properties"
if suggest:
pulumi.log.warn(f"Key '{key}' not found in IntegrationRuntimeComputePropertiesResponse. Access the value via the '{suggest}' property getter instead.")
def __getitem__(self, key: str) -> Any:
IntegrationRuntimeComputePropertiesResponse.__key_warning(key)
return super().__getitem__(key)
def get(self, key: str, default = None) -> Any:
IntegrationRuntimeComputePropertiesResponse.__key_warning(key)
return super().get(key, default)
def __init__(__self__, *,
data_flow_properties: Optional['outputs.IntegrationRuntimeDataFlowPropertiesResponse'] = None,
location: Optional[str] = None,
max_parallel_executions_per_node: Optional[int] = None,
node_size: Optional[str] = None,
number_of_nodes: Optional[int] = None,
v_net_properties: Optional['outputs.IntegrationRuntimeVNetPropertiesResponse'] = None):
"""
The compute resource properties for managed integration runtime.
:param 'IntegrationRuntimeDataFlowPropertiesResponse' data_flow_properties: Data flow properties for managed integration runtime.
:param str location: The location for managed integration runtime. The supported regions could be found on https://docs.microsoft.com/en-us/azure/data-factory/data-factory-data-movement-activities
:param int max_parallel_executions_per_node: Maximum parallel executions count per node for managed integration runtime.
:param str node_size: The node size requirement to managed integration runtime.
:param int number_of_nodes: The required number of nodes for managed integration runtime.
:param 'IntegrationRuntimeVNetPropertiesResponse' v_net_properties: VNet properties for managed integration runtime.
"""
if data_flow_properties is not None:
pulumi.set(__self__, "data_flow_properties", data_flow_properties)
if location is not None:
pulumi.set(__self__, "location", location)
if max_parallel_executions_per_node is not None:
pulumi.set(__self__, "max_parallel_executions_per_node", max_parallel_executions_per_node)
if node_size is not None:
pulumi.set(__self__, "node_size", node_size)
if number_of_nodes is not None:
pulumi.set(__self__, "number_of_nodes", number_of_nodes)
if v_net_properties is not None:
pulumi.set(__self__, "v_net_properties", v_net_properties)
@property
@pulumi.getter(name="dataFlowProperties")
def data_flow_properties(self) -> Optional['outputs.IntegrationRuntimeDataFlowPropertiesResponse']:
"""
Data flow properties for managed integration runtime.
"""
return pulumi.get(self, "data_flow_properties")
@property
@pulumi.getter
def location(self) -> Optional[str]:
"""
The location for managed integration runtime. The supported regions could be found on https://docs.microsoft.com/en-us/azure/data-factory/data-factory-data-movement-activities
"""
return pulumi.get(self, "location")
@property
@pulumi.getter(name="maxParallelExecutionsPerNode")
def max_parallel_executions_per_node(self) -> Optional[int]:
"""
Maximum parallel executions count per node for managed integration runtime.
"""
return pulumi.get(self, "max_parallel_executions_per_node")
@property
@pulumi.getter(name="nodeSize")
def node_size(self) -> Optional[str]:
"""
The node size requirement to managed integration runtime.
"""
return pulumi.get(self, "node_size")
@property
@pulumi.getter(name="numberOfNodes")
def number_of_nodes(self) -> Optional[int]:
"""
The required number of nodes for managed integration runtime.
"""
return pulumi.get(self, "number_of_nodes")
@property
@pulumi.getter(name="vNetProperties")
def v_net_properties(self) -> Optional['outputs.IntegrationRuntimeVNetPropertiesResponse']:
"""
VNet properties for managed integration runtime.
"""
return pulumi.get(self, "v_net_properties")
@pulumi.output_type
class IntegrationRuntimeCustomSetupScriptPropertiesResponse(dict):
"""
Custom setup script properties for a managed dedicated integration runtime.
"""
@staticmethod
def __key_warning(key: str):
suggest = None
if key == "blobContainerUri":
suggest = "blob_container_uri"
elif key == "sasToken":
suggest = "sas_token"
if suggest:
pulumi.log.warn(f"Key '{key}' not found in IntegrationRuntimeCustomSetupScriptPropertiesResponse. Access the value via the '{suggest}' property getter instead.")
def __getitem__(self, key: str) -> Any:
IntegrationRuntimeCustomSetupScriptPropertiesResponse.__key_warning(key)
return super().__getitem__(key)
def get(self, key: str, default = None) -> Any:
IntegrationRuntimeCustomSetupScriptPropertiesResponse.__key_warning(key)
return super().get(key, default)
def __init__(__self__, *,
blob_container_uri: Optional[str] = None,
sas_token: Optional['outputs.SecureStringResponse'] = None):
"""
Custom setup script properties for a managed dedicated integration runtime.
:param str blob_container_uri: The URI of the Azure blob container that contains the custom setup script.
:param 'SecureStringResponse' sas_token: The SAS token of the Azure blob container.
"""
if blob_container_uri is not None:
pulumi.set(__self__, "blob_container_uri", blob_container_uri)
if sas_token is not None:
pulumi.set(__self__, "sas_token", sas_token)
@property
@pulumi.getter(name="blobContainerUri")
def blob_container_uri(self) -> Optional[str]:
"""
The URI of the Azure blob container that contains the custom setup script.
"""
return pulumi.get(self, "blob_container_uri")
@property
@pulumi.getter(name="sasToken")
def sas_token(self) -> Optional['outputs.SecureStringResponse']:
"""
The SAS token of the Azure blob container.
"""
return pulumi.get(self, "sas_token")
@pulumi.output_type
class IntegrationRuntimeDataFlowPropertiesResponse(dict):
"""
Data flow properties for managed integration runtime.
"""
@staticmethod
def __key_warning(key: str):
suggest = None
if key == "computeType":
suggest = "compute_type"
elif key == "coreCount":
suggest = "core_count"
elif key == "timeToLive":
suggest = "time_to_live"
if suggest:
pulumi.log.warn(f"Key '{key}' not found in IntegrationRuntimeDataFlowPropertiesResponse. Access the value via the '{suggest}' property getter instead.")
def __getitem__(self, key: str) -> Any:
IntegrationRuntimeDataFlowPropertiesResponse.__key_warning(key)
return super().__getitem__(key)
def get(self, key: str, default = None) -> Any:
IntegrationRuntimeDataFlowPropertiesResponse.__key_warning(key)
return super().get(key, default)
def __init__(__self__, *,
compute_type: Optional[str] = None,
core_count: Optional[int] = None,
time_to_live: Optional[int] = None):
"""
Data flow properties for managed integration runtime.
:param str compute_type: Compute type of the cluster which will execute data flow job.
:param int core_count: Core count of the cluster which will execute data flow job. Supported values are: 8, 16, 32, 48, 80, 144 and 272.
:param int time_to_live: Time to live (in minutes) setting of the cluster which will execute data flow job.
"""
if compute_type is not None:
pulumi.set(__self__, "compute_type", compute_type)
if core_count is not None:
pulumi.set(__self__, "core_count", core_count)
if time_to_live is not None:
pulumi.set(__self__, "time_to_live", time_to_live)
@property
@pulumi.getter(name="computeType")
def compute_type(self) -> Optional[str]:
"""
Compute type of the cluster which will execute data flow job.
"""
return pulumi.get(self, "compute_type")
@property
@pulumi.getter(name="coreCount")
def core_count(self) -> Optional[int]:
"""
Core count of the cluster which will execute data flow job. Supported values are: 8, 16, 32, 48, 80, 144 and 272.
"""
return pulumi.get(self, "core_count")
@property
@pulumi.getter(name="timeToLive")
def time_to_live(self) -> Optional[int]:
"""
Time to live (in minutes) setting of the cluster which will execute data flow job.
"""
return pulumi.get(self, "time_to_live")
@pulumi.output_type
class IntegrationRuntimeDataProxyPropertiesResponse(dict):
"""
Data proxy properties for a managed dedicated integration runtime.
"""
@staticmethod
def __key_warning(key: str):
suggest = None
if key == "connectVia":
suggest = "connect_via"
elif key == "stagingLinkedService":
suggest = "staging_linked_service"
if suggest:
pulumi.log.warn(f"Key '{key}' not found in IntegrationRuntimeDataProxyPropertiesResponse. Access the value via the '{suggest}' property getter instead.")
def __getitem__(self, key: str) -> Any:
IntegrationRuntimeDataProxyPropertiesResponse.__key_warning(key)
return super().__getitem__(key)
def get(self, key: str, default = None) -> Any:
IntegrationRuntimeDataProxyPropertiesResponse.__key_warning(key)
return super().get(key, default)
def __init__(__self__, *,
connect_via: Optional['outputs.EntityReferenceResponse'] = None,
path: Optional[str] = None,
staging_linked_service: Optional['outputs.EntityReferenceResponse'] = None):
"""
Data proxy properties for a managed dedicated integration runtime.
:param 'EntityReferenceResponse' connect_via: The self-hosted integration runtime reference.
:param str path: The path to contain the staged data in the Blob storage.
:param 'EntityReferenceResponse' staging_linked_service: The staging linked service reference.
"""
if connect_via is not None:
pulumi.set(__self__, "connect_via", connect_via)
if path is not None:
pulumi.set(__self__, "path", path)
if staging_linked_service is not None:
pulumi.set(__self__, "staging_linked_service", staging_linked_service)
@property
@pulumi.getter(name="connectVia")
def connect_via(self) -> Optional['outputs.EntityReferenceResponse']:
"""
The self-hosted integration runtime reference.
"""
return pulumi.get(self, "connect_via")
@property
@pulumi.getter
def path(self) -> Optional[str]:
"""
The path to contain the staged data in the Blob storage.
"""
return pulumi.get(self, "path")
@property
@pulumi.getter(name="stagingLinkedService")
def staging_linked_service(self) -> Optional['outputs.EntityReferenceResponse']:
"""
The staging linked service reference.
"""
return pulumi.get(self, "staging_linked_service")
@pulumi.output_type
class IntegrationRuntimeSsisCatalogInfoResponse(dict):
"""
Catalog information for managed dedicated integration runtime.
"""
@staticmethod
def __key_warning(key: str):
suggest = None
if key == "catalogAdminPassword":
suggest = "catalog_admin_password"
elif key == "catalogAdminUserName":
suggest = "catalog_admin_user_name"
elif key == "catalogPricingTier":
suggest = "catalog_pricing_tier"
elif key == "catalogServerEndpoint":
suggest = "catalog_server_endpoint"
if suggest:
pulumi.log.warn(f"Key '{key}' not found in IntegrationRuntimeSsisCatalogInfoResponse. Access the value via the '{suggest}' property getter instead.")
def __getitem__(self, key: str) -> Any:
IntegrationRuntimeSsisCatalogInfoResponse.__key_warning(key)
return super().__getitem__(key)
def get(self, key: str, default = None) -> Any:
IntegrationRuntimeSsisCatalogInfoResponse.__key_warning(key)
return super().get(key, default)
def __init__(__self__, *,
catalog_admin_password: Optional['outputs.SecureStringResponse'] = None,
catalog_admin_user_name: Optional[str] = None,
catalog_pricing_tier: Optional[str] = None,
catalog_server_endpoint: Optional[str] = None):
"""
Catalog information for managed dedicated integration runtime.
:param 'SecureStringResponse' catalog_admin_password: The password of the administrator user account of the catalog database.
:param str catalog_admin_user_name: The administrator user name of catalog database.
:param str catalog_pricing_tier: The pricing tier for the catalog database. The valid values could be found in https://azure.microsoft.com/en-us/pricing/details/sql-database/
:param str catalog_server_endpoint: The catalog database server URL.
"""
if catalog_admin_password is not None:
pulumi.set(__self__, "catalog_admin_password", catalog_admin_password)
if catalog_admin_user_name is not None:
pulumi.set(__self__, "catalog_admin_user_name", catalog_admin_user_name)
if catalog_pricing_tier is not None:
pulumi.set(__self__, "catalog_pricing_tier", catalog_pricing_tier)
if catalog_server_endpoint is not None:
pulumi.set(__self__, "catalog_server_endpoint", catalog_server_endpoint)
@property
@pulumi.getter(name="catalogAdminPassword")
def catalog_admin_password(self) -> Optional['outputs.SecureStringResponse']:
"""
The password of the administrator user account of the catalog database.
"""
return pulumi.get(self, "catalog_admin_password")
@property
@pulumi.getter(name="catalogAdminUserName")
def catalog_admin_user_name(self) -> Optional[str]:
"""
The administrator user name of catalog database.
"""
return pulumi.get(self, "catalog_admin_user_name")
@property
@pulumi.getter(name="catalogPricingTier")
def catalog_pricing_tier(self) -> Optional[str]:
"""
The pricing tier for the catalog database. The valid values could be found in https://azure.microsoft.com/en-us/pricing/details/sql-database/
"""
return pulumi.get(self, "catalog_pricing_tier")
@property
@pulumi.getter(name="catalogServerEndpoint")
def catalog_server_endpoint(self) -> Optional[str]:
"""
The catalog database server URL.
"""
return pulumi.get(self, "catalog_server_endpoint")
@pulumi.output_type
class IntegrationRuntimeSsisPropertiesResponse(dict):
"""
SSIS properties for managed integration runtime.
"""
@staticmethod
def __key_warning(key: str):
suggest = None
if key == "catalogInfo":
suggest = "catalog_info"
elif key == "customSetupScriptProperties":
suggest = "custom_setup_script_properties"
elif key == "dataProxyProperties":
suggest = "data_proxy_properties"
elif key == "expressCustomSetupProperties":
suggest = "express_custom_setup_properties"
elif key == "licenseType":
suggest = "license_type"
if suggest:
pulumi.log.warn(f"Key '{key}' not found in IntegrationRuntimeSsisPropertiesResponse. Access the value via the '{suggest}' property getter instead.")
def __getitem__(self, key: str) -> Any:
IntegrationRuntimeSsisPropertiesResponse.__key_warning(key)
return super().__getitem__(key)
def get(self, key: str, default = None) -> Any:
IntegrationRuntimeSsisPropertiesResponse.__key_warning(key)
return super().get(key, default)
def __init__(__self__, *,
catalog_info: Optional['outputs.IntegrationRuntimeSsisCatalogInfoResponse'] = None,
custom_setup_script_properties: Optional['outputs.IntegrationRuntimeCustomSetupScriptPropertiesResponse'] = None,
data_proxy_properties: Optional['outputs.IntegrationRuntimeDataProxyPropertiesResponse'] = None,
edition: Optional[str] = None,
express_custom_setup_properties: Optional[Sequence[Any]] = None,
license_type: Optional[str] = None):
"""
SSIS properties for managed integration runtime.
:param 'IntegrationRuntimeSsisCatalogInfoResponse' catalog_info: Catalog information for managed dedicated integration runtime.
:param 'IntegrationRuntimeCustomSetupScriptPropertiesResponse' custom_setup_script_properties: Custom setup script properties for a managed dedicated integration runtime.
:param 'IntegrationRuntimeDataProxyPropertiesResponse' data_proxy_properties: Data proxy properties for a managed dedicated integration runtime.
:param str edition: The edition for the SSIS Integration Runtime
:param Sequence[Union['CmdkeySetupResponse', 'ComponentSetupResponse', 'EnvironmentVariableSetupResponse']] express_custom_setup_properties: Custom setup without script properties for a SSIS integration runtime.
:param str license_type: License type for bringing your own license scenario.
"""
if catalog_info is not None:
pulumi.set(__self__, "catalog_info", catalog_info)
if custom_setup_script_properties is not None:
pulumi.set(__self__, "custom_setup_script_properties", custom_setup_script_properties)
if data_proxy_properties is not None:
pulumi.set(__self__, "data_proxy_properties", data_proxy_properties)
if edition is not None:
pulumi.set(__self__, "edition", edition)
if express_custom_setup_properties is not None:
pulumi.set(__self__, "express_custom_setup_properties", express_custom_setup_properties)
if license_type is not None:
pulumi.set(__self__, "license_type", license_type)
@property
@pulumi.getter(name="catalogInfo")
def catalog_info(self) -> Optional['outputs.IntegrationRuntimeSsisCatalogInfoResponse']:
"""
Catalog information for managed dedicated integration runtime.
"""
return pulumi.get(self, "catalog_info")
@property
@pulumi.getter(name="customSetupScriptProperties")
def custom_setup_script_properties(self) -> Optional['outputs.IntegrationRuntimeCustomSetupScriptPropertiesResponse']:
"""
Custom setup script properties for a managed dedicated integration runtime.
"""
return pulumi.get(self, "custom_setup_script_properties")
@property
@pulumi.getter(name="dataProxyProperties")
def data_proxy_properties(self) -> Optional['outputs.IntegrationRuntimeDataProxyPropertiesResponse']:
"""
Data proxy properties for a managed dedicated integration runtime.
"""
return pulumi.get(self, "data_proxy_properties")
@property
@pulumi.getter
def edition(self) -> Optional[str]:
"""
The edition for the SSIS Integration Runtime
"""
return pulumi.get(self, "edition")
@property
@pulumi.getter(name="expressCustomSetupProperties")
def express_custom_setup_properties(self) -> Optional[Sequence[Any]]:
"""
Custom setup without script properties for a SSIS integration runtime.
"""
return pulumi.get(self, "express_custom_setup_properties")
@property
@pulumi.getter(name="licenseType")
def license_type(self) -> Optional[str]:
"""
License type for bringing your own license scenario.
"""
return pulumi.get(self, "license_type")
@pulumi.output_type
class IntegrationRuntimeVNetPropertiesResponse(dict):
"""
VNet properties for managed integration runtime.
"""
@staticmethod
def __key_warning(key: str):
suggest = None
if key == "publicIPs":
suggest = "public_ips"
elif key == "vNetId":
suggest = "v_net_id"
if suggest:
pulumi.log.warn(f"Key '{key}' not found in IntegrationRuntimeVNetPropertiesResponse. Access the value via the '{suggest}' property getter instead.")
def __getitem__(self, key: str) -> Any:
IntegrationRuntimeVNetPropertiesResponse.__key_warning(key)
return super().__getitem__(key)
def get(self, key: str, default = None) -> Any:
IntegrationRuntimeVNetPropertiesResponse.__key_warning(key)
return super().get(key, default)
def __init__(__self__, *,
public_ips: Optional[Sequence[str]] = None,
subnet: Optional[str] = None,
v_net_id: Optional[str] = None):
"""
VNet properties for managed integration runtime.
:param Sequence[str] public_ips: Resource IDs of the public IP addresses that this integration runtime will use.
:param str subnet: The name of the subnet this integration runtime will join.
:param str v_net_id: The ID of the VNet that this integration runtime will join.
"""
if public_ips is not None:
pulumi.set(__self__, "public_ips", public_ips)
if subnet is not None:
pulumi.set(__self__, "subnet", subnet)
if v_net_id is not None:
pulumi.set(__self__, "v_net_id", v_net_id)
@property
@pulumi.getter(name="publicIPs")
def public_ips(self) -> Optional[Sequence[str]]:
"""
Resource IDs of the public IP addresses that this integration runtime will use.
"""
return pulumi.get(self, "public_ips")
@property
@pulumi.getter
def subnet(self) -> Optional[str]:
"""
The name of the subnet this integration runtime will join.
"""
return pulumi.get(self, "subnet")
@property
@pulumi.getter(name="vNetId")
def v_net_id(self) -> Optional[str]:
"""
The ID of the VNet that this integration runtime will join.
"""
return pulumi.get(self, "v_net_id")
@pulumi.output_type
class LibraryInfoResponse(dict):
"""
Library/package information of a Big Data pool powered by Apache Spark
"""
@staticmethod
def __key_warning(key: str):
suggest = None
if key == "creatorId":
suggest = "creator_id"
elif key == "provisioningStatus":
suggest = "provisioning_status"
elif key == "uploadedTimestamp":
suggest = "uploaded_timestamp"
elif key == "containerName":
suggest = "container_name"
if suggest:
pulumi.log.warn(f"Key '{key}' not found in LibraryInfoResponse. Access the value via the '{suggest}' property getter instead.")
def __getitem__(self, key: str) -> Any:
LibraryInfoResponse.__key_warning(key)
return super().__getitem__(key)
def get(self, key: str, default = None) -> Any:
LibraryInfoResponse.__key_warning(key)
return super().get(key, default)
def __init__(__self__, *,
creator_id: str,
provisioning_status: str,
uploaded_timestamp: str,
container_name: Optional[str] = None,
name: Optional[str] = None,
path: Optional[str] = None,
type: Optional[str] = None):
"""
Library/package information of a Big Data pool powered by Apache Spark
:param str creator_id: Creator Id of the library/package.
:param str provisioning_status: Provisioning status of the library/package.
:param str uploaded_timestamp: The last update time of the library.
:param str container_name: Storage blob container name.
:param str name: Name of the library.
:param str path: Storage blob path of library.
:param str type: Type of the library.
"""
pulumi.set(__self__, "creator_id", creator_id)
pulumi.set(__self__, "provisioning_status", provisioning_status)
pulumi.set(__self__, "uploaded_timestamp", uploaded_timestamp)
if container_name is not None:
pulumi.set(__self__, "container_name", container_name)
if name is not None:
pulumi.set(__self__, "name", name)
if path is not None:
pulumi.set(__self__, "path", path)
if type is not None:
pulumi.set(__self__, "type", type)
@property
@pulumi.getter(name="creatorId")
def creator_id(self) -> str:
"""
Creator Id of the library/package.
"""
return pulumi.get(self, "creator_id")
@property
@pulumi.getter(name="provisioningStatus")
def provisioning_status(self) -> str:
"""
Provisioning status of the library/package.
"""
return pulumi.get(self, "provisioning_status")
@property
@pulumi.getter(name="uploadedTimestamp")
def uploaded_timestamp(self) -> str:
"""
The last update time of the library.
"""
return pulumi.get(self, "uploaded_timestamp")
@property
@pulumi.getter(name="containerName")
def container_name(self) -> Optional[str]:
"""
Storage blob container name.
"""
return pulumi.get(self, "container_name")
@property
@pulumi.getter
def name(self) -> Optional[str]:
"""
Name of the library.
"""
return pulumi.get(self, "name")
@property
@pulumi.getter
def path(self) -> Optional[str]:
"""
Storage blob path of library.
"""
return pulumi.get(self, "path")
@property
@pulumi.getter
def type(self) -> Optional[str]:
"""
Type of the library.
"""
return pulumi.get(self, "type")
@pulumi.output_type
class LibraryRequirementsResponse(dict):
"""
Library requirements for a Big Data pool powered by Apache Spark
"""
def __init__(__self__, *,
time: str,
content: Optional[str] = None,
filename: Optional[str] = None):
"""
Library requirements for a Big Data pool powered by Apache Spark
:param str time: The last update time of the library requirements file.
:param str content: The library requirements.
:param str filename: The filename of the library requirements file.
"""
pulumi.set(__self__, "time", time)
if content is not None:
pulumi.set(__self__, "content", content)
if filename is not None:
pulumi.set(__self__, "filename", filename)
@property
@pulumi.getter
def time(self) -> str:
"""
The last update time of the library requirements file.
"""
return pulumi.get(self, "time")
@property
@pulumi.getter
def content(self) -> Optional[str]:
"""
The library requirements.
"""
return pulumi.get(self, "content")
@property
@pulumi.getter
def filename(self) -> Optional[str]:
"""
The filename of the library requirements file.
"""
return pulumi.get(self, "filename")
@pulumi.output_type
class LinkedIntegrationRuntimeKeyAuthorizationResponse(dict):
"""
The key authorization type integration runtime.
"""
@staticmethod
def __key_warning(key: str):
suggest = None
if key == "authorizationType":
suggest = "authorization_type"
if suggest:
pulumi.log.warn(f"Key '{key}' not found in LinkedIntegrationRuntimeKeyAuthorizationResponse. Access the value via the '{suggest}' property getter instead.")
def __getitem__(self, key: str) -> Any:
LinkedIntegrationRuntimeKeyAuthorizationResponse.__key_warning(key)
return super().__getitem__(key)
def get(self, key: str, default = None) -> Any:
LinkedIntegrationRuntimeKeyAuthorizationResponse.__key_warning(key)
return super().get(key, default)
def __init__(__self__, *,
authorization_type: str,
key: 'outputs.SecureStringResponse'):
"""
The key authorization type integration runtime.
:param str authorization_type: The authorization type for integration runtime sharing.
Expected value is 'Key'.
:param 'SecureStringResponse' key: The key used for authorization.
"""
pulumi.set(__self__, "authorization_type", 'Key')
pulumi.set(__self__, "key", key)
@property
@pulumi.getter(name="authorizationType")
def authorization_type(self) -> str:
"""
The authorization type for integration runtime sharing.
Expected value is 'Key'.
"""
return pulumi.get(self, "authorization_type")
@property
@pulumi.getter
def key(self) -> 'outputs.SecureStringResponse':
"""
The key used for authorization.
"""
return pulumi.get(self, "key")
@pulumi.output_type
class LinkedIntegrationRuntimeRbacAuthorizationResponse(dict):
"""
The role based access control (RBAC) authorization type integration runtime.
"""
@staticmethod
def __key_warning(key: str):
suggest = None
if key == "authorizationType":
suggest = "authorization_type"
elif key == "resourceId":
suggest = "resource_id"
if suggest:
pulumi.log.warn(f"Key '{key}' not found in LinkedIntegrationRuntimeRbacAuthorizationResponse. Access the value via the '{suggest}' property getter instead.")
def __getitem__(self, key: str) -> Any:
LinkedIntegrationRuntimeRbacAuthorizationResponse.__key_warning(key)
return super().__getitem__(key)
def get(self, key: str, default = None) -> Any:
LinkedIntegrationRuntimeRbacAuthorizationResponse.__key_warning(key)
return super().get(key, default)
def __init__(__self__, *,
authorization_type: str,
resource_id: str):
"""
The role based access control (RBAC) authorization type integration runtime.
:param str authorization_type: The authorization type for integration runtime sharing.
Expected value is 'RBAC'.
:param str resource_id: The resource identifier of the integration runtime to be shared.
"""
pulumi.set(__self__, "authorization_type", 'RBAC')
pulumi.set(__self__, "resource_id", resource_id)
@property
@pulumi.getter(name="authorizationType")
def authorization_type(self) -> str:
"""
The authorization type for integration runtime sharing.
Expected value is 'RBAC'.
"""
return pulumi.get(self, "authorization_type")
@property
@pulumi.getter(name="resourceId")
def resource_id(self) -> str:
"""
The resource identifier of the integration runtime to be shared.
"""
return pulumi.get(self, "resource_id")
@pulumi.output_type
class LinkedIntegrationRuntimeResponse(dict):
"""
The linked integration runtime information.
"""
def __init__(__self__, *,
create_time: str,
data_factory_location: str,
data_factory_name: str,
name: str,
subscription_id: str):
"""
The linked integration runtime information.
:param str create_time: The creating time of the linked integration runtime.
:param str data_factory_location: The location of the workspace for which the linked integration runtime belong to.
:param str data_factory_name: The name of the workspace for which the linked integration runtime belong to.
:param str name: The name of the linked integration runtime.
:param str subscription_id: The subscription ID for which the linked integration runtime belong to.
"""
pulumi.set(__self__, "create_time", create_time)
pulumi.set(__self__, "data_factory_location", data_factory_location)
pulumi.set(__self__, "data_factory_name", data_factory_name)
pulumi.set(__self__, "name", name)
pulumi.set(__self__, "subscription_id", subscription_id)
@property
@pulumi.getter(name="createTime")
def create_time(self) -> str:
"""
The creating time of the linked integration runtime.
"""
return pulumi.get(self, "create_time")
@property
@pulumi.getter(name="dataFactoryLocation")
def data_factory_location(self) -> str:
"""
The location of the workspace for which the linked integration runtime belong to.
"""
return pulumi.get(self, "data_factory_location")
@property
@pulumi.getter(name="dataFactoryName")
def data_factory_name(self) -> str:
"""
The name of the workspace for which the linked integration runtime belong to.
"""
return pulumi.get(self, "data_factory_name")
@property
@pulumi.getter
def name(self) -> str:
"""
The name of the linked integration runtime.
"""
return pulumi.get(self, "name")
@property
@pulumi.getter(name="subscriptionId")
def subscription_id(self) -> str:
"""
The subscription ID for which the linked integration runtime belong to.
"""
return pulumi.get(self, "subscription_id")
@pulumi.output_type
class ManagedIdentityResponse(dict):
"""
The workspace managed identity
"""
@staticmethod
def __key_warning(key: str):
suggest = None
if key == "principalId":
suggest = "principal_id"
elif key == "tenantId":
suggest = "tenant_id"
if suggest:
pulumi.log.warn(f"Key '{key}' not found in ManagedIdentityResponse. Access the value via the '{suggest}' property getter instead.")
def __getitem__(self, key: str) -> Any:
ManagedIdentityResponse.__key_warning(key)
return super().__getitem__(key)
def get(self, key: str, default = None) -> Any:
ManagedIdentityResponse.__key_warning(key)
return super().get(key, default)
def __init__(__self__, *,
principal_id: str,
tenant_id: str,
type: Optional[str] = None):
"""
The workspace managed identity
:param str principal_id: The principal ID of the workspace managed identity
:param str tenant_id: The tenant ID of the workspace managed identity
:param str type: The type of managed identity for the workspace
"""
pulumi.set(__self__, "principal_id", principal_id)
pulumi.set(__self__, "tenant_id", tenant_id)
if type is not None:
pulumi.set(__self__, "type", type)
@property
@pulumi.getter(name="principalId")
def principal_id(self) -> str:
"""
The principal ID of the workspace managed identity
"""
return pulumi.get(self, "principal_id")
@property
@pulumi.getter(name="tenantId")
def tenant_id(self) -> str:
"""
The tenant ID of the workspace managed identity
"""
return pulumi.get(self, "tenant_id")
@property
@pulumi.getter
def type(self) -> Optional[str]:
"""
The type of managed identity for the workspace
"""
return pulumi.get(self, "type")
@pulumi.output_type
class ManagedIntegrationRuntimeErrorResponse(dict):
"""
Error definition for managed integration runtime.
"""
def __init__(__self__, *,
code: str,
message: str,
parameters: Sequence[str],
time: str):
"""
Error definition for managed integration runtime.
:param str code: Error code.
:param str message: Error message.
:param Sequence[str] parameters: Managed integration runtime error parameters.
:param str time: The time when the error occurred.
"""
pulumi.set(__self__, "code", code)
pulumi.set(__self__, "message", message)
pulumi.set(__self__, "parameters", parameters)
pulumi.set(__self__, "time", time)
@property
@pulumi.getter
def code(self) -> str:
"""
Error code.
"""
return pulumi.get(self, "code")
@property
@pulumi.getter
def message(self) -> str:
"""
Error message.
"""
return pulumi.get(self, "message")
@property
@pulumi.getter
def parameters(self) -> Sequence[str]:
"""
Managed integration runtime error parameters.
"""
return pulumi.get(self, "parameters")
@property
@pulumi.getter
def time(self) -> str:
"""
The time when the error occurred.
"""
return pulumi.get(self, "time")
@pulumi.output_type
class ManagedIntegrationRuntimeNodeResponse(dict):
"""
Properties of integration runtime node.
"""
def __init__(__self__, *,
node_id: str,
status: str,
errors: Optional[Sequence['outputs.ManagedIntegrationRuntimeErrorResponse']] = None):
"""
Properties of integration runtime node.
:param str node_id: The managed integration runtime node id.
:param str status: The managed integration runtime node status.
:param Sequence['ManagedIntegrationRuntimeErrorResponse'] errors: The errors that occurred on this integration runtime node.
"""
pulumi.set(__self__, "node_id", node_id)
pulumi.set(__self__, "status", status)
if errors is not None:
pulumi.set(__self__, "errors", errors)
@property
@pulumi.getter(name="nodeId")
def node_id(self) -> str:
"""
The managed integration runtime node id.
"""
return pulumi.get(self, "node_id")
@property
@pulumi.getter
def status(self) -> str:
"""
The managed integration runtime node status.
"""
return pulumi.get(self, "status")
@property
@pulumi.getter
def errors(self) -> Optional[Sequence['outputs.ManagedIntegrationRuntimeErrorResponse']]:
"""
The errors that occurred on this integration runtime node.
"""
return pulumi.get(self, "errors")
@pulumi.output_type
class ManagedIntegrationRuntimeOperationResultResponse(dict):
"""
Properties of managed integration runtime operation result.
"""
def __init__(__self__, *,
activity_id: str,
error_code: str,
parameters: Sequence[str],
result: str,
start_time: str,
type: str):
"""
Properties of managed integration runtime operation result.
:param str activity_id: The activity id for the operation request.
:param str error_code: The error code.
:param Sequence[str] parameters: Managed integration runtime error parameters.
:param str result: The operation result.
:param str start_time: The start time of the operation.
:param str type: The operation type. Could be start or stop.
"""
pulumi.set(__self__, "activity_id", activity_id)
pulumi.set(__self__, "error_code", error_code)
pulumi.set(__self__, "parameters", parameters)
pulumi.set(__self__, "result", result)
pulumi.set(__self__, "start_time", start_time)
pulumi.set(__self__, "type", type)
@property
@pulumi.getter(name="activityId")
def activity_id(self) -> str:
"""
The activity id for the operation request.
"""
return pulumi.get(self, "activity_id")
@property
@pulumi.getter(name="errorCode")
def error_code(self) -> str:
"""
The error code.
"""
return pulumi.get(self, "error_code")
@property
@pulumi.getter
def parameters(self) -> Sequence[str]:
"""
Managed integration runtime error parameters.
"""
return pulumi.get(self, "parameters")
@property
@pulumi.getter
def result(self) -> str:
"""
The operation result.
"""
return pulumi.get(self, "result")
@property
@pulumi.getter(name="startTime")
def start_time(self) -> str:
"""
The start time of the operation.
"""
return pulumi.get(self, "start_time")
@property
@pulumi.getter
def type(self) -> str:
"""
The operation type. Could be start or stop.
"""
return pulumi.get(self, "type")
@pulumi.output_type
class ManagedIntegrationRuntimeResponse(dict):
"""
Managed integration runtime, including managed elastic and managed dedicated integration runtimes.
"""
@staticmethod
def __key_warning(key: str):
suggest = None
if key == "computeProperties":
suggest = "compute_properties"
elif key == "managedVirtualNetwork":
suggest = "managed_virtual_network"
elif key == "ssisProperties":
suggest = "ssis_properties"
if suggest:
pulumi.log.warn(f"Key '{key}' not found in ManagedIntegrationRuntimeResponse. Access the value via the '{suggest}' property getter instead.")
def __getitem__(self, key: str) -> Any:
ManagedIntegrationRuntimeResponse.__key_warning(key)
return super().__getitem__(key)
def get(self, key: str, default = None) -> Any:
ManagedIntegrationRuntimeResponse.__key_warning(key)
return super().get(key, default)
def __init__(__self__, *,
state: str,
type: str,
compute_properties: Optional['outputs.IntegrationRuntimeComputePropertiesResponse'] = None,
description: Optional[str] = None,
managed_virtual_network: Optional['outputs.ManagedVirtualNetworkReferenceResponse'] = None,
ssis_properties: Optional['outputs.IntegrationRuntimeSsisPropertiesResponse'] = None):
"""
Managed integration runtime, including managed elastic and managed dedicated integration runtimes.
:param str state: Integration runtime state, only valid for managed dedicated integration runtime.
:param str type: The type of integration runtime.
Expected value is 'Managed'.
:param 'IntegrationRuntimeComputePropertiesResponse' compute_properties: The compute resource for managed integration runtime.
:param str description: Integration runtime description.
:param 'ManagedVirtualNetworkReferenceResponse' managed_virtual_network: Managed Virtual Network reference.
:param 'IntegrationRuntimeSsisPropertiesResponse' ssis_properties: SSIS properties for managed integration runtime.
"""
pulumi.set(__self__, "state", state)
pulumi.set(__self__, "type", 'Managed')
if compute_properties is not None:
pulumi.set(__self__, "compute_properties", compute_properties)
if description is not None:
pulumi.set(__self__, "description", description)
if managed_virtual_network is not None:
pulumi.set(__self__, "managed_virtual_network", managed_virtual_network)
if ssis_properties is not None:
pulumi.set(__self__, "ssis_properties", ssis_properties)
@property
@pulumi.getter
def state(self) -> str:
"""
Integration runtime state, only valid for managed dedicated integration runtime.
"""
return pulumi.get(self, "state")
@property
@pulumi.getter
def type(self) -> str:
"""
The type of integration runtime.
Expected value is 'Managed'.
"""
return pulumi.get(self, "type")
@property
@pulumi.getter(name="computeProperties")
def compute_properties(self) -> Optional['outputs.IntegrationRuntimeComputePropertiesResponse']:
"""
The compute resource for managed integration runtime.
"""
return pulumi.get(self, "compute_properties")
@property
@pulumi.getter
def description(self) -> Optional[str]:
"""
Integration runtime description.
"""
return pulumi.get(self, "description")
@property
@pulumi.getter(name="managedVirtualNetwork")
def managed_virtual_network(self) -> Optional['outputs.ManagedVirtualNetworkReferenceResponse']:
"""
Managed Virtual Network reference.
"""
return pulumi.get(self, "managed_virtual_network")
@property
@pulumi.getter(name="ssisProperties")
def ssis_properties(self) -> Optional['outputs.IntegrationRuntimeSsisPropertiesResponse']:
"""
SSIS properties for managed integration runtime.
"""
return pulumi.get(self, "ssis_properties")
@pulumi.output_type
class ManagedIntegrationRuntimeStatusResponse(dict):
"""
Managed integration runtime status.
"""
def __init__(__self__, *,
create_time: str,
data_factory_name: str,
last_operation: 'outputs.ManagedIntegrationRuntimeOperationResultResponse',
nodes: Sequence['outputs.ManagedIntegrationRuntimeNodeResponse'],
other_errors: Sequence['outputs.ManagedIntegrationRuntimeErrorResponse'],
state: str,
type: str):
"""
Managed integration runtime status.
:param str create_time: The time at which the integration runtime was created, in ISO8601 format.
:param str data_factory_name: The workspace name which the integration runtime belong to.
:param 'ManagedIntegrationRuntimeOperationResultResponse' last_operation: The last operation result that occurred on this integration runtime.
:param Sequence['ManagedIntegrationRuntimeNodeResponse'] nodes: The list of nodes for managed integration runtime.
:param Sequence['ManagedIntegrationRuntimeErrorResponse'] other_errors: The errors that occurred on this integration runtime.
:param str state: The state of integration runtime.
:param str type: The type of integration runtime.
Expected value is 'Managed'.
"""
pulumi.set(__self__, "create_time", create_time)
pulumi.set(__self__, "data_factory_name", data_factory_name)
pulumi.set(__self__, "last_operation", last_operation)
pulumi.set(__self__, "nodes", nodes)
pulumi.set(__self__, "other_errors", other_errors)
pulumi.set(__self__, "state", state)
pulumi.set(__self__, "type", 'Managed')
@property
@pulumi.getter(name="createTime")
def create_time(self) -> str:
"""
The time at which the integration runtime was created, in ISO8601 format.
"""
return pulumi.get(self, "create_time")
@property
@pulumi.getter(name="dataFactoryName")
def data_factory_name(self) -> str:
"""
The workspace name which the integration runtime belong to.
"""
return pulumi.get(self, "data_factory_name")
@property
@pulumi.getter(name="lastOperation")
def last_operation(self) -> 'outputs.ManagedIntegrationRuntimeOperationResultResponse':
"""
The last operation result that occurred on this integration runtime.
"""
return pulumi.get(self, "last_operation")
@property
@pulumi.getter
def nodes(self) -> Sequence['outputs.ManagedIntegrationRuntimeNodeResponse']:
"""
The list of nodes for managed integration runtime.
"""
return pulumi.get(self, "nodes")
@property
@pulumi.getter(name="otherErrors")
def other_errors(self) -> Sequence['outputs.ManagedIntegrationRuntimeErrorResponse']:
"""
The errors that occurred on this integration runtime.
"""
return pulumi.get(self, "other_errors")
@property
@pulumi.getter
def state(self) -> str:
"""
The state of integration runtime.
"""
return pulumi.get(self, "state")
@property
@pulumi.getter
def type(self) -> str:
"""
The type of integration runtime.
Expected value is 'Managed'.
"""
return pulumi.get(self, "type")
@pulumi.output_type
class ManagedVirtualNetworkReferenceResponse(dict):
"""
Managed Virtual Network reference type.
"""
@staticmethod
def __key_warning(key: str):
suggest = None
if key == "referenceName":
suggest = "reference_name"
if suggest:
pulumi.log.warn(f"Key '{key}' not found in ManagedVirtualNetworkReferenceResponse. Access the value via the '{suggest}' property getter instead.")
def __getitem__(self, key: str) -> Any:
ManagedVirtualNetworkReferenceResponse.__key_warning(key)
return super().__getitem__(key)
def get(self, key: str, default = None) -> Any:
ManagedVirtualNetworkReferenceResponse.__key_warning(key)
return super().get(key, default)
def __init__(__self__, *,
reference_name: str,
type: str):
"""
Managed Virtual Network reference type.
:param str reference_name: Reference ManagedVirtualNetwork name.
:param str type: Managed Virtual Network reference type.
"""
pulumi.set(__self__, "reference_name", reference_name)
pulumi.set(__self__, "type", type)
@property
@pulumi.getter(name="referenceName")
def reference_name(self) -> str:
"""
Reference ManagedVirtualNetwork name.
"""
return pulumi.get(self, "reference_name")
@property
@pulumi.getter
def type(self) -> str:
"""
Managed Virtual Network reference type.
"""
return pulumi.get(self, "type")
@pulumi.output_type
class ManagedVirtualNetworkSettingsResponse(dict):
"""
Managed Virtual Network Settings
"""
@staticmethod
def __key_warning(key: str):
suggest = None
if key == "allowedAadTenantIdsForLinking":
suggest = "allowed_aad_tenant_ids_for_linking"
elif key == "linkedAccessCheckOnTargetResource":
suggest = "linked_access_check_on_target_resource"
elif key == "preventDataExfiltration":
suggest = "prevent_data_exfiltration"
if suggest:
pulumi.log.warn(f"Key '{key}' not found in ManagedVirtualNetworkSettingsResponse. Access the value via the '{suggest}' property getter instead.")
def __getitem__(self, key: str) -> Any:
ManagedVirtualNetworkSettingsResponse.__key_warning(key)
return super().__getitem__(key)
def get(self, key: str, default = None) -> Any:
ManagedVirtualNetworkSettingsResponse.__key_warning(key)
return super().get(key, default)
def __init__(__self__, *,
allowed_aad_tenant_ids_for_linking: Optional[Sequence[str]] = None,
linked_access_check_on_target_resource: Optional[bool] = None,
prevent_data_exfiltration: Optional[bool] = None):
"""
Managed Virtual Network Settings
:param Sequence[str] allowed_aad_tenant_ids_for_linking: Allowed Aad Tenant Ids For Linking
:param bool linked_access_check_on_target_resource: Linked Access Check On Target Resource
:param bool prevent_data_exfiltration: Prevent Data Exfiltration
"""
if allowed_aad_tenant_ids_for_linking is not None:
pulumi.set(__self__, "allowed_aad_tenant_ids_for_linking", allowed_aad_tenant_ids_for_linking)
if linked_access_check_on_target_resource is not None:
pulumi.set(__self__, "linked_access_check_on_target_resource", linked_access_check_on_target_resource)
if prevent_data_exfiltration is not None:
pulumi.set(__self__, "prevent_data_exfiltration", prevent_data_exfiltration)
@property
@pulumi.getter(name="allowedAadTenantIdsForLinking")
def allowed_aad_tenant_ids_for_linking(self) -> Optional[Sequence[str]]:
"""
Allowed Aad Tenant Ids For Linking
"""
return pulumi.get(self, "allowed_aad_tenant_ids_for_linking")
@property
@pulumi.getter(name="linkedAccessCheckOnTargetResource")
def linked_access_check_on_target_resource(self) -> Optional[bool]:
"""
Linked Access Check On Target Resource
"""
return pulumi.get(self, "linked_access_check_on_target_resource")
@property
@pulumi.getter(name="preventDataExfiltration")
def prevent_data_exfiltration(self) -> Optional[bool]:
"""
Prevent Data Exfiltration
"""
return pulumi.get(self, "prevent_data_exfiltration")
@pulumi.output_type
class PrivateEndpointConnectionForPrivateLinkHubBasicResponse(dict):
"""
Private Endpoint Connection For Private Link Hub - Basic
"""
@staticmethod
def __key_warning(key: str):
suggest = None
if key == "provisioningState":
suggest = "provisioning_state"
elif key == "privateEndpoint":
suggest = "private_endpoint"
elif key == "privateLinkServiceConnectionState":
suggest = "private_link_service_connection_state"
if suggest:
pulumi.log.warn(f"Key '{key}' not found in PrivateEndpointConnectionForPrivateLinkHubBasicResponse. Access the value via the '{suggest}' property getter instead.")
def __getitem__(self, key: str) -> Any:
PrivateEndpointConnectionForPrivateLinkHubBasicResponse.__key_warning(key)
return super().__getitem__(key)
def get(self, key: str, default = None) -> Any:
PrivateEndpointConnectionForPrivateLinkHubBasicResponse.__key_warning(key)
return super().get(key, default)
def __init__(__self__, *,
id: str,
provisioning_state: str,
private_endpoint: Optional['outputs.PrivateEndpointResponse'] = None,
private_link_service_connection_state: Optional['outputs.PrivateLinkServiceConnectionStateResponse'] = None):
"""
Private Endpoint Connection For Private Link Hub - Basic
:param str id: identifier
:param str provisioning_state: Provisioning state of the private endpoint connection.
:param 'PrivateEndpointResponse' private_endpoint: The private endpoint which the connection belongs to.
:param 'PrivateLinkServiceConnectionStateResponse' private_link_service_connection_state: Connection state of the private endpoint connection.
"""
pulumi.set(__self__, "id", id)
pulumi.set(__self__, "provisioning_state", provisioning_state)
if private_endpoint is not None:
pulumi.set(__self__, "private_endpoint", private_endpoint)
if private_link_service_connection_state is not None:
pulumi.set(__self__, "private_link_service_connection_state", private_link_service_connection_state)
@property
@pulumi.getter
def id(self) -> str:
"""
identifier
"""
return pulumi.get(self, "id")
@property
@pulumi.getter(name="provisioningState")
def provisioning_state(self) -> str:
"""
Provisioning state of the private endpoint connection.
"""
return pulumi.get(self, "provisioning_state")
@property
@pulumi.getter(name="privateEndpoint")
def private_endpoint(self) -> Optional['outputs.PrivateEndpointResponse']:
"""
The private endpoint which the connection belongs to.
"""
return pulumi.get(self, "private_endpoint")
@property
@pulumi.getter(name="privateLinkServiceConnectionState")
def private_link_service_connection_state(self) -> Optional['outputs.PrivateLinkServiceConnectionStateResponse']:
"""
Connection state of the private endpoint connection.
"""
return pulumi.get(self, "private_link_service_connection_state")
@pulumi.output_type
class PrivateEndpointConnectionResponse(dict):
"""
A private endpoint connection
"""
@staticmethod
def __key_warning(key: str):
suggest = None
if key == "provisioningState":
suggest = "provisioning_state"
elif key == "privateEndpoint":
suggest = "private_endpoint"
elif key == "privateLinkServiceConnectionState":
suggest = "private_link_service_connection_state"
if suggest:
pulumi.log.warn(f"Key '{key}' not found in PrivateEndpointConnectionResponse. Access the value via the '{suggest}' property getter instead.")
def __getitem__(self, key: str) -> Any:
PrivateEndpointConnectionResponse.__key_warning(key)
return super().__getitem__(key)
def get(self, key: str, default = None) -> Any:
PrivateEndpointConnectionResponse.__key_warning(key)
return super().get(key, default)
def __init__(__self__, *,
id: str,
name: str,
provisioning_state: str,
type: str,
private_endpoint: Optional['outputs.PrivateEndpointResponse'] = None,
private_link_service_connection_state: Optional['outputs.PrivateLinkServiceConnectionStateResponse'] = None):
"""
A private endpoint connection
:param str id: Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
:param str name: The name of the resource
:param str provisioning_state: Provisioning state of the private endpoint connection.
:param str type: The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
:param 'PrivateEndpointResponse' private_endpoint: The private endpoint which the connection belongs to.
:param 'PrivateLinkServiceConnectionStateResponse' private_link_service_connection_state: Connection state of the private endpoint connection.
"""
pulumi.set(__self__, "id", id)
pulumi.set(__self__, "name", name)
pulumi.set(__self__, "provisioning_state", provisioning_state)
pulumi.set(__self__, "type", type)
if private_endpoint is not None:
pulumi.set(__self__, "private_endpoint", private_endpoint)
if private_link_service_connection_state is not None:
pulumi.set(__self__, "private_link_service_connection_state", private_link_service_connection_state)
@property
@pulumi.getter
def id(self) -> str:
"""
Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
"""
return pulumi.get(self, "id")
@property
@pulumi.getter
def name(self) -> str:
"""
The name of the resource
"""
return pulumi.get(self, "name")
@property
@pulumi.getter(name="provisioningState")
def provisioning_state(self) -> str:
"""
Provisioning state of the private endpoint connection.
"""
return pulumi.get(self, "provisioning_state")
@property
@pulumi.getter
def type(self) -> str:
"""
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
"""
return pulumi.get(self, "type")
@property
@pulumi.getter(name="privateEndpoint")
def private_endpoint(self) -> Optional['outputs.PrivateEndpointResponse']:
"""
The private endpoint which the connection belongs to.
"""
return pulumi.get(self, "private_endpoint")
@property
@pulumi.getter(name="privateLinkServiceConnectionState")
def private_link_service_connection_state(self) -> Optional['outputs.PrivateLinkServiceConnectionStateResponse']:
"""
Connection state of the private endpoint connection.
"""
return pulumi.get(self, "private_link_service_connection_state")
@pulumi.output_type
class PrivateEndpointResponse(dict):
"""
Private endpoint details
"""
def __init__(__self__, *,
id: str):
"""
Private endpoint details
:param str id: Resource id of the private endpoint.
"""
pulumi.set(__self__, "id", id)
@property
@pulumi.getter
def id(self) -> str:
"""
Resource id of the private endpoint.
"""
return pulumi.get(self, "id")
@pulumi.output_type
class PrivateLinkServiceConnectionStateResponse(dict):
"""
Connection state details of the private endpoint
"""
@staticmethod
def __key_warning(key: str):
suggest = None
if key == "actionsRequired":
suggest = "actions_required"
if suggest:
pulumi.log.warn(f"Key '{key}' not found in PrivateLinkServiceConnectionStateResponse. Access the value via the '{suggest}' property getter instead.")
def __getitem__(self, key: str) -> Any:
PrivateLinkServiceConnectionStateResponse.__key_warning(key)
return super().__getitem__(key)
def get(self, key: str, default = None) -> Any:
PrivateLinkServiceConnectionStateResponse.__key_warning(key)
return super().get(key, default)
def __init__(__self__, *,
actions_required: str,
description: Optional[str] = None,
status: Optional[str] = None):
"""
Connection state details of the private endpoint
:param str actions_required: The actions required for private link service connection.
:param str description: The private link service connection description.
:param str status: The private link service connection status.
"""
pulumi.set(__self__, "actions_required", actions_required)
if description is not None:
pulumi.set(__self__, "description", description)
if status is not None:
pulumi.set(__self__, "status", status)
@property
@pulumi.getter(name="actionsRequired")
def actions_required(self) -> str:
"""
The actions required for private link service connection.
"""
return pulumi.get(self, "actions_required")
@property
@pulumi.getter
def description(self) -> Optional[str]:
"""
The private link service connection description.
"""
return pulumi.get(self, "description")
@property
@pulumi.getter
def status(self) -> Optional[str]:
"""
The private link service connection status.
"""
return pulumi.get(self, "status")
@pulumi.output_type
class PurviewConfigurationResponse(dict):
"""
Purview Configuration
"""
@staticmethod
def __key_warning(key: str):
suggest = None
if key == "purviewResourceId":
suggest = "purview_resource_id"
if suggest:
pulumi.log.warn(f"Key '{key}' not found in PurviewConfigurationResponse. Access the value via the '{suggest}' property getter instead.")
def __getitem__(self, key: str) -> Any:
PurviewConfigurationResponse.__key_warning(key)
return super().__getitem__(key)
def get(self, key: str, default = None) -> Any:
PurviewConfigurationResponse.__key_warning(key)
return super().get(key, default)
def __init__(__self__, *,
purview_resource_id: Optional[str] = None):
"""
Purview Configuration
:param str purview_resource_id: Purview Resource ID
"""
if purview_resource_id is not None:
pulumi.set(__self__, "purview_resource_id", purview_resource_id)
@property
@pulumi.getter(name="purviewResourceId")
def purview_resource_id(self) -> Optional[str]:
"""
Purview Resource ID
"""
return pulumi.get(self, "purview_resource_id")
@pulumi.output_type
class SecureStringResponse(dict):
"""
Azure Synapse secure string definition. The string value will be masked with asterisks '*' during Get or List API calls.
"""
def __init__(__self__, *,
type: str,
value: str):
"""
Azure Synapse secure string definition. The string value will be masked with asterisks '*' during Get or List API calls.
:param str type: Type of the secret.
Expected value is 'SecureString'.
:param str value: Value of secure string.
"""
pulumi.set(__self__, "type", 'SecureString')
pulumi.set(__self__, "value", value)
@property
@pulumi.getter
def type(self) -> str:
"""
Type of the secret.
Expected value is 'SecureString'.
"""
return pulumi.get(self, "type")
@property
@pulumi.getter
def value(self) -> str:
"""
Value of secure string.
"""
return pulumi.get(self, "value")
@pulumi.output_type
class SelfHostedIntegrationRuntimeNodeResponse(dict):
"""
Properties of Self-hosted integration runtime node.
"""
def __init__(__self__, *,
capabilities: Mapping[str, str],
concurrent_jobs_limit: int,
expiry_time: str,
host_service_uri: str,
is_active_dispatcher: bool,
last_connect_time: str,
last_end_update_time: str,
last_start_time: str,
last_start_update_time: str,
last_stop_time: str,
last_update_result: str,
machine_name: str,
max_concurrent_jobs: int,
node_name: str,
register_time: str,
status: str,
version: str,
version_status: str):
"""
Properties of Self-hosted integration runtime node.
:param Mapping[str, str] capabilities: The integration runtime capabilities dictionary
:param int concurrent_jobs_limit: Maximum concurrent jobs on the integration runtime node.
:param str expiry_time: The time at which the integration runtime will expire in ISO8601 format.
:param str host_service_uri: URI for the host machine of the integration runtime.
:param bool is_active_dispatcher: Indicates whether this node is the active dispatcher for integration runtime requests.
:param str last_connect_time: The most recent time at which the integration runtime was connected in ISO8601 format.
:param str last_end_update_time: The last time for the integration runtime node update end.
:param str last_start_time: The time the node last started up.
:param str last_start_update_time: The last time for the integration runtime node update start.
:param str last_stop_time: The integration runtime node last stop time.
:param str last_update_result: The result of the last integration runtime node update.
:param str machine_name: Machine name of the integration runtime node.
:param int max_concurrent_jobs: The maximum concurrent jobs in this integration runtime.
:param str node_name: Name of the integration runtime node.
:param str register_time: The time at which the integration runtime node was registered in ISO8601 format.
:param str status: Status of the integration runtime node.
:param str version: Version of the integration runtime node.
:param str version_status: Status of the integration runtime node version.
"""
pulumi.set(__self__, "capabilities", capabilities)
pulumi.set(__self__, "concurrent_jobs_limit", concurrent_jobs_limit)
pulumi.set(__self__, "expiry_time", expiry_time)
pulumi.set(__self__, "host_service_uri", host_service_uri)
pulumi.set(__self__, "is_active_dispatcher", is_active_dispatcher)
pulumi.set(__self__, "last_connect_time", last_connect_time)
pulumi.set(__self__, "last_end_update_time", last_end_update_time)
pulumi.set(__self__, "last_start_time", last_start_time)
pulumi.set(__self__, "last_start_update_time", last_start_update_time)
pulumi.set(__self__, "last_stop_time", last_stop_time)
pulumi.set(__self__, "last_update_result", last_update_result)
pulumi.set(__self__, "machine_name", machine_name)
pulumi.set(__self__, "max_concurrent_jobs", max_concurrent_jobs)
pulumi.set(__self__, "node_name", node_name)
pulumi.set(__self__, "register_time", register_time)
pulumi.set(__self__, "status", status)
pulumi.set(__self__, "version", version)
pulumi.set(__self__, "version_status", version_status)
@property
@pulumi.getter
def capabilities(self) -> Mapping[str, str]:
"""
The integration runtime capabilities dictionary
"""
return pulumi.get(self, "capabilities")
@property
@pulumi.getter(name="concurrentJobsLimit")
def concurrent_jobs_limit(self) -> int:
"""
Maximum concurrent jobs on the integration runtime node.
"""
return pulumi.get(self, "concurrent_jobs_limit")
@property
@pulumi.getter(name="expiryTime")
def expiry_time(self) -> str:
"""
The time at which the integration runtime will expire in ISO8601 format.
"""
return pulumi.get(self, "expiry_time")
@property
@pulumi.getter(name="hostServiceUri")
def host_service_uri(self) -> str:
"""
URI for the host machine of the integration runtime.
"""
return pulumi.get(self, "host_service_uri")
@property
@pulumi.getter(name="isActiveDispatcher")
def is_active_dispatcher(self) -> bool:
"""
Indicates whether this node is the active dispatcher for integration runtime requests.
"""
return pulumi.get(self, "is_active_dispatcher")
@property
@pulumi.getter(name="lastConnectTime")
def last_connect_time(self) -> str:
"""
The most recent time at which the integration runtime was connected in ISO8601 format.
"""
return pulumi.get(self, "last_connect_time")
@property
@pulumi.getter(name="lastEndUpdateTime")
def last_end_update_time(self) -> str:
"""
The last time for the integration runtime node update end.
"""
return pulumi.get(self, "last_end_update_time")
@property
@pulumi.getter(name="lastStartTime")
def last_start_time(self) -> str:
"""
The time the node last started up.
"""
return pulumi.get(self, "last_start_time")
@property
@pulumi.getter(name="lastStartUpdateTime")
def last_start_update_time(self) -> str:
"""
The last time for the integration runtime node update start.
"""
return pulumi.get(self, "last_start_update_time")
@property
@pulumi.getter(name="lastStopTime")
def last_stop_time(self) -> str:
"""
The integration runtime node last stop time.
"""
return pulumi.get(self, "last_stop_time")
@property
@pulumi.getter(name="lastUpdateResult")
def last_update_result(self) -> str:
"""
The result of the last integration runtime node update.
"""
return pulumi.get(self, "last_update_result")
@property
@pulumi.getter(name="machineName")
def machine_name(self) -> str:
"""
Machine name of the integration runtime node.
"""
return pulumi.get(self, "machine_name")
@property
@pulumi.getter(name="maxConcurrentJobs")
def max_concurrent_jobs(self) -> int:
"""
The maximum concurrent jobs in this integration runtime.
"""
return pulumi.get(self, "max_concurrent_jobs")
@property
@pulumi.getter(name="nodeName")
def node_name(self) -> str:
"""
Name of the integration runtime node.
"""
return pulumi.get(self, "node_name")
@property
@pulumi.getter(name="registerTime")
def register_time(self) -> str:
"""
The time at which the integration runtime node was registered in ISO8601 format.
"""
return pulumi.get(self, "register_time")
@property
@pulumi.getter
def status(self) -> str:
"""
Status of the integration runtime node.
"""
return pulumi.get(self, "status")
@property
@pulumi.getter
def version(self) -> str:
"""
Version of the integration runtime node.
"""
return pulumi.get(self, "version")
@property
@pulumi.getter(name="versionStatus")
def version_status(self) -> str:
"""
Status of the integration runtime node version.
"""
return pulumi.get(self, "version_status")
@pulumi.output_type
class SelfHostedIntegrationRuntimeResponse(dict):
"""
Self-hosted integration runtime.
"""
@staticmethod
def __key_warning(key: str):
suggest = None
if key == "linkedInfo":
suggest = "linked_info"
if suggest:
pulumi.log.warn(f"Key '{key}' not found in SelfHostedIntegrationRuntimeResponse. Access the value via the '{suggest}' property getter instead.")
def __getitem__(self, key: str) -> Any:
SelfHostedIntegrationRuntimeResponse.__key_warning(key)
return super().__getitem__(key)
def get(self, key: str, default = None) -> Any:
SelfHostedIntegrationRuntimeResponse.__key_warning(key)
return super().get(key, default)
def __init__(__self__, *,
type: str,
description: Optional[str] = None,
linked_info: Optional[Any] = None):
"""
Self-hosted integration runtime.
:param str type: The type of integration runtime.
Expected value is 'SelfHosted'.
:param str description: Integration runtime description.
:param Union['LinkedIntegrationRuntimeKeyAuthorizationResponse', 'LinkedIntegrationRuntimeRbacAuthorizationResponse'] linked_info: Linked integration runtime type from data factory
"""
pulumi.set(__self__, "type", 'SelfHosted')
if description is not None:
pulumi.set(__self__, "description", description)
if linked_info is not None:
pulumi.set(__self__, "linked_info", linked_info)
@property
@pulumi.getter
def type(self) -> str:
"""
The type of integration runtime.
Expected value is 'SelfHosted'.
"""
return pulumi.get(self, "type")
@property
@pulumi.getter
def description(self) -> Optional[str]:
"""
Integration runtime description.
"""
return pulumi.get(self, "description")
@property
@pulumi.getter(name="linkedInfo")
def linked_info(self) -> Optional[Any]:
"""
Linked integration runtime type from data factory
"""
return pulumi.get(self, "linked_info")
@pulumi.output_type
class SelfHostedIntegrationRuntimeStatusResponse(dict):
"""
Self-hosted integration runtime status.
"""
def __init__(__self__, *,
auto_update: str,
auto_update_eta: str,
capabilities: Mapping[str, str],
create_time: str,
data_factory_name: str,
internal_channel_encryption: str,
latest_version: str,
local_time_zone_offset: str,
node_communication_channel_encryption_mode: str,
pushed_version: str,
scheduled_update_date: str,
service_urls: Sequence[str],
state: str,
task_queue_id: str,
type: str,
update_delay_offset: str,
version: str,
version_status: str,
links: Optional[Sequence['outputs.LinkedIntegrationRuntimeResponse']] = None,
nodes: Optional[Sequence['outputs.SelfHostedIntegrationRuntimeNodeResponse']] = None):
"""
Self-hosted integration runtime status.
:param str auto_update: Whether Self-hosted integration runtime auto update has been turned on.
:param str auto_update_eta: The estimated time when the self-hosted integration runtime will be updated.
:param Mapping[str, str] capabilities: Object with additional information about integration runtime capabilities.
:param str create_time: The time at which the integration runtime was created, in ISO8601 format.
:param str data_factory_name: The workspace name which the integration runtime belong to.
:param str internal_channel_encryption: It is used to set the encryption mode for node-node communication channel (when more than 2 self-hosted integration runtime nodes exist).
:param str latest_version: The latest version on download center.
:param str local_time_zone_offset: The local time zone offset in hours.
:param str node_communication_channel_encryption_mode: The node communication Channel encryption mode
:param str pushed_version: The version that the integration runtime is going to update to.
:param str scheduled_update_date: The date at which the integration runtime will be scheduled to update, in ISO8601 format.
:param Sequence[str] service_urls: The URLs for the services used in integration runtime backend service.
:param str state: The state of integration runtime.
:param str task_queue_id: The task queue id of the integration runtime.
:param str type: The type of integration runtime.
Expected value is 'SelfHosted'.
:param str update_delay_offset: The time in the date scheduled by service to update the integration runtime, e.g., PT03H is 3 hours
:param str version: Version of the integration runtime.
:param str version_status: Status of the integration runtime version.
:param Sequence['LinkedIntegrationRuntimeResponse'] links: The list of linked integration runtimes that are created to share with this integration runtime.
:param Sequence['SelfHostedIntegrationRuntimeNodeResponse'] nodes: The list of nodes for this integration runtime.
"""
pulumi.set(__self__, "auto_update", auto_update)
pulumi.set(__self__, "auto_update_eta", auto_update_eta)
pulumi.set(__self__, "capabilities", capabilities)
pulumi.set(__self__, "create_time", create_time)
pulumi.set(__self__, "data_factory_name", data_factory_name)
pulumi.set(__self__, "internal_channel_encryption", internal_channel_encryption)
pulumi.set(__self__, "latest_version", latest_version)
pulumi.set(__self__, "local_time_zone_offset", local_time_zone_offset)
pulumi.set(__self__, "node_communication_channel_encryption_mode", node_communication_channel_encryption_mode)
pulumi.set(__self__, "pushed_version", pushed_version)
pulumi.set(__self__, "scheduled_update_date", scheduled_update_date)
pulumi.set(__self__, "service_urls", service_urls)
pulumi.set(__self__, "state", state)
pulumi.set(__self__, "task_queue_id", task_queue_id)
pulumi.set(__self__, "type", 'SelfHosted')
pulumi.set(__self__, "update_delay_offset", update_delay_offset)
pulumi.set(__self__, "version", version)
pulumi.set(__self__, "version_status", version_status)
if links is not None:
pulumi.set(__self__, "links", links)
if nodes is not None:
pulumi.set(__self__, "nodes", nodes)
@property
@pulumi.getter(name="autoUpdate")
def auto_update(self) -> str:
"""
Whether Self-hosted integration runtime auto update has been turned on.
"""
return pulumi.get(self, "auto_update")
@property
@pulumi.getter(name="autoUpdateETA")
def auto_update_eta(self) -> str:
"""
The estimated time when the self-hosted integration runtime will be updated.
"""
return pulumi.get(self, "auto_update_eta")
@property
@pulumi.getter
def capabilities(self) -> Mapping[str, str]:
"""
Object with additional information about integration runtime capabilities.
"""
return pulumi.get(self, "capabilities")
@property
@pulumi.getter(name="createTime")
def create_time(self) -> str:
"""
The time at which the integration runtime was created, in ISO8601 format.
"""
return pulumi.get(self, "create_time")
@property
@pulumi.getter(name="dataFactoryName")
def data_factory_name(self) -> str:
"""
The workspace name which the integration runtime belong to.
"""
return pulumi.get(self, "data_factory_name")
@property
@pulumi.getter(name="internalChannelEncryption")
def internal_channel_encryption(self) -> str:
"""
It is used to set the encryption mode for node-node communication channel (when more than 2 self-hosted integration runtime nodes exist).
"""
return pulumi.get(self, "internal_channel_encryption")
@property
@pulumi.getter(name="latestVersion")
def latest_version(self) -> str:
"""
The latest version on download center.
"""
return pulumi.get(self, "latest_version")
@property
@pulumi.getter(name="localTimeZoneOffset")
def local_time_zone_offset(self) -> str:
"""
The local time zone offset in hours.
"""
return pulumi.get(self, "local_time_zone_offset")
@property
@pulumi.getter(name="nodeCommunicationChannelEncryptionMode")
def node_communication_channel_encryption_mode(self) -> str:
"""
The node communication Channel encryption mode
"""
return pulumi.get(self, "node_communication_channel_encryption_mode")
@property
@pulumi.getter(name="pushedVersion")
def pushed_version(self) -> str:
"""
The version that the integration runtime is going to update to.
"""
return pulumi.get(self, "pushed_version")
@property
@pulumi.getter(name="scheduledUpdateDate")
def scheduled_update_date(self) -> str:
"""
The date at which the integration runtime will be scheduled to update, in ISO8601 format.
"""
return pulumi.get(self, "scheduled_update_date")
@property
@pulumi.getter(name="serviceUrls")
def service_urls(self) -> Sequence[str]:
"""
The URLs for the services used in integration runtime backend service.
"""
return pulumi.get(self, "service_urls")
@property
@pulumi.getter
def state(self) -> str:
"""
The state of integration runtime.
"""
return pulumi.get(self, "state")
@property
@pulumi.getter(name="taskQueueId")
def task_queue_id(self) -> str:
"""
The task queue id of the integration runtime.
"""
return pulumi.get(self, "task_queue_id")
@property
@pulumi.getter
def type(self) -> str:
"""
The type of integration runtime.
Expected value is 'SelfHosted'.
"""
return pulumi.get(self, "type")
@property
@pulumi.getter(name="updateDelayOffset")
def update_delay_offset(self) -> str:
"""
The time in the date scheduled by service to update the integration runtime, e.g., PT03H is 3 hours
"""
return pulumi.get(self, "update_delay_offset")
@property
@pulumi.getter
def version(self) -> str:
"""
Version of the integration runtime.
"""
return pulumi.get(self, "version")
@property
@pulumi.getter(name="versionStatus")
def version_status(self) -> str:
"""
Status of the integration runtime version.
"""
return pulumi.get(self, "version_status")
@property
@pulumi.getter
def links(self) -> Optional[Sequence['outputs.LinkedIntegrationRuntimeResponse']]:
"""
The list of linked integration runtimes that are created to share with this integration runtime.
"""
return pulumi.get(self, "links")
@property
@pulumi.getter
def nodes(self) -> Optional[Sequence['outputs.SelfHostedIntegrationRuntimeNodeResponse']]:
"""
The list of nodes for this integration runtime.
"""
return pulumi.get(self, "nodes")
@pulumi.output_type
class SkuResponse(dict):
"""
SQL pool SKU
"""
def __init__(__self__, *,
capacity: Optional[int] = None,
name: Optional[str] = None,
tier: Optional[str] = None):
"""
SQL pool SKU
:param int capacity: If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted.
:param str name: The SKU name
:param str tier: The service tier
"""
if capacity is not None:
pulumi.set(__self__, "capacity", capacity)
if name is not None:
pulumi.set(__self__, "name", name)
if tier is not None:
pulumi.set(__self__, "tier", tier)
@property
@pulumi.getter
def capacity(self) -> Optional[int]:
"""
If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted.
"""
return pulumi.get(self, "capacity")
@property
@pulumi.getter
def name(self) -> Optional[str]:
"""
The SKU name
"""
return pulumi.get(self, "name")
@property
@pulumi.getter
def tier(self) -> Optional[str]:
"""
The service tier
"""
return pulumi.get(self, "tier")
@pulumi.output_type
class SqlPoolVulnerabilityAssessmentRuleBaselineItemResponse(dict):
"""
Properties for an Sql pool vulnerability assessment rule baseline's result.
"""
def __init__(__self__, *,
result: Sequence[str]):
"""
Properties for an Sql pool vulnerability assessment rule baseline's result.
:param Sequence[str] result: The rule baseline result
"""
pulumi.set(__self__, "result", result)
@property
@pulumi.getter
def result(self) -> Sequence[str]:
"""
The rule baseline result
"""
return pulumi.get(self, "result")
@pulumi.output_type
class SsisEnvironmentReferenceResponse(dict):
"""
Ssis environment reference.
"""
def __init__(__self__, *,
environment_folder_name: Optional[str] = None,
environment_name: Optional[str] = None,
id: Optional[float] = None,
reference_type: Optional[str] = None):
"""
Ssis environment reference.
:param str environment_folder_name: Environment folder name.
:param str environment_name: Environment name.
:param float id: Environment reference id.
:param str reference_type: Reference type
"""
if environment_folder_name is not None:
pulumi.set(__self__, "environment_folder_name", environment_folder_name)
if environment_name is not None:
pulumi.set(__self__, "environment_name", environment_name)
if id is not None:
pulumi.set(__self__, "id", id)
if reference_type is not None:
pulumi.set(__self__, "reference_type", reference_type)
@property
@pulumi.getter(name="environmentFolderName")
def environment_folder_name(self) -> Optional[str]:
"""
Environment folder name.
"""
return pulumi.get(self, "environment_folder_name")
@property
@pulumi.getter(name="environmentName")
def environment_name(self) -> Optional[str]:
"""
Environment name.
"""
return pulumi.get(self, "environment_name")
@property
@pulumi.getter
def id(self) -> Optional[float]:
"""
Environment reference id.
"""
return pulumi.get(self, "id")
@property
@pulumi.getter(name="referenceType")
def reference_type(self) -> Optional[str]:
"""
Reference type
"""
return pulumi.get(self, "reference_type")
@pulumi.output_type
class SsisEnvironmentResponse(dict):
"""
Ssis environment.
"""
def __init__(__self__, *,
type: str,
description: Optional[str] = None,
folder_id: Optional[float] = None,
id: Optional[float] = None,
name: Optional[str] = None,
variables: Optional[Sequence['outputs.SsisVariableResponse']] = None):
"""
Ssis environment.
:param str type: The type of SSIS object metadata.
Expected value is 'Environment'.
:param str description: Metadata description.
:param float folder_id: Folder id which contains environment.
:param float id: Metadata id.
:param str name: Metadata name.
:param Sequence['SsisVariableResponse'] variables: Variable in environment
"""
pulumi.set(__self__, "type", 'Environment')
if description is not None:
pulumi.set(__self__, "description", description)
if folder_id is not None:
pulumi.set(__self__, "folder_id", folder_id)
if id is not None:
pulumi.set(__self__, "id", id)
if name is not None:
pulumi.set(__self__, "name", name)
if variables is not None:
pulumi.set(__self__, "variables", variables)
@property
@pulumi.getter
def type(self) -> str:
"""
The type of SSIS object metadata.
Expected value is 'Environment'.
"""
return pulumi.get(self, "type")
@property
@pulumi.getter
def description(self) -> Optional[str]:
"""
Metadata description.
"""
return pulumi.get(self, "description")
@property
@pulumi.getter(name="folderId")
def folder_id(self) -> Optional[float]:
"""
Folder id which contains environment.
"""
return pulumi.get(self, "folder_id")
@property
@pulumi.getter
def id(self) -> Optional[float]:
"""
Metadata id.
"""
return pulumi.get(self, "id")
@property
@pulumi.getter
def name(self) -> Optional[str]:
"""
Metadata name.
"""
return pulumi.get(self, "name")
@property
@pulumi.getter
def variables(self) -> Optional[Sequence['outputs.SsisVariableResponse']]:
"""
Variable in environment
"""
return pulumi.get(self, "variables")
@pulumi.output_type
class SsisFolderResponse(dict):
"""
Ssis folder.
"""
def __init__(__self__, *,
type: str,
description: Optional[str] = None,
id: Optional[float] = None,
name: Optional[str] = None):
"""
Ssis folder.
:param str type: The type of SSIS object metadata.
Expected value is 'Folder'.
:param str description: Metadata description.
:param float id: Metadata id.
:param str name: Metadata name.
"""
pulumi.set(__self__, "type", 'Folder')
if description is not None:
pulumi.set(__self__, "description", description)
if id is not None:
pulumi.set(__self__, "id", id)
if name is not None:
pulumi.set(__self__, "name", name)
@property
@pulumi.getter
def type(self) -> str:
"""
The type of SSIS object metadata.
Expected value is 'Folder'.
"""
return pulumi.get(self, "type")
@property
@pulumi.getter
def description(self) -> Optional[str]:
"""
Metadata description.
"""
return pulumi.get(self, "description")
@property
@pulumi.getter
def id(self) -> Optional[float]:
"""
Metadata id.
"""
return pulumi.get(self, "id")
@property
@pulumi.getter
def name(self) -> Optional[str]:
"""
Metadata name.
"""
return pulumi.get(self, "name")
@pulumi.output_type
class SsisPackageResponse(dict):
"""
Ssis Package.
"""
def __init__(__self__, *,
type: str,
description: Optional[str] = None,
folder_id: Optional[float] = None,
id: Optional[float] = None,
name: Optional[str] = None,
parameters: Optional[Sequence['outputs.SsisParameterResponse']] = None,
project_id: Optional[float] = None,
project_version: Optional[float] = None):
"""
Ssis Package.
:param str type: The type of SSIS object metadata.
Expected value is 'Package'.
:param str description: Metadata description.
:param float folder_id: Folder id which contains package.
:param float id: Metadata id.
:param str name: Metadata name.
:param Sequence['SsisParameterResponse'] parameters: Parameters in package
:param float project_id: Project id which contains package.
:param float project_version: Project version which contains package.
"""
pulumi.set(__self__, "type", 'Package')
if description is not None:
pulumi.set(__self__, "description", description)
if folder_id is not None:
pulumi.set(__self__, "folder_id", folder_id)
if id is not None:
pulumi.set(__self__, "id", id)
if name is not None:
pulumi.set(__self__, "name", name)
if parameters is not None:
pulumi.set(__self__, "parameters", parameters)
if project_id is not None:
pulumi.set(__self__, "project_id", project_id)
if project_version is not None:
pulumi.set(__self__, "project_version", project_version)
@property
@pulumi.getter
def type(self) -> str:
"""
The type of SSIS object metadata.
Expected value is 'Package'.
"""
return pulumi.get(self, "type")
@property
@pulumi.getter
def description(self) -> Optional[str]:
"""
Metadata description.
"""
return pulumi.get(self, "description")
@property
@pulumi.getter(name="folderId")
def folder_id(self) -> Optional[float]:
"""
Folder id which contains package.
"""
return pulumi.get(self, "folder_id")
@property
@pulumi.getter
def id(self) -> Optional[float]:
"""
Metadata id.
"""
return pulumi.get(self, "id")
@property
@pulumi.getter
def name(self) -> Optional[str]:
"""
Metadata name.
"""
return pulumi.get(self, "name")
@property
@pulumi.getter
def parameters(self) -> Optional[Sequence['outputs.SsisParameterResponse']]:
"""
Parameters in package
"""
return pulumi.get(self, "parameters")
@property
@pulumi.getter(name="projectId")
def project_id(self) -> Optional[float]:
"""
Project id which contains package.
"""
return pulumi.get(self, "project_id")
@property
@pulumi.getter(name="projectVersion")
def project_version(self) -> Optional[float]:
"""
Project version which contains package.
"""
return pulumi.get(self, "project_version")
@pulumi.output_type
class SsisParameterResponse(dict):
"""
Ssis parameter.
"""
def __init__(__self__, *,
data_type: Optional[str] = None,
default_value: Optional[str] = None,
description: Optional[str] = None,
design_default_value: Optional[str] = None,
id: Optional[float] = None,
name: Optional[str] = None,
required: Optional[bool] = None,
sensitive: Optional[bool] = None,
sensitive_default_value: Optional[str] = None,
value_set: Optional[bool] = None,
value_type: Optional[str] = None,
variable: Optional[str] = None):
"""
Ssis parameter.
:param str data_type: Parameter type.
:param str default_value: Default value of parameter.
:param str description: Parameter description.
:param str design_default_value: Design default value of parameter.
:param float id: Parameter id.
:param str name: Parameter name.
:param bool required: Whether parameter is required.
:param bool sensitive: Whether parameter is sensitive.
:param str sensitive_default_value: Default sensitive value of parameter.
:param bool value_set: Parameter value set.
:param str value_type: Parameter value type.
:param str variable: Parameter reference variable.
"""
if data_type is not None:
pulumi.set(__self__, "data_type", data_type)
if default_value is not None:
pulumi.set(__self__, "default_value", default_value)
if description is not None:
pulumi.set(__self__, "description", description)
if design_default_value is not None:
pulumi.set(__self__, "design_default_value", design_default_value)
if id is not None:
pulumi.set(__self__, "id", id)
if name is not None:
pulumi.set(__self__, "name", name)
if required is not None:
pulumi.set(__self__, "required", required)
if sensitive is not None:
pulumi.set(__self__, "sensitive", sensitive)
if sensitive_default_value is not None:
pulumi.set(__self__, "sensitive_default_value", sensitive_default_value)
if value_set is not None:
pulumi.set(__self__, "value_set", value_set)
if value_type is not None:
pulumi.set(__self__, "value_type", value_type)
if variable is not None:
pulumi.set(__self__, "variable", variable)
@property
@pulumi.getter(name="dataType")
def data_type(self) -> Optional[str]:
"""
Parameter type.
"""
return pulumi.get(self, "data_type")
@property
@pulumi.getter(name="defaultValue")
def default_value(self) -> Optional[str]:
"""
Default value of parameter.
"""
return pulumi.get(self, "default_value")
@property
@pulumi.getter
def description(self) -> Optional[str]:
"""
Parameter description.
"""
return pulumi.get(self, "description")
@property
@pulumi.getter(name="designDefaultValue")
def design_default_value(self) -> Optional[str]:
"""
Design default value of parameter.
"""
return pulumi.get(self, "design_default_value")
@property
@pulumi.getter
def id(self) -> Optional[float]:
"""
Parameter id.
"""
return pulumi.get(self, "id")
@property
@pulumi.getter
def name(self) -> Optional[str]:
"""
Parameter name.
"""
return pulumi.get(self, "name")
@property
@pulumi.getter
def required(self) -> Optional[bool]:
"""
Whether parameter is required.
"""
return pulumi.get(self, "required")
@property
@pulumi.getter
def sensitive(self) -> Optional[bool]:
"""
Whether parameter is sensitive.
"""
return pulumi.get(self, "sensitive")
@property
@pulumi.getter(name="sensitiveDefaultValue")
def sensitive_default_value(self) -> Optional[str]:
"""
Default sensitive value of parameter.
"""
return pulumi.get(self, "sensitive_default_value")
@property
@pulumi.getter(name="valueSet")
def value_set(self) -> Optional[bool]:
"""
Parameter value set.
"""
return pulumi.get(self, "value_set")
@property
@pulumi.getter(name="valueType")
def value_type(self) -> Optional[str]:
"""
Parameter value type.
"""
return pulumi.get(self, "value_type")
@property
@pulumi.getter
def variable(self) -> Optional[str]:
"""
Parameter reference variable.
"""
return pulumi.get(self, "variable")
@pulumi.output_type
class SsisProjectResponse(dict):
"""
Ssis project.
"""
def __init__(__self__, *,
type: str,
description: Optional[str] = None,
environment_refs: Optional[Sequence['outputs.SsisEnvironmentReferenceResponse']] = None,
folder_id: Optional[float] = None,
id: Optional[float] = None,
name: Optional[str] = None,
parameters: Optional[Sequence['outputs.SsisParameterResponse']] = None,
version: Optional[float] = None):
"""
Ssis project.
:param str type: The type of SSIS object metadata.
Expected value is 'Project'.
:param str description: Metadata description.
:param Sequence['SsisEnvironmentReferenceResponse'] environment_refs: Environment reference in project
:param float folder_id: Folder id which contains project.
:param float id: Metadata id.
:param str name: Metadata name.
:param Sequence['SsisParameterResponse'] parameters: Parameters in project
:param float version: Project version.
"""
pulumi.set(__self__, "type", 'Project')
if description is not None:
pulumi.set(__self__, "description", description)
if environment_refs is not None:
pulumi.set(__self__, "environment_refs", environment_refs)
if folder_id is not None:
pulumi.set(__self__, "folder_id", folder_id)
if id is not None:
pulumi.set(__self__, "id", id)
if name is not None:
pulumi.set(__self__, "name", name)
if parameters is not None:
pulumi.set(__self__, "parameters", parameters)
if version is not None:
pulumi.set(__self__, "version", version)
@property
@pulumi.getter
def type(self) -> str:
"""
The type of SSIS object metadata.
Expected value is 'Project'.
"""
return pulumi.get(self, "type")
@property
@pulumi.getter
def description(self) -> Optional[str]:
"""
Metadata description.
"""
return pulumi.get(self, "description")
@property
@pulumi.getter(name="environmentRefs")
def environment_refs(self) -> Optional[Sequence['outputs.SsisEnvironmentReferenceResponse']]:
"""
Environment reference in project
"""
return pulumi.get(self, "environment_refs")
@property
@pulumi.getter(name="folderId")
def folder_id(self) -> Optional[float]:
"""
Folder id which contains project.
"""
return pulumi.get(self, "folder_id")
@property
@pulumi.getter
def id(self) -> Optional[float]:
"""
Metadata id.
"""
return pulumi.get(self, "id")
@property
@pulumi.getter
def name(self) -> Optional[str]:
"""
Metadata name.
"""
return pulumi.get(self, "name")
@property
@pulumi.getter
def parameters(self) -> Optional[Sequence['outputs.SsisParameterResponse']]:
"""
Parameters in project
"""
return pulumi.get(self, "parameters")
@property
@pulumi.getter
def version(self) -> Optional[float]:
"""
Project version.
"""
return pulumi.get(self, "version")
@pulumi.output_type
class SsisVariableResponse(dict):
"""
Ssis variable.
"""
def __init__(__self__, *,
data_type: Optional[str] = None,
description: Optional[str] = None,
id: Optional[float] = None,
name: Optional[str] = None,
sensitive: Optional[bool] = None,
sensitive_value: Optional[str] = None,
value: Optional[str] = None):
"""
Ssis variable.
:param str data_type: Variable type.
:param str description: Variable description.
:param float id: Variable id.
:param str name: Variable name.
:param bool sensitive: Whether variable is sensitive.
:param str sensitive_value: Variable sensitive value.
:param str value: Variable value.
"""
if data_type is not None:
pulumi.set(__self__, "data_type", data_type)
if description is not None:
pulumi.set(__self__, "description", description)
if id is not None:
pulumi.set(__self__, "id", id)
if name is not None:
pulumi.set(__self__, "name", name)
if sensitive is not None:
pulumi.set(__self__, "sensitive", sensitive)
if sensitive_value is not None:
pulumi.set(__self__, "sensitive_value", sensitive_value)
if value is not None:
pulumi.set(__self__, "value", value)
@property
@pulumi.getter(name="dataType")
def data_type(self) -> Optional[str]:
"""
Variable type.
"""
return pulumi.get(self, "data_type")
@property
@pulumi.getter
def description(self) -> Optional[str]:
"""
Variable description.
"""
return pulumi.get(self, "description")
@property
@pulumi.getter
def id(self) -> Optional[float]:
"""
Variable id.
"""
return pulumi.get(self, "id")
@property
@pulumi.getter
def name(self) -> Optional[str]:
"""
Variable name.
"""
return pulumi.get(self, "name")
@property
@pulumi.getter
def sensitive(self) -> Optional[bool]:
"""
Whether variable is sensitive.
"""
return pulumi.get(self, "sensitive")
@property
@pulumi.getter(name="sensitiveValue")
def sensitive_value(self) -> Optional[str]:
"""
Variable sensitive value.
"""
return pulumi.get(self, "sensitive_value")
@property
@pulumi.getter
def value(self) -> Optional[str]:
"""
Variable value.
"""
return pulumi.get(self, "value")
@pulumi.output_type
class VirtualNetworkProfileResponse(dict):
"""
Virtual Network Profile
"""
@staticmethod
def __key_warning(key: str):
suggest = None
if key == "computeSubnetId":
suggest = "compute_subnet_id"
if suggest:
pulumi.log.warn(f"Key '{key}' not found in VirtualNetworkProfileResponse. Access the value via the '{suggest}' property getter instead.")
def __getitem__(self, key: str) -> Any:
VirtualNetworkProfileResponse.__key_warning(key)
return super().__getitem__(key)
def get(self, key: str, default = None) -> Any:
VirtualNetworkProfileResponse.__key_warning(key)
return super().get(key, default)
def __init__(__self__, *,
compute_subnet_id: Optional[str] = None):
"""
Virtual Network Profile
:param str compute_subnet_id: Subnet ID used for computes in workspace
"""
if compute_subnet_id is not None:
pulumi.set(__self__, "compute_subnet_id", compute_subnet_id)
@property
@pulumi.getter(name="computeSubnetId")
def compute_subnet_id(self) -> Optional[str]:
"""
Subnet ID used for computes in workspace
"""
return pulumi.get(self, "compute_subnet_id")
@pulumi.output_type
class VulnerabilityAssessmentRecurringScansPropertiesResponse(dict):
"""
Properties of a Vulnerability Assessment recurring scans.
"""
@staticmethod
def __key_warning(key: str):
suggest = None
if key == "emailSubscriptionAdmins":
suggest = "email_subscription_admins"
elif key == "isEnabled":
suggest = "is_enabled"
if suggest:
pulumi.log.warn(f"Key '{key}' not found in VulnerabilityAssessmentRecurringScansPropertiesResponse. Access the value via the '{suggest}' property getter instead.")
def __getitem__(self, key: str) -> Any:
VulnerabilityAssessmentRecurringScansPropertiesResponse.__key_warning(key)
return super().__getitem__(key)
def get(self, key: str, default = None) -> Any:
VulnerabilityAssessmentRecurringScansPropertiesResponse.__key_warning(key)
return super().get(key, default)
def __init__(__self__, *,
email_subscription_admins: Optional[bool] = None,
emails: Optional[Sequence[str]] = None,
is_enabled: Optional[bool] = None):
"""
Properties of a Vulnerability Assessment recurring scans.
:param bool email_subscription_admins: Specifies that the schedule scan notification will be is sent to the subscription administrators.
:param Sequence[str] emails: Specifies an array of e-mail addresses to which the scan notification is sent.
:param bool is_enabled: Recurring scans state.
"""
if email_subscription_admins is None:
email_subscription_admins = True
if email_subscription_admins is not None:
pulumi.set(__self__, "email_subscription_admins", email_subscription_admins)
if emails is not None:
pulumi.set(__self__, "emails", emails)
if is_enabled is not None:
pulumi.set(__self__, "is_enabled", is_enabled)
@property
@pulumi.getter(name="emailSubscriptionAdmins")
def email_subscription_admins(self) -> Optional[bool]:
"""
Specifies that the schedule scan notification will be is sent to the subscription administrators.
"""
return pulumi.get(self, "email_subscription_admins")
@property
@pulumi.getter
def emails(self) -> Optional[Sequence[str]]:
"""
Specifies an array of e-mail addresses to which the scan notification is sent.
"""
return pulumi.get(self, "emails")
@property
@pulumi.getter(name="isEnabled")
def is_enabled(self) -> Optional[bool]:
"""
Recurring scans state.
"""
return pulumi.get(self, "is_enabled")
@pulumi.output_type
class WorkspaceKeyDetailsResponse(dict):
"""
Details of the customer managed key associated with the workspace
"""
@staticmethod
def __key_warning(key: str):
suggest = None
if key == "keyVaultUrl":
suggest = "key_vault_url"
if suggest:
pulumi.log.warn(f"Key '{key}' not found in WorkspaceKeyDetailsResponse. Access the value via the '{suggest}' property getter instead.")
def __getitem__(self, key: str) -> Any:
WorkspaceKeyDetailsResponse.__key_warning(key)
return super().__getitem__(key)
def get(self, key: str, default = None) -> Any:
WorkspaceKeyDetailsResponse.__key_warning(key)
return super().get(key, default)
def __init__(__self__, *,
key_vault_url: Optional[str] = None,
name: Optional[str] = None):
"""
Details of the customer managed key associated with the workspace
:param str key_vault_url: Workspace Key sub-resource key vault url
:param str name: Workspace Key sub-resource name
"""
if key_vault_url is not None:
pulumi.set(__self__, "key_vault_url", key_vault_url)
if name is not None:
pulumi.set(__self__, "name", name)
@property
@pulumi.getter(name="keyVaultUrl")
def key_vault_url(self) -> Optional[str]:
"""
Workspace Key sub-resource key vault url
"""
return pulumi.get(self, "key_vault_url")
@property
@pulumi.getter
def name(self) -> Optional[str]:
"""
Workspace Key sub-resource name
"""
return pulumi.get(self, "name")
@pulumi.output_type
class WorkspaceRepositoryConfigurationResponse(dict):
"""
Git integration settings
"""
@staticmethod
def __key_warning(key: str):
suggest = None
if key == "accountName":
suggest = "account_name"
elif key == "collaborationBranch":
suggest = "collaboration_branch"
elif key == "hostName":
suggest = "host_name"
elif key == "lastCommitId":
suggest = "last_commit_id"
elif key == "projectName":
suggest = "project_name"
elif key == "repositoryName":
suggest = "repository_name"
elif key == "rootFolder":
suggest = "root_folder"
elif key == "tenantId":
suggest = "tenant_id"
if suggest:
pulumi.log.warn(f"Key '{key}' not found in WorkspaceRepositoryConfigurationResponse. Access the value via the '{suggest}' property getter instead.")
def __getitem__(self, key: str) -> Any:
WorkspaceRepositoryConfigurationResponse.__key_warning(key)
return super().__getitem__(key)
def get(self, key: str, default = None) -> Any:
WorkspaceRepositoryConfigurationResponse.__key_warning(key)
return super().get(key, default)
def __init__(__self__, *,
account_name: Optional[str] = None,
collaboration_branch: Optional[str] = None,
host_name: Optional[str] = None,
last_commit_id: Optional[str] = None,
project_name: Optional[str] = None,
repository_name: Optional[str] = None,
root_folder: Optional[str] = None,
tenant_id: Optional[str] = None,
type: Optional[str] = None):
"""
Git integration settings
:param str account_name: Account name
:param str collaboration_branch: Collaboration branch
:param str host_name: GitHub Enterprise host name. For example: https://github.mydomain.com
:param str last_commit_id: The last commit ID
:param str project_name: VSTS project name
:param str repository_name: Repository name
:param str root_folder: Root folder to use in the repository
:param str tenant_id: The VSTS tenant ID
:param str type: Type of workspace repositoryID configuration. Example WorkspaceVSTSConfiguration, WorkspaceGitHubConfiguration
"""
if account_name is not None:
pulumi.set(__self__, "account_name", account_name)
if collaboration_branch is not None:
pulumi.set(__self__, "collaboration_branch", collaboration_branch)
if host_name is not None:
pulumi.set(__self__, "host_name", host_name)
if last_commit_id is not None:
pulumi.set(__self__, "last_commit_id", last_commit_id)
if project_name is not None:
pulumi.set(__self__, "project_name", project_name)
if repository_name is not None:
pulumi.set(__self__, "repository_name", repository_name)
if root_folder is not None:
pulumi.set(__self__, "root_folder", root_folder)
if tenant_id is not None:
pulumi.set(__self__, "tenant_id", tenant_id)
if type is not None:
pulumi.set(__self__, "type", type)
@property
@pulumi.getter(name="accountName")
def account_name(self) -> Optional[str]:
"""
Account name
"""
return pulumi.get(self, "account_name")
@property
@pulumi.getter(name="collaborationBranch")
def collaboration_branch(self) -> Optional[str]:
"""
Collaboration branch
"""
return pulumi.get(self, "collaboration_branch")
@property
@pulumi.getter(name="hostName")
def host_name(self) -> Optional[str]:
"""
GitHub Enterprise host name. For example: https://github.mydomain.com
"""
return pulumi.get(self, "host_name")
@property
@pulumi.getter(name="lastCommitId")
def last_commit_id(self) -> Optional[str]:
"""
The last commit ID
"""
return pulumi.get(self, "last_commit_id")
@property
@pulumi.getter(name="projectName")
def project_name(self) -> Optional[str]:
"""
VSTS project name
"""
return pulumi.get(self, "project_name")
@property
@pulumi.getter(name="repositoryName")
def repository_name(self) -> Optional[str]:
"""
Repository name
"""
return pulumi.get(self, "repository_name")
@property
@pulumi.getter(name="rootFolder")
def root_folder(self) -> Optional[str]:
"""
Root folder to use in the repository
"""
return pulumi.get(self, "root_folder")
@property
@pulumi.getter(name="tenantId")
def tenant_id(self) -> Optional[str]:
"""
The VSTS tenant ID
"""
return pulumi.get(self, "tenant_id")
@property
@pulumi.getter
def type(self) -> Optional[str]:
"""
Type of workspace repositoryID configuration. Example WorkspaceVSTSConfiguration, WorkspaceGitHubConfiguration
"""
return pulumi.get(self, "type")
| [
"[email protected]"
]
| |
aab77ba67f881e2373fa713db42e7c8c1dc80b8d | 169e75df163bb311198562d286d37aad14677101 | /tensorflow/tensorflow/contrib/all_reduce/python/all_reduce_test.py | b3f5d92259df8475b205110dd3f0cee1cb5bde6f | [
"Apache-2.0"
]
| permissive | zylo117/tensorflow-gpu-macosx | e553d17b769c67dfda0440df8ac1314405e4a10a | 181bc2b37aa8a3eeb11a942d8f330b04abc804b3 | refs/heads/master | 2022-10-19T21:35:18.148271 | 2020-10-15T02:33:20 | 2020-10-15T02:33:20 | 134,240,831 | 116 | 26 | Apache-2.0 | 2022-10-04T23:36:22 | 2018-05-21T08:29:12 | C++ | UTF-8 | Python | false | false | 10,443 | py | # Copyright 2017 The TensorFlow Authors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# ==============================================================================
"""Tests for tensorflow.contrib.all_reduce.python..all_reduce."""
from __future__ import absolute_import
from __future__ import division
from __future__ import print_function
import time
import numpy as np
from tensorflow.contrib.all_reduce.python import all_reduce as ar
from tensorflow.core.framework import types_pb2
from tensorflow.python.framework import constant_op
from tensorflow.python.framework import ops
from tensorflow.python.framework import test_util
from tensorflow.python.ops import array_ops
from tensorflow.python.ops import math_ops
from tensorflow.python.ops import state_ops
from tensorflow.python.platform import test
from tensorflow.python.platform import tf_logging
class AllReduceTest(test_util.TensorFlowTestCase):
def testFlattenTensorsShapesDefined(self):
x = array_ops.placeholder(types_pb2.DT_FLOAT, [None])
with self.assertRaisesRegexp(ValueError,
"must have statically known shape"):
ar._flatten_tensors([x, x])
def testRingPermutations(self):
# 0 devices
pred_by_c_d, rank_by_c_d = ar._ring_permutations(1, 0, [])
self.assertEqual(pred_by_c_d, [])
self.assertEqual(rank_by_c_d, [])
# 1 worker, 1 subchunk cases
pred_by_c_d, rank_by_c_d = ar._ring_permutations(1, 1, [0])
self.assertEqual(pred_by_c_d, [[0]])
self.assertEqual(rank_by_c_d, [[0]])
pred_by_c_d, rank_by_c_d = ar._ring_permutations(1, 1, [0, 1, 2])
self.assertEqual(pred_by_c_d, [[2, 0, 1]])
self.assertEqual(rank_by_c_d, [[0, 1, 2]])
# multiple workers, 1 subchunk cases
pred_by_c_d, rank_by_c_d = ar._ring_permutations(2, 1, [0, 1, 2])
self.assertEqual(pred_by_c_d, [[5, 0, 1, 2, 3, 4]])
self.assertEqual(rank_by_c_d, [[0, 1, 2, 3, 4, 5]])
pred_by_c_d, rank_by_c_d = ar._ring_permutations(3, 1, [0, 1, 2])
self.assertEqual(pred_by_c_d, [[8, 0, 1, 2, 3, 4, 5, 6, 7]])
self.assertEqual(rank_by_c_d, [[0, 1, 2, 3, 4, 5, 6, 7, 8]])
pred_by_c_d, rank_by_c_d = ar._ring_permutations(2, 1, [2, 1, 0])
self.assertEqual(pred_by_c_d, [[1, 2, 3, 4, 5, 0]])
self.assertEqual(rank_by_c_d, [[2, 1, 0, 5, 4, 3]])
# 1 worker, multiple subchunk cases
pred_by_c_d, rank_by_c_d = ar._ring_permutations(1, 2, [0, 1, 2, 3])
self.assertEqual(pred_by_c_d, [[3, 0, 1, 2], [3, 0, 1, 2]])
self.assertEqual(rank_by_c_d, [[0, 1, 2, 3], [2, 3, 0, 1]])
pred_by_c_d, rank_by_c_d = ar._ring_permutations(1, 4, [0, 1, 2, 3])
self.assertEqual(pred_by_c_d, [[3, 0, 1, 2], [3, 0, 1, 2],
[3, 0, 1, 2], [3, 0, 1, 2]])
self.assertEqual(rank_by_c_d, [[0, 1, 2, 3], [3, 0, 1, 2],
[2, 3, 0, 1], [1, 2, 3, 0]])
# multiple worker, multiple subchunk cases
pred_by_c_d, rank_by_c_d = ar._ring_permutations(2, 2, [0, 1, 2, 3])
self.assertEqual(pred_by_c_d, [[7, 0, 1, 2, 3, 4, 5, 6],
[3, 0, 5, 2, 7, 4, 1, 6]])
self.assertEqual(rank_by_c_d, [[0, 1, 2, 3, 4, 5, 6, 7],
[2, 3, 0, 1, 6, 7, 4, 5]])
pred_by_c_d, rank_by_c_d = ar._ring_permutations(2, 2, [0, 3, 2, 1])
self.assertEqual(pred_by_c_d, [[5, 2, 3, 0, 1, 6, 7, 4],
[1, 2, 7, 0, 5, 6, 3, 4]])
self.assertEqual(rank_by_c_d, [[0, 3, 2, 1, 4, 7, 6, 5],
[2, 1, 0, 3, 6, 5, 4, 7]])
def _buildInput(self, num_workers, num_gpus):
t8 = constant_op.constant(
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15],
types_pb2.DT_FLOAT)
input_tensors = []
device_names = []
for w in range(0, num_workers):
for d in range(0, num_gpus):
dn = "/replica:0/task:%d/device:GPU:%d" % (w, d % num_gpus)
device_names.append(dn)
with ops.device(dn):
input_tensors.append(array_ops.identity(t8))
return input_tensors, device_names
def testBuildRingGatherPassStructure(self):
# 1 worker, 1 device
input_tensors, device_names = self._buildInput(1, 1)
pred_by_c_d, rank_by_c_d = ar._ring_permutations(1, 1, [0])
output_tensors = ar._build_ring_gather(input_tensors, device_names, 1,
pred_by_c_d, rank_by_c_d,
math_ops.add)
self.assertEqual(output_tensors, input_tensors)
# 1 worker, 4 devices, 2 subchunks
input_tensors, device_names = self._buildInput(1, 4)
pred_by_c_d, rank_by_c_d = ar._ring_permutations(1, 2, [0, 1, 2, 3])
output_tensors, pad_len = ar._build_ring_gather(
input_tensors, device_names, 2, pred_by_c_d, rank_by_c_d, math_ops.add)
self.assertEqual(0, pad_len)
# same number outputs as inputs
self.assertEqual(len(output_tensors), len(input_tensors))
num_chunks = 2 * len(input_tensors)
tlen = input_tensors[0].shape[0].value
for otl in output_tensors:
self.assertEqual(len(otl), num_chunks)
for ot in otl:
self.assertEqual(ot.shape, [tlen/num_chunks])
def _buildInitialVars(self, shape, dev_list):
values = []
num_devices = len(dev_list)
dim = np.prod(shape) if shape else 1
for d in range(0, num_devices):
with ops.device(dev_list[d]):
npt = np.zeros(shape).astype(np.float32)
alias = np.frombuffer(npt.data, dtype=np.float32)
for i in range(0, dim):
alias[i] = i + 0.01 * d
var = state_ops.variable_op(shape, types_pb2.DT_FLOAT)
state_ops.init_variable(var, npt).op.run()
values.append(var)
return values
# pylint: disable=g-long-lambda
def _buildRing(self, num_workers, num_gpus, subdiv):
gpu_perm = range(0, num_gpus)
return lambda x, un_op: ar.build_ring_all_reduce(
x, num_workers, subdiv, gpu_perm, math_ops.add, un_op)
def _testAllReduce(self, num_workers, num_gpus, shape, build_f):
# Use local CPU as device for all inputs.
num_devices = num_workers * num_gpus
dev_list = ["/replica:0/task:0/device:CPU:0"
for _ in range(num_devices)]
with self.test_session():
input_tensors = self._buildInitialVars(shape, dev_list)
un_op = lambda x: math_ops.div(
x, constant_op.constant(num_devices, dtype=types_pb2.DT_FLOAT))
simple_sum = math_ops.add_n(input_tensors)
simple_sum.op.run()
output_tensors = build_f(input_tensors, un_op)
sum_reduced = math_ops.add_n(output_tensors)
sum_reduced.op.run()
self.assertAllClose(sum_reduced.eval(), simple_sum.eval())
def _testRingAllReduce(self, num_workers, num_gpus, shape, subdiv):
start_time = time.time()
build_f = self._buildRing(num_workers, num_gpus, subdiv)
self._testAllReduce(num_workers, num_gpus, shape, build_f)
elapsed = time.time() - start_time
tf_logging.info("RingAllReduce num_workers=%d num_gpus=%d shape=%s "
"subdiv=%d elapsed=%f" %
(num_workers, num_gpus, shape, subdiv, elapsed))
def testRingAllReduce(self):
self._testRingAllReduce(1, 2, [], 1)
self._testRingAllReduce(1, 2, [8], 1)
self._testRingAllReduce(1, 2, [4, 4], 1)
self._testRingAllReduce(6, 1, [8], 1)
self._testRingAllReduce(1, 8, [32], 1)
self._testRingAllReduce(1, 8, [120], 1)
self._testRingAllReduce(2, 8, [7, 13], 1)
self._testRingAllReduce(2, 8, [8, 8], 2)
self._testRingAllReduce(2, 8, [8, 8], 4)
# TODO(tucker): The following test is surprisingly slow.
# Diagnose and fix before re-enabling.
# self._testRingAllReduce(4, 8, [8, 8, 2], 4)
def _buildShuffle(self, num_workers, num_gpus, num_shards):
# Use local CPU for all shuffle shards
gather_devices = ["/replica:0/task:0/device:CPU:0"
for _ in range(num_shards)]
return lambda x, un_op: ar.build_shuffle_all_reduce(
x, gather_devices, math_ops.add_n, un_op)
def _testShuffleAllReduce(self, num_workers, num_gpus, shape, num_shards):
start_time = time.time()
build_f = self._buildShuffle(num_workers, num_gpus, num_shards)
self._testAllReduce(num_workers, num_gpus, shape, build_f)
elapsed = time.time() - start_time
tf_logging.info("ShuffleAllReduce num_workers=%d num_gpus=%d shape=%s "
"elapsed=%f" % (num_workers, num_gpus, shape, elapsed))
def testShuffleAllReduce(self):
self._testShuffleAllReduce(1, 2, [], 1)
self._testShuffleAllReduce(1, 2, [8], 1)
self._testShuffleAllReduce(1, 2, [4, 4], 1)
self._testShuffleAllReduce(1, 8, [32], 1)
self._testShuffleAllReduce(1, 8, [120], 1)
self._testShuffleAllReduce(2, 8, [7, 13], 3)
self._testShuffleAllReduce(2, 8, [8, 8], 2)
self._testShuffleAllReduce(2, 8, [8, 8], 4)
self._testShuffleAllReduce(4, 8, [8, 8, 2], 4)
def _buildRecursiveHD(self, num_workers, num_gpus):
return lambda x, un_op: ar.build_recursive_hd_all_reduce(
x, math_ops.add, un_op)
# pylint: enable=g-long-lambda
def _testRecursiveHDAllReduce(self, num_workers, num_gpus, shape):
start_time = time.time()
build_f = self._buildRecursiveHD(num_workers, num_gpus)
self._testAllReduce(num_workers, num_gpus, shape, build_f)
elapsed = time.time() - start_time
tf_logging.info("RecursiveHDAllReduce num_workers=%d num_gpus=%d "
"shape=%s elapsed=%f" %
(num_workers, num_gpus, shape, elapsed))
def testRecursiveHDAllReduce(self):
self._testRecursiveHDAllReduce(1, 2, [8])
self._testRecursiveHDAllReduce(1, 2, [4, 4])
self._testRecursiveHDAllReduce(1, 8, [32])
self._testRecursiveHDAllReduce(1, 8, [120])
self._testRecursiveHDAllReduce(2, 8, [8, 8])
self._testRecursiveHDAllReduce(4, 8, [8, 8, 2])
if __name__ == "__main__":
test.main()
| [
"[email protected]"
]
| |
81876856328d10a73c63fd33479e2d04f4a2bc80 | 58cf4e5a576b2baf7755ae19d410bf8afc2f3709 | /leetcode-solutions/P1498.Number_of_subsequences_satisfy_sum.py | d1a47cb9eb60a1fc9beae07105be0146554ee857 | []
| no_license | srihariprasad-r/leet-code | 78284beac34a4d84dde9f8cd36503496b618fdf7 | fc4f1455bafd1496eb5469a509be8638b75155c1 | refs/heads/master | 2023-08-16T20:24:09.474931 | 2023-08-07T14:23:36 | 2023-08-07T14:23:36 | 231,920,275 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 464 | py | class Solution(object):
def numSubseq(self, nums, target):
"""
:type nums: List[int]
:type target: int
:rtype: int
"""
nums.sort()
mod = 10**9+7
n = len(nums)
l = ans = 0
r = n - 1
while l <= r:
if nums[l] + nums[r] <= target:
ans += pow(2, r - l, mod)
l += 1
else:
r -= 1
return ans % mod
| [
"[email protected]"
]
| |
9f95a27bc89138cd60a4c119c7e5cb81011fd2cc | 17b0f34996ed63d14fb3ae2b09e3de866740a27e | /website/settings.py | a0a6ce9dc331e64a2e3ffe1d08f441cb34c00567 | [
"MIT"
]
| permissive | Alexmhack/django_blog | 6ca47d4d294c1886eaa19ee866395144f1d2bce7 | ffb08983ca0aff2fca15961c64168bbb8d55311b | refs/heads/master | 2020-03-28T01:55:32.939171 | 2018-09-13T13:05:55 | 2018-09-13T13:05:55 | 147,532,712 | 1 | 0 | null | null | null | null | UTF-8 | Python | false | false | 3,335 | py | """
Django settings for website project.
Generated by 'django-admin startproject' using Django 2.1.1.
For more information on this file, see
https://docs.djangoproject.com/en/2.1/topics/settings/
For the full list of settings and their values, see
https://docs.djangoproject.com/en/2.1/ref/settings/
"""
import os
# Build paths inside the project like this: os.path.join(BASE_DIR, ...)
BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
# Quick-start development settings - unsuitable for production
# See https://docs.djangoproject.com/en/2.1/howto/deployment/checklist/
# SECURITY WARNING: keep the secret key used in production secret!
SECRET_KEY = '1g61cdt=p!#bl-4r&8aooqx72aiang6+=)_3#bva)4yd0a@6^f'
# SECURITY WARNING: don't run with debug turned on in production!
DEBUG = True
ALLOWED_HOSTS = []
# Application definition
INSTALLED_APPS = [
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
'posts',
]
MIDDLEWARE = [
'django.middleware.security.SecurityMiddleware',
'django.contrib.sessions.middleware.SessionMiddleware',
'django.middleware.common.CommonMiddleware',
'django.middleware.csrf.CsrfViewMiddleware',
'django.contrib.auth.middleware.AuthenticationMiddleware',
'django.contrib.messages.middleware.MessageMiddleware',
'django.middleware.clickjacking.XFrameOptionsMiddleware',
]
ROOT_URLCONF = 'website.urls'
TEMPLATES = [
{
'BACKEND': 'django.template.backends.django.DjangoTemplates',
'DIRS': [os.path.join(BASE_DIR, 'templates')],
'APP_DIRS': True,
'OPTIONS': {
'context_processors': [
'django.template.context_processors.debug',
'django.template.context_processors.request',
'django.contrib.auth.context_processors.auth',
'django.contrib.messages.context_processors.messages',
],
},
},
]
WSGI_APPLICATION = 'website.wsgi.application'
# Database
# https://docs.djangoproject.com/en/2.1/ref/settings/#databases
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': os.path.join(BASE_DIR, 'db.sqlite3'),
}
}
# Password validation
# https://docs.djangoproject.com/en/2.1/ref/settings/#auth-password-validators
AUTH_PASSWORD_VALIDATORS = [
{
'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator',
},
{
'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator',
},
{
'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator',
},
{
'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator',
},
]
# Internationalization
# https://docs.djangoproject.com/en/2.1/topics/i18n/
LANGUAGE_CODE = 'en-us'
TIME_ZONE = 'UTC'
USE_I18N = True
USE_L10N = True
USE_TZ = True
# Static files (CSS, JavaScript, Images)
# https://docs.djangoproject.com/en/2.1/howto/static-files/
STATIC_URL = '/static/'
STATICFILES_DIRS = [
os.path.join(BASE_DIR, 'static')
]
STATIC_ROOT = os.path.join(os.path.dirname(BASE_DIR), 'static_cdn')
MEDIA_ROOT = os.path.join(os.path.dirname(BASE_DIR), 'media_cdn')
| [
"[email protected]"
]
| |
35416f386997d9306cdc80e0b9d426b66dd86c93 | 53784d3746eccb6d8fca540be9087a12f3713d1c | /res/packages/scripts/scripts/common/Lib/distutils/tests/test_install.py | 992b281d3dd630b90577a87c6e7387582f4872a4 | []
| no_license | webiumsk/WOT-0.9.17.1-CT | 736666d53cbd0da6745b970e90a8bac6ea80813d | d7c3cf340ae40318933e7205bf9a17c7e53bac52 | refs/heads/master | 2021-01-09T06:00:33.898009 | 2017-02-03T21:40:17 | 2017-02-03T21:40:17 | 80,870,824 | 0 | 0 | null | null | null | null | WINDOWS-1250 | Python | false | false | 7,714 | py | # 2017.02.03 21:58:16 Střední Evropa (běžný čas)
# Embedded file name: scripts/common/Lib/distutils/tests/test_install.py
"""Tests for distutils.command.install."""
import os
import sys
import unittest
import site
from test.test_support import captured_stdout, run_unittest
from distutils import sysconfig
from distutils.command.install import install
from distutils.command import install as install_module
from distutils.command.build_ext import build_ext
from distutils.command.install import INSTALL_SCHEMES
from distutils.core import Distribution
from distutils.errors import DistutilsOptionError
from distutils.extension import Extension
from distutils.tests import support
def _make_ext_name(modname):
if os.name == 'nt' and sys.executable.endswith('_d.exe'):
modname += '_d'
return modname + sysconfig.get_config_var('SO')
class InstallTestCase(support.TempdirManager, support.LoggingSilencer, unittest.TestCase):
def test_home_installation_scheme(self):
builddir = self.mkdtemp()
destination = os.path.join(builddir, 'installation')
dist = Distribution({'name': 'foopkg'})
dist.script_name = os.path.join(builddir, 'setup.py')
dist.command_obj['build'] = support.DummyCommand(build_base=builddir, build_lib=os.path.join(builddir, 'lib'))
cmd = install(dist)
cmd.home = destination
cmd.ensure_finalized()
self.assertEqual(cmd.install_base, destination)
self.assertEqual(cmd.install_platbase, destination)
def check_path(got, expected):
got = os.path.normpath(got)
expected = os.path.normpath(expected)
self.assertEqual(got, expected)
libdir = os.path.join(destination, 'lib', 'python')
check_path(cmd.install_lib, libdir)
check_path(cmd.install_platlib, libdir)
check_path(cmd.install_purelib, libdir)
check_path(cmd.install_headers, os.path.join(destination, 'include', 'python', 'foopkg'))
check_path(cmd.install_scripts, os.path.join(destination, 'bin'))
check_path(cmd.install_data, destination)
@unittest.skipIf(sys.version < '2.6', 'site.USER_SITE was introduced in 2.6')
def test_user_site(self):
self.old_user_base = site.USER_BASE
self.old_user_site = site.USER_SITE
self.tmpdir = self.mkdtemp()
self.user_base = os.path.join(self.tmpdir, 'B')
self.user_site = os.path.join(self.tmpdir, 'S')
site.USER_BASE = self.user_base
site.USER_SITE = self.user_site
install_module.USER_BASE = self.user_base
install_module.USER_SITE = self.user_site
def _expanduser(path):
return self.tmpdir
self.old_expand = os.path.expanduser
os.path.expanduser = _expanduser
def cleanup():
site.USER_BASE = self.old_user_base
site.USER_SITE = self.old_user_site
install_module.USER_BASE = self.old_user_base
install_module.USER_SITE = self.old_user_site
os.path.expanduser = self.old_expand
self.addCleanup(cleanup)
for key in ('nt_user', 'unix_user', 'os2_home'):
self.assertIn(key, INSTALL_SCHEMES)
dist = Distribution({'name': 'xx'})
cmd = install(dist)
options = [ name for name, short, lable in cmd.user_options ]
self.assertIn('user', options)
cmd.user = 1
self.assertFalse(os.path.exists(self.user_base))
self.assertFalse(os.path.exists(self.user_site))
cmd.ensure_finalized()
self.assertTrue(os.path.exists(self.user_base))
self.assertTrue(os.path.exists(self.user_site))
self.assertIn('userbase', cmd.config_vars)
self.assertIn('usersite', cmd.config_vars)
def test_handle_extra_path(self):
dist = Distribution({'name': 'xx',
'extra_path': 'path,dirs'})
cmd = install(dist)
cmd.handle_extra_path()
self.assertEqual(cmd.extra_path, ['path', 'dirs'])
self.assertEqual(cmd.extra_dirs, 'dirs')
self.assertEqual(cmd.path_file, 'path')
cmd.extra_path = ['path']
cmd.handle_extra_path()
self.assertEqual(cmd.extra_path, ['path'])
self.assertEqual(cmd.extra_dirs, 'path')
self.assertEqual(cmd.path_file, 'path')
dist.extra_path = cmd.extra_path = None
cmd.handle_extra_path()
self.assertEqual(cmd.extra_path, None)
self.assertEqual(cmd.extra_dirs, '')
self.assertEqual(cmd.path_file, None)
cmd.extra_path = 'path,dirs,again'
self.assertRaises(DistutilsOptionError, cmd.handle_extra_path)
return
def test_finalize_options(self):
dist = Distribution({'name': 'xx'})
cmd = install(dist)
cmd.prefix = 'prefix'
cmd.install_base = 'base'
self.assertRaises(DistutilsOptionError, cmd.finalize_options)
cmd.install_base = None
cmd.home = 'home'
self.assertRaises(DistutilsOptionError, cmd.finalize_options)
cmd.prefix = None
cmd.user = 'user'
self.assertRaises(DistutilsOptionError, cmd.finalize_options)
return
def test_record(self):
install_dir = self.mkdtemp()
project_dir, dist = self.create_dist(py_modules=['hello'], scripts=['sayhi'])
os.chdir(project_dir)
self.write_file('hello.py', "def main(): print 'o hai'")
self.write_file('sayhi', 'from hello import main; main()')
cmd = install(dist)
dist.command_obj['install'] = cmd
cmd.root = install_dir
cmd.record = os.path.join(project_dir, 'filelist')
cmd.ensure_finalized()
cmd.run()
f = open(cmd.record)
try:
content = f.read()
finally:
f.close()
found = [ os.path.basename(line) for line in content.splitlines() ]
expected = ['hello.py',
'hello.pyc',
'sayhi',
'UNKNOWN-0.0.0-py%s.%s.egg-info' % sys.version_info[:2]]
self.assertEqual(found, expected)
def test_record_extensions(self):
install_dir = self.mkdtemp()
project_dir, dist = self.create_dist(ext_modules=[Extension('xx', ['xxmodule.c'])])
os.chdir(project_dir)
support.copy_xxmodule_c(project_dir)
buildextcmd = build_ext(dist)
support.fixup_build_ext(buildextcmd)
buildextcmd.ensure_finalized()
cmd = install(dist)
dist.command_obj['install'] = cmd
dist.command_obj['build_ext'] = buildextcmd
cmd.root = install_dir
cmd.record = os.path.join(project_dir, 'filelist')
cmd.ensure_finalized()
cmd.run()
f = open(cmd.record)
try:
content = f.read()
finally:
f.close()
found = [ os.path.basename(line) for line in content.splitlines() ]
expected = [_make_ext_name('xx'), 'UNKNOWN-0.0.0-py%s.%s.egg-info' % sys.version_info[:2]]
self.assertEqual(found, expected)
def test_debug_mode(self):
old_logs_len = len(self.logs)
install_module.DEBUG = True
try:
with captured_stdout():
self.test_record()
finally:
install_module.DEBUG = False
self.assertGreater(len(self.logs), old_logs_len)
def test_suite():
return unittest.makeSuite(InstallTestCase)
if __name__ == '__main__':
run_unittest(test_suite())
# okay decompyling c:\Users\PC\wotsources\files\originals\res\packages\scripts\scripts\common\Lib\distutils\tests\test_install.pyc
# decompiled 1 files: 1 okay, 0 failed, 0 verify failed
# 2017.02.03 21:58:16 Střední Evropa (běžný čas)
| [
"[email protected]"
]
| |
620c6c6893445cae1a01ae8f012ca7b7c9100d81 | 87d0de6a06451d7aa561b72d908d06e68074f650 | /core/arxiv/submission/services/classifier/tests/tests.py | 9e66950fe6b95174cabeec5454cdb7de7e8517cc | [
"MIT"
]
| permissive | arXiv/arxiv-submission-core | 3e79085ee408fd83b4dd4c0c1e8ccc53dd282230 | 6077ce4e0685d67ce7010800083a898857158112 | refs/heads/develop | 2022-01-21T02:11:56.384920 | 2020-07-31T18:16:17 | 2020-07-31T18:16:17 | 106,854,828 | 14 | 8 | MIT | 2022-01-06T22:29:31 | 2017-10-13T17:36:51 | Python | UTF-8 | Python | false | false | 8,910 | py | """Tests for classic classifier service integration."""
import os
import json
from unittest import TestCase, mock
from flask import Flask
from arxiv.integration.api import status, exceptions
from .. import classifier
DATA_PATH = os.path.join(os.path.split(os.path.abspath(__file__))[0], "data")
SAMPLE_PATH = os.path.join(DATA_PATH, "sampleResponse.json")
LINENOS_PATH = os.path.join(DATA_PATH, "linenos.json")
SAMPLE_FAILED_PATH = os.path.join(DATA_PATH, 'sampleFailedCyrillic.json')
class TestClassifier(TestCase):
"""Tests for :class:`classifier.Classifier`."""
def setUp(self):
"""Create an app for context."""
self.app = Flask('test')
self.app.config.update({
'CLASSIFIER_ENDPOINT': 'http://foohost:1234',
'CLASSIFIER_VERIFY': False
})
@mock.patch('arxiv.integration.api.service.requests.Session')
def test_classifier_with_service_unavailable(self, mock_Session):
"""The classifier service is unavailable."""
mock_Session.return_value = mock.MagicMock(
post=mock.MagicMock(
return_value=mock.MagicMock(
status_code=status.SERVICE_UNAVAILABLE
)
)
)
with self.app.app_context():
cl = classifier.Classifier.current_session()
with self.assertRaises(exceptions.RequestFailed):
cl.classify(b'somecontent')
@mock.patch('arxiv.integration.api.service.requests.Session')
def test_classifier_cannot_classify(self, mock_Session):
"""The classifier returns without classification suggestions."""
with open(SAMPLE_FAILED_PATH) as f:
data = json.load(f)
mock_Session.return_value = mock.MagicMock(
post=mock.MagicMock(
return_value=mock.MagicMock(
status_code=status.OK,
json=mock.MagicMock(return_value=data)
)
)
)
with self.app.app_context():
cl = classifier.Classifier.current_session()
suggestions, flags, counts = cl.classify(b'foo')
self.assertEqual(len(suggestions), 0, "There are no suggestions")
self.assertEqual(len(flags), 4, "There are four flags")
self.assertEqual(counts.chars, 50475)
self.assertEqual(counts.pages, 8)
self.assertEqual(counts.stops, 9)
self.assertEqual(counts.words, 4799)
@mock.patch('arxiv.integration.api.service.requests.Session')
def test_classifier_returns_suggestions(self, mock_Session):
"""The classifier returns classification suggestions."""
with open(SAMPLE_PATH) as f:
data = json.load(f)
mock_Session.return_value = mock.MagicMock(
post=mock.MagicMock(
return_value=mock.MagicMock(
status_code=status.OK,
json=mock.MagicMock(return_value=data)
)
)
)
expected = {
'physics.comp-ph': 0.47,
'cs.MS': 0.47,
'math.NA': 0.46
}
with self.app.app_context():
cl = classifier.Classifier.current_session()
suggestions, flags, counts = cl.classify(b'foo')
self.assertEqual(len(suggestions), 3, "There are three suggestions")
for suggestion in suggestions:
self.assertEqual(round(suggestion.probability, 2),
expected[suggestion.category])
self.assertEqual(len(flags), 0, "There are no flags")
self.assertEqual(counts.chars, 15107)
self.assertEqual(counts.pages, 12)
self.assertEqual(counts.stops, 804)
self.assertEqual(counts.words, 2860)
@mock.patch('arxiv.integration.api.service.requests.Session')
def test_classifier_withlinenos(self, mock_Session):
"""The classifier returns classification suggestions."""
with open(LINENOS_PATH) as f:
data = json.load(f)
mock_Session.return_value = mock.MagicMock(
post=mock.MagicMock(
return_value=mock.MagicMock(
status_code=status.OK,
json=mock.MagicMock(return_value=data)
)
)
)
expected = {
'astro-ph.SR': 0.77,
'astro-ph.GA': 0.7,
'astro-ph.EP': 0.69,
'astro-ph.HE': 0.57,
'astro-ph.IM': 0.57
}
with self.app.app_context():
cl = classifier.Classifier.current_session()
suggestions, flags, counts = cl.classify(b'foo')
self.assertEqual(len(suggestions), 5, "There are five suggestions")
for suggestion in suggestions:
self.assertEqual(
round(suggestion.probability, 2),
expected[suggestion.category],
"Expected probability of %s for %s" %
(expected[suggestion.category], suggestion.category)
)
self.assertEqual(len(flags), 2, "There are two flags")
self.assertIn("%stop", [flag.key for flag in flags])
self.assertIn("linenos", [flag.key for flag in flags])
self.assertEqual(counts.chars, 125436)
self.assertEqual(counts.pages, 30)
self.assertEqual(counts.stops, 3774)
self.assertEqual(counts.words, 34211)
class TestClassifierModule(TestCase):
"""Tests for :mod:`classifier`."""
def setUp(self):
"""Create an app for context."""
self.app = Flask('test')
self.app.config.update({
'CLASSIFIER_ENDPOINT': 'http://foohost:1234',
'CLASSIFIER_VERIFY': False
})
@mock.patch('arxiv.integration.api.service.requests.Session')
def test_classifier_unavailable(self, mock_Session):
"""The classifier service is unavailable."""
mock_post = mock.MagicMock(
return_value=mock.MagicMock(
status_code=status.SERVICE_UNAVAILABLE
)
)
mock_Session.return_value = mock.MagicMock(post=mock_post)
with self.app.app_context():
cl = classifier.Classifier.current_session()
with self.assertRaises(exceptions.RequestFailed):
cl.classify(b'somecontent')
endpoint = f'http://foohost:1234/'
self.assertEqual(mock_post.call_args[0][0], endpoint)
@mock.patch('arxiv.integration.api.service.requests.Session')
def test_classifier_cannot_classify(self, mock_Session):
"""The classifier returns without classification suggestions."""
with open(SAMPLE_FAILED_PATH) as f:
data = json.load(f)
mock_post = mock.MagicMock(
return_value=mock.MagicMock(
status_code=status.OK,
json=mock.MagicMock(return_value=data)
)
)
mock_Session.return_value = mock.MagicMock(post=mock_post)
with self.app.app_context():
cl = classifier.Classifier.current_session()
suggestions, flags, counts = cl.classify(b'foo')
self.assertEqual(len(suggestions), 0, "There are no suggestions")
self.assertEqual(len(flags), 4, "There are four flags")
self.assertEqual(counts.chars, 50475)
self.assertEqual(counts.pages, 8)
self.assertEqual(counts.stops, 9)
self.assertEqual(counts.words, 4799)
endpoint = f'http://foohost:1234/'
self.assertEqual(mock_post.call_args[0][0], endpoint)
@mock.patch('arxiv.integration.api.service.requests.Session')
def test_classifier_returns_suggestions(self, mock_Session):
"""The classifier returns classification suggestions."""
with open(SAMPLE_PATH) as f:
data = json.load(f)
mock_post = mock.MagicMock(
return_value=mock.MagicMock(
status_code=status.OK,
json=mock.MagicMock(return_value=data)
)
)
mock_Session.return_value = mock.MagicMock(post=mock_post)
expected = {
'physics.comp-ph': 0.47,
'cs.MS': 0.47,
'math.NA': 0.46
}
with self.app.app_context():
cl = classifier.Classifier.current_session()
suggestions, flags, counts = cl.classify(b'foo')
self.assertEqual(len(suggestions), 3, "There are three suggestions")
for suggestion in suggestions:
self.assertEqual(round(suggestion.probability, 2),
expected[suggestion.category])
self.assertEqual(len(flags), 0, "There are no flags")
self.assertEqual(counts.chars, 15107)
self.assertEqual(counts.pages, 12)
self.assertEqual(counts.stops, 804)
self.assertEqual(counts.words, 2860)
endpoint = f'http://foohost:1234/'
self.assertEqual(mock_post.call_args[0][0], endpoint)
| [
"[email protected]"
]
| |
4a1b97ecf31fc70c5c028327969c8e09b80a2cae | 62e58c051128baef9452e7e0eb0b5a83367add26 | /x12/3070/205003070.py | 3456808fc041576fb61f383fc7f6c51e56317478 | []
| no_license | dougvanhorn/bots-grammars | 2eb6c0a6b5231c14a6faf194b932aa614809076c | 09db18d9d9bd9d92cefbf00f1c0de1c590fe3d0d | refs/heads/master | 2021-05-16T12:55:58.022904 | 2019-05-17T15:22:23 | 2019-05-17T15:22:23 | 105,274,633 | 0 | 0 | null | 2017-09-29T13:21:21 | 2017-09-29T13:21:21 | null | UTF-8 | Python | false | false | 1,791 | py | from bots.botsconfig import *
from records003070 import recorddefs
syntax = {
'version' : '00403', #version of ISA to send
'functionalgroup' : 'MN',
}
structure = [
{ID: 'ST', MIN: 1, MAX: 1, LEVEL: [
{ID: 'BGN', MIN: 1, MAX: 1},
{ID: 'TRN', MIN: 0, MAX: 1},
{ID: 'NM1', MIN: 1, MAX: 5, LEVEL: [
{ID: 'N2', MIN: 0, MAX: 2},
{ID: 'N3', MIN: 0, MAX: 2},
{ID: 'N4', MIN: 0, MAX: 1},
{ID: 'PER', MIN: 0, MAX: 2},
{ID: 'REF', MIN: 0, MAX: 4},
]},
{ID: 'MNC', MIN: 1, MAX: 99999, LEVEL: [
{ID: 'SOM', MIN: 0, MAX: 1},
{ID: 'REF', MIN: 0, MAX: 20},
{ID: 'DTM', MIN: 0, MAX: 5},
{ID: 'N4', MIN: 0, MAX: 1},
{ID: 'INT', MIN: 0, MAX: 2},
{ID: 'PCT', MIN: 0, MAX: 10},
{ID: 'AMT', MIN: 0, MAX: 10},
{ID: 'QTY', MIN: 0, MAX: 6},
{ID: 'YNQ', MIN: 0, MAX: 12},
{ID: 'III', MIN: 0, MAX: 12},
{ID: 'CDI', MIN: 0, MAX: 99999, LEVEL: [
{ID: 'LX', MIN: 0, MAX: 99999, LEVEL: [
{ID: 'VDI', MIN: 0, MAX: 99999},
{ID: 'YNQ', MIN: 0, MAX: 4},
{ID: 'AMT', MIN: 0, MAX: 6},
{ID: 'PCT', MIN: 0, MAX: 6},
{ID: 'DTM', MIN: 0, MAX: 5},
{ID: 'III', MIN: 0, MAX: 12},
]},
]},
{ID: 'IN1', MIN: 1, MAX: 99999, LEVEL: [
{ID: 'IN2', MIN: 0, MAX: 10},
{ID: 'PER', MIN: 0, MAX: 2},
{ID: 'REF', MIN: 0, MAX: 15},
{ID: 'NX1', MIN: 0, MAX: 99999, LEVEL: [
{ID: 'NX2', MIN: 0, MAX: 10},
]},
]},
]},
{ID: 'CTT', MIN: 0, MAX: 1},
{ID: 'SE', MIN: 1, MAX: 1},
]}
]
| [
"[email protected]"
]
| |
2111217e5d242a6101b463046e8af164ea271f71 | 4e879e994720100a9354895af2bb9be33b38a42b | /cConsolidation/c_OOP/cm_ClassMethods/110_ClassMethods_002_factoryMethods_example_002.py | 396e108d6539a3d77f23d3f9c9396635d68ffe85 | []
| no_license | pepitogrilho/learning_python | 80314ec97091238ed5cc3ed47422d2e6073a3280 | bbdc78a9a0513c13d991701859bcfe7a8e614a49 | refs/heads/master | 2023-04-09T15:07:08.866721 | 2023-04-02T18:45:47 | 2023-04-02T18:45:47 | 230,527,165 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 651 | py | # -*- coding: utf-8 -*-
"""
- Instance Methods receive the OBJECT as argument
- Class Methods receive the CLASS as argument
- Static Methods don't receive neither the OBJECT, nor the CLASS
Class Methods are called by a class, which is passed to the ...
.... cls parameter
A common use of these are factory
"""
class Vector2D:
def __init__(self, x, y):
if x > 0:
self.x = x
else:
self.x = 0
if y > 0:
self.y = y
else:
self.y = 0
def area(self):
return self.x * self.y
@classmethod
def newVector2D(cls,coord):
return cls(coord, coord)
v01 = Vector2D.newVector2D(4)
print(v01.area()) | [
"[email protected]"
]
| |
a5b47c634aa82aa560d7c99745cdfd77c7fce511 | 400e10dfd9e21ae5092f5184753faa91a9df9277 | /python_structure/객체 미리연산.py | 1808df21a4e0c094ebbb3047219aac426601b9d2 | []
| no_license | MyaGya/Python_Practice | d4aff327a76010603f038bcf4491a14ea51de304 | 0391d1aa6d530f53715c968e5ea6a02cf745fde5 | refs/heads/master | 2023-06-14T07:48:19.998573 | 2021-07-12T05:50:52 | 2021-07-12T05:50:52 | 280,452,168 | 0 | 0 | null | 2021-06-23T13:37:56 | 2020-07-17T14:56:24 | Python | UTF-8 | Python | false | false | 1,205 | py | import time
start = time.time()
print("배열을 만드는 데 걸리는 시간 : ", end=" ")
data = [i for i in range(100000)]
end = time.time()
print(end - start)
start = time.time()
print("배열을 출력하는 데 걸리는 시간 : ", end=" ")
print(data)
end = time.time()
print(end - start)
# map 연산을 걸리는 시간
start = time.time()
print("map 연산 시간 : ", end=" ")
data2 = map(str,data)
end = time.time()
print(data2)
print(end - start)
# 그렇다면 객체 데이터 내부를 모두 바꾸어도 map 연산에는 문제가 없을까?
start = time.time()
print("리스트 값을 일부분 변경시키는 데 걸리는 시간 : ", end=" ")
for i in range(10000):
data[i] = "XXX"
end = time.time()
print(end - start)
start = time.time()
print("원본 데이터를 변경한 후 값을 출력하는 데 걸리는 시간 : ", end=" ")
print(list(data2))
end = time.time()
print(end - start)
# 이로써 원본 데이터가 바뀌면 map리스트가 가리키고 있는 명령어는 바뀐 명령어로 실행됨을 알 수 있다.
# 따라서 따로 원본 데이터의 객체를 저장하는 것이 아닌 포인터 방식으로 가리키고 있음을 알 수 있다.
| [
"[email protected]"
]
| |
aca0869423c75d58481d19ce9e4a5eaed6b7a4dc | 9743d5fd24822f79c156ad112229e25adb9ed6f6 | /xai/brain/wordbase/verbs/_envy.py | 39953a52249af41d6c5335f74ba7d1b427f27fad | [
"MIT"
]
| permissive | cash2one/xai | de7adad1758f50dd6786bf0111e71a903f039b64 | e76f12c9f4dcf3ac1c7c08b0cc8844c0b0a104b6 | refs/heads/master | 2021-01-19T12:33:54.964379 | 2017-01-28T02:00:50 | 2017-01-28T02:00:50 | null | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 331 | py |
#calss header
class _ENVY():
def __init__(self,):
self.name = "ENVY"
self.definitions = [u'to wish that you had something that another person has: ']
self.parents = []
self.childen = []
self.properties = []
self.jsondata = {}
self.specie = 'verbs'
def run(self, obj1 = [], obj2 = []):
return self.jsondata
| [
"[email protected]"
]
| |
9e2cfe03c71b87d255becb0e3bfe46b09662220c | 5b5a49643c75aa43d5a876608383bc825ae1e147 | /tests/lists/p126_test.py | 9ab97710827b437465cca8b9f65d6457d8b608fb | []
| no_license | rscai/python99 | 281d00473c0dc977f58ba7511c5bcb6f38275771 | 3fa0cb7683ec8223259410fb6ea2967e3d0e6f61 | refs/heads/master | 2020-04-12T09:08:49.500799 | 2019-10-06T07:47:17 | 2019-10-06T07:47:17 | 162,393,238 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 236 | py | from python99.lists.p126 import combination
import itertools
def test_combination():
l = [1, 2, 3, 4, 5, 6, 7, 8, 9, 0]
k = 2
actual = combination(l, k)
assert actual == [list(e) for e in itertools.combinations(l, k)]
| [
"[email protected]"
]
| |
10dcd966e82a61e2e0650c4a7fd206471ed57224 | 90cea58e80309d2dff88f73f3a43ed5f943ff97d | /DotProduct.py | 16c5d89db0ce1644b33b46100a69c608f8ce680f | []
| no_license | SaiSujithReddy/CodePython | 0b65c82b0e71dba2bbd4c1aefec4e6cd6fd42341 | 4c05b7909092009afffa4536fd284060d20e462d | refs/heads/master | 2022-02-24T09:21:15.284745 | 2019-10-07T23:36:17 | 2019-10-07T23:36:17 | 106,611,251 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 1,539 | py | #3 3 1 4 4 2 5 3 1 7 2 6 5 1
def dot_product(list_user_input):
print("inside dot product")
first_vector_length = list_user_input[0]
second_vector_length = list_user_input[1]
print("length of first vector is ",first_vector_length)
if first_vector_length != second_vector_length:
print("Incorrect input of vector lengths")
return
result = 0
first_vector = list_user_input[2:2+(first_vector_length*2)]
second_vector = list_user_input[2+(first_vector_length * 2):]
if len(first_vector) != len(second_vector):
print("Incorrect input of vectors")
return
print("elements of first vector",first_vector)
print("elements of second vector",second_vector)
# for x in range(len(first_vector)):
# for y in range(len(second_vector)):
x=0
y=0
while x < len(first_vector) and y < len(second_vector):
print("x,y are", x,y)
if first_vector[x] == second_vector[y]:
result += first_vector[x+1]*second_vector[y+1]
x += 2
y += 2
print("values after incrementing by 2, x, y",x,y)
elif first_vector[x] < second_vector[y]:
x += 2
else:
y += 2
print(result)
try:
user_input = input('Enter your input: ')
print(user_input)
except ValueError:
print("Error in input")
list_user_input = list(user_input.replace(" ",""))
list_user_input_integer = [int(i) for i in list_user_input]
#find dot product
dot_product(list_user_input_integer) | [
"[email protected]"
]
| |
c96653a68b279bac906eb7d31a76f6cc76b3e85d | 184310f55b58e854dc3b6c58599ef99bc4c95739 | /hujian_api/API_service/Templight/Official_02.py | 8fc915dc8e1d6048088919cf706caaf6d96527ac | []
| no_license | tanjijun1/Python_API | c8585821a627c399fea1ab31bb024be6b82dd3ab | 3c4771875870ffe425d2d39fc28a50449b1752f2 | refs/heads/master | 2023-01-07T23:30:30.284433 | 2020-11-11T08:43:10 | 2020-11-11T08:43:10 | null | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 2,546 | py | import pytest
import allure
import requests
import json
import time
from Templight import GetMysqlData
from Templight import GetMysqlDataSeller
from Common import Post
from Common import Get
from Common import Assert
from Common import Consts
class Official_01:
#官网留言
#type--string反馈类型, feedback/advice/other
def Off_01(self,userId):
sessionX = requests.session()
post_req = Post.Post()
ass = Assert.Assertions()
url = 'http://172.16.2.101:3000/v1/site/add_feedback'
params = {'name':'胡健','contact':'13418483933','content':'吃饭了没?','userId':1,'type':'feedback','mobileModel':'CL001','appVersion':'0.0.1','mobileOSVersion':'10.0.2','deviceModel':'360','images':'https://zhiyundata.oss-cn-shenzhen.aliyuncs.com/zyplay/site_feedback/2018-10-24-11:53:05.jpg'}
params['userId'] = userId
res = post_req.post_model_b(sessionX, url, params)
print(res)
resCode = res['code']
resText = res['text']
assert ass.assert_code(resCode, 200)
assert ass.assert_in_text(resText, '成功')
Consts.RESULT_LIST.append('True')
#官网订阅
#手机, 邮箱手机二选一
def Off_02(self):
sessionX = requests.session()
post_req = Post.Post()
ass = Assert.Assertions()
url = 'http://172.16.2.101:3000/v1/site/add_followmail'
params = {'mobile':'13418483933', 'nickname':'hj'}
res = post_req.post_model_b(sessionX, url, params)
print(res)
resCode = res['code']
resText = res['text']
assert ass.assert_code(resCode, 200)
assert ass.assert_in_text(resText, '成功')
Consts.RESULT_LIST.append('True')
#外链点击日志
def Off_03(self,userId,linkId):
sessionX = requests.session()
post_req = Post.Post()
ass = Assert.Assertions()
url = 'http://172.16.2.101:3000/v1/site/add_link_click_log'
params = { 'linkId':1, 'token':'12134567890121345678901213456789012'}
data = GetMysqlData.GetMysqlData()
tokenData = data.getTokenByUserId(userId)
params['token'] = tokenData
params['linkId'] = linkId
res = post_req.post_model_b(sessionX, url, params)
print(res)
resCode = res['code']
resText = res['text']
assert ass.assert_code(resCode, 200)
assert ass.assert_in_text(resText, '成功')
Consts.RESULT_LIST.append('True')
if __name__ == '__main__':
a = Official_02()
a.Off_03()
| [
"[email protected]"
]
| |
7f62a03f77d18d0c38b6ffa63fcc0f1181324bce | 0c049d4be711ec3d0bc9d37890ea3e79409322fd | /teseoliv3f.py | ef4d95b3709ba2b0d9ad5b7e43dc3101fe33cd7f | []
| no_license | zerynth/lib-stm-teseoliv3f | 216a94b15ae7ee4c248fd7cebbd7923cc5ed9316 | f8f553345c651d4771955851dd9329928159874a | refs/heads/master | 2021-06-13T11:04:56.265590 | 2020-09-24T15:42:00 | 2020-09-24T15:42:00 | 195,260,273 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 12,049 | py | """
.. module:: teseoliv3f
*****************
TeseoLiv3F Module
*****************
This module implements the Zerynth driver for the STM Teseo Liv3F GNSS chip (`Product page <https://www.st.com/en/positioning/teseo-liv3f.html>`_).
The following functionalities are implemented:
* retrieve the current location fix if present
* retrieve the current UTC time
The driver starts a background thread continuously tracking the last available location fix. The frequency of fixes can be customized.
The driver support serial mode only.
Location fixes are obtained by parsing NMEA sentences of type RMC and GGA. Obtaining a fix or UTC time are thread safe operations.
"""
import streams
import threading
import timers
SERIAL=0
I2C=1
debug = False
def print_d(*args):
if debug:
print(*args)
_alive = 0
_except = 0
class TeseoLiv3F():
"""
.. class:: Teseo(ifc, mode=SERIAL, baud=9600,clock=400000, addr=0x00)
Creates an intance of TeseoLiv3F.
:param ifc: interface used. One of SERIAL0, SERIAL1, ...
:param mode: one of SERIAL or I2C. Only SERIAL mode supported at the moment.
:param baud: serial speed
:param clock: I2C clock frequency (not supported)
:param addr: I2C address (not supported)
Example: ::
from teseoliv3f import TeseoLiv3F
...
gnss = TeseoLiv3F.TeseoLiv3F(SERIAL1)
gnss.start()
mpl.init()
alt = mpl.get_alt()
pres = mpl.get_pres()
"""
def __init__(self,ifc,mode=SERIAL,baud=9600,clock=400000,addr=0x00):
self.mode = mode
self.running=False
self.ifc = ifc
self.baud = baud
self.th = None
self._tm = [0,0,0,0,0,0,0]
self._lat = 0
self._lon = 0
self._spd = 0
self._cog = 0
self._nsat = 0
self._hdop = 0
self._vdop = 0
self._pdop = 0
self._alt = 0
self._cfix = [None]*10
self._time = None
self._fix = None
self._rmc = False
self._gga = False
self._gsa = False
self._utc = False
self._lock = threading.Lock()
def start(self,rstpin=None,rstval=0):
"""
.. method:: start(rstpin=None,rstval=0)
Start the TeseoLiv3F.
:param rstpin: if given, uses :samp:`rstpin` as the reset pin of Teseo Liv3F
:param rstval: the value to move :samp:`rstpin` to
"""
# init rst if needed
if rstpin is not None:
pinMode(rstpin,OUTPUT_PUSHPULL)
digitalWrite(rstpin,rstval)
sleep(100)
if self.mode==SERIAL:
self.drv = streams.serial(self.ifc,baud=self.baud,set_default=False)
else:
raise UnsupportedError
if self.th:
self.running=True
else:
self.th = thread(self._run)
sleep(2000)
def stop(self):
"""
.. method:: stop()
Stop the TeseoLiv3F by putting it into backup mode. It can be restarted only by setting the FORCE_ON pin to high.
Refer to the Teseo Liv3F documentation for details `here <https://www.st.com/resource/en/datasheet/teseo-liv3f.pdf>`_
"""
if self.mode==SERIAL:
self.drv.write("$PMTK225,4*2F\r\n")
else:
raise UnsupportedError
def pause(self):
"""
.. method:: pause()
Stop the Teseo Liv3F by putting it into standby mode. It can be restarted by calling :ref:`resume`.
Refer to the Teseo Liv3F documentation for details `here <https://www.st.com/resource/en/datasheet/teseo-liv3f.pdf>`_
"""
if self.mode==SERIAL:
self.drv.write("$PMTK161,0*28\r\n")
else:
raise UnsupportedError
def resume(self):
"""
.. method:: resume()
Wake up the Teseo Liv3F from standby mode.
Refer to the Teseo Liv3F documentation for details `here <https://www.st.com/resource/en/datasheet/teseo-liv3f.pdf>`_
"""
if self.mode==SERIAL:
self.drv.write("$PMTK101*32\r\n")
else:
raise UnsupportedError
def set_rate(self,rate=1000):
"""
.. method:: set_rate(rate=1000)
Set the frequency for location fix (100-10000 milliseconds is the available range).
"""
msg = "PMTK220,"+str(rate)
crc=ord(msg[0])
for i in range(1,len(msg)):
crc = crc^ord(msg[i])
msg="$"+msg+"*"+hex(crc,"")+"\r\n"
if self.mode==SERIAL:
self.drv.write(msg)
else:
raise UnsupportedError
def fix(self):
"""
.. method:: fix()
Return the current fix or None if no fix is available.
A fix is a tuple with the following elements:
* latitude in decimal format (-89.9999 - 89.9999)
* longitude in decimal format (-179.9999 - 179.9999)
* altitude in meters
* speed in Km/h
* course over ground as degrees from true north
* number of satellites for this fix
* horizontal dilution of precision (0.5 - 99.9)
* vertical dilution of precision (0.5 - 99.9)
* positional dilution of precision (0.5 - 99.9)
* UTC time as a tuple (yyyy,MM,dd,hh,mm,ss,microseconds)
"""
self._lock.acquire()
r = self._fix
self._fix = None
self._lock.release()
return r
def has_fix(self):
"""
.. method:: has_fix()
Return True if a fix is available
"""
self._lock.acquire()
r = self._fix
self._lock.release()
return r is not None
def utc(self):
"""
.. method:: utc()
Return the current UTC time or None if no UTC time is available.
A UTC time is a tuple of (yyyy,MM,dd,hh,mm,ss,microseconds).
UTC time can be wrong if no fix has ever been obtained.
"""
r= None
self._lock.acquire()
if self._time:
r = self._time
self._time = None
self._lock.release()
return r
def has_utc(self):
"""
.. method:: has_utc()
Return True if a UTC time is available
"""
self._lock.acquire()
r = self._time
self._lock.release()
return r is not None
##################### Private
def _set_time(self,tm,dt):
yy = int(dt[4:])
if yy >= 100:
self._tm[0]=yy
if yy >= 80:
self._tm[0]=1900+yy
else:
self._tm[0]=2000+yy
self._tm[1]=int(dt[2:4])
self._tm[2]=int(dt[0:2])
self._tm[3]=int(tm[0:2])
self._tm[4]=int(tm[2:4])
self._tm[5]=int(tm[4:6])
self._tm[6]=int(tm[7:])
self._cfix[-1]=self._tm
self._utc=True
def _set_pos(self,lat,latp,lon,lonp):
m = lat.find('.')-2
self._lat = int(lat[0:m]) + float(lat[m:])/60
m = lon.find('.')-2
self._lon = int(lon[0:m]) + float(lon[m:])/60
if latp=="S":
self._lat = -self._lat
if lonp=="W":
self._lon = -self._lon
self._cfix[0]=self._lat
self._cfix[1]=self._lon
def _set_spd(self,spd):
self._spd = float(spd)*1.852 # knots to km/h
self._cfix[3] = self._spd
def _set_cog(self,cog):
self._cog = float(cog)
self._cfix[4] = self._cog
def _set_hdop(self,hdop):
self._hdop = float(hdop)
self._cfix[6] = self._hdop
def _set_vdop(self,vdop):
self._vdop = float(vdop)
self._cfix[7] = self._vdop
def _set_pdop(self,pdop):
self._pdop = float(pdop)
self._cfix[8] = self._pdop
def _set_alt(self,alt):
self._alt = float(alt)
self._cfix[2] = self._alt
def _set_nsat(self,nsat):
self._nsat = int(nsat)
self._cfix[5] = self._nsat
def _check(self,line):
try:
start = line.find('$')
end = line.find('*')
if start < 0 or end < 0 or end <= start+2:
print_d("TeseoLiv3F invalid line")
return None
crc=0
for ch in line[start+1:end]:
crc = crc^ch
check = int(line[end+1:end+3],16)
if crc == check:
return line[start:end]
print_d("TeseoLiv3F crc failed:",crc,check)
return None
except Exception as e:
print_d("TeseoLiv3F check", e)
return None
def _parse(self,line):
if (line is None) or len(line) < 8:
return
prefix = line[1:3]
cmd = line[3:6]
if cmd == "RMC":
flds = line.split(",")
if len(flds)<13:
return
tm = flds[1]
dt = flds[9]
self._set_time(tm,dt)
dv = flds[2]
if dv!="A":
# no fix
return
self._set_pos(flds[3],flds[4],flds[5],flds[6])
self._set_spd(flds[7])
self._set_cog(flds[8])
self._rmc = True
elif cmd == "GGA":
flds = line.split(",")
if len(flds)<15:
return
if flds[6]!="1":
# no fix
return
self._set_hdop(flds[8])
self._set_nsat(flds[7])
self._set_alt(flds[9])
self._gga = True
elif cmd == "GSA":
flds = line.split(",")
if len(flds)<18:
return
if flds[2]!="3":
# no 3D fix
return
self._set_hdop(flds[16])
self._set_vdop(flds[17])
self._set_pdop(flds[15])
self._gsa = True
else:
pass
if self._utc:
# we have time
self._lock.acquire()
self._time = (self._tm[0],self._tm[1],self._tm[2],self._tm[3],self._tm[4],self._tm[5],self._tm[6])
self._lock.release()
if self._rmc and self._gga:
# we have a fix
if not self._gsa:
# optional data VDOP, PDOP
self._cfix[7] = None
self._cfix[8] = None
self._lock.acquire()
self._fix = (
self._cfix[0],
self._cfix[1],
self._cfix[2],
self._cfix[3],
self._cfix[4],
self._cfix[5],
self._cfix[6],
self._cfix[7],
self._cfix[8],
(self._tm[0],self._tm[1],self._tm[2],self._tm[3],self._tm[4],self._tm[5],self._tm[6])
)
self._rmc = False
self._gga = False
self._gsa = False
self._utc = False
self._lock.release()
def _run(self):
print("TeseoLiv3F running on thread",threading.__rtos_do(8))
global _alive, _except
buffer=bytearray(256)
self.running=True
while True:
try:
if self.running:
line = self.drv.readline(buffer=buffer,size=256)
print_d(">",len(line),line)
line = self._check(line)
self._parse(line)
else:
sleep(1000)
_alive = _alive + 1
except Exception as e:
_except = _except + 1
print("TeseoLiv3F exception!")
print(e)
sleep(500)
| [
"[email protected]"
]
| |
ce7bf343442a329b5af057e2836c930e2a9ca155 | 5d4504fe2a4881d20669d2a19392c7ac0d9b2831 | /Prerequisites/Python27/Lib/site-packages/platformio/maintenance.py | 7894dbdaf15e7900909d73ab9df521f078e6e98c | []
| no_license | lanbing8023/esphome-tools | 5c98f513b768f71742dc68ad68271e22652db9ea | 6b641e2dcb35130432f2409c50e03ff93af5ceec | refs/heads/master | 2020-05-02T13:24:19.744788 | 2019-03-11T02:25:57 | 2019-03-11T02:25:57 | 177,983,108 | 1 | 1 | null | 2019-03-27T11:48:47 | 2019-03-27T11:48:47 | null | UTF-8 | Python | false | false | 12,781 | py | # Copyright (c) 2014-present PlatformIO <[email protected]>
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import json
import os
from os import getenv
from os.path import isdir, join
from time import time
import click
import semantic_version
from platformio import __version__, app, exception, telemetry, util
from platformio.commands.lib import lib_update as cmd_lib_update
from platformio.commands.platform import \
platform_install as cmd_platform_install
from platformio.commands.platform import \
platform_uninstall as cmd_platform_uninstall
from platformio.commands.platform import platform_update as cmd_platform_update
from platformio.commands.upgrade import get_latest_version
from platformio.managers.core import update_core_packages
from platformio.managers.lib import LibraryManager
from platformio.managers.platform import PlatformFactory, PlatformManager
def on_platformio_start(ctx, force, caller):
app.set_session_var("command_ctx", ctx)
app.set_session_var("force_option", force)
set_caller(caller)
telemetry.on_command()
if not in_silence(ctx):
after_upgrade(ctx)
def on_platformio_end(ctx, result): # pylint: disable=W0613
if in_silence(ctx):
return
try:
check_platformio_upgrade()
check_internal_updates(ctx, "platforms")
check_internal_updates(ctx, "libraries")
except (exception.InternetIsOffline, exception.GetLatestVersionError,
exception.APIRequestError):
click.secho(
"Failed to check for PlatformIO upgrades. "
"Please check your Internet connection.",
fg="red")
def on_platformio_exception(e):
telemetry.on_exception(e)
def in_silence(ctx=None):
ctx = ctx or app.get_session_var("command_ctx")
if not ctx:
return True
return ctx.args and any([
ctx.args[0] == "debug" and "--interpreter" in " ".join(ctx.args),
ctx.args[0] == "upgrade", "--json-output" in ctx.args,
"--version" in ctx.args
])
def set_caller(caller=None):
if not caller:
if getenv("PLATFORMIO_CALLER"):
caller = getenv("PLATFORMIO_CALLER")
elif getenv("VSCODE_PID") or getenv("VSCODE_NLS_CONFIG"):
caller = "vscode"
elif util.is_container():
if getenv("C9_UID"):
caller = "C9"
elif getenv("USER") == "cabox":
caller = "CA"
elif getenv("CHE_API", getenv("CHE_API_ENDPOINT")):
caller = "Che"
app.set_session_var("caller_id", caller)
class Upgrader(object):
def __init__(self, from_version, to_version):
self.from_version = semantic_version.Version.coerce(
util.pepver_to_semver(from_version))
self.to_version = semantic_version.Version.coerce(
util.pepver_to_semver(to_version))
self._upgraders = [(semantic_version.Version("3.0.0-a.1"),
self._upgrade_to_3_0_0),
(semantic_version.Version("3.0.0-b.11"),
self._upgrade_to_3_0_0b11),
(semantic_version.Version("3.5.0-a.2"),
self._update_dev_platforms)]
def run(self, ctx):
if self.from_version > self.to_version:
return True
result = [True]
for version, callback in self._upgraders:
if self.from_version >= version or self.to_version < version:
continue
result.append(callback(ctx))
return all(result)
@staticmethod
def _upgrade_to_3_0_0(ctx):
# convert custom board configuration
boards_dir = join(util.get_home_dir(), "boards")
if isdir(boards_dir):
for item in os.listdir(boards_dir):
if not item.endswith(".json"):
continue
data = util.load_json(join(boards_dir, item))
if set(["name", "url", "vendor"]) <= set(data.keys()):
continue
os.remove(join(boards_dir, item))
for key, value in data.items():
with open(join(boards_dir, "%s.json" % key), "w") as f:
json.dump(value, f, sort_keys=True, indent=2)
# re-install PlatformIO 2.0 development platforms
installed_platforms = app.get_state_item("installed_platforms", [])
if installed_platforms:
if "espressif" in installed_platforms:
installed_platforms[installed_platforms.index(
"espressif")] = "espressif8266"
ctx.invoke(cmd_platform_install, platforms=installed_platforms)
return True
@staticmethod
def _upgrade_to_3_0_0b11(ctx):
current_platforms = [
m['name'] for m in PlatformManager().get_installed()
]
if "espressif" not in current_platforms:
return True
ctx.invoke(cmd_platform_install, platforms=["espressif8266"])
ctx.invoke(cmd_platform_uninstall, platforms=["espressif"])
return True
@staticmethod
def _update_dev_platforms(ctx):
ctx.invoke(cmd_platform_update)
return True
def after_upgrade(ctx):
terminal_width, _ = click.get_terminal_size()
last_version = app.get_state_item("last_version", "0.0.0")
if last_version == __version__:
return
if last_version == "0.0.0":
app.set_state_item("last_version", __version__)
elif semantic_version.Version.coerce(util.pepver_to_semver(
last_version)) > semantic_version.Version.coerce(
util.pepver_to_semver(__version__)):
click.secho("*" * terminal_width, fg="yellow")
click.secho(
"Obsolete PIO Core v%s is used (previous was %s)" % (__version__,
last_version),
fg="yellow")
click.secho(
"Please remove multiple PIO Cores from a system:", fg="yellow")
click.secho(
"https://docs.platformio.org/page/faq.html"
"#multiple-pio-cores-in-a-system",
fg="cyan")
click.secho("*" * terminal_width, fg="yellow")
return
else:
click.secho("Please wait while upgrading PlatformIO...", fg="yellow")
app.clean_cache()
# Update PlatformIO's Core packages
update_core_packages(silent=True)
u = Upgrader(last_version, __version__)
if u.run(ctx):
app.set_state_item("last_version", __version__)
click.secho(
"PlatformIO has been successfully upgraded to %s!\n" %
__version__,
fg="green")
telemetry.on_event(
category="Auto",
action="Upgrade",
label="%s > %s" % (last_version, __version__))
else:
raise exception.UpgradeError("Auto upgrading...")
click.echo("")
# PlatformIO banner
click.echo("*" * terminal_width)
click.echo(
"If you like %s, please:" % (click.style("PlatformIO", fg="cyan")))
click.echo("- %s us on Twitter to stay up-to-date "
"on the latest project news > %s" %
(click.style("follow", fg="cyan"),
click.style("https://twitter.com/PlatformIO_Org", fg="cyan")))
click.echo(
"- %s it on GitHub > %s" %
(click.style("star", fg="cyan"),
click.style("https://github.com/platformio/platformio", fg="cyan")))
if not getenv("PLATFORMIO_IDE"):
click.echo(
"- %s PlatformIO IDE for IoT development > %s" %
(click.style("try", fg="cyan"),
click.style("https://platformio.org/platformio-ide", fg="cyan")))
if not util.is_ci():
click.echo("- %s us with PlatformIO Plus > %s" % (click.style(
"support", fg="cyan"), click.style(
"https://pioplus.com", fg="cyan")))
click.echo("*" * terminal_width)
click.echo("")
def check_platformio_upgrade():
last_check = app.get_state_item("last_check", {})
interval = int(app.get_setting("check_platformio_interval")) * 3600 * 24
if (time() - interval) < last_check.get("platformio_upgrade", 0):
return
last_check['platformio_upgrade'] = int(time())
app.set_state_item("last_check", last_check)
util.internet_on(raise_exception=True)
# Update PlatformIO's Core packages
update_core_packages(silent=True)
latest_version = get_latest_version()
if semantic_version.Version.coerce(util.pepver_to_semver(
latest_version)) <= semantic_version.Version.coerce(
util.pepver_to_semver(__version__)):
return
terminal_width, _ = click.get_terminal_size()
click.echo("")
click.echo("*" * terminal_width)
click.secho(
"There is a new version %s of PlatformIO available.\n"
"Please upgrade it via `" % latest_version,
fg="yellow",
nl=False)
if getenv("PLATFORMIO_IDE"):
click.secho(
"PlatformIO IDE Menu: Upgrade PlatformIO", fg="cyan", nl=False)
click.secho("`.", fg="yellow")
elif join("Cellar", "platformio") in util.get_source_dir():
click.secho("brew update && brew upgrade", fg="cyan", nl=False)
click.secho("` command.", fg="yellow")
else:
click.secho("platformio upgrade", fg="cyan", nl=False)
click.secho("` or `", fg="yellow", nl=False)
click.secho("pip install -U platformio", fg="cyan", nl=False)
click.secho("` command.", fg="yellow")
click.secho("Changes: ", fg="yellow", nl=False)
click.secho(
"https://docs.platformio.org/en/latest/history.html", fg="cyan")
click.echo("*" * terminal_width)
click.echo("")
def check_internal_updates(ctx, what):
last_check = app.get_state_item("last_check", {})
interval = int(app.get_setting("check_%s_interval" % what)) * 3600 * 24
if (time() - interval) < last_check.get(what + "_update", 0):
return
last_check[what + '_update'] = int(time())
app.set_state_item("last_check", last_check)
util.internet_on(raise_exception=True)
pm = PlatformManager() if what == "platforms" else LibraryManager()
outdated_items = []
for manifest in pm.get_installed():
if manifest['name'] in outdated_items:
continue
conds = [
pm.outdated(manifest['__pkg_dir']), what == "platforms"
and PlatformFactory.newPlatform(
manifest['__pkg_dir']).are_outdated_packages()
]
if any(conds):
outdated_items.append(manifest['name'])
if not outdated_items:
return
terminal_width, _ = click.get_terminal_size()
click.echo("")
click.echo("*" * terminal_width)
click.secho(
"There are the new updates for %s (%s)" % (what,
", ".join(outdated_items)),
fg="yellow")
if not app.get_setting("auto_update_" + what):
click.secho("Please update them via ", fg="yellow", nl=False)
click.secho(
"`platformio %s update`" %
("lib --global" if what == "libraries" else "platform"),
fg="cyan",
nl=False)
click.secho(" command.\n", fg="yellow")
click.secho(
"If you want to manually check for the new versions "
"without updating, please use ",
fg="yellow",
nl=False)
click.secho(
"`platformio %s update --only-check`" %
("lib --global" if what == "libraries" else "platform"),
fg="cyan",
nl=False)
click.secho(" command.", fg="yellow")
else:
click.secho("Please wait while updating %s ..." % what, fg="yellow")
if what == "platforms":
ctx.invoke(cmd_platform_update, platforms=outdated_items)
elif what == "libraries":
ctx.obj = pm
ctx.invoke(cmd_lib_update, libraries=outdated_items)
click.echo()
telemetry.on_event(
category="Auto", action="Update", label=what.title())
click.echo("*" * terminal_width)
click.echo("")
| [
"[email protected]"
]
| |
74d2938a67a1180e479c9ed2344d56807f5469bd | 24fe1f54fee3a3df952ca26cce839cc18124357a | /servicegraph/lib/python2.7/site-packages/acimodel-4.0_3d-py2.7.egg/cobra/modelimpl/isis/isispsnpstatshist1d.py | 9add5cdc355ad8093fd185beab530ccf723aeb5f | []
| no_license | aperiyed/servicegraph-cloudcenter | 4b8dc9e776f6814cf07fe966fbd4a3481d0f45ff | 9eb7975f2f6835e1c0528563a771526896306392 | refs/heads/master | 2023-05-10T17:27:18.022381 | 2020-01-20T09:18:28 | 2020-01-20T09:18:28 | 235,065,676 | 0 | 0 | null | 2023-05-01T21:19:14 | 2020-01-20T09:36:37 | Python | UTF-8 | Python | false | false | 34,228 | py | # coding=UTF-8
# **********************************************************************
# Copyright (c) 2013-2019 Cisco Systems, Inc. All rights reserved
# written by zen warriors, do not modify!
# **********************************************************************
from cobra.mit.meta import ClassMeta
from cobra.mit.meta import StatsClassMeta
from cobra.mit.meta import CounterMeta
from cobra.mit.meta import PropMeta
from cobra.mit.meta import Category
from cobra.mit.meta import SourceRelationMeta
from cobra.mit.meta import NamedSourceRelationMeta
from cobra.mit.meta import TargetRelationMeta
from cobra.mit.meta import DeploymentPathMeta, DeploymentCategory
from cobra.model.category import MoCategory, PropCategory, CounterCategory
from cobra.mit.mo import Mo
# ##################################################
class IsisPsnpStatsHist1d(Mo):
"""
Mo doc not defined in techpub!!!
"""
meta = StatsClassMeta("cobra.model.isis.IsisPsnpStatsHist1d", "ISIS PSNP Packets")
counter = CounterMeta("psnpPktsMiscErr", CounterCategory.COUNTER, "packets", "PSNP Packets with Miscelcsnpeous Error")
counter._propRefs[PropCategory.IMPLICIT_CUMULATIVE] = "psnpPktsMiscErrCum"
counter._propRefs[PropCategory.IMPLICIT_PERIODIC] = "psnpPktsMiscErrPer"
counter._propRefs[PropCategory.IMPLICIT_MIN] = "psnpPktsMiscErrMin"
counter._propRefs[PropCategory.IMPLICIT_MAX] = "psnpPktsMiscErrMax"
counter._propRefs[PropCategory.IMPLICIT_AVG] = "psnpPktsMiscErrAvg"
counter._propRefs[PropCategory.IMPLICIT_SUSPECT] = "psnpPktsMiscErrSpct"
counter._propRefs[PropCategory.IMPLICIT_THRESHOLDED] = "psnpPktsMiscErrThr"
counter._propRefs[PropCategory.IMPLICIT_TREND] = "psnpPktsMiscErrTr"
counter._propRefs[PropCategory.IMPLICIT_RATE] = "psnpPktsMiscErrRate"
meta._counters.append(counter)
counter = CounterMeta("psnpPktsAuthErr", CounterCategory.COUNTER, "packets", "PSNP Packets with Authentication Error")
counter._propRefs[PropCategory.IMPLICIT_CUMULATIVE] = "psnpPktsAuthErrCum"
counter._propRefs[PropCategory.IMPLICIT_PERIODIC] = "psnpPktsAuthErrPer"
counter._propRefs[PropCategory.IMPLICIT_MIN] = "psnpPktsAuthErrMin"
counter._propRefs[PropCategory.IMPLICIT_MAX] = "psnpPktsAuthErrMax"
counter._propRefs[PropCategory.IMPLICIT_AVG] = "psnpPktsAuthErrAvg"
counter._propRefs[PropCategory.IMPLICIT_SUSPECT] = "psnpPktsAuthErrSpct"
counter._propRefs[PropCategory.IMPLICIT_THRESHOLDED] = "psnpPktsAuthErrThr"
counter._propRefs[PropCategory.IMPLICIT_TREND] = "psnpPktsAuthErrTr"
counter._propRefs[PropCategory.IMPLICIT_RATE] = "psnpPktsAuthErrRate"
meta._counters.append(counter)
counter = CounterMeta("psnpPktsRx", CounterCategory.COUNTER, "packets", "PSNP Packets Recevied")
counter._propRefs[PropCategory.IMPLICIT_CUMULATIVE] = "psnpPktsRxCum"
counter._propRefs[PropCategory.IMPLICIT_PERIODIC] = "psnpPktsRxPer"
counter._propRefs[PropCategory.IMPLICIT_MIN] = "psnpPktsRxMin"
counter._propRefs[PropCategory.IMPLICIT_MAX] = "psnpPktsRxMax"
counter._propRefs[PropCategory.IMPLICIT_AVG] = "psnpPktsRxAvg"
counter._propRefs[PropCategory.IMPLICIT_SUSPECT] = "psnpPktsRxSpct"
counter._propRefs[PropCategory.IMPLICIT_THRESHOLDED] = "psnpPktsRxThr"
counter._propRefs[PropCategory.IMPLICIT_TREND] = "psnpPktsRxTr"
counter._propRefs[PropCategory.IMPLICIT_RATE] = "psnpPktsRxRate"
meta._counters.append(counter)
counter = CounterMeta("psnpPktsTx", CounterCategory.COUNTER, "packets", "PSNP Packets Sent")
counter._propRefs[PropCategory.IMPLICIT_CUMULATIVE] = "psnpPktsTxCum"
counter._propRefs[PropCategory.IMPLICIT_PERIODIC] = "psnpPktsTxPer"
counter._propRefs[PropCategory.IMPLICIT_MIN] = "psnpPktsTxMin"
counter._propRefs[PropCategory.IMPLICIT_MAX] = "psnpPktsTxMax"
counter._propRefs[PropCategory.IMPLICIT_AVG] = "psnpPktsTxAvg"
counter._propRefs[PropCategory.IMPLICIT_SUSPECT] = "psnpPktsTxSpct"
counter._propRefs[PropCategory.IMPLICIT_THRESHOLDED] = "psnpPktsTxThr"
counter._propRefs[PropCategory.IMPLICIT_TREND] = "psnpPktsTxTr"
counter._propRefs[PropCategory.IMPLICIT_RATE] = "psnpPktsTxRate"
meta._counters.append(counter)
meta.moClassName = "isisIsisPsnpStatsHist1d"
meta.rnFormat = "HDisisIsisPsnpStats1d-%(index)s"
meta.category = MoCategory.STATS_HISTORY
meta.label = "historical ISIS PSNP Packets stats in 1 day"
meta.writeAccessMask = 0x8008020040001
meta.readAccessMask = 0x8008020040001
meta.isDomainable = False
meta.isReadOnly = True
meta.isConfigurable = False
meta.isDeletable = False
meta.isContextRoot = True
meta.parentClasses.add("cobra.model.isis.If")
meta.superClasses.add("cobra.model.isis.IsisPsnpStatsHist")
meta.superClasses.add("cobra.model.stats.Hist")
meta.superClasses.add("cobra.model.stats.Item")
meta.rnPrefixes = [
('HDisisIsisPsnpStats1d-', True),
]
prop = PropMeta("str", "childAction", "childAction", 4, PropCategory.CHILD_ACTION)
prop.label = "None"
prop.isImplicit = True
prop.isAdmin = True
prop._addConstant("deleteAll", "deleteall", 16384)
prop._addConstant("deleteNonPresent", "deletenonpresent", 8192)
prop._addConstant("ignore", "ignore", 4096)
meta.props.add("childAction", prop)
prop = PropMeta("str", "cnt", "cnt", 16212, PropCategory.REGULAR)
prop.label = "Number of Collections During this Interval"
prop.isImplicit = True
prop.isAdmin = True
meta.props.add("cnt", prop)
prop = PropMeta("str", "dn", "dn", 1, PropCategory.DN)
prop.label = "None"
prop.isDn = True
prop.isImplicit = True
prop.isAdmin = True
prop.isCreateOnly = True
meta.props.add("dn", prop)
prop = PropMeta("str", "index", "index", 45850, PropCategory.REGULAR)
prop.label = "History Index"
prop.isConfig = True
prop.isAdmin = True
prop.isCreateOnly = True
prop.isNaming = True
meta.props.add("index", prop)
prop = PropMeta("str", "lastCollOffset", "lastCollOffset", 111, PropCategory.REGULAR)
prop.label = "Collection Length"
prop.isImplicit = True
prop.isAdmin = True
meta.props.add("lastCollOffset", prop)
prop = PropMeta("str", "modTs", "modTs", 7, PropCategory.REGULAR)
prop.label = "None"
prop.isImplicit = True
prop.isAdmin = True
prop.defaultValue = 0
prop.defaultValueStr = "never"
prop._addConstant("never", "never", 0)
meta.props.add("modTs", prop)
prop = PropMeta("str", "psnpPktsAuthErrAvg", "psnpPktsAuthErrAvg", 46481, PropCategory.IMPLICIT_AVG)
prop.label = "PSNP Packets with Authentication Error average value"
prop.isOper = True
prop.isStats = True
meta.props.add("psnpPktsAuthErrAvg", prop)
prop = PropMeta("str", "psnpPktsAuthErrCum", "psnpPktsAuthErrCum", 46477, PropCategory.IMPLICIT_CUMULATIVE)
prop.label = "PSNP Packets with Authentication Error cumulative"
prop.isOper = True
prop.isStats = True
meta.props.add("psnpPktsAuthErrCum", prop)
prop = PropMeta("str", "psnpPktsAuthErrMax", "psnpPktsAuthErrMax", 46480, PropCategory.IMPLICIT_MAX)
prop.label = "PSNP Packets with Authentication Error maximum value"
prop.isOper = True
prop.isStats = True
meta.props.add("psnpPktsAuthErrMax", prop)
prop = PropMeta("str", "psnpPktsAuthErrMin", "psnpPktsAuthErrMin", 46479, PropCategory.IMPLICIT_MIN)
prop.label = "PSNP Packets with Authentication Error minimum value"
prop.isOper = True
prop.isStats = True
meta.props.add("psnpPktsAuthErrMin", prop)
prop = PropMeta("str", "psnpPktsAuthErrPer", "psnpPktsAuthErrPer", 46478, PropCategory.IMPLICIT_PERIODIC)
prop.label = "PSNP Packets with Authentication Error periodic"
prop.isOper = True
prop.isStats = True
meta.props.add("psnpPktsAuthErrPer", prop)
prop = PropMeta("str", "psnpPktsAuthErrRate", "psnpPktsAuthErrRate", 46485, PropCategory.IMPLICIT_RATE)
prop.label = "PSNP Packets with Authentication Error rate"
prop.isOper = True
prop.isStats = True
meta.props.add("psnpPktsAuthErrRate", prop)
prop = PropMeta("str", "psnpPktsAuthErrSpct", "psnpPktsAuthErrSpct", 46482, PropCategory.IMPLICIT_SUSPECT)
prop.label = "PSNP Packets with Authentication Error suspect count"
prop.isOper = True
prop.isStats = True
meta.props.add("psnpPktsAuthErrSpct", prop)
prop = PropMeta("str", "psnpPktsAuthErrThr", "psnpPktsAuthErrThr", 46483, PropCategory.IMPLICIT_THRESHOLDED)
prop.label = "PSNP Packets with Authentication Error thresholded flags"
prop.isOper = True
prop.isStats = True
prop.defaultValue = 0
prop.defaultValueStr = "unspecified"
prop._addConstant("avgCrit", "avg-severity-critical", 2199023255552)
prop._addConstant("avgHigh", "avg-crossed-high-threshold", 68719476736)
prop._addConstant("avgLow", "avg-crossed-low-threshold", 137438953472)
prop._addConstant("avgMajor", "avg-severity-major", 1099511627776)
prop._addConstant("avgMinor", "avg-severity-minor", 549755813888)
prop._addConstant("avgRecovering", "avg-recovering", 34359738368)
prop._addConstant("avgWarn", "avg-severity-warning", 274877906944)
prop._addConstant("cumulativeCrit", "cumulative-severity-critical", 8192)
prop._addConstant("cumulativeHigh", "cumulative-crossed-high-threshold", 256)
prop._addConstant("cumulativeLow", "cumulative-crossed-low-threshold", 512)
prop._addConstant("cumulativeMajor", "cumulative-severity-major", 4096)
prop._addConstant("cumulativeMinor", "cumulative-severity-minor", 2048)
prop._addConstant("cumulativeRecovering", "cumulative-recovering", 128)
prop._addConstant("cumulativeWarn", "cumulative-severity-warning", 1024)
prop._addConstant("lastReadingCrit", "lastreading-severity-critical", 64)
prop._addConstant("lastReadingHigh", "lastreading-crossed-high-threshold", 2)
prop._addConstant("lastReadingLow", "lastreading-crossed-low-threshold", 4)
prop._addConstant("lastReadingMajor", "lastreading-severity-major", 32)
prop._addConstant("lastReadingMinor", "lastreading-severity-minor", 16)
prop._addConstant("lastReadingRecovering", "lastreading-recovering", 1)
prop._addConstant("lastReadingWarn", "lastreading-severity-warning", 8)
prop._addConstant("maxCrit", "max-severity-critical", 17179869184)
prop._addConstant("maxHigh", "max-crossed-high-threshold", 536870912)
prop._addConstant("maxLow", "max-crossed-low-threshold", 1073741824)
prop._addConstant("maxMajor", "max-severity-major", 8589934592)
prop._addConstant("maxMinor", "max-severity-minor", 4294967296)
prop._addConstant("maxRecovering", "max-recovering", 268435456)
prop._addConstant("maxWarn", "max-severity-warning", 2147483648)
prop._addConstant("minCrit", "min-severity-critical", 134217728)
prop._addConstant("minHigh", "min-crossed-high-threshold", 4194304)
prop._addConstant("minLow", "min-crossed-low-threshold", 8388608)
prop._addConstant("minMajor", "min-severity-major", 67108864)
prop._addConstant("minMinor", "min-severity-minor", 33554432)
prop._addConstant("minRecovering", "min-recovering", 2097152)
prop._addConstant("minWarn", "min-severity-warning", 16777216)
prop._addConstant("periodicCrit", "periodic-severity-critical", 1048576)
prop._addConstant("periodicHigh", "periodic-crossed-high-threshold", 32768)
prop._addConstant("periodicLow", "periodic-crossed-low-threshold", 65536)
prop._addConstant("periodicMajor", "periodic-severity-major", 524288)
prop._addConstant("periodicMinor", "periodic-severity-minor", 262144)
prop._addConstant("periodicRecovering", "periodic-recovering", 16384)
prop._addConstant("periodicWarn", "periodic-severity-warning", 131072)
prop._addConstant("rateCrit", "rate-severity-critical", 36028797018963968)
prop._addConstant("rateHigh", "rate-crossed-high-threshold", 1125899906842624)
prop._addConstant("rateLow", "rate-crossed-low-threshold", 2251799813685248)
prop._addConstant("rateMajor", "rate-severity-major", 18014398509481984)
prop._addConstant("rateMinor", "rate-severity-minor", 9007199254740992)
prop._addConstant("rateRecovering", "rate-recovering", 562949953421312)
prop._addConstant("rateWarn", "rate-severity-warning", 4503599627370496)
prop._addConstant("trendCrit", "trend-severity-critical", 281474976710656)
prop._addConstant("trendHigh", "trend-crossed-high-threshold", 8796093022208)
prop._addConstant("trendLow", "trend-crossed-low-threshold", 17592186044416)
prop._addConstant("trendMajor", "trend-severity-major", 140737488355328)
prop._addConstant("trendMinor", "trend-severity-minor", 70368744177664)
prop._addConstant("trendRecovering", "trend-recovering", 4398046511104)
prop._addConstant("trendWarn", "trend-severity-warning", 35184372088832)
prop._addConstant("unspecified", None, 0)
meta.props.add("psnpPktsAuthErrThr", prop)
prop = PropMeta("str", "psnpPktsAuthErrTr", "psnpPktsAuthErrTr", 46484, PropCategory.IMPLICIT_TREND)
prop.label = "PSNP Packets with Authentication Error trend"
prop.isOper = True
prop.isStats = True
meta.props.add("psnpPktsAuthErrTr", prop)
prop = PropMeta("str", "psnpPktsMiscErrAvg", "psnpPktsMiscErrAvg", 46502, PropCategory.IMPLICIT_AVG)
prop.label = "PSNP Packets with Miscelcsnpeous Error average value"
prop.isOper = True
prop.isStats = True
meta.props.add("psnpPktsMiscErrAvg", prop)
prop = PropMeta("str", "psnpPktsMiscErrCum", "psnpPktsMiscErrCum", 46498, PropCategory.IMPLICIT_CUMULATIVE)
prop.label = "PSNP Packets with Miscelcsnpeous Error cumulative"
prop.isOper = True
prop.isStats = True
meta.props.add("psnpPktsMiscErrCum", prop)
prop = PropMeta("str", "psnpPktsMiscErrMax", "psnpPktsMiscErrMax", 46501, PropCategory.IMPLICIT_MAX)
prop.label = "PSNP Packets with Miscelcsnpeous Error maximum value"
prop.isOper = True
prop.isStats = True
meta.props.add("psnpPktsMiscErrMax", prop)
prop = PropMeta("str", "psnpPktsMiscErrMin", "psnpPktsMiscErrMin", 46500, PropCategory.IMPLICIT_MIN)
prop.label = "PSNP Packets with Miscelcsnpeous Error minimum value"
prop.isOper = True
prop.isStats = True
meta.props.add("psnpPktsMiscErrMin", prop)
prop = PropMeta("str", "psnpPktsMiscErrPer", "psnpPktsMiscErrPer", 46499, PropCategory.IMPLICIT_PERIODIC)
prop.label = "PSNP Packets with Miscelcsnpeous Error periodic"
prop.isOper = True
prop.isStats = True
meta.props.add("psnpPktsMiscErrPer", prop)
prop = PropMeta("str", "psnpPktsMiscErrRate", "psnpPktsMiscErrRate", 46506, PropCategory.IMPLICIT_RATE)
prop.label = "PSNP Packets with Miscelcsnpeous Error rate"
prop.isOper = True
prop.isStats = True
meta.props.add("psnpPktsMiscErrRate", prop)
prop = PropMeta("str", "psnpPktsMiscErrSpct", "psnpPktsMiscErrSpct", 46503, PropCategory.IMPLICIT_SUSPECT)
prop.label = "PSNP Packets with Miscelcsnpeous Error suspect count"
prop.isOper = True
prop.isStats = True
meta.props.add("psnpPktsMiscErrSpct", prop)
prop = PropMeta("str", "psnpPktsMiscErrThr", "psnpPktsMiscErrThr", 46504, PropCategory.IMPLICIT_THRESHOLDED)
prop.label = "PSNP Packets with Miscelcsnpeous Error thresholded flags"
prop.isOper = True
prop.isStats = True
prop.defaultValue = 0
prop.defaultValueStr = "unspecified"
prop._addConstant("avgCrit", "avg-severity-critical", 2199023255552)
prop._addConstant("avgHigh", "avg-crossed-high-threshold", 68719476736)
prop._addConstant("avgLow", "avg-crossed-low-threshold", 137438953472)
prop._addConstant("avgMajor", "avg-severity-major", 1099511627776)
prop._addConstant("avgMinor", "avg-severity-minor", 549755813888)
prop._addConstant("avgRecovering", "avg-recovering", 34359738368)
prop._addConstant("avgWarn", "avg-severity-warning", 274877906944)
prop._addConstant("cumulativeCrit", "cumulative-severity-critical", 8192)
prop._addConstant("cumulativeHigh", "cumulative-crossed-high-threshold", 256)
prop._addConstant("cumulativeLow", "cumulative-crossed-low-threshold", 512)
prop._addConstant("cumulativeMajor", "cumulative-severity-major", 4096)
prop._addConstant("cumulativeMinor", "cumulative-severity-minor", 2048)
prop._addConstant("cumulativeRecovering", "cumulative-recovering", 128)
prop._addConstant("cumulativeWarn", "cumulative-severity-warning", 1024)
prop._addConstant("lastReadingCrit", "lastreading-severity-critical", 64)
prop._addConstant("lastReadingHigh", "lastreading-crossed-high-threshold", 2)
prop._addConstant("lastReadingLow", "lastreading-crossed-low-threshold", 4)
prop._addConstant("lastReadingMajor", "lastreading-severity-major", 32)
prop._addConstant("lastReadingMinor", "lastreading-severity-minor", 16)
prop._addConstant("lastReadingRecovering", "lastreading-recovering", 1)
prop._addConstant("lastReadingWarn", "lastreading-severity-warning", 8)
prop._addConstant("maxCrit", "max-severity-critical", 17179869184)
prop._addConstant("maxHigh", "max-crossed-high-threshold", 536870912)
prop._addConstant("maxLow", "max-crossed-low-threshold", 1073741824)
prop._addConstant("maxMajor", "max-severity-major", 8589934592)
prop._addConstant("maxMinor", "max-severity-minor", 4294967296)
prop._addConstant("maxRecovering", "max-recovering", 268435456)
prop._addConstant("maxWarn", "max-severity-warning", 2147483648)
prop._addConstant("minCrit", "min-severity-critical", 134217728)
prop._addConstant("minHigh", "min-crossed-high-threshold", 4194304)
prop._addConstant("minLow", "min-crossed-low-threshold", 8388608)
prop._addConstant("minMajor", "min-severity-major", 67108864)
prop._addConstant("minMinor", "min-severity-minor", 33554432)
prop._addConstant("minRecovering", "min-recovering", 2097152)
prop._addConstant("minWarn", "min-severity-warning", 16777216)
prop._addConstant("periodicCrit", "periodic-severity-critical", 1048576)
prop._addConstant("periodicHigh", "periodic-crossed-high-threshold", 32768)
prop._addConstant("periodicLow", "periodic-crossed-low-threshold", 65536)
prop._addConstant("periodicMajor", "periodic-severity-major", 524288)
prop._addConstant("periodicMinor", "periodic-severity-minor", 262144)
prop._addConstant("periodicRecovering", "periodic-recovering", 16384)
prop._addConstant("periodicWarn", "periodic-severity-warning", 131072)
prop._addConstant("rateCrit", "rate-severity-critical", 36028797018963968)
prop._addConstant("rateHigh", "rate-crossed-high-threshold", 1125899906842624)
prop._addConstant("rateLow", "rate-crossed-low-threshold", 2251799813685248)
prop._addConstant("rateMajor", "rate-severity-major", 18014398509481984)
prop._addConstant("rateMinor", "rate-severity-minor", 9007199254740992)
prop._addConstant("rateRecovering", "rate-recovering", 562949953421312)
prop._addConstant("rateWarn", "rate-severity-warning", 4503599627370496)
prop._addConstant("trendCrit", "trend-severity-critical", 281474976710656)
prop._addConstant("trendHigh", "trend-crossed-high-threshold", 8796093022208)
prop._addConstant("trendLow", "trend-crossed-low-threshold", 17592186044416)
prop._addConstant("trendMajor", "trend-severity-major", 140737488355328)
prop._addConstant("trendMinor", "trend-severity-minor", 70368744177664)
prop._addConstant("trendRecovering", "trend-recovering", 4398046511104)
prop._addConstant("trendWarn", "trend-severity-warning", 35184372088832)
prop._addConstant("unspecified", None, 0)
meta.props.add("psnpPktsMiscErrThr", prop)
prop = PropMeta("str", "psnpPktsMiscErrTr", "psnpPktsMiscErrTr", 46505, PropCategory.IMPLICIT_TREND)
prop.label = "PSNP Packets with Miscelcsnpeous Error trend"
prop.isOper = True
prop.isStats = True
meta.props.add("psnpPktsMiscErrTr", prop)
prop = PropMeta("str", "psnpPktsRxAvg", "psnpPktsRxAvg", 46523, PropCategory.IMPLICIT_AVG)
prop.label = "PSNP Packets Recevied average value"
prop.isOper = True
prop.isStats = True
meta.props.add("psnpPktsRxAvg", prop)
prop = PropMeta("str", "psnpPktsRxCum", "psnpPktsRxCum", 46519, PropCategory.IMPLICIT_CUMULATIVE)
prop.label = "PSNP Packets Recevied cumulative"
prop.isOper = True
prop.isStats = True
meta.props.add("psnpPktsRxCum", prop)
prop = PropMeta("str", "psnpPktsRxMax", "psnpPktsRxMax", 46522, PropCategory.IMPLICIT_MAX)
prop.label = "PSNP Packets Recevied maximum value"
prop.isOper = True
prop.isStats = True
meta.props.add("psnpPktsRxMax", prop)
prop = PropMeta("str", "psnpPktsRxMin", "psnpPktsRxMin", 46521, PropCategory.IMPLICIT_MIN)
prop.label = "PSNP Packets Recevied minimum value"
prop.isOper = True
prop.isStats = True
meta.props.add("psnpPktsRxMin", prop)
prop = PropMeta("str", "psnpPktsRxPer", "psnpPktsRxPer", 46520, PropCategory.IMPLICIT_PERIODIC)
prop.label = "PSNP Packets Recevied periodic"
prop.isOper = True
prop.isStats = True
meta.props.add("psnpPktsRxPer", prop)
prop = PropMeta("str", "psnpPktsRxRate", "psnpPktsRxRate", 46527, PropCategory.IMPLICIT_RATE)
prop.label = "PSNP Packets Recevied rate"
prop.isOper = True
prop.isStats = True
meta.props.add("psnpPktsRxRate", prop)
prop = PropMeta("str", "psnpPktsRxSpct", "psnpPktsRxSpct", 46524, PropCategory.IMPLICIT_SUSPECT)
prop.label = "PSNP Packets Recevied suspect count"
prop.isOper = True
prop.isStats = True
meta.props.add("psnpPktsRxSpct", prop)
prop = PropMeta("str", "psnpPktsRxThr", "psnpPktsRxThr", 46525, PropCategory.IMPLICIT_THRESHOLDED)
prop.label = "PSNP Packets Recevied thresholded flags"
prop.isOper = True
prop.isStats = True
prop.defaultValue = 0
prop.defaultValueStr = "unspecified"
prop._addConstant("avgCrit", "avg-severity-critical", 2199023255552)
prop._addConstant("avgHigh", "avg-crossed-high-threshold", 68719476736)
prop._addConstant("avgLow", "avg-crossed-low-threshold", 137438953472)
prop._addConstant("avgMajor", "avg-severity-major", 1099511627776)
prop._addConstant("avgMinor", "avg-severity-minor", 549755813888)
prop._addConstant("avgRecovering", "avg-recovering", 34359738368)
prop._addConstant("avgWarn", "avg-severity-warning", 274877906944)
prop._addConstant("cumulativeCrit", "cumulative-severity-critical", 8192)
prop._addConstant("cumulativeHigh", "cumulative-crossed-high-threshold", 256)
prop._addConstant("cumulativeLow", "cumulative-crossed-low-threshold", 512)
prop._addConstant("cumulativeMajor", "cumulative-severity-major", 4096)
prop._addConstant("cumulativeMinor", "cumulative-severity-minor", 2048)
prop._addConstant("cumulativeRecovering", "cumulative-recovering", 128)
prop._addConstant("cumulativeWarn", "cumulative-severity-warning", 1024)
prop._addConstant("lastReadingCrit", "lastreading-severity-critical", 64)
prop._addConstant("lastReadingHigh", "lastreading-crossed-high-threshold", 2)
prop._addConstant("lastReadingLow", "lastreading-crossed-low-threshold", 4)
prop._addConstant("lastReadingMajor", "lastreading-severity-major", 32)
prop._addConstant("lastReadingMinor", "lastreading-severity-minor", 16)
prop._addConstant("lastReadingRecovering", "lastreading-recovering", 1)
prop._addConstant("lastReadingWarn", "lastreading-severity-warning", 8)
prop._addConstant("maxCrit", "max-severity-critical", 17179869184)
prop._addConstant("maxHigh", "max-crossed-high-threshold", 536870912)
prop._addConstant("maxLow", "max-crossed-low-threshold", 1073741824)
prop._addConstant("maxMajor", "max-severity-major", 8589934592)
prop._addConstant("maxMinor", "max-severity-minor", 4294967296)
prop._addConstant("maxRecovering", "max-recovering", 268435456)
prop._addConstant("maxWarn", "max-severity-warning", 2147483648)
prop._addConstant("minCrit", "min-severity-critical", 134217728)
prop._addConstant("minHigh", "min-crossed-high-threshold", 4194304)
prop._addConstant("minLow", "min-crossed-low-threshold", 8388608)
prop._addConstant("minMajor", "min-severity-major", 67108864)
prop._addConstant("minMinor", "min-severity-minor", 33554432)
prop._addConstant("minRecovering", "min-recovering", 2097152)
prop._addConstant("minWarn", "min-severity-warning", 16777216)
prop._addConstant("periodicCrit", "periodic-severity-critical", 1048576)
prop._addConstant("periodicHigh", "periodic-crossed-high-threshold", 32768)
prop._addConstant("periodicLow", "periodic-crossed-low-threshold", 65536)
prop._addConstant("periodicMajor", "periodic-severity-major", 524288)
prop._addConstant("periodicMinor", "periodic-severity-minor", 262144)
prop._addConstant("periodicRecovering", "periodic-recovering", 16384)
prop._addConstant("periodicWarn", "periodic-severity-warning", 131072)
prop._addConstant("rateCrit", "rate-severity-critical", 36028797018963968)
prop._addConstant("rateHigh", "rate-crossed-high-threshold", 1125899906842624)
prop._addConstant("rateLow", "rate-crossed-low-threshold", 2251799813685248)
prop._addConstant("rateMajor", "rate-severity-major", 18014398509481984)
prop._addConstant("rateMinor", "rate-severity-minor", 9007199254740992)
prop._addConstant("rateRecovering", "rate-recovering", 562949953421312)
prop._addConstant("rateWarn", "rate-severity-warning", 4503599627370496)
prop._addConstant("trendCrit", "trend-severity-critical", 281474976710656)
prop._addConstant("trendHigh", "trend-crossed-high-threshold", 8796093022208)
prop._addConstant("trendLow", "trend-crossed-low-threshold", 17592186044416)
prop._addConstant("trendMajor", "trend-severity-major", 140737488355328)
prop._addConstant("trendMinor", "trend-severity-minor", 70368744177664)
prop._addConstant("trendRecovering", "trend-recovering", 4398046511104)
prop._addConstant("trendWarn", "trend-severity-warning", 35184372088832)
prop._addConstant("unspecified", None, 0)
meta.props.add("psnpPktsRxThr", prop)
prop = PropMeta("str", "psnpPktsRxTr", "psnpPktsRxTr", 46526, PropCategory.IMPLICIT_TREND)
prop.label = "PSNP Packets Recevied trend"
prop.isOper = True
prop.isStats = True
meta.props.add("psnpPktsRxTr", prop)
prop = PropMeta("str", "psnpPktsTxAvg", "psnpPktsTxAvg", 46544, PropCategory.IMPLICIT_AVG)
prop.label = "PSNP Packets Sent average value"
prop.isOper = True
prop.isStats = True
meta.props.add("psnpPktsTxAvg", prop)
prop = PropMeta("str", "psnpPktsTxCum", "psnpPktsTxCum", 46540, PropCategory.IMPLICIT_CUMULATIVE)
prop.label = "PSNP Packets Sent cumulative"
prop.isOper = True
prop.isStats = True
meta.props.add("psnpPktsTxCum", prop)
prop = PropMeta("str", "psnpPktsTxMax", "psnpPktsTxMax", 46543, PropCategory.IMPLICIT_MAX)
prop.label = "PSNP Packets Sent maximum value"
prop.isOper = True
prop.isStats = True
meta.props.add("psnpPktsTxMax", prop)
prop = PropMeta("str", "psnpPktsTxMin", "psnpPktsTxMin", 46542, PropCategory.IMPLICIT_MIN)
prop.label = "PSNP Packets Sent minimum value"
prop.isOper = True
prop.isStats = True
meta.props.add("psnpPktsTxMin", prop)
prop = PropMeta("str", "psnpPktsTxPer", "psnpPktsTxPer", 46541, PropCategory.IMPLICIT_PERIODIC)
prop.label = "PSNP Packets Sent periodic"
prop.isOper = True
prop.isStats = True
meta.props.add("psnpPktsTxPer", prop)
prop = PropMeta("str", "psnpPktsTxRate", "psnpPktsTxRate", 46548, PropCategory.IMPLICIT_RATE)
prop.label = "PSNP Packets Sent rate"
prop.isOper = True
prop.isStats = True
meta.props.add("psnpPktsTxRate", prop)
prop = PropMeta("str", "psnpPktsTxSpct", "psnpPktsTxSpct", 46545, PropCategory.IMPLICIT_SUSPECT)
prop.label = "PSNP Packets Sent suspect count"
prop.isOper = True
prop.isStats = True
meta.props.add("psnpPktsTxSpct", prop)
prop = PropMeta("str", "psnpPktsTxThr", "psnpPktsTxThr", 46546, PropCategory.IMPLICIT_THRESHOLDED)
prop.label = "PSNP Packets Sent thresholded flags"
prop.isOper = True
prop.isStats = True
prop.defaultValue = 0
prop.defaultValueStr = "unspecified"
prop._addConstant("avgCrit", "avg-severity-critical", 2199023255552)
prop._addConstant("avgHigh", "avg-crossed-high-threshold", 68719476736)
prop._addConstant("avgLow", "avg-crossed-low-threshold", 137438953472)
prop._addConstant("avgMajor", "avg-severity-major", 1099511627776)
prop._addConstant("avgMinor", "avg-severity-minor", 549755813888)
prop._addConstant("avgRecovering", "avg-recovering", 34359738368)
prop._addConstant("avgWarn", "avg-severity-warning", 274877906944)
prop._addConstant("cumulativeCrit", "cumulative-severity-critical", 8192)
prop._addConstant("cumulativeHigh", "cumulative-crossed-high-threshold", 256)
prop._addConstant("cumulativeLow", "cumulative-crossed-low-threshold", 512)
prop._addConstant("cumulativeMajor", "cumulative-severity-major", 4096)
prop._addConstant("cumulativeMinor", "cumulative-severity-minor", 2048)
prop._addConstant("cumulativeRecovering", "cumulative-recovering", 128)
prop._addConstant("cumulativeWarn", "cumulative-severity-warning", 1024)
prop._addConstant("lastReadingCrit", "lastreading-severity-critical", 64)
prop._addConstant("lastReadingHigh", "lastreading-crossed-high-threshold", 2)
prop._addConstant("lastReadingLow", "lastreading-crossed-low-threshold", 4)
prop._addConstant("lastReadingMajor", "lastreading-severity-major", 32)
prop._addConstant("lastReadingMinor", "lastreading-severity-minor", 16)
prop._addConstant("lastReadingRecovering", "lastreading-recovering", 1)
prop._addConstant("lastReadingWarn", "lastreading-severity-warning", 8)
prop._addConstant("maxCrit", "max-severity-critical", 17179869184)
prop._addConstant("maxHigh", "max-crossed-high-threshold", 536870912)
prop._addConstant("maxLow", "max-crossed-low-threshold", 1073741824)
prop._addConstant("maxMajor", "max-severity-major", 8589934592)
prop._addConstant("maxMinor", "max-severity-minor", 4294967296)
prop._addConstant("maxRecovering", "max-recovering", 268435456)
prop._addConstant("maxWarn", "max-severity-warning", 2147483648)
prop._addConstant("minCrit", "min-severity-critical", 134217728)
prop._addConstant("minHigh", "min-crossed-high-threshold", 4194304)
prop._addConstant("minLow", "min-crossed-low-threshold", 8388608)
prop._addConstant("minMajor", "min-severity-major", 67108864)
prop._addConstant("minMinor", "min-severity-minor", 33554432)
prop._addConstant("minRecovering", "min-recovering", 2097152)
prop._addConstant("minWarn", "min-severity-warning", 16777216)
prop._addConstant("periodicCrit", "periodic-severity-critical", 1048576)
prop._addConstant("periodicHigh", "periodic-crossed-high-threshold", 32768)
prop._addConstant("periodicLow", "periodic-crossed-low-threshold", 65536)
prop._addConstant("periodicMajor", "periodic-severity-major", 524288)
prop._addConstant("periodicMinor", "periodic-severity-minor", 262144)
prop._addConstant("periodicRecovering", "periodic-recovering", 16384)
prop._addConstant("periodicWarn", "periodic-severity-warning", 131072)
prop._addConstant("rateCrit", "rate-severity-critical", 36028797018963968)
prop._addConstant("rateHigh", "rate-crossed-high-threshold", 1125899906842624)
prop._addConstant("rateLow", "rate-crossed-low-threshold", 2251799813685248)
prop._addConstant("rateMajor", "rate-severity-major", 18014398509481984)
prop._addConstant("rateMinor", "rate-severity-minor", 9007199254740992)
prop._addConstant("rateRecovering", "rate-recovering", 562949953421312)
prop._addConstant("rateWarn", "rate-severity-warning", 4503599627370496)
prop._addConstant("trendCrit", "trend-severity-critical", 281474976710656)
prop._addConstant("trendHigh", "trend-crossed-high-threshold", 8796093022208)
prop._addConstant("trendLow", "trend-crossed-low-threshold", 17592186044416)
prop._addConstant("trendMajor", "trend-severity-major", 140737488355328)
prop._addConstant("trendMinor", "trend-severity-minor", 70368744177664)
prop._addConstant("trendRecovering", "trend-recovering", 4398046511104)
prop._addConstant("trendWarn", "trend-severity-warning", 35184372088832)
prop._addConstant("unspecified", None, 0)
meta.props.add("psnpPktsTxThr", prop)
prop = PropMeta("str", "psnpPktsTxTr", "psnpPktsTxTr", 46547, PropCategory.IMPLICIT_TREND)
prop.label = "PSNP Packets Sent trend"
prop.isOper = True
prop.isStats = True
meta.props.add("psnpPktsTxTr", prop)
prop = PropMeta("str", "repIntvEnd", "repIntvEnd", 110, PropCategory.REGULAR)
prop.label = "Reporting End Time"
prop.isImplicit = True
prop.isAdmin = True
meta.props.add("repIntvEnd", prop)
prop = PropMeta("str", "repIntvStart", "repIntvStart", 109, PropCategory.REGULAR)
prop.label = "Reporting Start Time"
prop.isImplicit = True
prop.isAdmin = True
meta.props.add("repIntvStart", prop)
prop = PropMeta("str", "rn", "rn", 2, PropCategory.RN)
prop.label = "None"
prop.isRn = True
prop.isImplicit = True
prop.isAdmin = True
prop.isCreateOnly = True
meta.props.add("rn", prop)
prop = PropMeta("str", "status", "status", 3, PropCategory.STATUS)
prop.label = "None"
prop.isImplicit = True
prop.isAdmin = True
prop._addConstant("created", "created", 2)
prop._addConstant("deleted", "deleted", 8)
prop._addConstant("modified", "modified", 4)
meta.props.add("status", prop)
meta.namingProps.append(getattr(meta.props, "index"))
def __init__(self, parentMoOrDn, index, markDirty=True, **creationProps):
namingVals = [index]
Mo.__init__(self, parentMoOrDn, markDirty, *namingVals, **creationProps)
# End of package file
# ##################################################
| [
"[email protected]"
]
| |
d2ea2f4eb3e5aea99cea24baf453eca59c539211 | 487ce91881032c1de16e35ed8bc187d6034205f7 | /codes/CodeJamCrawler/16_0_2/AndrewNguyen/b2.py | f7a0b686bc0911c70127e931d1811ba557d1d1d4 | []
| no_license | DaHuO/Supergraph | 9cd26d8c5a081803015d93cf5f2674009e92ef7e | c88059dc66297af577ad2b8afa4e0ac0ad622915 | refs/heads/master | 2021-06-14T16:07:52.405091 | 2016-08-21T13:39:13 | 2016-08-21T13:39:13 | 49,829,508 | 2 | 0 | null | 2021-03-19T21:55:46 | 2016-01-17T18:23:00 | Python | UTF-8 | Python | false | false | 1,119 | py | import sys
def isHappy(state):
for ch in state:
if ch == '-':
return False
return True
def generate(state):
new_states = []
lenOfState = len(state)
for i in range(1,lenOfState+1):
new_state = ""
for j in range(0, i):
if state[j] == '+':
new_state = new_state + '-'
else:
new_state = new_state + '+'
new_state = new_state + state[i:lenOfState]
new_states.append(new_state)
return new_states
if __name__ == "__main__":
filename = sys.argv[1]
f = open(filename, 'r')
lines = f.readlines()
T = int(lines[0])
idx = 0
for i in range(0,T):
origin_state = lines[i+1]
states = set([origin_state])
level = {origin_state:0}
queue = [origin_state]
while len(queue) > 0:
# print(states)
next_item = queue.pop()
# print("%3d: %s" % (idx, next_item))
idx = idx + 1
current_level = level[next_item]
if isHappy(next_item):
print("Case #%d: %d" % (i+1, current_level))
break
new_states = generate(next_item)
for state in new_states:
if state not in states:
states.add(state)
queue.insert(0, state)
level[state] = current_level + 1
| [
"[[email protected]]"
]
| |
d3c5463beb6e02ae8155b9bce09381283c948c6e | 4cc2ef8cd6a587da84a7ad0d7f15ed29c3f1cb9a | /pic/updateid.py | 24991c93c0f3a55e6d809fd0567e517804d5f37a | []
| no_license | eiselekd/backuphelpers | 71797823468cec36038d482ee81e606571f35289 | a9b92a6f3bd3984a517eb0c262f856e451302990 | refs/heads/master | 2020-03-23T08:48:29.977323 | 2018-11-19T20:33:13 | 2018-11-19T20:33:13 | 141,349,264 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 1,190 | py | #!/usr/bin/python3
import argparse, os
from pprint import pprint
from sortpics.img import SortImage
from pyexiftool.exiftool import ExifTool
from pyexiftool.exiftool import fsencode
import tempfile, sys, hashlib
parser = argparse.ArgumentParser(description='sortpics')
parser.add_argument('--verbose', '-v', dest='verbose', action='count', default=0)
parser.add_argument('--update', '-u', dest='update', action='count', default=0)
parser.add_argument('file')
args = parser.parse_args()
f = args.file
def md5(img_path):
hash_md5 = hashlib.md5()
with open(img_path, "rb") as f:
for chunk in iter(lambda: f.read(4096), b""):
hash_md5.update(chunk)
return hash_md5.hexdigest()
with ExifTool() as et:
exif_data = et.get_metadata(f)
if (args.verbose):
pprint(exif_data)
m = ""
for j in [ 'EXIF:ImageUniqueID', 'MakerNotes:ImageUniqueID' ]:
if j in exif_data:
if (len(exif_data[j]) > 16):
m = exif_data[j]
if m == "":
if (args.update):
m = md5(f)
p = map(fsencode,["-EXIF:ImageUniqueID+=%s" %(m), f])
et.execute(*p)
sys.stdout.write(m)
| [
"[email protected]"
]
| |
8994d1eea949890530bfbdfe44ecda4a0e96bce8 | d51b4c766661af65b4ee6e7c30f8cb4bdd8603e3 | /python/algorithm/leetcode/403.py | 3684426cb3a77880be1c00f4f4e999c006acfbfb | []
| no_license | yanxurui/keepcoding | 3e988c76b123d55b32cf7cc35fbffb12c4ccb095 | d6b9f07e2d1437681fa77fee0687ea9b83cab135 | refs/heads/master | 2021-01-24T09:01:41.306597 | 2020-05-21T05:36:04 | 2020-05-21T05:36:04 | 93,400,267 | 1 | 1 | null | null | null | null | UTF-8 | Python | false | false | 1,715 | py | from typing import List
# https://leetcode.com/problems/frog-jump/discuss/88824/Very-easy-to-understand-JAVA-solution-with-explanations
class Solution:
def canCross(self, stones: List[int]) -> bool:
d = {stone:set() for stone in stones}
d[stones[0]].add(1)
for stone in stones:
for step in d[stone]:
reach = stone+step
if reach == stones[-1]:
return True
if reach in d:
if step-1 > 0:
d[reach].add(step-1)
d[reach].add(step)
d[reach].add(step+1)
return False
# TLE
class Solution2:
def canCross(self, stones: List[int]) -> bool:
return self.dfs(stones, 0, 1)
def dfs(self, stones, i, k):
# jump from index i by k units
n = len(stones)
if i == n-1:
# arrive at the last stone
return True
# jump to j
j = self.bs(stones, i+1, len(stones)-1, stones[i]+k)
if j > 0:
return self.dfs(stones, j, k-1) or self.dfs(stones, j, k) or self.dfs(stones, j, k+1)
else:
return False
def bs(self, stones, l, h, t):
while l <= h:
m = (l+h)//2
if stones[m] == t:
return m
elif stones[m] < t:
l = m+1
else:
h = m-1
return -1
if __name__ == '__main__':
from testfunc import test
test_data = [
(
[0,1,3,5,6,8,12,17],
True
),
(
[0,1,2,3,4,8,9,11],
False
)
]
test(Solution().canCross, test_data)
| [
"[email protected]"
]
| |
3c15bf29f03af4682e3d5978616547b28ff92205 | d7faf47825b6f8e5abf9a9587f1e7248c0eed1e2 | /python/ray/tests/test_multinode_failures.py | 61627c99c93063c84698e4d6581e3a96baa82812 | [
"Apache-2.0",
"BSD-3-Clause",
"MIT"
]
| permissive | ggdupont/ray | 7d7c7f39a8f99a09199fab60897da9e48b8e2645 | 15391026c19f1cbbb8d412e46b01f7998e42f2b9 | refs/heads/master | 2023-03-12T06:30:11.428319 | 2021-12-07T05:34:27 | 2021-12-07T05:34:27 | 165,058,028 | 0 | 0 | Apache-2.0 | 2023-03-04T08:56:50 | 2019-01-10T12:41:09 | Python | UTF-8 | Python | false | false | 5,384 | py | import os
import signal
import sys
import time
import pytest
import ray
import ray.ray_constants as ray_constants
from ray.cluster_utils import Cluster, cluster_not_supported
from ray._private.test_utils import RayTestTimeoutException, get_other_nodes
SIGKILL = signal.SIGKILL if sys.platform != "win32" else signal.SIGTERM
@pytest.mark.xfail(cluster_not_supported, reason="cluster not supported")
@pytest.fixture(params=[(1, 4), (4, 4)])
def ray_start_workers_separate_multinode(request):
num_nodes = request.param[0]
num_initial_workers = request.param[1]
# Start the Ray processes.
cluster = Cluster()
for _ in range(num_nodes):
cluster.add_node(num_cpus=num_initial_workers)
ray.init(address=cluster.address)
yield num_nodes, num_initial_workers
# The code after the yield will run as teardown code.
ray.shutdown()
cluster.shutdown()
@pytest.mark.skipif(sys.platform == "win32", reason="Failing on Windows.")
def test_worker_failed(ray_start_workers_separate_multinode):
num_nodes, num_initial_workers = (ray_start_workers_separate_multinode)
@ray.remote
def get_pids():
time.sleep(0.25)
return os.getpid()
start_time = time.time()
pids = set()
while len(pids) < num_nodes * num_initial_workers:
new_pids = ray.get([
get_pids.remote()
for _ in range(2 * num_nodes * num_initial_workers)
])
for pid in new_pids:
pids.add(pid)
if time.time() - start_time > 60:
raise RayTestTimeoutException(
"Timed out while waiting to get worker PIDs.")
@ray.remote
def f(x):
time.sleep(0.5)
return x
# Submit more tasks than there are workers so that all workers and
# cores are utilized.
object_refs = [f.remote(i) for i in range(num_initial_workers * num_nodes)]
object_refs += [f.remote(object_ref) for object_ref in object_refs]
# Allow the tasks some time to begin executing.
time.sleep(0.1)
# Kill the workers as the tasks execute.
for pid in pids:
try:
os.kill(pid, SIGKILL)
except OSError:
# The process may have already exited due to worker capping.
pass
time.sleep(0.1)
# Make sure that we either get the object or we get an appropriate
# exception.
for object_ref in object_refs:
try:
ray.get(object_ref)
except (ray.exceptions.RayTaskError,
ray.exceptions.WorkerCrashedError):
pass
def _test_component_failed(cluster, component_type):
"""Kill a component on all worker nodes and check workload succeeds."""
# Submit many tasks with many dependencies.
@ray.remote
def f(x):
# Sleep to make sure that tasks actually fail mid-execution.
time.sleep(0.01)
return x
@ray.remote
def g(*xs):
# Sleep to make sure that tasks actually fail mid-execution. We
# only use it for direct calls because the test already takes a
# long time to run with the raylet codepath.
time.sleep(0.01)
return 1
# Kill the component on all nodes except the head node as the tasks
# execute. Do this in a loop while submitting tasks between each
# component failure.
time.sleep(0.1)
worker_nodes = get_other_nodes(cluster)
assert len(worker_nodes) > 0
for node in worker_nodes:
process = node.all_processes[component_type][0].process
# Submit a round of tasks with many dependencies.
x = 1
for _ in range(1000):
x = f.remote(x)
xs = [g.remote(1)]
for _ in range(100):
xs.append(g.remote(*xs))
xs.append(g.remote(1))
# Kill a component on one of the nodes.
process.terminate()
time.sleep(1)
process.kill()
process.wait()
assert not process.poll() is None
# Make sure that we can still get the objects after the
# executing tasks died.
ray.get(x)
ray.get(xs)
def check_components_alive(cluster, component_type, check_component_alive):
"""Check that a given component type is alive on all worker nodes."""
worker_nodes = get_other_nodes(cluster)
assert len(worker_nodes) > 0
for node in worker_nodes:
process = node.all_processes[component_type][0].process
if check_component_alive:
assert process.poll() is None
else:
print("waiting for " + component_type + " with PID " +
str(process.pid) + "to terminate")
process.wait()
print("done waiting for " + component_type + " with PID " +
str(process.pid) + "to terminate")
assert not process.poll() is None
@pytest.mark.parametrize(
"ray_start_cluster",
[{
"num_cpus": 8,
"num_nodes": 4,
"_system_config": {
# Raylet codepath is not stable with a shorter timeout.
"num_heartbeats_timeout": 10
},
}],
indirect=True)
def test_raylet_failed(ray_start_cluster):
cluster = ray_start_cluster
# Kill all raylets on worker nodes.
_test_component_failed(cluster, ray_constants.PROCESS_TYPE_RAYLET)
if __name__ == "__main__":
import pytest
sys.exit(pytest.main(["-v", __file__]))
| [
"[email protected]"
]
| |
2f2a337de675580690d98717fd71b31a135f8197 | 209155f8a32bef23c9b02f5ec26a1f5935d319c0 | /tests/test_squeezedimd.py | 69974d322cf4bebb2a84a03558eefc6f67187780 | [
"Apache-2.0"
]
| permissive | wentaozhu/MONAI | ec154ca360714df8fcd55aa63506465c7949e1ff | 55025e07144b113f156b232b196c3ef1a765e02b | refs/heads/master | 2022-11-09T10:28:50.672985 | 2020-06-25T23:09:26 | 2020-06-25T23:09:26 | 274,224,027 | 2 | 1 | Apache-2.0 | 2020-06-22T19:22:59 | 2020-06-22T19:22:58 | null | UTF-8 | Python | false | false | 2,518 | py | # Copyright 2020 MONAI Consortium
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
# http://www.apache.org/licenses/LICENSE-2.0
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import unittest
import numpy as np
import torch
from parameterized import parameterized
from monai.transforms import SqueezeDimd
TEST_CASE_1 = [
{"keys": ["img", "seg"], "dim": None},
{"img": np.random.rand(1, 2, 1, 3), "seg": np.random.randint(0, 2, size=[1, 2, 1, 3])},
(2, 3),
]
TEST_CASE_2 = [
{"keys": ["img", "seg"], "dim": 2},
{"img": np.random.rand(1, 2, 1, 8, 16), "seg": np.random.randint(0, 2, size=[1, 2, 1, 8, 16])},
(1, 2, 8, 16),
]
TEST_CASE_3 = [
{"keys": ["img", "seg"], "dim": -1},
{"img": np.random.rand(1, 1, 16, 8, 1), "seg": np.random.randint(0, 2, size=[1, 1, 16, 8, 1])},
(1, 1, 16, 8),
]
TEST_CASE_4 = [
{"keys": ["img", "seg"]},
{"img": np.random.rand(1, 2, 1, 3), "seg": np.random.randint(0, 2, size=[1, 2, 1, 3])},
(2, 1, 3),
]
TEST_CASE_4_PT = [
{"keys": ["img", "seg"], "dim": 0},
{"img": torch.rand(1, 2, 1, 3), "seg": torch.randint(0, 2, size=[1, 2, 1, 3])},
(2, 1, 3),
]
TEST_CASE_5 = [
{"keys": ["img", "seg"], "dim": -2},
{"img": np.random.rand(1, 1, 16, 8, 1), "seg": np.random.randint(0, 2, size=[1, 1, 16, 8, 1])},
]
TEST_CASE_6 = [
{"keys": ["img", "seg"], "dim": 0.5},
{"img": np.random.rand(1, 1, 16, 8, 1), "seg": np.random.randint(0, 2, size=[1, 1, 16, 8, 1])},
]
class TestSqueezeDim(unittest.TestCase):
@parameterized.expand([TEST_CASE_1, TEST_CASE_2, TEST_CASE_3, TEST_CASE_4, TEST_CASE_4_PT])
def test_shape(self, input_param, test_data, expected_shape):
result = SqueezeDimd(**input_param)(test_data)
self.assertTupleEqual(result["img"].shape, expected_shape)
self.assertTupleEqual(result["seg"].shape, expected_shape)
@parameterized.expand([TEST_CASE_5, TEST_CASE_6])
def test_invalid_inputs(self, input_param, test_data):
with self.assertRaises(ValueError):
SqueezeDimd(**input_param)(test_data)
if __name__ == "__main__":
unittest.main()
| [
"[email protected]"
]
| |
decbb3699bc8cd3376d79937ce5ff90ed552d6e5 | 0e0ce88c886370df9af51855115c99dfc003e5da | /2020/08_Flask/16_MONGOdb_and_Login_user/app/__init__.py | 96dcb3ff132ec6bfd8b7aa4b0b1c6f118af143e8 | []
| no_license | miguelzeph/Python_Git | ed80db9a4f060836203df8cc2e42e003b0df6afd | 79d3b00236e7f4194d2a23fb016b43e9d09311e6 | refs/heads/master | 2021-07-08T18:43:45.855023 | 2021-04-01T14:12:23 | 2021-04-01T14:12:23 | 232,007,012 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 455 | py | # Constructor and Config
from flask import Flask
from flask_pymongo import PyMongo
app = Flask(__name__)
app.config['SECRET_KEY'] = 'mysecretkey'
#################MONGODB######################
# MongoDB Config (Cadastrar no www.mlab.com)
app.config['MONGO_URI'] = "mongodb+srv://useradmin:[email protected]/MEU_DB?retryWrites=true&w=majority"
# Create Object MongoDB
mongo = PyMongo(app)
############################################## | [
"[email protected]"
]
| |
1a91963a5355142fb88137dc0520af04d28e21be | c8fd92a30a9ff7f8b3678398ad137b0350b907b8 | /config.py | 173287a0d803000c04dc4a237fe89f9190437745 | []
| no_license | maximilianh/repeatBrowser | 2634d487aeeb8edfb9f48096650cf2bf96251a26 | 76d55908d567ee5eda89dab9145d5f5652065bc5 | refs/heads/master | 2021-01-01T20:00:54.441883 | 2020-03-09T11:57:53 | 2020-03-09T11:57:53 | 20,178,839 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 330 | py | DB = "hg38"
#DB = "hg19"
TMPDIR = "/scratch/tmp"
# set to None to not use cluster
#CLUSTER=None
CLUSTER="ku"
TARGETPERC = 99 # percentile, for top50 consensus building
rmskTable = "rmskHmmer2020" # the rmsk table, usually it's rmsk, but you can specify a different one here
RMTORB = "data/rmToDfam.tab"
RBTORM = "data/rbToRm.tab"
| [
"[email protected]"
]
| |
3d805adb218362378b581ac72b37a9ac9781147d | 781e2692049e87a4256320c76e82a19be257a05d | /all_data/exercism_data/python/bob/d7f1d7204e4f46fc8875f4aeefac75e3.py | 36daf78d07daeb7267f1f3306eef351eb9fe3518 | []
| no_license | itsolutionscorp/AutoStyle-Clustering | 54bde86fe6dbad35b568b38cfcb14c5ffaab51b0 | be0e2f635a7558f56c61bc0b36c6146b01d1e6e6 | refs/heads/master | 2020-12-11T07:27:19.291038 | 2016-03-16T03:18:00 | 2016-03-16T03:18:42 | 59,454,921 | 4 | 0 | null | 2016-05-23T05:40:56 | 2016-05-23T05:40:56 | null | UTF-8 | Python | false | false | 260 | py | def hey(words):
if len(words.strip())==0:
return 'Fine. Be that way!'
elif words.isupper():
return 'Whoa, chill out!'
punctuation=words[-1]
if punctuation=='?':
return 'Sure.'
else:
return 'Whatever.'
| [
"[email protected]"
]
| |
83dc2ea11d5703b80b5e91b05c61699d3b671f2b | f28aebe70dc265e0e2ecf3a02c19f1d20a750a92 | /perfil/views.py | 3c2e2a1d680890c1c1419ac0cf747b0d8060df93 | []
| no_license | linikerunk/E-commerce-liniker | 7fc1750d53ad8ad1e2c28537158324caaaf7d710 | c91376da3d18498fdf956e34d884a8ccca2c0d33 | refs/heads/master | 2020-09-28T08:25:12.794289 | 2020-01-09T02:06:26 | 2020-01-09T02:06:26 | 226,731,684 | 1 | 0 | null | null | null | null | UTF-8 | Python | false | false | 5,674 | py | from django.shortcuts import render, get_object_or_404, redirect
from django.views.generic import ListView
from django.views import View
from django.http import HttpResponse
from django.contrib.auth.models import User
from django.contrib.auth import authenticate, login, logout
from django.contrib import messages
import copy
from . import models
from . import forms
# Create your views here.
class BasePerfil(View):
template_name = 'perfil/criar.html'
def setup(self, *args, **kwargs):
super().setup(*args, **kwargs)
self.carrinho = copy.deepcopy(self.request.session.get('carrinho', {}))
self.perfil = None
if self.request.user.is_authenticated:
self.perfil = models.Perfil.objects.filter(
usuario=self.request.user).first()
self.contexto = {
'userform':forms.UserForm(
data=self.request.POST or None,
usuario=self.request.user,
instance=self.request.user,
),
'perfilform': forms.PerfilForm(
data=self.request.POST or None,
instance=self.perfil,
),
}
else:
self.contexto = {
'userform':forms.UserForm(
data=self.request.POST or None
),
'perfilform': forms.PerfilForm(
data=self.request.POST or None
),
}
self.userform = self.contexto['userform']
self.perfilform = self.contexto['perfilform']
if self.request.user.is_authenticated:
self.template_name = 'perfil/atualizar.html'
self.renderizar = render(self.request, self.template_name, self.contexto)
def get(self, *args, **kwargs):
return self.renderizar
class Criar(BasePerfil):
def post(self, *args, **kwargs):
if not self.userform.is_valid() or not self.perfilform.is_valid():
messages.error(
self.request,
'Existem erros no formulário de cadastro. Verifique se todos '
'os campos foram preenchidos corretamentes'
)
return self.renderizar
username = self.userform.cleaned_data.get('username')
password = self.userform.cleaned_data.get('password')
email = self.userform.cleaned_data.get('email')
first_name = self.userform.cleaned_data.get('first_name')
last_name = self.userform.cleaned_data.get('last_name')
# Usuário Logado
if self.request.user.is_authenticated:
usuario = get_object_or_404(User, username=self.request.user.username)
usuario.username = username
if password:
usuario.set_password(password)
usuario.email = email
usuario.first_name = first_name
usuario.last_name = last_name
usuario.save()
if not self.perfil:
self.perfilform.cleaned_data['usuario'] = usuario
print(self.perfilform.cleaned_data)
perfil = models.Perfil(**self.perfilform.cleaned_data)
perfil.save()
else:
perfil = self.perfilform.save(commit=False)
perfil.usuario = usuario
perfil.save()
#Usuário não logado (novo)
else:
usuario = self.userform.save(commit=False)
usuario.set_password(password)
usuario.save()
perfil = self.perfilform.save(commit=False)
perfil.usuario = usuario
perfil.save()
if password:
autentica = authenticate(self.request,
username=usuario,
password=password)
if autentica:
login(self.request, user=usuario)
self.request.session['carrinho'] = self.carrinho
self.request.session.save()
messages.success(
self.request,
'Seu cadastro foi criado ou atualizado com sucesso.')
messages.success(
self.request,
'Você fez login e pode concluir sua compra.')
return redirect('produto:carrinho')
return self.renderizar
class Atualizar(View):
def get(self, *args, **kwargs):
return HttpResponse('Atualizar')
class Login(View):
def post(self, *args, **kwargs):
username = self.request.POST.get('username')
password = self.request.POST.get('password')
if not username or not password:
messages.error(
self.request,
'Usuário ou senha invalidos.'
)
return redirect('perfil:criar')
usuario = authenticate(self.request, username=username, password=password)
if not usuario:
messages.error(
self.request,
'Usuário ou senha invalidos.'
)
return redirect('perfil:criar')
login(self.request, user=usuario)
messages.success(
self.request,
'Você fez login no sistema e pode concluir sua compra.'
)
return redirect('produto:carrinho')
class Logout(View):
def get(self, *args, **kwargs):
carrinho = copy.deepcopy(self.request.session.get('carrinho'))
logout(self.request)
self.request.session['carrinho'] = carrinho
self.request.session.save()
return redirect('produto:lista')
| [
"[email protected]"
]
| |
0d8395c16985bc147b8ca2e583c5f5cace411878 | 7da288104b7ab242913f061dc39adb01b226db98 | /PathSupportSet/CandidatePredicatePathSupSet.py | ff351321e0825a22ebe4414b8da02b0bce7229ee | []
| no_license | cstmdzx/pyAnswer | fc1ba6a58b12a8478cf9e1cd79eb4ec4b46697ef | bb5c16510f25bb61d9618c4069c49fdb0672d417 | refs/heads/master | 2021-01-12T05:25:13.307037 | 2017-04-27T02:57:09 | 2017-04-27T02:57:09 | 77,926,338 | 0 | 0 | null | null | null | null | GB18030 | Python | false | false | 3,377 | py | # coding=gbk
# CandidatePredicatePathForRep format:RelationPhraseId~Predicate[f/b]Predicate[f/b]…~Predicate[f/b]Predicate[f/b]…
# generate Predicate/Path support set and record predicate candidates at the same time
import MySQLdb
import re
conn = MySQLdb.connect(host='localhost', user='root', password='password', db='dbpedia')
cur = conn.cursor()
filePredicatePathSupSet = open('PredicatePathSupSet', 'w')
fileCandidatePredicatePathForRep = open('CandidatePredicatePathForRep')
filePredicateCandidates = open('PredicatePathCandidates', 'w')
linesCandidatePredicatePathForRep = fileCandidatePredicatePathForRep.readlines()
dictPredicatePathCandidates = dict()
for eachLine in linesCandidatePredicatePathForRep:
eachLine = eachLine.replace('\n', '')
words = eachLine.split('~')
idRep = words[0]
del words[0] # 去掉最开始的relation phrase id
listPath = list()
for eachPath in words: # 一条路径
if eachPath in dictPredicatePathCandidates:
dictPredicatePathCandidates[eachPath] += '~' + idRep
else:
dictPredicatePathCandidates[eachPath] = idRep
wordsPath = eachPath.split(']')
dictResEntityPair = dict() # 保存截止当前路径的EntityPairs
for eachPredicate in wordsPath:
wordsPredicate = eachPredicate.split('[') # 路径中的每一条谓语
predicate = wordsPredicate[0]
direction = wordsPredicate[1]
sqlPredicateSO = 'select SO from P_SO WHERE Predicate = \'' + predicate.__str__() + '\''
cur.execute(sqlPredicateSO)
listSO = cur.fetchall() # 找出所有的SO
dictCurEntityPair = dict() # 将找出的SO处理成dict,方便后面做连接
for eachElement in listSO:
wordsSO = eachElement.split('s')
wordSubject = wordsSO[0]
wordObject = wordsSO[1]
if direction.__str__() == 'f':
dictCurEntityPair[wordSubject] = wordObject
else:
dictCurEntityPair[wordObject] = wordSubject
if dictResEntityPair.__len__() == 1:
dictResEntityPair = dictCurEntityPair
else:
for eachKey in dictResEntityPair:
# 把当前的node,连接到下一次要做匹配连接的那个node上
if eachKey in dictCurEntityPair:
# 其实就相当于把dictResEntityPair的key换成下一个node
dictResEntityPair[dictCurEntityPair[eachKey]] = dictResEntityPair[eachKey]
# 写入结果
filePredicatePathSupSet.write(eachPath)
for eachKey in dictResEntityPair:
filePredicatePathSupSet.write('~')
# 一定是先写value进去,然后再写key,因为连接方式
filePredicatePathSupSet.write(dictResEntityPair[eachKey] + '\t' + eachKey)
filePredicatePathSupSet.write('\n')
# 保存candidate
for eachCandidate in dictPredicatePathCandidates:
filePredicateCandidates.write(eachCandidate + '~' + dictPredicatePathCandidates[eachCandidate] + '\n')
cur.close()
conn.close()
filePredicateCandidates.close()
filePredicatePathSupSet.close()
fileCandidatePredicatePathForRep.close()
| [
"[email protected]"
]
| |
7e16f267e522ad119638dc37559b9520b949a962 | 9b64f0f04707a3a18968fd8f8a3ace718cd597bc | /huaweicloud-sdk-dgc/huaweicloudsdkdgc/v1/model/resource_info.py | a14466abe6bbdbb7ed79a7a66a595ce0f83a8450 | [
"Apache-2.0"
]
| permissive | jaminGH/huaweicloud-sdk-python-v3 | eeecb3fb0f3396a475995df36d17095038615fba | 83ee0e4543c6b74eb0898079c3d8dd1c52c3e16b | refs/heads/master | 2023-06-18T11:49:13.958677 | 2021-07-16T07:57:47 | 2021-07-16T07:57:47 | null | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 5,704 | py | # coding: utf-8
import re
import six
class ResourceInfo:
"""
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.
"""
sensitive_list = []
openapi_types = {
'name': 'str',
'type': 'str',
'location': 'str',
'depend_files': 'list[str]',
'desc': 'str',
'directory': 'str'
}
attribute_map = {
'name': 'name',
'type': 'type',
'location': 'location',
'depend_files': 'dependFiles',
'desc': 'desc',
'directory': 'directory'
}
def __init__(self, name=None, type=None, location=None, depend_files=None, desc=None, directory=None):
"""ResourceInfo - a model defined in huaweicloud sdk"""
self._name = None
self._type = None
self._location = None
self._depend_files = None
self._desc = None
self._directory = None
self.discriminator = None
if name is not None:
self.name = name
if type is not None:
self.type = type
if location is not None:
self.location = location
if depend_files is not None:
self.depend_files = depend_files
if desc is not None:
self.desc = desc
if directory is not None:
self.directory = directory
@property
def name(self):
"""Gets the name of this ResourceInfo.
:return: The name of this ResourceInfo.
:rtype: str
"""
return self._name
@name.setter
def name(self, name):
"""Sets the name of this ResourceInfo.
:param name: The name of this ResourceInfo.
:type: str
"""
self._name = name
@property
def type(self):
"""Gets the type of this ResourceInfo.
:return: The type of this ResourceInfo.
:rtype: str
"""
return self._type
@type.setter
def type(self, type):
"""Sets the type of this ResourceInfo.
:param type: The type of this ResourceInfo.
:type: str
"""
self._type = type
@property
def location(self):
"""Gets the location of this ResourceInfo.
资源文件所在OBS路径
:return: The location of this ResourceInfo.
:rtype: str
"""
return self._location
@location.setter
def location(self, location):
"""Sets the location of this ResourceInfo.
资源文件所在OBS路径
:param location: The location of this ResourceInfo.
:type: str
"""
self._location = location
@property
def depend_files(self):
"""Gets the depend_files of this ResourceInfo.
:return: The depend_files of this ResourceInfo.
:rtype: list[str]
"""
return self._depend_files
@depend_files.setter
def depend_files(self, depend_files):
"""Sets the depend_files of this ResourceInfo.
:param depend_files: The depend_files of this ResourceInfo.
:type: list[str]
"""
self._depend_files = depend_files
@property
def desc(self):
"""Gets the desc of this ResourceInfo.
:return: The desc of this ResourceInfo.
:rtype: str
"""
return self._desc
@desc.setter
def desc(self, desc):
"""Sets the desc of this ResourceInfo.
:param desc: The desc of this ResourceInfo.
:type: str
"""
self._desc = desc
@property
def directory(self):
"""Gets the directory of this ResourceInfo.
资源所在目录
:return: The directory of this ResourceInfo.
:rtype: str
"""
return self._directory
@directory.setter
def directory(self, directory):
"""Sets the directory of this ResourceInfo.
资源所在目录
:param directory: The directory of this ResourceInfo.
:type: str
"""
self._directory = directory
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:
if attr in self.sensitive_list:
result[attr] = "****"
else:
result[attr] = value
return result
def to_str(self):
import simplejson as json
return json.dumps(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, ResourceInfo):
return False
return self.__dict__ == other.__dict__
def __ne__(self, other):
"""Returns true if both objects are not equal"""
return not self == other
| [
"[email protected]"
]
| |
be6248f04c5613fc23898d6e6d3dc7a2c1d68df5 | b97f6b3f245eb2546156be00c7495aad1328de0b | /app/main/views.py | 2aea775cd3528e9d27dcd81f98d5ea236e9f7157 | [
"MIT"
]
| permissive | MutuaFranklin/BlogPool | 438e089432f86a6c36607e0ddd6bfbc1632e8be1 | d5781a62a1ad6e5242392dad28e41f536377a4a6 | refs/heads/main | 2023-07-17T12:58:29.352045 | 2021-08-24T08:22:46 | 2021-08-24T08:22:46 | 397,893,856 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 8,884 | py | from app.requests import get_quote
from . import main
from flask import render_template,request,redirect,url_for, abort, flash
from flask_login import login_required, current_user
from ..models import Quote, Subscriber, User, Blog, Comment
from .. import db,photos
from .forms import SubscriberForm, UpdateProfile, BlogForm, CommentForm
import markdown2
from ..email import mail_message
from sqlalchemy import desc
from werkzeug import secure_filename
@main.route('/')
def index():
'''
Index page
'''
blog_one = Blog.query.filter_by(blog_id=1).first()
blog_two = Blog.query.filter_by(blog_id=2).first()
blog_three = Blog.query.filter_by(blog_id=3).first()
quote = get_quote()
title = 'BlogPool'
return render_template('index.html', quote=quote, blog_one =blog_one, blog_two = blog_two, blog_three =blog_three, title=title)
@main.route('/home', methods= ['POST', 'GET'])
@login_required
def home():
'''
home page view rendered after authentication process.
'''
# blogs = Blog.query.all()
blogs = Blog.query.order_by(Blog.datetime_posted.desc()).all()
# if blogs is None:
# abort(404)
#format_blog = markdown2.markdown(blogs.blog_content,extras=["code-friendly", "fenced-code-blocks"])
title = 'BlogPool Home'
return render_template('home.html', title = title, blogs=blogs)
@main.route('/blog/blog-details/<int:id>',methods=['GET','POST'])
@login_required
def blog_details(id):
single_blog=Blog.query.get(id)
comments= Comment.query.filter_by(blog_id=id).all()
# comments = Comment.query.order_by(Comment.datetime_posted.desc()).all
commentForm=CommentForm()
if commentForm.validate_on_submit():
new_comment = Comment(blog_comment = commentForm.blog_comment.data,blog_id=single_blog.blog_id, user=current_user)
new_comment.save_comment()
return redirect (url_for ("main.blog_details", id= single_blog.blog_id))
title = 'Blog Details'
return render_template('blog_details.html',comments=comments,single_blog=single_blog, commentForm=commentForm, title=title)
@main.route('/user/<uname>')
@login_required
def profile(uname):
user = User.query.filter_by(username = uname).first()
if user is None:
abort(404)
blogs =Blog.query.filter_by(user=current_user)
return render_template("profile/profile.html", blogs = blogs,user=current_user)
@main.route('/user/<uname>/update',methods = ['GET','POST'])
@login_required
def update_profile(uname):
user = User.query.filter_by(username = uname).first()
if user is None:
abort(404)
form = UpdateProfile()
if form.validate_on_submit():
user.bio = form.bio.data
db.session.add(user)
db.session.commit()
return redirect(url_for('.profile',uname=user.username))
user = User.query.filter_by(username = uname).first()
if 'photo' in request.files:
filename = photos.save(request.files['photo'])
path = f'photos/{filename}'
user.profile_pic = path
db.session.commit()
return redirect(url_for('main.profile',uname=uname))
return render_template('profile/update.html',form =form)
@main.route('/user/<uname>/update/pic',methods=['GET','POST'])
@login_required
def update_pic(uname):
user = User.query.filter_by(username = uname).first()
if 'photo' in request.files:
filename = photos.save(request.files['photo'])
path = f'photos/{filename}'
user.profile_pic = path
db.session.commit()
return redirect(url_for('main.profile',uname=uname))
@main.route('/blog-submission',methods=['GET','POST'])
@login_required
def blog_submission():
blog_form = BlogForm()
sub_form = SubscriberForm()
if blog_form.validate_on_submit() and 'photo' in request.files:
filename = photos.save(request.files['photo'])
path=f'photos/{filename}'
new_blog = Blog(
blog_title = blog_form.title.data,
blog_content = blog_form.blog.data,
blog_category = blog_form.blog_category.data,
blog_image = path,
user=current_user)
new_blog.save_blog()
subscribers=Subscriber.query.all()
for subscriber in subscribers:
mail_message("New Blog Post","email/newPost/newPostAlert", subscriber.subscriber_email,blog=new_blog)
return redirect (url_for ("main.home"))
if sub_form.validate_on_submit():
new_subscriber = Subscriber(
subscriber_email = sub_form.subscriber_email.data
)
new_subscriber.save_subscriber()
flash('You have been successfully subscribed')
mail_message("Subscription alert","email/welcomeSubscriber/welcome_subscriber",new_subscriber.subscriber_email,subscriber=new_subscriber)
return redirect (url_for ("main.blog_submission"))
title = 'Blog Submission'
return render_template('blog_submission.html', title = title, blog_form=blog_form, sub_form = sub_form)
@main.route('/blog/editblog/<int:id>', methods=['GET', 'POST'])
@login_required
def edit_blog(id):
"""
Edit a blogpost
"""
sub_form = SubscriberForm()
blog_form = BlogForm()
blog = Blog.query.get(id)
if blog_form.validate_on_submit() and 'photo' in request.files:
filename = photos.save(request.files['photo'])
path=f'photos/{filename}'
blog.title=blog_form.title.data
blog.blog_category=blog_form.blog_category.data
blog.blog_content=blog_form.blog.data
user=current_user
blog.blog_image=path
db.session.commit()
subscribers=Subscriber.query.all()
for subscriber in subscribers:
mail_message("A blog update","email/updatePost/updatePostAlert", subscriber.subscriber_email, user = current_user)
return redirect (url_for ("main.home"))
elif request.method == 'GET':
blog_form.title.data = blog.blog_title
blog_form.blog_category.data = blog.blog_category
blog_form.blog.data = blog.blog_content
title = "Update Post"
return render_template('blog_submission.html', title = title, blog_form=blog_form, sub_form=sub_form)
@main.route('/blog/delete/<int:id>')
@login_required
def delete_blog(id):
blog = Blog.query.filter_by(blog_id =id).first()
if current_user.id == blog.user.id:
db.session.delete(blog)
db.session.commit()
return redirect(url_for('main.home'))
@main.route('/blog/comment/delete/<int:id>')
@login_required
def delete_comment(id):
comment = Comment.query.filter_by(id =id).first()
db.session.delete(comment)
db.session.commit()
return redirect(url_for('main.blog_details', id = comment.blog_id))
@main.route('/Business')
@login_required
def business():
title = 'Business Blogs'
h4 = 'Business Blogs'
random = "Business Blog"
blogs = Blog.query.filter_by(blog_category =random).all()
return render_template('blog_categories.html', title = title, blogs=blogs, h4 =h4)
@main.route('/lifestyle')
@login_required
def lifestyle():
title = 'Lifestyle Blogs'
h4 = 'Lifestyle Blogs'
random = "Lifestyle Blog"
blogs = Blog.query.filter_by(blog_category =random).all()
return render_template('blog_categories.html', title = title, blogs=blogs, h4 =h4)
@main.route('/technology')
@login_required
def technology():
title = 'Technology-Blogs'
h4 = 'Technology Blogs'
random = "Technology Blog"
blogs = Blog.query.filter_by(blog_category =random).all()
return render_template('blog_categories.html', title = title, blogs=blogs, h4 =h4)
@main.route('/fashion')
@login_required
def fashion():
title = 'Fashion-Blogs'
h4 = 'Fashion Blogs'
random = "Fashion Blog"
blogs = Blog.query.filter_by(blog_category =random).all()
return render_template('blog_categories.html', title = title, blogs=blogs, h4 =h4)
@main.route('/entertainment')
@login_required
def entertainment():
title = 'Entertainment Blogs'
h4 = 'Entertainment Blogs'
random = "Entertainment Blog"
blogs = Blog.query.filter_by(blog_category =random).all()
return render_template('blog_categories.html', title = title, blogs=blogs, h4 =h4)
@main.route('/sports')
@login_required
def sports():
title = 'Sports-Blogs'
h4 = 'Sports Blogs'
random = "Sports Blog"
blogs = Blog.query.filter_by(blog_category =random).all()
return render_template('blog_categories.html', title = title, blogs=blogs, h4 =h4)
@main.route('/Others')
@login_required
def other():
title = 'Other Blogs'
h4 = 'Other Blogs'
random = "Other Blog"
blogs = Blog.query.filter_by(blog_category =random).all()
return render_template('blog_categories.html', title = title, blogs=blogs, h4 =h4)
| [
"[email protected]"
]
| |
56b342083fe99216f195da0c3369e49ae969dc03 | 43ede7b8fb546c00804c0ef94501f6e48ba170d6 | /Cursos Python/Análise de dados do zero. (PYTHON & PANDAS)/04 - Pandas DataFrame.py | 0731ed8b3a8a6bae993c69a735c235213f50e39c | []
| no_license | bopopescu/Python-13 | db407d17252473e78e705e563cfee4dbd316c6b9 | c8bef500f2d3e4a63d850f96dfa219eff2ecebda | refs/heads/master | 2022-11-22T16:24:08.490879 | 2020-06-11T14:22:24 | 2020-06-11T14:22:24 | 281,830,055 | 0 | 0 | null | 2020-07-23T02:26:31 | 2020-07-23T02:26:30 | null | UTF-8 | Python | false | false | 298 | py | import pandas as pd
coluna = ['Frutas']
itens = ['Laranja', 'maça', 'abacate']
df = pd.DataFrame(itens, columns=coluna)
print(df, '\n'*2)
coluna = ['Frutas', 'Preco']
itens = [['Laranja', 10], ['Maça', 10], ['Abacate', 15]]
df = pd.DataFrame(itens, columns=coluna, dtype=float)
print(df) | [
"[email protected]"
]
| |
995822e51e2d34a880e4dc2ba08886ea425c6817 | 8b619e49c3b83778958ebdbe85b25c7182117ac0 | /settings.py | c821d3ed82cd0183cd3e3564514979c0846cf1da | []
| no_license | hellais/ooni.nu | c98417145304ce985c953b78d1a50f10154d5b60 | 763aff9a5a75e358c475cf1bf9fcdf6afc534266 | refs/heads/master | 2020-05-31T06:03:36.383462 | 2012-12-12T17:03:00 | 2012-12-12T17:03:00 | null | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 4,735 | py | import os
here = lambda *x: os.path.join(os.path.abspath(os.path.dirname(__file__)), *x)
#Directories
LAYOUT_DIR = here('layout')
CONTENT_DIR = here('content')
MEDIA_DIR = here('media')
DEPLOY_DIR = here('deploy')
TMP_DIR = here('deploy_tmp')
BACKUPS_DIR = here('backups')
BACKUP = False
SITE_ROOT = "/"
SITE_WWW_URL = "http://www.ooni.nu"
SITE_NAME = "OONI"
SITE_AUTHOR = "Arturo Filasto'"
#URL Configuration
GENERATE_ABSOLUTE_FS_URLS = False
# Clean urls causes Hyde to generate urls without extensions. Examples:
# http://example.com/section/page.html becomes
# http://example.com/section/page/, and the listing for that section becomes
# http://example.com/section/
# The built-in CherryPy webserver is capable of serving pages with clean urls
# without any additional configuration, but Apache will need to use Mod_Rewrite
# to map the clean urls to the actual html files. The HtaccessGenerator site
# post processor is capable of automatically generating the necessary
# RewriteRules for use with Apache.
GENERATE_CLEAN_URLS = False
# A list of filenames (without extensions) that will be considered listing
# pages for their enclosing folders.
# LISTING_PAGE_NAMES = ['index']
LISTING_PAGE_NAMES = ['listing', 'index', 'default']
# Determines whether or not to append a trailing slash to generated urls when
# clean urls are enabled.
APPEND_SLASH = False
# {folder : extension : (processors)}
# The processors are run in the given order and are chained.
# Only a lone * is supported as an indicator for folders. Path
# should be specified. No wildcard card support yet.
# Starting under the media folder. For example, if you have media/css under
# your site root,you should specify just css. If you have media/css/ie you
# should specify css/ie for the folder name. css/* is not supported (yet).
# Extensions do not support wildcards.
MEDIA_PROCESSORS = {
'*':{
'.css':('hydeengine.media_processors.TemplateProcessor',
'hydeengine.media_processors.CSSmin',),
'.ccss':('hydeengine.media_processors.TemplateProcessor',
'hydeengine.media_processors.CleverCSS',
'hydeengine.media_processors.CSSmin',),
'.sass':('hydeengine.media_processors.TemplateProcessor',
'hydeengine.media_processors.SASS',
'hydeengine.media_processors.CSSmin',),
'.less':('hydeengine.media_processors.TemplateProcessor',
'hydeengine.media_processors.LessCSS',
'hydeengine.media_processors.CSSmin',),
'.styl':('hydeengine.media_processors.TemplateProcessor',
'hydeengine.media_processors.Stylus',
'hydeengine.media_processors.CSSmin',),
'.hss':(
'hydeengine.media_processors.TemplateProcessor',
'hydeengine.media_processors.HSS',
'hydeengine.media_processors.CSSmin',),
#'.js':(
# 'hydeengine.media_processors.TemplateProcessor',
# 'hydeengine.media_processors.JSmin',),
'.coffee':(
'hydeengine.media_processors.TemplateProcessor',
'hydeengine.media_processors.CoffeeScript',
'hydeengine.media_processors.JSmin',)
}
}
CONTENT_PROCESSORS = {
'prerendered/': {
'*.*' :
('hydeengine.content_processors.PassthroughProcessor',)
}
}
SITE_POST_PROCESSORS = {
# 'media/js': {
# 'hydeengine.site_post_processors.FolderFlattener' : {
# 'remove_processed_folders': True,
# 'pattern':"*.js"
# }
# }
}
CONTEXT = {
'GENERATE_CLEAN_URLS': GENERATE_CLEAN_URLS
}
FILTER = {
'include': (".htaccess",),
'exclude': (".*","*~")
}
#Processor Configuration
#
# Set this to the output of `which growlnotify`. If `which` returns emtpy,
# install growlnotify from the Extras package that comes with the Growl disk image.
#
#
GROWL = None
# path for YUICompressor, or None if you don't
# want to compress JS/CSS. Project homepage:
# http://developer.yahoo.com/yui/compressor/
#YUI_COMPRESSOR = "./lib/yuicompressor-2.4.2.jar"
YUI_COMPRESSOR = None
# path for Closure Compiler, or None if you don't
# want to compress JS/CSS. Project homepage:
# http://closure-compiler.googlecode.com/
#CLOSURE_COMPILER = "./lib/compiler.jar"
CLOSURE_COMPRILER = None
# path for HSS, which is a preprocessor for CSS-like files (*.hss)
# project page at http://ncannasse.fr/projects/hss
#HSS_PATH = "./lib/hss-1.0-osx"
HSS_PATH = None # if you don't want to use HSS
#Django settings
TEMPLATE_DIRS = (LAYOUT_DIR, CONTENT_DIR, TMP_DIR, MEDIA_DIR)
INSTALLED_APPS = (
'hydeengine',
'django.contrib.webdesign',
)
| [
"[email protected]"
]
| |
b1c3e2d58b093839cd1bc3b86f002ea815f7bc28 | b3cd00de3608e5225758bb99b28d58320ce81a47 | /practice_20190516/set_practices.py | bb0c1042527f669ab59618349237b43efafce1f1 | []
| no_license | buyi823/learn_python | fc4ec7e35ec421842975956933cfb56371786d7a | b411d5277dba1764d421a267f0ba36da40d8c6e9 | refs/heads/master | 2022-05-13T01:05:35.961946 | 2022-05-09T15:20:52 | 2022-05-09T15:20:52 | 71,314,016 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 451 | py | #!/usr/bin/python3
basket={'apple', 'orange', 'apple', 'pear', 'orange', 'banana'}
print(basket)
i = 'orange' in basket
print(i)
a = set('abracadabra')
b = set('alacazam')
print(a)
print(a-b) # 在 a 中的字母,但不在 b 中
print(a | b) # 在 a 或 b 中的字母
print(a & b) # 在 a 和 b 中都有的字母
print(a ^ b) # 在 a 或 b 中的字母,但不同时在 a 和 b 中
a = {x for x in 'abracadabra' if x not in 'abc'}
print(a) | [
"[email protected]"
]
| |
5203e3e2fd16915c35a794b6a84738bbe3de2171 | 135f293948b38aa8eaa6ac31dde79f8bc091fe5b | /Estruturas de repetição em Python/Exercicio12.py | ee4e9bcc87e70a6ac7801efa3e2c0c3ff253416f | []
| no_license | Kaiquenakao/Python | 70e42b5fee08a3b50c34913f2f5763f07e754c25 | 008eefce828522b5107917dc699fc3590c7ef52c | refs/heads/master | 2023-08-12T17:03:24.317996 | 2021-09-25T22:31:46 | 2021-09-25T22:31:46 | 279,083,005 | 5 | 0 | null | null | null | null | UTF-8 | Python | false | false | 447 | py | """
12. Faça um programa que leia um número inteiro positivo N e imprima todos os números naturais
de 0 até N em ordem decrescente.
"""
try:
num = int(input('Insira um número positivo: '))
if num > 0:
for i in range(num, -1, -1):
print(i, end=' ')
else:
print('ERRO!!! O número não é positivo')
except ValueError:
print('ERRO!!!! Só pode ser digitados números inteiros positivos') | [
"[email protected]"
]
| |
32ea6cd4e3873c9f26199e4214374be704126b4e | a26b214e60287af3c39e5ee40eae4d1869d596d0 | /train_imagenet.py | 6e46043cbac1543a40368e6cf5f624aad1ec7e09 | []
| no_license | beam2d/chainer-efficient-densenet | 17a326ba783d320dff310beb4f04a8873a9db6cf | 075b07450df9d030b943bca4f7d0fe52e838c55b | refs/heads/master | 2021-05-04T18:44:57.559524 | 2017-10-06T05:04:36 | 2017-10-06T05:10:39 | 105,968,804 | 2 | 0 | null | null | null | null | UTF-8 | Python | false | false | 6,103 | py | #!/usr/bin/env python
"""Example code of learning a large scale convnet from ILSVRC2012 dataset.
Prerequisite: To run this example, crop the center of ILSVRC2012 training and
validation images, scale them to 256x256 and convert them to RGB, and make
two lists of space-separated CSV whose first column is full path to image and
second column is zero-origin label (this format is same as that used by Caffe's
ImageDataLayer).
"""
from __future__ import print_function
import argparse
import random
import numpy as np
import chainer
from chainer import training
from chainer.training import extensions
import densenet
class PreprocessedDataset(chainer.dataset.DatasetMixin):
def __init__(self, path, root, mean, crop_size, random=True):
self.base = chainer.datasets.LabeledImageDataset(path, root)
self.mean = mean.astype('f')
self.crop_size = crop_size
self.random = random
def __len__(self):
return len(self.base)
def get_example(self, i):
# It reads the i-th image/label pair and return a preprocessed image.
# It applies following preprocesses:
# - Cropping (random or center rectangular)
# - Random flip
# - Scaling to [0, 1] value
crop_size = self.crop_size
image, label = self.base[i]
_, h, w = image.shape
if self.random:
# Randomly crop a region and flip the image
top = random.randint(0, h - crop_size - 1)
left = random.randint(0, w - crop_size - 1)
if random.randint(0, 1):
image = image[:, :, ::-1]
else:
# Crop the center
top = (h - crop_size) // 2
left = (w - crop_size) // 2
bottom = top + crop_size
right = left + crop_size
image = image[:, top:bottom, left:right]
image -= self.mean[:, top:bottom, left:right]
image *= (1.0 / 255.0) # Scale to [0, 1]
return image, label
def main():
parser = argparse.ArgumentParser(
description='Learning convnet from ILSVRC2012 dataset')
parser.add_argument('train', help='Path to training image-label list file')
parser.add_argument('val', help='Path to validation image-label list file')
parser.add_argument('--arch', '-a', default='DenseNetBC161',
help='DenseNet architecture')
parser.add_argument('--batchsize', '-B', type=int, default=32,
help='Learning minibatch size')
parser.add_argument('--epoch', '-E', type=int, default=10,
help='Number of epochs to train')
parser.add_argument('--gpu', '-g', type=int, default=-1,
help='GPU ID (negative value indicates CPU')
parser.add_argument('--initmodel',
help='Initialize the model from given file')
parser.add_argument('--loaderjob', '-j', type=int,
help='Number of parallel data loading processes')
parser.add_argument('--mean', '-m', default='mean.npy',
help='Mean file (computed by compute_mean.py)')
parser.add_argument('--resume', '-r', default='',
help='Initialize the trainer from given file')
parser.add_argument('--out', '-o', default='result',
help='Output directory')
parser.add_argument('--root', '-R', default='.',
help='Root directory path of image files')
parser.add_argument('--val_batchsize', '-b', type=int, default=250,
help='Validation minibatch size')
parser.add_argument('--test', action='store_true')
parser.set_defaults(test=False)
args = parser.parse_args()
# Initialize the model to train
model = chainer.links.Classifier(getattr(densenet, args.arch)())
if args.initmodel:
print('Load model from', args.initmodel)
chainer.serializers.load_npz(args.initmodel, model)
if args.gpu >= 0:
chainer.cuda.get_device_from_id(args.gpu).use() # Make the GPU current
model.to_gpu()
# Load the datasets and mean file
mean = np.load(args.mean)
train = PreprocessedDataset(args.train, args.root, mean, 224)
val = PreprocessedDataset(args.val, args.root, mean, 224, False)
# These iterators load the images with subprocesses running in parallel to
# the training/validation.
train_iter = chainer.iterators.MultiprocessIterator(
train, args.batchsize, n_processes=args.loaderjob)
val_iter = chainer.iterators.MultiprocessIterator(
val, args.val_batchsize, repeat=False, n_processes=args.loaderjob)
# Set up an optimizer
optimizer = chainer.optimizers.MomentumSGD(lr=0.01, momentum=0.9)
optimizer.setup(model)
# Set up a trainer
updater = training.StandardUpdater(train_iter, optimizer, device=args.gpu)
trainer = training.Trainer(updater, (args.epoch, 'epoch'), args.out)
val_interval = (10 if args.test else 100000), 'iteration'
log_interval = (10 if args.test else 1000), 'iteration'
trainer.extend(extensions.Evaluator(val_iter, model, device=args.gpu),
trigger=val_interval)
trainer.extend(extensions.dump_graph('main/loss'))
trainer.extend(extensions.snapshot(), trigger=val_interval)
trainer.extend(extensions.snapshot_object(
model, 'model_iter_{.updater.iteration}'), trigger=val_interval)
# Be careful to pass the interval directly to LogReport
# (it determines when to emit log rather than when to read observations)
trainer.extend(extensions.LogReport(trigger=log_interval))
trainer.extend(extensions.observe_lr(), trigger=log_interval)
trainer.extend(extensions.PrintReport([
'epoch', 'iteration', 'main/loss', 'validation/main/loss',
'main/accuracy', 'validation/main/accuracy', 'lr'
]), trigger=log_interval)
trainer.extend(extensions.ProgressBar(update_interval=10))
if args.resume:
chainer.serializers.load_npz(args.resume, trainer)
trainer.run()
if __name__ == '__main__':
main()
| [
"[email protected]"
]
| |
81f06546a31f3a1d148091a703f3d6f664345263 | 42b30769e4c676014d3fd8753bc4b1bbcc2a3e3c | /eggs/bx_python-0.7.2-py2.6-linux-x86_64-ucs4.egg/EGG-INFO/scripts/bed_rand_intersect.py | 7f6ee25a6a4b19b8256296f2b0fe48ddc9262184 | [
"CC-BY-2.5",
"AFL-2.1",
"AFL-3.0",
"CC-BY-3.0",
"LicenseRef-scancode-unknown-license-reference"
]
| permissive | psnehal/MethylSig | 4e510685349b1712c92667d40e795fa798ee1702 | 5efad71e71ff2515feff2e49579c856ef9a1bbd8 | refs/heads/master | 2020-05-18T21:03:51.240410 | 2015-09-03T20:23:30 | 2015-09-03T20:23:30 | 26,826,252 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 5,927 | py | #!/afs/bx.psu.edu/project/pythons/py2.6-linux-x86_64-ucs4/bin/python2.6
"""
From a set of regions and two sets of intervals inside those regions
compute (for each region separately) the overlap between the two sets
of intervals and the overlap in `nsamples` random coverings of the
regions with intervals having the same lengths. Prints the z-score relative
to the mean and sample stdev of the random coverings.
Currently intervals must be in bed 3+ format.
TODO: There are a few versions of this floating around, including a
better/faster one using gap lists instead of bitsets. Need to track
that down and merge as necessary.
usage: %prog bounding_region_file intervals1 intervals2 nsamples
"""
from __future__ import division
import sys, random
import bisect
from bx_extras import stats
from Numeric import *
from bx.bitset import *
from bx.intervals.random_intervals import *
maxtries = 10
class MaxtriesException( Exception ):
pass
def bit_clone( bits ):
"""
Clone a bitset
"""
new = BitSet( bits.size )
new.ior( bits )
return new
def throw_random( lengths, mask ):
"""
Try multiple times to run 'throw_random'
"""
saved = None
for i in range( maxtries ):
try:
return throw_random_bits( lengths, mask )
except MaxtriesException, e:
saved = e
continue
raise e
def as_bits( region_start, region_length, intervals ):
"""
Convert a set of intervals overlapping a region of a chromosome into
a bitset for just that region with the bits covered by the intervals
set.
"""
bits = BitSet( region_length )
for chr, start, stop in intervals:
bits.set_range( start - region_start, stop - start )
return bits
def interval_lengths( bits ):
"""
Get the length distribution of all contiguous runs of set bits from
"""
end = 0
while 1:
start = bits.next_set( end )
if start == bits.size: break
end = bits.next_clear( start )
yield end - start
def count_overlap( bits1, bits2 ):
"""
Count the number of bits that overlap between two sets
"""
b = BitSet( bits1.size )
b |= bits1
b &= bits2
return b.count_range( 0, b.size )
def overlapping_in_bed( fname, r_chr, r_start, r_stop ):
"""
Get from a bed all intervals that overlap the region defined by
r_chr, r_start, r_stop.
"""
rval = []
for line in open( fname ):
if line.startswith( "#" ) or line.startswith( "track" ):
continue
fields = line.split()
chr, start, stop = fields[0], int( fields[1] ), int( fields[2] )
if chr == r_chr and start < r_stop and stop >= r_start:
rval.append( ( chr, max( start, r_start ), min( stop, r_stop ) ) )
return rval
def main():
region_fname = sys.argv[1]
mask_fname = sys.argv[2]
nsamples = int( sys.argv[3] )
intervals1_fname = sys.argv[4]
intervals2_fnames = sys.argv[5:]
nfeatures = len( intervals2_fnames )
total_actual = zeros( nfeatures )
# total_lengths1 = 0
total_lengths2 = zeros( nfeatures )
total_samples = zeros( ( nsamples, nfeatures ) )
for line in open( region_fname ):
# Load lengths for all intervals overlapping region
fields = line.split()
print >>sys.stderr, "Processing region:", fields[3]
r_chr, r_start, r_stop = fields[0], int( fields[1] ), int( fields[2] )
r_length = r_stop - r_start
# Load the mask
mask = overlapping_in_bed( mask_fname, r_chr, r_start, r_stop )
bits_mask = as_bits( r_start, r_length, mask )
bits_not_masked = bit_clone( bits_mask ); bits_not_masked.invert()
# Load the first set
intervals1 = overlapping_in_bed( intervals1_fname, r_chr, r_start, r_stop )
bits1 = as_bits( r_start, r_length, intervals1 )
# Intersect it with the mask
bits1.iand( bits_not_masked )
# Sanity checks
assert count_overlap( bits1, bits_mask ) == 0
# For each data set
for featnum, intervals2_fname in enumerate( intervals2_fnames ):
print >>sys.stderr, intervals2_fname
intervals2 = overlapping_in_bed( intervals2_fname, r_chr, r_start, r_stop )
bits2 = as_bits( r_start, r_length, intervals2 )
bits2.iand( bits_not_masked )
assert count_overlap( bits2, bits_mask ) == 0
# Observed values
actual_overlap = count_overlap( bits1, bits2 )
total_actual[featnum] += actual_overlap
# Sample
lengths2 = list( interval_lengths( bits2 ) )
total_lengths2[ featnum ] += sum( lengths2 )
for i in range( nsamples ):
# Build randomly covered bitmask for second set
random2 = throw_random( lengths2, bits_mask )
# Find intersection
random2 &= bits1
# Print amount intersecting
total_samples[ i, featnum ] += random2.count_range( 0, random2.size )
print >>sys.stderr, total_samples[ i, featnum ]
fraction_overlap = total_samples / total_lengths2
print "\t".join( intervals2_fnames )
print "\t".join( map( str, total_actual/total_lengths2 ) )
for row in fraction_overlap:
print "\t".join( map( str, row ) )
#print "total covered by first: %d, second: %d, overlap: %d" % ( total_lengths1, total_lengths2, total_actual )
print "observed overlap: %d, sample mean: %d, sample stdev: %d" % ( total_actual, stats.amean( total_samples ), stats.asamplestdev( total_samples ) )
print "z-score:", ( total_actual - stats.amean( total_samples ) ) / stats.asamplestdev( total_samples )
print "percentile:", sum( total_actual > total_samples ) / nsamples
if __name__ == "__main__":
main()
| [
"snehal@lnx-306501.(none)"
]
| snehal@lnx-306501.(none) |
935e668353281522257cae2c1d7cf7f920d7109b | ba182c0ef3f2d9be57454808e999972a44a17246 | /papis_zotero/__init__.py | cd4b219ea84afd857e3af21d24fe69025ec8f0c0 | []
| no_license | stuartthomas25/papis-zotero | 9bc1aea061a2a5653e3f8a2f0dca20ca6591f649 | 00911a6a94191715429649b36f99f32005db530a | refs/heads/master | 2023-01-20T14:53:53.738651 | 2020-12-03T01:27:27 | 2020-12-03T01:27:27 | null | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 1,966 | py | import click
import os
import logging
import http.server
import papis_zotero.server
@click.group('zotero')
@click.help_option('-h', '--help')
def main():
"""
Zotero interface for papis
"""
pass
@main.command('serve')
@click.help_option('-h', '--help')
@click.option(
"--port",
help="Port to listen to",
default=papis_zotero.server.zotero_port,
type=int
)
@click.option(
"--address",
help="Address to bind",
default="localhost"
)
def serve(address, port):
"""Start a zotero-connector server"""
global logger
server_address = (address, port)
httpd = http.server.HTTPServer(
server_address,
papis_zotero.server.PapisRequestHandler
)
httpd.serve_forever()
@main.command('import')
@click.help_option('-h', '--help')
@click.option(
'-f', '--from-bibtex', 'from_bibtex',
help='Import zotero library from a bibtex dump, the files fields in '
'the bibtex files should point to valid paths',
default=None,
type=click.Path(exists=True)
)
@click.option(
'-s', '--from-sql', 'from_sql',
help='Path to the FOLDER where the "zotero.sqlite" file resides',
default=None,
type=click.Path(exists=True)
)
@click.option(
'-o', '--outfolder',
help='Folder to save the imported library',
type=str,
required=True
)
@click.option(
'--link',
help='Wether to link the pdf files or copy them',
default=None
)
def do_importer(from_bibtex, from_sql, outfolder, link):
"""Import zotero libraries into papis libraries
"""
import papis_zotero.bibtex
import papis_zotero.sql
if not os.path.exists(outfolder):
os.makedirs(outfolder)
if from_bibtex is not None:
papis_zotero.bibtex.add_from_bibtex(
from_bibtex, outfolder, link
)
elif from_sql is not None:
papis_zotero.sql.add_from_sql(
from_sql, outfolder
)
if __name__ == "__main__":
main()
| [
"[email protected]"
]
| |
e1a3e6b019db32d46d544ec8533a4e2420661ae1 | a5a99f646e371b45974a6fb6ccc06b0a674818f2 | /DPGAnalysis/Skims/python/TPGSkims_cfg.py | 72a0da830b6a2f7874b2e7bdbf09b435556f9e7a | [
"Apache-2.0"
]
| permissive | cms-sw/cmssw | 4ecd2c1105d59c66d385551230542c6615b9ab58 | 19c178740257eb48367778593da55dcad08b7a4f | refs/heads/master | 2023-08-23T21:57:42.491143 | 2023-08-22T20:22:40 | 2023-08-22T20:22:40 | 10,969,551 | 1,006 | 3,696 | Apache-2.0 | 2023-09-14T19:14:28 | 2013-06-26T14:09:07 | C++ | UTF-8 | Python | false | false | 6,095 | py | import FWCore.ParameterSet.Config as cms
process = cms.Process("SKIM")
process.configurationMetadata = cms.untracked.PSet(
version = cms.untracked.string('$Revision: 1.1 $'),
name = cms.untracked.string('$Source' ),
annotation = cms.untracked.string('TPG skim')
)
#
#
# This is for testing purposes.
#
#
process.source = cms.Source("PoolSource",
fileNames = cms.untracked.vstring(
# run 136066 lumi~500
'/store/data/Run2010A/MinimumBias/RECO/v1/000/136/066/18F6DB82-5566-DF11-B289-0030487CAF0E.root'),
secondaryFileNames = cms.untracked.vstring(
'/store/data/Run2010A/MinimumBias/RAW/v1/000/136/066/38D48BED-3C66-DF11-88A5-001D09F27003.root')
)
process.source.inputCommands = cms.untracked.vstring("keep *", "drop *_MEtoEDMConverter_*_*", "drop L1GlobalTriggerObjectMapRecord_hltL1GtObjectMap__HLT")
process.maxEvents = cms.untracked.PSet(
input = cms.untracked.int32(500)
)
#------------------------------------------
# Load standard sequences.
#------------------------------------------
process.load('Configuration/StandardSequences/MagneticField_AutoFromDBCurrent_cff')
process.load('Configuration/StandardSequences/GeometryIdeal_cff')
process.load("Configuration.StandardSequences.FrontierConditions_GlobalTag_cff")
process.GlobalTag.globaltag = 'GR10_P_V6::All'
process.load("Configuration/StandardSequences/RawToDigi_Data_cff")
process.load("Configuration/StandardSequences/Reconstruction_cff")
process.load('Configuration/EventContent/EventContent_cff')
#drop collections created on the fly
process.FEVTEventContent.outputCommands.append("drop *_MEtoEDMConverter_*_*")
process.FEVTEventContent.outputCommands.append("drop *_*_*_SKIM")
#
# Load common sequences
#
process.load('L1TriggerConfig.L1GtConfigProducers.L1GtTriggerMaskAlgoTrigConfig_cff')
process.load('L1TriggerConfig.L1GtConfigProducers.L1GtTriggerMaskTechTrigConfig_cff')
process.load('HLTrigger/HLTfilters/hltLevel1GTSeed_cfi')
##################################TPG Skims############################################
process.load('DPGAnalysis/Skims/singleMuonSkim_cff')
process.load('DPGAnalysis/Skims/singleElectronSkim_cff')
process.load('DPGAnalysis/Skims/muonTagProbeFilters_cff')
process.load('DPGAnalysis/Skims/electronTagProbeFilters_cff')
process.load('DPGAnalysis/Skims/singlePhotonSkim_cff')
process.load('DPGAnalysis/Skims/jetSkim_cff')
process.load('DPGAnalysis/Skims/METSkim_cff')
process.load('DPGAnalysis/Skims/singlePfTauSkim_cff')
#process.singleMuPt20SkimPath=cms.Path(process.singleMuPt20RecoQualitySeq)
#process.singleMuPt15SkimPath=cms.Path(process.singleMuPt15RecoQualitySeq)
#process.singleMuPt10SkimPath=cms.Path(process.singleMuPt10RecoQualitySeq)
process.singleMuPt5SkimPath=cms.Path(process.singleMuPt5RecoQualitySeq)
#process.singleElectronPt20SkimPath=cms.Path(process.singleElectronPt20RecoQualitySeq)
#process.singleElectronPt15SkimPath=cms.Path(process.singleElectronPt15RecoQualitySeq)
#process.singleElectronPt10SkimPath=cms.Path(process.singleElectronPt10RecoQualitySeq)
process.singleElectronPt5SkimPath=cms.Path(process.singleElectronPt5RecoQualitySeq)
#process.singlePhotonPt20SkimPath=cms.Path(process.singlePhotonPt20QualitySeq)
#process.singlePhotonPt15SkimPath=cms.Path(process.singlePhotonPt15QualitySeq)
#process.singlePhotonPt10SkimPath=cms.Path(process.singlePhotonPt10QualitySeq)
process.singlePhotonPt5SkimPath=cms.Path(process.singlePhotonPt5QualitySeq)
#process.muonZMMSkimPath=cms.Path(process.muonZMMRecoQualitySeq)
process.muonJPsiMMSkimPath=cms.Path(process.muonJPsiMMRecoQualitySeq)
#process.electronZEESkimPath=cms.Path(process.electronZEERecoQualitySeq)
process.jetSkimPath=cms.Path(process.jetRecoQualitySeq)
#process.METSkimPath=cms.Path(process.METQualitySeq)
process.singlePfTauPt15SkimPath=cms.Path(process.singlePfTauPt15QualitySeq)
process.outTPGSkim = cms.OutputModule("PoolOutputModule",
outputCommands = process.FEVTHLTALLEventContent.outputCommands,
fileName = cms.untracked.string("/tmp/azzi/TPGSkim.root"),
dataset = cms.untracked.PSet(
dataTier = cms.untracked.string('USER'),
filterName = cms.untracked.string('TPGSkim')
),
SelectEvents = cms.untracked.PSet(SelectEvents = cms.vstring(
#'singleMuPt20SkimPath',
#'singleMuPt15SkimPath',
#'singleMuPt10SkimPath',
'singleMuPt5SkimPath',
#'singleElectronPt20SkimPath',
#'singleElectronPt15SkimPath',
#'singleElectronPt10SkimPath',
'singleElectronPt5SkimPath',
#'singlePhotonPt20SkimPath',
#'singlePhotonPt15SkimPath',
#'singlePhotonPt10SkimPath',
'singlePhotonPt5SkimPath',
#'muonZMMSkimPath',
'muonJPsiMMSkimPath',
#'electronZEESkimPath',
'jetSkimPath',
#'METSkimPath',
'singlePfTauPt15SkimPath'))
)
###########################################################################
process.options = cms.untracked.PSet(
wantSummary = cms.untracked.bool(True)
)
process.outpath = cms.EndPath(process.outTPGSkim)
| [
"[email protected]"
]
| |
fb8c3504401a4296b74eeac355c5e856a62a0ccc | df2cbe914f463ad050d7ed26194424afbe3a0a52 | /odoo/addons/base/tests/test_float.py | 5e1db6c074f0a028378ea92042abb0810b5aa3dd | [
"Apache-2.0"
]
| permissive | SHIVJITH/Odoo_Machine_Test | 019ed339e995be980606a2d87a63312ddc18e706 | 310497a9872db7844b521e6dab5f7a9f61d365a4 | refs/heads/main | 2023-07-16T16:23:14.300656 | 2021-08-29T11:48:36 | 2021-08-29T11:48:36 | 401,010,175 | 0 | 0 | Apache-2.0 | 2021-08-29T10:13:58 | 2021-08-29T10:13:58 | null | UTF-8 | Python | false | false | 11,756 | py | # -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
from math import log10
from odoo.tests.common import TransactionCase
from odoo.tools import float_compare, float_is_zero, float_repr, float_round, float_split, float_split_str
class TestFloatPrecision(TransactionCase):
""" Tests on float precision. """
def test_rounding_02(self):
""" Test rounding methods with 2 digits. """
currency = self.env.ref('base.EUR')
def try_round(amount, expected):
digits = max(0, -int(log10(currency.rounding)))
result = float_repr(currency.round(amount), precision_digits=digits)
self.assertEqual(result, expected, 'Rounding error: got %s, expected %s' % (result, expected))
try_round(2.674,'2.67')
try_round(2.675,'2.68') # in Python 2.7.2, round(2.675,2) gives 2.67
try_round(-2.675,'-2.68') # in Python 2.7.2, round(2.675,2) gives 2.67
try_round(0.001,'0.00')
try_round(-0.001,'-0.00')
try_round(0.0049,'0.00') # 0.0049 is closer to 0 than to 0.01, so should round down
try_round(0.005,'0.01') # the rule is to round half away from zero
try_round(-0.005,'-0.01') # the rule is to round half away from zero
try_round(6.6 * 0.175, '1.16') # 6.6 * 0.175 is rounded to 1.15 with epsilon = 53
try_round(-6.6 * 0.175, '-1.16')
def try_zero(amount, expected):
self.assertEqual(currency.is_zero(amount), expected,
"Rounding error: %s should be zero!" % amount)
try_zero(0.01, False)
try_zero(-0.01, False)
try_zero(0.001, True)
try_zero(-0.001, True)
try_zero(0.0046, True)
try_zero(-0.0046, True)
try_zero(2.68-2.675, False) # 2.68 - 2.675 = 0.005 -> rounds to 0.01
try_zero(2.68-2.676, True) # 2.68 - 2.675 = 0.004 -> rounds to 0.0
try_zero(2.676-2.68, True) # 2.675 - 2.68 = -0.004 -> rounds to -0.0
try_zero(2.675-2.68, False) # 2.675 - 2.68 = -0.005 -> rounds to -0.01
def try_compare(amount1, amount2, expected):
self.assertEqual(currency.compare_amounts(amount1, amount2), expected,
"Rounding error, compare_amounts(%s,%s) should be %s" % (amount1, amount2, expected))
try_compare(0.001, 0.001, 0)
try_compare(-0.001, -0.001, 0)
try_compare(0.001, 0.002, 0)
try_compare(-0.001, -0.002, 0)
try_compare(2.675, 2.68, 0)
try_compare(2.676, 2.68, 0)
try_compare(-2.676, -2.68, 0)
try_compare(2.674, 2.68, -1)
try_compare(-2.674, -2.68, 1)
try_compare(3, 2.68, 1)
try_compare(-3, -2.68, -1)
try_compare(0.01, 0, 1)
try_compare(-0.01, 0, -1)
def test_rounding_03(self):
""" Test rounding methods with 3 digits. """
def try_round(amount, expected, digits=3, method='HALF-UP'):
value = float_round(amount, precision_digits=digits, rounding_method=method)
result = float_repr(value, precision_digits=digits)
self.assertEqual(result, expected, 'Rounding error: got %s, expected %s' % (result, expected))
try_round(2.6745, '2.675')
try_round(-2.6745, '-2.675')
try_round(2.6744, '2.674')
try_round(-2.6744, '-2.674')
try_round(0.0004, '0.000')
try_round(-0.0004, '-0.000')
try_round(357.4555, '357.456')
try_round(-357.4555, '-357.456')
try_round(457.4554, '457.455')
try_round(-457.4554, '-457.455')
# Try some rounding value with rounding method UP instead of HALF-UP
# We use 8.175 because when normalizing 8.175 with precision_digits=3 it gives
# us 8175,0000000001234 as value, and if not handle correctly the rounding UP
# value will be incorrect (should be 8,175 and not 8,176)
try_round(8.175, '8.175', method='UP')
try_round(8.1751, '8.176', method='UP')
try_round(-8.175, '-8.175', method='UP')
try_round(-8.1751, '-8.176', method='UP')
try_round(-6.000, '-6.000', method='UP')
try_round(1.8, '2', 0, method='UP')
try_round(-1.8, '-2', 0, method='UP')
# Try some rounding value with rounding method DOWN instead of HALF-UP
# We use 2.425 because when normalizing 2.425 with precision_digits=3 it gives
# us 2424.9999999999995 as value, and if not handle correctly the rounding DOWN
# value will be incorrect (should be 2.425 and not 2.424)
try_round(2.425, '2.425', method='DOWN')
try_round(2.4249, '2.424', method='DOWN')
try_round(-2.425, '-2.425', method='DOWN')
try_round(-2.4249, '-2.424', method='DOWN')
try_round(-2.500, '-2.500', method='DOWN')
try_round(1.8, '1', 0, method='DOWN')
try_round(-1.8, '-1', 0, method='DOWN')
# Extended float range test, inspired by Cloves Almeida's test on bug #882036.
fractions = [.0, .015, .01499, .675, .67499, .4555, .4555, .45555]
expecteds = ['.00', '.02', '.01', '.68', '.67', '.46', '.456', '.4556']
precisions = [2, 2, 2, 2, 2, 2, 3, 4]
# Note: max precision for double floats is 53 bits of precision or
# 17 significant decimal digits
for magnitude in range(7):
for frac, exp, prec in zip(fractions, expecteds, precisions):
for sign in [-1,1]:
for x in range(0, 10000, 97):
n = x * 10 ** magnitude
f = sign * (n + frac)
f_exp = ('-' if f != 0 and sign == -1 else '') + str(n) + exp
try_round(f, f_exp, digits=prec)
def try_zero(amount, expected):
self.assertEqual(float_is_zero(amount, precision_digits=3), expected,
"Rounding error: %s should be zero!" % amount)
try_zero(0.0002, True)
try_zero(-0.0002, True)
try_zero(0.00034, True)
try_zero(0.0005, False)
try_zero(-0.0005, False)
try_zero(0.0008, False)
try_zero(-0.0008, False)
def try_compare(amount1, amount2, expected):
self.assertEqual(float_compare(amount1, amount2, precision_digits=3), expected,
"Rounding error, compare_amounts(%s,%s) should be %s" % (amount1, amount2, expected))
try_compare(0.0003, 0.0004, 0)
try_compare(-0.0003, -0.0004, 0)
try_compare(0.0002, 0.0005, -1)
try_compare(-0.0002, -0.0005, 1)
try_compare(0.0009, 0.0004, 1)
try_compare(-0.0009, -0.0004, -1)
try_compare(557.4555, 557.4556, 0)
try_compare(-557.4555, -557.4556, 0)
try_compare(657.4444, 657.445, -1)
try_compare(-657.4444, -657.445, 1)
# Rounding to unusual rounding units (e.g. coin values)
def try_round(amount, expected, precision_rounding=None, method='HALF-UP'):
value = float_round(amount, precision_rounding=precision_rounding, rounding_method=method)
result = float_repr(value, precision_digits=2)
self.assertEqual(result, expected, 'Rounding error: got %s, expected %s' % (result, expected))
try_round(-457.4554, '-457.45', precision_rounding=0.05)
try_round(457.444, '457.50', precision_rounding=0.5)
try_round(457.3, '455.00', precision_rounding=5)
try_round(457.5, '460.00', precision_rounding=5)
try_round(457.1, '456.00', precision_rounding=3)
try_round(2.5, '2.50', precision_rounding=0.05, method='DOWN')
try_round(-2.5, '-2.50', precision_rounding=0.05, method='DOWN')
def test_rounding_04(self):
""" check that proper rounding is performed for float persistence """
currency = self.env.ref('base.EUR')
currency_rate = self.env['res.currency.rate']
def try_roundtrip(value, expected, date):
rate = currency_rate.create({'name': date,
'rate': value,
'currency_id': currency.id})
self.assertEqual(rate.rate, expected,
'Roundtrip error: got %s back from db, expected %s' % (rate, expected))
# res.currency.rate no more uses 6 digits of precision by default, it now uses whatever precision it gets
try_roundtrip(10000.999999, 10000.999999, '2000-01-03')
#TODO re-enable those tests when tests are made on dedicated models
# (res.currency.rate don't accept negative value anymore)
#try_roundtrip(-2.6748955, -2.674896, '2000-01-02')
#try_roundtrip(-10000.999999, -10000.999999, '2000-01-04')
def test_float_split_05(self):
""" Test split method with 2 digits. """
currency = self.env.ref('base.EUR')
def try_split(value, expected, split_fun, rounding=None):
digits = max(0, -int(log10(currency.rounding))) if rounding is None else rounding
result = split_fun(value, precision_digits=digits)
self.assertEqual(result, expected, 'Split error: got %s, expected %s' % (result, expected))
try_split(2.674, ('2', '67'), float_split_str)
try_split(2.675, ('2', '68'), float_split_str) # in Python 2.7.2, round(2.675,2) gives 2.67
try_split(-2.675, ('-2', '68'), float_split_str) # in Python 2.7.2, round(2.675,2) gives 2.67
try_split(0.001, ('0', '00'), float_split_str)
try_split(-0.001, ('-0', '00'), float_split_str)
try_split(42, ('42', '00'), float_split_str)
try_split(0.1, ('0', '10'), float_split_str)
try_split(13.0, ('13', ''), float_split_str, rounding=0)
try_split(2.674, (2, 67), float_split)
try_split(2.675, (2, 68), float_split) # in Python 2.7.2, round(2.675,2) gives 2.67
try_split(-2.675, (-2, 68), float_split) # in Python 2.7.2, round(2.675,2) gives 2.67
try_split(0.001, (0, 0), float_split)
try_split(-0.001, (0, 0), float_split)
try_split(42, (42, 0), float_split)
try_split(0.1, (0, 10), float_split)
try_split(13.0, (13, 0), float_split, rounding=0)
def test_rounding_invalid(self):
""" verify that invalid parameters are forbidden """
with self.assertRaises(AssertionError):
float_is_zero(0.01, precision_digits=3, precision_rounding=0.01)
with self.assertRaises(AssertionError):
float_is_zero(0.0, precision_rounding=0.0)
with self.assertRaises(AssertionError):
float_is_zero(0.0, precision_rounding=-0.1)
with self.assertRaises(AssertionError):
float_compare(0.01, 0.02, precision_digits=3, precision_rounding=0.01)
with self.assertRaises(AssertionError):
float_compare(1.0, 1.0, precision_rounding=0.0)
with self.assertRaises(AssertionError):
float_compare(1.0, 1.0, precision_rounding=-0.1)
with self.assertRaises(AssertionError):
float_round(0.01, precision_digits=3, precision_rounding=0.01)
with self.assertRaises(AssertionError):
float_round(1.25, precision_rounding=0.0)
with self.assertRaises(AssertionError):
float_round(1.25, precision_rounding=-0.1)
def test_amount_to_text_10(self):
""" verify that amount_to_text works as expected """
currency = self.env.ref('base.EUR')
amount_target = currency.amount_to_text(0.29)
amount_test = currency.amount_to_text(0.28)
self.assertNotEqual(amount_test, amount_target,
"Amount in text should not depend on float representation")
| [
"[email protected]"
]
| |
e258217d26d20023322a814f0f6c42d13bc33285 | 049e2fab5e9e8f248e537cbada15d60d60536990 | /tests/gene_mutation_test.py | 253588490783ea22a34946025d9fd271cdd2e044 | [
"MIT"
]
| permissive | RubenPants/RobotSimulator2D | adfd8c16ec48b34419cae096d16e5e6714410407 | 334d7b9cab0edb22d4670cfaf39fbed76c351758 | refs/heads/master | 2023-05-14T20:09:44.604695 | 2020-07-11T14:16:58 | 2020-07-11T14:16:58 | 223,198,189 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 20,831 | py | """
genome_mutation_test.py
Test gene-specific operations.
"""
import os
import unittest
import numpy as np
from config import Config
from population.utils.genome_util.genes import ConnectionGene, GruNodeGene, OutputNodeGene, SimpleNodeGene
from utils.dictionary import *
def get_connection_gene(key, config):
return ConnectionGene(key, config)
def get_gru_node_gene(key, config):
return GruNodeGene(key, config, input_keys=[-1], input_keys_full=[-1, -2])
def get_output_node_gene(key, config):
return OutputNodeGene(key, config)
def get_simple_node_gene(key, config):
return SimpleNodeGene(key, config)
class SimpleNode(unittest.TestCase):
"""Test the SimpleNodeGene's mutation operations."""
def test_activation(self):
"""> Test if activation changes during mutation."""
# Folder must be root to load in make_net properly
if os.getcwd().split('\\')[-1] == 'tests': os.chdir('..')
# After mutations, activation is always one of the options
cfg = Config().genome
cfg.activation_default = "a"
cfg.activation_mutate_rate = 1.0
OPTIONS = {"a": 1, "b": 2, "c": 3}
cfg.activation_options = OPTIONS
gene = get_simple_node_gene(0, cfg)
changed = False
for _ in range(100):
gene.mutate(cfg)
self.assertTrue(gene.activation in OPTIONS.keys())
if gene.activation != "a": changed = True
self.assertTrue(changed) # Almost impossible that this failed
# Set mutation rate to 0, activation should not mutate
cfg.activation_default = "a"
cfg.activation_mutate_rate = 0.0
cfg.activation_options = OPTIONS
gene = get_simple_node_gene(0, cfg)
for _ in range(100):
gene.mutate(cfg)
self.assertTrue(gene.activation == 'a')
def test_aggregation(self):
"""> Test if aggregation changes during mutation."""
# Folder must be root to load in make_net properly
if os.getcwd().split('\\')[-1] == 'tests': os.chdir('..')
# After mutations, aggregation is always one of the options
cfg = Config().genome
cfg.aggregation_default = "a"
cfg.aggregation_mutate_rate = 1.0
OPTIONS = {"a": 1, "b": 2, "c": 3}
cfg.aggregation_options = OPTIONS
gene = get_simple_node_gene(0, cfg)
changed = False
for _ in range(100):
gene.mutate(cfg)
self.assertTrue(gene.aggregation in OPTIONS.keys())
if gene.aggregation != "a": changed = True
self.assertTrue(changed) # Almost impossible that this failed
# Set mutation rate to 0, aggregation should not mutate
cfg.aggregation_default = "a"
cfg.aggregation_mutate_rate = 0.0
cfg.aggregation_options = OPTIONS
gene = get_simple_node_gene(0, cfg)
for _ in range(100):
gene.mutate(cfg)
self.assertTrue(gene.aggregation == 'a')
def test_bias(self):
"""> Test if the bias remains inside its boundaries during mutation."""
# Folder must be root to load in make_net properly
if os.getcwd().split('\\')[-1] == 'tests': os.chdir('..')
# After mutations, bias remains inside its boundary
cfg = Config().genome
cfg.bias_mutate_rate = 0.5
cfg.bias_replace_rate = 0.5
cfg.bias_min_value = -0.1
cfg.bias_max_value = 0.1
gene = get_simple_node_gene(0, cfg)
for _ in range(100):
gene.mutate(cfg)
self.assertTrue(-0.1 <= gene.bias <= 0.1)
# Set mutation rate to 0, no change should happen
cfg.bias_mutate_rate = 0
cfg.bias_replace_rate = 0
gene = get_simple_node_gene(0, cfg)
init_bias = gene.bias
for _ in range(100):
gene.mutate(cfg)
self.assertTrue(gene.bias == init_bias)
# Set mutation power to 0, no change should happen
cfg.bias_mutate_rate = 1
cfg.bias_replace_rate = 0
cfg.bias_mutate_power = 0
gene = get_simple_node_gene(0, cfg)
init_bias = gene.bias
for _ in range(100):
gene.mutate(cfg)
self.assertTrue(gene.bias == init_bias)
class OutputNode(unittest.TestCase):
"""Test the OutputNodeGene's mutation operations."""
def test_activation(self):
"""> Test if activation remains tanh after mutation."""
# Folder must be root to load in make_net properly
if os.getcwd().split('\\')[-1] == 'tests': os.chdir('..')
# After mutations, activation is always one of the options
cfg = Config().genome
cfg.activation_default = "a"
cfg.activation_mutate_rate = 1.0
OPTIONS = {"a": 1, "b": 2, "c": 3}
cfg.activation_options = OPTIONS
gene = get_output_node_gene(0, cfg)
for _ in range(100):
gene.mutate(cfg)
self.assertEqual(gene.activation, D_TANH)
def test_aggregation(self):
"""> Test if aggregation changes during mutation."""
# Folder must be root to load in make_net properly
if os.getcwd().split('\\')[-1] == 'tests': os.chdir('..')
# After mutations, aggregation is always one of the options
cfg = Config().genome
cfg.aggregation_default = "a"
cfg.aggregation_mutate_rate = 1.0
OPTIONS = {"a": 1, "b": 2, "c": 3}
cfg.aggregation_options = OPTIONS
gene = get_output_node_gene(0, cfg)
changed = False
for _ in range(100):
gene.mutate(cfg)
self.assertTrue(gene.aggregation in OPTIONS.keys())
if gene.aggregation != "a": changed = True
self.assertTrue(changed) # Almost impossible that this failed
# Set mutation rate to 0, aggregation should not mutate
cfg.aggregation_default = "a"
cfg.aggregation_mutate_rate = 0.0
cfg.aggregation_options = OPTIONS
gene = get_output_node_gene(0, cfg)
for _ in range(100):
gene.mutate(cfg)
self.assertTrue(gene.aggregation == 'a')
def test_bias(self):
"""> Test if the bias remains inside its boundaries during mutation."""
# Folder must be root to load in make_net properly
if os.getcwd().split('\\')[-1] == 'tests': os.chdir('..')
# After mutations, bias remains inside its boundary
cfg = Config().genome
cfg.bias_mutate_rate = 0.5
cfg.bias_replace_rate = 0.5
cfg.bias_min_value = -0.1
cfg.bias_max_value = 0.1
gene = get_output_node_gene(0, cfg)
for _ in range(100):
gene.mutate(cfg)
self.assertTrue(-0.1 <= gene.bias <= 0.1)
# Set mutation rate to 0, no change should happen
cfg.bias_mutate_rate = 0
cfg.bias_replace_rate = 0
gene = get_output_node_gene(0, cfg)
init_bias = gene.bias
for _ in range(100):
gene.mutate(cfg)
self.assertTrue(gene.bias == init_bias)
# Set mutation power to 0, no change should happen
cfg.bias_mutate_rate = 1
cfg.bias_replace_rate = 0
cfg.bias_mutate_power = 0
gene = get_output_node_gene(0, cfg)
init_bias = gene.bias
for _ in range(100):
gene.mutate(cfg)
self.assertTrue(gene.bias == init_bias)
class GruNode(unittest.TestCase):
"""Test the GruNodeGene's mutation operations."""
def test_activation(self):
"""> Test if activation changes during mutation."""
# Folder must be root to load in make_net properly
if os.getcwd().split('\\')[-1] == 'tests': os.chdir('..')
# After mutations, activation is always one of the options
cfg = Config().genome
cfg.activation_default = "a"
cfg.activation_mutate_rate = 1.0
OPTIONS = {"a": 1, "b": 2, "c": 3}
cfg.activation_options = OPTIONS
gene = get_gru_node_gene(0, cfg)
changed = False
for _ in range(100):
gene.mutate(cfg)
self.assertTrue(gene.activation in OPTIONS.keys())
if gene.activation != "a": changed = True
self.assertTrue(changed) # Almost impossible that this failed
# Set mutation rate to 0, activation should not mutate
cfg.activation_default = "a"
cfg.activation_mutate_rate = 0.0
cfg.activation_options = OPTIONS
gene = get_gru_node_gene(0, cfg)
for _ in range(100):
gene.mutate(cfg)
self.assertTrue(gene.activation == 'a')
def test_bias(self):
"""> Test if bias is left unchanged during mutation."""
# Folder must be root to load in make_net properly
if os.getcwd().split('\\')[-1] == 'tests': os.chdir('..')
# After mutations, bias remains equal to zero
cfg = Config().genome
cfg.bias_mutate_rate = 0.5
cfg.bias_replace_rate = 0.5
gene = get_gru_node_gene(0, cfg)
for _ in range(100):
gene.mutate(cfg)
self.assertEqual(gene.bias, 0)
def test_bias_hh(self):
"""> Test if bias_hh behaves as expected"""
# Folder must be root to load in make_net properly
if os.getcwd().split('\\')[-1] == 'tests': os.chdir('..')
# After mutations, bias_hh's values remain inside the set boundary
cfg = Config().genome
cfg.gru_mutate_rate = 0.5
cfg.gru_replace_rate = 0.5
cfg.gru_min_value = -0.1
cfg.gru_max_value = 0.1
gene = get_gru_node_gene(0, cfg)
changed = False
init_bias_hh = gene.bias_hh.copy()
for _ in range(100):
gene.mutate(cfg)
for value in gene.bias_hh:
self.assertTrue(-0.1 <= value <= 0.1)
if np.linalg.norm(gene.bias_hh - init_bias_hh) > 0: changed = True
self.assertTrue(changed)
# Set mutation rate to 0, no change should happen
cfg.gru_mutate_rate = 0
cfg.gru_replace_rate = 0
gene = get_gru_node_gene(0, cfg)
init_bias_hh = gene.bias_hh.copy()
for _ in range(100):
gene.mutate(cfg)
self.assertEqual(np.linalg.norm(gene.bias_hh - init_bias_hh), 0)
# Set mutation power to 0, no change should happen
cfg.gru_mutate_rate = 1
cfg.gru_replace_rate = 0
cfg.gru_mutate_power = 0
gene = get_gru_node_gene(0, cfg)
init_bias_hh = gene.bias_hh.copy()
for _ in range(100):
gene.mutate(cfg)
self.assertEqual(np.linalg.norm(gene.bias_hh - init_bias_hh), 0)
def test_bias_ih(self):
"""> Test if bias_ih behaves as expected"""
# Folder must be root to load in make_net properly
if os.getcwd().split('\\')[-1] == 'tests': os.chdir('..')
# After mutations, bias_ih's values remain inside the set boundary
cfg = Config().genome
cfg.gru_mutate_rate = 0.5
cfg.gru_replace_rate = 0.5
cfg.gru_min_value = -0.1
cfg.gru_max_value = 0.1
gene = get_gru_node_gene(0, cfg)
changed = False
init_bias_ih = gene.bias_ih.copy()
for _ in range(100):
gene.mutate(cfg)
for value in gene.bias_ih:
self.assertTrue(-0.1 <= value <= 0.1)
if np.linalg.norm(gene.bias_ih - init_bias_ih) > 0: changed = True
self.assertTrue(changed)
# Set mutation rate to 0, no change should happen
cfg.gru_mutate_rate = 0
cfg.gru_replace_rate = 0
gene = get_gru_node_gene(0, cfg)
init_bias_ih = gene.bias_ih.copy()
for _ in range(100):
gene.mutate(cfg)
self.assertEqual(np.linalg.norm(gene.bias_ih - init_bias_ih), 0)
# Set mutation power to 0, no change should happen
cfg.gru_mutate_rate = 1
cfg.gru_replace_rate = 0
cfg.gru_mutate_power = 0
gene = get_gru_node_gene(0, cfg)
init_bias_ih = gene.bias_ih.copy()
for _ in range(100):
gene.mutate(cfg)
self.assertEqual(np.linalg.norm(gene.bias_ih - init_bias_ih), 0)
def test_weight_hh(self):
"""> Test if weight_hh behaves as expected"""
# Folder must be root to load in make_net properly
if os.getcwd().split('\\')[-1] == 'tests': os.chdir('..')
# After mutations, weight_hh's values remain inside the set boundary
cfg = Config().genome
cfg.gru_mutate_rate = 0.5
cfg.gru_replace_rate = 0.5
cfg.gru_min_value = -0.1
cfg.gru_max_value = 0.1
gene = get_gru_node_gene(0, cfg)
changed = False
init_weight_hh = gene.weight_hh.copy()
for _ in range(100):
gene.mutate(cfg)
for value in gene.weight_hh:
self.assertTrue(-0.1 <= value <= 0.1)
if np.linalg.norm(gene.weight_hh - init_weight_hh) > 0: changed = True
self.assertTrue(changed)
# Set mutation rate to 0, no change should happen
cfg.gru_mutate_rate = 0
cfg.gru_replace_rate = 0
gene = get_gru_node_gene(0, cfg)
init_weight_hh = gene.weight_hh.copy()
for _ in range(100):
gene.mutate(cfg)
self.assertEqual(np.linalg.norm(gene.weight_hh - init_weight_hh), 0)
# Set mutation power to 0, no change should happen
cfg.gru_mutate_rate = 1
cfg.gru_replace_rate = 0
cfg.gru_mutate_power = 0
gene = get_gru_node_gene(0, cfg)
init_weight_hh = gene.weight_hh.copy()
for _ in range(100):
gene.mutate(cfg)
self.assertEqual(np.linalg.norm(gene.weight_hh - init_weight_hh), 0)
def test_weight_ih(self):
"""> Test if weight_ih behaves as expected"""
# Folder must be root to load in make_net properly
if os.getcwd().split('\\')[-1] == 'tests': os.chdir('..')
# Test on shape of weight_ih
cfg = Config().genome
gene = get_gru_node_gene(0, cfg)
self.assertEqual(gene.weight_ih.shape, (3, 1))
# After mutations, weight_ih's values remain inside the set boundary
cfg.gru_mutate_rate = 0.5
cfg.gru_replace_rate = 0.5
cfg.gru_min_value = -0.1
cfg.gru_max_value = 0.1
gene = get_gru_node_gene(0, cfg)
changed = False
init_weight_ih = gene.weight_ih.copy()
for _ in range(100):
gene.mutate(cfg)
gene.update_weight_ih()
for value in gene.weight_ih:
for v in value:
self.assertTrue(-0.1 <= value <= 0.1)
if np.linalg.norm(gene.weight_ih - init_weight_ih) > 0: changed = True
self.assertTrue(changed)
# Set mutation rate to 0, no change should happen
cfg.gru_mutate_rate = 0
cfg.gru_replace_rate = 0
gene = get_gru_node_gene(0, cfg)
init_weight_ih = gene.weight_ih.copy()
for _ in range(100):
gene.mutate(cfg)
gene.update_weight_ih()
self.assertEqual(np.linalg.norm(gene.weight_ih - init_weight_ih), 0)
# Set mutation power to 0, no change should happen
cfg.gru_mutate_rate = 1
cfg.gru_replace_rate = 0
cfg.gru_mutate_power = 0
gene = get_gru_node_gene(0, cfg)
init_weight_ih = gene.weight_ih.copy()
for _ in range(100):
gene.mutate(cfg)
gene.update_weight_ih()
self.assertEqual(np.linalg.norm(gene.weight_ih - init_weight_ih), 0)
def test_weight_ih_full(self):
"""> Test if weight_ih_full behaves as expected"""
# Folder must be root to load in make_net properly
if os.getcwd().split('\\')[-1] == 'tests': os.chdir('..')
# Test on shape of weight_ih_full
cfg = Config().genome
gene = get_gru_node_gene(0, cfg)
self.assertEqual(gene.weight_ih_full.shape, (3, 2))
# After mutations, weight_ih_full's values remain inside the set boundary
cfg.gru_mutate_rate = 0.5
cfg.gru_replace_rate = 0.5
cfg.gru_min_value = -0.1
cfg.gru_max_value = 0.1
gene = get_gru_node_gene(0, cfg)
changed = False
init_weight_ih_full = gene.weight_ih_full.copy()
for _ in range(100):
gene.mutate(cfg) # No update_weight_ih must be called
for value in gene.weight_ih_full:
for v in value:
self.assertTrue(-0.1 <= v <= 0.1)
if np.linalg.norm(gene.weight_ih_full - init_weight_ih_full) > 0: changed = True
self.assertTrue(changed)
# Set mutation rate to 0, no change should happen
cfg.gru_mutate_rate = 0
cfg.gru_replace_rate = 0
gene = get_gru_node_gene(0, cfg)
init_weight_ih_full = gene.weight_ih_full.copy()
for _ in range(100):
gene.mutate(cfg)
self.assertEqual(np.linalg.norm(gene.weight_ih_full - init_weight_ih_full), 0)
# Set mutation power to 0, no change should happen
cfg.gru_mutate_rate = 1
cfg.gru_replace_rate = 0
cfg.gru_mutate_power = 0
gene = get_gru_node_gene(0, cfg)
init_weight_ih_full = gene.weight_ih_full.copy()
for _ in range(100):
gene.mutate(cfg)
self.assertEqual(np.linalg.norm(gene.weight_ih_full - init_weight_ih_full), 0)
class Connection(unittest.TestCase):
"""Test the ConnectionGene's mutation operations."""
def test_enabled(self):
"""> Test if enabled changes during mutation."""
# Folder must be root to load in make_net properly
if os.getcwd().split('\\')[-1] == 'tests': os.chdir('..')
# Test the enabled defaults
cfg = Config().genome
cfg.enabled_default = False
gene = get_connection_gene((-1, 0), cfg)
self.assertFalse(gene.enabled)
cfg.enabled_default = True
gene = get_connection_gene((-1, 0), cfg)
self.assertTrue(gene.enabled)
# Enabled state should change during mutation
cfg.enabled_mutate_rate = 1
changed = False
gene = get_connection_gene((-1, 0), cfg)
init_enabled = gene.enabled
for _ in range(100):
gene.enabled = gene.mutate(cfg)
if gene.enabled != init_enabled:
changed = True
break
self.assertTrue(changed)
def test_weight(self):
"""> Test if the weight remains inside its boundaries during mutation."""
# Folder must be root to load in make_net properly
if os.getcwd().split('\\')[-1] == 'tests': os.chdir('..')
# After mutations, weight remains inside its boundary
cfg = Config().genome
cfg.weight_mutate_rate = 0.5
cfg.weight_replace_rate = 0.5
cfg.weight_min_value = -0.1
cfg.weight_max_value = 0.1
gene = get_connection_gene((-1, 0), cfg)
for _ in range(100):
gene.mutate(cfg)
self.assertTrue(-0.1 <= gene.weight <= 0.1)
# Set mutation rate to 0, no change should happen
cfg.weight_mutate_rate = 0
cfg.weight_replace_rate = 0
gene = get_connection_gene((-1, 0), cfg)
init_weight = gene.weight
for _ in range(100):
gene.mutate(cfg)
self.assertTrue(gene.weight == init_weight)
# Set mutation power to 0, no change should happen
cfg.weight_mutate_rate = 1
cfg.weight_replace_rate = 0
cfg.weight_mutate_power = 0
gene = get_connection_gene((-1, 0), cfg)
init_weight = gene.weight
for _ in range(100):
gene.mutate(cfg)
self.assertTrue(gene.weight == init_weight)
def main():
# Test the SimpleNodeGene
sn = SimpleNode()
sn.test_activation()
sn.test_aggregation()
sn.test_bias()
# Test the OutputNodeGene
on = OutputNode()
on.test_activation()
on.test_aggregation()
on.test_bias()
# Test the GruNodeGene
gn = GruNode()
gn.test_activation()
gn.test_bias()
gn.test_bias_hh()
gn.test_bias_ih()
gn.test_weight_hh()
gn.test_weight_ih()
gn.test_weight_ih_full()
# Test the ConnectionGene
c = Connection()
c.test_enabled()
c.test_weight()
if __name__ == '__main__':
unittest.main()
| [
"[email protected]"
]
| |
ed4f99a3e62f56ae2dd93f7d11c01a2a3a0fb38d | 360486e860db3c34c01a4fbd6d161d22df4ac403 | /catalog-configs/Beta_Cell/Biosample.py | d7993b73417c1e766d4e5008e7acde3bf6720c52 | [
"Apache-2.0"
]
| permissive | informatics-isi-edu/betacell-consortium | 915076c0dfe491d8d18bc8037ea969f71a275f66 | 41e27ff2690e5cc192a2ba3cf95c5b6973eb6550 | refs/heads/master | 2021-07-06T13:31:17.980760 | 2019-02-16T16:32:54 | 2019-02-16T16:32:54 | 136,740,712 | 2 | 0 | null | null | null | null | UTF-8 | Python | false | false | 20,618 | py | import argparse
from attrdict import AttrDict
from deriva.core import ErmrestCatalog, get_credential, DerivaPathError
import deriva.core.ermrest_model as em
from deriva.core.ermrest_config import tag as chaise_tags
from deriva.utils.catalog.manage.update_catalog import CatalogUpdater, parse_args
groups = {
'pbcconsortium-reader': 'https://auth.globus.org/aa5a2f6e-53e8-11e8-b60b-0a7c735d220a',
'pbcconsortium-curator': 'https://auth.globus.org/da80b96c-edab-11e8-80e2-0a7c1eab007a',
'pbcconsortium-writer': 'https://auth.globus.org/6a96ec62-7032-11e8-9132-0a043b872764',
'pbcconsortium-admin': 'https://auth.globus.org/80df6c56-a0e8-11e8-b9dc-0ada61684422',
'isrd-staff': 'https://auth.globus.org/176baec4-ed26-11e5-8e88-22000ab4b42b',
'isrd-testers': 'https://auth.globus.org/9d596ac6-22b9-11e6-b519-22000aef184d'
}
table_name = 'Biosample'
schema_name = 'Beta_Cell'
column_annotations = {
'RCB': {
chaise_tags.display: {
'markdown_name': 'Creator'
},
chaise_tags.column_display: {
'*': {
'markdown_pattern': '{{{$fkeys.Beta_Cell.Biosample_RCB_Fkey.values._display_name}}}'
}
}
},
'Sample_Position': {},
'Specimen': {},
'Specimen_Type': {},
'Experiment': {},
'Protocol': {},
'Container_Id': {},
'Owner': {
chaise_tags.column_display: {
'*': {
'markdown_pattern': '{{{$fkeys.Beta_Cell.Biosample_Owner_Fkey.values._display_name}}}'
}
}
}
}
column_comment = {
'Sample_Position': 'Position in the capillary where the sample is located.',
'Specimen': 'Biological material used for the biosample.',
'Specimen_Type': 'Method by which specimen is prepared.',
'Experiment': 'Experiment in which this biosample is used',
'Protocol': 'Biosample protocol.',
'Container_Id': 'ID number of the container with the biosample. Is a number'
}
column_acls = {}
column_acl_bindings = {}
column_defs = [
em.Column.define('Dataset', em.builtin_types['text'], nullok=False,
),
em.Column.define('Summary', em.builtin_types['text'],
),
em.Column.define('Collection_Date', em.builtin_types['date'],
),
em.Column.define(
'Sample_Position', em.builtin_types['int2'], comment=column_comment['Sample_Position'],
),
em.Column.define('Specimen', em.builtin_types['text'], comment=column_comment['Specimen'],
),
em.Column.define(
'Specimen_Type', em.builtin_types['text'], comment=column_comment['Specimen_Type'],
),
em.Column.define(
'Experiment', em.builtin_types['ermrest_rid'], comment=column_comment['Experiment'],
),
em.Column.define('Protocol', em.builtin_types['text'], comment=column_comment['Protocol'],
),
em.Column.define(
'Container_Id', em.builtin_types['int2'], comment=column_comment['Container_Id'],
),
em.Column.define('Owner', em.builtin_types['text'], annotations=column_annotations['Owner'],
),
]
display = {}
visible_columns = {
'*': [
['Beta_Cell', 'Biosample_Key'], 'RCB', 'Owner',
{
'source': [{
'outbound': ['Beta_Cell', 'Biosample_Dataset_FKey']
}, 'RID'],
'markdown_name': 'Dataset'
}, 'Summary', {
'source': [{
'outbound': ['Beta_Cell', 'Biosample_Specimen_FKey']
}, 'RID']
},
{
'source': [{
'outbound': ['Beta_Cell', 'Biosample_Experiment_FKey']
}, 'RID'],
'markdown_name': 'Experiment'
},
{
'source': [
{
'outbound': ['Beta_Cell', 'Biosample_Specimen_FKey']
}, {
'outbound': ['Beta_Cell', 'Specimen_Cell_Line_FKey']
}, {
'outbound': ['Beta_Cell', 'Cell_Line_Cell_Line_Terms_FKey']
}, 'name'
],
'markdown_name': 'Cell Line'
},
{
'entity': True,
'source': [
{
'outbound': ['Beta_Cell', 'Biosample_Specimen_FKey']
}, {
'outbound': ['Beta_Cell', 'Specimen_Protocol_FKey']
}, {
'inbound': ['Beta_Cell', 'Protocol_Step_Protocol_FKey']
}, {
'inbound': ['Beta_Cell', 'Protocol_Step_Additive_Term_Protocol_Step_FKey']
}, {
'outbound': ['Beta_Cell', 'Protocol_Step_Additive_Term_Additive_Term_FKey']
}, 'RID'
],
'comment': 'Compound used to treat the cell line for the Experiment',
'aggregate': 'array',
'markdown_name': 'Additive'
},
{
'entity': True,
'source': [
{
'outbound': ['Beta_Cell', 'Biosample_Specimen_FKey']
}, {
'outbound': ['Beta_Cell', 'Specimen_Protocol_FKey']
}, {
'inbound': ['Beta_Cell', 'Protocol_Step_Protocol_FKey']
}, {
'inbound': ['Beta_Cell', 'Protocol_Step_Additive_Term_Protocol_Step_FKey']
}, 'Additive_Concentration'
],
'comment': 'Concentration of additive applied to cell line in mM',
'aggregate': 'array',
'markdown_name': 'Concentration'
},
{
'entity': True,
'source': [
{
'outbound': ['Beta_Cell', 'Biosample_Specimen_FKey']
}, {
'outbound': ['Beta_Cell', 'Specimen_Protocol_FKey']
}, {
'inbound': ['Beta_Cell', 'Protocol_Step_Protocol_FKey']
}, 'Duration'
],
'comment': 'Duration in minutes of additive applied to cell line in ',
'aggregate': 'array',
'markdown_name': 'Duration'
},
{
'entity': True,
'source': [
{
'outbound': ['Beta_Cell', 'Biosample_Protocol_FKey']
}, {
'inbound': ['Beta_Cell', 'Protocol_Step_Protocol_FKey']
}, {
'outbound': ['Beta_Cell', 'Protocol_Step_Cellular_Location_Term_FKey']
}, 'RID'
],
'comment': 'Part of the cell from which the biosample was taken',
'markdown_name': 'Cellular Location'
}, ['Beta_Cell', 'Biosample_Specimen_Type_FKey'], 'Container_Id', 'Sample_Position',
'Collection_Date'
],
'entry': [
{
'source': [{
'outbound': ['Beta_Cell', 'Biosample_Owner_Fkey']
}, 'id']
},
{
'source': [{
'outbound': ['Beta_Cell', 'Biosample_Dataset_FKey']
}, 'RID'],
'markdown_name': 'Dataset'
},
{
'source': [{
'outbound': ['Beta_Cell', 'Biosample_Experiment_FKey']
}, 'RID'],
'markdown_name': 'Experiment'
}, ['Beta_Cell', 'Biosample_Protocol_FKey'], ['Beta_Cell', 'Biosample_Specimen_FKey'],
['Beta_Cell', 'Biosample_Specimen_Type_FKey'], 'Container_Id',
{
'source': [{
'outbound': ['Beta_Cell', 'Biosample_Protocol_FKey']
}, 'Description']
}, 'Sample_Position', 'collection_date'
],
'filter': {
'and': [
{
'entity': True,
'source': 'RID'
}, {
'source': [{
'outbound': ['Beta_Cell', 'Biosample_Dataset_FKey']
}, 'RID']
},
{
'source': [
{
'outbound': ['Beta_Cell', 'Biosample_Specimen_FKey']
}, {
'outbound': ['Beta_Cell', 'Specimen_Cell_Line_FKey']
}, {
'outbound': ['Beta_Cell', 'Cell_Line_Cell_Line_Terms_FKey']
}, 'name'
],
'markdown_name': 'Cell Line'
},
{
'entity': True,
'source': [
{
'outbound': ['Beta_Cell', 'Biosample_Protocol_FKey']
}, {
'inbound': ['Beta_Cell', 'Protocol_Step_Protocol_FKey']
}, {
'outbound': ['Beta_Cell', 'Protocol_Step_Cellular_Location_Term_FKey']
}, 'name'
],
'comment': 'Part of the cell from which the biosample was taken',
'markdown_name': 'Cellular Location'
},
{
'entity': True,
'source': [
{
'outbound': ['Beta_Cell', 'Biosample_Specimen_FKey']
}, {
'outbound': ['Beta_Cell', 'Specimen_Protocol_FKey']
}, {
'inbound': ['Beta_Cell', 'Protocol_Step_Protocol_FKey']
}, {
'inbound': ['Beta_Cell', 'Protocol_Step_Additive_Term_Protocol_Step_FKey']
}, {
'outbound': ['Beta_Cell', 'Protocol_Step_Additive_Term_Additive_Term_FKey']
}, 'RID'
],
'comment': 'Additives used to treat the cell line for the Experiment',
'aggregate': 'array',
'markdown_name': 'Additive'
},
{
'entity': True,
'source': [
{
'outbound': ['Beta_Cell', 'Biosample_Specimen_FKey']
}, {
'outbound': ['Beta_Cell', 'Specimen_Protocol_FKey']
}, {
'inbound': ['Beta_Cell', 'Protocol_Step_Protocol_FKey']
}, {
'inbound': ['Beta_Cell', 'Protocol_Step_Additive_Term_Protocol_Step_FKey']
}, 'Additive_Concentration'
],
'comment': 'Concentration of additive applied to cell line in mM',
'ux_mode': 'choices',
'aggregate': 'array',
'markdown_name': 'Concentration'
},
{
'entity': True,
'source': [
{
'outbound': ['Beta_Cell', 'Biosample_Specimen_FKey']
}, {
'outbound': ['Beta_Cell', 'Specimen_Protocol_FKey']
}, {
'inbound': ['Beta_Cell', 'Protocol_Step_Protocol_FKey']
}, 'Duration'
],
'comment': 'Duration in minutes of additive applied to cell line in ',
'ux_mode': 'choices',
'aggregate': 'array',
'markdown_name': 'Duration'
}, ['Beta_Cell', 'Biosample_Specimen_Type_FKey'],
{
'source': [{
'inbound': ['isa', 'mesh_data_biosample_fkey']
}, 'url']
}, {
'source': [
{
'inbound': ['Beta_Cell', 'XRay_Tomography_Data_Biosample_FKey']
}, 'RID'
]
},
{
'source': [
{
'inbound': ['Beta_Cell', 'Processed_Tomography_Data_Biosample_FKey']
}, 'RID'
]
}, {
'source': [{
'inbound': ['Beta_Cell', 'Mass_Spec_Data_Biosample_FKey']
}, 'RID']
}, {
'entity': True,
'source': 'Container_Id',
'ux_mode': 'choices'
}
]
}
}
visible_foreign_keys = {
'*': [
{
'source': [{
'inbound': ['Beta_Cell', 'XRay_Tomography_Data_Biosample_FKey']
}, 'RID']
},
{
'source': [
{
'inbound': ['Beta_Cell', 'Processed_Tomography_Data_Biosample_FKey']
}, 'RID'
]
}, {
'source': [{
'inbound': ['Beta_Cell', 'Mass_Spec_Data_Biosample_FKey']
}, 'RID']
}, ['viz', 'model_biosample_fkey']
]
}
table_display = {
'row_name': {
'row_markdown_pattern': '{{RID}}{{#local_identifier}} {{Container_Id}}{{/local_identifier}}'
}
}
table_alternatives = {}
export = {
'templates': [
{
'name': 'default',
'outputs': [
{
'source': {
'api': 'entity',
'table': 'Beta_Cell:Biosample'
},
'destination': {
'name': 'Biosample',
'type': 'csv'
}
},
{
'source': {
'api': 'attribute',
'path': 'url:=URL,md5:=MD5,length:=Byte_Count',
'table': 'Beta_Cell:XRay_Tomography_Data'
},
'destination': {
'name': 'MRC',
'type': 'fetch'
}
},
{
'source': {
'api': 'attribute',
'path': 'url:=URL,md5:=MD5,length:=Byte_Count',
'table': 'Beta_Cell:Processed_Tomography_Data'
},
'destination': {
'name': 'processed_data',
'type': 'fetch'
}
},
{
'source': {
'api': 'attribute',
'path': 'url',
'table': 'isa:mesh_data'
},
'destination': {
'name': 'OBJS',
'type': 'fetch'
}
}
],
'format_name': 'BDBag (Holey)',
'format_type': 'BAG'
},
{
'name': 'default',
'outputs': [
{
'source': {
'api': 'entity',
'table': 'Beta_Cell:Biosample'
},
'destination': {
'name': 'Biosample',
'type': 'csv'
}
},
{
'source': {
'api': 'attribute',
'path': 'url:=URL',
'table': 'Beta_Cell:XRay_Tomography_Data'
},
'destination': {
'name': 'MRC',
'type': 'download'
}
},
{
'source': {
'api': 'attribute',
'path': 'url:=URL',
'table': 'Beta_Cell:Processed_Tomography_Data'
},
'destination': {
'name': 'processed_data',
'type': 'download'
}
},
{
'source': {
'api': 'attribute',
'path': 'URL',
'table': 'isa:mesh_data'
},
'destination': {
'name': 'OBJS',
'type': 'download'
}
}
],
'format_name': 'BDBag',
'format_type': 'BAG'
}
]
}
table_annotations = {
chaise_tags.export: export,
chaise_tags.display: display,
chaise_tags.table_display: table_display,
chaise_tags.visible_columns: visible_columns,
chaise_tags.table_alternatives: table_alternatives,
chaise_tags.visible_foreign_keys: visible_foreign_keys,
}
table_comment = None
table_acls = {}
table_acl_bindings = {
'self_service_owner': {
'types': ['update', 'delete'],
'scope_acl': ['*'],
'projection': ['Owner'],
'projection_type': 'acl'
},
'self_service_creator': {
'types': ['update', 'delete'],
'scope_acl': ['*'],
'projection': ['RCB'],
'projection_type': 'acl'
}
}
key_defs = [
em.Key.define(
['Dataset', 'RID'],
constraint_names=[('Beta_Cell', 'Biosample_Dataset_RID_Key')],
annotations={chaise_tags.display: {}},
),
em.Key.define(
['RID'],
constraint_names=[('Beta_Cell', 'Biosample_Key')],
annotations={chaise_tags.display: {}},
),
]
fkey_defs = [
em.ForeignKey.define(
['Experiment', 'Dataset'],
'Beta_Cell',
'Experiment', ['RID', 'Dataset'],
constraint_names=[('Beta_Cell', 'Biosample_Experiment_Dataset_FKey')],
acls={
'insert': ['*'],
'update': ['*']
},
),
em.ForeignKey.define(
['Specimen_Type'],
'vocab',
'specimen_type_terms', ['id'],
constraint_names=[('Beta_Cell', 'Biosample_Specimen_Type_FKey')],
acls={
'insert': ['*'],
'update': ['*']
},
comment='Must be a valid reference to a specimen type.',
),
em.ForeignKey.define(
['Specimen'],
'Beta_Cell',
'Specimen', ['RID'],
constraint_names=[('Beta_Cell', 'Biosample_Specimen_FKey')],
acls={
'insert': ['*'],
'update': ['*']
},
),
em.ForeignKey.define(
['Protocol'],
'Beta_Cell',
'Protocol', ['RID'],
constraint_names=[('Beta_Cell', 'Biosample_Protocol_FKey')],
acls={
'insert': ['*'],
'update': ['*']
},
),
em.ForeignKey.define(
['Dataset'],
'Beta_Cell',
'Dataset', ['RID'],
constraint_names=[('Beta_Cell', 'Biosample_Dataset_FKey')],
annotations={
chaise_tags.display: {},
chaise_tags.foreign_key: {
'domain_filter_pattern': 'RID={{{$fkeys.Beta_Cell.Biosample_Experiment_FKey.values._Dataset}}}'
}
},
acls={
'insert': ['*'],
'update': ['*']
},
on_update='CASCADE',
on_delete='RESTRICT',
),
em.ForeignKey.define(
['Experiment'],
'Beta_Cell',
'Experiment', ['RID'],
constraint_names=[('Beta_Cell', 'Biosample_Experiment_FKey')],
annotations={
chaise_tags.display: {},
chaise_tags.foreign_key: {
'domain_filter_pattern': 'Dataset={{{_Dataset}}}'
}
},
acls={
'insert': ['*'],
'update': ['*']
},
),
em.ForeignKey.define(
['RCB'],
'public',
'ERMrest_Client', ['ID'],
constraint_names=[('Beta_Cell', 'Biosample_RCB_Fkey')],
),
em.ForeignKey.define(
['Owner'],
'public',
'ERMrest_Client', ['ID'],
constraint_names=[('Beta_Cell', 'Biosample_Owner_Fkey')],
),
]
table_def = em.Table.define(
table_name,
column_defs=column_defs,
key_defs=key_defs,
fkey_defs=fkey_defs,
annotations=table_annotations,
acls=table_acls,
acl_bindings=table_acl_bindings,
comment=table_comment,
provide_system=True
)
def main(catalog, mode, replace=False):
updater = CatalogUpdater(catalog)
updater.update_table(mode, schema_name, table_def, replace=replace)
if __name__ == "__main__":
host = 'pbcconsortium.isrd.isi.edu'
catalog_id = 1
mode, replace, host, catalog_id = parse_args(host, catalog_id, is_table=True)
credential = get_credential(host)
catalog = ErmrestCatalog('https', host, catalog_id, credentials=credential)
main(catalog, mode, replace)
| [
"[email protected]"
]
| |
4c3ff6795992f4880623aff1d7912e1e2af55406 | 95b6f547270557a99c435b785b907896f62e87d1 | /test_cluster_mocking_nested_ratio.py | 1369246b5107a36125ed7de9c6953ae44bb947a7 | []
| no_license | phizaz/seeding-strategy-ssl | 6b3b58c9b1f556f8cd42fea5e3dc20e623462a08 | 85655ce3297130b273d5f86075ee6bdf1f12be0a | refs/heads/master | 2021-01-10T06:18:26.618009 | 2016-04-02T14:50:08 | 2016-04-02T14:50:08 | 49,761,712 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 1,193 | py | from dataset import *
from pipe import Pipe
from wrapper import *
from badness import *
from ssltools import *
from sklearn.cluster import KMeans
dataset = get_yeast().rescale()
def seed_randomly(prob):
pipe = Pipe() \
.x(dataset.X) \
.y(dataset.Y) \
.y_seed(seeding_random(prob)) \
.connect(stop())
return pipe['y_seed']
def seed_some(prob, clusters_cnt):
pipe = Pipe() \
.x(dataset.X) \
.y(dataset.Y) \
.y_seed(seeding_some(prob, clusters_cnt)) \
.connect(stop())
return pipe['y_seed']
def seed_cache(file):
file = 'seeding/' + file
cache = StorageCache(file)
y_seed = np.array(cache.get())
return y_seed
kmeans = KMeans(dataset.cluster_cnt * 3)
kmeans.fit(dataset.X)
model = ClusterMockingNestedRatio(dataset.X, kmeans.labels_)
random_seed = seed_randomly(0.1)
badness = model.run(random_seed)
print('badness random:', badness)
#
# random_cache = seed_cache('yeast_prob-0.06.json')
# badness = model.run(random_cache)
# print('badness cache 0.06:', badness)
#
# random_cache = seed_cache('yeast_prob-0.05.json')
# badness = model.run(random_cache)
# print('badness cache 0.05:', badness) | [
"[email protected]"
]
| |
b2e081c7ce0957970be4524dd7569d94f5999f5b | 9e4fa1142a3656e97c637a247fd9e0a4b4192537 | /manage.py | 2f588eabb7d9bc15f00a4b0377a195b3614bfb9f | []
| no_license | LokeshKD/ckts-app-demo | 41bb51f5ab4c94344cf8a1f7d0a5b8ee970d5375 | 309209b87737099249f010c505e689efc287c8c3 | refs/heads/master | 2022-02-11T06:22:53.556163 | 2019-08-13T02:38:49 | 2019-08-13T02:38:49 | 198,107,386 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 1,028 | py | import os
import unittest
import coverage
from flask_script import Manager
from flask_migrate import Migrate, MigrateCommand
from project import app, db
app.config.from_object(os.environ['APP_SETTINGS'])
migrate = Migrate(app, db)
manager = Manager(app)
manager.add_command('db', MigrateCommand)
@manager.command
def test():
""" Runs Tests without coverage"""
tests = unittest.TestLoader().discover('.')
unittest.TextTestRunner(verbosity=2).run(tests)
@manager.command
def cov():
"""Runs the unit tests with coverage."""
cov = coverage.coverage(
branch=True,
include='project/*'
)
cov.start()
tests = unittest.TestLoader().discover('.')
unittest.TextTestRunner(verbosity=2).run(tests)
cov.stop()
cov.save()
print ('Coverage Summary:')
cov.report()
basedir = os.path.abspath(os.path.dirname(__file__))
covdir = os.path.join(basedir, 'coverage')
cov.html_report(directory=covdir)
cov.erase()
if __name__ == '__main__':
manager.run()
| [
"[email protected]"
]
| |
fc209154dfb2a5e90e53f5ea78fe360348b50cb5 | 4c28bbe099672d9402b4c2c75625fc450b7d1c99 | /misc/formatter.py | 09180ed9b437614ea97a03ea48f812b72e64672a | [
"MIT"
]
| permissive | GINK03/lightgbm-feature-transform | e1edaf1d3dc541f816f844b280335b8d4d18fdfe | 18c0eaf64ef159d9c5cc041244b45bbea7314ca8 | refs/heads/master | 2021-07-22T15:46:17.221420 | 2017-11-07T15:10:40 | 2017-11-07T15:10:40 | 107,000,998 | 12 | 0 | null | null | null | null | UTF-8 | Python | false | false | 921 | py | import re
import json
lines = []
for line in open('./gbdt_prediction_formatted.cpp'):
line = line[:-1]
line = line.replace(' {', ':')
line = line.replace('} else', 'else')
line = re.sub(r'^double', 'def', line)
line = line.replace('const double *arr', 'arr')
line = line.replace('const std::vector<uint32_t> cat_threshold = {};', '')
line = line.replace('double ', '')
line = line.replace('0.0f', '0.0')
if 'const' in line:
continue
if 'namespace' in line:
continue
if len(line) >= 1:
if line[-1] == '}':
...
else:
lines.append( line )
text = '\n'.join(lines)
text = re.sub(r'arr.*?\n.*?\[', 'arr[', text, flags=re.MULTILINE)
text = re.sub(r'=.*?\n\s{1,}?arr', '= arr', text, flags=re.MULTILINE)
text = re.sub(r'<=\s{1,}?\n\s{1,}?0', '<= 0', text, flags=re.MULTILINE)
text = re.sub(r'<=\s{1,}?\n\s{1,}?1', '<= 1', text, flags=re.MULTILINE)
print(text)
| [
"[email protected]"
]
| |
dcb44358e58a964fba44912fffb44036d3b53921 | 7db9f50e35b13bb2d5a7fcf564e841be1961b937 | /djangocms_teaser/migrations_django/0001_initial.py | 9e4b8c0bb3268b4bc0f680f15ca6b2fc2cab8eb4 | []
| no_license | tanderegg/djangocms-teaser | 3df391b42931b4cb5a2fd067d88da36e3defa20b | 29b09fbb921de052c9bf7a1e3bda8ed0a8b1fa56 | refs/heads/master | 2020-04-02T22:26:34.614574 | 2014-08-21T17:24:28 | 2014-08-21T17:24:28 | null | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 1,249 | py | # -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import models, migrations
import cms.models.pluginmodel
class Migration(migrations.Migration):
dependencies = [
('cms', '__first__'),
]
operations = [
migrations.CreateModel(
name='Teaser',
fields=[
('title', models.CharField(max_length=255, verbose_name='title')),
('image', models.ImageField(upload_to=cms.models.pluginmodel.get_plugin_media_path, null=True, verbose_name='image', blank=True)),
('url', models.CharField(help_text='If present image will be clickable.', max_length=255, null=True, verbose_name='link', blank=True)),
('description', models.TextField(null=True, verbose_name='description', blank=True)),
('cmsplugin_ptr', models.OneToOneField(auto_created=True, primary_key=True, serialize=False, to='cms.CMSPlugin')),
('page_link', models.ForeignKey(blank=True, to='cms.Page', help_text='If present image will be clickable', null=True, verbose_name='page')),
],
options={
'abstract': False,
},
bases=('cms.cmsplugin',),
),
]
| [
"[email protected]"
]
| |
f430ca748728f396149648eb89ce978d127ee811 | 26f8a8782a03693905a2d1eef69a5b9f37a07cce | /test/test_dictionary_component_response_ofint64_and_destiny_item_talent_grid_component.py | bbf9b4777cea26e0cf7a3694065e35cbc650d67d | []
| no_license | roscroft/openapi3-swagger | 60975db806095fe9eba6d9d800b96f2feee99a5b | d1c659c7f301dcfee97ab30ba9db0f2506f4e95d | refs/heads/master | 2021-06-27T13:20:53.767130 | 2017-08-31T17:09:40 | 2017-08-31T17:09:40 | null | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 1,491 | py | # coding: utf-8
"""
Bungie.Net API
These endpoints constitute the functionality exposed by Bungie.net, both for more traditional website functionality and for connectivity to Bungie video games and their related functionality.
OpenAPI spec version: 2.0.0
Contact: [email protected]
Generated by: https://github.com/swagger-api/swagger-codegen.git
"""
from __future__ import absolute_import
import os
import sys
import unittest
import swagger_client
from swagger_client.rest import ApiException
from swagger_client.models.dictionary_component_response_ofint64_and_destiny_item_talent_grid_component import DictionaryComponentResponseOfint64AndDestinyItemTalentGridComponent
class TestDictionaryComponentResponseOfint64AndDestinyItemTalentGridComponent(unittest.TestCase):
""" DictionaryComponentResponseOfint64AndDestinyItemTalentGridComponent unit test stubs """
def setUp(self):
pass
def tearDown(self):
pass
def testDictionaryComponentResponseOfint64AndDestinyItemTalentGridComponent(self):
"""
Test DictionaryComponentResponseOfint64AndDestinyItemTalentGridComponent
"""
# FIXME: construct object with mandatory attributes with example values
#model = swagger_client.models.dictionary_component_response_ofint64_and_destiny_item_talent_grid_component.DictionaryComponentResponseOfint64AndDestinyItemTalentGridComponent()
pass
if __name__ == '__main__':
unittest.main()
| [
"[email protected]"
]
| |
49333583eea30bafda52c00260cac390a23ab6f9 | 05536893d069dd87256ba74ecdee06bdf481d44b | /args_api/ORA12C/ORA12C-DBTAWS.py | a09bb73f64ddae7a172940464f218b2867dc03d3 | []
| no_license | TheRockStarDBA/DataBuddy | b2d889e11745d0afe1b39a11aab5945e2bd08cf7 | 38fa7adfdd228e2b2e4b4408393505163c5702e8 | refs/heads/master | 2020-12-25T23:27:02.363977 | 2015-05-28T19:14:12 | 2015-05-28T19:14:12 | null | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 111,575 | py | #do not change
aa={'ORA12C_Partition_WithWideRows.DBTAWS_Table': [{'field_term': ('-t', '--field_term', '"|"', 'Field terminator.'), 'num_of_shards': ('-r', '--num_of_shards', 1, 'Number of shards.'), 'pool_size': ('-o', '--pool_size', 1, 'Pool size.'), 'column_buckets': ('-0', '--column_buckets', 2, 'Wide row support.'), 'copy_vector': ('-w', '--copy_vector', 'ora12c-dbtaws', 'Data copy direction.'), 'keep_data_file': ('-K', '--keep_data_file', 1, 'Keep data dump.'), 'default_spool_dir': ('-F', '--default_spool_dir', 'C:\\tmp\\TEST_default_spool', 'Default data dump dir (default_spool_dir/job_name/timestamp).'), 'time_stamp': ('-Y', '--time_stamp', '20150515_221741_267000', 'Timestamp (log_dir/job_name/timestamp).'), 'host_map': ('-5', '--host_map', '".\\config\\host_map_v2.py"', 'Host-to-shard map.'), 'job_name': ('-B', '--job_name', 'qc_job', 'Job name (log_dir/job_name).'), 'log_dir': ('-M', '--log_dir', 'C:\\Temp\\qc_log', 'Log destination.')}, {'from_db_name': ('-b', '--from_db_name', 'orcl', 'Oracle 12c source database.'), 'from_partition': ('-P', '--from_partition', 'part_15', 'From partition.'), 'from_table': ('-c', '--from_table', 'SCOTT.Partitioned_test_from', 'From table.'), 'nls_timestamp_format': ('-m', '--nls_timestamp_format', '"YYYY-MM-DD-HH24.MI.SS.FF"', 'nls_timestamp_format for source.'), 'nls_date_format': ('-e', '--nls_date_format', '"YYYY-MM-DD"', 'nls_date_format for source.'), 'nls_timestamp_tz_format': ('-O', '--nls_timestamp_tz_format', '"YYYY-MM-DD-HH24:MI:SS.FF"', 'nls_timestamp_tz_format for source.'), 'from_user': ('-j', '--from_user', 'SCOTT', 'Oracle 12c source user.'), 'from_passwd': ('-x', '--from_passwd', 'tiger', 'Oracle 12c source user password.')}, {'to_db_name': ('-d', '--to_db_name', '"SAMPLE"', 'Target DB2 Advanced Workgroup Server database.'), 'target_client_home': ('-Z', '--target_client_home', '"C:\\Program Files (x86)\\IBM\\SQLLIB_01\\BIN"', 'Path to DB2 Advanced Workgroup Server client home bin dir.'), 'to_user': ('-u', '--to_user', '"ALEX_BUZ"', 'Target DB2 Advanced Workgroup Server db user.'), 'to_passwd': ('-p', '--to_passwd', '"198Morgan"', 'Target DB2 Advanced Workgroup Server db user password.'), 'to_db_server': ('-s', '--to_db_server', '"DB2"', 'Target DB2 Advanced Workgroup Server db instance name.'), 'to_table': ('-a', '--to_table', 'ALEX_BUZ.Timestamp_test_to', 'Target DB2 Advanced Workgroup Server table.')}], 'ORA12C_Partition_keepWhitespace.DBTAWS_Table': [{'field_term': ('-t', '--field_term', '"|"', 'Field terminator.'), 'num_of_shards': ('-r', '--num_of_shards', 1, 'Number of shards.'), 'pool_size': ('-o', '--pool_size', 1, 'Pool size.'), 'copy_vector': ('-w', '--copy_vector', 'ora12c-dbtaws', 'Data copy direction.'), 'keep_data_file': ('-K', '--keep_data_file', 1, 'Keep data dump.'), 'default_spool_dir': ('-F', '--default_spool_dir', 'C:\\tmp\\TEST_default_spool', 'Default data dump dir (default_spool_dir/job_name/timestamp).'), 'time_stamp': ('-Y', '--time_stamp', '20150515_221741_798000', 'Timestamp (log_dir/job_name/timestamp).'), 'host_map': ('-5', '--host_map', '".\\config\\host_map_v2.py"', 'Host-to-shard map.'), 'job_name': ('-B', '--job_name', 'qc_job', 'Job name (log_dir/job_name).'), 'log_dir': ('-M', '--log_dir', 'C:\\Temp\\qc_log', 'Log destination.')}, {'from_db_name': ('-b', '--from_db_name', 'orcl', 'Oracle 12c source database.'), 'from_partition': ('-P', '--from_partition', 'part_15', 'From partition.'), 'from_table': ('-c', '--from_table', 'SCOTT.Partitioned_test_from', 'From table.'), 'nls_timestamp_format': ('-m', '--nls_timestamp_format', '"YYYY-MM-DD-HH24.MI.SS.FF"', 'nls_timestamp_format for source.'), 'nls_date_format': ('-e', '--nls_date_format', '"YYYY-MM-DD"', 'nls_date_format for source.'), 'keep_whitespace': ('-W', '--keep_whitespace', 1, 'Keep whitespace from CHAR type in "Oracle 12c" extract.'), 'nls_timestamp_tz_format': ('-O', '--nls_timestamp_tz_format', '"YYYY-MM-DD-HH24:MI:SS.FF"', 'nls_timestamp_tz_format for source.'), 'from_user': ('-j', '--from_user', 'SCOTT', 'Oracle 12c source user.'), 'from_passwd': ('-x', '--from_passwd', 'tiger', 'Oracle 12c source user password.')}, {'to_db_name': ('-d', '--to_db_name', '"SAMPLE"', 'Target DB2 Advanced Workgroup Server database.'), 'target_client_home': ('-Z', '--target_client_home', '"C:\\Program Files (x86)\\IBM\\SQLLIB_01\\BIN"', 'Path to DB2 Advanced Workgroup Server client home bin dir.'), 'to_user': ('-u', '--to_user', '"ALEX_BUZ"', 'Target DB2 Advanced Workgroup Server db user.'), 'to_passwd': ('-p', '--to_passwd', '"198Morgan"', 'Target DB2 Advanced Workgroup Server db user password.'), 'to_db_server': ('-s', '--to_db_server', '"DB2"', 'Target DB2 Advanced Workgroup Server db instance name.'), 'to_table': ('-a', '--to_table', 'ALEX_BUZ.Timestamp_test_to', 'Target DB2 Advanced Workgroup Server table.')}], 'ORA12C_QueryFile.DBTAWS_Table': [{'field_term': ('-t', '--field_term', '"|"', 'Field terminator.'), 'num_of_shards': ('-r', '--num_of_shards', 1, 'Number of shards.'), 'pool_size': ('-o', '--pool_size', 1, 'Pool size.'), 'copy_vector': ('-w', '--copy_vector', 'ora12c-dbtaws', 'Data copy direction.'), 'keep_data_file': ('-K', '--keep_data_file', 1, 'Keep data dump.'), 'default_spool_dir': ('-F', '--default_spool_dir', 'C:\\tmp\\TEST_default_spool', 'Default data dump dir (default_spool_dir/job_name/timestamp).'), 'time_stamp': ('-Y', '--time_stamp', '20150515_221741_574000', 'Timestamp (log_dir/job_name/timestamp).'), 'host_map': ('-5', '--host_map', '".\\config\\host_map_v2.py"', 'Host-to-shard map.'), 'job_name': ('-B', '--job_name', 'qc_job', 'Job name (log_dir/job_name).'), 'log_dir': ('-M', '--log_dir', 'C:\\Temp\\qc_log', 'Log destination.')}, {'query_sql_file': ('-q', '--query_sql_file', 'C:\\Python27\\data_migrator_1239_12c\\test\\v101\\query\\oracle_query.sql', 'Input file with Oracle 12c query sql.'), 'from_db_name': ('-b', '--from_db_name', 'orcl', 'Oracle 12c source database.'), 'nls_timestamp_format': ('-m', '--nls_timestamp_format', '"YYYY-MM-DD-HH24.MI.SS.FF"', 'nls_timestamp_format for source.'), 'nls_date_format': ('-e', '--nls_date_format', '"YYYY-MM-DD"', 'nls_date_format for source.'), 'nls_timestamp_tz_format': ('-O', '--nls_timestamp_tz_format', '"YYYY-MM-DD-HH24:MI:SS.FF"', 'nls_timestamp_tz_format for source.'), 'from_user': ('-j', '--from_user', 'SCOTT', 'Oracle 12c source user.'), 'from_passwd': ('-x', '--from_passwd', 'tiger', 'Oracle 12c source user password.')}, {'to_db_name': ('-d', '--to_db_name', '"SAMPLE"', 'Target DB2 Advanced Workgroup Server database.'), 'target_client_home': ('-Z', '--target_client_home', '"C:\\Program Files (x86)\\IBM\\SQLLIB_01\\BIN"', 'Path to DB2 Advanced Workgroup Server client home bin dir.'), 'to_user': ('-u', '--to_user', '"ALEX_BUZ"', 'Target DB2 Advanced Workgroup Server db user.'), 'to_passwd': ('-p', '--to_passwd', '"198Morgan"', 'Target DB2 Advanced Workgroup Server db user password.'), 'to_db_server': ('-s', '--to_db_server', '"DB2"', 'Target DB2 Advanced Workgroup Server db instance name.'), 'to_table': ('-a', '--to_table', 'ALEX_BUZ.Timestamp_test_to', 'Target DB2 Advanced Workgroup Server table.')}], 'ORA12C_Table_Limit10.DBTAWS_Table': [{'lame_duck': ('-l', '--lame_duck', 10, 'Limit rows (lame duck run).'), 'field_term': ('-t', '--field_term', '"|"', 'Field terminator.'), 'num_of_shards': ('-r', '--num_of_shards', 1, 'Number of shards.'), 'pool_size': ('-o', '--pool_size', 1, 'Pool size.'), 'copy_vector': ('-w', '--copy_vector', 'ora12c-dbtaws', 'Data copy direction.'), 'keep_data_file': ('-K', '--keep_data_file', 1, 'Keep data dump.'), 'default_spool_dir': ('-F', '--default_spool_dir', 'C:\\tmp\\TEST_default_spool', 'Default data dump dir (default_spool_dir/job_name/timestamp).'), 'time_stamp': ('-Y', '--time_stamp', '20150515_221740_772000', 'Timestamp (log_dir/job_name/timestamp).'), 'host_map': ('-5', '--host_map', '".\\config\\host_map_v2.py"', 'Host-to-shard map.'), 'job_name': ('-B', '--job_name', 'qc_job', 'Job name (log_dir/job_name).'), 'log_dir': ('-M', '--log_dir', 'C:\\Temp\\qc_log', 'Log destination.')}, {'from_db_name': ('-b', '--from_db_name', 'orcl', 'Oracle 12c source database.'), 'from_table': ('-c', '--from_table', 'SCOTT.Timestamp_test_from', 'From table.'), 'nls_timestamp_format': ('-m', '--nls_timestamp_format', '"YYYY-MM-DD-HH24.MI.SS.FF"', 'nls_timestamp_format for source.'), 'nls_date_format': ('-e', '--nls_date_format', '"YYYY-MM-DD"', 'nls_date_format for source.'), 'nls_timestamp_tz_format': ('-O', '--nls_timestamp_tz_format', '"YYYY-MM-DD-HH24:MI:SS.FF"', 'nls_timestamp_tz_format for source.'), 'from_user': ('-j', '--from_user', 'SCOTT', 'Oracle 12c source user.'), 'from_passwd': ('-x', '--from_passwd', 'tiger', 'Oracle 12c source user password.')}, {'to_db_name': ('-d', '--to_db_name', '"SAMPLE"', 'Target DB2 Advanced Workgroup Server database.'), 'target_client_home': ('-Z', '--target_client_home', '"C:\\Program Files (x86)\\IBM\\SQLLIB_01\\BIN"', 'Path to DB2 Advanced Workgroup Server client home bin dir.'), 'to_user': ('-u', '--to_user', '"ALEX_BUZ"', 'Target DB2 Advanced Workgroup Server db user.'), 'to_passwd': ('-p', '--to_passwd', '"198Morgan"', 'Target DB2 Advanced Workgroup Server db user password.'), 'to_db_server': ('-s', '--to_db_server', '"DB2"', 'Target DB2 Advanced Workgroup Server db instance name.'), 'to_table': ('-a', '--to_table', 'ALEX_BUZ.Timestamp_test_to', 'Target DB2 Advanced Workgroup Server table.')}], 'ORA12C_QueryDir_TableNamedFiles.DBTAWS_Table': [{'field_term': ('-t', '--field_term', '"|"', 'Field terminator.'), 'num_of_shards': ('-r', '--num_of_shards', 1, 'Number of shards.'), 'pool_size': ('-o', '--pool_size', 1, 'Pool size.'), 'copy_vector': ('-w', '--copy_vector', 'ora12c-dbtaws', 'Data copy direction.'), 'keep_data_file': ('-K', '--keep_data_file', 1, 'Keep data dump.'), 'default_spool_dir': ('-F', '--default_spool_dir', 'C:\\tmp\\TEST_default_spool', 'Default data dump dir (default_spool_dir/job_name/timestamp).'), 'time_stamp': ('-Y', '--time_stamp', '20150515_221740_970000', 'Timestamp (log_dir/job_name/timestamp).'), 'host_map': ('-5', '--host_map', '".\\config\\host_map_v2.py"', 'Host-to-shard map.'), 'job_name': ('-B', '--job_name', 'qc_job', 'Job name (log_dir/job_name).'), 'log_dir': ('-M', '--log_dir', 'C:\\Temp\\qc_log', 'Log destination.')}, {'from_db_name': ('-b', '--from_db_name', 'orcl', 'Oracle 12c source database.'), 'nls_timestamp_format': ('-m', '--nls_timestamp_format', '"YYYY-MM-DD-HH24.MI.SS.FF"', 'nls_timestamp_format for source.'), 'nls_date_format': ('-e', '--nls_date_format', '"YYYY-MM-DD"', 'nls_date_format for source.'), 'nls_timestamp_tz_format': ('-O', '--nls_timestamp_tz_format', '"YYYY-MM-DD-HH24:MI:SS.FF"', 'nls_timestamp_tz_format for source.'), 'from_user': ('-j', '--from_user', 'SCOTT', 'Oracle 12c source user.'), 'from_passwd': ('-x', '--from_passwd', 'tiger', 'Oracle 12c source user password.'), 'query_sql_dir': ('-Q', '--query_sql_dir', 'C:\\Python27\\data_migrator_1239_12c\\test\\v101\\query\\query_dir_ora_table_named', 'Input dir with Oracle 12c query files sql.')}, {'to_db_name': ('-d', '--to_db_name', '"SAMPLE"', 'Target DB2 Advanced Workgroup Server database.'), 'target_client_home': ('-Z', '--target_client_home', '"C:\\Program Files (x86)\\IBM\\SQLLIB_01\\BIN"', 'Path to DB2 Advanced Workgroup Server client home bin dir.'), 'to_user': ('-u', '--to_user', '"ALEX_BUZ"', 'Target DB2 Advanced Workgroup Server db user.'), 'to_passwd': ('-p', '--to_passwd', '"198Morgan"', 'Target DB2 Advanced Workgroup Server db user password.'), 'to_db_server': ('-s', '--to_db_server', '"DB2"', 'Target DB2 Advanced Workgroup Server db instance name.'), 'to_table': ('-a', '--to_table', 'ALEX_BUZ.Timestamp_test_to', 'Target DB2 Advanced Workgroup Server table.')}], 'ORA12C_Subpartition_WithWideRows.DBTAWS_Table': [{'field_term': ('-t', '--field_term', '"|"', 'Field terminator.'), 'num_of_shards': ('-r', '--num_of_shards', 1, 'Number of shards.'), 'pool_size': ('-o', '--pool_size', 1, 'Pool size.'), 'column_buckets': ('-0', '--column_buckets', 2, 'Wide row support.'), 'copy_vector': ('-w', '--copy_vector', 'ora12c-dbtaws', 'Data copy direction.'), 'keep_data_file': ('-K', '--keep_data_file', 1, 'Keep data dump.'), 'default_spool_dir': ('-F', '--default_spool_dir', 'C:\\tmp\\TEST_default_spool', 'Default data dump dir (default_spool_dir/job_name/timestamp).'), 'time_stamp': ('-Y', '--time_stamp', '20150515_221741_198000', 'Timestamp (log_dir/job_name/timestamp).'), 'host_map': ('-5', '--host_map', '".\\config\\host_map_v2.py"', 'Host-to-shard map.'), 'job_name': ('-B', '--job_name', 'qc_job', 'Job name (log_dir/job_name).'), 'log_dir': ('-M', '--log_dir', 'C:\\Temp\\qc_log', 'Log destination.')}, {'from_db_name': ('-b', '--from_db_name', 'orcl', 'Oracle 12c source database.'), 'from_sub_partition': ('-S', '--from_sub_partition', 'part_15_sp1', 'From sub-partition.'), 'from_table': ('-c', '--from_table', 'SCOTT.Sub_Partitioned_test_from', 'From table.'), 'nls_timestamp_format': ('-m', '--nls_timestamp_format', '"YYYY-MM-DD-HH24.MI.SS.FF"', 'nls_timestamp_format for source.'), 'nls_date_format': ('-e', '--nls_date_format', '"YYYY-MM-DD"', 'nls_date_format for source.'), 'nls_timestamp_tz_format': ('-O', '--nls_timestamp_tz_format', '"YYYY-MM-DD-HH24:MI:SS.FF"', 'nls_timestamp_tz_format for source.'), 'from_user': ('-j', '--from_user', 'SCOTT', 'Oracle 12c source user.'), 'from_passwd': ('-x', '--from_passwd', 'tiger', 'Oracle 12c source user password.')}, {'to_db_name': ('-d', '--to_db_name', '"SAMPLE"', 'Target DB2 Advanced Workgroup Server database.'), 'target_client_home': ('-Z', '--target_client_home', '"C:\\Program Files (x86)\\IBM\\SQLLIB_01\\BIN"', 'Path to DB2 Advanced Workgroup Server client home bin dir.'), 'to_user': ('-u', '--to_user', '"ALEX_BUZ"', 'Target DB2 Advanced Workgroup Server db user.'), 'to_passwd': ('-p', '--to_passwd', '"198Morgan"', 'Target DB2 Advanced Workgroup Server db user password.'), 'to_db_server': ('-s', '--to_db_server', '"DB2"', 'Target DB2 Advanced Workgroup Server db instance name.'), 'to_table': ('-a', '--to_table', 'ALEX_BUZ.Timestamp_test_to', 'Target DB2 Advanced Workgroup Server table.')}], 'ORA12C_Table.DBTAWS_Table': [{'field_term': ('-t', '--field_term', '"|"', 'Field terminator.'), 'num_of_shards': ('-r', '--num_of_shards', 1, 'Number of shards.'), 'pool_size': ('-o', '--pool_size', 1, 'Pool size.'), 'copy_vector': ('-w', '--copy_vector', 'ora12c-dbtaws', 'Data copy direction.'), 'keep_data_file': ('-K', '--keep_data_file', 1, 'Keep data dump.'), 'default_spool_dir': ('-F', '--default_spool_dir', 'C:\\tmp\\TEST_default_spool', 'Default data dump dir (default_spool_dir/job_name/timestamp).'), 'time_stamp': ('-Y', '--time_stamp', '20150515_221740_542000', 'Timestamp (log_dir/job_name/timestamp).'), 'host_map': ('-5', '--host_map', '".\\config\\host_map_v2.py"', 'Host-to-shard map.'), 'job_name': ('-B', '--job_name', 'qc_job', 'Job name (log_dir/job_name).'), 'log_dir': ('-M', '--log_dir', 'C:\\Temp\\qc_log', 'Log destination.')}, {'from_db_name': ('-b', '--from_db_name', 'orcl', 'Oracle 12c source database.'), 'from_table': ('-c', '--from_table', 'SCOTT.Timestamp_test_from', 'From table.'), 'nls_timestamp_format': ('-m', '--nls_timestamp_format', '"YYYY-MM-DD-HH24.MI.SS.FF"', 'nls_timestamp_format for source.'), 'nls_date_format': ('-e', '--nls_date_format', '"YYYY-MM-DD"', 'nls_date_format for source.'), 'nls_timestamp_tz_format': ('-O', '--nls_timestamp_tz_format', '"YYYY-MM-DD-HH24:MI:SS.FF"', 'nls_timestamp_tz_format for source.'), 'from_user': ('-j', '--from_user', 'SCOTT', 'Oracle 12c source user.'), 'from_passwd': ('-x', '--from_passwd', 'tiger', 'Oracle 12c source user password.')}, {'to_db_name': ('-d', '--to_db_name', '"SAMPLE"', 'Target DB2 Advanced Workgroup Server database.'), 'target_client_home': ('-Z', '--target_client_home', '"C:\\Program Files (x86)\\IBM\\SQLLIB_01\\BIN"', 'Path to DB2 Advanced Workgroup Server client home bin dir.'), 'to_user': ('-u', '--to_user', '"ALEX_BUZ"', 'Target DB2 Advanced Workgroup Server db user.'), 'to_passwd': ('-p', '--to_passwd', '"198Morgan"', 'Target DB2 Advanced Workgroup Server db user password.'), 'to_db_server': ('-s', '--to_db_server', '"DB2"', 'Target DB2 Advanced Workgroup Server db instance name.'), 'to_table': ('-a', '--to_table', 'ALEX_BUZ.Timestamp_test_to', 'Target DB2 Advanced Workgroup Server table.')}], 'ORA12C_DateTable.DBTAWS_Table': [{'field_term': ('-t', '--field_term', '"|"', 'Field terminator.'), 'num_of_shards': ('-r', '--num_of_shards', 1, 'Number of shards.'), 'pool_size': ('-o', '--pool_size', 1, 'Pool size.'), 'copy_vector': ('-w', '--copy_vector', 'ora12c-dbtaws', 'Data copy direction.'), 'keep_data_file': ('-K', '--keep_data_file', 1, 'Keep data dump.'), 'default_spool_dir': ('-F', '--default_spool_dir', 'C:\\tmp\\TEST_default_spool', 'Default data dump dir (default_spool_dir/job_name/timestamp).'), 'time_stamp': ('-Y', '--time_stamp', '20150515_221740_678000', 'Timestamp (log_dir/job_name/timestamp).'), 'host_map': ('-5', '--host_map', '".\\config\\host_map_v2.py"', 'Host-to-shard map.'), 'job_name': ('-B', '--job_name', 'qc_job', 'Job name (log_dir/job_name).'), 'log_dir': ('-M', '--log_dir', 'C:\\Temp\\qc_log', 'Log destination.')}, {'from_db_name': ('-b', '--from_db_name', 'orcl', 'Oracle 12c source database.'), 'from_table': ('-c', '--from_table', 'SCOTT.Date_test_from', 'From table.'), 'nls_timestamp_format': ('-m', '--nls_timestamp_format', '"YYYY-MM-DD-HH24.MI.SS.FF"', 'nls_timestamp_format for source.'), 'nls_date_format': ('-e', '--nls_date_format', '"YYYY-MM-DD"', 'nls_date_format for source.'), 'nls_timestamp_tz_format': ('-O', '--nls_timestamp_tz_format', '"YYYY-MM-DD-HH24:MI:SS.FF"', 'nls_timestamp_tz_format for source.'), 'from_user': ('-j', '--from_user', 'SCOTT', 'Oracle 12c source user.'), 'from_passwd': ('-x', '--from_passwd', 'tiger', 'Oracle 12c source user password.')}, {'to_db_name': ('-d', '--to_db_name', '"SAMPLE"', 'Target DB2 Advanced Workgroup Server database.'), 'target_client_home': ('-Z', '--target_client_home', '"C:\\Program Files (x86)\\IBM\\SQLLIB_01\\BIN"', 'Path to DB2 Advanced Workgroup Server client home bin dir.'), 'to_user': ('-u', '--to_user', '"ALEX_BUZ"', 'Target DB2 Advanced Workgroup Server db user.'), 'to_passwd': ('-p', '--to_passwd', '"198Morgan"', 'Target DB2 Advanced Workgroup Server db user password.'), 'to_db_server': ('-s', '--to_db_server', '"DB2"', 'Target DB2 Advanced Workgroup Server db instance name.'), 'to_table': ('-a', '--to_table', 'ALEX_BUZ.Date_test_to', 'Target DB2 Advanced Workgroup Server table.')}], 'ORA12C_ShardedTable_Limit10.DBTAWS_Table': [{'lame_duck': ('-l', '--lame_duck', 10, 'Limit rows (lame duck run).'), 'field_term': ('-t', '--field_term', '"|"', 'Field terminator.'), 'num_of_shards': ('-r', '--num_of_shards', 3, 'Number of shards.'), 'pool_size': ('-o', '--pool_size', 3, 'Pool size.'), 'copy_vector': ('-w', '--copy_vector', 'ora12c-dbtaws', 'Data copy direction.'), 'keep_data_file': ('-K', '--keep_data_file', 1, 'Keep data dump.'), 'default_spool_dir': ('-F', '--default_spool_dir', 'C:\\tmp\\TEST_default_spool', 'Default data dump dir (default_spool_dir/job_name/timestamp).'), 'time_stamp': ('-Y', '--time_stamp', '20150515_221741_500000', 'Timestamp (log_dir/job_name/timestamp).'), 'host_map': ('-5', '--host_map', '".\\config\\host_map_v2.py"', 'Host-to-shard map.'), 'job_name': ('-B', '--job_name', 'qc_job', 'Job name (log_dir/job_name).'), 'log_dir': ('-M', '--log_dir', 'C:\\Temp\\qc_log', 'Log destination.')}, {'from_db_name': ('-b', '--from_db_name', 'orcl', 'Oracle 12c source database.'), 'from_table': ('-c', '--from_table', 'SCOTT.Timestamp_test_from', 'From table.'), 'nls_timestamp_format': ('-m', '--nls_timestamp_format', '"YYYY-MM-DD-HH24.MI.SS.FF"', 'nls_timestamp_format for source.'), 'nls_date_format': ('-e', '--nls_date_format', '"YYYY-MM-DD"', 'nls_date_format for source.'), 'nls_timestamp_tz_format': ('-O', '--nls_timestamp_tz_format', '"YYYY-MM-DD-HH24:MI:SS.FF"', 'nls_timestamp_tz_format for source.'), 'from_user': ('-j', '--from_user', 'SCOTT', 'Oracle 12c source user.'), 'from_passwd': ('-x', '--from_passwd', 'tiger', 'Oracle 12c source user password.')}, {'to_db_name': ('-d', '--to_db_name', '"SAMPLE"', 'Target DB2 Advanced Workgroup Server database.'), 'target_client_home': ('-Z', '--target_client_home', '"C:\\Program Files (x86)\\IBM\\SQLLIB_01\\BIN"', 'Path to DB2 Advanced Workgroup Server client home bin dir.'), 'to_user': ('-u', '--to_user', '"ALEX_BUZ"', 'Target DB2 Advanced Workgroup Server db user.'), 'to_passwd': ('-p', '--to_passwd', '"198Morgan"', 'Target DB2 Advanced Workgroup Server db user password.'), 'to_db_server': ('-s', '--to_db_server', '"DB2"', 'Target DB2 Advanced Workgroup Server db instance name.'), 'to_table': ('-a', '--to_table', 'ALEX_BUZ.Timestamp_test_to', 'Target DB2 Advanced Workgroup Server table.')}], 'ORA12C_Partition_Limit10.DBTAWS_Table': [{'lame_duck': ('-l', '--lame_duck', 10, 'Limit rows (lame duck run).'), 'field_term': ('-t', '--field_term', '"|"', 'Field terminator.'), 'num_of_shards': ('-r', '--num_of_shards', 1, 'Number of shards.'), 'pool_size': ('-o', '--pool_size', 1, 'Pool size.'), 'copy_vector': ('-w', '--copy_vector', 'ora12c-dbtaws', 'Data copy direction.'), 'keep_data_file': ('-K', '--keep_data_file', 1, 'Keep data dump.'), 'default_spool_dir': ('-F', '--default_spool_dir', 'C:\\tmp\\TEST_default_spool', 'Default data dump dir (default_spool_dir/job_name/timestamp).'), 'time_stamp': ('-Y', '--time_stamp', '20150515_221741_473000', 'Timestamp (log_dir/job_name/timestamp).'), 'host_map': ('-5', '--host_map', '".\\config\\host_map_v2.py"', 'Host-to-shard map.'), 'job_name': ('-B', '--job_name', 'qc_job', 'Job name (log_dir/job_name).'), 'log_dir': ('-M', '--log_dir', 'C:\\Temp\\qc_log', 'Log destination.')}, {'from_db_name': ('-b', '--from_db_name', 'orcl', 'Oracle 12c source database.'), 'from_partition': ('-P', '--from_partition', 'part_15', 'From partition.'), 'from_table': ('-c', '--from_table', 'SCOTT.Partitioned_test_from', 'From table.'), 'nls_timestamp_format': ('-m', '--nls_timestamp_format', '"YYYY-MM-DD-HH24.MI.SS.FF"', 'nls_timestamp_format for source.'), 'nls_date_format': ('-e', '--nls_date_format', '"YYYY-MM-DD"', 'nls_date_format for source.'), 'nls_timestamp_tz_format': ('-O', '--nls_timestamp_tz_format', '"YYYY-MM-DD-HH24:MI:SS.FF"', 'nls_timestamp_tz_format for source.'), 'from_user': ('-j', '--from_user', 'SCOTT', 'Oracle 12c source user.'), 'from_passwd': ('-x', '--from_passwd', 'tiger', 'Oracle 12c source user password.')}, {'to_db_name': ('-d', '--to_db_name', '"SAMPLE"', 'Target DB2 Advanced Workgroup Server database.'), 'target_client_home': ('-Z', '--target_client_home', '"C:\\Program Files (x86)\\IBM\\SQLLIB_01\\BIN"', 'Path to DB2 Advanced Workgroup Server client home bin dir.'), 'to_user': ('-u', '--to_user', '"ALEX_BUZ"', 'Target DB2 Advanced Workgroup Server db user.'), 'to_passwd': ('-p', '--to_passwd', '"198Morgan"', 'Target DB2 Advanced Workgroup Server db user password.'), 'to_db_server': ('-s', '--to_db_server', '"DB2"', 'Target DB2 Advanced Workgroup Server db instance name.'), 'to_table': ('-a', '--to_table', 'ALEX_BUZ.Timestamp_test_to', 'Target DB2 Advanced Workgroup Server table.')}], 'ORA12C_Partition.DBTAWS_Table': [{'field_term': ('-t', '--field_term', '"|"', 'Field terminator.'), 'num_of_shards': ('-r', '--num_of_shards', 1, 'Number of shards.'), 'pool_size': ('-o', '--pool_size', 1, 'Pool size.'), 'copy_vector': ('-w', '--copy_vector', 'ora12c-dbtaws', 'Data copy direction.'), 'keep_data_file': ('-K', '--keep_data_file', 1, 'Keep data dump.'), 'default_spool_dir': ('-F', '--default_spool_dir', 'C:\\tmp\\TEST_default_spool', 'Default data dump dir (default_spool_dir/job_name/timestamp).'), 'time_stamp': ('-Y', '--time_stamp', '20150515_221741_605000', 'Timestamp (log_dir/job_name/timestamp).'), 'host_map': ('-5', '--host_map', '".\\config\\host_map_v2.py"', 'Host-to-shard map.'), 'job_name': ('-B', '--job_name', 'qc_job', 'Job name (log_dir/job_name).'), 'log_dir': ('-M', '--log_dir', 'C:\\Temp\\qc_log', 'Log destination.')}, {'from_db_name': ('-b', '--from_db_name', 'orcl', 'Oracle 12c source database.'), 'from_partition': ('-P', '--from_partition', 'part_15', 'From partition.'), 'from_table': ('-c', '--from_table', 'SCOTT.Partitioned_test_from', 'From table.'), 'nls_timestamp_format': ('-m', '--nls_timestamp_format', '"YYYY-MM-DD-HH24.MI.SS.FF"', 'nls_timestamp_format for source.'), 'nls_date_format': ('-e', '--nls_date_format', '"YYYY-MM-DD"', 'nls_date_format for source.'), 'nls_timestamp_tz_format': ('-O', '--nls_timestamp_tz_format', '"YYYY-MM-DD-HH24:MI:SS.FF"', 'nls_timestamp_tz_format for source.'), 'from_user': ('-j', '--from_user', 'SCOTT', 'Oracle 12c source user.'), 'from_passwd': ('-x', '--from_passwd', 'tiger', 'Oracle 12c source user password.')}, {'to_db_name': ('-d', '--to_db_name', '"SAMPLE"', 'Target DB2 Advanced Workgroup Server database.'), 'target_client_home': ('-Z', '--target_client_home', '"C:\\Program Files (x86)\\IBM\\SQLLIB_01\\BIN"', 'Path to DB2 Advanced Workgroup Server client home bin dir.'), 'to_user': ('-u', '--to_user', '"ALEX_BUZ"', 'Target DB2 Advanced Workgroup Server db user.'), 'to_passwd': ('-p', '--to_passwd', '"198Morgan"', 'Target DB2 Advanced Workgroup Server db user password.'), 'to_db_server': ('-s', '--to_db_server', '"DB2"', 'Target DB2 Advanced Workgroup Server db instance name.'), 'to_table': ('-a', '--to_table', 'ALEX_BUZ.Timestamp_test_to', 'Target DB2 Advanced Workgroup Server table.')}], 'ORA12C_TimestampTable_keepWhitespace_Validate.DBTAWS_Table': [{'field_term': ('-t', '--field_term', '"|"', 'Field terminator.'), 'host_map': ('-5', '--host_map', '".\\config\\host_map_v2.py"', 'Host-to-shard map.'), 'num_of_shards': ('-r', '--num_of_shards', 1, 'Number of shards.'), 'pool_size': ('-o', '--pool_size', 1, 'Pool size.'), 'copy_vector': ('-w', '--copy_vector', 'ora12c-dbtaws', 'Data copy direction.'), 'keep_data_file': ('-K', '--keep_data_file', 1, 'Keep data dump.'), 'default_spool_dir': ('-F', '--default_spool_dir', 'C:\\tmp\\TEST_default_spool', 'Default data dump dir (default_spool_dir/job_name/timestamp).'), 'time_stamp': ('-Y', '--time_stamp', '20150515_221740_410000', 'Timestamp (log_dir/job_name/timestamp).'), 'validate': ('-V', '--validate', 1, 'Check if source and target objects exist.'), 'job_name': ('-B', '--job_name', 'qc_job', 'Job name (log_dir/job_name).'), 'log_dir': ('-M', '--log_dir', 'C:\\Temp\\qc_log', 'Log destination.')}, {'from_db_name': ('-b', '--from_db_name', 'orcl', 'Oracle 12c source database.'), 'from_table': ('-c', '--from_table', 'SCOTT.Timestamp_test_from', 'From table.'), 'nls_timestamp_format': ('-m', '--nls_timestamp_format', '"YYYY-MM-DD-HH24.MI.SS.FF"', 'nls_timestamp_format for source.'), 'nls_date_format': ('-e', '--nls_date_format', '"YYYY-MM-DD"', 'nls_date_format for source.'), 'keep_whitespace': ('-W', '--keep_whitespace', 1, 'Keep whitespace from CHAR type in "Oracle 12c" extract.'), 'nls_timestamp_tz_format': ('-O', '--nls_timestamp_tz_format', '"YYYY-MM-DD-HH24:MI:SS.FF"', 'nls_timestamp_tz_format for source.'), 'from_user': ('-j', '--from_user', 'SCOTT', 'Oracle 12c source user.'), 'from_passwd': ('-x', '--from_passwd', 'tiger', 'Oracle 12c source user password.')}, {'to_db_name': ('-d', '--to_db_name', '"SAMPLE"', 'Target DB2 Advanced Workgroup Server database.'), 'target_client_home': ('-Z', '--target_client_home', '"C:\\Program Files (x86)\\IBM\\SQLLIB_01\\BIN"', 'Path to DB2 Advanced Workgroup Server client home bin dir.'), 'to_user': ('-u', '--to_user', '"ALEX_BUZ"', 'Target DB2 Advanced Workgroup Server db user.'), 'to_passwd': ('-p', '--to_passwd', '"198Morgan"', 'Target DB2 Advanced Workgroup Server db user password.'), 'to_db_server': ('-s', '--to_db_server', '"DB2"', 'Target DB2 Advanced Workgroup Server db instance name.'), 'to_table': ('-a', '--to_table', 'ALEX_BUZ.Timestamp_test_to', 'Target DB2 Advanced Workgroup Server table.')}], 'ORA12C_ShardedTable.DBTAWS_Table': [{'field_term': ('-t', '--field_term', '"|"', 'Field terminator.'), 'num_of_shards': ('-r', '--num_of_shards', 3, 'Number of shards.'), 'pool_size': ('-o', '--pool_size', 3, 'Pool size.'), 'copy_vector': ('-w', '--copy_vector', 'ora12c-dbtaws', 'Data copy direction.'), 'keep_data_file': ('-K', '--keep_data_file', 1, 'Keep data dump.'), 'default_spool_dir': ('-F', '--default_spool_dir', 'C:\\tmp\\TEST_default_spool', 'Default data dump dir (default_spool_dir/job_name/timestamp).'), 'time_stamp': ('-Y', '--time_stamp', '20150515_221741_033000', 'Timestamp (log_dir/job_name/timestamp).'), 'host_map': ('-5', '--host_map', '".\\config\\host_map_v2.py"', 'Host-to-shard map.'), 'job_name': ('-B', '--job_name', 'qc_job', 'Job name (log_dir/job_name).'), 'log_dir': ('-M', '--log_dir', 'C:\\Temp\\qc_log', 'Log destination.')}, {'from_db_name': ('-b', '--from_db_name', 'orcl', 'Oracle 12c source database.'), 'from_table': ('-c', '--from_table', 'SCOTT.Timestamp_test_from', 'From table.'), 'nls_timestamp_format': ('-m', '--nls_timestamp_format', '"YYYY-MM-DD-HH24.MI.SS.FF"', 'nls_timestamp_format for source.'), 'nls_date_format': ('-e', '--nls_date_format', '"YYYY-MM-DD"', 'nls_date_format for source.'), 'nls_timestamp_tz_format': ('-O', '--nls_timestamp_tz_format', '"YYYY-MM-DD-HH24:MI:SS.FF"', 'nls_timestamp_tz_format for source.'), 'from_user': ('-j', '--from_user', 'SCOTT', 'Oracle 12c source user.'), 'from_passwd': ('-x', '--from_passwd', 'tiger', 'Oracle 12c source user password.')}, {'to_db_name': ('-d', '--to_db_name', '"SAMPLE"', 'Target DB2 Advanced Workgroup Server database.'), 'target_client_home': ('-Z', '--target_client_home', '"C:\\Program Files (x86)\\IBM\\SQLLIB_01\\BIN"', 'Path to DB2 Advanced Workgroup Server client home bin dir.'), 'to_user': ('-u', '--to_user', '"ALEX_BUZ"', 'Target DB2 Advanced Workgroup Server db user.'), 'to_passwd': ('-p', '--to_passwd', '"198Morgan"', 'Target DB2 Advanced Workgroup Server db user password.'), 'to_db_server': ('-s', '--to_db_server', '"DB2"', 'Target DB2 Advanced Workgroup Server db instance name.'), 'to_table': ('-a', '--to_table', 'ALEX_BUZ.Timestamp_test_to', 'Target DB2 Advanced Workgroup Server table.')}], 'ORA12C_Subpartition.DBTAWS_Table': [{'field_term': ('-t', '--field_term', '"|"', 'Field terminator.'), 'num_of_shards': ('-r', '--num_of_shards', 1, 'Number of shards.'), 'pool_size': ('-o', '--pool_size', 1, 'Pool size.'), 'copy_vector': ('-w', '--copy_vector', 'ora12c-dbtaws', 'Data copy direction.'), 'keep_data_file': ('-K', '--keep_data_file', 1, 'Keep data dump.'), 'default_spool_dir': ('-F', '--default_spool_dir', 'C:\\tmp\\TEST_default_spool', 'Default data dump dir (default_spool_dir/job_name/timestamp).'), 'time_stamp': ('-Y', '--time_stamp', '20150515_221740_514000', 'Timestamp (log_dir/job_name/timestamp).'), 'host_map': ('-5', '--host_map', '".\\config\\host_map_v2.py"', 'Host-to-shard map.'), 'job_name': ('-B', '--job_name', 'qc_job', 'Job name (log_dir/job_name).'), 'log_dir': ('-M', '--log_dir', 'C:\\Temp\\qc_log', 'Log destination.')}, {'from_db_name': ('-b', '--from_db_name', 'orcl', 'Oracle 12c source database.'), 'from_sub_partition': ('-S', '--from_sub_partition', 'part_15_sp1', 'From sub-partition.'), 'from_table': ('-c', '--from_table', 'SCOTT.Sub_Partitioned_test_from', 'From table.'), 'nls_timestamp_format': ('-m', '--nls_timestamp_format', '"YYYY-MM-DD-HH24.MI.SS.FF"', 'nls_timestamp_format for source.'), 'nls_date_format': ('-e', '--nls_date_format', '"YYYY-MM-DD"', 'nls_date_format for source.'), 'nls_timestamp_tz_format': ('-O', '--nls_timestamp_tz_format', '"YYYY-MM-DD-HH24:MI:SS.FF"', 'nls_timestamp_tz_format for source.'), 'from_user': ('-j', '--from_user', 'SCOTT', 'Oracle 12c source user.'), 'from_passwd': ('-x', '--from_passwd', 'tiger', 'Oracle 12c source user password.')}, {'to_db_name': ('-d', '--to_db_name', '"SAMPLE"', 'Target DB2 Advanced Workgroup Server database.'), 'target_client_home': ('-Z', '--target_client_home', '"C:\\Program Files (x86)\\IBM\\SQLLIB_01\\BIN"', 'Path to DB2 Advanced Workgroup Server client home bin dir.'), 'to_user': ('-u', '--to_user', '"ALEX_BUZ"', 'Target DB2 Advanced Workgroup Server db user.'), 'to_passwd': ('-p', '--to_passwd', '"198Morgan"', 'Target DB2 Advanced Workgroup Server db user password.'), 'to_db_server': ('-s', '--to_db_server', '"DB2"', 'Target DB2 Advanced Workgroup Server db instance name.'), 'to_table': ('-a', '--to_table', 'ALEX_BUZ.Timestamp_test_to', 'Target DB2 Advanced Workgroup Server table.')}], 'ORA12C_TimezoneQueryFile.DBTAWS_Table': [{'field_term': ('-t', '--field_term', '"|"', 'Field terminator.'), 'num_of_shards': ('-r', '--num_of_shards', 1, 'Number of shards.'), 'pool_size': ('-o', '--pool_size', 1, 'Pool size.'), 'copy_vector': ('-w', '--copy_vector', 'ora12c-dbtaws', 'Data copy direction.'), 'keep_data_file': ('-K', '--keep_data_file', 1, 'Keep data dump.'), 'default_spool_dir': ('-F', '--default_spool_dir', 'C:\\tmp\\TEST_default_spool', 'Default data dump dir (default_spool_dir/job_name/timestamp).'), 'time_stamp': ('-Y', '--time_stamp', '20150515_221741_167000', 'Timestamp (log_dir/job_name/timestamp).'), 'host_map': ('-5', '--host_map', '".\\config\\host_map_v2.py"', 'Host-to-shard map.'), 'job_name': ('-B', '--job_name', 'qc_job', 'Job name (log_dir/job_name).'), 'log_dir': ('-M', '--log_dir', 'C:\\Temp\\qc_log', 'Log destination.')}, {'query_sql_file': ('-q', '--query_sql_file', 'C:\\Python27\\data_migrator_1239_12c\\test\\v101\\query\\oracle_query.sql', 'Input file with Oracle 12c query sql.'), 'from_db_name': ('-b', '--from_db_name', 'orcl', 'Oracle 12c source database.'), 'nls_timestamp_format': ('-m', '--nls_timestamp_format', '"YYYY-MM-DD-HH24.MI.SS.FF"', 'nls_timestamp_format for source.'), 'nls_date_format': ('-e', '--nls_date_format', '"YYYY-MM-DD"', 'nls_date_format for source.'), 'nls_timestamp_tz_format': ('-O', '--nls_timestamp_tz_format', '"YYYY-MM-DD-HH24:MI:SS.FF"', 'nls_timestamp_tz_format for source.'), 'from_user': ('-j', '--from_user', 'SCOTT', 'Oracle 12c source user.'), 'from_passwd': ('-x', '--from_passwd', 'tiger', 'Oracle 12c source user password.')}, {'to_db_name': ('-d', '--to_db_name', '"SAMPLE"', 'Target DB2 Advanced Workgroup Server database.'), 'target_client_home': ('-Z', '--target_client_home', '"C:\\Program Files (x86)\\IBM\\SQLLIB_01\\BIN"', 'Path to DB2 Advanced Workgroup Server client home bin dir.'), 'to_user': ('-u', '--to_user', '"ALEX_BUZ"', 'Target DB2 Advanced Workgroup Server db user.'), 'to_passwd': ('-p', '--to_passwd', '"198Morgan"', 'Target DB2 Advanced Workgroup Server db user password.'), 'to_db_server': ('-s', '--to_db_server', '"DB2"', 'Target DB2 Advanced Workgroup Server db instance name.'), 'to_table': ('-a', '--to_table', 'ALEX_BUZ.Timezone_test_to', 'Target DB2 Advanced Workgroup Server table.')}], 'ORA12C_QueryFile_Limit10.DBTAWS_Table': [{'lame_duck': ('-l', '--lame_duck', 10, 'Limit rows (lame duck run).'), 'field_term': ('-t', '--field_term', '"|"', 'Field terminator.'), 'num_of_shards': ('-r', '--num_of_shards', 1, 'Number of shards.'), 'pool_size': ('-o', '--pool_size', 1, 'Pool size.'), 'copy_vector': ('-w', '--copy_vector', 'ora12c-dbtaws', 'Data copy direction.'), 'keep_data_file': ('-K', '--keep_data_file', 1, 'Keep data dump.'), 'default_spool_dir': ('-F', '--default_spool_dir', 'C:\\tmp\\TEST_default_spool', 'Default data dump dir (default_spool_dir/job_name/timestamp).'), 'time_stamp': ('-Y', '--time_stamp', '20150515_221740_573000', 'Timestamp (log_dir/job_name/timestamp).'), 'host_map': ('-5', '--host_map', '".\\config\\host_map_v2.py"', 'Host-to-shard map.'), 'job_name': ('-B', '--job_name', 'qc_job', 'Job name (log_dir/job_name).'), 'log_dir': ('-M', '--log_dir', 'C:\\Temp\\qc_log', 'Log destination.')}, {'query_sql_file': ('-q', '--query_sql_file', 'C:\\Python27\\data_migrator_1239_12c\\test\\v101\\query\\oracle_query.sql', 'Input file with Oracle 12c query sql.'), 'from_db_name': ('-b', '--from_db_name', 'orcl', 'Oracle 12c source database.'), 'nls_timestamp_format': ('-m', '--nls_timestamp_format', '"YYYY-MM-DD-HH24.MI.SS.FF"', 'nls_timestamp_format for source.'), 'nls_date_format': ('-e', '--nls_date_format', '"YYYY-MM-DD"', 'nls_date_format for source.'), 'nls_timestamp_tz_format': ('-O', '--nls_timestamp_tz_format', '"YYYY-MM-DD-HH24:MI:SS.FF"', 'nls_timestamp_tz_format for source.'), 'from_user': ('-j', '--from_user', 'SCOTT', 'Oracle 12c source user.'), 'from_passwd': ('-x', '--from_passwd', 'tiger', 'Oracle 12c source user password.')}, {'to_db_name': ('-d', '--to_db_name', '"SAMPLE"', 'Target DB2 Advanced Workgroup Server database.'), 'target_client_home': ('-Z', '--target_client_home', '"C:\\Program Files (x86)\\IBM\\SQLLIB_01\\BIN"', 'Path to DB2 Advanced Workgroup Server client home bin dir.'), 'to_user': ('-u', '--to_user', '"ALEX_BUZ"', 'Target DB2 Advanced Workgroup Server db user.'), 'to_passwd': ('-p', '--to_passwd', '"198Morgan"', 'Target DB2 Advanced Workgroup Server db user password.'), 'to_db_server': ('-s', '--to_db_server', '"DB2"', 'Target DB2 Advanced Workgroup Server db instance name.'), 'to_table': ('-a', '--to_table', 'ALEX_BUZ.Timestamp_test_to', 'Target DB2 Advanced Workgroup Server table.')}], 'ORA12C_ShardedTimestampTable_keepWhitespace_Validate.DBTAWS_Table': [{'field_term': ('-t', '--field_term', '"|"', 'Field terminator.'), 'host_map': ('-5', '--host_map', '".\\config\\host_map_v2.py"', 'Host-to-shard map.'), 'num_of_shards': ('-r', '--num_of_shards', 3, 'Number of shards.'), 'pool_size': ('-o', '--pool_size', 3, 'Pool size.'), 'copy_vector': ('-w', '--copy_vector', 'ora12c-dbtaws', 'Data copy direction.'), 'keep_data_file': ('-K', '--keep_data_file', 1, 'Keep data dump.'), 'default_spool_dir': ('-F', '--default_spool_dir', 'C:\\tmp\\TEST_default_spool', 'Default data dump dir (default_spool_dir/job_name/timestamp).'), 'time_stamp': ('-Y', '--time_stamp', '20150515_221740_483000', 'Timestamp (log_dir/job_name/timestamp).'), 'validate': ('-V', '--validate', 1, 'Check if source and target objects exist.'), 'job_name': ('-B', '--job_name', 'qc_job', 'Job name (log_dir/job_name).'), 'log_dir': ('-M', '--log_dir', 'C:\\Temp\\qc_log', 'Log destination.')}, {'from_db_name': ('-b', '--from_db_name', 'orcl', 'Oracle 12c source database.'), 'from_table': ('-c', '--from_table', 'SCOTT.Timestamp_test_from', 'From table.'), 'nls_timestamp_format': ('-m', '--nls_timestamp_format', '"YYYY-MM-DD-HH24.MI.SS.FF"', 'nls_timestamp_format for source.'), 'nls_date_format': ('-e', '--nls_date_format', '"YYYY-MM-DD"', 'nls_date_format for source.'), 'keep_whitespace': ('-W', '--keep_whitespace', 1, 'Keep whitespace from CHAR type in "Oracle 12c" extract.'), 'nls_timestamp_tz_format': ('-O', '--nls_timestamp_tz_format', '"YYYY-MM-DD-HH24:MI:SS.FF"', 'nls_timestamp_tz_format for source.'), 'from_user': ('-j', '--from_user', 'SCOTT', 'Oracle 12c source user.'), 'from_passwd': ('-x', '--from_passwd', 'tiger', 'Oracle 12c source user password.')}, {'to_db_name': ('-d', '--to_db_name', '"SAMPLE"', 'Target DB2 Advanced Workgroup Server database.'), 'target_client_home': ('-Z', '--target_client_home', '"C:\\Program Files (x86)\\IBM\\SQLLIB_01\\BIN"', 'Path to DB2 Advanced Workgroup Server client home bin dir.'), 'to_user': ('-u', '--to_user', '"ALEX_BUZ"', 'Target DB2 Advanced Workgroup Server db user.'), 'to_passwd': ('-p', '--to_passwd', '"198Morgan"', 'Target DB2 Advanced Workgroup Server db user password.'), 'to_db_server': ('-s', '--to_db_server', '"DB2"', 'Target DB2 Advanced Workgroup Server db instance name.'), 'to_table': ('-a', '--to_table', 'ALEX_BUZ.Timestamp_test_to', 'Target DB2 Advanced Workgroup Server table.')}], 'ORA12C_Partition_TruncateTarget_AskToTruncate.DBTAWS_Table': [{'ask_to_truncate': ('-E', '--ask_to_truncate', 1, 'Ask to truncate.'), 'field_term': ('-t', '--field_term', '"|"', 'Field terminator.'), 'num_of_shards': ('-r', '--num_of_shards', 1, 'Number of shards.'), 'pool_size': ('-o', '--pool_size', 1, 'Pool size.'), 'copy_vector': ('-w', '--copy_vector', 'ora12c-dbtaws', 'Data copy direction.'), 'keep_data_file': ('-K', '--keep_data_file', 1, 'Keep data dump.'), 'default_spool_dir': ('-F', '--default_spool_dir', 'C:\\tmp\\TEST_default_spool', 'Default data dump dir (default_spool_dir/job_name/timestamp).'), 'time_stamp': ('-Y', '--time_stamp', '20150515_221741_132000', 'Timestamp (log_dir/job_name/timestamp).'), 'truncate_target': ('-U', '--truncate_target', 1, 'Truncate target table/partition/subpartition.'), 'host_map': ('-5', '--host_map', '".\\config\\host_map_v2.py"', 'Host-to-shard map.'), 'job_name': ('-B', '--job_name', 'qc_job', 'Job name (log_dir/job_name).'), 'log_dir': ('-M', '--log_dir', 'C:\\Temp\\qc_log', 'Log destination.')}, {'from_db_name': ('-b', '--from_db_name', 'orcl', 'Oracle 12c source database.'), 'from_partition': ('-P', '--from_partition', 'part_15', 'From partition.'), 'from_table': ('-c', '--from_table', 'SCOTT.Partitioned_test_from', 'From table.'), 'nls_timestamp_format': ('-m', '--nls_timestamp_format', '"YYYY-MM-DD-HH24.MI.SS.FF"', 'nls_timestamp_format for source.'), 'nls_date_format': ('-e', '--nls_date_format', '"YYYY-MM-DD"', 'nls_date_format for source.'), 'nls_timestamp_tz_format': ('-O', '--nls_timestamp_tz_format', '"YYYY-MM-DD-HH24:MI:SS.FF"', 'nls_timestamp_tz_format for source.'), 'from_user': ('-j', '--from_user', 'SCOTT', 'Oracle 12c source user.'), 'from_passwd': ('-x', '--from_passwd', 'tiger', 'Oracle 12c source user password.')}, {'to_db_name': ('-d', '--to_db_name', '"SAMPLE"', 'Target DB2 Advanced Workgroup Server database.'), 'target_client_home': ('-Z', '--target_client_home', '"C:\\Program Files (x86)\\IBM\\SQLLIB_01\\BIN"', 'Path to DB2 Advanced Workgroup Server client home bin dir.'), 'to_user': ('-u', '--to_user', '"ALEX_BUZ"', 'Target DB2 Advanced Workgroup Server db user.'), 'to_passwd': ('-p', '--to_passwd', '"198Morgan"', 'Target DB2 Advanced Workgroup Server db user password.'), 'to_db_server': ('-s', '--to_db_server', '"DB2"', 'Target DB2 Advanced Workgroup Server db instance name.'), 'to_table': ('-a', '--to_table', 'ALEX_BUZ.Timestamp_test_to', 'Target DB2 Advanced Workgroup Server table.')}], 'ORA12C_Table_WithWideRows.DBTAWS_Table': [{'field_term': ('-t', '--field_term', '"|"', 'Field terminator.'), 'num_of_shards': ('-r', '--num_of_shards', 1, 'Number of shards.'), 'pool_size': ('-o', '--pool_size', 1, 'Pool size.'), 'column_buckets': ('-0', '--column_buckets', 2, 'Wide row support.'), 'copy_vector': ('-w', '--copy_vector', 'ora12c-dbtaws', 'Data copy direction.'), 'keep_data_file': ('-K', '--keep_data_file', 1, 'Keep data dump.'), 'default_spool_dir': ('-F', '--default_spool_dir', 'C:\\tmp\\TEST_default_spool', 'Default data dump dir (default_spool_dir/job_name/timestamp).'), 'time_stamp': ('-Y', '--time_stamp', '20150515_221740_438000', 'Timestamp (log_dir/job_name/timestamp).'), 'host_map': ('-5', '--host_map', '".\\config\\host_map_v2.py"', 'Host-to-shard map.'), 'job_name': ('-B', '--job_name', 'qc_job', 'Job name (log_dir/job_name).'), 'log_dir': ('-M', '--log_dir', 'C:\\Temp\\qc_log', 'Log destination.')}, {'from_db_name': ('-b', '--from_db_name', 'orcl', 'Oracle 12c source database.'), 'from_table': ('-c', '--from_table', 'SCOTT.Timestamp_test_from', 'From table.'), 'nls_timestamp_format': ('-m', '--nls_timestamp_format', '"YYYY-MM-DD-HH24.MI.SS.FF"', 'nls_timestamp_format for source.'), 'nls_date_format': ('-e', '--nls_date_format', '"YYYY-MM-DD"', 'nls_date_format for source.'), 'nls_timestamp_tz_format': ('-O', '--nls_timestamp_tz_format', '"YYYY-MM-DD-HH24:MI:SS.FF"', 'nls_timestamp_tz_format for source.'), 'from_user': ('-j', '--from_user', 'SCOTT', 'Oracle 12c source user.'), 'from_passwd': ('-x', '--from_passwd', 'tiger', 'Oracle 12c source user password.')}, {'to_db_name': ('-d', '--to_db_name', '"SAMPLE"', 'Target DB2 Advanced Workgroup Server database.'), 'target_client_home': ('-Z', '--target_client_home', '"C:\\Program Files (x86)\\IBM\\SQLLIB_01\\BIN"', 'Path to DB2 Advanced Workgroup Server client home bin dir.'), 'to_user': ('-u', '--to_user', '"ALEX_BUZ"', 'Target DB2 Advanced Workgroup Server db user.'), 'to_passwd': ('-p', '--to_passwd', '"198Morgan"', 'Target DB2 Advanced Workgroup Server db user password.'), 'to_db_server': ('-s', '--to_db_server', '"DB2"', 'Target DB2 Advanced Workgroup Server db instance name.'), 'to_table': ('-a', '--to_table', 'ALEX_BUZ.Timestamp_test_to', 'Target DB2 Advanced Workgroup Server table.')}], 'ORA12C_Partition_Validate.DBTAWS_Table': [{'field_term': ('-t', '--field_term', '"|"', 'Field terminator.'), 'host_map': ('-5', '--host_map', '".\\config\\host_map_v2.py"', 'Host-to-shard map.'), 'num_of_shards': ('-r', '--num_of_shards', 1, 'Number of shards.'), 'pool_size': ('-o', '--pool_size', 1, 'Pool size.'), 'copy_vector': ('-w', '--copy_vector', 'ora12c-dbtaws', 'Data copy direction.'), 'keep_data_file': ('-K', '--keep_data_file', 1, 'Keep data dump.'), 'default_spool_dir': ('-F', '--default_spool_dir', 'C:\\tmp\\TEST_default_spool', 'Default data dump dir (default_spool_dir/job_name/timestamp).'), 'time_stamp': ('-Y', '--time_stamp', '20150515_221741_733000', 'Timestamp (log_dir/job_name/timestamp).'), 'validate': ('-V', '--validate', 1, 'Check if source and target objects exist.'), 'job_name': ('-B', '--job_name', 'qc_job', 'Job name (log_dir/job_name).'), 'log_dir': ('-M', '--log_dir', 'C:\\Temp\\qc_log', 'Log destination.')}, {'from_db_name': ('-b', '--from_db_name', 'orcl', 'Oracle 12c source database.'), 'from_partition': ('-P', '--from_partition', 'part_15', 'From partition.'), 'from_table': ('-c', '--from_table', 'SCOTT.Partitioned_test_from', 'From table.'), 'nls_timestamp_format': ('-m', '--nls_timestamp_format', '"YYYY-MM-DD-HH24.MI.SS.FF"', 'nls_timestamp_format for source.'), 'nls_date_format': ('-e', '--nls_date_format', '"YYYY-MM-DD"', 'nls_date_format for source.'), 'nls_timestamp_tz_format': ('-O', '--nls_timestamp_tz_format', '"YYYY-MM-DD-HH24:MI:SS.FF"', 'nls_timestamp_tz_format for source.'), 'from_user': ('-j', '--from_user', 'SCOTT', 'Oracle 12c source user.'), 'from_passwd': ('-x', '--from_passwd', 'tiger', 'Oracle 12c source user password.')}, {'to_db_name': ('-d', '--to_db_name', '"SAMPLE"', 'Target DB2 Advanced Workgroup Server database.'), 'target_client_home': ('-Z', '--target_client_home', '"C:\\Program Files (x86)\\IBM\\SQLLIB_01\\BIN"', 'Path to DB2 Advanced Workgroup Server client home bin dir.'), 'to_user': ('-u', '--to_user', '"ALEX_BUZ"', 'Target DB2 Advanced Workgroup Server db user.'), 'to_passwd': ('-p', '--to_passwd', '"198Morgan"', 'Target DB2 Advanced Workgroup Server db user password.'), 'to_db_server': ('-s', '--to_db_server', '"DB2"', 'Target DB2 Advanced Workgroup Server db instance name.'), 'to_table': ('-a', '--to_table', 'ALEX_BUZ.Timestamp_test_to', 'Target DB2 Advanced Workgroup Server table.')}], 'ORA12C_ShardedSubpartition.DBTAWS_Table': [{'field_term': ('-t', '--field_term', '"|"', 'Field terminator.'), 'num_of_shards': ('-r', '--num_of_shards', 3, 'Number of shards.'), 'pool_size': ('-o', '--pool_size', 3, 'Pool size.'), 'copy_vector': ('-w', '--copy_vector', 'ora12c-dbtaws', 'Data copy direction.'), 'keep_data_file': ('-K', '--keep_data_file', 1, 'Keep data dump.'), 'default_spool_dir': ('-F', '--default_spool_dir', 'C:\\tmp\\TEST_default_spool', 'Default data dump dir (default_spool_dir/job_name/timestamp).'), 'time_stamp': ('-Y', '--time_stamp', '20150515_221741_294000', 'Timestamp (log_dir/job_name/timestamp).'), 'host_map': ('-5', '--host_map', '".\\config\\host_map_v2.py"', 'Host-to-shard map.'), 'job_name': ('-B', '--job_name', 'qc_job', 'Job name (log_dir/job_name).'), 'log_dir': ('-M', '--log_dir', 'C:\\Temp\\qc_log', 'Log destination.')}, {'from_db_name': ('-b', '--from_db_name', 'orcl', 'Oracle 12c source database.'), 'from_sub_partition': ('-S', '--from_sub_partition', 'part_15_sp1', 'From sub-partition.'), 'from_table': ('-c', '--from_table', 'SCOTT.Sub_Partitioned_test_from', 'From table.'), 'nls_timestamp_format': ('-m', '--nls_timestamp_format', '"YYYY-MM-DD-HH24.MI.SS.FF"', 'nls_timestamp_format for source.'), 'nls_date_format': ('-e', '--nls_date_format', '"YYYY-MM-DD"', 'nls_date_format for source.'), 'nls_timestamp_tz_format': ('-O', '--nls_timestamp_tz_format', '"YYYY-MM-DD-HH24:MI:SS.FF"', 'nls_timestamp_tz_format for source.'), 'from_user': ('-j', '--from_user', 'SCOTT', 'Oracle 12c source user.'), 'from_passwd': ('-x', '--from_passwd', 'tiger', 'Oracle 12c source user password.')}, {'to_db_name': ('-d', '--to_db_name', '"SAMPLE"', 'Target DB2 Advanced Workgroup Server database.'), 'target_client_home': ('-Z', '--target_client_home', '"C:\\Program Files (x86)\\IBM\\SQLLIB_01\\BIN"', 'Path to DB2 Advanced Workgroup Server client home bin dir.'), 'to_user': ('-u', '--to_user', '"ALEX_BUZ"', 'Target DB2 Advanced Workgroup Server db user.'), 'to_passwd': ('-p', '--to_passwd', '"198Morgan"', 'Target DB2 Advanced Workgroup Server db user password.'), 'to_db_server': ('-s', '--to_db_server', '"DB2"', 'Target DB2 Advanced Workgroup Server db instance name.'), 'to_table': ('-a', '--to_table', 'ALEX_BUZ.Timestamp_test_to', 'Target DB2 Advanced Workgroup Server table.')}], 'ORA12C_TimezoneTable.DBTAWS_Table': [{'field_term': ('-t', '--field_term', '"|"', 'Field terminator.'), 'num_of_shards': ('-r', '--num_of_shards', 1, 'Number of shards.'), 'pool_size': ('-o', '--pool_size', 1, 'Pool size.'), 'copy_vector': ('-w', '--copy_vector', 'ora12c-dbtaws', 'Data copy direction.'), 'keep_data_file': ('-K', '--keep_data_file', 1, 'Keep data dump.'), 'default_spool_dir': ('-F', '--default_spool_dir', 'C:\\tmp\\TEST_default_spool', 'Default data dump dir (default_spool_dir/job_name/timestamp).'), 'time_stamp': ('-Y', '--time_stamp', '20150515_221741_065000', 'Timestamp (log_dir/job_name/timestamp).'), 'host_map': ('-5', '--host_map', '".\\config\\host_map_v2.py"', 'Host-to-shard map.'), 'job_name': ('-B', '--job_name', 'qc_job', 'Job name (log_dir/job_name).'), 'log_dir': ('-M', '--log_dir', 'C:\\Temp\\qc_log', 'Log destination.')}, {'from_db_name': ('-b', '--from_db_name', 'orcl', 'Oracle 12c source database.'), 'from_table': ('-c', '--from_table', 'SCOTT.Timezone_test_from', 'From table.'), 'nls_timestamp_format': ('-m', '--nls_timestamp_format', '"YYYY-MM-DD-HH24.MI.SS.FF"', 'nls_timestamp_format for source.'), 'nls_date_format': ('-e', '--nls_date_format', '"YYYY-MM-DD"', 'nls_date_format for source.'), 'nls_timestamp_tz_format': ('-O', '--nls_timestamp_tz_format', '"YYYY-MM-DD-HH24:MI:SS.FF"', 'nls_timestamp_tz_format for source.'), 'from_user': ('-j', '--from_user', 'SCOTT', 'Oracle 12c source user.'), 'from_passwd': ('-x', '--from_passwd', 'tiger', 'Oracle 12c source user password.')}, {'to_db_name': ('-d', '--to_db_name', '"SAMPLE"', 'Target DB2 Advanced Workgroup Server database.'), 'target_client_home': ('-Z', '--target_client_home', '"C:\\Program Files (x86)\\IBM\\SQLLIB_01\\BIN"', 'Path to DB2 Advanced Workgroup Server client home bin dir.'), 'to_user': ('-u', '--to_user', '"ALEX_BUZ"', 'Target DB2 Advanced Workgroup Server db user.'), 'to_passwd': ('-p', '--to_passwd', '"198Morgan"', 'Target DB2 Advanced Workgroup Server db user password.'), 'to_db_server': ('-s', '--to_db_server', '"DB2"', 'Target DB2 Advanced Workgroup Server db instance name.'), 'to_table': ('-a', '--to_table', 'ALEX_BUZ.Timezone_test_to', 'Target DB2 Advanced Workgroup Server table.')}], 'ORA12C_Table_KeepSpoolFile.DBTAWS_Table': [{'field_term': ('-t', '--field_term', '"|"', 'Field terminator.'), 'num_of_shards': ('-r', '--num_of_shards', 1, 'Number of shards.'), 'pool_size': ('-o', '--pool_size', 1, 'Pool size.'), 'copy_vector': ('-w', '--copy_vector', 'ora12c-dbtaws', 'Data copy direction.'), 'keep_data_file': ('-K', '--keep_data_file', 1, 'Keep data dump.'), 'default_spool_dir': ('-F', '--default_spool_dir', 'C:\\tmp\\TEST_default_spool', 'Default data dump dir (default_spool_dir/job_name/timestamp).'), 'time_stamp': ('-Y', '--time_stamp', '20150515_221741_365000', 'Timestamp (log_dir/job_name/timestamp).'), 'host_map': ('-5', '--host_map', '".\\config\\host_map_v2.py"', 'Host-to-shard map.'), 'job_name': ('-B', '--job_name', 'qc_job', 'Job name (log_dir/job_name).'), 'log_dir': ('-M', '--log_dir', 'C:\\Temp\\qc_log', 'Log destination.')}, {'from_db_name': ('-b', '--from_db_name', 'orcl', 'Oracle 12c source database.'), 'from_table': ('-c', '--from_table', 'SCOTT.Timestamp_test_from', 'From table.'), 'nls_timestamp_format': ('-m', '--nls_timestamp_format', '"YYYY-MM-DD-HH24.MI.SS.FF"', 'nls_timestamp_format for source.'), 'nls_date_format': ('-e', '--nls_date_format', '"YYYY-MM-DD"', 'nls_date_format for source.'), 'nls_timestamp_tz_format': ('-O', '--nls_timestamp_tz_format', '"YYYY-MM-DD-HH24:MI:SS.FF"', 'nls_timestamp_tz_format for source.'), 'from_user': ('-j', '--from_user', 'SCOTT', 'Oracle 12c source user.'), 'from_passwd': ('-x', '--from_passwd', 'tiger', 'Oracle 12c source user password.')}, {'to_db_name': ('-d', '--to_db_name', '"SAMPLE"', 'Target DB2 Advanced Workgroup Server database.'), 'target_client_home': ('-Z', '--target_client_home', '"C:\\Program Files (x86)\\IBM\\SQLLIB_01\\BIN"', 'Path to DB2 Advanced Workgroup Server client home bin dir.'), 'to_user': ('-u', '--to_user', '"ALEX_BUZ"', 'Target DB2 Advanced Workgroup Server db user.'), 'to_passwd': ('-p', '--to_passwd', '"198Morgan"', 'Target DB2 Advanced Workgroup Server db user password.'), 'to_db_server': ('-s', '--to_db_server', '"DB2"', 'Target DB2 Advanced Workgroup Server db instance name.'), 'to_table': ('-a', '--to_table', 'ALEX_BUZ.Timestamp_test_to', 'Target DB2 Advanced Workgroup Server table.')}], 'ORA12C_Partition_KeepSpoolFile.DBTAWS_Table': [{'field_term': ('-t', '--field_term', '"|"', 'Field terminator.'), 'num_of_shards': ('-r', '--num_of_shards', 1, 'Number of shards.'), 'pool_size': ('-o', '--pool_size', 1, 'Pool size.'), 'copy_vector': ('-w', '--copy_vector', 'ora12c-dbtaws', 'Data copy direction.'), 'keep_data_file': ('-K', '--keep_data_file', 1, 'Keep data dump.'), 'default_spool_dir': ('-F', '--default_spool_dir', 'C:\\tmp\\TEST_default_spool', 'Default data dump dir (default_spool_dir/job_name/timestamp).'), 'time_stamp': ('-Y', '--time_stamp', '20150515_221740_742000', 'Timestamp (log_dir/job_name/timestamp).'), 'host_map': ('-5', '--host_map', '".\\config\\host_map_v2.py"', 'Host-to-shard map.'), 'job_name': ('-B', '--job_name', 'qc_job', 'Job name (log_dir/job_name).'), 'log_dir': ('-M', '--log_dir', 'C:\\Temp\\qc_log', 'Log destination.')}, {'from_db_name': ('-b', '--from_db_name', 'orcl', 'Oracle 12c source database.'), 'from_partition': ('-P', '--from_partition', 'part_15', 'From partition.'), 'from_table': ('-c', '--from_table', 'SCOTT.Partitioned_test_from', 'From table.'), 'nls_timestamp_format': ('-m', '--nls_timestamp_format', '"YYYY-MM-DD-HH24.MI.SS.FF"', 'nls_timestamp_format for source.'), 'nls_date_format': ('-e', '--nls_date_format', '"YYYY-MM-DD"', 'nls_date_format for source.'), 'nls_timestamp_tz_format': ('-O', '--nls_timestamp_tz_format', '"YYYY-MM-DD-HH24:MI:SS.FF"', 'nls_timestamp_tz_format for source.'), 'from_user': ('-j', '--from_user', 'SCOTT', 'Oracle 12c source user.'), 'from_passwd': ('-x', '--from_passwd', 'tiger', 'Oracle 12c source user password.')}, {'to_db_name': ('-d', '--to_db_name', '"SAMPLE"', 'Target DB2 Advanced Workgroup Server database.'), 'target_client_home': ('-Z', '--target_client_home', '"C:\\Program Files (x86)\\IBM\\SQLLIB_01\\BIN"', 'Path to DB2 Advanced Workgroup Server client home bin dir.'), 'to_user': ('-u', '--to_user', '"ALEX_BUZ"', 'Target DB2 Advanced Workgroup Server db user.'), 'to_passwd': ('-p', '--to_passwd', '"198Morgan"', 'Target DB2 Advanced Workgroup Server db user password.'), 'to_db_server': ('-s', '--to_db_server', '"DB2"', 'Target DB2 Advanced Workgroup Server db instance name.'), 'to_table': ('-a', '--to_table', 'ALEX_BUZ.Timestamp_test_to', 'Target DB2 Advanced Workgroup Server table.')}], 'ORA12C_QueryFile_trimWhitespace.DBTAWS_Table': [{'field_term': ('-t', '--field_term', '"|"', 'Field terminator.'), 'num_of_shards': ('-r', '--num_of_shards', 1, 'Number of shards.'), 'pool_size': ('-o', '--pool_size', 1, 'Pool size.'), 'copy_vector': ('-w', '--copy_vector', 'ora12c-dbtaws', 'Data copy direction.'), 'keep_data_file': ('-K', '--keep_data_file', 1, 'Keep data dump.'), 'default_spool_dir': ('-F', '--default_spool_dir', 'C:\\tmp\\TEST_default_spool', 'Default data dump dir (default_spool_dir/job_name/timestamp).'), 'time_stamp': ('-Y', '--time_stamp', '20150515_221740_838000', 'Timestamp (log_dir/job_name/timestamp).'), 'host_map': ('-5', '--host_map', '".\\config\\host_map_v2.py"', 'Host-to-shard map.'), 'job_name': ('-B', '--job_name', 'qc_job', 'Job name (log_dir/job_name).'), 'log_dir': ('-M', '--log_dir', 'C:\\Temp\\qc_log', 'Log destination.')}, {'query_sql_file': ('-q', '--query_sql_file', 'C:\\Python27\\data_migrator_1239_12c\\test\\v101\\query\\oracle_query.sql', 'Input file with Oracle 12c query sql.'), 'from_db_name': ('-b', '--from_db_name', 'orcl', 'Oracle 12c source database.'), 'nls_timestamp_format': ('-m', '--nls_timestamp_format', '"YYYY-MM-DD-HH24.MI.SS.FF"', 'nls_timestamp_format for source.'), 'nls_date_format': ('-e', '--nls_date_format', '"YYYY-MM-DD"', 'nls_date_format for source.'), 'nls_timestamp_tz_format': ('-O', '--nls_timestamp_tz_format', '"YYYY-MM-DD-HH24:MI:SS.FF"', 'nls_timestamp_tz_format for source.'), 'from_user': ('-j', '--from_user', 'SCOTT', 'Oracle 12c source user.'), 'from_passwd': ('-x', '--from_passwd', 'tiger', 'Oracle 12c source user password.')}, {'to_db_name': ('-d', '--to_db_name', '"SAMPLE"', 'Target DB2 Advanced Workgroup Server database.'), 'target_client_home': ('-Z', '--target_client_home', '"C:\\Program Files (x86)\\IBM\\SQLLIB_01\\BIN"', 'Path to DB2 Advanced Workgroup Server client home bin dir.'), 'to_user': ('-u', '--to_user', '"ALEX_BUZ"', 'Target DB2 Advanced Workgroup Server db user.'), 'to_passwd': ('-p', '--to_passwd', '"198Morgan"', 'Target DB2 Advanced Workgroup Server db user password.'), 'to_db_server': ('-s', '--to_db_server', '"DB2"', 'Target DB2 Advanced Workgroup Server db instance name.'), 'to_table': ('-a', '--to_table', 'ALEX_BUZ.Timestamp_test_to', 'Target DB2 Advanced Workgroup Server table.')}], 'ORA12C_ShardedSubpartition_Limit10.DBTAWS_Table': [{'lame_duck': ('-l', '--lame_duck', 10, 'Limit rows (lame duck run).'), 'field_term': ('-t', '--field_term', '"|"', 'Field terminator.'), 'num_of_shards': ('-r', '--num_of_shards', 3, 'Number of shards.'), 'pool_size': ('-o', '--pool_size', 3, 'Pool size.'), 'copy_vector': ('-w', '--copy_vector', 'ora12c-dbtaws', 'Data copy direction.'), 'keep_data_file': ('-K', '--keep_data_file', 1, 'Keep data dump.'), 'default_spool_dir': ('-F', '--default_spool_dir', 'C:\\tmp\\TEST_default_spool', 'Default data dump dir (default_spool_dir/job_name/timestamp).'), 'time_stamp': ('-Y', '--time_stamp', '20150515_221740_865000', 'Timestamp (log_dir/job_name/timestamp).'), 'host_map': ('-5', '--host_map', '".\\config\\host_map_v2.py"', 'Host-to-shard map.'), 'job_name': ('-B', '--job_name', 'qc_job', 'Job name (log_dir/job_name).'), 'log_dir': ('-M', '--log_dir', 'C:\\Temp\\qc_log', 'Log destination.')}, {'from_db_name': ('-b', '--from_db_name', 'orcl', 'Oracle 12c source database.'), 'from_sub_partition': ('-S', '--from_sub_partition', 'part_15_sp1', 'From sub-partition.'), 'from_table': ('-c', '--from_table', 'SCOTT.Sub_Partitioned_test_from', 'From table.'), 'nls_timestamp_format': ('-m', '--nls_timestamp_format', '"YYYY-MM-DD-HH24.MI.SS.FF"', 'nls_timestamp_format for source.'), 'nls_date_format': ('-e', '--nls_date_format', '"YYYY-MM-DD"', 'nls_date_format for source.'), 'nls_timestamp_tz_format': ('-O', '--nls_timestamp_tz_format', '"YYYY-MM-DD-HH24:MI:SS.FF"', 'nls_timestamp_tz_format for source.'), 'from_user': ('-j', '--from_user', 'SCOTT', 'Oracle 12c source user.'), 'from_passwd': ('-x', '--from_passwd', 'tiger', 'Oracle 12c source user password.')}, {'to_db_name': ('-d', '--to_db_name', '"SAMPLE"', 'Target DB2 Advanced Workgroup Server database.'), 'target_client_home': ('-Z', '--target_client_home', '"C:\\Program Files (x86)\\IBM\\SQLLIB_01\\BIN"', 'Path to DB2 Advanced Workgroup Server client home bin dir.'), 'to_user': ('-u', '--to_user', '"ALEX_BUZ"', 'Target DB2 Advanced Workgroup Server db user.'), 'to_passwd': ('-p', '--to_passwd', '"198Morgan"', 'Target DB2 Advanced Workgroup Server db user password.'), 'to_db_server': ('-s', '--to_db_server', '"DB2"', 'Target DB2 Advanced Workgroup Server db instance name.'), 'to_table': ('-a', '--to_table', 'ALEX_BUZ.Timestamp_test_to', 'Target DB2 Advanced Workgroup Server table.')}], 'ORA12C_DateTable_Email.DBTAWS_Table': [{'field_term': ('-t', '--field_term', '"|"', 'Field terminator.'), 'num_of_shards': ('-r', '--num_of_shards', 1, 'Number of shards.'), 'pool_size': ('-o', '--pool_size', 1, 'Pool size.'), 'copy_vector': ('-w', '--copy_vector', 'ora12c-dbtaws', 'Data copy direction.'), 'keep_data_file': ('-K', '--keep_data_file', 1, 'Keep data dump.'), 'default_spool_dir': ('-F', '--default_spool_dir', 'C:\\tmp\\TEST_default_spool', 'Default data dump dir (default_spool_dir/job_name/timestamp).'), 'time_stamp': ('-Y', '--time_stamp', '20150515_221741_701000', 'Timestamp (log_dir/job_name/timestamp).'), 'host_map': ('-5', '--host_map', '".\\config\\host_map_v2.py"', 'Host-to-shard map.'), 'job_name': ('-B', '--job_name', 'qc_job', 'Job name (log_dir/job_name).'), 'log_dir': ('-M', '--log_dir', 'C:\\Temp\\qc_log', 'Log destination.')}, {'from_db_name': ('-b', '--from_db_name', 'orcl', 'Oracle 12c source database.'), 'from_table': ('-c', '--from_table', 'SCOTT.Date_test_from', 'From table.'), 'nls_timestamp_format': ('-m', '--nls_timestamp_format', '"YYYY-MM-DD-HH24.MI.SS.FF"', 'nls_timestamp_format for source.'), 'nls_date_format': ('-e', '--nls_date_format', '"YYYY-MM-DD"', 'nls_date_format for source.'), 'nls_timestamp_tz_format': ('-O', '--nls_timestamp_tz_format', '"YYYY-MM-DD-HH24:MI:SS.FF"', 'nls_timestamp_tz_format for source.'), 'from_user': ('-j', '--from_user', 'SCOTT', 'Oracle 12c source user.'), 'from_passwd': ('-x', '--from_passwd', 'tiger', 'Oracle 12c source user password.')}, {'to_db_name': ('-d', '--to_db_name', '"SAMPLE"', 'Target DB2 Advanced Workgroup Server database.'), 'target_client_home': ('-Z', '--target_client_home', '"C:\\Program Files (x86)\\IBM\\SQLLIB_01\\BIN"', 'Path to DB2 Advanced Workgroup Server client home bin dir.'), 'to_user': ('-u', '--to_user', '"ALEX_BUZ"', 'Target DB2 Advanced Workgroup Server db user.'), 'to_passwd': ('-p', '--to_passwd', '"198Morgan"', 'Target DB2 Advanced Workgroup Server db user password.'), 'to_db_server': ('-s', '--to_db_server', '"DB2"', 'Target DB2 Advanced Workgroup Server db instance name.'), 'to_table': ('-a', '--to_table', 'ALEX_BUZ.Date_test_to', 'Target DB2 Advanced Workgroup Server table.')}], 'ORA12C_QueryFile_keepWhitespace.DBTAWS_Table': [{'field_term': ('-t', '--field_term', '"|"', 'Field terminator.'), 'num_of_shards': ('-r', '--num_of_shards', 1, 'Number of shards.'), 'pool_size': ('-o', '--pool_size', 1, 'Pool size.'), 'copy_vector': ('-w', '--copy_vector', 'ora12c-dbtaws', 'Data copy direction.'), 'keep_data_file': ('-K', '--keep_data_file', 1, 'Keep data dump.'), 'default_spool_dir': ('-F', '--default_spool_dir', 'C:\\tmp\\TEST_default_spool', 'Default data dump dir (default_spool_dir/job_name/timestamp).'), 'time_stamp': ('-Y', '--time_stamp', '20150515_221741_326000', 'Timestamp (log_dir/job_name/timestamp).'), 'host_map': ('-5', '--host_map', '".\\config\\host_map_v2.py"', 'Host-to-shard map.'), 'job_name': ('-B', '--job_name', 'qc_job', 'Job name (log_dir/job_name).'), 'log_dir': ('-M', '--log_dir', 'C:\\Temp\\qc_log', 'Log destination.')}, {'query_sql_file': ('-q', '--query_sql_file', 'C:\\Python27\\data_migrator_1239_12c\\test\\v101\\query\\oracle_query.sql', 'Input file with Oracle 12c query sql.'), 'from_db_name': ('-b', '--from_db_name', 'orcl', 'Oracle 12c source database.'), 'nls_timestamp_format': ('-m', '--nls_timestamp_format', '"YYYY-MM-DD-HH24.MI.SS.FF"', 'nls_timestamp_format for source.'), 'nls_date_format': ('-e', '--nls_date_format', '"YYYY-MM-DD"', 'nls_date_format for source.'), 'keep_whitespace': ('-W', '--keep_whitespace', 1, 'Keep whitespace from CHAR type in "Oracle 12c" extract.'), 'nls_timestamp_tz_format': ('-O', '--nls_timestamp_tz_format', '"YYYY-MM-DD-HH24:MI:SS.FF"', 'nls_timestamp_tz_format for source.'), 'from_user': ('-j', '--from_user', 'SCOTT', 'Oracle 12c source user.'), 'from_passwd': ('-x', '--from_passwd', 'tiger', 'Oracle 12c source user password.')}, {'to_db_name': ('-d', '--to_db_name', '"SAMPLE"', 'Target DB2 Advanced Workgroup Server database.'), 'target_client_home': ('-Z', '--target_client_home', '"C:\\Program Files (x86)\\IBM\\SQLLIB_01\\BIN"', 'Path to DB2 Advanced Workgroup Server client home bin dir.'), 'to_user': ('-u', '--to_user', '"ALEX_BUZ"', 'Target DB2 Advanced Workgroup Server db user.'), 'to_passwd': ('-p', '--to_passwd', '"198Morgan"', 'Target DB2 Advanced Workgroup Server db user password.'), 'to_db_server': ('-s', '--to_db_server', '"DB2"', 'Target DB2 Advanced Workgroup Server db instance name.'), 'to_table': ('-a', '--to_table', 'ALEX_BUZ.Timestamp_test_to', 'Target DB2 Advanced Workgroup Server table.')}], 'ORA12C_Partition_NoClient.DBTAWS_Table': [{'field_term': ('-t', '--field_term', '"|"', 'Field terminator.'), 'num_of_shards': ('-r', '--num_of_shards', 1, 'Number of shards.'), 'pool_size': ('-o', '--pool_size', 1, 'Pool size.'), 'copy_vector': ('-w', '--copy_vector', 'ora12c-dbtaws', 'Data copy direction.'), 'keep_data_file': ('-K', '--keep_data_file', 1, 'Keep data dump.'), 'default_spool_dir': ('-F', '--default_spool_dir', 'C:\\tmp\\TEST_default_spool', 'Default data dump dir (default_spool_dir/job_name/timestamp).'), 'time_stamp': ('-Y', '--time_stamp', '20150515_221740_339000', 'Timestamp (log_dir/job_name/timestamp).'), 'host_map': ('-5', '--host_map', '".\\config\\host_map_v2.py"', 'Host-to-shard map.'), 'job_name': ('-B', '--job_name', 'qc_job', 'Job name (log_dir/job_name).'), 'log_dir': ('-M', '--log_dir', 'C:\\Temp\\qc_log', 'Log destination.')}, {'from_db_name': ('-b', '--from_db_name', "'(DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=localhost)(PORT=1521))(CONNECT_DATA=(SERVER=DEDICATED)(SERVICE_NAME=orcl)))'", 'Oracle 12c source database.'), 'from_partition': ('-P', '--from_partition', 'part_15', 'From partition.'), 'from_table': ('-c', '--from_table', 'SCOTT.Partitioned_test_from', 'From table.'), 'nls_timestamp_format': ('-m', '--nls_timestamp_format', '"YYYY-MM-DD-HH24.MI.SS.FF"', 'nls_timestamp_format for source.'), 'nls_date_format': ('-e', '--nls_date_format', '"YYYY-MM-DD"', 'nls_date_format for source.'), 'nls_timestamp_tz_format': ('-O', '--nls_timestamp_tz_format', '"YYYY-MM-DD-HH24:MI:SS.FF"', 'nls_timestamp_tz_format for source.'), 'from_user': ('-j', '--from_user', 'SCOTT', 'Oracle 12c source user.'), 'from_passwd': ('-x', '--from_passwd', 'tiger', 'Oracle 12c source user password.')}, {'to_db_name': ('-d', '--to_db_name', '"SAMPLE"', 'Target DB2 Advanced Workgroup Server database.'), 'target_client_home': ('-Z', '--target_client_home', '"C:\\Program Files (x86)\\IBM\\SQLLIB_01\\BIN"', 'Path to DB2 Advanced Workgroup Server client home bin dir.'), 'to_user': ('-u', '--to_user', '"ALEX_BUZ"', 'Target DB2 Advanced Workgroup Server db user.'), 'to_passwd': ('-p', '--to_passwd', '"198Morgan"', 'Target DB2 Advanced Workgroup Server db user password.'), 'to_db_server': ('-s', '--to_db_server', '"DB2"', 'Target DB2 Advanced Workgroup Server db instance name.'), 'to_table': ('-a', '--to_table', 'ALEX_BUZ.Timestamp_test_to', 'Target DB2 Advanced Workgroup Server table.')}], 'ORA12C_Partition_trimWhitespace.DBTAWS_Table': [{'field_term': ('-t', '--field_term', '"|"', 'Field terminator.'), 'num_of_shards': ('-r', '--num_of_shards', 1, 'Number of shards.'), 'pool_size': ('-o', '--pool_size', 1, 'Pool size.'), 'copy_vector': ('-w', '--copy_vector', 'ora12c-dbtaws', 'Data copy direction.'), 'keep_data_file': ('-K', '--keep_data_file', 1, 'Keep data dump.'), 'default_spool_dir': ('-F', '--default_spool_dir', 'C:\\tmp\\TEST_default_spool', 'Default data dump dir (default_spool_dir/job_name/timestamp).'), 'time_stamp': ('-Y', '--time_stamp', '20150515_221740_375000', 'Timestamp (log_dir/job_name/timestamp).'), 'host_map': ('-5', '--host_map', '".\\config\\host_map_v2.py"', 'Host-to-shard map.'), 'job_name': ('-B', '--job_name', 'qc_job', 'Job name (log_dir/job_name).'), 'log_dir': ('-M', '--log_dir', 'C:\\Temp\\qc_log', 'Log destination.')}, {'from_db_name': ('-b', '--from_db_name', 'orcl', 'Oracle 12c source database.'), 'from_partition': ('-P', '--from_partition', 'part_15', 'From partition.'), 'from_table': ('-c', '--from_table', 'SCOTT.Partitioned_test_from', 'From table.'), 'nls_timestamp_format': ('-m', '--nls_timestamp_format', '"YYYY-MM-DD-HH24.MI.SS.FF"', 'nls_timestamp_format for source.'), 'nls_date_format': ('-e', '--nls_date_format', '"YYYY-MM-DD"', 'nls_date_format for source.'), 'nls_timestamp_tz_format': ('-O', '--nls_timestamp_tz_format', '"YYYY-MM-DD-HH24:MI:SS.FF"', 'nls_timestamp_tz_format for source.'), 'from_user': ('-j', '--from_user', 'SCOTT', 'Oracle 12c source user.'), 'from_passwd': ('-x', '--from_passwd', 'tiger', 'Oracle 12c source user password.')}, {'to_db_name': ('-d', '--to_db_name', '"SAMPLE"', 'Target DB2 Advanced Workgroup Server database.'), 'target_client_home': ('-Z', '--target_client_home', '"C:\\Program Files (x86)\\IBM\\SQLLIB_01\\BIN"', 'Path to DB2 Advanced Workgroup Server client home bin dir.'), 'to_user': ('-u', '--to_user', '"ALEX_BUZ"', 'Target DB2 Advanced Workgroup Server db user.'), 'to_passwd': ('-p', '--to_passwd', '"198Morgan"', 'Target DB2 Advanced Workgroup Server db user password.'), 'to_db_server': ('-s', '--to_db_server', '"DB2"', 'Target DB2 Advanced Workgroup Server db instance name.'), 'to_table': ('-a', '--to_table', 'ALEX_BUZ.Timestamp_test_to', 'Target DB2 Advanced Workgroup Server table.')}], 'ORA12C_Subpartition_KeepSpoolFile.DBTAWS_Table': [{'field_term': ('-t', '--field_term', '"|"', 'Field terminator.'), 'num_of_shards': ('-r', '--num_of_shards', 1, 'Number of shards.'), 'pool_size': ('-o', '--pool_size', 1, 'Pool size.'), 'copy_vector': ('-w', '--copy_vector', 'ora12c-dbtaws', 'Data copy direction.'), 'keep_data_file': ('-K', '--keep_data_file', 1, 'Keep data dump.'), 'default_spool_dir': ('-F', '--default_spool_dir', 'C:\\tmp\\TEST_default_spool', 'Default data dump dir (default_spool_dir/job_name/timestamp).'), 'time_stamp': ('-Y', '--time_stamp', '20150515_221740_806000', 'Timestamp (log_dir/job_name/timestamp).'), 'host_map': ('-5', '--host_map', '".\\config\\host_map_v2.py"', 'Host-to-shard map.'), 'job_name': ('-B', '--job_name', 'qc_job', 'Job name (log_dir/job_name).'), 'log_dir': ('-M', '--log_dir', 'C:\\Temp\\qc_log', 'Log destination.')}, {'from_db_name': ('-b', '--from_db_name', 'orcl', 'Oracle 12c source database.'), 'from_sub_partition': ('-S', '--from_sub_partition', 'part_15_sp1', 'From sub-partition.'), 'from_table': ('-c', '--from_table', 'SCOTT.Sub_Partitioned_test_from', 'From table.'), 'nls_timestamp_format': ('-m', '--nls_timestamp_format', '"YYYY-MM-DD-HH24.MI.SS.FF"', 'nls_timestamp_format for source.'), 'nls_date_format': ('-e', '--nls_date_format', '"YYYY-MM-DD"', 'nls_date_format for source.'), 'nls_timestamp_tz_format': ('-O', '--nls_timestamp_tz_format', '"YYYY-MM-DD-HH24:MI:SS.FF"', 'nls_timestamp_tz_format for source.'), 'from_user': ('-j', '--from_user', 'SCOTT', 'Oracle 12c source user.'), 'from_passwd': ('-x', '--from_passwd', 'tiger', 'Oracle 12c source user password.')}, {'to_db_name': ('-d', '--to_db_name', '"SAMPLE"', 'Target DB2 Advanced Workgroup Server database.'), 'target_client_home': ('-Z', '--target_client_home', '"C:\\Program Files (x86)\\IBM\\SQLLIB_01\\BIN"', 'Path to DB2 Advanced Workgroup Server client home bin dir.'), 'to_user': ('-u', '--to_user', '"ALEX_BUZ"', 'Target DB2 Advanced Workgroup Server db user.'), 'to_passwd': ('-p', '--to_passwd', '"198Morgan"', 'Target DB2 Advanced Workgroup Server db user password.'), 'to_db_server': ('-s', '--to_db_server', '"DB2"', 'Target DB2 Advanced Workgroup Server db instance name.'), 'to_table': ('-a', '--to_table', 'ALEX_BUZ.Timestamp_test_to', 'Target DB2 Advanced Workgroup Server table.')}], 'ORA12C_Subpartition_Validate.DBTAWS_Table': [{'field_term': ('-t', '--field_term', '"|"', 'Field terminator.'), 'host_map': ('-5', '--host_map', '".\\config\\host_map_v2.py"', 'Host-to-shard map.'), 'num_of_shards': ('-r', '--num_of_shards', 1, 'Number of shards.'), 'pool_size': ('-o', '--pool_size', 1, 'Pool size.'), 'copy_vector': ('-w', '--copy_vector', 'ora12c-dbtaws', 'Data copy direction.'), 'keep_data_file': ('-K', '--keep_data_file', 1, 'Keep data dump.'), 'default_spool_dir': ('-F', '--default_spool_dir', 'C:\\tmp\\TEST_default_spool', 'Default data dump dir (default_spool_dir/job_name/timestamp).'), 'time_stamp': ('-Y', '--time_stamp', '20150515_221741_438000', 'Timestamp (log_dir/job_name/timestamp).'), 'validate': ('-V', '--validate', 1, 'Check if source and target objects exist.'), 'job_name': ('-B', '--job_name', 'qc_job', 'Job name (log_dir/job_name).'), 'log_dir': ('-M', '--log_dir', 'C:\\Temp\\qc_log', 'Log destination.')}, {'from_db_name': ('-b', '--from_db_name', 'orcl', 'Oracle 12c source database.'), 'from_sub_partition': ('-S', '--from_sub_partition', 'part_15_sp1', 'From sub-partition.'), 'from_table': ('-c', '--from_table', 'SCOTT.Sub_Partitioned_test_from', 'From table.'), 'nls_timestamp_format': ('-m', '--nls_timestamp_format', '"YYYY-MM-DD-HH24.MI.SS.FF"', 'nls_timestamp_format for source.'), 'nls_date_format': ('-e', '--nls_date_format', '"YYYY-MM-DD"', 'nls_date_format for source.'), 'nls_timestamp_tz_format': ('-O', '--nls_timestamp_tz_format', '"YYYY-MM-DD-HH24:MI:SS.FF"', 'nls_timestamp_tz_format for source.'), 'from_user': ('-j', '--from_user', 'SCOTT', 'Oracle 12c source user.'), 'from_passwd': ('-x', '--from_passwd', 'tiger', 'Oracle 12c source user password.')}, {'to_db_name': ('-d', '--to_db_name', '"SAMPLE"', 'Target DB2 Advanced Workgroup Server database.'), 'target_client_home': ('-Z', '--target_client_home', '"C:\\Program Files (x86)\\IBM\\SQLLIB_01\\BIN"', 'Path to DB2 Advanced Workgroup Server client home bin dir.'), 'to_user': ('-u', '--to_user', '"ALEX_BUZ"', 'Target DB2 Advanced Workgroup Server db user.'), 'to_passwd': ('-p', '--to_passwd', '"198Morgan"', 'Target DB2 Advanced Workgroup Server db user password.'), 'to_db_server': ('-s', '--to_db_server', '"DB2"', 'Target DB2 Advanced Workgroup Server db instance name.'), 'to_table': ('-a', '--to_table', 'ALEX_BUZ.Timestamp_test_to', 'Target DB2 Advanced Workgroup Server table.')}], 'ORA12C_ShardedPartition_Limit10.DBTAWS_Table': [{'lame_duck': ('-l', '--lame_duck', 10, 'Limit rows (lame duck run).'), 'field_term': ('-t', '--field_term', '"|"', 'Field terminator.'), 'num_of_shards': ('-r', '--num_of_shards', 3, 'Number of shards.'), 'pool_size': ('-o', '--pool_size', 3, 'Pool size.'), 'copy_vector': ('-w', '--copy_vector', 'ora12c-dbtaws', 'Data copy direction.'), 'keep_data_file': ('-K', '--keep_data_file', 1, 'Keep data dump.'), 'default_spool_dir': ('-F', '--default_spool_dir', 'C:\\tmp\\TEST_default_spool', 'Default data dump dir (default_spool_dir/job_name/timestamp).'), 'time_stamp': ('-Y', '--time_stamp', '20150515_221741_400000', 'Timestamp (log_dir/job_name/timestamp).'), 'host_map': ('-5', '--host_map', '".\\config\\host_map_v2.py"', 'Host-to-shard map.'), 'job_name': ('-B', '--job_name', 'qc_job', 'Job name (log_dir/job_name).'), 'log_dir': ('-M', '--log_dir', 'C:\\Temp\\qc_log', 'Log destination.')}, {'from_db_name': ('-b', '--from_db_name', 'orcl', 'Oracle 12c source database.'), 'from_partition': ('-P', '--from_partition', 'part_15', 'From partition.'), 'from_table': ('-c', '--from_table', 'SCOTT.Partitioned_test_from', 'From table.'), 'nls_timestamp_format': ('-m', '--nls_timestamp_format', '"YYYY-MM-DD-HH24.MI.SS.FF"', 'nls_timestamp_format for source.'), 'nls_date_format': ('-e', '--nls_date_format', '"YYYY-MM-DD"', 'nls_date_format for source.'), 'nls_timestamp_tz_format': ('-O', '--nls_timestamp_tz_format', '"YYYY-MM-DD-HH24:MI:SS.FF"', 'nls_timestamp_tz_format for source.'), 'from_user': ('-j', '--from_user', 'SCOTT', 'Oracle 12c source user.'), 'from_passwd': ('-x', '--from_passwd', 'tiger', 'Oracle 12c source user password.')}, {'to_db_name': ('-d', '--to_db_name', '"SAMPLE"', 'Target DB2 Advanced Workgroup Server database.'), 'target_client_home': ('-Z', '--target_client_home', '"C:\\Program Files (x86)\\IBM\\SQLLIB_01\\BIN"', 'Path to DB2 Advanced Workgroup Server client home bin dir.'), 'to_user': ('-u', '--to_user', '"ALEX_BUZ"', 'Target DB2 Advanced Workgroup Server db user.'), 'to_passwd': ('-p', '--to_passwd', '"198Morgan"', 'Target DB2 Advanced Workgroup Server db user password.'), 'to_db_server': ('-s', '--to_db_server', '"DB2"', 'Target DB2 Advanced Workgroup Server db instance name.'), 'to_table': ('-a', '--to_table', 'ALEX_BUZ.Timestamp_test_to', 'Target DB2 Advanced Workgroup Server table.')}], 'ORA12C_QueryDir_WithWideRows.DBTAWS_Table': [{'field_term': ('-t', '--field_term', '"|"', 'Field terminator.'), 'num_of_shards': ('-r', '--num_of_shards', 1, 'Number of shards.'), 'pool_size': ('-o', '--pool_size', 1, 'Pool size.'), 'column_buckets': ('-0', '--column_buckets', 2, 'Wide row support.'), 'copy_vector': ('-w', '--copy_vector', 'ora12c-dbtaws', 'Data copy direction.'), 'keep_data_file': ('-K', '--keep_data_file', 1, 'Keep data dump.'), 'default_spool_dir': ('-F', '--default_spool_dir', 'C:\\tmp\\TEST_default_spool', 'Default data dump dir (default_spool_dir/job_name/timestamp).'), 'time_stamp': ('-Y', '--time_stamp', '20150515_221740_710000', 'Timestamp (log_dir/job_name/timestamp).'), 'host_map': ('-5', '--host_map', '".\\config\\host_map_v2.py"', 'Host-to-shard map.'), 'job_name': ('-B', '--job_name', 'qc_job', 'Job name (log_dir/job_name).'), 'log_dir': ('-M', '--log_dir', 'C:\\Temp\\qc_log', 'Log destination.')}, {'from_db_name': ('-b', '--from_db_name', 'orcl', 'Oracle 12c source database.'), 'nls_timestamp_format': ('-m', '--nls_timestamp_format', '"YYYY-MM-DD-HH24.MI.SS.FF"', 'nls_timestamp_format for source.'), 'nls_date_format': ('-e', '--nls_date_format', '"YYYY-MM-DD"', 'nls_date_format for source.'), 'nls_timestamp_tz_format': ('-O', '--nls_timestamp_tz_format', '"YYYY-MM-DD-HH24:MI:SS.FF"', 'nls_timestamp_tz_format for source.'), 'from_user': ('-j', '--from_user', 'SCOTT', 'Oracle 12c source user.'), 'from_passwd': ('-x', '--from_passwd', 'tiger', 'Oracle 12c source user password.'), 'query_sql_dir': ('-Q', '--query_sql_dir', 'C:\\Python27\\data_migrator_1239_12c\\test\\v101\\query\\query_dir_ora', 'Input dir with Oracle 12c query files sql.')}, {'to_db_name': ('-d', '--to_db_name', '"SAMPLE"', 'Target DB2 Advanced Workgroup Server database.'), 'target_client_home': ('-Z', '--target_client_home', '"C:\\Program Files (x86)\\IBM\\SQLLIB_01\\BIN"', 'Path to DB2 Advanced Workgroup Server client home bin dir.'), 'to_user': ('-u', '--to_user', '"ALEX_BUZ"', 'Target DB2 Advanced Workgroup Server db user.'), 'to_passwd': ('-p', '--to_passwd', '"198Morgan"', 'Target DB2 Advanced Workgroup Server db user password.'), 'to_db_server': ('-s', '--to_db_server', '"DB2"', 'Target DB2 Advanced Workgroup Server db instance name.'), 'to_table': ('-a', '--to_table', 'ALEX_BUZ.Timestamp_test_to', 'Target DB2 Advanced Workgroup Server table.')}], 'ORA12C_QueryFile_TableNamedFile.DBTAWS_Table': [{'field_term': ('-t', '--field_term', '"|"', 'Field terminator.'), 'num_of_shards': ('-r', '--num_of_shards', 1, 'Number of shards.'), 'pool_size': ('-o', '--pool_size', 1, 'Pool size.'), 'copy_vector': ('-w', '--copy_vector', 'ora12c-dbtaws', 'Data copy direction.'), 'keep_data_file': ('-K', '--keep_data_file', 1, 'Keep data dump.'), 'default_spool_dir': ('-F', '--default_spool_dir', 'C:\\tmp\\TEST_default_spool', 'Default data dump dir (default_spool_dir/job_name/timestamp).'), 'time_stamp': ('-Y', '--time_stamp', '20150515_221740_901000', 'Timestamp (log_dir/job_name/timestamp).'), 'host_map': ('-5', '--host_map', '".\\config\\host_map_v2.py"', 'Host-to-shard map.'), 'job_name': ('-B', '--job_name', 'qc_job', 'Job name (log_dir/job_name).'), 'log_dir': ('-M', '--log_dir', 'C:\\Temp\\qc_log', 'Log destination.')}, {'query_sql_file': ('-q', '--query_sql_file', '"C:\\Python27\\data_migrator_1239_12c\\test\\v101\\query\\SCOTT.TIMESTAMP_TEST_TO.0.sql"', 'Input file with Oracle 12c query sql.'), 'from_db_name': ('-b', '--from_db_name', 'orcl', 'Oracle 12c source database.'), 'nls_timestamp_format': ('-m', '--nls_timestamp_format', '"YYYY-MM-DD-HH24.MI.SS.FF"', 'nls_timestamp_format for source.'), 'nls_date_format': ('-e', '--nls_date_format', '"YYYY-MM-DD"', 'nls_date_format for source.'), 'nls_timestamp_tz_format': ('-O', '--nls_timestamp_tz_format', '"YYYY-MM-DD-HH24:MI:SS.FF"', 'nls_timestamp_tz_format for source.'), 'from_user': ('-j', '--from_user', 'SCOTT', 'Oracle 12c source user.'), 'from_passwd': ('-x', '--from_passwd', 'tiger', 'Oracle 12c source user password.')}, {'to_db_name': ('-d', '--to_db_name', '"SAMPLE"', 'Target DB2 Advanced Workgroup Server database.'), 'target_client_home': ('-Z', '--target_client_home', '"C:\\Program Files (x86)\\IBM\\SQLLIB_01\\BIN"', 'Path to DB2 Advanced Workgroup Server client home bin dir.'), 'to_user': ('-u', '--to_user', '"ALEX_BUZ"', 'Target DB2 Advanced Workgroup Server db user.'), 'to_passwd': ('-p', '--to_passwd', '"198Morgan"', 'Target DB2 Advanced Workgroup Server db user password.'), 'to_db_server': ('-s', '--to_db_server', '"DB2"', 'Target DB2 Advanced Workgroup Server db instance name.'), 'to_table': ('-a', '--to_table', 'ALEX_BUZ.Timestamp_test_to', 'Target DB2 Advanced Workgroup Server table.')}], 'ORA12C_TimestampTable_trimWhitespace.DBTAWS_Table': [{'field_term': ('-t', '--field_term', '"|"', 'Field terminator.'), 'num_of_shards': ('-r', '--num_of_shards', 1, 'Number of shards.'), 'pool_size': ('-o', '--pool_size', 1, 'Pool size.'), 'copy_vector': ('-w', '--copy_vector', 'ora12c-dbtaws', 'Data copy direction.'), 'keep_data_file': ('-K', '--keep_data_file', 1, 'Keep data dump.'), 'default_spool_dir': ('-F', '--default_spool_dir', 'C:\\tmp\\TEST_default_spool', 'Default data dump dir (default_spool_dir/job_name/timestamp).'), 'time_stamp': ('-Y', '--time_stamp', '20150515_221740_938000', 'Timestamp (log_dir/job_name/timestamp).'), 'host_map': ('-5', '--host_map', '".\\config\\host_map_v2.py"', 'Host-to-shard map.'), 'job_name': ('-B', '--job_name', 'qc_job', 'Job name (log_dir/job_name).'), 'log_dir': ('-M', '--log_dir', 'C:\\Temp\\qc_log', 'Log destination.')}, {'from_db_name': ('-b', '--from_db_name', 'orcl', 'Oracle 12c source database.'), 'from_table': ('-c', '--from_table', 'SCOTT.Timestamp_test_from', 'From table.'), 'nls_timestamp_format': ('-m', '--nls_timestamp_format', '"YYYY-MM-DD-HH24.MI.SS.FF"', 'nls_timestamp_format for source.'), 'nls_date_format': ('-e', '--nls_date_format', '"YYYY-MM-DD"', 'nls_date_format for source.'), 'nls_timestamp_tz_format': ('-O', '--nls_timestamp_tz_format', '"YYYY-MM-DD-HH24:MI:SS.FF"', 'nls_timestamp_tz_format for source.'), 'from_user': ('-j', '--from_user', 'SCOTT', 'Oracle 12c source user.'), 'from_passwd': ('-x', '--from_passwd', 'tiger', 'Oracle 12c source user password.')}, {'to_db_name': ('-d', '--to_db_name', '"SAMPLE"', 'Target DB2 Advanced Workgroup Server database.'), 'target_client_home': ('-Z', '--target_client_home', '"C:\\Program Files (x86)\\IBM\\SQLLIB_01\\BIN"', 'Path to DB2 Advanced Workgroup Server client home bin dir.'), 'to_user': ('-u', '--to_user', '"ALEX_BUZ"', 'Target DB2 Advanced Workgroup Server db user.'), 'to_passwd': ('-p', '--to_passwd', '"198Morgan"', 'Target DB2 Advanced Workgroup Server db user password.'), 'to_db_server': ('-s', '--to_db_server', '"DB2"', 'Target DB2 Advanced Workgroup Server db instance name.'), 'to_table': ('-a', '--to_table', 'ALEX_BUZ.Timestamp_test_to', 'Target DB2 Advanced Workgroup Server table.')}], 'ORA12C_TimestampTable.DBTAWS_Table': [{'field_term': ('-t', '--field_term', '"|"', 'Field terminator.'), 'num_of_shards': ('-r', '--num_of_shards', 1, 'Number of shards.'), 'pool_size': ('-o', '--pool_size', 1, 'Pool size.'), 'copy_vector': ('-w', '--copy_vector', 'ora12c-dbtaws', 'Data copy direction.'), 'keep_data_file': ('-K', '--keep_data_file', 1, 'Keep data dump.'), 'default_spool_dir': ('-F', '--default_spool_dir', 'C:\\tmp\\TEST_default_spool', 'Default data dump dir (default_spool_dir/job_name/timestamp).'), 'time_stamp': ('-Y', '--time_stamp', '20150515_221740_605000', 'Timestamp (log_dir/job_name/timestamp).'), 'host_map': ('-5', '--host_map', '".\\config\\host_map_v2.py"', 'Host-to-shard map.'), 'job_name': ('-B', '--job_name', 'qc_job', 'Job name (log_dir/job_name).'), 'log_dir': ('-M', '--log_dir', 'C:\\Temp\\qc_log', 'Log destination.')}, {'from_db_name': ('-b', '--from_db_name', 'orcl', 'Oracle 12c source database.'), 'from_table': ('-c', '--from_table', 'SCOTT.Timestamp_test_from', 'From table.'), 'nls_timestamp_format': ('-m', '--nls_timestamp_format', '"YYYY-MM-DD-HH24.MI.SS.FF"', 'nls_timestamp_format for source.'), 'nls_date_format': ('-e', '--nls_date_format', '"YYYY-MM-DD"', 'nls_date_format for source.'), 'nls_timestamp_tz_format': ('-O', '--nls_timestamp_tz_format', '"YYYY-MM-DD-HH24:MI:SS.FF"', 'nls_timestamp_tz_format for source.'), 'from_user': ('-j', '--from_user', 'SCOTT', 'Oracle 12c source user.'), 'from_passwd': ('-x', '--from_passwd', 'tiger', 'Oracle 12c source user password.')}, {'to_db_name': ('-d', '--to_db_name', '"SAMPLE"', 'Target DB2 Advanced Workgroup Server database.'), 'target_client_home': ('-Z', '--target_client_home', '"C:\\Program Files (x86)\\IBM\\SQLLIB_01\\BIN"', 'Path to DB2 Advanced Workgroup Server client home bin dir.'), 'to_user': ('-u', '--to_user', '"ALEX_BUZ"', 'Target DB2 Advanced Workgroup Server db user.'), 'to_passwd': ('-p', '--to_passwd', '"198Morgan"', 'Target DB2 Advanced Workgroup Server db user password.'), 'to_db_server': ('-s', '--to_db_server', '"DB2"', 'Target DB2 Advanced Workgroup Server db instance name.'), 'to_table': ('-a', '--to_table', 'ALEX_BUZ.Timestamp_test_to', 'Target DB2 Advanced Workgroup Server table.')}], 'ORA12C_QueryDir_trimWhitespace.DBTAWS_Table': [{'field_term': ('-t', '--field_term', '"|"', 'Field terminator.'), 'num_of_shards': ('-r', '--num_of_shards', 1, 'Number of shards.'), 'pool_size': ('-o', '--pool_size', 1, 'Pool size.'), 'copy_vector': ('-w', '--copy_vector', 'ora12c-dbtaws', 'Data copy direction.'), 'keep_data_file': ('-K', '--keep_data_file', 1, 'Keep data dump.'), 'default_spool_dir': ('-F', '--default_spool_dir', 'C:\\tmp\\TEST_default_spool', 'Default data dump dir (default_spool_dir/job_name/timestamp).'), 'time_stamp': ('-Y', '--time_stamp', '20150515_221741_002000', 'Timestamp (log_dir/job_name/timestamp).'), 'host_map': ('-5', '--host_map', '".\\config\\host_map_v2.py"', 'Host-to-shard map.'), 'job_name': ('-B', '--job_name', 'qc_job', 'Job name (log_dir/job_name).'), 'log_dir': ('-M', '--log_dir', 'C:\\Temp\\qc_log', 'Log destination.')}, {'from_db_name': ('-b', '--from_db_name', 'orcl', 'Oracle 12c source database.'), 'nls_timestamp_format': ('-m', '--nls_timestamp_format', '"YYYY-MM-DD-HH24.MI.SS.FF"', 'nls_timestamp_format for source.'), 'nls_date_format': ('-e', '--nls_date_format', '"YYYY-MM-DD"', 'nls_date_format for source.'), 'nls_timestamp_tz_format': ('-O', '--nls_timestamp_tz_format', '"YYYY-MM-DD-HH24:MI:SS.FF"', 'nls_timestamp_tz_format for source.'), 'from_user': ('-j', '--from_user', 'SCOTT', 'Oracle 12c source user.'), 'from_passwd': ('-x', '--from_passwd', 'tiger', 'Oracle 12c source user password.'), 'query_sql_dir': ('-Q', '--query_sql_dir', 'C:\\Python27\\data_migrator_1239_12c\\test\\v101\\query\\query_dir_ora', 'Input dir with Oracle 12c query files sql.')}, {'to_db_name': ('-d', '--to_db_name', '"SAMPLE"', 'Target DB2 Advanced Workgroup Server database.'), 'target_client_home': ('-Z', '--target_client_home', '"C:\\Program Files (x86)\\IBM\\SQLLIB_01\\BIN"', 'Path to DB2 Advanced Workgroup Server client home bin dir.'), 'to_user': ('-u', '--to_user', '"ALEX_BUZ"', 'Target DB2 Advanced Workgroup Server db user.'), 'to_passwd': ('-p', '--to_passwd', '"198Morgan"', 'Target DB2 Advanced Workgroup Server db user password.'), 'to_db_server': ('-s', '--to_db_server', '"DB2"', 'Target DB2 Advanced Workgroup Server db instance name.'), 'to_table': ('-a', '--to_table', 'ALEX_BUZ.Timestamp_test_to', 'Target DB2 Advanced Workgroup Server table.')}], 'default': [{'ask_to_truncate': ['-E', '--ask_to_truncate', '', 'Ask to truncate.'], 'shard_pre_etl': ['-2', '--shard_pre_etl', '', 'Path to shard level pre-ETL Python script.'], 'keep_data_file': ['-K', '--keep_data_file', '', 'Keep data dump.'], 'default_spool_dir': ['-F', '--default_spool_dir', '', 'Default data dump dir (default_spool_dir/job_name/timestamp).'], 'arg_6': ['-6', '--arg_6', '', 'Generic string argument 1.'], 'lame_duck': ['-l', '--lame_duck', '', 'Limit rows (lame duck run).'], 'copy_vector': ['-w', '--copy_vector', '', 'Data copy direction.'], 'log_dir': ['-M', '--log_dir', '', 'Log destination.'], 'time_stamp': ['-Y', '--time_stamp', '', 'Timestamp (log_dir/job_name/timestamp).'], 'job_name': ['-B', '--job_name', '', 'Job name (log_dir/job_name).'], 'job_pre_etl': ['-1', '--job_pre_etl', '', 'Path to job level pre-ETL Python script.'], 'num_of_shards': ['-r', '--num_of_shards', '', 'Number of shards.'], 'loader_profile': ['-C', '--loader_profile', '', 'SQL*Loader profile (user defined).'], 'email_to': ['-L', '--email_to', '', 'Email job status.'], 'host_map': ['-5', '--host_map', '', 'Host-to-shard map.'], 'arg_8': ['-8', '--arg_8', '', 'Generic string argument 3.'], 'validate': ['-V', '--validate', '', 'Check if source and target objects exist.'], 'arg_7': ['-7', '--arg_7', '', 'Generic string argument 2.'], 'field_term': ['-t', '--field_term', '', 'Field terminator.'], 'pool_size': ['-o', '--pool_size', '', 'Pool size.'], 'column_buckets': ['-0', '--column_buckets', '', 'Wide row support.'], 'job_post_etl': ['-3', '--job_post_etl', '', 'Jobs post-etl script.'], 'truncate_target': ['-U', '--truncate_target', '', 'Truncate target table/partition/subpartition.'], 'shard_post_etl': ['-4', '--shard_post_etl', '', 'Shards post-etl script.'], 'key_on_exit': ['-X', '--key_on_exit', '', 'Ask for an "Enter" key upon exit.']}, {'query_sql_file': ['-q', '--query_sql_file', '', 'Input file with Oracle 12c query sql.'], 'from_db_name': ['-b', '--from_db_name', '', 'Oracle 12c source database.'], 'from_partition': ['-P', '--from_partition', '', 'From partition.'], 'from_sub_partition': ['-S', '--from_sub_partition', '', 'From sub-partition.'], 'header': ['-A', '--header', '', 'Include header to Oracle 12c extract.'], 'from_table': ['-c', '--from_table', '', 'From table.'], 'nls_timestamp_format': ['-m', '--nls_timestamp_format', '', 'nls_timestamp_format for source.'], 'nls_date_format': ['-e', '--nls_date_format', '', 'nls_date_format for source.'], 'keep_whitespace': ['-W', '--keep_whitespace', '', 'Keep whitespace from CHAR type in "Oracle 12c" extract.'], 'nls_timestamp_tz_format': ['-O', '--nls_timestamp_tz_format', '', 'nls_timestamp_tz_format for source.'], 'from_user': ['-j', '--from_user', '', 'Oracle 12c source user.'], 'from_passwd': ['-x', '--from_passwd', '', 'Oracle 12c source user password.'], 'query_sql_dir': ['-Q', '--query_sql_dir', '', 'Input dir with Oracle 12c query files sql.']}, {'to_db_name': ['-d', '--to_db_name', '', 'Target DB2 Advanced Workgroup Server database.'], 'target_client_home': ['-Z', '--target_client_home', '', 'Path to DB2 Advanced Workgroup Server client home bin dir.'], 'skip_rows': ['-k', '--skip_rows', '', 'Header size. Number of rows to skip in input file.'], 'to_user': ['-u', '--to_user', '', 'Target DB2 Advanced Workgroup Server db user.'], 'to_passwd': ['-p', '--to_passwd', '', 'Target DB2 Advanced Workgroup Server db user password.'], 'to_db_server': ['-s', '--to_db_server', '', 'Target DB2 Advanced Workgroup Server db instance name.'], 'to_table': ['-a', '--to_table', '', 'Target DB2 Advanced Workgroup Server table.']}], 'ORA12C_QueryDir_keepWhitespace.DBTAWS_Table': [{'field_term': ('-t', '--field_term', '"|"', 'Field terminator.'), 'num_of_shards': ('-r', '--num_of_shards', 1, 'Number of shards.'), 'pool_size': ('-o', '--pool_size', 1, 'Pool size.'), 'copy_vector': ('-w', '--copy_vector', 'ora12c-dbtaws', 'Data copy direction.'), 'keep_data_file': ('-K', '--keep_data_file', 1, 'Keep data dump.'), 'default_spool_dir': ('-F', '--default_spool_dir', 'C:\\tmp\\TEST_default_spool', 'Default data dump dir (default_spool_dir/job_name/timestamp).'), 'time_stamp': ('-Y', '--time_stamp', '20150515_221741_099000', 'Timestamp (log_dir/job_name/timestamp).'), 'host_map': ('-5', '--host_map', '".\\config\\host_map_v2.py"', 'Host-to-shard map.'), 'job_name': ('-B', '--job_name', 'qc_job', 'Job name (log_dir/job_name).'), 'log_dir': ('-M', '--log_dir', 'C:\\Temp\\qc_log', 'Log destination.')}, {'from_db_name': ('-b', '--from_db_name', 'orcl', 'Oracle 12c source database.'), 'nls_timestamp_format': ('-m', '--nls_timestamp_format', '"YYYY-MM-DD-HH24.MI.SS.FF"', 'nls_timestamp_format for source.'), 'nls_date_format': ('-e', '--nls_date_format', '"YYYY-MM-DD"', 'nls_date_format for source.'), 'keep_whitespace': ('-W', '--keep_whitespace', 1, 'Keep whitespace from CHAR type in "Oracle 12c" extract.'), 'nls_timestamp_tz_format': ('-O', '--nls_timestamp_tz_format', '"YYYY-MM-DD-HH24:MI:SS.FF"', 'nls_timestamp_tz_format for source.'), 'from_user': ('-j', '--from_user', 'SCOTT', 'Oracle 12c source user.'), 'from_passwd': ('-x', '--from_passwd', 'tiger', 'Oracle 12c source user password.'), 'query_sql_dir': ('-Q', '--query_sql_dir', 'C:\\Python27\\data_migrator_1239_12c\\test\\v101\\query\\query_dir_ora', 'Input dir with Oracle 12c query files sql.')}, {'to_db_name': ('-d', '--to_db_name', '"SAMPLE"', 'Target DB2 Advanced Workgroup Server database.'), 'target_client_home': ('-Z', '--target_client_home', '"C:\\Program Files (x86)\\IBM\\SQLLIB_01\\BIN"', 'Path to DB2 Advanced Workgroup Server client home bin dir.'), 'to_user': ('-u', '--to_user', '"ALEX_BUZ"', 'Target DB2 Advanced Workgroup Server db user.'), 'to_passwd': ('-p', '--to_passwd', '"198Morgan"', 'Target DB2 Advanced Workgroup Server db user password.'), 'to_db_server': ('-s', '--to_db_server', '"DB2"', 'Target DB2 Advanced Workgroup Server db instance name.'), 'to_table': ('-a', '--to_table', 'ALEX_BUZ.Timestamp_test_to', 'Target DB2 Advanced Workgroup Server table.')}], 'ORA12C_Subpartition_keepWhitespace.DBTAWS_Table': [{'field_term': ('-t', '--field_term', '"|"', 'Field terminator.'), 'num_of_shards': ('-r', '--num_of_shards', 1, 'Number of shards.'), 'pool_size': ('-o', '--pool_size', 1, 'Pool size.'), 'copy_vector': ('-w', '--copy_vector', 'ora12c-dbtaws', 'Data copy direction.'), 'keep_data_file': ('-K', '--keep_data_file', 1, 'Keep data dump.'), 'default_spool_dir': ('-F', '--default_spool_dir', 'C:\\tmp\\TEST_default_spool', 'Default data dump dir (default_spool_dir/job_name/timestamp).'), 'time_stamp': ('-Y', '--time_stamp', '20150515_221740_305000', 'Timestamp (log_dir/job_name/timestamp).'), 'host_map': ('-5', '--host_map', '".\\config\\host_map_v2.py"', 'Host-to-shard map.'), 'job_name': ('-B', '--job_name', 'qc_job', 'Job name (log_dir/job_name).'), 'log_dir': ('-M', '--log_dir', 'C:\\Temp\\qc_log', 'Log destination.')}, {'from_db_name': ('-b', '--from_db_name', 'orcl', 'Oracle 12c source database.'), 'from_sub_partition': ('-S', '--from_sub_partition', 'part_15_sp1', 'From sub-partition.'), 'from_table': ('-c', '--from_table', 'SCOTT.Sub_Partitioned_test_from', 'From table.'), 'nls_timestamp_format': ('-m', '--nls_timestamp_format', '"YYYY-MM-DD-HH24.MI.SS.FF"', 'nls_timestamp_format for source.'), 'nls_date_format': ('-e', '--nls_date_format', '"YYYY-MM-DD"', 'nls_date_format for source.'), 'keep_whitespace': ('-W', '--keep_whitespace', 1, 'Keep whitespace from CHAR type in "Oracle 12c" extract.'), 'nls_timestamp_tz_format': ('-O', '--nls_timestamp_tz_format', '"YYYY-MM-DD-HH24:MI:SS.FF"', 'nls_timestamp_tz_format for source.'), 'from_user': ('-j', '--from_user', 'SCOTT', 'Oracle 12c source user.'), 'from_passwd': ('-x', '--from_passwd', 'tiger', 'Oracle 12c source user password.')}, {'to_db_name': ('-d', '--to_db_name', '"SAMPLE"', 'Target DB2 Advanced Workgroup Server database.'), 'target_client_home': ('-Z', '--target_client_home', '"C:\\Program Files (x86)\\IBM\\SQLLIB_01\\BIN"', 'Path to DB2 Advanced Workgroup Server client home bin dir.'), 'to_user': ('-u', '--to_user', '"ALEX_BUZ"', 'Target DB2 Advanced Workgroup Server db user.'), 'to_passwd': ('-p', '--to_passwd', '"198Morgan"', 'Target DB2 Advanced Workgroup Server db user password.'), 'to_db_server': ('-s', '--to_db_server', '"DB2"', 'Target DB2 Advanced Workgroup Server db instance name.'), 'to_table': ('-a', '--to_table', 'ALEX_BUZ.Timestamp_test_to', 'Target DB2 Advanced Workgroup Server table.')}], 'ORA12C_QueryDir.DBTAWS_Table': [{'field_term': ('-t', '--field_term', '"|"', 'Field terminator.'), 'num_of_shards': ('-r', '--num_of_shards', 1, 'Number of shards.'), 'pool_size': ('-o', '--pool_size', 1, 'Pool size.'), 'copy_vector': ('-w', '--copy_vector', 'ora12c-dbtaws', 'Data copy direction.'), 'keep_data_file': ('-K', '--keep_data_file', 1, 'Keep data dump.'), 'default_spool_dir': ('-F', '--default_spool_dir', 'C:\\tmp\\TEST_default_spool', 'Default data dump dir (default_spool_dir/job_name/timestamp).'), 'time_stamp': ('-Y', '--time_stamp', '20150515_221741_766000', 'Timestamp (log_dir/job_name/timestamp).'), 'host_map': ('-5', '--host_map', '".\\config\\host_map_v2.py"', 'Host-to-shard map.'), 'job_name': ('-B', '--job_name', 'qc_job', 'Job name (log_dir/job_name).'), 'log_dir': ('-M', '--log_dir', 'C:\\Temp\\qc_log', 'Log destination.')}, {'from_db_name': ('-b', '--from_db_name', 'orcl', 'Oracle 12c source database.'), 'nls_timestamp_format': ('-m', '--nls_timestamp_format', '"YYYY-MM-DD-HH24.MI.SS.FF"', 'nls_timestamp_format for source.'), 'nls_date_format': ('-e', '--nls_date_format', '"YYYY-MM-DD"', 'nls_date_format for source.'), 'nls_timestamp_tz_format': ('-O', '--nls_timestamp_tz_format', '"YYYY-MM-DD-HH24:MI:SS.FF"', 'nls_timestamp_tz_format for source.'), 'from_user': ('-j', '--from_user', 'SCOTT', 'Oracle 12c source user.'), 'from_passwd': ('-x', '--from_passwd', 'tiger', 'Oracle 12c source user password.'), 'query_sql_dir': ('-Q', '--query_sql_dir', 'C:\\Python27\\data_migrator_1239_12c\\test\\v101\\query\\query_dir_ora', 'Input dir with Oracle 12c query files sql.')}, {'to_db_name': ('-d', '--to_db_name', '"SAMPLE"', 'Target DB2 Advanced Workgroup Server database.'), 'target_client_home': ('-Z', '--target_client_home', '"C:\\Program Files (x86)\\IBM\\SQLLIB_01\\BIN"', 'Path to DB2 Advanced Workgroup Server client home bin dir.'), 'to_user': ('-u', '--to_user', '"ALEX_BUZ"', 'Target DB2 Advanced Workgroup Server db user.'), 'to_passwd': ('-p', '--to_passwd', '"198Morgan"', 'Target DB2 Advanced Workgroup Server db user password.'), 'to_db_server': ('-s', '--to_db_server', '"DB2"', 'Target DB2 Advanced Workgroup Server db instance name.'), 'to_table': ('-a', '--to_table', 'ALEX_BUZ.Timestamp_test_to', 'Target DB2 Advanced Workgroup Server table.')}], 'ORA12C_TimezoneTable_KeepSpoolFile.DBTAWS_Table': [{'field_term': ('-t', '--field_term', '"|"', 'Field terminator.'), 'num_of_shards': ('-r', '--num_of_shards', 1, 'Number of shards.'), 'pool_size': ('-o', '--pool_size', 1, 'Pool size.'), 'copy_vector': ('-w', '--copy_vector', 'ora12c-dbtaws', 'Data copy direction.'), 'keep_data_file': ('-K', '--keep_data_file', 1, 'Keep data dump.'), 'default_spool_dir': ('-F', '--default_spool_dir', 'C:\\tmp\\TEST_default_spool', 'Default data dump dir (default_spool_dir/job_name/timestamp).'), 'time_stamp': ('-Y', '--time_stamp', '20150515_221741_232000', 'Timestamp (log_dir/job_name/timestamp).'), 'host_map': ('-5', '--host_map', '".\\config\\host_map_v2.py"', 'Host-to-shard map.'), 'job_name': ('-B', '--job_name', 'qc_job', 'Job name (log_dir/job_name).'), 'log_dir': ('-M', '--log_dir', 'C:\\Temp\\qc_log', 'Log destination.')}, {'from_db_name': ('-b', '--from_db_name', 'orcl', 'Oracle 12c source database.'), 'from_table': ('-c', '--from_table', 'SCOTT.Timezone_test_from', 'From table.'), 'nls_timestamp_format': ('-m', '--nls_timestamp_format', '"YYYY-MM-DD-HH24.MI.SS.FF"', 'nls_timestamp_format for source.'), 'nls_date_format': ('-e', '--nls_date_format', '"YYYY-MM-DD"', 'nls_date_format for source.'), 'nls_timestamp_tz_format': ('-O', '--nls_timestamp_tz_format', '"YYYY-MM-DD-HH24:MI:SS.FF"', 'nls_timestamp_tz_format for source.'), 'from_user': ('-j', '--from_user', 'SCOTT', 'Oracle 12c source user.'), 'from_passwd': ('-x', '--from_passwd', 'tiger', 'Oracle 12c source user password.')}, {'to_db_name': ('-d', '--to_db_name', '"SAMPLE"', 'Target DB2 Advanced Workgroup Server database.'), 'target_client_home': ('-Z', '--target_client_home', '"C:\\Program Files (x86)\\IBM\\SQLLIB_01\\BIN"', 'Path to DB2 Advanced Workgroup Server client home bin dir.'), 'to_user': ('-u', '--to_user', '"ALEX_BUZ"', 'Target DB2 Advanced Workgroup Server db user.'), 'to_passwd': ('-p', '--to_passwd', '"198Morgan"', 'Target DB2 Advanced Workgroup Server db user password.'), 'to_db_server': ('-s', '--to_db_server', '"DB2"', 'Target DB2 Advanced Workgroup Server db instance name.'), 'to_table': ('-a', '--to_table', 'ALEX_BUZ.Timezone_test_to', 'Target DB2 Advanced Workgroup Server table.')}], 'ORA12C_QueryFile_WithWideRows.DBTAWS_Table': [{'field_term': ('-t', '--field_term', '"|"', 'Field terminator.'), 'num_of_shards': ('-r', '--num_of_shards', 1, 'Number of shards.'), 'pool_size': ('-o', '--pool_size', 1, 'Pool size.'), 'column_buckets': ('-0', '--column_buckets', 2, 'Wide row support.'), 'copy_vector': ('-w', '--copy_vector', 'ora12c-dbtaws', 'Data copy direction.'), 'keep_data_file': ('-K', '--keep_data_file', 1, 'Keep data dump.'), 'default_spool_dir': ('-F', '--default_spool_dir', 'C:\\tmp\\TEST_default_spool', 'Default data dump dir (default_spool_dir/job_name/timestamp).'), 'time_stamp': ('-Y', '--time_stamp', '20150515_221741_533000', 'Timestamp (log_dir/job_name/timestamp).'), 'host_map': ('-5', '--host_map', '".\\config\\host_map_v2.py"', 'Host-to-shard map.'), 'job_name': ('-B', '--job_name', 'qc_job', 'Job name (log_dir/job_name).'), 'log_dir': ('-M', '--log_dir', 'C:\\Temp\\qc_log', 'Log destination.')}, {'query_sql_file': ('-q', '--query_sql_file', 'C:\\Python27\\data_migrator_1239_12c\\test\\v101\\query\\oracle_query.sql', 'Input file with Oracle 12c query sql.'), 'from_db_name': ('-b', '--from_db_name', 'orcl', 'Oracle 12c source database.'), 'nls_timestamp_format': ('-m', '--nls_timestamp_format', '"YYYY-MM-DD-HH24.MI.SS.FF"', 'nls_timestamp_format for source.'), 'nls_date_format': ('-e', '--nls_date_format', '"YYYY-MM-DD"', 'nls_date_format for source.'), 'nls_timestamp_tz_format': ('-O', '--nls_timestamp_tz_format', '"YYYY-MM-DD-HH24:MI:SS.FF"', 'nls_timestamp_tz_format for source.'), 'from_user': ('-j', '--from_user', 'SCOTT', 'Oracle 12c source user.'), 'from_passwd': ('-x', '--from_passwd', 'tiger', 'Oracle 12c source user password.')}, {'to_db_name': ('-d', '--to_db_name', '"SAMPLE"', 'Target DB2 Advanced Workgroup Server database.'), 'target_client_home': ('-Z', '--target_client_home', '"C:\\Program Files (x86)\\IBM\\SQLLIB_01\\BIN"', 'Path to DB2 Advanced Workgroup Server client home bin dir.'), 'to_user': ('-u', '--to_user', '"ALEX_BUZ"', 'Target DB2 Advanced Workgroup Server db user.'), 'to_passwd': ('-p', '--to_passwd', '"198Morgan"', 'Target DB2 Advanced Workgroup Server db user password.'), 'to_db_server': ('-s', '--to_db_server', '"DB2"', 'Target DB2 Advanced Workgroup Server db instance name.'), 'to_table': ('-a', '--to_table', 'ALEX_BUZ.Timestamp_test_to', 'Target DB2 Advanced Workgroup Server table.')}], 'ORA12C_DateTable_JobName.DBTAWS_Table': [{'field_term': ('-t', '--field_term', '"|"', 'Field terminator.'), 'num_of_shards': ('-r', '--num_of_shards', 1, 'Number of shards.'), 'pool_size': ('-o', '--pool_size', 1, 'Pool size.'), 'copy_vector': ('-w', '--copy_vector', 'ora12c-dbtaws', 'Data copy direction.'), 'keep_data_file': ('-K', '--keep_data_file', 1, 'Keep data dump.'), 'default_spool_dir': ('-F', '--default_spool_dir', 'C:\\tmp\\TEST_default_spool', 'Default data dump dir (default_spool_dir/job_name/timestamp).'), 'time_stamp': ('-Y', '--time_stamp', '20150515_221741_638000', 'Timestamp (log_dir/job_name/timestamp).'), 'host_map': ('-5', '--host_map', '".\\config\\host_map_v2.py"', 'Host-to-shard map.'), 'job_name': ('-B', '--job_name', 'FROM_ORA12C_DateTable_JobName_TO_DBTAWS_Table', 'Job name (log_dir/job_name).'), 'log_dir': ('-M', '--log_dir', 'C:\\Temp\\qc_log', 'Log destination.')}, {'from_db_name': ('-b', '--from_db_name', 'orcl', 'Oracle 12c source database.'), 'from_table': ('-c', '--from_table', 'SCOTT.Date_test_from', 'From table.'), 'nls_timestamp_format': ('-m', '--nls_timestamp_format', '"YYYY-MM-DD-HH24.MI.SS.FF"', 'nls_timestamp_format for source.'), 'nls_date_format': ('-e', '--nls_date_format', '"YYYY-MM-DD"', 'nls_date_format for source.'), 'nls_timestamp_tz_format': ('-O', '--nls_timestamp_tz_format', '"YYYY-MM-DD-HH24:MI:SS.FF"', 'nls_timestamp_tz_format for source.'), 'from_user': ('-j', '--from_user', 'SCOTT', 'Oracle 12c source user.'), 'from_passwd': ('-x', '--from_passwd', 'tiger', 'Oracle 12c source user password.')}, {'to_db_name': ('-d', '--to_db_name', '"SAMPLE"', 'Target DB2 Advanced Workgroup Server database.'), 'target_client_home': ('-Z', '--target_client_home', '"C:\\Program Files (x86)\\IBM\\SQLLIB_01\\BIN"', 'Path to DB2 Advanced Workgroup Server client home bin dir.'), 'to_user': ('-u', '--to_user', '"ALEX_BUZ"', 'Target DB2 Advanced Workgroup Server db user.'), 'to_passwd': ('-p', '--to_passwd', '"198Morgan"', 'Target DB2 Advanced Workgroup Server db user password.'), 'to_db_server': ('-s', '--to_db_server', '"DB2"', 'Target DB2 Advanced Workgroup Server db instance name.'), 'to_table': ('-a', '--to_table', 'ALEX_BUZ.Date_test_to', 'Target DB2 Advanced Workgroup Server table.')}], 'ORA12C_QueryDir_Limit10.DBTAWS_Table': [{'lame_duck': ('-l', '--lame_duck', 10, 'Limit rows (lame duck run).'), 'field_term': ('-t', '--field_term', '"|"', 'Field terminator.'), 'num_of_shards': ('-r', '--num_of_shards', 1, 'Number of shards.'), 'pool_size': ('-o', '--pool_size', 1, 'Pool size.'), 'copy_vector': ('-w', '--copy_vector', 'ora12c-dbtaws', 'Data copy direction.'), 'keep_data_file': ('-K', '--keep_data_file', 1, 'Keep data dump.'), 'default_spool_dir': ('-F', '--default_spool_dir', 'C:\\tmp\\TEST_default_spool', 'Default data dump dir (default_spool_dir/job_name/timestamp).'), 'time_stamp': ('-Y', '--time_stamp', '20150515_221741_668000', 'Timestamp (log_dir/job_name/timestamp).'), 'host_map': ('-5', '--host_map', '".\\config\\host_map_v2.py"', 'Host-to-shard map.'), 'job_name': ('-B', '--job_name', 'qc_job', 'Job name (log_dir/job_name).'), 'log_dir': ('-M', '--log_dir', 'C:\\Temp\\qc_log', 'Log destination.')}, {'from_db_name': ('-b', '--from_db_name', 'orcl', 'Oracle 12c source database.'), 'nls_timestamp_format': ('-m', '--nls_timestamp_format', '"YYYY-MM-DD-HH24.MI.SS.FF"', 'nls_timestamp_format for source.'), 'nls_date_format': ('-e', '--nls_date_format', '"YYYY-MM-DD"', 'nls_date_format for source.'), 'nls_timestamp_tz_format': ('-O', '--nls_timestamp_tz_format', '"YYYY-MM-DD-HH24:MI:SS.FF"', 'nls_timestamp_tz_format for source.'), 'from_user': ('-j', '--from_user', 'SCOTT', 'Oracle 12c source user.'), 'from_passwd': ('-x', '--from_passwd', 'tiger', 'Oracle 12c source user password.'), 'query_sql_dir': ('-Q', '--query_sql_dir', 'C:\\Python27\\data_migrator_1239_12c\\test\\v101\\query\\query_dir_ora', 'Input dir with Oracle 12c query files sql.')}, {'to_db_name': ('-d', '--to_db_name', '"SAMPLE"', 'Target DB2 Advanced Workgroup Server database.'), 'target_client_home': ('-Z', '--target_client_home', '"C:\\Program Files (x86)\\IBM\\SQLLIB_01\\BIN"', 'Path to DB2 Advanced Workgroup Server client home bin dir.'), 'to_user': ('-u', '--to_user', '"ALEX_BUZ"', 'Target DB2 Advanced Workgroup Server db user.'), 'to_passwd': ('-p', '--to_passwd', '"198Morgan"', 'Target DB2 Advanced Workgroup Server db user password.'), 'to_db_server': ('-s', '--to_db_server', '"DB2"', 'Target DB2 Advanced Workgroup Server db instance name.'), 'to_table': ('-a', '--to_table', 'ALEX_BUZ.Timestamp_test_to', 'Target DB2 Advanced Workgroup Server table.')}], 'ORA12C_Subpartition_Limit10.DBTAWS_Table': [{'lame_duck': ('-l', '--lame_duck', 10, 'Limit rows (lame duck run).'), 'field_term': ('-t', '--field_term', '"|"', 'Field terminator.'), 'num_of_shards': ('-r', '--num_of_shards', 1, 'Number of shards.'), 'pool_size': ('-o', '--pool_size', 1, 'Pool size.'), 'copy_vector': ('-w', '--copy_vector', 'ora12c-dbtaws', 'Data copy direction.'), 'keep_data_file': ('-K', '--keep_data_file', 1, 'Keep data dump.'), 'default_spool_dir': ('-F', '--default_spool_dir', 'C:\\tmp\\TEST_default_spool', 'Default data dump dir (default_spool_dir/job_name/timestamp).'), 'time_stamp': ('-Y', '--time_stamp', '20150515_221740_646000', 'Timestamp (log_dir/job_name/timestamp).'), 'host_map': ('-5', '--host_map', '".\\config\\host_map_v2.py"', 'Host-to-shard map.'), 'job_name': ('-B', '--job_name', 'qc_job', 'Job name (log_dir/job_name).'), 'log_dir': ('-M', '--log_dir', 'C:\\Temp\\qc_log', 'Log destination.')}, {'from_db_name': ('-b', '--from_db_name', 'orcl', 'Oracle 12c source database.'), 'from_sub_partition': ('-S', '--from_sub_partition', 'part_15_sp1', 'From sub-partition.'), 'from_table': ('-c', '--from_table', 'SCOTT.Sub_Partitioned_test_from', 'From table.'), 'nls_timestamp_format': ('-m', '--nls_timestamp_format', '"YYYY-MM-DD-HH24.MI.SS.FF"', 'nls_timestamp_format for source.'), 'nls_date_format': ('-e', '--nls_date_format', '"YYYY-MM-DD"', 'nls_date_format for source.'), 'nls_timestamp_tz_format': ('-O', '--nls_timestamp_tz_format', '"YYYY-MM-DD-HH24:MI:SS.FF"', 'nls_timestamp_tz_format for source.'), 'from_user': ('-j', '--from_user', 'SCOTT', 'Oracle 12c source user.'), 'from_passwd': ('-x', '--from_passwd', 'tiger', 'Oracle 12c source user password.')}, {'to_db_name': ('-d', '--to_db_name', '"SAMPLE"', 'Target DB2 Advanced Workgroup Server database.'), 'target_client_home': ('-Z', '--target_client_home', '"C:\\Program Files (x86)\\IBM\\SQLLIB_01\\BIN"', 'Path to DB2 Advanced Workgroup Server client home bin dir.'), 'to_user': ('-u', '--to_user', '"ALEX_BUZ"', 'Target DB2 Advanced Workgroup Server db user.'), 'to_passwd': ('-p', '--to_passwd', '"198Morgan"', 'Target DB2 Advanced Workgroup Server db user password.'), 'to_db_server': ('-s', '--to_db_server', '"DB2"', 'Target DB2 Advanced Workgroup Server db instance name.'), 'to_table': ('-a', '--to_table', 'ALEX_BUZ.Timestamp_test_to', 'Target DB2 Advanced Workgroup Server table.')}]} | [
"[email protected]"
]
| |
a1d45b4a1306f1720ace5d28dab4653d0d2a6868 | bd02997a44218468b155eda45dd9dd592bb3d124 | /baekjoon_2108.py | cb9102297f1407ace276cbdd2e7a5b699dbacc1a | []
| no_license | rheehot/ProblemSolving_Python | 88b1eb303ab97624ae6c97e05393352695038d14 | 4d6dc6aea628f0e6e96530646c66216bf489427f | refs/heads/master | 2023-02-13T03:30:07.039231 | 2021-01-04T06:04:11 | 2021-01-04T06:04:11 | null | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 1,280 | py | '''
Problem Solving Baekjoon 2108
Author: Injun Son
Date: September 5, 2020
'''
from collections import deque
import sys
from itertools import combinations
import math
import math
input = sys.stdin.readline
N = int(input())
arr = [int(input()) for _ in range(N)]
count_arr = [0]*8001
tmp_sum = 0
tmp_max = -1*sys.maxsize
tmp_min = sys.maxsize
for i in range(len(arr)):
tmp_sum += arr[i]
count_arr[arr[i]+4000]+=1
if arr[i] > tmp_max:
tmp_max = arr[i]
if arr[i] < tmp_min:
tmp_min = arr[i]
mode_list = []
for i in range(0, 8001):
if count_arr[i]!=0:
mode_list.append([i-4000, count_arr[i]])
mode_list = sorted(mode_list, key = lambda x: (-x[1], x[0]), )
arr.sort()
# print(arr)
# print(mode_list)
'''
첫째 줄에는 산술평균을 출력한다. 소수점 이하 첫째 자리에서 반올림한 값을 출력한다.
둘째 줄에는 중앙값을 출력한다.
셋째 줄에는 최빈값을 출력한다. 여러 개 있을 때에는 최빈값 중 두 번째로 작은 값을 출력한다.
넷째 줄에는 범위를 출력한다.
'''
print(round(tmp_sum/len(arr)))
print(arr[len(arr)//2])
if len(mode_list)>=2 and mode_list[0][1]==mode_list[1][1]:
print(mode_list[1][0])
else:
print(mode_list[0][0])
print(tmp_max - tmp_min) | [
"[email protected]"
]
| |
636406ddd942396e9b6aedb4bdaaba02783aa51f | c0ad282ab743a315e2f252a627933cb168434c1d | /shapeworld/torch_util.py | fa6ad12567eb305a5acdeee76fecf0a4791ff2fd | [
"MIT"
]
| permissive | AlexKuhnle/ShapeWorld | 6d1e16adc94e860abae99ade869f72575f573bc4 | e720bf46e57fc01326d04d639fa6133d9c12158f | refs/heads/master | 2021-07-09T00:02:33.808969 | 2021-04-19T11:10:52 | 2021-04-19T11:10:52 | 80,815,972 | 58 | 28 | MIT | 2021-04-19T11:10:53 | 2017-02-03T09:40:19 | Python | UTF-8 | Python | false | false | 2,806 | py | import sys
import numpy as np
import torch.utils.data
class ShapeWorldDataset(torch.utils.data.Dataset):
def __init__(self, dataset, mode=None, include_model=False, epoch=False, is_channels_first=True, preprocessing=None):
super(ShapeWorldDataset, self).__init__()
self.dataset = dataset
self.mode = mode
self.include_model = include_model
self.epoch = epoch
if self.epoch:
self.dataset.random_sampling = False
self.is_channels_first = is_channels_first
self.preprocessing = dict() if preprocessing is None else preprocessing
self.initialize_iterator()
self.index = -1
def initialize_iterator(self):
if self.epoch:
self.iterator = self.dataset.epoch(n=1, mode=self.mode, include_model=self.include_model, alternatives=False)
else:
self.iterator = self.dataset.iterate(n=1, mode=self.mode, include_model=self.include_model, alternatives=False)
def __getitem__(self, index):
self.index += 1
assert index == self.index, 'random shuffling invalid: ' + str((index, self.index, self, self.mode))
try:
generated = next(self.iterator)
for value_name, value in generated.items():
if self.is_channels_first and (self.dataset.values[value_name] == 'world' or value_name.endswith('_features')):
generated[value_name] = np.transpose(value[0], axes=(2, 0, 1))
else:
generated[value_name] = value[0]
for value_name, preprocessing in self.preprocessing.items():
generated[value_name] = preprocessing(generated[value_name])
return {value_name: value for value_name, value in generated.items()}
except StopIteration:
self.initialize_iterator()
self.index = -1
return None
def __len__(self):
return sys.maxsize
def __add__(self, other):
raise NotImplementedError
class ShapeWorldDataLoader(torch.utils.data.DataLoader):
def __init__(self, dataset, batch_size=1, num_workers=0):
assert isinstance(dataset, ShapeWorldDataset)
super(ShapeWorldDataLoader, self).__init__(dataset=dataset, batch_size=batch_size, num_workers=num_workers)
def __iter__(self):
self.sample_iter = iter(self.batch_sampler)
while True:
indices = next(self.sample_iter)
batch = list()
for i in indices:
instance = self.dataset[i]
if instance is None:
break
batch.append(instance)
yield self.collate_fn(batch)
if instance is None:
break
def __len__(self):
return sys.maxsize
| [
"[email protected]"
]
| |
9c55f255b57e0eaf9ce3639bd0dd51cd1eb40334 | deec7cdd0916936f71a194616060f2935291dba1 | /examples/05_logging/null_handler/connect_ssh.py | f46d7698d5180a2d54819386a56cf94bd7067e8d | []
| no_license | denjjack/advpyneng-examples-exercises | 938077e0e0d2265481746d894e970eb5688fc235 | 50871f0f228bb309f99ddee7ca56de25da0bfa1b | refs/heads/master | 2022-12-15T02:43:50.148470 | 2020-09-11T11:51:38 | 2020-09-11T11:51:38 | 294,704,149 | 1 | 0 | null | 2020-09-11T13:34:23 | 2020-09-11T13:34:22 | null | UTF-8 | Python | false | false | 194 | py | from base_ssh_class import BaseSSH
import logging
logging.basicConfig(level=logging.DEBUG)
r1 = BaseSSH("192.168.100.1", "cisco", "cisco")
print(r1.send_show_command("sh clock"))
r1.close()
| [
"[email protected]"
]
| |
385fca920ccc02437aa185a2637b0d7585a0fdda | 463c053bcf3f4a7337b634890720ea9467f14c87 | /rllib/utils/replay_buffers/utils.py | 1589760742338853369d9860f156a52e594a0d78 | [
"BSD-3-Clause",
"MIT",
"Apache-2.0"
]
| permissive | pdames/ray | e8faddc4440976211a6bcead8f8b6e62c1dcda01 | 918d3601c6519d333f10910dc75eb549cbb82afa | refs/heads/master | 2023-01-23T06:11:11.723212 | 2022-05-06T22:55:59 | 2022-05-06T22:55:59 | 245,515,407 | 1 | 1 | Apache-2.0 | 2023-01-14T08:02:21 | 2020-03-06T20:59:04 | Python | UTF-8 | Python | false | false | 16,838 | py | import logging
import psutil
from typing import Optional, Any
from ray.rllib.execution import MultiAgentReplayBuffer as Legacy_MultiAgentReplayBuffer
from ray.rllib.execution.buffers.multi_agent_replay_buffer import (
MultiAgentReplayBuffer as LegacyMultiAgentReplayBuffer,
)
from ray.rllib.policy.sample_batch import SampleBatch
from ray.rllib.utils import deprecation_warning
from ray.rllib.utils.annotations import ExperimentalAPI
from ray.rllib.utils.deprecation import DEPRECATED_VALUE
from ray.rllib.utils.from_config import from_config
from ray.rllib.utils.metrics.learner_info import LEARNER_STATS_KEY
from ray.rllib.utils.replay_buffers import (
MultiAgentPrioritizedReplayBuffer,
ReplayBuffer,
MultiAgentReplayBuffer,
)
from ray.rllib.policy.sample_batch import MultiAgentBatch
from ray.rllib.utils.typing import ResultDict, SampleBatchType, TrainerConfigDict
from ray.util import log_once
logger = logging.getLogger(__name__)
def update_priorities_in_replay_buffer(
replay_buffer: ReplayBuffer,
config: TrainerConfigDict,
train_batch: SampleBatchType,
train_results: ResultDict,
) -> None:
"""Updates the priorities in a prioritized replay buffer, given training results.
The `abs(TD-error)` from the loss (inside `train_results`) is used as new
priorities for the row-indices that were sampled for the train batch.
Don't do anything if the given buffer does not support prioritized replay.
Args:
replay_buffer: The replay buffer, whose priority values to update. This may also
be a buffer that does not support priorities.
config: The Trainer's config dict.
train_batch: The batch used for the training update.
train_results: A train results dict, generated by e.g. the `train_one_step()`
utility.
"""
# Only update priorities if buffer supports them.
if (
type(replay_buffer) is LegacyMultiAgentReplayBuffer
and config["replay_buffer_config"].get("prioritized_replay_alpha", 0.0) > 0.0
) or isinstance(replay_buffer, MultiAgentPrioritizedReplayBuffer):
# Go through training results for the different policies (maybe multi-agent).
prio_dict = {}
for policy_id, info in train_results.items():
# TODO(sven): This is currently structured differently for
# torch/tf. Clean up these results/info dicts across
# policies (note: fixing this in torch_policy.py will
# break e.g. DDPPO!).
td_error = info.get("td_error", info[LEARNER_STATS_KEY].get("td_error"))
# Set the get_interceptor to None in order to be able to access the numpy
# arrays directly (instead of e.g. a torch array).
train_batch.policy_batches[policy_id].set_get_interceptor(None)
# Get the replay buffer row indices that make up the `train_batch`.
batch_indices = train_batch.policy_batches[policy_id].get("batch_indexes")
# In case the buffer stores sequences, TD-error could
# already be calculated per sequence chunk.
if len(batch_indices) != len(td_error):
T = replay_buffer.replay_sequence_length
assert (
len(batch_indices) > len(td_error) and len(batch_indices) % T == 0
)
batch_indices = batch_indices.reshape([-1, T])[:, 0]
assert len(batch_indices) == len(td_error)
prio_dict[policy_id] = (batch_indices, td_error)
# Make the actual buffer API call to update the priority weights on all
# policies.
replay_buffer.update_priorities(prio_dict)
def sample_min_n_steps_from_buffer(
replay_buffer: ReplayBuffer, min_steps: int, count_by_agent_steps: bool
) -> Optional[SampleBatchType]:
"""Samples a minimum of n timesteps from a given replay buffer.
This utility method is primarily used by the QMIX algorithm and helps with
sampling a given number of time steps which has stored samples in units
of sequences or complete episodes. Samples n batches from replay buffer
until the total number of timesteps reaches `train_batch_size`.
Args:
replay_buffer: The replay buffer to sample from
num_timesteps: The number of timesteps to sample
count_by_agent_steps: Whether to count agent steps or env steps
Returns:
A concatenated SampleBatch or MultiAgentBatch with samples from the
buffer.
"""
train_batch_size = 0
train_batches = []
while train_batch_size < min_steps:
batch = replay_buffer.sample(num_items=1)
if batch is None:
return None
train_batches.append(batch)
train_batch_size += (
train_batches[-1].agent_steps()
if count_by_agent_steps
else train_batches[-1].env_steps()
)
# All batch types are the same type, hence we can use any concat_samples()
train_batch = SampleBatch.concat_samples(train_batches)
return train_batch
@ExperimentalAPI
def validate_buffer_config(config: dict):
if config.get("replay_buffer_config", None) is None:
config["replay_buffer_config"] = {}
prioritized_replay = config.get("prioritized_replay")
if prioritized_replay != DEPRECATED_VALUE:
deprecation_warning(
old="config['prioritized_replay']",
help="Replay prioritization specified at new location config["
"'replay_buffer_config']["
"'prioritized_replay'] will be overwritten.",
error=False,
)
config["replay_buffer_config"]["prioritized_replay"] = prioritized_replay
capacity = config.get("buffer_size", DEPRECATED_VALUE)
if capacity != DEPRECATED_VALUE:
deprecation_warning(
old="config['buffer_size']",
help="Buffer size specified at new location config["
"'replay_buffer_config']["
"'capacity'] will be overwritten.",
error=False,
)
config["replay_buffer_config"]["capacity"] = capacity
# Deprecation of old-style replay buffer args
# Warnings before checking of we need local buffer so that algorithms
# Without local buffer also get warned
deprecated_replay_buffer_keys = [
"prioritized_replay_alpha",
"prioritized_replay_beta",
"prioritized_replay_eps",
"learning_starts",
]
for k in deprecated_replay_buffer_keys:
if config.get(k, DEPRECATED_VALUE) != DEPRECATED_VALUE:
deprecation_warning(
old="config[{}]".format(k),
help="config['replay_buffer_config'][{}] should be used "
"for Q-Learning algorithms. Ignore this warning if "
"you are not using a Q-Learning algorithm and still "
"provide {}."
"".format(k, k),
error=False,
)
# Copy values over to new location in config to support new
# and old configuration style
if config.get("replay_buffer_config") is not None:
config["replay_buffer_config"][k] = config[k]
# Old Ape-X configs may contain no_local_replay_buffer
no_local_replay_buffer = config.get("no_local_replay_buffer", False)
if no_local_replay_buffer:
deprecation_warning(
old="config['no_local_replay_buffer']",
help="no_local_replay_buffer specified at new location config["
"'replay_buffer_config']["
"'capacity'] will be overwritten.",
error=False,
)
config["replay_buffer_config"][
"no_local_replay_buffer"
] = no_local_replay_buffer
# TODO (Artur):
if config["replay_buffer_config"].get("no_local_replay_buffer", False):
return
replay_buffer_config = config["replay_buffer_config"]
assert (
"type" in replay_buffer_config
), "Can not instantiate ReplayBuffer from config without 'type' key."
# Check if old replay buffer should be instantiated
buffer_type = config["replay_buffer_config"]["type"]
if not config["replay_buffer_config"].get("_enable_replay_buffer_api", False):
if isinstance(buffer_type, str) and buffer_type.find(".") == -1:
# Prepend old-style buffers' path
assert buffer_type == "MultiAgentReplayBuffer", (
"Without "
"ReplayBuffer "
"API, only "
"MultiAgentReplayBuffer "
"is supported!"
)
# Create valid full [module].[class] string for from_config
buffer_type = "ray.rllib.execution.MultiAgentReplayBuffer"
else:
assert buffer_type in [
"ray.rllib.execution.MultiAgentReplayBuffer",
Legacy_MultiAgentReplayBuffer,
], (
"Without ReplayBuffer API, only " "MultiAgentReplayBuffer is supported!"
)
config["replay_buffer_config"]["type"] = buffer_type
# Remove from config, so it's not passed into the buffer c'tor
config["replay_buffer_config"].pop("_enable_replay_buffer_api", None)
# We need to deprecate the old-style location of the following
# buffer arguments and make users put them into the
# "replay_buffer_config" field of their config.
replay_batch_size = config.get("replay_batch_size", DEPRECATED_VALUE)
if replay_batch_size != DEPRECATED_VALUE:
config["replay_buffer_config"]["replay_batch_size"] = replay_batch_size
deprecation_warning(
old="config['replay_batch_size']",
help="Replay batch size specified at new "
"location config['replay_buffer_config']["
"'replay_batch_size'] will be overwritten.",
error=False,
)
replay_mode = config.get("replay_mode", DEPRECATED_VALUE)
if replay_mode != DEPRECATED_VALUE:
config["replay_buffer_config"]["replay_mode"] = replay_mode
deprecation_warning(
old="config['multiagent']['replay_mode']",
help="Replay sequence length specified at new "
"location config['replay_buffer_config']["
"'replay_mode'] will be overwritten.",
error=False,
)
# Can't use DEPRECATED_VALUE here because this is also a deliberate
# value set for some algorithms
# TODO: (Artur): Compare to DEPRECATED_VALUE on deprecation
replay_sequence_length = config.get("replay_sequence_length", None)
if replay_sequence_length is not None:
config["replay_buffer_config"][
"replay_sequence_length"
] = replay_sequence_length
deprecation_warning(
old="config['replay_sequence_length']",
help="Replay sequence length specified at new "
"location config['replay_buffer_config']["
"'replay_sequence_length'] will be overwritten.",
error=False,
)
replay_burn_in = config.get("burn_in", DEPRECATED_VALUE)
if replay_burn_in != DEPRECATED_VALUE:
config["replay_buffer_config"]["replay_burn_in"] = replay_burn_in
deprecation_warning(
old="config['burn_in']",
help="Burn in specified at new location config["
"'replay_buffer_config']["
"'replay_burn_in'] will be overwritten.",
)
replay_zero_init_states = config.get(
"replay_zero_init_states", DEPRECATED_VALUE
)
if replay_zero_init_states != DEPRECATED_VALUE:
config["replay_buffer_config"][
"replay_zero_init_states"
] = replay_zero_init_states
deprecation_warning(
old="config['replay_zero_init_states']",
help="Replay zero init states specified at new location "
"config["
"'replay_buffer_config']["
"'replay_zero_init_states'] will be overwritten.",
error=False,
)
# TODO (Artur): Move this logic into config objects
if config["replay_buffer_config"].get("prioritized_replay", False):
is_prioritized_buffer = True
else:
is_prioritized_buffer = False
# This triggers non-prioritization in old-style replay buffer
config["replay_buffer_config"]["prioritized_replay_alpha"] = 0.0
else:
if isinstance(buffer_type, str) and buffer_type.find(".") == -1:
# Create valid full [module].[class] string for from_config
config["replay_buffer_config"]["type"] = (
"ray.rllib.utils.replay_buffers." + buffer_type
)
test_buffer = from_config(buffer_type, config["replay_buffer_config"])
if hasattr(test_buffer, "update_priorities"):
is_prioritized_buffer = True
else:
is_prioritized_buffer = False
if is_prioritized_buffer:
if config["multiagent"]["replay_mode"] == "lockstep":
raise ValueError(
"Prioritized replay is not supported when replay_mode=lockstep."
)
elif config["replay_buffer_config"].get("replay_sequence_length", 0) > 1:
raise ValueError(
"Prioritized replay is not supported when "
"replay_sequence_length > 1."
)
else:
if config.get("worker_side_prioritization"):
raise ValueError(
"Worker side prioritization is not supported when "
"prioritized_replay=False."
)
if config["replay_buffer_config"].get("replay_batch_size", None) is None:
# Fall back to train batch size if no replay batch size was provided
config["replay_buffer_config"]["replay_batch_size"] = config["train_batch_size"]
# Pop prioritized replay because it's not a valid parameter for older
# replay buffers
config["replay_buffer_config"].pop("prioritized_replay", None)
def warn_replay_buffer_capacity(*, item: SampleBatchType, capacity: int) -> None:
"""Warn if the configured replay buffer capacity is too large for machine's memory.
Args:
item: A (example) item that's supposed to be added to the buffer.
This is used to compute the overall memory footprint estimate for the
buffer.
capacity: The capacity value of the buffer. This is interpreted as the
number of items (such as given `item`) that will eventually be stored in
the buffer.
Raises:
ValueError: If computed memory footprint for the buffer exceeds the machine's
RAM.
"""
if log_once("warn_replay_buffer_capacity"):
item_size = item.size_bytes()
psutil_mem = psutil.virtual_memory()
total_gb = psutil_mem.total / 1e9
mem_size = capacity * item_size / 1e9
msg = (
"Estimated max memory usage for replay buffer is {} GB "
"({} batches of size {}, {} bytes each), "
"available system memory is {} GB".format(
mem_size, capacity, item.count, item_size, total_gb
)
)
if mem_size > total_gb:
raise ValueError(msg)
elif mem_size > 0.2 * total_gb:
logger.warning(msg)
else:
logger.info(msg)
def patch_buffer_with_fake_sampling_method(
buffer: ReplayBuffer, fake_sample_output: SampleBatchType
) -> None:
"""Patch a ReplayBuffer such that we always sample fake_sample_output.
Transforms fake_sample_output into a MultiAgentBatch if it is not a
MultiAgentBatch and the buffer is a MultiAgentBuffer. This is useful for testing
purposes if we need deterministic sampling.
Args:
buffer: The buffer to be patched
fake_sample_output: The output to be sampled
"""
if isinstance(buffer, MultiAgentReplayBuffer) and not isinstance(
fake_sample_output, MultiAgentBatch
):
fake_sample_output = SampleBatch(fake_sample_output).as_multi_agent()
def fake_sample(_: Any, __: Any = None, **kwargs) -> Optional[SampleBatchType]:
"""Always returns a predefined batch.
Args:
_: dummy arg to match signature of sample() method
__: dummy arg to match signature of sample() method
**kwargs: dummy args to match signature of sample() method
Returns:
Predefined MultiAgentBatch fake_sample_output
"""
return fake_sample_output
buffer.sample = fake_sample
| [
"[email protected]"
]
| |
09c1ec7ba50d187876c91d783b241ad7c7c92641 | 75d8667735782cd1d0eb4877e52c89da5cd92dde | /nova/conductor/tasks/base.py | 170e5ebdf37200c833e06619b72a68d7ef3d0ae3 | [
"Apache-2.0"
]
| permissive | bopopescu/nova-token | ffecfd3ec561936b7d9d7e691bc57383cde05436 | ec98f69dea7b3e2b9013b27fd55a2c1a1ac6bfb2 | refs/heads/master | 2022-11-22T09:53:31.073483 | 2016-05-14T02:47:01 | 2016-05-15T22:02:55 | 282,105,621 | 0 | 0 | Apache-2.0 | 2020-07-24T02:42:19 | 2020-07-24T02:42:18 | null | UTF-8 | Python | false | false | 3,441 | py | begin_unit
comment|'# Licensed under the Apache License, Version 2.0 (the "License"); you may'
nl|'\n'
comment|'# not use this file except in compliance with the License. You may obtain'
nl|'\n'
comment|'# a copy of the License at'
nl|'\n'
comment|'#'
nl|'\n'
comment|'# http://www.apache.org/licenses/LICENSE-2.0'
nl|'\n'
comment|'#'
nl|'\n'
comment|'# Unless required by applicable law or agreed to in writing, software'
nl|'\n'
comment|'# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT'
nl|'\n'
comment|'# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the'
nl|'\n'
comment|'# License for the specific language governing permissions and limitations'
nl|'\n'
comment|'# under the License.'
nl|'\n'
nl|'\n'
name|'import'
name|'abc'
newline|'\n'
name|'import'
name|'functools'
newline|'\n'
nl|'\n'
name|'from'
name|'oslo_utils'
name|'import'
name|'excutils'
newline|'\n'
name|'import'
name|'six'
newline|'\n'
nl|'\n'
nl|'\n'
DECL|function|rollback_wrapper
name|'def'
name|'rollback_wrapper'
op|'('
name|'original'
op|')'
op|':'
newline|'\n'
indent|' '
op|'@'
name|'functools'
op|'.'
name|'wraps'
op|'('
name|'original'
op|')'
newline|'\n'
DECL|function|wrap
name|'def'
name|'wrap'
op|'('
name|'self'
op|')'
op|':'
newline|'\n'
indent|' '
name|'try'
op|':'
newline|'\n'
indent|' '
name|'return'
name|'original'
op|'('
name|'self'
op|')'
newline|'\n'
dedent|''
name|'except'
name|'Exception'
op|':'
newline|'\n'
indent|' '
name|'with'
name|'excutils'
op|'.'
name|'save_and_reraise_exception'
op|'('
op|')'
op|':'
newline|'\n'
indent|' '
name|'self'
op|'.'
name|'rollback'
op|'('
op|')'
newline|'\n'
dedent|''
dedent|''
dedent|''
name|'return'
name|'wrap'
newline|'\n'
nl|'\n'
nl|'\n'
dedent|''
op|'@'
name|'six'
op|'.'
name|'add_metaclass'
op|'('
name|'abc'
op|'.'
name|'ABCMeta'
op|')'
newline|'\n'
DECL|class|TaskBase
name|'class'
name|'TaskBase'
op|'('
name|'object'
op|')'
op|':'
newline|'\n'
nl|'\n'
DECL|member|__init__
indent|' '
name|'def'
name|'__init__'
op|'('
name|'self'
op|','
name|'context'
op|','
name|'instance'
op|')'
op|':'
newline|'\n'
indent|' '
name|'self'
op|'.'
name|'context'
op|'='
name|'context'
newline|'\n'
name|'self'
op|'.'
name|'instance'
op|'='
name|'instance'
newline|'\n'
nl|'\n'
dedent|''
op|'@'
name|'rollback_wrapper'
newline|'\n'
DECL|member|execute
name|'def'
name|'execute'
op|'('
name|'self'
op|')'
op|':'
newline|'\n'
indent|' '
string|'"""Run task\'s logic, written in _execute() method\n """'
newline|'\n'
name|'return'
name|'self'
op|'.'
name|'_execute'
op|'('
op|')'
newline|'\n'
nl|'\n'
dedent|''
op|'@'
name|'abc'
op|'.'
name|'abstractmethod'
newline|'\n'
DECL|member|_execute
name|'def'
name|'_execute'
op|'('
name|'self'
op|')'
op|':'
newline|'\n'
indent|' '
string|'"""Descendants should place task\'s logic here, while resource\n initialization should be performed over __init__\n """'
newline|'\n'
name|'pass'
newline|'\n'
nl|'\n'
DECL|member|rollback
dedent|''
name|'def'
name|'rollback'
op|'('
name|'self'
op|')'
op|':'
newline|'\n'
indent|' '
string|'"""Rollback failed task\n Descendants should implement this method to allow task user to\n rollback status to state before execute method was call\n """'
newline|'\n'
name|'pass'
newline|'\n'
dedent|''
dedent|''
endmarker|''
end_unit
| [
"[email protected]"
]
| |
1b84a43972de2a1222d45566cf6969e535176b4b | 0e0ce88c886370df9af51855115c99dfc003e5da | /2012/04_Sistema_de_Atomos/func.Curve/color_junto.py | 71bce10f2562d2ac7869dad6a0f355e2f20b019f | []
| no_license | miguelzeph/Python_Git | ed80db9a4f060836203df8cc2e42e003b0df6afd | 79d3b00236e7f4194d2a23fb016b43e9d09311e6 | refs/heads/master | 2021-07-08T18:43:45.855023 | 2021-04-01T14:12:23 | 2021-04-01T14:12:23 | 232,007,012 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 265 | py | from __future__ import division
from visual import *
c= curve( pos=[(-1,0,0)], color=color.blue,radius=1)
c.append( pos=(0,0,0) ) # add a blue point (optional)
c.append( pos=(0,0,0), color=color.orange) # same point
c.append( pos=(1,0,0) ) # add orange point | [
"[email protected]"
]
| |
24593538760a1009040733cb6b22ec4ed9378e7c | 0308ce9bc6772a9c49b4f6ff4b73a9a31b9ad33e | /source/django-oscar/tests/settings.py | 9cbdfebebdc619e0c15f36a191516da7942aeb4b | [
"BSD-3-Clause",
"LicenseRef-scancode-unknown-license-reference",
"BSD-2-Clause"
]
| permissive | SpivEgin/devenv | 27a9211c68293b16578fe3959578be822da7e1ca | 8c89aa77a38d6a0e915d99e02afcc5ae46fc39f3 | refs/heads/master | 2023-01-20T21:00:20.978045 | 2017-05-19T03:55:36 | 2017-05-19T03:55:36 | 91,119,096 | 1 | 1 | null | 2023-01-12T06:51:14 | 2017-05-12T18:27:47 | Python | UTF-8 | Python | false | false | 4,252 | py | import os
from django import VERSION as DJANGO_VERSION
import oscar
from oscar.defaults import * # noqa
# Path helper
location = lambda x: os.path.join(os.path.dirname(os.path.realpath(__file__)), x)
ALLOWED_HOSTS = ['test', '.oscarcommerce.com']
DATABASES = {
'default': {
'ENGINE': os.environ.get('DATABASE_ENGINE', 'django.db.backends.postgresql_psycopg2'),
'NAME': os.environ.get('DATABASE_NAME', 'oscar'),
}
}
INSTALLED_APPS = [
'django.contrib.auth',
'django.contrib.admin',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.sites',
'django.contrib.flatpages',
'django.contrib.staticfiles',
'widget_tweaks',
# contains models we need for testing
'tests._site.model_tests_app',
'tests._site.myauth',
# Use a custom partner app to test overriding models. I can't
# find a way of doing this on a per-test basis, so I'm using a
# global change.
] + oscar.get_core_apps(['tests._site.apps.partner', 'tests._site.apps.customer'])
AUTH_USER_MODEL = 'myauth.User'
TEMPLATES = [
{
'BACKEND': 'django.template.backends.django.DjangoTemplates',
'DIRS': [
location('_site/templates'),
oscar.OSCAR_MAIN_TEMPLATE_DIR,
],
'OPTIONS': {
'loaders': [
('django.template.loaders.cached.Loader', [
'django.template.loaders.filesystem.Loader',
'django.template.loaders.app_directories.Loader',
]),
],
'context_processors': [
'django.contrib.auth.context_processors.auth',
'django.template.context_processors.request',
'django.template.context_processors.debug',
'django.template.context_processors.i18n',
'django.template.context_processors.media',
'django.template.context_processors.static',
'django.contrib.messages.context_processors.messages',
'oscar.apps.search.context_processors.search_form',
'oscar.apps.customer.notifications.context_processors.notifications',
'oscar.apps.promotions.context_processors.promotions',
'oscar.apps.checkout.context_processors.checkout',
'oscar.core.context_processors.metadata',
]
}
}
]
if DJANGO_VERSION < (1, 10):
MIDDLEWARE_CLASSES = [
'django.middleware.common.CommonMiddleware',
'django.contrib.sessions.middleware.SessionMiddleware',
'django.middleware.csrf.CsrfViewMiddleware',
'django.contrib.auth.middleware.AuthenticationMiddleware',
'django.contrib.messages.middleware.MessageMiddleware',
'oscar.apps.basket.middleware.BasketMiddleware',
]
else:
MIDDLEWARE = [
'django.middleware.common.CommonMiddleware',
'django.contrib.sessions.middleware.SessionMiddleware',
'django.middleware.csrf.CsrfViewMiddleware',
'django.contrib.auth.middleware.AuthenticationMiddleware',
'django.contrib.messages.middleware.MessageMiddleware',
'oscar.apps.basket.middleware.BasketMiddleware',
]
AUTHENTICATION_BACKENDS = (
'oscar.apps.customer.auth_backends.EmailBackend',
'django.contrib.auth.backends.ModelBackend',
)
HAYSTACK_CONNECTIONS = {'default': {'ENGINE': 'haystack.backends.simple_backend.SimpleEngine'}}
PASSWORD_HASHERS = ['django.contrib.auth.hashers.MD5PasswordHasher']
ROOT_URLCONF = 'tests._site.urls'
LOGIN_REDIRECT_URL = '/accounts/'
STATIC_URL = '/static/'
DEBUG = False
SITE_ID = 1
USE_TZ = 1
APPEND_SLASH = True
DDF_DEFAULT_DATA_FIXTURE = 'tests.dynamic_fixtures.OscarDynamicDataFixtureClass'
SESSION_SERIALIZER = 'django.contrib.sessions.serializers.JSONSerializer'
LANGUAGE_CODE = 'en-gb'
# temporary workaround for issue in sorl-thumbnail in Python 3
# https://github.com/mariocesar/sorl-thumbnail/pull/254
THUMBNAIL_DEBUG = False,
OSCAR_INITIAL_ORDER_STATUS = 'A'
OSCAR_ORDER_STATUS_PIPELINE = {'A': ('B',), 'B': ()}
OSCAR_INITIAL_LINE_STATUS = 'a'
OSCAR_LINE_STATUS_PIPELINE = {'a': ('b', ), 'b': ()}
SECRET_KEY = 'notverysecret'
TEST_RUNNER = 'django.test.runner.DiscoverRunner'
| [
"[email protected]"
]
| |
4b640544a4d88ad57b67c273a4c148f38fbf646b | 3cedc2e0867a53ed2f36e01624f369693d1a050d | /rnn/rnn82.py | 58782ee9209e1ef370e14af147d9f4169ab882b7 | []
| no_license | lkpiel/mastersthesis | a471d8c6a5881e13599b22965dd3f437c83fc967 | 71c723b435b347d2805e159b6e10828f89541e98 | refs/heads/master | 2023-02-20T11:57:45.266361 | 2018-05-06T11:17:43 | 2018-05-06T11:17:43 | null | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 10,282 | py | #! /usr/bin/python3
import sys
print(sys.version)
import sys
import pandas
import numpy as np
from keras.preprocessing.sequence import pad_sequences
from keras.models import Sequential, load_model
from keras.layers import Dense, Dropout, Average, Merge, Layer, Conv2D, MaxPooling2D, GlobalAveragePooling2D, GlobalAveragePooling2D, AveragePooling2D, Reshape, BatchNormalization
from keras.optimizers import SGD, Adam
from keras import initializers
from keras import regularizers
from keras import constraints
from keras import backend as K
from IPython.core.debugger import Tracer
from keras.layers import Masking, LSTM, TimeDistributed, Bidirectional, Flatten
from keras.callbacks import ModelCheckpoint, ReduceLROnPlateau
from keras import callbacks
from keras.constraints import maxnorm, unitnorm
from sklearn.preprocessing import OneHotEncoder
import pdb
import keras
#FORMAT DATA
#ONE HOT ENCODES A GIVEN COLUMN
def onehot(x): return np.array(OneHotEncoder().fit_transform(x.values.reshape(-1,1)).todense())
def format(data):
del data['Unnamed: 605']
mask = data['AgeGroup'] == 'ag1'
column_name = 'AgeGroup'
data.loc[mask, column_name] = 0
mask = data['AgeGroup'] == 'ag2'
column_name = 'AgeGroup'
data.loc[mask, column_name] = 1
mask = data['AgeGroup'] == 'ag3'
column_name = 'AgeGroup'
data.loc[mask, column_name] = 2
mask = data['Gender'] == 'm'
column_name = 'Gender'
data.loc[mask, column_name] = 0
mask = data['Gender'] == 'f'
column_name = 'Gender'
data.loc[mask, column_name] = 1
return data
def smooth_labels(y, smooth_factor):
'''Convert a matrix of one-hot row-vector labels into smoothed versions.
# Arguments
y: matrix of one-hot row-vector labels to be smoothed
smooth_factor: label smoothing factor (between 0 and 1)
# Returns
A matrix of smoothed labels.
'''
assert len(y.shape) == 2
if 0 <= smooth_factor <= 1:
# label smoothing ref: https://www.robots.ox.ac.uk/~vgg/rg/papers/reinception.pdf
y *= 1 - smooth_factor
y += smooth_factor / y.shape[1]
else:
raise Exception('Invalid label smoothing factor: ' + str(smooth_factor))
return y
def dot_product(x, kernel):
"""
Wrapper for dot product operation, in order to be compatible with both
Theano and Tensorflow
Args:
x (): input
kernel (): weights
Returns:
"""
if K.backend() == 'tensorflow':
return K.squeeze(K.dot(x, K.expand_dims(kernel)), axis=-1)
else:
return K.dot(x, kernel)
class AttentionWithContext(Layer):
"""
Attention operation, with a context/query vector, for temporal data.
Supports Masking.
Follows the work of Yang et al. [https://www.cs.cmu.edu/~diyiy/docs/naacl16.pdf]
"Hierarchical Attention Networks for Document Classification"
by using a context vector to assist the attention
# Input shape
3D tensor with shape: `(samples, steps, features)`.
# Output shape
2D tensor with shape: `(samples, features)`.
How to use:
Just put it on top of an RNN Layer (GRU/LSTM/SimpleRNN) with return_sequences=True.
The dimensions are inferred based on the output shape of the RNN.
Note: The layer has been tested with Keras 2.0.6
Example:
model.add(LSTM(64, return_sequences=True))
model.add(AttentionWithContext())
# next add a Dense layer (for classification/regression) or whatever...
"""
def __init__(self,
W_regularizer=None, u_regularizer=None, b_regularizer=None,
W_constraint=None, u_constraint=None, b_constraint=None,
bias=True, **kwargs):
self.supports_masking = True
self.init = initializers.get('glorot_uniform')
self.W_regularizer = regularizers.get(W_regularizer)
self.u_regularizer = regularizers.get(u_regularizer)
self.b_regularizer = regularizers.get(b_regularizer)
self.W_constraint = constraints.get(W_constraint)
self.u_constraint = constraints.get(u_constraint)
self.b_constraint = constraints.get(b_constraint)
self.bias = bias
super(AttentionWithContext, self).__init__(**kwargs)
def build(self, input_shape):
print(input_shape)
assert len(input_shape) == 3
self.W = self.add_weight((input_shape[-1], input_shape[-1],),
initializer=self.init,
name='{}_W'.format(self.name),
regularizer=self.W_regularizer,
constraint=self.W_constraint)
if self.bias:
self.b = self.add_weight((input_shape[-1],),
initializer='zero',
name='{}_b'.format(self.name),
regularizer=self.b_regularizer,
constraint=self.b_constraint)
self.u = self.add_weight((input_shape[-1],),
initializer=self.init,
name='{}_u'.format(self.name),
regularizer=self.u_regularizer,
constraint=self.u_constraint)
super(AttentionWithContext, self).build(input_shape)
def compute_mask(self, input, input_mask=None):
# do not pass the mask to the next layers
return None
def call(self, x, mask=None):
uit = dot_product(x, self.W)
if self.bias:
uit += self.b
uit = K.tanh(uit)
ait = dot_product(uit, self.u)
a = K.exp(ait)
# apply mask after the exp. will be re-normalized next
if mask is not None:
# Cast the mask to floatX to avoid float64 upcasting in theano
a *= K.cast(mask, K.floatx())
# in some cases especially in the early stages of training the sum may be almost zero
# and this results in NaN's. A workaround is to add a very small positive number epsilon to the sum.
# a /= K.cast(K.sum(a, axis=1, keepdims=True), K.floatx())
a /= K.cast(K.sum(a, axis=1, keepdims=True) + K.epsilon(), K.floatx())
a = K.expand_dims(a)
weighted_input = x * a
return K.sum(weighted_input, axis=1)
def compute_output_shape(self, input_shape):
return input_shape[0], input_shape[-1]
import tensorflow as tf
import keras
from keras import backend as K
def age_group_accuracy(y_true, y_pred):
array = np.array([0]*13 + [1]*2 + [2]*13000000)
age_to_group = K.variable(value=array, dtype='int32', name='age_to_group')
ages_true = tf.gather(age_to_group, tf.cast(tf.rint(y_true), tf.int32))
ages_pred = tf.gather(age_to_group, tf.cast(tf.rint(y_pred), tf.int32))
return K.mean(K.equal(ages_true, ages_pred), axis=-1)
#LOAD LABELS
train_data_i_vectors = pandas.read_csv("/storage/tanel/child_age_gender/exp/ivectors_2048/train/export.csv", sep=" ")
train_data_i_vectors = format(train_data_i_vectors)
train_labels_age_group = onehot(train_data_i_vectors['AgeGroup'])
val_data_i_vectors = pandas.read_csv("/storage/tanel/child_age_gender/exp/ivectors_2048/dev/export.csv", sep=" ")
val_data_i_vectors = format(val_data_i_vectors)
val_labels_age_group = onehot(val_data_i_vectors['AgeGroup'])
test_data_i_vectors = pandas.read_csv("/storage/tanel/child_age_gender/exp/ivectors_2048/test/export.csv", sep=" ")
test_data_i_vectors = format(test_data_i_vectors)
test_labels_age_group = onehot(test_data_i_vectors['AgeGroup'])
train_labels_age = train_data_i_vectors['Age']
val_labels_age = val_data_i_vectors['Age']
test_labels_age = test_data_i_vectors['Age']
import random
x = []
for i in range(train_labels_age.size):
x.append(train_labels_age[i] + random.uniform(-0.49, 0.49))
train_labels_age = np.array(x)
np.save("./randomized_train_labels_0_5", train_labels_age)
#LOAD DATA
#train_data_padded = np.load("/storage/hpc_lkpiel/data/fbank_train_data_padded.npy", encoding="bytes")[..., np.newaxis]
val_data_padded = np.load("/storage/hpc_lkpiel/data/fbank_val_data_padded.npy", encoding="bytes")[..., np.newaxis]
test_data_padded = np.load("/storage/hpc_lkpiel/data/fbank_test_data_padded.npy", encoding="bytes")[..., np.newaxis]
print ("DATA LOADED")
################################################################################################
reduce_lr = ReduceLROnPlateau(monitor='val_loss', factor=0.7,
patience=2, min_lr=0.0001, verbose=1)
kernel_regularizer = regularizers.l2(0.0001)
model_82 = Sequential([
Conv2D(128, (3, 20), activation='relu', border_mode='valid', input_shape=(1107, 20, 1)),
Conv2D(128, (3, 1), activation='relu', border_mode='valid'),
Conv2D(128, (3, 1), activation='relu', border_mode='valid'),
Conv2D(128, (3, 1), activation='relu', border_mode='valid'),
Reshape((-1, 128)),
Bidirectional(LSTM(64, return_sequences=True)),
AttentionWithContext(),
Dense(1)
])
print ("model_82 BUILT")
model_82.compile(loss='mse', optimizer=SGD(0.01), metrics=[age_group_accuracy])
print ("model_82 COMPILED")
checkpoint = ModelCheckpoint(filepath='/models/model_82.hdf5', monitor='val_age_group_accuracy', save_best_only=True)
model_82.load_weights('/models/model_78.hdf5')
'''
history = model_82.fit(x=train_data_padded,
y=train_labels_age,
validation_data=(val_data_padded, val_labels_age),
epochs=30,
verbose=1,
batch_size=128,
callbacks=[checkpoint]
)
np.save('../history/history_model_82.npy', history.history)
modelHistory = np.load('../history/history_model_82.npy').item()
print ("HISTORY: ")
print (modelHistory)
'''
model_82.load_weights('/models/model_82.hdf5')
val_predictions = model_82.predict(val_data_padded)
print ("VAL PREDICTED")
test_predictions = model_82.predict(test_data_padded)
print ("TEST PREDICTED")
np.save('/home/hpc_lkpiel/predictions/val/model_82.npy', val_predictions)
print ("VAL SAVED")
np.save('/home/hpc_lkpiel/predictions/test/model_82.npy', test_predictions)
print ("TEST SAVED")
print ("WROTE TO FILE model_82")
######################################## | [
"[email protected]"
]
| |
da48712a86cf4e6e34fa836703e6b99e8b23ddda | 6fa7f99d3d3d9b177ef01ebf9a9da4982813b7d4 | /x44ZRvQtJ6TyZQhwx_20.py | f70bec02e1d036caf0e6764bad719e56541eceeb | []
| no_license | daniel-reich/ubiquitous-fiesta | 26e80f0082f8589e51d359ce7953117a3da7d38c | 9af2700dbe59284f5697e612491499841a6c126f | refs/heads/master | 2023-04-05T06:40:37.328213 | 2021-04-06T20:17:44 | 2021-04-06T20:17:44 | 355,318,759 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 260 | py |
def is_pandigital(n):
holder = []
for num in str(n):
holder.append(num)
unique = list(map(int, list(dict.fromkeys(holder))))
values_to_check = list(range(0, 10))
result = all(elem in unique for elem in values_to_check)
return(result)
| [
"[email protected]"
]
| |
0b4fa5edf61e03ebd315420faa11e09cf3b22720 | 564b9c85088ad5f3dd5929fb617f04086967558c | /m_f_CWproj/m_f_app/views.py | 249c133416c8d61b51313d7ea33c903c39fbd650 | []
| no_license | cs-fullstack-2019-spring/django-modelform1-cw-Joshtg1104 | 044b760627f350d1657470b30d1bb5ece5aed203 | dd96648f9b5f019b1cbf6deb198f63af3dc29915 | refs/heads/master | 2020-04-25T18:08:01.539136 | 2019-03-01T19:46:32 | 2019-03-01T19:46:32 | 172,974,343 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 661 | py | from django.http import HttpResponse
from django.shortcuts import render
from .forms import NewPostForm
# Create your views here.
# index function that applies the form "NewPostForm" to newPost.html
def index(request):
newPost = NewPostForm()
if request.method == "POST":
print("It works")
newPost = NewPostForm(request.POST)
if newPost.is_valid():
newPost.save(commit=True)
return render(request, "m_f_app/blogEntry.html") # render blogEntry.html once post is entered
else:
context = {
"posts": newPost
}
return render(request, "m_f_app/newPost.html", context)
| [
"[email protected]"
]
| |
c23eb8db332afec90a2ef03172fdfaffb27a4130 | 5cbd6ef31c94f671c76e49d4c8ea607df157ac02 | /tests/test_colors.py | 2e97602836ddf342aaabff90faf2d5f519541dd8 | [
"MIT"
]
| permissive | brianbruggeman/kelte | 5e182370f1d6b88cd9e262c06c075926870181f6 | 6dd8a53da07697ffc87e62aa397be7b3b08f0aa0 | refs/heads/master | 2020-03-20T23:17:58.841258 | 2018-07-10T21:53:18 | 2018-07-24T15:55:48 | 137,839,700 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 3,950 | py | import pytest
@pytest.mark.parametrize(
"data",
[
{ # default
"kwds": {},
"expected": {
"red": 0,
"green": 0,
"blue": 0,
"alpha": 255,
"hex": "00" * 3,
"hexa": "00" * 3 + "ff",
},
},
{ # black
"attrs": {"hexa": "000000ff"},
"expected": {
"red": 0,
"green": 0,
"blue": 0,
"alpha": 255,
"hex": "00" * 3,
"hexa": "00" * 3 + "ff",
},
},
{ # white
"kwds": {"r": 1.0, "g": 1.0, "b": 1.0, "a": 1.0},
"expected": {
"red": 255,
"green": 255,
"blue": 255,
"alpha": 255,
"hex": "ff" * 3,
"hexa": "ff" * 4,
},
},
],
)
def test_color_data_class(data):
from kelte.colors import Color
kwds = data.get("kwds")
attrs = data.get("attrs")
expected = data["expected"]
if kwds:
c = Color(**kwds)
else:
c = Color()
if attrs:
for attr_name, attr_value in attrs.items():
try:
setattr(c, attr_name, attr_value)
except AttributeError:
c.__dict__[attr_name].__setattr__("value", attr_value)
for key, value in expected.items():
assert getattr(c, key) == value
assert c == tuple(c)
@pytest.mark.parametrize(
"data",
[
{ # default
"name": "red",
"args": (255, 0, "00", 1.0),
"named_tdl_color": "red",
"named_args": (255, 0, 0, 255),
}
],
)
def test_tdl_color_integration(data):
import tcod as tdl
from kelte.colors import Color
# Get
name = data["name"]
args = data["args"]
tdl_color = getattr(tdl, name)
c = Color(*args)
assert tdl_color == c.tdl_color
# Set
named_tdl_color = data["named_tdl_color"]
named_args = data["named_args"]
named_tdl_color = getattr(tdl, named_tdl_color)
c.tdl_color = named_tdl_color
assert c == Color(*named_args)
assert c == named_tdl_color
@pytest.mark.parametrize(
"data",
[
{"args": [None], "raises": TypeError, "expected": None}, # None
{"kwds": {"value": 1.0}, "raises": None, "expected": 1.0}, # float
{"kwds": {"value": 255}, "raises": None, "expected": 1.0}, # integer
{"args": ["ff"], "raises": None, "expected": 1.0}, # string
{ # out of range integer
"kwds": {"value": 256},
"raises": ValueError,
"expected": None,
},
{ # out of range float
"kwds": {"value": 1.1},
"raises": ValueError,
"expected": None,
},
],
)
def test_convert(data):
from kelte.colors import _convert
args = data.get("args", [])
kwds = data.get("kwds", {})
raises = data.get("raises")
expected = data.get("expected")
def run(*args, **kwds):
if args and kwds:
result = _convert(*args, **kwds)
elif args:
result = _convert(*args)
elif kwds:
result = _convert(**kwds)
else:
raise RuntimeError("No data")
assert result == expected
if not raises:
run(*args, **kwds)
else:
with pytest.raises(raises):
run(*args, **kwds)
def test_get_color():
import tcod as tdl
from kelte.colors import get_color
tdl_colors = {
d: getattr(tdl, d) for d in dir(tdl) if isinstance(getattr(tdl, d), tdl.Color)
}
for tdl_color_name, tdl_color in tdl_colors.items():
kelte_color = get_color(tdl_color_name)
assert kelte_color == tdl_color
if __name__ == "__main__":
import sys
pytest.main(sys.argv)
| [
"[email protected]"
]
| |
dd2ad3e05f47b691c6e78059e89ea5774dccd80d | 6559138a129678027dc82c059330cfaa14d61897 | /src/0.py | 8065041b974a6cf118ce1091864cc2ab446a4da4 | [
"CC0-1.0"
]
| permissive | ytyaru/Python.curses.20210607091706 | 7c9b449920ba426a5a5bd7d739efc6f071007b38 | 50a38593cbe71da4d8c667a3afa8be0b36ee8f02 | refs/heads/master | 2023-05-31T13:19:40.736629 | 2021-06-09T04:05:11 | 2021-06-09T04:05:11 | 374,500,575 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 800 | py | #!/usr/bin/env python3
# coding: utf8
# 色をセットする。
import os, curses
def main(stdscr):
if not curses.has_colors(): raise Exception('このターミナルは色を表示できません。')
if not curses.can_change_color(): raise Exception('このターミナルは色を変更できません。')
curses.use_default_colors()
for i in range(1, curses.COLORS):
curses.init_pair(i, i-1, -1)
curses.init_pair(1, 0, 15) # curses.COLOR_BLACK, curses.COLOR_WHITE
try:
for i in range(1, curses.COLORS):
stdscr.addstr(str(i).rjust(3), curses.A_REVERSE | curses.color_pair(i))
except curses.ERR: pass
stdscr.refresh()
stdscr.getkey()
if __name__ == "__main__":
os.environ['TERM'] = 'xterm-256color'
curses.wrapper(main)
| [
"[email protected]"
]
| |
ad040adb2f5a1b4fa3eb0e8111e40362616bd91a | b22588340d7925b614a735bbbde1b351ad657ffc | /athena/Trigger/TrigSteer/TrigSteering/share/pureSteering_menu_with_multi_seeding.py | 29a92c02af4ab242863feb1cbb6a7965ae498cdf | []
| no_license | rushioda/PIXELVALID_athena | 90befe12042c1249cbb3655dde1428bb9b9a42ce | 22df23187ef85e9c3120122c8375ea0e7d8ea440 | refs/heads/master | 2020-12-14T22:01:15.365949 | 2020-01-19T03:59:35 | 2020-01-19T03:59:35 | 234,836,993 | 1 | 0 | null | null | null | null | UTF-8 | Python | false | false | 2,667 | py | from TriggerMenu.TriggerConfigLVL1 import TriggerConfigLVL1
from TriggerMenu.l1.Lvl1Flags import Lvl1Flags
from TriggerMenu.l1.Lvl1MenuItems import LVL1MenuItem
from TriggerMenu.l1.TriggerTypeDef import TT
from TriggerMenu.l1.Lvl1Condition import ThrCondition, Lvl1InternalTrigger
from TriggerMenu.l1.Logic import Logic
# L1 necessary
Lvl1Flags.thresholds = ['EM3','EM25i']
Lvl1Flags.items = ['L1_EM3','L1_EM25i']
l1menu = TriggerConfigLVL1(outputFile = 'l1menu.xml', menuName = 'menutest', topoMenu = None)
LVL1MenuItem.l1configForRegistration = l1menu
bgrp = Logic(Lvl1InternalTrigger('BGRP0')) & Logic(Lvl1InternalTrigger('BGRP1'))
thr = l1menu.registerThr('EM3','EM').addThrValue(3)
LVL1MenuItem('L1_EM3').setLogic( ThrCondition(thr) & bgrp ).setTriggerType( TT.calo )
thr = l1menu.registerThr('EM25i','EM').addThrValue(25)
LVL1MenuItem('L1_EM25i').setLogic( ThrCondition(thr) & bgrp ).setTriggerType( TT.calo )
from TriggerMenu.menu.TriggerPythonConfig import TriggerPythonConfig
from TriggerMenu.menu.HLTObjects import HLTChain
menu = TriggerPythonConfig('pureSteering_menu.xml')
from TrigSteeringTest.TrigSteeringTestConf import PESA__dummyAlgo, PESA__dummyHypo, PESA__newDummyAlgo2To1, PESA__newDummyAlgoAllTEs, PESA__dummyAlgoHLTErrorCode, PESA__dummyMonitoredFex, PESA__dummyAlgoForCalibration
Egamma = PESA__dummyAlgo('Egamma_L2') # create configurable instance
Egamma2 = PESA__dummyAlgo('Egamma2_L2') # create configurable another instance
EgammaAdv3 = PESA__dummyAlgo("EgammaAdv3")
EgammaAdv_L2 = PESA__dummyAlgo("EgammaAdv_L2")
menu.addSequence("EM15i" , [ Egamma, Egamma2, EgammaAdv3 ] , "em15i" ) # use bot here, mixing with old fassioned way
menu.addSequence("em15i" , EgammaAdv_L2, "em15i'" ) # create configurable on the fly
# chains
# passage based on EM3
chain = HLTChain( chain_name="L2_Ored", chain_counter="100", lower_chain_name="L1_MU6,L1_EM25i", level="HLT", prescale="1", pass_through="0")
chain.addStreamTag('electrons', prescale='1', obeyLB="0")
chain.addGroup("electrons")
menu.addHLTChain(chain)
chain = HLTChain( chain_name="L2_e25i", chain_counter="101", lower_chain_name="L1_EM25i", level="HLT", prescale="1", pass_through="0")
chain.addStreamTag('electrons', prescale='1', obeyLB="0")
chain.addGroup("electrons")
menu.addHLTChain(chain)
chain = HLTChain( chain_name="L2_mu6", chain_counter="102", lower_chain_name="L1_MU6", level="HLT", prescale="1", pass_through="0")
chain.addStreamTag('electrons', prescale='1', obeyLB="0")
chain.addGroup("electrons")
menu.addHLTChain(chain)
menu.writeConfigFiles();
menu.dot(algs=True)
| [
"[email protected]"
]
| |
a149115e46739b848bda41b1dcf90d87e52bf605 | 2f98aa7e5bfc2fc5ef25e4d5cfa1d7802e3a7fae | /python/python_13371.py | 322e85169c6dc9863b7ef4ed1e782d6d7ded750a | []
| no_license | AK-1121/code_extraction | cc812b6832b112e3ffcc2bb7eb4237fd85c88c01 | 5297a4a3aab3bb37efa24a89636935da04a1f8b6 | refs/heads/master | 2020-05-23T08:04:11.789141 | 2015-10-22T19:19:40 | 2015-10-22T19:19:40 | null | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 135 | py | # How to implemente oauth process in a different window and then reload caller window
window.parent.location.reload();
window.close();
| [
"[email protected]"
]
| |
9f71501b969443ac8f8eb704fe52c12ef0ec0c03 | 6e9c9128054da7eea28a4627381df28f95416ee5 | /finance_ml/labeling/trend.py | 5f114e57c71fe6fb5efa361de0ecb43606c8b615 | [
"MIT"
]
| permissive | BTCTON/finance_ml | c5a4ad2486608ad19c92c04c70fe513be135c236 | a585be2d04db5a749eb6b39b7336e5aeb30d6327 | refs/heads/master | 2021-12-23T07:53:13.791609 | 2021-10-15T01:47:41 | 2021-10-15T01:47:41 | 158,898,508 | 1 | 0 | null | null | null | null | UTF-8 | Python | false | false | 1,671 | py | import numpy as np
import pandas as pd
import multiprocessing as mp
import statsmodels.api as sm
from ..multiprocessing import mp_pandas_obj
def t_val_linreg(close):
x = np.ones((close.shape[0], 2))
x[:, 1] = np.arange(close.shape[0])
ols = sm.OLS(close, x).fit()
return ols.tvalues[1]
def _get_bins_from_trend(molecule, close, min_step, max_step, step):
out = pd.DataFrame(index=molecule, columns=['t1', 't_val','bin'])
hrzns = list(range(min_step, max_step + 1, step))
for dt0 in molecule:
iloc0 = close.index.get_loc(dt0)
if iloc0 + max(hrzns) > close.shape[0]:
continue
df0 = pd.Series()
for hrzn in hrzns:
dt1 = close.index[iloc0 + hrzn - 1]
df1 = close.loc[dt0:dt1]
df0.loc[dt1] = t_val_linreg(df1.values)
# Get maximum tstats point
dt1 = df0.replace([-np.inf, np.inf, np.nan], 0).abs().idxmax()
out.loc[dt0, ['t1', 't_val', 'bin']] = df0.index[-1], df0[dt1], np.sign(df0[dt1])
out['t1'] = pd.to_datetime(out['t1'])
out['bin'] = pd.to_numeric(out['bin'], downcast='signed')
return out.dropna(subset=['bin'])
def get_bins_from_trend(close, max_step, min_step=3, step=1, num_threads=None):
if num_threads is None:
num_threads = mp.cpu_count()
output = mp_pandas_obj(func=_get_bins_from_trend,
pd_obj=('molecule', close.index),
num_threads=num_threads,
close=close,
max_step=max_step,
min_step=min_step,
step=step)
return output
| [
"[email protected]"
]
| |
796050d7fcc74771bea6bbb5c4dcb549237f4767 | 88f7a8c58de6003722ec45a0ad752023470a2121 | /snippets/logger.py | fdbfbc110e6c46ea24078264cf0f075ce6dd0b5b | [
"MIT"
]
| permissive | boada/planckClusters | 5f90fcdddb13040a6ba50ef8d24eac390ae6e476 | 731be562e9e91e4468f5a90d8f161a4e9593fcc8 | refs/heads/master | 2021-01-13T14:30:19.473845 | 2019-12-18T21:19:43 | 2019-12-18T21:19:43 | 74,033,781 | 3 | 0 | null | 2017-09-05T15:09:18 | 2016-11-17T14:18:33 | Python | UTF-8 | Python | false | false | 1,452 | py | """
These functions can be used for logging information.
.. Warning:: logger is not multiprocessing safe.
:author: Sami-Matias Niemi
:contact: [email protected]
:version: 0.3
"""
from __future__ import print_function
from builtins import object
import logging
import logging.handlers
def setUpLogger(log_filename, loggername='logger'):
"""
Sets up a logger.
:param: log_filename: name of the file to save the log.
:param: loggername: name of the logger
:return: logger instance
"""
# create logger
logger = logging.getLogger(loggername)
logger.setLevel(logging.DEBUG)
# Add the log message handler to the logger
handler = logging.handlers.RotatingFileHandler(log_filename)
#maxBytes=20, backupCount=5)
# create formatter
formatter = logging.Formatter(
'%(asctime)s - %(module)s - %(funcName)s - %(levelname)s - %(message)s')
# add formatter to ch
handler.setFormatter(formatter)
# add handler to logger
logger.addHandler(handler)
return logger
class SimpleLogger(object):
"""
A simple class to create a log file or print the information on screen.
"""
def __init__(self, filename, verbose=False):
self.file = open(filename, 'w')
self.verbose = verbose
def write(self, text):
"""
Writes text either to file or screen.
"""
print(text, file=self.file)
if self.verbose: print(text)
| [
"[email protected]"
]
| |
56bbe72cc69782b3a1eb894bcbf4c83145739ce8 | 19907d6f47f7af804b0ddee642d98edd170d7f58 | /tests/test_param.py | 943303a993ebac47c916b34093468acd6d0c3503 | [
"MIT"
]
| permissive | GuancongLuo/roslibpy | 3560080271d9df841a051abab402479fdcc895f2 | 92b97d6daa78d30384e3a347d46be51c6e7fbd01 | refs/heads/main | 2023-07-13T02:06:10.846579 | 2021-08-13T11:48:22 | 2021-08-13T11:48:22 | null | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 337 | py | from roslibpy import Param
from roslibpy import Ros
def test_param_manipulation():
ros = Ros('127.0.0.1', 9090)
ros.run()
param = Param(ros, 'test_param')
assert param.get() is None
param.set('test_value')
assert param.get() == 'test_value'
param.delete()
assert param.get() is None
ros.close()
| [
"[email protected]"
]
| |
09b864579ac3497d0486423317416ded477a0db9 | 711756b796d68035dc6a39060515200d1d37a274 | /output_cog_tags/initial_9331.py | 552551a0597c6aa2699bf45fd4d1323e76fb108c | []
| no_license | batxes/exocyst_scripts | 8b109c279c93dd68c1d55ed64ad3cca93e3c95ca | a6c487d5053b9b67db22c59865e4ef2417e53030 | refs/heads/master | 2020-06-16T20:16:24.840725 | 2016-11-30T16:23:16 | 2016-11-30T16:23:16 | 75,075,164 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 4,332 | py | import _surface
import chimera
try:
import chimera.runCommand
except:
pass
from VolumePath import markerset as ms
try:
from VolumePath import Marker_Set, Link
new_marker_set=Marker_Set
except:
from VolumePath import volume_path_dialog
d= volume_path_dialog(True)
new_marker_set= d.new_marker_set
marker_sets={}
surf_sets={}
if "Cog1_Anch" not in marker_sets:
s=new_marker_set('Cog1_Anch')
marker_sets["Cog1_Anch"]=s
s= marker_sets["Cog1_Anch"]
mark=s.place_marker((565, 306, 449), (0, 0, 1), 21.9005)
if "Cog2_GFPN" not in marker_sets:
s=new_marker_set('Cog2_GFPN')
marker_sets["Cog2_GFPN"]=s
s= marker_sets["Cog2_GFPN"]
mark=s.place_marker((962, 365, 656), (1, 0.5, 0), 21.9005)
if "Cog2_GFPC" not in marker_sets:
s=new_marker_set('Cog2_GFPC')
marker_sets["Cog2_GFPC"]=s
s= marker_sets["Cog2_GFPC"]
mark=s.place_marker((508, 155, 114), (1, 0.5, 0), 21.9005)
if "Cog2_Anch" not in marker_sets:
s=new_marker_set('Cog2_Anch')
marker_sets["Cog2_Anch"]=s
s= marker_sets["Cog2_Anch"]
mark=s.place_marker((684, 442, 968), (1, 0.5, 0), 21.9005)
if "Cog3_GFPN" not in marker_sets:
s=new_marker_set('Cog3_GFPN')
marker_sets["Cog3_GFPN"]=s
s= marker_sets["Cog3_GFPN"]
mark=s.place_marker((865, 924, 616), (1, 0.87, 0), 21.9005)
if "Cog3_GFPC" not in marker_sets:
s=new_marker_set('Cog3_GFPC')
marker_sets["Cog3_GFPC"]=s
s= marker_sets["Cog3_GFPC"]
mark=s.place_marker((975, 275, 494), (1, 0.87, 0), 21.9005)
if "Cog3_Anch" not in marker_sets:
s=new_marker_set('Cog3_Anch')
marker_sets["Cog3_Anch"]=s
s= marker_sets["Cog3_Anch"]
mark=s.place_marker((73, 361, 504), (1, 0.87, 0), 21.9005)
if "Cog4_GFPN" not in marker_sets:
s=new_marker_set('Cog4_GFPN')
marker_sets["Cog4_GFPN"]=s
s= marker_sets["Cog4_GFPN"]
mark=s.place_marker((980, 209, 831), (0.97, 0.51, 0.75), 21.9005)
if "Cog4_GFPC" not in marker_sets:
s=new_marker_set('Cog4_GFPC')
marker_sets["Cog4_GFPC"]=s
s= marker_sets["Cog4_GFPC"]
mark=s.place_marker((337, 707, 802), (0.97, 0.51, 0.75), 21.9005)
if "Cog4_Anch" not in marker_sets:
s=new_marker_set('Cog4_Anch')
marker_sets["Cog4_Anch"]=s
s= marker_sets["Cog4_Anch"]
mark=s.place_marker((925, 828, 933), (0.97, 0.51, 0.75), 21.9005)
if "Cog5_GFPN" not in marker_sets:
s=new_marker_set('Cog5_GFPN')
marker_sets["Cog5_GFPN"]=s
s= marker_sets["Cog5_GFPN"]
mark=s.place_marker((633, 959, 252), (0.39, 0.31, 0.14), 21.9005)
if "Cog5_GFPC" not in marker_sets:
s=new_marker_set('Cog5_GFPC')
marker_sets["Cog5_GFPC"]=s
s= marker_sets["Cog5_GFPC"]
mark=s.place_marker((382, 631, 801), (0.39, 0.31, 0.14), 21.9005)
if "Cog5_Anch" not in marker_sets:
s=new_marker_set('Cog5_Anch')
marker_sets["Cog5_Anch"]=s
s= marker_sets["Cog5_Anch"]
mark=s.place_marker((701, 484, 387), (0.39, 0.31, 0.14), 21.9005)
if "Cog6_GFPN" not in marker_sets:
s=new_marker_set('Cog6_GFPN')
marker_sets["Cog6_GFPN"]=s
s= marker_sets["Cog6_GFPN"]
mark=s.place_marker((288, 985, 78), (0.6, 0.31, 0.64), 21.9005)
if "Cog6_GFPC" not in marker_sets:
s=new_marker_set('Cog6_GFPC')
marker_sets["Cog6_GFPC"]=s
s= marker_sets["Cog6_GFPC"]
mark=s.place_marker((732, 724, 98), (0.6, 0.31, 0.64), 21.9005)
if "Cog6_Anch" not in marker_sets:
s=new_marker_set('Cog6_Anch')
marker_sets["Cog6_Anch"]=s
s= marker_sets["Cog6_Anch"]
mark=s.place_marker((383, 183, 918), (0.6, 0.31, 0.64), 21.9005)
if "Cog7_GFPN" not in marker_sets:
s=new_marker_set('Cog7_GFPN')
marker_sets["Cog7_GFPN"]=s
s= marker_sets["Cog7_GFPN"]
mark=s.place_marker((749, 218, 45), (0.89, 0.1, 0.1), 21.9005)
if "Cog7_GFPC" not in marker_sets:
s=new_marker_set('Cog7_GFPC')
marker_sets["Cog7_GFPC"]=s
s= marker_sets["Cog7_GFPC"]
mark=s.place_marker((534, 194, 633), (0.89, 0.1, 0.1), 21.9005)
if "Cog7_Anch" not in marker_sets:
s=new_marker_set('Cog7_Anch')
marker_sets["Cog7_Anch"]=s
s= marker_sets["Cog7_Anch"]
mark=s.place_marker((768, 306, 997), (0.89, 0.1, 0.1), 21.9005)
if "Cog8_GFPC" not in marker_sets:
s=new_marker_set('Cog8_GFPC')
marker_sets["Cog8_GFPC"]=s
s= marker_sets["Cog8_GFPC"]
mark=s.place_marker((925, 416, 300), (0.3, 0.69, 0.29), 21.9005)
if "Cog8_Anch" not in marker_sets:
s=new_marker_set('Cog8_Anch')
marker_sets["Cog8_Anch"]=s
s= marker_sets["Cog8_Anch"]
mark=s.place_marker((464, 22, 225), (0.3, 0.69, 0.29), 21.9005)
for k in surf_sets.keys():
chimera.openModels.add([surf_sets[k]])
| [
"[email protected]"
]
| |
6e30cc3df48b3e879295e8c3e9842e10d1b8cbbe | 67a7c314fc99d9cd7a677fcb6bc2b6dfa20a9cff | /feeds/admin.py | 1468de4b629f86c39aa9a3bf5e76bab219607b47 | []
| no_license | Xodarap/Eipi | 7ebbb9fd861fdb411c1e273ea5d2a088aa579930 | d30997a737912e38316c198531f7cb9c5693c313 | refs/heads/master | 2016-09-11T06:28:01.333832 | 2011-05-03T15:35:20 | 2011-05-03T15:35:20 | 1,367,645 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 135 | py | from eipi2.feeds.models import Story, Source
from django.contrib import admin
#admin.site.register(Story)
admin.site.register(Source)
| [
"eipi@mybox.(none)"
]
| eipi@mybox.(none) |
9a1fd6a0cc906e207694663ee5bd730c1dabfb9a | 4ae3b27a1d782ae43bc786c841cafb3ace212d55 | /Test_Slen/Pytest_proj/01/unit_proj1/unittest_code/test_calc.py | ad41eb73c03723bfdbcc20d36f7d612633eab79e | []
| no_license | bopopescu/Py_projects | c9084efa5aa02fd9ff6ed8ac5c7872fedcf53e32 | a2fe4f198e3ca4026cf2e3e429ac09707d5a19de | refs/heads/master | 2022-09-29T20:50:57.354678 | 2020-04-28T05:23:14 | 2020-04-28T05:23:14 | null | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 1,838 | py | # Run all tests in the project
# (01) C:\Users\jsun\Documents\Py_projects\Pytest_proj\01\unit_proj1>python -m unittest discover
#
# run certain test files
# (01) C:\Users\jsun\Documents\Py_projects\Pytest_proj\01\unit_proj1>python -m unittest unittest_code.test_calc
#
# run a module in a file
# (01) C:\Users\jsun\Documents\Py_projects\Pytest_proj\01\unit_proj1>python -m unittest unittest_code.test_calc.CalculatorTest
import unittest
from dev_code.calc import Calculator
NUMBER_1 = 3.0
NUMBER_2 = 2.0
FAILURE = 'incorrect value'
class CalculatorTest(unittest.TestCase):
def setUp(self):
self.calc = Calculator()
def test_last_answer_init(self):
value = self.calc.last_answer
self.assertEqual(value, 0.0, FAILURE)
def test_add(self):
value = self.calc.add(NUMBER_1, NUMBER_2)
self.assertEqual(value, 5.0, FAILURE)
self.assertEqual(value, self.calc.last_answer, FAILURE)
def test_subtract(self):
value = self.calc.subtract(NUMBER_1, NUMBER_2)
self.assertEqual(value, 1.0, FAILURE)
self.assertEqual(value, self.calc.last_answer, FAILURE)
def test_subtract_negative(self):
value = self.calc.subtract(NUMBER_2, NUMBER_1)
self.assertEqual(value, -1.0, FAILURE)
self.assertEqual(value, self.calc.last_answer, FAILURE)
def test_multiply(self):
value = self.calc.multiply(NUMBER_1, NUMBER_2)
self.assertEqual(value, 6.0, FAILURE)
self.assertEqual(value, self.calc.last_answer, FAILURE)
def test_divide(self):
value = self.calc.divide(NUMBER_1, NUMBER_2)
self.assertEqual(value, 1.5, FAILURE)
self.assertEqual(value, self.calc.last_answer, FAILURE)
def test_divide_by_zero(self):
self.assertRaises(ZeroDivisionError, self.calc.divide, NUMBER_1, 0) | [
"[email protected]"
]
| |
f464a13b1fcfdec9f6c272a83db482c04e00a7ea | 6fcfb638fa725b6d21083ec54e3609fc1b287d9e | /python/darcymason_pydicom/pydicom-master/pydicom/examples/write_new.py | fa26c8a48166bc0bbc812d9e5803e25e98916302 | []
| no_license | LiuFang816/SALSTM_py_data | 6db258e51858aeff14af38898fef715b46980ac1 | d494b3041069d377d6a7a9c296a14334f2fa5acc | refs/heads/master | 2022-12-25T06:39:52.222097 | 2019-12-12T08:49:07 | 2019-12-12T08:49:07 | 227,546,525 | 10 | 7 | null | 2022-12-19T02:53:01 | 2019-12-12T07:29:39 | Python | UTF-8 | Python | false | false | 2,901 | py | # write_new.py
"""Simple example of writing a DICOM file from scratch using pydicom.
This example does not produce a DICOM standards compliant file as written,
you will have to change UIDs to valid values and add all required DICOM data
elements
"""
# Copyright (c) 2010-2012 Darcy Mason
# This file is part of pydicom, released under a modified MIT license.
# See the file license.txt included with this distribution, also
# available at https://github.com/darcymason/pydicom
from __future__ import print_function
import sys
import datetime
import os.path
import pydicom
from pydicom.dataset import Dataset, FileDataset
import pydicom.uid
if __name__ == "__main__":
print("---------------------------- ")
print("write_new.py example program")
print("----------------------------")
print("Demonstration of writing a DICOM file using pydicom")
print("NOTE: this is only a demo. Writing a DICOM standards compliant file")
print("would require official UIDs, and checking the DICOM standard to ensure")
print("that all required data elements were present.")
print()
if sys.platform.lower().startswith("win"):
filename = r"c:\temp\test.dcm"
filename2 = r"c:\temp\test-explBig.dcm"
else:
homedir = os.path.expanduser("~")
filename = os.path.join(homedir, "test.dcm")
filename2 = os.path.join(homedir, "test-explBig.dcm")
print("Setting file meta information...")
# Populate required values for file meta information
file_meta = Dataset()
file_meta.MediaStorageSOPClassUID = '1.2.840.10008.5.1.4.1.1.2' # CT Image Storage
file_meta.MediaStorageSOPInstanceUID = "1.2.3" # !! Need valid UID here for real work
file_meta.ImplementationClassUID = "1.2.3.4" # !!! Need valid UIDs here
print("Setting dataset values...")
# Create the FileDataset instance (initially no data elements, but file_meta supplied)
ds = FileDataset(filename, {}, file_meta=file_meta, preamble=b"\0" * 128)
# Add the data elements -- not trying to set all required here. Check DICOM standard
ds.PatientName = "Test^Firstname"
ds.PatientID = "123456"
# Set the transfer syntax
ds.is_little_endian = True
ds.is_implicit_VR = True
# Set creation date/time
dt = datetime.datetime.now()
ds.ContentDate = dt.strftime('%Y%m%d')
timeStr = dt.strftime('%H%M%S.%f') # long format with micro seconds
ds.ContentTime = timeStr
print("Writing test file", filename)
ds.save_as(filename)
print("File saved.")
# Write as a different transfer syntax
ds.file_meta.TransferSyntaxUID = pydicom.uid.ExplicitVRBigEndian # XXX shouldn't need this but pydicom 0.9.5 bug not recognizing transfer syntax
ds.is_little_endian = False
ds.is_implicit_VR = False
print("Writing test file as Big Endian Explicit VR", filename2)
ds.save_as(filename2)
| [
"[email protected]"
]
| |
4bb0c638739f9c54859ab0701f29eb16d585d092 | d4f87828a3767788dfbd83ef150d4af13c8ac762 | /test/test_session.py | 7a5ca329d60dca3375956d57a7a7f1204720222e | []
| no_license | n-sundararajan/python-looker-api | 55dc6779843e28796c573a62ee30b75e135e8be5 | 498301068e7bd983b99d6647785a9f3d315ceadd | refs/heads/master | 2020-03-19T13:52:39.284698 | 2018-06-08T10:33:07 | 2018-06-08T10:33:07 | 136,599,073 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 2,408 | py | # coding: utf-8
"""
Looker API 3.0 Reference
### Authorization The Looker API uses Looker **API3** credentials for authorization and access control. Looker admins can create API3 credentials on Looker's **Admin/Users** page. Pass API3 credentials to the **/login** endpoint to obtain a temporary access_token. Include that access_token in the Authorization header of Looker API requests. For details, see [Looker API Authorization](https://looker.com/docs/r/api/authorization) ### Client SDKs The Looker API is a RESTful system that should be usable by any programming language capable of making HTTPS requests. Client SDKs for a variety of programming languages can be generated from the Looker API's Swagger JSON metadata to streamline use of the Looker API in your applications. A client SDK for Ruby is available as an example. For more information, see [Looker API Client SDKs](https://looker.com/docs/r/api/client_sdks) ### Try It Out! The 'api-docs' page served by the Looker instance includes 'Try It Out!' buttons for each API method. After logging in with API3 credentials, you can use the \"Try It Out!\" buttons to call the API directly from the documentation page to interactively explore API features and responses. ### Versioning Future releases of Looker will expand this API release-by-release to securely expose more and more of the core power of Looker to API client applications. API endpoints marked as \"beta\" may receive breaking changes without warning. Stable (non-beta) API endpoints should not receive breaking changes in future releases. For more information, see [Looker API Versioning](https://looker.com/docs/r/api/versioning) # noqa: E501
OpenAPI spec version: 3.0.0
Generated by: https://github.com/swagger-api/swagger-codegen.git
"""
from __future__ import absolute_import
import unittest
import swagger_client
from swagger_client.models.session import Session # noqa: E501
from swagger_client.rest import ApiException
class TestSession(unittest.TestCase):
"""Session unit test stubs"""
def setUp(self):
pass
def tearDown(self):
pass
def testSession(self):
"""Test Session"""
# FIXME: construct object with mandatory attributes with example values
# model = swagger_client.models.session.Session() # noqa: E501
pass
if __name__ == '__main__':
unittest.main()
| [
"[email protected]"
]
| |
399662f6cd4782e90c7f737db9a999755c6b4f28 | b2f660f8b81cdf172baaa20c16ad845c3b1944d1 | /core/src/cgcloud/core/cloud_init_box.py | 85b565e69b7fa50f89413bdef6dac5a5c3c41a5b | []
| no_license | adderan/cgcloud | 761088e0e4e969a728ba4e406823aa38e535ab37 | 6430e6816ee6233dc219a9df4c00c8112e13515b | refs/heads/master | 2020-12-26T03:10:21.211589 | 2015-07-21T06:02:04 | 2015-07-21T06:02:04 | 39,169,013 | 0 | 0 | null | 2015-07-16T01:04:08 | 2015-07-16T01:04:07 | null | UTF-8 | Python | false | false | 8,344 | py | from abc import abstractmethod
from fabric.operations import run
import yaml
from cgcloud.core.box import Box, fabric_task
from cgcloud.core.instance_type import ec2_instance_types
class CloudInitBox( Box ):
"""
A box that uses Canonical's cloud-init to initialize the EC2 instance.
"""
def _ephemeral_mount_point( self, i ):
return '/mnt/ephemeral' + ('' if i == 0 else str( i ))
@abstractmethod
def _get_package_installation_command( self, package ):
"""
Return the command that needs to be invoked to install the given package. The returned
command is an array whose first element is a path or file name of an executable while the
remaining elements are arguments to that executable.
"""
raise NotImplementedError( )
def _get_virtual_block_device_prefix( self ):
"""
Return the common prefix of paths representing virtual block devices on this box.
"""
return '/dev/xvd'
def _populate_cloud_config( self, instance_type, user_data ):
"""
Populate cloud-init's configuration for injection into a newly created instance
:param user_data: a dictionary that will be be serialized into YAML and used as the
instance's user-data
"""
# see __wait_for_cloud_init_completion()
runcmd = user_data.setdefault( 'runcmd', [ ] )
runcmd.append( [ 'touch', '/tmp/cloud-init.done' ] )
#
# Lucid's and Oneiric's cloud-init mount ephemeral storage on /mnt instead of
# /mnt/ephemeral, Fedora doesn't mount it at all. To keep it consistent across
# releases and platforms we should be explicit.
#
# Also note that Lucid's mountall waits on the disk device. On t1.micro instances this
# doesn't show up causing Lucid to hang on boot on this type. The cleanest way to handle
# this is to remove the ephemeral entry on t1.micro instances by specififying [
# 'ephemeral0', None ]. Unfortunately, there is a bug [1] in cloud-init that causes the
# removal of the entry to be ineffective. The "nobootwait" option might be a workaround
# but Fedora stopped supporting it such that now only Ubuntu supports it. A better
# workaround is to always have the ephemeral entry in fstab, even on micro instances,
# but to exclude the 'auto' option such that when cloud-init runs 'mount -a', it will not
# get mounted. We can then mount the filesystem explicitly, except on micro instances.
#
# The important thing to keep in mind is that when booting instance B from an image
# created on a instance A, the fstab from A will be used by B before cloud-init can make
# its changes to fstab. This behavior is a major cause of problems and the reason why
# micro instances tend to freeze when booting from images created on non-micro instances
# since their fstab initially refers to an ephemeral volume that doesn't exist. The
# nobootwait and nofail flags are really just attempts at working around this issue.
#
# [1]: https://bugs.launchpad.net/cloud-init/+bug/1291820
#
mounts = user_data.setdefault( 'mounts', [ ] )
mounts.append(
[ 'ephemeral0', self._ephemeral_mount_point( 0 ), 'auto', 'defaults,noauto' ] )
commands = [ ]
# On instances booted from a stock images we will likely need to install mdadm.
# Furthermore, we need to install it on every instance type since an image taken from an
# instance with one instance store volume may be used to spawn an instance with multiple
# instance store volumes.
if self.generation == 0:
commands.append( self._get_package_installation_command( 'mdadm' ) )
num_disks = instance_type.disks
device_prefix = self._get_virtual_block_device_prefix( )
def device_name( i ):
return device_prefix + (chr( ord( 'b' ) + i ))
if num_disks == 0:
pass
elif instance_type.disk_type == 'HDD':
# For HDDs we assume the disk is formatted and we mount each disk separately
for i in range( num_disks ):
mount = self._ephemeral_mount_point( i )
if mount is not None:
commands.append( [ 'mkdir', '-p', mount ] )
commands.append( [ 'mount', device_name( i ), mount ] )
elif num_disks == 1:
# The r3 family does not format the ephemeral SSD volume so will have to do it
# manually. Other families may also exhibit that behavior so we will format every SSD
# volume. It only takes a second *and* ensures that we have a particular type of
# filesystem, i.e. ext4. We don't know what the device will be (cloud-init determines
# this at runtime) named so we simply try all possible names.
if instance_type.disk_type == 'SSD':
commands.append( [ 'mkfs.ext4', '-E', 'nodiscard', device_name( 0 ) ] )
commands.append( [ 'mount', device_name( 0 ), self._ephemeral_mount_point( 0 ) ] )
elif num_disks > 1:
# RAID multiple SSDs into one, then format and mount it.
devices = [ device_name( i ) for i in range( num_disks ) ]
commands.extend( [
[ 'mdadm',
'--create', '/dev/md0',
'--run', # do not prompt for confirmation
'--level', '0', # RAID 0, i.e. striped
'--raid-devices', str( num_disks ) ] + devices,
# Disable auto scan at boot time, which would otherwise mount device on reboot
# as md127 before these commands are run.
'echo "AUTO -all" > /etc/mdadm/mdadm.conf',
# Copy mdadm.conf into init ramdisk
[ 'update-initramfs', '-u' ],
[ 'mkfs.ext4', '-E', 'nodiscard', '/dev/md0' ],
[ 'mount', '/dev/md0', self._ephemeral_mount_point( 0 ) ] ] )
else:
assert False
# Prepend commands as a best effort to getting volume preparation done as early as
# possible in the boot sequence. Note that CloudInit's 'bootcmd' is run on every boot,
# 'runcmd' only once after instance creation.
bootcmd = user_data.setdefault( 'bootcmd', [ ] )
bootcmd[ 0:0 ] = commands
def _populate_instance_creation_args( self, image, kwargs ):
super( CloudInitBox, self )._populate_instance_creation_args( image, kwargs )
cloud_config = { }
instance_type = ec2_instance_types[ kwargs[ 'instance_type' ] ]
self._populate_cloud_config( instance_type, cloud_config )
if cloud_config:
if 'user_data' in kwargs:
raise ReferenceError( "Conflicting user-data" )
user_data = '#cloud-config\n' + yaml.dump( cloud_config )
kwargs[ 'user_data' ] = user_data
def _on_instance_ready( self, first_boot ):
super( CloudInitBox, self )._on_instance_ready( first_boot )
if first_boot:
# cloud-init is run on every boot, but only on the first boot will it invoke the user
# script that signals completion
self.__wait_for_cloud_init_completion( )
@fabric_task
def __wait_for_cloud_init_completion( self ):
"""
Wait for cloud-init to finish its job such as to avoid getting in its way. Without this,
I've seen weird errors with 'apt-get install' not being able to find any packages.
Since this method belongs to a mixin, the author of a derived class is responsible for
invoking this method before any other setup action.
"""
#
# /var/lib/cloud/instance/boot-finished is only being written by newer cloud-init releases.
# For example, it isn't being written by the cloud-init for Lucid. We must use our own file
# created by a runcmd, see _populate_cloud_config()
#
run( 'echo -n "Waiting for cloud-init to finish ..." ; '
'while [ ! -e /tmp/cloud-init.done ]; do '
'echo -n "."; '
'sleep 1; '
'done; '
'echo ", done."' )
| [
"[email protected]"
]
| |
8e0824c850a042e87ea7c8ce05119a0b59d37eca | dd35833bead7de2f2ca7affd985ac0d345b2ab6e | /apps/trade/adminx.py | ab5b4d915f633a0a7dbb263fc9dd28104e07e87c | []
| no_license | lhsheild/MxShop | df14c11aa7457f304194ff099a35869d83f0d9a7 | 811be4dad55284e737c80ebd4d00c079837393f2 | refs/heads/master | 2020-05-27T16:23:00.578686 | 2019-09-10T08:09:01 | 2019-09-10T08:09:01 | 188,130,934 | 1 | 0 | null | null | null | null | UTF-8 | Python | false | false | 656 | py | # trade/adminx.py
__author__ = 'derek'
import xadmin
from .models import ShoppingCart, OrderInfo, OrderGoods
class ShoppingCartAdmin(object):
list_display = ["user", "goods", "nums", ]
class OrderInfoAdmin(object):
list_display = ["user", "order_sn", "trade_no", "pay_status", "post_script", "order_mount",
"order_mount", "pay_time", "add_time"]
class OrderGoodsInline(object):
model = OrderGoods
exclude = ['add_time', ]
extra = 1
style = 'tab'
inlines = [OrderGoodsInline, ]
xadmin.site.register(ShoppingCart, ShoppingCartAdmin)
xadmin.site.register(OrderInfo, OrderInfoAdmin)
| [
"[email protected]"
]
| |
a1424d110e77f4bb77673e4f6a542829529d41b1 | de40d3fa8d8af0030556d27d6833f6a1a0e7700c | /baekjoon/3036py/a.py | 981dc22c90b5ec6aadaa481201e84db3e998b531 | []
| no_license | NeoMindStd/CodingLife | cd6a627209c0353f4855f09fd5dfef8da4bbfef6 | bcb6c3752f472e6a4f3b8f158d02bc3599dfcda3 | refs/heads/master | 2022-12-24T10:42:45.390085 | 2022-12-11T16:27:16 | 2022-12-11T16:27:16 | 191,797,634 | 2 | 0 | null | null | null | null | UTF-8 | Python | false | false | 235 | py | def gcd(a, b):
while b != 0:
a, b = b, a % b
return a
input()
rings = list(map(int, input().split()))
for i in range(1, len(rings)):
g = gcd(rings[0], rings[i])
print("%d/%d" %(rings[0]//g, rings[i]//g))
| [
"[email protected]"
]
| |
3fb17157eabb72cf0582411fe8606ee38f2b47bc | 0d4ec25fb2819de88a801452f176500ccc269724 | /missing_words.py | f9dc6f23dfc2433a00eec544316e21f47b3862a2 | []
| no_license | zopepy/leetcode | 7f4213764a6a079f58402892bd0ede0514e06fcf | 3bfee704adb1d94efc8e531b732cf06c4f8aef0f | refs/heads/master | 2022-01-09T16:13:09.399620 | 2019-05-29T20:00:11 | 2019-05-29T20:00:11 | null | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 346 | py | def missingWords(s, t):
s = s.split()
t = t.split()
sl = len(s)
tl = len(t)
i = 0
j = 0
missing = []
while i<sl or j<tl:
if i<sl and j<tl and s[i] == t[j]:
i+=1
j+=1
else:
missing.append(s[i])
i+=1
return missing
s = "I am using hackerrank to improve programming"
t = "am hackerrank to improve"
print(missingWords(s, t)) | [
"[email protected]"
]
| |
6cf8cd691b13e24ce9df52d46259cef29fdf0c2d | 1fe8d4133981e53e88abf633046060b56fae883e | /venv/lib/python3.8/site-packages/keras/optimizer_v2/learning_rate_schedule.py | 44b502c0fd85e896c1bb8b0cb0755f152482e8d8 | []
| no_license | Akira331/flask-cifar10 | 6c49db8485038731ce67d23f0972b9574746c7a7 | 283e7a2867c77d4b6aba7aea9013bf241d35d76c | refs/heads/master | 2023-06-14T16:35:06.384755 | 2021-07-05T14:09:15 | 2021-07-05T14:09:15 | 382,864,970 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 130 | py | version https://git-lfs.github.com/spec/v1
oid sha256:d64207cd938934798e16ea7cab234dc04101b6193775075e683965bd07f43ce7
size 38611
| [
"[email protected]"
]
| |
58d7bb7fcdd3c6a57d6f09ecd8bf6afd942d5ddc | 1d60c5a7b8ce6277bff514e376f79848f706344c | /Data Scientist with Python - Career Track /22. Machine Learning with the Experts: School Budgets/02. Creating a simple first model/04. Writing out your results to a csv for submission.py | 1ecf2dabc884d95e4128cdc5264f21ac5eb946f2 | []
| no_license | DidiMilikina/DataCamp | 338c6e6d3b4f5b6c541c1aba155a36e9ee24949d | 3bf2cf3c1430190a7f8e54efda7d50a5fd66f244 | refs/heads/master | 2020-12-15T13:16:54.178967 | 2020-05-06T17:30:54 | 2020-05-06T17:30:54 | 235,113,616 | 4 | 3 | null | null | null | null | UTF-8 | Python | false | false | 1,935 | py | '''
Writing out your results to a csv for submission
At last, you're ready to submit some predictions for scoring. In this exercise, you'll write your predictions to a .csv using the .to_csv() method on a pandas DataFrame. Then you'll evaluate your performance according to the LogLoss metric discussed earlier!
You'll need to make sure your submission obeys the correct format.
To do this, you'll use your predictions values to create a new DataFrame, prediction_df.
Interpreting LogLoss & Beating the Benchmark:
When interpreting your log loss score, keep in mind that the score will change based on the number of samples tested. To get a sense of how this very basic model performs, compare your score to the DrivenData benchmark model performance: 2.0455, which merely submitted uniform probabilities for each class.
Remember, the lower the log loss the better. Is your model's log loss lower than 2.0455?
Instructions
100 XP
Create the prediction_df DataFrame by specifying the following arguments to the provided parameters pd.DataFrame():
pd.get_dummies(df[LABELS]).columns.
holdout.index.
predictions.
Save prediction_df to a csv file called 'predictions.csv' using the .to_csv() method.
Submit the predictions for scoring by using the score_submission() function with pred_path set to 'predictions.csv'.
'''
SOLUTION
# Generate predictions: predictions
predictions = clf.predict_proba(holdout[NUMERIC_COLUMNS].fillna(-1000))
# Format predictions in DataFrame: prediction_df
prediction_df = pd.DataFrame(columns=pd.get_dummies(df[LABELS]).columns,
index=holdout.index,
data=predictions)
# Save prediction_df to csv
prediction_df.to_csv('predictions.csv')
# Submit the predictions for scoring: score
score = score_submission(pred_path='predictions.csv')
# Print score
print('Your model, trained with numeric data only, yields logloss score: {}'.format(score)) | [
"[email protected]"
]
| |
7901103214afbd0b66f90ed496afaa03613081e1 | 1f2b85cc95a1f65df81c0dec8bfb8d7e5652aa88 | /schema/sdss5db/catalogdb/sdss_qso/dr16/sdss_dr16_qso_load.py | aa63b00775fb326e5c4ad9f70ad4140c5bfbffa5 | [
"BSD-3-Clause"
]
| permissive | sdss/sdssdb | 2f22a90c51e1281c154f6c518a1ce8951f84a5ce | f7d3ef3ccfecd87b50ce05cf6af5a564679f15f5 | refs/heads/main | 2023-09-01T14:51:05.374886 | 2023-08-30T20:23:10 | 2023-08-30T20:23:10 | 136,257,152 | 9 | 3 | BSD-3-Clause | 2023-09-14T16:31:47 | 2018-06-06T01:55:39 | Python | UTF-8 | Python | false | false | 912 | py | #!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# @Author: José Sánchez-Gallego ([email protected])
# @Date: 2020-07-17
# @Filename: sdss_dr16_qso_load.py
# @License: BSD 3-clause (http://www.opensource.org/licenses/BSD-3-Clause)
import os
import astropy.table
from sdssdb.peewee.sdss5db import database
from sdssdb.utils.ingest import to_csv
assert database.connected
def main():
database.become_admin()
file_ = os.environ['CATALOGDB_DIR'] + '/sdss_qso/dr16q/DR16Q_v4.fits'
data = astropy.table.Table.read(file_)
data.meta = {}
data.rename_columns(data.colnames, list(map(lambda x: x.lower(), data.colnames)))
to_csv(data, file_ + '.csv', header=False, delimiter=',')
del data
cursor = database.cursor()
fileobj = open(file_ + '.csv')
cursor.copy_from(fileobj, 'catalogdb.sdss_dr16_qso', sep=',')
database.commit()
if __name__ == '__main__':
main()
| [
"[email protected]"
]
| |
458e5843502120422f19ee16994dd5abe8dbc752 | f3b233e5053e28fa95c549017bd75a30456eb50c | /ptp1b_input/L80/80-79_MD_NVT_rerun/set_7.py | 7458323d9005088ca69f07063dec0e7ea8f6b48f | []
| no_license | AnguseZhang/Input_TI | ddf2ed40ff1c0aa24eea3275b83d4d405b50b820 | 50ada0833890be9e261c967d00948f998313cb60 | refs/heads/master | 2021-05-25T15:02:38.858785 | 2020-02-18T16:57:04 | 2020-02-18T16:57:04 | null | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 741 | py | import os
dir = '/mnt/scratch/songlin3/run/ptp1b/L80/MD_NVT_rerun/ti_one-step/80_79/'
filesdir = dir + 'files/'
temp_prodin = filesdir + 'temp_prod_7.in'
temp_pbs = filesdir + 'temp_7.pbs'
lambd = [ 0.00922, 0.04794, 0.11505, 0.20634, 0.31608, 0.43738, 0.56262, 0.68392, 0.79366, 0.88495, 0.95206, 0.99078]
for j in lambd:
os.chdir("%6.5f" %(j))
workdir = dir + "%6.5f" %(j) + '/'
#prodin
prodin = workdir + "%6.5f_prod_7.in" %(j)
os.system("cp %s %s" %(temp_prodin, prodin))
os.system("sed -i 's/XXX/%6.5f/g' %s" %(j, prodin))
#PBS
pbs = workdir + "%6.5f_7.pbs" %(j)
os.system("cp %s %s" %(temp_pbs, pbs))
os.system("sed -i 's/XXX/%6.5f/g' %s" %(j, pbs))
#submit pbs
#os.system("qsub %s" %(pbs))
os.chdir(dir)
| [
"[email protected]"
]
| |
7767c267e199e09d0e46349c097f5d5e81c5418b | bcc11151867b5f9ad765503348ab62d276aa03c7 | /astroNN/models/CNNBase.py | 681d284dd7e53494c87be3ec356bae34b42c30a8 | [
"MIT"
]
| permissive | tundeakins/astroNN | a513492f51a3e053097d746f2d2e1ecc45fac73e | 07147dc6775dc37a8737650821a1370088327de1 | refs/heads/master | 2020-04-05T14:18:21.037721 | 2018-11-09T21:28:26 | 2018-11-09T21:28:26 | null | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 18,393 | py | import json
import os
import time
from abc import ABC
import numpy as np
from sklearn.model_selection import train_test_split
from astroNN.config import MULTIPROCESS_FLAG
from astroNN.config import _astroNN_MODEL_NAME
from astroNN.config import keras_import_manager
from astroNN.models.NeuralNetMaster import NeuralNetMaster
from astroNN.nn.callbacks import VirutalCSVLogger
from astroNN.nn.losses import categorical_crossentropy, binary_crossentropy
from astroNN.nn.losses import mean_squared_error, mean_absolute_error, mean_error
from astroNN.nn.metrics import categorical_accuracy, binary_accuracy
from astroNN.nn.utilities import Normalizer
from astroNN.nn.utilities.generator import threadsafe_generator, GeneratorMaster
keras = keras_import_manager()
regularizers = keras.regularizers
ReduceLROnPlateau, EarlyStopping = keras.callbacks.ReduceLROnPlateau, keras.callbacks.EarlyStopping
Adam = keras.optimizers.Adam
class CNNDataGenerator(GeneratorMaster):
"""
NAME:
CNNDataGenerator
PURPOSE:
To generate data for Keras
INPUT:
OUTPUT:
HISTORY:
2017-Dec-02 - Written - Henry Leung (University of Toronto)
"""
def __init__(self, batch_size, shuffle=True):
super().__init__(batch_size, shuffle)
def _data_generation(self, inputs, labels, idx_list_temp):
x = self.input_d_checking(inputs, idx_list_temp)
y = labels[idx_list_temp]
return x, y
@threadsafe_generator
def generate(self, inputs, labels):
# Infinite loop
idx_list = range(inputs.shape[0])
while 1:
# Generate order of exploration of dataset
indexes = self._get_exploration_order(idx_list)
# Generate batches
imax = int(len(indexes) / self.batch_size)
for i in range(imax):
# Find list of IDs
idx_list_temp = indexes[i * self.batch_size:(i + 1) * self.batch_size]
# Generate data
x, y = self._data_generation(inputs, labels, idx_list_temp)
yield x, y
class CNNPredDataGenerator(GeneratorMaster):
"""
NAME:
CNNPredDataGenerator
PURPOSE:
To generate data for Keras model prediction
INPUT:
OUTPUT:
HISTORY:
2017-Dec-02 - Written - Henry Leung (University of Toronto)
"""
def __init__(self, batch_size, shuffle=False):
super().__init__(batch_size, shuffle)
def _data_generation(self, inputs, idx_list_temp):
# Generate data
x = self.input_d_checking(inputs, idx_list_temp)
return x
@threadsafe_generator
def generate(self, inputs):
# Infinite loop
idx_list = range(inputs.shape[0])
while 1:
# Generate order of exploration of dataset
indexes = self._get_exploration_order(idx_list)
# Generate batches
imax = int(len(indexes) / self.batch_size)
for i in range(imax):
# Find list of IDs
idx_list_temp = indexes[i * self.batch_size:(i + 1) * self.batch_size]
# Generate data
x = self._data_generation(inputs, idx_list_temp)
yield x
class CNNBase(NeuralNetMaster, ABC):
"""Top-level class for a convolutional neural network"""
def __init__(self):
"""
NAME:
__init__
PURPOSE:
To define astroNN convolutional neural network
HISTORY:
2018-Jan-06 - Written - Henry Leung (University of Toronto)
"""
super().__init__()
self.name = 'Convolutional Neural Network'
self._model_type = 'CNN'
self._model_identifier = None
self.initializer = None
self.activation = None
self._last_layer_activation = None
self.num_filters = None
self.filter_len = None
self.pool_length = None
self.num_hidden = None
self.reduce_lr_epsilon = None
self.reduce_lr_min = None
self.reduce_lr_patience = None
self.l1 = None
self.l2 = None
self.maxnorm = None
self.dropout_rate = 0.0
self.val_size = 0.1
self.early_stopping_min_delta = 0.0001
self.early_stopping_patience = 4
self.input_norm_mode = 1
self.labels_norm_mode = 2
def compile(self, optimizer=None, loss=None, metrics=None, loss_weights=None, sample_weight_mode=None):
if optimizer is not None:
self.optimizer = optimizer
elif self.optimizer is None or self.optimizer == 'adam':
self.optimizer = Adam(lr=self.lr, beta_1=self.beta_1, beta_2=self.beta_2, epsilon=self.optimizer_epsilon,
decay=0.0)
if self.task == 'regression':
self._last_layer_activation = 'linear'
loss_func = mean_squared_error
if self.metrics is None:
self.metrics = [mean_absolute_error, mean_error]
elif self.task == 'classification':
self._last_layer_activation = 'softmax'
loss_func = categorical_crossentropy
if self.metrics is None:
self.metrics = [categorical_accuracy]
elif self.task == 'binary_classification':
self._last_layer_activation = 'sigmoid'
loss_func = binary_crossentropy
if self.metrics is None:
self.metrics = [binary_accuracy(from_logits=False)]
else:
raise RuntimeError('Only "regression", "classification" and "binary_classification" are supported')
self.keras_model = self.model()
self.keras_model.compile(loss=loss_func, optimizer=self.optimizer, metrics=self.metrics, loss_weights=None)
return None
def pre_training_checklist_child(self, input_data, labels):
self.pre_training_checklist_master(input_data, labels)
# check if exists (exists mean fine-tuning, so we do not need calculate mean/std again)
if self.input_normalizer is None:
self.input_normalizer = Normalizer(mode=self.input_norm_mode)
self.labels_normalizer = Normalizer(mode=self.labels_norm_mode)
norm_data = self.input_normalizer.normalize(input_data)
self.input_mean, self.input_std = self.input_normalizer.mean_labels, self.input_normalizer.std_labels
norm_labels = self.labels_normalizer.normalize(labels)
self.labels_mean, self.labels_std = self.labels_normalizer.mean_labels, self.labels_normalizer.std_labels
else:
norm_data = self.input_normalizer.normalize(input_data, calc=False)
norm_labels = self.labels_normalizer.normalize(labels, calc=False)
if self.keras_model is None: # only compiler if there is no keras_model, e.g. fine-tuning does not required
self.compile()
self.train_idx, self.val_idx = train_test_split(np.arange(self.num_train), test_size=self.val_size)
self.training_generator = CNNDataGenerator(self.batch_size).generate(norm_data[self.train_idx],
norm_labels[self.train_idx])
self.validation_generator = CNNDataGenerator(
self.batch_size if len(self.val_idx) > self.batch_size else len(self.val_idx)).generate(
norm_data[self.val_idx], norm_labels[self.val_idx])
return input_data, labels
def train(self, input_data, labels):
"""
Train a Convolutional neural network
:param input_data: Data to be trained with neural network
:type input_data: ndarray
:param labels: Labels to be trained with neural network
:type labels: ndarray
:return: None
:rtype: NoneType
:History: 2017-Dec-06 - Written - Henry Leung (University of Toronto)
"""
# Call the checklist to create astroNN folder and save parameters
self.pre_training_checklist_child(input_data, labels)
reduce_lr = ReduceLROnPlateau(monitor='val_mean_absolute_error', factor=0.5,
min_delta=self.reduce_lr_epsilon,
patience=self.reduce_lr_patience, min_lr=self.reduce_lr_min, mode='min',
verbose=2)
early_stopping = EarlyStopping(monitor='val_mean_absolute_error', min_delta=self.early_stopping_min_delta,
patience=self.early_stopping_patience, verbose=2, mode='min')
self.virtual_cvslogger = VirutalCSVLogger()
self.__callbacks = [reduce_lr, self.virtual_cvslogger] # default must have unchangeable callbacks
if self.callbacks is not None:
if isinstance(self.callbacks, list):
self.__callbacks.extend(self.callbacks)
else:
self.__callbacks.append(self.callbacks)
start_time = time.time()
self.history = self.keras_model.fit_generator(generator=self.training_generator,
steps_per_epoch=self.num_train // self.batch_size,
validation_data=self.validation_generator,
validation_steps=max(self.val_num // self.batch_size, 1),
epochs=self.max_epochs, verbose=self.verbose,
workers=os.cpu_count(),
callbacks=self.__callbacks,
use_multiprocessing=MULTIPROCESS_FLAG)
print(f'Completed Training, {(time.time() - start_time):.{2}f}s in total')
if self.autosave is True:
# Call the post training checklist to save parameters
self.save()
return None
def train_on_batch(self, input_data, labels):
"""
Train a neural network by running a single gradient update on all of your data, suitable for fine-tuning
:param input_data: Data to be trained with neural network
:type input_data: ndarray
:param labels: Labels to be trained with neural network
:type labels: ndarray
:return: None
:rtype: NoneType
:History: 2018-Aug-22 - Written - Henry Leung (University of Toronto)
"""
self.has_model_check()
# check if exists (exists mean fine-tuning, so we do not need calculate mean/std again)
if self.input_normalizer is None:
self.input_normalizer = Normalizer(mode=self.input_norm_mode)
self.labels_normalizer = Normalizer(mode=self.labels_norm_mode)
norm_data = self.input_normalizer.normalize(input_data)
self.input_mean, self.input_std = self.input_normalizer.mean_labels, self.input_normalizer.std_labels
norm_labels = self.labels_normalizer.normalize(labels)
self.labels_mean, self.labels_std = self.labels_normalizer.mean_labels, self.labels_normalizer.std_labels
else:
norm_data = self.input_normalizer.normalize(input_data, calc=False)
norm_labels = self.labels_normalizer.normalize(labels, calc=False)
start_time = time.time()
fit_generator = CNNDataGenerator(input_data.shape[0], shuffle=False).generate(norm_data, norm_labels)
scores = self.keras_model.fit_generator(generator=fit_generator,
steps_per_epoch=1,
epochs=1,
verbose=self.verbose,
workers=os.cpu_count(),
use_multiprocessing=MULTIPROCESS_FLAG)
print(f'Completed Training on Batch, {(time.time() - start_time):.{2}f}s in total')
return None
def post_training_checklist_child(self):
self.keras_model.save(self.fullfilepath + _astroNN_MODEL_NAME)
print(_astroNN_MODEL_NAME + f' saved to {(self.fullfilepath + _astroNN_MODEL_NAME)}')
self.hyper_txt.write(f"Dropout Rate: {self.dropout_rate} \n")
self.hyper_txt.flush()
self.hyper_txt.close()
data = {'id': self.__class__.__name__ if self._model_identifier is None else self._model_identifier,
'pool_length': self.pool_length,
'filterlen': self.filter_len,
'filternum': self.num_filters,
'hidden': self.num_hidden,
'input': self._input_shape,
'labels': self._labels_shape,
'task': self.task,
'last_layer_activation': self._last_layer_activation,
'input_mean': self.input_mean.tolist(),
'labels_mean': self.labels_mean.tolist(),
'input_std': self.input_std.tolist(),
'labels_std': self.labels_std.tolist(),
'valsize': self.val_size,
'targetname': self.targetname,
'dropout_rate': self.dropout_rate,
'l1': self.l1,
'l2': self.l2,
'maxnorm': self.maxnorm,
'input_norm_mode': self.input_norm_mode,
'labels_norm_mode': self.labels_norm_mode,
'batch_size': self.batch_size}
with open(self.fullfilepath + '/astroNN_model_parameter.json', 'w') as f:
json.dump(data, f, indent=4, sort_keys=True)
def test(self, input_data):
"""
Use the neural network to do inference
:param input_data: Data to be inferred with neural network
:type input_data: ndarray
:return: prediction and prediction uncertainty
:rtype: ndarry
:History: 2017-Dec-06 - Written - Henry Leung (University of Toronto)
"""
self.has_model_check()
self.pre_testing_checklist_master()
input_data = np.atleast_2d(input_data)
if self.input_normalizer is not None:
input_array = self.input_normalizer.normalize(input_data, calc=False)
else:
# Prevent shallow copy issue
input_array = np.array(input_data)
input_array -= self.input_mean
input_array /= self.input_std
total_test_num = input_data.shape[0] # Number of testing data
# for number of training data smaller than batch_size
if input_data.shape[0] < self.batch_size:
self.batch_size = input_data.shape[0]
# Due to the nature of how generator works, no overlapped prediction
data_gen_shape = (total_test_num // self.batch_size) * self.batch_size
remainder_shape = total_test_num - data_gen_shape # Remainder from generator
predictions = np.zeros((total_test_num, self._labels_shape))
start_time = time.time()
print("Starting Inference")
# Data Generator for prediction
prediction_generator = CNNPredDataGenerator(self.batch_size).generate(input_array[:data_gen_shape])
predictions[:data_gen_shape] = np.asarray(self.keras_model.predict_generator(
prediction_generator, steps=input_array.shape[0] // self.batch_size))
if remainder_shape != 0:
remainder_data = input_array[data_gen_shape:]
# assume its caused by mono images, so need to expand dim by 1
if len(input_array[0].shape) != len(self._input_shape):
remainder_data = np.expand_dims(remainder_data, axis=-1)
result = self.keras_model.predict(remainder_data)
predictions[data_gen_shape:] = result.reshape((remainder_shape, self._labels_shape))
if self.labels_normalizer is not None:
predictions = self.labels_normalizer.denormalize(predictions)
else:
predictions *= self.labels_std
predictions += self.labels_mean
print(f'Completed Inference, {(time.time() - start_time):.{2}f}s elapsed')
return predictions
def evaluate(self, input_data, labels):
"""
Evaluate neural network by provided input data and labels and get back a metrics score
:param input_data: Data to be inferred with neural network
:type input_data: ndarray
:param labels: labels
:type labels: ndarray
:return: metrics score dictionary
:rtype: dict
:History: 2018-May-20 - Written - Henry Leung (University of Toronto)
"""
self.has_model_check()
# check if exists (exists mean fine-tuning, so we do not need calculate mean/std again)
if self.input_normalizer is None:
self.input_normalizer = Normalizer(mode=self.input_norm_mode)
self.labels_normalizer = Normalizer(mode=self.labels_norm_mode)
norm_data = self.input_normalizer.normalize(input_data)
self.input_mean, self.input_std = self.input_normalizer.mean_labels, self.input_normalizer.std_labels
norm_labels = self.labels_normalizer.normalize(labels)
self.labels_mean, self.labels_std = self.labels_normalizer.mean_labels, self.labels_normalizer.std_labels
else:
norm_data = self.input_normalizer.normalize(input_data, calc=False)
norm_labels = self.labels_normalizer.normalize(labels, calc=False)
eval_batchsize = self.batch_size if input_data.shape[0] > self.batch_size else input_data.shape[0]
steps = input_data.shape[0] // self.batch_size if input_data.shape[0] > self.batch_size else 1
start_time = time.time()
print("Starting Evaluation")
evaluate_generator = CNNDataGenerator(eval_batchsize, shuffle=False).generate(norm_data, norm_labels)
scores = self.keras_model.evaluate_generator(evaluate_generator, steps=steps)
outputname = self.keras_model.output_names
funcname = [func.__name__ for func in self.keras_model.metrics]
output_funcname = [outputname[0] + '_' + name for name in funcname]
list_names = ['loss', *output_funcname]
print(f'Completed Evaluation, {(time.time() - start_time):.{2}f}s elapsed')
return {name: score for name, score in zip(list_names, scores)}
| [
"[email protected]"
]
| |
7ace0aa7551fd6e52de05ba8a71f111252c72041 | 6ea5b91e7f14114bea0aadfd59178997c59cd75d | /mysite/settings.py | 515a48f15dedf8c785836a2b9b94ed1f90ba2cf3 | [
"MIT"
]
| permissive | sharif-42/django-elasticsearch | 68fe15333f4a2ed69c66b73bdeb27a0a1a28a115 | 999ee3382ef2ddcfcc62bd7ba330323000f3f1bf | refs/heads/main | 2023-06-18T04:04:54.162123 | 2021-07-18T03:58:47 | 2021-07-18T03:58:47 | 386,169,552 | 0 | 0 | MIT | 2021-07-18T03:58:48 | 2021-07-15T05:03:33 | Python | UTF-8 | Python | false | false | 3,525 | py | """
Django settings for mysite project.
Generated by 'django-admin startproject' using Django 3.2.5.
For more information on this file, see
https://docs.djangoproject.com/en/3.2/topics/settings/
For the full list of settings and their values, see
https://docs.djangoproject.com/en/3.2/ref/settings/
"""
from pathlib import Path
# Build paths inside the project like this: BASE_DIR / 'subdir'.
BASE_DIR = Path(__file__).resolve().parent.parent
# Quick-start development settings - unsuitable for production
# See https://docs.djangoproject.com/en/3.2/howto/deployment/checklist/
# SECURITY WARNING: keep the secret key used in production secret!
SECRET_KEY = 'django-insecure-#qh_-(j9#^^$li$o*o0qt85ek3^1#_e4#^n93q!ef-16_*_k#a'
# SECURITY WARNING: don't run with debug turned on in production!
DEBUG = True
ALLOWED_HOSTS = []
# Application definition
INSTALLED_APPS = [
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
]
THIRD_PARTY_APPS = [
'rest_framework',
'django_elasticsearch_dsl',
]
LOCAL_APPS = [
'library',
'search',
]
INSTALLED_APPS = INSTALLED_APPS + THIRD_PARTY_APPS + LOCAL_APPS
MIDDLEWARE = [
'django.middleware.security.SecurityMiddleware',
'django.contrib.sessions.middleware.SessionMiddleware',
'django.middleware.common.CommonMiddleware',
'django.middleware.csrf.CsrfViewMiddleware',
'django.contrib.auth.middleware.AuthenticationMiddleware',
'django.contrib.messages.middleware.MessageMiddleware',
'django.middleware.clickjacking.XFrameOptionsMiddleware',
]
ROOT_URLCONF = 'mysite.urls'
TEMPLATES = [
{
'BACKEND': 'django.template.backends.django.DjangoTemplates',
'DIRS': [],
'APP_DIRS': True,
'OPTIONS': {
'context_processors': [
'django.template.context_processors.debug',
'django.template.context_processors.request',
'django.contrib.auth.context_processors.auth',
'django.contrib.messages.context_processors.messages',
],
},
},
]
WSGI_APPLICATION = 'mysite.wsgi.application'
# Database
# https://docs.djangoproject.com/en/3.2/ref/settings/#databases
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': BASE_DIR / 'db.sqlite3',
}
}
# Password validation
# https://docs.djangoproject.com/en/3.2/ref/settings/#auth-password-validators
AUTH_PASSWORD_VALIDATORS = [
{
'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator',
},
{
'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator',
},
{
'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator',
},
{
'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator',
},
]
# Internationalization
# https://docs.djangoproject.com/en/3.2/topics/i18n/
LANGUAGE_CODE = 'en-us'
TIME_ZONE = 'UTC'
USE_I18N = True
USE_L10N = True
USE_TZ = True
# Static files (CSS, JavaScript, Images)
# https://docs.djangoproject.com/en/3.2/howto/static-files/
STATIC_URL = '/static/'
# Default primary key field type
# https://docs.djangoproject.com/en/3.2/ref/settings/#default-auto-field
DEFAULT_AUTO_FIELD = 'django.db.models.BigAutoField'
# Elastic Search
ELASTICSEARCH_DSL = {
'default': {
'hosts': '127.0.0.1:9200'
},
} | [
"[email protected]"
]
| |
22d4d44bb76d79af871bf58881fbafb98270f5cf | 9390033cecf4247f5edc6551c39e9de39c04b036 | /python/django/new_project/new_project/settings.py | 337949d998a67723f8026da2805507ec234a3a9f | []
| no_license | JennaDalgety/coding-dojo | 4940bb853a9fcd706bc30f1615ff824fc7f7788d | d2647257a5e93652978c911d65e2a6ff97653392 | refs/heads/master | 2020-02-26T14:59:02.324328 | 2019-03-20T23:13:38 | 2019-03-20T23:13:38 | 67,653,828 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 3,130 | py | """
Django settings for new_project project.
Generated by 'django-admin startproject' using Django 1.10.3.
For more information on this file, see
https://docs.djangoproject.com/en/1.10/topics/settings/
For the full list of settings and their values, see
https://docs.djangoproject.com/en/1.10/ref/settings/
"""
import os
# Build paths inside the project like this: os.path.join(BASE_DIR, ...)
BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
# Quick-start development settings - unsuitable for production
# See https://docs.djangoproject.com/en/1.10/howto/deployment/checklist/
# SECURITY WARNING: keep the secret key used in production secret!
SECRET_KEY = '@ps_ai9jh@lz9+x9h)et$&@xscl(-!)u&*-h1e!jj(c1z8fu-c'
# SECURITY WARNING: don't run with debug turned on in production!
DEBUG = True
ALLOWED_HOSTS = []
# Application definition
INSTALLED_APPS = [
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
'apps.new_app'
]
MIDDLEWARE = [
'django.middleware.security.SecurityMiddleware',
'django.contrib.sessions.middleware.SessionMiddleware',
'django.middleware.common.CommonMiddleware',
'django.middleware.csrf.CsrfViewMiddleware',
'django.contrib.auth.middleware.AuthenticationMiddleware',
'django.contrib.messages.middleware.MessageMiddleware',
'django.middleware.clickjacking.XFrameOptionsMiddleware',
]
ROOT_URLCONF = 'new_project.urls'
TEMPLATES = [
{
'BACKEND': 'django.template.backends.django.DjangoTemplates',
'DIRS': [],
'APP_DIRS': True,
'OPTIONS': {
'context_processors': [
'django.template.context_processors.debug',
'django.template.context_processors.request',
'django.contrib.auth.context_processors.auth',
'django.contrib.messages.context_processors.messages',
],
},
},
]
WSGI_APPLICATION = 'new_project.wsgi.application'
# Database
# https://docs.djangoproject.com/en/1.10/ref/settings/#databases
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': os.path.join(BASE_DIR, 'db.sqlite3'),
}
}
# Password validation
# https://docs.djangoproject.com/en/1.10/ref/settings/#auth-password-validators
AUTH_PASSWORD_VALIDATORS = [
{
'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator',
},
{
'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator',
},
{
'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator',
},
{
'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator',
},
]
# Internationalization
# https://docs.djangoproject.com/en/1.10/topics/i18n/
LANGUAGE_CODE = 'en-us'
TIME_ZONE = 'UTC'
USE_I18N = True
USE_L10N = True
USE_TZ = True
# Static files (CSS, JavaScript, Images)
# https://docs.djangoproject.com/en/1.10/howto/static-files/
STATIC_URL = '/static/'
| [
"[email protected]"
]
| |
24d12eba01fefcbfab00c21bc1fade185faa78e6 | 6c8c6e5d952cd821dbf6661e71896a473494a8eb | /blog/admin.py | 1e6fb4d2db410c56734a47133101fd69c3095635 | []
| no_license | Lethons/mywebsite | fe2d8fae75f1228e309a847071a7d4182f7b005d | 3a26c764ae0fa4bb628b3ed3fad3f04784e78153 | refs/heads/master | 2020-03-21T12:59:25.712867 | 2018-06-29T09:04:24 | 2018-06-29T09:04:24 | 138,582,050 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 451 | py | from django.contrib import admin
from .models import Tag, Blog
# Register your models here.
@admin.register(Blog)
class BlogAdmin(admin.ModelAdmin):
list_display = ('title', 'author', 'tag', 'publish_time', 'update_time')
fields = ('title', 'content', 'publish_time', 'author', 'tag')
list_per_page = 20
list_filter = ('tag',)
@admin.register(Tag)
class TagAdmin(admin.ModelAdmin):
list_display = ('tag',)
list_per_page = 20
| [
"[email protected]"
]
| |
cc487a546b0b4540e9263ae5b052b35e62beae3d | 84a70e27982094ac78d34642674f4e873d571b23 | /src/apps/productos/migrations/0015_auto_20190812_2008.py | bfdc2ab0a43d78dca4ff19b2e75fce2e18fa6372 | []
| no_license | valenciacamilo12/Pagina-Web-Farmacia---Django- | 2b9eef0b0f5011247274a528d63fdaa0ed557fad | 7c8a9ac78bd2cf48706a2ef76cb32ac0824094ea | refs/heads/master | 2020-07-02T09:38:31.978196 | 2019-08-16T03:07:58 | 2019-08-16T03:07:58 | 201,487,924 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 513 | py | # -*- coding: utf-8 -*-
# Generated by Django 1.10 on 2019-08-13 01:08
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('productos', '0014_auto_20190812_1939'),
]
operations = [
migrations.AlterField(
model_name='producto',
name='producto_imagen',
field=models.ImageField(default='productos/product_01.png', upload_to='media/productos'),
),
]
| [
"[email protected]"
]
| |
7a32049f420bba3e44a3f942d34827eddd50153c | 68561c61c2a784f1765fae8b07e90d7ec53f1edd | /maestral/__init__.py | 7a979d2e1fb6e272c6317970de4a5baf55e2f40a | [
"MIT"
]
| permissive | ailiao/maestral-dropbox | 68213e219a21f0d76c80be839f73d65120cf99f5 | f7043ef23062d6cc85d61701cb129bdc8f09f065 | refs/heads/master | 2021-04-07T17:14:26.936449 | 2020-03-20T00:31:22 | 2020-03-20T00:31:22 | null | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 561 | py | # -*- coding: utf-8 -*-
"""
@author: Sam Schott ([email protected])
(c) Sam Schott; This work is licensed under a Creative Commons
Attribution-NonCommercial-NoDerivs 2.0 UK: England & Wales License.
The following APIs should remain stable for front ends:
* maestral.main.Maestral
* maestral.oauth
* maestral.constants
* maestral.daemon
* maestral.errors
* maestral.config.main
* maestral.utils.appdirs
* maestral.utils.backend
* maestral.utils.autostart
"""
__version__ = "0.6.2"
__author__ = "Sam Schott"
__url__ = "https://github.com/SamSchott/maestral"
| [
"[email protected]"
]
| |
9ebb033419f4144ac100bb8f70b5945e77e76bf8 | 94838674ffd175df6194437c1ccc3f90ab409d6c | /pillowV3/log/2018-12-30 15:01:43.443410 | d5834b71bf2619ece82e9e3118f46716eacedcce | []
| no_license | WojciechKoz/MyFirstNeuralNetwork | 4fdb3140d8f02257599d005638598f78055c1ac8 | 3cd032aba80ecd71edb0286724ae9ba565b75a81 | refs/heads/master | 2020-04-02T03:02:48.680433 | 2020-02-29T17:57:43 | 2020-02-29T17:57:43 | 153,943,121 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 372,294 | 443410 | #!/usr/bin/env python3
# -*- coding: utf8 -*-
from __future__ import print_function # new print() on python2
from datetime import datetime
import sys
import numpy as np
from mnist import MNIST
# Display full arrays
np.set_printoptions(threshold=np.inf)
mndata = MNIST('./data')
images_full, labels_full = mndata.load_training()
images = []
labels = []
# dynamic arguments
batch_size = int(sys.argv[1])
size_1 = int(sys.argv[2])
size_2 = int(sys.argv[3])
batch_training_size = int(sys.argv[4])
data_part = 5 # only one fifth of the whole dataset to speed up training
for i in range(len(labels_full) // batch_size // data_part):
images.append(images_full[i*batch_size : (i+1)*batch_size])
labels.append(labels_full[i*batch_size : (i+1)*batch_size])
def sigmoid_prime(x):
return np.exp(-x) / ((np.exp(-x) + 1) ** 2)
def sigmoid(x):
return 1 / (1 + np.exp(-x))
# nowe, przyda się?
def relu(x):
return np.maximum(x, x * 0.01)
def relu_prime(x):
if x >= 0:
return 1
# ej nie jest tak xd
# a jak xd?
type(x) == no.ndarray
# no x to macierz xd
# np.exp jest przeładowane ale jakakoleiwk funkcja to chyba nie
# to co foreach ? :(
# właśnie nie wiem, a co z gpu?
# to miało być szybsze a nie xd
# mamy duzo mozliwosci zmian ale nie na raz trzeba ustalic jakos
# hm TODO gpu TODO wincyj procent TODO gui gotowe
# xd
# tamto myliło hah
# to co najpierw? :p
# ssh daje wglad do basha tylko tak ?
# nie, to jest taki fajny programik, byobu
# i ten pasek na dole też jest z byobu
# on udostepnia tylko basha ?
# tak, ale basha multiplayer xd
# szkoda że 2 kursorow nie ma
# hm
return 0.01 # chyba tak xd nikt nie widzial xd
# ale x to macierz :p
# ale to jest przeciazone i jak jest funkcja od macierzy to bierze po kolei kazdy element
# w sumie
# zobacze na drugiej karcie xd
#X = np.array([[0, 0],
# [0, 1],
# [1, 0],
# [1, 1]])
#X = np.array(images)
y = []
for batch in labels:
y.append([])
for label in batch:
y[-1].append([1.0 if i == label else 0.0 for i in range(10)])
y = np.array(y)
#y = np.array([[0],
# [1],
# [1],
# [0]])
np.random.seed(1)
LEN = len(labels)
SIZES = [ 784, size_1, size_2, 10 ]
syn0 = 2 * np.random.random((SIZES[0], SIZES[1])) - 1
syn1 = 2 * np.random.random((SIZES[1], SIZES[2])) - 1
syn2 = 2 * np.random.random((SIZES[2], SIZES[3])) - 1
# biases for respective layers
b0 = 2 * np.random.random((1, SIZES[1])) - 1
b1 = 2 * np.random.random((1, SIZES[2])) - 1
b2 = 2 * np.random.random((1, SIZES[3])) - 1
for i, batch in list(enumerate(images)):
X = np.array(batch)
print("x:")
print(np.shape(X))
print("======================= BATCH {} =======================".format(i))
error = 1
j = 0
while j < batch_training_size:
l0 = X
l1 = sigmoid(np.dot(l0, syn0) + b0)
l2 = sigmoid(np.dot(l1, syn1) + b1)
l3 = sigmoid(np.dot(l2, syn2) + b2)
l3_error = (y[i] - l3)#** 2
error = np.mean(np.abs(l3_error))
j += 1
if j % 20 == 0:
print(("[%d] error: " % j) + str(error))
l3_delta = l3_error * sigmoid_prime(l3)
l2_error = l3_delta.dot(syn2.T)
l2_delta = l2_error * sigmoid_prime(l2)
l1_error = l2_delta.dot(syn1.T)
l1_delta = l1_error * sigmoid_prime(l1)
syn2 += l2.T.dot(l3_delta)
syn1 += l1.T.dot(l2_delta)
syn0 += l0.T.dot(l1_delta)
b0 += l1_delta.mean(axis=0)
b1 += l2_delta.mean(axis=0)
b2 += l3_delta.mean(axis=0)
def predict(data):
l0 = [data]
l1 = sigmoid(np.dot(l0, syn0) + b0)
l2 = sigmoid(np.dot(l1, syn1) + b1)
l3 = sigmoid(np.dot(l2, syn2) + b2)
return np.argmax(l3)
print("Output after training: ")
print(l3)
for i, el in enumerate(l3):
print(labels[0][i], "=", np.argmax(el), " predictions: ", el)
testing_images, testing_labels = mndata.load_testing()
correct = 0.0
for i, (image, label) in enumerate(zip(testing_images, testing_labels)):
prediction = predict(image)
if label == prediction:
correct += 1.0
correct_rate = correct / (i + 1.0)
print("{} = {} (correct {}%)".format(label, prediction, 100 * correct_rate))
with open('log/' + str(datetime.now()), 'a') as f:
with open(__file__, 'r') as myself:
print(myself.read(), file=f)
print("", file=f)
print("#### answers:", file=f)
print("argv =", sys.argv, file=f)
print("correct_rate =", correct_rate, file=f)
print("SIZES =", SIZES, file=f)
print("syn0 =", syn0, file=f)
print("syn1 =", syn1, file=f)
print("syn2 =", syn2, file=f)
print("b0 =", b0, file=f)
print("b1 =", b1, file=f)
print("b2 =", b2, file=f)
#### answers:
argv = ['./main.py', '110', '27', '26', '13']
correct_rate = 0.1162
SIZES = [784, 27, 26, 10]
syn0 = [[-1.65955991e-01 4.40648987e-01 -9.99771250e-01 -3.95334855e-01
-7.06488218e-01 -8.15322810e-01 -6.27479577e-01 -3.08878546e-01
-2.06465052e-01 7.76334680e-02 -1.61610971e-01 3.70439001e-01
-5.91095501e-01 7.56234873e-01 -9.45224814e-01 3.40935020e-01
-1.65390395e-01 1.17379657e-01 -7.19226123e-01 -6.03797022e-01
6.01489137e-01 9.36523151e-01 -3.73151644e-01 3.84645231e-01
7.52778305e-01 7.89213327e-01 -8.29911577e-01]
[-9.21890434e-01 -6.60339161e-01 7.56285007e-01 -8.03306332e-01
-1.57784750e-01 9.15779060e-01 6.63305699e-02 3.83754228e-01
-3.68968738e-01 3.73001855e-01 6.69251344e-01 -9.63423445e-01
5.00288630e-01 9.77722178e-01 4.96331309e-01 -4.39112016e-01
5.78558657e-01 -7.93547987e-01 -1.04212948e-01 8.17191006e-01
-4.12771703e-01 -4.24449323e-01 -7.39942856e-01 -9.61266084e-01
3.57671066e-01 -5.76743768e-01 -4.68906681e-01]
[-1.68536814e-02 -8.93274910e-01 1.48235211e-01 -7.06542850e-01
1.78611074e-01 3.99516720e-01 -7.95331142e-01 -1.71888024e-01
3.88800315e-01 -1.71641461e-01 -9.00093082e-01 7.17928118e-02
3.27589290e-01 2.97782241e-02 8.89189512e-01 1.73110081e-01
8.06803831e-01 -7.25050592e-01 -7.21447305e-01 6.14782577e-01
-2.04646326e-01 -6.69291606e-01 8.55017161e-01 -3.04468281e-01
5.01624206e-01 4.51995971e-01 7.66612182e-01]
[ 2.47344414e-01 5.01884868e-01 -3.02203316e-01 -4.60144216e-01
7.91772436e-01 -1.43817620e-01 9.29680094e-01 3.26882996e-01
2.43391440e-01 -7.70508054e-01 8.98978517e-01 -1.00175733e-01
1.56779229e-01 -1.83726394e-01 -5.25946040e-01 8.06759041e-01
1.47358973e-01 -9.94259346e-01 2.34289827e-01 -3.46710196e-01
5.41162045e-02 7.71884199e-01 -2.85460480e-01 8.17070302e-01
2.46720232e-01 -9.68357514e-01 8.58874467e-01]
[ 3.81793835e-01 9.94645701e-01 -6.55318983e-01 -7.25728501e-01
8.65190926e-01 3.93636323e-01 -8.67999655e-01 5.10926105e-01
5.07752377e-01 8.46049071e-01 4.23049517e-01 -7.51458076e-01
-9.60239732e-01 -9.47578026e-01 -9.43387024e-01 -5.07577865e-01
7.20055897e-01 7.76621287e-02 1.05643957e-01 6.84061785e-01
-7.51653370e-01 -4.41632642e-01 1.71518543e-01 9.39191497e-01
1.22060439e-01 -9.62705421e-01 6.01265345e-01]
[-5.34051452e-01 6.14210391e-01 -2.24278712e-01 7.27083709e-01
4.94243285e-01 1.12480468e-01 -7.27089549e-01 -8.80164621e-01
-7.57313089e-01 -9.10896243e-01 -7.85011742e-01 -5.48581323e-01
4.25977961e-01 1.19433964e-01 -9.74888040e-01 -8.56051441e-01
9.34552660e-01 1.36200924e-01 -5.93413531e-01 -4.95348511e-01
4.87651708e-01 -6.09141038e-01 1.62717855e-01 9.40039978e-01
6.93657603e-01 -5.20304482e-01 -1.24605715e-02]
[ 2.39911437e-01 6.57961799e-01 -6.86417211e-01 -9.62847596e-01
-8.59955713e-01 -2.73097781e-02 2.12658923e-01 1.37702874e-01
-3.65275181e-01 9.77232309e-01 1.59490438e-01 -2.39717655e-01
1.01896438e-01 4.90668862e-01 3.38465787e-01 -4.70160885e-01
-8.67330331e-01 -2.59831604e-01 2.59435014e-01 -5.79651980e-01
5.05511107e-01 -8.66927037e-01 -4.79369803e-01 6.09509127e-01
-6.13131435e-01 2.78921762e-01 4.93406182e-02]
[ 8.49615941e-01 -4.73406459e-01 -8.68077819e-01 4.70131927e-01
5.44356059e-01 8.15631705e-01 8.63944138e-01 -9.72096854e-01
-5.31275828e-01 2.33556714e-01 8.98032641e-01 9.00352238e-01
1.13306376e-01 8.31212700e-01 2.83132418e-01 -2.19984572e-01
-2.80186658e-02 2.08620966e-01 9.90958430e-02 8.52362853e-01
8.37466871e-01 -2.10248774e-01 9.26525057e-01 -6.52088667e-01
-7.47340961e-01 -7.29841684e-01 1.13243314e-02]
[-9.56950389e-01 8.95940422e-01 6.54230942e-01 -9.69962039e-01
-6.47607489e-01 -3.35872851e-01 -7.38006310e-01 6.18981384e-01
-3.10526695e-01 8.80214965e-01 1.64028360e-01 7.57663969e-01
6.89468891e-01 8.10784637e-01 -8.02394684e-02 9.26936320e-02
5.97207182e-01 -4.28562297e-01 -1.94929548e-02 1.98220615e-01
-9.68933449e-01 1.86962816e-01 -1.32647302e-01 6.14721058e-01
-3.69510394e-01 7.85777417e-01 1.55714431e-01]
[-6.31979597e-01 5.75858468e-01 2.24062354e-01 -8.92181456e-01
-1.59612640e-01 3.58137673e-01 8.37203556e-01 -9.99195950e-01
9.53518298e-01 -2.46839371e-01 9.47567077e-01 2.09432202e-01
6.57691616e-01 1.49423009e-01 2.56152397e-01 -4.28847437e-01
1.73666681e-01 5.00043527e-01 7.16627673e-01 5.10164377e-01
3.96114497e-01 7.28958860e-01 -3.54638006e-01 3.41577582e-01
-9.82521272e-02 -2.35794496e-01 -1.78377300e-01]
[-1.97040833e-01 -3.65232108e-01 2.43838736e-01 -1.39505458e-01
9.47604156e-01 3.55601783e-01 -6.02860223e-01 -1.46597981e-01
-3.13307520e-01 5.95277608e-01 7.59996577e-01 8.07683912e-01
3.25439625e-01 -4.59583476e-01 -4.95266597e-01 7.09795885e-01
5.54292926e-02 6.04322168e-01 1.44977034e-01 4.66285051e-01
3.80232549e-02 5.41767821e-01 1.37715981e-01 -6.85802428e-02
-3.14622184e-01 -8.63581303e-01 -2.44151641e-01]
[-8.40747845e-01 9.65634227e-01 -6.36774297e-01 6.23717395e-01
7.49923290e-01 3.76826505e-01 1.38988825e-01 -6.78057126e-01
-6.62399545e-02 -3.09655898e-01 -5.49920084e-01 1.85023738e-01
-3.75460325e-01 8.32611107e-01 8.19271050e-01 -4.85763412e-01
-7.78217399e-01 -6.14074536e-01 -8.31658642e-04 4.57171336e-01
-5.83611123e-01 -5.03932883e-01 7.03343750e-01 -1.68302563e-01
2.33370134e-01 -5.32667722e-01 -7.96065481e-01]
[ 3.17140339e-02 -4.57180259e-02 -6.94656712e-01 2.43612463e-01
8.80202376e-02 3.08274694e-01 -7.10908920e-01 5.03055634e-01
-5.55901720e-01 3.87036487e-02 5.70592056e-01 -9.55339144e-01
-3.51275081e-01 7.45844753e-01 6.89419215e-01 7.68811852e-02
7.33216548e-01 8.99611983e-01 6.52813995e-01 7.08230888e-01
-8.02513196e-01 3.02608665e-01 4.07033976e-01 2.20481625e-01
5.99230523e-01 -9.30857560e-01 5.40477469e-01]
[ 4.63457201e-01 -4.80603213e-01 -4.85861402e-01 2.64606635e-01
-3.09405077e-01 5.93177356e-01 -1.07707536e-01 5.65498830e-01
9.80943567e-01 -3.99503321e-01 -7.13988343e-01 8.02616873e-01
8.31187578e-02 9.49480742e-01 2.73208800e-01 9.87826049e-01
9.21416083e-02 5.28518678e-02 -7.29144194e-01 -2.88589658e-01
-9.47562865e-01 -6.79209641e-01 4.91274385e-01 -9.39200620e-01
-2.66913806e-01 7.24692506e-01 3.85355435e-01]
[ 3.81884284e-01 -6.22726398e-01 -1.16191439e-01 1.63154815e-01
9.79503415e-01 -5.92187550e-01 -5.04534196e-01 -4.75653832e-01
5.00344827e-01 -8.60493451e-02 -8.86141123e-01 1.70324812e-02
-5.76079671e-01 5.97208490e-01 -4.05337237e-01 -9.44787976e-01
1.86864899e-01 6.87680858e-01 -2.37967752e-01 4.99716621e-01
2.22829566e-02 8.19036099e-02 9.18868642e-01 6.07921783e-01
-9.35353867e-01 4.18774502e-01 -6.99970369e-02]
[ 8.95097883e-01 -5.57134531e-01 -4.65855961e-01 -8.37052070e-01
-1.42762343e-01 -7.81962472e-01 2.67573521e-01 6.05926475e-01
3.93600992e-01 5.32422762e-01 -3.15091760e-01 6.91702966e-01
-1.42462450e-01 6.48019741e-01 2.52992317e-01 -7.13153903e-01
-8.43226200e-01 -9.63334714e-01 -8.66550005e-01 -8.28323726e-02
-7.73316154e-01 -9.44433302e-01 5.09722963e-01 -2.10299039e-01
4.93876991e-01 -9.51903465e-02 -9.98265060e-02]
[-4.38549866e-02 -5.19921469e-02 6.06326684e-01 -1.95214960e-01
8.09372321e-01 -9.25877904e-01 5.47748685e-01 -7.48717238e-01
2.37027134e-01 -9.79271477e-01 7.72545652e-02 -9.93964087e-01
9.02387571e-01 8.10804067e-01 5.91933884e-01 8.30548640e-01
-7.08883538e-01 -6.84539860e-01 -6.24736654e-01 2.44991805e-01
8.11618992e-01 9.79910357e-01 4.22244918e-01 4.63600818e-01
8.18586409e-01 -1.98252535e-01 -5.00298640e-01]
[-6.53139658e-01 -7.61085899e-01 6.25221176e-01 -7.06415253e-01
-4.71405035e-01 6.38178357e-01 -3.78825496e-01 9.64834899e-01
-4.66722596e-01 6.73066899e-02 -3.71065978e-01 8.21545662e-01
-2.66886712e-01 -1.32815345e-01 2.45853846e-02 8.77772955e-01
-9.38101987e-01 4.33757327e-01 7.82037909e-01 -9.45425553e-01
4.41024945e-02 -3.48020376e-01 7.18978642e-01 1.17033102e-01
3.80455736e-01 -9.42930001e-02 2.56618075e-01]
[-4.19806297e-01 -9.81302844e-01 1.53511870e-01 -3.77111572e-01
3.45351970e-02 8.32811706e-01 -1.47050423e-01 -5.05207927e-01
-2.57412477e-01 8.63722233e-01 8.73736763e-01 6.88659897e-01
8.40413029e-01 -5.44199420e-01 -8.25035581e-01 -5.45380527e-01
-3.71246768e-01 -6.50468247e-01 2.14188324e-01 -1.72827170e-01
6.32703024e-01 -6.29739203e-01 4.03753060e-01 -5.19288750e-01
1.48438178e-01 -3.02024806e-01 -8.86071201e-01]
[-5.42372658e-01 3.28205111e-01 -5.49981328e-03 3.80319681e-02
-6.50559700e-01 1.41431703e-01 9.93506850e-01 6.33670218e-01
1.88745248e-01 9.51978137e-01 8.03125169e-01 1.91215867e-01
-9.35147349e-01 -8.12845808e-01 -8.69256570e-01 -9.65337026e-02
-2.49130334e-01 9.50700069e-01 -6.64033414e-01 9.45575184e-01
5.34949738e-01 6.48475679e-01 2.65231634e-01 3.37465540e-01
-4.62353330e-02 -9.73727286e-01 -2.93987829e-01]
[-1.58563970e-02 4.60182422e-01 -6.27433145e-02 -8.51901678e-02
-7.24674518e-01 -9.78222532e-01 5.16556521e-01 -3.60094324e-01
9.68766900e-01 -5.59531548e-01 -3.22583949e-01 4.77922713e-02
5.09782914e-01 -7.22844322e-02 -7.50354914e-01 -3.74997243e-01
9.03833940e-03 3.47698016e-01 5.40299913e-01 -7.39328438e-01
-9.54169737e-01 3.81646444e-02 6.19977421e-01 -9.74792466e-01
3.44939689e-01 3.73616453e-01 -1.01506493e-01]
[ 8.29577373e-01 2.88722170e-01 -9.89520325e-01 -3.11431090e-02
7.18635612e-01 6.60799140e-01 2.98308394e-01 3.47396848e-01
1.56999160e-01 -4.51760450e-01 1.21059981e-01 3.43459570e-01
-2.95140740e-01 7.11656735e-01 -6.09925028e-01 4.94641621e-01
-4.20794508e-01 5.47598574e-01 -1.44525341e-01 6.15396818e-01
-2.92930275e-01 -5.72613525e-01 5.34569017e-01 -3.82716105e-01
4.66490135e-01 4.88946306e-01 -5.57206598e-01]
[-5.71775726e-01 -6.02104153e-01 -7.14963324e-01 -2.45834802e-01
-9.46744231e-01 -7.78159262e-01 3.49128048e-01 5.99553074e-01
-8.38940946e-01 -5.36595379e-01 -5.84748676e-01 8.34667126e-01
4.22629036e-01 1.07769222e-01 -3.90964024e-01 6.69708095e-01
-1.29388085e-01 8.46912430e-01 4.12103609e-01 -4.39373841e-02
-7.47579793e-01 9.52087101e-01 -6.80332699e-01 -5.94795750e-01
-1.37636490e-01 -1.91596188e-01 -7.06497038e-01]
[ 4.58637839e-01 -6.22509866e-01 2.87791289e-01 5.08611901e-01
-5.78535216e-01 2.01908496e-01 4.97856750e-01 2.76437421e-01
1.94254606e-01 -4.09035429e-01 4.63212942e-01 8.90616880e-01
-1.48877219e-01 5.64363634e-01 -8.87717921e-01 6.70543205e-01
-6.15499966e-01 -2.09806262e-01 -3.99837908e-01 -8.39792712e-01
8.09262006e-01 -2.59691645e-01 6.13948770e-02 -1.17674682e-02
-7.35677716e-01 -5.87091882e-01 -8.47622382e-01]
[ 1.58433999e-02 -4.76900896e-01 -2.85876782e-01 -7.83869343e-01
5.75103679e-01 -7.86832246e-01 9.71417647e-01 -6.45677671e-01
1.44810225e-01 -9.10309331e-01 5.74232579e-01 -6.20788104e-01
5.58079568e-02 4.80155086e-01 -7.00137030e-01 1.02174348e-01
-5.66765583e-01 5.18392099e-01 4.45830387e-01 -6.46901931e-01
7.23933115e-01 -9.60449801e-01 7.20473995e-01 1.17807622e-01
-1.93559056e-01 5.17493862e-01 4.33858003e-01]
[ 9.74652350e-01 -4.43829903e-01 -9.92412655e-01 8.67805217e-01
7.15794209e-01 4.57701755e-01 3.33775658e-02 4.13912490e-01
5.61059114e-01 -2.50248113e-01 5.40645051e-01 5.01248638e-01
2.26422423e-01 -1.96268152e-01 3.94616039e-01 -9.93774284e-01
5.49793293e-01 7.92833205e-01 -5.21368585e-01 -7.58465631e-01
-5.59432024e-01 -3.95806537e-01 7.66057017e-01 8.63328605e-02
-4.26576701e-01 -7.23290620e-01 -4.19711074e-01]
[ 2.27742179e-01 -3.51722940e-01 -8.52796366e-02 -1.11765786e-01
6.56270721e-01 -1.47303692e-01 -3.08602358e-01 3.49943210e-01
-5.57035889e-01 -6.55083521e-02 -3.70468625e-01 2.53711204e-01
7.54720949e-01 -1.04622000e-01 5.68914838e-01 -8.60685989e-02
3.12458663e-01 -7.36318050e-01 -1.34036986e-01 8.18623977e-01
2.10958002e-01 5.33549174e-01 9.40121619e-03 -3.88875034e-03
6.85799680e-01 -8.64386131e-01 1.46544543e-01]
[ 8.85525151e-01 3.57200963e-02 -6.11068381e-01 6.95878785e-01
-4.96721715e-01 4.01452073e-01 8.05218808e-02 8.97672577e-01
2.48673405e-01 6.75955924e-01 -9.84134248e-01 9.78680112e-01
-8.44570859e-01 -3.55740973e-01 8.92304791e-01 -9.82121795e-01
6.45460011e-01 7.22423277e-01 -1.20338372e-01 -4.88509612e-01
6.05379039e-01 -4.42759911e-02 -7.31322783e-01 8.55697986e-01
7.91939934e-01 -1.69097000e-02 7.13404993e-01]
[-1.62843948e-01 3.66929800e-01 -2.04018721e-01 1.14840349e-02
-6.20896594e-01 9.29977848e-01 -4.11568624e-01 -7.93080888e-01
-7.11369200e-01 -9.71815412e-01 4.31891399e-01 1.28996640e-01
5.89156702e-01 1.41598466e-02 5.83642079e-01 3.91528429e-01
5.55696954e-01 -1.87034262e-01 2.95541266e-01 -6.40411405e-01
-3.56360073e-01 -6.54790760e-01 -1.82725550e-01 -5.17162504e-01
-1.86156012e-01 9.50444685e-01 -3.59361348e-01]
[ 9.64981890e-01 2.72612252e-01 -2.49817963e-01 7.14968998e-01
2.39173479e-01 -4.95933840e-01 5.85711356e-01 -1.34122983e-01
-2.84977665e-01 -3.39446127e-01 3.94737751e-01 -4.62699752e-01
6.16556027e-01 -4.09422411e-01 8.82427672e-02 -2.41570164e-02
7.10712825e-01 7.76772869e-01 -6.31231115e-01 1.70696918e-01
7.96410092e-01 -1.07765562e-01 8.43736611e-01 -4.42018219e-01
2.17662348e-01 3.64907420e-01 -5.43588533e-01]
[-9.72464975e-01 -1.66552075e-01 8.76963784e-01 -3.13943780e-01
5.59488591e-01 -6.50527374e-01 -3.16094327e-01 -7.10804558e-01
4.33541628e-01 3.98615247e-01 3.76994636e-01 -4.93207931e-01
3.84720243e-01 -5.45404918e-01 -1.50701768e-01 -2.56155757e-01
-2.89384177e-01 -8.84690386e-01 2.63293254e-01 4.14633205e-01
2.27177389e-01 2.96625512e-01 -6.60118572e-01 -7.01106402e-01
2.83500871e-02 7.50665453e-01 -6.32093117e-01]
[-7.43217626e-02 -1.42135332e-01 -5.42162816e-03 -6.76978459e-01
-3.15118718e-01 -4.76239192e-01 6.89053886e-01 6.00664492e-01
-1.46721683e-01 2.14030922e-01 -7.09068779e-01 1.92265884e-02
-4.06105828e-01 7.19301907e-01 3.43196762e-01 2.66948025e-01
-7.50497400e-01 -5.88242410e-02 9.73145559e-01 8.96598348e-01
2.90171281e-01 -6.96550258e-01 2.78253697e-01 1.31324225e-01
-6.26683247e-02 -1.43925061e-01 1.98539511e-01]
[ 6.99939777e-01 5.02242081e-01 1.58721081e-01 8.49408363e-01
-8.70520033e-01 9.82693017e-01 -8.94010915e-01 -6.01008908e-01
-1.54494677e-01 -7.84982248e-01 2.47340822e-01 -9.04014872e-01
-4.30752238e-01 -8.77926638e-01 4.07038662e-01 3.36912335e-01
-2.42838813e-01 -6.23611480e-01 4.94009658e-01 -3.19241418e-01
5.90602335e-01 -2.41981216e-02 5.13388887e-02 -9.43018301e-01
2.88464040e-01 -2.98686995e-01 -5.41589945e-01]
[-1.32233248e-01 -2.35065085e-01 -6.04219198e-02 9.58966708e-01
-2.71243859e-01 5.48820267e-01 1.05535193e-01 7.78262178e-01
-2.90094298e-01 -5.08962640e-01 8.22038479e-01 -9.12931472e-01
9.01506856e-01 1.12813831e-01 -2.47273567e-01 9.90104645e-01
-8.83274708e-01 3.34127195e-02 -9.37805849e-01 1.42351478e-01
-6.39062982e-01 2.61918401e-01 9.61847352e-01 7.49805102e-01
-9.63275012e-02 4.16921740e-01 5.54937500e-01]
[-1.03138316e-02 5.70669804e-02 -6.98431203e-01 -2.61200149e-01
-7.15557494e-01 4.53787507e-01 -4.59740112e-02 -1.02242327e-01
7.71995942e-01 5.52375446e-02 -1.81818336e-01 -4.62215956e-01
-8.55975930e-01 -1.63727733e-01 -9.48493035e-01 -4.17692119e-01
7.01901970e-03 9.31866130e-01 -7.81234172e-01 3.46082108e-01
-1.35257802e-04 5.54196459e-01 -7.12786004e-01 -8.33594727e-01
-2.01562789e-01 5.93924504e-01 -6.16648522e-01]
[ 3.11904022e+05 2.36930480e+05 2.37957023e+05 3.08556297e+05
2.36785200e+05 3.11921966e+05 3.09054511e+05 2.37956995e+05
3.08513654e+05 2.36793334e+05 2.95198079e+05 2.99233352e+05
3.08527455e+05 3.08604518e+05 2.48323509e+05 1.19576511e+05
2.37502349e+05 2.00414207e+05 2.37247169e+05 2.37592353e+05
3.08623089e+05 2.36470771e+05 2.36664343e+05 3.11521031e+05
2.95311949e+05 3.01332011e+05 3.08859215e+05]
[ 1.06108332e+06 8.06030383e+05 8.09521893e+05 1.04969926e+06
8.05534310e+05 1.06114720e+06 1.05138968e+06 8.09523628e+05
1.04955300e+06 8.05564113e+05 1.00425565e+06 1.01797857e+06
1.04959874e+06 1.04986183e+06 8.44786496e+05 4.06790395e+05
8.07972151e+05 6.81800815e+05 8.07103343e+05 8.08282568e+05
1.04992663e+06 8.04464144e+05 8.05123950e+05 1.05978030e+06
1.00463936e+06 1.02511975e+06 1.05072390e+06]
[ 1.29744161e+06 9.90348263e+05 9.96675767e+05 1.27894597e+06
9.91026545e+05 1.29869101e+06 1.28136208e+06 9.95884753e+05
1.27931671e+06 9.89901801e+05 1.23255464e+06 1.24482639e+06
1.27933101e+06 1.27929704e+06 1.03699914e+06 4.84501408e+05
9.93885227e+05 8.47665910e+05 9.94258559e+05 9.95349861e+05
1.27962040e+06 9.89548146e+05 9.90406924e+05 1.29771039e+06
1.23192219e+06 1.25289838e+06 1.28060821e+06]
[ 1.21583170e+06 8.89071265e+05 9.02496022e+05 1.23242486e+06
8.87944478e+05 1.21543879e+06 1.23501875e+06 8.94486332e+05
1.23644170e+06 8.88702886e+05 1.27093672e+06 1.23230631e+06
1.23608153e+06 1.23443059e+06 1.09133899e+06 4.03877536e+05
8.92161393e+05 8.49835038e+05 9.02399178e+05 8.99463771e+05
1.23530674e+06 8.88033561e+05 8.87819152e+05 1.21532172e+06
1.26587997e+06 1.24146816e+06 1.23637968e+06]
[ 2.22357253e+06 1.65601998e+06 1.67438142e+06 2.22485947e+06
1.65585899e+06 2.22570465e+06 2.22849256e+06 1.66632232e+06
2.22863027e+06 1.65544076e+06 2.21242918e+06 2.18980064e+06
2.22788176e+06 2.22693579e+06 1.90843672e+06 7.85357990e+05
1.66203433e+06 1.51807824e+06 1.67207935e+06 1.67052324e+06
2.22793434e+06 1.65448468e+06 1.65530002e+06 2.22380205e+06
2.20793890e+06 2.20532022e+06 2.22997719e+06]
[ 1.42398124e+06 1.06978768e+06 1.08686262e+06 1.41919253e+06
1.07221492e+06 1.42974921e+06 1.42194144e+06 1.07949866e+06
1.42091742e+06 1.07004294e+06 1.41635185e+06 1.39154160e+06
1.42001217e+06 1.41964884e+06 1.25168477e+06 4.71335508e+05
1.07548371e+06 1.00953942e+06 1.08627610e+06 1.08455364e+06
1.42050777e+06 1.07080454e+06 1.07183545e+06 1.42734309e+06
1.41294762e+06 1.39815988e+06 1.42225519e+06]
[ 2.26158374e+06 1.62232426e+06 1.64918472e+06 2.27721062e+06
1.62296000e+06 2.27697125e+06 2.27942896e+06 1.63551829e+06
2.27850331e+06 1.62259985e+06 2.31246638e+06 2.24534894e+06
2.27605491e+06 2.27693629e+06 2.07807171e+06 7.36690032e+05
1.62806015e+06 1.60625598e+06 1.64833377e+06 1.64437812e+06
2.27694075e+06 1.62147975e+06 1.62247383e+06 2.27289332e+06
2.30806673e+06 2.24848387e+06 2.28085379e+06]
[ 1.79786107e+06 1.28973150e+06 1.30102307e+06 1.73490299e+06
1.29468259e+06 1.81789020e+06 1.73549012e+06 1.30169894e+06
1.73165549e+06 1.29041961e+06 1.66854448e+06 1.66703347e+06
1.72890887e+06 1.73195673e+06 1.49091798e+06 5.69304962e+05
1.29685742e+06 1.18746036e+06 1.29746234e+06 1.30136768e+06
1.73041442e+06 1.29318295e+06 1.29376305e+06 1.81536926e+06
1.66647773e+06 1.66119247e+06 1.73415011e+06]
[ 2.11536200e+06 1.52190871e+06 1.54233795e+06 2.04833044e+06
1.52912303e+06 2.14108207e+06 2.04883360e+06 1.53778266e+06
2.04730324e+06 1.52268129e+06 2.03173018e+06 2.00535371e+06
2.04474333e+06 2.04677558e+06 1.81452541e+06 6.68950210e+05
1.53221277e+06 1.44334107e+06 1.54158551e+06 1.54162009e+06
2.04586658e+06 1.52717019e+06 1.52775646e+06 2.14006000e+06
2.03153244e+06 2.00128989e+06 2.04973350e+06]
[ 1.71809239e+06 1.24212553e+06 1.27959147e+06 1.73271649e+06
1.25169189e+06 1.73569473e+06 1.73586544e+06 1.26023256e+06
1.74105153e+06 1.24243518e+06 1.85158746e+06 1.74724888e+06
1.73863815e+06 1.73611492e+06 1.71465082e+06 4.33137193e+05
1.25487604e+06 1.34446797e+06 1.28691997e+06 1.27691144e+06
1.73916550e+06 1.25002587e+06 1.25034498e+06 1.74099960e+06
1.84561648e+06 1.74696027e+06 1.74123890e+06]
[ 2.89478305e+06 2.03535296e+06 2.05681977e+06 2.91251656e+06
2.03109519e+06 2.90083163e+06 2.91409607e+06 2.04494740e+06
2.91533788e+06 2.03414298e+06 2.89920416e+06 2.86975931e+06
2.91343282e+06 2.91396511e+06 2.54873094e+06 9.80183320e+05
2.03951925e+06 1.93938423e+06 2.05414985e+06 2.05082273e+06
2.91387706e+06 2.02968076e+06 2.03082172e+06 2.90168030e+06
2.89587812e+06 2.88636751e+06 2.91729703e+06]
[ 2.45362303e+06 1.65700909e+06 1.66861612e+06 2.48160578e+06
1.64916604e+06 2.45064476e+06 2.48246395e+06 1.66070490e+06
2.48464454e+06 1.65502988e+06 2.46240797e+06 2.44038708e+06
2.48290121e+06 2.48291134e+06 2.14540596e+06 7.93518602e+05
1.65727423e+06 1.57648284e+06 1.66403317e+06 1.66361311e+06
2.48255368e+06 1.64875674e+06 1.64927068e+06 2.44929578e+06
2.45494489e+06 2.46257065e+06 2.48581074e+06]
[ 1.77892489e+06 1.11313602e+06 1.13602424e+06 1.85470529e+06
1.10423208e+06 1.77700851e+06 1.85602484e+06 1.11623307e+06
1.86096093e+06 1.11161807e+06 2.00208064e+06 1.88069025e+06
1.86015506e+06 1.85704605e+06 1.75005479e+06 4.71337079e+05
1.11250560e+06 1.19113041e+06 1.13736919e+06 1.12905749e+06
1.85790693e+06 1.10587046e+06 1.10490320e+06 1.77144602e+06
1.99158796e+06 1.89718943e+06 1.86071539e+06]
[ 1.48375460e+06 9.33023763e+05 9.43556181e+05 1.47360670e+06
9.29629646e+05 1.49186013e+06 1.47451617e+06 9.37348762e+05
1.47460949e+06 9.32434035e+05 1.48211490e+06 1.46051861e+06
1.47314966e+06 1.47363336e+06 1.30397366e+06 4.56923589e+05
9.34042888e+05 9.34452050e+05 9.41933914e+05 9.40401876e+05
1.47297904e+06 9.28980571e+05 9.29625142e+05 1.49289815e+06
1.47933547e+06 1.46950270e+06 1.47546871e+06]
[ 8.00140995e+05 5.31046054e+05 5.33904846e+05 7.78959137e+05
5.30327904e+05 8.05620269e+05 7.79524490e+05 5.33689746e+05
7.78642817e+05 5.30813225e+05 7.51027274e+05 7.61770256e+05
7.77742034e+05 7.78702294e+05 6.66742548e+05 2.79052400e+05
5.32083645e+05 5.04187825e+05 5.32129649e+05 5.32946305e+05
7.78124592e+05 5.29363533e+05 5.30135413e+05 8.07944416e+05
7.51189234e+05 7.65895297e+05 7.79383198e+05]
[ 6.11519120e+05 4.24924275e+05 4.32797522e+05 6.25061973e+05
4.22900890e+05 6.14221252e+05 6.25243360e+05 4.26824927e+05
6.25837565e+05 4.24629802e+05 6.63194194e+05 6.28010344e+05
6.25072770e+05 6.25258892e+05 5.77642016e+05 1.93095516e+05
4.25440996e+05 4.20337643e+05 4.33031316e+05 4.30844908e+05
6.25264509e+05 4.23643288e+05 4.22874452e+05 6.10828834e+05
6.62266100e+05 6.30615424e+05 6.26499122e+05]
[ 2.63033850e+05 1.79188603e+05 1.87686811e+05 2.96188641e+05
1.76636952e+05 2.62982969e+05 2.95940721e+05 1.79626147e+05
2.97453216e+05 1.78929392e+05 3.67051978e+05 3.11538451e+05
2.96899060e+05 2.96534520e+05 3.08411172e+05 5.19810384e+04
1.78894213e+05 1.98696315e+05 1.89180587e+05 1.85711782e+05
2.96909477e+05 1.78411388e+05 1.76827489e+05 2.56655167e+05
3.65343924e+05 3.12426626e+05 2.97774670e+05]
[ 2.10425790e-01 9.80812394e-01 5.47832500e-01 -3.31447190e-01
-8.22003558e-01 -6.30188819e-01 5.37037518e-02 -1.65795164e-01
6.01319316e-01 8.66404676e-01 -6.44270504e-01 7.20133542e-01
9.14789853e-01 9.18941214e-01 -9.24274825e-01 -8.84832989e-01
-9.88405214e-01 -3.74637688e-01 -8.88603175e-01 -4.12275029e-01
-2.87967028e-01 9.07354037e-01 -4.60981550e-02 -4.43523115e-01
6.01039010e-03 2.86715849e-01 -7.77508655e-01]
[ 5.16123316e-01 7.03891543e-01 6.88499719e-01 7.81013665e-01
-2.36315206e-01 -1.12389603e-01 -7.96837048e-01 -5.48386155e-01
9.42640939e-01 -4.30752062e-01 8.14792284e-01 7.81104573e-01
8.45008995e-01 -6.87700871e-01 7.59444287e-01 2.63989901e-01
-5.78743643e-01 -3.09768170e-01 -6.80162423e-01 -1.11303685e-01
-8.32450092e-01 -6.69363019e-01 -6.05607307e-01 3.82054683e-01
1.47605738e-01 7.46646268e-01 -5.10731869e-01]
[ 2.59215913e-01 -9.31137469e-01 3.23969222e-02 7.26452963e-01
9.68253088e-01 -9.80254049e-01 -4.94317036e-01 -5.52300659e-01
-9.04924812e-01 -9.79655087e-01 -1.96093755e-02 -9.09035709e-01
-4.43343738e-01 2.79949138e-01 -4.10615917e-01 -4.60690598e-01
1.81093044e-01 -2.38931846e-01 4.05046068e-01 -7.75209750e-03
2.66418532e-01 -2.93211306e-01 -4.25912108e-01 -7.33585772e-01
8.74160770e-01 6.09671692e-01 8.76057086e-01]
[-6.29238951e-01 8.66311526e-01 8.71506415e-01 -4.32910973e-01
-4.50731503e-01 1.02863147e-01 -6.29421521e-01 -1.15797779e-01
-6.29364708e-01 8.94751836e-01 -1.23506850e-02 9.27835535e-01
2.89883345e-01 -3.13684539e-02 9.35390492e-01 -7.13620437e-01
2.64659749e-01 3.23776736e-01 -1.32320346e-01 -8.81285549e-01
-1.45547977e-02 -6.97321130e-02 6.13493622e-01 -4.86678020e-01
-2.17139274e-01 -5.19655586e-01 3.72886830e-01]
[ 9.79766907e-01 -6.45140926e-01 6.42893480e-01 -5.38022881e-01
-8.84048373e-01 -7.22366964e-01 8.70306231e-01 7.77084207e-01
-4.21479009e-01 8.95528132e-01 6.99861070e-01 -1.30690412e-01
-6.39008903e-02 2.59706043e-01 -6.83936330e-01 -9.70435827e-01
-4.68975965e-01 -9.69112736e-01 3.48997688e-01 1.02937672e-01
-3.56703709e-01 5.60404674e-01 -7.08429138e-01 -5.10238722e-01
-4.15372476e-01 -6.08136107e-01 -8.24122632e-01]
[ 7.39952361e-01 -8.23622709e-01 3.67420672e-01 -7.59198246e-01
-9.78601994e-01 1.14536460e-01 8.14218110e-01 7.20913335e-01
-3.23097232e-01 -9.45682341e-01 6.01718710e-01 6.11969865e-01
7.36976233e-01 3.39293200e-01 6.15557725e-01 7.94996565e-01
-9.23400990e-02 1.15650607e-01 1.22622577e-02 3.83967809e-01
3.65813735e-01 4.06272717e-02 6.56936296e-01 1.15587736e-02
6.49717125e-01 -4.36309824e-01 -6.43010334e-01]
[ 9.39741141e-01 4.83879051e-01 -4.80416613e-01 1.62470685e-01
9.10524507e-01 -8.38492184e-01 -8.32931586e-01 2.38269663e-01
-5.51013042e-01 5.30367913e-01 1.36305086e-01 3.32376180e-01
-7.84372198e-01 -8.31433897e-01 2.50242137e-01 -1.80537478e-01
-8.25494952e-01 -2.57872110e-01 3.44288819e-01 -6.20825200e-01
7.91458217e-01 8.99692778e-01 9.23145085e-01 4.60165115e-01
-1.87423145e-01 4.87498393e-01 -4.24026241e-01]
[-3.71165555e-01 2.11792722e-01 1.89694267e-01 7.57321953e-01
-4.90798489e-01 5.32376730e-01 8.82026534e-01 -9.97934135e-01
-4.78217640e-02 3.14080658e-01 6.86646428e-01 -6.32521176e-01
7.12318476e-01 -2.71269040e-01 7.84547859e-01 -9.44576520e-01
-8.29219722e-01 9.62820932e-01 2.19003852e-01 -1.64735306e-01
-6.61571631e-01 2.99802306e-01 -9.26049863e-01 -3.76772173e-01
-3.53041606e-01 2.14883787e-01 3.01662513e-01]
[ 1.43150517e+05 1.12100431e+05 1.12491365e+05 1.41583240e+05
1.12011081e+05 1.43184397e+05 1.41798767e+05 1.12532123e+05
1.41573421e+05 1.12003044e+05 1.35660917e+05 1.37476662e+05
1.41581607e+05 1.41613735e+05 1.14726018e+05 5.78296307e+04
1.12346808e+05 9.37013977e+04 1.12116378e+05 1.12326867e+05
1.41633930e+05 1.11867432e+05 1.11952960e+05 1.44414604e+05
1.35707056e+05 1.38409999e+05 1.41736004e+05]
[ 5.29308007e+04 4.05346278e+04 4.06966394e+04 5.22823040e+04
4.05011727e+04 5.30371411e+04 5.23704783e+04 4.07022941e+04
5.22705610e+04 4.05112214e+04 5.00167863e+04 5.07040240e+04
5.22736385e+04 5.22897125e+04 4.21335116e+04 2.06867681e+04
4.06278110e+04 3.42903993e+04 4.05683051e+04 4.06304705e+04
5.22953826e+04 4.04507591e+04 4.04836273e+04 5.31198757e+04
5.00396752e+04 5.10588906e+04 5.23322175e+04]
[ 2.49890706e+05 1.73518716e+05 1.76522877e+05 2.60346049e+05
1.72460237e+05 2.49176449e+05 2.60982138e+05 1.74118810e+05
2.61500322e+05 1.73409046e+05 2.77648852e+05 2.62512287e+05
2.61434937e+05 2.60939379e+05 2.39911440e+05 7.70874402e+04
1.73609003e+05 1.75466401e+05 1.76643418e+05 1.75585713e+05
2.61161019e+05 1.72808045e+05 1.72549145e+05 2.49016696e+05
2.76347613e+05 2.65452403e+05 2.61442917e+05]
[ 2.66680320e+05 2.50257409e+05 2.52917088e+05 2.66504961e+05
2.51851028e+05 2.65685790e+05 2.67035611e+05 2.52474981e+05
2.67289175e+05 2.49896879e+05 2.63923587e+05 2.60487345e+05
2.67399719e+05 2.66953621e+05 2.27149206e+05 1.09117239e+05
2.52161873e+05 2.03612456e+05 2.52811516e+05 2.53103917e+05
2.67698931e+05 2.51443996e+05 2.51539066e+05 2.64168031e+05
2.63281666e+05 2.61876150e+05 2.67700844e+05]
[ 1.79502440e+06 1.45845983e+06 1.48201468e+06 1.78937634e+06
1.46673817e+06 1.79883192e+06 1.79237818e+06 1.47410509e+06
1.79340164e+06 1.45792236e+06 1.81088773e+06 1.75471760e+06
1.79258815e+06 1.79076089e+06 1.58283867e+06 5.39463954e+05
1.46942833e+06 1.34112975e+06 1.48282597e+06 1.48204720e+06
1.79323648e+06 1.46541623e+06 1.46527214e+06 1.79237492e+06
1.80205122e+06 1.76096040e+06 1.79518663e+06]
[ 5.70989326e+06 4.34382338e+06 4.42191768e+06 5.82807082e+06
4.35152724e+06 5.71124164e+06 5.83878348e+06 4.38142410e+06
5.84523713e+06 4.34183491e+06 6.03080091e+06 5.77569477e+06
5.84391050e+06 5.83544532e+06 5.29388594e+06 1.66503122e+06
4.36650275e+06 4.17870485e+06 4.42718272e+06 4.41370064e+06
5.84198311e+06 4.35216943e+06 4.34925581e+06 5.69237958e+06
6.00347985e+06 5.80572853e+06 5.84869962e+06]
[ 1.00481563e+07 7.61793915e+06 7.74355706e+06 1.02323071e+07
7.61743362e+06 1.00567664e+07 1.02459611e+07 7.67036633e+06
1.02619164e+07 7.61198339e+06 1.06709373e+07 1.02267954e+07
1.02606526e+07 1.02460397e+07 9.33511164e+06 3.13448869e+06
7.64890845e+06 7.30340604e+06 7.75084440e+06 7.72383465e+06
1.02570421e+07 7.62114279e+06 7.61419305e+06 1.00275008e+07
1.06305539e+07 1.02832771e+07 1.02673638e+07]
[ 1.39326510e+07 1.04295485e+07 1.06084787e+07 1.40928055e+07
1.04429966e+07 1.39565161e+07 1.41114325e+07 1.05156337e+07
1.41260764e+07 1.04234126e+07 1.45271835e+07 1.39609191e+07
1.41194909e+07 1.41075171e+07 1.28099359e+07 4.12776078e+06
1.04783846e+07 1.00268296e+07 1.06189651e+07 1.05874124e+07
1.41187807e+07 1.04436482e+07 1.04367317e+07 1.39066557e+07
1.44694315e+07 1.40174947e+07 1.41368834e+07]
[ 2.05577215e+07 1.48843746e+07 1.52088075e+07 2.11419253e+07
1.49089369e+07 2.05835532e+07 2.11714087e+07 1.50294037e+07
2.12030519e+07 1.48795295e+07 2.20877773e+07 2.09872375e+07
2.11910310e+07 2.11695912e+07 1.95889653e+07 5.38814253e+06
1.49583876e+07 1.49123955e+07 1.52434595e+07 1.51715482e+07
2.11904332e+07 1.49126866e+07 1.48999740e+07 2.04919006e+07
2.19883885e+07 2.10564152e+07 2.12185913e+07]
[ 3.33946229e+07 2.39345186e+07 2.43955633e+07 3.41804478e+07
2.39460370e+07 3.34680834e+07 3.42292132e+07 2.41403345e+07
3.42630917e+07 2.39260767e+07 3.54375373e+07 3.38642976e+07
3.42405892e+07 3.42169872e+07 3.14736803e+07 9.38806931e+06
2.40296781e+07 2.38428239e+07 2.44307250e+07 2.43278123e+07
3.42389977e+07 2.39481556e+07 2.39348275e+07 3.33594327e+07
3.53080936e+07 3.39829667e+07 3.42878461e+07]
[ 5.20913998e+07 3.71819873e+07 3.76420413e+07 5.21772670e+07
3.71875946e+07 5.22789870e+07 5.22415847e+07 3.74377381e+07
5.22493289e+07 3.71612299e+07 5.24109009e+07 5.13246197e+07
5.22158379e+07 5.22082134e+07 4.60617522e+07 1.63182604e+07
3.73119541e+07 3.55125151e+07 3.76219087e+07 3.75707612e+07
5.22119790e+07 3.71680947e+07 3.71681390e+07 5.22296054e+07
5.22924106e+07 5.15787464e+07 5.22907582e+07]
[ 7.38581947e+07 5.28259846e+07 5.33760673e+07 7.40045780e+07
5.27896021e+07 7.40944293e+07 7.40753801e+07 5.31327100e+07
7.40882012e+07 5.27860276e+07 7.39226508e+07 7.27603162e+07
7.40479195e+07 7.40443056e+07 6.47360616e+07 2.39093605e+07
5.29740404e+07 4.98983392e+07 5.33172666e+07 5.32722170e+07
7.40425043e+07 5.27662816e+07 5.27642259e+07 7.40297229e+07
7.37923167e+07 7.31690539e+07 7.41506259e+07]
[ 9.82335042e+07 6.85459501e+07 6.92475105e+07 9.85784641e+07
6.84712963e+07 9.85467154e+07 9.86705041e+07 6.89302509e+07
9.86844733e+07 6.84964957e+07 9.79721961e+07 9.68217473e+07
9.86252616e+07 9.86348620e+07 8.57956731e+07 3.13794433e+07
6.87129304e+07 6.53802739e+07 6.92076169e+07 6.90950075e+07
9.86261546e+07 6.84250209e+07 6.84393352e+07 9.85210866e+07
9.78387455e+07 9.74242363e+07 9.87639032e+07]
[ 1.01507712e+08 6.95537462e+07 7.03301553e+07 1.02434072e+08
6.94214933e+07 1.01765969e+08 1.02539001e+08 6.99262382e+07
1.02571833e+08 6.95091935e+07 1.02445414e+08 1.00850153e+08
1.02508488e+08 1.02508557e+08 8.97191708e+07 3.19339731e+07
6.96897604e+07 6.74330110e+07 7.02829514e+07 7.01355640e+07
1.02501741e+08 6.93791325e+07 6.93972558e+07 1.01771119e+08
1.02298198e+08 1.01522655e+08 1.02640093e+08]
[ 8.31704571e+07 5.57099471e+07 5.64272553e+07 8.43793502e+07
5.55410100e+07 8.33100298e+07 8.44834605e+07 5.59797693e+07
8.45390398e+07 5.56706003e+07 8.53405748e+07 8.35090718e+07
8.44850735e+07 8.44629584e+07 7.48831712e+07 2.54279709e+07
5.57874672e+07 5.52787321e+07 5.63860670e+07 5.62356346e+07
8.44629824e+07 5.55171605e+07 5.55308557e+07 8.33527378e+07
8.51731339e+07 8.41177053e+07 8.45773989e+07]
[ 5.45555177e+07 3.64935906e+07 3.69852916e+07 5.52585041e+07
3.63775967e+07 5.46520694e+07 5.53242558e+07 3.66675554e+07
5.53644950e+07 3.64667222e+07 5.60631933e+07 5.48005629e+07
5.53285471e+07 5.53116999e+07 4.92968189e+07 1.66014257e+07
3.65439641e+07 3.63497432e+07 3.69601102e+07 3.68612411e+07
5.53127185e+07 3.63684917e+07 3.63717127e+07 5.46747793e+07
5.59392864e+07 5.51844228e+07 5.53897813e+07]
[ 2.88475378e+07 1.96206243e+07 1.99062278e+07 2.93237667e+07
1.95568173e+07 2.89051206e+07 2.93556693e+07 1.97177844e+07
2.93788373e+07 1.96071783e+07 3.00065426e+07 2.91452217e+07
2.93584316e+07 2.93496273e+07 2.65821374e+07 8.89917194e+06
1.96474780e+07 1.97019646e+07 1.98985382e+07 1.98354661e+07
2.93512240e+07 1.95575026e+07 1.95553226e+07 2.88986413e+07
2.99277372e+07 2.93143402e+07 2.93931190e+07]
[ 1.27925512e+07 8.70438624e+06 8.86249528e+06 1.31400315e+07
8.67138623e+06 1.28181960e+07 1.31531917e+07 8.75296545e+06
1.31639314e+07 8.70071653e+06 1.36723689e+07 1.31017350e+07
1.31549790e+07 1.31496482e+07 1.21671859e+07 3.88134391e+06
8.71496948e+06 8.96119176e+06 8.86741022e+06 8.82219933e+06
1.31511458e+07 8.67535387e+06 8.67240562e+06 1.27935875e+07
1.36320052e+07 1.31624630e+07 1.31707298e+07]
[ 3.88747712e+06 2.65142711e+06 2.70639874e+06 4.01242258e+06
2.64224670e+06 3.89640492e+06 4.01661642e+06 2.66882676e+06
4.01789209e+06 2.65133941e+06 4.16698176e+06 3.96968587e+06
4.01448565e+06 4.01385738e+06 3.70464283e+06 1.15423782e+06
2.65486828e+06 2.74380448e+06 2.70904253e+06 2.69310504e+06
4.01461320e+06 2.64366076e+06 2.64271789e+06 3.87959477e+06
4.15687183e+06 3.98635650e+06 4.02121985e+06]
[ 3.91292692e+05 3.16584429e+05 3.37841402e+05 4.74599637e+05
3.15956472e+05 3.87940894e+05 4.76112183e+05 3.21132798e+05
4.78468500e+05 3.16353029e+05 5.84778349e+05 4.77347116e+05
4.77484814e+05 4.75916418e+05 5.24832508e+05 5.42212412e+04
3.18192337e+05 3.78415343e+05 3.42015548e+05 3.34499033e+05
4.77909685e+05 3.17959121e+05 3.16220467e+05 3.75106326e+05
5.78606335e+05 4.78369969e+05 4.78865593e+05]
[-3.28273500e+04 -4.60662130e+03 -1.66209843e+03 -2.11908966e+04
-3.70312197e+03 -3.38625397e+04 -2.08442249e+04 -3.67326993e+03
-2.02366053e+04 -4.74887804e+03 -7.80386430e+03 -2.06463952e+04
-2.02788991e+04 -2.07825670e+04 -1.79762322e+03 -2.33060646e+04
-3.87911157e+03 4.20582040e+03 -7.61833397e+02 -1.67218990e+03
-2.01781750e+04 -3.54317782e+03 -3.75658145e+03 -3.54058013e+04
-9.31604918e+03 -2.08519669e+04 -2.03051953e+04]
[ 1.45376587e-01 -2.75069365e-01 -2.15104291e-02 -6.21723250e-01
-2.12833171e-01 -9.40076495e-01 -7.49418793e-02 -4.51051774e-01
5.34317207e-02 -9.41455757e-01 1.10173533e-01 -4.14004233e-01
1.54981362e-01 4.65539707e-01 -1.19324346e-01 3.26313646e-01
-5.22180090e-01 9.97198177e-01 -5.14242957e-01 8.81656829e-01
-5.65560499e-01 -4.87123079e-03 6.42353930e-01 4.33176094e-01
4.11160824e-01 -1.19118880e-01 5.08350051e-01]
[ 8.39907154e-01 -1.17296509e-01 5.59309683e-02 -8.67928832e-01
-2.18453853e-01 -6.55228673e-02 7.90275422e-01 -7.78885119e-01
4.62275206e-01 9.09423371e-02 2.13070861e-01 -9.40434112e-01
-7.06505240e-01 -4.32033549e-01 -9.90255904e-01 3.38315596e-01
7.40515898e-01 9.39366185e-02 8.63280950e-02 2.31451857e-01
-3.95636999e-01 -2.66536037e-01 1.49879455e-01 6.18433167e-01
-5.96806731e-01 -3.44951888e-01 4.85842501e-01]
[-3.18159502e-01 -9.04778143e-01 -6.87286143e-01 -6.12270281e-01
-9.77527488e-03 2.70249922e-01 7.60439954e-01 8.05073113e-01
-3.85678463e-01 5.06760146e-01 -4.35143939e-01 -2.62846260e-01
-4.14546876e-01 -1.72618528e-01 -5.70568609e-01 -3.62027987e-01
-7.56160372e-01 9.26036479e-01 7.96601880e-03 8.46201365e-01
4.92320282e-01 -8.45894246e-02 5.09244451e-01 2.56046157e-01
-3.92483132e-01 4.33186268e-02 4.24624391e-01]
[-3.89372937e-01 -9.74954326e-01 -4.63474342e-01 5.93490951e-01
8.59986178e-01 2.50662310e-01 -7.34385031e-01 5.15140718e-01
5.38106921e-02 5.07738143e-01 7.17223406e-01 8.95083102e-01
3.09075069e-01 7.08516420e-01 4.85176115e-01 4.54202377e-01
7.17581513e-01 8.46006082e-01 8.04152003e-01 -2.08499477e-01
-8.31957440e-01 6.59147437e-01 7.78631066e-02 8.41523095e-02
6.50350661e-01 -9.36031631e-01 7.55920837e-01]
[-9.30731997e-01 3.86389117e-01 1.74968959e-01 2.83498362e-01
-2.51839625e-01 -4.49075947e-01 1.88171629e-02 7.71646234e-01
1.30579341e-01 3.26297783e-01 -1.17241538e-01 9.44278174e-01
4.85044905e-01 -2.90194978e-01 3.07062065e-01 8.52328237e-02
7.68112425e-01 -4.49891898e-01 -7.83865030e-01 -6.17455897e-01
-2.25907535e-01 7.08119590e-01 -4.58310172e-01 2.52717606e-01
2.47103602e-01 -1.83905729e-01 -8.99329741e-01]
[ 4.89667746e-01 -4.08548931e-01 -2.03083607e-01 -2.45520865e-01
3.27205263e-01 -8.27333426e-01 9.97798409e-02 -9.69156355e-01
9.66077967e-01 1.96854445e-01 -2.31771544e-01 -7.06504139e-01
3.93756653e-01 8.11616833e-01 -3.63782495e-01 5.32984289e-01
-4.25003796e-01 9.14450685e-01 4.04631510e-01 2.50031186e-01
8.61469466e-01 -4.61915225e-01 8.47231493e-01 3.56165868e-01
5.42725014e-01 1.43270673e-01 6.67809355e-01]
[ 3.96563599e-01 -7.06782596e-01 2.24922257e-01 -4.41359329e-01
8.31757446e-01 -6.03535420e-01 -4.28567009e-01 -9.04690590e-01
-1.04841712e-01 1.15175630e-01 1.47122165e-01 8.10754760e-01
-3.05172134e-01 -1.04943241e-01 7.02475325e-01 1.53658606e-01
3.07985870e-01 -4.43281339e-01 -2.50573967e-02 2.41904775e-01
-7.33211940e-01 -9.34182567e-01 -7.73177998e-01 -4.50778473e-02
-9.51946531e-01 2.52417858e-01 -8.04834764e-01]
[ 1.16642463e+05 1.25349475e+05 1.31025820e+05 1.31034783e+05
1.25753049e+05 1.16617999e+05 1.31171831e+05 1.27189125e+05
1.31754375e+05 1.25578962e+05 1.66533332e+05 1.40879407e+05
1.31762847e+05 1.31561540e+05 1.47583597e+05 5.85173315e+04
1.26415753e+05 1.25489056e+05 1.32333587e+05 1.29871475e+05
1.32143427e+05 1.25806840e+05 1.25848998e+05 1.14457519e+05
1.68490191e+05 1.40736686e+05 1.32009654e+05]
[ 6.15921451e+05 6.30773559e+05 6.52543634e+05 6.45671674e+05
6.36232843e+05 6.18027055e+05 6.47561515e+05 6.40219549e+05
6.49884130e+05 6.30831215e+05 7.49016004e+05 6.74850837e+05
6.49996033e+05 6.48141947e+05 6.65821186e+05 2.44275634e+05
6.37865540e+05 5.98541563e+05 6.57275968e+05 6.50274303e+05
6.51085022e+05 6.36006870e+05 6.35611546e+05 6.11777922e+05
7.50388137e+05 6.74938825e+05 6.50619765e+05]
[-8.58698316e+05 -4.29506874e+05 -4.05654096e+05 -8.55745564e+05
-4.16113303e+05 -8.50745563e+05 -8.53763812e+05 -4.19887431e+05
-8.48473125e+05 -4.29951291e+05 -6.57060848e+05 -7.60781663e+05
-8.48308258e+05 -8.52765453e+05 -5.26934949e+05 -3.80236997e+05
-4.19851493e+05 -2.89537710e+05 -3.95061781e+05 -4.04224188e+05
-8.47982453e+05 -4.15580475e+05 -4.17720825e+05 -8.51466549e+05
-6.63844542e+05 -7.74569505e+05 -8.50319494e+05]
[-3.09830251e+06 -1.88575598e+06 -1.86467584e+06 -3.12074343e+06
-1.84795551e+06 -3.09834178e+06 -3.11865196e+06 -1.86956900e+06
-3.10104122e+06 -1.88831233e+06 -2.83250139e+06 -2.97159152e+06
-3.10045693e+06 -3.11261213e+06 -2.34787947e+06 -1.51935978e+06
-1.86251819e+06 -1.55147058e+06 -1.84479642e+06 -1.84876010e+06
-3.10096611e+06 -1.84829783e+06 -1.85265998e+06 -3.09165183e+06
-2.86352295e+06 -2.99343858e+06 -3.10668161e+06]
[-3.22042474e+06 -1.63281722e+06 -1.58533385e+06 -3.28823254e+06
-1.55840040e+06 -3.22691386e+06 -3.28352497e+06 -1.58979926e+06
-3.25427949e+06 -1.63879182e+06 -2.99005445e+06 -3.16326446e+06
-3.25372353e+06 -3.27500406e+06 -2.40411351e+06 -1.99447449e+06
-1.58249041e+06 -1.30678488e+06 -1.55480437e+06 -1.55360823e+06
-3.25416918e+06 -1.56083997e+06 -1.56871654e+06 -3.22056272e+06
-3.06033054e+06 -3.18476544e+06 -3.26247884e+06]
[-3.69067595e+06 -9.90145042e+05 -8.65533179e+05 -3.76336856e+06
-8.57433514e+05 -3.69638497e+06 -3.75247358e+06 -9.00785456e+05
-3.68699463e+06 -1.00278213e+06 -2.88926818e+06 -3.42213739e+06
-3.68562499e+06 -3.73112619e+06 -2.07119987e+06 -2.68462669e+06
-8.88604453e+05 -4.59204701e+05 -8.05248928e+05 -8.13543231e+05
-3.68755226e+06 -8.56063991e+05 -8.75643042e+05 -3.68689195e+06
-3.01557173e+06 -3.46107032e+06 -3.70134167e+06]
[-1.01451681e+06 2.56889397e+06 2.75989681e+06 -1.42534134e+06
2.78952883e+06 -9.88869380e+05 -1.40689990e+06 2.73191455e+06
-1.30162157e+06 2.54295138e+06 -1.85995316e+05 -9.28128163e+05
-1.30001595e+06 -1.37103450e+06 6.18235465e+05 -2.14300714e+06
2.75018400e+06 2.75539696e+06 2.83967145e+06 2.84887855e+06
-1.30103266e+06 2.78546403e+06 2.75557121e+06 -9.47189495e+05
-3.86996765e+05 -9.70942355e+05 -1.31891337e+06]
[ 2.50175508e+06 6.21106163e+06 6.57427479e+06 1.81115252e+06
6.55023653e+06 2.57194231e+06 1.84504592e+06 6.49620325e+06
1.99458372e+06 6.18069081e+06 3.82134108e+06 2.43882874e+06
1.98853459e+06 1.88993235e+06 4.53092640e+06 -2.47550766e+06
6.49790013e+06 6.73746391e+06 6.70513188e+06 6.69897834e+06
1.99128984e+06 6.54505934e+06 6.49981784e+06 2.61203804e+06
3.51574225e+06 2.33666014e+06 1.97645031e+06]
[ 1.66682877e+07 1.70684723e+07 1.76831291e+07 1.61022934e+07
1.74914756e+07 1.67767451e+07 1.61566430e+07 1.75012863e+07
1.63457957e+07 1.70320221e+07 1.87329887e+07 1.65534361e+07
1.63271485e+07 1.62066744e+07 1.79661798e+07 7.41080876e+05
1.74563779e+07 1.75250105e+07 1.78556355e+07 1.78135046e+07
1.63350737e+07 1.74855593e+07 1.74256977e+07 1.67737345e+07
1.83360426e+07 1.64753250e+07 1.63375558e+07]
[ 4.27510066e+07 3.62242382e+07 3.71446048e+07 4.23568901e+07
3.66959682e+07 4.29463555e+07 4.24478149e+07 3.68276412e+07
4.26682425e+07 3.61736266e+07 4.55379248e+07 4.24317034e+07
4.26290705e+07 4.24890990e+07 4.17004608e+07 8.20327037e+06
3.67177898e+07 3.61793867e+07 3.73384734e+07 3.72522289e+07
4.26378499e+07 3.66827367e+07 3.66178697e+07 4.29175565e+07
4.50324131e+07 4.24738380e+07 4.26744705e+07]
[ 9.04006162e+07 6.84612526e+07 6.96490758e+07 9.00814170e+07
6.88551997e+07 9.07398707e+07 9.02112676e+07 6.92060511e+07
9.04172648e+07 6.83784448e+07 9.23889500e+07 8.91216180e+07
9.03461055e+07 9.02230580e+07 8.24765878e+07 2.31959178e+07
6.89997319e+07 6.67934856e+07 6.97812302e+07 6.96844875e+07
9.03541647e+07 6.88285817e+07 6.87667443e+07 9.06877208e+07
9.17952459e+07 8.94935139e+07 9.04603671e+07]
[ 1.47080310e+08 1.06220558e+08 1.07822018e+08 1.47030190e+08
1.06531362e+08 1.47598321e+08 1.47211078e+08 1.07158907e+08
1.47403842e+08 1.06116603e+08 1.48685610e+08 1.45057567e+08
1.47298594e+08 1.47192901e+08 1.31403421e+08 4.08540250e+07
1.06823172e+08 1.03267327e+08 1.07915158e+08 1.07746634e+08
1.47307396e+08 1.06482227e+08 1.06431643e+08 1.47504092e+08
1.48041904e+08 1.45790633e+08 1.47495341e+08]
[ 1.87380553e+08 1.31227941e+08 1.33090054e+08 1.88082211e+08
1.31384991e+08 1.87961634e+08 1.88298254e+08 1.32232268e+08
1.88481715e+08 1.31108637e+08 1.89350871e+08 1.85464947e+08
1.88353503e+08 1.88266897e+08 1.66594590e+08 5.35879087e+07
1.31797436e+08 1.28094192e+08 1.33162911e+08 1.32890970e+08
1.88353082e+08 1.31310817e+08 1.31283832e+08 1.87885485e+08
1.88707656e+08 1.86579174e+08 1.88595653e+08]
[ 2.04841120e+08 1.42507382e+08 1.44405408e+08 2.06487649e+08
1.42458680e+08 2.05284767e+08 2.06732338e+08 1.43438224e+08
2.06913040e+08 1.42384373e+08 2.08427380e+08 2.04074678e+08
2.06790425e+08 2.06696214e+08 1.83027636e+08 6.09158269e+07
1.42978921e+08 1.39152741e+08 1.44409210e+08 1.44093821e+08
2.06761608e+08 1.42392896e+08 1.42382162e+08 2.05267131e+08
2.07831242e+08 2.05388741e+08 2.07025673e+08]
[ 1.75900719e+08 1.23447538e+08 1.25101408e+08 1.77952141e+08
1.23323010e+08 1.76184686e+08 1.78161990e+08 1.24190137e+08
1.78340492e+08 1.23340507e+08 1.80889544e+08 1.76447399e+08
1.78246232e+08 1.78140941e+08 1.59288062e+08 5.34856892e+07
1.23813506e+08 1.20902938e+08 1.25083338e+08 1.24795845e+08
1.78208694e+08 1.23288718e+08 1.23275601e+08 1.76187120e+08
1.80371146e+08 1.77540025e+08 1.78433004e+08]
[ 1.21858036e+08 8.59177083e+07 8.71199245e+07 1.23204205e+08
8.58365775e+07 1.22121728e+08 1.23341330e+08 8.64485644e+07
1.23477329e+08 8.58538396e+07 1.25930647e+08 1.22478809e+08
1.23412877e+08 1.23334860e+08 1.11160142e+08 3.70607138e+07
8.61892318e+07 8.45987570e+07 8.71217087e+07 8.69133249e+07
1.23386435e+08 8.58247146e+07 8.58104040e+07 1.22131086e+08
1.25567498e+08 1.23173945e+08 1.23543278e+08]
[ 6.26798173e+07 4.47664952e+07 4.54597612e+07 6.36321698e+07
4.47370966e+07 6.28225770e+07 6.37040310e+07 4.50670910e+07
6.38006688e+07 4.47346873e+07 6.58737040e+07 6.35525503e+07
6.37701544e+07 6.37112333e+07 5.83956864e+07 1.86816698e+07
4.49278289e+07 4.46035410e+07 4.54917849e+07 4.53536269e+07
6.37531388e+07 4.47471785e+07 4.47262772e+07 6.28157298e+07
6.56439409e+07 6.38726136e+07 6.38345649e+07]
[ 2.78952088e+07 2.01982265e+07 2.05668222e+07 2.86950951e+07
2.01963298e+07 2.79272920e+07 2.87286431e+07 2.03542381e+07
2.87899094e+07 2.01858353e+07 3.00541269e+07 2.87012058e+07
2.87783317e+07 2.87424289e+07 2.66875038e+07 7.76711681e+06
2.02831115e+07 2.03232975e+07 2.06079862e+07 2.05197270e+07
2.87730800e+07 2.02096392e+07 2.01928266e+07 2.78856755e+07
2.99391521e+07 2.88342269e+07 2.88072816e+07]
[ 1.13458476e+07 8.51211896e+06 8.66525991e+06 1.18108784e+07
8.51058025e+06 1.13301026e+07 1.18261122e+07 8.57677709e+06
1.18567510e+07 8.50616018e+06 1.24809280e+07 1.18488951e+07
1.18561065e+07 1.18354557e+07 1.10449690e+07 3.10197561e+06
8.55027755e+06 8.44820841e+06 8.68702601e+06 8.65023043e+06
1.18550233e+07 8.52204084e+06 8.51212659e+06 1.13046719e+07
1.24318151e+07 1.18997625e+07 1.18664090e+07]
[ 2.25819860e+06 1.76010351e+06 1.81058192e+06 2.43422199e+06
1.76351969e+06 2.24016679e+06 2.43860448e+06 1.77968774e+06
2.45230085e+06 1.75929466e+06 2.74519084e+06 2.50436358e+06
2.45553089e+06 2.44399540e+06 2.41017050e+06 3.83516763e+05
1.77455261e+06 1.84664542e+06 1.82387048e+06 1.81024206e+06
2.45355977e+06 1.77026681e+06 1.76566168e+06 2.22849547e+06
2.72567970e+06 2.51302529e+06 2.45401669e+06]
[ 5.62791790e+05 4.88412655e+05 5.14718337e+05 6.73303939e+05
4.90605345e+05 5.49787148e+05 6.74136098e+05 4.97064241e+05
6.79831105e+05 4.88504439e+05 8.44183556e+05 7.10300696e+05
6.81509328e+05 6.76905196e+05 7.46303033e+05 -1.32750707e+01
4.94557942e+05 5.53525027e+05 5.22531368e+05 5.14747514e+05
6.81197048e+05 4.94034847e+05 4.91808906e+05 5.39481582e+05
8.35234999e+05 7.11367061e+05 6.80611377e+05]
[ 5.65734834e+04 4.54280606e+04 4.70294145e+04 6.63604241e+04
4.46602219e+04 5.49504497e+04 6.62345121e+04 4.53597476e+04
6.66765777e+04 4.53058968e+04 8.46722242e+04 7.32741639e+04
6.68109215e+04 6.65003569e+04 7.49989422e+04 1.75263993e+04
4.52466047e+04 5.17206642e+04 4.73017071e+04 4.64968917e+04
6.66021081e+04 4.50261740e+04 4.47806687e+04 5.48618112e+04
8.40429183e+04 7.34493488e+04 6.66207638e+04]
[-3.85715781e-01 7.53554080e-01 9.77643769e-01 5.54958862e-01
1.47287715e-01 -7.17441335e-01 -3.70141955e-01 -2.66281363e-01
-4.16209558e-01 -1.08094371e-01 2.21265034e-01 -5.74170819e-01
-5.00480491e-01 -7.75699034e-01 -3.84822822e-01 -5.10344283e-03
-2.03844306e-02 9.91154424e-01 9.62217126e-01 -1.26874457e-01
9.44041244e-01 -5.71204192e-01 8.22417722e-02 -9.31293711e-02
9.35217795e-01 6.72352446e-01 -5.71706150e-01]
[-1.20921796e-01 -6.63046057e-01 5.81744209e-02 5.86969348e-01
-9.28241702e-01 -6.17282245e-01 9.54911129e-01 9.21594612e-01
1.13183318e-01 2.92181443e-01 -4.55813971e-01 9.04182171e-01
3.39549613e-01 3.33615990e-01 -9.77793333e-01 7.05939700e-01
5.56652437e-01 3.69847994e-01 4.81563626e-01 -6.86855151e-01
4.37550106e-01 -8.06363179e-01 4.13898896e-01 -9.94736408e-01
5.52411575e-01 -1.68856304e-02 -5.91226267e-01]
[ 4.58493229e-01 -3.68691736e-01 7.67635180e-01 -6.39532950e-01
8.77101309e-01 9.41500296e-01 -3.91029512e-01 7.24972799e-01
6.84358238e-01 -1.50774580e-01 -2.72631184e-01 -4.35125054e-01
9.86473569e-01 -4.88497946e-01 8.41351196e-01 -1.43329572e-01
8.70854025e-01 6.77689668e-01 -6.88445349e-01 1.48566709e-01
3.47006029e-01 -1.88359188e-01 -9.90245911e-01 -3.49337340e-01
6.77889896e-01 -8.74352040e-01 -7.89160507e-01]
[ 4.03574693e-01 2.83165355e-02 -3.66635001e-03 -2.52780562e-01
2.07027233e-01 7.02937534e-01 -4.46153887e-01 6.89522726e-01
-1.66761703e-01 1.96802479e-03 4.59246757e-01 -4.82556585e-01
8.43273837e-01 4.04138928e-01 2.37860846e-01 -4.53982325e-01
3.91696913e-01 -4.85570503e-01 6.32905341e-01 -9.77055090e-01
-6.66924713e-01 1.15657978e-01 4.24561999e-01 -1.50386922e-02
7.55619003e-01 9.51739875e-01 -7.14458649e-02]
[ 5.35973959e-01 -1.04557323e-02 3.30197557e-01 -5.50250040e-01
-7.80916566e-01 9.58017875e-01 6.29989319e-01 -4.29232935e-01
1.71656769e-01 -2.39857589e-01 -6.47323918e-01 -1.62329714e-01
-4.05624412e-01 -9.66751787e-01 -2.25263386e-01 8.41826008e-01
6.56400517e-01 1.48149510e-01 -3.62706270e-01 -5.37471410e-01
9.12039167e-01 1.29220198e-01 -5.64789393e-01 -5.01035898e-01
9.19192405e-01 -5.22371733e-01 -7.86571823e-01]
[-1.70698327e+05 -2.02720888e+05 -2.10914089e+05 -1.76253262e+05
-2.06558306e+05 -1.72532259e+05 -1.77341655e+05 -2.07315252e+05
-1.79099774e+05 -2.03114452e+05 -2.29328742e+05 -1.90535066e+05
-1.79121647e+05 -1.77691014e+05 -2.18194121e+05 -3.58663778e+04
-2.07141309e+05 -2.14113915e+05 -2.13305068e+05 -2.11288612e+05
-1.79137313e+05 -2.06686078e+05 -2.06475720e+05 -1.73345230e+05
-2.28862342e+05 -1.89654734e+05 -1.79295978e+05]
[-1.03730735e+06 -1.16178339e+06 -1.19613819e+06 -1.04096063e+06
-1.18012758e+06 -1.04757601e+06 -1.04689213e+06 -1.18373346e+06
-1.05486438e+06 -1.16303864e+06 -1.26468065e+06 -1.09914337e+06
-1.05499160e+06 -1.04775568e+06 -1.19498104e+06 -2.65451718e+05
-1.18388959e+06 -1.16283449e+06 -1.20527509e+06 -1.19951173e+06
-1.05465916e+06 -1.18101752e+06 -1.17976022e+06 -1.05656133e+06
-1.26033917e+06 -1.09640307e+06 -1.05573665e+06]
[-4.47785083e+06 -4.27226379e+06 -4.34312909e+06 -4.60879736e+06
-4.28610501e+06 -4.47842107e+06 -4.62144668e+06 -4.31180015e+06
-4.62967205e+06 -4.27635435e+06 -5.05580263e+06 -4.67475244e+06
-4.63108148e+06 -4.62102449e+06 -4.57123988e+06 -1.80326915e+06
-4.30644702e+06 -3.92629257e+06 -4.35001328e+06 -4.33763217e+06
-4.63165019e+06 -4.28711095e+06 -4.28920498e+06 -4.48013055e+06
-5.06867470e+06 -4.68047756e+06 -4.63526173e+06]
[-1.07488761e+07 -9.12575156e+06 -9.23857112e+06 -1.10238274e+07
-9.11876103e+06 -1.07537879e+07 -1.10464282e+07 -9.17814636e+06
-1.10468182e+07 -9.13015269e+06 -1.15787121e+07 -1.10463237e+07
-1.10465497e+07 -1.10386977e+07 -1.02699163e+07 -4.33592374e+06
-9.16460849e+06 -8.34088237e+06 -9.23538715e+06 -9.21510494e+06
-1.10497485e+07 -9.12186017e+06 -9.12628491e+06 -1.07379344e+07
-1.16012788e+07 -1.10691318e+07 -1.10616515e+07]
[-2.38721347e+07 -2.02276107e+07 -2.04907897e+07 -2.43873660e+07
-2.02296312e+07 -2.39065036e+07 -2.44403752e+07 -2.03533520e+07
-2.44386022e+07 -2.02358963e+07 -2.54651880e+07 -2.44285078e+07
-2.44389063e+07 -2.44192470e+07 -2.25595272e+07 -9.46421265e+06
-2.03250810e+07 -1.84928730e+07 -2.04894541e+07 -2.04441601e+07
-2.44458390e+07 -2.02350003e+07 -2.02429321e+07 -2.38740011e+07
-2.55091345e+07 -2.44651744e+07 -2.44765792e+07]
[-4.18388725e+07 -3.54460611e+07 -3.59003144e+07 -4.27387215e+07
-3.54437804e+07 -4.19086187e+07 -4.28298097e+07 -3.56579648e+07
-4.28299306e+07 -3.54559451e+07 -4.46081451e+07 -4.29195352e+07
-4.28332011e+07 -4.27955069e+07 -3.96876953e+07 -1.66716150e+07
-3.56123113e+07 -3.25385667e+07 -3.58957000e+07 -3.58162412e+07
-4.28382199e+07 -3.54518108e+07 -3.54642443e+07 -4.18648624e+07
-4.46716106e+07 -4.29919304e+07 -4.28967584e+07]
[-6.41101368e+07 -5.29322232e+07 -5.35945849e+07 -6.57689321e+07
-5.28551801e+07 -6.41866326e+07 -6.58964198e+07 -5.32085402e+07
-6.58728611e+07 -5.29576239e+07 -6.84406246e+07 -6.59367863e+07
-6.58780625e+07 -6.58416756e+07 -6.05236429e+07 -2.57764711e+07
-5.31211157e+07 -4.87490948e+07 -5.35692673e+07 -5.34266187e+07
-6.58810441e+07 -5.28670053e+07 -5.28932583e+07 -6.40875057e+07
-6.86009591e+07 -6.60862419e+07 -6.59787143e+07]
[-9.05119052e+07 -7.47736895e+07 -7.58016020e+07 -9.36041694e+07
-7.46870731e+07 -9.05960876e+07 -9.37920185e+07 -7.51773462e+07
-9.37874633e+07 -7.47949687e+07 -9.72487658e+07 -9.37040081e+07
-9.37878273e+07 -9.37205769e+07 -8.62434792e+07 -3.55139223e+07
-7.50579896e+07 -6.91226900e+07 -7.57892588e+07 -7.55673918e+07
-9.37925102e+07 -7.47120849e+07 -7.47355404e+07 -9.03912963e+07
-9.73985710e+07 -9.39877473e+07 -9.39423647e+07]
[-1.05192113e+08 -8.75650023e+07 -8.88091047e+07 -1.09239089e+08
-8.74682243e+07 -1.05255687e+08 -1.09465542e+08 -8.80317889e+07
-1.09511220e+08 -8.75852941e+07 -1.14180745e+08 -1.09771534e+08
-1.09517111e+08 -1.09405309e+08 -1.01364911e+08 -4.11321910e+07
-8.79102095e+07 -8.12794389e+07 -8.88052795e+07 -8.85348140e+07
-1.09502462e+08 -8.75042607e+07 -8.75186575e+07 -1.05017195e+08
-1.14318879e+08 -1.10175179e+08 -1.09692801e+08]
[-9.12149904e+07 -8.07216680e+07 -8.19127463e+07 -9.51935352e+07
-8.07160171e+07 -9.12794238e+07 -9.54335327e+07 -8.11822211e+07
-9.55226191e+07 -8.07339648e+07 -1.00962532e+08 -9.64191410e+07
-9.55442845e+07 -9.53926916e+07 -9.02816233e+07 -3.71940935e+07
-8.11065738e+07 -7.43833065e+07 -8.19309879e+07 -8.17028905e+07
-9.55206236e+07 -8.07498569e+07 -8.07440987e+07 -9.10775747e+07
-1.01073039e+08 -9.67421599e+07 -9.57143259e+07]
[-3.47122669e+07 -4.03233013e+07 -4.11967938e+07 -3.75004045e+07
-4.05292503e+07 -3.47042899e+07 -3.76992318e+07 -4.06847695e+07
-3.78368917e+07 -4.03477623e+07 -4.38153792e+07 -3.98521151e+07
-3.79015422e+07 -3.77070369e+07 -4.03473037e+07 -1.59054125e+07
-4.06929667e+07 -3.69298992e+07 -4.13030684e+07 -4.11610321e+07
-3.78546241e+07 -4.05608705e+07 -4.05109733e+07 -3.45745319e+07
-4.38987225e+07 -3.98479061e+07 -3.80098265e+07]
[ 4.42459366e+07 1.50420166e+07 1.47311446e+07 4.26520558e+07
1.46411733e+07 4.44109001e+07 4.25250506e+07 1.49025180e+07
4.23129450e+07 1.50256863e+07 3.55730986e+07 3.88012579e+07
4.22000894e+07 4.24434899e+07 2.86966840e+07 1.20443764e+07
1.47584476e+07 1.51194926e+07 1.45523737e+07 1.45525307e+07
4.22680173e+07 1.45982477e+07 1.47037967e+07 4.44055033e+07
3.56060125e+07 3.92461167e+07 4.21877325e+07]
[ 1.05939142e+08 5.47174122e+07 5.50050755e+07 1.05623062e+08
5.41221645e+07 1.06162208e+08 1.05564818e+08 5.47418288e+07
1.05318897e+08 5.47082820e+07 9.86933644e+07 1.01070194e+08
1.05180517e+08 1.05435585e+08 8.34437746e+07 3.17926778e+07
5.44601115e+07 5.46870626e+07 5.48258725e+07 5.46140809e+07
1.05233561e+08 5.40710036e+07 5.42184400e+07 1.06059212e+08
9.87710656e+07 1.01884425e+08 1.05229949e+08]
[ 1.52905917e+08 8.96186378e+07 9.06206751e+07 1.54851078e+08
8.89499357e+07 1.52940769e+08 1.54905751e+08 8.98793938e+07
1.54814468e+08 8.96177357e+07 1.52199629e+08 1.51363261e+08
1.54683583e+08 1.54822104e+08 1.30909442e+08 4.62253159e+07
8.94977966e+07 9.05321701e+07 9.05307702e+07 9.00708894e+07
1.54687555e+08 8.89217504e+07 8.90765945e+07 1.52928609e+08
1.52263823e+08 1.52522263e+08 1.54725598e+08]
[ 1.82031366e+08 1.18380383e+08 1.19946393e+08 1.85336633e+08
1.17757482e+08 1.82110650e+08 1.85483698e+08 1.18873356e+08
1.85527454e+08 1.18394233e+08 1.87258226e+08 1.83512423e+08
1.85408034e+08 1.85417103e+08 1.63229070e+08 5.80625284e+07
1.18485471e+08 1.18184223e+08 1.19891881e+08 1.19348597e+08
1.85382796e+08 1.17777137e+08 1.17927123e+08 1.82218615e+08
1.87245377e+08 1.84704828e+08 1.85464601e+08]
[ 1.51669134e+08 1.03002340e+08 1.04327711e+08 1.54348498e+08
1.02508255e+08 1.51825554e+08 1.54487542e+08 1.03428757e+08
1.54547661e+08 1.03025531e+08 1.57281192e+08 1.53455294e+08
1.54464013e+08 1.54417293e+08 1.37851325e+08 5.00318594e+07
1.03178561e+08 1.01654442e+08 1.04254384e+08 1.03878047e+08
1.54425578e+08 1.02552879e+08 1.02681285e+08 1.52018963e+08
1.57221924e+08 1.54332791e+08 1.54502939e+08]
[ 9.59051150e+07 6.80617468e+07 6.90531983e+07 9.77732256e+07
6.78220606e+07 9.60296034e+07 9.78824681e+07 6.84072685e+07
9.79577098e+07 6.80872213e+07 1.00651523e+08 9.75930947e+07
9.79188294e+07 9.78350378e+07 8.85523330e+07 3.13329702e+07
6.82879983e+07 6.66562703e+07 6.90670497e+07 6.88132089e+07
9.78848743e+07 6.78743375e+07 6.79542525e+07 9.61398662e+07
1.00569853e+08 9.80585186e+07 9.79282820e+07]
[ 3.92638964e+07 2.78651578e+07 2.85302440e+07 4.06424454e+07
2.78539259e+07 3.93224107e+07 4.07433651e+07 2.81142961e+07
4.08418888e+07 2.78922202e+07 4.32439046e+07 4.11443230e+07
4.08368356e+07 4.07207241e+07 3.82898309e+07 9.70940613e+06
2.80927952e+07 2.89407405e+07 2.86530990e+07 2.84778827e+07
4.08036482e+07 2.79086731e+07 2.79441234e+07 3.93929377e+07
4.30733582e+07 4.13242172e+07 4.08155909e+07]
[ 1.29275047e+06 1.98216430e+06 2.33552801e+06 1.87858063e+06
2.11883294e+06 1.31847377e+06 1.95663332e+06 2.15883067e+06
2.04008646e+06 2.01498902e+06 3.91137438e+06 2.63724921e+06
2.05245660e+06 1.94892185e+06 3.87864301e+06 -3.42500638e+06
2.19155193e+06 3.71858464e+06 2.48754160e+06 2.41587364e+06
2.03934088e+06 2.16700648e+06 2.17829112e+06 1.38671001e+06
3.75465744e+06 2.57028355e+06 2.02086805e+06]
[-1.65678832e+07 -1.32378232e+07 -1.30907145e+07 -1.68522333e+07
-1.30562835e+07 -1.65148770e+07 -1.68010654e+07 -1.31235630e+07
-1.67506174e+07 -1.31982612e+07 -1.60103719e+07 -1.63121843e+07
-1.67388296e+07 -1.68066637e+07 -1.40891594e+07 -1.04089258e+07
-1.30871937e+07 -1.05854357e+07 -1.29481209e+07 -1.29621699e+07
-1.67406070e+07 -1.30347693e+07 -1.30245548e+07 -1.64488689e+07
-1.61105682e+07 -1.64447014e+07 -1.67654696e+07]
[-1.75153008e+07 -1.45053014e+07 -1.44702429e+07 -1.82046445e+07
-1.43339157e+07 -1.74287106e+07 -1.81777677e+07 -1.44190184e+07
-1.81589569e+07 -1.44663248e+07 -1.82084793e+07 -1.80158618e+07
-1.81512004e+07 -1.81839358e+07 -1.63001143e+07 -1.00143438e+07
-1.43969477e+07 -1.23692182e+07 -1.43676117e+07 -1.43499581e+07
-1.81453044e+07 -1.43334341e+07 -1.43204412e+07 -1.73668297e+07
-1.82458931e+07 -1.81413290e+07 -1.81671240e+07]
[-1.15563402e+07 -9.03570642e+06 -9.02392783e+06 -1.19699599e+07
-8.93825641e+06 -1.15047307e+07 -1.19598114e+07 -8.99053397e+06
-1.19521976e+07 -9.01173714e+06 -1.18364436e+07 -1.18185081e+07
-1.19474433e+07 -1.19622763e+07 -1.05605705e+07 -5.85408694e+06
-8.97945289e+06 -7.88936909e+06 -8.96730695e+06 -8.95793466e+06
-1.19417273e+07 -8.93930530e+06 -8.93169317e+06 -1.14744677e+07
-1.18413440e+07 -1.19158921e+07 -1.19581171e+07]
[-2.18881036e+06 -1.46114023e+06 -1.45910052e+06 -2.34135006e+06
-1.43295079e+06 -2.16926906e+06 -2.33846911e+06 -1.44491966e+06
-2.33773247e+06 -1.45510738e+06 -2.29145813e+06 -2.29078424e+06
-2.33641125e+06 -2.33948870e+06 -2.00840013e+06 -1.04960242e+06
-1.44158180e+06 -1.31073563e+06 -1.44845899e+06 -1.44117056e+06
-2.33384367e+06 -1.43467872e+06 -1.43186617e+06 -2.15596354e+06
-2.29090351e+06 -2.32010540e+06 -2.33771270e+06]
[-1.50213140e+04 -1.02477334e+04 -1.01347096e+04 -1.52585641e+04
-1.01240302e+04 -1.49059757e+04 -1.52209634e+04 -1.01671492e+04
-1.52190992e+04 -1.02028442e+04 -1.39010155e+04 -1.43580631e+04
-1.52120135e+04 -1.52483262e+04 -1.15598985e+04 -6.71321248e+03
-1.01406211e+04 -8.11110238e+03 -1.00616847e+04 -1.00719269e+04
-1.52115179e+04 -1.01224438e+04 -1.00984802e+04 -1.48005553e+04
-1.39874046e+04 -1.45497485e+04 -1.52287827e+04]
[ 9.35454818e-01 3.91023151e-01 -2.60520441e-01 3.43252297e-01
-4.69780612e-01 -8.45044872e-01 5.61342785e-02 -4.20461748e-01
-3.66962087e-02 8.03989189e-01 3.03480733e-01 4.46638271e-01
-7.94826950e-01 -4.06838284e-02 -1.91316219e-01 2.93714486e-01
-4.24529731e-01 -2.33870576e-01 9.62033584e-01 -7.70378864e-01
-6.00184274e-01 -5.21907671e-01 3.93308401e-01 4.27376183e-01
5.69509873e-01 -2.37911250e-01 7.04806575e-01]
[ 3.94693079e-01 4.26519795e-01 6.43977289e-01 2.57848877e-01
-1.55544754e-01 -9.38402378e-01 1.90911327e-01 1.27527139e-01
2.01616043e-01 -3.54293063e-01 1.09763954e-01 -6.56687391e-01
2.99718852e-01 -8.56653053e-01 7.50154268e-01 -5.67724100e-01
-4.12310859e-01 7.69473837e-01 7.67184180e-01 6.72534432e-01
-3.46128766e-01 8.04689278e-01 5.43604592e-01 3.16165962e-01
7.99606148e-01 5.66262945e-01 -1.50500982e-01]
[-3.51489552e-01 -2.12243724e-01 -8.77175692e-01 -2.73138214e-01
-2.93912628e-01 7.31248975e-01 7.77400099e-01 9.26104174e-01
-3.43601505e-01 3.86640312e-01 2.66132536e-01 -5.15112509e-01
7.39975253e-01 -5.71796168e-01 4.95428005e-01 -7.10672129e-01
-7.86360688e-01 4.40644420e-01 5.26362321e-02 -1.14168337e-01
5.56361136e-01 -2.82513294e-01 7.06699197e-01 9.24344994e-01
9.58250987e-01 -4.44743995e-01 -1.69985927e-01]
[ 7.72898626e+04 2.33967412e+04 1.92241403e+04 7.07043596e+04
2.15918453e+04 7.77037140e+04 7.03689071e+04 2.12779402e+04
6.89957926e+04 2.30227876e+04 2.72965501e+04 5.74977957e+04
6.87216693e+04 6.96513050e+04 1.78705807e+04 4.42532460e+04
2.18015422e+04 1.70106514e+03 1.73533802e+04 1.92025903e+04
6.90240816e+04 2.14103094e+04 2.17737212e+04 7.73573587e+04
2.61709313e+04 5.84133605e+04 6.91498970e+04]
[-1.41301701e+06 -1.59460629e+06 -1.64308709e+06 -1.45162118e+06
-1.61486098e+06 -1.42116116e+06 -1.45902744e+06 -1.62180394e+06
-1.46981093e+06 -1.59546406e+06 -1.76450445e+06 -1.53842383e+06
-1.47029100e+06 -1.46089555e+06 -1.64829371e+06 -4.11592652e+05
-1.62070567e+06 -1.55631031e+06 -1.65529856e+06 -1.64579329e+06
-1.46981964e+06 -1.61657329e+06 -1.61427353e+06 -1.42444252e+06
-1.75844544e+06 -1.53729133e+06 -1.47160612e+06]
[-6.77149911e+06 -7.09821959e+06 -7.26426477e+06 -6.90972707e+06
-7.15965782e+06 -6.80455038e+06 -6.93735384e+06 -7.19326756e+06
-6.96681874e+06 -7.10512163e+06 -8.03033034e+06 -7.18717764e+06
-6.96880440e+06 -6.93944657e+06 -7.38199293e+06 -2.43906787e+06
-7.18789486e+06 -6.80292403e+06 -7.29711914e+06 -7.26545808e+06
-6.96946605e+06 -7.16226945e+06 -7.16048337e+06 -6.81944837e+06
-8.02581960e+06 -7.17794747e+06 -6.97471418e+06]
[-2.00921919e+07 -1.95222937e+07 -1.98866214e+07 -2.05856905e+07
-1.96148110e+07 -2.01453160e+07 -2.06475376e+07 -1.97157534e+07
-2.06921025e+07 -1.95324046e+07 -2.28584084e+07 -2.10923157e+07
-2.06960046e+07 -2.06424946e+07 -2.07781340e+07 -7.79063978e+06
-1.97002824e+07 -1.82461080e+07 -1.99351926e+07 -1.98692277e+07
-2.07004092e+07 -1.96229153e+07 -1.96228472e+07 -2.01422021e+07
-2.28519444e+07 -2.10798960e+07 -2.07199975e+07]
[-4.23338202e+07 -3.92480130e+07 -3.99058926e+07 -4.32794107e+07
-3.93752420e+07 -4.24365815e+07 -4.33896458e+07 -3.95853265e+07
-4.34571797e+07 -3.92603952e+07 -4.69907894e+07 -4.40356980e+07
-4.34602864e+07 -4.33751316e+07 -4.24449468e+07 -1.64837024e+07
-3.95502743e+07 -3.64712952e+07 -3.99695957e+07 -3.98561558e+07
-4.34693216e+07 -3.93914332e+07 -3.93911902e+07 -4.24082140e+07
-4.69842990e+07 -4.40520025e+07 -4.35179366e+07]
[-8.10740994e+07 -7.37419772e+07 -7.49744976e+07 -8.27521871e+07
-7.39891033e+07 -8.12820236e+07 -8.29618751e+07 -7.43786494e+07
-8.30844901e+07 -7.37617125e+07 -8.90595234e+07 -8.39562208e+07
-8.30903352e+07 -8.29308235e+07 -8.02445807e+07 -3.07738271e+07
-7.43076330e+07 -6.86877966e+07 -7.50903458e+07 -7.48839712e+07
-8.31030329e+07 -7.40147855e+07 -7.40123637e+07 -8.12311973e+07
-8.90309859e+07 -8.40197563e+07 -8.32029943e+07]
[-1.31072610e+08 -1.18361529e+08 -1.20275772e+08 -1.33790934e+08
-1.18741912e+08 -1.31387954e+08 -1.34114932e+08 -1.19361657e+08
-1.34294638e+08 -1.18391908e+08 -1.42936701e+08 -1.35340539e+08
-1.34301875e+08 -1.34067636e+08 -1.28689404e+08 -4.98458674e+07
-1.19237028e+08 -1.09878962e+08 -1.20431552e+08 -1.20127072e+08
-1.34322211e+08 -1.18767479e+08 -1.18770550e+08 -1.31287237e+08
-1.42914431e+08 -1.35494395e+08 -1.34492607e+08]
[-1.94654135e+08 -1.77239819e+08 -1.80141693e+08 -1.99976210e+08
-1.77762530e+08 -1.94962065e+08 -2.00450213e+08 -1.78697730e+08
-2.00761606e+08 -1.77264351e+08 -2.13933316e+08 -2.02396256e+08
-2.00768963e+08 -2.00401372e+08 -1.93236086e+08 -7.46508157e+07
-1.78512048e+08 -1.64515377e+08 -1.80372094e+08 -1.79896619e+08
-2.00805265e+08 -1.77820456e+08 -1.77806676e+08 -1.94746568e+08
-2.13827221e+08 -2.02689449e+08 -2.01057568e+08]
[-2.55828041e+08 -2.35191538e+08 -2.39192141e+08 -2.63524406e+08
-2.35986590e+08 -2.56219397e+08 -2.64158473e+08 -2.37190195e+08
-2.64646778e+08 -2.35203423e+08 -2.82841444e+08 -2.67016031e+08
-2.64641000e+08 -2.64115172e+08 -2.56031264e+08 -9.70178456e+07
-2.36957544e+08 -2.18694098e+08 -2.39544148e+08 -2.38903043e+08
-2.64694890e+08 -2.36075660e+08 -2.36022342e+08 -2.55865523e+08
-2.82540167e+08 -2.67434054e+08 -2.65045957e+08]
[-3.04253187e+08 -2.87089191e+08 -2.92215887e+08 -3.12852434e+08
-2.88458873e+08 -3.04859764e+08 -3.13668094e+08 -2.89781889e+08
-3.14429803e+08 -2.87077625e+08 -3.38572566e+08 -3.18444782e+08
-3.14419250e+08 -3.13655800e+08 -3.08468492e+08 -1.11875815e+08
-2.89552573e+08 -2.68157202e+08 -2.92764296e+08 -2.92071910e+08
-3.14480162e+08 -2.88566336e+08 -2.88434114e+08 -3.04537457e+08
-3.37827454e+08 -3.18828417e+08 -3.14935937e+08]
[-2.95331291e+08 -2.96655109e+08 -3.02473746e+08 -3.03299125e+08
-2.98772775e+08 -2.96033606e+08 -3.04229185e+08 -2.99919401e+08
-3.05305833e+08 -2.96628894e+08 -3.35214022e+08 -3.11612926e+08
-3.05327143e+08 -3.04307659e+08 -3.08676923e+08 -1.05148374e+08
-2.99758652e+08 -2.77747375e+08 -3.03294461e+08 -3.02647382e+08
-3.05390774e+08 -2.98889141e+08 -2.98647820e+08 -2.95859543e+08
-3.34009000e+08 -3.11690974e+08 -3.05870182e+08]
[-2.36593854e+08 -2.66165614e+08 -2.72353100e+08 -2.42960597e+08
-2.69229470e+08 -2.37355136e+08 -2.43964742e+08 -2.69930844e+08
-2.45348454e+08 -2.66136402e+08 -2.80258470e+08 -2.53942076e+08
-2.45422465e+08 -2.44150796e+08 -2.63187393e+08 -7.68304134e+07
-2.69849145e+08 -2.51095225e+08 -2.73508987e+08 -2.72998403e+08
-2.45482221e+08 -2.69324776e+08 -2.68946759e+08 -2.37357821e+08
-2.78455949e+08 -2.53430630e+08 -2.45948572e+08]
[-1.57563072e+08 -2.14601260e+08 -2.20606231e+08 -1.61708719e+08
-2.18405633e+08 -1.58360170e+08 -1.62741342e+08 -2.18564623e+08
-1.64304116e+08 -2.14544769e+08 -2.00321816e+08 -1.74166956e+08
-1.64425458e+08 -1.62995306e+08 -1.95555503e+08 -4.19701835e+07
-2.18580866e+08 -2.04254101e+08 -2.21995086e+08 -2.21728192e+08
-1.64489662e+08 -2.18457759e+08 -2.17973404e+08 -1.58560637e+08
-1.97961624e+08 -1.73096826e+08 -1.64916185e+08]
[-8.91387565e+07 -1.65772092e+08 -1.71118591e+08 -9.02293530e+07
-1.69953183e+08 -9.00843895e+07 -9.11815048e+07 -1.69640676e+08
-9.27415031e+07 -1.65671092e+08 -1.26130660e+08 -1.02708648e+08
-9.28866730e+07 -9.14655797e+07 -1.30690808e+08 -1.52293817e+07
-1.69766132e+08 -1.56861793e+08 -1.72562818e+08 -1.72594320e+08
-9.29916949e+07 -1.69952033e+08 -1.69405627e+08 -9.03341436e+07
-1.23494194e+08 -1.01263579e+08 -9.33671889e+07]
[-7.15338168e+07 -1.48097304e+08 -1.52707061e+08 -7.08611985e+07
-1.52110316e+08 -7.26231490e+07 -7.16653225e+07 -1.51665493e+08
-7.30436265e+07 -1.47947176e+08 -1.01428110e+08 -8.15109945e+07
-7.31545694e+07 -7.19087885e+07 -1.07440900e+08 -1.09522321e+07
-1.51786779e+08 -1.37147026e+08 -1.53943634e+08 -1.54219247e+08
-7.33123281e+07 -1.52073303e+08 -1.51526857e+08 -7.27389598e+07
-9.88430962e+07 -8.00746885e+07 -7.36788403e+07]
[-7.88618578e+07 -1.31280158e+08 -1.35153097e+08 -7.84864885e+07
-1.34509689e+08 -7.98270103e+07 -7.91352476e+07 -1.34254148e+08
-8.01992197e+07 -1.31113554e+08 -1.02206223e+08 -8.60080138e+07
-8.02555169e+07 -7.93011250e+07 -1.03988008e+08 -1.33149143e+07
-1.34193933e+08 -1.22563940e+08 -1.36153125e+08 -1.36339408e+08
-8.04052188e+07 -1.34443600e+08 -1.33949895e+08 -7.97296361e+07
-9.99840676e+07 -8.50743704e+07 -8.07817804e+07]
[-1.05454593e+08 -1.28426802e+08 -1.31284631e+08 -1.06302760e+08
-1.30520781e+08 -1.05969537e+08 -1.06768847e+08 -1.30545877e+08
-1.07489801e+08 -1.28204367e+08 -1.20942783e+08 -1.09934169e+08
-1.07498992e+08 -1.06876388e+08 -1.16254609e+08 -2.81339651e+07
-1.30368136e+08 -1.18336822e+08 -1.31828859e+08 -1.31998103e+08
-1.07613714e+08 -1.30452771e+08 -1.30040544e+08 -1.05659794e+08
-1.19221281e+08 -1.09800984e+08 -1.07980282e+08]
[-1.35744932e+08 -1.35471553e+08 -1.37523064e+08 -1.37706141e+08
-1.36483515e+08 -1.35920916e+08 -1.38002103e+08 -1.36825599e+08
-1.38475165e+08 -1.35229193e+08 -1.47023365e+08 -1.39245987e+08
-1.38437731e+08 -1.38077428e+08 -1.36405291e+08 -4.77414893e+07
-1.36619014e+08 -1.23711709e+08 -1.37645399e+08 -1.37750702e+08
-1.38528016e+08 -1.36462091e+08 -1.36144810e+08 -1.35610086e+08
-1.45830981e+08 -1.39690794e+08 -1.38862454e+08]
[-1.50633134e+08 -1.32178567e+08 -1.33342853e+08 -1.52522803e+08
-1.32287439e+08 -1.50652908e+08 -1.52661751e+08 -1.32845044e+08
-1.52831126e+08 -1.31954351e+08 -1.56218946e+08 -1.52103247e+08
-1.52761502e+08 -1.52665721e+08 -1.41520624e+08 -6.13608523e+07
-1.32606467e+08 -1.18846145e+08 -1.33072280e+08 -1.33165623e+08
-1.52829354e+08 -1.32276311e+08 -1.32088397e+08 -1.50362011e+08
-1.55611316e+08 -1.52861470e+08 -1.53112051e+08]
[-1.43159982e+08 -1.19582097e+08 -1.20227803e+08 -1.46297102e+08
-1.19163272e+08 -1.42908902e+08 -1.46312933e+08 -1.19780336e+08
-1.46357460e+08 -1.19378475e+08 -1.47413926e+08 -1.45038864e+08
-1.46282260e+08 -1.46317020e+08 -1.32182245e+08 -6.34439580e+07
-1.19580785e+08 -1.06261325e+08 -1.19791064e+08 -1.19817503e+08
-1.46335191e+08 -1.19169659e+08 -1.19059794e+08 -1.42540502e+08
-1.47130709e+08 -1.45881358e+08 -1.46542829e+08]
[-1.12531058e+08 -9.04394773e+07 -9.06612822e+07 -1.15678102e+08
-8.97991112e+07 -1.12196093e+08 -1.15625482e+08 -9.03292032e+07
-1.15578988e+08 -9.02784201e+07 -1.15384909e+08 -1.14265597e+08
-1.15522289e+08 -1.15623934e+08 -1.02553600e+08 -5.31650956e+07
-9.01856498e+07 -7.94631204e+07 -9.02085552e+07 -9.01905105e+07
-1.15546457e+08 -8.98169841e+07 -8.97580927e+07 -1.11875899e+08
-1.15357836e+08 -1.15004551e+08 -1.15686144e+08]
[-8.21382361e+07 -6.37984657e+07 -6.38521491e+07 -8.46951561e+07
-6.32025162e+07 -8.18606697e+07 -8.46475034e+07 -6.35942756e+07
-8.45779075e+07 -6.36661713e+07 -8.36212592e+07 -8.33696571e+07
-8.45350570e+07 -8.46329289e+07 -7.41450999e+07 -3.99025051e+07
-6.34979115e+07 -5.58523406e+07 -6.34822625e+07 -6.34409446e+07
-8.45254854e+07 -6.32185552e+07 -6.31789101e+07 -8.16168569e+07
-8.36501852e+07 -8.39703107e+07 -8.46337128e+07]
[-4.68045723e+07 -3.40298840e+07 -3.39950854e+07 -4.83139497e+07
-3.36285689e+07 -4.66442527e+07 -4.82734499e+07 -3.38519635e+07
-4.82212600e+07 -3.39489802e+07 -4.70451902e+07 -4.72807794e+07
-4.81913668e+07 -4.82662804e+07 -4.14545052e+07 -2.24281539e+07
-3.37895253e+07 -2.99732879e+07 -3.37683792e+07 -3.37256803e+07
-4.81719920e+07 -3.36345010e+07 -3.36090760e+07 -4.64940456e+07
-4.70845736e+07 -4.76806615e+07 -4.82427092e+07]
[-1.42231048e+07 -1.05348958e+07 -1.05476408e+07 -1.47916972e+07
-1.04170974e+07 -1.41526382e+07 -1.47816277e+07 -1.04882081e+07
-1.47722142e+07 -1.05100179e+07 -1.44818241e+07 -1.44691571e+07
-1.47642413e+07 -1.47821053e+07 -1.27713662e+07 -6.74022317e+06
-1.04655086e+07 -9.29735661e+06 -1.04856516e+07 -1.04643481e+07
-1.47585768e+07 -1.04209429e+07 -1.04105578e+07 -1.40879041e+07
-1.44889368e+07 -1.45900194e+07 -1.47802089e+07]
[-1.49245363e+06 -1.27554446e+06 -1.28948118e+06 -1.51951528e+06
-1.27813855e+06 -1.49012775e+06 -1.52031975e+06 -1.28359650e+06
-1.52282784e+06 -1.27443093e+06 -1.55534056e+06 -1.51442854e+06
-1.52252635e+06 -1.52150676e+06 -1.40213674e+06 -5.59619148e+05
-1.28112989e+06 -1.17043901e+06 -1.28908021e+06 -1.28739619e+06
-1.52294879e+06 -1.27738485e+06 -1.27635785e+06 -1.48679780e+06
-1.55333445e+06 -1.51997974e+06 -1.52499455e+06]
[-3.29627354e+04 -2.10415586e+04 -2.09830000e+04 -3.20293915e+04
-2.09097520e+04 -3.32188307e+04 -3.19643859e+04 -2.10373063e+04
-3.19029269e+04 -2.10325273e+04 -3.06142569e+04 -3.13006698e+04
-3.18688765e+04 -3.19660272e+04 -2.59465080e+04 -1.35546995e+04
-2.09537140e+04 -1.94894173e+04 -2.08374744e+04 -2.08537573e+04
-3.18577112e+04 -2.08579975e+04 -2.08640984e+04 -3.33030358e+04
-3.07881655e+04 -3.14302914e+04 -3.19206715e+04]
[ 7.87955330e-01 2.88821595e-01 -8.10911471e-01 1.02749971e-01
-7.42051358e-01 -7.62358320e-01 -4.68902197e-01 5.25816603e-01
3.96441892e-01 1.17704269e-01 -4.89546762e-01 3.57375340e-02
8.59501987e-01 -6.29361594e-01 4.68414814e-01 7.44365794e-01
3.38912417e-01 -5.92608663e-01 -7.41668007e-01 3.00659827e-02
-7.39383638e-01 6.51400002e-01 4.72890574e-02 -4.17152625e-01
1.36253467e-01 -4.78725239e-01 1.68940409e-01]
[-5.35755145e-01 -5.61895896e-01 3.70121632e-02 6.70831566e-01
2.89541541e-01 -8.11618518e-01 -7.31863349e-01 -2.19398808e-01
-3.60870614e-01 7.82441204e-01 7.82582976e-01 -9.40351798e-01
-5.78956124e-01 -2.23294575e-01 -6.47250510e-01 8.37372680e-01
-6.20802893e-01 4.67971923e-01 9.13831267e-01 -4.45639095e-02
6.28438587e-01 -1.43561236e-01 6.26898510e-01 5.23396993e-01
9.19207295e-01 -3.26799987e-01 5.33188809e-01]
[-2.73848380e+05 -3.98248829e+05 -4.05142610e+05 -2.88336577e+05
-4.03776745e+05 -2.69677217e+05 -2.89710022e+05 -4.03253245e+05
-2.92317393e+05 -3.98049667e+05 -3.14878829e+05 -3.02134151e+05
-2.92911461e+05 -2.90719139e+05 -3.14599018e+05 -1.09852018e+05
-4.04550182e+05 -3.41780382e+05 -4.06441829e+05 -4.07072596e+05
-2.93001899e+05 -4.04074894e+05 -4.03424705e+05 -2.67953206e+05
-3.10236966e+05 -3.02687917e+05 -2.93026824e+05]
[-5.66757516e+06 -6.19355922e+06 -6.28436201e+06 -5.78590127e+06
-6.23560687e+06 -5.67414370e+06 -5.80386340e+06 -6.25055342e+06
-5.82476886e+06 -6.19112711e+06 -6.26502418e+06 -5.93119215e+06
-5.82767912e+06 -5.80666007e+06 -5.87497902e+06 -2.40047904e+06
-6.25620255e+06 -5.56019313e+06 -6.29424184e+06 -6.29257487e+06
-5.82882863e+06 -6.23843120e+06 -6.23421541e+06 -5.67451453e+06
-6.23184938e+06 -5.93582212e+06 -5.83378699e+06]
[-1.51103093e+07 -1.65226521e+07 -1.68304541e+07 -1.55364106e+07
-1.66324871e+07 -1.51370977e+07 -1.55874529e+07 -1.66946450e+07
-1.56515370e+07 -1.65274483e+07 -1.76132402e+07 -1.60945922e+07
-1.56576277e+07 -1.55968487e+07 -1.64113245e+07 -6.37754062e+06
-1.66980960e+07 -1.53154187e+07 -1.68786855e+07 -1.68313226e+07
-1.56603143e+07 -1.66414375e+07 -1.66355233e+07 -1.51477295e+07
-1.75765688e+07 -1.60882934e+07 -1.56703992e+07]
[-3.46975665e+07 -3.59148607e+07 -3.65613830e+07 -3.56025530e+07
-3.61064123e+07 -3.47697131e+07 -3.57089505e+07 -3.62663667e+07
-3.58117776e+07 -3.59273575e+07 -3.99468594e+07 -3.66839683e+07
-3.58219502e+07 -3.57139424e+07 -3.66977308e+07 -1.42981105e+07
-3.62591327e+07 -3.31920164e+07 -3.66518812e+07 -3.65435107e+07
-3.58307591e+07 -3.61243238e+07 -3.61206564e+07 -3.47694236e+07
-3.99234912e+07 -3.66412587e+07 -3.58582161e+07]
[-7.05258063e+07 -7.04251988e+07 -7.17499816e+07 -7.22825149e+07
-7.08233418e+07 -7.07042812e+07 -7.24959613e+07 -7.11483451e+07
-7.27006175e+07 -7.04509282e+07 -8.01541416e+07 -7.41749604e+07
-7.27174684e+07 -7.25050974e+07 -7.32698118e+07 -2.74772477e+07
-7.11156360e+07 -6.54681074e+07 -7.19390376e+07 -7.17223764e+07
-7.27354774e+07 -7.08551164e+07 -7.08462432e+07 -7.06910310e+07
-8.00970226e+07 -7.41181356e+07 -7.28013228e+07]
[-1.38722492e+08 -1.34495322e+08 -1.36863358e+08 -1.41641042e+08
-1.35204777e+08 -1.39093312e+08 -1.42026190e+08 -1.35814907e+08
-1.42365124e+08 -1.34524611e+08 -1.54234462e+08 -1.44446717e+08
-1.42389364e+08 -1.42024921e+08 -1.40455698e+08 -5.34153295e+07
-1.35742072e+08 -1.24351686e+08 -1.37151066e+08 -1.36817777e+08
-1.42422259e+08 -1.35245211e+08 -1.35233294e+08 -1.39058588e+08
-1.54082081e+08 -1.44489866e+08 -1.42568485e+08]
[-2.16624973e+08 -2.09075130e+08 -2.12673130e+08 -2.21403797e+08
-2.10132395e+08 -2.17148978e+08 -2.21979959e+08 -2.11069107e+08
-2.22508168e+08 -2.09096020e+08 -2.40166958e+08 -2.25495496e+08
-2.22534592e+08 -2.21982203e+08 -2.18852971e+08 -8.29919503e+07
-2.10953677e+08 -1.93256882e+08 -2.13073407e+08 -2.12608877e+08
-2.22587344e+08 -2.10188896e+08 -2.10161325e+08 -2.17058972e+08
-2.39839665e+08 -2.25627468e+08 -2.22831795e+08]
[-2.99359715e+08 -2.87500133e+08 -2.92210536e+08 -3.06619916e+08
-2.88781303e+08 -2.99969240e+08 -3.07355440e+08 -2.90067168e+08
-3.08075657e+08 -2.87479178e+08 -3.30871354e+08 -3.11811458e+08
-3.08080484e+08 -3.07360649e+08 -3.01810665e+08 -1.15961221e+08
-2.89915205e+08 -2.65113412e+08 -2.92647220e+08 -2.92082184e+08
-3.08166413e+08 -2.88879804e+08 -2.88811425e+08 -2.99793772e+08
-3.30314943e+08 -3.12123646e+08 -3.08522255e+08]
[-3.84055414e+08 -3.71474708e+08 -3.77389139e+08 -3.93038471e+08
-3.73240155e+08 -3.84885364e+08 -3.93958210e+08 -3.74801269e+08
-3.94934769e+08 -3.71400637e+08 -4.23262367e+08 -3.99580792e+08
-3.94906443e+08 -3.93973381e+08 -3.87175079e+08 -1.47693862e+08
-3.74639809e+08 -3.41922594e+08 -3.77897927e+08 -3.77339538e+08
-3.95035127e+08 -3.73370057e+08 -3.73232252e+08 -3.84694357e+08
-4.22251730e+08 -3.99976857e+08 -3.95526236e+08]
[-4.23098483e+08 -4.13879739e+08 -4.20820947e+08 -4.32196176e+08
-4.16303186e+08 -4.24092763e+08 -4.33302386e+08 -4.17924906e+08
-4.34602383e+08 -4.13796674e+08 -4.68890083e+08 -4.41040141e+08
-4.34555652e+08 -4.33353095e+08 -4.30625561e+08 -1.54695253e+08
-4.17786247e+08 -3.84046224e+08 -4.21546518e+08 -4.21011180e+08
-4.34686366e+08 -4.16475301e+08 -4.16222813e+08 -4.24109380e+08
-4.67238748e+08 -4.41448696e+08 -4.35273569e+08]
[-4.09163493e+08 -4.13528530e+08 -4.20864152e+08 -4.16683328e+08
-4.16680345e+08 -4.10297166e+08 -4.17878503e+08 -4.18073516e+08
-4.19421240e+08 -4.13444243e+08 -4.57260792e+08 -4.27034545e+08
-4.19372000e+08 -4.17976311e+08 -4.22571436e+08 -1.41827988e+08
-4.17998446e+08 -3.85032940e+08 -4.21827920e+08 -4.21420804e+08
-4.19506476e+08 -4.16863376e+08 -4.16480976e+08 -4.10512554e+08
-4.55012370e+08 -4.27216978e+08 -4.20122563e+08]
[-3.44502892e+08 -3.64377506e+08 -3.71527889e+08 -3.50304994e+08
-3.68094999e+08 -3.45616984e+08 -3.51554245e+08 -3.69044082e+08
-3.53227708e+08 -3.64294887e+08 -3.91293233e+08 -3.61432015e+08
-3.53207184e+08 -3.51680230e+08 -3.65716735e+08 -1.08335093e+08
-3.69034699e+08 -3.42705563e+08 -3.72699455e+08 -3.72464490e+08
-3.53291420e+08 -3.68262596e+08 -3.67751258e+08 -3.45997287e+08
-3.88439440e+08 -3.61324726e+08 -3.53895140e+08]
[-2.58499740e+08 -2.88009625e+08 -2.94797137e+08 -2.60932622e+08
-2.92196896e+08 -2.59818028e+08 -2.62180361e+08 -2.92639498e+08
-2.63850499e+08 -2.87956479e+08 -2.99336976e+08 -2.71817163e+08
-2.63855733e+08 -2.62299457e+08 -2.83928532e+08 -6.39152680e+07
-2.92639214e+08 -2.77133824e+08 -2.96222536e+08 -2.96086199e+08
-2.63875698e+08 -2.92308751e+08 -2.91687676e+08 -2.60274346e+08
-2.96053655e+08 -2.71328488e+08 -2.64468861e+08]
[-2.28116982e+08 -2.51846630e+08 -2.58321944e+08 -2.27771685e+08
-2.56153392e+08 -2.29793277e+08 -2.28945723e+08 -2.56413913e+08
-2.30474446e+08 -2.51803439e+08 -2.61681727e+08 -2.36861649e+08
-2.30455269e+08 -2.29029978e+08 -2.48400779e+08 -4.49510209e+07
-2.56313917e+08 -2.45724632e+08 -2.59810135e+08 -2.59721250e+08
-2.30497706e+08 -2.56194284e+08 -2.55543455e+08 -2.30098851e+08
-2.58402701e+08 -2.36283374e+08 -2.31105195e+08]
[-2.57213609e+08 -2.62514268e+08 -2.68667348e+08 -2.56599533e+08
-2.66386433e+08 -2.58954482e+08 -2.57671193e+08 -2.66848974e+08
-2.59025428e+08 -2.62438546e+08 -2.86494152e+08 -2.63563965e+08
-2.58965655e+08 -2.57733454e+08 -2.67576005e+08 -5.59742289e+07
-2.66589873e+08 -2.55013967e+08 -2.69981561e+08 -2.69884839e+08
-2.59033498e+08 -2.66373214e+08 -2.65766778e+08 -2.59076484e+08
-2.83470054e+08 -2.63410074e+08 -2.59669804e+08]
[-3.11394401e+08 -2.97359493e+08 -3.03205315e+08 -3.12875196e+08
-3.00485301e+08 -3.12854948e+08 -3.13822962e+08 -3.01327387e+08
-3.15023291e+08 -2.97191098e+08 -3.40042119e+08 -3.17940015e+08
-3.14918340e+08 -3.13881810e+08 -3.13157072e+08 -8.32418826e+07
-3.00907679e+08 -2.84655448e+08 -3.04171722e+08 -3.04069457e+08
-3.15026015e+08 -3.00453694e+08 -2.99907506e+08 -3.12724311e+08
-3.37276458e+08 -3.18403881e+08 -3.15695296e+08]
[-3.46154344e+08 -3.18081385e+08 -3.22870955e+08 -3.49393386e+08
-3.20100704e+08 -3.47103829e+08 -3.50100239e+08 -3.21209276e+08
-3.51055412e+08 -3.17774699e+08 -3.70699758e+08 -3.52188884e+08
-3.50907912e+08 -3.50155748e+08 -3.38996681e+08 -1.11335619e+08
-3.20759123e+08 -2.97748073e+08 -3.23239100e+08 -3.23300728e+08
-3.51040758e+08 -3.20091847e+08 -3.19607164e+08 -3.46761236e+08
-3.68275666e+08 -3.53190652e+08 -3.51709326e+08]
[-3.59886353e+08 -3.21012803e+08 -3.24541089e+08 -3.63892192e+08
-3.21939723e+08 -3.60385994e+08 -3.64370231e+08 -3.23209558e+08
-3.65066213e+08 -3.20593782e+08 -3.78371201e+08 -3.64769195e+08
-3.64884279e+08 -3.64404174e+08 -3.44224804e+08 -1.31852261e+08
-3.22827461e+08 -2.94290529e+08 -3.24323038e+08 -3.24554324e+08
-3.65025163e+08 -3.21973141e+08 -3.21569374e+08 -3.60037941e+08
-3.76412091e+08 -3.66227114e+08 -3.65656556e+08]
[-3.35316416e+08 -2.90477808e+08 -2.92996296e+08 -3.40178509e+08
-2.90555929e+08 -3.35381529e+08 -3.40481014e+08 -2.91859761e+08
-3.40936576e+08 -2.90075521e+08 -3.49848818e+08 -3.39929263e+08
-3.40747297e+08 -3.40478602e+08 -3.16629228e+08 -1.32070098e+08
-2.91527129e+08 -2.63920561e+08 -2.92446087e+08 -2.92643938e+08
-3.40856071e+08 -2.90635670e+08 -2.90326892e+08 -3.35017949e+08
-3.48438708e+08 -3.41512022e+08 -3.41396293e+08]
[-2.84008337e+08 -2.40361655e+08 -2.41890481e+08 -2.90261665e+08
-2.39737323e+08 -2.83632572e+08 -2.90381931e+08 -2.40955031e+08
-2.90606846e+08 -2.40001987e+08 -2.94846354e+08 -2.88749800e+08
-2.90445706e+08 -2.90377053e+08 -2.65339987e+08 -1.21116160e+08
-2.40665516e+08 -2.15411806e+08 -2.41151506e+08 -2.41252978e+08
-2.90530607e+08 -2.39819265e+08 -2.39617806e+08 -2.83117910e+08
-2.94047645e+08 -2.90343844e+08 -2.90929425e+08]
[-2.09125358e+08 -1.71688666e+08 -1.72503081e+08 -2.14962759e+08
-1.70845765e+08 -2.08616884e+08 -2.14955184e+08 -1.71777837e+08
-2.15003091e+08 -1.71399652e+08 -2.15802579e+08 -2.12792278e+08
-2.14878102e+08 -2.14946220e+08 -1.93165391e+08 -9.33535694e+07
-1.71547557e+08 -1.52646433e+08 -1.71812865e+08 -1.71819074e+08
-2.14927976e+08 -1.70896673e+08 -1.70769074e+08 -2.08054904e+08
-2.15410861e+08 -2.14101819e+08 -2.15206789e+08]
[-1.48611092e+08 -1.16476712e+08 -1.16825131e+08 -1.52889432e+08
-1.15642907e+08 -1.48210042e+08 -1.52840243e+08 -1.16313771e+08
-1.52797976e+08 -1.16262883e+08 -1.51542552e+08 -1.50684330e+08
-1.52710111e+08 -1.52822196e+08 -1.34653333e+08 -6.82309313e+07
-1.16141195e+08 -1.03266461e+08 -1.16249135e+08 -1.16197112e+08
-1.52695777e+08 -1.15670274e+08 -1.15582652e+08 -1.47766110e+08
-1.51418940e+08 -1.51736798e+08 -1.52908160e+08]
[-8.98907009e+07 -6.66244822e+07 -6.67403074e+07 -9.22209214e+07
-6.60522688e+07 -8.97137582e+07 -9.21618569e+07 -6.64579564e+07
-9.21015905e+07 -6.65003818e+07 -9.03094382e+07 -9.03233885e+07
-9.20405151e+07 -9.21548878e+07 -7.96216903e+07 -4.09781858e+07
-6.63242365e+07 -5.92088339e+07 -6.63728178e+07 -6.63020611e+07
-9.20123264e+07 -6.60479358e+07 -6.59975941e+07 -8.94198050e+07
-9.03640646e+07 -9.10097354e+07 -9.21554824e+07]
[-3.16156682e+07 -2.21099281e+07 -2.21518811e+07 -3.23256273e+07
-2.19065247e+07 -3.15731974e+07 -3.22983778e+07 -2.20452456e+07
-3.22798230e+07 -2.20663187e+07 -3.14067949e+07 -3.15523893e+07
-3.22538811e+07 -3.22986849e+07 -2.75071297e+07 -1.37475414e+07
-2.19912044e+07 -1.98968057e+07 -2.20257093e+07 -2.19894993e+07
-3.22375659e+07 -2.19025684e+07 -2.18790622e+07 -3.14616826e+07
-3.14336697e+07 -3.18197157e+07 -3.22969258e+07]
[-4.73759482e+06 -3.32260349e+06 -3.33464121e+06 -4.88822041e+06
-3.29521459e+06 -4.72059759e+06 -4.88247650e+06 -3.31486047e+06
-4.88503904e+06 -3.31532387e+06 -4.76150998e+06 -4.76245275e+06
-4.88135545e+06 -4.88647340e+06 -4.17691635e+06 -1.93212825e+06
-3.30608404e+06 -2.99897631e+06 -3.31960807e+06 -3.31138422e+06
-4.87896018e+06 -3.29549346e+06 -3.28945305e+06 -4.69358644e+06
-4.76627376e+06 -4.80798831e+06 -4.88835536e+06]
[-3.28666619e+05 -3.16859653e+05 -3.24975739e+05 -3.45950752e+05
-3.21481904e+05 -3.26231962e+05 -3.46790006e+05 -3.21866254e+05
-3.49273338e+05 -3.16549226e+05 -3.46687747e+05 -3.40863687e+05
-3.49043297e+05 -3.47119817e+05 -3.28574343e+05 -5.58475542e+04
-3.21800101e+05 -2.95721116e+05 -3.26500730e+05 -3.26431275e+05
-3.49183532e+05 -3.21696605e+05 -3.20810679e+05 -3.23207029e+05
-3.41056314e+05 -3.44498101e+05 -3.50148251e+05]
[ 1.35140862e+05 1.02548340e+05 1.03078846e+05 1.32643099e+05
1.02532592e+05 1.35850861e+05 1.32762171e+05 1.03072888e+05
1.32583210e+05 1.02515734e+05 1.29338538e+05 1.30484634e+05
1.32469827e+05 1.32609048e+05 1.16667687e+05 5.04680911e+04
1.02871544e+05 9.46457562e+04 1.02793821e+05 1.02951784e+05
1.32533295e+05 1.02456617e+05 1.02462101e+05 1.36151595e+05
1.29371294e+05 1.31052731e+05 1.32797394e+05]
[ 5.56522418e+05 3.77065652e+05 3.78496783e+05 5.59400676e+05
3.74291914e+05 5.56168297e+05 5.59294665e+05 3.77637428e+05
5.57376509e+05 3.77325321e+05 5.43117468e+05 5.43812711e+05
5.56982497e+05 5.58488882e+05 4.68158315e+05 2.16440777e+05
3.75814870e+05 3.49765217e+05 3.76751773e+05 3.76282561e+05
5.57487191e+05 3.74116095e+05 3.74100115e+05 5.54788973e+05
5.45556146e+05 5.46271800e+05 5.58305748e+05]
[ 1.06262630e+06 6.32396266e+05 6.38921472e+05 1.06987902e+06
6.28916306e+05 1.05929597e+06 1.07030714e+06 6.35412156e+05
1.06730013e+06 6.32706132e+05 1.02759615e+06 1.02525557e+06
1.06650851e+06 1.06849552e+06 8.70678467e+05 3.10013633e+05
6.31451610e+05 6.04745072e+05 6.38271573e+05 6.34939664e+05
1.06743802e+06 6.28855993e+05 6.28358672e+05 1.05604845e+06
1.02987651e+06 1.03616634e+06 1.06893035e+06]
[-3.22225770e+06 -6.07704465e+06 -6.17423460e+06 -3.39707490e+06
-6.14618060e+06 -3.22433308e+06 -3.41248674e+06 -6.14268318e+06
-3.45320704e+06 -6.07413769e+06 -4.28610321e+06 -3.75760045e+06
-3.46109404e+06 -3.42724353e+06 -4.48161411e+06 -2.29013815e+06
-6.16345699e+06 -5.22012649e+06 -6.19277868e+06 -6.19534532e+06
-3.46252539e+06 -6.14946068e+06 -6.14621963e+06 -3.22667507e+06
-4.25313806e+06 -3.71308082e+06 -3.45942479e+06]
[-8.98500023e+06 -1.52235321e+07 -1.55461622e+07 -9.54794887e+06
-1.53913053e+07 -8.99995795e+06 -9.59437371e+06 -1.54144467e+07
-9.69401618e+06 -1.52275459e+07 -1.23687794e+07 -1.04862442e+07
-9.70947626e+06 -9.62487133e+06 -1.24044397e+07 -5.58527115e+06
-1.54468214e+07 -1.35637840e+07 -1.56160435e+07 -1.55785541e+07
-9.71523150e+06 -1.54008455e+07 -1.53998774e+07 -9.00057822e+06
-1.23318103e+07 -1.03817743e+07 -9.70566339e+06]
[-2.72585492e+07 -3.68196646e+07 -3.75816622e+07 -2.85491066e+07
-3.71304728e+07 -2.72965130e+07 -2.86563840e+07 -3.72497662e+07
-2.88371808e+07 -3.68346581e+07 -3.47497137e+07 -3.04662801e+07
-2.88654625e+07 -2.86991777e+07 -3.32101709e+07 -1.39820008e+07
-3.72855377e+07 -3.32290440e+07 -3.77231439e+07 -3.76132318e+07
-2.88796050e+07 -3.71566467e+07 -3.71588291e+07 -2.72839522e+07
-3.47379465e+07 -3.02588338e+07 -2.88751922e+07]
[-5.15434828e+07 -6.56773482e+07 -6.71261439e+07 -5.36629828e+07
-6.62694889e+07 -5.17171323e+07 -5.38714354e+07 -6.65059407e+07
-5.41863968e+07 -6.57147498e+07 -6.43240862e+07 -5.68241469e+07
-5.42268919e+07 -5.39336526e+07 -6.10155384e+07 -2.42066602e+07
-6.65400676e+07 -5.99503819e+07 -6.74022822e+07 -6.71832554e+07
-5.42522029e+07 -6.62991466e+07 -6.63179565e+07 -5.17356912e+07
-6.43232384e+07 -5.64604898e+07 -5.42593985e+07]
[-9.51434066e+07 -1.11971911e+08 -1.14064777e+08 -9.77992107e+07
-1.12880199e+08 -9.54860691e+07 -9.81171266e+07 -1.13238417e+08
-9.85790450e+07 -1.11996839e+08 -1.11644598e+08 -1.01853260e+08
-9.86246828e+07 -9.81925657e+07 -1.05053152e+08 -4.28190304e+07
-1.13313443e+08 -1.01230202e+08 -1.14383977e+08 -1.14188562e+08
-9.86706535e+07 -1.12899902e+08 -1.12939633e+08 -9.55736834e+07
-1.11530116e+08 -1.01475416e+08 -9.87146020e+07]
[-1.66120262e+08 -1.82028382e+08 -1.84941212e+08 -1.70025059e+08
-1.83179610e+08 -1.66637472e+08 -1.70463444e+08 -1.83799648e+08
-1.71082910e+08 -1.82025788e+08 -1.87825001e+08 -1.74833029e+08
-1.71107822e+08 -1.70536887e+08 -1.75178132e+08 -7.28563460e+07
-1.83886431e+08 -1.64087928e+08 -1.85244212e+08 -1.85075299e+08
-1.71190604e+08 -1.83209034e+08 -1.83255360e+08 -1.66743106e+08
-1.87558878e+08 -1.74545600e+08 -1.71308381e+08]
[-2.21050375e+08 -2.38245127e+08 -2.41488131e+08 -2.25853857e+08
-2.39557663e+08 -2.21610441e+08 -2.26344372e+08 -2.40300330e+08
-2.27143064e+08 -2.38159775e+08 -2.45143554e+08 -2.30974548e+08
-2.27124048e+08 -2.26440729e+08 -2.28640480e+08 -9.66895619e+07
-2.40478670e+08 -2.12976939e+08 -2.41669674e+08 -2.41702549e+08
-2.27249741e+08 -2.39626851e+08 -2.39639434e+08 -2.21779276e+08
-2.44521342e+08 -2.30880164e+08 -2.27434266e+08]
[-2.57932499e+08 -2.73401082e+08 -2.76897786e+08 -2.63431103e+08
-2.74826912e+08 -2.58498597e+08 -2.63966413e+08 -2.75660271e+08
-2.64925801e+08 -2.73284177e+08 -2.84782054e+08 -2.69269271e+08
-2.64868340e+08 -2.64073601e+08 -2.65641127e+08 -1.08529876e+08
-2.75904180e+08 -2.45733690e+08 -2.77021699e+08 -2.77187997e+08
-2.64982688e+08 -2.74965313e+08 -2.74903754e+08 -2.58776222e+08
-2.83757178e+08 -2.69371882e+08 -2.65241205e+08]
[-2.60496933e+08 -2.74910250e+08 -2.78325209e+08 -2.65211956e+08
-2.76501438e+08 -2.61131911e+08 -2.65754798e+08 -2.77275654e+08
-2.66817406e+08 -2.74814390e+08 -2.87201336e+08 -2.71417053e+08
-2.66717510e+08 -2.65876832e+08 -2.68264962e+08 -1.03287408e+08
-2.77568050e+08 -2.48916208e+08 -2.78458946e+08 -2.78766052e+08
-2.66819658e+08 -2.76680109e+08 -2.76538455e+08 -2.61583771e+08
-2.85840109e+08 -2.71633242e+08 -2.67109227e+08]
[-1.99869978e+08 -2.18184719e+08 -2.20633250e+08 -2.02537798e+08
-2.19699740e+08 -2.00471359e+08 -2.02979777e+08 -2.20108459e+08
-2.03993143e+08 -2.18093388e+08 -2.20719027e+08 -2.08100395e+08
-2.03856058e+08 -2.03093664e+08 -2.08929632e+08 -7.46448749e+07
-2.20520036e+08 -1.98667991e+08 -2.20742167e+08 -2.21244142e+08
-2.03892340e+08 -2.19900180e+08 -2.19677048e+08 -2.01093120e+08
-2.18993126e+08 -2.08259161e+08 -2.04158676e+08]
[-7.90263591e+07 -1.09079620e+08 -1.10152883e+08 -7.75788271e+07
-1.10621172e+08 -7.97107086e+07 -7.78813527e+07 -1.10384067e+08
-7.87374979e+07 -1.09047889e+08 -8.96329946e+07 -8.20482845e+07
-7.86246392e+07 -7.79872477e+07 -9.09967645e+07 -2.34266544e+07
-1.10908809e+08 -1.00909845e+08 -1.10266757e+08 -1.11013805e+08
-7.85554644e+07 -1.10763804e+08 -1.10485985e+08 -8.05276116e+07
-8.78582231e+07 -8.18434991e+07 -7.87395157e+07]
[ 3.77151541e+07 3.31805924e+06 3.14849946e+06 4.38479447e+07
1.52955776e+06 3.67071868e+07 4.36637788e+07 2.38106129e+06
4.29743645e+07 3.30769403e+06 3.86187430e+07 4.11490633e+07
4.30491835e+07 4.35589889e+07 2.55863748e+07 3.20992916e+07
1.92493016e+06 -2.00206723e+06 2.80949520e+06 2.04139223e+06
4.32352296e+07 1.50834131e+06 1.84830670e+06 3.59516300e+07
4.03861586e+07 4.17869424e+07 4.30761758e+07]
[ 4.86963983e+07 2.70385928e+07 2.66992875e+07 5.71492950e+07
2.50957973e+07 4.72804494e+07 5.69625248e+07 2.59798106e+07
5.63445965e+07 2.70115647e+07 5.42345352e+07 5.58380134e+07
5.64190842e+07 5.68539516e+07 4.22786799e+07 4.57272706e+07
2.57241204e+07 1.60816981e+07 2.61473602e+07 2.55692430e+07
5.66305288e+07 2.51789187e+07 2.55203533e+07 4.66613470e+07
5.58557488e+07 5.64473383e+07 5.64488126e+07]
[-5.83194099e+07 -5.76551928e+07 -5.89617553e+07 -5.17800175e+07
-5.95251224e+07 -5.98305037e+07 -5.20764114e+07 -5.91945292e+07
-5.27219636e+07 -5.76377310e+07 -5.64905441e+07 -5.18941051e+07
-5.26219979e+07 -5.21786305e+07 -5.53699688e+07 5.26908037e+06
-5.92127822e+07 -6.15413664e+07 -5.94960595e+07 -5.98900376e+07
-5.24720903e+07 -5.93868167e+07 -5.91039150e+07 -6.01994265e+07
-5.49168992e+07 -5.18278883e+07 -5.27417478e+07]
[-1.80030030e+08 -1.62885150e+08 -1.64937124e+08 -1.78674504e+08
-1.64222052e+08 -1.81128819e+08 -1.78963558e+08 -1.64574691e+08
-1.79732835e+08 -1.62706159e+08 -1.87968483e+08 -1.78972310e+08
-1.79581966e+08 -1.79126407e+08 -1.73087600e+08 -5.06248116e+07
-1.64440567e+08 -1.55048730e+08 -1.65170354e+08 -1.65485070e+08
-1.79518815e+08 -1.64139680e+08 -1.63869865e+08 -1.81167286e+08
-1.86352622e+08 -1.79614430e+08 -1.79883347e+08]
[-2.76293387e+08 -2.53752941e+08 -2.56138137e+08 -2.78395138e+08
-2.54584637e+08 -2.77038350e+08 -2.78658221e+08 -2.55441136e+08
-2.79463853e+08 -2.53417609e+08 -2.91350179e+08 -2.79515872e+08
-2.79255830e+08 -2.78814492e+08 -2.67291493e+08 -1.02368130e+08
-2.55275439e+08 -2.33150531e+08 -2.55946545e+08 -2.56373775e+08
-2.79297480e+08 -2.54582414e+08 -2.54321684e+08 -2.76949082e+08
-2.89609070e+08 -2.80437254e+08 -2.79737925e+08]
[-3.35623612e+08 -3.07038105e+08 -3.09107834e+08 -3.38955178e+08
-3.07274736e+08 -3.36103046e+08 -3.39153057e+08 -3.08433376e+08
-3.39842481e+08 -3.06599458e+08 -3.50483793e+08 -3.39589845e+08
-3.39585959e+08 -3.39250946e+08 -3.20217280e+08 -1.38942287e+08
-3.08333113e+08 -2.75694297e+08 -3.08433581e+08 -3.09052521e+08
-3.39708359e+08 -3.07325481e+08 -3.07094468e+08 -3.36005286e+08
-3.48861339e+08 -3.40786015e+08 -3.40197650e+08]
[-3.39334518e+08 -3.05046589e+08 -3.06576326e+08 -3.44303777e+08
-3.04761594e+08 -3.39300182e+08 -3.44438058e+08 -3.05980033e+08
-3.44957064e+08 -3.04553916e+08 -3.51596047e+08 -3.43515784e+08
-3.44690453e+08 -3.44482580e+08 -3.19983758e+08 -1.46031089e+08
-3.05909660e+08 -2.70538324e+08 -3.05611746e+08 -3.06275618e+08
-3.44828353e+08 -3.04860675e+08 -3.04627725e+08 -3.39051185e+08
-3.50142368e+08 -3.45011867e+08 -3.45307337e+08]
[-2.92489852e+08 -2.54598064e+08 -2.55637653e+08 -2.98642190e+08
-2.53863997e+08 -2.92096886e+08 -2.98662806e+08 -2.55012535e+08
-2.98960304e+08 -2.54152185e+08 -3.02061774e+08 -2.96733092e+08
-2.98719321e+08 -2.98683950e+08 -2.73353116e+08 -1.29226275e+08
-2.54862152e+08 -2.25106681e+08 -2.54634861e+08 -2.55090770e+08
-2.98837467e+08 -2.53957523e+08 -2.53762055e+08 -2.91613755e+08
-3.01031266e+08 -2.98289963e+08 -2.99244889e+08]
[-2.31321690e+08 -1.93057209e+08 -1.93839453e+08 -2.37297897e+08
-1.92223264e+08 -2.30839620e+08 -2.37249369e+08 -1.93179087e+08
-2.37375586e+08 -1.92691428e+08 -2.37687996e+08 -2.34652988e+08
-2.37183510e+08 -2.37256021e+08 -2.13780672e+08 -1.02555496e+08
-1.92963371e+08 -1.71056395e+08 -1.92998691e+08 -1.93196086e+08
-2.37255781e+08 -1.92278113e+08 -1.92115919e+08 -2.30237534e+08
-2.37011154e+08 -2.36069549e+08 -2.37587907e+08]
[-1.73587851e+08 -1.36401382e+08 -1.36841915e+08 -1.78052788e+08
-1.35583444e+08 -1.73220194e+08 -1.77963878e+08 -1.36304204e+08
-1.77971199e+08 -1.36132588e+08 -1.75923159e+08 -1.75039869e+08
-1.77829268e+08 -1.77961393e+08 -1.56582228e+08 -7.72018135e+07
-1.36089833e+08 -1.21122852e+08 -1.36164035e+08 -1.36188075e+08
-1.77826209e+08 -1.35593674e+08 -1.35465592e+08 -1.72667142e+08
-1.75602439e+08 -1.76265862e+08 -1.78102851e+08]
[-1.09188613e+08 -7.97910168e+07 -7.99796452e+07 -1.11769757e+08
-7.91398096e+07 -1.09020030e+08 -1.11680878e+08 -7.96134105e+07
-1.11626418e+08 -7.96375196e+07 -1.09147632e+08 -1.09307919e+08
-1.11535394e+08 -1.11677126e+08 -9.59650166e+07 -4.87691734e+07
-7.94329109e+07 -7.12605285e+07 -7.95306129e+07 -7.94465803e+07
-1.11490665e+08 -7.91276612e+07 -7.90454495e+07 -1.08600875e+08
-1.09161464e+08 -1.10154889e+08 -1.11688415e+08]
[-4.82688801e+07 -3.34406575e+07 -3.34871835e+07 -4.91064503e+07
-3.31347447e+07 -4.82563158e+07 -4.90551777e+07 -3.33406179e+07
-4.90145340e+07 -3.33813173e+07 -4.74725316e+07 -4.78596781e+07
-4.89709251e+07 -4.90513144e+07 -4.14218723e+07 -2.11748079e+07
-3.32537696e+07 -3.00407850e+07 -3.32823915e+07 -3.32376772e+07
-4.89416081e+07 -3.31243557e+07 -3.30874547e+07 -4.80752437e+07
-4.75300306e+07 -4.82407170e+07 -4.90401895e+07]
[-9.24098538e+06 -6.19366289e+06 -6.20565360e+06 -9.37977947e+06
-6.13764425e+06 -9.23963857e+06 -9.37054523e+06 -6.17629002e+06
-9.36410219e+06 -6.18210202e+06 -9.01949925e+06 -9.12359725e+06
-9.35503460e+06 -9.36957324e+06 -7.84898482e+06 -3.83912849e+06
-6.15994507e+06 -5.59344200e+06 -6.16890457e+06 -6.16011245e+06
-9.34894909e+06 -6.13680345e+06 -6.12811843e+06 -9.20397622e+06
-9.02896661e+06 -9.20662086e+06 -9.36961582e+06]
[-2.80428951e+05 -2.16203961e+05 -2.23829645e+05 -3.07932070e+05
-2.18201475e+05 -2.78562310e+05 -3.08543187e+05 -2.18909774e+05
-3.10733067e+05 -2.15687774e+05 -3.04806527e+05 -3.02161643e+05
-3.10245903e+05 -3.08710382e+05 -2.88196103e+05 -4.04690143e+04
-2.18770128e+05 -2.15954461e+05 -2.24945451e+05 -2.23971758e+05
-3.10246992e+05 -2.18797100e+05 -2.17821111e+05 -2.74658948e+05
-2.98648583e+05 -3.07045734e+05 -3.11349633e+05]
[ 5.49188094e+05 4.16738192e+05 4.18891735e+05 5.39039573e+05
4.16673623e+05 5.52073605e+05 5.39524643e+05 4.18870411e+05
5.38796482e+05 4.16605753e+05 5.25606636e+05 5.30268174e+05
5.38335379e+05 5.38901655e+05 4.74116947e+05 2.05089934e+05
4.18055025e+05 3.84621644e+05 4.17736482e+05 4.18380285e+05
5.38594206e+05 4.16367985e+05 4.16384379e+05 5.53299622e+05
5.25741553e+05 5.32579205e+05 5.39667449e+05]
[ 2.60517332e+06 1.96810167e+06 1.99527126e+06 2.66829958e+06
1.96308193e+06 2.60246059e+06 2.67214966e+06 1.97731858e+06
2.67037047e+06 1.96737021e+06 2.75042663e+06 2.65180499e+06
2.66933269e+06 2.66939952e+06 2.40218590e+06 8.87205575e+05
1.97280992e+06 1.84229830e+06 1.99510863e+06 1.98796025e+06
2.66983441e+06 1.96556865e+06 1.96233866e+06 2.59215054e+06
2.74549037e+06 2.66794657e+06 2.67450022e+06]
[ 6.00121413e+06 4.30651895e+06 4.37843173e+06 6.16367383e+06
4.29382074e+06 5.99970120e+06 6.17490765e+06 4.32935671e+06
6.17012971e+06 4.30671927e+06 6.40938307e+06 6.13580469e+06
6.16817785e+06 6.16698387e+06 5.56556289e+06 1.85057640e+06
4.31604188e+06 4.17340353e+06 4.38238468e+06 4.35849537e+06
6.16739505e+06 4.30003265e+06 4.29237860e+06 5.97759274e+06
6.39546458e+06 6.17487189e+06 6.17860302e+06]
[ 8.19612290e+06 2.05413772e+06 2.04629444e+06 8.23128312e+06
1.95866612e+06 8.17957580e+06 8.23269217e+06 2.01971332e+06
8.18253854e+06 2.05394161e+06 7.35091213e+06 7.71119063e+06
8.17136331e+06 8.20694839e+06 5.65622831e+06 1.38539320e+06
1.97751507e+06 2.44145612e+06 2.01958138e+06 1.99619333e+06
8.17016067e+06 1.96231048e+06 1.95415514e+06 8.14363784e+06
7.35290977e+06 7.84828905e+06 8.19287387e+06]
[ 1.06577656e+07 -2.53491476e+06 -2.70196786e+06 1.05251077e+07
-2.76014268e+06 1.06146473e+07 1.05146890e+07 -2.68479067e+06
1.03867710e+07 -2.54780457e+06 7.57010510e+06 9.18445220e+06
1.03628363e+07 1.04554003e+07 4.82073657e+06 -1.25976094e+04
-2.76154906e+06 -1.10793753e+06 -2.78313775e+06 -2.79299464e+06
1.03555380e+07 -2.75796568e+06 -2.78098646e+06 1.05519055e+07
7.51991116e+06 9.47017853e+06 1.04050289e+07]
[ 1.68396119e+07 -4.60745460e+06 -4.90075650e+06 1.60570900e+07
-4.91222442e+06 1.68607356e+07 1.60372004e+07 -4.81564506e+06
1.58345355e+07 -4.61823675e+06 1.09704049e+07 1.38296026e+07
1.57912639e+07 1.59485385e+07 6.87364294e+06 -6.30361743e+05
-4.94384803e+06 -1.87495863e+06 -5.02794099e+06 -5.02469373e+06
1.57827180e+07 -4.92545597e+06 -4.96391723e+06 1.68014128e+07
1.08813778e+07 1.42682141e+07 1.58644867e+07]
[ 2.11986133e+07 -1.06926174e+07 -1.10579745e+07 2.05351580e+07
-1.11815304e+07 2.11071053e+07 2.05073789e+07 -1.10307203e+07
2.02272888e+07 -1.07097492e+07 1.39601164e+07 1.75593625e+07
2.01733567e+07 2.03950013e+07 7.74957082e+06 -3.08120815e+06
-1.12337513e+07 -5.63252839e+06 -1.12055263e+07 -1.12768906e+07
2.01507520e+07 -1.11746827e+07 -1.12663703e+07 2.09445257e+07
1.38015543e+07 1.82457923e+07 2.02665616e+07]
[ 1.26505546e+07 -2.93788710e+07 -2.96795109e+07 1.20738441e+07
-3.00101285e+07 1.25111286e+07 1.20610224e+07 -2.98152229e+07
1.16607923e+07 -2.93696283e+07 4.43532124e+06 8.38988692e+06
1.16067384e+07 1.19034654e+07 -2.59489506e+06 -1.19476045e+07
-3.01425336e+07 -1.94099057e+07 -2.97519856e+07 -3.00107971e+07
1.15650857e+07 -2.99937930e+07 -3.01299410e+07 1.21858208e+07
4.30350556e+06 9.19839143e+06 1.17102505e+07]
[ 1.03744577e+07 -3.80050287e+07 -3.80243084e+07 9.34844311e+06
-3.85526548e+07 1.02820656e+07 9.41497945e+06 -3.83121340e+07
8.91635514e+06 -3.79517629e+07 1.68278438e+06 5.33013376e+06
8.90692482e+06 9.21816994e+06 -6.68313913e+06 -1.67880951e+07
-3.87587841e+07 -2.54482163e+07 -3.79438794e+07 -3.84022636e+07
8.84427222e+06 -3.85705195e+07 -3.87118114e+07 9.87365514e+06
1.69569071e+06 6.19964123e+06 9.00789431e+06]
[-1.54701481e+07 -6.60646601e+07 -6.57114909e+07 -1.70162447e+07
-6.64641359e+07 -1.54306498e+07 -1.68942915e+07 -6.62510798e+07
-1.74642652e+07 -6.59460223e+07 -2.31698110e+07 -2.06258547e+07
-1.74230225e+07 -1.71001801e+07 -3.03996014e+07 -3.10241650e+07
-6.68391694e+07 -4.76099088e+07 -6.53760230e+07 -6.61455069e+07
-1.75185995e+07 -6.65485756e+07 -6.66713349e+07 -1.59097669e+07
-2.28621294e+07 -1.99517659e+07 -1.73615155e+07]
[-2.21069604e+07 -7.00563881e+07 -6.88924796e+07 -2.24904655e+07
-7.02498647e+07 -2.20426259e+07 -2.22731000e+07 -6.99670687e+07
-2.28315095e+07 -6.99130550e+07 -2.47956941e+07 -2.51337454e+07
-2.27283581e+07 -2.24761923e+07 -3.21124738e+07 -3.47007073e+07
-7.06790290e+07 -4.91067023e+07 -6.82738923e+07 -6.94121076e+07
-2.28272319e+07 -7.03680269e+07 -7.04708063e+07 -2.27141051e+07
-2.43270333e+07 -2.47622105e+07 -2.26719728e+07]
[ 2.50454329e+07 -2.18611327e+07 -1.93127387e+07 2.64607385e+07
-2.16146975e+07 2.51812926e+07 2.69009852e+07 -2.10688151e+07
2.64912088e+07 -2.17354755e+07 2.99371237e+07 2.54005794e+07
2.66602469e+07 2.67029171e+07 1.78305854e+07 -1.61517380e+07
-2.19223704e+07 -4.17512653e+06 -1.84390494e+07 -1.98622257e+07
2.66061395e+07 -2.17635134e+07 -2.18310788e+07 2.44283791e+07
3.04271231e+07 2.56834278e+07 2.67975241e+07]
[ 1.56333074e+08 9.19417044e+07 9.61460863e+07 1.60622832e+08
9.24548491e+07 1.56575607e+08 1.61290854e+08 9.36413491e+07
1.61037218e+08 9.20308029e+07 1.68755369e+08 1.59681413e+08
1.61210259e+08 1.61077895e+08 1.41893006e+08 3.28369029e+07
9.26013612e+07 9.91923063e+07 9.70850779e+07 9.54932141e+07
1.61253145e+08 9.23163105e+07 9.22841802e+07 1.55615562e+08
1.69180236e+08 1.60437046e+08 1.61562057e+08]
[ 3.42867053e+08 2.50058226e+08 2.55955685e+08 3.52810697e+08
2.50305700e+08 3.42942608e+08 3.53730638e+08 2.52511824e+08
3.53603430e+08 2.50106789e+08 3.68186940e+08 3.52375081e+08
3.53698131e+08 3.53428806e+08 3.20274295e+08 1.05519180e+08
2.51332201e+08 2.43403514e+08 2.56754973e+08 2.54949510e+08
3.53877248e+08 2.50307261e+08 2.50318548e+08 3.41898227e+08
3.68438040e+08 3.53926903e+08 3.54310881e+08]
[ 4.69392227e+08 3.67833946e+08 3.74286741e+08 4.84601651e+08
3.67517754e+08 4.69043054e+08 4.85596169e+08 3.70439713e+08
4.85505671e+08 3.67884778e+08 5.06018625e+08 4.85272905e+08
4.85501747e+08 4.85201968e+08 4.45188924e+08 1.65238607e+08
3.69380915e+08 3.47426310e+08 3.74689782e+08 3.72961700e+08
4.85824825e+08 3.67734547e+08 3.67793742e+08 4.68014167e+08
5.06179192e+08 4.87303714e+08 4.86280544e+08]
[ 4.12071351e+08 3.30155433e+08 3.35277200e+08 4.27324285e+08
3.29382689e+08 4.11359112e+08 4.28101677e+08 3.32024872e+08
4.27887563e+08 3.30229601e+08 4.46335225e+08 4.28648995e+08
4.27820449e+08 4.27664390e+08 3.93922387e+08 1.54776675e+08
3.31276852e+08 3.08340714e+08 3.35272697e+08 3.33948604e+08
4.28192077e+08 3.29725105e+08 3.29785136e+08 4.10522742e+08
4.46579909e+08 4.30352509e+08 4.28550422e+08]
[ 2.09339530e+08 1.63228529e+08 1.66127136e+08 2.19475267e+08
1.62482219e+08 2.08502966e+08 2.19919361e+08 1.64041611e+08
2.19531697e+08 1.63334155e+08 2.30369838e+08 2.20945655e+08
2.19488868e+08 2.19522622e+08 2.01927860e+08 7.94828480e+07
1.63602518e+08 1.53560429e+08 1.66071884e+08 1.65155581e+08
2.19801872e+08 1.62785220e+08 1.62802753e+08 2.07952796e+08
2.30704208e+08 2.21755691e+08 2.19974594e+08]
[-1.54556203e+07 -2.51269280e+07 -2.41085536e+07 -1.33568324e+07
-2.51866712e+07 -1.60082780e+07 -1.31347828e+07 -2.49209307e+07
-1.36342151e+07 -2.49412961e+07 -1.18370609e+07 -1.23299381e+07
-1.35832709e+07 -1.34565091e+07 -1.44810752e+07 -1.45370395e+07
-2.51235539e+07 -1.88823301e+07 -2.38535662e+07 -2.44549921e+07
-1.33843347e+07 -2.50471128e+07 -2.50554730e+07 -1.62043370e+07
-1.14056208e+07 -1.25577191e+07 -1.34072062e+07]
[-1.81807202e+08 -1.77578358e+08 -1.78047884e+08 -1.84755522e+08
-1.77401747e+08 -1.82062449e+08 -1.84692979e+08 -1.77992191e+08
-1.85351114e+08 -1.77286313e+08 -1.92413239e+08 -1.85559668e+08
-1.85208120e+08 -1.84954362e+08 -1.77786795e+08 -8.70331810e+07
-1.78116488e+08 -1.56044778e+08 -1.77497803e+08 -1.78065909e+08
-1.85160925e+08 -1.77425378e+08 -1.77401250e+08 -1.82069858e+08
-1.91594319e+08 -1.86191233e+08 -1.85325033e+08]
[-2.56617553e+08 -2.53588022e+08 -2.54313542e+08 -2.60632914e+08
-2.53292605e+08 -2.56715532e+08 -2.60599327e+08 -2.54185685e+08
-2.61271487e+08 -2.53196054e+08 -2.70698660e+08 -2.62094879e+08
-2.61037705e+08 -2.60771505e+08 -2.49875123e+08 -1.24595949e+08
-2.54393193e+08 -2.20491935e+08 -2.53411991e+08 -2.54269812e+08
-2.61152569e+08 -2.53409838e+08 -2.53355272e+08 -2.56727102e+08
-2.69555730e+08 -2.62769436e+08 -2.61385651e+08]
[-2.64428344e+08 -2.55661900e+08 -2.56068246e+08 -2.69667107e+08
-2.55072259e+08 -2.64151213e+08 -2.69581249e+08 -2.56002086e+08
-2.70095959e+08 -2.55202814e+08 -2.76078224e+08 -2.69589906e+08
-2.69818036e+08 -2.69690200e+08 -2.54026937e+08 -1.28813678e+08
-2.56163624e+08 -2.20490220e+08 -2.54932256e+08 -2.55887928e+08
-2.70008306e+08 -2.55215723e+08 -2.55094436e+08 -2.63906036e+08
-2.74814838e+08 -2.70486350e+08 -2.70278561e+08]
[-2.12387191e+08 -1.97468631e+08 -1.97535297e+08 -2.17429251e+08
-1.96772896e+08 -2.11902538e+08 -2.17270142e+08 -1.97496463e+08
-2.17609277e+08 -1.97017924e+08 -2.18749481e+08 -2.15761600e+08
-2.17344356e+08 -2.17352916e+08 -2.00605981e+08 -1.01773624e+08
-1.97545494e+08 -1.69714689e+08 -1.96473383e+08 -1.97277432e+08
-2.17512591e+08 -1.96886929e+08 -1.96716151e+08 -2.11476928e+08
-2.17567750e+08 -2.16780891e+08 -2.17774327e+08]
[-1.72204850e+08 -1.50842952e+08 -1.51223138e+08 -1.76872488e+08
-1.50306387e+08 -1.71735271e+08 -1.76754326e+08 -1.50926087e+08
-1.76958569e+08 -1.50486798e+08 -1.76920781e+08 -1.74707080e+08
-1.76749273e+08 -1.76799455e+08 -1.60858249e+08 -7.70113515e+07
-1.50819614e+08 -1.32079538e+08 -1.50465803e+08 -1.50888488e+08
-1.76862840e+08 -1.50364068e+08 -1.50197828e+08 -1.71234224e+08
-1.76007587e+08 -1.75706323e+08 -1.77109123e+08]
[-1.37342786e+08 -1.11824602e+08 -1.12193661e+08 -1.40329669e+08
-1.11383906e+08 -1.37081927e+08 -1.40242622e+08 -1.11877840e+08
-1.40323814e+08 -1.11578231e+08 -1.38914708e+08 -1.37894303e+08
-1.40179552e+08 -1.40258858e+08 -1.24589692e+08 -5.90815353e+07
-1.11724396e+08 -9.91593070e+07 -1.11651584e+08 -1.11813144e+08
-1.40210181e+08 -1.11387712e+08 -1.11250544e+08 -1.36656751e+08
-1.38402590e+08 -1.38804623e+08 -1.40441387e+08]
[-9.46133599e+07 -7.08983222e+07 -7.11691169e+07 -9.65945024e+07
-7.04988307e+07 -9.44788990e+07 -9.65235574e+07 -7.08653822e+07
-9.65325956e+07 -7.07547400e+07 -9.46537032e+07 -9.45147487e+07
-9.64474385e+07 -9.65380577e+07 -8.36302762e+07 -4.03422097e+07
-7.07077631e+07 -6.36297655e+07 -7.08222712e+07 -7.07846889e+07
-9.64194213e+07 -7.04781928e+07 -7.03859621e+07 -9.41114232e+07
-9.45278766e+07 -9.52298891e+07 -9.65983674e+07]
[-4.90727469e+07 -3.51520293e+07 -3.52381081e+07 -5.00172875e+07
-3.48783128e+07 -4.90376142e+07 -4.99701870e+07 -3.50855891e+07
-4.99444191e+07 -3.50918576e+07 -4.85882508e+07 -4.87845246e+07
-4.99047684e+07 -4.99738545e+07 -4.25191661e+07 -2.16058034e+07
-3.49953794e+07 -3.14191565e+07 -3.50441314e+07 -3.50001369e+07
-4.98792320e+07 -3.48666510e+07 -3.48271630e+07 -4.88487472e+07
-4.86391341e+07 -4.91604791e+07 -4.99745773e+07]
[-7.05182445e+06 -4.75515415e+06 -4.76630333e+06 -7.14301198e+06
-4.71506946e+06 -7.05449897e+06 -7.13667783e+06 -4.74466514e+06
-7.13063683e+06 -4.74707688e+06 -6.85861898e+06 -6.94281697e+06
-7.12381184e+06 -7.13504316e+06 -5.95045436e+06 -2.95822646e+06
-4.73223728e+06 -4.25837405e+06 -4.73789422e+06 -4.73223499e+06
-7.11943764e+06 -4.71338751e+06 -4.70790928e+06 -7.02820078e+06
-6.86399981e+06 -7.00497378e+06 -7.13445508e+06]
[-6.87429418e+05 -5.74136880e+05 -5.78481976e+05 -6.78590898e+05
-5.76221106e+05 -6.90895966e+05 -6.79565779e+05 -5.77992454e+05
-6.79725686e+05 -5.73457257e+05 -6.68369387e+05 -6.69865878e+05
-6.79646186e+05 -6.78966275e+05 -5.96215408e+05 -2.53583418e+05
-5.77466347e+05 -5.12117762e+05 -5.77498481e+05 -5.78713808e+05
-6.79635884e+05 -5.75735218e+05 -5.75478701e+05 -6.92023800e+05
-6.66268713e+05 -6.72945012e+05 -6.80764825e+05]
[ 8.91354585e+04 6.76378017e+04 6.79878045e+04 8.74880265e+04
6.76282972e+04 8.96039632e+04 8.75670727e+04 6.79831184e+04
8.74479373e+04 6.76173488e+04 8.53083556e+04 8.60637865e+04
8.73728380e+04 8.74650892e+04 7.69515988e+04 3.32879311e+04
6.78522397e+04 6.24260524e+04 6.77992127e+04 6.79054786e+04
8.74160460e+04 6.75779058e+04 6.75808407e+04 8.98035994e+04
8.53289732e+04 8.64389413e+04 8.75893169e+04]
[ 2.82219213e+06 1.94101116e+06 1.97923460e+06 2.91028665e+06
1.93246275e+06 2.82232537e+06 2.91490961e+06 1.95071654e+06
2.91286035e+06 1.94031381e+06 3.07818237e+06 2.91584536e+06
2.91097282e+06 2.91130762e+06 2.64830824e+06 7.50355018e+05
1.94463167e+06 1.91955880e+06 1.98234645e+06 1.96882946e+06
2.91140962e+06 1.93762409e+06 1.93200631e+06 2.80660620e+06
3.07083147e+06 2.93230705e+06 2.91747163e+06]
[ 9.64731857e+06 6.68194469e+06 6.77204309e+06 9.84355248e+06
6.65053139e+06 9.65336033e+06 9.85938739e+06 6.70600074e+06
9.84436676e+06 6.68022689e+06 1.00312165e+07 9.74435902e+06
9.84092288e+06 9.84385256e+06 8.65995670e+06 3.06675872e+06
6.68501378e+06 6.40640296e+06 6.76885351e+06 6.74064972e+06
9.83940189e+06 6.66030362e+06 6.64826219e+06 9.61727095e+06
1.00090712e+07 9.80915687e+06 9.85820106e+06]
[ 2.06523840e+07 1.21984884e+07 1.23281967e+07 2.10215627e+07
1.20968966e+07 2.06434695e+07 2.10437770e+07 1.22176818e+07
2.09898633e+07 1.21937374e+07 2.05116838e+07 2.04459872e+07
2.09761505e+07 2.10067842e+07 1.74341501e+07 5.95183687e+06
1.21561851e+07 1.19082856e+07 1.23017106e+07 1.22511571e+07
2.09782066e+07 1.21099799e+07 1.20880777e+07 2.05585730e+07
2.04744419e+07 2.06300760e+07 2.10203778e+07]
[ 4.05952301e+07 2.25369275e+07 2.27941036e+07 4.14934913e+07
2.23422299e+07 4.05346040e+07 4.15465589e+07 2.25683280e+07
4.14403373e+07 2.25237826e+07 4.01844016e+07 4.02007358e+07
4.14139507e+07 4.14750305e+07 3.40212605e+07 1.05384644e+07
2.24406724e+07 2.26713056e+07 2.27503755e+07 2.26375140e+07
4.14163792e+07 2.23645272e+07 2.23132264e+07 4.03653206e+07
4.00513493e+07 4.06110754e+07 4.15034282e+07]
[ 6.84959369e+07 3.85008074e+07 3.89970236e+07 6.89166122e+07
3.83361946e+07 6.85365330e+07 6.90192454e+07 3.86834029e+07
6.88635816e+07 3.84957555e+07 6.69464748e+07 6.69189055e+07
6.88199219e+07 6.89082015e+07 5.65772791e+07 1.62873933e+07
3.84600577e+07 3.92049661e+07 3.89594558e+07 3.87904348e+07
6.88266419e+07 3.83453339e+07 3.82596234e+07 6.83596126e+07
6.67589461e+07 6.75561699e+07 6.89797851e+07]
[ 9.69281056e+07 5.33362259e+07 5.43204062e+07 9.81832024e+07
5.31093139e+07 9.69149536e+07 9.83688362e+07 5.36483397e+07
9.81636606e+07 5.33378493e+07 9.70666105e+07 9.58335840e+07
9.81183259e+07 9.82116423e+07 8.18900395e+07 2.16398684e+07
5.32851449e+07 5.58376530e+07 5.43580101e+07 5.39734537e+07
9.81090181e+07 5.31412649e+07 5.29919455e+07 9.65652217e+07
9.67768016e+07 9.67346680e+07 9.83373853e+07]
[ 1.25735430e+08 6.95064131e+07 7.12800962e+07 1.27401778e+08
6.94153071e+07 1.25880650e+08 1.27739085e+08 7.01531885e+07
1.27504239e+08 6.95458518e+07 1.28252636e+08 1.25047537e+08
1.27473684e+08 1.27527274e+08 1.08868128e+08 2.60163854e+07
6.96189924e+07 7.48865816e+07 7.15155789e+07 7.08370473e+07
1.27444827e+08 6.94395802e+07 6.92487278e+07 1.25417544e+08
1.27925534e+08 1.26099732e+08 1.27762486e+08]
[ 1.37305648e+08 7.79357105e+07 8.05342196e+07 1.38869761e+08
7.82003729e+07 1.37626106e+08 1.39377805e+08 7.90116567e+07
1.39150347e+08 7.80146559e+07 1.42568811e+08 1.37200020e+08
1.39173165e+08 1.39144672e+08 1.21365576e+08 2.64465837e+07
7.83501203e+07 8.53233337e+07 8.10502338e+07 8.00813895e+07
1.39133610e+08 7.81585804e+07 7.79718706e+07 1.37091149e+08
1.42342778e+08 1.38222773e+08 1.39499803e+08]
[ 1.21949630e+08 6.60075885e+07 6.95776460e+07 1.23220231e+08
6.68450780e+07 1.22545426e+08 1.23894526e+08 6.76018629e+07
1.23752638e+08 6.61226348e+07 1.30973457e+08 1.22960262e+08
1.23850106e+08 1.23677477e+08 1.11145878e+08 1.35594969e+07
6.68166426e+07 7.83442277e+07 7.05243124e+07 6.92162460e+07
1.23781086e+08 6.67131058e+07 6.65386428e+07 1.21990119e+08
1.30825218e+08 1.23669872e+08 1.24171752e+08]
[ 1.21403767e+08 7.10234825e+07 7.56882102e+07 1.22809966e+08
7.23737149e+07 1.22211884e+08 1.23637230e+08 7.31813347e+07
1.23600632e+08 7.11781569e+07 1.36014807e+08 1.24431960e+08
1.23789920e+08 1.23446319e+08 1.15822753e+08 9.77931444e+06
7.22673718e+07 8.56719445e+07 7.70040770e+07 7.53817612e+07
1.23700171e+08 7.21749567e+07 7.20306939e+07 1.21633310e+08
1.35978176e+08 1.24740734e+08 1.24108462e+08]
[ 1.98914363e+08 1.32862862e+08 1.38928547e+08 2.02234972e+08
1.34484532e+08 1.99786920e+08 2.03296218e+08 1.35741484e+08
2.03367144e+08 1.33050249e+08 2.19281467e+08 2.04077412e+08
2.03601528e+08 2.03082947e+08 1.88832160e+08 3.36539148e+07
1.34621610e+08 1.44891639e+08 1.40461176e+08 1.38553789e+08
2.03545087e+08 1.34288541e+08 1.34184967e+08 1.99088950e+08
2.19236662e+08 2.04684964e+08 2.04013938e+08]
[ 3.55231357e+08 2.51402315e+08 2.58734735e+08 3.62739660e+08
2.52649315e+08 3.56106862e+08 3.63982214e+08 2.54810553e+08
3.64058622e+08 2.51583391e+08 3.82284846e+08 3.63147689e+08
3.64223509e+08 3.63677196e+08 3.32281410e+08 8.84858112e+07
2.53449985e+08 2.55127949e+08 2.60140673e+08 2.58017606e+08
3.64242753e+08 2.52551595e+08 2.52478836e+08 3.55211431e+08
3.82186941e+08 3.64610132e+08 3.64833146e+08]
[ 5.32135370e+08 3.91379660e+08 3.99331405e+08 5.46025313e+08
3.91579896e+08 5.32522897e+08 5.47387708e+08 3.94814412e+08
5.47380859e+08 3.91545968e+08 5.68509084e+08 5.45628542e+08
5.47400878e+08 5.46915271e+08 4.97584953e+08 1.60859775e+08
3.93424953e+08 3.82381746e+08 4.00273400e+08 3.98076768e+08
5.47539478e+08 3.91727264e+08 3.91719941e+08 5.31606578e+08
5.68314760e+08 5.48123189e+08 5.48203123e+08]
[ 5.92816271e+08 4.47419745e+08 4.54299642e+08 6.10050423e+08
4.46459299e+08 5.92645236e+08 6.11185624e+08 4.50087935e+08
6.10939089e+08 4.47600140e+08 6.30491881e+08 6.08886182e+08
6.10780185e+08 6.10556388e+08 5.53424570e+08 2.00565379e+08
4.48995385e+08 4.26809438e+08 4.54447291e+08 4.52688546e+08
6.11082271e+08 4.46861231e+08 4.46918825e+08 5.91697613e+08
6.30410927e+08 6.11693432e+08 6.11707933e+08]
[ 4.62308103e+08 3.48176733e+08 3.52701081e+08 4.77326929e+08
3.46603558e+08 4.61774336e+08 4.78028133e+08 3.49578756e+08
4.77602759e+08 3.48366249e+08 4.91831023e+08 4.76703253e+08
4.77354747e+08 4.77397803e+08 4.31874071e+08 1.65007025e+08
3.48907953e+08 3.30176102e+08 3.52340600e+08 3.51173307e+08
4.77697684e+08 3.47104067e+08 3.47158553e+08 4.61126059e+08
4.91932019e+08 4.78929121e+08 4.78152038e+08]
[ 2.03012898e+08 1.34488731e+08 1.36221405e+08 2.09420336e+08
1.33306103e+08 2.02508076e+08 2.09667934e+08 1.34773535e+08
2.09033431e+08 1.34667832e+08 2.11892173e+08 2.08008760e+08
2.08807659e+08 2.09131604e+08 1.82433666e+08 6.57540914e+07
1.34395727e+08 1.31044069e+08 1.35836715e+08 1.35282671e+08
2.09113903e+08 1.33640326e+08 1.33640731e+08 2.02151628e+08
2.12071276e+08 2.09064126e+08 2.09351829e+08]
[-6.91100039e+07 -9.15890819e+07 -9.17853866e+07 -7.06609280e+07
-9.18810332e+07 -6.94894532e+07 -7.07028825e+07 -9.19776423e+07
-7.13156165e+07 -9.14051591e+07 -7.64530763e+07 -7.18953141e+07
-7.14166167e+07 -7.10310010e+07 -7.44006726e+07 -4.73499964e+07
-9.21869887e+07 -7.47145893e+07 -9.17109583e+07 -9.20492902e+07
-7.12654213e+07 -9.17887323e+07 -9.18902096e+07 -6.95773462e+07
-7.62691724e+07 -7.19641539e+07 -7.12245448e+07]
[-2.10799492e+08 -2.14912611e+08 -2.15858640e+08 -2.16579170e+08
-2.14576058e+08 -2.10871838e+08 -2.16671879e+08 -2.15513226e+08
-2.17292945e+08 -2.14723566e+08 -2.28531747e+08 -2.18821562e+08
-2.17250289e+08 -2.16874622e+08 -2.10661109e+08 -1.08739507e+08
-2.15710723e+08 -1.86068149e+08 -2.15347431e+08 -2.15777806e+08
-2.17254077e+08 -2.14697219e+08 -2.14835975e+08 -2.10916728e+08
-2.28200423e+08 -2.19325165e+08 -2.17296974e+08]
[-2.26566062e+08 -2.38302500e+08 -2.38676136e+08 -2.32292054e+08
-2.37789639e+08 -2.26312579e+08 -2.32256391e+08 -2.38717402e+08
-2.32809361e+08 -2.38017073e+08 -2.42032409e+08 -2.33895904e+08
-2.32646789e+08 -2.32384095e+08 -2.24601647e+08 -1.21383827e+08
-2.39028236e+08 -2.01841091e+08 -2.37746632e+08 -2.38678252e+08
-2.32831298e+08 -2.37972890e+08 -2.38079657e+08 -2.26283139e+08
-2.41298586e+08 -2.34268455e+08 -2.32884586e+08]
[-1.65951441e+08 -1.84447308e+08 -1.84271504e+08 -1.70754707e+08
-1.84030885e+08 -1.65537883e+08 -1.70619978e+08 -1.84589964e+08
-1.71098053e+08 -1.84103757e+08 -1.76837858e+08 -1.71470610e+08
-1.70859509e+08 -1.70717756e+08 -1.66857631e+08 -9.21975744e+07
-1.84925854e+08 -1.53687622e+08 -1.83309548e+08 -1.84426923e+08
-1.71132170e+08 -1.84207243e+08 -1.84202753e+08 -1.65385457e+08
-1.75654695e+08 -1.71676800e+08 -1.71182623e+08]
[-8.63145174e+07 -1.02896152e+08 -1.02230000e+08 -8.88864739e+07
-1.02675505e+08 -8.58739929e+07 -8.86695992e+07 -1.02791126e+08
-8.90371829e+07 -1.02541725e+08 -8.98325719e+07 -8.85291563e+07
-8.87926980e+07 -8.87654302e+07 -8.72265290e+07 -4.88078960e+07
-1.03051676e+08 -8.34147353e+07 -1.01428808e+08 -1.02499394e+08
-8.90339017e+07 -1.02793439e+08 -1.02681835e+08 -8.57215695e+07
-8.84777078e+07 -8.87015150e+07 -8.90930903e+07]
[-5.08315002e+07 -5.65129759e+07 -5.60085516e+07 -5.19883442e+07
-5.64298452e+07 -5.04520025e+07 -5.17845097e+07 -5.64019605e+07
-5.20261758e+07 -5.62186310e+07 -5.03880151e+07 -5.09017347e+07
-5.18296187e+07 -5.18582411e+07 -4.89948305e+07 -2.44541412e+07
-5.65161498e+07 -4.61072407e+07 -5.54568460e+07 -5.61958963e+07
-5.19770354e+07 -5.64850954e+07 -5.63359606e+07 -5.02718064e+07
-4.92573367e+07 -5.12214344e+07 -5.20625550e+07]
[-4.79380993e+07 -4.31763678e+07 -4.31550197e+07 -4.84643256e+07
-4.32004554e+07 -4.77821714e+07 -4.83636697e+07 -4.32420848e+07
-4.85048664e+07 -4.30009972e+07 -4.72493213e+07 -4.72171053e+07
-4.83830221e+07 -4.84016605e+07 -4.38349616e+07 -1.80497376e+07
-4.32287740e+07 -3.77293418e+07 -4.28706986e+07 -4.31973140e+07
-4.84438876e+07 -4.32041688e+07 -4.30835763e+07 -4.76215186e+07
-4.65829779e+07 -4.75834266e+07 -4.85481264e+07]
[-4.87105666e+07 -3.84356699e+07 -3.86677580e+07 -4.95792333e+07
-3.83662960e+07 -4.86648004e+07 -4.95473967e+07 -3.85221297e+07
-4.95889923e+07 -3.83509824e+07 -4.90438788e+07 -4.85356684e+07
-4.95364114e+07 -4.95602477e+07 -4.37756582e+07 -1.91970030e+07
-3.84398223e+07 -3.46550934e+07 -3.85169074e+07 -3.85402145e+07
-4.95408369e+07 -3.83499898e+07 -3.82858613e+07 -4.84660542e+07
-4.88518273e+07 -4.88662561e+07 -4.96341021e+07]
[-2.72639780e+07 -2.04414595e+07 -2.05696217e+07 -2.77772042e+07
-2.03482925e+07 -2.72471311e+07 -2.77663949e+07 -2.04629528e+07
-2.77653526e+07 -2.04130201e+07 -2.74952884e+07 -2.72752645e+07
-2.77470419e+07 -2.77679368e+07 -2.42654334e+07 -1.13645412e+07
-2.04114837e+07 -1.85181486e+07 -2.04936503e+07 -2.04601152e+07
-2.77388127e+07 -2.03418406e+07 -2.03195417e+07 -2.71500517e+07
-2.74988653e+07 -2.74468019e+07 -2.77878726e+07]
[-3.57673340e+06 -2.54823476e+06 -2.55483896e+06 -3.58230770e+06
-2.53514760e+06 -3.58567186e+06 -3.57804363e+06 -2.54960402e+06
-3.57596421e+06 -2.54534863e+06 -3.51373373e+06 -3.50786622e+06
-3.57323786e+06 -3.57915306e+06 -3.05916421e+06 -1.46283668e+06
-2.54185319e+06 -2.31693781e+06 -2.54341077e+06 -2.54061082e+06
-3.57225896e+06 -2.53266074e+06 -2.53063205e+06 -3.57969210e+06
-3.52513625e+06 -3.52714655e+06 -3.57853056e+06]
[-3.66339151e+05 -2.63449336e+05 -2.61103304e+05 -3.63414468e+05
-2.60989366e+05 -3.65584273e+05 -3.62650189e+05 -2.62058985e+05
-3.62214404e+05 -2.62684072e+05 -3.38560432e+05 -3.48076834e+05
-3.62049158e+05 -3.62948930e+05 -2.85932897e+05 -1.72249566e+05
-2.61514321e+05 -2.17189167e+05 -2.59113906e+05 -2.59593282e+05
-3.61839638e+05 -2.60761881e+05 -2.60397038e+05 -3.64358043e+05
-3.40651930e+05 -3.51152188e+05 -3.62441303e+05]
[ 1.11810830e+03 4.62468519e+02 5.06946957e+02 1.37736301e+03
4.49040099e+02 1.09220445e+03 1.39626942e+03 4.61984470e+02
1.40626586e+03 4.62630761e+02 1.81075302e+03 1.50752256e+03
1.40558504e+03 1.39780454e+03 1.62727939e+03 -9.63627691e+00
4.59538148e+02 9.35829372e+02 5.17494926e+02 4.91815391e+02
1.40159468e+03 4.52275254e+02 4.49646994e+02 1.09520882e+03
1.78502288e+03 1.53505417e+03 1.40303489e+03]
[ 2.94585615e+06 2.17917588e+06 2.21374540e+06 3.03907874e+06
2.17002025e+06 2.94752151e+06 3.04505031e+06 2.18753356e+06
3.04395743e+06 2.17784985e+06 3.23344743e+06 3.06344446e+06
3.04220652e+06 3.04134588e+06 2.84116502e+06 9.44152249e+05
2.18314168e+06 2.13324563e+06 2.21498953e+06 2.20391944e+06
3.04221072e+06 2.17474600e+06 2.16982907e+06 2.93809283e+06
3.22350794e+06 3.07892650e+06 3.04804907e+06]
[ 1.01061928e+07 7.05568676e+06 7.14782321e+06 1.03688168e+07
7.02077964e+06 1.01086117e+07 1.03850102e+07 7.07854994e+06
1.03717023e+07 7.05228999e+06 1.05590289e+07 1.02653814e+07
1.03669959e+07 1.03714713e+07 9.19550801e+06 3.28795340e+06
7.05665741e+06 6.79606769e+06 7.14253540e+06 7.11485676e+06
1.03683908e+07 7.03095490e+06 7.01815389e+06 1.00720843e+07
1.05366455e+07 1.03311062e+07 1.03865655e+07]
[ 2.71165335e+07 1.78538257e+07 1.80575160e+07 2.76178082e+07
1.77752639e+07 2.71173877e+07 2.76579836e+07 1.79164512e+07
2.76118100e+07 1.78459788e+07 2.73193006e+07 2.70712802e+07
2.75981927e+07 2.76186113e+07 2.36752261e+07 8.28318936e+06
1.78522893e+07 1.72556557e+07 1.80329142e+07 1.79797573e+07
2.76025959e+07 1.77875748e+07 1.77625542e+07 2.70392199e+07
2.72528687e+07 2.72704002e+07 2.76531829e+07]
[ 4.99629672e+07 3.20532226e+07 3.24576064e+07 5.07105984e+07
3.19467966e+07 4.99661828e+07 5.07895866e+07 3.21985977e+07
5.07056132e+07 3.20435514e+07 5.01374026e+07 4.96100028e+07
5.06804259e+07 5.07201282e+07 4.31637424e+07 1.41698334e+07
3.20688596e+07 3.13464258e+07 3.24342548e+07 3.23167551e+07
5.06879498e+07 3.19639461e+07 3.19094412e+07 4.98249188e+07
5.00183375e+07 5.00004745e+07 5.07868510e+07]
[ 7.67599945e+07 4.97609366e+07 5.06592369e+07 7.74983982e+07
4.97886919e+07 7.68653948e+07 7.76602178e+07 5.01684100e+07
7.75683377e+07 4.97651714e+07 7.78352215e+07 7.62041252e+07
7.75400260e+07 7.75586772e+07 6.69765869e+07 1.96592743e+07
4.99304705e+07 4.98075414e+07 5.07201594e+07 5.04710678e+07
7.75480761e+07 4.97915258e+07 4.97011643e+07 7.66653770e+07
7.76404996e+07 7.67494495e+07 7.77120295e+07]
[ 1.10413288e+08 7.21823949e+07 7.38903402e+07 1.11788078e+08
7.23583491e+07 1.10606733e+08 1.12090319e+08 7.29452447e+07
1.12005095e+08 7.22138117e+07 1.14657754e+08 1.10679264e+08
1.11991958e+08 1.11948359e+08 9.88355725e+07 2.64173880e+07
7.25574029e+07 7.37186080e+07 7.41266807e+07 7.36112163e+07
1.11984430e+08 7.23598029e+07 7.22290081e+07 1.10275258e+08
1.14399746e+08 1.11389574e+08 1.12229557e+08]
[ 1.37293075e+08 9.41624963e+07 9.70014425e+07 1.38561844e+08
9.48368395e+07 1.37824968e+08 1.39077583e+08 9.55618321e+07
1.39063378e+08 9.42398793e+07 1.45539881e+08 1.38403367e+08
1.39091890e+08 1.38909195e+08 1.26732831e+08 3.01734927e+07
9.50246485e+07 9.76954353e+07 9.75657489e+07 9.67559510e+07
1.39075164e+08 9.47857683e+07 9.46396718e+07 1.37475350e+08
1.45258849e+08 1.39064941e+08 1.39404072e+08]
[ 1.28860655e+08 9.25635621e+07 9.64760054e+07 1.29119890e+08
9.40285833e+07 1.29767860e+08 1.29866592e+08 9.46519647e+07
1.30009796e+08 9.26766094e+07 1.40498721e+08 1.30763181e+08
1.30118451e+08 1.29716324e+08 1.23596462e+08 2.00368149e+07
9.40420865e+07 9.97862144e+07 9.74982071e+07 9.64348741e+07
1.30073427e+08 9.38722331e+07 9.37363662e+07 1.29534784e+08
1.40179762e+08 1.31174161e+08 1.30449719e+08]
[ 1.04571231e+08 7.89298125e+07 8.41007738e+07 1.05802934e+08
8.10801559e+07 1.05567674e+08 1.06743864e+08 8.16397708e+07
1.07095387e+08 7.90884509e+07 1.23536522e+08 1.09903446e+08
1.07320732e+08 1.06663625e+08 1.09641087e+08 3.67885934e+06
8.09216933e+07 9.16644708e+07 8.56664781e+07 8.42032431e+07
1.07228638e+08 8.08572258e+07 8.07350388e+07 1.05287379e+08
1.23193306e+08 1.09871030e+08 1.07600932e+08]
[ 1.00000883e+08 6.96732565e+07 7.56030517e+07 1.01460083e+08
7.20857864e+07 1.01044379e+08 1.02504749e+08 7.27453397e+07
1.02912070e+08 6.99188814e+07 1.22341182e+08 1.06257968e+08
1.03212458e+08 1.02455643e+08 1.06049262e+08 -5.89023764e+06
7.18541495e+07 8.70046887e+07 7.74915149e+07 7.57122706e+07
1.03085546e+08 7.18202126e+07 7.17533079e+07 1.00682538e+08
1.22204874e+08 1.06055203e+08 1.03441080e+08]
[ 1.76544601e+08 1.08813165e+08 1.14959278e+08 1.79056724e+08
1.10645710e+08 1.77720853e+08 1.80183083e+08 1.11877023e+08
1.80370964e+08 1.09116092e+08 1.96643773e+08 1.81128704e+08
1.80632018e+08 1.80005970e+08 1.67402411e+08 1.60916349e+07
1.10755319e+08 1.25854049e+08 1.16728159e+08 1.14789599e+08
1.80521008e+08 1.10408559e+08 1.10443981e+08 1.77321066e+08
1.96779337e+08 1.81603350e+08 1.80921685e+08]
[ 2.89960065e+08 1.76879513e+08 1.82368142e+08 2.96717972e+08
1.77131207e+08 2.90686225e+08 2.97747428e+08 1.79195336e+08
2.97584056e+08 1.77163681e+08 3.09289017e+08 2.95473988e+08
2.97717106e+08 2.97407090e+08 2.63853310e+08 6.28336305e+07
1.77967397e+08 1.88118063e+08 1.83484148e+08 1.81586968e+08
2.97643076e+08 1.77085106e+08 1.77191939e+08 2.90114531e+08
3.09614667e+08 2.97024466e+08 2.98081324e+08]
[ 3.94038734e+08 2.53792761e+08 2.58110937e+08 4.05643266e+08
2.52358420e+08 3.94030964e+08 4.06448964e+08 2.55117599e+08
4.05916689e+08 2.54053745e+08 4.13532628e+08 4.01800644e+08
4.05838687e+08 4.05906945e+08 3.55328028e+08 1.17008122e+08
2.54051372e+08 2.53095339e+08 2.58306017e+08 2.56735525e+08
4.05913722e+08 2.52574194e+08 2.52771212e+08 3.93288497e+08
4.14041617e+08 4.04116278e+08 4.06350738e+08]
[ 3.64792283e+08 2.42236148e+08 2.44254254e+08 3.77681137e+08
2.39487874e+08 3.64212454e+08 3.77993587e+08 2.42139144e+08
3.77224625e+08 2.42482241e+08 3.80315518e+08 3.73843913e+08
3.76939943e+08 3.77365651e+08 3.28015302e+08 1.30420544e+08
2.41618886e+08 2.32253018e+08 2.43513291e+08 2.42629824e+08
3.77155805e+08 2.39955204e+08 2.40211756e+08 3.63633255e+08
3.81087770e+08 3.76022280e+08 3.77460054e+08]
[ 2.10610105e+08 1.23418877e+08 1.22685568e+08 2.19641771e+08
1.20229097e+08 2.09701196e+08 2.19421710e+08 1.21971066e+08
2.18476412e+08 1.23601532e+08 2.12581456e+08 2.15063990e+08
2.18089191e+08 2.18843888e+08 1.79831839e+08 8.59660922e+07
1.21867064e+08 1.14838463e+08 1.21367821e+08 1.21232397e+08
2.18344326e+08 1.20716276e+08 1.20940506e+08 2.09313166e+08
2.13470367e+08 2.16634161e+08 2.18487185e+08]
[-4.90074809e+07 -9.27831143e+07 -9.56036286e+07 -4.88884732e+07
-9.51619915e+07 -4.97167166e+07 -4.94886644e+07 -9.49664982e+07
-5.04792385e+07 -9.26543700e+07 -6.50516841e+07 -5.37321139e+07
-5.08270877e+07 -4.98867099e+07 -6.77694776e+07 -2.01551718e+07
-9.49408877e+07 -8.29334403e+07 -9.66666068e+07 -9.64423647e+07
-5.06432506e+07 -9.49148854e+07 -9.48455957e+07 -4.98737201e+07
-6.42869834e+07 -5.32012414e+07 -5.06512149e+07]
[-2.38560672e+08 -2.49565264e+08 -2.52816958e+08 -2.45969879e+08
-2.50452354e+08 -2.38927877e+08 -2.46626602e+08 -2.51547652e+08
-2.47412220e+08 -2.49503671e+08 -2.66352584e+08 -2.50540907e+08
-2.47613264e+08 -2.46790784e+08 -2.46937211e+08 -1.08729186e+08
-2.51565295e+08 -2.22829718e+08 -2.53170890e+08 -2.52981841e+08
-2.47583398e+08 -2.50511688e+08 -2.50658044e+08 -2.38985930e+08
-2.65951283e+08 -2.50776303e+08 -2.47622099e+08]
[-3.02497223e+08 -3.03205910e+08 -3.05353173e+08 -3.11618264e+08
-3.02890075e+08 -3.02542941e+08 -3.12066375e+08 -3.04457583e+08
-3.12576949e+08 -3.03146689e+08 -3.29184731e+08 -3.15163016e+08
-3.12604407e+08 -3.12060888e+08 -3.02396541e+08 -1.48469289e+08
-3.04653072e+08 -2.65409789e+08 -3.04895015e+08 -3.05224914e+08
-3.12745238e+08 -3.03133969e+08 -3.03420771e+08 -3.02668029e+08
-3.28961831e+08 -3.15653079e+08 -3.12753554e+08]
[-2.22831509e+08 -2.33906970e+08 -2.34217968e+08 -2.29193230e+08
-2.33197193e+08 -2.22561658e+08 -2.29284998e+08 -2.34298668e+08
-2.29576554e+08 -2.33758802e+08 -2.37745775e+08 -2.30513378e+08
-2.29456472e+08 -2.29224190e+08 -2.20597333e+08 -1.19843202e+08
-2.34647369e+08 -1.97529931e+08 -2.33290942e+08 -2.34280408e+08
-2.29732882e+08 -2.33459611e+08 -2.33715467e+08 -2.22651485e+08
-2.37206123e+08 -2.30803727e+08 -2.29686577e+08]
[-6.02696029e+07 -9.35608604e+07 -9.23630892e+07 -6.30299386e+07
-9.30504270e+07 -5.98305486e+07 -6.27992621e+07 -9.32185096e+07
-6.30730925e+07 -9.33235522e+07 -6.54868802e+07 -6.37755320e+07
-6.28662406e+07 -6.28308471e+07 -6.68607864e+07 -4.89808193e+07
-9.36831767e+07 -7.08444765e+07 -9.14764149e+07 -9.27559479e+07
-6.31706962e+07 -9.32596756e+07 -9.33324459e+07 -5.98723879e+07
-6.44755911e+07 -6.35218948e+07 -6.30653551e+07]
[ 5.64939643e+07 2.07345433e+07 2.27409770e+07 5.74327093e+07
2.09444368e+07 5.68787553e+07 5.78077766e+07 2.14576154e+07
5.76007386e+07 2.09872210e+07 6.05451729e+07 5.76077846e+07
5.78375444e+07 5.77322564e+07 4.78068354e+07 1.13932267e+07
2.10250748e+07 2.79695784e+07 2.34053816e+07 2.21625200e+07
5.76057841e+07 2.08231257e+07 2.08969042e+07 5.67499042e+07
6.17794520e+07 5.80500412e+07 5.77087042e+07]
[ 8.55645387e+07 5.91179522e+07 6.08261792e+07 8.76972753e+07
5.91119478e+07 8.58856466e+07 8.80673396e+07 5.97529730e+07
8.79153116e+07 5.93195235e+07 9.20793646e+07 8.82967468e+07
8.81050496e+07 8.79740721e+07 7.87468704e+07 3.28959573e+07
5.94819824e+07 5.82622812e+07 6.12275944e+07 6.03278975e+07
8.79741566e+07 5.90599980e+07 5.91900788e+07 8.58088376e+07
9.30960009e+07 8.85943132e+07 8.80453352e+07]
[ 5.46774193e+07 4.11559232e+07 4.20073656e+07 5.62959873e+07
4.10180028e+07 5.48335751e+07 5.65077630e+07 4.14425714e+07
5.63911015e+07 4.12685960e+07 5.89502896e+07 5.68269850e+07
5.65017608e+07 5.64371148e+07 5.09582291e+07 2.43955827e+07
4.13216885e+07 3.86898596e+07 4.21567697e+07 4.17099337e+07
5.64477993e+07 4.10110941e+07 4.11133273e+07 5.48073737e+07
5.95553995e+07 5.69475205e+07 5.64752175e+07]
[-1.56270626e+06 -2.87419595e+06 -2.84529888e+06 -1.58406232e+06
-2.94495418e+06 -1.52238486e+06 -1.54196114e+06 -2.89546946e+06
-1.58830083e+06 -2.83072184e+06 -1.56360069e+06 -1.38161282e+06
-1.55765574e+06 -1.56200000e+06 -1.92660729e+06 5.15442094e+05
-2.89321910e+06 -2.46513610e+06 -2.80744942e+06 -2.89019725e+06
-1.57681473e+06 -2.94139033e+06 -2.89872570e+06 -1.46244548e+06
-1.35889464e+06 -1.38124045e+06 -1.59108569e+06]
[-1.11316068e+07 -9.50858012e+06 -9.66531146e+06 -1.13932489e+07
-9.54112778e+06 -1.11373840e+07 -1.14069960e+07 -9.58961782e+06
-1.14221760e+07 -9.50381579e+06 -1.19462040e+07 -1.14148098e+07
-1.14181624e+07 -1.14068891e+07 -1.07515451e+07 -4.03084857e+06
-9.56267482e+06 -8.92297875e+06 -9.67247980e+06 -9.64346431e+06
-1.14219976e+07 -9.53711937e+06 -9.52846824e+06 -1.11061615e+07
-1.19242610e+07 -1.14320963e+07 -1.14385776e+07]
[-1.91644527e+06 -1.63299333e+06 -1.65015546e+06 -1.94089184e+06
-1.63538381e+06 -1.91679088e+06 -1.94219869e+06 -1.64324717e+06
-1.94309497e+06 -1.63177401e+06 -1.99264191e+06 -1.92484105e+06
-1.94266650e+06 -1.94250450e+06 -1.76881083e+06 -7.50482584e+05
-1.63903895e+06 -1.47035137e+06 -1.64901697e+06 -1.64638296e+06
-1.94332741e+06 -1.63414842e+06 -1.63337282e+06 -1.90973597e+06
-1.99351123e+06 -1.92756581e+06 -1.94603406e+06]
[-9.08009136e+04 -6.61782398e+04 -6.54761349e+04 -9.16825212e+04
-6.54556893e+04 -9.01126273e+04 -9.14459059e+04 -6.56927293e+04
-9.14559741e+04 -6.58969943e+04 -8.39253105e+04 -8.65722312e+04
-9.14249601e+04 -9.16258448e+04 -7.00356852e+04 -4.28577448e+04
-6.55721288e+04 -5.19485669e+04 -6.49953035e+04 -6.51003603e+04
-9.14059547e+04 -6.54468460e+04 -6.52966549e+04 -8.94869145e+04
-8.44242894e+04 -8.76681466e+04 -9.15154936e+04]
[ 1.43196431e+05 5.91686153e+04 6.47825211e+04 1.76268897e+05
5.74562621e+04 1.39843422e+05 1.78815681e+05 5.91315774e+04
1.79963790e+05 5.90965281e+04 2.31708921e+05 1.93043997e+05
1.79981362e+05 1.78801100e+05 2.08225892e+05 -1.15569702e+03
5.87687410e+04 1.19701653e+05 6.62560737e+04 6.30783114e+04
1.79360795e+05 5.80015721e+04 5.76225791e+04 1.40290447e+05
2.28388591e+05 1.96401483e+05 1.79656755e+05]
[ 1.44416526e+06 1.02080574e+06 1.03782030e+06 1.49082178e+06
1.01664120e+06 1.44403747e+06 1.49592256e+06 1.02501227e+06
1.49593265e+06 1.02025608e+06 1.58378814e+06 1.50504774e+06
1.49510267e+06 1.49424686e+06 1.40566983e+06 4.38386745e+05
1.02256119e+06 1.04069514e+06 1.03864054e+06 1.03298223e+06
1.49449535e+06 1.01816073e+06 1.01631049e+06 1.44230937e+06
1.57785097e+06 1.51471854e+06 1.49761114e+06]
[ 9.72092739e+06 6.79020778e+06 6.86583663e+06 9.88846236e+06
6.76615373e+06 9.72700416e+06 9.90351709e+06 6.81702827e+06
9.89156367e+06 6.78704051e+06 9.88655715e+06 9.72860610e+06
9.88671260e+06 9.89213411e+06 8.60979980e+06 3.15700424e+06
6.79580240e+06 6.45771933e+06 6.85824303e+06 6.83967207e+06
9.88995188e+06 6.77133427e+06 6.76214904e+06 9.70265630e+06
9.86987220e+06 9.79589677e+06 9.90639663e+06]
[ 2.58605580e+07 1.78668223e+07 1.80624146e+07 2.61216358e+07
1.78358008e+07 2.58861815e+07 2.61635743e+07 1.79600465e+07
2.61233385e+07 1.78632570e+07 2.57887244e+07 2.55600427e+07
2.61091663e+07 2.61277253e+07 2.24770026e+07 8.08535626e+06
1.78999029e+07 1.70362913e+07 1.80418025e+07 1.80060473e+07
2.61203140e+07 1.78373220e+07 1.78210019e+07 2.58443166e+07
2.57508820e+07 2.57202833e+07 2.61652445e+07]
[ 4.04214784e+07 2.73280359e+07 2.77045383e+07 4.07423831e+07
2.73248559e+07 4.04704935e+07 4.08120235e+07 2.75128356e+07
4.07566523e+07 2.73232210e+07 4.04090313e+07 3.98751896e+07
4.07356572e+07 4.07610911e+07 3.50311316e+07 1.16187571e+07
2.74047289e+07 2.64428766e+07 2.77037741e+07 2.76153316e+07
4.07504173e+07 2.73236899e+07 2.72840399e+07 4.03812996e+07
4.03357625e+07 4.01453375e+07 4.08304130e+07]
[ 5.26203708e+07 3.57007488e+07 3.66368363e+07 5.28888881e+07
3.59335188e+07 5.27925407e+07 5.30492813e+07 3.61857604e+07
5.30345601e+07 3.57149423e+07 5.44517541e+07 5.24407677e+07
5.30314731e+07 5.29880208e+07 4.70935503e+07 1.17016663e+07
3.59903052e+07 3.62609398e+07 3.67933906e+07 3.65473434e+07
5.30338211e+07 3.59140300e+07 3.58466203e+07 5.26621467e+07
5.43329062e+07 5.27299862e+07 5.31609181e+07]
[ 8.38068925e+07 6.06387814e+07 6.26608778e+07 8.43675941e+07
6.12790060e+07 8.42160883e+07 8.47138524e+07 6.17061886e+07
8.47724909e+07 6.07023687e+07 8.99000618e+07 8.47434514e+07
8.48056363e+07 8.46258053e+07 7.85507757e+07 1.71400045e+07
6.13695565e+07 6.27062784e+07 6.31050364e+07 6.25739752e+07
8.47938774e+07 6.12250320e+07 6.11495367e+07 8.40117469e+07
8.97457160e+07 8.50467705e+07 8.49939564e+07]
[ 8.95284431e+07 7.38770244e+07 7.74526384e+07 8.99685305e+07
7.54858775e+07 9.02941614e+07 9.06016595e+07 7.59124591e+07
9.09044309e+07 7.40069535e+07 1.02908327e+08 9.27204189e+07
9.10253050e+07 9.05496382e+07 9.18863387e+07 1.03955148e+07
7.54496026e+07 7.95676296e+07 7.84600938e+07 7.75787473e+07
9.10045409e+07 7.53394274e+07 7.52605238e+07 9.01594456e+07
1.02666885e+08 9.27039003e+07 9.12531941e+07]
[ 6.87636541e+07 6.45948254e+07 6.96119932e+07 6.92615414e+07
6.71706160e+07 6.97968140e+07 7.01673694e+07 6.74631867e+07
7.07382449e+07 6.47784713e+07 8.86230538e+07 7.45748202e+07
7.09721154e+07 7.01779533e+07 8.07167811e+07 -7.18976837e+06
6.69073389e+07 7.58413184e+07 7.12404946e+07 7.00006854e+07
7.09086777e+07 6.69292445e+07 6.68436206e+07 6.96529461e+07
8.82216354e+07 7.41608869e+07 7.11887806e+07]
[ 3.36216207e+07 3.70502415e+07 4.30496632e+07 3.44313350e+07
4.01899342e+07 3.47390364e+07 3.54722147e+07 4.04251188e+07
3.61968231e+07 3.73112689e+07 5.85939549e+07 4.14833888e+07
3.65372031e+07 3.55531365e+07 5.34763013e+07 -2.96999614e+07
3.97268416e+07 5.48083667e+07 4.51779979e+07 4.36011054e+07
3.64438207e+07 3.98842877e+07 3.98461450e+07 3.45269254e+07
5.82727842e+07 4.06517066e+07 3.66855603e+07]
[ 9.66266079e+06 -8.35075691e+06 -3.18316308e+06 9.07773480e+06
-5.84122372e+06 1.07629701e+07 1.00229304e+07 -5.51473165e+06
1.04557083e+07 -7.99503203e+06 2.73456423e+07 1.38603375e+07
1.08026621e+07 1.00461719e+07 1.98405288e+07 -4.45049496e+07
-6.34917428e+06 1.59165171e+07 -1.12885657e+06 -2.78009428e+06
1.06662155e+07 -6.17913701e+06 -6.07831934e+06 1.06020284e+07
2.75890852e+07 1.31773682e+07 1.08508311e+07]
[ 2.70529276e+07 -4.02477518e+07 -3.72633474e+07 2.70093878e+07
-3.98040851e+07 2.79058326e+07 2.76589947e+07 -3.90140036e+07
2.73841984e+07 -3.98602455e+07 3.20794253e+07 2.64314681e+07
2.76181447e+07 2.74674087e+07 1.57359210e+07 -3.64089719e+07
-3.99738606e+07 -1.20692916e+07 -3.59663164e+07 -3.74892799e+07
2.74450040e+07 -4.00319431e+07 -3.97720945e+07 2.77368282e+07
3.30006704e+07 2.66341851e+07 2.75848599e+07]
[ 6.38692874e+07 -4.71570504e+07 -4.70690202e+07 6.68760204e+07
-4.93344896e+07 6.38511244e+07 6.70050480e+07 -4.80452403e+07
6.59891734e+07 -4.68392851e+07 5.63408224e+07 6.00903210e+07
6.60338120e+07 6.66326453e+07 3.07863588e+07 -7.11828080e+06
-4.89788154e+07 -2.40796037e+07 -4.69842432e+07 -4.81393439e+07
6.59020735e+07 -4.93618575e+07 -4.89985787e+07 6.33019638e+07
5.79028372e+07 6.13900452e+07 6.59919244e+07]
[ 8.80438077e+07 -2.91372624e+07 -3.13871892e+07 9.43746765e+07
-3.31782322e+07 8.72296529e+07 9.40314299e+07 -3.16352408e+07
9.25946157e+07 -2.88587266e+07 7.57441901e+07 8.52679315e+07
9.23958607e+07 9.34999961e+07 4.79484453e+07 2.55623072e+07
-3.21949789e+07 -1.71838667e+07 -3.24237243e+07 -3.30105697e+07
9.24120060e+07 -3.29358126e+07 -3.24960886e+07 8.65544201e+07
7.77089999e+07 8.69875593e+07 9.24321738e+07]
[ 4.20930755e+07 -4.37286720e+07 -4.82119570e+07 4.87601086e+07
-4.86460514e+07 4.08168470e+07 4.78944029e+07 -4.74447719e+07
4.63939898e+07 -4.35053355e+07 2.51808929e+07 3.98482436e+07
4.59626279e+07 4.73464837e+07 6.77429091e+06 3.40839902e+07
-4.73970687e+07 -4.35481439e+07 -5.01605143e+07 -4.99130382e+07
4.61322742e+07 -4.82147093e+07 -4.77344429e+07 4.03879825e+07
2.72606387e+07 4.13192063e+07 4.60230742e+07]
[-1.02159470e+08 -1.46945155e+08 -1.53034219e+08 -9.98070940e+07
-1.51513038e+08 -1.03527865e+08 -1.01032765e+08 -1.51276699e+08
-1.02444229e+08 -1.46808775e+08 -1.28156271e+08 -1.08165759e+08
-1.02934874e+08 -1.01443731e+08 -1.27359637e+08 -1.30672056e+07
-1.50901936e+08 -1.44114968e+08 -1.55174672e+08 -1.54370901e+08
-1.02731360e+08 -1.51134886e+08 -1.50749572e+08 -1.03774210e+08
-1.26238102e+08 -1.07446251e+08 -1.02966285e+08]
[-3.00713618e+08 -3.11186803e+08 -3.17789506e+08 -3.07079568e+08
-3.14155262e+08 -3.01667771e+08 -3.08399535e+08 -3.15302148e+08
-3.09563969e+08 -3.11174446e+08 -3.39602039e+08 -3.14996508e+08
-3.09949251e+08 -3.08563703e+08 -3.15260833e+08 -1.06497271e+08
-3.14986009e+08 -2.90260712e+08 -3.19238121e+08 -3.18390009e+08
-3.09878762e+08 -3.14081191e+08 -3.13977018e+08 -3.01712057e+08
-3.38236657e+08 -3.15023525e+08 -3.10125938e+08]
[-4.06895023e+08 -3.98651688e+08 -4.03796835e+08 -4.18362644e+08
-3.99540262e+08 -4.07394698e+08 -4.19462494e+08 -4.01609950e+08
-4.20177639e+08 -3.98729359e+08 -4.47829925e+08 -4.24930624e+08
-4.20388364e+08 -4.19361335e+08 -4.10904341e+08 -1.74037288e+08
-4.01577806e+08 -3.60957259e+08 -4.04133179e+08 -4.03780429e+08
-4.20496283e+08 -3.99769903e+08 -4.00007010e+08 -4.07643780e+08
-4.47248653e+08 -4.25436629e+08 -4.20620821e+08]
[-3.26691724e+08 -3.27299852e+08 -3.29389255e+08 -3.36916776e+08
-3.26656231e+08 -3.26572919e+08 -3.37505865e+08 -3.28481088e+08
-3.37756024e+08 -3.27346719e+08 -3.54351910e+08 -3.40880356e+08
-3.37808062e+08 -3.37282706e+08 -3.25854076e+08 -1.62763199e+08
-3.28801486e+08 -2.85738052e+08 -3.28772509e+08 -3.29230257e+08
-3.38050557e+08 -3.27012943e+08 -3.27430198e+08 -3.26885428e+08
-3.54256230e+08 -3.41285200e+08 -3.37991211e+08]
[-1.58423785e+08 -1.74862089e+08 -1.74001876e+08 -1.63948663e+08
-1.73612777e+08 -1.57941398e+08 -1.63981878e+08 -1.74534402e+08
-1.63907147e+08 -1.74792561e+08 -1.67376779e+08 -1.64571273e+08
-1.63824348e+08 -1.63777712e+08 -1.56512924e+08 -9.99579781e+07
-1.75022657e+08 -1.41524305e+08 -1.72887102e+08 -1.74034487e+08
-1.64119009e+08 -1.73934931e+08 -1.74280804e+08 -1.58181627e+08
-1.67223052e+08 -1.64679052e+08 -1.63956538e+08]
[ 6.97465546e+07 2.53377214e+07 2.82587785e+07 7.00414085e+07
2.62834334e+07 7.03160318e+07 7.04867511e+07 2.66512152e+07
7.05332925e+07 2.54925482e+07 7.42963718e+07 7.00666104e+07
7.07136557e+07 7.05016720e+07 6.04018651e+07 7.22156277e+05
2.60311315e+07 3.82802045e+07 2.92523482e+07 2.78021959e+07
7.04633368e+07 2.60544012e+07 2.59504506e+07 7.00654076e+07
7.48747349e+07 7.06544178e+07 7.07072876e+07]
[ 1.99482098e+08 1.48221979e+08 1.52005095e+08 2.03664113e+08
1.48764067e+08 2.00022405e+08 2.04317645e+08 1.49919364e+08
2.04328398e+08 1.48414116e+08 2.12756815e+08 2.04146829e+08
2.04548377e+08 2.04210255e+08 1.85844153e+08 6.63010557e+07
1.49316883e+08 1.44657901e+08 1.52760627e+08 1.51330331e+08
2.04386991e+08 1.48646880e+08 1.48715438e+08 1.99714845e+08
2.13603975e+08 2.04983035e+08 2.04634980e+08]
[ 1.92306526e+08 1.51556365e+08 1.54647227e+08 1.96969568e+08
1.51736774e+08 1.92721972e+08 1.97543867e+08 1.52906304e+08
1.97509542e+08 1.51730217e+08 2.05579969e+08 1.97654445e+08
1.97698670e+08 1.97413228e+08 1.80930564e+08 7.38253991e+07
1.52457666e+08 1.43302844e+08 1.55091455e+08 1.54015336e+08
1.97617952e+08 1.51686147e+08 1.51826242e+08 1.92473989e+08
2.06455114e+08 1.98324432e+08 1.97791305e+08]
[ 1.17083748e+08 9.21855540e+07 9.38294177e+07 1.19875359e+08
9.21436676e+07 1.17355406e+08 1.20213028e+08 9.28689100e+07
1.20147090e+08 9.22876963e+07 1.24435516e+08 1.20139048e+08
1.20251762e+08 1.20104977e+08 1.09374547e+08 4.71463098e+07
9.26423101e+07 8.62217534e+07 9.40070789e+07 9.34380808e+07
1.20211338e+08 9.21272687e+07 9.22338673e+07 1.17245628e+08
1.24960652e+08 1.20561161e+08 1.20314031e+08]
[ 2.65867703e+07 1.84778125e+07 1.88137756e+07 2.72766595e+07
1.83708253e+07 2.66504486e+07 2.73518829e+07 1.85683227e+07
2.72999771e+07 1.85119249e+07 2.77307438e+07 2.70869991e+07
2.73219422e+07 2.73134915e+07 2.38222185e+07 1.12565536e+07
1.85053234e+07 1.74215930e+07 1.88379830e+07 1.86750589e+07
2.73034543e+07 1.83694129e+07 1.84092937e+07 2.66058973e+07
2.79400643e+07 2.72514616e+07 2.73282292e+07]
[-4.71408628e+06 -5.17653224e+06 -5.29825450e+06 -4.80717461e+06
-5.24279139e+06 -4.72570236e+06 -4.82212595e+06 -5.25873642e+06
-4.84060601e+06 -5.17834173e+06 -5.52357135e+06 -5.00441728e+06
-4.84194367e+06 -4.82438355e+06 -5.20138234e+06 -1.43538173e+06
-5.24761664e+06 -4.93881252e+06 -5.32397705e+06 -5.30879771e+06
-4.84887991e+06 -5.23889140e+06 -5.23505308e+06 -4.72319600e+06
-5.49202225e+06 -4.95833647e+06 -4.85323019e+06]
[-1.57096265e+06 -1.65512324e+06 -1.69528502e+06 -1.67625943e+06
-1.66637481e+06 -1.56846241e+06 -1.67867446e+06 -1.67449104e+06
-1.68438399e+06 -1.65455955e+06 -1.89582558e+06 -1.70596463e+06
-1.68402501e+06 -1.68088333e+06 -1.76382258e+06 -6.27983890e+05
-1.66853945e+06 -1.54515326e+06 -1.70191851e+06 -1.69083587e+06
-1.68673230e+06 -1.66540148e+06 -1.66373204e+06 -1.55311793e+06
-1.89089610e+06 -1.69543489e+06 -1.68784804e+06]
[-5.32730389e+04 -5.20398815e+04 -5.29568842e+04 -5.36302791e+04
-5.26423097e+04 -5.35649487e+04 -5.38529304e+04 -5.27300892e+04
-5.40480279e+04 -5.19676874e+04 -5.48943358e+04 -5.38308255e+04
-5.40699103e+04 -5.38046826e+04 -5.12192651e+04 -1.44790868e+04
-5.27559535e+04 -4.74725881e+04 -5.31059527e+04 -5.32281366e+04
-5.41258998e+04 -5.26468463e+04 -5.26072513e+04 -5.37340567e+04
-5.42283978e+04 -5.40707408e+04 -5.41820833e+04]
[-8.51964881e-01 -6.22629243e-01 -3.71896817e-01 -3.31219471e-01
-6.93901064e-02 -8.09482512e-01 -3.11545028e-01 -8.53684097e-01
-3.53171755e-01 3.23001374e-01 -9.94157768e-01 -4.31272898e-01
-8.54307100e-01 4.21524060e-01 6.82535882e-01 9.56661084e-01
2.34335368e-01 -5.50200153e-01 -5.43377796e-01 -1.29464785e-02
8.62693060e-01 2.56112116e-01 -6.37199883e-01 3.20186331e-02
-1.81754632e-01 7.38136888e-01 -7.91168800e-01]
[ 5.84087487e+05 3.83342859e+05 3.97066600e+05 6.22145909e+05
3.81921934e+05 5.79048840e+05 6.24774428e+05 3.86225801e+05
6.27096630e+05 3.83185384e+05 7.16190317e+05 6.46860530e+05
6.26740293e+05 6.24726357e+05 6.54569825e+05 1.14723674e+05
3.84663230e+05 4.65042841e+05 3.99919679e+05 3.93978807e+05
6.25875621e+05 3.82421999e+05 3.81664303e+05 5.80076442e+05
7.10774121e+05 6.54242109e+05 6.27119972e+05]
[ 6.57517741e+06 4.82217288e+06 4.87516350e+06 6.64331504e+06
4.81949361e+06 6.57255715e+06 6.65367401e+06 4.85055292e+06
6.64906979e+06 4.82110354e+06 6.63080482e+06 6.52946533e+06
6.64647143e+06 6.64776883e+06 5.79594429e+06 2.14925178e+06
4.83662231e+06 4.51781590e+06 4.87185423e+06 4.86223030e+06
6.64954648e+06 4.81886747e+06 4.81602468e+06 6.56604069e+06
6.62028349e+06 6.57588901e+06 6.65893110e+06]
[ 1.40723633e+07 9.58094306e+06 9.71743672e+06 1.40577503e+07
9.59755415e+06 1.40968065e+07 1.40891125e+07 9.66105658e+06
1.40703706e+07 9.58306395e+06 1.40005132e+07 1.37835723e+07
1.40623072e+07 1.40659799e+07 1.21750644e+07 3.86065773e+06
9.62554442e+06 9.37901494e+06 9.71909517e+06 9.69654300e+06
1.40675649e+07 9.59192599e+06 9.58582641e+06 1.40970035e+07
1.39706412e+07 1.38685054e+07 1.40939067e+07]
[ 2.12768438e+07 1.44638043e+07 1.47720225e+07 2.11546288e+07
1.45678406e+07 2.13327482e+07 2.12077182e+07 1.46512791e+07
2.12021732e+07 1.44654309e+07 2.12523768e+07 2.07902932e+07
2.11941338e+07 2.11869573e+07 1.83778817e+07 4.76180595e+06
1.45818325e+07 1.43506832e+07 1.48158446e+07 1.47507046e+07
2.12044428e+07 1.45501717e+07 1.45286735e+07 2.13098130e+07
2.12040472e+07 2.09236400e+07 2.12541523e+07]
[ 3.75285270e+07 2.68651743e+07 2.79190245e+07 3.73148332e+07
2.73018638e+07 3.77829010e+07 3.74935878e+07 2.74733191e+07
3.75439960e+07 2.69052439e+07 3.98095087e+07 3.74981341e+07
3.75650679e+07 3.74576032e+07 3.46709969e+07 5.76499106e+06
2.73021622e+07 2.83397718e+07 2.81787801e+07 2.79138845e+07
3.75575954e+07 2.72497575e+07 2.72216441e+07 3.77377368e+07
3.97644980e+07 3.76188027e+07 3.76571905e+07]
[ 6.03918664e+07 5.10896388e+07 5.35255083e+07 6.00194880e+07
5.22730818e+07 6.10429434e+07 6.04349348e+07 5.25411776e+07
6.06515188e+07 5.11946766e+07 6.83294654e+07 6.18310065e+07
6.07367115e+07 6.03972556e+07 6.10591783e+07 7.06998814e+06
5.22464935e+07 5.42944995e+07 5.42208494e+07 5.36608683e+07
6.07199141e+07 5.21567564e+07 5.21340827e+07 6.09783459e+07
6.82217658e+07 6.17542461e+07 6.08823879e+07]
[ 5.45109078e+07 5.91246439e+07 6.35779318e+07 5.48981217e+07
6.15860628e+07 5.54434663e+07 5.56672244e+07 6.17926724e+07
5.62840137e+07 5.93090927e+07 7.34140388e+07 6.01441774e+07
5.65053311e+07 5.57245279e+07 6.79647550e+07 -7.83627727e+06
6.13587316e+07 6.78747091e+07 6.50572067e+07 6.40295780e+07
5.64552407e+07 6.13756853e+07 6.13190984e+07 5.53856993e+07
7.30832090e+07 5.96428860e+07 5.66505299e+07]
[ 1.37584918e+07 3.34541826e+07 3.92071702e+07 1.29877176e+07
3.70646307e+07 1.50227443e+07 1.40019469e+07 3.70203985e+07
1.48815597e+07 3.37236275e+07 3.61838121e+07 2.03413138e+07
1.52090117e+07 1.41241285e+07 3.63285417e+07 -3.49391031e+07
3.64782419e+07 4.87697891e+07 4.13245522e+07 4.00632684e+07
1.51470672e+07 3.67186617e+07 3.66984206e+07 1.50318339e+07
3.57085763e+07 1.93289605e+07 1.53482418e+07]
[-5.87330725e+07 -3.96752767e+07 -3.41012334e+07 -6.08549416e+07
-3.60251102e+07 -5.74199131e+07 -5.98670729e+07 -3.62369383e+07
-5.90247753e+07 -3.93069384e+07 -3.87912913e+07 -5.34058999e+07
-5.86336373e+07 -5.97011536e+07 -3.34625797e+07 -7.25852706e+07
-3.69052619e+07 -1.35259014e+07 -3.17009711e+07 -3.31182182e+07
-5.87334272e+07 -3.64397118e+07 -3.63637269e+07 -5.73796876e+07
-3.89880981e+07 -5.47146700e+07 -5.86187304e+07]
[-1.00587941e+08 -1.16463340e+08 -1.13326250e+08 -1.03914780e+08
-1.14607025e+08 -9.96279605e+07 -1.03266394e+08 -1.14655176e+08
-1.03111559e+08 -1.16049200e+08 -9.54458289e+07 -1.01386176e+08
-1.02769927e+08 -1.03245572e+08 -9.29620018e+07 -8.77405009e+07
-1.15439629e+08 -8.40158422e+07 -1.11487980e+08 -1.12781589e+08
-1.02895604e+08 -1.14995326e+08 -1.14727577e+08 -9.96208890e+07
-9.47337632e+07 -1.02245654e+08 -1.02899167e+08]
[-1.60289910e+08 -2.23863539e+08 -2.25206382e+08 -1.63527287e+08
-2.25279232e+08 -1.60116600e+08 -1.63590958e+08 -2.25154959e+08
-1.64512974e+08 -2.23482297e+08 -1.77348994e+08 -1.68570341e+08
-1.64346588e+08 -1.63791740e+08 -1.76494151e+08 -9.68741910e+07
-2.25890819e+08 -1.85797274e+08 -2.24697015e+08 -2.25554641e+08
-1.64518820e+08 -2.25505370e+08 -2.25063750e+08 -1.60257940e+08
-1.75634093e+08 -1.68515844e+08 -1.64666078e+08]
[-2.27540095e+08 -3.12237807e+08 -3.18387737e+08 -2.29848379e+08
-3.16727413e+08 -2.28385626e+08 -2.30740290e+08 -3.16686691e+08
-2.32594905e+08 -3.11988769e+08 -2.65940522e+08 -2.41637532e+08
-2.32637836e+08 -2.31095935e+08 -2.61202169e+08 -9.39295820e+07
-3.17132417e+08 -2.78297594e+08 -3.19475365e+08 -3.19563894e+08
-2.32799219e+08 -3.16769699e+08 -3.16210617e+08 -2.28782610e+08
-2.63361921e+08 -2.40859172e+08 -2.33093362e+08]
[-2.65622852e+08 -3.34367671e+08 -3.43219232e+08 -2.66438908e+08
-3.40406455e+08 -2.67084462e+08 -2.67955935e+08 -3.40510651e+08
-2.70136539e+08 -3.34156754e+08 -3.11179337e+08 -2.79697421e+08
-2.70449802e+08 -2.68407887e+08 -3.00566935e+08 -8.08642133e+07
-3.40418957e+08 -3.11773765e+08 -3.45406742e+08 -3.44774338e+08
-2.70452029e+08 -3.40184065e+08 -3.39564395e+08 -2.67567785e+08
-3.08125128e+08 -2.78929032e+08 -2.70872438e+08]
[-2.52732270e+08 -2.93326278e+08 -3.02927423e+08 -2.52586166e+08
-2.99530540e+08 -2.54404534e+08 -2.54399968e+08 -2.99777711e+08
-2.56385447e+08 -2.93183402e+08 -2.96883318e+08 -2.64744683e+08
-2.56912127e+08 -2.54826775e+08 -2.82864454e+08 -5.58958942e+07
-2.99196954e+08 -2.85297567e+08 -3.05731644e+08 -3.04467662e+08
-2.56746278e+08 -2.99160468e+08 -2.98528484e+08 -2.54715727e+08
-2.93942514e+08 -2.64161570e+08 -2.57217364e+08]
[-3.37939256e+08 -3.53259465e+08 -3.62910196e+08 -3.41951167e+08
-3.58441858e+08 -3.39452620e+08 -3.43842210e+08 -3.59420102e+08
-3.45509765e+08 -3.53222277e+08 -3.86324932e+08 -3.53061817e+08
-3.46043480e+08 -3.44088507e+08 -3.60433692e+08 -9.41334823e+07
-3.58773755e+08 -3.40008672e+08 -3.65451250e+08 -3.64032481e+08
-3.45906838e+08 -3.58215879e+08 -3.57746943e+08 -3.39555074e+08
-3.83787866e+08 -3.52918378e+08 -3.46377945e+08]
[-4.55294442e+08 -4.52849236e+08 -4.60972558e+08 -4.66375266e+08
-4.55706611e+08 -4.56167734e+08 -4.68007840e+08 -4.57711283e+08
-4.69144464e+08 -4.52921716e+08 -5.06617502e+08 -4.75689526e+08
-4.69529696e+08 -4.67987471e+08 -4.66594904e+08 -1.72457902e+08
-4.57379518e+08 -4.18617103e+08 -4.62319592e+08 -4.61333265e+08
-4.69598097e+08 -4.55802681e+08 -4.55740143e+08 -4.56179834e+08
-5.05168435e+08 -4.75999463e+08 -4.69911581e+08]
[-4.53825140e+08 -4.42826094e+08 -4.47254931e+08 -4.67118220e+08
-4.42903039e+08 -4.53977394e+08 -4.68162997e+08 -4.45285197e+08
-4.68547206e+08 -4.42946827e+08 -4.93045022e+08 -4.72772450e+08
-4.68729262e+08 -4.67891021e+08 -4.51213449e+08 -2.08866939e+08
-4.45447033e+08 -3.93786974e+08 -4.47072263e+08 -4.46941941e+08
-4.68947545e+08 -4.43263271e+08 -4.43615684e+08 -4.54211311e+08
-4.92932117e+08 -4.73437766e+08 -4.69018880e+08]
[-2.74176687e+08 -2.81012261e+08 -2.81252983e+08 -2.84191984e+08
-2.79444849e+08 -2.73644339e+08 -2.84529726e+08 -2.81057434e+08
-2.84316491e+08 -2.81072082e+08 -2.92667951e+08 -2.86090095e+08
-2.84366645e+08 -2.84195860e+08 -2.69371026e+08 -1.58460267e+08
-2.81597363e+08 -2.35566517e+08 -2.80116198e+08 -2.80844684e+08
-2.84620034e+08 -2.79860258e+08 -2.80344809e+08 -2.73876769e+08
-2.93198376e+08 -2.86423499e+08 -2.84468792e+08]
[-2.44696630e+07 -5.72263783e+07 -5.42537914e+07 -2.74414156e+07
-5.53418110e+07 -2.36733117e+07 -2.71498745e+07 -5.56267024e+07
-2.66991244e+07 -5.71811898e+07 -2.23810059e+07 -2.70133070e+07
-2.66433094e+07 -2.69287636e+07 -2.46120279e+07 -5.76278627e+07
-5.63519535e+07 -2.93907945e+07 -5.29043338e+07 -5.41830229e+07
-2.68603929e+07 -5.56812530e+07 -5.60228769e+07 -2.38941948e+07
-2.28555158e+07 -2.67457670e+07 -2.65684196e+07]
[ 2.11200328e+08 1.49534643e+08 1.54443503e+08 2.13874729e+08
1.50972547e+08 2.12148400e+08 2.14646325e+08 1.52041107e+08
2.14948895e+08 1.49685216e+08 2.25209549e+08 2.14376571e+08
2.15098696e+08 2.14616289e+08 1.97385270e+08 5.00670961e+07
1.51188972e+08 1.54428337e+08 1.55593923e+08 1.54022611e+08
2.14954062e+08 1.50725926e+08 1.50672897e+08 2.11906799e+08
2.25362169e+08 2.15304766e+08 2.15312498e+08]
[ 2.98665016e+08 2.33859852e+08 2.38729243e+08 3.04315133e+08
2.34565908e+08 2.99464489e+08 3.05167569e+08 2.36209910e+08
3.05274387e+08 2.34034167e+08 3.16427080e+08 3.04584125e+08
3.05474148e+08 3.05010775e+08 2.79572512e+08 1.04270536e+08
2.35463179e+08 2.23153390e+08 2.39477237e+08 2.38020500e+08
3.05390180e+08 2.34430174e+08 2.34557083e+08 2.99173360e+08
3.17115731e+08 3.05686849e+08 3.05712171e+08]
[ 2.60835088e+08 2.08213600e+08 2.12187795e+08 2.66646534e+08
2.08512122e+08 2.61392237e+08 2.67373333e+08 2.10048718e+08
2.67399558e+08 2.08390753e+08 2.78137284e+08 2.67350824e+08
2.67585652e+08 2.67201185e+08 2.46002203e+08 9.78715013e+07
2.09462580e+08 1.96577368e+08 2.12707342e+08 2.11491783e+08
2.67528707e+08 2.08459089e+08 2.08616310e+08 2.61108225e+08
2.78925925e+08 2.68241073e+08 2.67770232e+08]
[ 1.49733813e+08 1.18848097e+08 1.20944185e+08 1.53017976e+08
1.18870712e+08 1.50069499e+08 1.53424108e+08 1.19762687e+08
1.53386059e+08 1.18946984e+08 1.58952105e+08 1.53261629e+08
1.53487605e+08 1.53297491e+08 1.40245829e+08 5.81907997e+07
1.19476973e+08 1.11430007e+08 1.21161706e+08 1.20515471e+08
1.53456621e+08 1.18852788e+08 1.18962920e+08 1.49904365e+08
1.59424440e+08 1.53821894e+08 1.53594541e+08]
[ 4.78326767e+07 3.58957898e+07 3.65435732e+07 4.88196684e+07
3.58424980e+07 4.79576567e+07 4.89345498e+07 3.61460435e+07
4.89031786e+07 3.59241636e+07 5.02979618e+07 4.86620851e+07
4.89247373e+07 4.88887773e+07 4.39353421e+07 1.85358528e+07
3.60373274e+07 3.38591272e+07 3.65984497e+07 3.63738805e+07
4.89118714e+07 3.58348512e+07 3.58731518e+07 4.78721944e+07
5.04786643e+07 4.89019739e+07 4.89605419e+07]
[-3.17109256e+05 -1.47271235e+06 -1.51601962e+06 -3.38610731e+05
-1.51533017e+06 -3.10652089e+05 -3.45833540e+05 -1.51176972e+06
-3.57641644e+05 -1.47578161e+06 -8.34476927e+05 -5.56809397e+05
-3.60552499e+05 -3.48866944e+05 -9.89075520e+05 -8.94077745e+03
-1.51424249e+06 -1.42748391e+06 -1.53247779e+06 -1.53199143e+06
-3.66322004e+05 -1.51418205e+06 -1.51364678e+06 -3.23935855e+05
-8.13505532e+05 -5.05051458e+05 -3.63544989e+05]
[-1.62611516e+06 -1.78984034e+06 -1.84032238e+06 -1.76498021e+06
-1.80318563e+06 -1.62415907e+06 -1.77077803e+06 -1.81307407e+06
-1.77866824e+06 -1.78982016e+06 -2.10167320e+06 -1.85452233e+06
-1.77912161e+06 -1.77247698e+06 -2.00918663e+06 -5.67300654e+05
-1.80824073e+06 -1.76704901e+06 -1.85138427e+06 -1.83776679e+06
-1.78168657e+06 -1.80342679e+06 -1.80229764e+06 -1.61436146e+06
-2.09002007e+06 -1.84011528e+06 -1.78268891e+06]
[-1.82651548e+05 -1.78421808e+05 -1.81566757e+05 -1.83876811e+05
-1.80488922e+05 -1.83654278e+05 -1.84636242e+05 -1.80786778e+05
-1.85304632e+05 -1.78170926e+05 -1.88210959e+05 -1.84561552e+05
-1.85379898e+05 -1.84471035e+05 -1.75606132e+05 -4.96394930e+04
-1.80876558e+05 -1.62760375e+05 -1.82077855e+05 -1.82498372e+05
-1.85572471e+05 -1.80505486e+05 -1.80369386e+05 -1.84233616e+05
-1.85928208e+05 -1.85387175e+05 -1.85769346e+05]
[-1.10592394e-01 -4.45758802e-01 4.98010503e-01 -9.46483300e-02
-6.72152959e-01 9.80921525e-01 -3.24005433e-01 -3.96481761e-01
-5.49347717e-01 -1.48512350e-01 3.90241044e-01 2.04813100e-01
-6.37078152e-01 -4.70876505e-01 1.96500217e-01 7.16093445e-01
-1.74167762e-01 -5.68303654e-01 -3.53223120e-01 3.83380867e-01
4.01897565e-01 -5.53298845e-01 -2.07008721e-01 3.98659815e-01
4.41149882e-01 -7.38968507e-01 2.18748063e-01]
[-3.85013871e+05 -3.25721780e+05 -3.18379488e+05 -3.55115942e+05
-3.23710878e+05 -3.92095775e+05 -3.54077415e+05 -3.24680643e+05
-3.51134480e+05 -3.25724315e+05 -2.91214271e+05 -3.32247004e+05
-3.50830796e+05 -3.52978299e+05 -2.48759716e+05 -2.45526375e+05
-3.25069773e+05 -2.28171600e+05 -3.14149846e+05 -3.18448785e+05
-3.51789790e+05 -3.23400298e+05 -3.24324540e+05 -3.94205699e+05
-2.95572413e+05 -3.31133228e+05 -3.51904203e+05]
[ 2.27723190e+06 1.65607500e+06 1.68878613e+06 2.35983146e+06
1.65693413e+06 2.26757842e+06 2.36441988e+06 1.66961658e+06
2.36505253e+06 1.65622869e+06 2.42275248e+06 2.32934796e+06
2.36440291e+06 2.36318583e+06 2.13456562e+06 6.57465450e+05
1.66293024e+06 1.62365697e+06 1.69197961e+06 1.68255855e+06
2.36532856e+06 1.65709950e+06 1.65554037e+06 2.25834477e+06
2.41509301e+06 2.34824612e+06 2.36838248e+06]
[ 4.70680644e+06 3.10075040e+06 3.18309285e+06 4.65967273e+06
3.13681584e+06 4.71935381e+06 4.67739505e+06 3.15363039e+06
4.67538366e+06 3.10112357e+06 4.74985897e+06 4.58420852e+06
4.67299538e+06 4.66844981e+06 4.11608168e+06 7.13747378e+05
3.13786691e+06 3.23807766e+06 3.19735330e+06 3.18388713e+06
4.67496315e+06 3.13041391e+06 3.12735805e+06 4.72166498e+06
4.72363780e+06 4.61181987e+06 4.68576852e+06]
[ 9.66450715e+06 6.72147274e+06 7.03318396e+06 9.39161418e+06
6.90299613e+06 9.73598403e+06 9.44267591e+06 6.93010063e+06
9.46978381e+06 6.72920339e+06 1.00760127e+07 9.41671314e+06
9.47406264e+06 9.43848658e+06 8.72858059e+06 2.02513769e+05
6.87823540e+06 7.31827143e+06 7.12279868e+06 7.05628378e+06
9.47696286e+06 6.87978722e+06 6.86423313e+06 9.74558394e+06
1.00316894e+07 9.45318899e+06 9.50847973e+06]
[ 3.32998710e+07 2.71716048e+07 2.84483399e+07 3.30320134e+07
2.77902850e+07 3.36471816e+07 3.32487624e+07 2.79301383e+07
3.33578377e+07 2.72262560e+07 3.70409374e+07 3.38982109e+07
3.34015480e+07 3.32263104e+07 3.29808845e+07 4.05822908e+06
2.77770925e+07 2.89788858e+07 2.88124353e+07 2.85051761e+07
3.33891298e+07 2.77229574e+07 2.77147639e+07 3.36509966e+07
3.70030369e+07 3.38737908e+07 3.34762905e+07]
[ 4.34180031e+07 4.33305852e+07 4.63377961e+07 4.28231008e+07
4.50281041e+07 4.42569921e+07 4.33312316e+07 4.51786896e+07
4.37262921e+07 4.34796305e+07 5.44954128e+07 4.61120255e+07
4.38681472e+07 4.33500684e+07 5.00028157e+07 -3.30252602e+06
4.48990158e+07 4.92492822e+07 4.73361834e+07 4.66497946e+07
4.38263257e+07 4.48720410e+07 4.48627326e+07 4.42763543e+07
5.43521187e+07 4.57774965e+07 4.39673657e+07]
[ 1.19311489e+07 3.19898171e+07 3.71203854e+07 1.12765729e+07
3.52347576e+07 1.31820916e+07 1.21423751e+07 3.51882247e+07
1.30003390e+07 3.22546352e+07 3.33694450e+07 1.83227264e+07
1.32865038e+07 1.22808452e+07 3.40307676e+07 -3.02716847e+07
3.47553016e+07 4.59356996e+07 3.90261612e+07 3.78769034e+07
1.32014793e+07 3.49435832e+07 3.49161517e+07 1.32531373e+07
3.29896781e+07 1.73543664e+07 1.33581675e+07]
[-4.78199219e+07 -1.35448344e+07 -7.32858392e+06 -5.02940060e+07
-9.17484736e+06 -4.62553566e+07 -4.92345247e+07 -9.52202682e+06
-4.81019493e+07 -1.31664875e+07 -2.41119571e+07 -4.12970271e+07
-4.77183868e+07 -4.90066953e+07 -1.63605737e+07 -6.71891504e+07
-1.01000688e+07 1.00465720e+07 -4.77186575e+06 -6.13303057e+06
-4.78126775e+07 -9.61977660e+06 -9.59049493e+06 -4.60548327e+07
-2.45931043e+07 -4.28071109e+07 -4.76867688e+07]
[-1.24570985e+08 -9.86256323e+07 -9.34250381e+07 -1.28973135e+08
-9.46362833e+07 -1.23087780e+08 -1.28037402e+08 -9.51838792e+07
-1.27084057e+08 -9.81949820e+07 -1.09340250e+08 -1.21859497e+08
-1.26693065e+08 -1.27801528e+08 -9.64568308e+07 -1.05365448e+08
-9.58584534e+07 -6.48042160e+07 -9.08348551e+07 -9.21307760e+07
-1.26785784e+08 -9.51511323e+07 -9.50027591e+07 -1.22844936e+08
-1.09549788e+08 -1.23353520e+08 -1.26761912e+08]
[-2.13882925e+08 -2.19619310e+08 -2.18207232e+08 -2.19707084e+08
-2.18095216e+08 -2.13018136e+08 -2.19375905e+08 -2.18687980e+08
-2.19285472e+08 -2.19215552e+08 -2.18781678e+08 -2.18552424e+08
-2.18995348e+08 -2.19281205e+08 -2.03515358e+08 -1.32366482e+08
-2.19342375e+08 -1.78472174e+08 -2.16526629e+08 -2.17452092e+08
-2.19111056e+08 -2.18521926e+08 -2.18218262e+08 -2.12907106e+08
-2.18080870e+08 -2.19573557e+08 -2.19253492e+08]
[-3.73920317e+08 -3.99377730e+08 -4.03958257e+08 -3.81936740e+08
-4.01208267e+08 -3.74020475e+08 -3.82599458e+08 -4.02221003e+08
-3.83634624e+08 -3.99081621e+08 -4.07911139e+08 -3.88279435e+08
-3.83511751e+08 -3.82629550e+08 -3.80898961e+08 -1.68695667e+08
-4.02613477e+08 -3.52940808e+08 -4.03831515e+08 -4.03946760e+08
-3.83676231e+08 -4.01516276e+08 -4.01035558e+08 -3.73921414e+08
-4.05989774e+08 -3.88818043e+08 -3.84079290e+08]
[-5.31436277e+08 -5.51214863e+08 -5.61599643e+08 -5.41056062e+08
-5.56015016e+08 -5.32590083e+08 -5.42721216e+08 -5.57650495e+08
-5.44720304e+08 -5.51070523e+08 -5.91975962e+08 -5.53506131e+08
-5.44802359e+08 -5.42864200e+08 -5.49630984e+08 -1.92827994e+08
-5.57510466e+08 -5.08462694e+08 -5.63138910e+08 -5.62231769e+08
-5.44970380e+08 -5.56146384e+08 -5.55548294e+08 -5.32620318e+08
-5.89028080e+08 -5.53818574e+08 -5.45606685e+08]
[-5.40617925e+08 -5.42405557e+08 -5.54821518e+08 -5.48646552e+08
-5.48349112e+08 -5.42189293e+08 -5.50845534e+08 -5.50074842e+08
-5.52967878e+08 -5.42294373e+08 -6.04821296e+08 -5.61737146e+08
-5.53334357e+08 -5.51045569e+08 -5.59545118e+08 -1.71291102e+08
-5.49351861e+08 -5.13536253e+08 -5.57337997e+08 -5.55745554e+08
-5.53342112e+08 -5.48227016e+08 -5.47552425e+08 -5.42190458e+08
-6.01493545e+08 -5.62111962e+08 -5.54076861e+08]
[-4.72173662e+08 -4.65252200e+08 -4.77172190e+08 -4.78943366e+08
-4.70962623e+08 -4.73778091e+08 -4.81201057e+08 -4.72548535e+08
-4.82989328e+08 -4.65201013e+08 -5.30975455e+08 -4.90604547e+08
-4.83523250e+08 -4.81348848e+08 -4.90505953e+08 -1.37516372e+08
-4.71589190e+08 -4.47858028e+08 -4.79953103e+08 -4.78102827e+08
-4.83423925e+08 -4.70756289e+08 -4.70105719e+08 -4.73632278e+08
-5.27899371e+08 -4.90913228e+08 -4.84113753e+08]
[-4.65724421e+08 -4.66288789e+08 -4.76869835e+08 -4.75229775e+08
-4.70846036e+08 -4.66914734e+08 -4.77301951e+08 -4.72694141e+08
-4.78734380e+08 -4.66360857e+08 -5.24456250e+08 -4.86383100e+08
-4.79267138e+08 -4.77339754e+08 -4.84243287e+08 -1.55458470e+08
-4.71970748e+08 -4.40827671e+08 -4.79150661e+08 -4.77547516e+08
-4.79277375e+08 -4.70785882e+08 -4.70400156e+08 -4.66737869e+08
-5.22244064e+08 -4.86545589e+08 -4.79764976e+08]
[-5.09549915e+08 -5.07741673e+08 -5.15049868e+08 -5.23129082e+08
-5.09596656e+08 -5.10112387e+08 -5.24663130e+08 -5.12009231e+08
-5.25460097e+08 -5.07878649e+08 -5.61180912e+08 -5.31701593e+08
-5.25797917e+08 -5.24466647e+08 -5.15916109e+08 -2.16911443e+08
-5.11908789e+08 -4.59629057e+08 -5.15773913e+08 -5.15023668e+08
-5.25980179e+08 -5.09842459e+08 -5.09947894e+08 -5.10194751e+08
-5.60469153e+08 -5.32142426e+08 -5.26213711e+08]
[-4.23997550e+08 -4.20002501e+08 -4.22554061e+08 -4.37264599e+08
-4.18953203e+08 -4.23925405e+08 -4.38003395e+08 -4.21261710e+08
-4.37922598e+08 -4.20144194e+08 -4.55384761e+08 -4.40980777e+08
-4.38053548e+08 -4.37606928e+08 -4.16787972e+08 -2.21852179e+08
-4.21695549e+08 -3.62915609e+08 -4.21691391e+08 -4.21843233e+08
-4.38293113e+08 -4.19390050e+08 -4.19869351e+08 -4.24098187e+08
-4.56209840e+08 -4.41480604e+08 -4.38272258e+08]
[-1.91645113e+08 -2.11768857e+08 -2.10206614e+08 -2.00699804e+08
-2.09446272e+08 -1.90908992e+08 -2.00716232e+08 -2.10667994e+08
-2.00123476e+08 -2.11831142e+08 -2.02046710e+08 -2.01033050e+08
-2.00162929e+08 -2.00354656e+08 -1.86825505e+08 -1.44406781e+08
-2.11408366e+08 -1.64768147e+08 -2.08700145e+08 -2.09476048e+08
-2.00366555e+08 -2.09876397e+08 -2.10374304e+08 -1.90960029e+08
-2.03377107e+08 -2.01031733e+08 -2.00130601e+08]
[ 7.73471113e+07 2.54160289e+07 2.98124895e+07 7.59455112e+07
2.75893860e+07 7.83984367e+07 7.65248487e+07 2.78744955e+07
7.71987263e+07 2.54875878e+07 8.61878364e+07 7.68527906e+07
7.72326513e+07 7.67003460e+07 7.36436264e+07 -2.85173229e+07
2.69584050e+07 5.16984583e+07 3.13149213e+07 3.00207374e+07
7.70825368e+07 2.72501119e+07 2.69832126e+07 7.83812448e+07
8.52114736e+07 7.75680036e+07 7.74418742e+07]
[ 2.78959297e+08 2.00237989e+08 2.06053808e+08 2.83312222e+08
2.01691186e+08 2.80012810e+08 2.84237388e+08 2.03211809e+08
2.84642482e+08 2.00419589e+08 2.97278643e+08 2.83659831e+08
2.84774598e+08 2.84178587e+08 2.61562761e+08 6.96070079e+07
2.02176747e+08 2.04629941e+08 2.07271884e+08 2.05632938e+08
2.84679137e+08 2.01448364e+08 2.01465565e+08 2.79815057e+08
2.97249382e+08 2.84919873e+08 2.85071683e+08]
[ 3.56964959e+08 2.76416463e+08 2.82197409e+08 3.64416532e+08
2.77133351e+08 3.57859542e+08 3.65413166e+08 2.79167469e+08
3.65600173e+08 2.76603044e+08 3.79860012e+08 3.64882451e+08
3.65787314e+08 3.65224072e+08 3.35908536e+08 1.20253592e+08
2.78245101e+08 2.66317997e+08 2.83055794e+08 2.81423113e+08
3.65718041e+08 2.77014478e+08 2.77159288e+08 3.57514831e+08
3.80359875e+08 3.66233920e+08 3.66101853e+08]
[ 2.86894184e+08 2.26299450e+08 2.30683128e+08 2.93302245e+08
2.26657484e+08 2.87515489e+08 2.94093720e+08 2.28332313e+08
2.94151025e+08 2.26465955e+08 3.05566081e+08 2.93744836e+08
2.94320261e+08 2.93899078e+08 2.70120185e+08 1.03521748e+08
2.27665715e+08 2.14966715e+08 2.31255705e+08 2.29981858e+08
2.94268243e+08 2.26598941e+08 2.26754371e+08 2.87155929e+08
3.06170013e+08 2.94756107e+08 2.94552952e+08]
[ 1.68316678e+08 1.33781331e+08 1.36214650e+08 1.71844555e+08
1.33914622e+08 1.68714941e+08 1.72299807e+08 1.34891040e+08
1.72293925e+08 1.33874394e+08 1.78550479e+08 1.71985695e+08
1.72389454e+08 1.72160980e+08 1.57815561e+08 6.28212607e+07
1.34553637e+08 1.25984850e+08 1.36485314e+08 1.35798694e+08
1.72364737e+08 1.33889195e+08 1.33993212e+08 1.68513758e+08
1.78907985e+08 1.72586936e+08 1.72528580e+08]
[ 5.91006029e+07 4.52080043e+07 4.60630397e+07 6.00903858e+07
4.52314649e+07 5.92918089e+07 6.02340368e+07 4.55849321e+07
6.02241106e+07 4.52328193e+07 6.22099819e+07 5.99751101e+07
6.02466319e+07 6.01828279e+07 5.45447956e+07 2.14244471e+07
4.54477456e+07 4.28684479e+07 4.61528224e+07 4.59039245e+07
6.02338229e+07 4.52197973e+07 4.52523225e+07 5.91937067e+07
6.23335264e+07 6.02284625e+07 6.02975834e+07]
[ 5.08743160e+06 3.37767615e+06 3.42044210e+06 4.99070440e+06
3.37604633e+06 5.13902027e+06 4.99708262e+06 3.39919777e+06
4.99082624e+06 3.37395564e+06 4.82720078e+06 4.82492253e+06
4.98683784e+06 4.99027748e+06 4.19312593e+06 1.77880894e+06
3.38469543e+06 3.15008707e+06 3.41489037e+06 3.40896065e+06
4.98413264e+06 3.37104325e+06 3.37116677e+06 5.13223986e+06
4.83117491e+06 4.86366130e+06 4.99447224e+06]
[-3.99247579e+05 -3.52925417e+05 -3.60266514e+05 -4.27495420e+05
-3.52443129e+05 -3.97633389e+05 -4.28532101e+05 -3.55095907e+05
-4.29627840e+05 -3.53145718e+05 -4.98106940e+05 -4.57532262e+05
-4.29955404e+05 -4.28989568e+05 -4.42280068e+05 -1.50558831e+05
-3.54607815e+05 -3.60807146e+05 -3.61569942e+05 -3.58823605e+05
-4.29988925e+05 -3.52683279e+05 -3.52738200e+05 -3.97204196e+05
-4.97208344e+05 -4.54825448e+05 -4.30219508e+05]
[-3.62640809e-01 8.51238611e-02 -6.41314817e-01 -2.83175780e-01
-9.95014277e-01 -9.58270065e-01 -9.24296681e-02 -8.88203819e-01
-1.29996123e-01 -4.25213933e-01 -6.04936382e-01 -1.59398454e-01
-5.85782526e-01 1.45692741e-01 -7.19117623e-01 -9.66734975e-01
6.07797244e-01 -2.13217037e-01 -5.02625209e-01 6.15456013e-01
4.21439138e-01 2.42305983e-01 -3.10710088e-01 3.05469665e-01
3.05339000e-02 7.39212087e-01 -2.93303183e-01]
[-6.02553213e-01 1.95658421e-01 8.15202795e-01 2.46634568e-01
6.02105364e-01 6.36062429e-01 4.65913018e-01 -9.25624810e-01
-6.18206102e-01 -6.54994389e-01 6.66172710e-01 -1.04384762e-02
5.79015965e-01 4.13896959e-01 6.49367597e-01 -5.18306601e-01
1.58053261e-01 1.55236604e-01 4.03131026e-01 2.06864776e-01
-4.64059751e-01 8.67945843e-01 -5.00130184e-01 -2.28203431e-01
6.82285478e-02 6.14701757e-01 1.87924445e-01]
[-2.79291395e+05 -2.15692905e+05 -2.14546148e+05 -2.73931195e+05
-2.14047423e+05 -2.81588723e+05 -2.73924619e+05 -2.15370838e+05
-2.72924959e+05 -2.15679187e+05 -2.64188170e+05 -2.68805483e+05
-2.72740903e+05 -2.73369943e+05 -2.32075081e+05 -1.38079617e+05
-2.15356250e+05 -1.85796370e+05 -2.12996340e+05 -2.13823608e+05
-2.73031197e+05 -2.14067077e+05 -2.14422886e+05 -2.82912675e+05
-2.65320738e+05 -2.69689277e+05 -2.73207866e+05]
[-3.78935225e+05 -2.93027997e+05 -2.89497432e+05 -3.67969982e+05
-2.89584220e+05 -3.83489423e+05 -3.67768683e+05 -2.91504105e+05
-3.65914207e+05 -2.93046686e+05 -3.52538568e+05 -3.61603371e+05
-3.65629709e+05 -3.66799434e+05 -3.07588602e+05 -2.12585430e+05
-2.91810830e+05 -2.45029075e+05 -2.86609290e+05 -2.88240796e+05
-3.66108568e+05 -2.89714794e+05 -2.90472621e+05 -3.86377829e+05
-3.54959524e+05 -3.62254570e+05 -3.66167975e+05]
[-1.87057688e+06 -2.04505288e+06 -1.99680890e+06 -1.99663976e+06
-1.98820318e+06 -1.84902129e+06 -1.98785425e+06 -2.00479634e+06
-1.98097970e+06 -2.04174792e+06 -1.94991465e+06 -1.99891872e+06
-1.98118510e+06 -1.98903006e+06 -1.78134396e+06 -1.98389946e+06
-2.01117814e+06 -1.43191362e+06 -1.97017807e+06 -1.97683742e+06
-1.98312798e+06 -1.99505143e+06 -1.99842286e+06 -1.84541768e+06
-1.97064049e+06 -2.01521815e+06 -1.97909252e+06]
[ 6.00299575e+05 5.61992572e+05 8.97748277e+05 1.91197946e+05
8.25171688e+05 7.15234605e+05 2.45537069e+05 7.99990839e+05
2.91356073e+05 5.77165969e+05 1.11338285e+06 4.32290661e+05
3.04444099e+05 2.47603613e+05 1.02873515e+06 -3.63959975e+06
7.62901558e+05 1.83703284e+06 1.03224357e+06 9.62787216e+05
2.99260558e+05 7.98141278e+05 7.84405863e+05 7.35407372e+05
1.06221173e+06 3.65858054e+05 3.22176280e+05]
[ 3.25751111e+07 2.86915986e+07 3.03302539e+07 3.23107308e+07
2.95504776e+07 3.30683469e+07 3.25980794e+07 2.96713742e+07
3.27650223e+07 2.87811634e+07 3.79760789e+07 3.38438540e+07
3.28399888e+07 3.25762294e+07 3.43876951e+07 1.79432831e+06
2.95239475e+07 3.16667235e+07 3.08546026e+07 3.04539686e+07
3.28018077e+07 2.94706381e+07 2.94711747e+07 3.31121630e+07
3.79300733e+07 3.37063105e+07 3.28925690e+07]
[ 3.97430127e+07 4.34046637e+07 4.70798920e+07 3.89705821e+07
4.55862720e+07 4.08061584e+07 3.95930728e+07 4.56883192e+07
4.01495501e+07 4.36074271e+07 5.37265226e+07 4.34432004e+07
4.03375487e+07 3.96492414e+07 5.03076992e+07 -9.88626007e+06
4.53902340e+07 5.22944449e+07 4.83791405e+07 4.75299769e+07
4.02563188e+07 4.53976570e+07 4.53865775e+07 4.09395811e+07
5.35113144e+07 4.29582186e+07 4.03971940e+07]
[ 1.47461157e+07 3.51295130e+07 4.10107994e+07 1.33031057e+07
3.89612972e+07 1.62714989e+07 1.42901681e+07 3.88653791e+07
1.53454511e+07 3.54466401e+07 3.78351593e+07 2.12014049e+07
1.56642109e+07 1.44766948e+07 3.86721233e+07 -3.62716264e+07
3.83707048e+07 5.23141061e+07 4.32346648e+07 4.19243806e+07
1.55305172e+07 3.86122122e+07 3.85849202e+07 1.65076560e+07
3.73514201e+07 2.01737445e+07 1.57007352e+07]
[-5.14188325e+07 -1.89407070e+07 -1.21692137e+07 -5.50894458e+07
-1.40232776e+07 -4.96097072e+07 -5.39890882e+07 -1.44734761e+07
-5.25977769e+07 -1.85389195e+07 -2.74621715e+07 -4.55266564e+07
-5.22075664e+07 -5.36545851e+07 -1.89822655e+07 -7.80832087e+07
-1.51061220e+07 9.34650155e+06 -9.31373518e+06 -1.07868629e+07
-5.23468121e+07 -1.45334269e+07 -1.45308196e+07 -4.92532162e+07
-2.81356599e+07 -4.70256324e+07 -5.22163248e+07]
[-1.52512814e+08 -1.24887567e+08 -1.19741388e+08 -1.58886467e+08
-1.20468085e+08 -1.50824530e+08 -1.58041315e+08 -1.21296740e+08
-1.56813791e+08 -1.24491065e+08 -1.39669769e+08 -1.51596495e+08
-1.56476425e+08 -1.57667759e+08 -1.22864020e+08 -1.24714949e+08
-1.21954388e+08 -8.53094338e+07 -1.16973687e+08 -1.18220017e+08
-1.56601689e+08 -1.21044863e+08 -1.20954353e+08 -1.50412518e+08
-1.40229287e+08 -1.53100374e+08 -1.56594143e+08]
[-3.14981292e+08 -2.87557467e+08 -2.86311526e+08 -3.23340448e+08
-2.85017723e+08 -3.14033346e+08 -3.23206935e+08 -2.86390970e+08
-3.22541902e+08 -2.87253878e+08 -3.19984265e+08 -3.19993949e+08
-3.22297853e+08 -3.22801994e+08 -2.89158483e+08 -1.78239045e+08
-2.86861705e+08 -2.38787545e+08 -2.84294070e+08 -2.85016204e+08
-3.22445424e+08 -2.85519691e+08 -2.85367257e+08 -3.13711818e+08
-3.20011842e+08 -3.21460373e+08 -3.22674782e+08]
[-5.50711246e+08 -5.13189000e+08 -5.18025713e+08 -5.62952845e+08
-5.13343306e+08 -5.50676691e+08 -5.63853229e+08 -5.15660953e+08
-5.64116904e+08 -5.13011286e+08 -5.85117939e+08 -5.65598998e+08
-5.64007305e+08 -5.63465715e+08 -5.31695709e+08 -2.41737998e+08
-5.15719833e+08 -4.57812428e+08 -5.17364879e+08 -5.17190115e+08
-5.64225057e+08 -5.13769917e+08 -5.13505846e+08 -5.50261969e+08
-5.83971010e+08 -5.67131570e+08 -5.64769395e+08]
[-7.40749543e+08 -6.79814058e+08 -6.89804689e+08 -7.55951352e+08
-6.82154777e+08 -7.41501370e+08 -7.57741791e+08 -6.85340836e+08
-7.58714345e+08 -6.79701913e+08 -7.97928493e+08 -7.62291579e+08
-7.58791963e+08 -7.57415202e+08 -7.24563838e+08 -2.83710627e+08
-6.84750953e+08 -6.25218556e+08 -6.90441540e+08 -6.89328978e+08
-7.59028085e+08 -6.82423193e+08 -6.82040642e+08 -7.40937923e+08
-7.95777023e+08 -7.64107959e+08 -7.59833310e+08]
[-6.67644560e+08 -6.08469400e+08 -6.19670594e+08 -6.80867381e+08
-6.11868350e+08 -6.68567878e+08 -6.82990041e+08 -6.14787562e+08
-6.84035347e+08 -6.08386485e+08 -7.25829101e+08 -6.87814656e+08
-6.84398201e+08 -6.82767409e+08 -6.59439450e+08 -2.35325392e+08
-6.13690046e+08 -5.70211425e+08 -6.21251320e+08 -6.19580144e+08
-6.84518023e+08 -6.11900564e+08 -6.11408858e+08 -6.67826680e+08
-7.23351351e+08 -6.89360605e+08 -6.85321637e+08]
[-5.34358074e+08 -4.99314539e+08 -5.09562576e+08 -5.46050611e+08
-5.02721840e+08 -5.35141042e+08 -5.48101265e+08 -5.05153618e+08
-5.49018203e+08 -4.99325078e+08 -5.89671388e+08 -5.53979482e+08
-5.49544943e+08 -5.47944519e+08 -5.37876932e+08 -1.86609631e+08
-5.04082702e+08 -4.70609674e+08 -5.11393237e+08 -5.09651962e+08
-5.49618931e+08 -5.02700268e+08 -5.02270000e+08 -5.34511925e+08
-5.87702737e+08 -5.54937606e+08 -5.50221942e+08]
[-4.66428932e+08 -4.63388006e+08 -4.71298686e+08 -4.79427370e+08
-4.65704088e+08 -4.66818210e+08 -4.81100269e+08 -4.67942740e+08
-4.81755062e+08 -4.63460633e+08 -5.17000427e+08 -4.87044952e+08
-4.82260659e+08 -4.80929315e+08 -4.74902621e+08 -1.92335439e+08
-4.67387014e+08 -4.23100296e+08 -4.72462951e+08 -4.71279934e+08
-4.82438710e+08 -4.65788424e+08 -4.65681493e+08 -4.66403221e+08
-5.16104767e+08 -4.87526665e+08 -4.82738032e+08]
[-4.82379460e+08 -4.81452541e+08 -4.85953321e+08 -4.97381762e+08
-4.81329287e+08 -4.82438565e+08 -4.98453363e+08 -4.83839921e+08
-4.98648773e+08 -4.81586416e+08 -5.24243848e+08 -5.03074265e+08
-4.98907395e+08 -4.98131225e+08 -4.80437407e+08 -2.39588598e+08
-4.84053317e+08 -4.22040187e+08 -4.85623166e+08 -4.85310113e+08
-4.99148579e+08 -4.81701666e+08 -4.82041933e+08 -4.82494045e+08
-5.24805663e+08 -5.03705373e+08 -4.99215344e+08]
[-3.96487743e+08 -3.93822704e+08 -3.94688581e+08 -4.10553932e+08
-3.91630543e+08 -3.96099831e+08 -4.10973391e+08 -3.93864053e+08
-4.10556078e+08 -3.93923578e+08 -4.21614704e+08 -4.12267726e+08
-4.10637902e+08 -4.10549893e+08 -3.84409071e+08 -2.31247243e+08
-3.94499473e+08 -3.30693873e+08 -3.93250715e+08 -3.93524216e+08
-4.10847681e+08 -3.92144399e+08 -3.92672920e+08 -3.96060309e+08
-4.23179546e+08 -4.12906207e+08 -4.10764801e+08]
[-1.77185121e+08 -2.00905271e+08 -1.98834118e+08 -1.85416891e+08
-1.98397114e+08 -1.76452189e+08 -1.85266365e+08 -1.99433384e+08
-1.84616537e+08 -2.00895967e+08 -1.84229224e+08 -1.85160916e+08
-1.84628927e+08 -1.84960920e+08 -1.69723395e+08 -1.46499233e+08
-2.00275518e+08 -1.50763214e+08 -1.97140082e+08 -1.97918293e+08
-1.84792197e+08 -1.98833893e+08 -1.99255369e+08 -1.76369304e+08
-1.85843315e+08 -1.85171627e+08 -1.84583599e+08]
[ 7.47362046e+07 1.02953868e+07 1.47863940e+07 7.49746214e+07
1.21470544e+07 7.55817915e+07 7.56133504e+07 1.26694324e+07
7.62123390e+07 1.04733473e+07 8.49024132e+07 7.53028402e+07
7.62563776e+07 7.57282417e+07 7.07242864e+07 -3.60817210e+07
1.16146729e+07 4.24573422e+07 1.63812135e+07 1.49460132e+07
7.61107941e+07 1.18248049e+07 1.16700583e+07 7.54997242e+07
8.40172636e+07 7.61584761e+07 7.64170510e+07]
[ 2.83769871e+08 1.91173486e+08 1.97011952e+08 2.89060848e+08
1.92332920e+08 2.84765771e+08 2.90018565e+08 1.94049674e+08
2.90362663e+08 1.91411873e+08 3.02186999e+08 2.88626245e+08
2.90482288e+08 2.89911967e+08 2.64007656e+08 6.56930927e+07
1.92889033e+08 2.00307363e+08 1.98237934e+08 1.96545763e+08
2.90386772e+08 1.92094580e+08 1.92190161e+08 2.84535710e+08
3.02188917e+08 2.90095938e+08 2.90769447e+08]
[ 3.55460737e+08 2.64963939e+08 2.70783880e+08 3.62624008e+08
2.65626788e+08 3.56444993e+08 3.63627626e+08 2.67722832e+08
3.63773341e+08 2.65190978e+08 3.76790895e+08 3.62280019e+08
3.63928830e+08 3.63404630e+08 3.31662552e+08 1.13065598e+08
2.66698337e+08 2.59094331e+08 2.71685804e+08 2.70030207e+08
3.63863566e+08 2.65483376e+08 2.65662709e+08 3.56101660e+08
3.77237642e+08 3.63747125e+08 3.64261441e+08]
[ 2.88309405e+08 2.23662769e+08 2.28185803e+08 2.94641960e+08
2.24114424e+08 2.89053735e+08 2.95446014e+08 2.25795270e+08
2.95512511e+08 2.23835060e+08 3.06933135e+08 2.94739011e+08
2.95650074e+08 2.95234272e+08 2.71149471e+08 9.89700308e+07
2.25071330e+08 2.14754141e+08 2.28809180e+08 2.27542931e+08
2.95606378e+08 2.24041442e+08 2.24188521e+08 2.88667286e+08
3.07328365e+08 2.95734378e+08 2.95916730e+08]
[ 1.70050086e+08 1.33092391e+08 1.35624994e+08 1.73254419e+08
1.33339606e+08 1.70515704e+08 1.73717409e+08 1.34305591e+08
1.73722107e+08 1.33187491e+08 1.79738537e+08 1.73055656e+08
1.73796496e+08 1.73568124e+08 1.58670318e+08 5.94095205e+07
1.33935186e+08 1.26551924e+08 1.35934902e+08 1.35268715e+08
1.73778298e+08 1.33302398e+08 1.33395859e+08 1.70293561e+08
1.79935523e+08 1.73635377e+08 1.73959983e+08]
[ 5.76014905e+07 4.38810020e+07 4.47944290e+07 5.83693143e+07
4.39845902e+07 5.78292885e+07 5.85182472e+07 4.43236605e+07
5.85190558e+07 4.39152888e+07 6.06602002e+07 5.82388184e+07
5.85362075e+07 5.84686972e+07 5.31669737e+07 1.92937087e+07
4.41749765e+07 4.21446993e+07 4.49161500e+07 4.46681354e+07
5.85313198e+07 4.39674705e+07 4.39957853e+07 5.77309098e+07
6.07548994e+07 5.84379719e+07 5.85945846e+07]
[ 9.60376317e+06 7.00732517e+06 7.12963798e+06 9.59530371e+06
7.02063649e+06 9.66500313e+06 9.61201443e+06 7.06904306e+06
9.61138281e+06 7.00567279e+06 9.81861370e+06 9.50521058e+06
9.60696075e+06 9.60401242e+06 8.59744627e+06 3.11196543e+06
7.04280353e+06 6.76057681e+06 7.13533652e+06 7.11232315e+06
9.60598384e+06 7.01630238e+06 7.01451257e+06 9.65314110e+06
9.81057654e+06 9.54236030e+06 9.62191969e+06]
[-8.91474230e+03 6.26754158e+04 6.83368037e+04 3.82967403e+03
6.55036690e+04 -8.81353053e+03 4.21165413e+03 6.54648466e+04
5.81986077e+03 6.23979689e+04 4.47557535e+04 1.23717090e+04
5.71206053e+03 4.63106917e+03 6.78373242e+04 -2.71553929e+04
6.53151210e+04 8.45951781e+04 6.99777881e+04 6.88988787e+04
5.91999401e+03 6.57853266e+04 6.52888672e+04 -9.88296144e+03
4.12879070e+04 1.17642019e+04 5.89897782e+03]
[-6.87766010e-01 -8.02148404e-01 7.37053212e-01 -3.44254723e-01
-4.72485005e-01 -1.10037331e-02 -8.83544566e-01 -9.53963651e-01
7.43809839e-01 6.86849930e-01 9.40458713e-01 -6.81135642e-01
-2.12103357e-01 3.36389579e-01 -5.31878007e-01 5.12458933e-02
8.09336790e-03 -3.98961904e-01 5.32950913e-01 1.66356578e-01
-9.21626148e-01 8.29924277e-01 3.06885194e-02 6.58384369e-01
-9.32209233e-01 6.63372056e-01 7.84851789e-01]
[ 5.82628115e-01 7.27717087e-01 3.13035379e-01 -3.92082588e-01
-1.09231520e-01 2.77753739e-01 3.98381299e-01 -1.93767982e-01
-6.82864095e-01 -5.09374481e-01 3.27656865e-01 6.47615119e-01
1.78300523e-01 -1.64309671e-02 -4.52732848e-01 -8.76709034e-01
-4.29224495e-01 -4.71649712e-01 9.41860254e-01 -8.93420346e-01
-5.29897903e-01 2.86444242e-01 -6.88319986e-01 9.96778424e-01
-3.52120011e-01 -8.68059145e-01 -9.14935983e-01]
[-1.38482681e+04 -1.06951731e+04 -1.06384925e+04 -1.35830016e+04
-1.06131055e+04 -1.39625999e+04 -1.35828384e+04 -1.06789815e+04
-1.35342230e+04 -1.06943974e+04 -1.30999440e+04 -1.33285581e+04
-1.35247090e+04 -1.35545823e+04 -1.15082764e+04 -6.84760782e+03
-1.06781318e+04 -9.21335622e+03 -1.05628384e+04 -1.06021632e+04
-1.35379247e+04 -1.06142598e+04 -1.06331778e+04 -1.40281022e+04
-1.31558896e+04 -1.33733385e+04 -1.35476094e+04]
[-4.77977957e+05 -4.49276369e+05 -4.56657752e+05 -4.74421658e+05
-4.50664111e+05 -4.84007020e+05 -4.74974194e+05 -4.53631214e+05
-4.75114542e+05 -4.50068088e+05 -5.38185354e+05 -4.88391625e+05
-4.74810276e+05 -4.74693355e+05 -4.81953806e+05 -2.02586221e+05
-4.53044002e+05 -4.30313163e+05 -4.57307191e+05 -4.55599745e+05
-4.75513473e+05 -4.50907504e+05 -4.51218543e+05 -4.85504724e+05
-5.41502005e+05 -4.87210403e+05 -4.75709728e+05]
[-4.23923652e+06 -3.73491877e+06 -3.70943983e+06 -4.44308117e+06
-3.67085881e+06 -4.21671523e+06 -4.43415712e+06 -3.70100177e+06
-4.42604850e+06 -3.73082762e+06 -4.41261936e+06 -4.42154247e+06
-4.42389917e+06 -4.43515173e+06 -3.89074210e+06 -2.75963121e+06
-3.70308111e+06 -3.03084319e+06 -3.67927181e+06 -3.68055037e+06
-4.42884202e+06 -3.67749997e+06 -3.68157176e+06 -4.20326304e+06
-4.43863377e+06 -4.45311869e+06 -4.42742768e+06]
[-3.71539392e+06 -1.96436529e+06 -1.61282629e+06 -3.86252071e+06
-1.69890998e+06 -3.61246491e+06 -3.80380589e+06 -1.73885696e+06
-3.75107205e+06 -1.94513890e+06 -2.59312434e+06 -3.42628087e+06
-3.72944581e+06 -3.79713074e+06 -2.01736889e+06 -4.44895243e+06
-1.76099881e+06 -5.05689879e+05 -1.45229791e+06 -1.55114632e+06
-3.73938099e+06 -1.72332544e+06 -1.73175384e+06 -3.60010741e+06
-2.63008011e+06 -3.52271940e+06 -3.72850870e+06]
[ 2.81951455e+07 2.64014512e+07 2.83648661e+07 2.79677528e+07
2.74444341e+07 2.88215937e+07 2.83099451e+07 2.75642042e+07
2.85172188e+07 2.65337063e+07 3.53214047e+07 3.01401492e+07
2.86178107e+07 2.82903747e+07 3.22864439e+07 -1.45986016e+06
2.74083987e+07 3.08165426e+07 2.90476329e+07 2.85211677e+07
2.85648098e+07 2.73567780e+07 2.73696381e+07 2.88993039e+07
3.53162166e+07 2.98886454e+07 2.86385137e+07]
[ 4.95306934e+07 5.22723412e+07 5.65508795e+07 4.89022853e+07
5.47844191e+07 5.07344885e+07 4.96336990e+07 5.49145614e+07
5.02806736e+07 5.25098848e+07 6.55652920e+07 5.39011805e+07
5.04938923e+07 4.96942240e+07 6.14261364e+07 -1.03021340e+07
5.45760636e+07 6.26077000e+07 5.80632309e+07 5.70522460e+07
5.03788409e+07 5.45749918e+07 5.45648019e+07 5.09742017e+07
6.52613289e+07 5.33696986e+07 5.05247414e+07]
[ 4.10560167e+07 5.52853212e+07 6.18179633e+07 3.96961960e+07
5.93899719e+07 4.27346687e+07 4.07744667e+07 5.93910460e+07
4.19691712e+07 5.56122617e+07 6.61648303e+07 4.80781965e+07
4.22933437e+07 4.09943618e+07 6.43882818e+07 -3.09544755e+07
5.88449995e+07 7.36776396e+07 6.42234412e+07 6.27354558e+07
4.21234849e+07 5.90272982e+07 5.89855964e+07 4.31418516e+07
6.55609794e+07 4.71488028e+07 4.22955404e+07]
[-1.80754400e+06 1.92418760e+07 2.67673030e+07 -5.58712042e+06
2.44919430e+07 2.35319789e+05 -4.40713606e+06 2.41638941e+07
-2.76723280e+06 1.95849888e+07 2.40672444e+07 4.20272594e+06
-2.41828097e+06 -3.99744728e+06 2.77674305e+07 -6.61418687e+07
2.34881810e+07 4.77867474e+07 2.97762027e+07 2.81570663e+07
-2.60148446e+06 2.39693676e+07 2.39073308e+07 8.06297446e+05
2.30241357e+07 3.02426534e+06 -2.43135333e+06]
[-1.21743747e+08 -9.40072749e+07 -8.79718704e+07 -1.28058552e+08
-8.89451839e+07 -1.19855193e+08 -1.27206718e+08 -8.98485333e+07
-1.25521937e+08 -9.37373601e+07 -1.04522298e+08 -1.19467487e+08
-1.25254393e+08 -1.26649298e+08 -8.87820929e+07 -1.20236453e+08
-9.04871943e+07 -5.35342546e+07 -8.49841752e+07 -8.63483548e+07
-1.25440447e+08 -8.95447241e+07 -8.96072914e+07 -1.19292608e+08
-1.05759903e+08 -1.20809262e+08 -1.25386015e+08]
[-3.32411910e+08 -2.85238437e+08 -2.83123032e+08 -3.41485891e+08
-2.81525086e+08 -3.31229844e+08 -3.41381051e+08 -2.83385073e+08
-3.40045921e+08 -2.85117794e+08 -3.32943593e+08 -3.35975620e+08
-3.39879733e+08 -3.40693862e+08 -2.95689886e+08 -1.92615169e+08
-2.83731828e+08 -2.34317756e+08 -2.80760067e+08 -2.81506501e+08
-3.40122880e+08 -2.82087404e+08 -2.82175301e+08 -3.30753271e+08
-3.33944314e+08 -3.37560163e+08 -3.40301894e+08]
[-5.92149130e+08 -5.14507173e+08 -5.17730828e+08 -6.05392910e+08
-5.12750097e+08 -5.91739412e+08 -6.06211772e+08 -5.15783416e+08
-6.05508465e+08 -5.14480016e+08 -6.16061153e+08 -6.03340308e+08
-6.05457475e+08 -6.05470510e+08 -5.51538649e+08 -2.67983383e+08
-5.15605561e+08 -4.55242864e+08 -5.16392706e+08 -5.16324155e+08
-6.05804606e+08 -5.13225772e+08 -5.13270657e+08 -5.91111740e+08
-6.16178844e+08 -6.05433120e+08 -6.06289180e+08]
[-6.84308930e+08 -5.96533665e+08 -6.03523481e+08 -6.99708287e+08
-5.96464460e+08 -6.84319441e+08 -7.01195368e+08 -5.99998672e+08
-7.00995301e+08 -5.96550915e+08 -7.25950964e+08 -7.01086870e+08
-7.01173215e+08 -7.00541536e+08 -6.51637802e+08 -2.78801849e+08
-5.99227061e+08 -5.43135239e+08 -6.03333301e+08 -6.02446639e+08
-7.01516983e+08 -5.96791314e+08 -5.96710629e+08 -6.83468962e+08
-7.25298356e+08 -7.03231208e+08 -7.02145176e+08]
[-5.63440038e+08 -4.93283505e+08 -5.00492426e+08 -5.76467193e+08
-4.93966881e+08 -5.63462916e+08 -5.78107612e+08 -4.96986927e+08
-5.77938549e+08 -4.93302939e+08 -6.04120134e+08 -5.79060752e+08
-5.78381210e+08 -5.77582489e+08 -5.42958676e+08 -2.22821985e+08
-4.95898558e+08 -4.54680381e+08 -5.00986364e+08 -4.99763356e+08
-5.78607101e+08 -4.94091118e+08 -4.93918106e+08 -5.62524281e+08
-6.03354373e+08 -5.80718882e+08 -5.79166011e+08]
[-3.99002383e+08 -3.67838101e+08 -3.73339265e+08 -4.10719849e+08
-3.68374338e+08 -3.98706156e+08 -4.12101286e+08 -3.70656242e+08
-4.11914830e+08 -3.67854848e+08 -4.34923520e+08 -4.14220014e+08
-4.12475590e+08 -4.11739293e+08 -3.93519088e+08 -1.72203826e+08
-3.69790290e+08 -3.34957507e+08 -3.73846565e+08 -3.72799680e+08
-4.12648072e+08 -3.68433423e+08 -3.68351943e+08 -3.97924689e+08
-4.34694988e+08 -4.15210588e+08 -4.12945186e+08]
[-3.47976715e+08 -3.39521729e+08 -3.42361637e+08 -3.60735446e+08
-3.38755087e+08 -3.47389553e+08 -3.61627808e+08 -3.40812271e+08
-3.61322075e+08 -3.39543773e+08 -3.76593380e+08 -3.63079285e+08
-3.61762402e+08 -3.61310523e+08 -3.42646077e+08 -1.83847648e+08
-3.40594876e+08 -2.94144848e+08 -3.42022874e+08 -3.41622064e+08
-3.61952790e+08 -3.38945272e+08 -3.39177461e+08 -3.46965298e+08
-3.77377653e+08 -3.63965975e+08 -3.61986316e+08]
[-4.35662572e+08 -4.13503525e+08 -4.14718961e+08 -4.51272955e+08
-4.11058137e+08 -4.35015615e+08 -4.51792807e+08 -4.13597886e+08
-4.51347021e+08 -4.13571433e+08 -4.61641463e+08 -4.51963362e+08
-4.51503730e+08 -4.51377414e+08 -4.18003471e+08 -2.42339834e+08
-4.13958501e+08 -3.51244154e+08 -4.13311134e+08 -4.13400331e+08
-4.51695337e+08 -4.11518798e+08 -4.12034823e+08 -4.34886840e+08
-4.63222704e+08 -4.53292044e+08 -4.51663546e+08]
[-3.86078041e+08 -3.71241712e+08 -3.71254014e+08 -4.00622294e+08
-3.68357975e+08 -3.85342882e+08 -4.00835234e+08 -3.70573540e+08
-4.00339103e+08 -3.71267591e+08 -4.06565999e+08 -4.00472733e+08
-4.00370659e+08 -4.00464944e+08 -3.67782579e+08 -2.29487532e+08
-3.71202669e+08 -3.08677758e+08 -3.69510041e+08 -3.69820986e+08
-4.00516564e+08 -3.68898408e+08 -3.69393804e+08 -3.85178865e+08
-4.08288684e+08 -4.01564397e+08 -4.00452449e+08]
[-1.96208661e+08 -2.23773879e+08 -2.22469292e+08 -2.03300611e+08
-2.21876907e+08 -1.95692352e+08 -2.03175071e+08 -2.22800376e+08
-2.02853079e+08 -2.23673461e+08 -2.06574101e+08 -2.04853770e+08
-2.02836874e+08 -2.02997211e+08 -1.91104629e+08 -1.47860480e+08
-2.23661474e+08 -1.73739203e+08 -2.20948354e+08 -2.21696121e+08
-2.02970214e+08 -2.22308293e+08 -2.22567707e+08 -1.95711034e+08
-2.07743467e+08 -2.04884933e+08 -2.02864419e+08]
[ 5.46274071e+07 -1.97182621e+07 -1.62928104e+07 5.60535771e+07
-1.88117043e+07 5.50887557e+07 5.65750800e+07 -1.81165380e+07
5.68089311e+07 -1.94762626e+07 6.09947821e+07 5.44711476e+07
5.68885472e+07 5.65929827e+07 4.59494363e+07 -3.76189763e+07
-1.92049151e+07 1.27273099e+07 -1.49739874e+07 -1.63840184e+07
5.67563204e+07 -1.90926958e+07 -1.90959960e+07 5.48758358e+07
6.07148791e+07 5.54560741e+07 5.69525956e+07]
[ 2.67009550e+08 1.66849215e+08 1.71963524e+08 2.72250136e+08
1.67476429e+08 2.67836187e+08 2.73098661e+08 1.69255234e+08
2.73221216e+08 1.67122669e+08 2.81474365e+08 2.70299198e+08
2.73342315e+08 2.72941583e+08 2.43158489e+08 6.07351297e+07
1.68057494e+08 1.77335813e+08 1.73021223e+08 1.71390854e+08
2.73262960e+08 1.67254832e+08 1.67427714e+08 2.67530780e+08
2.81766324e+08 2.71860418e+08 2.73592094e+08]
[ 3.30603393e+08 2.37625379e+08 2.42850848e+08 3.37237791e+08
2.38039804e+08 3.31468821e+08 3.38145280e+08 2.40046340e+08
3.38198575e+08 2.37848468e+08 3.48432124e+08 3.35911400e+08
3.38333687e+08 3.37909554e+08 3.04909225e+08 1.02041720e+08
2.39040427e+08 2.34122564e+08 2.43654175e+08 2.42122231e+08
3.38279951e+08 2.37914803e+08 2.38101967e+08 3.31057568e+08
3.48816599e+08 3.37418943e+08 3.38640337e+08]
[ 2.60625360e+08 1.97891111e+08 2.02103403e+08 2.66140991e+08
1.98342862e+08 2.61406143e+08 2.66856563e+08 1.99890230e+08
2.66902572e+08 1.98060747e+08 2.77363174e+08 2.65961529e+08
2.67014469e+08 2.66656096e+08 2.44080572e+08 8.53302561e+07
1.99174600e+08 1.91941814e+08 2.02722475e+08 2.01535748e+08
2.66982818e+08 1.98266716e+08 1.98396875e+08 2.60994392e+08
2.77651572e+08 2.66827402e+08 2.67266026e+08]
[ 1.51552309e+08 1.17211403e+08 1.19619265e+08 1.54042068e+08
1.17549342e+08 1.52029467e+08 1.54469299e+08 1.18411590e+08
1.54505245e+08 1.17297620e+08 1.60414354e+08 1.54023200e+08
1.54566675e+08 1.54338758e+08 1.41370359e+08 4.95198841e+07
1.18051881e+08 1.12809751e+08 1.19963564e+08 1.19351556e+08
1.54549253e+08 1.17511495e+08 1.17583975e+08 1.51841544e+08
1.60503670e+08 1.54508497e+08 1.54713753e+08]
[ 4.90310575e+07 3.65903416e+07 3.74652510e+07 4.95378195e+07
3.67409891e+07 4.92632682e+07 4.96798981e+07 3.70289143e+07
4.97000287e+07 3.66203367e+07 5.18963336e+07 4.95629162e+07
4.97116274e+07 4.96376319e+07 4.54425424e+07 1.46741032e+07
3.68900395e+07 3.59318545e+07 3.76084351e+07 3.73760848e+07
4.97040109e+07 3.67233973e+07 3.67426932e+07 4.91893313e+07
5.19353044e+07 4.97126590e+07 4.97613363e+07]
[ 5.96597382e+06 4.23269827e+06 4.36035101e+06 5.88862765e+06
4.27450886e+06 6.02285155e+06 5.90326019e+06 4.30401027e+06
5.91619558e+06 4.22950887e+06 6.30425595e+06 5.92418329e+06
5.91294665e+06 5.90256446e+06 5.53351081e+06 1.21203823e+06
4.28207584e+06 4.36161662e+06 4.38434134e+06 4.35788458e+06
5.91152056e+06 4.27163075e+06 4.26566594e+06 6.02406899e+06
6.27815906e+06 5.93360898e+06 5.92178981e+06]
[-1.52828069e+06 -1.16104431e+06 -1.15305131e+06 -1.56241550e+06
-1.14402655e+06 -1.52572487e+06 -1.56288985e+06 -1.15272282e+06
-1.55656107e+06 -1.16157639e+06 -1.47127334e+06 -1.51025931e+06
-1.55624736e+06 -1.55960341e+06 -1.27223525e+06 -8.57719889e+05
-1.15141974e+06 -9.60673390e+05 -1.14365831e+06 -1.14596747e+06
-1.55590911e+06 -1.14439297e+06 -1.14618460e+06 -1.51917441e+06
-1.47995065e+06 -1.51850986e+06 -1.55827409e+06]
[-1.28884753e+04 -1.01799075e+04 -1.01163275e+04 -1.26469945e+04
-1.01010286e+04 -1.29488654e+04 -1.26447097e+04 -1.01588968e+04
-1.26010745e+04 -1.01765679e+04 -1.22244887e+04 -1.24309742e+04
-1.25924654e+04 -1.26215183e+04 -1.06587390e+04 -6.57840135e+03
-1.01633350e+04 -8.62297241e+03 -1.00403808e+04 -1.00845944e+04
-1.26065197e+04 -1.01041802e+04 -1.01187045e+04 -1.30060552e+04
-1.22758726e+04 -1.24685531e+04 -1.26138855e+04]
[-7.96111845e-01 5.70792021e-02 4.26165255e-01 9.82255076e-01
-5.30046477e-01 5.42295688e-01 -5.28967153e-02 -1.68554906e-01
-4.98611999e-01 6.78367760e-01 3.84686010e-02 -7.72120925e-01
-7.73273623e-03 -2.27466481e-02 7.38095713e-01 -9.73036179e-01
6.57795667e-02 7.79219821e-01 5.27514168e-02 -7.67999147e-01
-2.76223906e-01 -3.59570881e-01 -2.09891635e-01 -8.54666366e-01
8.74615668e-01 5.69708000e-01 8.27866109e-01]
[-1.71624641e+04 -5.09503315e+04 -5.61060897e+04 -1.98229547e+04
-5.35541839e+04 -1.77628812e+04 -2.01539281e+04 -5.36297878e+04
-2.11208786e+04 -5.14943156e+04 -5.60057817e+04 -3.22639668e+04
-2.10742620e+04 -2.04563749e+04 -5.83908417e+04 1.48952971e+04
-5.35794478e+04 -7.05751735e+04 -5.79551130e+04 -5.61830186e+04
-2.12768074e+04 -5.35475085e+04 -5.35428146e+04 -1.76126022e+04
-5.62918077e+04 -2.89978561e+04 -2.12161380e+04]
[-1.25134232e+06 -1.43696264e+06 -1.47735910e+06 -1.27003966e+06
-1.45800640e+06 -1.26039909e+06 -1.27572137e+06 -1.46124280e+06
-1.28336604e+06 -1.43751800e+06 -1.50179393e+06 -1.33878794e+06
-1.28355946e+06 -1.27655893e+06 -1.40948034e+06 -3.73538010e+05
-1.46169625e+06 -1.38379278e+06 -1.48757421e+06 -1.48079167e+06
-1.28426985e+06 -1.45828112e+06 -1.45724634e+06 -1.26097587e+06
-1.49557798e+06 -1.33118894e+06 -1.28567465e+06]
[-7.20087727e+06 -6.69560962e+06 -6.76817618e+06 -7.50597350e+06
-6.68082369e+06 -7.18759631e+06 -7.51175928e+06 -6.71941077e+06
-7.52336876e+06 -6.69267128e+06 -7.91092896e+06 -7.59432401e+06
-7.52244445e+06 -7.51615034e+06 -7.08149341e+06 -3.37100089e+06
-6.71857016e+06 -5.93403242e+06 -6.76290608e+06 -6.74673164e+06
-7.52620063e+06 -6.68600050e+06 -6.68758629e+06 -7.17011428e+06
-7.92155250e+06 -7.61801427e+06 -7.53018245e+06]
[-1.03250368e+07 -5.98448080e+06 -5.68854447e+06 -1.07836347e+07
-5.70012982e+06 -1.02036097e+07 -1.07225268e+07 -5.77289316e+06
-1.06738477e+07 -5.96153126e+06 -9.41510787e+06 -1.01109247e+07
-1.06392427e+07 -1.07166677e+07 -7.83702258e+06 -6.00165468e+06
-5.76954172e+06 -4.46972682e+06 -5.51070701e+06 -5.60555422e+06
-1.06495399e+07 -5.72135017e+06 -5.72312740e+06 -1.01349396e+07
-9.43193151e+06 -1.02547592e+07 -1.06611875e+07]
[ 2.14957012e+07 2.51660607e+07 2.72871240e+07 2.10774750e+07
2.63602872e+07 2.21378439e+07 2.14534600e+07 2.64456595e+07
2.17057814e+07 2.53183091e+07 2.96341191e+07 2.38460908e+07
2.18307548e+07 2.14506462e+07 2.79711388e+07 -3.41741524e+06
2.63300247e+07 2.94913303e+07 2.80682773e+07 2.74995663e+07
2.17898466e+07 2.62788349e+07 2.63053851e+07 2.23022874e+07
2.96327810e+07 2.35074483e+07 2.18109517e+07]
[ 4.57236612e+07 5.35115302e+07 5.79718669e+07 4.51437970e+07
5.61291292e+07 4.68896141e+07 4.59239247e+07 5.62642004e+07
4.66246437e+07 5.37744196e+07 6.34941955e+07 5.10286977e+07
4.68637727e+07 4.59957925e+07 6.04576678e+07 -1.04087857e+07
5.59785808e+07 6.38032503e+07 5.95889208e+07 5.84932619e+07
4.67530035e+07 5.59414835e+07 5.59539498e+07 4.73091014e+07
6.32291178e+07 5.04306030e+07 4.68229646e+07]
[ 6.33059808e+07 7.14986676e+07 7.81018068e+07 6.25927210e+07
7.54166769e+07 6.49775390e+07 6.36766246e+07 7.55651293e+07
6.48664225e+07 7.18205822e+07 8.94044781e+07 7.10056328e+07
6.51802595e+07 6.38885558e+07 8.56133118e+07 -2.09902983e+07
7.50453542e+07 8.93427917e+07 8.04773292e+07 7.88945651e+07
6.49988633e+07 7.50999824e+07 7.50713433e+07 6.55643230e+07
8.87961254e+07 7.02281489e+07 6.51229794e+07]
[ 6.52426832e+07 6.52927076e+07 7.27780084e+07 6.28062644e+07
6.99389105e+07 6.73142253e+07 6.39374842e+07 6.99733533e+07
6.54962179e+07 6.55571072e+07 9.11671044e+07 7.14825130e+07
6.57777365e+07 6.43180654e+07 8.68230929e+07 -3.59880710e+07
6.92693379e+07 9.00609840e+07 7.55383657e+07 7.37941665e+07
6.55601694e+07 6.94762768e+07 6.94020253e+07 6.79599150e+07
9.01197424e+07 7.07884100e+07 6.57448518e+07]
[-3.01027878e+07 -2.61561201e+07 -1.99738050e+07 -3.41200658e+07
-2.17641120e+07 -2.82181061e+07 -3.33416228e+07 -2.22322033e+07
-3.16790431e+07 -2.60222408e+07 -1.06091162e+07 -2.66930280e+07
-3.15147018e+07 -3.27899921e+07 -5.51337622e+06 -7.92787609e+07
-2.28972506e+07 8.31130972e+06 -1.73146168e+07 -1.88485585e+07
-3.17792726e+07 -2.22752145e+07 -2.24287099e+07 -2.77525413e+07
-1.19866405e+07 -2.74196652e+07 -3.16416007e+07]
[-2.37867421e+08 -2.09369664e+08 -2.06728747e+08 -2.44344687e+08
-2.06054137e+08 -2.36646894e+08 -2.44292351e+08 -2.07554277e+08
-2.42824610e+08 -2.09390118e+08 -2.32758201e+08 -2.38970671e+08
-2.42782715e+08 -2.43556309e+08 -2.05820115e+08 -1.51223992e+08
-2.07881358e+08 -1.63949410e+08 -2.04620910e+08 -2.05596482e+08
-2.43141502e+08 -2.06516692e+08 -2.06755970e+08 -2.36300575e+08
-2.34025830e+08 -2.40103720e+08 -2.43191196e+08]
[-4.23949809e+08 -3.68081128e+08 -3.69707755e+08 -4.34642604e+08
-3.66119726e+08 -4.23190093e+08 -4.35332957e+08 -3.68616594e+08
-4.34286666e+08 -3.68188578e+08 -4.39151165e+08 -4.32137440e+08
-4.34390822e+08 -4.34562348e+08 -3.91835406e+08 -2.01972915e+08
-3.68361204e+08 -3.20728838e+08 -3.68517731e+08 -3.68622678e+08
-4.34804266e+08 -3.66496390e+08 -3.66697455e+08 -4.22593200e+08
-4.39872905e+08 -4.33665289e+08 -4.35070018e+08]
[-4.33627477e+08 -3.73737863e+08 -3.77384358e+08 -4.45270339e+08
-3.72709955e+08 -4.33007563e+08 -4.46321029e+08 -3.75368309e+08
-4.45487781e+08 -3.73859889e+08 -4.58368435e+08 -4.44729990e+08
-4.45813123e+08 -4.45655002e+08 -4.08710819e+08 -1.90573462e+08
-3.74624894e+08 -3.34922613e+08 -3.77006910e+08 -3.76456963e+08
-4.46179922e+08 -3.72928060e+08 -3.73043781e+08 -4.32086493e+08
-4.58832985e+08 -4.46133914e+08 -4.46493851e+08]
[-2.83784053e+08 -2.47561417e+08 -2.50306508e+08 -2.93334199e+08
-2.46712021e+08 -2.82945661e+08 -2.94305477e+08 -2.48704089e+08
-2.93432254e+08 -2.47634486e+08 -3.03704686e+08 -2.93283008e+08
-2.93960568e+08 -2.93792765e+08 -2.70389678e+08 -1.34268252e+08
-2.47854494e+08 -2.20506841e+08 -2.50229846e+08 -2.49577824e+08
-2.94198846e+08 -2.46774223e+08 -2.46851896e+08 -2.81941449e+08
-3.04317279e+08 -2.94189823e+08 -2.94378585e+08]
[-1.73297574e+08 -1.61246163e+08 -1.61894217e+08 -1.82441368e+08
-1.59678378e+08 -1.72140001e+08 -1.83050236e+08 -1.61145588e+08
-1.82120511e+08 -1.61248673e+08 -1.86023748e+08 -1.81762694e+08
-1.82674592e+08 -1.82681184e+08 -1.66133776e+08 -1.10918177e+08
-1.60606743e+08 -1.33896775e+08 -1.61433114e+08 -1.61116256e+08
-1.82822973e+08 -1.59704256e+08 -1.59929748e+08 -1.71272427e+08
-1.87197832e+08 -1.82449099e+08 -1.82790643e+08]
[-2.69140654e+08 -2.39334507e+08 -2.38161768e+08 -2.80983610e+08
-2.36131790e+08 -2.67942543e+08 -2.81218272e+08 -2.38030487e+08
-2.80217895e+08 -2.39267986e+08 -2.75985637e+08 -2.77281254e+08
-2.80526791e+08 -2.80816796e+08 -2.46055222e+08 -1.72852087e+08
-2.38000935e+08 -1.93446504e+08 -2.36612873e+08 -2.36872747e+08
-2.80652225e+08 -2.36341245e+08 -2.36833547e+08 -2.67439824e+08
-2.77818552e+08 -2.78819035e+08 -2.80568766e+08]
[-4.28736567e+08 -3.72656304e+08 -3.71845154e+08 -4.44833113e+08
-3.68655829e+08 -4.27615834e+08 -4.44981737e+08 -3.71292383e+08
-4.44137483e+08 -3.72603659e+08 -4.40922433e+08 -4.40073332e+08
-4.44175394e+08 -4.44515505e+08 -3.93402465e+08 -2.42252077e+08
-3.71559724e+08 -3.11580470e+08 -3.69696659e+08 -3.70081642e+08
-4.44306442e+08 -3.69121358e+08 -3.69692350e+08 -4.27134978e+08
-4.42755538e+08 -4.42312313e+08 -4.44320044e+08]
[-4.14182586e+08 -3.78692207e+08 -3.78789300e+08 -4.27326227e+08
-3.75851533e+08 -4.13524399e+08 -4.27472764e+08 -3.78086566e+08
-4.27042944e+08 -3.78605630e+08 -4.30413094e+08 -4.25660136e+08
-4.26987109e+08 -4.27135431e+08 -3.86981418e+08 -2.28059301e+08
-3.78542764e+08 -3.19346272e+08 -3.76961829e+08 -3.77372915e+08
-4.27112121e+08 -3.76343109e+08 -3.76712070e+08 -4.13185147e+08
-4.31631403e+08 -4.27204589e+08 -4.27208648e+08]
[-2.06871248e+08 -2.35479880e+08 -2.35247002e+08 -2.11835123e+08
-2.34585492e+08 -2.06722985e+08 -2.11810929e+08 -2.35330302e+08
-2.11833634e+08 -2.35343016e+08 -2.19161113e+08 -2.14459964e+08
-2.11752707e+08 -2.11719659e+08 -2.03629328e+08 -1.35896769e+08
-2.36099703e+08 -1.90085001e+08 -2.34073900e+08 -2.34808943e+08
-2.11895800e+08 -2.34953455e+08 -2.35038724e+08 -2.06762929e+08
-2.19601111e+08 -2.14446109e+08 -2.11929641e+08]
[ 7.19540487e+07 -1.09281322e+07 -8.48391444e+06 7.47839740e+07
-1.09556626e+07 7.20410192e+07 7.51829908e+07 -1.00375666e+07
7.50613453e+07 -1.07216492e+07 7.40563859e+07 7.12911927e+07
7.51749069e+07 7.51063108e+07 5.56919666e+07 -1.77353101e+07
-1.10981905e+07 1.45169472e+07 -7.59174295e+06 -8.87754286e+06
7.50698409e+07 -1.11866242e+07 -1.10643077e+07 7.16825732e+07
7.42623875e+07 7.25264799e+07 7.51901685e+07]
[ 2.40120509e+08 1.43719904e+08 1.47641528e+08 2.44529215e+08
1.43799885e+08 2.40673835e+08 2.45215920e+08 1.45456754e+08
2.45104436e+08 1.43937598e+08 2.48565107e+08 2.41416230e+08
2.45235930e+08 2.45015046e+08 2.12695808e+08 5.93110778e+07
1.44400214e+08 1.50697980e+08 1.48395326e+08 1.47027330e+08
2.45188954e+08 1.43614025e+08 1.43839527e+08 2.40332292e+08
2.48992084e+08 2.42955920e+08 2.45427285e+08]
[ 2.61714122e+08 1.81275148e+08 1.85322108e+08 2.67292611e+08
1.81364294e+08 2.62320660e+08 2.67999039e+08 1.83049034e+08
2.67936657e+08 1.81457715e+08 2.75171511e+08 2.65725773e+08
2.68065666e+08 2.67779260e+08 2.39241874e+08 7.99035878e+07
1.82202788e+08 1.79837057e+08 1.85966325e+08 1.84665738e+08
2.68024238e+08 1.81274953e+08 1.81460380e+08 2.61916077e+08
2.75546315e+08 2.66996326e+08 2.68271803e+08]
[ 2.08662632e+08 1.57735480e+08 1.60991733e+08 2.12796939e+08
1.58082565e+08 2.09275516e+08 2.13370666e+08 1.59299858e+08
2.13390041e+08 1.57848155e+08 2.20775119e+08 2.12179568e+08
2.13481322e+08 2.13196719e+08 1.93858100e+08 6.74599529e+07
1.58768541e+08 1.52431503e+08 1.61473080e+08 1.60586140e+08
2.13472355e+08 1.58031994e+08 1.58136031e+08 2.08947757e+08
2.20872223e+08 2.12963918e+08 2.13673163e+08]
[ 1.13916011e+08 8.87328043e+07 9.06171411e+07 1.15663777e+08
8.90688441e+07 1.14295289e+08 1.15993300e+08 8.96992629e+07
1.16064427e+08 8.87848415e+07 1.20909182e+08 1.15782330e+08
1.16111499e+08 1.15912555e+08 1.06655409e+08 3.59848743e+07
8.94379246e+07 8.57217784e+07 9.09193072e+07 9.04574428e+07
1.16101680e+08 8.90470173e+07 8.90869374e+07 1.14176766e+08
1.20861416e+08 1.16152018e+08 1.16209975e+08]
[ 2.68907969e+07 2.08776913e+07 2.15761800e+07 2.69784626e+07
2.11160730e+07 2.70743806e+07 2.70873266e+07 2.12658180e+07
2.71655710e+07 2.08935218e+07 2.94050020e+07 2.73829642e+07
2.71770270e+07 2.70831904e+07 2.58539003e+07 5.79129255e+06
2.11811672e+07 2.13088859e+07 2.17495242e+07 2.15754380e+07
2.71680979e+07 2.11080013e+07 2.11036845e+07 2.70674766e+07
2.93368083e+07 2.74191956e+07 2.71905851e+07]
[-1.66531293e+06 -2.28686323e+05 -1.40570296e+05 -1.92510001e+06
-1.27606445e+05 -1.62802227e+06 -1.91674700e+06 -1.51794279e+05
-1.87716240e+06 -2.34455091e+05 -1.33089029e+06 -1.67023820e+06
-1.87450465e+06 -1.90188159e+06 -9.29604169e+05 -1.62808648e+06
-1.47594529e+05 9.04796593e+04 -9.27692753e+04 -1.03025367e+05
-1.87500316e+06 -1.28598439e+05 -1.40764714e+05 -1.59275008e+06
-1.38814552e+06 -1.72075104e+06 -1.88276912e+06]
[-2.24870485e+06 -1.22913893e+06 -1.22931721e+06 -2.37437100e+06
-1.19381538e+06 -2.24043641e+06 -2.37383770e+06 -1.21327153e+06
-2.36316379e+06 -1.23052975e+06 -2.27020558e+06 -2.29043179e+06
-2.36166593e+06 -2.36892662e+06 -1.88576929e+06 -1.03633000e+06
-1.20589303e+06 -1.13415569e+06 -1.21771450e+06 -1.21121407e+06
-2.36149813e+06 -1.19568803e+06 -1.19841707e+06 -2.21994461e+06
-2.28590891e+06 -2.31077849e+06 -2.36553245e+06]
[-2.36304167e+04 -1.86632568e+04 -1.85459652e+04 -2.31857601e+04
-1.85181767e+04 -2.37392454e+04 -2.31828925e+04 -1.86261939e+04
-2.31004212e+04 -1.86580541e+04 -2.24112855e+04 -2.27896052e+04
-2.30862395e+04 -2.31384338e+04 -1.95406625e+04 -1.20626181e+04
-1.86326156e+04 -1.58081410e+04 -1.84061181e+04 -1.84859626e+04
-2.31134579e+04 -1.85225644e+04 -1.85522656e+04 -2.38450177e+04
-2.25054107e+04 -2.28575429e+04 -2.31235687e+04]
[ 8.60783982e-01 3.88796579e-02 -6.45709515e-01 -3.86559272e-01
6.30157857e-01 9.62698151e-02 -9.16570094e-02 7.50563751e-02
-2.60837131e-01 -5.79095237e-01 -9.93497450e-01 -9.10601194e-01
-5.98398479e-01 -9.38637083e-01 -5.79928077e-02 8.99002524e-01
2.88808739e-01 -9.42106882e-01 5.52094275e-01 5.46927381e-03
5.93953872e-01 1.24612425e-02 2.48758652e-01 -4.75608514e-01
-1.05251708e-01 -9.74708293e-01 -2.36691957e-01]
[-1.09879367e+04 -5.19733834e+04 -5.48481175e+04 -6.39044240e+03
-5.48086105e+04 -1.18264986e+04 -6.60561872e+03 -5.41925794e+04
-6.76324534e+03 -5.20627496e+04 -1.80466602e+04 -1.03497373e+04
-6.99987771e+03 -6.72342981e+03 -1.78936119e+04 2.59653271e+03
-5.41566273e+04 -4.68387133e+04 -5.59809009e+04 -5.55075552e+04
-7.39090450e+03 -5.43324409e+04 -5.44561742e+04 -1.09600269e+04
-1.77866765e+04 -6.50646375e+03 -7.27634746e+03]
[-2.40073899e+06 -2.65869461e+06 -2.72822570e+06 -2.43029749e+06
-2.69628814e+06 -2.41661474e+06 -2.44083761e+06 -2.70114675e+06
-2.45365374e+06 -2.65937986e+06 -2.78992929e+06 -2.54192770e+06
-2.45392282e+06 -2.44170118e+06 -2.61521473e+06 -7.28635795e+05
-2.70274810e+06 -2.54122615e+06 -2.74513208e+06 -2.73473546e+06
-2.45532013e+06 -2.69618184e+06 -2.69483667e+06 -2.41887638e+06
-2.77480080e+06 -2.52450526e+06 -2.45810342e+06]
[-1.47339132e+07 -1.29794246e+07 -1.31792920e+07 -1.51168780e+07
-1.30067558e+07 -1.47500016e+07 -1.51485686e+07 -1.30760362e+07
-1.51658295e+07 -1.29823207e+07 -1.59532241e+07 -1.52561282e+07
-1.51650820e+07 -1.51425037e+07 -1.42915096e+07 -5.68486096e+06
-1.30661298e+07 -1.20149827e+07 -1.31879170e+07 -1.31581765e+07
-1.51672705e+07 -1.30088006e+07 -1.30128705e+07 -1.47282894e+07
-1.59454127e+07 -1.52746357e+07 -1.51855276e+07]
[-2.41140152e+07 -1.60964997e+07 -1.60094375e+07 -2.51411726e+07
-1.58229567e+07 -2.40096857e+07 -2.51085854e+07 -1.59591871e+07
-2.50784764e+07 -1.60653151e+07 -2.42915364e+07 -2.44374658e+07
-2.50357164e+07 -2.50966627e+07 -2.09697217e+07 -1.00548267e+07
-1.59238420e+07 -1.44445351e+07 -1.58403025e+07 -1.58964915e+07
-2.50390669e+07 -1.58415340e+07 -1.58342788e+07 -2.38745513e+07
-2.42574434e+07 -2.46248873e+07 -2.50911141e+07]
[-4.30151076e+06 9.71785753e+06 1.16239311e+07 -5.11476339e+06
1.09496530e+07 -3.74808975e+06 -4.75954612e+06 1.09317274e+07
-4.50093461e+06 9.88655303e+06 3.95516944e+06 -1.70860605e+06
-4.34838449e+06 -4.74461732e+06 5.80034306e+06 -1.05041272e+07
1.08950509e+07 1.40180195e+07 1.24432210e+07 1.19133765e+07
-4.36381433e+06 1.08977591e+07 1.09391101e+07 -3.45301217e+06
4.00557672e+06 -2.21987484e+06 -4.43850571e+06]
[ 2.34505088e+07 4.19580502e+07 4.61167454e+07 2.30754947e+07
4.44095613e+07 2.44174385e+07 2.38343783e+07 4.45175841e+07
2.44760363e+07 4.22479149e+07 4.21661142e+07 2.98014202e+07
2.47438719e+07 2.38881377e+07 4.23275764e+07 -1.24920861e+07
4.43619939e+07 5.11169636e+07 4.77118147e+07 4.66437952e+07
2.46792732e+07 4.43003228e+07 4.43560586e+07 2.49642330e+07
4.20170872e+07 2.90154587e+07 2.46080694e+07]
[ 7.19063509e+07 7.69899999e+07 8.29092813e+07 7.23638999e+07
8.01496692e+07 7.32573018e+07 7.33682074e+07 8.04924137e+07
7.43196337e+07 7.73041589e+07 9.74317448e+07 8.04262069e+07
7.46328625e+07 7.35027744e+07 9.18740243e+07 -6.91690200e+06
8.00741118e+07 9.09873566e+07 8.50157039e+07 8.34352492e+07
7.44933889e+07 7.99417027e+07 7.99871799e+07 7.38934060e+07
9.71196062e+07 7.97360853e+07 7.44970824e+07]
[ 1.21982407e+08 9.62799512e+07 1.02577572e+08 1.22602714e+08
9.92726065e+07 1.23513153e+08 1.23563497e+08 9.98390745e+07
1.24635937e+08 9.65016451e+07 1.45271430e+08 1.28737083e+08
1.24860710e+08 1.23785527e+08 1.31988704e+08 2.08976989e+06
9.91639338e+07 1.14395625e+08 1.04651032e+08 1.02891347e+08
1.24635541e+08 9.89658243e+07 9.89803802e+07 1.24033614e+08
1.44754547e+08 1.28647477e+08 1.24765343e+08]
[ 8.45915736e+07 4.21884699e+07 4.66548890e+07 8.36823910e+07
4.42989481e+07 8.59688348e+07 8.41911860e+07 4.46002255e+07
8.51623574e+07 4.22131841e+07 9.64331854e+07 8.59143674e+07
8.52051654e+07 8.45297248e+07 8.47720986e+07 -1.32319442e+07
4.39310707e+07 6.39178441e+07 4.82145486e+07 4.67666457e+07
8.48965446e+07 4.39433546e+07 4.38850029e+07 8.62067716e+07
9.57879132e+07 8.62706619e+07 8.50801863e+07]
[-3.90853882e+07 -7.42240835e+07 -7.28590521e+07 -4.17839113e+07
-7.33404567e+07 -3.82642001e+07 -4.19537938e+07 -7.37126298e+07
-4.11654844e+07 -7.43791301e+07 -4.07063893e+07 -4.23792110e+07
-4.12921718e+07 -4.14728140e+07 -4.04521421e+07 -5.17155944e+07
-7.40766555e+07 -4.81735132e+07 -7.20455235e+07 -7.29153960e+07
-4.16833484e+07 -7.36169597e+07 -7.37617950e+07 -3.82263824e+07
-4.12392107e+07 -4.19976297e+07 -4.15870562e+07]
[-1.10713889e+08 -1.28538324e+08 -1.29794459e+08 -1.16519869e+08
-1.28377362e+08 -1.09982327e+08 -1.17140067e+08 -1.29330970e+08
-1.16544569e+08 -1.28803520e+08 -1.26040052e+08 -1.19084600e+08
-1.16839691e+08 -1.16679211e+08 -1.16030964e+08 -6.41895862e+07
-1.29163482e+08 -1.08266331e+08 -1.29735122e+08 -1.29787874e+08
-1.17224355e+08 -1.28546754e+08 -1.28692183e+08 -1.09632230e+08
-1.26518858e+08 -1.18826705e+08 -1.17196720e+08]
[-7.64925400e+07 -8.38828279e+07 -8.52296778e+07 -8.14624658e+07
-8.36721392e+07 -7.57835081e+07 -8.21336481e+07 -8.45785151e+07
-8.13983553e+07 -8.41297063e+07 -8.88582552e+07 -8.29216485e+07
-8.18406418e+07 -8.17174197e+07 -7.98615686e+07 -4.61750188e+07
-8.40879170e+07 -7.15669442e+07 -8.54307800e+07 -8.51356426e+07
-8.21225938e+07 -8.36905729e+07 -8.38361675e+07 -7.50825850e+07
-8.95648164e+07 -8.27090899e+07 -8.21042543e+07]
[ 3.10294823e+07 2.06267677e+07 2.15614661e+07 2.78180297e+07
2.18407451e+07 3.20587770e+07 2.74920210e+07 2.13748098e+07
2.85594688e+07 2.05039165e+07 3.13065856e+07 2.90235686e+07
2.80091021e+07 2.78019413e+07 3.03768845e+07 -1.90718252e+07
2.18616544e+07 2.88321977e+07 2.17637370e+07 2.18675895e+07
2.78778257e+07 2.19483086e+07 2.17181790e+07 3.28701154e+07
2.99599032e+07 2.91457965e+07 2.80337799e+07]
[ 2.54666269e+07 2.08408964e+07 2.38628676e+07 2.05826425e+07
2.34349570e+07 2.68145491e+07 2.06334833e+07 2.29350867e+07
2.18531721e+07 2.08376998e+07 3.39638956e+07 2.47829926e+07
2.13856523e+07 2.08917861e+07 3.31418388e+07 -4.32348274e+07
2.31253079e+07 3.82369872e+07 2.48965443e+07 2.45376902e+07
2.13275932e+07 2.34954553e+07 2.30717004e+07 2.75057228e+07
3.20767674e+07 2.43969392e+07 2.15923357e+07]
[-1.86019056e+08 -1.48096825e+08 -1.44717564e+08 -1.95594784e+08
-1.44108367e+08 -1.84751033e+08 -1.95387326e+08 -1.45561187e+08
-1.94173343e+08 -1.48000901e+08 -1.77205668e+08 -1.87901554e+08
-1.94347907e+08 -1.95024167e+08 -1.54564842e+08 -1.39985218e+08
-1.45655557e+08 -1.08234611e+08 -1.42710404e+08 -1.43395629e+08
-1.94416508e+08 -1.44267823e+08 -1.44845269e+08 -1.84209323e+08
-1.79281085e+08 -1.89607899e+08 -1.94284215e+08]
[-3.51785059e+08 -2.93515632e+08 -2.91618521e+08 -3.64840445e+08
-2.89550979e+08 -3.50725065e+08 -3.64714646e+08 -2.91654277e+08
-3.63867688e+08 -2.93378133e+08 -3.53090607e+08 -3.58015858e+08
-3.63810071e+08 -3.64330684e+08 -3.13345536e+08 -2.01936744e+08
-2.91919762e+08 -2.41263793e+08 -2.89385073e+08 -2.90038487e+08
-3.63894570e+08 -2.89941109e+08 -2.90404077e+08 -3.50163834e+08
-3.54573795e+08 -3.60246694e+08 -3.63969418e+08]
[-3.29296185e+08 -3.03613361e+08 -3.03461089e+08 -3.39080554e+08
-3.01438677e+08 -3.28844985e+08 -3.39089720e+08 -3.03084831e+08
-3.38837077e+08 -3.03485347e+08 -3.40516978e+08 -3.37781925e+08
-3.38718226e+08 -3.38855478e+08 -3.07197099e+08 -1.79537382e+08
-3.03509820e+08 -2.55600034e+08 -3.01870416e+08 -3.02428001e+08
-3.38816640e+08 -3.01863695e+08 -3.02039208e+08 -3.28495824e+08
-3.41117000e+08 -3.39017196e+08 -3.38996069e+08]
[-1.27636112e+08 -1.69616469e+08 -1.69729417e+08 -1.30254670e+08
-1.69626403e+08 -1.27722990e+08 -1.30216233e+08 -1.69838019e+08
-1.30530562e+08 -1.69486493e+08 -1.40022609e+08 -1.34413591e+08
-1.30403269e+08 -1.30237828e+08 -1.33926600e+08 -8.76049712e+07
-1.70584303e+08 -1.36642736e+08 -1.68975625e+08 -1.69712749e+08
-1.30523874e+08 -1.69928022e+08 -1.69831549e+08 -1.27778963e+08
-1.39803483e+08 -1.34020003e+08 -1.30615582e+08]
[ 8.28936865e+07 -2.53765822e+06 -1.17372780e+06 8.48410923e+07
-3.22744622e+06 8.28724162e+07 8.51019641e+07 -2.25165816e+06
8.46787794e+07 -2.38598602e+06 7.76666046e+07 7.95172665e+07
8.47978572e+07 8.49395606e+07 5.80280095e+07 3.92121187e+05
-3.19692238e+06 1.47352253e+07 -6.91170597e+05 -1.73014042e+06
8.47257913e+07 -3.43831075e+06 -3.19657332e+06 8.25686475e+07
7.82319147e+07 8.08857093e+07 8.47744212e+07]
[ 1.91752671e+08 1.06148236e+08 1.08757649e+08 1.94180234e+08
1.05857610e+08 1.92187623e+08 1.94680013e+08 1.07225499e+08
1.94351755e+08 1.06307714e+08 1.92329463e+08 1.89885740e+08
1.94460816e+08 1.94428882e+08 1.62547183e+08 4.97032015e+07
1.06375330e+08 1.10449784e+08 1.09217470e+08 1.08197757e+08
1.94447281e+08 1.05695302e+08 1.05961403e+08 1.91883275e+08
1.92803559e+08 1.91249640e+08 1.94583520e+08]
[ 1.67960252e+08 1.11403174e+08 1.13967139e+08 1.71464673e+08
1.11367599e+08 1.68268904e+08 1.71938620e+08 1.12512317e+08
1.71786624e+08 1.11527347e+08 1.74546835e+08 1.69452936e+08
1.71906706e+08 1.71754544e+08 1.50239073e+08 5.03398299e+07
1.11923680e+08 1.10432413e+08 1.14417667e+08 1.13526606e+08
1.71899778e+08 1.11292870e+08 1.11470158e+08 1.67933764e+08
1.74835526e+08 1.70388861e+08 1.71991804e+08]
[ 1.16529196e+08 8.76661971e+07 8.97078636e+07 1.19144488e+08
8.79607686e+07 1.16781854e+08 1.19513215e+08 8.86669458e+07
1.19564812e+08 8.77327041e+07 1.24321657e+08 1.18900689e+08
1.19655610e+08 1.19431588e+08 1.08704302e+08 3.54177467e+07
8.83564944e+07 8.54029241e+07 9.01099687e+07 8.95118160e+07
1.19652134e+08 8.79395892e+07 8.80079718e+07 1.16607409e+08
1.24317253e+08 1.19418315e+08 1.19706857e+08]
[ 4.97080096e+07 4.08922737e+07 4.21057271e+07 5.02278031e+07
4.13419266e+07 4.99209181e+07 5.04435671e+07 4.15911867e+07
5.05758944e+07 4.09183846e+07 5.41659085e+07 5.08452554e+07
5.06145320e+07 5.04291299e+07 4.80792872e+07 1.20570638e+07
4.14781119e+07 4.06182469e+07 4.24174237e+07 4.21357980e+07
5.06129683e+07 4.13275671e+07 4.13359536e+07 4.99352156e+07
5.39774349e+07 5.09517535e+07 5.06267938e+07]
[ 1.13814695e+06 3.34530049e+06 3.88172125e+06 7.42371043e+05
3.71401639e+06 1.28103063e+06 8.23790621e+05 3.70124286e+06
9.56117051e+05 3.35533950e+06 3.44370093e+06 1.69715879e+06
9.68481112e+05 8.51984815e+05 3.63530756e+06 -4.15207892e+06
3.68170082e+06 5.24057645e+06 4.10273954e+06 3.97916573e+06
9.62638900e+05 3.70951635e+06 3.68796225e+06 1.38049588e+06
3.27550698e+06 1.58381560e+06 9.42734552e+05]
[-9.78745234e+06 -5.21403700e+06 -5.12304058e+06 -1.01892142e+07
-5.02632964e+06 -9.76321768e+06 -1.01787510e+07 -5.10749905e+06
-1.01085134e+07 -5.21751910e+06 -9.27013985e+06 -9.68013574e+06
-1.01026432e+07 -1.01522749e+07 -7.59216782e+06 -5.12236203e+06
-5.08158545e+06 -4.28546873e+06 -5.03643624e+06 -5.04134101e+06
-1.01039780e+07 -5.02865105e+06 -5.04677964e+06 -9.68392146e+06
-9.37349242e+06 -9.78950720e+06 -1.01266341e+07]
[-2.66827611e+06 -1.27900629e+06 -1.27391166e+06 -2.79389177e+06
-1.23264138e+06 -2.66572073e+06 -2.79280924e+06 -1.25720939e+06
-2.77630877e+06 -1.28059953e+06 -2.65196176e+06 -2.69344317e+06
-2.77509892e+06 -2.78550102e+06 -2.16326350e+06 -1.16808882e+06
-1.24798897e+06 -1.18201995e+06 -1.25875464e+06 -1.25106021e+06
-2.77342076e+06 -1.23488648e+06 -1.23835809e+06 -2.64369875e+06
-2.67292759e+06 -2.71995272e+06 -2.77951856e+06]
[-1.62886269e+05 -9.98019450e+04 -9.89179724e+04 -1.58009986e+05
-9.84833267e+04 -1.64026570e+05 -1.57927904e+05 -9.94662750e+04
-1.57103134e+05 -1.00000948e+05 -1.49422816e+05 -1.53693947e+05
-1.56995572e+05 -1.57572524e+05 -1.29393850e+05 -6.97481980e+04
-9.90872061e+04 -9.26730245e+04 -9.80167168e+04 -9.83039801e+04
-1.56975006e+05 -9.83350471e+04 -9.86120843e+04 -1.64597574e+05
-1.50802927e+05 -1.54305871e+05 -1.57319871e+05]
[-3.10045047e+04 -7.94704463e+03 -7.80364882e+03 -3.60628149e+04
-7.18740055e+03 -3.03052285e+04 -3.61765023e+04 -7.36749115e+03
-3.61724307e+04 -7.87342189e+03 -3.79054643e+04 -3.64873173e+04
-3.61768828e+04 -3.61134397e+04 -3.47824891e+04 -3.56239703e+02
-7.49567155e+03 -1.65153336e+04 -7.82377323e+03 -7.53698722e+03
-3.58962347e+04 -7.35486964e+03 -7.23597028e+03 -3.04530549e+04
-3.69851791e+04 -3.72998164e+04 -3.60160239e+04]
[-8.59646873e+03 -1.75737617e+04 -1.84577488e+04 -8.80524385e+03
-1.81534668e+04 -8.70063310e+03 -8.86492144e+03 -1.81159848e+04
-8.99090099e+03 -1.76258672e+04 -1.42953830e+04 -1.06257275e+04
-9.01937944e+03 -8.91862664e+03 -1.33715555e+04 -1.29981999e+03
-1.81032566e+04 -1.77822486e+04 -1.87614250e+04 -1.85348716e+04
-9.08433236e+03 -1.81042319e+04 -1.81100014e+04 -8.54591587e+03
-1.42744720e+04 -9.82533451e+03 -9.06682270e+03]
[-2.80587353e+06 -3.23420154e+06 -3.33310981e+06 -2.86017714e+06
-3.28720605e+06 -2.82737443e+06 -2.87501713e+06 -3.29350403e+06
-2.89366165e+06 -3.23722781e+06 -3.42757265e+06 -3.04288358e+06
-2.89419558e+06 -2.87671286e+06 -3.20654316e+06 -7.45026271e+05
-3.29527672e+06 -3.16166133e+06 -3.35784108e+06 -3.34218212e+06
-2.89601368e+06 -3.28733314e+06 -3.28595268e+06 -2.83100760e+06
-3.40285257e+06 -3.01129470e+06 -2.89862052e+06]
[-2.86138104e+07 -2.51699897e+07 -2.55963630e+07 -2.93407310e+07
-2.52564790e+07 -2.86516200e+07 -2.94145254e+07 -2.53843690e+07
-2.94591613e+07 -2.51710660e+07 -3.10106032e+07 -2.96258679e+07
-2.94631583e+07 -2.94042508e+07 -2.78105301e+07 -1.03202403e+07
-2.53607965e+07 -2.34573858e+07 -2.56320529e+07 -2.55700883e+07
-2.94625822e+07 -2.52602195e+07 -2.52611624e+07 -2.86089745e+07
-3.09565546e+07 -2.96657775e+07 -2.95012855e+07]
[-5.47764894e+07 -4.11295675e+07 -4.13926253e+07 -5.64559487e+07
-4.09010195e+07 -5.47022090e+07 -5.64948761e+07 -4.11586150e+07
-5.65073497e+07 -4.10796193e+07 -5.64030275e+07 -5.57838483e+07
-5.64652423e+07 -5.64735172e+07 -4.96097237e+07 -2.06651449e+07
-4.10988242e+07 -3.77413217e+07 -4.12330901e+07 -4.12503781e+07
-5.64555188e+07 -4.09200454e+07 -4.09042502e+07 -5.45285165e+07
-5.62699025e+07 -5.61203151e+07 -5.65661283e+07]
[-5.28307011e+07 -2.62858121e+07 -2.51264945e+07 -5.44994528e+07
-2.52062535e+07 -5.24808510e+07 -5.42439367e+07 -2.54240553e+07
-5.40823642e+07 -2.61070165e+07 -4.73849871e+07 -5.11531129e+07
-5.39094397e+07 -5.42277816e+07 -3.96566201e+07 -2.39810764e+07
-2.53588771e+07 -2.17455233e+07 -2.43942284e+07 -2.47670648e+07
-5.38880498e+07 -2.52382522e+07 -2.51649715e+07 -5.20927827e+07
-4.71944104e+07 -5.18669362e+07 -5.40845521e+07]
[-4.40647850e+07 -8.54652126e+06 -5.57552257e+06 -4.49630688e+07
-6.52371333e+06 -4.34320450e+07 -4.43378105e+07 -6.62631757e+06
-4.39072978e+07 -8.22955546e+06 -2.86593106e+07 -3.80926447e+07
-4.35947307e+07 -4.43154067e+07 -2.09656432e+07 -2.86816828e+07
-6.61057605e+06 1.16763761e+05 -4.16130397e+06 -5.00858532e+06
-4.36011441e+07 -6.56697182e+06 -6.43644782e+06 -4.27516178e+07
-2.85309267e+07 -3.92060662e+07 -4.38684428e+07]
[ 2.32503392e+07 3.50031974e+07 3.91526738e+07 2.36750659e+07
3.71288917e+07 2.40867469e+07 2.44696362e+07 3.74164435e+07
2.50016268e+07 3.53346295e+07 4.25463914e+07 3.05702785e+07
2.53372301e+07 2.45081201e+07 4.09751825e+07 -1.00548166e+07
3.71971087e+07 4.55437412e+07 4.07873269e+07 3.94919328e+07
2.52656422e+07 3.70266215e+07 3.71975348e+07 2.47728767e+07
4.27654793e+07 2.98117234e+07 2.50682600e+07]
[ 1.15568713e+08 7.98998018e+07 8.37361652e+07 1.16587102e+08
8.11413530e+07 1.16496557e+08 1.17226486e+08 8.18620399e+07
1.17641478e+08 8.00837205e+07 1.28190032e+08 1.19221089e+08
1.17839046e+08 1.17286783e+08 1.12883246e+08 2.23050661e+07
8.13975564e+07 8.89634908e+07 8.49430328e+07 8.35566106e+07
1.17666756e+08 8.09575674e+07 8.11260857e+07 1.16974641e+08
1.28475555e+08 1.19518393e+08 1.17651087e+08]
[ 1.40799466e+08 6.88890835e+07 7.12811071e+07 1.42225415e+08
6.88655493e+07 1.41568071e+08 1.42452036e+08 6.97110082e+07
1.42697381e+08 6.88805977e+07 1.44098520e+08 1.40036747e+08
1.42674494e+08 1.42573387e+08 1.21900914e+08 3.18720853e+07
6.91365799e+07 7.91121117e+07 7.18457849e+07 7.05865105e+07
1.42401729e+08 6.86633342e+07 6.87834287e+07 1.41645204e+08
1.44423960e+08 1.41144147e+08 1.42500455e+08]
[ 1.47078615e+08 6.08206256e+07 6.14216015e+07 1.48320899e+08
5.97726321e+07 1.47517659e+08 1.48102742e+08 6.05116792e+07
1.48251746e+08 6.06167113e+07 1.41541074e+08 1.42730267e+08
1.48010520e+08 1.48270920e+08 1.17542912e+08 3.91617791e+07
6.01229501e+07 6.71552968e+07 6.12173282e+07 6.04754477e+07
1.47694196e+08 5.96778448e+07 5.97014454e+07 1.47355201e+08
1.41641818e+08 1.44366071e+08 1.47868002e+08]
[ 1.66017142e+08 8.96957839e+07 8.96783888e+07 1.66447553e+08
8.86179960e+07 1.66596144e+08 1.66088857e+08 8.92204395e+07
1.66336332e+08 8.94019298e+07 1.58291355e+08 1.60863337e+08
1.65942103e+08 1.66230821e+08 1.35264579e+08 5.24317894e+07
8.91614731e+07 8.77822419e+07 8.90951895e+07 8.88697650e+07
1.65677739e+08 8.86453980e+07 8.85993862e+07 1.66682482e+08
1.57998384e+08 1.62493479e+08 1.65894286e+08]
[ 2.13153606e+08 1.53946456e+08 1.55391893e+08 2.14257506e+08
1.53910612e+08 2.13916954e+08 2.14095755e+08 1.54572488e+08
2.14753258e+08 1.53725174e+08 2.15765205e+08 2.12154488e+08
2.14273348e+08 2.14235712e+08 1.91356235e+08 6.33820809e+07
1.54690673e+08 1.47805824e+08 1.55092141e+08 1.54958724e+08
2.14145491e+08 1.54062253e+08 1.53913543e+08 2.14273130e+08
2.14829401e+08 2.13412005e+08 2.14411404e+08]
[ 2.57967814e+08 2.10709903e+08 2.14746660e+08 2.59527675e+08
2.12297067e+08 2.59088192e+08 2.59789019e+08 2.13069362e+08
2.60863512e+08 2.10649723e+08 2.74408791e+08 2.61561763e+08
2.60363669e+08 2.59881208e+08 2.47383196e+08 6.06411952e+07
2.13110441e+08 2.07661497e+08 2.15194343e+08 2.14763722e+08
2.60373625e+08 2.12482885e+08 2.12199936e+08 2.59549768e+08
2.72738631e+08 2.62296317e+08 2.60749641e+08]
[ 1.64084589e+08 1.40580105e+08 1.45897827e+08 1.63365198e+08
1.43529389e+08 1.65282386e+08 1.63895613e+08 1.43837340e+08
1.65114091e+08 1.40620260e+08 1.85737995e+08 1.68562747e+08
1.64757738e+08 1.64025398e+08 1.69015842e+08 6.65543219e+06
1.43666704e+08 1.51200886e+08 1.47248694e+08 1.46393890e+08
1.64806454e+08 1.43597072e+08 1.43164242e+08 1.65624576e+08
1.83682784e+08 1.68492219e+08 1.65177601e+08]
[-4.06740221e+07 -3.51244553e+07 -3.06069939e+07 -4.65880728e+07
-3.16111055e+07 -3.94867256e+07 -4.60615482e+07 -3.21638803e+07
-4.51015010e+07 -3.49966682e+07 -2.66753676e+07 -4.06811622e+07
-4.52169848e+07 -4.58933844e+07 -2.23061680e+07 -7.91975783e+07
-3.25391047e+07 -5.24560308e+06 -2.86781127e+07 -2.97098254e+07
-4.52074639e+07 -3.17703264e+07 -3.22032520e+07 -3.91615699e+07
-2.83735901e+07 -4.16540988e+07 -4.50074626e+07]
[-1.96967659e+08 -1.79631162e+08 -1.77217174e+08 -2.05595723e+08
-1.76776488e+08 -1.96121090e+08 -2.05294181e+08 -1.77843409e+08
-2.04760140e+08 -1.79459251e+08 -1.95045865e+08 -2.01526199e+08
-2.04682783e+08 -2.05093630e+08 -1.76040359e+08 -1.31950136e+08
-1.78326169e+08 -1.39320467e+08 -1.75351154e+08 -1.76274780e+08
-2.04737899e+08 -1.77125332e+08 -1.77356007e+08 -1.95713180e+08
-1.95853705e+08 -2.02723893e+08 -2.04790536e+08]
[-1.65076815e+08 -1.83182471e+08 -1.82552143e+08 -1.72060488e+08
-1.82036424e+08 -1.64548579e+08 -1.71929833e+08 -1.82649496e+08
-1.71997332e+08 -1.83039229e+08 -1.75890192e+08 -1.73607211e+08
-1.71877751e+08 -1.71892103e+08 -1.63767041e+08 -1.06820263e+08
-1.83298244e+08 -1.47897482e+08 -1.81375406e+08 -1.82121365e+08
-1.71969708e+08 -1.82428461e+08 -1.82370895e+08 -1.64220463e+08
-1.75859117e+08 -1.73888582e+08 -1.72082420e+08]
[-4.91980301e+07 -1.09786759e+08 -1.09936062e+08 -5.22422276e+07
-1.10286949e+08 -4.90700664e+07 -5.21903788e+07 -1.10064524e+08
-5.27338933e+07 -1.09659869e+08 -6.51528198e+07 -5.80898430e+07
-5.26142447e+07 -5.23267719e+07 -6.88152797e+07 -4.92016585e+07
-1.10840624e+08 -8.58447737e+07 -1.09474346e+08 -1.10158659e+08
-5.26932796e+07 -1.10592325e+08 -1.10327012e+08 -4.90187280e+07
-6.45505727e+07 -5.73158518e+07 -5.27950948e+07]
[ 5.88746593e+07 -1.81212542e+07 -1.77233284e+07 5.82587554e+07
-1.89918696e+07 5.90015669e+07 5.83802277e+07 -1.82298889e+07
5.77722322e+07 -1.79988229e+07 4.58762754e+07 5.18712847e+07
5.78700963e+07 5.81671989e+07 2.99986173e+07 -1.47025451e+05
-1.89796862e+07 -5.27971770e+06 -1.75125738e+07 -1.81975783e+07
5.78411636e+07 -1.92045448e+07 -1.89010944e+07 5.88141240e+07
4.65379159e+07 5.30758753e+07 5.78169324e+07]
[ 8.94098895e+07 3.36699809e+07 3.48730222e+07 8.94349977e+07
3.33817915e+07 8.97141586e+07 8.96951644e+07 3.41478217e+07
8.93125366e+07 3.38013139e+07 8.40109669e+07 8.53520180e+07
8.94032472e+07 8.94929290e+07 6.76819019e+07 1.84552198e+07
3.36057218e+07 3.86085574e+07 3.51800203e+07 3.45638230e+07
8.94216859e+07 3.32313656e+07 3.34853571e+07 8.95066046e+07
8.44211263e+07 8.61634382e+07 8.94085520e+07]
[ 5.69007808e+07 3.10939466e+07 3.22946403e+07 5.78351855e+07
3.12083557e+07 5.70173909e+07 5.80796713e+07 3.16797901e+07
5.79488919e+07 3.11698967e+07 5.74120672e+07 5.61221448e+07
5.80517705e+07 5.79771020e+07 4.78342126e+07 1.22952499e+07
3.13685539e+07 3.25838592e+07 3.26551390e+07 3.21731802e+07
5.80675413e+07 3.11381751e+07 3.12722062e+07 5.68238892e+07
5.75403533e+07 5.65254565e+07 5.80132513e+07]
[ 1.16663144e+07 8.94923316e+06 9.89372216e+06 1.18535995e+07
9.40895836e+06 1.17420088e+07 1.20125174e+07 9.51918930e+06
1.21190363e+07 8.99225162e+06 1.45634363e+07 1.22665756e+07
1.21922586e+07 1.20263665e+07 1.24744797e+07 -2.68452804e+06
9.41794529e+06 1.11015273e+07 1.02855900e+07 9.98178539e+06
1.22019980e+07 9.38734777e+06 9.41679688e+06 1.17520683e+07
1.44682243e+07 1.22764802e+07 1.21224040e+07]
[-8.40741282e+06 -2.76565294e+05 3.07994022e+05 -9.94079102e+06
3.66419634e+05 -8.17173719e+06 -9.83280701e+06 2.46240261e+05
-9.66051494e+06 -2.66128086e+05 -7.05287640e+06 -8.70155999e+06
-9.62959254e+06 -9.79598581e+06 -5.14724837e+06 -8.73799132e+06
2.72930314e+05 1.36055557e+06 6.16840730e+05 5.46820066e+05
-9.61775568e+06 3.42056994e+05 3.27982278e+05 -7.94038600e+06
-7.30059585e+06 -8.96057119e+06 -9.68034887e+06]
[-2.05973959e+07 -1.05297313e+07 -1.02206925e+07 -2.18223654e+07
-1.00562895e+07 -2.04334410e+07 -2.17790527e+07 -1.02213902e+07
-2.16262059e+07 -1.05263667e+07 -1.92716604e+07 -2.04430136e+07
-2.16141517e+07 -2.17329686e+07 -1.57961694e+07 -1.13601591e+07
-1.01717522e+07 -8.23395967e+06 -9.99995047e+06 -1.00315440e+07
-2.16123735e+07 -1.00655063e+07 -1.00956599e+07 -2.02245301e+07
-1.94811322e+07 -2.07244050e+07 -2.16617310e+07]
[-1.19702598e+07 -6.42548230e+06 -6.35366175e+06 -1.22694271e+07
-6.25636044e+06 -1.19543860e+07 -1.22645684e+07 -6.34428808e+06
-1.21956437e+07 -6.43120161e+06 -1.12459950e+07 -1.16464543e+07
-1.21902239e+07 -1.22373466e+07 -9.19580647e+06 -5.25957285e+06
-6.30942926e+06 -5.50349622e+06 -6.27566243e+06 -6.27777006e+06
-1.21900078e+07 -6.25498840e+06 -6.27277488e+06 -1.18816566e+07
-1.13419300e+07 -1.17673589e+07 -1.22145243e+07]
[-1.21376233e+06 -6.38754571e+05 -6.32043991e+05 -1.26336091e+06
-6.20079764e+05 -1.20949076e+06 -1.26300297e+06 -6.29901354e+05
-1.25575682e+06 -6.39011711e+05 -1.17162044e+06 -1.19708318e+06
-1.25578291e+06 -1.26032053e+06 -9.47303018e+05 -5.29144977e+05
-6.25732812e+05 -5.34886567e+05 -6.25053627e+05 -6.23428903e+05
-1.25502503e+06 -6.20407085e+05 -6.21875714e+05 -1.20013371e+06
-1.18230932e+06 -1.21059621e+06 -1.25760300e+06]
[ 3.54890525e+05 3.45694904e+05 3.46801526e+05 3.53877042e+05
3.46100758e+05 3.55981571e+05 3.54380498e+05 3.46942224e+05
3.54529832e+05 3.45293128e+05 3.52484941e+05 3.52264175e+05
3.54187519e+05 3.53894575e+05 3.26035753e+05 1.69559846e+05
3.47841257e+05 2.92753768e+05 3.45549701e+05 3.47029551e+05
3.54713421e+05 3.46227441e+05 3.46517464e+05 3.57080334e+05
3.51127676e+05 3.53152652e+05 3.54793647e+05]
[-9.22178148e-01 -9.44862986e-01 3.23135623e-01 9.32541128e-01
9.77555279e-01 8.35102641e-01 3.04025355e-01 5.56686182e-01
-2.21706480e-01 8.70670289e-01 5.22400553e-01 9.63731482e-01
-2.01696272e-01 -2.57506473e-01 8.37802699e-01 -4.91545355e-01
7.91025537e-01 -9.52354862e-01 -7.75255732e-01 9.16045489e-02
-1.39080579e-01 2.58147060e-01 -3.78692024e-01 4.26444972e-01
-1.41360180e-01 8.84897908e-02 3.81573398e-03]
[-9.05784386e-01 2.76523141e-01 4.39315685e-01 4.21734246e-01
-1.45568337e-01 8.26627725e-01 -8.79867609e-02 3.19495232e-01
-9.00710070e-01 -8.95867213e-01 -8.93531370e-01 1.40454057e-02
-8.34605093e-01 3.93275823e-01 -3.27834151e-01 -7.71760009e-01
-6.41485078e-01 -7.37072783e-01 8.30805296e-01 5.24913871e-01
-2.15290171e-01 7.60244298e-01 -9.58891234e-01 4.49977746e-01
-3.77941681e-01 5.42779034e-01 -5.61928708e-01]
[-4.58103148e+06 -4.87094241e+06 -4.99113419e+06 -4.64471078e+06
-4.93599455e+06 -4.60172254e+06 -4.66216330e+06 -4.94592672e+06
-4.68525284e+06 -4.87267829e+06 -5.20536523e+06 -4.81271248e+06
-4.68619873e+06 -4.66565900e+06 -4.81614266e+06 -1.38305724e+06
-4.94684186e+06 -4.60220318e+06 -5.01693798e+06 -5.00188194e+06
-4.68736654e+06 -4.93459311e+06 -4.93230786e+06 -4.59877217e+06
-5.17522917e+06 -4.79092988e+06 -4.69263450e+06]
[-4.11945458e+07 -3.60214099e+07 -3.66403343e+07 -4.22983363e+07
-3.61418658e+07 -4.12334013e+07 -4.24007349e+07 -3.63307826e+07
-4.24701932e+07 -3.60210176e+07 -4.45978215e+07 -4.26572948e+07
-4.24777512e+07 -4.23939407e+07 -4.00003080e+07 -1.47266048e+07
-3.62891594e+07 -3.35819535e+07 -3.66945217e+07 -3.66009922e+07
-4.24760018e+07 -3.61476150e+07 -3.61458401e+07 -4.11512230e+07
-4.45223798e+07 -4.27421404e+07 -4.25317326e+07]
[-8.71020465e+07 -7.00562487e+07 -7.08731587e+07 -8.93878168e+07
-7.00033620e+07 -8.71211191e+07 -8.95237403e+07 -7.03929756e+07
-8.96179735e+07 -6.99989176e+07 -9.14615041e+07 -8.91771155e+07
-8.95816600e+07 -8.94997649e+07 -8.14749452e+07 -3.13391529e+07
-7.03040693e+07 -6.50266899e+07 -7.07963048e+07 -7.07312128e+07
-8.95666822e+07 -7.00226912e+07 -6.99981245e+07 -8.69478266e+07
-9.12193441e+07 -8.95872644e+07 -8.97273815e+07]
[-1.24234579e+08 -9.02325724e+07 -9.03065863e+07 -1.27552032e+08
-8.95484521e+07 -1.24063901e+08 -1.27499107e+08 -9.00385694e+07
-1.27556169e+08 -9.00173952e+07 -1.24966540e+08 -1.25023027e+08
-1.27395597e+08 -1.27503761e+08 -1.10196600e+08 -4.77255406e+07
-8.99025168e+07 -8.18845027e+07 -8.97635279e+07 -8.99310741e+07
-1.27347533e+08 -8.95799489e+07 -8.94618545e+07 -1.23639071e+08
-1.24512626e+08 -1.25992952e+08 -1.27658364e+08]
[-1.47804109e+08 -9.79925946e+07 -9.69817197e+07 -1.51130749e+08
-9.65676403e+07 -1.47474241e+08 -1.50790780e+08 -9.70835523e+07
-1.50711298e+08 -9.76312567e+07 -1.42220314e+08 -1.45562865e+08
-1.50397308e+08 -1.50805324e+08 -1.23935035e+08 -6.05386667e+07
-9.69016309e+07 -8.63154888e+07 -9.58740934e+07 -9.63513889e+07
-1.50340244e+08 -9.65986255e+07 -9.63763739e+07 -1.46697268e+08
-1.41677807e+08 -1.47030947e+08 -1.50802942e+08]
[-1.03019648e+08 -7.07206158e+07 -6.94249633e+07 -1.05423464e+08
-6.95214285e+07 -1.02715260e+08 -1.04982751e+08 -6.97652522e+07
-1.04975649e+08 -7.03598620e+07 -9.83563738e+07 -1.00934826e+08
-1.04622130e+08 -1.05022929e+08 -8.67735326e+07 -4.25025224e+07
-6.96812448e+07 -6.10877014e+07 -6.83272527e+07 -6.90232154e+07
-1.04611982e+08 -6.95811184e+07 -6.92731780e+07 -1.01899718e+08
-9.75212207e+07 -1.02028191e+08 -1.05070390e+08]
[-1.37533405e+07 -2.62976596e+07 -2.53377055e+07 -1.48390117e+07
-2.60708945e+07 -1.33740017e+07 -1.45502900e+07 -2.58638605e+07
-1.47067795e+07 -2.60753561e+07 -1.48437309e+07 -1.45530050e+07
-1.44914546e+07 -1.46037519e+07 -1.65391571e+07 -9.09967805e+06
-2.59752274e+07 -1.91468554e+07 -2.46703226e+07 -2.54903969e+07
-1.45673816e+07 -2.61665458e+07 -2.58400200e+07 -1.27752915e+07
-1.39103903e+07 -1.46683775e+07 -1.48755056e+07]
[ 9.87581740e+07 3.96062192e+07 4.03387756e+07 9.95192464e+07
3.88558626e+07 9.91149616e+07 9.96100271e+07 3.95729146e+07
9.94163322e+07 3.96460300e+07 9.39974191e+07 9.57580241e+07
9.94237903e+07 9.95772932e+07 7.66214180e+07 3.16347299e+07
3.93134942e+07 4.26725169e+07 4.04868680e+07 3.96172057e+07
9.92604463e+07 3.87535898e+07 3.90449082e+07 9.93613261e+07
9.48309911e+07 9.67246504e+07 9.91433117e+07]
[ 2.19628818e+08 1.23996108e+08 1.24877049e+08 2.22649178e+08
1.22626360e+08 2.19985964e+08 2.22590333e+08 1.23838663e+08
2.22521540e+08 1.23858902e+08 2.15532959e+08 2.16384525e+08
2.22278498e+08 2.22552678e+08 1.83960232e+08 7.19186906e+07
1.23521723e+08 1.21698111e+08 1.24530287e+08 1.23826721e+08
2.22090061e+08 1.22638806e+08 1.22812752e+08 2.19987781e+08
2.15788132e+08 2.18282223e+08 2.22206009e+08]
[ 3.33269719e+08 2.28674183e+08 2.30955174e+08 3.38025139e+08
2.27815612e+08 3.33897508e+08 3.38116345e+08 2.29401365e+08
3.38397102e+08 2.28485331e+08 3.37631968e+08 3.32877351e+08
3.38000909e+08 3.38053792e+08 2.96112554e+08 1.08251528e+08
2.29103279e+08 2.19490650e+08 2.30602926e+08 2.30006521e+08
3.37885970e+08 2.27939966e+08 2.27975311e+08 3.33935330e+08
3.37068887e+08 3.35020183e+08 3.38188250e+08]
[ 4.20170638e+08 3.18632583e+08 3.23448133e+08 4.25737454e+08
3.19104051e+08 4.21245522e+08 4.26194329e+08 3.20986430e+08
4.26942415e+08 3.18536225e+08 4.38908779e+08 4.24590946e+08
4.26493786e+08 4.26115416e+08 3.90169767e+08 1.25622540e+08
3.20603324e+08 3.08738065e+08 3.23632807e+08 3.22823680e+08
4.26476288e+08 3.19299802e+08 3.19167303e+08 4.21404773e+08
4.37555415e+08 4.26483371e+08 4.26953488e+08]
[ 4.10721414e+08 3.23543858e+08 3.30328661e+08 4.16731122e+08
3.25277610e+08 4.11937427e+08 4.17497393e+08 3.27094833e+08
4.18576176e+08 3.23582400e+08 4.41318753e+08 4.19526120e+08
4.18163782e+08 4.17431189e+08 3.94401945e+08 1.04840308e+08
3.26588764e+08 3.21299922e+08 3.31231828e+08 3.30046221e+08
4.18217872e+08 3.25475658e+08 3.25204322e+08 4.12031389e+08
4.39473822e+08 4.20873933e+08 4.18769260e+08]
[ 2.92912582e+08 2.23039126e+08 2.29959387e+08 2.96222462e+08
2.25458319e+08 2.94080632e+08 2.97097582e+08 2.26766800e+08
2.98074055e+08 2.23163050e+08 3.22210768e+08 3.00208597e+08
2.97801961e+08 2.97042454e+08 2.86750968e+08 4.85820286e+07
2.26072724e+08 2.34448640e+08 2.31443812e+08 2.29965104e+08
2.97867635e+08 2.25512198e+08 2.25187374e+08 2.94088396e+08
3.20446541e+08 3.00942773e+08 2.98365808e+08]
[ 1.35291201e+08 7.90528662e+07 8.41882132e+07 1.34413189e+08
8.11915345e+07 1.36327374e+08 1.35124900e+08 8.18688848e+07
1.35676638e+08 7.91909741e+07 1.51175613e+08 1.36527591e+08
1.35580567e+08 1.35074150e+08 1.30830551e+08 -9.06181202e+06
8.10489681e+07 1.01363828e+08 8.57019393e+07 8.43342132e+07
1.35599102e+08 8.10504718e+07 8.08347464e+07 1.36346371e+08
1.49994640e+08 1.36957360e+08 1.35925381e+08]
[-6.70726866e+06 -5.84820731e+07 -5.59805130e+07 -1.09566010e+07
-5.73591138e+07 -5.84255752e+06 -1.05634344e+07 -5.71399394e+07
-1.05577667e+07 -5.83181934e+07 -7.54330349e+06 -1.19895795e+07
-1.05162881e+07 -1.06410201e+07 -1.51326254e+07 -5.25362127e+07
-5.80074492e+07 -2.90252581e+07 -5.47882386e+07 -5.58909978e+07
-1.05909674e+07 -5.76678751e+07 -5.76386414e+07 -5.68595184e+06
-7.71001097e+06 -1.16884169e+07 -1.04853572e+07]
[-6.55167252e+07 -1.24962367e+08 -1.24575051e+08 -7.05388188e+07
-1.25080744e+08 -6.49365967e+07 -7.04587154e+07 -1.24925459e+08
-7.09404086e+07 -1.24798597e+08 -7.97278453e+07 -7.51821695e+07
-7.08395988e+07 -7.05879741e+07 -8.29660197e+07 -6.22711239e+07
-1.25782752e+08 -9.60380260e+07 -1.23878181e+08 -1.24730186e+08
-7.09404400e+07 -1.25427937e+08 -1.25189999e+08 -6.48585118e+07
-7.90872591e+07 -7.47044715e+07 -7.09954799e+07]
[-6.01451543e+07 -1.20260150e+08 -1.21059457e+08 -6.39810802e+07
-1.21134286e+08 -5.99589480e+07 -6.40474945e+07 -1.20947500e+08
-6.47525750e+07 -1.20142599e+08 -8.05361144e+07 -7.05473227e+07
-6.46404676e+07 -6.42221555e+07 -8.35534731e+07 -4.72086138e+07
-1.21596663e+08 -9.91534342e+07 -1.20810689e+08 -1.21340130e+08
-6.47094471e+07 -1.21397467e+08 -1.21086606e+08 -5.99849834e+07
-7.97653879e+07 -6.98159352e+07 -6.48532742e+07]
[-4.67191221e+07 -8.94354575e+07 -9.02234331e+07 -4.98162931e+07
-9.01527875e+07 -4.65935365e+07 -4.98929375e+07 -9.00171536e+07
-5.05047284e+07 -8.93263040e+07 -6.43175815e+07 -5.52742881e+07
-5.03997249e+07 -5.00499364e+07 -6.61692451e+07 -3.23708740e+07
-9.04304068e+07 -7.59973978e+07 -9.00958345e+07 -9.04044853e+07
-5.04187262e+07 -9.03480254e+07 -9.00609057e+07 -4.66562407e+07
-6.36880415e+07 -5.47372202e+07 -5.05906280e+07]
[-4.26716708e+07 -5.94212504e+07 -5.96861881e+07 -4.51133813e+07
-5.95215860e+07 -4.25310619e+07 -4.51164768e+07 -5.95266092e+07
-4.54515783e+07 -5.93236653e+07 -5.29885474e+07 -4.80275675e+07
-4.53592319e+07 -4.52033894e+07 -5.15872331e+07 -2.48690143e+07
-5.97516604e+07 -5.15496002e+07 -5.94421633e+07 -5.96639598e+07
-4.53300942e+07 -5.96602579e+07 -5.94622455e+07 -4.25646714e+07
-5.26363649e+07 -4.79626364e+07 -4.55111091e+07]
[-5.03019504e+07 -4.62386754e+07 -4.61714100e+07 -5.21401365e+07
-4.59030426e+07 -5.02672920e+07 -5.20871934e+07 -4.60732502e+07
-5.21481486e+07 -4.61803127e+07 -5.42202914e+07 -5.26425188e+07
-5.20590894e+07 -5.20979104e+07 -4.92236611e+07 -2.52525786e+07
-4.61249187e+07 -4.06198377e+07 -4.58325083e+07 -4.59864984e+07
-5.20434325e+07 -4.59734398e+07 -4.58814529e+07 -5.01781164e+07
-5.41917673e+07 -5.28523199e+07 -5.22189143e+07]
[-5.75938700e+07 -3.94671866e+07 -3.93352014e+07 -5.96112206e+07
-3.88366748e+07 -5.75422662e+07 -5.95811537e+07 -3.91669993e+07
-5.94450343e+07 -3.94485826e+07 -5.84359976e+07 -5.85713572e+07
-5.93851513e+07 -5.95118017e+07 -5.09090973e+07 -2.60916588e+07
-3.90925928e+07 -3.57676648e+07 -3.89876582e+07 -3.90206472e+07
-5.93602590e+07 -3.88745971e+07 -3.88665137e+07 -5.73361116e+07
-5.85865225e+07 -5.89753875e+07 -5.95225189e+07]
[-4.49361300e+07 -2.67103082e+07 -2.65402328e+07 -4.72794748e+07
-2.60229450e+07 -4.47411244e+07 -4.72497920e+07 -2.63569164e+07
-4.70693524e+07 -2.67042608e+07 -4.51253177e+07 -4.57354561e+07
-4.70419663e+07 -4.71834139e+07 -3.83317645e+07 -2.12450741e+07
-2.62471292e+07 -2.38855860e+07 -2.62493867e+07 -2.62102280e+07
-4.70266089e+07 -2.60463615e+07 -2.60757956e+07 -4.44482353e+07
-4.53787565e+07 -4.61723025e+07 -4.71288331e+07]
[-2.94005713e+07 -1.63382447e+07 -1.62132739e+07 -3.06540538e+07
-1.58969821e+07 -2.92981786e+07 -3.06443040e+07 -1.61201012e+07
-3.05044788e+07 -1.63396835e+07 -2.88228363e+07 -2.94294056e+07
-3.04924078e+07 -3.05915228e+07 -2.41098688e+07 -1.31882867e+07
-1.60396079e+07 -1.45063937e+07 -1.60346703e+07 -1.60071926e+07
-3.04853644e+07 -1.59055288e+07 -1.59369460e+07 -2.91184621e+07
-2.90154995e+07 -2.97240949e+07 -3.05441511e+07]
[-9.27475801e+06 -4.92950781e+06 -4.89931097e+06 -9.60337414e+06
-4.80029624e+06 -9.25560006e+06 -9.60203442e+06 -4.87199741e+06
-9.55496913e+06 -4.93290588e+06 -8.96998540e+06 -9.18152733e+06
-9.55199892e+06 -9.58308449e+06 -7.41002728e+06 -3.89951020e+06
-4.84188568e+06 -4.42069030e+06 -4.84734436e+06 -4.83815184e+06
-9.54997051e+06 -4.80148769e+06 -4.81301436e+06 -9.20028799e+06
-9.03139573e+06 -9.26843810e+06 -9.56777960e+06]
[-8.26319938e+05 -4.76499420e+05 -4.79074650e+05 -8.93110531e+05
-4.65391720e+05 -8.21679699e+05 -8.93995546e+05 -4.72687875e+05
-8.89519246e+05 -4.76676735e+05 -8.35713311e+05 -8.35830867e+05
-8.89009136e+05 -8.91660006e+05 -7.07463489e+05 -3.62050456e+05
-4.68845459e+05 -4.17328109e+05 -4.75426316e+05 -4.72726316e+05
-8.89380474e+05 -4.65404680e+05 -4.66604713e+05 -8.11369632e+05
-8.40724478e+05 -8.43176855e+05 -8.90856411e+05]
[ 2.52651055e+05 2.33744851e+05 2.34146920e+05 2.50956380e+05
2.33679060e+05 2.53624837e+05 2.51243560e+05 2.34389601e+05
2.51137873e+05 2.33544965e+05 2.48256510e+05 2.49103837e+05
2.50916347e+05 2.50858216e+05 2.27134357e+05 1.19700603e+05
2.34876182e+05 1.99183449e+05 2.33154198e+05 2.34143716e+05
2.51206653e+05 2.33726970e+05 2.33955605e+05 2.54456483e+05
2.47771154e+05 2.49753383e+05 2.51339534e+05]
[ 5.23011829e-01 8.60530391e-01 -5.12435590e-01 4.64878342e-01
4.16646953e-01 -7.01402087e-03 -4.01933967e-01 8.26675396e-01
8.66112780e-01 -8.66462505e-01 1.47177351e-01 7.60784152e-01
9.50551613e-01 9.55571494e-01 -2.41345855e-01 8.33726060e-01
-6.44782061e-01 -6.63602830e-01 -2.75727005e-01 -8.05995946e-01
9.81864274e-01 3.59641892e-01 8.77308144e-02 8.59534303e-01
9.94948517e-01 6.22941747e-01 -7.95335309e-01]
[-3.49317426e+04 -4.00809845e+04 -4.25846785e+04 -3.98460887e+04
-4.08032247e+04 -3.50954173e+04 -4.00545584e+04 -4.10819830e+04
-4.04884530e+04 -4.02603401e+04 -5.75202593e+04 -4.53430542e+04
-4.04858490e+04 -4.01806353e+04 -5.32727344e+04 -4.37672204e+03
-4.09861297e+04 -4.87253337e+04 -4.33534732e+04 -4.24010662e+04
-4.05287846e+04 -4.08400523e+04 -4.08335931e+04 -3.47882171e+04
-5.73654068e+04 -4.43349930e+04 -4.05342206e+04]
[-7.58885337e+06 -7.57272855e+06 -7.73011201e+06 -7.75309189e+06
-7.64191966e+06 -7.60206512e+06 -7.77730832e+06 -7.66549521e+06
-7.80765348e+06 -7.57082365e+06 -8.42738271e+06 -7.94005600e+06
-7.81038062e+06 -7.78219688e+06 -7.75772697e+06 -2.52543405e+06
-7.66497482e+06 -7.06324203e+06 -7.75874089e+06 -7.73944669e+06
-7.81085368e+06 -7.64214213e+06 -7.63862247e+06 -7.59344733e+06
-8.38918276e+06 -7.93957136e+06 -7.81948771e+06]
[-4.71059808e+07 -4.20792095e+07 -4.27830742e+07 -4.83545178e+07
-4.22401008e+07 -4.71275199e+07 -4.84753595e+07 -4.24417653e+07
-4.85692972e+07 -4.20667424e+07 -5.09129823e+07 -4.87914805e+07
-4.85788588e+07 -4.84735179e+07 -4.59554802e+07 -1.69830157e+07
-4.24055824e+07 -3.89647971e+07 -4.28473607e+07 -4.27550184e+07
-4.85786029e+07 -4.22470504e+07 -4.22403966e+07 -4.70427222e+07
-5.07928058e+07 -4.89091158e+07 -4.86403084e+07]
[-1.03209576e+08 -8.79930590e+07 -8.92269304e+07 -1.05693609e+08
-8.81620280e+07 -1.03312641e+08 -1.05906654e+08 -8.85992384e+07
-1.06079406e+08 -8.79347444e+07 -1.09932645e+08 -1.06104405e+08
-1.06057082e+08 -1.05891043e+08 -9.88469390e+07 -3.69604402e+07
-8.85125093e+07 -8.17032875e+07 -8.92507217e+07 -8.91273451e+07
-1.06049696e+08 -8.81814001e+07 -8.81505664e+07 -1.03181529e+08
-1.09625110e+08 -1.06472322e+08 -1.06222140e+08]
[-1.69352717e+08 -1.37387482e+08 -1.38706335e+08 -1.73291677e+08
-1.37297846e+08 -1.69422328e+08 -1.73471922e+08 -1.37960787e+08
-1.73740123e+08 -1.37204696e+08 -1.76948368e+08 -1.72524329e+08
-1.73618519e+08 -1.73484080e+08 -1.58399897e+08 -6.12729561e+07
-1.37799267e+08 -1.27035507e+08 -1.38468407e+08 -1.38440018e+08
-1.73570899e+08 -1.37327123e+08 -1.37203250e+08 -1.69129167e+08
-1.76311972e+08 -1.73448775e+08 -1.73925995e+08]
[-2.40579805e+08 -1.88497112e+08 -1.89699487e+08 -2.45649304e+08
-1.88028044e+08 -2.40617337e+08 -2.45689452e+08 -1.88900606e+08
-2.46007668e+08 -1.88146418e+08 -2.47097394e+08 -2.42808443e+08
-2.45745235e+08 -2.45731953e+08 -2.20474061e+08 -8.83407451e+07
-1.88631949e+08 -1.73300199e+08 -1.89067836e+08 -1.89208399e+08
-2.45675438e+08 -1.88055165e+08 -1.87788755e+08 -2.39957026e+08
-2.46122645e+08 -2.44346365e+08 -2.46250645e+08]
[-2.44561356e+08 -1.96920182e+08 -1.98488493e+08 -2.50038458e+08
-1.96715561e+08 -2.44663972e+08 -2.50022456e+08 -1.97539021e+08
-2.50541800e+08 -1.96530397e+08 -2.55051769e+08 -2.48089367e+08
-2.50211540e+08 -2.50128148e+08 -2.29418775e+08 -8.51189257e+07
-1.97234693e+08 -1.83254860e+08 -1.97905622e+08 -1.98099850e+08
-2.50155495e+08 -1.96758654e+08 -1.96351311e+08 -2.43829446e+08
-2.53601920e+08 -2.49553364e+08 -2.50823585e+08]
[-1.80198611e+08 -1.60625847e+08 -1.62342449e+08 -1.84619615e+08
-1.61054977e+08 -1.80262980e+08 -1.84645794e+08 -1.61513574e+08
-1.85320999e+08 -1.60284766e+08 -1.93829299e+08 -1.85294737e+08
-1.85053383e+08 -1.84801547e+08 -1.77693463e+08 -5.90551586e+07
-1.61297469e+08 -1.50357662e+08 -1.61996206e+08 -1.62321545e+08
-1.85038033e+08 -1.61104310e+08 -1.60622508e+08 -1.79478067e+08
-1.92133861e+08 -1.86191587e+08 -1.85655727e+08]
[-3.11497367e+07 -5.57213700e+07 -5.64750827e+07 -3.20032754e+07
-5.66622349e+07 -3.11589229e+07 -3.19968522e+07 -5.63960961e+07
-3.25586738e+07 -5.54872387e+07 -4.11038034e+07 -3.49061714e+07
-3.24461847e+07 -3.21679682e+07 -4.34603394e+07 -8.07871662e+06
-5.63511473e+07 -5.06688609e+07 -5.63697990e+07 -5.69241978e+07
-3.24854208e+07 -5.66800738e+07 -5.62019794e+07 -3.05750246e+07
-3.96577164e+07 -3.47425600e+07 -3.29127253e+07]
[ 1.89194706e+08 1.11090634e+08 1.12221159e+08 1.93204318e+08
1.09881288e+08 1.89279394e+08 1.93350188e+08 1.11165463e+08
1.93080650e+08 1.11171892e+08 1.88490822e+08 1.88566897e+08
1.92975090e+08 1.93153594e+08 1.60505123e+08 6.31318360e+07
1.10950306e+08 1.07883327e+08 1.12115344e+08 1.11355681e+08
1.92928865e+08 1.09973995e+08 1.10319624e+08 1.89495493e+08
1.89187549e+08 1.90017463e+08 1.92843356e+08]
[ 3.80878836e+08 2.66556435e+08 2.70561319e+08 3.88469892e+08
2.66005162e+08 3.81417138e+08 3.88959923e+08 2.68153831e+08
3.89144382e+08 2.66601453e+08 3.95127552e+08 3.84932809e+08
3.88880995e+08 3.88723396e+08 3.46470608e+08 1.16349288e+08
2.67613435e+08 2.60277741e+08 2.70717078e+08 2.69614561e+08
3.88883540e+08 2.66179607e+08 2.66341856e+08 3.81450591e+08
3.94814281e+08 3.87040474e+08 3.89134659e+08]
[ 4.91488050e+08 3.56622554e+08 3.63254435e+08 5.00858189e+08
3.56961711e+08 4.92463557e+08 5.01714413e+08 3.59656319e+08
5.02259621e+08 3.56743767e+08 5.20236056e+08 4.99874419e+08
5.01927853e+08 5.01450127e+08 4.58920326e+08 1.38448793e+08
3.58756608e+08 3.54374922e+08 3.63896868e+08 3.62332688e+08
5.01956455e+08 3.57156176e+08 3.57143141e+08 4.92422077e+08
5.19267536e+08 5.02136182e+08 5.02483214e+08]
[ 4.82937057e+08 3.48011194e+08 3.55672194e+08 4.93157807e+08
3.48797739e+08 4.83839505e+08 4.94135940e+08 3.51529790e+08
4.94788461e+08 3.48204569e+08 5.18058672e+08 4.93696419e+08
4.94473840e+08 4.93885004e+08 4.56389779e+08 1.23746259e+08
3.50417109e+08 3.52482574e+08 3.56696228e+08 3.54809628e+08
4.94529428e+08 3.48993624e+08 3.48874357e+08 4.83506527e+08
5.16896351e+08 4.95795524e+08 4.95145936e+08]
[ 3.96157623e+08 2.63241118e+08 2.69929151e+08 4.04328168e+08
2.63759963e+08 3.96924306e+08 4.05230572e+08 2.66173217e+08
4.05539582e+08 2.63429694e+08 4.23501348e+08 4.03487704e+08
4.05327885e+08 4.04947952e+08 3.68597444e+08 9.07600967e+07
2.64905894e+08 2.74539591e+08 2.70969604e+08 2.69045450e+08
4.05367484e+08 2.63835299e+08 2.63743514e+08 3.96379734e+08
4.22696769e+08 4.05462186e+08 4.05939562e+08]
[ 2.44029679e+08 1.22953011e+08 1.27110029e+08 2.47753342e+08
1.22738916e+08 2.44702405e+08 2.48366501e+08 1.24526572e+08
2.48168609e+08 1.23143230e+08 2.54814528e+08 2.44545913e+08
2.48081052e+08 2.48062717e+08 2.14489926e+08 4.27786403e+07
1.23287676e+08 1.41677398e+08 1.27839404e+08 1.26250808e+08
2.48048273e+08 1.22652316e+08 1.22721861e+08 2.44276846e+08
2.54785666e+08 2.46212765e+08 2.48443750e+08]
[ 5.75488656e+07 -3.69860879e+07 -3.56664387e+07 5.68672745e+07
-3.78397376e+07 5.81281723e+07 5.70637128e+07 -3.68831734e+07
5.64334211e+07 -3.68001957e+07 5.07324667e+07 5.15531321e+07
5.64479325e+07 5.67896449e+07 3.06393277e+07 -1.55307185e+07
-3.79357691e+07 -1.23094942e+07 -3.52109064e+07 -3.63524145e+07
5.63671922e+07 -3.80613742e+07 -3.78231383e+07 5.77662900e+07
5.14577042e+07 5.26127407e+07 5.65040729e+07]
[-9.67874238e+07 -1.59382090e+08 -1.60398977e+08 -1.01045280e+08
-1.60571859e+08 -9.64249916e+07 -1.01166072e+08 -1.60382940e+08
-1.02045897e+08 -1.59185914e+08 -1.17174487e+08 -1.07255924e+08
-1.01944492e+08 -1.01407692e+08 -1.18513724e+08 -6.17257588e+07
-1.61109445e+08 -1.32161509e+08 -1.60178493e+08 -1.60824988e+08
-1.02062327e+08 -1.60833876e+08 -1.60488926e+08 -9.65905164e+07
-1.16039357e+08 -1.06764337e+08 -1.02172996e+08]
[-1.72105014e+08 -1.99666864e+08 -2.01854223e+08 -1.77832875e+08
-2.00670645e+08 -1.72003621e+08 -1.78128489e+08 -2.01029816e+08
-1.78925671e+08 -1.99505778e+08 -1.96030264e+08 -1.83001503e+08
-1.78792377e+08 -1.78270379e+08 -1.85270706e+08 -7.92903955e+07
-2.01373579e+08 -1.76566044e+08 -2.01762876e+08 -2.01963000e+08
-1.78882321e+08 -2.00884751e+08 -2.00571805e+08 -1.71964839e+08
-1.95001310e+08 -1.83018546e+08 -1.79156970e+08]
[-1.93295865e+08 -1.87601696e+08 -1.89610573e+08 -1.98400185e+08
-1.88034789e+08 -1.93322752e+08 -1.98708581e+08 -1.88691804e+08
-1.99212535e+08 -1.87474798e+08 -2.11662719e+08 -2.01046067e+08
-1.99084433e+08 -1.98735601e+08 -1.93691456e+08 -7.85522728e+07
-1.88764514e+08 -1.69828093e+08 -1.89431108e+08 -1.89474513e+08
-1.99114075e+08 -1.88197160e+08 -1.87969913e+08 -1.93223744e+08
-2.10984216e+08 -2.01549264e+08 -1.99462150e+08]
[-1.55711362e+08 -1.36093756e+08 -1.37386672e+08 -1.60425314e+08
-1.35897321e+08 -1.55684545e+08 -1.60608494e+08 -1.36580182e+08
-1.60798675e+08 -1.36014035e+08 -1.67737342e+08 -1.61047987e+08
-1.60693015e+08 -1.60570604e+08 -1.50596389e+08 -6.29999473e+07
-1.36512850e+08 -1.24158872e+08 -1.37116337e+08 -1.37058795e+08
-1.60691272e+08 -1.36018219e+08 -1.35890060e+08 -1.55387536e+08
-1.67474408e+08 -1.61709053e+08 -1.60998727e+08]
[-1.28351269e+08 -9.93262471e+07 -1.00059883e+08 -1.32474405e+08
-9.87415251e+07 -1.28291196e+08 -1.32574010e+08 -9.94158415e+07
-1.32529352e+08 -9.92876526e+07 -1.34681601e+08 -1.31446138e+08
-1.32446575e+08 -1.32486293e+08 -1.18693777e+08 -5.18436992e+07
-9.92567678e+07 -9.12515223e+07 -9.97341571e+07 -9.96264826e+07
-1.32438755e+08 -9.88154888e+07 -9.87774312e+07 -1.27899460e+08
-1.34706595e+08 -1.32141784e+08 -1.32693333e+08]
[-8.95965346e+07 -6.19402225e+07 -6.22455220e+07 -9.29834372e+07
-6.12084454e+07 -8.94504477e+07 -9.30294065e+07 -6.17691965e+07
-9.28720355e+07 -6.19281575e+07 -9.25953167e+07 -9.15528094e+07
-9.28265616e+07 -9.29327293e+07 -8.03477662e+07 -3.74917050e+07
-6.15993576e+07 -5.72629199e+07 -6.19394836e+07 -6.18087369e+07
-9.28077216e+07 -6.12526600e+07 -6.12673375e+07 -8.90653160e+07
-9.27945569e+07 -9.21485254e+07 -9.29836178e+07]
[-5.22774788e+07 -3.20689641e+07 -3.20869971e+07 -5.42430475e+07
-3.14793838e+07 -5.21879469e+07 -5.42472905e+07 -3.18480941e+07
-5.40824265e+07 -3.20723582e+07 -5.27399848e+07 -5.29076311e+07
-5.40557702e+07 -5.41717086e+07 -4.49980592e+07 -2.22141937e+07
-3.17192611e+07 -2.96831195e+07 -3.18524910e+07 -3.17764082e+07
-5.40412501e+07 -3.14989832e+07 -3.15308774e+07 -5.19533521e+07
-5.29653953e+07 -5.33253056e+07 -5.41458917e+07]
[-2.49321287e+07 -1.40898594e+07 -1.40459153e+07 -2.57159715e+07
-1.37715521e+07 -2.49252024e+07 -2.57128483e+07 -1.39595545e+07
-2.56026486e+07 -1.40978994e+07 -2.45596668e+07 -2.49192882e+07
-2.55923517e+07 -2.56663129e+07 -2.07385056e+07 -1.05156484e+07
-1.38875391e+07 -1.29783601e+07 -1.39203798e+07 -1.38901218e+07
-2.55842414e+07 -1.37777460e+07 -1.38031112e+07 -2.48230761e+07
-2.47023646e+07 -2.51251771e+07 -2.56337831e+07]
[-5.98441154e+06 -3.16543847e+06 -3.15230618e+06 -6.16856872e+06
-3.08145108e+06 -5.98584196e+06 -6.16710456e+06 -3.12901090e+06
-6.13895964e+06 -3.16824710e+06 -5.90005377e+06 -5.99449679e+06
-6.13770941e+06 -6.15588484e+06 -4.91122769e+06 -2.50948242e+06
-3.11065191e+06 -2.97261458e+06 -3.12122214e+06 -3.11186917e+06
-6.13476862e+06 -3.08405819e+06 -3.08998328e+06 -5.95805682e+06
-5.93994805e+06 -6.04353930e+06 -6.14651770e+06]
[-6.02310793e+05 -3.47335379e+05 -3.43164777e+05 -6.04504447e+05
-3.39328857e+05 -6.06337240e+05 -6.04194007e+05 -3.43607547e+05
-6.00302248e+05 -3.47490260e+05 -5.67930835e+05 -5.79509836e+05
-5.99738192e+05 -6.02610441e+05 -4.66920351e+05 -2.96949080e+05
-3.41494938e+05 -3.05666541e+05 -3.38741769e+05 -3.39140988e+05
-5.99976957e+05 -3.38705184e+05 -3.39804739e+05 -6.05801980e+05
-5.74111972e+05 -5.81667598e+05 -6.01198877e+05]
[-9.99734603e+04 -7.83254106e+04 -7.77074968e+04 -1.04289626e+05
-7.75246038e+04 -9.91910276e+04 -1.04033139e+05 -7.78602457e+04
-1.04021965e+05 -7.80098821e+04 -9.83072178e+04 -9.92968019e+04
-1.04021422e+05 -1.04226081e+05 -8.54953581e+04 -4.69134578e+04
-7.76830382e+04 -6.24288498e+04 -7.72759667e+04 -7.72237514e+04
-1.04012559e+05 -7.75155307e+04 -7.73725587e+04 -9.85314418e+04
-9.88281548e+04 -1.00447015e+05 -1.04104216e+05]
[-9.52877786e-01 5.42919227e-01 5.52642850e-01 -1.22008368e-01
-5.49785883e-01 9.48232976e-03 -3.96181820e-01 2.85187274e-02
-3.30947562e-01 -8.00358143e-01 3.66000153e-01 3.28011866e-02
-9.28727343e-01 -7.65691846e-01 -7.84066035e-01 -1.94808224e-02
1.89148177e-01 2.08104253e-01 1.50657908e-01 -3.20875508e-01
-9.60743646e-01 -8.51113806e-01 -8.83754397e-01 8.48761946e-01
3.61120502e-01 7.50926622e-01 2.97864627e-01]
[-1.60881575e+05 -9.50222646e+04 -1.00875529e+05 -1.92655241e+05
-9.26955353e+04 -1.57891897e+05 -1.93477052e+05 -9.46063520e+04
-1.94669641e+05 -9.49784216e+04 -2.43048598e+05 -2.10234439e+05
-1.94720706e+05 -1.93742339e+05 -2.21764200e+05 -3.99068037e+04
-9.43016263e+04 -1.39625468e+05 -1.02196332e+05 -9.86846370e+04
-1.94364033e+05 -9.30629105e+04 -9.31866981e+04 -1.56774377e+05
-2.41655818e+05 -2.11884171e+05 -1.94602529e+05]
[-6.51834602e+06 -6.23765966e+06 -6.35954051e+06 -6.73657396e+06
-6.27692015e+06 -6.51388672e+06 -6.75792213e+06 -6.30172281e+06
-6.77935357e+06 -6.23420603e+06 -7.19723849e+06 -6.83593284e+06
-6.78139445e+06 -6.75967586e+06 -6.58730118e+06 -2.29130823e+06
-6.29940492e+06 -5.77549242e+06 -6.37721875e+06 -6.36122195e+06
-6.78207995e+06 -6.27764392e+06 -6.27631461e+06 -6.49984014e+06
-7.16529917e+06 -6.85027753e+06 -6.78908308e+06]
[-3.70159459e+07 -3.33556815e+07 -3.38720598e+07 -3.79873554e+07
-3.34829646e+07 -3.70038074e+07 -3.80802062e+07 -3.36303735e+07
-3.81572075e+07 -3.33369459e+07 -3.96736782e+07 -3.82326999e+07
-3.81660202e+07 -3.80831646e+07 -3.58580679e+07 -1.35238826e+07
-3.36100370e+07 -3.05151537e+07 -3.39151143e+07 -3.38594403e+07
-3.81691113e+07 -3.34885725e+07 -3.34812282e+07 -3.69367231e+07
-3.95635255e+07 -3.83536256e+07 -3.82149266e+07]
[-8.81542901e+07 -7.86255285e+07 -7.98159023e+07 -9.01802913e+07
-7.89006537e+07 -8.82396153e+07 -9.03936693e+07 -7.92509006e+07
-9.05944958e+07 -7.85690350e+07 -9.48176726e+07 -9.09833503e+07
-9.05917505e+07 -9.03951983e+07 -8.58899802e+07 -3.16400922e+07
-7.92007213e+07 -7.27495186e+07 -7.98937474e+07 -7.97820058e+07
-9.05863526e+07 -7.89241068e+07 -7.88859325e+07 -8.81734328e+07
-9.44872299e+07 -9.12642527e+07 -9.07236465e+07]
[-1.62574308e+08 -1.41615955e+08 -1.43554851e+08 -1.65665185e+08
-1.42055263e+08 -1.62854410e+08 -1.65964845e+08 -1.42668259e+08
-1.66341435e+08 -1.41499740e+08 -1.73368950e+08 -1.66483699e+08
-1.66269965e+08 -1.65989400e+08 -1.56614759e+08 -5.72070698e+07
-1.42534921e+08 -1.31623536e+08 -1.43590344e+08 -1.43467287e+08
-1.66252722e+08 -1.42071128e+08 -1.41969700e+08 -1.62738807e+08
-1.72747385e+08 -1.67067351e+08 -1.66552316e+08]
[-2.68275024e+08 -2.30555374e+08 -2.33668698e+08 -2.73279524e+08
-2.31270837e+08 -2.68725127e+08 -2.73678844e+08 -2.32230744e+08
-2.74338989e+08 -2.30317977e+08 -2.85274038e+08 -2.74059898e+08
-2.74165464e+08 -2.73744565e+08 -2.57774378e+08 -9.14658256e+07
-2.31966491e+08 -2.15573593e+08 -2.33667886e+08 -2.33514304e+08
-2.74134110e+08 -2.31283918e+08 -2.31038256e+08 -2.68372304e+08
-2.84036059e+08 -2.75152473e+08 -2.74673435e+08]
[-3.31191690e+08 -2.90819095e+08 -2.94852468e+08 -3.37219018e+08
-2.91987109e+08 -3.31777800e+08 -3.37663836e+08 -2.93083210e+08
-3.38679192e+08 -2.90466703e+08 -3.54556883e+08 -3.38927212e+08
-3.38430049e+08 -3.37830564e+08 -3.22031854e+08 -1.10140727e+08
-2.92742185e+08 -2.72615065e+08 -2.94895852e+08 -2.94793242e+08
-3.38397542e+08 -2.91999683e+08 -2.91571641e+08 -3.31270836e+08
-3.52636162e+08 -3.40265534e+08 -3.39115157e+08]
[-3.10092150e+08 -2.81009841e+08 -2.85206070e+08 -3.15152489e+08
-2.82668898e+08 -3.10759472e+08 -3.15557886e+08 -2.83510659e+08
-3.16772664e+08 -2.80597299e+08 -3.33948705e+08 -3.17586206e+08
-3.16505083e+08 -3.15815132e+08 -3.05961850e+08 -9.80367587e+07
-2.83149841e+08 -2.64640279e+08 -2.85357653e+08 -2.85383878e+08
-3.16471799e+08 -2.82644362e+08 -2.82081661e+08 -3.10189839e+08
-3.31537852e+08 -3.18764736e+08 -3.17255155e+08]
[-1.89587492e+08 -1.95540449e+08 -1.98768920e+08 -1.91221143e+08
-1.97628009e+08 -1.90276912e+08 -1.91512666e+08 -1.97768093e+08
-1.92718344e+08 -1.95115727e+08 -2.08729155e+08 -1.94802447e+08
-1.92527738e+08 -1.91844293e+08 -1.96418232e+08 -5.66747304e+07
-1.97553248e+08 -1.82993825e+08 -1.98999100e+08 -1.99340581e+08
-1.92505232e+08 -1.97538829e+08 -1.96917297e+08 -1.89768352e+08
-2.06275666e+08 -1.95215918e+08 -1.93181341e+08]
[ 7.71325158e+06 -4.88796095e+07 -5.01512253e+07 1.14299282e+07
-5.12633730e+07 7.00466001e+06 1.13545056e+07 -5.03797342e+07
1.03727294e+07 -4.85216483e+07 -7.60266715e+05 6.99311687e+06
1.04339551e+07 1.09821128e+07 -1.24644543e+07 6.75126162e+06
-5.04612396e+07 -4.16196835e+07 -5.04552656e+07 -5.11875430e+07
1.04241197e+07 -5.10745325e+07 -5.05265443e+07 7.21837698e+06
1.26091498e+06 7.75784486e+06 1.00369331e+07]
[ 2.16080108e+08 1.09443002e+08 1.11100269e+08 2.23955523e+08
1.07446859e+08 2.15649580e+08 2.24248117e+08 1.09358102e+08
2.23586543e+08 1.09770153e+08 2.21388467e+08 2.19445516e+08
2.23534040e+08 2.23825747e+08 1.84833696e+08 6.54918434e+07
1.08795841e+08 1.14539000e+08 1.11040370e+08 1.09790236e+08
2.23538758e+08 1.07679174e+08 1.08057722e+08 2.15511032e+08
2.22672373e+08 2.21160606e+08 2.23517204e+08]
[ 3.32342897e+08 1.94284113e+08 1.98218876e+08 3.42476180e+08
1.92802539e+08 3.32272084e+08 3.43026832e+08 1.95338192e+08
3.42602292e+08 1.94641062e+08 3.49020827e+08 3.38344294e+08
3.42472783e+08 3.42605782e+08 2.97183408e+08 9.08187622e+07
1.94296965e+08 2.02539237e+08 1.98507098e+08 1.96764008e+08
3.42499274e+08 1.93001216e+08 1.93242293e+08 3.31764758e+08
3.49861185e+08 3.40460528e+08 3.42758295e+08]
[ 3.49526949e+08 1.99415046e+08 2.03742314e+08 3.60817815e+08
1.97807622e+08 3.49434165e+08 3.61361604e+08 2.00511701e+08
3.60901021e+08 1.99759773e+08 3.68839546e+08 3.56253865e+08
3.60750297e+08 3.60951795e+08 3.13040405e+08 9.24995059e+07
1.99235894e+08 2.10283165e+08 2.04111502e+08 2.02122868e+08
3.60779638e+08 1.97984870e+08 1.98156172e+08 3.48506683e+08
3.69670106e+08 3.58551568e+08 3.61160349e+08]
[ 2.77034883e+08 1.28615841e+08 1.31511480e+08 2.86565571e+08
1.26447802e+08 2.76864513e+08 2.86918369e+08 1.28851487e+08
2.86131799e+08 1.28906159e+08 2.87001503e+08 2.80281753e+08
2.86023525e+08 2.86490088e+08 2.37526924e+08 7.10007280e+07
1.27550957e+08 1.42333602e+08 1.31631958e+08 1.29821362e+08
2.86026926e+08 1.26545233e+08 1.26761358e+08 2.75748320e+08
2.88134969e+08 2.82501979e+08 2.86374926e+08]
[ 1.35881898e+08 9.11047297e+06 9.70034152e+06 1.40397378e+08
6.57743517e+06 1.35764241e+08 1.40498423e+08 8.23529754e+06
1.39331549e+08 9.36551537e+06 1.29646971e+08 1.32390682e+08
1.39307314e+08 1.40022051e+08 9.60148201e+07 2.73566454e+07
7.14558771e+06 2.66000422e+07 9.49583289e+06 8.23138822e+06
1.39248606e+08 6.54881792e+06 6.87416100e+06 1.34823281e+08
1.31167551e+08 1.34150405e+08 1.39451821e+08]
[-7.38301386e+07 -1.52299374e+08 -1.54297322e+08 -7.57586361e+07
-1.54651550e+08 -7.38424810e+07 -7.60007226e+07 -1.54173333e+08
-7.73374244e+07 -1.52066785e+08 -9.68917625e+07 -8.40575918e+07
-7.72804236e+07 -7.64041461e+07 -1.03778893e+08 -4.25830216e+07
-1.54879826e+08 -1.29032546e+08 -1.54589546e+08 -1.55192311e+08
-7.73779296e+07 -1.54812942e+08 -1.54409872e+08 -7.43705118e+07
-9.51522202e+07 -8.32271531e+07 -7.74273238e+07]
[-2.51053197e+08 -2.73614620e+08 -2.77086233e+08 -2.57190284e+08
-2.75341155e+08 -2.51110396e+08 -2.57663313e+08 -2.75900960e+08
-2.58800783e+08 -2.73381935e+08 -2.79487002e+08 -2.62842316e+08
-2.58663980e+08 -2.57873919e+08 -2.62318504e+08 -1.02829382e+08
-2.76184730e+08 -2.45394244e+08 -2.77209793e+08 -2.77386351e+08
-2.58791346e+08 -2.75542920e+08 -2.75166935e+08 -2.51200258e+08
-2.77784314e+08 -2.63060441e+08 -2.59096797e+08]
[-3.04346348e+08 -2.89376586e+08 -2.93016502e+08 -3.11683073e+08
-2.90354651e+08 -3.04503576e+08 -3.12217168e+08 -2.91439899e+08
-3.12995593e+08 -2.89198308e+08 -3.30793911e+08 -3.14757760e+08
-3.12846045e+08 -3.12259381e+08 -3.02595037e+08 -1.17591000e+08
-2.91409666e+08 -2.64184339e+08 -2.93018661e+08 -2.92902334e+08
-3.12945593e+08 -2.90530084e+08 -2.90258667e+08 -3.04337144e+08
-3.29564584e+08 -3.15492929e+08 -3.13357444e+08]
[-2.66664720e+08 -2.33419338e+08 -2.36173639e+08 -2.72798608e+08
-2.33631210e+08 -2.66814444e+08 -2.73225564e+08 -2.34784801e+08
-2.73579315e+08 -2.33321169e+08 -2.85307847e+08 -2.73621759e+08
-2.73450213e+08 -2.73146630e+08 -2.56395288e+08 -1.01984522e+08
-2.34603184e+08 -2.14267949e+08 -2.36025796e+08 -2.35810953e+08
-2.73508474e+08 -2.33761432e+08 -2.33617325e+08 -2.66477534e+08
-2.84702438e+08 -2.74534861e+08 -2.73899403e+08]
[-1.95316211e+08 -1.57158046e+08 -1.58677175e+08 -2.00152432e+08
-1.56727469e+08 -1.95356494e+08 -2.00397845e+08 -1.57699347e+08
-2.00409506e+08 -1.57114917e+08 -2.05318532e+08 -1.99254134e+08
-2.00309040e+08 -2.00262405e+08 -1.82007036e+08 -7.62102256e+07
-1.57483032e+08 -1.44779956e+08 -1.58383491e+08 -1.58190711e+08
-2.00321388e+08 -1.56813624e+08 -1.56770366e+08 -1.94960807e+08
-2.05181078e+08 -2.00156996e+08 -2.00635103e+08]
[-1.40917663e+08 -1.06536909e+08 -1.07433278e+08 -1.45002210e+08
-1.05902792e+08 -1.40850186e+08 -1.45159134e+08 -1.06700880e+08
-1.45038730e+08 -1.06524946e+08 -1.46917183e+08 -1.43602881e+08
-1.44980987e+08 -1.45024600e+08 -1.28878260e+08 -5.67964939e+07
-1.06473991e+08 -9.82803440e+07 -1.07141678e+08 -1.06942486e+08
-1.44975681e+08 -1.05953770e+08 -1.05966011e+08 -1.40453840e+08
-1.47042860e+08 -1.44375893e+08 -1.45203831e+08]
[-8.62964941e+07 -5.97449237e+07 -6.00524310e+07 -8.90848962e+07
-5.91197399e+07 -8.61673979e+07 -8.91562779e+07 -5.96442953e+07
-8.89969296e+07 -5.97302816e+07 -8.81283040e+07 -8.75518578e+07
-8.89599297e+07 -8.90490830e+07 -7.65001695e+07 -3.53650916e+07
-5.94843594e+07 -5.50541937e+07 -5.97803077e+07 -5.96799166e+07
-8.89496463e+07 -5.91492976e+07 -5.91777071e+07 -8.58650611e+07
-8.82624353e+07 -8.81413253e+07 -8.90986213e+07]
[-4.30319127e+07 -2.74690835e+07 -2.75422162e+07 -4.42194953e+07
-2.70866670e+07 -4.30136535e+07 -4.42391497e+07 -2.73742208e+07
-4.41128923e+07 -2.74766214e+07 -4.31077254e+07 -4.31634195e+07
-4.40945145e+07 -4.41728690e+07 -3.68795841e+07 -1.75272480e+07
-2.72685622e+07 -2.53324694e+07 -2.73810619e+07 -2.73309532e+07
-4.40868982e+07 -2.70947437e+07 -2.71229884e+07 -4.28648591e+07
-4.32596740e+07 -4.34727753e+07 -4.41659428e+07]
[-1.82079765e+07 -1.12887560e+07 -1.12640521e+07 -1.86144693e+07
-1.10942326e+07 -1.82166396e+07 -1.86144572e+07 -1.12203784e+07
-1.85414444e+07 -1.12942880e+07 -1.78832509e+07 -1.80893173e+07
-1.85347567e+07 -1.85825318e+07 -1.51756291e+07 -7.85918174e+06
-1.11744887e+07 -1.01754698e+07 -1.11783037e+07 -1.11670502e+07
-1.85318039e+07 -1.10957648e+07 -1.11133246e+07 -1.81562995e+07
-1.79798378e+07 -1.82240847e+07 -1.85646721e+07]
[-3.89704088e+06 -2.24990883e+06 -2.23220475e+06 -3.93626728e+06
-2.20136515e+06 -3.90247065e+06 -3.93577978e+06 -2.22927033e+06
-3.91808095e+06 -2.25179375e+06 -3.77247071e+06 -3.84220560e+06
-3.91683398e+06 -3.92879832e+06 -3.15887073e+06 -1.71602671e+06
-2.21930641e+06 -2.06504908e+06 -2.21020632e+06 -2.20961322e+06
-3.91531562e+06 -2.20161625e+06 -2.20588124e+06 -3.89846988e+06
-3.79982424e+06 -3.87165222e+06 -3.92278345e+06]
[ 5.65055339e+05 4.62495776e+05 4.77625131e+05 5.96438190e+05
4.63744465e+05 5.64095719e+05 5.99121344e+05 4.68552399e+05
6.01416613e+05 4.63786028e+05 6.75998582e+05 6.22129164e+05
6.01902903e+05 5.99095043e+05 6.28755677e+05 1.81994876e+05
4.67434963e+05 4.95629361e+05 4.81078434e+05 4.75656865e+05
6.01081713e+05 4.64279922e+05 4.64769889e+05 5.66578628e+05
6.77804810e+05 6.24724476e+05 6.01257827e+05]
[-9.82310920e-01 3.24283981e-01 7.63118387e-01 1.83983344e-01
-6.82721365e-01 9.37436219e-01 5.02488033e-01 -5.23104155e-01
8.97228509e-01 2.92298202e-01 -1.04851397e-01 -9.80234351e-01
1.39575188e-01 -8.39676431e-02 -4.57281278e-01 3.90584159e-01
8.59482798e-01 -6.26174923e-01 -2.88869063e-01 -6.00717080e-01
-5.72269431e-01 -3.49021356e-01 1.59324863e-01 6.42235690e-01
-9.65999123e-01 -5.61543254e-01 -1.57721714e-02]
[-3.25940141e-01 2.83997474e-01 -6.72544923e-01 6.28241251e-01
2.24384730e-02 5.31556822e-01 -7.30470426e-01 -5.49468146e-01
8.90289458e-01 7.22279020e-01 -7.28983252e-01 2.36932536e-02
-9.46700638e-01 9.85930646e-01 9.97244421e-01 -1.61646307e-01
-4.89658502e-02 5.19540944e-01 -6.86045213e-01 -7.37154712e-01
-2.51273772e-01 -4.04855754e-01 5.65352246e-01 -9.54120566e-01
4.19378270e-01 9.11165898e-01 5.80504452e-01]
[-9.16408651e-01 6.62528090e-02 -3.59118392e-01 -3.64863284e-02
-3.26993320e-01 -9.69006722e-02 -4.19949159e-01 -5.66775952e-01
-7.97385198e-01 9.45495833e-01 5.11025629e-01 3.77642164e-01
-7.35406191e-01 -6.09162838e-01 7.84113443e-01 1.98580246e-01
5.46072669e-01 -7.80083049e-01 9.49331955e-01 -9.75176492e-01
6.47670506e-01 1.23948288e-01 1.47046120e-01 -4.40086390e-01
1.29226882e-01 3.63278769e-01 -1.49917881e-01]
[-3.30798409e+06 -3.46371116e+06 -3.54315933e+06 -3.44668923e+06
-3.49364129e+06 -3.30372070e+06 -3.46005730e+06 -3.50779931e+06
-3.47566764e+06 -3.46395734e+06 -3.82502526e+06 -3.53124936e+06
-3.47741161e+06 -3.46232520e+06 -3.52972682e+06 -1.16861308e+06
-3.50512201e+06 -3.21564146e+06 -3.55775331e+06 -3.54546695e+06
-3.47797380e+06 -3.49326781e+06 -3.49295785e+06 -3.29978699e+06
-3.81164656e+06 -3.53369999e+06 -3.47960979e+06]
[-1.92466354e+07 -1.81425053e+07 -1.84474494e+07 -1.98295898e+07
-1.82326384e+07 -1.92377306e+07 -1.98831838e+07 -1.83116464e+07
-1.99373072e+07 -1.81344252e+07 -2.10812530e+07 -2.00321553e+07
-1.99433585e+07 -1.98904721e+07 -1.91124464e+07 -7.06831103e+06
-1.82990182e+07 -1.65432274e+07 -1.84839078e+07 -1.84455652e+07
-1.99476104e+07 -1.82362836e+07 -1.82307713e+07 -1.92092646e+07
-2.10292879e+07 -2.00806083e+07 -1.99670520e+07]
[-5.24068697e+07 -4.85917574e+07 -4.92854777e+07 -5.35513972e+07
-4.87985475e+07 -5.24149264e+07 -5.36837963e+07 -4.89835086e+07
-5.38210210e+07 -4.85469425e+07 -5.61977422e+07 -5.40371060e+07
-5.38276006e+07 -5.36949968e+07 -5.11720373e+07 -1.94763466e+07
-4.89707682e+07 -4.42448455e+07 -4.93332698e+07 -4.92916270e+07
-5.38298251e+07 -4.88114136e+07 -4.87847787e+07 -5.23905792e+07
-5.59746509e+07 -5.42001274e+07 -5.39027024e+07]
[-1.08280930e+08 -1.00512443e+08 -1.02045574e+08 -1.09954308e+08
-1.01074097e+08 -1.08512952e+08 -1.10210715e+08 -1.01431921e+08
-1.10528699e+08 -1.00433371e+08 -1.16368881e+08 -1.11082043e+08
-1.10503136e+08 -1.10238161e+08 -1.06171920e+08 -3.81406813e+07
-1.01381501e+08 -9.27678136e+07 -1.02167325e+08 -1.02099467e+08
-1.10512460e+08 -1.01079364e+08 -1.01010011e+08 -1.08497229e+08
-1.15856561e+08 -1.11360042e+08 -1.10690796e+08]
[-1.94777141e+08 -1.82705068e+08 -1.85982052e+08 -1.97640370e+08
-1.84073927e+08 -1.95365764e+08 -1.98128565e+08 -1.84698273e+08
-1.98841480e+08 -1.82585929e+08 -2.12710352e+08 -2.00558544e+08
-1.98762562e+08 -1.98203433e+08 -1.94728239e+08 -6.20776207e+07
-1.84549092e+08 -1.72039313e+08 -1.86375217e+08 -1.86176852e+08
-1.98784878e+08 -1.84073373e+08 -1.83892779e+08 -1.95346829e+08
-2.11561197e+08 -2.00943797e+08 -1.99130403e+08]
[-2.77276958e+08 -2.62902306e+08 -2.67787531e+08 -2.81374801e+08
-2.65036940e+08 -2.78136732e+08 -2.82056345e+08 -2.65874137e+08
-2.83216603e+08 -2.62696454e+08 -3.04857102e+08 -2.86187732e+08
-2.83079204e+08 -2.82213867e+08 -2.80403395e+08 -8.55193990e+07
-2.65651169e+08 -2.49409831e+08 -2.68409720e+08 -2.68133458e+08
-2.83088930e+08 -2.65031585e+08 -2.64688252e+08 -2.78088588e+08
-3.02961378e+08 -2.86728836e+08 -2.83631119e+08]
[-2.88504120e+08 -2.83489703e+08 -2.89319894e+08 -2.92242751e+08
-2.86439172e+08 -2.89622224e+08 -2.92982706e+08 -2.87139555e+08
-2.94560415e+08 -2.83188599e+08 -3.21519621e+08 -2.98770562e+08
-2.94394566e+08 -2.93286148e+08 -2.98580262e+08 -8.20635164e+07
-2.86860792e+08 -2.71369302e+08 -2.90233964e+08 -2.89941056e+08
-2.94381380e+08 -2.86400692e+08 -2.85872523e+08 -2.89510724e+08
-3.18896630e+08 -2.99249572e+08 -2.95034668e+08]
[-2.48471441e+08 -2.63273215e+08 -2.69264786e+08 -2.50275895e+08
-2.66987379e+08 -2.49804155e+08 -2.50989305e+08 -2.67269815e+08
-2.52852745e+08 -2.62887663e+08 -2.81700381e+08 -2.57959058e+08
-2.52690178e+08 -2.51431311e+08 -2.66292791e+08 -6.36526334e+07
-2.67025337e+08 -2.53159639e+08 -2.70396747e+08 -2.70260310e+08
-2.52674460e+08 -2.66869559e+08 -2.66222491e+08 -2.49710543e+08
-2.78482440e+08 -2.58082391e+08 -2.53331378e+08]
[-1.67326588e+08 -2.16380068e+08 -2.21850708e+08 -1.66146035e+08
-2.20761774e+08 -1.68862373e+08 -1.66783985e+08 -2.20459851e+08
-1.68786125e+08 -2.15954321e+08 -1.97849657e+08 -1.75056788e+08
-1.68664116e+08 -1.67329022e+08 -1.95206669e+08 -3.71152420e+07
-2.20393831e+08 -2.06175930e+08 -2.23115443e+08 -2.23311472e+08
-1.68707670e+08 -2.20556475e+08 -2.19905901e+08 -1.68993245e+08
-1.94395880e+08 -1.74490640e+08 -1.69227383e+08]
[-1.03795677e+08 -1.77748797e+08 -1.82085621e+08 -1.00361170e+08
-1.82156000e+08 -1.05382961e+08 -1.00870040e+08 -1.81438226e+08
-1.02856321e+08 -1.77296446e+08 -1.28335432e+08 -1.09489434e+08
-1.02759733e+08 -1.01460716e+08 -1.35415936e+08 -2.41254489e+07
-1.81657405e+08 -1.63845030e+08 -1.83190234e+08 -1.83779535e+08
-1.02833004e+08 -1.81928640e+08 -1.81364964e+08 -1.05837481e+08
-1.25029696e+08 -1.08562545e+08 -1.03183877e+08]
[-6.11790411e+07 -1.49923872e+08 -1.53650079e+08 -5.68237006e+07
-1.54247079e+08 -6.27562811e+07 -5.73121410e+07 -1.53324636e+08
-5.92771886e+07 -1.49486746e+08 -8.37035132e+07 -6.71179910e+07
-5.92102123e+07 -5.78720372e+07 -9.73130160e+07 -1.40975635e+07
-1.53795353e+08 -1.35872394e+08 -1.54692441e+08 -1.55461138e+08
-5.92610017e+07 -1.54077541e+08 -1.53579033e+08 -6.35925357e+07
-8.04275337e+07 -6.58942574e+07 -5.94805312e+07]
[-4.39173736e+07 -1.38191535e+08 -1.41636868e+08 -3.91313988e+07
-1.42462856e+08 -4.54139665e+07 -3.96275847e+07 -1.41480062e+08
-4.15474896e+07 -1.37799525e+08 -6.52843248e+07 -4.95912288e+07
-4.15066654e+07 -4.01459823e+07 -8.14080119e+07 -9.99715237e+06
-1.42055225e+08 -1.24167728e+08 -1.42625483e+08 -1.43467639e+08
-4.15317274e+07 -1.42341334e+08 -1.41865556e+08 -4.65267827e+07
-6.21566410e+07 -4.82185120e+07 -4.16692082e+07]
[-7.04099667e+07 -1.59230620e+08 -1.63007663e+08 -6.69663387e+07
-1.63426735e+08 -7.16655810e+07 -6.74748866e+07 -1.62653661e+08
-6.93832099e+07 -1.58915965e+08 -9.47237769e+07 -7.72999676e+07
-6.93426338e+07 -6.79960828e+07 -1.06696166e+08 -2.04104232e+07
-1.63155137e+08 -1.43862896e+08 -1.64016544e+08 -1.64677118e+08
-6.93871535e+07 -1.63340838e+08 -1.62875817e+08 -7.27292860e+07
-9.18600461e+07 -7.60022594e+07 -6.95058066e+07]
[-1.57759066e+08 -2.20732257e+08 -2.25100307e+08 -1.58288097e+08
-2.24351622e+08 -1.58632084e+08 -1.58865724e+08 -2.24171453e+08
-1.60693471e+08 -2.20449287e+08 -1.87958153e+08 -1.68046692e+08
-1.60632435e+08 -1.59343616e+08 -1.87305731e+08 -5.42386508e+07
-2.24510314e+08 -2.01621512e+08 -2.25990398e+08 -2.26311571e+08
-1.60692335e+08 -2.24364825e+08 -2.23911665e+08 -1.59437939e+08
-1.85340257e+08 -1.67316748e+08 -1.60879948e+08]
[-2.92742153e+08 -3.12016094e+08 -3.17179105e+08 -2.98995691e+08
-3.14604054e+08 -2.93203322e+08 -2.99666518e+08 -3.15368273e+08
-3.01197826e+08 -3.11772626e+08 -3.29450416e+08 -3.06555756e+08
-3.01099390e+08 -2.99987375e+08 -3.08779338e+08 -1.06651848e+08
-3.15426071e+08 -2.87189608e+08 -3.17815556e+08 -3.17678812e+08
-3.01204226e+08 -3.14735318e+08 -3.14328436e+08 -2.93444428e+08
-3.27245752e+08 -3.06680918e+08 -3.01518479e+08]
[-3.62043595e+08 -3.40537681e+08 -3.45322703e+08 -3.69738110e+08
-3.41976953e+08 -3.62488727e+08 -3.70423643e+08 -3.43324889e+08
-3.71373080e+08 -3.40352365e+08 -3.93058280e+08 -3.73401327e+08
-3.71224645e+08 -3.70462858e+08 -3.59803626e+08 -1.34400528e+08
-3.43171704e+08 -3.13935331e+08 -3.45554402e+08 -3.45283969e+08
-3.71349046e+08 -3.42142111e+08 -3.41859019e+08 -3.62417829e+08
-3.91432670e+08 -3.74136163e+08 -3.71775997e+08]
[-3.20182152e+08 -2.82148861e+08 -2.85765685e+08 -3.26863360e+08
-2.82679917e+08 -3.20570578e+08 -3.27412746e+08 -2.84062292e+08
-3.27864501e+08 -2.82041225e+08 -3.42415390e+08 -3.27970728e+08
-3.27722636e+08 -3.27306705e+08 -3.09161048e+08 -1.20102286e+08
-2.83813487e+08 -2.60386701e+08 -2.85756931e+08 -2.85432836e+08
-3.27822773e+08 -2.82819975e+08 -2.82666877e+08 -3.20332221e+08
-3.41520918e+08 -3.28836656e+08 -3.28223026e+08]
[-2.32195416e+08 -1.94739382e+08 -1.96913130e+08 -2.37206607e+08
-1.94614679e+08 -2.32390577e+08 -2.37552767e+08 -1.95741192e+08
-2.37656662e+08 -1.94690774e+08 -2.45733381e+08 -2.36951592e+08
-2.37562632e+08 -2.37410883e+08 -2.19307797e+08 -8.96057694e+07
-1.95508189e+08 -1.79152741e+08 -1.96745037e+08 -1.96478403e+08
-2.37622640e+08 -1.94721616e+08 -1.94666326e+08 -2.32093473e+08
-2.45417393e+08 -2.37783718e+08 -2.37909668e+08]
[-1.58334383e+08 -1.25121216e+08 -1.26371084e+08 -1.62376759e+08
-1.24676324e+08 -1.58330368e+08 -1.62589115e+08 -1.25546597e+08
-1.62529758e+08 -1.25117611e+08 -1.66552432e+08 -1.61495628e+08
-1.62476929e+08 -1.62457485e+08 -1.46949091e+08 -6.22643405e+07
-1.25326833e+08 -1.15460494e+08 -1.26166568e+08 -1.25922035e+08
-1.62495423e+08 -1.24748672e+08 -1.24748465e+08 -1.58024562e+08
-1.66573219e+08 -1.62231179e+08 -1.62694577e+08]
[-1.06208575e+08 -7.91080523e+07 -7.97036710e+07 -1.09164351e+08
-7.85755470e+07 -1.06118431e+08 -1.09280614e+08 -7.92012543e+07
-1.09150571e+08 -7.91079964e+07 -1.10046156e+08 -1.07870118e+08
-1.09118307e+08 -1.09169630e+08 -9.61972696e+07 -4.28785434e+07
-7.90229047e+07 -7.27395044e+07 -7.94758287e+07 -7.93238799e+07
-1.09120842e+08 -7.86170741e+07 -7.86411087e+07 -1.05837826e+08
-1.10177117e+08 -1.08480157e+08 -1.09263765e+08]
[-6.26158270e+07 -4.41856617e+07 -4.44300997e+07 -6.43772375e+07
-4.37842462e+07 -6.25333138e+07 -6.44352771e+07 -4.41669807e+07
-6.43168658e+07 -4.41840461e+07 -6.38461142e+07 -6.32567743e+07
-6.42951728e+07 -6.43548115e+07 -5.54157116e+07 -2.54235497e+07
-4.40438044e+07 -4.05430341e+07 -4.42510671e+07 -4.41812487e+07
-6.42947792e+07 -4.38029775e+07 -4.38276655e+07 -6.23445986e+07
-6.39516232e+07 -6.36393299e+07 -6.43896324e+07]
[-2.71681183e+07 -1.77923929e+07 -1.78533076e+07 -2.79772458e+07
-1.75628510e+07 -2.71291888e+07 -2.79933480e+07 -1.77459804e+07
-2.79153058e+07 -1.77973320e+07 -2.72727356e+07 -2.72594667e+07
-2.79044634e+07 -2.79510425e+07 -2.33475369e+07 -1.11063497e+07
-1.76794249e+07 -1.62334667e+07 -1.77578771e+07 -1.77236778e+07
-2.79042425e+07 -1.75697442e+07 -1.75881832e+07 -2.70272714e+07
-2.73581038e+07 -2.74506447e+07 -2.79471920e+07]
[-1.02855976e+07 -6.55887736e+06 -6.57419897e+06 -1.05428748e+07
-6.46372641e+06 -1.02870391e+07 -1.05483272e+07 -6.53724268e+06
-1.05093187e+07 -6.56354390e+06 -1.02383796e+07 -1.02553917e+07
-1.05057292e+07 -1.05286306e+07 -8.72849570e+06 -4.27353747e+06
-6.50811953e+06 -5.96646215e+06 -6.53506877e+06 -6.52141701e+06
-1.05055871e+07 -6.46410289e+06 -6.47455421e+06 -1.02496524e+07
-1.02873661e+07 -1.03177127e+07 -1.05232000e+07]
[-2.51784263e+06 -1.52413054e+06 -1.51479054e+06 -2.52856713e+06
-1.49659177e+06 -2.52281795e+06 -2.52850627e+06 -1.51393836e+06
-2.51746078e+06 -1.52570916e+06 -2.43063934e+06 -2.46836022e+06
-2.51669666e+06 -2.52391024e+06 -2.04308756e+06 -1.10899218e+06
-1.50776750e+06 -1.39179845e+06 -1.50126416e+06 -1.50149145e+06
-2.51602717e+06 -1.49620763e+06 -1.49930046e+06 -2.52246839e+06
-2.44824153e+06 -2.48489465e+06 -2.52058123e+06]
[ 4.32075425e+04 1.02106058e+04 1.36022544e+04 4.28782551e+04
1.15421951e+04 4.43343730e+04 4.34960695e+04 1.19883864e+04
4.37938840e+04 1.07443232e+04 5.23196103e+04 4.63485960e+04
4.37975922e+04 4.31759066e+04 5.66374951e+04 -2.79311969e+04
1.19178926e+04 4.08622304e+04 1.49517886e+04 1.39161204e+04
4.34450631e+04 1.17724323e+04 1.18039965e+04 4.54078364e+04
5.15968855e+04 4.64815152e+04 4.37177680e+04]
[ 2.03118974e-01 -4.82917229e-01 -3.33785174e-01 2.33470984e-01
3.67747494e-01 -7.78671810e-01 -3.84460971e-01 -5.67669013e-01
6.94590727e-01 9.52202091e-01 -4.66404870e-02 8.25151091e-01
5.87356389e-01 -9.96274186e-01 6.89944693e-01 -1.15201473e-01
-7.43148725e-02 2.45004512e-01 2.53549751e-01 6.64922424e-01
-6.52589168e-01 3.86127948e-01 -8.71141177e-02 -9.63615804e-01
-4.91451046e-02 6.89194889e-01 -5.67266472e-01]
[ 9.26768715e-01 7.46869717e-01 2.17733808e-01 3.09935160e-01
1.23907031e-01 -6.85376852e-01 -8.55125648e-01 8.45136326e-01
-5.86762518e-01 -8.96543723e-01 -4.90510631e-01 8.36699863e-02
-1.00239516e-01 8.92611360e-01 -4.45056762e-01 -2.02487050e-01
-6.72729096e-01 -3.12818872e-01 -2.94212084e-01 -3.27290006e-01
-9.59181504e-01 -6.89981247e-01 5.18178288e-01 -6.58291436e-01
2.11672593e-01 -7.60303624e-01 -6.76257060e-01]
[-6.55599790e-01 -8.03931635e-02 9.13684356e-01 -7.29879109e-01
-3.38363306e-02 6.79449870e-01 2.82220593e-01 5.96251691e-01
4.92740362e-02 6.40579523e-01 -6.63585648e-01 -2.07552422e-01
1.76443731e-01 -1.60225955e-01 -7.49884217e-01 6.12036217e-01
9.76171806e-01 -5.37762481e-01 7.23212263e-01 -2.61322288e-02
-4.63138414e-02 2.94462970e-01 2.10891965e-01 -8.22205486e-01
3.89908967e-01 7.23055245e-01 -3.87692551e-01]
[-5.48903102e+05 -6.52413484e+05 -6.67109863e+05 -5.64968958e+05
-6.60033681e+05 -5.49580521e+05 -5.67620243e+05 -6.61851165e+05
-5.71352247e+05 -6.52359741e+05 -6.52788040e+05 -5.90771334e+05
-5.71914104e+05 -5.68333840e+05 -6.18144925e+05 -1.96379993e+05
-6.61909543e+05 -6.00172710e+05 -6.70343342e+05 -6.68708654e+05
-5.71787141e+05 -6.59843191e+05 -6.59643305e+05 -5.51611237e+05
-6.49923117e+05 -5.91105884e+05 -5.71815574e+05]
[-6.09627269e+06 -6.29075269e+06 -6.41917830e+06 -6.20609872e+06
-6.35127407e+06 -6.10874819e+06 -6.23023534e+06 -6.37100354e+06
-6.25661616e+06 -6.28918144e+06 -6.81587038e+06 -6.36159945e+06
-6.25903879e+06 -6.23220837e+06 -6.32342399e+06 -2.08402012e+06
-6.37028922e+06 -5.82147645e+06 -6.44195266e+06 -6.42978708e+06
-6.25882122e+06 -6.35142245e+06 -6.34837526e+06 -6.11693055e+06
-6.78554136e+06 -6.36483889e+06 -6.26516558e+06]
[-2.12422556e+07 -2.11785950e+07 -2.15443458e+07 -2.15423471e+07
-2.13442462e+07 -2.12858755e+07 -2.16127228e+07 -2.14061901e+07
-2.16986464e+07 -2.11649413e+07 -2.32597710e+07 -2.19964924e+07
-2.17035529e+07 -2.16224604e+07 -2.15510825e+07 -7.59563325e+06
-2.14109006e+07 -1.95387400e+07 -2.15971339e+07 -2.15732474e+07
-2.17001777e+07 -2.13465952e+07 -2.13336021e+07 -2.13213747e+07
-2.31483536e+07 -2.20368603e+07 -2.17282502e+07]
[-5.07980187e+07 -4.97897336e+07 -5.06212821e+07 -5.13689571e+07
-5.01751261e+07 -5.09276257e+07 -5.15228193e+07 -5.03161659e+07
-5.17183688e+07 -4.97507878e+07 -5.50479385e+07 -5.23271348e+07
-5.17187758e+07 -5.15404053e+07 -5.08748979e+07 -1.76383344e+07
-5.03223178e+07 -4.60419478e+07 -5.07276809e+07 -5.07039001e+07
-5.17203929e+07 -5.01806749e+07 -5.01437983e+07 -5.09941713e+07
-5.47333358e+07 -5.24386150e+07 -5.17960567e+07]
[-1.00086729e+08 -9.94638706e+07 -1.01432714e+08 -1.01136797e+08
-1.00424688e+08 -1.00493979e+08 -1.01461961e+08 -1.00704279e+08
-1.01902816e+08 -9.94087629e+07 -1.10580737e+08 -1.03484689e+08
-1.01883012e+08 -1.01499196e+08 -1.02435938e+08 -3.18572894e+07
-1.00673015e+08 -9.36949260e+07 -1.01748914e+08 -1.01633229e+08
-1.01897002e+08 -1.00429003e+08 -1.00334165e+08 -1.00599885e+08
-1.09884795e+08 -1.03563680e+08 -1.02064275e+08]
[-1.45205545e+08 -1.49776228e+08 -1.53048421e+08 -1.45924039e+08
-1.51619059e+08 -1.45954433e+08 -1.46444479e+08 -1.51934147e+08
-1.47241659e+08 -1.49685898e+08 -1.62208492e+08 -1.50145707e+08
-1.47200112e+08 -1.46529321e+08 -1.51859932e+08 -4.15500170e+07
-1.51892635e+08 -1.42848627e+08 -1.53659661e+08 -1.53522796e+08
-1.47221400e+08 -1.51604867e+08 -1.51417250e+08 -1.46181113e+08
-1.60911442e+08 -1.50127382e+08 -1.47490301e+08]
[-1.46030418e+08 -1.68645464e+08 -1.73174555e+08 -1.45964356e+08
-1.71628818e+08 -1.47062854e+08 -1.46617089e+08 -1.71747997e+08
-1.47927151e+08 -1.68502879e+08 -1.70361453e+08 -1.53048454e+08
-1.47893997e+08 -1.46864378e+08 -1.63251588e+08 -3.30218599e+07
-1.71716185e+08 -1.63488624e+08 -1.74239838e+08 -1.74068312e+08
-1.47906225e+08 -1.71573291e+08 -1.71243280e+08 -1.47407801e+08
-1.68366629e+08 -1.52718015e+08 -1.48219733e+08]
[-1.50415400e+08 -1.94497394e+08 -2.00099178e+08 -1.49509253e+08
-1.98587795e+08 -1.51781911e+08 -1.50266369e+08 -1.98481366e+08
-1.52068383e+08 -1.94269683e+08 -1.81079504e+08 -1.59072224e+08
-1.52054050e+08 -1.50686793e+08 -1.77439009e+08 -3.06623077e+07
-1.98503934e+08 -1.87753493e+08 -2.01548126e+08 -2.01427574e+08
-1.52079499e+08 -1.98487281e+08 -1.98020530e+08 -1.52196256e+08
-1.78353947e+08 -1.58420753e+08 -1.52414362e+08]
[-1.56506993e+08 -2.19763791e+08 -2.25942162e+08 -1.54266758e+08
-2.24725308e+08 -1.58238295e+08 -1.55093600e+08 -2.24417690e+08
-1.57228519e+08 -2.19484030e+08 -1.90106518e+08 -1.65366437e+08
-1.57209427e+08 -1.55617727e+08 -1.89650868e+08 -3.26994909e+07
-2.24528747e+08 -2.09451126e+08 -2.27589226e+08 -2.27661643e+08
-1.57280628e+08 -2.24558476e+08 -2.24059049e+08 -1.58841516e+08
-1.86883232e+08 -1.64357452e+08 -1.57590462e+08]
[-1.98795775e+08 -2.65347275e+08 -2.71999879e+08 -1.96307362e+08
-2.70640952e+08 -2.00844775e+08 -1.97195936e+08 -2.70450664e+08
-1.99533585e+08 -2.65029103e+08 -2.35757733e+08 -2.08520318e+08
-1.99479214e+08 -1.97761608e+08 -2.32889502e+08 -4.88988745e+07
-2.70607623e+08 -2.50583553e+08 -2.73655478e+08 -2.73866158e+08
-1.99600653e+08 -2.70481984e+08 -2.69980530e+08 -2.01701941e+08
-2.32189484e+08 -2.07441106e+08 -1.99910825e+08]
[-2.48127301e+08 -3.07540887e+08 -3.14773030e+08 -2.46772328e+08
-3.12865051e+08 -2.50219834e+08 -2.47767477e+08 -3.12943747e+08
-2.50191631e+08 -3.07236349e+08 -2.89349662e+08 -2.59817009e+08
-2.50124730e+08 -2.48308269e+08 -2.81365636e+08 -6.68203979e+07
-3.13078096e+08 -2.90551662e+08 -3.16427694e+08 -3.16574246e+08
-2.50256394e+08 -3.12749274e+08 -3.12265896e+08 -2.51229575e+08
-2.85657574e+08 -2.58826528e+08 -2.50571994e+08]
[-2.61720327e+08 -3.14169124e+08 -3.21404419e+08 -2.61803341e+08
-3.19167201e+08 -2.63531580e+08 -2.62814397e+08 -3.19429807e+08
-2.65127947e+08 -3.13909654e+08 -3.04321729e+08 -2.74513892e+08
-2.65087968e+08 -2.63314528e+08 -2.93793278e+08 -7.42926958e+07
-3.19498172e+08 -2.97097722e+08 -3.22985670e+08 -3.22994503e+08
-2.65193892e+08 -3.19087814e+08 -3.18628750e+08 -2.64512098e+08
-3.00861491e+08 -2.73634592e+08 -2.65486664e+08]
[-2.53581641e+08 -2.94374455e+08 -3.00699487e+08 -2.54363560e+08
-2.98552277e+08 -2.55026225e+08 -2.55234364e+08 -2.98945686e+08
-2.57199450e+08 -2.94167202e+08 -2.91452629e+08 -2.65123022e+08
-2.57187430e+08 -2.55667607e+08 -2.78873606e+08 -7.78119457e+07
-2.98961189e+08 -2.76632528e+08 -3.01977371e+08 -3.01950783e+08
-2.57273637e+08 -2.98502054e+08 -2.98111609e+08 -2.55898450e+08
-2.88637004e+08 -2.64481832e+08 -2.57528679e+08]
[-2.53457471e+08 -2.75346562e+08 -2.80734871e+08 -2.56231890e+08
-2.78407230e+08 -2.54509317e+08 -2.56966961e+08 -2.79049220e+08
-2.58494455e+08 -2.75181489e+08 -2.87440183e+08 -2.64617963e+08
-2.58479160e+08 -2.57287296e+08 -2.71110750e+08 -8.39652381e+07
-2.78991630e+08 -2.57809480e+08 -2.81697874e+08 -2.81498459e+08
-2.58568878e+08 -2.78417103e+08 -2.78114988e+08 -2.55139603e+08
-2.85354081e+08 -2.64341368e+08 -2.58803565e+08]
[-2.91028359e+08 -2.81218892e+08 -2.85729591e+08 -2.97186002e+08
-2.82836220e+08 -2.91554035e+08 -2.97805953e+08 -2.83952221e+08
-2.98777263e+08 -2.81086755e+08 -3.20523916e+08 -3.01735888e+08
-2.98713950e+08 -2.97927640e+08 -2.95285063e+08 -1.04698076e+08
-2.83779281e+08 -2.61354547e+08 -2.86224392e+08 -2.85871896e+08
-2.98835484e+08 -2.82948029e+08 -2.82739375e+08 -2.91681687e+08
-3.19047929e+08 -3.02160612e+08 -2.99101242e+08]
[-2.80704376e+08 -2.50203901e+08 -2.53667294e+08 -2.86716597e+08
-2.50802924e+08 -2.81169946e+08 -2.87219585e+08 -2.52086568e+08
-2.87671919e+08 -2.50151636e+08 -3.02721893e+08 -2.88488350e+08
-2.87571759e+08 -2.87146598e+08 -2.74507333e+08 -1.04153054e+08
-2.51849294e+08 -2.32554389e+08 -2.53813451e+08 -2.53437306e+08
-2.87681486e+08 -2.50947122e+08 -2.50838794e+08 -2.81114772e+08
-3.01893625e+08 -2.89124450e+08 -2.87954933e+08]
[-2.19369292e+08 -1.86147470e+08 -1.88479310e+08 -2.24619151e+08
-1.86102453e+08 -2.19615778e+08 -2.24977055e+08 -1.87234850e+08
-2.25111383e+08 -1.86135950e+08 -2.34886394e+08 -2.25061808e+08
-2.25031253e+08 -2.24846767e+08 -2.10723420e+08 -8.37646379e+07
-1.87007012e+08 -1.72956490e+08 -1.88448658e+08 -1.88083899e+08
-2.25108944e+08 -1.86242858e+08 -1.86196639e+08 -2.19429619e+08
-2.34569083e+08 -2.25689593e+08 -2.25316001e+08]
[-1.56313583e+08 -1.26849385e+08 -1.28172437e+08 -1.60131854e+08
-1.26474308e+08 -1.56376850e+08 -1.60355479e+08 -1.27345520e+08
-1.60318268e+08 -1.26849481e+08 -1.65768001e+08 -1.59945118e+08
-1.60274251e+08 -1.60222654e+08 -1.47066176e+08 -6.15070033e+07
-1.27180622e+08 -1.17219629e+08 -1.28034021e+08 -1.27771254e+08
-1.60309757e+08 -1.26593336e+08 -1.26582804e+08 -1.56190375e+08
-1.65698895e+08 -1.60554982e+08 -1.60450057e+08]
[-9.96749126e+07 -7.67927100e+07 -7.74014346e+07 -1.02442426e+08
-7.63255677e+07 -9.95846172e+07 -1.02555857e+08 -7.69168342e+07
-1.02455891e+08 -7.67959429e+07 -1.04538427e+08 -1.01754688e+08
-1.02432150e+08 -1.02456722e+08 -9.18212161e+07 -4.04060194e+07
-7.67950852e+07 -7.06055583e+07 -7.72283046e+07 -7.70607773e+07
-1.02443931e+08 -7.64020902e+07 -7.64125077e+07 -9.93990365e+07
-1.04602550e+08 -1.02258774e+08 -1.02531648e+08]
[-6.18404157e+07 -4.51648761e+07 -4.54524045e+07 -6.36165162e+07
-4.48033873e+07 -6.17585415e+07 -6.36832245e+07 -4.51799246e+07
-6.35824919e+07 -4.51701011e+07 -6.38031993e+07 -6.27559569e+07
-6.35674326e+07 -6.36051940e+07 -5.56424774e+07 -2.47811439e+07
-4.50863569e+07 -4.15451843e+07 -4.53115474e+07 -4.52240875e+07
-6.35647123e+07 -4.48457634e+07 -4.48576679e+07 -6.16050201e+07
-6.38590225e+07 -6.31215858e+07 -6.36317518e+07]
[-3.14670710e+07 -2.15098115e+07 -2.16165616e+07 -3.23721761e+07
-2.12837457e+07 -3.14197054e+07 -3.24013654e+07 -2.14870048e+07
-3.23269897e+07 -2.15166075e+07 -3.19818202e+07 -3.17318944e+07
-3.23177672e+07 -3.23534804e+07 -2.75864435e+07 -1.25608905e+07
-2.14259762e+07 -1.98532820e+07 -2.15271103e+07 -2.14841676e+07
-3.23148978e+07 -2.13001752e+07 -2.13140852e+07 -3.13263135e+07
-3.20419996e+07 -3.19344666e+07 -3.23541174e+07]
[-1.28949191e+07 -8.80635054e+06 -8.81029049e+06 -1.32578430e+07
-8.69651932e+06 -1.28668600e+07 -1.32648660e+07 -8.77737970e+06
-1.32268874e+07 -8.80813916e+06 -1.28431666e+07 -1.29083036e+07
-1.32224518e+07 -1.32435353e+07 -1.10990020e+07 -5.45655838e+06
-8.75623130e+06 -7.92475625e+06 -8.75846211e+06 -8.75623669e+06
-1.32219913e+07 -8.70216933e+06 -8.71092889e+06 -1.28250345e+07
-1.28694768e+07 -1.29999563e+07 -1.32389252e+07]
[-2.27295494e+06 -1.51574751e+06 -1.51831327e+06 -2.34995681e+06
-1.49583493e+06 -2.26412377e+06 -2.35073396e+06 -1.51083147e+06
-2.34458274e+06 -1.51637333e+06 -2.28640299e+06 -2.28779499e+06
-2.34415839e+06 -2.34781246e+06 -1.96998977e+06 -9.14205722e+05
-1.50665309e+06 -1.37813554e+06 -1.51022923e+06 -1.50828009e+06
-2.34412243e+06 -1.49719317e+06 -1.49862176e+06 -2.25442796e+06
-2.29030150e+06 -2.30146450e+06 -2.34673459e+06]
[-2.85506334e+05 -2.05902838e+05 -2.05594070e+05 -2.88402937e+05
-2.04178154e+05 -2.84645245e+05 -2.88339041e+05 -2.05844936e+05
-2.87564082e+05 -2.06117811e+05 -2.77871043e+05 -2.79266982e+05
-2.87559906e+05 -2.88137123e+05 -2.36810881e+05 -1.25554583e+05
-2.05279921e+05 -1.79368562e+05 -2.04416154e+05 -2.04649510e+05
-2.87691619e+05 -2.04005834e+05 -2.04379974e+05 -2.83936207e+05
-2.79599187e+05 -2.81286785e+05 -2.88026435e+05]
[-1.47105038e+05 -9.24425128e+04 -9.16615900e+04 -1.42844980e+05
-9.12839108e+04 -1.49025947e+05 -1.42777421e+05 -9.21555799e+04
-1.42059432e+05 -9.26027278e+04 -1.35295742e+05 -1.39052718e+05
-1.41954681e+05 -1.42465572e+05 -1.17839014e+05 -6.37354838e+04
-9.18334321e+04 -8.53067869e+04 -9.08450123e+04 -9.11296394e+04
-1.41951069e+05 -9.11463163e+04 -9.13977551e+04 -1.49810614e+05
-1.36492003e+05 -1.39597363e+05 -1.42254197e+05]
[ 7.54214327e-01 3.36206920e-01 4.15428009e-01 -6.77224477e-01
-9.94339472e-01 -9.88678729e-01 3.80425303e-01 -7.59328285e-01
-8.53362357e-02 2.61276754e-01 9.08872341e-01 -4.04468724e-01
9.32620234e-01 -2.28104798e-01 3.05051211e-01 4.75550515e-01
8.73923877e-01 8.14646242e-01 -5.99394992e-01 1.28387956e-01
-8.34059656e-03 -7.01404898e-01 4.62870922e-01 -5.31381272e-01
-6.17812475e-01 -7.22568000e-01 -4.19452442e-01]
[-3.74987920e-01 -9.99503781e-01 -3.08211812e-01 9.20732945e-01
1.78536990e-01 7.76973216e-01 -4.86379886e-01 -9.99620994e-01
-4.80661933e-01 -4.30461250e-01 1.40093677e-01 2.23341121e-01
-6.54221145e-01 -9.02554066e-01 -7.27999356e-01 -3.20556140e-01
3.12573491e-01 -4.30810534e-01 3.59746693e-01 1.23565332e-03
-1.16596888e-02 -8.38686041e-02 -8.94313778e-01 -4.57153567e-02
8.41329691e-01 5.73352767e-01 -7.79907296e-01]
[-3.72421531e-01 7.51546298e-01 -5.16314648e-01 -4.16746980e-01
-1.79902334e-01 3.33275090e-01 -7.04738181e-01 1.86303252e-02
-7.46670613e-01 6.39535423e-01 1.58262326e-01 8.83854104e-01
-3.96371102e-01 -3.67065140e-01 4.34868434e-01 -6.00306059e-01
7.08193049e-01 -2.04648069e-01 -5.62674629e-01 -3.70785525e-01
9.11080075e-01 3.15426107e-01 2.85343092e-01 9.68382724e-01
-5.73856725e-01 8.77971309e-03 -4.24082796e-01]
[-1.33630234e-01 6.98181042e-01 -5.25423245e-02 -2.69203036e-01
-2.85282622e-01 -6.11750243e-01 -9.20689292e-01 -6.89694703e-01
-3.18001138e-01 -1.30655159e-01 4.29867614e-02 -1.98692552e-01
5.78598818e-01 -2.77036561e-01 5.68694183e-02 -1.62172738e-01
-9.14671712e-01 6.52296823e-01 -9.90366064e-01 -5.18804939e-01
-1.47289204e-01 8.81653302e-01 -6.12096375e-01 -1.90052821e-01
-5.83848487e-01 -9.08935133e-01 2.72655749e-02]
[-2.31471882e+06 -2.25871507e+06 -2.30612199e+06 -2.33315285e+06
-2.28285506e+06 -2.32247689e+06 -2.34248515e+06 -2.28827545e+06
-2.35074100e+06 -2.25762647e+06 -2.47998245e+06 -2.36443584e+06
-2.35044077e+06 -2.34149363e+06 -2.32837427e+06 -7.22909034e+05
-2.28896384e+06 -2.11756661e+06 -2.31493537e+06 -2.31089558e+06
-2.35056544e+06 -2.28260502e+06 -2.28158417e+06 -2.32519362e+06
-2.46485088e+06 -2.36871229e+06 -2.35415938e+06]
[-6.16796852e+06 -6.62581244e+06 -6.77441984e+06 -6.19223191e+06
-6.70937784e+06 -6.20152333e+06 -6.22049640e+06 -6.71960589e+06
-6.25733609e+06 -6.62396874e+06 -6.88036061e+06 -6.40381925e+06
-6.25712347e+06 -6.22276267e+06 -6.54647253e+06 -1.98576180e+06
-6.72763723e+06 -6.26005140e+06 -6.80495090e+06 -6.79466353e+06
-6.25439144e+06 -6.70844440e+06 -6.70562673e+06 -6.22344568e+06
-6.83197294e+06 -6.40707703e+06 -6.26383683e+06]
[-1.19744778e+07 -1.36281253e+07 -1.39685801e+07 -1.20554283e+07
-1.38266816e+07 -1.20455947e+07 -1.21161372e+07 -1.38445400e+07
-1.22029972e+07 -1.36269382e+07 -1.38442900e+07 -1.26362800e+07
-1.22044858e+07 -1.21246977e+07 -1.32047612e+07 -3.60645326e+06
-1.38622288e+07 -1.30485472e+07 -1.40451730e+07 -1.40218369e+07
-1.22027146e+07 -1.38262601e+07 -1.38190704e+07 -1.20904432e+07
-1.37323093e+07 -1.26083502e+07 -1.22187523e+07]
[-2.50250927e+07 -2.85076821e+07 -2.92151860e+07 -2.51376705e+07
-2.89194432e+07 -2.51906397e+07 -2.52635590e+07 -2.89712820e+07
-2.54356015e+07 -2.85090651e+07 -2.90223732e+07 -2.63144168e+07
-2.54378450e+07 -2.52748167e+07 -2.76348982e+07 -7.47462051e+06
-2.89936560e+07 -2.72788171e+07 -2.93788100e+07 -2.93245611e+07
-2.54390264e+07 -2.89192642e+07 -2.89062268e+07 -2.52951472e+07
-2.88128112e+07 -2.62370251e+07 -2.54719159e+07]
[-3.16814611e+07 -4.19201172e+07 -4.29940261e+07 -3.16127123e+07
-4.26546317e+07 -3.19767298e+07 -3.18073034e+07 -4.26746802e+07
-3.21130171e+07 -4.19140378e+07 -3.80315088e+07 -3.35698335e+07
-3.21206984e+07 -3.18380753e+07 -3.72049790e+07 -9.80999698e+06
-4.27388624e+07 -3.93551023e+07 -4.32655952e+07 -4.32302182e+07
-3.21263459e+07 -4.26530333e+07 -4.26278733e+07 -3.21452317e+07
-3.76586084e+07 -3.33891011e+07 -3.21622785e+07]
[-3.36062933e+07 -5.46104330e+07 -5.61965541e+07 -3.33170357e+07
-5.58347480e+07 -3.40262311e+07 -3.35765876e+07 -5.57760314e+07
-3.41039734e+07 -5.45961996e+07 -4.32728684e+07 -3.65875846e+07
-3.41265835e+07 -3.36694106e+07 -4.39992161e+07 -9.43836252e+06
-5.58911359e+07 -5.11604312e+07 -5.66408318e+07 -5.66330380e+07
-3.41344138e+07 -5.58207846e+07 -5.57764281e+07 -3.42739326e+07
-4.26617786e+07 -3.62283534e+07 -3.41572528e+07]
[-2.58422551e+07 -6.01367012e+07 -6.20005086e+07 -2.49120561e+07
-6.17988231e+07 -2.64353831e+07 -2.51849632e+07 -6.16059991e+07
-2.59236879e+07 -6.01136617e+07 -3.78852636e+07 -2.95093247e+07
-2.59607757e+07 -2.53559279e+07 -4.15436962e+07 -7.40215997e+06
-6.17986659e+07 -5.57266235e+07 -6.25761195e+07 -6.26503046e+07
-2.59657441e+07 -6.17719444e+07 -6.17079211e+07 -2.67937609e+07
-3.70922201e+07 -2.89456541e+07 -2.59616436e+07]
[-3.19984764e+07 -7.31564242e+07 -7.52132086e+07 -3.03338439e+07
-7.51174342e+07 -3.28620141e+07 -3.06147927e+07 -7.48971840e+07
-3.14861461e+07 -7.31486469e+07 -4.48730843e+07 -3.55838118e+07
-3.15071315e+07 -3.08293253e+07 -4.95917307e+07 -1.08443023e+07
-7.51318155e+07 -6.72553465e+07 -7.58471624e+07 -7.60098634e+07
-3.15394416e+07 -7.50506854e+07 -7.50339236e+07 -3.33954991e+07
-4.40673317e+07 -3.48726329e+07 -3.15037600e+07]
[-8.07037988e+07 -1.17087416e+08 -1.19905669e+08 -8.08278196e+07
-1.19107256e+08 -8.16580341e+07 -8.11933166e+07 -1.19180950e+08
-8.21888464e+07 -1.17087723e+08 -1.00165181e+08 -8.73437218e+07
-8.21967693e+07 -8.14178550e+07 -9.98888376e+07 -2.87300093e+07
-1.19366283e+08 -1.09263143e+08 -1.20603394e+08 -1.20621708e+08
-8.22433020e+07 -1.19078722e+08 -1.19062673e+08 -8.22252079e+07
-9.91824557e+07 -8.66700202e+07 -8.22248788e+07]
[-1.18635533e+08 -1.46844995e+08 -1.50210797e+08 -1.19912070e+08
-1.48917775e+08 -1.19589094e+08 -1.20351640e+08 -1.49218199e+08
-1.21391260e+08 -1.46869251e+08 -1.41551714e+08 -1.26604663e+08
-1.21394683e+08 -1.20565414e+08 -1.36404562e+08 -3.98821640e+07
-1.49322134e+08 -1.38216452e+08 -1.50967599e+08 -1.50863036e+08
-1.21457654e+08 -1.48907927e+08 -1.48885288e+08 -1.20123609e+08
-1.40497332e+08 -1.26021486e+08 -1.21458842e+08]
[-1.19782945e+08 -1.45980400e+08 -1.49351954e+08 -1.20942842e+08
-1.48056764e+08 -1.20685965e+08 -1.21413572e+08 -1.48370811e+08
-1.22417797e+08 -1.46020076e+08 -1.41983281e+08 -1.27390259e+08
-1.22442018e+08 -1.21601171e+08 -1.36830297e+08 -3.88019504e+07
-1.48447450e+08 -1.38065563e+08 -1.50125897e+08 -1.50004984e+08
-1.22484433e+08 -1.48045567e+08 -1.48020717e+08 -1.21291743e+08
-1.40868809e+08 -1.26766890e+08 -1.22489978e+08]
[-1.06187473e+08 -1.28250707e+08 -1.30904441e+08 -1.07487544e+08
-1.29859161e+08 -1.06802119e+08 -1.07865768e+08 -1.30166812e+08
-1.08678535e+08 -1.28281285e+08 -1.24729744e+08 -1.12747074e+08
-1.08718564e+08 -1.08034522e+08 -1.19796891e+08 -3.79626366e+07
-1.30236557e+08 -1.19767147e+08 -1.31480166e+08 -1.31400793e+08
-1.08762974e+08 -1.29857328e+08 -1.29856297e+08 -1.07362375e+08
-1.23906110e+08 -1.12261271e+08 -1.08735305e+08]
[-1.07398746e+08 -1.16778665e+08 -1.18583348e+08 -1.09296736e+08
-1.17682638e+08 -1.07728719e+08 -1.09547959e+08 -1.18077269e+08
-1.10067193e+08 -1.16781905e+08 -1.20543781e+08 -1.12279501e+08
-1.10089949e+08 -1.09654053e+08 -1.13370835e+08 -4.19647299e+07
-1.18122733e+08 -1.06811156e+08 -1.18862064e+08 -1.18830274e+08
-1.10154436e+08 -1.17714172e+08 -1.17735799e+08 -1.08104622e+08
-1.20052333e+08 -1.12139757e+08 -1.10130581e+08]
[-1.22183174e+08 -1.13425654e+08 -1.14770451e+08 -1.25582073e+08
-1.13560112e+08 -1.22259601e+08 -1.25774164e+08 -1.14181050e+08
-1.26004446e+08 -1.13434663e+08 -1.33157054e+08 -1.26721553e+08
-1.25989829e+08 -1.25775381e+08 -1.21700828e+08 -4.93671148e+07
-1.14145546e+08 -1.04106999e+08 -1.14815315e+08 -1.14676639e+08
-1.26048483e+08 -1.13655789e+08 -1.13681085e+08 -1.22364656e+08
-1.32913257e+08 -1.26974284e+08 -1.26063098e+08]
[-1.17390043e+08 -9.42755144e+07 -9.50859026e+07 -1.20635388e+08
-9.39028255e+07 -1.17437133e+08 -1.20773511e+08 -9.45799063e+07
-1.20728709e+08 -9.43083185e+07 -1.23458679e+08 -1.19730357e+08
-1.20682178e+08 -1.20669789e+08 -1.10046366e+08 -4.65756832e+07
-9.44850411e+07 -8.71673734e+07 -9.49538988e+07 -9.47957101e+07
-1.20711864e+08 -9.40090622e+07 -9.40443853e+07 -1.17379166e+08
-1.23437497e+08 -1.20206302e+08 -1.20767118e+08]
[-9.96536935e+07 -7.29027987e+07 -7.33925564e+07 -1.02071859e+08
-7.23681318e+07 -9.97257688e+07 -1.02177969e+08 -7.29806068e+07
-1.02014484e+08 -7.29430306e+07 -1.02748916e+08 -1.00610818e+08
-1.01965199e+08 -1.02037026e+08 -9.00554499e+07 -3.88214279e+07
-7.28732212e+07 -6.79798619e+07 -7.32169647e+07 -7.30545770e+07
-1.01974146e+08 -7.24684287e+07 -7.24965641e+07 -9.96169022e+07
-1.02844257e+08 -1.01089375e+08 -1.02042122e+08]
[-7.25577372e+07 -5.06650786e+07 -5.08972301e+07 -7.43767808e+07
-5.01521739e+07 -7.25483193e+07 -7.44462378e+07 -5.06158497e+07
-7.42869089e+07 -5.06918024e+07 -7.42941402e+07 -7.31816443e+07
-7.42556976e+07 -7.43329691e+07 -6.45519260e+07 -2.85998965e+07
-5.05362185e+07 -4.72034074e+07 -5.07250503e+07 -5.06048019e+07
-7.42500509e+07 -5.02303930e+07 -5.02521629e+07 -7.24568980e+07
-7.43985491e+07 -7.36043825e+07 -7.43028736e+07]
[-5.27635594e+07 -3.58231784e+07 -3.59461955e+07 -5.41900591e+07
-3.54049564e+07 -5.26909686e+07 -5.42380717e+07 -3.57452977e+07
-5.41176494e+07 -3.58362802e+07 -5.38227478e+07 -5.32471765e+07
-5.40966958e+07 -5.41576328e+07 -4.65133082e+07 -2.07543749e+07
-3.56857063e+07 -3.33126654e+07 -3.58063549e+07 -3.57185369e+07
-5.40885068e+07 -3.54623449e+07 -3.54764721e+07 -5.26128854e+07
-5.38952711e+07 -5.36236482e+07 -5.41280644e+07]
[-2.99995415e+07 -1.95588233e+07 -1.96102554e+07 -3.08644895e+07
-1.92956759e+07 -2.99394612e+07 -3.08881352e+07 -1.94952267e+07
-3.08095923e+07 -1.95659904e+07 -3.03461678e+07 -3.01964538e+07
-3.07972178e+07 -3.08395374e+07 -2.60027765e+07 -1.16584029e+07
-1.94537109e+07 -1.81281195e+07 -1.95252847e+07 -1.94703870e+07
-3.07901690e+07 -1.93283208e+07 -1.93367165e+07 -2.98774047e+07
-3.03908930e+07 -3.04334365e+07 -3.08130404e+07]
[-1.59226266e+07 -1.02350414e+07 -1.02413694e+07 -1.62280926e+07
-1.01025011e+07 -1.59139474e+07 -1.62416080e+07 -1.02032505e+07
-1.61921666e+07 -1.02382914e+07 -1.57211671e+07 -1.58067423e+07
-1.61850123e+07 -1.62113077e+07 -1.34969217e+07 -6.20168507e+06
-1.01794387e+07 -9.45350185e+06 -1.01875777e+07 -1.01746758e+07
-1.61826835e+07 -1.01132248e+07 -1.01222242e+07 -1.59003621e+07
-1.57478833e+07 -1.59269964e+07 -1.61973240e+07]
[-5.80431934e+06 -3.50613600e+06 -3.47971922e+06 -5.85959752e+06
-3.44913411e+06 -5.80183889e+06 -5.86280936e+06 -3.48356420e+06
-5.83734632e+06 -3.50803928e+06 -5.45385838e+06 -5.61388824e+06
-5.83387134e+06 -5.84834272e+06 -4.64853451e+06 -2.31527313e+06
-3.47641174e+06 -3.15800406e+06 -3.45034139e+06 -3.45701635e+06
-5.83215472e+06 -3.45240425e+06 -3.45724491e+06 -5.79822900e+06
-5.46485347e+06 -5.66344637e+06 -5.83880494e+06]
[-1.10157234e+06 -6.28659543e+05 -6.21588242e+05 -1.13121727e+06
-6.15706279e+05 -1.09740827e+06 -1.13060789e+06 -6.22321954e+05
-1.12613395e+06 -6.28669631e+05 -1.03098561e+06 -1.07199053e+06
-1.12581747e+06 -1.12899384e+06 -8.57488421e+05 -4.37151299e+05
-6.20932439e+05 -5.38083207e+05 -6.15161032e+05 -6.16757421e+05
-1.12551380e+06 -6.16542480e+05 -6.17210017e+05 -1.09192658e+06
-1.03228179e+06 -1.08375589e+06 -1.12662388e+06]
[-9.81530655e+04 -5.07976640e+04 -5.13113382e+04 -1.08887969e+05
-4.89432933e+04 -9.64207930e+04 -1.09058659e+05 -4.99706653e+04
-1.09062260e+05 -5.07796480e+04 -1.10981378e+05 -1.09011434e+05
-1.09026305e+05 -1.09065222e+05 -9.21705243e+04 -4.33524836e+04
-4.97361444e+04 -5.23623184e+04 -5.09808942e+04 -5.03011655e+04
-1.08935488e+05 -4.92707867e+04 -4.92014370e+04 -9.57107920e+04
-1.11031502e+05 -1.11136124e+05 -1.09074620e+05]
[-5.39047993e-02 -9.20142173e-01 2.58489285e-01 9.51226799e-01
-2.07376615e-01 4.00252832e-01 -1.08672932e-01 8.36703150e-01
8.74926399e-03 4.09320419e-01 -3.04145946e-01 1.88920328e-01
9.10572586e-01 9.77145858e-02 -7.11437779e-01 6.15200654e-01
-1.37558169e-01 -4.39647209e-01 9.61119174e-01 4.22570222e-01
8.18085392e-01 5.80691118e-01 -6.94154798e-01 2.05991687e-01
4.39745430e-02 4.82697014e-01 -4.85825680e-01]
[ 4.13345438e-01 2.07181771e-01 6.31841449e-01 1.96766086e-01
-4.68765955e-01 -9.97749295e-01 6.42806693e-01 -2.57003808e-01
-6.03336677e-01 1.50800154e-01 4.59513365e-01 -4.50044243e-01
-2.47639481e-01 -5.60841473e-01 -4.06348227e-01 -1.34062626e-01
6.29727204e-01 -6.01517482e-01 -7.03871216e-01 -2.88382133e-01
6.67844045e-01 2.71818755e-01 -2.87744220e-01 -4.04117601e-01
-2.37465841e-01 8.02926600e-01 4.19574879e-02]
[-5.94002504e-01 -7.75511123e-01 8.70762200e-01 -3.52033645e-01
6.80921357e-01 4.66335062e-01 8.90058335e-01 -1.37606432e-01
-9.04659385e-01 -2.08181754e-01 -3.59904397e-01 8.27680131e-01
-9.32821160e-01 1.06165425e-01 1.19446423e-01 -1.39571006e-01
-3.74430863e-01 -3.38912615e-01 -5.39794135e-01 -2.59118033e-01
-1.70020642e-01 -6.84637302e-01 3.98932766e-01 5.36733533e-01
-8.37645739e-02 5.72879694e-01 9.26622075e-01]
[-6.46555665e-01 -2.28426843e-01 -1.50387876e-01 6.13703454e-02
6.93079923e-01 -3.39501425e-04 -1.07910871e-01 6.04432873e-01
9.82326881e-01 -5.47383016e-01 6.76649247e-01 -1.22603287e-01
-7.79377454e-01 -2.80514133e-01 -5.86826411e-01 -2.46644235e-01
-6.61665368e-01 -1.85235531e-01 9.34010949e-01 8.22955614e-01
-3.26017194e-01 3.51211101e-01 1.04845876e-01 8.63448798e-01
1.46878447e-01 -3.21537411e-01 5.08566240e-01]
[ 4.75612593e-01 6.90996435e-01 -4.70106103e-01 5.39532423e-01
1.22209154e-01 5.61746304e-01 -1.94162262e-01 5.63551698e-01
5.78947310e-01 3.92651084e-01 4.47491878e-01 8.96748940e-01
-3.88042729e-02 1.09956597e-01 -7.81408110e-01 5.30134509e-01
4.67820753e-01 -5.00968887e-01 1.79843580e-01 -9.65654093e-01
4.21764157e-01 -4.82327592e-01 7.73452159e-01 6.65130797e-01
-3.48730780e-01 -9.88260936e-01 8.11524895e-01]
[ 3.76244092e+04 9.11647221e+03 9.57272396e+03 4.60019143e+04
8.08316221e+03 3.69825039e+04 4.57999953e+04 8.96128383e+03
4.54974078e+04 9.24664939e+03 5.24238147e+04 4.35302408e+04
4.54744623e+04 4.58652425e+04 3.92951814e+04 9.83950450e+03
8.18927015e+03 1.06055297e+04 9.71804389e+03 8.62422308e+03
4.57002918e+04 8.19731265e+03 8.11339875e+03 3.62395172e+04
5.31447795e+04 4.37051090e+04 4.55807585e+04]
[ 3.09923136e+05 9.28280385e+03 8.30048769e+03 3.92485176e+05
-3.81501479e+03 2.99845886e+05 3.90062903e+05 3.84313191e+03
3.85514126e+05 9.66255911e+03 3.90243277e+05 3.50908554e+05
3.85125074e+05 3.90029133e+05 2.76182539e+05 1.20781426e+05
-3.39015735e+03 6.79494376e+03 7.20810885e+03 -1.16112614e+03
3.87293384e+05 -2.99546323e+03 -3.82855739e+03 2.90289285e+05
3.96977058e+05 3.53932468e+05 3.86542551e+05]
[ 4.49178263e+06 3.08775581e+06 3.06671414e+06 4.58254196e+06
3.05599834e+06 4.48196592e+06 4.58059407e+06 3.07786803e+06
4.56330178e+06 3.07932030e+06 4.14552218e+06 4.34461484e+06
4.56102213e+06 4.57539860e+06 3.56151574e+06 1.95461707e+06
3.06235769e+06 2.46558875e+06 3.04114051e+06 3.05116025e+06
4.56592529e+06 3.05362156e+06 3.05064497e+06 4.46855446e+06
4.14406195e+06 4.38721337e+06 4.57368413e+06]
[ 1.24013142e+07 8.29915504e+06 8.32051022e+06 1.27076733e+07
8.23088814e+06 1.23812592e+07 1.27061638e+07 8.29680209e+06
1.26692933e+07 8.28549731e+06 1.19195387e+07 1.22009995e+07
1.26621899e+07 1.26935929e+07 1.03174272e+07 4.67513350e+06
8.25561266e+06 7.20518131e+06 8.27371582e+06 8.27959800e+06
1.26742146e+07 8.23057793e+06 8.21923312e+06 1.23225180e+07
1.19076223e+07 1.23134772e+07 1.26961430e+07]
[ 3.54433321e+07 2.44929385e+07 2.47424722e+07 3.58102668e+07
2.44241460e+07 3.54853711e+07 3.58474911e+07 2.46070745e+07
3.57831195e+07 2.44766602e+07 3.50659613e+07 3.50887674e+07
3.57647943e+07 3.58045434e+07 3.05554858e+07 1.15141480e+07
2.45049497e+07 2.28851347e+07 2.46871467e+07 2.46577599e+07
3.57827237e+07 2.44241614e+07 2.43947315e+07 3.54100078e+07
3.50181209e+07 3.53121121e+07 3.58541215e+07]
[ 6.48979715e+07 4.61483958e+07 4.68463148e+07 6.61724616e+07
4.61103398e+07 6.49041077e+07 6.62860550e+07 4.64527732e+07
6.62117631e+07 4.61239158e+07 6.64426092e+07 6.53498642e+07
6.61841836e+07 6.62068461e+07 5.82117685e+07 1.94682360e+07
4.62620409e+07 4.42896713e+07 4.68307943e+07 4.66928329e+07
6.62172238e+07 4.61247425e+07 4.60546901e+07 6.47323645e+07
6.62503043e+07 6.57057660e+07 6.63482215e+07]
[ 9.61459763e+07 7.27353707e+07 7.40168642e+07 9.85087641e+07
7.27982124e+07 9.60326624e+07 9.87235107e+07 7.32986151e+07
9.86939358e+07 7.26937494e+07 1.01600346e+08 9.82341924e+07
9.86747821e+07 9.86287727e+07 8.97187466e+07 2.89530777e+07
7.30342267e+07 7.00982347e+07 7.40768010e+07 7.38094868e+07
9.87185813e+07 7.28366852e+07 7.27081804e+07 9.57459499e+07
1.01187953e+08 9.86916125e+07 9.89079638e+07]
[ 1.19533397e+08 9.46563879e+07 9.64356779e+07 1.22827648e+08
9.48410350e+07 1.19284867e+08 1.23116450e+08 9.54349577e+07
1.23142717e+08 9.45877085e+07 1.28415586e+08 1.23092664e+08
1.23142136e+08 1.23025043e+08 1.13980575e+08 3.67927707e+07
9.51230154e+07 9.07897031e+07 9.65564136e+07 9.61979011e+07
1.23200887e+08 9.49088822e+07 9.47086599e+07 1.18844672e+08
1.27814079e+08 1.23613822e+08 1.23436300e+08]
[ 1.21641109e+08 1.00445165e+08 1.02210066e+08 1.24647240e+08
1.00745224e+08 1.21304751e+08 1.24935372e+08 1.01275929e+08
1.24996618e+08 1.00349060e+08 1.30255382e+08 1.24922422e+08
1.25006472e+08 1.24867894e+08 1.16038776e+08 3.90297270e+07
1.00989801e+08 9.46299831e+07 1.02316226e+08 1.02022402e+08
1.25084889e+08 1.00804773e+08 1.00582022e+08 1.20835967e+08
1.29627662e+08 1.25474693e+08 1.25325959e+08]
[ 1.08252469e+08 9.16286106e+07 9.33957380e+07 1.11299456e+08
9.19831137e+07 1.07932685e+08 1.11575949e+08 9.24544407e+07
1.11658352e+08 9.15280237e+07 1.17699430e+08 1.11955936e+08
1.11660144e+08 1.11522913e+08 1.05356281e+08 3.41824057e+07
9.21765504e+07 8.67412774e+07 9.35380730e+07 9.32298623e+07
1.11758895e+08 9.20355214e+07 9.18177729e+07 1.07461493e+08
1.17091891e+08 1.12399882e+08 1.11987829e+08]
[ 1.05631441e+08 9.01878491e+07 9.19608573e+07 1.08637120e+08
9.05820496e+07 1.05434491e+08 1.08897858e+08 9.10409257e+07
1.08969290e+08 9.00863347e+07 1.15020827e+08 1.09066888e+08
1.08952366e+08 1.08842315e+08 1.03051776e+08 3.33450624e+07
9.07537050e+07 8.51823559e+07 9.21090622e+07 9.18116939e+07
1.09079211e+08 9.06157464e+07 9.04124757e+07 1.04925871e+08
1.14458237e+08 1.09485508e+08 1.09305450e+08]
[ 9.29026097e+07 8.04347959e+07 8.22021833e+07 9.57587363e+07
8.08380927e+07 9.28059216e+07 9.59994495e+07 8.12677150e+07
9.60928413e+07 8.03591557e+07 1.03101015e+08 9.65731829e+07
9.60712580e+07 9.59565796e+07 9.23770291e+07 2.89182236e+07
8.09907811e+07 7.67657757e+07 8.23940740e+07 8.20588801e+07
9.61783549e+07 8.08656334e+07 8.06799081e+07 9.23049619e+07
1.02608438e+08 9.68502091e+07 9.63876813e+07]
[ 5.68771595e+07 5.04972995e+07 5.19919117e+07 5.89376400e+07
5.09060071e+07 5.68783991e+07 5.91475096e+07 5.11783991e+07
5.92792066e+07 5.04528098e+07 6.62729534e+07 6.05055030e+07
5.92709026e+07 5.91244589e+07 5.97634796e+07 1.49971305e+07
5.09765656e+07 5.04304175e+07 5.22348075e+07 5.19208522e+07
5.93123271e+07 5.09293983e+07 5.07713850e+07 5.65501306e+07
6.58087801e+07 6.06031354e+07 5.94792699e+07]
[ 1.86029164e+07 2.31684035e+07 2.41893127e+07 1.90706420e+07
2.36795976e+07 1.86961688e+07 1.92094174e+07 2.37189202e+07
1.93614823e+07 2.31268009e+07 2.46518978e+07 2.07651739e+07
1.93654474e+07 1.92233067e+07 2.33022595e+07 3.09290947e+06
2.36134155e+07 2.33788116e+07 2.44147374e+07 2.42553134e+07
1.93972790e+07 2.36649051e+07 2.35527374e+07 1.85302794e+07
2.43186819e+07 2.06355650e+07 1.95030920e+07]
[-4.65895135e+06 9.31502735e+06 9.84258401e+06 -5.09917999e+06
9.83668702e+06 -4.63365917e+06 -5.02629361e+06 9.71445268e+06
-4.85434981e+06 9.25558979e+06 -1.23967042e+06 -3.43487364e+06
-4.83347260e+06 -4.96885024e+06 9.47812585e+05 -1.05022963e+06
9.70776046e+06 7.60356518e+06 9.98815589e+06 1.00020618e+07
-4.78840580e+06 9.79548948e+06 9.73106148e+06 -4.64901702e+06
-1.45671186e+06 -3.64938004e+06 -4.75244444e+06]
[-1.83492599e+07 -1.61919851e+06 -1.40344282e+06 -1.89888573e+07
-1.18301573e+06 -1.83852112e+07 -1.89706779e+07 -1.36640421e+06
-1.88194236e+07 -1.67273703e+06 -1.64038513e+07 -1.75655988e+07
-1.87937357e+07 -1.88994272e+07 -1.24690612e+07 -4.35564445e+06
-1.33387727e+06 -3.43025252e+06 -1.30836115e+06 -1.23069840e+06
-1.87493593e+07 -1.23247912e+06 -1.25934859e+06 -1.83394845e+07
-1.65451380e+07 -1.78242251e+07 -1.87583033e+07]
[-1.64113852e+07 -3.48848773e+06 -3.38767299e+06 -1.70713249e+07
-3.16707675e+06 -1.64138114e+07 -1.70659442e+07 -3.31852069e+06
-1.69602512e+07 -3.52762754e+06 -1.53366631e+07 -1.60396727e+07
-1.69404767e+07 -1.70132251e+07 -1.20987073e+07 -4.06860765e+06
-3.28987946e+06 -4.79326908e+06 -3.32255632e+06 -3.25116462e+06
-1.69111208e+07 -3.20836179e+06 -3.22129594e+06 -1.63581217e+07
-1.54294825e+07 -1.62592398e+07 -1.69230151e+07]
[-1.48977351e+07 -5.75635620e+06 -5.68754475e+06 -1.51999049e+07
-5.53198472e+06 -1.49068747e+07 -1.52008941e+07 -5.64997427e+06
-1.51205869e+07 -5.77804836e+06 -1.41463903e+07 -1.45431774e+07
-1.51056151e+07 -1.51587760e+07 -1.15538376e+07 -4.61760330e+06
-5.62954647e+06 -6.19423431e+06 -5.62927167e+06 -5.59197460e+06
-1.50910669e+07 -5.55887013e+06 -5.56911843e+06 -1.48891202e+07
-1.42085766e+07 -1.46934597e+07 -1.51022455e+07]
[-8.68968436e+06 -3.34679544e+06 -3.30649262e+06 -8.90822269e+06
-3.21446889e+06 -8.67297075e+06 -8.91017211e+06 -3.28446213e+06
-8.86377570e+06 -3.35853733e+06 -8.28122888e+06 -8.49263599e+06
-8.85534584e+06 -8.88632999e+06 -6.68569841e+06 -2.59624242e+06
-3.26884767e+06 -3.50567561e+06 -3.27505255e+06 -3.24846864e+06
-8.84675863e+06 -3.22908645e+06 -3.23515946e+06 -8.65827731e+06
-8.31271671e+06 -8.58705284e+06 -8.85249941e+06]
[-4.83246915e+06 -2.20300584e+06 -2.18858457e+06 -4.90420512e+06
-2.14538552e+06 -4.82911262e+06 -4.90890688e+06 -2.17915486e+06
-4.88619437e+06 -2.20748981e+06 -4.60998300e+06 -4.70615581e+06
-4.88271316e+06 -4.89515106e+06 -3.81472981e+06 -1.47079204e+06
-2.17187892e+06 -2.25903236e+06 -2.17266586e+06 -2.16353001e+06
-4.87769192e+06 -2.15203124e+06 -2.15417244e+06 -4.82770925e+06
-4.61939645e+06 -4.75213407e+06 -4.88268782e+06]
[-1.80816104e+06 -7.55305927e+05 -7.47816807e+05 -1.80903152e+06
-7.33235257e+05 -1.80975533e+06 -1.80982163e+06 -7.46819931e+05
-1.79925943e+06 -7.58241883e+05 -1.65678580e+06 -1.71116842e+06
-1.79762304e+06 -1.80415864e+06 -1.33555611e+06 -5.75788627e+05
-7.42492228e+05 -7.67967370e+05 -7.40287099e+05 -7.37783442e+05
-1.79669681e+06 -7.34766993e+05 -7.36797059e+05 -1.80722668e+06
-1.66754298e+06 -1.72838475e+06 -1.79832305e+06]
[-3.66888281e+05 -1.76187302e+05 -1.75215649e+05 -3.68835536e+05
-1.72116052e+05 -3.67447062e+05 -3.68899215e+05 -1.74782585e+05
-3.67156201e+05 -1.76614081e+05 -3.42853710e+05 -3.52051240e+05
-3.66838824e+05 -3.67955696e+05 -2.88072345e+05 -1.19727873e+05
-1.73902007e+05 -1.77057049e+05 -1.73794919e+05 -1.73368957e+05
-3.66588179e+05 -1.72469032e+05 -1.72711750e+05 -3.66840657e+05
-3.44323412e+05 -3.55073633e+05 -3.67034356e+05]
[-6.91516028e-01 6.22631930e-01 3.05913134e-01 -3.72609096e-01
-1.00055444e-01 -6.89612162e-02 3.89441100e-01 8.20360665e-01
-6.46847672e-01 7.30650205e-01 6.89184526e-01 4.93727214e-01
7.31950402e-01 4.63939911e-01 -5.01003587e-01 -3.28782727e-01
-4.60847582e-01 6.12474908e-01 -2.72432565e-02 -1.65147850e-01
-7.24340436e-01 -8.74313782e-01 8.32318568e-01 8.06663771e-01
9.77084197e-02 9.47997416e-01 5.23154249e-01]
[ 8.63464834e-01 -7.82586758e-01 6.40381778e-01 3.68217525e-01
3.61984497e-01 5.78434494e-01 -9.06352205e-01 -7.77234965e-01
6.97015537e-01 -5.62861982e-03 -7.02697858e-01 5.39775085e-01
2.29065141e-01 2.56639053e-02 -2.42075656e-02 -9.08691162e-01
6.65792144e-02 -1.20822709e-01 -1.24310931e-01 4.66088487e-01
4.42633228e-01 6.16405801e-01 9.99800192e-01 3.20979626e-01
-3.31100705e-01 1.48846142e-01 4.43062815e-01]
[ 8.98817999e-01 1.51928997e-01 7.80982537e-02 -8.13016007e-02
9.53719504e-02 8.21674939e-02 1.76578171e-02 7.99539150e-01
-9.75521554e-01 6.71691916e-01 -1.53602911e-01 -1.92354402e-02
-5.68948033e-01 -6.03287740e-01 4.60749948e-01 -9.32828938e-01
-3.80587045e-01 -8.52401672e-01 7.43593202e-01 2.27169209e-01
1.40084351e-01 -3.79324275e-01 8.94980128e-01 -6.70113958e-01
-7.48598969e-01 -3.27797125e-02 -1.28481825e-01]
[-3.65699542e-01 7.70607750e-01 9.30187179e-01 -4.76539022e-01
-5.56083769e-01 1.08209588e-01 -4.06520952e-01 7.78952137e-01
-3.19925295e-02 7.43677058e-01 4.04409514e-01 -4.88656805e-01
9.72984893e-01 -1.30190183e-01 -4.01358796e-01 4.24963493e-01
-4.30516058e-01 7.32973021e-01 -1.37068555e-01 -5.83682915e-01
-5.84372473e-01 6.15677306e-02 2.34591857e-01 8.85006817e-01
1.25239537e-01 5.98373051e-01 -1.34095323e-01]
[-8.54061514e-01 2.80746004e-01 -8.23296262e-01 -8.82971756e-01
-8.85678458e-01 7.07379165e-01 7.91484076e-01 6.09129792e-01
-1.05003579e-01 -7.12339970e-02 -8.33793067e-01 4.19745306e-01
8.33851740e-01 -7.19487192e-01 7.47115350e-01 8.98243068e-01
7.35228871e-01 1.12100448e-02 -7.07439123e-01 6.12707859e-01
3.80269759e-01 -9.56585496e-01 -1.69386138e-01 5.47072498e-01
-2.74886729e-01 -1.65900907e-01 -6.71487938e-01]
[ 2.16686354e-01 -2.60502378e-01 -6.65566887e-01 -3.51873972e-01
-2.78622080e-01 -1.57850077e-01 7.70498212e-01 5.83574284e-01
-1.15525581e-01 7.46202613e-01 -6.86121807e-01 -9.51311691e-01
3.64684922e-01 -4.82002300e-01 -1.88882701e-02 1.47111824e-01
8.11934865e-01 6.10397403e-01 3.88620817e-01 4.61068641e-01
-2.40220853e-01 -8.21676046e-02 -6.68288668e-02 7.36443727e-02
-6.26832907e-01 3.18072482e-01 1.16750552e-01]
[-6.03055342e+04 -3.92695348e+04 -3.91416970e+04 -5.84970368e+04
-3.88934558e+04 -6.06596999e+04 -5.85037584e+04 -3.92549651e+04
-5.82551146e+04 -3.92981238e+04 -5.57790237e+04 -5.70078612e+04
-5.81774979e+04 -5.83780645e+04 -4.89989310e+04 -2.52654471e+04
-3.91724421e+04 -3.63784294e+04 -3.88978874e+04 -3.89741073e+04
-5.82726089e+04 -3.88684227e+04 -3.89834317e+04 -6.08983330e+04
-5.60818995e+04 -5.72499981e+04 -5.82909241e+04]
[-2.56892479e+05 -1.40086583e+05 -1.37658215e+05 -2.45295555e+05
-1.36676234e+05 -2.58902308e+05 -2.45082986e+05 -1.38760215e+05
-2.43209995e+05 -1.40395309e+05 -2.28751578e+05 -2.37227473e+05
-2.42734330e+05 -2.44269571e+05 -1.96426031e+05 -1.24173022e+05
-1.38510349e+05 -1.30203728e+05 -1.35990319e+05 -1.36405614e+05
-2.43443050e+05 -1.36629467e+05 -1.37647209e+05 -2.60578640e+05
-2.31437962e+05 -2.37961136e+05 -2.43071110e+05]
[ 3.23775297e+06 2.32637317e+06 2.34922251e+06 3.23949821e+06
2.32845117e+06 3.25370455e+06 3.24291616e+06 2.34230621e+06
3.23979382e+06 2.32620946e+06 3.16625650e+06 3.16763258e+06
3.23761704e+06 3.23986456e+06 2.79196347e+06 1.04243744e+06
2.33468223e+06 2.17210259e+06 2.34580335e+06 2.34531988e+06
3.23896526e+06 2.32687409e+06 2.32565361e+06 3.25492383e+06
3.16372445e+06 3.18704804e+06 3.24543660e+06]
[ 1.13206081e+07 7.57120684e+06 7.68659983e+06 1.13693314e+07
7.57704066e+06 1.13748486e+07 1.13836354e+07 7.63392735e+06
1.13724903e+07 7.57177681e+06 1.13217212e+07 1.11862236e+07
1.13638752e+07 1.13716187e+07 9.88607642e+06 3.01601790e+06
7.60191829e+06 7.40933698e+06 7.68591406e+06 7.66751348e+06
1.13702047e+07 7.57537546e+06 7.56879425e+06 1.13689593e+07
1.13052145e+07 1.12449328e+07 1.13927456e+07]
[ 2.69433902e+07 1.84151526e+07 1.86691135e+07 2.69287115e+07
1.84257944e+07 2.70544618e+07 2.69664773e+07 1.85554410e+07
2.69397885e+07 1.84129984e+07 2.68669509e+07 2.65841527e+07
2.69210424e+07 2.69364165e+07 2.34571398e+07 7.40637365e+06
1.84894025e+07 1.79450215e+07 1.86613506e+07 1.86261085e+07
2.69316726e+07 1.84229031e+07 1.84072487e+07 2.70553371e+07
2.68241868e+07 2.67206245e+07 2.69871105e+07]
[ 5.25037111e+07 3.70805329e+07 3.76165320e+07 5.29503048e+07
3.70856138e+07 5.26312902e+07 5.30374808e+07 3.73487171e+07
5.29986073e+07 3.70760228e+07 5.34489189e+07 5.23934869e+07
5.29703722e+07 5.29810884e+07 4.67209480e+07 1.55180952e+07
3.72224580e+07 3.58478638e+07 3.76147341e+07 3.75120050e+07
5.29896579e+07 3.70918529e+07 3.70539281e+07 5.25950100e+07
5.33463876e+07 5.26787422e+07 5.30881808e+07]
[ 7.57002419e+07 5.58239158e+07 5.66767334e+07 7.68723664e+07
5.58261816e+07 7.57676982e+07 7.70167518e+07 5.62130406e+07
7.69827192e+07 5.58144836e+07 7.86727749e+07 7.64296714e+07
7.69581104e+07 7.69401700e+07 6.91905514e+07 2.36486807e+07
5.60389675e+07 5.37900454e+07 5.66911191e+07 5.65112335e+07
7.69764760e+07 5.58525837e+07 5.57837756e+07 7.56506967e+07
7.84744212e+07 7.68205754e+07 7.71119008e+07]
[ 1.01082910e+08 7.52519894e+07 7.64441354e+07 1.03033202e+08
7.52345007e+07 1.01072366e+08 1.03232644e+08 7.57614622e+07
1.03203668e+08 7.52408592e+07 1.06166958e+08 1.02679547e+08
1.03183955e+08 1.03138841e+08 9.33413972e+07 3.18879796e+07
7.55347548e+07 7.25889744e+07 7.64764867e+07 7.62092563e+07
1.03200836e+08 7.52861825e+07 7.51831407e+07 1.00859566e+08
1.05890782e+08 1.03215638e+08 1.03373233e+08]
[ 1.05765539e+08 8.09216123e+07 8.21387157e+07 1.07880464e+08
8.09296227e+07 1.05664785e+08 1.08082472e+08 8.14598742e+07
1.08064562e+08 8.08993711e+07 1.10966941e+08 1.07358762e+08
1.08049464e+08 1.07999084e+08 9.76417732e+07 3.44997409e+07
8.12324615e+07 7.68783041e+07 8.21595846e+07 8.19097274e+07
1.08084590e+08 8.09818914e+07 8.08712579e+07 1.05390443e+08
1.10703032e+08 1.07937972e+08 1.08256461e+08]
[ 9.86380758e+07 7.68457697e+07 7.80127031e+07 1.00749618e+08
7.68904850e+07 9.85691250e+07 1.00936511e+08 7.73835195e+07
1.00926334e+08 7.68162286e+07 1.03764668e+08 1.00234090e+08
1.00905338e+08 1.00867434e+08 9.15732529e+07 3.24490559e+07
7.71589408e+07 7.26441966e+07 7.80396522e+07 7.78062780e+07
1.00968315e+08 7.69342695e+07 7.68315415e+07 9.83060268e+07
1.03543340e+08 1.00733246e+08 1.01122008e+08]
[ 9.53943391e+07 7.50256215e+07 7.62234928e+07 9.79821310e+07
7.50662133e+07 9.53214076e+07 9.81615223e+07 7.55561734e+07
9.81642390e+07 7.49927756e+07 1.01578436e+08 9.75808786e+07
9.81388639e+07 9.81016041e+07 8.98506556e+07 3.11061913e+07
7.53302990e+07 7.11711953e+07 7.62705339e+07 7.60107658e+07
9.82086611e+07 7.51142608e+07 7.50090014e+07 9.50096285e+07
1.01341575e+08 9.80457105e+07 9.83553392e+07]
[ 8.70226477e+07 6.90616044e+07 7.02619175e+07 8.95813570e+07
6.91062713e+07 8.70107869e+07 8.97502920e+07 6.95717619e+07
8.97562484e+07 6.90355672e+07 9.38439758e+07 8.95167725e+07
8.97291373e+07 8.96882055e+07 8.32522794e+07 2.84798568e+07
6.93572237e+07 6.60180910e+07 7.03308652e+07 7.00538413e+07
8.97888278e+07 6.91531355e+07 6.90538588e+07 8.67032938e+07
9.36054507e+07 8.98775186e+07 8.99329764e+07]
[ 6.48759704e+07 5.08123922e+07 5.17360464e+07 6.65423247e+07
5.08500666e+07 6.49503825e+07 6.66813100e+07 5.11988557e+07
6.66760077e+07 5.07980143e+07 6.98706436e+07 6.66222603e+07
6.66532000e+07 6.66180596e+07 6.20491639e+07 2.08664613e+07
5.10406340e+07 4.91308510e+07 5.17955888e+07 5.15823006e+07
6.66814117e+07 5.08821135e+07 5.08112625e+07 6.47455826e+07
6.96745382e+07 6.68866986e+07 6.68013594e+07]
[ 4.51819397e+07 3.65521746e+07 3.72235429e+07 4.59751508e+07
3.66288079e+07 4.52900048e+07 4.60818680e+07 3.68621346e+07
4.60758522e+07 3.65412951e+07 4.82735940e+07 4.60543802e+07
4.60580130e+07 4.60297610e+07 4.29333447e+07 1.51561771e+07
3.67503435e+07 3.48204218e+07 3.72660223e+07 3.71349543e+07
4.60848724e+07 3.66424899e+07 3.65957745e+07 4.51655442e+07
4.81552411e+07 4.61998353e+07 4.61717338e+07]
[ 2.13212991e+07 1.99798960e+07 2.03490538e+07 2.15753248e+07
2.00916974e+07 2.13478392e+07 2.16431963e+07 2.01805926e+07
2.16741910e+07 1.99586044e+07 2.33714802e+07 2.19689957e+07
2.16699900e+07 2.16296245e+07 2.11525295e+07 7.74419586e+06
2.01392423e+07 1.85088719e+07 2.03818610e+07 2.03359414e+07
2.16897124e+07 2.00905574e+07 2.00621751e+07 2.13358782e+07
2.32767552e+07 2.20287906e+07 2.17322727e+07]
[ 7.87591173e+06 1.01661176e+07 1.03627089e+07 7.87745153e+06
1.02897457e+07 7.85030344e+06 7.92399053e+06 1.03038169e+07
7.96445054e+06 1.01486326e+07 9.20411851e+06 8.32578067e+06
7.96950685e+06 7.92629244e+06 8.73906754e+06 3.41662876e+06
1.02923232e+07 9.05629737e+06 1.03881076e+07 1.03866053e+07
7.98167078e+06 1.02775732e+07 1.02658454e+07 7.88356566e+06
9.12472158e+06 8.33039721e+06 7.99745944e+06]
[ 5.62894932e+06 7.34579723e+06 7.43877536e+06 5.44839944e+06
7.43014275e+06 5.61616150e+06 5.47562903e+06 7.43517834e+06
5.49461451e+06 7.33336855e+06 6.09943709e+06 5.68286040e+06
5.49940359e+06 5.47516265e+06 5.70579406e+06 2.77712435e+06
7.43101405e+06 6.18729011e+06 7.44269652e+06 7.46164710e+06
5.50889738e+06 7.41732544e+06 7.41469644e+06 5.64316359e+06
6.06145216e+06 5.68367489e+06 5.51787397e+06]
[ 4.37147393e+04 1.93200965e+06 1.97334386e+06 -4.27823913e+04
1.99037428e+06 3.71461214e+04 -3.50918620e+04 1.97907984e+06
-2.16192235e+04 1.92608075e+06 2.67168541e+05 8.48845803e+04
-1.77122440e+04 -3.06966073e+04 4.62138484e+05 5.24523554e+05
1.97743194e+06 1.37723718e+06 1.98029954e+06 1.99174441e+06
-9.95422604e+03 1.98039330e+06 1.98123708e+06 4.38141702e+04
2.59958981e+05 6.31889479e+04 -1.03940239e+04]
[ 1.44373340e+05 9.21899617e+05 9.40442121e+05 2.35285053e+04
9.56358397e+05 1.61312552e+05 2.52330157e+04 9.49347951e+05
3.05754781e+04 9.20216640e+05 7.39386862e+04 6.24416308e+04
3.14172549e+04 2.71533251e+04 1.98385551e+05 2.96863069e+05
9.47930745e+05 6.86660344e+05 9.42327513e+05 9.52195393e+05
3.61464682e+04 9.49482230e+05 9.50922566e+05 1.68902044e+05
7.91815407e+04 4.82699944e+04 3.76410218e+04]
[-1.79481408e+05 8.45551304e+04 9.00747485e+04 -2.00558890e+05
9.52379927e+04 -1.73821654e+05 -2.00599645e+05 9.14945919e+04
-1.96798200e+05 8.38966404e+04 -1.71124778e+05 -1.74690157e+05
-1.96521833e+05 -1.98923023e+05 -8.15531577e+04 -4.07076039e+04
9.18832632e+04 8.20960496e+04 9.13785225e+04 9.41441465e+04
-1.96674526e+05 9.37176035e+04 9.28816948e+04 -1.71118621e+05
-1.74106713e+05 -1.79786380e+05 -1.95301568e+05]
[ 1.01833135e+05 1.30999801e+05 1.32438687e+05 9.83813792e+04
1.32721214e+05 1.04097233e+05 9.83714589e+04 1.32587013e+05
9.91424276e+04 1.30742172e+05 1.05456753e+05 1.02577359e+05
9.90715289e+04 9.87406785e+04 1.11163643e+05 4.59346739e+04
1.32463131e+05 1.15670450e+05 1.32413104e+05 1.32920388e+05
9.90589282e+04 1.32449937e+05 1.32126295e+05 1.05177880e+05
1.04837308e+05 1.02160232e+05 9.96598417e+04]
[ 7.53439325e-01 4.91761471e-01 -6.43823924e-01 -6.34113159e-01
-4.49168028e-01 -3.76380473e-01 -5.18650044e-01 7.93760240e-02
3.88108770e-01 7.57507385e-02 -4.30950361e-01 7.47149453e-01
-9.58239055e-01 -3.19636453e-01 5.34224917e-01 -2.35492418e-01
-6.08373569e-01 5.48752953e-01 -2.49909936e-01 -7.92043536e-01
-9.79747575e-01 -4.91235507e-01 6.56187714e-01 2.99566540e-01
6.71023050e-01 2.81886990e-01 2.63600859e-01]
[-7.73443131e-01 1.12671028e-01 4.19918354e-01 -7.02836457e-01
-4.08307043e-01 3.43188602e-01 1.87384812e-02 -9.18330174e-01
-2.92376902e-01 4.15901568e-01 -7.89168397e-01 2.20102703e-01
7.21183574e-01 -2.93747376e-01 3.95293225e-01 -7.52667457e-01
-6.73595870e-01 2.02817016e-01 6.76121438e-02 -7.08563723e-01
-1.05789277e-01 -1.64157898e-01 -7.23091585e-01 2.93931198e-01
4.38175407e-01 5.13747296e-01 -8.20768047e-01]
[ 2.71601025e-02 6.10828861e-01 4.45489440e-01 2.23393445e-01
-5.72835616e-01 3.36180683e-03 4.99241767e-01 -5.39047025e-01
-1.93802449e-01 3.73576966e-01 -1.34955967e-01 3.92087779e-01
7.04632567e-01 -9.22435180e-01 7.53036258e-01 2.73595205e-01
3.92783444e-01 -2.96978148e-01 1.72437616e-01 -5.58731358e-01
5.34459067e-01 3.10927712e-01 -9.93815160e-02 -3.23138625e-01
5.68171044e-01 3.42011805e-01 6.00692585e-01]
[-5.74549171e-01 7.03331052e-02 3.29146010e-01 -5.45162777e-01
8.91308177e-01 2.50878516e-01 6.77052187e-01 8.76534921e-02
8.26187418e-01 -2.19145977e-01 -7.21741433e-01 7.60721676e-01
-4.55603716e-01 -8.34981324e-01 -9.19098224e-01 -2.17537081e-02
3.60175876e-01 -9.32922578e-03 -1.28771968e-01 -1.36153472e-01
8.77264013e-01 3.10401195e-01 -7.45860098e-01 -3.77041077e-01
-3.06522129e-01 -4.84403750e-01 6.84665684e-01]
[ 8.42515118e-01 7.71829707e-01 1.36486748e-01 6.87057293e-01
1.92372399e-01 -1.45609307e-02 -9.13853784e-01 8.87344155e-01
-2.40136409e-01 -9.36517174e-01 3.21840822e-01 5.54752733e-01
-2.05132679e-01 6.40654559e-01 4.11051516e-01 7.66005580e-01
4.61819316e-01 8.39649281e-01 -4.13679906e-01 -9.95424234e-01
9.33548816e-01 4.47405453e-01 -3.36904879e-01 -3.01087936e-01
-9.50373241e-01 -3.69124949e-01 -2.14827069e-01]
[ 6.88426914e-01 7.24573907e-02 -4.60513160e-01 7.82149257e-01
5.65645897e-01 -1.23570490e-01 -4.97238903e-01 -1.03653983e-01
5.87926258e-01 -2.33593469e-01 9.76109683e-01 6.98593344e-01
-2.47393352e-01 -8.29618856e-01 4.56865515e-01 2.37399008e-01
7.14143696e-01 2.57103188e-01 -1.15992168e-01 -1.40416337e-01
-4.33568985e-01 8.04716572e-01 9.74019716e-01 -1.81147320e-01
7.74373507e-01 7.25856744e-01 3.65051152e-01]
[-1.01305240e-01 -5.19358572e-02 -2.22529420e-01 -6.34670200e-01
-7.68074100e-01 -8.93132413e-01 8.57788827e-01 6.86166284e-01
-9.29842654e-01 4.09272778e-01 -5.26647665e-01 7.83862574e-01
9.15907626e-01 9.49761271e-01 3.93007403e-01 -1.86472104e-01
-9.25041143e-01 -6.32325638e-01 -6.22889754e-01 3.65967624e-01
-4.99337837e-01 -6.57308359e-01 5.78600835e-01 2.16817573e-01
-3.93040909e-01 -1.82556533e-01 3.34767423e-01]
[ 9.76245292e-01 -4.26158877e-01 -4.94084964e-01 7.79825873e-01
-5.37914944e-01 -2.15231833e-02 7.07738330e-01 3.76323215e-01
-9.61115468e-01 -1.36752453e-01 -9.38835997e-01 -2.34522496e-01
-6.12003564e-01 2.76736926e-01 -7.38833157e-01 -5.11117184e-01
2.13926861e-01 -4.10053677e-01 8.30151757e-01 -5.30631220e-01
-4.40594449e-01 -1.72880414e-01 -8.55120304e-01 5.06312725e-01
2.64623322e-01 3.55253400e-01 6.48854828e-01]
[ 1.88946213e-01 -4.27749520e-01 3.21088556e-01 -1.56876781e-01
6.96686831e-01 6.73417024e-01 2.14743564e-01 -3.00729745e-01
4.79845420e-01 -7.08909782e-01 -1.95938022e-01 2.34049336e-01
-4.18641693e-01 9.84617840e-01 8.19128019e-01 9.14478006e-02
-9.50821396e-01 3.78042662e-01 2.84495102e-01 4.84830432e-01
5.15509915e-01 4.14465537e-01 6.42754265e-01 1.66014642e-01
3.50041683e-01 9.12099991e-01 -6.33131987e-01]
[-1.06553257e+05 -4.32978921e+05 -4.25200296e+05 -1.13626719e+05
-4.31169089e+05 -1.05036557e+05 -1.13361181e+05 -4.29535239e+05
-1.13874433e+05 -4.32182407e+05 -1.21521106e+05 -1.18537995e+05
-1.14623254e+05 -1.13811299e+05 -1.74041806e+05 -4.22344550e+05
-4.32570906e+05 -2.60705548e+05 -4.21440260e+05 -4.25828284e+05
-1.14489809e+05 -4.31601694e+05 -4.31427280e+05 -1.04074939e+05
-1.20882563e+05 -1.17575775e+05 -1.13790064e+05]
[-9.98725106e+04 -8.37021473e+05 -8.19853927e+05 -1.19672362e+05
-8.33220122e+05 -9.51932529e+04 -1.18951643e+05 -8.29164298e+05
-1.20326371e+05 -8.34957089e+05 -1.41772006e+05 -1.33838636e+05
-1.22087785e+05 -1.20195751e+05 -2.63387002e+05 -8.43213775e+05
-8.35886107e+05 -4.71876721e+05 -8.11943384e+05 -8.21342704e+05
-1.21901144e+05 -8.34261274e+05 -8.33762559e+05 -9.26833985e+04
-1.40187409e+05 -1.31026196e+05 -1.20120847e+05]
[ 1.21227968e+06 1.36823015e+05 1.59548954e+05 1.16653878e+06
1.39461019e+05 1.22560532e+06 1.16866697e+06 1.49268524e+05
1.16507811e+06 1.40062654e+05 1.10890086e+06 1.12540580e+06
1.16213512e+06 1.16542258e+06 8.72378620e+05 -2.85853670e+05
1.40312504e+05 4.36923218e+05 1.65290887e+05 1.56052688e+05
1.16248523e+06 1.37769346e+05 1.38620329e+05 1.23102582e+06
1.11132551e+06 1.13488556e+06 1.16670730e+06]
[ 2.10761596e+06 1.17617438e+06 1.19381537e+06 2.06802447e+06
1.17446074e+06 2.12096763e+06 2.07074400e+06 1.18627360e+06
2.06630673e+06 1.17831427e+06 2.00638584e+06 2.02050848e+06
2.06367087e+06 2.06684648e+06 1.73780063e+06 4.68855916e+05
1.17923552e+06 1.25238074e+06 1.19386033e+06 1.18881112e+06
2.06426350e+06 1.17359108e+06 1.17365609e+06 2.12564033e+06
2.00809075e+06 2.03319880e+06 2.06909241e+06]
[ 3.62348012e+06 2.70943683e+06 2.72350903e+06 3.56661074e+06
2.70663845e+06 3.63998891e+06 3.57099370e+06 2.72150840e+06
3.56495954e+06 2.70804113e+06 3.48585345e+06 3.50904183e+06
3.56216205e+06 3.56568117e+06 3.10249688e+06 1.33057461e+06
2.71619069e+06 2.50127751e+06 2.71570110e+06 2.71906235e+06
3.56384205e+06 2.70572891e+06 2.70497418e+06 3.64614985e+06
3.48536709e+06 3.52497113e+06 3.57085459e+06]
[ 7.46861430e+06 5.37388933e+06 5.42297482e+06 7.44022214e+06
5.36453183e+06 7.49474983e+06 7.45309805e+06 5.39982117e+06
7.44332877e+06 5.37221579e+06 7.47847900e+06 7.38375023e+06
7.43981239e+06 7.44182612e+06 6.59118852e+06 2.50733504e+06
5.38678781e+06 5.13380957e+06 5.41401870e+06 5.40933090e+06
7.43932400e+06 5.36694014e+06 5.36184988e+06 7.50249787e+06
7.46549037e+06 7.41680773e+06 7.45427156e+06]
[ 1.00716934e+07 6.96677968e+06 7.04792877e+06 1.00946970e+07
6.95037195e+06 1.01029013e+07 1.01118602e+07 7.00267353e+06
1.00990589e+07 6.96699665e+06 1.02345227e+07 1.00371355e+07
1.00935727e+07 1.00970369e+07 8.97679229e+06 3.16197937e+06
6.98127408e+06 6.82519305e+06 7.04115246e+06 7.02412857e+06
1.00930944e+07 6.95585387e+06 6.94733306e+06 1.01112550e+07
1.02131486e+07 1.00871160e+07 1.01132331e+07]
[ 1.37572616e+07 9.94771655e+06 1.00491471e+07 1.37413408e+07
9.93616209e+06 1.38063402e+07 1.37640355e+07 1.00016247e+07
1.37440603e+07 9.94659038e+06 1.37837948e+07 1.35956545e+07
1.37352179e+07 1.37427821e+07 1.21655423e+07 4.60144431e+06
9.97448413e+06 9.49160079e+06 1.00357752e+07 1.00225206e+07
1.37378839e+07 9.93706526e+06 9.93072945e+06 1.38177823e+07
1.37629682e+07 1.36654835e+07 1.37653892e+07]
[ 1.45044428e+07 1.09315160e+07 1.10210666e+07 1.44117438e+07
1.09262258e+07 1.45852367e+07 1.44343006e+07 1.09905306e+07
1.44106601e+07 1.09280203e+07 1.42965011e+07 1.41913406e+07
1.44014638e+07 1.44118249e+07 1.26438785e+07 5.20497824e+06
1.09638125e+07 1.00855011e+07 1.10010687e+07 1.09978752e+07
1.44074870e+07 1.09236608e+07 1.09193171e+07 1.45805505e+07
1.42873619e+07 1.42563482e+07 1.44351205e+07]
[ 1.34270418e+07 1.03855036e+07 1.05374601e+07 1.36553967e+07
1.03840579e+07 1.34926849e+07 1.36794147e+07 1.04554186e+07
1.36659206e+07 1.03837755e+07 1.39875057e+07 1.35426282e+07
1.36585395e+07 1.36621393e+07 1.24836779e+07 4.73440443e+06
1.04205079e+07 9.85992316e+06 1.05357315e+07 1.05042667e+07
1.36681808e+07 1.03863396e+07 1.03777920e+07 1.34473187e+07
1.39691723e+07 1.35821256e+07 1.36915955e+07]
[ 1.11271177e+07 8.27765462e+06 8.42924767e+06 1.14688751e+07
8.26969713e+06 1.11607124e+07 1.14878837e+07 8.33507894e+06
1.14787042e+07 8.27956353e+06 1.18462119e+07 1.13771469e+07
1.14724922e+07 1.14752480e+07 1.05220136e+07 3.66566875e+06
8.30168974e+06 8.12655911e+06 8.43410015e+06 8.39406130e+06
1.14796601e+07 8.27308071e+06 8.26617485e+06 1.11025224e+07
1.18253688e+07 1.14225661e+07 1.14977976e+07]
[ 1.01932128e+07 7.46660289e+06 7.55772945e+06 1.02982353e+07
7.45870446e+06 1.02286174e+07 1.03131978e+07 7.51049666e+06
1.03021676e+07 7.46630205e+06 1.04110171e+07 1.01833579e+07
1.02955916e+07 1.03007986e+07 9.19940766e+06 3.43730101e+06
7.48775726e+06 7.15859860e+06 7.55210330e+06 7.53489075e+06
1.02998418e+07 7.45924473e+06 7.45519564e+06 1.02192479e+07
1.03991920e+07 1.02333636e+07 1.03179373e+07]
[ 6.06479994e+06 4.46285041e+06 4.50189979e+06 6.05170396e+06
4.45881137e+06 6.08140422e+06 6.06328895e+06 4.48590672e+06
6.05374205e+06 4.46178627e+06 6.01518357e+06 5.95793199e+06
6.05027986e+06 6.05335475e+06 5.29665131e+06 2.07641887e+06
4.47566292e+06 4.17573536e+06 4.49467311e+06 4.49193856e+06
6.05133852e+06 4.45851586e+06 4.45625444e+06 6.08372805e+06
6.00762291e+06 5.98970626e+06 6.06316282e+06]
[ 2.84719323e+06 2.07200880e+06 2.10004814e+06 2.90650266e+06
2.06925576e+06 2.84095027e+06 2.91665326e+06 2.08297341e+06
2.91344961e+06 2.07149547e+06 2.96739759e+06 2.87642433e+06
2.91285432e+06 2.91102786e+06 2.59145311e+06 8.47096725e+05
2.07777081e+06 2.00657738e+06 2.10000618e+06 2.09364363e+06
2.91160410e+06 2.07041648e+06 2.06784596e+06 2.83809640e+06
2.95581397e+06 2.89607242e+06 2.91751853e+06]
[ 6.12466514e+05 4.53773179e+05 4.62381427e+05 6.33037160e+05
4.55749308e+05 6.07921196e+05 6.35277958e+05 4.58314107e+05
6.35045237e+05 4.54103205e+05 6.39111403e+05 6.18589228e+05
6.35435909e+05 6.34098599e+05 5.30605835e+05 1.24675444e+05
4.56717884e+05 4.28708564e+05 4.63586030e+05 4.61752672e+05
6.35010843e+05 4.56001613e+05 4.54881733e+05 6.04936667e+05
6.36808578e+05 6.25534472e+05 6.36288178e+05]
[-1.26557752e+05 -8.76429426e+04 -8.32798438e+04 -1.28174185e+05
-8.30969299e+04 -1.25931092e+05 -1.28395405e+05 -8.35210003e+04
-1.27842135e+05 -8.65796574e+04 -1.28177215e+05 -1.36545190e+05
-1.27703122e+05 -1.27929199e+05 -1.40941068e+05 -9.83671733e+04
-8.49323564e+04 -8.77666496e+04 -8.15193927e+04 -8.21650094e+04
-1.26450307e+05 -8.35146386e+04 -8.35285063e+04 -1.28570007e+05
-1.23811492e+05 -1.37556068e+05 -1.27039344e+05]
[ 6.04519048e+05 5.23247364e+05 5.27738071e+05 5.69430898e+05
5.27349268e+05 6.12915218e+05 5.69598071e+05 5.29617856e+05
5.68645959e+05 5.23678458e+05 5.43874329e+05 5.54274563e+05
5.68013870e+05 5.69072024e+05 4.82506196e+05 2.62462689e+05
5.27643386e+05 4.46519907e+05 5.26415405e+05 5.28436343e+05
5.69852554e+05 5.26105617e+05 5.26711415e+05 6.14059879e+05
5.49112674e+05 5.53625595e+05 5.70665339e+05]
[ 2.28873377e+05 1.63916322e+05 1.65142032e+05 1.96918279e+05
1.66878272e+05 2.35953632e+05 1.97251113e+05 1.66693814e+05
1.96849545e+05 1.63843536e+05 1.81483409e+05 1.99484253e+05
1.96514846e+05 1.96666143e+05 1.81092107e+05 9.28624392e+04
1.66606676e+05 1.92116114e+05 1.64073362e+05 1.66461844e+05
1.96627194e+05 1.65928395e+05 1.66246384e+05 2.39064975e+05
1.81368818e+05 1.97945820e+05 1.97627836e+05]
[-4.17443472e-02 1.87304487e-02 -4.56427722e-01 4.86287354e-01
6.13525830e-01 9.96462516e-01 -1.69610357e-01 -5.89548408e-01
-2.00963145e-02 -3.02053412e-01 -7.02264434e-01 7.09644159e-01
-5.44297069e-01 -7.44718596e-01 4.15979712e-01 1.54259958e-01
-8.58074274e-01 8.32512074e-01 4.79867279e-01 -9.59868381e-01
-1.99563052e-01 -2.11984920e-01 -6.06487435e-01 9.74599436e-01
1.38806702e-01 -1.68111285e-01 -2.07438966e-01]
[ 7.60529747e-01 -9.34067637e-01 2.05957868e-02 8.94164332e-01
8.38839244e-01 -8.74029662e-01 7.48765344e-01 7.00280700e-02
8.41395984e-01 9.32666068e-01 -5.09108848e-01 -6.88019253e-01
5.52346820e-01 2.35841891e-01 7.21378052e-01 4.48064443e-01
4.78043507e-01 -1.48612517e-01 1.07898318e-01 9.95961198e-01
6.39822375e-01 -9.07324745e-01 3.20305911e-01 2.81948232e-01
-1.71908008e-01 -7.54253933e-02 2.29253267e-01]
[ 6.07004433e-01 -7.26812550e-01 6.12721505e-01 -9.75057224e-01
-6.15268996e-01 -5.01067991e-01 -3.81349802e-02 5.08932515e-01
2.26476030e-01 -9.27647425e-01 2.72591315e-01 5.87716780e-01
-3.36892679e-01 -8.48909051e-01 -2.17970865e-02 -5.95587150e-01
-9.53862133e-01 7.52401377e-01 9.42484305e-02 -9.93196039e-01
-1.53495208e-01 -2.59556420e-01 -3.41947492e-01 -5.91974412e-01
-8.73509978e-01 5.38098884e-01 -9.95604809e-01]
[ 7.13836006e-01 -6.49056763e-01 -8.91494889e-01 8.70631097e-01
4.72005228e-01 3.80148347e-01 -9.49209974e-01 1.87365676e-01
6.99516425e-01 -9.89826120e-01 4.07262093e-01 5.93064776e-01
1.66984571e-02 9.05515145e-01 9.46206373e-01 -3.05528119e-01
-8.42043482e-02 -9.50232585e-01 9.84520621e-01 1.07220815e-01
3.84392743e-01 -9.91023982e-01 -1.19512723e-01 -9.11672198e-02
7.06503693e-01 9.41902001e-01 7.39421578e-01]
[ 7.36011379e-01 3.61691301e-01 -8.28787144e-01 -5.49302577e-01
-8.73040536e-01 9.54082336e-02 4.73673240e-01 -9.92798125e-01
2.59245707e-01 3.29861125e-01 -2.63275827e-01 -6.55709619e-01
5.99851663e-01 -2.23168187e-01 -6.82034396e-01 -5.44589125e-02
-1.11787925e-01 4.36931015e-01 -6.05857391e-01 -4.12517908e-01
-9.45914967e-01 -5.67189526e-01 -6.10274975e-01 7.83161150e-01
-2.46210382e-01 8.80278548e-01 3.18839928e-01]]
syn1 = [[-6.64348947e+00 -3.34289482e+01 -6.91100358e+01 4.31260867e+01
9.53765738e+01 2.86979089e+01 -6.88412216e+01 -4.77451744e+01
1.30744997e+02 2.86456277e+01 4.12394499e+01 -6.37167334e+01
-4.65880305e+01 -9.47131566e+01 1.39409002e+02 1.40835498e+02
-1.20030741e+02 -7.64633211e+01 6.19066898e+01 -3.44798834e+01
7.62237568e+01 6.83908413e+01 5.17832147e+01 -8.54948242e+01
-1.35481224e+02 1.48718254e+02]
[ 1.46692778e+02 7.81444423e+01 -9.36420052e+00 1.85989533e+02
2.25875448e+02 1.57886747e+02 3.16428947e+01 7.17305476e+01
2.59967017e+02 1.89534743e+02 1.72274721e+02 5.01007556e+01
4.24520165e+01 -4.13020818e+01 2.62017490e+02 2.55361039e+02
-6.07430427e+01 3.12589283e+01 1.96247169e+02 8.56032048e+01
2.01783162e+02 2.11432171e+02 1.85787013e+02 -2.92039073e+01
-6.59349947e+01 2.55888722e+02]
[ 1.43476870e+02 8.27021696e+01 -1.03449893e+01 1.80225788e+02
2.24906942e+02 1.55280355e+02 2.73898300e+01 6.79516154e+01
2.62942685e+02 1.90746000e+02 1.72494490e+02 5.82061971e+01
4.02363882e+01 -4.65213052e+01 2.63006383e+02 2.52439212e+02
-6.74508262e+01 2.76409512e+01 1.91835525e+02 8.95319362e+01
1.97581737e+02 2.08894392e+02 1.84360816e+02 -3.75398000e+01
-7.19888114e+01 2.53549505e+02]
[-1.57728419e+00 -2.47351839e+01 -9.64127984e+01 5.97539817e+01
1.05191010e+02 4.15635567e+01 -6.76026742e+01 -4.08157824e+01
1.37364238e+02 3.41160228e+01 5.07886400e+01 -7.80406021e+01
-2.22867734e+01 -1.10100417e+02 1.45104289e+02 1.46957609e+02
-1.38820038e+02 -9.14967280e+01 7.25135846e+01 -4.25005208e+01
8.87235313e+01 7.63294979e+01 6.26679289e+01 -9.73048494e+01
-1.62159138e+02 1.52588370e+02]
[ 1.46418912e+02 8.01996303e+01 -7.51234907e+00 1.82189733e+02
2.25797338e+02 1.56374172e+02 2.95026703e+01 6.91700248e+01
2.62404148e+02 1.89804340e+02 1.74423211e+02 5.74541115e+01
3.82111949e+01 -4.13682931e+01 2.62425141e+02 2.54847647e+02
-6.07228209e+01 3.15510201e+01 1.95204090e+02 8.79019018e+01
2.00477789e+02 2.10894628e+02 1.85462805e+02 -3.11200760e+01
-6.55695567e+01 2.56521690e+02]
[-7.63961289e+00 -3.69943788e+01 -6.79758732e+01 4.08734632e+01
9.29753750e+01 2.61813799e+01 -6.78408214e+01 -4.94107464e+01
1.27556749e+02 2.66909150e+01 4.12755454e+01 -5.97004006e+01
-4.88205721e+01 -9.35081270e+01 1.38071865e+02 1.37715762e+02
-1.18664835e+02 -7.46549768e+01 6.04841088e+01 -3.32311490e+01
7.42250981e+01 6.65125685e+01 5.03748531e+01 -8.42455068e+01
-1.33325478e+02 1.47007536e+02]
[-1.45559269e+00 -2.21042825e+01 -9.75422932e+01 5.94693088e+01
1.05494446e+02 4.15467218e+01 -6.71157297e+01 -4.30262077e+01
1.38609473e+02 3.48420912e+01 4.88200016e+01 -7.68701663e+01
-2.07732060e+01 -1.13421403e+02 1.46199660e+02 1.46205497e+02
-1.43058721e+02 -9.35805332e+01 7.22206251e+01 -4.22007066e+01
8.70589313e+01 7.67209885e+01 6.16165784e+01 -1.01506347e+02
-1.62912798e+02 1.51386277e+02]
[ 1.46663415e+02 7.99057422e+01 -7.93283507e+00 1.84020354e+02
2.25318028e+02 1.56353110e+02 2.96294524e+01 6.97876041e+01
2.61626412e+02 1.90964273e+02 1.74182073e+02 5.67070960e+01
3.89428469e+01 -4.31154251e+01 2.61643929e+02 2.54158749e+02
-6.30842771e+01 3.09130969e+01 1.95299746e+02 8.86039279e+01
1.99855312e+02 2.11884421e+02 1.85009798e+02 -3.13481414e+01
-6.75112644e+01 2.55260213e+02]
[-8.81526527e-01 -2.26555165e+01 -9.80032417e+01 5.87703227e+01
1.05084257e+02 4.20191550e+01 -6.98802271e+01 -4.07831322e+01
1.38144972e+02 3.34227152e+01 4.98444494e+01 -7.51958450e+01
-2.03585633e+01 -1.15874095e+02 1.47602811e+02 1.47036083e+02
-1.45453683e+02 -9.32255243e+01 7.28053629e+01 -4.02277092e+01
8.81959219e+01 7.73423268e+01 6.26672345e+01 -1.03442137e+02
-1.64519690e+02 1.52764307e+02]
[ 1.46970133e+02 7.89704732e+01 -1.06959193e+01 1.86305360e+02
2.23860946e+02 1.57411747e+02 3.22159487e+01 7.24861165e+01
2.58988985e+02 1.89109656e+02 1.72392406e+02 5.10292264e+01
4.14953989e+01 -4.08422164e+01 2.59699541e+02 2.53321151e+02
-6.08533930e+01 3.12740543e+01 1.96015015e+02 8.40007014e+01
2.00974073e+02 2.10957091e+02 1.84826897e+02 -2.79612297e+01
-6.68469941e+01 2.54378187e+02]
[-1.86401515e-01 1.43598803e+01 -1.35806230e+02 6.95434425e+01
1.18694177e+02 4.88998161e+01 -5.43515463e+01 -2.22900591e+01
1.56046550e+02 4.56473291e+01 5.91516635e+01 -6.95813079e+01
-3.69206853e+01 -1.60028495e+02 1.65308879e+02 1.52251208e+02
-1.89567221e+02 -9.26284024e+01 8.22493524e+01 -1.44979521e+01
9.67600876e+01 8.95014699e+01 7.64972054e+01 -1.47049429e+02
-2.01199013e+02 1.58291620e+02]
[ 1.90010946e+00 -7.47244234e+00 -1.09828257e+02 6.91221724e+01
1.10401829e+02 4.86498753e+01 -5.94187774e+01 -3.02510012e+01
1.44460922e+02 4.35254089e+01 5.43594197e+01 -7.43200712e+01
-1.48314526e+01 -1.24470951e+02 1.52407267e+02 1.48357974e+02
-1.56650582e+02 -9.43188958e+01 7.96593162e+01 -3.03252637e+01
9.47920129e+01 8.45426197e+01 7.04520863e+01 -1.09248719e+02
-1.72966845e+02 1.53536460e+02]
[-1.15250059e+00 -2.04778905e+01 -9.81893818e+01 5.93182839e+01
1.05707303e+02 4.19105440e+01 -7.04904017e+01 -4.24271428e+01
1.40004601e+02 3.38354315e+01 5.18100853e+01 -7.41634169e+01
-2.02681637e+01 -1.16557033e+02 1.46148895e+02 1.46990111e+02
-1.46329712e+02 -9.37834614e+01 7.43066851e+01 -3.98687222e+01
8.97045684e+01 7.63589894e+01 6.42427134e+01 -1.03305413e+02
-1.63492630e+02 1.52077769e+02]
[-2.06399396e-01 -2.18141795e+01 -9.76951639e+01 5.96461317e+01
1.05866384e+02 4.20260153e+01 -6.89680116e+01 -4.19196964e+01
1.38416873e+02 3.46794581e+01 5.03159264e+01 -7.53191301e+01
-1.98865670e+01 -1.14735345e+02 1.46399734e+02 1.46768936e+02
-1.44269835e+02 -9.45024794e+01 7.33486606e+01 -4.03806240e+01
8.70415478e+01 7.66443488e+01 6.37536073e+01 -1.02057088e+02
-1.62932119e+02 1.52818244e+02]
[ 1.55501154e+01 1.31079699e+01 -1.14864118e+02 8.62036867e+01
1.30032164e+02 6.69463216e+01 -4.82422815e+01 -1.01366914e+01
1.64811252e+02 5.40231548e+01 7.57238729e+01 -6.38441905e+01
-2.92908890e+01 -1.49688416e+02 1.73528006e+02 1.72478445e+02
-1.73762483e+02 -7.65590526e+01 1.03535369e+02 6.90090028e-01
1.14932195e+02 1.02633503e+02 9.19672238e+01 -1.29948000e+02
-1.79547454e+02 1.76771820e+02]
[ 8.27611340e+01 4.14746316e+01 1.98231815e+01 1.22732136e+02
1.14350764e+02 8.95566939e+01 3.95561788e+01 7.12507323e+01
1.38209497e+02 1.12824388e+02 8.79908075e+01 6.22781094e+01
1.83409484e+02 1.66098567e+01 1.40741265e+02 1.32811606e+02
8.40639809e+00 2.58286701e+01 1.02330161e+02 5.26679276e+01
9.96032718e+01 1.14310853e+02 1.01015484e+02 2.39476849e+01
-8.41552114e+00 1.24861589e+02]
[ 1.47234755e+02 8.01241135e+01 -8.32968232e+00 1.84355430e+02
2.25009957e+02 1.58037119e+02 3.10064471e+01 7.02983037e+01
2.61238393e+02 1.91138780e+02 1.75008028e+02 5.39091731e+01
3.92596896e+01 -4.18784129e+01 2.63457191e+02 2.55297114e+02
-6.12703604e+01 3.22538721e+01 1.95264754e+02 8.87436956e+01
2.01341122e+02 2.12129150e+02 1.85481089e+02 -3.08291680e+01
-6.72219216e+01 2.56528961e+02]
[ 8.14713699e+01 5.90871382e+01 -5.29597316e+01 1.14234108e+02
1.54675414e+02 1.01035114e+02 -8.48476993e+00 3.62658661e+01
1.86720403e+02 1.12412682e+02 1.14722387e+02 2.25323181e+00
-2.73397409e+01 -8.13702494e+01 1.85742500e+02 1.88190379e+02
-1.13126787e+02 -1.98676697e+01 1.30307774e+02 5.51055211e+01
1.43487017e+02 1.32718211e+02 1.22285148e+02 -7.13362940e+01
-1.23311743e+02 1.90840045e+02]
[ 1.43267841e+02 8.46906133e+01 -1.07440344e+01 1.76771337e+02
2.23024290e+02 1.52672007e+02 2.54576881e+01 6.51526604e+01
2.62399145e+02 1.90836652e+02 1.73682575e+02 6.08052006e+01
3.78672524e+01 -4.86956714e+01 2.61441951e+02 2.51266634e+02
-7.05369472e+01 2.50307739e+01 1.89909042e+02 9.06795230e+01
1.96665842e+02 2.07490469e+02 1.83637140e+02 -3.92290786e+01
-7.33866490e+01 2.52194759e+02]
[ 1.43424323e+02 8.15670232e+01 -8.74049398e+00 1.80231821e+02
2.24841901e+02 1.54879425e+02 2.72515632e+01 6.75305992e+01
2.63334885e+02 1.90914317e+02 1.73428616e+02 5.78666359e+01
3.72362936e+01 -4.60952120e+01 2.62504265e+02 2.51665487e+02
-6.70264769e+01 2.87246087e+01 1.93459048e+02 9.07617395e+01
1.98096503e+02 2.10963153e+02 1.84864331e+02 -3.73920816e+01
-7.02263141e+01 2.54127779e+02]
[-7.38183025e-01 -2.01787938e+01 -9.72631158e+01 5.83218845e+01
1.06602895e+02 4.11685888e+01 -7.03822616e+01 -4.15908074e+01
1.39102958e+02 3.43418976e+01 5.08158934e+01 -7.39094047e+01
-1.93165896e+01 -1.16487038e+02 1.47455120e+02 1.47247705e+02
-1.44672832e+02 -9.39337872e+01 7.41160208e+01 -3.76019336e+01
8.76093356e+01 7.87408597e+01 6.35543116e+01 -1.02939248e+02
-1.63322917e+02 1.52077674e+02]
[ 1.45957286e+02 8.02582658e+01 -6.36912592e+00 1.83349519e+02
2.25403101e+02 1.56871828e+02 3.14754125e+01 6.92476370e+01
2.62424878e+02 1.91744013e+02 1.74060565e+02 5.42243304e+01
3.79012604e+01 -4.16369974e+01 2.63273036e+02 2.55254709e+02
-6.11234729e+01 3.25091061e+01 1.95297218e+02 8.75196549e+01
2.00211828e+02 2.09891070e+02 1.84649069e+02 -3.09676662e+01
-6.63820535e+01 2.56678724e+02]
[ 1.47108584e+02 7.99624620e+01 -7.75031872e+00 1.84011330e+02
2.25178970e+02 1.57454789e+02 3.00777840e+01 6.99360869e+01
2.61244242e+02 1.90345638e+02 1.74840123e+02 5.47228338e+01
3.89402244e+01 -4.19007788e+01 2.61101308e+02 2.54186033e+02
-6.11818514e+01 3.29637985e+01 1.94367414e+02 8.87266134e+01
1.99151985e+02 2.10670916e+02 1.84675848e+02 -3.00949267e+01
-6.55039761e+01 2.55900838e+02]
[-5.11535743e+00 -3.66379333e+01 -6.80085539e+01 4.07294412e+01
9.01048576e+01 2.69547406e+01 -6.91661678e+01 -4.81184710e+01
1.24996807e+02 2.54095300e+01 4.10862543e+01 -6.07959543e+01
-5.15273878e+01 -9.42082742e+01 1.35843521e+02 1.37944121e+02
-1.19349513e+02 -7.36909979e+01 6.08042163e+01 -3.38492533e+01
7.42228695e+01 6.62908990e+01 4.97301264e+01 -8.41681814e+01
-1.35823206e+02 1.47527613e+02]
[ 2.81313165e+00 1.43287370e+01 -1.37701428e+02 7.10159390e+01
1.16523784e+02 5.08044235e+01 -5.21407670e+01 -1.86395730e+01
1.51867638e+02 4.94657059e+01 5.73600948e+01 -5.91948250e+01
-2.88439881e+01 -1.56906327e+02 1.57571655e+02 1.47914310e+02
-1.89188951e+02 -9.13082909e+01 8.08724581e+01 -1.33156965e+01
9.81498177e+01 8.89874101e+01 7.49317820e+01 -1.42695291e+02
-2.02139290e+02 1.53635243e+02]
[-7.81190309e-01 -8.17326837e+00 -1.10620145e+02 6.73349188e+01
1.10240488e+02 4.74642466e+01 -6.18209764e+01 -3.18178875e+01
1.43137111e+02 3.90042760e+01 5.37407029e+01 -7.72068761e+01
-1.24933058e+01 -1.27249988e+02 1.50782767e+02 1.49029772e+02
-1.57020503e+02 -9.63513818e+01 7.77907551e+01 -3.10264949e+01
9.46851644e+01 8.21609946e+01 6.95513013e+01 -1.12081000e+02
-1.76237886e+02 1.54191295e+02]
[-2.53689007e+00 -2.23069775e+01 -9.80171687e+01 5.97252658e+01
1.06732105e+02 4.11211166e+01 -6.84922541e+01 -4.14445796e+01
1.39800066e+02 3.56641471e+01 5.05746435e+01 -7.50811934e+01
-2.01841482e+01 -1.16380827e+02 1.48305039e+02 1.46904068e+02
-1.45190905e+02 -9.34883193e+01 7.31530781e+01 -3.95228939e+01
8.79975732e+01 7.69328971e+01 6.42294035e+01 -1.02376069e+02
-1.63243857e+02 1.51813855e+02]]
syn2 = [[ 3.31055732e+00 -5.75461091e-01 3.44776579e-01 -4.15983637e+00
2.46883207e-01 4.08205641e+00 7.20419354e-03 -1.96266021e+00
-3.64389969e+00 9.30092128e-01]
[ 5.52997090e+00 -1.51788738e+00 -8.96010915e-01 -9.13042632e+00
-1.23017952e+00 1.31840111e+00 -5.81070281e-01 3.49525641e+00
-7.57683048e+00 4.41356326e-01]
[-9.43893720e+00 -6.00035065e+00 4.40117164e+00 7.72842309e+00
4.32721988e+00 1.53196856e+00 -9.93451447e+00 -1.06370532e+01
6.71706210e+00 1.75177782e+00]
[ 9.63254652e-01 3.32617945e-01 -2.84189480e+00 -6.69275028e-01
-3.16286114e+00 -2.29918365e+00 2.19224577e-01 3.25916221e-01
-1.65544011e+00 -1.50611949e+00]
[-1.36020717e+00 -1.57441472e+00 -2.14959399e+00 6.35090247e-01
-1.40797384e+00 -9.63089955e-01 -8.72888411e-01 -2.14954790e-01
-2.67147019e+00 -1.69855059e-01]
[ 2.76419925e+00 2.77739961e+00 1.51438935e+00 -4.60971809e-02
2.06481418e+00 1.38876337e+00 1.73324085e+00 3.95449659e-01
2.15585105e+00 5.18175780e-01]
[-4.54907910e+00 -3.01188261e+00 -3.02823639e+00 -1.17224100e+01
-1.43793001e+00 -2.34892888e+00 -3.50199820e+00 -2.99546288e+00
-8.30857791e+00 -2.26102741e+00]
[ 1.63258295e+00 -7.28511087e-01 -3.00512368e+00 -1.16473643e+01
-2.51953016e+00 -1.96658268e+00 -1.43522687e-02 -1.43352725e+00
-1.03773131e+01 2.40317489e+00]
[-1.89011617e+00 -3.15372559e+00 -3.02693301e+00 -7.38146763e-01
-3.42370177e+00 -3.99719968e+00 -1.92582043e+00 -6.39984565e-01
-2.47955213e+00 -1.09757864e+00]
[-1.03318375e+00 -3.25137064e+00 -1.59623563e+00 -4.91709263e+00
-3.29951522e+00 2.28948841e+00 -6.87900961e+00 -5.30156497e+00
-5.81078478e+00 -1.15645444e+00]
[ 1.72188443e+00 1.76189212e+00 1.84186981e+00 4.09139804e-01
1.10998606e+00 2.26651958e+00 1.04782628e-01 -8.85871084e-01
6.19866456e-01 5.74128804e-01]
[-1.27074848e-01 -4.93471630e+00 3.11330114e+00 -1.39932335e+01
4.17609212e+00 2.42232775e+00 -9.38598885e+00 -9.57453176e+00
-1.25650098e+01 3.63846707e+00]
[ 1.15312205e+00 -2.76050587e+00 -1.60857817e+01 7.33422616e+00
-1.69501464e+01 -1.50990133e+01 1.53481458e+00 -1.27230797e+00
8.55801469e+00 -7.20428696e+00]
[-8.37132061e+00 -3.33234169e+00 3.90618626e+00 7.77530760e+00
4.67573852e+00 1.52588635e+00 -1.03802072e+01 -8.83121575e+00
8.26196890e+00 6.45632472e-01]
[-3.01491432e+00 -2.55258967e+00 -3.22109228e+00 -1.91054024e+00
-3.48811423e+00 -4.76181346e+00 -5.71805359e-01 3.46763790e-01
-2.61869950e+00 -1.83463640e+00]
[-3.23025791e-01 2.42392981e+00 1.40032073e+00 5.27327569e-01
8.60333715e-01 -4.40147051e+00 3.19493080e+00 1.47537287e+00
3.48892069e+00 -1.65181213e+00]
[-1.12672522e+01 -6.18119712e+00 1.21812076e+00 6.74231345e+00
1.28895634e+00 -1.04079247e+00 -1.15935602e+01 -1.11611323e+01
5.05099778e+00 8.67226451e-01]
[-5.80907469e+00 -3.12262096e+00 2.27445152e+00 -1.15005185e+01
2.15804707e+00 2.36466882e+00 -6.24382596e+00 -7.92954181e+00
-1.04315310e+01 8.14382968e-01]
[ 7.04115540e-01 8.15543318e-01 -3.91320013e-01 2.92507158e-02
4.59162169e-02 4.11845001e-01 1.17446412e+00 -6.18468886e-01
5.86372747e-02 -7.89037491e-02]
[ 2.03223266e+00 -2.65267198e+00 2.47457155e-01 -1.30063540e+01
1.59768139e+00 1.08270253e+00 -2.06685006e+00 -3.67692417e+00
-1.11833523e+01 3.19240802e+00]
[ 2.38330596e+00 1.93437245e+00 1.51437554e+00 1.40284182e+00
2.29264473e+00 1.05446903e+00 2.48720212e+00 8.54374853e-01
3.50996143e+00 4.30591478e-01]
[-1.39766192e+00 -1.99805188e+00 -2.36736649e+00 -2.21615560e+00
-3.14481735e+00 4.69437326e-01 -2.15612003e+00 -2.37622400e+00
-4.92688527e+00 -2.79242686e+00]
[ 7.99394430e-01 3.88523232e-01 7.79488497e-04 -8.01485552e-01
5.15733934e-01 -2.63642861e-01 3.49446284e-01 1.19620059e-01
-3.99842147e-02 -1.35141042e+00]
[-7.63495667e+00 -3.64770447e+00 3.24073303e+00 7.72139945e+00
4.46724295e+00 9.47994745e-01 -8.92204272e+00 -9.26002429e+00
7.66252193e+00 1.28111014e+00]
[-1.35666922e+01 -1.05835327e+01 1.69219795e+00 5.57370662e+00
3.92850168e+00 2.24549373e+00 -1.26465888e+01 -1.28063217e+01
5.25036241e+00 2.31083167e+00]
[-5.02984516e-02 2.84423289e+00 2.19179844e+00 -6.50268689e-01
2.03176361e+00 -2.31571814e+00 3.45538793e+00 6.84116950e-01
3.90571862e+00 -1.11893686e+00]]
b0 = [[-3350.613598 -5928.65923424 -5861.27711318 -3450.84177937
-5912.7053896 -3326.38242121 -3446.21612165 -5907.75184722
-3452.33172483 -5911.04062766 -3535.20467978 -3512.53184125
-3460.83798509 -3454.83284534 -3679.93463257 -3891.18040962
-5931.80474358 -4231.54492682 -5817.7028358 -5865.9541187
-3460.3532473 -5915.27001842 -5909.62367703 -3320.26430818
-3521.44263752 -3505.55492851 -3458.31984711]]
b1 = [[-4.77119154 -2.90355526 -4.17776492 -4.05836564 -4.4002112 -4.26552546
-1.91466955 -3.24847058 -4.14776317 -4.84145177 -4.43040994 -3.86144113
-1.78314784 -3.99306128 -3.81856739 -3.58393816 -4.02438221 -2.82483396
-4.18116351 -3.53828257 -4.27111439 -4.25557682 -4.06073432 -3.92153421
-4.64405556 -3.61958463]]
b2 = [[-0.96464706 -0.79280635 -0.30028434 -0.13330055 0.38295954 0.21051253
-0.59486522 -0.45713052 -0.82603502 -0.59716918]]
| [
"[email protected]"
]
| |
0dfdbb64ae87c90a2faea1081212a757f355b52a | 593132164b6992b8b047cdf43a9d04c59fe607ee | /py_simple/14.直方图/14.4.3绘制图像直方图.py | ea06b99e0fe02ba77074c538cc3d9a4ee1bcd1d6 | [
"Apache-2.0"
]
| permissive | ztfmars/OpenCV_Python_Tutorial | b69b98e5e6b4e31c4f699fdbbaac36db68b8098b | 2c9cf57f469dfec2aca8356f59f7473e5a506988 | refs/heads/main | 2023-02-14T22:40:38.456751 | 2021-01-17T02:18:21 | 2021-01-17T02:18:21 | 329,609,724 | 1 | 0 | null | null | null | null | UTF-8 | Python | false | false | 238 | py | # -*- coding: utf-8 -*-
"""
Created on Wed Jul 4 15:14:29 2018
"""
import cv2
import matplotlib.pyplot as plt
o=cv2.imread(r"../image/boatGray.bmp")
histb = cv2.calcHist([o],[0],None,[256],[0,255])
plt.plot(histb,color='r')
plt.show() | [
"[email protected]"
]
| |
fc0b447a2456e32eab54d3280fb6ec002374a543 | de24f83a5e3768a2638ebcf13cbe717e75740168 | /moodledata/vpl_data/21/usersdata/132/7646/submittedfiles/exercicio24.py | 6f1494ca275e078bdc33c5054fba35ef34694292 | []
| no_license | rafaelperazzo/programacao-web | 95643423a35c44613b0f64bed05bd34780fe2436 | 170dd5440afb9ee68a973f3de13a99aa4c735d79 | refs/heads/master | 2021-01-12T14:06:25.773146 | 2017-12-22T16:05:45 | 2017-12-22T16:05:45 | 69,566,344 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 283 | py | # -*- coding: utf-8 -*-
from __future__ import division
import math
salario=float(input('digite o salario:')
b=salario
imposto=0
if b>3000:
imposto=imposto+((b-1000)*0.35)
b=3000
if base>1000:
imposto=imposto + ((base-1000)*0.2)
print(' salario: %.2f'%(salario, imposto)
| [
"[email protected]"
]
| |
0830399447aa0f121363d3b62bf09941e4d667bb | 6496d7ab505ab1df594d373c0c58206d580302f6 | /exercicio2.py | 63ad04b2a7e4b5da032aad729336883f6191a972 | []
| no_license | alicesilva/P1-Python-Problemas | 7050f323a073ff51c51cd94d451bddfac71bf30b | eade521a3c7f740bb901a6714385d91356a37835 | refs/heads/master | 2020-03-09T21:04:32.211493 | 2018-08-25T19:50:53 | 2018-08-25T19:50:53 | 129,000,364 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 745 | py | #coding: utf-8
numero1 = int(raw_input())
numero2 = int(raw_input())
numero3 = int(raw_input())
if numero1 <= numero2 and numero1 <= numero3 and numero2 < numero3:
print numero1
print numero2
print numero3
elif numero1<numero2 and numero2<numero3 and numero3<numero2:
print numero1
print numero3
print numero2
elif numero1 > numero2 and numero2 < numero3 and numero1 < numero3:
print numero2
print numero1
print numero3
elif numero1 > numero2 and numero2<numero3 and numero3<numero1:
print numero2
print numero3
print numero1
elif numero3<numero1 and numero3<numero2 and numero1<numero2:
print numero3
print numero1
print numero2
else:
print numero3
print numero2
print numero1
print
print numero1
print numero2
print numero3
| [
"[email protected]"
]
| |
3820696ada3ab15a036ddeea0e29c7a9fbd88bae | 83646bb54129da9fae70ec05e943093cc221ad85 | /Interface.py | 56afa59ebd7c4cccc2d1aa017097fa1fc2fb57fe | []
| no_license | Rybak-a87/password_store_gui | 88b6464fbbe5643c63c0a00caee02f937f4007bc | 2a2c771e34b5fda01b2d404b713cc00fa0b35816 | refs/heads/main | 2023-02-06T06:44:10.178644 | 2020-12-25T12:32:10 | 2020-12-25T12:32:10 | 318,624,367 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 7,632 | py | import tkinter
from BackendJson import BackendJson
from Cipher import Cipher
class Interface:
def __init__(self, window_name):
self.backend = BackendJson("data")
self.cipher = Cipher()
self.root = tkinter.Tk()
self.root.title(window_name)
# self.root.iconbitmap("./ico/icon.ico")
# размер и положение окна (середира экрана)
wx = self.root.winfo_screenwidth()
wy = self.root.winfo_screenheight()
x = int(wx/2 - 600/2)
y = int(wy/2 - 400/2)
self.root.geometry(f"600x400+{x}+{y}")
self.root.resizable(False, False)
# вызов начального фрейма
self.frame_home()
# создание фреймa
def create_frames(self):
return tkinter.Frame(self.root, width=600, height=400)
# главный экран
def frame_home(self):
f_home = self.create_frames()
f_home.place(relx=0.5, rely=0.5, anchor="center")
self.__author(f_home)
welcome_text = "Добро пожаловать!\nДанная программа поможет вам хранить\nи управлять Вашими паролями"
tkinter.Label(f_home, font="Arial 15", text=welcome_text).place(relx=0.5, rely=0.1, anchor="n")
# кнопки
buttons = ["Добавить", "Удалить", "Показать"]
x = 80
y = 300
for btn in buttons:
pressing = lambda but=btn: self.button_logics(but)
tkinter.Button(f_home, text=btn, font="Arial 15", command=pressing,
).place(x=x, y=y, width=110, height=50)
x += 160
# ввод ключа шифрования
tkinter.Label(f_home, font="Arial 10", text="Ключ шифрования",
).place(relx=0.05, rely=0.45, anchor="w")
self.scrypt_key = tkinter.Entry(f_home, font="Arial 10")
self.scrypt_key.place(relx=0.05, rely=0.5, anchor="w", width=480)
tkinter.Button(f_home, font="Arial 7", text="Добавить ключ",
command=lambda but="add_key": self.button_logics(but),
).place(relx=0.855, rely=0.5, anchor="w")
self.use_scrypt_key = tkinter.Label(f_home, font="Arial 7",
text="Используестя ключ по умолчанию")
self.use_scrypt_key.place(relx=0.5, rely=0.53, anchor="n")
# раздел добавления
def frame_add(self):
f_add = self.create_frames()
f_add.place(relx=0.5, rely=0.5, anchor="center")
self.button_back(f_add)
self.__author(f_add)
self.descriptions = {"Ресурс": None, "Ваш логин": None, "Ваш пароль": None}
y = 10
for description in self.descriptions.keys():
tkinter.Label(f_add, font="Arial 15", text=description).place(relx=0.5, y=y, anchor="n")
self.descriptions[description] = tkinter.Entry(f_add, font="Arial 15", width=30,
)
self.descriptions[description].place(relx=0.5, y=y + 30, anchor="n")
y += 100
tkinter.Button(f_add, command=lambda but="add_data": self.button_logics(but),
text="Сохранить", font="Arial 16", width=20,).place(relx=0.5, rely=0.8, anchor="n")
# раздел удаления
def frame_del(self):
f_del = self.create_frames()
f_del.place(relx=0.5, rely=0.5, anchor="center")
self.button_back(f_del)
self.__author(f_del)
self.temp_f_frame = f_del
self.del_list = tkinter.Listbox(f_del, font="Arial 10", selectmode=tkinter.MULTIPLE, bd=1)
tkinter.Button(f_del, command=lambda but="del_data": self.button_logics(but),
font="Arial 15", text="Удалить").place(relx=0.5, rely=0.85, anchor="n")
# работа со списком
self.data = self.backend.read_file()
for atr in self.data:
self.del_list.insert(tkinter.END, f"{self.cipher.decipher(atr)}")
self.del_list.place(relx=0.5, y=3, anchor="n", width=444, height=330)
# раздел просмотра
def frame_view(self):
f_view = self.create_frames()
f_view.place(relx=0.5, rely=0.5, anchor="center")
self.button_back(f_view)
self.__author(f_view)
self.info = tkinter.Text(f_view, font="Arial 10")
# работа со списком
data = self.backend.read_file()
for k, v in data.items():
out = f"{4*' '}{self.cipher.decipher(k)}\n" \
f"\tLogin: {self.cipher.decipher(v['login'])}\n" \
f"\tPassword: {self.cipher.decipher(v['password'])}\n" \
f"{110*'-'}"
self.info.insert(tkinter.END, out)
self.info.place(relx=0.5, y=3, anchor="n", width=446, height=380)
# логика нажатий на кнопки
def button_logics(self, pressing):
if pressing == "Добавить":
self.frame_add()
elif pressing == "Удалить":
self.frame_del()
elif pressing == "Показать":
self.frame_view()
elif pressing == "add_data":
self.add()
elif pressing == "del_data":
self.dell()
elif pressing == "add_key":
self.add_scrypt_key()
# Кнопка добавить
def add(self):
resource = self.cipher.encipher(self.descriptions["Ресурс"].get())
login = self.cipher.encipher(self.descriptions["Ваш логин"].get())
password = self.cipher.encipher(self.descriptions["Ваш пароль"].get())
if resource and login and password:
# очистить поля
self.descriptions["Ресурс"].delete(0, tkinter.END)
self.descriptions["Ваш логин"].delete(0, tkinter.END)
self.descriptions["Ваш пароль"].delete(0, tkinter.END)
# добавление данных в память
self.backend.add_to_file(resource, login, password)
# кнопка удалить
def dell(self):
if self.data:
need_del = [self.cipher.encipher(i) for i in self.del_list.selection_get().split("\n")]
self.backend.del_from_file(need_del)
# перезапуск фрейма
self.temp_f_frame.destroy()
self.frame_del()
# кнопка добавить клюс шифрования
def add_scrypt_key(self):
key = self.scrypt_key.get()
if key:
self.cipher.scrypt_key_set(key.lower())
self.use_scrypt_key["text"] = f"Используется ключ: {key}"
else:
self.cipher.scrypt_key_default()
self.use_scrypt_key["text"] = "Используестя ключ по умолчанию"
# кнопка "назад"
def button_back(self, frame):
tkinter.Button(frame, text="< Назад", font="Arial 8", command=lambda: frame.destroy(),
).place(x=3, y=3, anchor="nw")
# запуск окна
def start(self):
self.root.mainloop()
# автор "водяной знак"
def __author(self, root):
my_name = "Programm by Rybak A."
tkinter.Label(root, font="Tahoma 7", text=my_name, fg="Blue"
).place(relx=1, rely=1, anchor="se")
| [
"[email protected]"
]
| |
8635e077edd2b79d936a964c7c40929515a6af46 | 2b398353f5b0529ac666ef180e9dc966474a70c0 | /vspk/v5_0/nudeploymentfailure.py | 99706036d430b1c60d8f3ed6caf380e2699e5a7f | [
"BSD-3-Clause"
]
| permissive | nuagenetworks/vspk-python | e0c4570be81da2a4d8946299cb44eaf9559e0170 | 9a44d3015aa6424d0154c8c8a42297669cce11f9 | refs/heads/master | 2023-06-01T01:12:47.011489 | 2023-05-12T19:48:52 | 2023-05-12T19:48:52 | 53,171,411 | 21 | 18 | BSD-3-Clause | 2020-12-16T12:36:58 | 2016-03-04T23:10:58 | Python | UTF-8 | Python | false | false | 18,334 | py | # -*- coding: utf-8 -*-
#
# Copyright (c) 2015, Alcatel-Lucent Inc, 2017 Nokia
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are met:
# * Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
# * 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.
# * Neither the name of the copyright holder nor the names of its contributors
# may be used to endorse or promote products derived from this software without
# specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS 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 COPYRIGHT HOLDER 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.
from .fetchers import NUMetadatasFetcher
from .fetchers import NUGlobalMetadatasFetcher
from bambou import NURESTObject
class NUDeploymentFailure(NURESTObject):
""" Represents a DeploymentFailure in the VSD
Notes:
A deployment failure represents a deployment operation initiated by the VSD that resulted in a failure.
"""
__rest_name__ = "deploymentfailure"
__resource_name__ = "deploymentfailures"
## Constants
CONST_EVENT_TYPE_DELETE = "DELETE"
CONST_ENTITY_SCOPE_GLOBAL = "GLOBAL"
CONST_EVENT_TYPE_CREATE = "CREATE"
CONST_EVENT_TYPE_UPDATE = "UPDATE"
CONST_ENTITY_SCOPE_ENTERPRISE = "ENTERPRISE"
def __init__(self, **kwargs):
""" Initializes a DeploymentFailure instance
Notes:
You can specify all parameters while calling this methods.
A special argument named `data` will enable you to load the
object from a Python dictionary
Examples:
>>> deploymentfailure = NUDeploymentFailure(id=u'xxxx-xxx-xxx-xxx', name=u'DeploymentFailure')
>>> deploymentfailure = NUDeploymentFailure(data=my_dict)
"""
super(NUDeploymentFailure, self).__init__()
# Read/Write Attributes
self._last_failure_reason = None
self._last_known_error = None
self._last_updated_by = None
self._affected_entity_id = None
self._affected_entity_type = None
self._diff_map = None
self._entity_scope = None
self._error_condition = None
self._assoc_entity_id = None
self._assoc_entity_type = None
self._associated_domain_id = None
self._associated_domain_type = None
self._associated_network_entity_id = None
self._associated_network_entity_type = None
self._number_of_occurences = None
self._event_type = None
self._external_id = None
self.expose_attribute(local_name="last_failure_reason", remote_name="lastFailureReason", attribute_type=str, is_required=False, is_unique=False)
self.expose_attribute(local_name="last_known_error", remote_name="lastKnownError", attribute_type=str, is_required=False, is_unique=False)
self.expose_attribute(local_name="last_updated_by", remote_name="lastUpdatedBy", attribute_type=str, is_required=False, is_unique=False)
self.expose_attribute(local_name="affected_entity_id", remote_name="affectedEntityID", attribute_type=str, is_required=False, is_unique=False)
self.expose_attribute(local_name="affected_entity_type", remote_name="affectedEntityType", attribute_type=str, is_required=False, is_unique=False)
self.expose_attribute(local_name="diff_map", remote_name="diffMap", attribute_type=str, is_required=False, is_unique=False)
self.expose_attribute(local_name="entity_scope", remote_name="entityScope", attribute_type=str, is_required=False, is_unique=False, choices=[u'ENTERPRISE', u'GLOBAL'])
self.expose_attribute(local_name="error_condition", remote_name="errorCondition", attribute_type=int, is_required=False, is_unique=False)
self.expose_attribute(local_name="assoc_entity_id", remote_name="assocEntityId", attribute_type=str, is_required=False, is_unique=False)
self.expose_attribute(local_name="assoc_entity_type", remote_name="assocEntityType", attribute_type=str, is_required=False, is_unique=False)
self.expose_attribute(local_name="associated_domain_id", remote_name="associatedDomainID", attribute_type=str, is_required=False, is_unique=False)
self.expose_attribute(local_name="associated_domain_type", remote_name="associatedDomainType", attribute_type=str, is_required=False, is_unique=False)
self.expose_attribute(local_name="associated_network_entity_id", remote_name="associatedNetworkEntityID", attribute_type=str, is_required=False, is_unique=False)
self.expose_attribute(local_name="associated_network_entity_type", remote_name="associatedNetworkEntityType", attribute_type=str, is_required=False, is_unique=False)
self.expose_attribute(local_name="number_of_occurences", remote_name="numberOfOccurences", attribute_type=int, is_required=False, is_unique=False)
self.expose_attribute(local_name="event_type", remote_name="eventType", attribute_type=str, is_required=False, is_unique=False, choices=[u'CREATE', u'DELETE', u'UPDATE'])
self.expose_attribute(local_name="external_id", remote_name="externalID", attribute_type=str, is_required=False, is_unique=True)
# Fetchers
self.metadatas = NUMetadatasFetcher.fetcher_with_object(parent_object=self, relationship="child")
self.global_metadatas = NUGlobalMetadatasFetcher.fetcher_with_object(parent_object=self, relationship="child")
self._compute_args(**kwargs)
# Properties
@property
def last_failure_reason(self):
""" Get last_failure_reason value.
Notes:
A detailed description of the last deployment failure.
This attribute is named `lastFailureReason` in VSD API.
"""
return self._last_failure_reason
@last_failure_reason.setter
def last_failure_reason(self, value):
""" Set last_failure_reason value.
Notes:
A detailed description of the last deployment failure.
This attribute is named `lastFailureReason` in VSD API.
"""
self._last_failure_reason = value
@property
def last_known_error(self):
""" Get last_known_error value.
Notes:
A string reporting the last reported deployment error condition.
This attribute is named `lastKnownError` in VSD API.
"""
return self._last_known_error
@last_known_error.setter
def last_known_error(self, value):
""" Set last_known_error value.
Notes:
A string reporting the last reported deployment error condition.
This attribute is named `lastKnownError` in VSD API.
"""
self._last_known_error = value
@property
def last_updated_by(self):
""" Get last_updated_by value.
Notes:
ID of the user who last updated the object.
This attribute is named `lastUpdatedBy` in VSD API.
"""
return self._last_updated_by
@last_updated_by.setter
def last_updated_by(self, value):
""" Set last_updated_by value.
Notes:
ID of the user who last updated the object.
This attribute is named `lastUpdatedBy` in VSD API.
"""
self._last_updated_by = value
@property
def affected_entity_id(self):
""" Get affected_entity_id value.
Notes:
UUID of the entity on which deployment failed.
This attribute is named `affectedEntityID` in VSD API.
"""
return self._affected_entity_id
@affected_entity_id.setter
def affected_entity_id(self, value):
""" Set affected_entity_id value.
Notes:
UUID of the entity on which deployment failed.
This attribute is named `affectedEntityID` in VSD API.
"""
self._affected_entity_id = value
@property
def affected_entity_type(self):
""" Get affected_entity_type value.
Notes:
Managed object type corresponding to the entity on which deployment failed.
This attribute is named `affectedEntityType` in VSD API.
"""
return self._affected_entity_type
@affected_entity_type.setter
def affected_entity_type(self, value):
""" Set affected_entity_type value.
Notes:
Managed object type corresponding to the entity on which deployment failed.
This attribute is named `affectedEntityType` in VSD API.
"""
self._affected_entity_type = value
@property
def diff_map(self):
""" Get diff_map value.
Notes:
Object difference in json format.
This attribute is named `diffMap` in VSD API.
"""
return self._diff_map
@diff_map.setter
def diff_map(self, value):
""" Set diff_map value.
Notes:
Object difference in json format.
This attribute is named `diffMap` in VSD API.
"""
self._diff_map = value
@property
def entity_scope(self):
""" Get entity_scope value.
Notes:
Specify if scope of entity is Data center or Enterprise level
This attribute is named `entityScope` in VSD API.
"""
return self._entity_scope
@entity_scope.setter
def entity_scope(self, value):
""" Set entity_scope value.
Notes:
Specify if scope of entity is Data center or Enterprise level
This attribute is named `entityScope` in VSD API.
"""
self._entity_scope = value
@property
def error_condition(self):
""" Get error_condition value.
Notes:
A numerical code mapping to the deployment error condition.
This attribute is named `errorCondition` in VSD API.
"""
return self._error_condition
@error_condition.setter
def error_condition(self, value):
""" Set error_condition value.
Notes:
A numerical code mapping to the deployment error condition.
This attribute is named `errorCondition` in VSD API.
"""
self._error_condition = value
@property
def assoc_entity_id(self):
""" Get assoc_entity_id value.
Notes:
ID of the parent entity
This attribute is named `assocEntityId` in VSD API.
"""
return self._assoc_entity_id
@assoc_entity_id.setter
def assoc_entity_id(self, value):
""" Set assoc_entity_id value.
Notes:
ID of the parent entity
This attribute is named `assocEntityId` in VSD API.
"""
self._assoc_entity_id = value
@property
def assoc_entity_type(self):
""" Get assoc_entity_type value.
Notes:
Type of parent entity.
This attribute is named `assocEntityType` in VSD API.
"""
return self._assoc_entity_type
@assoc_entity_type.setter
def assoc_entity_type(self, value):
""" Set assoc_entity_type value.
Notes:
Type of parent entity.
This attribute is named `assocEntityType` in VSD API.
"""
self._assoc_entity_type = value
@property
def associated_domain_id(self):
""" Get associated_domain_id value.
Notes:
ID of the associated Domain.
This attribute is named `associatedDomainID` in VSD API.
"""
return self._associated_domain_id
@associated_domain_id.setter
def associated_domain_id(self, value):
""" Set associated_domain_id value.
Notes:
ID of the associated Domain.
This attribute is named `associatedDomainID` in VSD API.
"""
self._associated_domain_id = value
@property
def associated_domain_type(self):
""" Get associated_domain_type value.
Notes:
Type of the associated Domain
This attribute is named `associatedDomainType` in VSD API.
"""
return self._associated_domain_type
@associated_domain_type.setter
def associated_domain_type(self, value):
""" Set associated_domain_type value.
Notes:
Type of the associated Domain
This attribute is named `associatedDomainType` in VSD API.
"""
self._associated_domain_type = value
@property
def associated_network_entity_id(self):
""" Get associated_network_entity_id value.
Notes:
ID of associated Network entity.
This attribute is named `associatedNetworkEntityID` in VSD API.
"""
return self._associated_network_entity_id
@associated_network_entity_id.setter
def associated_network_entity_id(self, value):
""" Set associated_network_entity_id value.
Notes:
ID of associated Network entity.
This attribute is named `associatedNetworkEntityID` in VSD API.
"""
self._associated_network_entity_id = value
@property
def associated_network_entity_type(self):
""" Get associated_network_entity_type value.
Notes:
Type of associated Network Entity. i.e Domain, Subnet, L2domain
This attribute is named `associatedNetworkEntityType` in VSD API.
"""
return self._associated_network_entity_type
@associated_network_entity_type.setter
def associated_network_entity_type(self, value):
""" Set associated_network_entity_type value.
Notes:
Type of associated Network Entity. i.e Domain, Subnet, L2domain
This attribute is named `associatedNetworkEntityType` in VSD API.
"""
self._associated_network_entity_type = value
@property
def number_of_occurences(self):
""" Get number_of_occurences value.
Notes:
A count of failed deployment attempts.
This attribute is named `numberOfOccurences` in VSD API.
"""
return self._number_of_occurences
@number_of_occurences.setter
def number_of_occurences(self, value):
""" Set number_of_occurences value.
Notes:
A count of failed deployment attempts.
This attribute is named `numberOfOccurences` in VSD API.
"""
self._number_of_occurences = value
@property
def event_type(self):
""" Get event_type value.
Notes:
Event type corresponding to the deployment failure
This attribute is named `eventType` in VSD API.
"""
return self._event_type
@event_type.setter
def event_type(self, value):
""" Set event_type value.
Notes:
Event type corresponding to the deployment failure
This attribute is named `eventType` in VSD API.
"""
self._event_type = value
@property
def external_id(self):
""" Get external_id value.
Notes:
External object ID. Used for integration with third party systems
This attribute is named `externalID` in VSD API.
"""
return self._external_id
@external_id.setter
def external_id(self, value):
""" Set external_id value.
Notes:
External object ID. Used for integration with third party systems
This attribute is named `externalID` in VSD API.
"""
self._external_id = value
| [
"[email protected]"
]
| |
c6765eaf33799a801f779c51db8d8eb557e22897 | 82b946da326148a3c1c1f687f96c0da165bb2c15 | /sdk/python/pulumi_azure_native/certificateregistration/v20190801/get_app_service_certificate_order.py | a03845a380da747da89259d9a54823779763bfe4 | [
"BSD-3-Clause",
"Apache-2.0"
]
| permissive | morrell/pulumi-azure-native | 3916e978382366607f3df0a669f24cb16293ff5e | cd3ba4b9cb08c5e1df7674c1c71695b80e443f08 | refs/heads/master | 2023-06-20T19:37:05.414924 | 2021-07-19T20:57:53 | 2021-07-19T20:57:53 | 387,815,163 | 0 | 0 | Apache-2.0 | 2021-07-20T14:18:29 | 2021-07-20T14:18:28 | null | UTF-8 | Python | false | false | 15,279 | py | # coding=utf-8
# *** WARNING: this file was generated by the Pulumi SDK Generator. ***
# *** Do not edit by hand unless you're certain you know what you are doing! ***
import warnings
import pulumi
import pulumi.runtime
from typing import Any, Mapping, Optional, Sequence, Union, overload
from ... import _utilities
from . import outputs
__all__ = [
'GetAppServiceCertificateOrderResult',
'AwaitableGetAppServiceCertificateOrderResult',
'get_app_service_certificate_order',
]
@pulumi.output_type
class GetAppServiceCertificateOrderResult:
"""
SSL certificate purchase order.
"""
def __init__(__self__, app_service_certificate_not_renewable_reasons=None, auto_renew=None, certificates=None, csr=None, distinguished_name=None, domain_verification_token=None, expiration_time=None, id=None, intermediate=None, is_private_key_external=None, key_size=None, kind=None, last_certificate_issuance_time=None, location=None, name=None, next_auto_renewal_time_stamp=None, product_type=None, provisioning_state=None, root=None, serial_number=None, signed_certificate=None, status=None, tags=None, type=None, validity_in_years=None):
if app_service_certificate_not_renewable_reasons and not isinstance(app_service_certificate_not_renewable_reasons, list):
raise TypeError("Expected argument 'app_service_certificate_not_renewable_reasons' to be a list")
pulumi.set(__self__, "app_service_certificate_not_renewable_reasons", app_service_certificate_not_renewable_reasons)
if auto_renew and not isinstance(auto_renew, bool):
raise TypeError("Expected argument 'auto_renew' to be a bool")
pulumi.set(__self__, "auto_renew", auto_renew)
if certificates and not isinstance(certificates, dict):
raise TypeError("Expected argument 'certificates' to be a dict")
pulumi.set(__self__, "certificates", certificates)
if csr and not isinstance(csr, str):
raise TypeError("Expected argument 'csr' to be a str")
pulumi.set(__self__, "csr", csr)
if distinguished_name and not isinstance(distinguished_name, str):
raise TypeError("Expected argument 'distinguished_name' to be a str")
pulumi.set(__self__, "distinguished_name", distinguished_name)
if domain_verification_token and not isinstance(domain_verification_token, str):
raise TypeError("Expected argument 'domain_verification_token' to be a str")
pulumi.set(__self__, "domain_verification_token", domain_verification_token)
if expiration_time and not isinstance(expiration_time, str):
raise TypeError("Expected argument 'expiration_time' to be a str")
pulumi.set(__self__, "expiration_time", expiration_time)
if id and not isinstance(id, str):
raise TypeError("Expected argument 'id' to be a str")
pulumi.set(__self__, "id", id)
if intermediate and not isinstance(intermediate, dict):
raise TypeError("Expected argument 'intermediate' to be a dict")
pulumi.set(__self__, "intermediate", intermediate)
if is_private_key_external and not isinstance(is_private_key_external, bool):
raise TypeError("Expected argument 'is_private_key_external' to be a bool")
pulumi.set(__self__, "is_private_key_external", is_private_key_external)
if key_size and not isinstance(key_size, int):
raise TypeError("Expected argument 'key_size' to be a int")
pulumi.set(__self__, "key_size", key_size)
if kind and not isinstance(kind, str):
raise TypeError("Expected argument 'kind' to be a str")
pulumi.set(__self__, "kind", kind)
if last_certificate_issuance_time and not isinstance(last_certificate_issuance_time, str):
raise TypeError("Expected argument 'last_certificate_issuance_time' to be a str")
pulumi.set(__self__, "last_certificate_issuance_time", last_certificate_issuance_time)
if location and not isinstance(location, str):
raise TypeError("Expected argument 'location' to be a str")
pulumi.set(__self__, "location", location)
if name and not isinstance(name, str):
raise TypeError("Expected argument 'name' to be a str")
pulumi.set(__self__, "name", name)
if next_auto_renewal_time_stamp and not isinstance(next_auto_renewal_time_stamp, str):
raise TypeError("Expected argument 'next_auto_renewal_time_stamp' to be a str")
pulumi.set(__self__, "next_auto_renewal_time_stamp", next_auto_renewal_time_stamp)
if product_type and not isinstance(product_type, str):
raise TypeError("Expected argument 'product_type' to be a str")
pulumi.set(__self__, "product_type", product_type)
if provisioning_state and not isinstance(provisioning_state, str):
raise TypeError("Expected argument 'provisioning_state' to be a str")
pulumi.set(__self__, "provisioning_state", provisioning_state)
if root and not isinstance(root, dict):
raise TypeError("Expected argument 'root' to be a dict")
pulumi.set(__self__, "root", root)
if serial_number and not isinstance(serial_number, str):
raise TypeError("Expected argument 'serial_number' to be a str")
pulumi.set(__self__, "serial_number", serial_number)
if signed_certificate and not isinstance(signed_certificate, dict):
raise TypeError("Expected argument 'signed_certificate' to be a dict")
pulumi.set(__self__, "signed_certificate", signed_certificate)
if status and not isinstance(status, str):
raise TypeError("Expected argument 'status' to be a str")
pulumi.set(__self__, "status", status)
if tags and not isinstance(tags, dict):
raise TypeError("Expected argument 'tags' to be a dict")
pulumi.set(__self__, "tags", tags)
if type and not isinstance(type, str):
raise TypeError("Expected argument 'type' to be a str")
pulumi.set(__self__, "type", type)
if validity_in_years and not isinstance(validity_in_years, int):
raise TypeError("Expected argument 'validity_in_years' to be a int")
pulumi.set(__self__, "validity_in_years", validity_in_years)
@property
@pulumi.getter(name="appServiceCertificateNotRenewableReasons")
def app_service_certificate_not_renewable_reasons(self) -> Sequence[str]:
"""
Reasons why App Service Certificate is not renewable at the current moment.
"""
return pulumi.get(self, "app_service_certificate_not_renewable_reasons")
@property
@pulumi.getter(name="autoRenew")
def auto_renew(self) -> Optional[bool]:
"""
<code>true</code> if the certificate should be automatically renewed when it expires; otherwise, <code>false</code>.
"""
return pulumi.get(self, "auto_renew")
@property
@pulumi.getter
def certificates(self) -> Optional[Mapping[str, 'outputs.AppServiceCertificateResponse']]:
"""
State of the Key Vault secret.
"""
return pulumi.get(self, "certificates")
@property
@pulumi.getter
def csr(self) -> Optional[str]:
"""
Last CSR that was created for this order.
"""
return pulumi.get(self, "csr")
@property
@pulumi.getter(name="distinguishedName")
def distinguished_name(self) -> Optional[str]:
"""
Certificate distinguished name.
"""
return pulumi.get(self, "distinguished_name")
@property
@pulumi.getter(name="domainVerificationToken")
def domain_verification_token(self) -> str:
"""
Domain verification token.
"""
return pulumi.get(self, "domain_verification_token")
@property
@pulumi.getter(name="expirationTime")
def expiration_time(self) -> str:
"""
Certificate expiration time.
"""
return pulumi.get(self, "expiration_time")
@property
@pulumi.getter
def id(self) -> str:
"""
Resource Id.
"""
return pulumi.get(self, "id")
@property
@pulumi.getter
def intermediate(self) -> 'outputs.CertificateDetailsResponse':
"""
Intermediate certificate.
"""
return pulumi.get(self, "intermediate")
@property
@pulumi.getter(name="isPrivateKeyExternal")
def is_private_key_external(self) -> bool:
"""
<code>true</code> if private key is external; otherwise, <code>false</code>.
"""
return pulumi.get(self, "is_private_key_external")
@property
@pulumi.getter(name="keySize")
def key_size(self) -> Optional[int]:
"""
Certificate key size.
"""
return pulumi.get(self, "key_size")
@property
@pulumi.getter
def kind(self) -> Optional[str]:
"""
Kind of resource.
"""
return pulumi.get(self, "kind")
@property
@pulumi.getter(name="lastCertificateIssuanceTime")
def last_certificate_issuance_time(self) -> str:
"""
Certificate last issuance time.
"""
return pulumi.get(self, "last_certificate_issuance_time")
@property
@pulumi.getter
def location(self) -> str:
"""
Resource Location.
"""
return pulumi.get(self, "location")
@property
@pulumi.getter
def name(self) -> str:
"""
Resource Name.
"""
return pulumi.get(self, "name")
@property
@pulumi.getter(name="nextAutoRenewalTimeStamp")
def next_auto_renewal_time_stamp(self) -> str:
"""
Time stamp when the certificate would be auto renewed next
"""
return pulumi.get(self, "next_auto_renewal_time_stamp")
@property
@pulumi.getter(name="productType")
def product_type(self) -> str:
"""
Certificate product type.
"""
return pulumi.get(self, "product_type")
@property
@pulumi.getter(name="provisioningState")
def provisioning_state(self) -> str:
"""
Status of certificate order.
"""
return pulumi.get(self, "provisioning_state")
@property
@pulumi.getter
def root(self) -> 'outputs.CertificateDetailsResponse':
"""
Root certificate.
"""
return pulumi.get(self, "root")
@property
@pulumi.getter(name="serialNumber")
def serial_number(self) -> str:
"""
Current serial number of the certificate.
"""
return pulumi.get(self, "serial_number")
@property
@pulumi.getter(name="signedCertificate")
def signed_certificate(self) -> 'outputs.CertificateDetailsResponse':
"""
Signed certificate.
"""
return pulumi.get(self, "signed_certificate")
@property
@pulumi.getter
def status(self) -> str:
"""
Current order status.
"""
return pulumi.get(self, "status")
@property
@pulumi.getter
def tags(self) -> Optional[Mapping[str, str]]:
"""
Resource tags.
"""
return pulumi.get(self, "tags")
@property
@pulumi.getter
def type(self) -> str:
"""
Resource type.
"""
return pulumi.get(self, "type")
@property
@pulumi.getter(name="validityInYears")
def validity_in_years(self) -> Optional[int]:
"""
Duration in years (must be between 1 and 3).
"""
return pulumi.get(self, "validity_in_years")
class AwaitableGetAppServiceCertificateOrderResult(GetAppServiceCertificateOrderResult):
# pylint: disable=using-constant-test
def __await__(self):
if False:
yield self
return GetAppServiceCertificateOrderResult(
app_service_certificate_not_renewable_reasons=self.app_service_certificate_not_renewable_reasons,
auto_renew=self.auto_renew,
certificates=self.certificates,
csr=self.csr,
distinguished_name=self.distinguished_name,
domain_verification_token=self.domain_verification_token,
expiration_time=self.expiration_time,
id=self.id,
intermediate=self.intermediate,
is_private_key_external=self.is_private_key_external,
key_size=self.key_size,
kind=self.kind,
last_certificate_issuance_time=self.last_certificate_issuance_time,
location=self.location,
name=self.name,
next_auto_renewal_time_stamp=self.next_auto_renewal_time_stamp,
product_type=self.product_type,
provisioning_state=self.provisioning_state,
root=self.root,
serial_number=self.serial_number,
signed_certificate=self.signed_certificate,
status=self.status,
tags=self.tags,
type=self.type,
validity_in_years=self.validity_in_years)
def get_app_service_certificate_order(certificate_order_name: Optional[str] = None,
resource_group_name: Optional[str] = None,
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetAppServiceCertificateOrderResult:
"""
SSL certificate purchase order.
:param str certificate_order_name: Name of the certificate order..
:param str resource_group_name: Name of the resource group to which the resource belongs.
"""
__args__ = dict()
__args__['certificateOrderName'] = certificate_order_name
__args__['resourceGroupName'] = resource_group_name
if opts is None:
opts = pulumi.InvokeOptions()
if opts.version is None:
opts.version = _utilities.get_version()
__ret__ = pulumi.runtime.invoke('azure-native:certificateregistration/v20190801:getAppServiceCertificateOrder', __args__, opts=opts, typ=GetAppServiceCertificateOrderResult).value
return AwaitableGetAppServiceCertificateOrderResult(
app_service_certificate_not_renewable_reasons=__ret__.app_service_certificate_not_renewable_reasons,
auto_renew=__ret__.auto_renew,
certificates=__ret__.certificates,
csr=__ret__.csr,
distinguished_name=__ret__.distinguished_name,
domain_verification_token=__ret__.domain_verification_token,
expiration_time=__ret__.expiration_time,
id=__ret__.id,
intermediate=__ret__.intermediate,
is_private_key_external=__ret__.is_private_key_external,
key_size=__ret__.key_size,
kind=__ret__.kind,
last_certificate_issuance_time=__ret__.last_certificate_issuance_time,
location=__ret__.location,
name=__ret__.name,
next_auto_renewal_time_stamp=__ret__.next_auto_renewal_time_stamp,
product_type=__ret__.product_type,
provisioning_state=__ret__.provisioning_state,
root=__ret__.root,
serial_number=__ret__.serial_number,
signed_certificate=__ret__.signed_certificate,
status=__ret__.status,
tags=__ret__.tags,
type=__ret__.type,
validity_in_years=__ret__.validity_in_years)
| [
"[email protected]"
]
| |
6d61f46d1ce445b4126a332ddd0961ed016516be | e3e7e069b1b66c5d63319a23a2201a38171df23f | /dataUpdate/util/ts_util.py | 590eb20c1be54ba8a6958b00f1cae028f8c95ba1 | []
| no_license | webclinic017/backtrader_learning | b6ba1199ac31b5bbad0ce7abe7e4fca912cb9c8a | dfa5202a99af96273d49a4e92412c3b0d3c724a7 | refs/heads/main | 2023-08-18T17:44:20.751035 | 2021-10-09T08:43:29 | 2021-10-09T08:43:29 | null | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 562 | py | import tushare as ts
token = 'e554b98ac431b1146b1db6bcb89dde62837fd87fb4c31aca54ff249f'
pro = ts.pro_api(token=token)
def getStockBasicInfo():
'''
获取stock的基础信息
:return:
'''
data = pro.query('stock_basic', exchange='', list_status='L',
fields='ts_code,symbol,name,area,industry,market,list_date')
return data
def nameConvert(ts_name):
'''
:param ts_name: 000001.SZ
:return:0000001.sz
'''
code,market = ts_name.split('.')
market = str.lower(market)
return market+'.'+code | [
"[email protected]"
]
| |
3a204339dd77109d1f6901ef336b30dc4e400fea | 8fa003141ed3a01e5aa55369d63c332f43110c5b | /test/fx2trt/converters/acc_op/test_min.py | 2f19a72cf9753885e1e7a766851f211477aa7e28 | [
"BSD-3-Clause",
"BSD-2-Clause",
"LicenseRef-scancode-generic-cla",
"BSL-1.0",
"Apache-2.0"
]
| permissive | EshikaShah/pytorch | aec1e648fbcc32f2af5b59500e3986df3cfa4d9e | 8734eed829b0a14b819b97982222e3f494db01d1 | refs/heads/master | 2023-08-18T19:37:54.722565 | 2021-10-18T18:04:03 | 2021-10-18T18:04:03 | 414,952,363 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 2,426 | py | import torch
import torch.fx.experimental.fx_acc.acc_ops as acc_ops
from caffe2.torch.fb.fx2trt.tests.test_utils import AccTestCase
from parameterized import parameterized
class TestMinConverter(AccTestCase):
@parameterized.expand(
[
("dim0_keepdim", 0, True, torch.randn(2, 2, 3)),
("dim1_keepdim", 1, True, torch.randn(2, 2, 3)),
("dim2_keepdim", 2, True, torch.randn(2, 2, 3)),
("dim3_keepdim", 3, True, torch.randn(2, 2, 3, 3)),
("dim2_no_keepdim", 2, False, torch.randn(2, 2, 3)),
("dim1_no_keepdim", 1, False, torch.randn(2, 2, 3)),
("dim0_no_keepdim", 0, False, torch.randn(2, 2, 3)),
]
)
def test_min_dim_reduce(self, test_name, dim, keepdim, input):
class MinDimReduce(torch.nn.Module):
def __init__(self, dim, keepdim):
super().__init__()
self.dim = dim
self.keepdim = keepdim
def forward(self, x):
return torch.min(x, self.dim, self.keepdim)
inputs = [input]
self.run_test(
MinDimReduce(dim, keepdim),
inputs,
expected_ops={acc_ops.min_dim_reduce},
test_implicit_batch_dim=(dim != 0),
)
@parameterized.expand(
[
("no_dim_no_keepdim"),
]
)
def test_min_full_reduce(
self,
test_name,
):
class MinFullReduce(torch.nn.Module):
def __init__(self):
super().__init__()
def forward(self, x):
return torch.min(x)
inputs = [torch.randn(3, 2, 3, 3)]
self.run_test(
MinFullReduce(),
inputs,
expected_ops={acc_ops.min_full_reduce},
# We can't do a full reduce over the batch dimension
test_implicit_batch_dim=False,
)
@parameterized.expand(
[
("min_method_no_dim_no_keepdim"),
("min_method_no_dim_no_keepdim"),
]
)
def test_min_method(self, test_name):
class MinMethod(torch.nn.Module):
def __init__(self):
super().__init__()
def forward(self, input, other):
return input.min(other)
inputs = [torch.randn(3, 4), torch.randn(3, 4)]
self.run_test(MinMethod(), inputs, expected_ops={acc_ops.minimum})
| [
"[email protected]"
]
| |
4adb2fcf27d222cf31a55b5486f751060deec10d | 54a26bf56aebd604d4dece733f08d7d30cd27f89 | /zdemo/aclassview/views.py | 071bb0719b01a7d382ba98131db3b8a1ebd7040c | [
"MIT"
]
| permissive | zzZaida/django_27 | b78f5ae8bccfa11074221ba32241878d703aa535 | bbbba8be9547fb815c68e94fadb7e8b6eebf75c9 | refs/heads/master | 2020-07-03T19:47:25.037195 | 2019-08-13T12:11:29 | 2019-08-13T12:11:29 | 202,030,146 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 1,410 | py | from django.http import HttpResponse
from django.shortcuts import render
from django.utils.decorators import method_decorator # utils --> 工具类
from django.views import View
# 定义装饰器
def my_decorator(func):
def wrapper(request, **kwargs):
print('添加装饰器-----', request.method)
return func(request, **kwargs)
return wrapper
# @method_decorator(my_decorator,name='get')
@method_decorator(my_decorator, name='dispatch') # --> 经手的dispatch都加装饰器
# --> 负责将 IndexView 中的函数弄出来
# ValueError: The keyword argument `name` must be the name of a method of the decorated Got '' instead
# 定义类视图
class IndexView(View):
# @my_decorator --> 报错:wrapper() takes 1 positional argument but 2 were given
# 对象方法
# @method_decorator(my_decorator) # --> 一个添加 其他不添加装饰器
def get(self, request):
return HttpResponse('method_decorator------register.html')
def post(self, request):
return HttpResponse('method_decorator-------这里实现注册逻辑')
def index(request):
# 获取请求方法,判断是GET/POST请求
if request.method == 'GET':
# 处理GET请求,返回注册页面
return render(request, 'register.html')
else:
# 处理POST请求,实现注册逻辑
return HttpResponse('这里实现注册逻辑') | [
"[email protected]"
]
| |
90f8b5f0863837b4f24ed7543348060ac40bbcc6 | d842a95213e48e30139b9a8227fb7e757f834784 | /gcloud/google-cloud-sdk/.install/.backup/lib/surface/dataproc/clusters/create.py | ebf2e974a6b41b416363de240513ced274b6ed35 | [
"LicenseRef-scancode-unknown-license-reference",
"Apache-2.0",
"MIT"
]
| permissive | bopopescu/JobSniperRails | f37a15edb89f54916cc272884b36dcd83cdc868a | 39e7f871887176770de0f4fc6789e9ddc7f32b1f | refs/heads/master | 2022-11-22T18:12:37.972441 | 2019-09-20T22:43:14 | 2019-09-20T22:43:14 | 282,293,504 | 0 | 0 | MIT | 2020-07-24T18:47:35 | 2020-07-24T18:47:34 | null | UTF-8 | Python | false | false | 4,982 | py | # -*- coding: utf-8 -*- #
# Copyright 2015 Google LLC. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""Create cluster command."""
from __future__ import absolute_import
from __future__ import division
from __future__ import unicode_literals
from googlecloudsdk.api_lib.dataproc import compute_helpers
from googlecloudsdk.api_lib.dataproc import constants
from googlecloudsdk.api_lib.dataproc import dataproc as dp
from googlecloudsdk.api_lib.dataproc import util
from googlecloudsdk.calliope import base
from googlecloudsdk.calliope import exceptions
from googlecloudsdk.command_lib.dataproc import clusters
from googlecloudsdk.command_lib.kms import resource_args as kms_resource_args
from googlecloudsdk.command_lib.util.args import labels_util
def _CommonArgs(parser, beta=False):
"""Register flags common to all tracks."""
base.ASYNC_FLAG.AddToParser(parser)
parser.add_argument('name', help='The name of this cluster.')
clusters.ArgsForClusterRef(parser, beta, include_ttl_config=True)
# Add gce-pd-kms-key args
kms_flag_overrides = {'kms-key': '--gce-pd-kms-key',
'kms-keyring': '--gce-pd-kms-key-keyring',
'kms-location': '--gce-pd-kms-key-location',
'kms-project': '--gce-pd-kms-key-project'}
kms_resource_args.AddKmsKeyResourceArg(
parser, 'cluster', flag_overrides=kms_flag_overrides)
@base.ReleaseTracks(base.ReleaseTrack.GA)
class Create(base.CreateCommand):
"""Create a cluster."""
BETA = False
detailed_help = {
'EXAMPLES': """\
To create a cluster, run:
$ {command} my_cluster
"""
}
@staticmethod
def Args(parser):
_CommonArgs(parser, beta=False)
@staticmethod
def ValidateArgs(args):
if args.single_node:
# --num-workers and --num-preemptible-workers must be None (unspecified)
# or 0
if args.num_workers:
raise exceptions.ConflictingArgumentsException(
'--single-node', '--num-workers')
if args.num_preemptible_workers:
raise exceptions.ConflictingArgumentsException(
'--single-node', '--num-preemptible-workers')
if constants.ALLOW_ZERO_WORKERS_PROPERTY in args.properties:
raise exceptions.InvalidArgumentException(
'--properties',
'Instead of %s, use gcloud beta dataproc clusters create '
'--single-node to deploy single node clusters' %
constants.ALLOW_ZERO_WORKERS_PROPERTY)
def Run(self, args):
self.ValidateArgs(args)
dataproc = dp.Dataproc(self.ReleaseTrack())
cluster_ref = util.ParseCluster(args.name, dataproc)
compute_resources = compute_helpers.GetComputeResources(
self.ReleaseTrack(), args.name)
cluster_config = clusters.GetClusterConfig(args, dataproc,
cluster_ref.projectId,
compute_resources, self.BETA,
include_ttl_config=True)
cluster = dataproc.messages.Cluster(
config=cluster_config,
clusterName=cluster_ref.clusterName,
projectId=cluster_ref.projectId)
self.ConfigureCluster(dataproc.messages, args, cluster)
return clusters.CreateCluster(dataproc, cluster, args.async, args.timeout)
@staticmethod
def ConfigureCluster(messages, args, cluster):
"""Performs any additional configuration of the cluster."""
cluster.labels = labels_util.ParseCreateArgs(args,
messages.Cluster.LabelsValue)
@base.ReleaseTracks(base.ReleaseTrack.ALPHA, base.ReleaseTrack.BETA)
class CreateBeta(Create):
"""Create a cluster."""
BETA = True
@staticmethod
def Args(parser):
_CommonArgs(parser, beta=True)
clusters.BetaArgsForClusterRef(parser)
@staticmethod
def ValidateArgs(args):
super(CreateBeta, CreateBeta).ValidateArgs(args)
if args.master_accelerator and 'type' not in args.master_accelerator:
raise exceptions.InvalidArgumentException(
'--master-accelerator', 'accelerator type must be specified. '
'e.g. --master-accelerator type=nvidia-tesla-k80,count=2')
if args.worker_accelerator and 'type' not in args.worker_accelerator:
raise exceptions.InvalidArgumentException(
'--worker-accelerator', 'accelerator type must be specified. '
'e.g. --worker-accelerator type=nvidia-tesla-k80,count=2')
| [
"[email protected]"
]
| |
a3b5797db823677eca00cbbb4314cf2ab0379c65 | 3b9bf497cd29cea9c24462e0411fa8adbfa6ba60 | /leetcode/Problems/468--Validate-IP-Address-Medium.py | a283e3d9f2615a578f4a10ccff3742d93dffa0fb | []
| no_license | niteesh2268/coding-prepation | 918823cb7f4965bec096ec476c639a06a9dd9692 | 19be0766f6b9c298fb32754f66416f79567843c1 | refs/heads/master | 2023-01-02T05:30:59.662890 | 2020-10-17T13:12:34 | 2020-10-17T13:12:34 | null | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 1,524 | py | class Solution:
def validateIPV4(self, IP):
ipSplit = IP.split('.')
if len(ipSplit) != 4:
return False
for i in range(4):
if len(ipSplit[i]) == 0 or len(ipSplit[i]) > 3:
return False
if not ipSplit[i].isdigit():
return False
intVal = int(ipSplit[i])
if intVal < 0 or intVal > 255:
return False
if ipSplit[i][0] == '0' and len(ipSplit[i]) > 1:
return False
return True
def validateIPV6(self, IP):
ipSplit = IP.split(':')
validChar = ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'a','b','c','d','e','f','A','B','C','D','E','F']
if len(ipSplit) != 8:
return False
for i in range(8):
if len(ipSplit[i]) == 0 or len(ipSplit[i]) > 4:
return False
for ch in ipSplit[i]:
if ch not in validChar:
return False
# if ipSplit[i][0] == '0' and len(ipSplit[i]) > 1:
# return False
return True
def validIPAddress(self, IP: str) -> str:
ipv4, ipv6 = False, False
if '.' in IP:
ipv4 = self.validateIPV4(IP)
elif ':' in IP:
ipv6 = self.validateIPV6(IP)
if not ipv4 and not ipv6:
return 'Neither'
elif ipv4:
return 'IPv4'
else:
return 'IPv6'
| [
"[email protected]"
]
| |
5dc820764db1b26f0d3a0a84d332b95f306ea84b | 4c83b4d7aca6bbcd15b922ad7314440fea7c9a70 | /2020-07-27_modo_horario_cp_onda1_10d/bkp/script_modo_horario_2020-03-05.py | f79f6c5aa1e5becacdcfb011cd1bd0d48794ccbc | []
| no_license | poloplanejamento/odmatrix-joinville | 63b60a85055700698cdb590c181e7c8a4d5c7361 | be7ce0814fb9dad2d289cd836dde51baa9c0850d | refs/heads/main | 2023-01-23T11:43:45.451126 | 2020-12-10T23:17:58 | 2020-12-10T23:17:58 | 320,402,809 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 2,337 | py | #!/usr/bin/env python3
# Bibliotecas
from http.client import HTTPSConnection
from base64 import b64encode
import json
import csv
import pandas as pd
# Variáveis
projectID = "40" # ID do projeto, conforme mostrado no frontend Web
c = HTTPSConnection("api.odmatrix.app")
userAndPass = b64encode(b"fe6b53f0280443d5bd40d5d30694f356").decode("ascii")
headers = { 'Authorization' : 'Basic %s' % userAndPass }
finall_list = []
# Formato da data: AAAA-MM-DD. Até três datas no array e o script parece rodar sem problemas
# Datas desejadas: 12/11, 13/11, 19/11, 20/11, 21/11, 03/03, 04/03, 05/03, 11/03 e 12/03
for date in ["2020-03-05"] :
for ftriptype in ["microtrip","bus","private_transport"] :
for ftimeorigin in ["0000_0059","0100_0159","0200_0259","0300_0359","0400_0459","0500_0559","0600_0659","0700_0759","0800_0859","0900_0959","1000_1059","1100_1159","1200_1259","1300_1359","1400_1459","1500_1559","1600_1659","1700_1759","1800_1859","1900_1959","2000_2059","2100_2159","2200_2259","2300_2359"] :
print(ftimeorigin)
request = "/generatematrix?format=json&project={}&date={}&ftriptype={}&ftimeorigin={}&fchk_XXX=true".format(projectID, date, ftriptype, ftimeorigin)
c.request('GET', request, headers=headers)
res = c.getresponse()
data = res.read()
matrix = json.loads(data)
for i, column in enumerate(matrix['ColumnLabels']):
for j, row in enumerate(matrix['RowLabels']):
value = matrix['Data'][j][i]
if value == 0:
continue
full_row = {}
full_row['ProjectID'] = projectID
full_row['Date'] = date
full_row['TimeOrigin'] = ftimeorigin
full_row['Origin'] = row
full_row['Destination'] = column
full_row['Modo'] = ftriptype
full_row['Trips'] = value
finall_list.append(full_row)
print(full_row)
#print(finall_list)
data = pd.DataFrame(finall_list)
final_data = pd.pivot_table(data, index=['ProjectID', 'Date', 'Origin', 'Destination', 'Modo'], columns='TimeOrigin', values='Trips')
final_data.to_csv("OD_por_modo_horario_fchk_XXX_2020-03-05.csv")
| [
"[email protected]"
]
| |
bb2ea7c18040e64a3b1053c49a768e69116d0f47 | 625f2f86f2b2e07cb35204d9b3232427bf462a09 | /HIRun2018PbPb/L1T/L1Ntuple_HIRun2015_HIMinimumBias2_egBypassFGBit1ShapeBit1/l1Ntuple_RAW2DIGI.py | 2a05fe0379f2e8a5c4507ee92d3ee8daa127a5b5 | []
| no_license | ttrk/production | abb84c423a076fd9966276b7ed4350936c755e0b | f8a64c9c38de215802799365f0f7a99e1ee78276 | refs/heads/master | 2023-02-08T23:48:56.355141 | 2023-01-26T08:46:22 | 2023-01-26T08:46:22 | 52,877,406 | 0 | 2 | null | null | null | null | UTF-8 | Python | false | false | 4,716 | py | # Auto generated configuration file
# using:
# Revision: 1.19
# Source: /local/reps/CMSSW/CMSSW/Configuration/Applications/python/ConfigBuilder.py,v
# with command line options: l1Ntuple -s RAW2DIGI --era=Run2_2017 --customise=L1Trigger/Configuration/customiseReEmul.L1TEventSetupForHF1x1TPs --customise=L1Trigger/Configuration/customiseReEmul.L1TReEmulFromRAW2015 --customise=L1Trigger/L1TNtuples/customiseL1Ntuple.L1NtupleEMU --customise=L1Trigger/Configuration/customiseUtils.L1TTurnOffUnpackStage2GtGmtAndCalo --customise=FWCore/ParameterSet/MassReplace.massReplaceInputTag --conditions=auto:run1_data -n 100 --data --no_exec --no_output --filein=root://xrootd.cmsaf.mit.edu//store/hidata/HIRun2015/HIMinimumBias2/RAW/v1/000/263/261/00000/0029C4B7-149B-E511-BEEE-02163E01431C.root
import FWCore.ParameterSet.Config as cms
from Configuration.StandardSequences.Eras import eras
process = cms.Process('RAW2DIGI',eras.Run2_2017)
# import of standard configurations
process.load('Configuration.StandardSequences.Services_cff')
process.load('SimGeneral.HepPDTESSource.pythiapdt_cfi')
process.load('FWCore.MessageService.MessageLogger_cfi')
process.load('Configuration.EventContent.EventContent_cff')
process.load('Configuration.StandardSequences.GeometryRecoDB_cff')
process.load('Configuration.StandardSequences.MagneticField_AutoFromDBCurrent_cff')
process.load('Configuration.StandardSequences.RawToDigi_Data_cff')
process.load('Configuration.StandardSequences.EndOfProcess_cff')
process.load('Configuration.StandardSequences.FrontierConditions_GlobalTag_cff')
process.maxEvents = cms.untracked.PSet(
input = cms.untracked.int32(100)
)
# Input source
process.source = cms.Source("PoolSource",
fileNames = cms.untracked.vstring('root://xrootd.cmsaf.mit.edu//store/hidata/HIRun2015/HIMinimumBias2/RAW/v1/000/263/261/00000/0029C4B7-149B-E511-BEEE-02163E01431C.root'),
secondaryFileNames = cms.untracked.vstring()
)
process.options = cms.untracked.PSet(
)
# Production Info
process.configurationMetadata = cms.untracked.PSet(
annotation = cms.untracked.string('l1Ntuple nevts:100'),
name = cms.untracked.string('Applications'),
version = cms.untracked.string('$Revision: 1.19 $')
)
# Output definition
# Additional output definition
# Other statements
from Configuration.AlCa.GlobalTag import GlobalTag
process.GlobalTag = GlobalTag(process.GlobalTag, 'auto:run1_data', '')
# Path and EndPath definitions
process.raw2digi_step = cms.Path(process.RawToDigi)
process.endjob_step = cms.EndPath(process.endOfProcess)
# Schedule definition
process.schedule = cms.Schedule(process.raw2digi_step,process.endjob_step)
from PhysicsTools.PatAlgos.tools.helpers import associatePatAlgosToolsTask
associatePatAlgosToolsTask(process)
# customisation of the process.
# Automatic addition of the customisation function from L1Trigger.Configuration.customiseReEmul
from L1Trigger.Configuration.customiseReEmul import L1TEventSetupForHF1x1TPs,L1TReEmulFromRAW2015
#call to customisation function L1TEventSetupForHF1x1TPs imported from L1Trigger.Configuration.customiseReEmul
process = L1TEventSetupForHF1x1TPs(process)
#call to customisation function L1TReEmulFromRAW2015 imported from L1Trigger.Configuration.customiseReEmul
process = L1TReEmulFromRAW2015(process)
# Automatic addition of the customisation function from L1Trigger.L1TNtuples.customiseL1Ntuple
from L1Trigger.L1TNtuples.customiseL1Ntuple import L1NtupleEMU
#call to customisation function L1NtupleEMU imported from L1Trigger.L1TNtuples.customiseL1Ntuple
process = L1NtupleEMU(process)
# Automatic addition of the customisation function from L1Trigger.Configuration.customiseUtils
from L1Trigger.Configuration.customiseUtils import L1TTurnOffUnpackStage2GtGmtAndCalo
#call to customisation function L1TTurnOffUnpackStage2GtGmtAndCalo imported from L1Trigger.Configuration.customiseUtils
process = L1TTurnOffUnpackStage2GtGmtAndCalo(process)
# Automatic addition of the customisation function from FWCore.ParameterSet.MassReplace
from FWCore.ParameterSet.MassReplace import massReplaceInputTag
#call to customisation function massReplaceInputTag imported from FWCore.ParameterSet.MassReplace
process = massReplaceInputTag(process)
# End of customisation functions
# Customisation from command line
# Add early deletion of temporary data products to reduce peak memory need
from Configuration.StandardSequences.earlyDeleteSettings_cff import customiseEarlyDelete
process = customiseEarlyDelete(process)
# End adding early deletion
process.simCaloStage2Layer1Digis.hcalToken = cms.InputTag('hcalDigis')
process.caloStage2Params.egBypassFGBit = cms.uint32(1)
process.caloStage2Params.egBypassShapeBit = cms.uint32(1)
| [
"[email protected]"
]
| |
d3106b474013de948f7febf50b505b9a28c5159b | ca7aa979e7059467e158830b76673f5b77a0f5a3 | /Python_codes/p03238/s968684820.py | 27dae0cfe0a4a7956ffe2e7686af7273bbf03bf4 | []
| no_license | Aasthaengg/IBMdataset | 7abb6cbcc4fb03ef5ca68ac64ba460c4a64f8901 | f33f1c5c3b16d0ea8d1f5a7d479ad288bb3f48d8 | refs/heads/main | 2023-04-22T10:22:44.763102 | 2021-05-13T17:27:22 | 2021-05-13T17:27:22 | 367,112,348 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 101 | py | x=int(input())
if(x==1):
print("Hello World")
else:
x=int(input())
y=int(input())
print(x+y)
| [
"[email protected]"
]
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.